Modern Events Calendar Lite - Version 5.9.0

Version Description

29 July 2020 = - Added: An ability to import bookings from CSV file (pro) - Added: An option to restrict the booking cancellation time (pro) - Added: Cost and categories to the RSS feed - Added: Booking fields to the CSV and MS Excel export of the events (pro) - Added: Event end date and time to the booking CSV export (pro) - Added: Some hooks for customizing the events RSS feed - Improved: The booking system by removing transaction data after removing the booking (pro) - Improved: Add booking from the backend to insert attendee email in the booking title in addition to the attendee name (pro) - Improved: The load time of simple style of monthly skin - Improved: The way of printing ticket variations in booking export (pro) - Improved: The notification per event system (pro) - Improved: Searching on MEC settings - Fixed: Update events when custom fields form has required fields - Fixed: Some issues related to booking fixed fields (pro) - Fixed: Some issues regarding event fields - Fixed: A conflict in booking edit form when some new required fields added to booking form (pro) - Fixed: Search widget related to the default value of month filter - Fixed: Report email about sender name and email (pro) - Fixed: Booking expired events in some conditions (pro) - Fixed: Showing google ReCaptcha when the event is sold (pro) - Fixed: Showing wrong end dates for multiple-day events in the single event page - Fixed: Booking ongoing events when the already even started (pro)

Download this release

Release Info

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

Code changes from version 5.8.5 to 5.9.0

Files changed (48) hide show
  1. app/features/events.php +62 -72
  2. app/features/feed/rss2.php +11 -1
  3. app/features/fes.php +2 -2
  4. app/features/fes/form.php +4 -4
  5. app/features/ix.php +206 -0
  6. app/features/ix/import.php +21 -4
  7. app/features/locations.php +1 -1
  8. app/features/mec/booking.php +27 -5
  9. app/features/mec/dashboard.php +2 -2
  10. app/features/mec/messages.php +1 -1
  11. app/features/mec/meta_boxes/display_options.php +1 -1
  12. app/features/mec/modules.php +1 -11
  13. app/features/mec/notifications.php +12 -0
  14. app/features/notifications.php +0 -6
  15. app/features/organizers.php +3 -3
  16. app/features/popup/event.php +2 -2
  17. app/features/speakers.php +3 -3
  18. app/libraries/main.php +32 -2
  19. app/libraries/notifications.php +10 -9
  20. app/libraries/render.php +22 -0
  21. app/libraries/skins.php +14 -3
  22. app/modules/booking/steps/tickets.php +10 -11
  23. app/modules/googlemap/details.php +1 -1
  24. app/skins/agenda/render.php +1 -1
  25. app/skins/custom/tpl.php +1 -1
  26. app/skins/grid/tpl.php +1 -1
  27. app/skins/list/render.php +1 -1
  28. app/skins/map/tpl.php +3 -3
  29. app/skins/masonry/render.php +1 -1
  30. app/skins/monthly_view/calendar.php +4 -1
  31. app/skins/monthly_view/calendar_clean.php +3 -1
  32. app/skins/monthly_view/calendar_novel.php +2 -1
  33. app/skins/monthly_view/calendar_simple.php +24 -5
  34. app/skins/single.php +4 -9
  35. app/skins/single/default.php +2 -2
  36. app/skins/single/tpl.php +1 -1
  37. assets/css/backend.css +43 -2
  38. assets/css/backend.min.css +2 -2
  39. assets/js/backend.js +35 -6
  40. changelog.txt +25 -1
  41. languages/modern-events-calendar-lite-cs_CZ.mo +0 -0
  42. languages/modern-events-calendar-lite-cs_CZ.po +1019 -914
  43. languages/modern-events-calendar-lite-de_DE.mo +0 -0
  44. languages/modern-events-calendar-lite-de_DE.po +1014 -909
  45. languages/modern-events-calendar-lite-en_US.mo +0 -0
  46. languages/modern-events-calendar-lite-en_US.po +938 -850
  47. languages/modern-events-calendar-lite-es_ES.mo +0 -0
  48. languages/modern-events-calendar-lite-es_ES.po +321 -319
app/features/events.php CHANGED
@@ -392,6 +392,18 @@ class MEC_feature_events extends MEC_base
392
  jQuery(this).addClass("mec-tab-active");
393
  jQuery("#" + href ).addClass("mec-tab-active");
394
  });
 
 
 
 
 
 
 
 
 
 
 
 
395
  </script>
396
  <?php
397
  }
@@ -1162,7 +1174,7 @@ class MEC_feature_events extends MEC_base
1162
  <?php /** Dropdown **/ elseif($event_field['type'] == 'select'): ?>
1163
  <select id="mec_event_fields_<?php echo $j; ?>" name="mec[fields][<?php echo $j; ?>]" title="<?php esc_attr($event_field_name); ?>" <?php if(isset($event_field['mandatory']) and $event_field['mandatory']) echo 'required'; ?>>
1164
  <?php foreach($event_field['options'] as $event_field_option): ?>
1165
- <option value="<?php esc_attr_e($event_field_option['label'], 'modern-events-calendar-lite'); ?>" <?php echo ($event_field_option['label'] == $value ? 'selected="selected"' : ''); ?>><?php _e($event_field_option['label'], 'modern-events-calendar-lite'); ?></option>
1166
  <?php endforeach; ?>
1167
  </select>
1168
 
@@ -1170,7 +1182,7 @@ class MEC_feature_events extends MEC_base
1170
  <?php foreach($event_field['options'] as $event_field_option): ?>
1171
  <label for="mec_event_fields_<?php echo $j.'_'.strtolower(str_replace(' ', '_', $event_field_option['label'])); ?>">
1172
  <input type="radio" id="mec_event_fields_<?php echo $j.'_'.strtolower(str_replace(' ', '_', $event_field_option['label'])); ?>" <?php echo ($event_field_option['label'] == $value ? 'checked="checked"' : ''); ?> name="mec[fields][<?php echo $j; ?>]" value="<?php _e($event_field_option['label'], 'modern-events-calendar-lite'); ?>" />
1173
- <?php _e($event_field_option['label'], 'modern-events-calendar-lite'); ?>
1174
  </label>
1175
  <?php endforeach; ?>
1176
 
@@ -1178,7 +1190,7 @@ class MEC_feature_events extends MEC_base
1178
  <?php foreach($event_field['options'] as $event_field_option): ?>
1179
  <label for="mec_event_fields_<?php echo $j.'_'.strtolower(str_replace(' ', '_', $event_field_option['label'])); ?>">
1180
  <input type="checkbox" id="mec_event_fields_<?php echo $j.'_'.strtolower(str_replace(' ', '_', $event_field_option['label'])); ?>" <?php echo ((is_array($value) and in_array($event_field_option['label'], $value)) ? 'checked="checked"' : ''); ?> name="mec[fields][<?php echo $j; ?>][]" value="<?php _e($event_field_option['label'], 'modern-events-calendar-lite'); ?>" />
1181
- <?php _e($event_field_option['label'], 'modern-events-calendar-lite'); ?>
1182
  </label>
1183
  <?php endforeach; ?>
1184
  <?php endif; ?>
@@ -3602,90 +3614,57 @@ class MEC_feature_events extends MEC_base
3602
  $wp_list_table = _get_list_table('WP_Posts_List_Table');
3603
 
3604
  $action = $wp_list_table->current_action();
3605
- if (!$action) {
3606
- return false;
3607
- }
3608
 
3609
  $post_type = isset($_GET['post_type']) ? sanitize_text_field($_GET['post_type']) : 'post';
3610
- if ($post_type != $this->PT) {
3611
- return false;
3612
- }
3613
 
3614
  check_admin_referer('bulk-posts');
3615
 
3616
  // MEC Render Library
3617
  $render = $this->getRender();
3618
 
3619
- switch ($action) {
 
3620
  case 'ical-export':
 
3621
  $post_ids = $_GET['post'];
3622
  $events = '';
3623
 
3624
- foreach ($post_ids as $post_id) {
3625
- $events .= $this->main->ical_single((int)$post_id);
3626
- }
3627
-
3628
  $ical_calendar = $this->main->ical_calendar($events);
3629
 
3630
  header('Content-type: application/force-download; charset=utf-8');
3631
  header('Content-Disposition: attachment; filename="mec-events-' . date('YmdTHi') . '.ics"');
3632
 
3633
  echo $ical_calendar;
3634
- exit;
3635
 
 
3636
  break;
 
3637
  case 'csv-export':
 
 
3638
  header('Content-Type: text/csv; charset=utf-8');
3639
  header('Content-Disposition: attachment; filename=bookings-' . md5(time() . mt_rand(100, 999)) . '.csv');
3640
 
3641
  $post_ids = $_GET['post'];
3642
  $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')), $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')));
3643
 
3644
- $output = fopen('php://output', 'w');
3645
- fputcsv($output, $columns);
3646
-
3647
- foreach ($post_ids as $post_id) {
3648
- $post_id = (int)$post_id;
3649
-
3650
- $data = $render->data($post_id);
3651
-
3652
- $dates = $render->dates($post_id, $data);
3653
- $date = $dates[0];
3654
-
3655
- $location = isset($data->locations[$data->meta['mec_location_id']]) ? $data->locations[$data->meta['mec_location_id']] : array();
3656
- $organizer = isset($data->organizers[$data->meta['mec_organizer_id']]) ? $data->organizers[$data->meta['mec_organizer_id']] : array();
3657
 
3658
- $event = array(
3659
- $post_id,
3660
- $data->title,
3661
- $date['start']['date'],
3662
- $data->time['start'],
3663
- $date['end']['date'],
3664
- $data->time['end'],
3665
- $data->permalink,
3666
- (isset($location['address']) ? $location['address'] : (isset($location['name']) ? $location['name'] : '')),
3667
- (isset($organizer['name']) ? $organizer['name'] : ''),
3668
- (isset($organizer['tel']) ? $organizer['tel'] : ''),
3669
- (isset($organizer['email']) ? $organizer['email'] : ''),
3670
- (is_numeric($data->meta['mec_cost']) ? $this->main->render_price($data->meta['mec_cost']) : $data->meta['mec_cost']),
3671
- );
3672
 
3673
- fputcsv($output, $event);
3674
  }
3675
 
3676
- exit;
3677
-
3678
- break;
3679
- case 'ms-excel-export':
3680
- header('Content-Type: application/vnd.ms-excel; charset=utf-8');
3681
- header('Content-Disposition: attachment; filename=bookings-' . md5(time() . mt_rand(100, 999)) . '.csv');
3682
-
3683
- $post_ids = $_GET['post'];
3684
- $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')), $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')));
3685
-
3686
  $output = fopen('php://output', 'w');
3687
- fwrite($output, "sep=\t" . PHP_EOL);
3688
- fputcsv($output, $columns, "\t");
3689
 
3690
  foreach($post_ids as $post_id)
3691
  {
@@ -3714,19 +3693,26 @@ class MEC_feature_events extends MEC_base
3714
  (is_numeric($data->meta['mec_cost']) ? $this->main->render_price($data->meta['mec_cost']) : $data->meta['mec_cost']),
3715
  );
3716
 
3717
- fputcsv($output, $event, "\t");
 
 
 
 
 
 
 
 
3718
  }
3719
 
3720
  exit;
3721
-
3722
  break;
 
3723
  case 'xml-export':
 
3724
  $post_ids = $_GET['post'];
3725
- $events = array();
3726
 
3727
- foreach ($post_ids as $post_id) {
3728
- $events[] = $this->main->export_single((int)$post_id);
3729
- }
3730
 
3731
  $xml_feed = $this->main->xml_convert(array('events' => $events));
3732
 
@@ -3734,34 +3720,34 @@ class MEC_feature_events extends MEC_base
3734
  header('Content-Disposition: attachment; filename="mec-events-' . date('YmdTHi') . '.xml"');
3735
 
3736
  echo $xml_feed;
3737
- exit;
3738
 
 
3739
  break;
 
3740
  case 'json-export':
 
3741
  $post_ids = $_GET['post'];
3742
- $events = array();
3743
 
3744
- foreach ($post_ids as $post_id) {
3745
- $events[] = $this->main->export_single((int)$post_id);
3746
- }
3747
 
3748
  header('Content-type: application/force-download; charset=utf-8');
3749
  header('Content-Disposition: attachment; filename="mec-events-' . date('YmdTHi') . '.json"');
3750
 
3751
  echo json_encode($events);
3752
- exit;
3753
 
 
3754
  break;
 
3755
  case 'duplicate':
3756
- $post_ids = $_GET['post'];
3757
 
3758
- foreach ($post_ids as $post_id) {
3759
- $this->main->duplicate((int)$post_id);
3760
- }
3761
 
3762
  break;
 
3763
  default:
3764
- return;
3765
  }
3766
 
3767
  wp_redirect('edit.php?post_type=' . $this->main->get_main_post_type());
@@ -4054,6 +4040,10 @@ class MEC_feature_events extends MEC_base
4054
  $render_recipients = array_unique(explode(',', $mail_recipients_info));
4055
  $headers = array('Content-Type: text/html; charset=UTF-8');
4056
 
 
 
 
 
4057
  // Set Email Type to HTML
4058
  add_filter('wp_mail_content_type', array($this->main, 'html_email_type'));
4059
 
392
  jQuery(this).addClass("mec-tab-active");
393
  jQuery("#" + href ).addClass("mec-tab-active");
394
  });
395
+ jQuery("#publish").on("click", function () {
396
+ var fields = jQuery("#mec-event-data").find("select, textarea, input").serializeArray();
397
+ jQuery.each(fields, function(i, field) {
398
+ if (!field.value) {
399
+ var xdf = jQuery("#mec_metabox_details .mec-add-event-tabs-left .mec-add-event-tabs-link[data-href='mec-event-data']");
400
+ jQuery("#mec_metabox_details .mec-add-event-tabs-left .mec-add-event-tabs-link").removeClass("mec-tab-active");
401
+ jQuery("#mec_metabox_details .mec-add-event-tabs-right .mec-event-tab-content").removeClass("mec-tab-active");
402
+ jQuery(xdf).addClass("mec-tab-active");
403
+ jQuery(".mec-add-event-tabs-right #mec-event-data").addClass("mec-tab-active");
404
+ }
405
+ });
406
+ });
407
  </script>
408
  <?php
409
  }
1174
  <?php /** Dropdown **/ elseif($event_field['type'] == 'select'): ?>
1175
  <select id="mec_event_fields_<?php echo $j; ?>" name="mec[fields][<?php echo $j; ?>]" title="<?php esc_attr($event_field_name); ?>" <?php if(isset($event_field['mandatory']) and $event_field['mandatory']) echo 'required'; ?>>
1176
  <?php foreach($event_field['options'] as $event_field_option): ?>
1177
+ <option value="<?php esc_attr_e($event_field_option['label'], 'modern-events-calendar-lite'); ?>" <?php echo ($event_field_option['label'] == $value ? 'selected="selected"' : ''); ?>><?php _e(stripslashes($event_field_option['label']), 'modern-events-calendar-lite'); ?></option>
1178
  <?php endforeach; ?>
1179
  </select>
1180
 
1182
  <?php foreach($event_field['options'] as $event_field_option): ?>
1183
  <label for="mec_event_fields_<?php echo $j.'_'.strtolower(str_replace(' ', '_', $event_field_option['label'])); ?>">
1184
  <input type="radio" id="mec_event_fields_<?php echo $j.'_'.strtolower(str_replace(' ', '_', $event_field_option['label'])); ?>" <?php echo ($event_field_option['label'] == $value ? 'checked="checked"' : ''); ?> name="mec[fields][<?php echo $j; ?>]" value="<?php _e($event_field_option['label'], 'modern-events-calendar-lite'); ?>" />
1185
+ <?php _e(stripslashes($event_field_option['label']), 'modern-events-calendar-lite'); ?>
1186
  </label>
1187
  <?php endforeach; ?>
1188
 
1190
  <?php foreach($event_field['options'] as $event_field_option): ?>
1191
  <label for="mec_event_fields_<?php echo $j.'_'.strtolower(str_replace(' ', '_', $event_field_option['label'])); ?>">
1192
  <input type="checkbox" id="mec_event_fields_<?php echo $j.'_'.strtolower(str_replace(' ', '_', $event_field_option['label'])); ?>" <?php echo ((is_array($value) and in_array($event_field_option['label'], $value)) ? 'checked="checked"' : ''); ?> name="mec[fields][<?php echo $j; ?>][]" value="<?php _e($event_field_option['label'], 'modern-events-calendar-lite'); ?>" />
1193
+ <?php _e(stripslashes($event_field_option['label']), 'modern-events-calendar-lite'); ?>
1194
  </label>
1195
  <?php endforeach; ?>
1196
  <?php endif; ?>
3614
  $wp_list_table = _get_list_table('WP_Posts_List_Table');
3615
 
3616
  $action = $wp_list_table->current_action();
3617
+ if(!$action) return false;
 
 
3618
 
3619
  $post_type = isset($_GET['post_type']) ? sanitize_text_field($_GET['post_type']) : 'post';
3620
+ if($post_type != $this->PT) return false;
 
 
3621
 
3622
  check_admin_referer('bulk-posts');
3623
 
3624
  // MEC Render Library
3625
  $render = $this->getRender();
3626
 
3627
+ switch($action)
3628
+ {
3629
  case 'ical-export':
3630
+
3631
  $post_ids = $_GET['post'];
3632
  $events = '';
3633
 
3634
+ foreach($post_ids as $post_id) $events .= $this->main->ical_single((int) $post_id);
 
 
 
3635
  $ical_calendar = $this->main->ical_calendar($events);
3636
 
3637
  header('Content-type: application/force-download; charset=utf-8');
3638
  header('Content-Disposition: attachment; filename="mec-events-' . date('YmdTHi') . '.ics"');
3639
 
3640
  echo $ical_calendar;
 
3641
 
3642
+ exit;
3643
  break;
3644
+
3645
  case 'csv-export':
3646
+ case 'ms-excel-export':
3647
+
3648
  header('Content-Type: text/csv; charset=utf-8');
3649
  header('Content-Disposition: attachment; filename=bookings-' . md5(time() . mt_rand(100, 999)) . '.csv');
3650
 
3651
  $post_ids = $_GET['post'];
3652
  $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')), $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')));
3653
 
3654
+ // Event Fields
3655
+ $fields = $this->main->get_event_fields();
3656
+ if(!is_array($fields)) $fields = array();
 
 
 
 
 
 
 
 
 
 
3657
 
3658
+ foreach($fields as $f => $field)
3659
+ {
3660
+ if(!is_numeric($f)) continue;
3661
+ if(!isset($field['label']) or (isset($field['label']) and trim($field['label']) == '')) continue;
 
 
 
 
 
 
 
 
 
 
3662
 
3663
+ $columns[] = stripslashes($field['label']);
3664
  }
3665
 
 
 
 
 
 
 
 
 
 
 
3666
  $output = fopen('php://output', 'w');
3667
+ fputcsv($output, $columns);
 
3668
 
3669
  foreach($post_ids as $post_id)
3670
  {
3693
  (is_numeric($data->meta['mec_cost']) ? $this->main->render_price($data->meta['mec_cost']) : $data->meta['mec_cost']),
3694
  );
3695
 
3696
+ if(isset($data->fields) and is_array($data->fields) and count($data->fields))
3697
+ {
3698
+ foreach($data->fields as $field)
3699
+ {
3700
+ $event[] = $field['value'];
3701
+ }
3702
+ }
3703
+
3704
+ fputcsv($output, $event);
3705
  }
3706
 
3707
  exit;
 
3708
  break;
3709
+
3710
  case 'xml-export':
3711
+
3712
  $post_ids = $_GET['post'];
 
3713
 
3714
+ $events = array();
3715
+ foreach($post_ids as $post_id) $events[] = $this->main->export_single((int) $post_id);
 
3716
 
3717
  $xml_feed = $this->main->xml_convert(array('events' => $events));
3718
 
3720
  header('Content-Disposition: attachment; filename="mec-events-' . date('YmdTHi') . '.xml"');
3721
 
3722
  echo $xml_feed;
 
3723
 
3724
+ exit;
3725
  break;
3726
+
3727
  case 'json-export':
3728
+
3729
  $post_ids = $_GET['post'];
 
3730
 
3731
+ $events = array();
3732
+ foreach ($post_ids as $post_id) $events[] = $this->main->export_single((int) $post_id);
 
3733
 
3734
  header('Content-type: application/force-download; charset=utf-8');
3735
  header('Content-Disposition: attachment; filename="mec-events-' . date('YmdTHi') . '.json"');
3736
 
3737
  echo json_encode($events);
 
3738
 
3739
+ exit;
3740
  break;
3741
+
3742
  case 'duplicate':
 
3743
 
3744
+ $post_ids = $_GET['post'];
3745
+ foreach($post_ids as $post_id) $this->main->duplicate((int)$post_id);
 
3746
 
3747
  break;
3748
+
3749
  default:
3750
+ return false;
3751
  }
3752
 
3753
  wp_redirect('edit.php?post_type=' . $this->main->get_main_post_type());
4040
  $render_recipients = array_unique(explode(',', $mail_recipients_info));
4041
  $headers = array('Content-Type: text/html; charset=UTF-8');
4042
 
4043
+ // Changing some sender email info.
4044
+ $notifications = $this->getNotifications();
4045
+ $notifications->mec_sender_email_notification_filter();
4046
+
4047
  // Set Email Type to HTML
4048
  add_filter('wp_mail_content_type', array($this->main, 'html_email_type'));
4049
 
app/features/feed/rss2.php CHANGED
@@ -17,7 +17,8 @@ do_action('rss_tag_pre', 'rss2');
17
  xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
18
  xmlns:mec="http://webnus.net/rss/mec/"
19
  xmlns:media="http://search.yahoo.com/mrss/"
20
- <?php do_action('rss2_ns'); ?>>
 
21
  <channel>
22
  <title><?php wp_title_rss(); ?></title>
23
  <atom:link href="<?php self_link(); ?>" rel="self" type="application/rss+xml" />
@@ -61,8 +62,17 @@ do_action('rss_tag_pre', 'rss2');
61
  <mec:startDate><?php echo $date; ?></mec:startDate>
62
  <mec:endDate><?php echo $this->main->get_end_date_by_occurrence($event->ID, $date); ?></mec:endDate>
63
 
 
 
 
 
 
 
 
 
64
  <?php $this->feed->enclosure_rss($event->ID); ?>
65
  <?php do_action('rss2_item'); ?>
 
66
  </item>
67
  <?php endforeach; endforeach; ?>
68
 
17
  xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
18
  xmlns:mec="http://webnus.net/rss/mec/"
19
  xmlns:media="http://search.yahoo.com/mrss/"
20
+ <?php do_action('rss2_ns'); ?>
21
+ <?php do_action('mec_rss2_ns'); ?>>
22
  <channel>
23
  <title><?php wp_title_rss(); ?></title>
24
  <atom:link href="<?php self_link(); ?>" rel="self" type="application/rss+xml" />
62
  <mec:startDate><?php echo $date; ?></mec:startDate>
63
  <mec:endDate><?php echo $this->main->get_end_date_by_occurrence($event->ID, $date); ?></mec:endDate>
64
 
65
+ <?php if(isset($event->data->meta) and isset($event->data->meta['mec_cost']) and trim($event->data->meta['mec_cost'])): ?>
66
+ <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>
67
+ <?php endif; ?>
68
+
69
+ <?php if(isset($event->data->categories) and is_array($event->data->categories) and count($event->data->categories)): ?>
70
+ <mec:category><?php $categories = ''; foreach($event->data->categories as $category) $categories .= $category['name'].', '; echo trim($categories, ', ') ?></mec:category>
71
+ <?php endif; ?>
72
+
73
  <?php $this->feed->enclosure_rss($event->ID); ?>
74
  <?php do_action('rss2_item'); ?>
75
+ <?php do_action('mec_rss2_item'); ?>
76
  </item>
77
  <?php endforeach; endforeach; ?>
78
 
app/features/fes.php CHANGED
@@ -296,12 +296,12 @@ class MEC_feature_fes extends MEC_base
296
  {
297
  foreach($transaction['tickets'][$counter]['variations'] as $variation_id => $variation_count)
298
  {
299
- if($variation_count > 0) $ticket_variations_output .= $ticket_variations[$variation_id]['title'].": ( ".$variation_count.' )'."\n";
300
  }
301
  }
302
 
303
  $ticket_id = isset($attendee['id']) ? $attendee['id'] : get_post_meta($post_id, 'mec_ticket_id', true);
304
- $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)), (isset($attendee['name']) ? $attendee['name'] : (isset($booker->first_name) ? trim($booker->first_name.' '.$booker->last_name) : '')), (isset($attendee['email']) ? $attendee['email'] : @$booker->user_email), $ticket_variations_output, $confirmed, $verified);
305
  $booking = apply_filters('mec_csv_export_booking', $booking, $post_id, $event_id);
306
 
307
  $reg_form = isset($attendee['reg']) ? $attendee['reg'] : array();
296
  {
297
  foreach($transaction['tickets'][$counter]['variations'] as $variation_id => $variation_count)
298
  {
299
+ if($variation_count > 0) $ticket_variations_output .= $ticket_variations[$variation_id]['title'].": ( ".$variation_count.' )'.", ";
300
  }
301
  }
302
 
303
  $ticket_id = isset($attendee['id']) ? $attendee['id'] : get_post_meta($post_id, 'mec_ticket_id', true);
304
+ $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)), (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);
305
  $booking = apply_filters('mec_csv_export_booking', $booking, $post_id, $event_id);
306
 
307
  $reg_form = isset($attendee['reg']) ? $attendee['reg'] : array();
app/features/fes/form.php CHANGED
@@ -274,7 +274,7 @@ $this->factory->params('footer', $javascript);
274
  </div>
275
  <div class="mec-col-6 mec-time-picker <?php echo ($allday == 1) ? 'mec-util-hidden' : ''; ?>">
276
  <?php $this->main->timepicker(array(
277
- 'method' => $this->settings['time_format'],
278
  'time_hour' => $start_time_hour,
279
  'time_minutes' => $start_time_minutes,
280
  'time_ampm' => $start_time_ampm,
@@ -293,7 +293,7 @@ $this->factory->params('footer', $javascript);
293
  </div>
294
  <div class="mec-col-6 mec-time-picker <?php echo ($allday == 1) ? 'mec-util-hidden' : ''; ?>">
295
  <?php $this->main->timepicker(array(
296
- 'method' => $this->settings['time_format'],
297
  'time_hour' => $end_time_hour,
298
  'time_minutes' => $end_time_minutes,
299
  'time_ampm' => $end_time_ampm,
@@ -360,7 +360,7 @@ $this->factory->params('footer', $javascript);
360
  </div>
361
  <div class="mec-col-8">
362
  <?php $this->main->timepicker(array(
363
- 'method' => $this->settings['time_format'],
364
  'time_hour' => $start_time_hour,
365
  'time_minutes' => $start_time_minutes,
366
  'time_ampm' => $start_time_ampm,
@@ -375,7 +375,7 @@ $this->factory->params('footer', $javascript);
375
  </div>
376
  <div class="mec-col-8">
377
  <?php $this->main->timepicker(array(
378
- 'method' => $this->settings['time_format'],
379
  'time_hour' => $end_time_hour,
380
  'time_minutes' => $end_time_minutes,
381
  'time_ampm' => $end_time_ampm,
274
  </div>
275
  <div class="mec-col-6 mec-time-picker <?php echo ($allday == 1) ? 'mec-util-hidden' : ''; ?>">
276
  <?php $this->main->timepicker(array(
277
+ 'method' => (isset($this->settings['time_format']) ? $this->settings['time_format'] : 12),
278
  'time_hour' => $start_time_hour,
279
  'time_minutes' => $start_time_minutes,
280
  'time_ampm' => $start_time_ampm,
293
  </div>
294
  <div class="mec-col-6 mec-time-picker <?php echo ($allday == 1) ? 'mec-util-hidden' : ''; ?>">
295
  <?php $this->main->timepicker(array(
296
+ 'method' => (isset($this->settings['time_format']) ? $this->settings['time_format'] : 12),
297
  'time_hour' => $end_time_hour,
298
  'time_minutes' => $end_time_minutes,
299
  'time_ampm' => $end_time_ampm,
360
  </div>
361
  <div class="mec-col-8">
362
  <?php $this->main->timepicker(array(
363
+ 'method' => (isset($this->settings['time_format']) ? $this->settings['time_format'] : 12),
364
  'time_hour' => $start_time_hour,
365
  'time_minutes' => $start_time_minutes,
366
  'time_ampm' => $start_time_ampm,
375
  </div>
376
  <div class="mec-col-8">
377
  <?php $this->main->timepicker(array(
378
+ 'method' => (isset($this->settings['time_format']) ? $this->settings['time_format'] : 12),
379
  'time_hour' => $end_time_hour,
380
  'time_minutes' => $end_time_minutes,
381
  'time_ampm' => $end_time_ampm,
app/features/ix.php CHANGED
@@ -189,6 +189,7 @@ class MEC_feature_ix extends MEC_base
189
 
190
  $this->response = array();
191
  if($this->action == 'import-start') $this->response = $this->import_start();
 
192
 
193
  $path = MEC::import('app.features.ix.import', true, true);
194
 
@@ -197,6 +198,211 @@ class MEC_feature_ix extends MEC_base
197
  echo $output = ob_get_clean();
198
  }
199
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
200
  public function import_start()
201
  {
202
  $feed_file = $_FILES['feed'];
189
 
190
  $this->response = array();
191
  if($this->action == 'import-start') $this->response = $this->import_start();
192
+ elseif($this->action == 'import-start-bookings') $this->response = $this->import_start_bookings();
193
 
194
  $path = MEC::import('app.features.ix.import', true, true);
195
 
198
  echo $output = ob_get_clean();
199
  }
200
 
201
+ public function import_start_bookings()
202
+ {
203
+ $feed_file = $_FILES['feed'];
204
+
205
+ // File is not uploaded
206
+ if(!isset($feed_file['name']) or (isset($feed_file['name']) and trim($feed_file['name']) == '')) return array('success' => 0, 'message' => __('Please upload a CSV file.', 'modern-events-calendar-lite'));
207
+
208
+ // File Type is not valid
209
+ if(!isset($feed_file['type']) or (isset($feed_file['type']) and !in_array(strtolower($feed_file['type']), array('text/csv', 'application/vnd.ms-excel')))) return array('success' => 0, 'message' => __('The file type should be CSV.', 'modern-events-calendar-lite'));
210
+
211
+ // Upload the File
212
+ $upload_dir = wp_upload_dir();
213
+
214
+ $target_path = $upload_dir['basedir'].'/'.basename($feed_file['name']);
215
+ $uploaded = move_uploaded_file($feed_file['tmp_name'], $target_path);
216
+
217
+ // Error on Upload
218
+ if(!$uploaded) return array('success' => 0, 'message' => __("An error occurred during the file upload! Please check permissions!", 'modern-events-calendar-lite'));
219
+
220
+ if(($h = fopen($target_path, 'r')) !== false)
221
+ {
222
+ // MEC Libraries
223
+ $gateway = new MEC_gateway();
224
+ $book = $this->getBook();
225
+
226
+ $bookings = array();
227
+ while(($data = fgetcsv($h, 1000, ",")) !== false)
228
+ {
229
+ $booking_id = $data[0];
230
+ if(!is_numeric($booking_id)) continue;
231
+
232
+ $event_title = $data[1];
233
+ $event_id = post_exists($event_title, '', '', $this->main->get_main_post_type());
234
+
235
+ // Event not Found
236
+ if(!$event_id) continue;
237
+
238
+ $tickets = get_post_meta($event_id, 'mec_tickets', true);
239
+ if(!is_array($tickets)) $tickets = array();
240
+
241
+ $ticket_id = 0;
242
+ $ticket_name = $data[5];
243
+
244
+ foreach($tickets as $tid => $ticket)
245
+ {
246
+ if(strtolower($ticket['name']) == strtolower($ticket_name))
247
+ {
248
+ $ticket_id = $tid;
249
+ break;
250
+ }
251
+ }
252
+
253
+ // Ticket ID not found!
254
+ if(!$ticket_id) continue;
255
+
256
+ $transaction_id = $data[6];
257
+
258
+ // Transaction Exists
259
+ $transaction_exists = $book->get_transaction($transaction_id);
260
+ if(is_array($transaction_exists) and count($transaction_exists)) continue;
261
+
262
+ $start_datetime = $data[2];
263
+ $end_datetime = $data[3];
264
+ $name = $data[8];
265
+ $email = $data[9];
266
+
267
+ $confirmed_label = $data[11];
268
+ if($confirmed_label == __('Confirmed', 'modern-events-calendar-lite')) $confirmed = 1;
269
+ elseif($confirmed_label == __('Rejected', 'modern-events-calendar-lite')) $confirmed = -1;
270
+ else $confirmed = 0;
271
+
272
+ $verified_label = $data[12];
273
+ if($verified_label == __('Verified', 'modern-events-calendar-lite')) $verified = 1;
274
+ elseif($verified_label == __('Canceled', 'modern-events-calendar-lite')) $verified = -1;
275
+ else $verified = 0;
276
+
277
+ $ticket_variations = explode(',', $data[10]);
278
+ $variations = $this->main->ticket_variations($event_id);
279
+
280
+ $v = array();
281
+ foreach($variations as $vid => $variation)
282
+ {
283
+ foreach($ticket_variations as $ticket_variation)
284
+ {
285
+ $variation_ex = explode(':', $ticket_variation);
286
+ if(!isset($variation_ex[1])) continue;
287
+
288
+ $variation_name = $variation_ex[0];
289
+ $variation_count = trim($variation_ex[1], '() ');
290
+
291
+ if(strtolower($variation['title']) == strtolower($variation_name))
292
+ {
293
+ $v[$vid] = $variation_count;
294
+ }
295
+ }
296
+ }
297
+
298
+ if(!isset($bookings[$transaction_id])) $bookings[$transaction_id] = array('tickets' => array());
299
+
300
+ $bookings[$transaction_id]['tickets'][] = array(
301
+ 'email' => $email,
302
+ 'name' => $name,
303
+ 'variations' => $v,
304
+ 'id' => $ticket_id,
305
+ 'count' => 1
306
+ );
307
+
308
+ if(!isset($bookings[$transaction_id]['date'])) $bookings[$transaction_id]['date'] = strtotime($start_datetime).':'.strtotime($end_datetime);
309
+ if(!isset($bookings[$transaction_id]['event_id'])) $bookings[$transaction_id]['event_id'] = $event_id;
310
+ if(!isset($bookings[$transaction_id]['confirmed'])) $bookings[$transaction_id]['confirmed'] = $confirmed;
311
+ if(!isset($bookings[$transaction_id]['verified'])) $bookings[$transaction_id]['verified'] = $verified;
312
+ }
313
+
314
+ fclose($h);
315
+
316
+ foreach($bookings as $transaction_id => $transaction)
317
+ {
318
+ $event_id = $transaction['event_id'];
319
+ $tickets = $transaction['tickets'];
320
+
321
+ $event_tickets = get_post_meta($event_id, 'mec_tickets', true);
322
+ if(!is_array($event_tickets)) $event_tickets = array();
323
+
324
+ $raw_tickets = array();
325
+ $raw_variations = array();
326
+
327
+ foreach($tickets as $ticket)
328
+ {
329
+ if(!isset($raw_tickets[$ticket['id']])) $raw_tickets[$ticket['id']] = 1;
330
+ else $raw_tickets[$ticket['id']] += 1;
331
+
332
+ if(isset($ticket['variations']) and is_array($ticket['variations']) and count($ticket['variations']))
333
+ {
334
+ foreach($ticket['variations'] as $variation_id => $variation_count)
335
+ {
336
+ if(!trim($variation_count)) continue;
337
+
338
+ if(!isset($raw_variations[$variation_id])) $raw_variations[$variation_id] = $variation_count;
339
+ else $raw_variations[$variation_id] += $variation_count;
340
+ }
341
+ }
342
+ }
343
+
344
+ // Calculate price of bookings
345
+ $price_details = $book->get_price_details($raw_tickets, $event_id, $event_tickets, $raw_variations);
346
+
347
+ $transaction['price_details'] = $price_details;
348
+ $transaction['total'] = $price_details['total'];
349
+ $transaction['discount'] = 0;
350
+ $transaction['price'] = $price_details['total'];
351
+ $transaction['coupon'] = NULL;
352
+
353
+ update_option($transaction_id, $transaction, false);
354
+
355
+ $attendees = isset($transaction['tickets']) ? $transaction['tickets'] : array();
356
+
357
+ $attention_date = isset($transaction['date']) ? $transaction['date'] : '';
358
+ $attention_times = explode(':', $attention_date);
359
+ $date = date('Y-m-d H:i:s', trim($attention_times[0]));
360
+
361
+ $main_attendee = isset($attendees[0]) ? $attendees[0] : array();
362
+ $name = isset($main_attendee['name']) ? $main_attendee['name'] : '';
363
+
364
+ $ticket_ids = '';
365
+ $attendees_info = array();
366
+
367
+ foreach($attendees as $i => $attendee)
368
+ {
369
+ if(!is_numeric($i)) continue;
370
+
371
+ $ticket_ids .= $attendee['id'] . ',';
372
+ if(!array_key_exists($attendee['email'], $attendees_info)) $attendees_info[$attendee['email']] = array('count' => $attendee['count']);
373
+ else $attendees_info[$attendee['email']]['count'] = ($attendees_info[$attendee['email']]['count'] + $attendee['count']);
374
+ }
375
+
376
+ $ticket_ids = ',' . trim($ticket_ids, ', ') . ',';
377
+ $user_id = $gateway->register_user($main_attendee);
378
+
379
+ $book_subject = $name.' - '.get_userdata($user_id)->user_email;
380
+ $book_id = $book->add(
381
+ array(
382
+ 'post_author' => $user_id,
383
+ 'post_type' => $this->main->get_book_post_type(),
384
+ 'post_title' => $book_subject,
385
+ 'post_date' => $date,
386
+ 'attendees_info' => $attendees_info,
387
+ 'mec_attendees' => $attendees
388
+ ),
389
+ $transaction_id,
390
+ $ticket_ids
391
+ );
392
+
393
+ update_post_meta($book_id, 'mec_gateway', 'MEC_gateway');
394
+ update_post_meta($book_id, 'mec_gateway_label', $gateway->label());
395
+ update_post_meta($book_id, 'mec_confirmed', $transaction['confirmed']);
396
+ update_post_meta($book_id, 'mec_verified', $transaction['verified']);
397
+ }
398
+ }
399
+
400
+ // Delete File
401
+ unlink($target_path);
402
+
403
+ return array('success' => 1, 'message' => __('The bookings are imported successfully!', 'modern-events-calendar-lite'));
404
+ }
405
+
406
  public function import_start()
407
  {
408
  $feed_file = $_FILES['feed'];
app/features/ix/import.php CHANGED
@@ -19,7 +19,7 @@ $third_parties = $this->main->get_integrated_plugins_for_import();
19
  <div class="mec-container">
20
  <div class="import-content w-clearfix extra">
21
  <h3><?php _e('Import MEC XML Feed', 'modern-events-calendar-lite'); ?></h3>
22
- <form id="mec_import_form" action="<?php echo $this->main->get_full_url(); ?>" method="POST" enctype="multipart/form-data">
23
  <div class="mec-form-row">
24
  <p><?php echo sprintf(__("You can import %s events from another website to this website. You just need an XML feed of the events that can be exported from source website!", 'modern-events-calendar-lite'), '<strong>'.__('Modern Events Calendar', 'modern-events-calendar-lite').'</strong>'); ?></p>
25
  </div>
@@ -30,9 +30,9 @@ $third_parties = $this->main->get_integrated_plugins_for_import();
30
  </div>
31
  </form>
32
 
33
- <h3><?php _e('Import .ics File', 'modern-events-calendar-lite'); ?></h3>
34
  <?php if($this->getPRO()): ?>
35
- <form id="mec_import_form" action="<?php echo $this->main->get_full_url(); ?>" method="POST" enctype="multipart/form-data">
36
  <div class="mec-form-row">
37
  <p><?php echo sprintf(__("ICS format supports by many different service providers like Facebook. Apple Calendar etc. You can import your ics file into the %s using this form.", 'modern-events-calendar-lite'), '<strong>'.__('Modern Events Calendar', 'modern-events-calendar-lite').'</strong>'); ?></p>
38
  </div>
@@ -46,7 +46,24 @@ $third_parties = $this->main->get_integrated_plugins_for_import();
46
  <div class="info-msg"><?php echo sprintf(__("%s is required to use this feature.", 'modern-events-calendar-lite'), '<a href="'.$this->main->get_pro_link().'" target="_blank">'.__('Pro version of Modern Events Calendar', 'modern-events-calendar-lite').'</a>'); ?></div>
47
  <?php endif; ?>
48
 
49
- <?php if($this->action == 'import-start'): ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
50
  <div class="mec-ix-import-started">
51
  <?php if($this->response['success'] == 0): ?>
52
  <div class="mec-error"><?php echo $this->response['message']; ?></div>
19
  <div class="mec-container">
20
  <div class="import-content w-clearfix extra">
21
  <h3><?php _e('Import MEC XML Feed', 'modern-events-calendar-lite'); ?></h3>
22
+ <form id="mec_import_xml_form" action="<?php echo $this->main->get_full_url(); ?>" method="POST" enctype="multipart/form-data">
23
  <div class="mec-form-row">
24
  <p><?php echo sprintf(__("You can import %s events from another website to this website. You just need an XML feed of the events that can be exported from source website!", 'modern-events-calendar-lite'), '<strong>'.__('Modern Events Calendar', 'modern-events-calendar-lite').'</strong>'); ?></p>
25
  </div>
30
  </div>
31
  </form>
32
 
33
+ <br><h3><?php _e('Import .ics File', 'modern-events-calendar-lite'); ?></h3>
34
  <?php if($this->getPRO()): ?>
35
+ <form id="mec_import_ics_form" action="<?php echo $this->main->get_full_url(); ?>" method="POST" enctype="multipart/form-data">
36
  <div class="mec-form-row">
37
  <p><?php echo sprintf(__("ICS format supports by many different service providers like Facebook. Apple Calendar etc. You can import your ics file into the %s using this form.", 'modern-events-calendar-lite'), '<strong>'.__('Modern Events Calendar', 'modern-events-calendar-lite').'</strong>'); ?></p>
38
  </div>
46
  <div class="info-msg"><?php echo sprintf(__("%s is required to use this feature.", 'modern-events-calendar-lite'), '<a href="'.$this->main->get_pro_link().'" target="_blank">'.__('Pro version of Modern Events Calendar', 'modern-events-calendar-lite').'</a>'); ?></div>
47
  <?php endif; ?>
48
 
49
+ <br><h3><?php _e('Import Booking CSV File', 'modern-events-calendar-lite'); ?></h3>
50
+ <?php if($this->getPRO()): ?>
51
+ <form id="mec_import_csv_booking_form" action="<?php echo $this->main->get_full_url(); ?>" method="POST" enctype="multipart/form-data">
52
+ <div class="mec-form-row">
53
+ <p><?php echo sprintf(__("You can export bookings from %s using the booking menu in source website. You need a CSV export and then you're able to simply import it using this form in to your target website.", 'modern-events-calendar-lite'), '<strong>'.__('Modern Events Calendar', 'modern-events-calendar-lite').'</strong>'); ?></p>
54
+ <p style="color: red;"><?php echo __("Please note that you should create (or imports) events and tickets before importing the bookings otherwise booking won't import due to lack of data.", 'modern-events-calendar-lite'); ?></p>
55
+ </div>
56
+ <div class="mec-form-row">
57
+ <input type="file" name="feed" id="feed" title="<?php esc_attr_e('CSV File', 'modern-events-calendar-lite'); ?>">
58
+ <input type="hidden" name="mec-ix-action" value="import-start-bookings">
59
+ <button class="button button-primary mec-button-primary mec-btn-2"><?php _e('Upload & Import', 'modern-events-calendar-lite'); ?></button>
60
+ </div>
61
+ </form>
62
+ <?php else: ?>
63
+ <div class="info-msg"><?php echo sprintf(__("%s is required to use this feature.", 'modern-events-calendar-lite'), '<a href="'.$this->main->get_pro_link().'" target="_blank">'.__('Pro version of Modern Events Calendar', 'modern-events-calendar-lite').'</a>'); ?></div>
64
+ <?php endif; ?>
65
+
66
+ <?php if($this->action == 'import-start' or $this->action == 'import-start-bookings'): ?>
67
  <div class="mec-ix-import-started">
68
  <?php if($this->response['success'] == 0): ?>
69
  <div class="mec-error"><?php echo $this->response['message']; ?></div>
app/features/locations.php CHANGED
@@ -371,7 +371,7 @@ class MEC_feature_locations extends MEC_base
371
  <div class="mec-form-row">
372
  <input type="url" name="mec[location][url]" id="mec_location_url" value="" placeholder="<?php _e('Location Website', 'modern-events-calendar-lite'); ?>" />
373
  </div>
374
- <?php do_action( 'mec_location_after_new_form' ); ?>
375
  <?php /* Don't show this section in FES */ if(is_admin()): ?>
376
  <div class="mec-form-row mec-thumbnail-row">
377
  <div id="mec_location_thumbnail_img"></div>
371
  <div class="mec-form-row">
372
  <input type="url" name="mec[location][url]" id="mec_location_url" value="" placeholder="<?php _e('Location Website', 'modern-events-calendar-lite'); ?>" />
373
  </div>
374
+ <?php do_action('mec_location_after_new_form'); ?>
375
  <?php /* Don't show this section in FES */ if(is_admin()): ?>
376
  <div class="mec-form-row mec-thumbnail-row">
377
  <div id="mec_location_thumbnail_img"></div>
app/features/mec/booking.php CHANGED
@@ -167,6 +167,28 @@ $gateways_options = $this->main->get_gateways_options();
167
  </span>
168
  </div>
169
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
170
  <div class="mec-form-row">
171
  <label class="mec-col-3" for="mec_settings_booking_thankyou_page"><?php _e('Thank You Page', 'modern-events-calendar-lite'); ?></label>
172
  <div class="mec-col-4">
@@ -570,9 +592,9 @@ $gateways_options = $this->main->get_gateways_options();
570
  <button type="button" class="button" data-type="agreement"><?php _e( 'Agreement', 'modern-events-calendar-lite' ); ?></button>
571
  <button type="button" class="button" data-type="p"><?php _e( 'Paragraph', 'modern-events-calendar-lite' ); ?></button>
572
  </div>
573
- <?php do_action( 'mec_reg_fields_form_end' ); ?>
574
  </div>
575
- <?php do_action( 'after_mec_reg_fields_form' ); ?>
576
  </div>
577
  <input type="hidden" id="mec_new_reg_field_key" value="<?php echo $i + 1; ?>" />
578
  <div class="mec-util-hidden">
@@ -665,13 +687,13 @@ $gateways_options = $this->main->get_gateways_options();
665
  <button type="button" class="button" data-type="agreement"><?php _e( 'Agreement', 'modern-events-calendar-lite' ); ?></button>
666
  <button type="button" class="button" data-type="p"><?php _e( 'Paragraph', 'modern-events-calendar-lite' ); ?></button>
667
  </div>
668
- <?php do_action( 'mec_bfixed_fields_form_end' ); ?>
669
  </div>
670
  <div class="mec-form-row">
671
- <?php wp_nonce_field( 'mec_options_form' ); ?>
672
  <button style="display: none;" id="mec_reg_fields_form_button" class="button button-primary mec-button-primary" type="submit"><?php _e( 'Save Changes', 'modern-events-calendar-lite' ); ?></button>
673
  </div>
674
- <?php do_action( 'after_mec_bfixed_fields_form' ); ?>
675
  </div>
676
  <input type="hidden" id="mec_new_bfixed_field_key" value="<?php echo $b + 1; ?>" />
677
  <div class="mec-util-hidden">
167
  </span>
168
  </div>
169
  </div>
170
+ <div class="mec-form-row">
171
+ <label class="mec-col-3" for="mec_settings_cancellation_period_time"><?php _e('Cancellation Period', 'modern-events-calendar-lite'); ?></label>
172
+ <div class="mec-col-6">
173
+ <input type="number" id="mec_settings_cancellation_period_time" name="mec[settings][cancellation_period_time]" value="<?php echo ((isset($settings['cancellation_period_time']) and trim($settings['cancellation_period_time']) != '') ? $settings['cancellation_period_time'] : ''); ?>" placeholder="<?php esc_attr_e('e.g 5', 'modern-events-calendar-lite'); ?>" />
174
+ <select name="mec[settings][cancellation_period_p]" title="<?php esc_attr_e('Period', 'modern-events-calendar-lite'); ?>">
175
+ <option value="hour" <?php echo (isset($settings['cancellation_period_p']) and $settings['cancellation_period_p'] == 'hour') ? 'selected="selected"' : ''; ?>><?php esc_html_e('Hour(s)', 'modern-events-calendar-lite'); ?></option>
176
+ <option value="day" <?php echo (isset($settings['cancellation_period_p']) and $settings['cancellation_period_p'] == 'day') ? 'selected="selected"' : ''; ?>><?php esc_html_e('Day(s)', 'modern-events-calendar-lite'); ?></option>
177
+ </select>
178
+ <select name="mec[settings][cancellation_period_type]" title="<?php esc_attr_e('Type', 'modern-events-calendar-lite'); ?>">
179
+ <option value="before" <?php echo (isset($settings['cancellation_period_type']) and $settings['cancellation_period_type'] == 'before') ? 'selected="selected"' : ''; ?>><?php esc_html_e('Before', 'modern-events-calendar-lite'); ?></option>
180
+ <option value="after" <?php echo (isset($settings['cancellation_period_type']) and $settings['cancellation_period_type'] == 'after') ? 'selected="selected"' : ''; ?>><?php esc_html_e('After', 'modern-events-calendar-lite'); ?></option>
181
+ </select>
182
+ <?php esc_html_e('Event Start', 'modern-events-calendar-lite'); ?>
183
+ <span class="mec-tooltip">
184
+ <div class="box">
185
+ <h5 class="title"><?php _e('Cancellation Period', 'modern-events-calendar-lite'); ?></h5>
186
+ <div class="content"><p><?php esc_attr_e("You can restrict the ability to cancel bookings. Leave empty for cancellation at any time. For example if you insert 5 hours before event start then bookers are able to cancel their booking before this time and after that they're not able to do that.", 'modern-events-calendar-lite'); ?></p></div>
187
+ </div>
188
+ <i title="" class="dashicons-before dashicons-editor-help"></i>
189
+ </span>
190
+ </div>
191
+ </div>
192
  <div class="mec-form-row">
193
  <label class="mec-col-3" for="mec_settings_booking_thankyou_page"><?php _e('Thank You Page', 'modern-events-calendar-lite'); ?></label>
194
  <div class="mec-col-4">
592
  <button type="button" class="button" data-type="agreement"><?php _e( 'Agreement', 'modern-events-calendar-lite' ); ?></button>
593
  <button type="button" class="button" data-type="p"><?php _e( 'Paragraph', 'modern-events-calendar-lite' ); ?></button>
594
  </div>
595
+ <?php do_action('mec_reg_fields_form_end'); ?>
596
  </div>
597
+ <?php do_action('after_mec_reg_fields_form'); ?>
598
  </div>
599
  <input type="hidden" id="mec_new_reg_field_key" value="<?php echo $i + 1; ?>" />
600
  <div class="mec-util-hidden">
687
  <button type="button" class="button" data-type="agreement"><?php _e( 'Agreement', 'modern-events-calendar-lite' ); ?></button>
688
  <button type="button" class="button" data-type="p"><?php _e( 'Paragraph', 'modern-events-calendar-lite' ); ?></button>
689
  </div>
690
+ <?php do_action('mec_bfixed_fields_form_end'); ?>
691
  </div>
692
  <div class="mec-form-row">
693
+ <?php wp_nonce_field('mec_options_form'); ?>
694
  <button style="display: none;" id="mec_reg_fields_form_button" class="button button-primary mec-button-primary" type="submit"><?php _e( 'Save Changes', 'modern-events-calendar-lite' ); ?></button>
695
  </div>
696
+ <?php do_action('after_mec_bfixed_fields_form'); ?>
697
  </div>
698
  <input type="hidden" id="mec_new_bfixed_field_key" value="<?php echo $b + 1; ?>" />
699
  <div class="mec-util-hidden">
app/features/mec/dashboard.php CHANGED
@@ -155,7 +155,7 @@ $box_stats = apply_filters('mec_dashboard_box_stats', true);
155
  <?php $mec_options = get_option('mec_options'); ?>
156
  <div class="box-addon-activation-toggle-head"><i class="mec-sl-plus"></i><span><?php _e('Activate Addons', 'modern-events-calendar-lite'); ?></span></div>
157
  <div class="box-addon-activation-toggle-content">
158
- <?php do_action( 'addons_activation' ); ?>
159
  </div>
160
  </div>
161
  </div>
@@ -237,7 +237,7 @@ $box_stats = apply_filters('mec_dashboard_box_stats', true);
237
  <?php $mec_options = get_option('mec_options'); ?>
238
  <div class="box-addon-activation-toggle-head"><i class="mec-sl-plus"></i><span><?php _e('Activate Addons', 'modern-events-calendar-lite'); ?></span></div>
239
  <div class="box-addon-activation-toggle-content">
240
- <?php do_action( 'addons_activation' ); ?>
241
  </div>
242
  </div>
243
  </div>
155
  <?php $mec_options = get_option('mec_options'); ?>
156
  <div class="box-addon-activation-toggle-head"><i class="mec-sl-plus"></i><span><?php _e('Activate Addons', 'modern-events-calendar-lite'); ?></span></div>
157
  <div class="box-addon-activation-toggle-content">
158
+ <?php do_action('addons_activation'); ?>
159
  </div>
160
  </div>
161
  </div>
237
  <?php $mec_options = get_option('mec_options'); ?>
238
  <div class="box-addon-activation-toggle-head"><i class="mec-sl-plus"></i><span><?php _e('Activate Addons', 'modern-events-calendar-lite'); ?></span></div>
239
  <div class="box-addon-activation-toggle-content">
240
+ <?php do_action('addons_activation'); ?>
241
  </div>
242
  </div>
243
  </div>
app/features/mec/messages.php CHANGED
@@ -33,7 +33,7 @@ $values = $this->main->get_messages_options();
33
  <ul class="mec-accordion mec-message-categories" id="mec_message_categories_wp">
34
  <?php foreach($messages as $cat_key=>$category): ?>
35
  <li class="mec-acc-label" data-key="<?php echo $cat_key; ?>" data-status="close">
36
- <?php echo $category['category']['name']; ?>
37
  <ul id="mec-acc-<?php echo $cat_key; ?>">
38
  <?php foreach($category['messages'] as $key=>$message): ?>
39
  <li>
33
  <ul class="mec-accordion mec-message-categories" id="mec_message_categories_wp">
34
  <?php foreach($messages as $cat_key=>$category): ?>
35
  <li class="mec-acc-label" data-key="<?php echo $cat_key; ?>" data-status="close">
36
+ <div class="mec-acc-cat-name"><?php echo $category['category']['name']; ?></div>
37
  <ul id="mec-acc-<?php echo $cat_key; ?>">
38
  <?php foreach($category['messages'] as $key=>$message): ?>
39
  <li>
app/features/mec/meta_boxes/display_options.php CHANGED
@@ -1042,7 +1042,7 @@ $events = $this->main->get_events();
1042
  </div>
1043
  </div>
1044
  <p class="description"><?php _e('The geolocation feature works only in secure (https) websites.', 'modern-events-calendar-lite'); ?></p>
1045
- <?php do_action( 'mec_location_shortcode_filter', $post ); ?>
1046
  </div>
1047
 
1048
  <!-- Daily View -->
1042
  </div>
1043
  </div>
1044
  <p class="description"><?php _e('The geolocation feature works only in secure (https) websites.', 'modern-events-calendar-lite'); ?></p>
1045
+ <?php do_action('mec_location_shortcode_filter', $post); ?>
1046
  </div>
1047
 
1048
  <!-- Daily View -->
app/features/mec/modules.php CHANGED
@@ -156,7 +156,7 @@ if($this->getPRO())
156
  </span>
157
  </div>
158
  </div>
159
- <?php do_action( 'mec_map_options_after' ,$settings); ?>
160
  </div>
161
  <?php endif; ?>
162
  </div>
@@ -361,16 +361,6 @@ if($this->getPRO())
361
  </div>
362
  </div>
363
 
364
- <div id="notifications_per_event" class="mec-options-fields">
365
- <h4 class="mec-form-subtitle"><?php _e('Notifications Per Event', 'modern-events-calendar-lite'); ?></h4>
366
- <div class="mec-form-row">
367
- <label>
368
- <input type="hidden" name="mec[settings][notif_per_event]" value="0" />
369
- <input value="1" type="checkbox" name="mec[settings][notif_per_event]" <?php if(isset($settings['notif_per_event']) and $settings['notif_per_event']) echo 'checked="checked"'; ?> /> <?php _e('Edit Notifications Per Event', 'modern-events-calendar-lite'); ?>
370
- </label>
371
- </div>
372
- </div>
373
-
374
  <?php endif; ?>
375
 
376
  <div class="mec-options-fields">
156
  </span>
157
  </div>
158
  </div>
159
+ <?php do_action('mec_map_options_after', $settings); ?>
160
  </div>
161
  <?php endif; ?>
162
  </div>
361
  </div>
362
  </div>
363
 
 
 
 
 
 
 
 
 
 
 
364
  <?php endif; ?>
365
 
366
  <div class="mec-options-fields">
app/features/mec/notifications.php CHANGED
@@ -3,6 +3,7 @@
3
  defined('MECEXEC') or die();
4
 
5
  $notifications = $this->main->get_notifications();
 
6
  ?>
7
  <div class="wns-be-container wns-be-container-sticky">
8
  <div id="wns-be-infobar">
@@ -878,6 +879,17 @@ $notifications = $this->main->get_notifications();
878
  </div>
879
 
880
  </div>
 
 
 
 
 
 
 
 
 
 
 
881
  <!-- </ul> -->
882
 
883
  <div class="mec-options-fields">
3
  defined('MECEXEC') or die();
4
 
5
  $notifications = $this->main->get_notifications();
6
+ $settings = $this->main->get_settings();
7
  ?>
8
  <div class="wns-be-container wns-be-container-sticky">
9
  <div id="wns-be-infobar">
879
  </div>
880
 
881
  </div>
882
+
883
+ <div id="notifications_per_event" class="mec-options-fields">
884
+ <h4 class="mec-form-subtitle"><?php _e('Notifications Per Event', 'modern-events-calendar-lite'); ?></h4>
885
+ <div class="mec-form-row">
886
+ <label>
887
+ <input type="hidden" name="mec[settings][notif_per_event]" value="0" />
888
+ <input value="1" type="checkbox" name="mec[settings][notif_per_event]" <?php if(isset($settings['notif_per_event']) and $settings['notif_per_event']) echo 'checked="checked"'; ?> /> <?php _e('Edit Notifications Per Event', 'modern-events-calendar-lite'); ?>
889
+ </label>
890
+ </div>
891
+ </div>
892
+
893
  <!-- </ul> -->
894
 
895
  <div class="mec-options-fields">
app/features/notifications.php CHANGED
@@ -152,12 +152,6 @@ class MEC_feature_notifications extends MEC_base
152
  'booking_reminder' => array(
153
  'label' => __('Booking Reminder', 'modern-events-calendar-lite')
154
  ),
155
- // 'new_event' => array(
156
- // 'label' => __('New Event', 'modern-events-calendar-lite')
157
- // ),
158
- // 'user_event_publishing' => array(
159
- // 'label' => __('User Event Publishing', 'modern-events-calendar-lite')
160
- // ),
161
  );
162
  }
163
  }
152
  'booking_reminder' => array(
153
  'label' => __('Booking Reminder', 'modern-events-calendar-lite')
154
  ),
 
 
 
 
 
 
155
  );
156
  }
157
  }
app/features/organizers.php CHANGED
@@ -133,7 +133,7 @@ class MEC_feature_organizers extends MEC_base
133
  <button type="button" class="mec_remove_image_button button <?php echo (!trim($thumbnail) ? 'mec-util-hidden' : ''); ?>"><?php echo __('Remove image', 'modern-events-calendar-lite'); ?></button>
134
  </td>
135
  </tr>
136
- <?php do_action( 'mec_edit_organizer_extra_fields' , $term ); ?>
137
  <?php
138
  }
139
 
@@ -163,7 +163,7 @@ class MEC_feature_organizers extends MEC_base
163
  <button type="button" class="mec_upload_image_button button" id="mec_thumbnail_button"><?php echo __('Upload/Add image', 'modern-events-calendar-lite'); ?></button>
164
  <button type="button" class="mec_remove_image_button button mec-util-hidden"><?php echo __('Remove image', 'modern-events-calendar-lite'); ?></button>
165
  </div>
166
- <?php do_action( 'mec_add_organizer_extra_fields' ); ?>
167
  <?php
168
  }
169
 
@@ -184,7 +184,7 @@ class MEC_feature_organizers extends MEC_base
184
  update_term_meta($term_id, 'url', $url);
185
  update_term_meta($term_id, 'thumbnail', $thumbnail);
186
 
187
- do_action( 'mec_save_organizer_extra_fields' , $term_id );
188
  }
189
 
190
  /**
133
  <button type="button" class="mec_remove_image_button button <?php echo (!trim($thumbnail) ? 'mec-util-hidden' : ''); ?>"><?php echo __('Remove image', 'modern-events-calendar-lite'); ?></button>
134
  </td>
135
  </tr>
136
+ <?php do_action('mec_edit_organizer_extra_fields', $term); ?>
137
  <?php
138
  }
139
 
163
  <button type="button" class="mec_upload_image_button button" id="mec_thumbnail_button"><?php echo __('Upload/Add image', 'modern-events-calendar-lite'); ?></button>
164
  <button type="button" class="mec_remove_image_button button mec-util-hidden"><?php echo __('Remove image', 'modern-events-calendar-lite'); ?></button>
165
  </div>
166
+ <?php do_action('mec_add_organizer_extra_fields'); ?>
167
  <?php
168
  }
169
 
184
  update_term_meta($term_id, 'url', $url);
185
  update_term_meta($term_id, 'thumbnail', $thumbnail);
186
 
187
+ do_action('mec_save_organizer_extra_fields', $term_id);
188
  }
189
 
190
  /**
app/features/popup/event.php CHANGED
@@ -77,7 +77,7 @@ $datepicker_format = (isset($settings['datepicker_format']) and trim($settings['
77
  </div>
78
  <div class="mec-col-6 mec-time-picker <?php echo ($allday == 1) ? 'mec-util-hidden' : ''; ?>">
79
  <?php $this->main->timepicker(array(
80
- 'method' => $this->settings['time_format'],
81
  'time_hour' => $start_time_hour,
82
  'time_minutes' => $start_time_minutes,
83
  'time_ampm' => $start_time_ampm,
@@ -94,7 +94,7 @@ $datepicker_format = (isset($settings['datepicker_format']) and trim($settings['
94
  </div>
95
  <div class="mec-col-6 mec-time-picker <?php echo ($allday == 1) ? 'mec-util-hidden' : ''; ?>">
96
  <?php $this->main->timepicker(array(
97
- 'method' => $this->settings['time_format'],
98
  'time_hour' => $end_time_hour,
99
  'time_minutes' => $end_time_minutes,
100
  'time_ampm' => $end_time_ampm,
77
  </div>
78
  <div class="mec-col-6 mec-time-picker <?php echo ($allday == 1) ? 'mec-util-hidden' : ''; ?>">
79
  <?php $this->main->timepicker(array(
80
+ 'method' => (isset($this->settings['time_format']) ? $this->settings['time_format'] : 12),
81
  'time_hour' => $start_time_hour,
82
  'time_minutes' => $start_time_minutes,
83
  'time_ampm' => $start_time_ampm,
94
  </div>
95
  <div class="mec-col-6 mec-time-picker <?php echo ($allday == 1) ? 'mec-util-hidden' : ''; ?>">
96
  <?php $this->main->timepicker(array(
97
+ 'method' => (isset($this->settings['time_format']) ? $this->settings['time_format'] : 12),
98
  'time_hour' => $end_time_hour,
99
  'time_minutes' => $end_time_minutes,
100
  'time_ampm' => $end_time_ampm,
app/features/speakers.php CHANGED
@@ -173,7 +173,7 @@ class MEC_feature_speakers extends MEC_base
173
  <button type="button" class="mec_remove_image_button button <?php echo (!trim($thumbnail) ? 'mec-util-hidden' : ''); ?>"><?php echo __('Remove image', 'modern-events-calendar-lite'); ?></button>
174
  </td>
175
  </tr>
176
- <?php do_action( 'mec_edit_speaker_extra_fields' , $term ); ?>
177
  <?php
178
  }
179
 
@@ -219,7 +219,7 @@ class MEC_feature_speakers extends MEC_base
219
  <button type="button" class="mec_upload_image_button button" id="mec_thumbnail_button"><?php echo __('Upload/Add image', 'modern-events-calendar-lite'); ?></button>
220
  <button type="button" class="mec_remove_image_button button mec-util-hidden"><?php echo __('Remove image', 'modern-events-calendar-lite'); ?></button>
221
  </div>
222
- <?php do_action( 'mec_add_speaker_extra_fields' ); ?>
223
  <?php
224
  }
225
 
@@ -249,7 +249,7 @@ class MEC_feature_speakers extends MEC_base
249
  update_term_meta($term_id, 'thumbnail', $thumbnail);
250
 
251
 
252
- do_action( 'mec_save_speaker_extra_fields' , $term_id );
253
  }
254
 
255
  /**
173
  <button type="button" class="mec_remove_image_button button <?php echo (!trim($thumbnail) ? 'mec-util-hidden' : ''); ?>"><?php echo __('Remove image', 'modern-events-calendar-lite'); ?></button>
174
  </td>
175
  </tr>
176
+ <?php do_action('mec_edit_speaker_extra_fields', $term); ?>
177
  <?php
178
  }
179
 
219
  <button type="button" class="mec_upload_image_button button" id="mec_thumbnail_button"><?php echo __('Upload/Add image', 'modern-events-calendar-lite'); ?></button>
220
  <button type="button" class="mec_remove_image_button button mec-util-hidden"><?php echo __('Remove image', 'modern-events-calendar-lite'); ?></button>
221
  </div>
222
+ <?php do_action('mec_add_speaker_extra_fields'); ?>
223
  <?php
224
  }
225
 
249
  update_term_meta($term_id, 'thumbnail', $thumbnail);
250
 
251
 
252
+ do_action('mec_save_speaker_extra_fields', $term_id);
253
  }
254
 
255
  /**
app/libraries/main.php CHANGED
@@ -593,7 +593,7 @@ class MEC_main extends MEC_base
593
  __('Admin', 'modern-events-calendar-lite') => 'admin_notification',
594
  ), $notifications_items);
595
 
596
- $modules[__('Notifications Per Event', 'modern-events-calendar-lite')] = 'notifications_per_event';
597
  }
598
 
599
  $notifications = apply_filters('mec-settings-item-notifications', $notifications_items, $active_menu);
@@ -2323,7 +2323,37 @@ class MEC_main extends MEC_base
2323
  echo '<p class="mec-error">'.__('Your booking already canceled!', 'modern-events-calendar-lite').'</p>';
2324
  return false;
2325
  }
2326
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2327
  $book = $this->getBook();
2328
  if($book->cancel($book_id)) echo '<p class="mec-success">'.__('Your booking successfully canceled.', 'modern-events-calendar-lite').'</p>';
2329
  else echo '<p class="mec-error">'.__('Your booking cannot be canceled.', 'modern-events-calendar-lite').'</p>';
593
  __('Admin', 'modern-events-calendar-lite') => 'admin_notification',
594
  ), $notifications_items);
595
 
596
+ $notifications_items[__('Notifications Per Event', 'modern-events-calendar-lite')] = 'notifications_per_event';
597
  }
598
 
599
  $notifications = apply_filters('mec-settings-item-notifications', $notifications_items, $active_menu);
2323
  echo '<p class="mec-error">'.__('Your booking already canceled!', 'modern-events-calendar-lite').'</p>';
2324
  return false;
2325
  }
2326
+
2327
+ $timestamps = explode(':', get_post_meta($book_id, 'mec_date', true));
2328
+ $start = $timestamps[0];
2329
+ $end = $timestamps[1];
2330
+
2331
+ $right_now = current_time('timestamp', 0);
2332
+ if($right_now >= $end)
2333
+ {
2334
+ echo '<p class="mec-error">'.__('The event is already finished!', 'modern-events-calendar-lite').'</p>';
2335
+ return false;
2336
+ }
2337
+
2338
+ // MEC Settings
2339
+ $settings = $this->get_settings();
2340
+
2341
+ $cancellation_period_time = isset($settings['cancellation_period_time']) ? $settings['cancellation_period_time'] : 0;
2342
+ $cancellation_period_p = isset($settings['cancellation_period_p']) ? $settings['cancellation_period_p'] : 'hour';
2343
+ $cancellation_period_type = isset($settings['cancellation_period_type']) ? $settings['cancellation_period_type'] : 'before';
2344
+
2345
+ if($cancellation_period_time)
2346
+ {
2347
+ if($cancellation_period_type == 'before') $max_time = ($start - ($cancellation_period_time * ($cancellation_period_p == 'hour' ? 3600 : 86400)));
2348
+ else $max_time = ($start + ($cancellation_period_time * ($cancellation_period_p == 'hour' ? 3600 : 86400)));
2349
+
2350
+ if($right_now >= $max_time)
2351
+ {
2352
+ echo '<p class="mec-error">'.__("The cancelation window is passed.", 'modern-events-calendar-lite').'</p>';
2353
+ return false;
2354
+ }
2355
+ }
2356
+
2357
  $book = $this->getBook();
2358
  if($book->cancel($book_id)) echo '<p class="mec-success">'.__('Your booking successfully canceled.', 'modern-events-calendar-lite').'</p>';
2359
  else echo '<p class="mec-error">'.__('Your booking cannot be canceled.', 'modern-events-calendar-lite').'</p>';
app/libraries/notifications.php CHANGED
@@ -231,7 +231,7 @@ class MEC_notifications extends MEC_base
231
  'attachments' => array(),
232
  );
233
 
234
- $mail_arg = apply_filters( 'mec_before_send_booking_notification', $mail_arg, $book_id, 'booking_notification');
235
 
236
  // Send the mail
237
  wp_mail($mail_arg['to'], html_entity_decode(stripslashes($mail_arg['subject']), ENT_HTML5), wpautop(stripslashes($mail_arg['message'])), $mail_arg['headers'], $mail_arg['attachments']);
@@ -334,7 +334,7 @@ class MEC_notifications extends MEC_base
334
  'attachments' => array(),
335
  );
336
 
337
- $mail_arg = apply_filters( 'mec_before_send_booking_confirmation', $mail_arg, $book_id, 'booking_confirmation');
338
 
339
  // Send the mail
340
  wp_mail($mail_arg['to'], html_entity_decode(stripslashes($mail_arg['subject']), ENT_HTML5), wpautop(stripslashes($mail_arg['message'])), $mail_arg['headers'], $mail_arg['attachments']);
@@ -473,7 +473,7 @@ class MEC_notifications extends MEC_base
473
  'attachments' => array(),
474
  );
475
 
476
- $mail_arg = apply_filters( 'mec_before_send_booking_cancellation', $mail_arg, $book_id, 'booking_cancellation');
477
 
478
  // Send the mail
479
  wp_mail($mail_arg['to'], html_entity_decode(stripslashes($mail_arg['subject']), ENT_HTML5), wpautop(stripslashes($mail_arg['message'])), $mail_arg['headers'], $mail_arg['attachments']);
@@ -556,7 +556,8 @@ class MEC_notifications extends MEC_base
556
  'headers' => $headers,
557
  'attachments' => array(),
558
  );
559
- $mail_arg = apply_filters( 'mec_before_send_admin_notification', $mail_arg, $book_id, 'admin_notification');
 
560
 
561
  // Send the mail
562
  wp_mail($mail_arg['to'], html_entity_decode(stripslashes($mail_arg['subject']), ENT_HTML5), wpautop(stripslashes($mail_arg['message'])), $mail_arg['headers'], $mail_arg['attachments']);
@@ -1043,7 +1044,7 @@ class MEC_notifications extends MEC_base
1043
  // Payment Gateway
1044
  $message = str_replace('%%payment_gateway%%', get_post_meta($book_id, 'mec_gateway_label', true), $message);
1045
 
1046
- // Data Fields
1047
  $bfixed_fields = $this->main->get_bfixed_fields($event_id);
1048
 
1049
  if(is_array($bfixed_fields) and count($bfixed_fields) and isset($transaction['fields']) and is_array($transaction['fields']) and count($transaction['fields']))
@@ -1058,8 +1059,8 @@ class MEC_notifications extends MEC_base
1058
 
1059
  if(is_array($bfixed_value)) $bfixed_value = implode(', ', $bfixed_value);
1060
 
1061
- $message = str_replace('%%booking_field_'.$b.'%%', trim($bfixed_value, ', '), $message);
1062
- $message = str_replace('%%booking_field_'.$b.'_with_name%%', trim((trim($bfixed_field_name) ? $bfixed_field_name.': ' : '').trim($bfixed_value, ', ')), $message);
1063
  }
1064
  }
1065
 
@@ -1086,8 +1087,8 @@ class MEC_notifications extends MEC_base
1086
 
1087
  if(is_array($field_value)) $field_value = implode(', ', $field_value);
1088
 
1089
- $message = str_replace('%%event_field_'.$f.'%%', trim($field_value, ', '), $message);
1090
- $message = str_replace('%%event_field_'.$f.'_with_name%%', trim((trim($event_field_name) ? $event_field_name.': ' : '').trim($field_value, ', ')), $message);
1091
  }
1092
 
1093
  $message = str_replace('%%event_title%%', get_the_title($event_id), $message);
231
  'attachments' => array(),
232
  );
233
 
234
+ $mail_arg = apply_filters('mec_before_send_booking_notification', $mail_arg, $book_id, 'booking_notification');
235
 
236
  // Send the mail
237
  wp_mail($mail_arg['to'], html_entity_decode(stripslashes($mail_arg['subject']), ENT_HTML5), wpautop(stripslashes($mail_arg['message'])), $mail_arg['headers'], $mail_arg['attachments']);
334
  'attachments' => array(),
335
  );
336
 
337
+ $mail_arg = apply_filters('mec_before_send_booking_confirmation', $mail_arg, $book_id, 'booking_confirmation');
338
 
339
  // Send the mail
340
  wp_mail($mail_arg['to'], html_entity_decode(stripslashes($mail_arg['subject']), ENT_HTML5), wpautop(stripslashes($mail_arg['message'])), $mail_arg['headers'], $mail_arg['attachments']);
473
  'attachments' => array(),
474
  );
475
 
476
+ $mail_arg = apply_filters('mec_before_send_booking_cancellation', $mail_arg, $book_id, 'booking_cancellation');
477
 
478
  // Send the mail
479
  wp_mail($mail_arg['to'], html_entity_decode(stripslashes($mail_arg['subject']), ENT_HTML5), wpautop(stripslashes($mail_arg['message'])), $mail_arg['headers'], $mail_arg['attachments']);
556
  'headers' => $headers,
557
  'attachments' => array(),
558
  );
559
+
560
+ $mail_arg = apply_filters('mec_before_send_admin_notification', $mail_arg, $book_id, 'admin_notification');
561
 
562
  // Send the mail
563
  wp_mail($mail_arg['to'], html_entity_decode(stripslashes($mail_arg['subject']), ENT_HTML5), wpautop(stripslashes($mail_arg['message'])), $mail_arg['headers'], $mail_arg['attachments']);
1044
  // Payment Gateway
1045
  $message = str_replace('%%payment_gateway%%', get_post_meta($book_id, 'mec_gateway_label', true), $message);
1046
 
1047
+ // Booking Fixed Fields
1048
  $bfixed_fields = $this->main->get_bfixed_fields($event_id);
1049
 
1050
  if(is_array($bfixed_fields) and count($bfixed_fields) and isset($transaction['fields']) and is_array($transaction['fields']) and count($transaction['fields']))
1059
 
1060
  if(is_array($bfixed_value)) $bfixed_value = implode(', ', $bfixed_value);
1061
 
1062
+ $message = str_replace('%%booking_field_'.$b.'%%', trim(stripslashes($bfixed_value), ', '), $message);
1063
+ $message = str_replace('%%booking_field_'.$b.'_with_name%%', trim((trim($bfixed_field_name) ? stripslashes($bfixed_field_name).': ' : '').trim(stripslashes($bfixed_value), ', ')), $message);
1064
  }
1065
  }
1066
 
1087
 
1088
  if(is_array($field_value)) $field_value = implode(', ', $field_value);
1089
 
1090
+ $message = str_replace('%%event_field_'.$f.'%%', trim(stripslashes($field_value), ', '), $message);
1091
+ $message = str_replace('%%event_field_'.$f.'_with_name%%', trim((trim($event_field_name) ? stripslashes($event_field_name).': ' : '').trim(stripslashes($field_value), ', ')), $message);
1092
  }
1093
 
1094
  $message = str_replace('%%event_title%%', get_the_title($event_id), $message);
app/libraries/render.php CHANGED
@@ -484,6 +484,8 @@ class MEC_render extends MEC_base
484
 
485
  // All Meta Data
486
  $meta = $this->main->get_post_meta($post_id);
 
 
487
  $data->meta = $meta;
488
 
489
  // All MEC Data
@@ -576,6 +578,7 @@ class MEC_render extends MEC_base
576
  'full'=>$full,
577
  'tileview'=>$tileview
578
  ], $post_id);
 
579
  $data->thumbnails = $dataThumbnails;
580
 
581
  // Featured image URLs
@@ -624,6 +627,25 @@ class MEC_render extends MEC_base
624
  );
625
  }
626
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
627
 
628
  // Add mec event past index to array.
629
  $end_date = (isset($data->meta['mec_date']['end']) and isset($data->meta['mec_date']['end']['date'])) ? $data->meta['mec_date']['end']['date'] : current_time('Y-m-d H:i:s');
484
 
485
  // All Meta Data
486
  $meta = $this->main->get_post_meta($post_id);
487
+ if(isset($meta['mec_notifications'])) unset($meta['mec_notifications']);
488
+
489
  $data->meta = $meta;
490
 
491
  // All MEC Data
578
  'full'=>$full,
579
  'tileview'=>$tileview
580
  ], $post_id);
581
+
582
  $data->thumbnails = $dataThumbnails;
583
 
584
  // Featured image URLs
627
  );
628
  }
629
  }
630
+
631
+ // Event Fields
632
+ $fields = $this->main->get_event_fields();
633
+ if(!is_array($fields)) $fields = array();
634
+
635
+ $fields_data = (isset($data->meta['mec_fields']) and is_array($data->meta['mec_fields'])) ? $data->meta['mec_fields'] : get_post_meta($post_id, 'mec_fields', true);
636
+ if(!is_array($fields_data)) $fields_data = array();
637
+
638
+ foreach($fields as $f => $field)
639
+ {
640
+ if(!is_numeric($f)) continue;
641
+
642
+ $field_value = isset($fields_data[$f]) ? (is_array($fields_data[$f]) ? implode(', ', $fields_data[$f]) : $fields_data[$f]) : NULL;
643
+
644
+ $data->fields[] = array(
645
+ 'label' => (isset($field['label']) ? esc_html__(stripslashes($field['label']), 'modern-events-calendar-lite') : ''),
646
+ 'value' => stripslashes($field_value),
647
+ );
648
+ }
649
 
650
  // Add mec event past index to array.
651
  $end_date = (isset($data->meta['mec_date']['end']) and isset($data->meta['mec_date']['end']['date'])) ? $data->meta['mec_date']['end']['date'] : current_time('Y-m-d H:i:s');
app/libraries/skins.php CHANGED
@@ -110,6 +110,7 @@ class MEC_skins extends MEC_base
110
  public $reason_for_cancellation;
111
  public $display_label;
112
  public $display_price;
 
113
 
114
  /**
115
  * Constructor method
@@ -149,6 +150,9 @@ class MEC_skins extends MEC_base
149
 
150
  // Hide event on start or on end
151
  $this->hide_time_method = $this->main->get_hide_time_method();
 
 
 
152
  }
153
 
154
  /**
@@ -1082,6 +1086,7 @@ class MEC_skins extends MEC_base
1082
  if($type == 'dropdown')
1083
  {
1084
  $time = isset($this->start_date) ? strtotime($this->start_date) : '';
 
1085
 
1086
  $skins = array('list', 'grid', 'agenda');
1087
  if(isset($this->skin_options['default_view']) and $this->skin_options['default_view'] == 'list') array_push($skins, 'full_calendar');
@@ -1096,8 +1101,14 @@ class MEC_skins extends MEC_base
1096
  $output .= $option;
1097
  $Y = date('Y', $time);
1098
 
1099
- for($i = 1; $i <= 12; $i++) $output .= '<option value="'.($i < 10 ? '0'.$i : $i).'" >'.$this->main->date_i18n('F', mktime(0, 0, 0, $i, 10)).'</option>';
1100
- $output .= '</select><select id="mec_sf_year_'.$this->id.'">'.$option;
 
 
 
 
 
 
1101
 
1102
  $start_year = $min_start_year = $this->db->select("SELECT MIN(cast(meta_value as unsigned)) AS date FROM `#__postmeta` WHERE `meta_key`='mec_start_date'", 'loadResult');
1103
  $end_year = $max_end_year = $this->db->select("SELECT MAX(cast(meta_value as unsigned)) AS date FROM `#__postmeta` WHERE `meta_key`='mec_end_date'", 'loadResult');
@@ -1119,7 +1130,7 @@ class MEC_skins extends MEC_base
1119
 
1120
  for($i = $start_year; $i <= $end_year; $i++)
1121
  {
1122
- $selected = (!in_array($this->skin, $skins) and $i == date('Y', current_time('timestamp', 0))) ? 'selected="selected"' : '';
1123
  $output .= '<option value="'.$i.'" '.$selected.'>'.$i.'</option>';
1124
  }
1125
 
110
  public $reason_for_cancellation;
111
  public $display_label;
112
  public $display_price;
113
+ public $cache;
114
 
115
  /**
116
  * Constructor method
150
 
151
  // Hide event on start or on end
152
  $this->hide_time_method = $this->main->get_hide_time_method();
153
+
154
+ // Cache
155
+ $this->cache = $this->getCache();
156
  }
157
 
158
  /**
1086
  if($type == 'dropdown')
1087
  {
1088
  $time = isset($this->start_date) ? strtotime($this->start_date) : '';
1089
+ $now = current_time('timestamp', 0);
1090
 
1091
  $skins = array('list', 'grid', 'agenda');
1092
  if(isset($this->skin_options['default_view']) and $this->skin_options['default_view'] == 'list') array_push($skins, 'full_calendar');
1101
  $output .= $option;
1102
  $Y = date('Y', $time);
1103
 
1104
+ for($i = 1; $i <= 12; $i++)
1105
+ {
1106
+ $selected = (!in_array($this->skin, $skins) and $i == date('n', $now)) ? 'selected="selected"' : '';
1107
+ $output .= '<option value="'.($i < 10 ? '0'.$i : $i).'" '.$selected.'>'.$this->main->date_i18n('F', mktime(0, 0, 0, $i, 10)).'</option>';
1108
+ }
1109
+
1110
+ $output .= '</select>';
1111
+ $output .= '<select id="mec_sf_year_'.$this->id.'">'.$option;
1112
 
1113
  $start_year = $min_start_year = $this->db->select("SELECT MIN(cast(meta_value as unsigned)) AS date FROM `#__postmeta` WHERE `meta_key`='mec_start_date'", 'loadResult');
1114
  $end_year = $max_end_year = $this->db->select("SELECT MAX(cast(meta_value as unsigned)) AS date FROM `#__postmeta` WHERE `meta_key`='mec_end_date'", 'loadResult');
1130
 
1131
  for($i = $start_year; $i <= $end_year; $i++)
1132
  {
1133
+ $selected = (!in_array($this->skin, $skins) and $i == date('Y', $now)) ? 'selected="selected"' : '';
1134
  $output .= '<option value="'.$i.'" '.$selected.'>'.$i.'</option>';
1135
  }
1136
 
app/modules/booking/steps/tickets.php CHANGED
@@ -150,8 +150,8 @@ if($total_spots > 0) $available_spots = min($available_spots, $total_spots);
150
  </div>
151
  <?php endforeach; ?>
152
  </div>
153
-
154
- <?php if($this->get_recaptcha_status('booking')): ?><div class="mec-google-recaptcha"><div id="g-recaptcha" class="g-recaptcha" data-sitekey="<?php echo $settings['google_recaptcha_sitekey']; ?>"></div></div><?php endif; ?>
155
  <input type="hidden" name="action" value="mec_book_form" />
156
  <input type="hidden" name="event_id" value="<?php echo $event_id; ?>" />
157
  <input type="hidden" name="uniqueid" value="<?php echo $uniqueid; ?>" />
@@ -159,17 +159,16 @@ if($total_spots > 0) $available_spots = min($available_spots, $total_spots);
159
  <?php wp_nonce_field('mec_book_form_'.$event_id); ?>
160
  <button id="mec-book-form-btn-step-1" <?php if($available_spots == '0') echo 'style="display: none;"'; ?> type="submit" onclick="mec_book_form_back_btn_cache(this, <?php echo $uniqueid; ?>);"><?php _e('Next', 'modern-events-calendar-lite'); ?></button>
161
  </form>
162
- <?php if ($from_shortcode) : ?>
163
  <style>.nice-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}.nice-select:hover{border-color:#dbdbdb}.nice-select.open,.nice-select:active,.nice-select:focus{border-color:#999}.nice-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}.nice-select.open:after{-webkit-transform:rotate(-135deg);-ms-transform:rotate(-135deg);transform:rotate(-135deg)}.nice-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)}.nice-select.disabled{border-color:#ededed;color:#999;pointer-events:none}.nice-select.disabled:after{border-color:#ccc}.nice-select.wide{width:100%}.nice-select.wide .list{left:0!important;right:0!important}.nice-select.right{float:right}.nice-select.right .list{left:auto;right:0}.nice-select.small{font-size:12px;height:36px;line-height:34px}.nice-select.small:after{height:4px;width:4px}.nice-select.small .option{line-height:34px;min-height:34px}.nice-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}.nice-select .list:hover .option:not(:hover){background-color:transparent!important}.nice-select .option{cursor:pointer;font-weight:400;line-height:40px;list-style:none;min-height:40px;outline:0;padding-left:18px;padding-right:29px;text-align:left;-webkit-transition:all .2s;transition:all .2s}.nice-select .option.focus,.nice-select .option.selected.focus,.nice-select .option:hover{background-color:#f6f6f6}.nice-select .option.selected{font-weight:700}.nice-select .option.disabled{background-color:transparent;color:#999;cursor:default}.no-csspointerevents .nice-select .list{display:none}.no-csspointerevents .nice-select.open .list{display:block}</style>
164
  <script type="text/javascript" src="<?php echo $this->asset('js/jquery.nice-select.min.js'); ?>"></script>
165
  <script>
166
- jQuery(document).ready(function () {
167
- if (jQuery('.mec-booking-shortcode').length < 0) {
168
- return;
169
- }
170
- // Events
171
- jQuery('.mec-booking-shortcode').find('select').niceSelect();
172
-
173
- });
174
  </script>
175
  <?php endif; ?>
150
  </div>
151
  <?php endforeach; ?>
152
  </div>
153
+
154
+ <?php if(($available_spots or (!$book_all_occurrences and count($dates) > 1)) and $this->get_recaptcha_status('booking')): ?><div class="mec-google-recaptcha"><div id="g-recaptcha" class="g-recaptcha" data-sitekey="<?php echo $settings['google_recaptcha_sitekey']; ?>"></div></div><?php endif; ?>
155
  <input type="hidden" name="action" value="mec_book_form" />
156
  <input type="hidden" name="event_id" value="<?php echo $event_id; ?>" />
157
  <input type="hidden" name="uniqueid" value="<?php echo $uniqueid; ?>" />
159
  <?php wp_nonce_field('mec_book_form_'.$event_id); ?>
160
  <button id="mec-book-form-btn-step-1" <?php if($available_spots == '0') echo 'style="display: none;"'; ?> type="submit" onclick="mec_book_form_back_btn_cache(this, <?php echo $uniqueid; ?>);"><?php _e('Next', 'modern-events-calendar-lite'); ?></button>
161
  </form>
162
+ <?php if($from_shortcode): ?>
163
  <style>.nice-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}.nice-select:hover{border-color:#dbdbdb}.nice-select.open,.nice-select:active,.nice-select:focus{border-color:#999}.nice-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}.nice-select.open:after{-webkit-transform:rotate(-135deg);-ms-transform:rotate(-135deg);transform:rotate(-135deg)}.nice-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)}.nice-select.disabled{border-color:#ededed;color:#999;pointer-events:none}.nice-select.disabled:after{border-color:#ccc}.nice-select.wide{width:100%}.nice-select.wide .list{left:0!important;right:0!important}.nice-select.right{float:right}.nice-select.right .list{left:auto;right:0}.nice-select.small{font-size:12px;height:36px;line-height:34px}.nice-select.small:after{height:4px;width:4px}.nice-select.small .option{line-height:34px;min-height:34px}.nice-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}.nice-select .list:hover .option:not(:hover){background-color:transparent!important}.nice-select .option{cursor:pointer;font-weight:400;line-height:40px;list-style:none;min-height:40px;outline:0;padding-left:18px;padding-right:29px;text-align:left;-webkit-transition:all .2s;transition:all .2s}.nice-select .option.focus,.nice-select .option.selected.focus,.nice-select .option:hover{background-color:#f6f6f6}.nice-select .option.selected{font-weight:700}.nice-select .option.disabled{background-color:transparent;color:#999;cursor:default}.no-csspointerevents .nice-select .list{display:none}.no-csspointerevents .nice-select.open .list{display:block}</style>
164
  <script type="text/javascript" src="<?php echo $this->asset('js/jquery.nice-select.min.js'); ?>"></script>
165
  <script>
166
+ jQuery(document).ready(function()
167
+ {
168
+ if(jQuery('.mec-booking-shortcode').length < 0) return;
169
+
170
+ // Events
171
+ jQuery('.mec-booking-shortcode').find('select').niceSelect();
172
+ });
 
173
  </script>
174
  <?php endif; ?>
app/modules/googlemap/details.php CHANGED
@@ -115,7 +115,7 @@ elseif (is_plugin_active( 'mec-single-builder/mec-single-builder.php')) echo $ja
115
  else $factory->params('footer', $javascript);
116
  ?>
117
  <div class="mec-googlemap-details" id="mec_map_canvas<?php echo $uniqueid; ?>" style="height: 500px;">
118
- <?php do_action( 'mec_map_inner_element_tools' ,$settings); ?>
119
  </div>
120
  <?php do_action('mec_map_before_direction'); ?>
121
  <?php if($get_direction): ?>
115
  else $factory->params('footer', $javascript);
116
  ?>
117
  <div class="mec-googlemap-details" id="mec_map_canvas<?php echo $uniqueid; ?>" style="height: 500px;">
118
+ <?php do_action('mec_map_inner_element_tools', $settings); ?>
119
  </div>
120
  <?php do_action('mec_map_before_direction'); ?>
121
  <?php if($get_direction): ?>
app/skins/agenda/render.php CHANGED
@@ -67,7 +67,7 @@ $reason_for_cancellation = isset($this->skin_options['reason_for_cancellation'])
67
  <?php echo $this->booking_button($event); ?>
68
  <?php if($this->localtime) echo $this->main->module('local-time.type2', array('event'=>$event)); ?>
69
  </span>
70
- <?php do_action( 'mec_agenda_skin_attribute', $organizer, $location ); ?>
71
  </div>
72
  <?php endif; ?>
73
  <?php } ?>
67
  <?php echo $this->booking_button($event); ?>
68
  <?php if($this->localtime) echo $this->main->module('local-time.type2', array('event'=>$event)); ?>
69
  </span>
70
+ <?php do_action('mec_agenda_skin_attribute', $organizer, $location); ?>
71
  </div>
72
  <?php endif; ?>
73
  <?php } ?>
app/skins/custom/tpl.php CHANGED
@@ -54,7 +54,7 @@ do_action('mec_custom_skin_head');
54
  <div class="mec-googlemap-skin" id="mec_googlemap_canvas<?php echo $this->id; ?>" style="height: 500px;">
55
  <?php
56
  $map = isset($this->settings['default_maps_view'])?$this->settings['default_maps_view']:'google';
57
- do_action( 'mec_map_inner_element_tools' ,array('map'=>$map));
58
  ?>
59
  </div>
60
  <input type="hidden" id="gmap-data" value="">
54
  <div class="mec-googlemap-skin" id="mec_googlemap_canvas<?php echo $this->id; ?>" style="height: 500px;">
55
  <?php
56
  $map = isset($this->settings['default_maps_view'])?$this->settings['default_maps_view']:'google';
57
+ do_action('mec_map_inner_element_tools', array('map'=>$map));
58
  ?>
59
  </div>
60
  <input type="hidden" id="gmap-data" value="">
app/skins/grid/tpl.php CHANGED
@@ -60,7 +60,7 @@ do_action('mec_grid_skin_head');
60
  <div class="mec-googlemap-skin" id="mec_googlemap_canvas<?php echo $this->id; ?>" style="height: 500px;">
61
  <?php
62
  $map = isset($this->settings['default_maps_view'])?$this->settings['default_maps_view']:'google';
63
- do_action( 'mec_map_inner_element_tools' ,array('map'=>$map));
64
  ?>
65
  </div>
66
  <input type="hidden" id="gmap-data" value="">
60
  <div class="mec-googlemap-skin" id="mec_googlemap_canvas<?php echo $this->id; ?>" style="height: 500px;">
61
  <?php
62
  $map = isset($this->settings['default_maps_view'])?$this->settings['default_maps_view']:'google';
63
+ do_action('mec_map_inner_element_tools', array('map'=>$map));
64
  ?>
65
  </div>
66
  <input type="hidden" id="gmap-data" value="">
app/skins/list/render.php CHANGED
@@ -136,7 +136,7 @@ $map_events = array();
136
  <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>
137
  </div>
138
  <?php endif; ?>
139
- <?php do_action( 'mec_list_standard_right_box', $event); ?>
140
  </div>
141
  </div>
142
  </div>
136
  <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>
137
  </div>
138
  <?php endif; ?>
139
+ <?php do_action('mec_list_standard_right_box', $event); ?>
140
  </div>
141
  </div>
142
  </div>
app/skins/map/tpl.php CHANGED
@@ -58,11 +58,11 @@ do_action('mec_map_skin_head');
58
  <div class="mec-wrap mec-skin-map-container <?php echo $this->html_class; ?>" id="mec_skin_<?php echo $this->id; ?>">
59
 
60
  <?php if($this->sf_status) echo $this->sf_search_form(); ?>
61
- <?php do_action('mec_map_skin_before_form',$settings); ?>
62
 
63
  <?php if(count($this->events)): ?>
64
  <div class="mec-googlemap-skin" id="mec_map_canvas<?php echo $this->id; ?>" style="height: 500px;">
65
- <?php do_action( 'mec_map_inner_element_tools' ,$settings); ?>
66
  </div>
67
  <?php else: ?>
68
  <p class="mec-error"><?php _e('No events found!', 'modern-events-calendar-lite'); ?></p>
@@ -82,7 +82,7 @@ do_action('mec_map_skin_head');
82
  <div class="col-sm-7">
83
  <?php if(count($this->events)): ?>
84
  <div class="mec-googlemap-skin" id="mec_map_canvas<?php echo $this->id; ?>" style="height: 600px;">
85
- <?php do_action( 'mec_map_inner_element_tools' ,$settings); ?>
86
  </div>
87
  <?php else: ?>
88
  <p class="mec-error"><?php _e('No events found!', 'modern-events-calendar-lite'); ?></p>
58
  <div class="mec-wrap mec-skin-map-container <?php echo $this->html_class; ?>" id="mec_skin_<?php echo $this->id; ?>">
59
 
60
  <?php if($this->sf_status) echo $this->sf_search_form(); ?>
61
+ <?php do_action('mec_map_skin_before_form', $settings); ?>
62
 
63
  <?php if(count($this->events)): ?>
64
  <div class="mec-googlemap-skin" id="mec_map_canvas<?php echo $this->id; ?>" style="height: 500px;">
65
+ <?php do_action('mec_map_inner_element_tools', $settings); ?>
66
  </div>
67
  <?php else: ?>
68
  <p class="mec-error"><?php _e('No events found!', 'modern-events-calendar-lite'); ?></p>
82
  <div class="col-sm-7">
83
  <?php if(count($this->events)): ?>
84
  <div class="mec-googlemap-skin" id="mec_map_canvas<?php echo $this->id; ?>" style="height: 600px;">
85
+ <?php do_action('mec_map_inner_element_tools', $settings); ?>
86
  </div>
87
  <?php else: ?>
88
  <p class="mec-error"><?php _e('No events found!', 'modern-events-calendar-lite'); ?></p>
app/skins/masonry/render.php CHANGED
@@ -149,7 +149,7 @@ $reason_for_cancellation = isset($this->skin_options['reason_for_cancellation'])
149
  <div class="mec-event-footer">
150
  <a class="mec-booking-button" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event, $event->date['start']['date']); ?>" target="_self"><?php echo (is_array($event->data->tickets) and count($event->data->tickets) and !strpos($soldout, '%%soldout%%')) ? $this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite')) : $this->main->m('view_detail', __('View Detail', 'modern-events-calendar-lite')) ; ?></a>
151
  <?php echo $this->booking_button($event); ?>
152
- <?php do_action( 'mec_masonry_button', $event ); ?>
153
  </div>
154
  </div>
155
  </article>
149
  <div class="mec-event-footer">
150
  <a class="mec-booking-button" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event, $event->date['start']['date']); ?>" target="_self"><?php echo (is_array($event->data->tickets) and count($event->data->tickets) and !strpos($soldout, '%%soldout%%')) ? $this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite')) : $this->main->m('view_detail', __('View Detail', 'modern-events-calendar-lite')) ; ?></a>
151
  <?php echo $this->booking_button($event); ?>
152
+ <?php do_action('mec_masonry_button', $event); ?>
153
  </div>
154
  </div>
155
  </article>
app/skins/monthly_view/calendar.php CHANGED
@@ -97,7 +97,10 @@ elseif($week_start == 5) // Friday
97
  $events_str .= '<div class="mec-event-image">'.$event->data->thumbnails['thumbnail'].'</div>';
98
  if(trim($start_time)) $events_str .= '<div class="mec-event-time mec-color"><i class="mec-sl-clock-o"></i> '.$start_time.(trim($end_time) ? ' - '.$end_time : '').'</div>';
99
  $event_color = isset($event->data->meta['mec_color']) ? '<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>' : '';
100
- $events_str .= '<h4 class="mec-event-title"><a class="mec-color-hover" data-event-id="'.$event->data->ID.'" href="'.$this->main->get_event_date_permalink($event, $event->date['start']['date']).'">'.$event->data->title.'</a>'.$this->main->get_flags($event).$event_color.$this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation).do_action('mec_shortcode_virtual_badge', $event->data->ID ).'</h4>';
 
 
 
101
  if($this->localtime) $events_str .= $this->main->module('local-time.type3', array('event'=>$event));
102
  $events_str .= '<div class="mec-event-detail"><div class="mec-event-loc-place">'.(isset($location['name']) ? $location['name'] : '').'</div></div>';
103
  $events_str .= $this->booking_button($event);
97
  $events_str .= '<div class="mec-event-image">'.$event->data->thumbnails['thumbnail'].'</div>';
98
  if(trim($start_time)) $events_str .= '<div class="mec-event-time mec-color"><i class="mec-sl-clock-o"></i> '.$start_time.(trim($end_time) ? ' - '.$end_time : '').'</div>';
99
  $event_color = isset($event->data->meta['mec_color']) ? '<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>' : '';
100
+ $events_str .= '<h4 class="mec-event-title"><a class="mec-color-hover" data-event-id="'.$event->data->ID.'" href="'.$this->main->get_event_date_permalink($event, $event->date['start']['date']).'">'.$event->data->title.'</a>'.$this->main->get_flags($event).$event_color.$this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation);
101
+ if(has_filter('mec_monthly_virtual_badge')) $events_str .= apply_filters('mec_monthly_virtual_badge', $events_str, $event->data->ID);
102
+ $events_str .='</h4>';
103
+
104
  if($this->localtime) $events_str .= $this->main->module('local-time.type3', array('event'=>$event));
105
  $events_str .= '<div class="mec-event-detail"><div class="mec-event-loc-place">'.(isset($location['name']) ? $location['name'] : '').'</div></div>';
106
  $events_str .= $this->booking_button($event);
app/skins/monthly_view/calendar_clean.php CHANGED
@@ -102,7 +102,9 @@ elseif($week_start == 5) // Friday
102
 
103
  $events_str .= $after_time_filter;
104
  $event_color = isset($event->data->meta['mec_color'])?'<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>':'';
105
- $events_str .= '<h4 class="mec-event-title"><a class="mec-color-hover" data-event-id="'.$event->data->ID.'" href="'.$this->main->get_event_date_permalink($event, $event->date['start']['date']).'">'.$event->data->title.'</a>'.$this->main->get_flags($event).$event_color.$this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation).do_action('mec_shortcode_virtual_badge', $event->data->ID ).'</h4>';
 
 
106
  if($this->localtime) $events_str .= $this->main->module('local-time.type3', array('event'=>$event));
107
  $events_str .= '<div class="mec-event-detail"><div class="mec-event-loc-place">'.(isset($location['name']) ? $location['name'] : '').'</div></div>';
108
  $events_str .= $this->booking_button($event);
102
 
103
  $events_str .= $after_time_filter;
104
  $event_color = isset($event->data->meta['mec_color'])?'<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>':'';
105
+ $events_str .= '<h4 class="mec-event-title"><a class="mec-color-hover" data-event-id="'.$event->data->ID.'" href="'.$this->main->get_event_date_permalink($event, $event->date['start']['date']).'">'.$event->data->title.'</a>'.$this->main->get_flags($event).$event_color.$this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation);
106
+ if(has_filter('mec_monthly_virtual_badge')) $events_str .= apply_filters('mec_monthly_virtual_badge', $events_str, $event->data->ID);
107
+ $events_str .='</h4>';
108
  if($this->localtime) $events_str .= $this->main->module('local-time.type3', array('event'=>$event));
109
  $events_str .= '<div class="mec-event-detail"><div class="mec-event-loc-place">'.(isset($location['name']) ? $location['name'] : '').'</div></div>';
110
  $events_str .= $this->booking_button($event);
app/skins/monthly_view/calendar_novel.php CHANGED
@@ -85,7 +85,8 @@ elseif($week_start == 5) // Friday
85
  do_action('mec_schema', $event);
86
 
87
  echo '<a class="'.((isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event ' : '').'event-single-link-novel" data-event-id="'.$event->data->ID.'" href="'.$this->main->get_event_date_permalink($event, $event->date['start']['date']).'"><div style="background:'.$event_color.'" class="mec-single-event-novel mec-event-article '.$this->get_event_classes($event).'">';
88
- echo '<h4 class="mec-event-title">'.$event->data->title.'</h4>'.$this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation).do_action('mec_shortcode_virtual_badge', $event->data->ID );
 
89
 
90
  if($this->display_price and isset($event->data->meta['mec_cost']) and $event->data->meta['mec_cost'] != '')
91
  {
85
  do_action('mec_schema', $event);
86
 
87
  echo '<a class="'.((isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event ' : '').'event-single-link-novel" data-event-id="'.$event->data->ID.'" href="'.$this->main->get_event_date_permalink($event, $event->date['start']['date']).'"><div style="background:'.$event_color.'" class="mec-single-event-novel mec-event-article '.$this->get_event_classes($event).'">';
88
+ echo '<h4 class="mec-event-title">'.$event->data->title.'</h4>'.$this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation);
89
+ do_action('mec_shortcode_virtual_badge', $event->data->ID );
90
 
91
  if($this->display_price and isset($event->data->meta['mec_cost']) and $event->data->meta['mec_cost'] != '')
92
  {
app/skins/monthly_view/calendar_simple.php CHANGED
@@ -2,6 +2,8 @@
2
  /** no direct access **/
3
  defined('MECEXEC') or die();
4
 
 
 
5
  // table headings
6
  $headings = $this->main->get_weekday_abbr_labels();
7
  echo '<dl class="mec-calendar-table-head"><dt class="mec-calendar-day-head">'.implode('</dt><dt class="mec-calendar-day-head">', $headings).'</dt></dl>';
@@ -67,13 +69,22 @@ elseif($week_start == 5) // Friday
67
  echo '<dt class="mec-calendar-day'.$selected_day.'" data-mec-cell="'.$day_id.'" data-day="'.$list_day.'" data-month="'.date('Ym', $time).'"><div class="'.$selected_day_date.'">'.$list_day.'</div>';
68
  foreach($events[$today] as $event)
69
  {
70
- $event_color = isset($event->data->meta['mec_color'])? '#'.$event->data->meta['mec_color']:'';
71
  $start_time = (isset($event->data->time) ? $event->data->time['start'] : '');
72
  $end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
73
-
 
 
 
 
 
 
 
 
74
  echo '<div class="'.((isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event ' : '').'ended-relative simple-skin-ended">';
75
  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']).'">';
76
- echo '<h4 class="mec-event-title">'.$event->data->title.'</h4>'.$this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation).do_action('mec_shortcode_virtual_badge', $event->data->ID );
 
77
  echo '</a>';
78
  echo '</div>';
79
 
@@ -83,15 +94,23 @@ elseif($week_start == 5) // Friday
83
 
84
  if($this->display_price and isset($event->data->meta['mec_cost']) and $event->data->meta['mec_cost'] != '')
85
  {
 
 
 
 
 
 
 
 
86
  $tooltip_content .= '<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
 
92
  $tooltip_content .= (!empty($event->data->thumbnails['thumbnail']) || !empty($event->data->content)) ? '<div class="mec-tooltip-event-content">' : '';
93
  $tooltip_content .= !empty($event->data->thumbnails['thumbnail']) ? '<div class="mec-tooltip-event-featured">'.$event->data->thumbnails['thumbnail'].'</div>' : '';
94
- $tooltip_content .= !empty(!empty($event->data->content)) ? '<div class="mec-tooltip-event-desc">'.$this->main->mec_content_html($event->data->content, 320).' , ...</div>' : '';
95
  if($this->localtime) $tooltip_content .= $this->main->module('local-time.type2', array('event'=>$event));
96
  $tooltip_content .= (!empty($event->data->thumbnails['thumbnail']) || !empty($event->data->content)) ? '</div>' : '';
97
  $tooltip_content .= $this->booking_button($event);
2
  /** no direct access **/
3
  defined('MECEXEC') or die();
4
 
5
+ /** @var MEC_skin_monthly_view $this */
6
+
7
  // table headings
8
  $headings = $this->main->get_weekday_abbr_labels();
9
  echo '<dl class="mec-calendar-table-head"><dt class="mec-calendar-day-head">'.implode('</dt><dt class="mec-calendar-day-head">', $headings).'</dt></dl>';
69
  echo '<dt class="mec-calendar-day'.$selected_day.'" data-mec-cell="'.$day_id.'" data-day="'.$list_day.'" data-month="'.date('Ym', $time).'"><div class="'.$selected_day_date.'">'.$list_day.'</div>';
70
  foreach($events[$today] as $event)
71
  {
72
+ $event_color = isset($event->data->meta['mec_color']) ? '#'.$event->data->meta['mec_color'] : '';
73
  $start_time = (isset($event->data->time) ? $event->data->time['start'] : '');
74
  $end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
75
+
76
+ // Event Content
77
+ if(!$this->cache->has($event->data->ID.'_content'))
78
+ {
79
+ $event_content = ((isset($event->data->content) and trim($event->data->content) != '') ? $this->main->mec_content_html($event->data->content, 320) : '');
80
+ $this->cache->set($event->data->ID.'_content', $event_content);
81
+ }
82
+ else $event_content = $this->cache->get($event->data->ID.'_content');
83
+
84
  echo '<div class="'.((isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event ' : '').'ended-relative simple-skin-ended">';
85
  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']).'">';
86
+ echo '<h4 class="mec-event-title">'.$event->data->title.'</h4>'.$this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation);
87
+ do_action('mec_shortcode_virtual_badge', $event->data->ID);
88
  echo '</a>';
89
  echo '</div>';
90
 
94
 
95
  if($this->display_price and isset($event->data->meta['mec_cost']) and $event->data->meta['mec_cost'] != '')
96
  {
97
+ // Event Content
98
+ if(!$this->cache->has($event->data->ID.'_cost'))
99
+ {
100
+ $event_cost = (is_numeric($event->data->meta['mec_cost']) ? $this->main->render_price($event->data->meta['mec_cost']) : $event->data->meta['mec_cost']);
101
+ $this->cache->set($event->data->ID.'_cost', $event_cost);
102
+ }
103
+ else $event_cost = $this->cache->get($event->data->ID.'_cost');
104
+
105
  $tooltip_content .= '<div class="mec-price-details">
106
  <i class="mec-sl-wallet"></i>
107
+ <span>'.$event_cost.'</span>
108
  </div>';
109
  }
110
 
111
  $tooltip_content .= (!empty($event->data->thumbnails['thumbnail']) || !empty($event->data->content)) ? '<div class="mec-tooltip-event-content">' : '';
112
  $tooltip_content .= !empty($event->data->thumbnails['thumbnail']) ? '<div class="mec-tooltip-event-featured">'.$event->data->thumbnails['thumbnail'].'</div>' : '';
113
+ $tooltip_content .= !empty($event->data->content) ? '<div class="mec-tooltip-event-desc">'.$event_content.' , ...</div>' : '';
114
  if($this->localtime) $tooltip_content .= $this->main->module('local-time.type2', array('event'=>$event));
115
  $tooltip_content .= (!empty($event->data->thumbnails['thumbnail']) || !empty($event->data->content)) ? '</div>' : '';
116
  $tooltip_content .= $this->booking_button($event);
app/skins/single.php CHANGED
@@ -499,9 +499,6 @@ class MEC_skin_single extends MEC_skins
499
  if($d3 < $d2)
500
  {
501
  unset($dates[0]);
502
-
503
- // Get Event Dates
504
- $dates = $this->render->dates($this->id, $rendered, $this->maximum_dates);
505
  }
506
  }
507
  else
@@ -509,14 +506,11 @@ class MEC_skin_single extends MEC_skins
509
  if($d1 < $d2)
510
  {
511
  unset($dates[0]);
512
-
513
- // Get Event Dates
514
- $dates = $this->render->dates($this->id, $rendered, $this->maximum_dates);
515
  }
516
  }
517
  }
518
 
519
- $data->dates = $dates;
520
  $data->date = isset($data->dates[0]) ? $data->dates[0] : array();
521
 
522
  // Set some data from original event in multilingual websites
@@ -547,6 +541,7 @@ class MEC_skin_single extends MEC_skins
547
  }
548
 
549
  $events[] = $this->render->after_render($data, $this);
 
550
  return $events;
551
  }
552
 
@@ -924,7 +919,7 @@ class MEC_skin_single extends MEC_skins
924
  {
925
  $this->date_format1 = (isset($this->settings['single_date_format1']) and trim($this->settings['single_date_format1'])) ? $this->settings['single_date_format1'] : 'M d Y';
926
  $occurrence = (isset($event->date['start']['date']) ? $event->date['start']['date'] : (isset($_GET['occurrence']) ? sanitize_text_field($_GET['occurrence']) : ''));
927
- $occurrence_end_date = trim($occurrence) ? $this->main->get_end_date_by_occurrence($event->data->ID, (isset($event->date['start']['date']) ? $event->date['start']['date'] : $occurrence)) : '';
928
  $midnight_event = $this->main->is_midnight_event($event);
929
 
930
  echo '<div class="mec-event-meta">';
@@ -1341,7 +1336,7 @@ class MEC_skin_single extends MEC_skins
1341
 
1342
  foreach($fields as $n => $item): if(!is_numeric($n)) continue; // n meaning number
1343
  $result = isset($data[$n]) ? $data[$n] : NULL; if((!is_array($result) and trim($result) == '') or (is_array($result) and !count($result))) continue;
1344
- $content = isset($field['type']) ? $field['type'] : 'text';
1345
  endforeach;
1346
  if ( isset($content) && $content != NULL ) {
1347
  ?>
499
  if($d3 < $d2)
500
  {
501
  unset($dates[0]);
 
 
 
502
  }
503
  }
504
  else
506
  if($d1 < $d2)
507
  {
508
  unset($dates[0]);
 
 
 
509
  }
510
  }
511
  }
512
 
513
+ $data->dates = array_values($dates);
514
  $data->date = isset($data->dates[0]) ? $data->dates[0] : array();
515
 
516
  // Set some data from original event in multilingual websites
541
  }
542
 
543
  $events[] = $this->render->after_render($data, $this);
544
+
545
  return $events;
546
  }
547
 
919
  {
920
  $this->date_format1 = (isset($this->settings['single_date_format1']) and trim($this->settings['single_date_format1'])) ? $this->settings['single_date_format1'] : 'M d Y';
921
  $occurrence = (isset($event->date['start']['date']) ? $event->date['start']['date'] : (isset($_GET['occurrence']) ? sanitize_text_field($_GET['occurrence']) : ''));
922
+ $occurrence_end_date = (isset($event->date['end']['date']) ? $event->date['end']['date'] : (trim($occurrence) ? $this->main->get_end_date_by_occurrence($event->data->ID, (isset($event->date['start']['date']) ? $event->date['start']['date'] : $occurrence)) : ''));
923
  $midnight_event = $this->main->is_midnight_event($event);
924
 
925
  echo '<div class="mec-event-meta">';
1336
 
1337
  foreach($fields as $n => $item): if(!is_numeric($n)) continue; // n meaning number
1338
  $result = isset($data[$n]) ? $data[$n] : NULL; if((!is_array($result) and trim($result) == '') or (is_array($result) and !count($result))) continue;
1339
+ $content = isset($item['type']) ? $item['type'] : 'text';
1340
  endforeach;
1341
  if ( isset($content) && $content != NULL ) {
1342
  ?>
app/skins/single/default.php CHANGED
@@ -268,7 +268,7 @@ $display_reason = get_post_meta(get_the_ID(), 'mec_display_cancellation_reason_i
268
  <i class="mec-sl-sitemap"></i>
269
  <h6><?php _e('Website', 'modern-events-calendar-lite'); ?></h6>
270
  <span><a href="<?php echo (strpos($organizer['url'], 'http') === false ? 'http://'.$organizer['url'] : $organizer['url']); ?>" class="mec-color-hover" target="_blank"><?php echo $organizer['url']; ?></a></span>
271
- <?php do_action( 'mec_single_default_organizer', $organizer ); ?>
272
  </dd>
273
  <?php endif;
274
  $organizer_description_setting = isset( $settings['organizer_description'] ) ? $settings['organizer_description'] : ''; $organizer_terms = get_the_terms($event->data, 'mec_organizer'); if($organizer_description_setting == '1'): foreach($organizer_terms as $organizer_term) { if ($organizer_term->term_id == $organizer['id'] ) { if(isset($organizer_term->description) && !empty($organizer_term->description)): ?>
@@ -501,7 +501,7 @@ $display_reason = get_post_meta(get_the_ID(), 'mec_display_cancellation_reason_i
501
  <i class="mec-sl-sitemap"></i>
502
  <h6><?php _e('Website', 'modern-events-calendar-lite'); ?></h6>
503
  <span><a href="<?php echo (strpos($organizer['url'], 'http') === false ? 'http://'.$organizer['url'] : $organizer['url']); ?>" class="mec-color-hover" target="_blank"><?php echo $organizer['url']; ?></a></span>
504
- <?php do_action( 'mec_single_default_organizer', $organizer ); ?>
505
  </dd>
506
  <?php endif;
507
  $organizer_description_setting = isset( $settings['organizer_description'] ) ? $settings['organizer_description'] : ''; $organizer_terms = get_the_terms($event->data, 'mec_organizer'); if($organizer_description_setting == '1'): foreach($organizer_terms as $organizer_term) { if ($organizer_term->term_id == $organizer['id'] ) { if(isset($organizer_term->description) && !empty($organizer_term->description)): ?>
268
  <i class="mec-sl-sitemap"></i>
269
  <h6><?php _e('Website', 'modern-events-calendar-lite'); ?></h6>
270
  <span><a href="<?php echo (strpos($organizer['url'], 'http') === false ? 'http://'.$organizer['url'] : $organizer['url']); ?>" class="mec-color-hover" target="_blank"><?php echo $organizer['url']; ?></a></span>
271
+ <?php do_action('mec_single_default_organizer', $organizer); ?>
272
  </dd>
273
  <?php endif;
274
  $organizer_description_setting = isset( $settings['organizer_description'] ) ? $settings['organizer_description'] : ''; $organizer_terms = get_the_terms($event->data, 'mec_organizer'); if($organizer_description_setting == '1'): foreach($organizer_terms as $organizer_term) { if ($organizer_term->term_id == $organizer['id'] ) { if(isset($organizer_term->description) && !empty($organizer_term->description)): ?>
501
  <i class="mec-sl-sitemap"></i>
502
  <h6><?php _e('Website', 'modern-events-calendar-lite'); ?></h6>
503
  <span><a href="<?php echo (strpos($organizer['url'], 'http') === false ? 'http://'.$organizer['url'] : $organizer['url']); ?>" class="mec-color-hover" target="_blank"><?php echo $organizer['url']; ?></a></span>
504
+ <?php do_action('mec_single_default_organizer', $organizer); ?>
505
  </dd>
506
  <?php endif;
507
  $organizer_description_setting = isset( $settings['organizer_description'] ) ? $settings['organizer_description'] : ''; $organizer_terms = get_the_terms($event->data, 'mec_organizer'); if($organizer_description_setting == '1'): foreach($organizer_terms as $organizer_term) { if ($organizer_term->term_id == $organizer['id'] ) { if(isset($organizer_term->description) && !empty($organizer_term->description)): ?>
app/skins/single/tpl.php CHANGED
@@ -8,7 +8,7 @@ $event_colorskin = (isset($styling['mec_colorskin']) || isset($styling['color'])
8
  $settings = $this->main->get_settings();
9
 
10
  $occurrence = (isset($event->date['start']['date']) ? $event->date['start']['date'] : (isset($_GET['occurrence']) ? sanitize_text_field($_GET['occurrence']) : ''));
11
- $occurrence_end_date = trim($occurrence) ? $this->main->get_end_date_by_occurrence($event->data->ID, (isset($event->date['start']['date']) ? $event->date['start']['date'] : $occurrence)) : '';
12
 
13
  if(isset($this->layout) and trim($this->layout)) include MEC::import('app.skins.single.'.$this->layout, true, true);
14
  elseif(!isset($settings['single_single_style']) or (isset($settings['single_single_style']) and $settings['single_single_style'] == 'default')) include MEC::import('app.skins.single.default', true, true);
8
  $settings = $this->main->get_settings();
9
 
10
  $occurrence = (isset($event->date['start']['date']) ? $event->date['start']['date'] : (isset($_GET['occurrence']) ? sanitize_text_field($_GET['occurrence']) : ''));
11
+ $occurrence_end_date = (isset($event->date['end']['date']) ? $event->date['end']['date'] : (trim($occurrence) ? $this->main->get_end_date_by_occurrence($event->data->ID, (isset($event->date['start']['date']) ? $event->date['start']['date'] : $occurrence)) : ''));
12
 
13
  if(isset($this->layout) and trim($this->layout)) include MEC::import('app.skins.single.'.$this->layout, true, true);
14
  elseif(!isset($settings['single_single_style']) or (isset($settings['single_single_style']) and $settings['single_single_style'] == 'default')) include MEC::import('app.skins.single.default', true, true);
assets/css/backend.css CHANGED
@@ -1245,7 +1245,7 @@ div#booking_notification iframe {
1245
  .mec-message-categories li.mec-acc-label {
1246
  font-size: 15px;
1247
  font-weight: 600;
1248
- padding: 25px 30px;
1249
  cursor: pointer;
1250
  background-color: #fff;
1251
  border: none;
@@ -1255,6 +1255,9 @@ div#booking_notification iframe {
1255
  position: relative;
1256
  }
1257
 
 
 
 
1258
 
1259
  .mec-message-categories ul {
1260
  margin: 15px 5px
@@ -2156,6 +2159,10 @@ span.mec-archive-skins,span.mec-category-skins {
2156
  }
2157
  }
2158
 
 
 
 
 
2159
  /*!
2160
  * Bootstrap v3.3.7 (http://getbootstrap.com)
2161
  * Copyright 2011-2016 Twitter, Inc.
@@ -6006,7 +6013,7 @@ a.mec-create-shortcode-tabs-link {
6006
 
6007
  .mec-form-row ul.mec-message-categories li ul {
6008
  padding: 10px 40px 40px;
6009
- margin: 25px -30px -25px;
6010
  background: #f5f5f5;
6011
  box-shadow: inset 0 4px 7px rgba(0, 0, 0, 0.04);
6012
  cursor: default;
@@ -6105,6 +6112,25 @@ a.mec-create-shortcode-tabs-link {
6105
  color: #7c838a
6106
  }
6107
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6108
  /* Fix datepicker */
6109
  .ui-datepicker.ui-widget {
6110
  border: 1px solid #e8e8e8;
@@ -9857,6 +9883,21 @@ div#mec_meta_box_date_form .mec-form-row {
9857
  border-color: #282828;
9858
  }
9859
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9860
  /* WP TABEL */
9861
  .mec-admin-dark-mode.post-type-mec-books table.widefat,
9862
  .mec-admin-dark-mode.post-type-mec_calendars table.widefat,
1245
  .mec-message-categories li.mec-acc-label {
1246
  font-size: 15px;
1247
  font-weight: 600;
1248
+ padding: 0 30px;
1249
  cursor: pointer;
1250
  background-color: #fff;
1251
  border: none;
1255
  position: relative;
1256
  }
1257
 
1258
+ .mec-message-categories li.mec-acc-label .mec-acc-cat-name {
1259
+ line-height: 68px;
1260
+ }
1261
 
1262
  .mec-message-categories ul {
1263
  margin: 15px 5px
2159
  }
2160
  }
2161
 
2162
+ .mec-shortcode-virtual-badge i {
2163
+ padding: 0 5px 0 7px;
2164
+ }
2165
+
2166
  /*!
2167
  * Bootstrap v3.3.7 (http://getbootstrap.com)
2168
  * Copyright 2011-2016 Twitter, Inc.
6013
 
6014
  .mec-form-row ul.mec-message-categories li ul {
6015
  padding: 10px 40px 40px;
6016
+ margin: 0 -30px 0;
6017
  background: #f5f5f5;
6018
  box-shadow: inset 0 4px 7px rgba(0, 0, 0, 0.04);
6019
  cursor: default;
6112
  color: #7c838a
6113
  }
6114
 
6115
+
6116
+ /* Search result — Find results beautiful */
6117
+ #wns-be-content .noresults label,
6118
+ #wns-be-content .results .results .noresults label {
6119
+ color: #000;
6120
+ }
6121
+
6122
+ #wns-be-content .results label,
6123
+ #wns-be-content .results .results .results label,
6124
+ #wns-be-content ul li.enable,
6125
+ #wns-be-content ul li.enable label {
6126
+ color: #008aff;
6127
+ }
6128
+
6129
+ #wns-be-content ul li.disable,
6130
+ #wns-be-content ul li.disable label {
6131
+ color: #e7e7e7;
6132
+ }
6133
+
6134
  /* Fix datepicker */
6135
  .ui-datepicker.ui-widget {
6136
  border: 1px solid #e8e8e8;
9883
  border-color: #282828;
9884
  }
9885
 
9886
+ /* Search result — Find results beautiful on dark mode */
9887
+ .mec-admin-dark-mode #wns-be-content ul li.disable,
9888
+ .mec-admin-dark-mode #wns-be-content ul li.disable label,
9889
+ .mec-admin-dark-mode #wns-be-content .noresults label,
9890
+ .mec-admin-dark-mode #wns-be-content .results .results .noresults label {
9891
+ color: #666;
9892
+ }
9893
+
9894
+ .mec-admin-dark-mode #wns-be-content .results label,
9895
+ .mec-admin-dark-mode #wns-be-content .results .results .results label,
9896
+ .mec-admin-dark-mode #wns-be-content ul li.enable,
9897
+ .mec-admin-dark-mode #wns-be-content ul li.enable label {
9898
+ color: #fff;
9899
+ }
9900
+
9901
  /* WP TABEL */
9902
  .mec-admin-dark-mode.post-type-mec-books table.widefat,
9903
  .mec-admin-dark-mode.post-type-mec_calendars table.widefat,
assets/css/backend.min.css CHANGED
@@ -1,5 +1,5 @@
1
- #mec_location_thumbnail_img img,#mec_organizer_thumbnail_img img,#mec_thumbnail_img img{max-width:250px}.taxonomy-mec_label .column-id,.taxonomy-mec_location .column-id,.taxonomy-mec_organizer .column-id,.taxonomy-mec_speaker .column-id{width:40px}.taxonomy-mec_label .column-primary,.taxonomy-mec_location .column-primary,.taxonomy-mec_organizer .column-primary,.taxonomy-mec_speaker .column-primary{width:250px}.mec-color{margin:10px;width:14px;height:14px;display:inline-block;margin-right:6px;border-radius:20px 20px 20px 20px;vertical-align:middle}.mec-send-email-button{background:#008aff;color:#fff;width:100%;display:block;text-align:center;font-size:20px;padding:10px 0;margin-top:18px;font-weight:700;border-radius:4px;cursor:pointer}.mec-send-email-button:hover{opacity:.9}.mec-event-color-container,.mec-event-title-container{display:inline-block}.mec-available-color-row{margin-top:15px}.mec-available-color-row .mec-color{cursor:pointer}.mec-widget-container a{text-decoration:none}.mec-widget-container label{padding-right:15px}.mec-util-hidden{display:none}.button.mec-util-hidden{display:none}.wns-be-container{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Oxygen,Roboto,sans-serif;max-width:100%;background-color:#f6f6f6;border:1px solid #c1cad2;box-shadow:0 1px 1px rgba(0,0,0,.04);margin-top:40px;margin-right:15px;overflow:hidden}.wns-be-sidebar{width:260px;float:left;position:relative}.wns-be-sidebar ul.wns-be-group-menu,.wns-be-sidebar ul.wns-be-group-menu li{list-style:none;margin:0}.wns-be-sidebar .wns-be-group-menu li a{display:block;position:relative;outline:0;padding:13px 4px 13px 20px;background:#e0e0e0;background:0 0;border:none;color:#3f454a;font-size:13px;font-weight:600;text-decoration:none;-webkit-transition:none;transition:none}.wns-be-sidebar .wns-be-group-menu li a:hover{background:#fff;color:#008aff;opacity:1}.wns-be-sidebar .wns-be-group-menu>li.active>a,.wns-be-sidebar .wns-be-group-menu>li.active>a:hover{background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff}.wns-be-sidebar .wns-be-group-menu>li.active>a{box-shadow:0 2px 12px -5px #008aff}.wns-be-sidebar .wns-be-group-menu li a:first-child{border-top:none}.wns-be-main{background:#fff;margin-left:260px;border-left:1px solid #dedede;padding-bottom:84px;box-shadow:inset 0 1px 0 #fff;min-height:1120px;position:relative}.wns-be-main .wns-saved-settings{margin:0;border-bottom:1px solid #dedede;background:#dff0d8;color:#468847;padding:8px 35px 8px 14px;text-shadow:0 1px 0 rgba(255,255,255,.6)}.wns-be-container .dpr-btn{display:inline-block;font-size:13px;padding:0 16px 1px;height:36px;margin-right:3px;line-height:35px;color:#555;border:1px solid #ccc;background:#f7f7f7;text-decoration:none;transition:.24s all ease;-webkit-transition:.24s all ease}.wns-be-container .dpr-btn:hover{background:#fcfcfc;border-color:#999;color:#303030}.wns-be-container .dpr-btn.dpr-save-btn{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}.wns-be-container .dpr-btn.dpr-save-btn: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}.wns-be-container .wns-be-group-tab h2,.wns-be-container .wns-be-group-tab h4{color:#000;margin-bottom:25px;padding:15px;background:#f5f5f5;font-size:21px;line-height:23px;letter-spacing:.4px;font-weight:700;position:relative}.wns-be-container .wns-be-group-tab h2{margin-top:10px}.wns-be-container .wns-be-group-tab h2:before,.wns-be-container .wns-be-group-tab h4:before{content:"";width:4px;height:16px;margin-right:5px;background-color:#008aff;display:block;position:absolute;left:0;top:18px}.wns-be-container .wns-be-group-tab h4:before{width:2px;top:16px}.wns-be-container .wns-be-group-tab h4{font-size:16px;font-weight:600;background:#f8f8f8;border:none;padding:12px 15px 12px 15px}.wns-be-container .wns-be-group-tab p{font-size:13px;color:#888}.wns-be-sidebar .wns-be-group-tab-link-a:hover{cursor:pointer}.wns-be-sidebar .wns-be-group-tab-link-a span{display:block}.wns-be-sidebar .wns-be-group-tab-link-a span.wns-be-group-menu-title{padding-left:24px}.wns-be-sidebar li.active ul.subsection{padding-top:8px;padding-bottom:12px;background:#fff;border-bottom:1px solid #dedede;margin:0}.wns-be-sidebar li .subsection a{background:#fff;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 46px}.wns-be-sidebar li .subsection a:hover{background:#f6f6f6;color:#222}.wns-be-sidebar .wns-be-group-menu li .subsection li.active a{color:#008aff}.wns-be-sidebar .wns-be-group-menu li .subsection li.active a:after,.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:#fff;right:-1px;top:10px}.wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{border-right-color:#c5c5c5;right:0}.wns-be-sidebar li a i{color:#a0abb5;vertical-align:middle;font-size:18px;position:absolute;margin-top:0;margin-left:-4px}.wns-be-sidebar .wns-be-group-menu li.active>a i{color:#fff}.wns-be-sidebar .has-sub span.extra-icon{display:inline-block;float:right;padding:4px 7px 4px;margin-left:4px;margin-right:10px;font-family:sans-serif;font-size:9px;font-weight:600;line-height:9px;border-radius:10px;-moz-border-radius:10px;-webkit-border-radius:10px;border:0 solid transparent}.wns-be-sidebar .has-sub span.extra-icon i{margin-left:-3px;margin-top:2px;color:#bac6d0;font-size:10px}.wns-be-sidebar .wns-be-group-tab-link-a span.extra-icon i{right:10px;font-size:10px}.wns-be-sidebar .wns-be-group-menu li.active>a span.extra-icon i{margin-top:1px}.wns-be-container #wns-be-footer{border-top:1px solid #dedede;z-index:999;padding:25px 20px 20px;background:#fafafa!important;height:44px;text-align:right}.wns-be-container #wns-be-content{padding:5px 40px 40px}.wns-be-container #wns-be-infobar{background:#fff;border-bottom:1px solid #dedede;padding:20px;text-align:right;box-shadow:inset 0 1px 0 #fcfcfc;height:79px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;position:relative}.wns-be-container #wns-be-infobar:before{content:"";width:261px;height:78px;display:block;position:absolute;left:0;top:0;background:#fff url(../img/webnus-logo.png) no-repeat center;border-bottom:1px solid #dedede;background-size:220px;z-index:997}.wns-be-container .notice-yellow{margin:0;border-bottom:1px solid #dedede;background-color:#fcf8e3;color:#c09853;padding:8px 35px 8px 14px;text-shadow:0 1px 0 rgba(255,255,255,.5)}.wns-be-container .notice-red,.wns-be-container .wns-be-field-errors{margin:0;border-bottom:1px solid #dedede;background-color:#f2dede;color:#b94a48;padding:8px 35px 8px 14px;text-shadow:0 1px 0 rgba(255,255,255,.5)}@media(max-width:480px){a.dpr-btn.dpr-save-btn{display:block!important;text-align:center!important;margin-top:20px!important}.mec-search-settings-wrap{margin-top:73px!important;text-align:center!important;display:block!important}#mec-search-settings{margin:0!important;width:100%!important}.wns-be-container #wns-be-infobar{height:auto!important}}body.post-type-mec-events th.column-primary{width:35%}body.post-type-mec-events th.column-start_date{width:100px}body.post-type-mec-events th.column-end_date{width:100px}body.post-type-mec-events th.column-repeat{width:75px}body.post-type-mec-events th.column-author{width:150px}body.post-type-mec-books th.column-primary{width:20%}body.post-type-mec-books th.column-event{width:170px}body.post-type-mec-books th.column-bdate{width:120px}body.post-type-mec-books th.column-confirmation{width:120px}body.post-type-mec-books th.column-verification{width:120px}body.post-type-mec-books th.column-author{width:150px}.mec-meta-box-labels-container .mec-form-row{height:100px;overflow:auto}.mec-tooltip{display:inline;position:relative;margin-right:10px;cursor:help;bottom:5px;left:3px}.mec-tooltip:last-child{margin-right:0}.mec-tooltip:hover:after{background:#313130;border-radius:5px;bottom:24px;color:#fff;content:attr(title);left:-75px;padding:10px;position:absolute;z-index:98;width:240px}.mec-tooltip:hover:before{border:solid;border-color:#313130 transparent;border-width:6px 6px 0;bottom:18px;content:"";left:30%;position:absolute;z-index:99}.mec-tooltip .dashicons-before:before{font-size:24px;color:#40d9f1;line-height:37px}.mec-tooltip a:focus{box-shadow:none}.mec-form-row .bootstrap_unvalid{display:block;border:2px solid red;position:relative;display:inline-block;border-bottom:1px dotted #000}.mec-tooltiptext{visibility:hidden;width:120px;background-color:red;color:#fff;text-align:center;border-radius:6px;padding:5px 0;position:absolute;z-index:1}.ui-datepicker{background-color:#fff;border:1px solid #66afe9;border-radius:4px;box-shadow:0 0 8px rgba(102,175,233,.6);display:none;margin-top:4px;padding:10px;width:240px}.ui-datepicker a,.ui-datepicker a:hover{text-decoration:none;cursor:pointer}.ui-datepicker a:hover,.ui-datepicker td:hover a{color:#2c6396;-webkit-transition:color .1s ease-in-out;-moz-transition:color .1s ease-in-out;-o-transition:color .1s ease-in-out;transition:color .1s ease-in-out}.ui-datepicker .ui-datepicker-header{margin-bottom:4px;text-align:center}.ui-datepicker .ui-datepicker-title{font-weight:700}.ui-datepicker .ui-datepicker-next,.ui-datepicker .ui-datepicker-prev{cursor:default;font-family:dashicons;-webkit-font-smoothing:antialiased;font-style:normal;font-weight:400;height:20px;line-height:1.4;margin-top:2px;width:20px}.ui-datepicker .ui-datepicker-prev{float:left;text-align:left}.ui-datepicker .ui-datepicker-next{float:right;text-align:center}.ui-datepicker .ui-datepicker-prev:before{content:"\f341"}.ui-datepicker .ui-datepicker-next:before{content:"\f345"}.ui-datepicker .ui-icon{display:none}.ui-datepicker .ui-datepicker-calendar{table-layout:fixed;width:100%}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker .ui-datepicker-calendar th{text-align:center;padding:4px 0}.ui-datepicker .ui-datepicker-calendar td{border-radius:4px;-webkit-transition:background-color .1s ease-in-out,color .1s ease-in-out;-moz-transition:background-color .1s ease-in-out,color .1s ease-in-out;-o-transition:background-color .1s ease-in-out,color .1s ease-in-out;transition:background-color .1s ease-in-out,color .1s ease-in-out}.ui-datepicker .ui-datepicker-calendar td:hover{background-color:#eee;cursor:pointer}.ui-datepicker .ui-datepicker-calendar td a{text-decoration:none}.ui-datepicker .ui-datepicker-current-day{background-color:#4289cc}.ui-datepicker .ui-datepicker-current-day a{color:#fff}.ui-datepicker .ui-datepicker-calendar .ui-datepicker-unselectable:hover{background-color:#fff;cursor:default}.mec-col-1,.mec-col-10,.mec-col-11,.mec-col-12,.mec-col-2,.mec-col-3,.mec-col-4,.mec-col-5,.mec-col-6,.mec-col-7,.mec-col-8,.mec-col-9{position:relative;min-height:1px;padding:0;margin:0 1% 0 0}@media (min-width:783px){.mec-col-1,.mec-col-10,.mec-col-11,.mec-col-12,.mec-col-2,.mec-col-3,.mec-col-4,.mec-col-5,.mec-col-6,.mec-col-7,.mec-col-8,.mec-col-9{float:left}.mec-col-12{width:99%}.mec-col-11{width:90.66666667%}.mec-col-10{width:82.33333333%}.mec-col-9{width:74%}.mec-col-8{width:65.66666667%}.mec-col-7{width:57.33333333%}.mec-col-6{width:49%}.mec-col-5{width:40.66666667%}.mec-col-4{width:32.33333333%}.mec-col-3{width:24%}.mec-col-2{width:15.66666667%}.mec-col-1{width:7.33333333%}}#mec_bfixed_form_fields,#mec_event_form_fields,#mec_reg_form_fields{background:#eee;padding:20px}#mec_bfixed_form_fields li,#mec_event_form_fields li,#mec_reg_form_fields li{margin:4px;border-radius:2px;padding:20px 34px 24px;background:#fff;position:relative;transition:all .3s ease}#mec_bfixed_form_fields li ul,#mec_event_form_fields li ul,#mec_reg_form_fields li ul{padding-top:15px;padding-bottom:15px;margin:1px}#mec_bfixed_form_fields li ul li,#mec_event_form_fields li ul li,#mec_reg_form_fields li ul li{padding:7px 30px 7px 46px}#mec_bfixed_form_fields span.mec_event_field_type,#mec_event_form_fields span.mec_event_field_type,#mec_reg_form_fields span.mec_reg_field_type{font-size:11px;font-weight:600;color:#8a8a8a;text-transform:uppercase;letter-spacing:2px}#mec_bfixed_form_fields span.mec_bfixed_field_option_sort,#mec_bfixed_form_fields span.mec_bfixed_field_remove,#mec_bfixed_form_fields span.mec_bfixed_field_sort,#mec_event_form_fields span.mec_event_field_option_sort,#mec_event_form_fields span.mec_event_field_remove,#mec_event_form_fields span.mec_event_field_sort,#mec_reg_form_fields span.mec_reg_field_option_sort,#mec_reg_form_fields span.mec_reg_field_remove,#mec_reg_form_fields span.mec_reg_field_sort{font-size:0;color:#fff}#mec_bfixed_form_fields span.mec_bfixed_field_remove,#mec_event_form_fields span.mec_event_field_remove,#mec_reg_form_fields span.mec_reg_field_remove{position:absolute;right:0;top:0}#mec_bfixed_form_fields span.mec_bfixed_field_option_sort:before,#mec_bfixed_form_fields span.mec_bfixed_field_remove:before,#mec_bfixed_form_fields span.mec_bfixed_field_sort:before,#mec_event_form_fields span.mec_event_field_option_sort:before,#mec_event_form_fields span.mec_event_field_remove:before,#mec_event_form_fields span.mec_event_field_sort:before,#mec_reg_form_fields span.mec_reg_field_option_sort:before,#mec_reg_form_fields span.mec_reg_field_remove:before,#mec_reg_form_fields span.mec_reg_field_sort:before{position:absolute;left:10px;top:20px;width:80px;height:20px;display:block;cursor:move;font-family:simple-line-icons;content:"\e023";font-size:18px;color:#888}#mec_bfixed_form_fields span.mec_bfixed_field_remove:before,#mec_event_form_fields span.mec_event_field_remove:before,#mec_reg_form_fields span.mec_reg_field_remove:before{content:"\e082";width:20px;height:20px;left:auto;right:15px;color:#f96666;cursor:pointer}#mec_bfixed_form_fields span.mec_bfixed_field_option_sort:before,#mec_event_form_fields span.mec_event_field_option_sort:before,#mec_reg_form_fields span.mec_reg_field_option_sort:before{font-size:13px;left:2px;top:23px;width:14px;height:14px}#mec_bfixed_form_fields li ul li span.mec_bfixed_field_remove,#mec_event_form_fields li ul li span.mec_event_field_remove,#mec_reg_form_fields li ul li span.mec_reg_field_remove{right:auto;left:60px;top:2px}#mec_bfixed_form_fields p.mec_bfixed_field_options,#mec_event_form_fields p.mec_event_field_options,#mec_reg_form_fields p.mec_reg_field_options{margin:6px 0 8px}#mec_bfixed_form_fields input[type=number],#mec_bfixed_form_fields input[type=text],#mec_bfixed_form_fields select,#mec_bfixed_form_fields textarea,#mec_event_form_fields input[type=number],#mec_event_form_fields input[type=text],#mec_event_form_fields select,#mec_event_form_fields textarea,#mec_reg_form_fields input[type=number],#mec_reg_form_fields input[type=text],#mec_reg_form_fields select,#mec_reg_form_fields textarea{min-width:260px;min-height:34px;margin-bottom:7px;margin-top:7px}#mec_bfixed_form_fields textarea,#mec_event_form_fields textarea,#mec_reg_form_fields textarea{min-height:66px}#mec_bfixed_form_field_types button,#mec_bfixed_form_fields button,#mec_event_form_field_types button,#mec_event_form_fields button,#mec_reg_form_field_types button,#mec_reg_form_fields button{position:relative;outline:0;background:#fff;border:1px solid #e2e2e2;border-radius:50px;padding:11px 21px 11px 31px;line-height:1;font-size:11px;font-weight:600;color:#444;letter-spacing:2px;height:auto;cursor:pointer;margin-top:5px;text-transform:uppercase;box-shadow:0 0 3px rgba(0,0,0,.03)}#mec_bfixed_form_field_types button:hover,#mec_bfixed_form_fields button:hover,#mec_event_form_field_types button:hover,#mec_event_form_fields button:hover,#mec_reg_form_field_types button:hover,#mec_reg_form_fields button:hover{border-color:#008aff;box-shadow:0 0 7px rgba(0,0,0,.1)}#mec_bfixed_form_field_types button:before,#mec_bfixed_form_fields button:before,#mec_event_form_field_types button:before,#mec_event_form_fields button:before,#mec_reg_form_field_types button:before,#mec_reg_form_fields button:before{position:absolute;left:12px;color:#008aff;content:"\e095";font-family:simple-line-icons;font-size:13px;display:inline-block}#mec_bfixed_form_field_types button.red:hover,#mec_bfixed_form_fields button.red:hover,#mec_event_form_field_types button.red:hover,#mec_event_form_fields button.red:hover,#mec_reg_form_field_types button.red:hover,#mec_reg_form_fields button.red:hover{border-color:red;box-shadow:0 0 7px rgba(0,0,0,.1)}#mec_bfixed_form_field_types button.red:before,#mec_bfixed_form_fields button.red:before,#mec_event_form_field_types button.red:before,#mec_event_form_fields button.red:before,#mec_reg_form_field_types button.red:before,#mec_reg_form_fields button.red:before{position:absolute;left:12px;color:red;content:"\e095";font-family:simple-line-icons;font-size:13px;display:inline-block}#mec_bfixed_form_fields .mec_bfixed_notification_placeholder,#mec_event_form_fields .mec_event_notification_placeholder{padding:2px;display:block;margin:10px 0 20px}@media (max-width:768px){#mec_bfixed_form_fields input[type=number],#mec_bfixed_form_fields input[type=text],#mec_bfixed_form_fields select,#mec_bfixed_form_fields textarea,#mec_event_form_fields input[type=number],#mec_event_form_fields input[type=text],#mec_event_form_fields select,#mec_event_form_fields textarea,#mec_reg_form_fields input[type=number],#mec_reg_form_fields input[type=text],#mec_reg_form_fields select,#mec_reg_form_fields textarea{min-width:80px;width:100%}}.mec-form-row{margin:0 auto 16px}.mec-options-fields{padding-top:25px;overflow:hidden;animation:fadeEffect .31s}#mec_booking_form .mec-options-fields,#mec_modules_form .mec-options-fields,#mec_notifications_form .mec-options-fields,#mec_settings_form .mec-options-fields,#mec_single_form .mec-options-fields{display:none}.mec-options-fields.active{display:block!important}@keyframes fadeEffect{from{opacity:0;margin-left:12px}to{opacity:1;margin-left:0}}.mec-form-row:after,.mec-form-row:before{content:" ";display:table}.mec-form-row:after{clear:both}.mec-form-row input[type=number],.mec-form-row input[type=text],.mec-form-row input[type=url],.mec-form-row select,.mec-form-row textarea{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)}.mec-form-row input[type=radio]{margin:5px 6px 0 0}.mec-form-row select{margin-top:1px}.mec-form-row select{min-width:65px}.ui-datepicker select{min-width:60px}#mec_styles_CSS{max-width:100%}.mec-book-status-form select{display:block;width:99%;margin-top:10px;margin-bottom:10px}.mec-form-row label{margin:10px 0}#mec-event-data .mec-form-row label{margin:10px 0;display:block}.mec-form-row input[type=checkbox]{background-color:#fafafa;border:1px solid #cacece;box-shadow:0 1px 2px rgba(0,0,0,.05),inset 0 -15px 10px -12px rgba(0,0,0,.05);padding:9px;border-radius:3px;min-width:20px;min-height:20px;display:inline-block}.mec-form-row input[type=checkbox]:checked{box-shadow:0 3px 11px -4px #008aff;border-color:#008aff;background:#fff}.mec-form-row input[type=checkbox]:checked:before{color:#008aff;width:20px;font:400 24px/1 dashicons}.mec-form-row .mec-col-4 input[type=number],.mec-form-row .mec-col-4 input[type=text],.mec-form-row .mec-col-4 select,.mec-form-row .mec-col-4 textarea{width:75%}.mec-form-row .description{display:inline-block;border-left:1px dashed #ccc;margin-left:12px;line-height:32px;padding-left:12px;margin-top:5px;color:#555}.mec-form-row .description code{font-style:normal}.mec-form-row .time-dv{font-size:14px;font-weight:700}.mec-meta-box-fields{margin:30px 10px}.mec-meta-box-fields>.mec-meta-box-fields{margin-left:0}.mec-meta-box-fields .mec-title{margin:5px 0}.mec-meta-box-fields h4.mec-title{margin:40px 0 16px}.mec-meta-box-fields .mec-dashicons{font-size:20px;line-height:22px;color:#008aff}.mec-form-row .mec-box,.mec-meta-box-fields .mec-box{background:#f7f7f7;padding:10px;margin:10px 0;border-radius:2px;border:1px solid #e6e6e6}.mec-form-row .mec-box{max-width:960px}.mec-form-row .mec-box .button,.mec-meta-box-fields .mec-box .button{float:right}#mec_gateways_form .mec-form-row:first-child,#mec_notifications_form_container .mec-form-row:nth-child(2){overflow:hidden}#mec_gateways_form .mec-tooltip{float:right}.mec-container{background:#fff;padding:15px}.nav-tab-active{background:#fff;border-bottom:1px solid #fff}#mec_social_networks .mec-form-row{margin-bottom:0}#mec_gateways_form h4,.mec-meta-box-fields h4,.mec-options-fields h4,h4.mec-form-subtitle{text-transform:capitalize;border-bottom:1px solid #e5e5e5;padding-bottom:6px;margin:40px 0 16px;font-size:15px;font-weight:600}#mec_gateways_form h4{margin-bottom:0}#mec_styles_form #mec_styles_CSS{height:200px;margin-bottom:5px;font-family:Consolas,Monaco,monospace;font-size:13px;width:97%;background:#f9f9f9;outline:0}#mec_calendar_filter .description,#mec_styles_form .description{max-width:500px;display:block;margin:0 0 5px 0;padding:0;border:none}.mec-sed-methods li{display:inline-block;padding:8px 12px;border:1px solid #ddd;margin:0 5px 5px 0;cursor:pointer;border-radius:3px;box-shadow:0 2px 15px -2px rgba(0,0,0,.1)}.mec-sed-methods li:hover{border-color:#008aff}.mec-sed-methods li.active{border-color:#008aff;background-color:#fff;color:#008aff;font-weight:600;cursor:default;box-shadow:0 0 4px rgba(1,138,255,.3) inset}.mec-switcher input+label{display:block;position:relative;cursor:pointer;outline:0;padding:2px;width:38px;height:22px;background-color:#ddd;border-radius:60px}.mec-switcher input:checked+label{background-color:#008aff;box-shadow:0 3px 22px -6px #008aff}.mec-switcher input:checked+label:after{margin-left:16px}#mec_gateways_form input[type=text],#mec_gateways_form select,#mec_gateways_form textarea{width:calc(100% - 30px)}#mec_gateways_form textarea{min-height:65px}#mec_gateways_form li .mec-gateway-options-form,#payment_gateways_option li .mec-gateway-options-form{padding:15px 20px;background-color:#f7f7f7;border-left:6px solid #e3e3e3;margin-bottom:20px}#mec_gateways_form_container .mec-form-row input[type=number],#mec_gateways_form_container .mec-form-row select{width:100%}div#mec_gateways_form_container .mec-required.mec-mandatory{border:1px solid red}#mec_notifications_form label{display:inline-block;min-width:160px}div#booking_notification iframe{height:300px!important}#mec_notifications_form input[type=text],#mec_notifications_form select{min-width:300px}@media (max-width:536px){#mec_notifications_form input[type=text],#mec_notifications_form select{min-width:100%}}#mec_notifications_form .wp-editor-container{margin-bottom:45px}#mec_notifications_form ul li:last-child .wp-editor-container{margin-bottom:0}#mec_messages_form_container ul li label{display:block;font-weight:700}#mec_messages_form_container ul li input{display:block;width:100%}.mec-message-categories li.mec-acc-label{font-size:15px;font-weight:600;padding:25px 30px;cursor:pointer;background-color:#fff;border:none;border-bottom:1px solid #e6e6e6;margin:0;letter-spacing:.5px;position:relative}.mec-message-categories ul{margin:15px 5px}.webnus-icons-list li{width:40px;display:inline-block;list-style:none;padding:0}.webnus-icons-list input{visibility:hidden;margin:0;padding:0;width:1px;height:1px;-moz-opacity:0;-khtml-opacity:0;opacity:0;cursor:pointer}.webnus-icons-list li label{color:#777;display:inline-block!important;float:none!important;width:33px!important;text-align:center;font-size:23px!important;font-weight:400!important;padding:5px 0!important;border:1px solid #eee!important}.mec-webnus-icon{float:left;margin-right:10px}.mec-webnus-icon i{font-size:24px;color:#222}.mec-accordion ul{display:none}.mec-switcher input{position:absolute;margin-left:-9999px;visibility:hidden}.mec-switcher input+label{display:block;position:relative;cursor:pointer;outline:0;padding:2px;width:50px;height:22px;background-color:#ddd;border-radius:60px}.mec-switcher input+label:after,.mec-switcher input+label:before{display:block;position:absolute;top:1px;left:1px;bottom:1px;content:""}.mec-switcher input+label:before{right:1px;background-color:#f1f1f1;border-radius:60px;transition:background .4s}.mec-switcher input+label:after{width:24px;background-color:#fff;border-radius:100%;box-shadow:0 2px 3px rgba(0,0,0,.1);transition:margin .4s}.wns-be-group-tab .mec-switcher input[value="1"]+label,.wns-be-group-tab .mec-switcher input[value="1"]+label:before{background-color:#008aff;background:linear-gradient(95deg,#4dacfd 0,#0d90ff 50%,#008aff 100%);box-shadow:0 3px 11px -7px #008aff}.wns-be-group-tab .mec-switcher input[value="1"]+label:after{margin-left:28px}.mec-switcher input:checked+label{box-shadow:0 3px 11px -7px #008aff}.mec-switcher input:checked+label:before{background-color:#008aff;background:linear-gradient(95deg,#4dacfd 0,#0d90ff 50%,#008aff 100%)}.mec-switcher input:checked+label:after{margin-left:28px}.mec-switcher label{display:block}.mec-sed-methods li{display:inline-block;padding:10px;border:1px solid #ddd;margin:0 5px 5px 0;cursor:pointer}#wpwrap .mec-button-primary{border-bottom:none;letter-spacing:.5px;line-height:18px;height:46px;transition:all .5s ease;color:#fff;padding:12px 25px;display:block;text-align:center;font-size:14px;background:0 0;background-color:#008aff;text-shadow:none;border:0;box-shadow:none;display:inline-block;margin:25px 0 12px;min-width:146px}#wpwrap .mec-button-primary:hover{background-color:#41c9de}#wpwrap .mec-button-primary.loading{background-color:#73c02a}#wpwrap .mec-button-primary:before{content:"\f00c";font-family:fontawesome;margin-right:4px;font-size:16px;display:none}#wpwrap .mec-button-primary.loading:before{display:inline-block}.mec-image-select-wrap{clear:both;overflow:hidden;padding:10px 0;margin:0}.mec-image-select-wrap li{float:left;display:block;margin-right:15px;margin-bottom:15px}.mec-image-select-wrap li input{display:none}.mec-image-select-wrap li span{width:35px;height:35px;display:block;margin:3px;border-radius:2px;border:3px solid transparent;transition:all .2s ease}.mec-image-select-wrap li input:checked+span{border-color:#fff;box-shadow:0 0 14px rgba(0,0,0,.25)}.mec-image-select-wrap li input:checked+span:after{content:"\f00c";font-family:fontawesome;font-size:20px;display:inline-block;color:#fff;padding:8px;max-width:100%;max-height:100%}.m-e-calendar_page_MEC-ix #wpwrap .mec-button-primary.mec-btn-2{margin:0 0 0 12px}.m-e-calendar_page_MEC-ix #wpwrap input[type=file]{padding-top:12px;padding-bottom:12px}.m-e-calendar_page_MEC-ix #wpwrap .mec-form-row select{min-height:46px}.mec-image-select-wrap .mec-colorskin-1{background-color:#40d9f1}.mec-image-select-wrap .mec-colorskin-2{background-color:#0093d0}.mec-image-select-wrap .mec-colorskin-3{background-color:#e53f51}.mec-image-select-wrap .mec-colorskin-4{background-color:#f1c40f}.mec-image-select-wrap .mec-colorskin-5{background-color:#e64883}.mec-image-select-wrap .mec-colorskin-6{background-color:#45ab48}.mec-image-select-wrap .mec-colorskin-7{background-color:#9661ab}.mec-image-select-wrap .mec-colorskin-8{background-color:#0aad80}.mec-image-select-wrap .mec-colorskin-9{background-color:#0ab1f0}.mec-image-select-wrap .mec-colorskin-10{background-color:#ff5a00}.mec-image-select-wrap .mec-colorskin-11{background-color:#c3512f}.mec-image-select-wrap .mec-colorskin-12{background-color:#55606e}.mec-image-select-wrap .mec-colorskin-13{background-color:#fe8178}.mec-image-select-wrap .mec-colorskin-14{background-color:#7c6853}.mec-image-select-wrap .mec-colorskin-15{background-color:#bed431}.mec-image-select-wrap .mec-colorskin-16{background-color:#2d5c88}.mec-image-select-wrap .mec-colorskin-17{background-color:#77da55}.mec-image-select-wrap .mec-colorskin-18{background-color:#2997ab}.mec-image-select-wrap .mec-colorskin-19{background-color:#734854}.mec-image-select-wrap .mec-colorskin-20{background-color:#a81010}.mec-image-select-wrap .mec-colorskin-21{background-color:#4ccfad}.mec-image-select-wrap .mec-colorskin-22{background-color:#3a609f}@media screen and (max-width:782px){.mec-form-row .description{max-width:500px;display:block;margin:0 0 5px 0;padding:0;border:none}.mec-col-1,.mec-col-10,.mec-col-11,.mec-col-12,.mec-col-2,.mec-col-3,.mec-col-4,.mec-col-5,.mec-col-6,.mec-col-7,.mec-col-8,.mec-col-9{margin-bottom:5px;display:block}.mec-form-row .mec-box .button,.mec-meta-box-fields .mec-box .button{float:left}.mec-form-row .time-dv{padding:0 4px}.mec-form-row .mec-col-4 input[type=text],.mec-form-row .mec-col-4 select{width:auto;min-width:192px}.mec-tooltip .dashicons-before:before{font-size:32px}}#frmb-0-clear-all,#frmb-0-save,#frmb-0-view-data{display:none}#mec_sn_googlecal{margin-bottom:0}#mec_fee_row1 .button{margin-right:10px}h4.mec-form-subtitle{font-size:15px;margin-top:0}h5.mec-form-second-title{font-size:15px;margin-top:0}#webnus-dashboard *{box-sizing:border-box}#webnus-dashboard.about-wrap{max-width:1240px;margin:25px auto 20px}#webnus-dashboard .change-log{word-wrap:break-word}#webnus-dashboard .welcome-head img{border:none}.w-welcome{position:relative;margin-top:30px;margin-bottom:10px}.w-box{position:relative;background:#fff;padding:5px 25px;margin-top:30px}.w-theme-version{box-shadow:0 3px 30px -4px #40d8f0;text-shadow:none;background:#40d8f0;background:linear-gradient(95deg,#40d8f0 0,#2dd1ea 50%,#13cbe8 100%);text-align:center;display:block;padding:10px 0;color:#fff;font-weight:600;margin-top:10px;border-radius:2px}.w-box{padding:0;min-height:310px;box-shadow:0 1px 16px rgba(0,0,0,.034);border-radius:2px}.w-box.print-events{min-height:134px}.w-box-head{font-weight:600;padding:20px 72px;position:relative;border-bottom:2px solid #008aff;font-size:20px}.w-box-head span{position:absolute;left:0;padding:0 25px;line-height:58px;background:#008aff;height:100%;top:0;color:#fff}.w-box-child,.w-box-content{padding:18px;line-height:24px;font-size:14px}.mec-count-child{width:50%;margin:0 auto}#webnus-dashboard .w-button a{color:#fff!important;border-radius:0;padding:10px 24px;font-size:12px;letter-spacing:1px;font-weight:600;background:#008aff;margin:10px 0;display:inline-block;text-transform:uppercase}#webnus-dashboard .w-box .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)}.w-system-info{margin-bottom:7px}.w-system-info:first-child{margin-top:20px}.w-system-info>span{display:inline-block;min-width:145px;line-height:20px;font-size:13px}#webnus-dashboard .w-current{min-width:110px}#webnus-dashboard .w-min{min-width:65px}.w-icon{color:#fff;padding:3px;border-radius:4px;margin-right:10px;vertical-align:middle}.w-icon-green{background:#27ae60}.w-icon-red{background:#e74c3c}.extra .w-box-head{padding:20px;border-bottom:1px solid #ededed}.doc .w-box-head{color:#4cbf67}#webnus-dashboard .doc .w-button a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);margin:35px 0 17px;box-shadow:0 5px 10px -5px #4cbf67;background-color:#fff}#webnus-dashboard .support .w-button a{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);margin:13px 0 18px;box-shadow:0 5px 10px -5px #ff876c}.doc .w-box-content{background:url(../img/document.png) no-repeat right center}.doc .w-box-content p,.w-box.support .w-box-content p{width:54%;color:#666;margin-top:10px;max-width:380px}.w-box-child p{color:#666;margin-top:10px}.w-box.support{background:#fff url(../img/support.png) no-repeat top right}.w-box.support .w-box-head{width:50%;color:#ff876c}.w-box-content pre{text-align:left;background:#f5f5f5;font-size:13px;padding:20px 25px;height:480px;overflow-y:scroll}.w-box.change-log .w-box-head{color:#01c6d9}#webnus-dashboard .button:not(.mec-intro-section-link-tag){border:0;background:0 0;box-shadow:none;color:#e74c3c;font-weight:700}.w-box .state{position:absolute;top:0;left:-100vw}#webnus-dashboard .button:hover{color:#222}.w-box .state:checked~.content{-webkit-transform:none;-ms-transform:none;transform:none}.w-box .state:checked~.backdrop{bottom:0;opacity:1;z-index:1}.w-box .lightbox{position:fixed;top:0;right:0;left:0;height:0;padding:0 20px}.w-box .lightbox .content{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;overflow:hidden;position:relative;z-index:2;max-width:500px;max-height:95vh;margin:20px auto;padding:20px;background:#fff;-webkit-transform:translateY(-200%);-ms-transform:translateY(-200%);transform:translateY(-200%);-webkit-transition:.3s -webkit-transform ease-in-out;transition:.3s transform ease-in-out;border:1px solid rgba(0,0,0,.1)}.w-box .lightbox .main{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1}.w-box .lightbox .backdrop{position:fixed;z-index:-1;top:0;right:0;bottom:100%;left:0;opacity:0;background:rgba(0,0,0,.3);-webkit-transition:.3s opacity ease-in-out;transition:.3s opacity ease-in-out}.content .main p{color:#bf3737}p.mec_dash_count{font-size:60px;font-weight:600;margin:0;color:#01c6d9}.w-col-sm-3 .w-box.doc{text-align:center;min-height:auto}.w-Knowledgebase{color:#8e5cea}.mec-view-all-articles a{margin:30px 0 17px;display:inline-block;color:#fff!important;border-radius:0;padding:10px 24px;font-size:12px;letter-spacing:1px;font-weight:600;background:#8e5cea;display:inline-block;text-transform:uppercase;transition:all .24s ease;-webkit-transition:all .24s ease}.mec-view-all-articles a:hover{background-color:#222}.w-box.upcoming-events .mec-event-article{margin-bottom:22px;border-bottom:1px solid #eee;padding-bottom:16px}.w-box.upcoming-events .mec-event-article .mec-event-date{font-size:14px;color:#666}.w-box.upcoming-events .mec-event-article .mec-event-date span{font-weight:600;margin-right:4px}.w-box.upcoming-events .mec-event-article h4.mec-event-title{margin:0;font-size:15px}.w-box.upcoming-events .mec-event-article .mec-event-detail{font-size:13px;color:#999}.w-box.upcoming-events .mec-event-article .mec-detail-button{font-size:10px;font-weight:600;letter-spacing:1px;padding:4px 12px;background:#f2f2f2;float:right}.w-box.total-bookings ul li{display:inline-block;padding:4px 12px;background:#f1f1f1;margin-right:5px;border-radius:3px}.w-box.total-bookings ul li.selected{background:#fff;border:1px solid #e9e9e9}.info-msg,.mec-error,.mec-success,.warning-msg{margin:10px 0;padding:10px;border-radius:3px 3px 3px 3px}.info-msg{color:#059;background-color:#bef}.info-msg-link{background:#fff;padding:4px 12px 6px;border-radius:3px;line-height:1;font-weight:600;color:#008aff}.mec-success{color:#270;background-color:#dff2bf}.warning-msg{color:#9f6000;background-color:#feefb3}.mec-error{color:#d8000c;background-color:#ffbaba}.mec-certain-day>div,.mec-select-deselect-actions li,.mec-xi-facebook-import-events .mec-select-deselect-actions li,.mec-xi-google-import-events .mec-select-deselect-actions li{display:inline-block;position:relative;outline:0;background:#fff;border:1px solid #e2e2e2;border-radius:50px;padding:11px 21px 11px 21px;line-height:1;font-size:11px;font-weight:600;color:#444;letter-spacing:2px;height:auto;cursor:pointer;margin-top:5px;text-transform:uppercase;box-shadow:0 0 3px rgba(0,0,0,.03)}.mec-certain-day>div:hover,.mec-select-deselect-actions li:hover,.mec-xi-facebook-import-events .mec-select-deselect-actions li:hover,.mec-xi-google-import-events .mec-select-deselect-actions li:hover{border-color:#008aff;box-shadow:0 0 7px rgba(0,0,0,.1)}.mec-not-in-days-remove{border:1px solid #ff4b64;border-radius:20px;padding:0 0 0 1px;color:#ff4b64;width:11px;height:12px;text-align:center;line-height:12px;display:inline-block;margin-right:-5px;margin-left:6px}div#mec_not_in_days_row2:hover{border-color:#e2e2e2!important;box-shadow:none!important}.mec-xi-facebook-import-events .mec-success,.mec-xi-google-import-events .mec-success{width:460px}.mec-xi-facebook-import-events .mec-select-deselect-actions li,.mec-xi-google-import-events .mec-select-deselect-actions li{display:inline-block;cursor:pointer}.lity-content>div{overflow:auto}.mce-mec-mce-items{text-transform:capitalize!important}#mec_setting_contextual li{list-style:none!important;font-size:12px;margin:0;padding:6px}.mec-bbf-field-container{margin-bottom:10px}.mec-bbf-field-container label{display:block}.kc-components ul.kc-components-list li .cpicon.mec-kingcomposer-icon,.kc-element-icon .cpicon.mec-kingcomposer-icon{background:url(../img/ico-mec-vc.png) no-repeat center center;background-size:auto;background-repeat:no-repeat}.mec-archive-skinsm.mec-category-skins,.mec-carousel-archive-link,.mec-carousel-head-text,.mec-toggle-month-divider{display:none}span.mec-archive-skins,span.mec-category-skins{margin-left:10px;vertical-align:text-bottom}.mec-archive-skins input,.mec-archive-skins select,.mec-category-skins input,.mec-category-skins select{min-width:225px;vertical-align:baseline}#mec_settings_default_skin_archive,#mec_settings_default_skin_category{min-width:225px}.w-welcome p span{background:#fff;padding:4px 10px}#mec_masonry_skin_options_container .mec-form-row .description{margin-left:0;padding-left:0;border:none;margin-top:-4px}@media (max-width:1280px){span.mec-archive-skins,span.mec-category-skins{margin-left:0}}/*!
2
  * Bootstrap v3.3.7 (http://getbootstrap.com)
3
  * Copyright 2011-2016 Twitter, Inc.
4
  * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
5
- */#webnus-dashboard button,#webnus-dashboard input,#webnus-dashboard select,#webnus-dashboard textarea{font-family:inherit;font-size:inherit;line-height:inherit}#webnus-dashboard a{color:#337ab7;text-decoration:none}#webnus-dashboard a:focus,#webnus-dashboard a:hover{color:#23527c}#webnus-dashboard a:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}#webnus-dashboard figure{margin:0}#webnus-dashboard img{vertical-align:middle}.w-img-responsive{display:block;max-width:100%;height:auto}.w-img-rounded{border-radius:6px}.w-img-thumbnail{padding:4px;line-height:1w-42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all 0w-2s ease-in-out;-o-transition:all 0w-2s ease-in-out;transition:all 0w-2s ease-in-out;display:inline-block;max-width:100%;height:auto}.w-img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.w-sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.w-sr-only-focusable:active,.w-sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.w-container,.w-container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}[role=button]{cursor:pointer}@media (min-width:768px){.w-container{width:750px}}@media (min-width:992px){.w-container{width:970px}}@media (min-width:1200px){.w-container{width:1170px}}.w-row{margin-left:-15px;margin-right:-15px}.w-col-lg-1,.w-col-lg-10,.w-col-lg-11,.w-col-lg-12,.w-col-lg-2,.w-col-lg-3,.w-col-lg-4,.w-col-lg-5,.w-col-lg-6,.w-col-lg-7,.w-col-lg-8,.w-col-lg-9,.w-col-md-1,.w-col-md-10,.w-col-md-11,.w-col-md-12,.w-col-md-2,.w-col-md-3,.w-col-md-4,.w-col-md-5,.w-col-md-6,.w-col-md-7,.w-col-md-8,.w-col-md-9,.w-col-sm-1,.w-col-sm-10,.w-col-sm-11,.w-col-sm-12,.w-col-sm-2,.w-col-sm-3,.w-col-sm-4,.w-col-sm-5,.w-col-sm-6,.w-col-sm-7,.w-col-sm-8,.w-col-sm-9,.w-col-xs-1,.w-col-xs-10,.w-col-xs-11,.w-col-xs-12,.w-col-xs-2,.w-col-xs-3,.w-col-xs-4,.w-col-xs-5,.w-col-xs-6,.w-col-xs-7,.w-col-xs-8,.w-col-xs-9{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.w-col-xs-1,.w-col-xs-10,.w-col-xs-11,.w-col-xs-12,.w-col-xs-2,.w-col-xs-3,.w-col-xs-4,.w-col-xs-5,.w-col-xs-6,.w-col-xs-7,.w-col-xs-8,.w-col-xs-9{float:left}.w-col-xs-12{width:100%}.w-col-xs-11{width:91.66666667%}.w-col-xs-10{width:83.33333333%}.w-col-xs-9{width:75%}.w-col-xs-8{width:66.66666667%}.w-col-xs-7{width:58.33333333%}.w-col-xs-6{width:50%}.w-col-xs-5{width:41.66666667%}.w-col-xs-4{width:33.33333333%}.w-col-xs-3{width:25%}.w-col-xs-2{width:16.66666667%}.w-col-xs-1{width:8w-33333333%}.w-col-xs-pull-12{right:100%}.w-col-xs-pull-11{right:91.66666667%}.w-col-xs-pull-10{right:83.33333333%}.w-col-xs-pull-9{right:75%}.w-col-xs-pull-8{right:66.66666667%}.w-col-xs-pull-7{right:58.33333333%}.w-col-xs-pull-6{right:50%}.w-col-xs-pull-5{right:41.66666667%}.w-col-xs-pull-4{right:33.33333333%}.w-col-xs-pull-3{right:25%}.w-col-xs-pull-2{right:16.66666667%}.w-col-xs-pull-1{right:8w-33333333%}.w-col-xs-pull-0{right:auto}.w-col-xs-push-12{left:100%}.w-col-xs-push-11{left:91.66666667%}.w-col-xs-push-10{left:83.33333333%}.w-col-xs-push-9{left:75%}.w-col-xs-push-8{left:66.66666667%}.w-col-xs-push-7{left:58.33333333%}.w-col-xs-push-6{left:50%}.w-col-xs-push-5{left:41.66666667%}.w-col-xs-push-4{left:33.33333333%}.w-col-xs-push-3{left:25%}.w-col-xs-push-2{left:16.66666667%}.w-col-xs-push-1{left:8w-33333333%}.w-col-xs-push-0{left:auto}.w-col-xs-offset-12{margin-left:100%}.w-col-xs-offset-11{margin-left:91.66666667%}.w-col-xs-offset-10{margin-left:83.33333333%}.w-col-xs-offset-9{margin-left:75%}.w-col-xs-offset-8{margin-left:66.66666667%}.w-col-xs-offset-7{margin-left:58.33333333%}.w-col-xs-offset-6{margin-left:50%}.w-col-xs-offset-5{margin-left:41.66666667%}.w-col-xs-offset-4{margin-left:33.33333333%}.w-col-xs-offset-3{margin-left:25%}.w-col-xs-offset-2{margin-left:16.66666667%}.w-col-xs-offset-1{margin-left:8w-33333333%}.w-col-xs-offset-0{margin-left:0}@media (min-width:768px){.w-col-sm-1,.w-col-sm-10,.w-col-sm-11,.w-col-sm-12,.w-col-sm-2,.w-col-sm-3,.w-col-sm-4,.w-col-sm-5,.w-col-sm-6,.w-col-sm-7,.w-col-sm-8,.w-col-sm-9{float:left}.w-col-sm-12{width:100%}.w-col-sm-11{width:91.66666667%}.w-col-sm-10{width:83.33333333%}.w-col-sm-9{width:75%}.w-col-sm-8{width:66.66666667%}.w-col-sm-7{width:58.33333333%}.w-col-sm-6{width:50%}.w-col-sm-5{width:41.66666667%}.w-col-sm-4{width:33.33333333%}.w-col-sm-3{width:25%}.w-col-sm-2{width:16.66666667%}.w-col-sm-1{width:8w-33333333%}.w-col-sm-pull-12{right:100%}.w-col-sm-pull-11{right:91.66666667%}.w-col-sm-pull-10{right:83.33333333%}.w-col-sm-pull-9{right:75%}.w-col-sm-pull-8{right:66.66666667%}.w-col-sm-pull-7{right:58.33333333%}.w-col-sm-pull-6{right:50%}.w-col-sm-pull-5{right:41.66666667%}.w-col-sm-pull-4{right:33.33333333%}.w-col-sm-pull-3{right:25%}.w-col-sm-pull-2{right:16.66666667%}.w-col-sm-pull-1{right:8w-33333333%}.w-col-sm-pull-0{right:auto}.w-col-sm-push-12{left:100%}.w-col-sm-push-11{left:91.66666667%}.w-col-sm-push-10{left:83.33333333%}.w-col-sm-push-9{left:75%}.w-col-sm-push-8{left:66.66666667%}.w-col-sm-push-7{left:58.33333333%}.w-col-sm-push-6{left:50%}.w-col-sm-push-5{left:41.66666667%}.w-col-sm-push-4{left:33.33333333%}.w-col-sm-push-3{left:25%}.w-col-sm-push-2{left:16.66666667%}.w-col-sm-push-1{left:8w-33333333%}.w-col-sm-push-0{left:auto}.w-col-sm-offset-12{margin-left:100%}.w-col-sm-offset-11{margin-left:91.66666667%}.w-col-sm-offset-10{margin-left:83.33333333%}.w-col-sm-offset-9{margin-left:75%}.w-col-sm-offset-8{margin-left:66.66666667%}.w-col-sm-offset-7{margin-left:58.33333333%}.w-col-sm-offset-6{margin-left:50%}.w-col-sm-offset-5{margin-left:41.66666667%}.w-col-sm-offset-4{margin-left:33.33333333%}.w-col-sm-offset-3{margin-left:25%}.w-col-sm-offset-2{margin-left:16.66666667%}.w-col-sm-offset-1{margin-left:8w-33333333%}.w-col-sm-offset-0{margin-left:0}}@media (min-width:992px){.w-col-md-1,.w-col-md-10,.w-col-md-11,.w-col-md-12,.w-col-md-2,.w-col-md-3,.w-col-md-4,.w-col-md-5,.w-col-md-6,.w-col-md-7,.w-col-md-8,.w-col-md-9{float:left}.w-col-md-12{width:100%}.w-col-md-11{width:91.66666667%}.w-col-md-10{width:83.33333333%}.w-col-md-9{width:75%}.w-col-md-8{width:66.66666667%}.w-col-md-7{width:58.33333333%}.w-col-md-6{width:50%}.w-col-md-5{width:41.66666667%}.w-col-md-4{width:33.33333333%}.w-col-md-3{width:25%}.w-col-md-2{width:16.66666667%}.w-col-md-1{width:8w-33333333%}.w-col-md-pull-12{right:100%}.w-col-md-pull-11{right:91.66666667%}.w-col-md-pull-10{right:83.33333333%}.w-col-md-pull-9{right:75%}.w-col-md-pull-8{right:66.66666667%}.w-col-md-pull-7{right:58.33333333%}.w-col-md-pull-6{right:50%}.w-col-md-pull-5{right:41.66666667%}.w-col-md-pull-4{right:33.33333333%}.w-col-md-pull-3{right:25%}.w-col-md-pull-2{right:16.66666667%}.w-col-md-pull-1{right:8w-33333333%}.w-col-md-pull-0{right:auto}.w-col-md-push-12{left:100%}.w-col-md-push-11{left:91.66666667%}.w-col-md-push-10{left:83.33333333%}.w-col-md-push-9{left:75%}.w-col-md-push-8{left:66.66666667%}.w-col-md-push-7{left:58.33333333%}.w-col-md-push-6{left:50%}.w-col-md-push-5{left:41.66666667%}.w-col-md-push-4{left:33.33333333%}.w-col-md-push-3{left:25%}.w-col-md-push-2{left:16.66666667%}.w-col-md-push-1{left:8w-33333333%}.w-col-md-push-0{left:auto}.w-col-md-offset-12{margin-left:100%}.w-col-md-offset-11{margin-left:91.66666667%}.w-col-md-offset-10{margin-left:83.33333333%}.w-col-md-offset-9{margin-left:75%}.w-col-md-offset-8{margin-left:66.66666667%}.w-col-md-offset-7{margin-left:58.33333333%}.w-col-md-offset-6{margin-left:50%}.w-col-md-offset-5{margin-left:41.66666667%}.w-col-md-offset-4{margin-left:33.33333333%}.w-col-md-offset-3{margin-left:25%}.w-col-md-offset-2{margin-left:16.66666667%}.w-col-md-offset-1{margin-left:8w-33333333%}.w-col-md-offset-0{margin-left:0}}@media (min-width:1200px){.w-col-lg-1,.w-col-lg-10,.w-col-lg-11,.w-col-lg-12,.w-col-lg-2,.w-col-lg-3,.w-col-lg-4,.w-col-lg-5,.w-col-lg-6,.w-col-lg-7,.w-col-lg-8,.w-col-lg-9{float:left}.w-col-lg-12{width:100%}.w-col-lg-11{width:91.66666667%}.w-col-lg-10{width:83.33333333%}.w-col-lg-9{width:75%}.w-col-lg-8{width:66.66666667%}.w-col-lg-7{width:58.33333333%}.w-col-lg-6{width:50%}.w-col-lg-5{width:41.66666667%}.w-col-lg-4{width:33.33333333%}.w-col-lg-3{width:25%}.w-col-lg-2{width:16.66666667%}.w-col-lg-1{width:8w-33333333%}.w-col-lg-pull-12{right:100%}.w-col-lg-pull-11{right:91.66666667%}.w-col-lg-pull-10{right:83.33333333%}.w-col-lg-pull-9{right:75%}.w-col-lg-pull-8{right:66.66666667%}.w-col-lg-pull-7{right:58.33333333%}.w-col-lg-pull-6{right:50%}.w-col-lg-pull-5{right:41.66666667%}.w-col-lg-pull-4{right:33.33333333%}.w-col-lg-pull-3{right:25%}.w-col-lg-pull-2{right:16.66666667%}.w-col-lg-pull-1{right:8w-33333333%}.w-col-lg-pull-0{right:auto}.w-col-lg-push-12{left:100%}.w-col-lg-push-11{left:91.66666667%}.w-col-lg-push-10{left:83.33333333%}.w-col-lg-push-9{left:75%}.w-col-lg-push-8{left:66.66666667%}.w-col-lg-push-7{left:58.33333333%}.w-col-lg-push-6{left:50%}.w-col-lg-push-5{left:41.66666667%}.w-col-lg-push-4{left:33.33333333%}.w-col-lg-push-3{left:25%}.w-col-lg-push-2{left:16.66666667%}.w-col-lg-push-1{left:8w-33333333%}.w-col-lg-push-0{left:auto}.w-col-lg-offset-12{margin-left:100%}.w-col-lg-offset-11{margin-left:91.66666667%}.w-col-lg-offset-10{margin-left:83.33333333%}.w-col-lg-offset-9{margin-left:75%}.w-col-lg-offset-8{margin-left:66.66666667%}.w-col-lg-offset-7{margin-left:58.33333333%}.w-col-lg-offset-6{margin-left:50%}.w-col-lg-offset-5{margin-left:41.66666667%}.w-col-lg-offset-4{margin-left:33.33333333%}.w-col-lg-offset-3{margin-left:25%}.w-col-lg-offset-2{margin-left:16.66666667%}.w-col-lg-offset-1{margin-left:8w-33333333%}.w-col-lg-offset-0{margin-left:0}}.w-clearfix:after,.w-clearfix:before,.w-container-fluid:after,.w-container-fluid:before,.w-container:after,.w-container:before,.w-row:after,.w-row:before{content:" ";display:table}.w-clearfix:after,.w-container-fluid:after,.w-container:after,.w-row:after{clear:both}.w-center-block{display:block;margin-left:auto;margin-right:auto}.w-pull-right{float:right!important}.w-pull-left{float:left!important}.w-hide{display:none!important}.w-show{display:block!important}.w-invisible{visibility:hidden}.w-text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.w-hidden{display:none!important}.w-affix{position:fixed}.mec-image-popup-wrap{display:none}#wns-be-infobar.sticky{position:fixed;top:32px;background:#fff;z-index:9999;width:82%}.wns-be-main .wns-saved-settings.sticky{position:fixed;width:62.5%;top:111px;z-index:999999999999999999}.mec-export-settings,.mec-import-settings{font-weight:700;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:8px 32px;height:36px;letter-spacing:.2px;line-height:36px;font-size:13px;color:#fff;text-decoration:none;display:inline-block}.mec-export-settings:hover,.mec-import-settings:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5);color:#fff}textarea.mec-import-settings-content{display:block;width:100%;min-height:120px;margin-bottom:25px;padding:10px 15px}.mec-import-options-notification{display:inline-block}.mec-import-options-notification .mec-message-import-error,.mec-import-options-notification .mec-message-import-success{display:inline-block;padding:15px 12px;margin-left:12px;opacity:0;visibility:hidden;font-weight:700}.mec-import-options-notification .mec-message-import-success{opacity:1;visibility:visible;border:2px solid green}.mec-import-options-notification .mec-message-import-error{opacity:1;visibility:visible;border:2px solid #e62117}.mec-export-settings:focus,.mec-import-settings:focus{color:#fff}.mec-import-settings-wrap{position:relative}.mec-loarder-wrap{position:absolute;top:0;bottom:0;left:0;right:0;background:rgba(202,202,202,.7);z-index:9999}.mec-loarder-wrap.mec-settings-loader{top:34px}.mec-loarder{position:absolute;width:64px;height:64px;top:calc(50% - 32px);left:calc(50% - 36px)}.mec-loarder div{display:inline-block;position:absolute;left:6px;width:4px;background:#fff;animation:mec-loarder 1.2s cubic-bezier(0,.5,.5,1) infinite}.mec-loarder div:nth-child(1){left:27px;animation-delay:-.24s;background:#0075ff}.mec-loarder div:nth-child(2){left:36px;animation-delay:-.12s;background:#028bff}.mec-loarder div:nth-child(3){left:45px;animation-delay:0;background:#32a0ff}@keyframes mec-loarder{0%{top:6px;height:51px}100%,50%{top:19px;height:26px}}.w-box.support-page.searchbox{background:#008aff;background:linear-gradient(180deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff;min-height:260px;text-align:center;border-radius:2px}#webnus-dashboard .search-form input{background:rgba(255,255,255,.2);border:none;width:50%;outline:0;color:rgba(255,255,255,.7);font-size:18px;border-radius:4px 0 0 4px;box-shadow:0 1px 2px 0 rgba(0,0,0,.03);-webkit-transition:background .4s,box-shadow .2s;transition:background .4s,box-shadow .2s;padding:20px 32px;margin:0}#webnus-dashboard .search-form button{background:rgba(255,255,255,.2);border:none;padding:20px 32px;margin-left:-2px;color:#fff;border-radius:0 4px 4px 0;font-size:18px;cursor:pointer;-webkit-transition:background .4s,box-shadow .2s;transition:background .4s,box-shadow .2s}#webnus-dashboard .search-form button:hover{background:#fff;color:#3a3c4c}.w-box.support-page.searchbox p{font-size:30px}.search-form input::-webkit-input-placeholder{color:rgba(255,255,255,.7)}.search-form input::-moz-placeholder{color:rgba(255,255,255,.7)}.search-form input:-ms-input-placeholder{color:rgba(255,255,255,.7)}.search-form input:-moz-placeholder{color:rgba(255,255,255,.7)}#webnus-dashboard .search-form input:active,#webnus-dashboard .search-form input:focus{box-shadow:0 10px 20px rgba(0,0,0,.14);background:#fff;color:#3a3c4c}#webnus-dashboard .search-form input:active::-webkit-input-placeholder,#webnus-dashboard .search-form input:focus::-webkit-input-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active::-moz-placeholder,#webnus-dashboard .search-form input:focus::-moz-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active:-ms-input-placeholder,#webnus-dashboard .search-form input:focus:-ms-input-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active:-moz-placeholder,#webnus-dashboard .search-form input:focus:-moz-placeholder{color:#3a3c4c}#webnus-dashboard .w-box.support-page.mec-ticksy{text-align:center;min-height:260px}#webnus-dashboard .w-box.support-page.mec-ticksy p{font-size:20px;width:70%;margin:0 auto;margin-bottom:40px;margin-top:40px}#webnus-dashboard .support-box a,#webnus-dashboard .w-box.support-page.mec-ticksy a{color:#fff;font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:12px 20px;cursor:pointer;margin-bottom:40px;display:inline-block}#webnus-dashboard .support-box a:hover,#webnus-dashboard .w-box.support-page.mec-ticksy a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5)}#webnus-dashboard .support-box a{margin:40px 4px 0 4px}.mec-faq-accordion>.mec-faq-accordion-content{display:none}#webnus-dashboard .mec-faq-accordion-trigger a{font-size:16px;padding:12px;background:#f1f1f1;display:block;color:#222;line-height:17px;outline:0}.mec-faq-accordion-trigger{margin-bottom:5px;position:relative}#webnus-dashboard .mec-faq-accordion-trigger a:after{font-family:simple-line-icons;content:"\e095";position:absolute;right:12px;font-weight:700}.mec-faq-accordion-content{padding:5px 14px 25px}#webnus-dashboard .mec-faq-accordion-trigger a.active:after{content:"\e082"}#webnus-dashboard .support-page-links a{background-color:#fff;color:#fff;border-radius:2px;padding:13px 24px;font-size:12px;letter-spacing:1px;font-weight:600;text-transform:uppercase}#webnus-dashboard .support-page-links a:hover,#webnus-dashboard .w-box.support-page.videobox .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}#webnus-dashboard .support-page-links{display:inline-block;margin:12px 4px 16px 0}.support-page-links.link-to-doc a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.support-page-links.link-to-videos a{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);box-shadow:0 5px 10px -5px #ff876c}.support-page-links.link-to-articles a{background:#b092e6;background:linear-gradient(95deg,#b092e6 0,#9b70e8 50%,#8e5cea 100%);box-shadow:0 5px 10px -5px #b092e6}.w-box.support-page.articles-box .w-box-content a{display:block;padding:6px 0}#webnus-dashboard .w-box.support-page.videobox .w-button a{color:#fff;font-size:10px;padding:5px 15px;min-height:10px;font-weight:500;border-radius:22px;box-shadow:0 3px 10px -4px #ff5a35;text-shadow:none;background:#ff5a35;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);border:none;transition:.24s}.w-box.support-page.articles-box,.w-box.support-page.faq-box{min-height:500px}.w-box.support-page.videobox{border-radius:2px;min-height:282px;box-shadow:0 1px 6px rgba(0,0,0,.039)!important}#webnus-dashboard .w-box.support-page.videobox .w-button a i{margin-right:6px}.support-page .w-box-content ul{margin-top:5px;padding-left:5px}.support-page .w-box-content ul li{font-size:13px}.support-page .w-box-content ul li i{font-size:17px;vertical-align:text-bottom;margin-right:7px;color:#999}.w-box.mec-activation{background:#fff url(../img/dp-dsb-support.jpg) no-repeat top right}.w-box.mec-activation .w-box-head{color:#40d8f0;width:75%}.w-box.mec-activation .w-box-content{padding:10px 30px}.w-box.mec-activation input[type=radio]{display:none}.w-box.mec-activation input[type=radio]+label{color:#000;font-size:13px;line-height:14px!important;color:#7b7b7b}.w-box.mec-activation input[type=radio].checked+label{color:#40d8f0}.w-box.mec-activation input[type=radio]+label span{display:inline-block;margin:-2px 6px 0 0;vertical-align:middle;cursor:pointer;height:14px;width:14px;text-align:center;background-color:#fff;border:1px solid #d4d4d4;border-radius:100%;box-shadow:0 2px 16px -2px rgba(0,0,0,.2);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;position:relative}.w-box.mec-activation input[type=radio].checked+label span{background-color:#40d8f0;border-color:#40d8f0;box-shadow:0 2px 14px -3px #40d8f0}.w-box.mec-activation input[type=radio].checked+label span:after{content:'';display:block;position:absolute;top:4px;left:4px;width:4px;height:4px;background:#fff;border-radius:100%}.w-box.mec-activation .LicenseType label{padding-right:20px;font-weight:500}.w-box.mec-activation .LicenseField{display:inline-block;position:relative;margin-top:20px}.w-box.mec-activation input[name=MECPurchaseCode]{box-shadow:inset 0 1px 2px rgba(0,0,0,.07);min-width:220px;background:#f4f4f4;border:none;border-radius:33px;width:500px;min-height:50px;margin:0;padding-left:20px;text-align:left}#webnus-dashboard .w-box.mec-activation input[type=submit]{height:40px;line-height:40px;font-weight:600;border:none;cursor:pointer;padding:0 30px;border-radius:33px;color:#fff;letter-spacing:1px;text-transform:uppercase;font-size:12px;background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67;transition:all .28s ease;position:absolute;right:5px;top:4px;font-size:12px}#webnus-dashboard .w-box.mec-activation input[type=submit]:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5)}#MECActivation .MECPurchaseStatus,.addon-activation-form .MECPurchaseStatus{display:inline-block;width:40px;height:40px;text-align:center;padding-top:9px;color:#fff;font-weight:700;font-size:18px;border-radius:50%;padding-top:8px;position:absolute;right:-51px;top:calc(50% - 20px)}.MECPurchaseStatus:after,.MECPurchaseStatus:before{position:absolute;border-radius:50px;background:#fff;content:'';transform:rotate(45deg)}.MECPurchaseStatus.PurchaseError:before{width:22px;height:4px;right:9px;top:18px;transform:rotate(45deg)}.MECPurchaseStatus.PurchaseError:after{width:22px;height:4px;right:9px;top:18px;transform:rotate(-45deg)}.MECPurchaseStatus.PurchaseSuccess:before{width:13px;height:4px;right:19px;top:21px;transform:rotate(45deg)}.MECPurchaseStatus.PurchaseSuccess:after{width:22px;height:4px;right:5px;top:18px;transform:rotate(-45deg)}#MECActivation .MECPurchaseStatus.PurchaseError,.addon-activation-form .MECPurchaseStatus.PurchaseError{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);box-shadow:0 5px 10px -5px #ff876c}#MECActivation .MECPurchaseStatus.PurchaseSuccess,.addon-activation-form .MECPurchaseStatus.PurchaseSuccess{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.wna-spinner-wrap{position:absolute;background:#000;width:509px;height:64px;top:-8px;border-radius:50px;z-index:999;background-color:#fff;opacity:.9}.wna-spinner{width:40px;height:40px;position:relative;margin:6px auto}.wna-spinner .double-bounce1,.wna-spinner .double-bounce2{width:100%;height:100%;border-radius:50%;background-color:#40d8f0;opacity:.6;position:absolute;top:0;left:0;-webkit-animation:sk-bounce 2s infinite ease-in-out;animation:sk-bounce 2s infinite ease-in-out}.wna-spinner .double-bounce2{-webkit-animation-delay:-1s;animation-delay:-1s}#MECActivation .MECLicenseMessage,.addon-activation-form .MECLicenseMessage{margin-top:24px;color:#f64;max-width:570px}.box-addon-activation-toggle-content,.box-addon-activation-toggle-head{display:none}.addon-activation-form h3{font-size:15px;font-weight:400;margin:34px 0 -7px}.box-addon-activation-toggle-head{line-height:1.5;font-size:16px;margin-top:20px;cursor:pointer}.box-addon-activation-toggle-head i{margin-right:7px;cursor:pointer;font-weight:700}#mec-advanced-wraper div:first-child>ul{display:block;margin:5px 0;padding:5px 0;width:390px;border:1px solid #e1e2e3;border-radius:2px;box-shadow:0 1px 3px rgba(0,0,0,.05)}#mec-advanced-wraper div:first-child>ul span{display:none}#mec-advanced-wraper div:first-child>ul *{display:inline-block;background:#fff;font-size:12px;color:#717273;text-align:center}#mec-advanced-wraper div:first-child>ul>li{width:60px;font-weight:700;margin:0 10px 0 0;padding:4px 0;border-right:1px solid #e1e2e3}#mec-advanced-wraper div:first-child>ul>ul>li{margin:0;padding:2px 10px;cursor:pointer;border-radius:2px;transition:all .18s ease}#mec-advanced-wraper div:first-child>ul>ul>li:hover,.mec-active{background:#008aff!important;color:#fff!important}@-webkit-keyframes sk-bounce{0%,100%{-webkit-transform:scale(0)}50%{-webkit-transform:scale(1)}}@keyframes sk-bounce{0%,100%{transform:scale(0);-webkit-transform:scale(0)}50%{transform:scale(1);-webkit-transform:scale(1)}}.w-col-sm-3 .w-box.addon{min-height:auto;box-shadow:0 3px 16px -5px rgba(0,0,0,.1);border-radius:2px}.w-box-child.mec-addon-box{padding:20px 20px}.mec-addon-box-head{border-bottom:1px solid #e8e8e8;padding-bottom:5px;margin-bottom:14px;position:relative}.mec-addon-box-version{position:relative;background:#eaeaea;border-radius:1px;padding:0 8px;color:#5a5a5a;font-size:11px;letter-spacing:.2px;line-height:21px;display:inline-block;margin:10px 0}.mec-addon-box-head img{display:block;width:60px;height:60px;margin-bottom:10px}.mec-addon-box-title{font-weight:600;font-size:17px;line-height:25px}.mec-addon-box-title a span{color:#444;font-size:15px}.mec-addon-box-content p{color:#777;font-size:13px;letter-spacing:.1px}.mec-addon-box-mec-version{background:#f3f3f3;padding:10px;font-size:13px}#webnus-dashboard .addons-page-links{display:inline-block;margin:12px 4px 16px 0}#webnus-dashboard .addons-page-links a{background-color:#fff;color:#fff;border-radius:2px;padding:13px 24px;font-size:12px;letter-spacing:1px;font-weight:600;text-transform:uppercase}.addons-page-links.link-to-purchase a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.addons-page-links.link-to-install-addons a{background:#b092e6;background:linear-gradient(95deg,#b092e6 0,#9b70e8 50%,#8e5cea 100%);box-shadow:0 5px 10px -5px #b092e6}#webnus-dashboard .addons-page-links a:hover,#webnus-dashboard .w-box.addons-page.videobox .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}.mec-addon-box-footer{margin-top:25px;text-align:center}#webnus-dashboard .mec-addon-box-footer a{background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);margin-top:10px;display:inline-block;text-shadow:none;border:none;transition:.24s;position:relative;margin-right:7px;font-size:12px;font-weight:500;border-radius:7px;padding:9px 18px 8px;width:53px;height:34px;line-height:21px;box-shadow:0 2px 8px -3px #008aff}#webnus-dashboard .mec-addon-box-footer a:last-of-type{margin-right:0}#webnus-dashboard .mec-addon-box-footer a.mec-addon-box-intro{box-shadow:0 3px 10px -4px #ff3535;background:linear-gradient(95deg,#ff6c6c 0,#f55 50%,#ff3535 100%)}#webnus-dashboard .mec-addon-box-footer a:hover{background:#222!important;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%)!important;box-shadow:0 5px 23px -7px rgba(0,0,0,.5)!important;cursor:pointer!important}#webnus-dashboard .mec-addon-box-footer a i{color:#fff;font-size:16px}@media(max-width:1366px){.wns-be-container #wns-be-content{padding:5px 15px 0}.mec-form-row .mec-col-8 label{font-size:10px}#webnus-dashboard .mec-tooltip .box p,.mec-tooltip .box p{font-size:10px}}@media (max-width:780px){.wns-be-container #wns-be-content{padding:10px 0}.wns-be-container .mec-form-row .mec-col-8 label{width:50%;display:block}.wns-be-container .mec-form-row input[type=checkbox]{width:14px;height:14px}.wns-be-container .wns-be-sidebar li .subsection a{padding-left:30px}.wns-be-container .wns-be-sidebar{width:200px}.wns-be-container .wns-be-main{margin-left:200px}.wns-be-container .mec-tooltip .box{min-width:235px!important}.wns-be-container .mec-tooltip .box p{font-size:12px!important}#wns-be-infobar.sticky{position:unset}}@media (max-width:480px){.wns-be-container .wns-be-sidebar{width:100%;position:unset;float:none}.wns-be-container .wns-be-main{margin-left:0;width:100%;position:unset}.wns-be-container{margin-top:50px}.wns-be-container #wns-be-infobar:before{width:100%}.wns-be-container #wns-be-infobar{height:150px}#mec-search-settings{margin-top:80px;width:181px}}#mec_tickets .mec-box{position:relative;padding:25px 10px}#mec_fees_list input[type=text].mec-col-12,#mec_ticket_variations_list input[type=text].mec-col-12{max-width:625px}#taxes_option .mec-form-row input[type=text].mec-col-12,#ticket_variations_option input[type=text].mec-col-12{max-width:554px}.mec-booking-tab-content .mec-form-row textarea{max-width:762px}#mec_tickets .button.remove{padding:0;min-height:28px;height:28px;width:28px;margin:0;border-radius:50%;position:absolute;top:20px;right:20px;color:#ea6485;box-shadow:0 2px 6px -3px #ea6485;background:#fff;border-color:#ffd2dd;font-size:20px;line-height:1.5}#mec_tickets .button.remove svg{fill:#ea6485!important}#mec_tickets .button.remove:hover{color:#fff;border:2px solid #ea6485;background:#ea6485}#mec_tickets .button.remove:hover svg{fill:#fff!important}@media(max-width:480px){#mec_tickets .button.remove{top:5px;right:5px}}.mec-ticket-id{font-size:12px;line-height:12px;font-weight:400;color:#008aff;padding:0 0 8px;margin-top:-6px;margin-bottom:14px;cursor:default}#mec_meta_box_hourly_schedule_days .mec-form-row input[type=text],#mec_meta_box_tickets_form .mec-form-row input[type=text]{max-width:400px}#mec_exceptions_not_in_days_date{width:100%}#mec-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_select_tags.mec-create-shortcode-tab-content input[type=text],#mec_settings_weather_module_api_key{width:262px}#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]{max-width:262px}#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:75%}.mec-form-repeating-event-row .mec-col-6 input[type=text]{width:35%}.addons-page-error,.addons-page-notice{display:block;margin-top:15px;margin-bottom:0;background:#fff;border-left:4px solid #00a0d2;box-shadow:0 1px 1px 0 rgba(0,0,0,.1);padding:1px 12px}.addons-page-error p,.addons-page-notice p{margin:.5em 0;padding:2px;font-size:13px}.addons-page-error{border-left-color:#dc3232}.mec-addon-box-comingsoon{background:#eaeaea;padding:8px 11px;color:#5a5a5a;font-size:14px;font-weight:500;text-align:center}.mec-addons .w-row .w-col-sm-3:nth-child(4n+1){clear:left}@media (min-width:960px){#webnus-dashboard .mec-addon-box-footer .w-button{text-align:right}}@media (min-width:1401px){.mec-addon-box-title a span{font-size:17px}}.mec-pro-notice{margin-top:24px;line-height:30px}.mec-pro-notice .info-msg{padding:50px 30px;margin-bottom:0}#webnus-dashboard .mec-pro-notice .info-msg{background:#fff;box-shadow:0 1px 16px rgba(0,0,0,.034);text-align:center;color:#000}#webnus-dashboard a.info-msg-link{background:#e66f52;background:linear-gradient(95deg,#ff8162 0,#e66f52 50%,#ff4c20 100%);box-shadow:0 5px 10px -5px #e66f52;border-radius:2px;padding:12px 50px;font-size:16px;line-height:24px;border:none;margin:20px auto 0;color:#fff;transition:all .3s ease;display:inline-block}#webnus-dashboard a.info-msg-link:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}#webnus-dashboard .info-msg p{width:70%;margin:0 auto;line-height:1.8}#webnus-dashboard .info-msg-coupon{font-size:13px;color:#777;max-width:600px;line-height:1.68;margin:25px auto 0}#webnus-dashboard .info-msg-coupon strong{font-weight:700;color:#19ce18}.info-msg .socialfollow{padding-top:20px}.info-msg .socialfollow a{margin:0 2px;display:inline-block}.info-msg .socialfollow a i{background:#96a4b1;color:#fff;padding:6px;border-radius:3px;font-size:18px;box-shadow:0 2px 3px rgba(0,0,0,.1);transition:all .25s}.info-msg .socialfollow a:hover i{background:#008aff}.mec-intro-section .w-box-content{text-align:center}.mec-intro-section .w-box-content.mec-intro-section-welcome{max-width:600px;margin:0 auto}.mec-intro-section .w-box-content.mec-intro-section-welcome h3{font-size:27px}a.mec-intro-section-link-tag.button.button-hero{margin:0 10px 40px}a.mec-intro-section-link-tag.button.button-primary.button-hero{color:#fff!important}a.mec-intro-section-link-tag.button.button-secondary.button-hero{color:#000!important}.mec-intro-section-ifarme iframe{border:1px solid #e7e7e7;border-radius:3px;padding:10px;box-shadow:0 3px 10px -6px rgba(0,0,0,.2)}.w-box-content.mec-intro-section-welcome p{margin-bottom:0}.mec-tooltip a:focus{box-shadow:none}#mec_booking_form .mec-options-fields,#mec_modules_form .mec-options-fields,#mec_settings_form .mec-options-fields,#mec_single_form .mec-options-fields{padding-bottom:150px!important}#mec_taxes_fees_container_toggle{margin-bottom:60px}#mec_taxes_fees_container_toggle{margin-bottom:60px}.wns-be-sidebar li{position:relative}.wns-be-sidebar li .submneu-hover{position:absolute;top:-1px;right:-222px;width:220px;z-index:9;background:#fff;border:1px;border-style:solid;border-color:#dedede;margin:0;overflow:visible;opacity:0;visibility:hidden;transition:all .23s ease;padding-top:8px;padding-bottom:12px}.wns-be-sidebar li:hover{background:#fff}.wns-be-sidebar li:hover .submneu-hover{opacity:1;visibility:visible}.wns-be-sidebar li .submneu-hover a{background:#fff;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 26px}.wns-be-sidebar li .submneu-hover a:hover{background:#f6f6f6;color:#222}.wns-be-sidebar li .submneu-hover:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-15px;top:14px;border-right-color:#c5c5c5;right:0}.wns-be-sidebar li .submneu-hover:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-14px;top:14px}.wns-be-sidebar li a:focus,.wns-be-sidebar li:focus{outline:-webkit-focus-ring-color auto 0;border:0;box-shadow:none}@media (max-width:480px){.wns-be-sidebar li .submneu-hover{width:175px;right:0}.wns-be-sidebar li .submneu-hover a{font-size:11px;padding:5px 5px 5px 20px}}.mec-tooltip:hover:after,.mec-tooltip:hover:before{display:none}.mec-tooltip{display:inline-flex;bottom:7px}.mec-tooltip .box{min-width:300px;max-width:600px;display:inline-block;left:26px;top:50%;transform:translateY(-50%);padding:0;margin-top:8px;background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.3;position:absolute;z-index:9999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s}#webnus-dashboard .mec-tooltip .box p,.mec-tooltip .box p{color:#fff;font-size:14px;line-height:1.3;margin:0;font-style:normal}.mec-tooltip:hover .box{visibility:visible;opacity:1}.mec-tooltip:hover .box{padding:20px;border-radius:8px}.mec-tooltip .box h5{color:#fff;font-size:17px;font-weight:600;margin:-30px -20px;padding:15px 0;text-align:center;margin-bottom:10px;background:#3a3f44;border-bottom:1px solid #30353a;border-radius:6px 6px 0 0;z-index:9999}#webnus-dashboard .mec-tooltip .box p a,.mec-tooltip .box p a{color:#40d9f1;margin-top:10px;margin-left:0;font-weight:400;position:relative;text-decoration:none;display:block;width:max-content}.mec-tooltip .box a:hover{color:#f90}.mec-tooltip .box:after{display:block;position:absolute!important;top:100%!important;right:50%!important;margin-top:-6px!important;margin-right:-6px!important;width:12px!important;height:24px!important;overflow:hidden!important;transform:rotate(-90deg)!important}.mec-tooltip .box:before{display:block;content:''!important;position:absolute!important;width:12px;height:12px;left:-10px!important;top:50%!important;transform:translate(50%,-50%) rotate(-45deg)!important;background-color:#535a61!important;box-shadow:0 8px 9px -4px #535a61!important;z-index:0!important}.mec-tooltip .box.top{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-tooltip .box.top:after{top:50%!important;right:100%!important}.mec-tooltip .box.top:before{left:50%!important;top:100%!important}.mec-tooltip .box.bottom{left:50%;top:auto;bottom:0;transform:translate(-50%,100%);margin-bottom:-20px;margin-left:-10px}.mec-tooltip .box.bottom:after{top:0!important;right:50%!important;background-color:#3a3f44!important}.mec-tooltip .box.bottom:before{left:50%!important;top:-7px!important;transform:translateX(-50%);background-color:#3a3f44!important}.mec-tooltip .box.left{left:auto;right:26px;top:50%;transform:translateY(-50%)}.mec-tooltip .box.left:before{right:0!important;left:auto!important;top:50%!important}form#mec_reg_fields_form input[type=radio]:before{content:"";display:inline-block;background:#fff;border-radius:18px;width:14px;height:14px;margin:-1px 0 0 -2px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32)}form#mec_reg_fields_form input[type=radio]:checked:before{border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff;width:4px;height:4px}form#mec_reg_fields_form input[type=radio]{min-height:0;margin-right:6px}form#mec_reg_fields_form label{margin-right:20px}@media(min-width:1200px) and (max-width:1366px){.mec-tooltip .box.left{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-tooltip .box.left:after{top:50%!important;right:100%!important}.mec-tooltip .box.left:before{left:50%!important;top:100%!important}.mec-tooltip .box{min-width:225px}.mec-tooltip .box h5{font-size:15px}.mec-tooltip .box .content{font-size:12px}}@media(max-width:1366px){.wns-be-container .wns-be-group-tab p{margin-top:0}}.mec-addons-notification-box-wrap .w-col-sm-12,.mec-cmsg-notification-box-wrap .w-col-sm-12{padding:0}.mec-addons-notification-box-wrap img{width:auto}.mec-addons-notification-box-image{width:555px;display:inline-block;vertical-align:top}.mec-addons-notification-box-content{width:calc(100% - 559px);display:inline-block}.mec-addons-notification-box-content p{margin-top:1%;line-height:1.5;font-size:16px}.mec-addons-notification-box-content .w-box-content{padding-top:0;padding-bottom:0}.mec-addons-notification-box-content ol{font-size:16px}.mec-addons-notification-box-content a{background:#38d5ed;color:#fff!important;padding:10px 26px;margin-top:5px;display:inline-block;border-radius:3px;text-transform:capitalize;font-size:16px;letter-spacing:.4px;transition:all .1s ease;font-weight:600;text-decoration:none}.mec-addons-notification-box-content a:hover{background:#000}.w-clearfix.w-box.mec-addons-notification-box-wrap span,.w-clearfix.w-box.mec-cmsg-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}}body.rtl .wns-be-sidebar{width:260px;float:right;position:relative}body.rtl .wns-be-main{margin-left:0;border-left:0;margin-right:260px;border-right:1px solid #dedede}body.rtl .w-box.mec-activation .LicenseField{direction:rtl}body.rtl .w-box.mec-activation input[name=MECPurchaseCode]{text-align:right;padding-right:20px}body.rtl #MECActivation .MECPurchaseStatus,body.rtl .addon-activation-form .MECPurchaseStatus{right:auto;left:-51px}body.rtl #webnus-dashboard .w-box.mec-activation input[type=submit]{right:auto;left:5px}body.rtl .wns-be-sidebar .wns-be-group-menu li a{padding:13px 20px 13px 4px}body.rtl .wns-be-sidebar .wns-be-group-tab-link-a span.wns-be-group-menu-title{padding-left:0;padding-right:24px}body.rtl .wns-be-sidebar .has-sub span.extra-icon{float:left}body.rtl .wns-be-sidebar .wns-be-group-tab-link-a span.extra-icon i{right:auto;left:10px}body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:after,body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:transparent;border-left-color:#fff;right:auto;left:-1px;top:10px}body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{border-right-color:transparent;border-left-color:#c5c5c5;right:auto;left:0}body.rtl .mec-col-1,body.rtl .mec-col-10,body.rtl .mec-col-11,body.rtl .mec-col-12,body.rtl .mec-col-2,body.rtl .mec-col-3,body.rtl .mec-col-4,body.rtl .mec-col-5,body.rtl .mec-col-6,body.rtl .mec-col-7,body.rtl .mec-col-8,body.rtl .mec-col-9{float:right;margin:0 1% 0 0}body.rtl .wns-be-sidebar li .submneu-hover{right:auto;left:-222px}body.rtl .wns-be-sidebar li .submneu-hover:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:auto;right:-1px;top:14px}body.rtl #mec_styles_form #mec_styles_CSS{direction:ltr}body.rtl .w-box.mec-activation{-moz-transform:scaleY(-1);-o-transform:scaleY(-1);-webkit-transform:scaleY(-1);transform:scaleX(-1)}body.rtl .w-box.mec-activation .w-box-content,body.rtl .w-box.mec-activation .w-box-head{-moz-transform:scaleY(-1);-o-transform:scaleY(-1);-webkit-transform:scaleY(-1);transform:scaleX(-1);display:block}body.rtl .w-box.mec-activation .w-box-head{width:100%}body.rtl .wns-be-container #wns-be-infobar:before{left:auto;right:0}body.rtl .wns-be-container .dpr-btn.dpr-save-btn{float:left}body.rtl .wns-be-container .wns-be-group-tab h2:before,body.rtl .wns-be-container .wns-be-group-tab h4:before{left:auto;right:0;margin-right:0;margin-left:5px}body.rtl #mec_gateways_form .mec-tooltip{float:left}.mec-details-addons-container{margin-top:20px}.mec-details-addons-wrap img{float:left;width:19%;margin-right:17px}.mec-details-addons-wrap{clear:both;margin-bottom:80px;display:block;position:relative}.mec-details-addons-wrap a{text-decoration:none}.mec-details-addons-wrap p{float:left;width:340px;margin-top:0;margin-bottom:30px}.mec-details-addons-title{font-weight:700}.mec-details-addons-title a{color:#444}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx{border-radius:10px!important;box-shadow:0 4px 38px rgba(0,0,0,.14)!important}body .crisp-client .crisp-1rjpbb7 .crisp-13qutdl,body .crisp-client .crisp-1rjpbb7 .crisp-13qutdl *,body .crisp-client .crisp-1rjpbb7 .crisp-9dgo7z,body .crisp-client .crisp-1rjpbb7 .crisp-9dgo7z *{font-family:proxima-nova,-apple-system,BlinkMacSystemFont,"Segoe UI",Catamaran,sans-serif!important}body .crisp-client .crisp-1rjpbb7 .crisp-145mbcr,body .crisp-client .crisp-1rjpbb7 .crisp-1jrqqbm:hover{background-color:#fff!important}body .crisp-client .crisp-1rjpbb7 .crisp-14u434g{border-color:#e7e8e9!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-1bkorcf .crisp-1vzg1qq{font-size:20px!important;width:14px!important;height:19px!important;opacity:.85}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-1bkorcf .crisp-1vzg1qq:hover{opacity:.99}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-1sps3eb .crisp-1vd2grm .crisp-12w4w1a{font-size:13px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-1sps3eb .crisp-1vd2grm .crisp-12w4w1a::-webkit-input-placeholder{color:#717273!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=visitor] .crisp-z89v5n .crisp-162m9xf{background-color:#008aff!important;color:#fff!important;box-shadow:none!important;border-radius:5px!important;padding:15px 25px 15px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=visitor] .crisp-z89v5n .crisp-162m9xf .crisp-1o2g4mc{color:#fff!important;font-size:13px!important;letter-spacing:.3px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-z89v5n .crisp-162m9xf{background-color:#f1f2f3!important;border-radius:5px!important;padding:15px 25px 15px!important;box-shadow:none!important;color:#121314!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-type=audio] .crisp-z89v5n .crisp-162m9xf{background-color:#d1d7dc!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=operator] .crisp-z89v5n .crisp-1o2g4mc{color:#121314!important;-webkit-text-fill-color:#121314!important;font-size:13px!important;letter-spacing:.3px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-mkirz6 .crisp-12qaym5 .crisp-39hskb{opacity:.4;margin-right:5px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-mkirz6 .crisp-12qaym5 .crisp-ehr6mw{opacity:.68;font-size:12px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg{background-image:linear-gradient(125deg,#008aff -10%,#0066b1 100%)!important;height:110px!important;padding-top:35px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-1uw6f17,body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-85evuk,body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-nu40j6{font-size:17px!important;line-height:28px!important;padding-top:10px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-kquevr .crisp-x94m06{background-color:#008aff!important;background-image:linear-gradient(125deg,#008aff -10%,#008af0 100%)!important;box-shadow:0 5px 34px -6px #008aff!important}body .crisp-client .crisp-1rjpbb7 .crisp-4oo1n4{background-color:transparent!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx[data-chat-status=ongoing] .crisp-1784wh6 .crisp-1xmtdlg .crisp-172kolj{margin-top:-10px!important}body .crisp-client .crisp-1rjpbb7[data-last-operator-face=false] .crisp-1rf4xdh .crisp-kquevr .crisp-x94m06 .crisp-16qgsyi .crisp-101bp3x[data-is-ongoing=false]{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1OCIgaGVpZ2h0PSI1NSIgdmlld0JveD0iMCAwIDU4IDU1Ij4NCiAgPGcgaWQ9ImNoYXQtc3ZncmVwby1jb21fMV8iIGRhdGEtbmFtZT0iY2hhdC1zdmdyZXBvLWNvbSAoMSkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgLTEuNSkiPg0KICAgIDxwYXRoIGlkPSJQYXRoXzEiIGRhdGEtbmFtZT0iUGF0aCAxIiBkPSJNMjksMS41YzE2LjAxNiwwLDI5LDExLjY0MSwyOSwyNmEyNC4wMSwyNC4wMSwwLDAsMS00LjgsMTQuMzE4Yy40LDQuNzQ1LDEuNTQyLDExLjQyOCw0LjgsMTQuNjgyLDAsMC05Ljk0My0xLjQtMTYuNjc3LTUuNDYybC0uMDIyLjAwOWMtMi43NjQtMS44LTUuNTMyLTMuNjU2LTYuMS00LjEyNmExLDEsMCwwLDAtMS4zMy0uMjc3LDEuMDE3LDEuMDE3LDAsMCwwLS40ODkuODQ4Yy0uMDEuNjIyLjAwNS43ODQsNS41ODUsNC40MjFBMzEuOTE0LDMxLjkxNCwwLDAsMSwyOSw1My41Yy0xNi4wMTYsMC0yOS0xMS42NDEtMjktMjZTMTIuOTg0LDEuNSwyOSwxLjVaIiBmaWxsPSIjZmZmIi8+DQogICAgPGNpcmNsZSBpZD0iRWxsaXBzZV8xIiBkYXRhLW5hbWU9IkVsbGlwc2UgMSIgY3g9IjMiIGN5PSIzIiByPSIzIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMiAyNC41KSIgZmlsbD0iIzAwOGFmZiIvPg0KICAgIDxjaXJjbGUgaWQ9IkVsbGlwc2VfMiIgZGF0YS1uYW1lPSJFbGxpcHNlIDIiIGN4PSIzIiBjeT0iMyIgcj0iMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjYgMjQuNSkiIGZpbGw9IiMwMDhhZmYiLz4NCiAgICA8Y2lyY2xlIGlkPSJFbGxpcHNlXzMiIGRhdGEtbmFtZT0iRWxsaXBzZSAzIiBjeD0iMyIgY3k9IjMiIHI9IjMiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQwIDI0LjUpIiBmaWxsPSIjMDA4YWZmIi8+DQogIDwvZz4NCjwvc3ZnPg0K)!important;height:31px!important;top:16px!important;left:14px!important}body .csh-category-item a h6{text-align:left}.mec-form-row.mec-syn-schedule{background:#f7f7f7;padding:20px;border:1px solid #eee;box-shadow:0 1px 11px rgba(0,0,0,.034);margin-bottom:20px}.mec-form-row.mec-syn-schedule p{padding-left:26px}.mec-form-row.mec-syn-schedule h2{margin-top:0}.mec-form-row.mec-syn-schedule h4{margin:10px 0}li.wns-be-group-menu-li.mec-settings-menu .mec-settings-submenu{position:absolute;top:-1px;right:-222px;width:220px;z-index:9;background:#fff;border:1px;border-style:solid;border-color:#dedede;margin:0;overflow:visible;opacity:0;visibility:hidden;transition:all .23s ease;padding-top:8px;padding-bottom:12px}li.wns-be-group-menu-li.mec-settings-menu:hover>.mec-settings-submenu{visibility:visible;opacity:1}.mec-settings-menu .mec-settings-submenu:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-15px;top:14px;border-right-color:#c5c5c5;right:0}.mec-settings-menu .mec-settings-submenu:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-14px;top:14px}.wns-be-sidebar .mec-settings-menu .mec-settings-submenu a{background:#fff;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 26px}.mec-form-row.mec-skin-countdown-date-format-container input[type=text],.mec-form-row.mec-skin-grid-date-format-container input[type=text],.mec-form-row.mec-skin-list-date-format-container input[type=text],.mec-skin-options-container input[type=text]{max-width:unset}.wn-mec-select{width:32.33333333%!important;clear:unset!important}.wn-mec-select{-webkit-tap-highlight-color:transparent;background-color:#fff;border-radius:3px;border:1px solid #ddd;margin-bottom:8px;position:relative;text-align:left!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;box-shadow:0 3px 13px -5px rgba(0,0,0,.1),inset 0 1px 2px rgba(0,0,0,.07)}.wn-mec-select:hover{border-color:#dbdbdb}.wn-mec-select.open .list{overflow:unset;width:100%;margin:0}.wn-mec-select .list{background-color:#fff;border-radius:2px;box-shadow:0 2px 33px -2px rgba(0,0,0,.2),inset 0 1px 2px rgba(0,0,0,.07);box-sizing:border-box;margin-top:4px;opacity:0;overflow:hidden;padding:0;pointer-events:none;position:absolute;top:100%;left:0;-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0;transform-origin:50% 0;-webkit-transform:scale(.75) translateY(-21px);-ms-transform:scale(.75) translateY(-21px);transform:scale(.75) translateY(-21px);-webkit-transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;z-index:9}.wn-mec-select{-webkit-tap-highlight-color:transparent;background-color:#fff;border-radius:5px;border:solid 1px #e8e8e8;box-sizing:border-box;clear:both;cursor:pointer;display:block;float:left;font-family:inherit;font-size:14px;font-weight:400;height:42px;line-height:40px;outline:0;padding-left:18px;padding-right:30px;position:relative;text-align:left!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap;width:auto}.wn-mec-select:hover{border-color:#dbdbdb}.wn-mec-select:after{border-bottom:2px solid #999;border-right:2px solid #999;content:'';display:block;height:5px;margin-top:-4px;pointer-events:none;position:absolute;right:12px;top:50%;-webkit-transform-origin:66% 66%;-ms-transform-origin:66% 66%;transform-origin:66% 66%;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition:all .15s ease-in-out;transition:all .15s ease-in-out;width:5px}.wn-mec-select.open:after{-webkit-transform:rotate(-135deg);-ms-transform:rotate(-135deg);transform:rotate(-135deg)}.wn-mec-select.open .list{opacity:1;pointer-events:auto;-webkit-transform:scale(1) translateY(0);-ms-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}.wn-mec-select.disabled{border-color:#ededed;color:#999;pointer-events:none}.wn-mec-select.disabled:after{border-color:#ccc}.wn-mec-select.wide{width:100%}.wn-mec-select.wide .list{left:0!important;right:0!important}.wn-mec-select.right{float:right}.wn-mec-select.right .list{left:auto;right:0}.wn-mec-select.small{font-size:12px;height:36px;line-height:34px}.wn-mec-select.small:after{height:4px;width:4px}.wn-mec-select .list{background-color:#fff;border-radius:5px;box-shadow:0 0 0 1px rgba(68,68,68,.11);box-sizing:border-box;margin-top:4px;opacity:0;overflow:hidden;padding:0;pointer-events:none;position:absolute;top:100%;left:0;-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0;transform-origin:50% 0;-webkit-transform:scale(.75) translateY(-21px);-ms-transform:scale(.75) translateY(-21px);transform:scale(.75) translateY(-21px);-webkit-transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;z-index:9}.wn-mec-select .list:hover .option:not(:hover){background-color:transparent!important}.wn-mec-select .option{cursor:pointer;font-weight:400;list-style:none;min-height:40px;outline:0;text-align:left;position:relative;font-size:12px!important;padding:1px 12px!important;margin:0!important;line-height:28px!important;min-height:28px!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.wn-mec-select .option .wn-hover-img-sh img{position:absolute;padding:3px;top:-1px;left:100%;box-shadow:0 4px 42px -5px rgba(0,0,0,.16);visibility:hidden;opacity:0;border:1px solid #e3e3e3;border-radius:2px;z-index:99999999;background:#fff}.wn-mec-select .option:hover .wn-hover-img-sh img{visibility:visible;opacity:1}.wn-mec-select .option.focus,.wn-mec-select .option.selected.focus,.wn-mec-select .option:hover{background-color:#f6f6f6}.wn-mec-select .option.selected{font-weight:700}.wn-mec-select .option.disabled{background-color:transparent;color:#999;cursor:default}.no-csspointerevents .wn-mec-select .list{display:none}.no-csspointerevents .wn-mec-select.open .list{display:block}.mec-custom-nice-select ul.list li.option{width:30%!important;float:left!important;min-height:135px!important;height:135px;margin:1.66%!important;box-sizing:border-box;text-align:center;padding:10px!important;border-radius:3px;border:1px solid #eee;box-shadow:0 1px 3px rgba(0,0,0,.025);background:#fff!important}.mec-custom-nice-select ul.list li.option:hover{box-shadow:0 2px 7px rgba(0,0,0,.06);borde-color:#e0e0e0}.mec-custom-nice-select .list:hover .option:not(:hover),.mec-custom-nice-select ul.list:hover li.option{background:#fff!important}.mec-custom-nice-select ul.list{min-width:600px!important;padding:20px 10px!important;background:#fcfbfd;border:1px solid #e9e9e9;box-shadow:0 1px 4px rgba(0,0,0,.05)}.mec-custom-nice-select ul.list li.option.selected{border:1px solid #40d9f1;box-shadow:0 1px 8px -3px #40d9f1 inset;color:#00cae6;padding:12px 0 0 0!important}.mec-custom-nice-select .wn-img-sh img{margin:4px 0 1px 1px;line-height:1;max-width:68px;max-height:56px;filter:grayscale(1);-webkit-filter:grayscale(1);transition:all .22s ease;-webkit-transition:all .22s ease;-moz-transition:all .22s ease;-ms-transition:all .22s ease;-o-transition:all .22s ease}.wn-mec-select .option.focus .wn-img-sh img,.wn-mec-select .option.selected.focus .wn-img-sh img,.wn-mec-select .option:hover .wn-img-sh img{background-color:#f6f6f6;filter:grayscale(0);-webkit-filter:grayscale(0)}@media(max-width:768px){.wn-mec-select{width:45%!important}.mec-custom-nice-select ul.list{margin-left:-24px!important;min-width:404px!important}.mec-custom-nice-select ul.list li.option{width:46.6%!important}.wn-hover-img-sh{display:none}}@media(max-width:480px){.wn-mec-select{width:100%!important}.mec-custom-nice-select ul.list{min-width:337px!important}}@media(max-width:320px){.mec-custom-nice-select ul.list li.option{width:100%!important}.mec-custom-nice-select ul.list{min-width:298px!important}}.mec-sed-methods li{line-height:28px;padding-left:38px;position:relative}.mec-sed-methods li:before{margin-right:0}.mec-sed-methods li:before{border-radius:18px}.mec-custom-nice-select ul.list li .wn-mec-text:after,.mec-sed-methods li:before{content:"";position:absolute;display:inline-block;background:#fff;border-radius:2px;width:12px;height:12px;margin:-1px 0 0 -1px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32);border-radius:50%}.mec-custom-nice-select ul.list li .wn-mec-text{position:relative;padding-top:0;padding-bottom:28px}.mec-custom-nice-select ul.list li .wn-mec-text:after{left:calc(50% - 7px);top:auto;bottom:1px}.mec-custom-nice-select ul.list li .wn-img-sh{line-height:1}.mec-sed-methods li:before{left:9px;top:calc(50% - 7px)}.mec-custom-nice-select ul.list li.option.selected .wn-mec-text:after,.mec-sed-methods li.active:before{width:4px;height:4px;border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff}.menu-icon-mec-books .wp-menu-image img,.toplevel_page_mec-intro .wp-menu-image img{width:18px!important;padding-top:7px!important}.mec-add-booking-tabs-wrap,.mec-add-event-tabs-wrap,.mec-create-shortcode-tabs-wrap{display:flex;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox}.mec-add-booking-tabs-left,.mec-add-event-tabs-left,.mec-create-shortcode-tabs-left{flex:1}.mec-add-booking-tabs-right,.mec-add-event-tabs-right,.mec-create-shortcode-tabs-right{flex:6}a.mec-add-booking-tabs-link,a.mec-add-event-tabs-link,a.mec-create-shortcode-tabs-link{display:block}.mec-booking-tab-content,.mec-create-shortcode-tab-content,.mec-event-tab-content{display:none;transition:all .3s ease}.mec-booking-tab-content.mec-tab-active,.mec-create-shortcode-tab-content.mec-tab-active,.mec-event-tab-content.mec-tab-active{display:block}.mec-add-booking-tabs-wrap,.mec-add-event-tabs-wrap{background:#fff;margin:-6px -12px -12px}.mec-create-shortcode-tabs-wrap{margin:-30px -22px -42px}.mec-add-booking-tabs-left,.mec-add-event-tabs-left,.mec-create-shortcode-tabs-left{padding:0 0 38px;background:#fff;min-width:210px}.mec-add-booking-tabs-left a,.mec-add-event-tabs-left a,.mec-create-shortcode-tabs-left a{line-height:16px;font-size:13px;font-weight:600;letter-spacing:.3px;color:#6a6f77;text-decoration:none;background:#f7f7f7;padding:13px 20px;border-bottom:1px solid #e3e3e3;outline:0;box-shadow:none;transition:all .2s ease}.mec-add-booking-tabs-left a:hover,.mec-add-event-tabs-left a:hover,.mec-create-shortcode-tabs-left a:hover{color:#008aff;background:#fff}.mec-add-booking-tabs-left a.mec-tab-active,.mec-add-event-tabs-left a.mec-tab-active,.mec-create-shortcode-tabs-left a.mec-tab-active{background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff;margin:0 -6px;border-radius:5px;box-shadow:0 2px 12px -5px #36a2ff;border-bottom-color:transparent;position:relative}.mec-add-booking-tabs-right,.mec-add-event-tabs-right,.mec-create-shortcode-tabs-right{padding:0 30px 40px;border-left:1px solid #e2e2e2}.mec-booking-tab-content.mec-tab-active,.mec-create-shortcode-tab-content.mec-tab-active,.mec-event-tab-content.mec-tab-active{animation:fadeEffect2 .31s}@media (max-width:550px){.mec-add-booking-tabs-left,.mec-add-event-tabs-left,.mec-create-shortcode-tabs-left{min-width:100px}.mec-add-booking-tabs-left a,.mec-add-event-tabs-left a,.mec-create-shortcode-tabs-left a{font-size:11px;padding:12px 8px;line-height:1.2;letter-spacing:0}}@keyframes fadeEffect2{from{opacity:0;transform:translateX(11px)}to{opacity:1;transform:translateX(0)}}.mec-form-row .mec-col-8 label{padding-right:20px}#mec-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]{border:solid 1px #ddd;border-radius:2px;height:40px;line-height:38px;padding-left:10px;box-shadow:0 3px 10px -2px rgba(0,0,0,.05),inset 0 1px 2px rgba(0,0,0,.02)}.mec-calendar-metabox .wn-mec-select.open .list{border-radius:0 0 2px 2px;box-shadow:0 0 0 1px #ddd,0 2px 6px rgba(0,0,0,.07)}.mec-calendar-metabox .mec-custom-nice-select.open ul.list{border-radius:3px;box-shadow:0 2px 6px rgba(0,0,0,.07);margin-left:0!important;transform:translateX(-50%);left:50%}.mec-custom-nice-select ul.list li.option.selected .wn-mec-text:after{border:6px solid #40d9f1;box-shadow:0 3px 16px -3px #40d9f1}.mec-form-row input[type=checkbox]{background-color:#fff;border:1px solid #cacece;box-shadow:0 1px 2px rgba(0,0,0,.05);padding:9px;border-radius:3px;min-width:24px;min-height:24px;display:inline-block;transition:all .18s ease;outline:0;margin:2px 4px 4px 0}.mec-form-row input[type=checkbox]:focus{outline:0}.mec-form-row input[type=checkbox]:hover{border-color:#62b6ff}.mec-form-row input[type=checkbox]:checked{box-shadow:0 1px 6px -2px #008aff;border-color:#008aff;background:#008aff;border-radius:2px;position:relative}.mec-form-row.mec-switcher input[type=checkbox]{position:absolute}.mec-form-row input[type=checkbox]:checked:before{content:"";font:normal;position:absolute;top:12px;left:8px;border-right:2px solid transparent;border-bottom:2px solid transparent;transform:rotate(45deg);transform-origin:0 100%;color:#fff;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards}@keyframes checkbox-check{0%{width:0;height:0;border-color:#fff;transform:translate3d(0,0,0) rotate(45deg)}33%{width:5px;height:0;transform:translate3d(0,0,0) rotate(45deg)}100%{width:5px;height:11px;border-color:#fff;transform:translate3d(0,-11px,0) rotate(45deg)}}.mec-form-row input+span.mec-tooltip,.mec-form-row select+span.mec-tooltip{bottom:10px}.mec-form-row label+span.mec-tooltip{bottom:8px}.mec-form-row textarea+span.mec-tooltip{bottom:auto;vertical-align:top;top:12px}.mec-form-row span+span.mec-tooltip{bottom:0;vertical-align:middle}.mec-form-row .mec-col-8 input[type=text],.mec-form-row .mec-col-8 select,.mec-form-row .mec-col-8 span.mec-archive-skins{vertical-align:top}.mec-form-row .mec-col-8 span.mec-archive-skins input[type=text]{max-width:225px}.mec-form-row input:disabled{opacity:.6;background:#f6f6f6}.wns-be-group-tab h5{font-size:16px;font-weight:600;color:#444;margin:45px 0 25px}.mec-form-row textarea{height:auto;margin-bottom:0;min-height:60px}.mec-form-row .wp-picker-container input[type=text].wp-color-picker{height:25px;vertical-align:top;margin:0}.mec-form-row .wp-picker-container label{margin:0}.mec-image-select-wrap li span:hover{border-color:#fff;box-shadow:0 1px 8px rgba(0,0,0,.12)}.mec-message-categories li.mec-acc-label:after{content:"\e604";font-family:simple-line-icons;speak:none;font-style:normal;font-weight:400;display:block;font-size:13px;color:#999;position:absolute;right:27px;top:26px}.mec-message-categories>li.mec-acc-label[data-status=open]:after{content:"\e607";color:#008aff}.mec-message-categories>li.mec-acc-label[data-status=open]{color:#008aff}.mec-message-categories>li.mec-acc-label:last-of-type{border-bottom:none}.mec-message-categories>li.mec-acc-label[data-status=open]{border-bottom:1px solid #e6e6e6}.mec-form-row ul.mec-message-categories{box-shadow:0 2px 16px rgba(0,0,0,.03);border-radius:5px;overflow:hidden;margin-top:30px;background:#f5f5f5;border:2px solid #e6e6e6;max-width:700px}.mec-form-row ul.mec-message-categories li ul{padding:10px 40px 40px;margin:25px -30px -25px;background:#f5f5f5;box-shadow:inset 0 4px 7px rgba(0,0,0,.04);cursor:default}.mec-form-row ul.mec-message-categories ul label{margin:25px 8px 7px;font-weight:600!important;font-size:13px;color:#888;cursor:default}.wns-be-sidebar li:hover a i,.wns-be-sidebar>li:hover a{color:#008aff}.mec-form-row.mec-skin-list-date-format-container span.mec-tooltip{top:2px}.mec-calendar-metabox .mec-form-row input[type=checkbox],.mec-meta-box-fields .mec-form-row input[type=checkbox]{margin-right:6px}#mec_meta_box_downloadable_file_options #mec_downloadable_file_remove_image_button,.mec-meta-box-fields .mec-form-row .button:not(.wp-color-result){height:37px;margin-top:1px;box-shadow:inset 0 2px 4px #fff,inset 0 -2px 4px rgba(0,0,0,.05),0 2px 2px rgba(0,0,0,.06)}#mec_meta_box_downloadable_file_options #mec_downloadable_file_remove_image_button{margin-top:12px}#mec-read-more .mec-form-row span.mec-tooltip{top:2px;left:-4px}#mec-search-settings{border-radius:21px;min-height:32px;box-shadow:inset 0 1px 2px rgba(0,0,0,.06);padding:9px 10px 12px 34px;margin-right:10px;color:#7c838a;font-size:13px;width:260px;background:#f5f5f5;border:none;z-index:1;transition:all .18s ease;outline:0;line-height:normal}#mec-search-settings:focus{background:#fff;box-shadow:0 1px 6px rgba(0,0,0,.07),0 0 0 1px #e6e6e6;width:270px}.mec-search-settings-wrap{display:inline-block;position:relative}.mec-search-settings-wrap i{position:absolute;left:14px;top:14px;font-size:13px;color:#7e8c98;display:block;z-index:2}#mec-search-settings::-webkit-input-placeholder{color:#7c838a}#mec-search-settings::-moz-placeholder{color:#7c838a}#mec-search-settings:-ms-input-placeholder{color:#7c838a}#mec-search-settings:-moz-placeholder{color:#7c838a}.ui-datepicker.ui-widget{border:1px solid #e8e8e8;box-shadow:0 1px 9px rgba(0,0,0,.12)}.ui-datepicker.ui-widget select{font-weight:600;font-size:12px;border-radius:2px;padding:2px 10px;margin:1px 3px 5px}.ui-datepicker.ui-widget table{border-spacing:2px}.ui-datepicker.ui-widget td,.ui-datepicker.ui-widget tr{padding:0;background:0 0!important}.ui-datepicker.ui-widget td a{color:#777;font-weight:600;width:30px;height:30px;line-height:30px;display:inline-block;border-radius:33px;padding:0;background:#fff;transition:all .2s ease}.ui-datepicker.ui-widget td a.ui-state-active,.ui-datepicker.ui-widget td a:hover{background:#40d9f1;color:#fff}.ui-datepicker.ui-widget .ui-datepicker-next,.ui-datepicker.ui-widget .ui-datepicker-prev{color:#40d9f1;width:30px;height:30px;line-height:30px;display:inline-block;text-align:center;border-radius:33px;background:#ecfcff;transition:all .2s ease}.ui-datepicker.ui-widget .ui-datepicker-next:hover,.ui-datepicker.ui-widget .ui-datepicker-prev:hover{background:#fff;box-shadow:0 0 7px -3px rgba(0,0,0,.4)}#mec-wrap{width:92%;margin:20px auto;max-width:1384px}#mec-wrap h2.nav-tab-wrapper{margin-bottom:40px;padding:0;border:none;margin-top:35px;clear:both;background:#fff;box-shadow:0 3px 12px -4px rgba(0,0,0,.13)}#mec-wrap .nav-tab-wrapper .nav-tab{position:relative;padding:28px 22px;border:none;margin:0;background:#fff;font-size:13px;color:#444;outline:0;box-shadow:none}#mec-wrap .nav-tab-wrapper .nav-tab:hover{color:#008aff}#mec-wrap .nav-tab-wrapper .nav-tab:after{content:"";display:inline-block;width:1px;height:30%;position:absolute;right:0;top:35%;background:#e9e9e9}#mec-wrap .nav-tab-wrapper .nav-tab-active,#mec-wrap .nav-tab-wrapper .nav-tab-active:focus,#mec-wrap .nav-tab-wrapper .nav-tab-active:focus:active,#mec-wrap .nav-tab-wrapper .nav-tab-active:hover{background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff;outline:0;box-shadow:0 5px 25px -7px #008aff;margin-left:-1px;z-index:2}#mec-wrap .nav-tab-wrapper .nav-tab-active:after{content:'';position:absolute;display:block;background:0 0;top:auto;height:auto;bottom:-20px;left:50%;margin-left:-10px;width:0;border-width:10px;border-style:solid;border-color:#008aff transparent transparent}#mec-wrap .mec-container{padding:25px 40px 40px;box-shadow:0 3px 10px -4px rgba(0,0,0,.1)}#wpwrap .mec-button-primary{color:#fff;font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s}#wpwrap .mec-button-primary:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 15px -7px rgba(0,0,0,.5);cursor:pointer}.wn-p-t-right{min-width:300px;max-width:400px;display:inline-block;top:-8px;left:50%;margin-top:0;transform:translate(-50%,-100%);padding:0;background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.5;position:absolute;z-index:99999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s;padding:20px;border-radius:8px}.wn-p-t-right i{position:absolute!important;top:100%;right:50%;margin-top:-6px!important;margin-right:-6px!important;width:12px;height:24px;overflow:hidden;transform:rotate(-90deg)}.wn-p-t-right i:after{content:'';position:absolute;width:12px;height:12px;left:0;top:50%;transform:translate(50%,-50%) rotate(-45deg);background-color:#535a61;box-shadow:0 8px 9px -4px #535a61}.wn-p-t-right .wn-p-t-text-content h5{color:#fff;font-size:17px;font-weight:600;margin:-20px;padding:15px 0;text-align:center;margin-bottom:10px;background:#3a3f44;border-bottom:1px solid #32363a;border-radius:6px 6px 0 0}.mec-addon-box-footer a:hover .wn-p-t-right{visibility:visible;opacity:1}#mec_organizer_user+.select2-container,#mec_speaker_user+.select2-container{min-width:224px!important}.mec-add-event-tabs-wrap .select2-container,.mec-create-shortcode-tab-content .select2-container{min-height:38px;height:auto;box-sizing:border-box;margin-bottom:8px;padding:0 6px;border-radius:2px;border:1px solid #ddd;box-shadow:inset 0 1px 6px rgba(0,0,0,.07);background-color:#fff;color:#32373c;outline:0;transition:50ms border-color ease-in-out;min-width:200px;font-size:14px}.mec-add-event-tabs-wrap .select2-selection,.mec-create-shortcode-tab-content .select2-selection{border:none;background:0 0;padding-top:3px;width:100%;height:100%}.mec-add-event-tabs-wrap .select2-container--default.select2-container--focus .select2-selection,.mec-create-shortcode-tab-content .select2-container--default.select2-container--focus .select2-selection{border:none!important;outline:0}.mec-add-event-tabs-wrap .select2-container--default .select2-selection--single .select2-selection__arrow,.mec-create-shortcode-tab-content .select2-container--default .select2-selection--single .select2-selection__arrow{top:5px;right:4px}.fs-webform-container div .fserv-container{width:100%!important;max-width:none!important;min-height:208px!important;box-shadow:0 1px 16px rgba(0,0,0,.034)!important;border-radius:2px!important;padding:0!important;margin-bottom:0!important;margin-top:30px!important}.fserv-container .fserv-form-name{font-weight:600!important;position:relative!important;font-size:20px!important;padding:20px!important;border-bottom:1px solid #ededed!important;text-align:left!important;margin:0!important}.fserv-form-description{padding:10px 30px!important;margin:1em 0 0!important;line-height:1.5!important;font-size:16px!important}.fserv-container form{padding:0!important;padding-left:28px!important}.fserv-container .fserv-label{display:none!important}.fserv-field{display:inline-block;width:41%!important;padding:0!important;margin:0!important;margin-right:25px!important}.fserv-field+div:not(.fserv-field){margin:0!important;border:none!important;text-align:left!important;padding-left:4px!important;margin-top:0!important;padding-top:0!important;display:inline-block;margin-right:10px!important}.fserv-container .powered-by{display:none!important}#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-userinfo{width:calc(100% - 65px)}.mec-steps-panel{padding:35px;position:relative;display:flex;flex-direction:column;justify-content:space-between}.mec-steps-header-userinfo span{display:inline-block;vertical-align:middle}.mec-steps-header-userinfo span img{height:40px;border-radius:50px;margin-right:8px;vertical-align:middle}.mec-steps-header-userinfo span.mec-steps-header-name{font-size:14px;color:#778182}span.mec-steps-header-add-text{color:#839294;font-size:12px;margin-left:5px}.mec-steps-header-settings a{height:100%;display:block;padding-top:11px;text-decoration:none;font-size:12px;color:#707070}.mec-steps-header-settings a i{color:#1aaffb;font-size:16px;vertical-align:text-top;margin-right:5px}.mec-next-previous-buttons{clear:both}.mec-next-previous-buttons button.mec-button-next{float:right;background:#008aff;border:none;color:#fff;cursor:pointer;width:123px;text-align:left;padding:8px 18px 9px;border-radius:3px;font-size:14px;box-shadow:0 5px 10px 0 rgba(0,138,255,.3);transition:all .3s ease;outline:0}.mec-next-previous-buttons button:hover{background:#000;box-shadow:0 5px 10px 0 rgba(0,0,0,.3)}.mec-next-previous-buttons button.mec-button-next img{position:absolute;top:16px;right:18px}.mec-next-previous-buttons button{position:relative}.mec-next-previous-buttons button.mec-button-prev{background:#fff;border:none;color:#000;cursor:pointer;width:123px;text-align:right;padding:8px 15px 9px;border-radius:3px;font-size:14px;box-shadow:0 5px 10px 0 rgba(11,121,125,.01);transition:all .3s ease;outline:0}.mec-next-previous-buttons button.mec-button-prev img{position:absolute;top:16px;left:18px}.mec-next-previous-buttons button.mec-button-prev:hover{background:#000;box-shadow:0 5px 10px 0 rgba(0,0,0,.3);color:#fff}.mec-next-previous-buttons button.mec-button-new{background:#008aff;float:right;border:none;color:#fff;cursor:pointer;width:154px;text-align:left;padding:8px 18px 9px;border-radius:3px;font-size:14px;box-shadow:0 5px 10px 0 rgba(0,138,255,.3);transition:all .3s ease;outline:0}.mec-next-previous-buttons button.mec-button-new:hover{background:#000;box-shadow:0 5px 10px 0 rgba(0,0,0,.3)}.mec-next-previous-buttons button.mec-button-new img{vertical-align:sub;margin-left:-3px;margin-right:8px}div#mec_popup_shortcode_form{height:calc(100% - 37px)}.mec-steps-content-container{display:flex;flex-direction:column;height:100%}.mec-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}div#mec_meta_box_date_form .mec-form-row{margin-bottom:9px}.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_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 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}.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}.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}@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_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 .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:#282828;border-color:#353535;box-shadow:0 1px 6px -2px #000}.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 ul#adminmenu a.wp-has-current-submenu:after,.mec-admin-dark-mode 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_bfixed_form_fields button,.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_reg_form_field_types button,.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 .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-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_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-addon-box-version,.mec-admin-dark-mode .mec-calendar-metabox .wn-mec-select,.mec-admin-dark-mode .mec-form-row input[type=number],.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_event_form_fields button,.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 #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-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 .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=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-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{background:#282828;background:linear-gradient(95deg,#282828 0,#222 50%,#282828 100%);color:#d2d2d2}.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-container .wns-be-group-tab h4,.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;background:#000}.mec-admin-dark-mode .wns-be-sidebar .wns-be-group-menu li a:hover{color:#008aff}.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 .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:#000;background:linear-gradient(95deg,#1f1f1f 0,#222 50%,#000 100%)}.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 .attachments-browser .media-toolbar,.mec-admin-dark-mode .media-frame-content,.mec-admin-dark-mode .media-modal-content,.mec-admin-dark-mode .media-modal-content h1,.mec-admin-dark-mode .media-modal-content h2,.mec-admin-dark-mode .media-modal-content p,.mec-admin-dark-mode .media-sidebar{background:#000;color:#d2d2d2!important;border-color:#282828}.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.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.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-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:#0000!important}.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:#000!important;border-color:#333!important;color:#fff!important}.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 .media-router .media-menu-item:focus{box-shadow:unset}.mec-admin-dark-mode .media-router .media-menu-item{background:#282828;color:#ffff}.mec-admin-dark-mode .media-router .media-menu-item:hover{color:#d2d2d2}.mec-admin-dark-mode .media-router .active,.mec-admin-dark-mode .media-router .media-menu-item.active:last-child{background:#000;color:#666;border-color:#282828}.mec-admin-dark-mode .attachment-info,.mec-admin-dark-mode .media-frame-toolbar .media-toolbar{border-color:#282828}.mec-admin-dark-mode .wp-core-ui .attachment-preview,.mec-admin-dark-mode.post-type-mec-events .button:hover{background:#000!important}.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{padding:4px 13px 4px 13px;margin-right:4px}#mec_widget_total_bookings .w-box.total-bookings ul li:last-child{margin-right:0}#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:111px}.event-status-schema{background:#f7f7f7;padding:20px;margin-bottom:15px;border-radius:3px}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}@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-add-booking-tabs-right,.mec-add-event-tabs-right,.mec-create-shortcode-tabs-right{padding-left:14px;padding-right:14px}#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}
1
+ #mec_location_thumbnail_img img,#mec_organizer_thumbnail_img img,#mec_thumbnail_img img{max-width:250px}.taxonomy-mec_label .column-id,.taxonomy-mec_location .column-id,.taxonomy-mec_organizer .column-id,.taxonomy-mec_speaker .column-id{width:40px}.taxonomy-mec_label .column-primary,.taxonomy-mec_location .column-primary,.taxonomy-mec_organizer .column-primary,.taxonomy-mec_speaker .column-primary{width:250px}.mec-color{margin:10px;width:14px;height:14px;display:inline-block;margin-right:6px;border-radius:20px 20px 20px 20px;vertical-align:middle}.mec-send-email-button{background:#008aff;color:#fff;width:100%;display:block;text-align:center;font-size:20px;padding:10px 0;margin-top:18px;font-weight:700;border-radius:4px;cursor:pointer}.mec-send-email-button:hover{opacity:.9}.mec-event-color-container,.mec-event-title-container{display:inline-block}.mec-available-color-row{margin-top:15px}.mec-available-color-row .mec-color{cursor:pointer}.mec-widget-container a{text-decoration:none}.mec-widget-container label{padding-right:15px}.mec-util-hidden{display:none}.button.mec-util-hidden{display:none}.wns-be-container{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Oxygen,Roboto,sans-serif;max-width:100%;background-color:#f6f6f6;border:1px solid #c1cad2;box-shadow:0 1px 1px rgba(0,0,0,.04);margin-top:40px;margin-right:15px;overflow:hidden}.wns-be-sidebar{width:260px;float:left;position:relative}.wns-be-sidebar ul.wns-be-group-menu,.wns-be-sidebar ul.wns-be-group-menu li{list-style:none;margin:0}.wns-be-sidebar .wns-be-group-menu li a{display:block;position:relative;outline:0;padding:13px 4px 13px 20px;background:#e0e0e0;background:0 0;border:none;color:#3f454a;font-size:13px;font-weight:600;text-decoration:none;-webkit-transition:none;transition:none}.wns-be-sidebar .wns-be-group-menu li a:hover{background:#fff;color:#008aff;opacity:1}.wns-be-sidebar .wns-be-group-menu>li.active>a,.wns-be-sidebar .wns-be-group-menu>li.active>a:hover{background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff}.wns-be-sidebar .wns-be-group-menu>li.active>a{box-shadow:0 2px 12px -5px #008aff}.wns-be-sidebar .wns-be-group-menu li a:first-child{border-top:none}.wns-be-main{background:#fff;margin-left:260px;border-left:1px solid #dedede;padding-bottom:84px;box-shadow:inset 0 1px 0 #fff;min-height:1120px;position:relative}.wns-be-main .wns-saved-settings{margin:0;border-bottom:1px solid #dedede;background:#dff0d8;color:#468847;padding:8px 35px 8px 14px;text-shadow:0 1px 0 rgba(255,255,255,.6)}.wns-be-container .dpr-btn{display:inline-block;font-size:13px;padding:0 16px 1px;height:36px;margin-right:3px;line-height:35px;color:#555;border:1px solid #ccc;background:#f7f7f7;text-decoration:none;transition:.24s all ease;-webkit-transition:.24s all ease}.wns-be-container .dpr-btn:hover{background:#fcfcfc;border-color:#999;color:#303030}.wns-be-container .dpr-btn.dpr-save-btn{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}.wns-be-container .dpr-btn.dpr-save-btn: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}.wns-be-container .wns-be-group-tab h2,.wns-be-container .wns-be-group-tab h4{color:#000;margin-bottom:25px;padding:15px;background:#f5f5f5;font-size:21px;line-height:23px;letter-spacing:.4px;font-weight:700;position:relative}.wns-be-container .wns-be-group-tab h2{margin-top:10px}.wns-be-container .wns-be-group-tab h2:before,.wns-be-container .wns-be-group-tab h4:before{content:"";width:4px;height:16px;margin-right:5px;background-color:#008aff;display:block;position:absolute;left:0;top:18px}.wns-be-container .wns-be-group-tab h4:before{width:2px;top:16px}.wns-be-container .wns-be-group-tab h4{font-size:16px;font-weight:600;background:#f8f8f8;border:none;padding:12px 15px 12px 15px}.wns-be-container .wns-be-group-tab p{font-size:13px;color:#888}.wns-be-sidebar .wns-be-group-tab-link-a:hover{cursor:pointer}.wns-be-sidebar .wns-be-group-tab-link-a span{display:block}.wns-be-sidebar .wns-be-group-tab-link-a span.wns-be-group-menu-title{padding-left:24px}.wns-be-sidebar li.active ul.subsection{padding-top:8px;padding-bottom:12px;background:#fff;border-bottom:1px solid #dedede;margin:0}.wns-be-sidebar li .subsection a{background:#fff;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 46px}.wns-be-sidebar li .subsection a:hover{background:#f6f6f6;color:#222}.wns-be-sidebar .wns-be-group-menu li .subsection li.active a{color:#008aff}.wns-be-sidebar .wns-be-group-menu li .subsection li.active a:after,.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:#fff;right:-1px;top:10px}.wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{border-right-color:#c5c5c5;right:0}.wns-be-sidebar li a i{color:#a0abb5;vertical-align:middle;font-size:18px;position:absolute;margin-top:0;margin-left:-4px}.wns-be-sidebar .wns-be-group-menu li.active>a i{color:#fff}.wns-be-sidebar .has-sub span.extra-icon{display:inline-block;float:right;padding:4px 7px 4px;margin-left:4px;margin-right:10px;font-family:sans-serif;font-size:9px;font-weight:600;line-height:9px;border-radius:10px;-moz-border-radius:10px;-webkit-border-radius:10px;border:0 solid transparent}.wns-be-sidebar .has-sub span.extra-icon i{margin-left:-3px;margin-top:2px;color:#bac6d0;font-size:10px}.wns-be-sidebar .wns-be-group-tab-link-a span.extra-icon i{right:10px;font-size:10px}.wns-be-sidebar .wns-be-group-menu li.active>a span.extra-icon i{margin-top:1px}.wns-be-container #wns-be-footer{border-top:1px solid #dedede;z-index:999;padding:25px 20px 20px;background:#fafafa!important;height:44px;text-align:right}.wns-be-container #wns-be-content{padding:5px 40px 40px}.wns-be-container #wns-be-infobar{background:#fff;border-bottom:1px solid #dedede;padding:20px;text-align:right;box-shadow:inset 0 1px 0 #fcfcfc;height:79px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;position:relative}.wns-be-container #wns-be-infobar:before{content:"";width:261px;height:78px;display:block;position:absolute;left:0;top:0;background:#fff url(../img/webnus-logo.png) no-repeat center;border-bottom:1px solid #dedede;background-size:220px;z-index:997}.wns-be-container .notice-yellow{margin:0;border-bottom:1px solid #dedede;background-color:#fcf8e3;color:#c09853;padding:8px 35px 8px 14px;text-shadow:0 1px 0 rgba(255,255,255,.5)}.wns-be-container .notice-red,.wns-be-container .wns-be-field-errors{margin:0;border-bottom:1px solid #dedede;background-color:#f2dede;color:#b94a48;padding:8px 35px 8px 14px;text-shadow:0 1px 0 rgba(255,255,255,.5)}@media(max-width:480px){a.dpr-btn.dpr-save-btn{display:block!important;text-align:center!important;margin-top:20px!important}.mec-search-settings-wrap{margin-top:73px!important;text-align:center!important;display:block!important}#mec-search-settings{margin:0!important;width:100%!important}.wns-be-container #wns-be-infobar{height:auto!important}}body.post-type-mec-events th.column-primary{width:35%}body.post-type-mec-events th.column-start_date{width:100px}body.post-type-mec-events th.column-end_date{width:100px}body.post-type-mec-events th.column-repeat{width:75px}body.post-type-mec-events th.column-author{width:150px}body.post-type-mec-books th.column-primary{width:20%}body.post-type-mec-books th.column-event{width:170px}body.post-type-mec-books th.column-bdate{width:120px}body.post-type-mec-books th.column-confirmation{width:120px}body.post-type-mec-books th.column-verification{width:120px}body.post-type-mec-books th.column-author{width:150px}.mec-meta-box-labels-container .mec-form-row{height:100px;overflow:auto}.mec-tooltip{display:inline;position:relative;margin-right:10px;cursor:help;bottom:5px;left:3px}.mec-tooltip:last-child{margin-right:0}.mec-tooltip:hover:after{background:#313130;border-radius:5px;bottom:24px;color:#fff;content:attr(title);left:-75px;padding:10px;position:absolute;z-index:98;width:240px}.mec-tooltip:hover:before{border:solid;border-color:#313130 transparent;border-width:6px 6px 0;bottom:18px;content:"";left:30%;position:absolute;z-index:99}.mec-tooltip .dashicons-before:before{font-size:24px;color:#40d9f1;line-height:37px}.mec-tooltip a:focus{box-shadow:none}.mec-form-row .bootstrap_unvalid{display:block;border:2px solid red;position:relative;display:inline-block;border-bottom:1px dotted #000}.mec-tooltiptext{visibility:hidden;width:120px;background-color:red;color:#fff;text-align:center;border-radius:6px;padding:5px 0;position:absolute;z-index:1}.ui-datepicker{background-color:#fff;border:1px solid #66afe9;border-radius:4px;box-shadow:0 0 8px rgba(102,175,233,.6);display:none;margin-top:4px;padding:10px;width:240px}.ui-datepicker a,.ui-datepicker a:hover{text-decoration:none;cursor:pointer}.ui-datepicker a:hover,.ui-datepicker td:hover a{color:#2c6396;-webkit-transition:color .1s ease-in-out;-moz-transition:color .1s ease-in-out;-o-transition:color .1s ease-in-out;transition:color .1s ease-in-out}.ui-datepicker .ui-datepicker-header{margin-bottom:4px;text-align:center}.ui-datepicker .ui-datepicker-title{font-weight:700}.ui-datepicker .ui-datepicker-next,.ui-datepicker .ui-datepicker-prev{cursor:default;font-family:dashicons;-webkit-font-smoothing:antialiased;font-style:normal;font-weight:400;height:20px;line-height:1.4;margin-top:2px;width:20px}.ui-datepicker .ui-datepicker-prev{float:left;text-align:left}.ui-datepicker .ui-datepicker-next{float:right;text-align:center}.ui-datepicker .ui-datepicker-prev:before{content:"\f341"}.ui-datepicker .ui-datepicker-next:before{content:"\f345"}.ui-datepicker .ui-icon{display:none}.ui-datepicker .ui-datepicker-calendar{table-layout:fixed;width:100%}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker .ui-datepicker-calendar th{text-align:center;padding:4px 0}.ui-datepicker .ui-datepicker-calendar td{border-radius:4px;-webkit-transition:background-color .1s ease-in-out,color .1s ease-in-out;-moz-transition:background-color .1s ease-in-out,color .1s ease-in-out;-o-transition:background-color .1s ease-in-out,color .1s ease-in-out;transition:background-color .1s ease-in-out,color .1s ease-in-out}.ui-datepicker .ui-datepicker-calendar td:hover{background-color:#eee;cursor:pointer}.ui-datepicker .ui-datepicker-calendar td a{text-decoration:none}.ui-datepicker .ui-datepicker-current-day{background-color:#4289cc}.ui-datepicker .ui-datepicker-current-day a{color:#fff}.ui-datepicker .ui-datepicker-calendar .ui-datepicker-unselectable:hover{background-color:#fff;cursor:default}.mec-col-1,.mec-col-10,.mec-col-11,.mec-col-12,.mec-col-2,.mec-col-3,.mec-col-4,.mec-col-5,.mec-col-6,.mec-col-7,.mec-col-8,.mec-col-9{position:relative;min-height:1px;padding:0;margin:0 1% 0 0}@media (min-width:783px){.mec-col-1,.mec-col-10,.mec-col-11,.mec-col-12,.mec-col-2,.mec-col-3,.mec-col-4,.mec-col-5,.mec-col-6,.mec-col-7,.mec-col-8,.mec-col-9{float:left}.mec-col-12{width:99%}.mec-col-11{width:90.66666667%}.mec-col-10{width:82.33333333%}.mec-col-9{width:74%}.mec-col-8{width:65.66666667%}.mec-col-7{width:57.33333333%}.mec-col-6{width:49%}.mec-col-5{width:40.66666667%}.mec-col-4{width:32.33333333%}.mec-col-3{width:24%}.mec-col-2{width:15.66666667%}.mec-col-1{width:7.33333333%}}#mec_bfixed_form_fields,#mec_event_form_fields,#mec_reg_form_fields{background:#eee;padding:20px}#mec_bfixed_form_fields li,#mec_event_form_fields li,#mec_reg_form_fields li{margin:4px;border-radius:2px;padding:20px 34px 24px;background:#fff;position:relative;transition:all .3s ease}#mec_bfixed_form_fields li ul,#mec_event_form_fields li ul,#mec_reg_form_fields li ul{padding-top:15px;padding-bottom:15px;margin:1px}#mec_bfixed_form_fields li ul li,#mec_event_form_fields li ul li,#mec_reg_form_fields li ul li{padding:7px 30px 7px 46px}#mec_bfixed_form_fields span.mec_event_field_type,#mec_event_form_fields span.mec_event_field_type,#mec_reg_form_fields span.mec_reg_field_type{font-size:11px;font-weight:600;color:#8a8a8a;text-transform:uppercase;letter-spacing:2px}#mec_bfixed_form_fields span.mec_bfixed_field_option_sort,#mec_bfixed_form_fields span.mec_bfixed_field_remove,#mec_bfixed_form_fields span.mec_bfixed_field_sort,#mec_event_form_fields span.mec_event_field_option_sort,#mec_event_form_fields span.mec_event_field_remove,#mec_event_form_fields span.mec_event_field_sort,#mec_reg_form_fields span.mec_reg_field_option_sort,#mec_reg_form_fields span.mec_reg_field_remove,#mec_reg_form_fields span.mec_reg_field_sort{font-size:0;color:#fff}#mec_bfixed_form_fields span.mec_bfixed_field_remove,#mec_event_form_fields span.mec_event_field_remove,#mec_reg_form_fields span.mec_reg_field_remove{position:absolute;right:0;top:0}#mec_bfixed_form_fields span.mec_bfixed_field_option_sort:before,#mec_bfixed_form_fields span.mec_bfixed_field_remove:before,#mec_bfixed_form_fields span.mec_bfixed_field_sort:before,#mec_event_form_fields span.mec_event_field_option_sort:before,#mec_event_form_fields span.mec_event_field_remove:before,#mec_event_form_fields span.mec_event_field_sort:before,#mec_reg_form_fields span.mec_reg_field_option_sort:before,#mec_reg_form_fields span.mec_reg_field_remove:before,#mec_reg_form_fields span.mec_reg_field_sort:before{position:absolute;left:10px;top:20px;width:80px;height:20px;display:block;cursor:move;font-family:simple-line-icons;content:"\e023";font-size:18px;color:#888}#mec_bfixed_form_fields span.mec_bfixed_field_remove:before,#mec_event_form_fields span.mec_event_field_remove:before,#mec_reg_form_fields span.mec_reg_field_remove:before{content:"\e082";width:20px;height:20px;left:auto;right:15px;color:#f96666;cursor:pointer}#mec_bfixed_form_fields span.mec_bfixed_field_option_sort:before,#mec_event_form_fields span.mec_event_field_option_sort:before,#mec_reg_form_fields span.mec_reg_field_option_sort:before{font-size:13px;left:2px;top:23px;width:14px;height:14px}#mec_bfixed_form_fields li ul li span.mec_bfixed_field_remove,#mec_event_form_fields li ul li span.mec_event_field_remove,#mec_reg_form_fields li ul li span.mec_reg_field_remove{right:auto;left:60px;top:2px}#mec_bfixed_form_fields p.mec_bfixed_field_options,#mec_event_form_fields p.mec_event_field_options,#mec_reg_form_fields p.mec_reg_field_options{margin:6px 0 8px}#mec_bfixed_form_fields input[type=number],#mec_bfixed_form_fields input[type=text],#mec_bfixed_form_fields select,#mec_bfixed_form_fields textarea,#mec_event_form_fields input[type=number],#mec_event_form_fields input[type=text],#mec_event_form_fields select,#mec_event_form_fields textarea,#mec_reg_form_fields input[type=number],#mec_reg_form_fields input[type=text],#mec_reg_form_fields select,#mec_reg_form_fields textarea{min-width:260px;min-height:34px;margin-bottom:7px;margin-top:7px}#mec_bfixed_form_fields textarea,#mec_event_form_fields textarea,#mec_reg_form_fields textarea{min-height:66px}#mec_bfixed_form_field_types button,#mec_bfixed_form_fields button,#mec_event_form_field_types button,#mec_event_form_fields button,#mec_reg_form_field_types button,#mec_reg_form_fields button{position:relative;outline:0;background:#fff;border:1px solid #e2e2e2;border-radius:50px;padding:11px 21px 11px 31px;line-height:1;font-size:11px;font-weight:600;color:#444;letter-spacing:2px;height:auto;cursor:pointer;margin-top:5px;text-transform:uppercase;box-shadow:0 0 3px rgba(0,0,0,.03)}#mec_bfixed_form_field_types button:hover,#mec_bfixed_form_fields button:hover,#mec_event_form_field_types button:hover,#mec_event_form_fields button:hover,#mec_reg_form_field_types button:hover,#mec_reg_form_fields button:hover{border-color:#008aff;box-shadow:0 0 7px rgba(0,0,0,.1)}#mec_bfixed_form_field_types button:before,#mec_bfixed_form_fields button:before,#mec_event_form_field_types button:before,#mec_event_form_fields button:before,#mec_reg_form_field_types button:before,#mec_reg_form_fields button:before{position:absolute;left:12px;color:#008aff;content:"\e095";font-family:simple-line-icons;font-size:13px;display:inline-block}#mec_bfixed_form_field_types button.red:hover,#mec_bfixed_form_fields button.red:hover,#mec_event_form_field_types button.red:hover,#mec_event_form_fields button.red:hover,#mec_reg_form_field_types button.red:hover,#mec_reg_form_fields button.red:hover{border-color:red;box-shadow:0 0 7px rgba(0,0,0,.1)}#mec_bfixed_form_field_types button.red:before,#mec_bfixed_form_fields button.red:before,#mec_event_form_field_types button.red:before,#mec_event_form_fields button.red:before,#mec_reg_form_field_types button.red:before,#mec_reg_form_fields button.red:before{position:absolute;left:12px;color:red;content:"\e095";font-family:simple-line-icons;font-size:13px;display:inline-block}#mec_bfixed_form_fields .mec_bfixed_notification_placeholder,#mec_event_form_fields .mec_event_notification_placeholder{padding:2px;display:block;margin:10px 0 20px}@media (max-width:768px){#mec_bfixed_form_fields input[type=number],#mec_bfixed_form_fields input[type=text],#mec_bfixed_form_fields select,#mec_bfixed_form_fields textarea,#mec_event_form_fields input[type=number],#mec_event_form_fields input[type=text],#mec_event_form_fields select,#mec_event_form_fields textarea,#mec_reg_form_fields input[type=number],#mec_reg_form_fields input[type=text],#mec_reg_form_fields select,#mec_reg_form_fields textarea{min-width:80px;width:100%}}.mec-form-row{margin:0 auto 16px}.mec-options-fields{padding-top:25px;overflow:hidden;animation:fadeEffect .31s}#mec_booking_form .mec-options-fields,#mec_modules_form .mec-options-fields,#mec_notifications_form .mec-options-fields,#mec_settings_form .mec-options-fields,#mec_single_form .mec-options-fields{display:none}.mec-options-fields.active{display:block!important}@keyframes fadeEffect{from{opacity:0;margin-left:12px}to{opacity:1;margin-left:0}}.mec-form-row:after,.mec-form-row:before{content:" ";display:table}.mec-form-row:after{clear:both}.mec-form-row input[type=number],.mec-form-row input[type=text],.mec-form-row input[type=url],.mec-form-row select,.mec-form-row textarea{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)}.mec-form-row input[type=radio]{margin:5px 6px 0 0}.mec-form-row select{margin-top:1px}.mec-form-row select{min-width:65px}.ui-datepicker select{min-width:60px}#mec_styles_CSS{max-width:100%}.mec-book-status-form select{display:block;width:99%;margin-top:10px;margin-bottom:10px}.mec-form-row label{margin:10px 0}#mec-event-data .mec-form-row label{margin:10px 0;display:block}.mec-form-row input[type=checkbox]{background-color:#fafafa;border:1px solid #cacece;box-shadow:0 1px 2px rgba(0,0,0,.05),inset 0 -15px 10px -12px rgba(0,0,0,.05);padding:9px;border-radius:3px;min-width:20px;min-height:20px;display:inline-block}.mec-form-row input[type=checkbox]:checked{box-shadow:0 3px 11px -4px #008aff;border-color:#008aff;background:#fff}.mec-form-row input[type=checkbox]:checked:before{color:#008aff;width:20px;font:400 24px/1 dashicons}.mec-form-row .mec-col-4 input[type=number],.mec-form-row .mec-col-4 input[type=text],.mec-form-row .mec-col-4 select,.mec-form-row .mec-col-4 textarea{width:75%}.mec-form-row .description{display:inline-block;border-left:1px dashed #ccc;margin-left:12px;line-height:32px;padding-left:12px;margin-top:5px;color:#555}.mec-form-row .description code{font-style:normal}.mec-form-row .time-dv{font-size:14px;font-weight:700}.mec-meta-box-fields{margin:30px 10px}.mec-meta-box-fields>.mec-meta-box-fields{margin-left:0}.mec-meta-box-fields .mec-title{margin:5px 0}.mec-meta-box-fields h4.mec-title{margin:40px 0 16px}.mec-meta-box-fields .mec-dashicons{font-size:20px;line-height:22px;color:#008aff}.mec-form-row .mec-box,.mec-meta-box-fields .mec-box{background:#f7f7f7;padding:10px;margin:10px 0;border-radius:2px;border:1px solid #e6e6e6}.mec-form-row .mec-box{max-width:960px}.mec-form-row .mec-box .button,.mec-meta-box-fields .mec-box .button{float:right}#mec_gateways_form .mec-form-row:first-child,#mec_notifications_form_container .mec-form-row:nth-child(2){overflow:hidden}#mec_gateways_form .mec-tooltip{float:right}.mec-container{background:#fff;padding:15px}.nav-tab-active{background:#fff;border-bottom:1px solid #fff}#mec_social_networks .mec-form-row{margin-bottom:0}#mec_gateways_form h4,.mec-meta-box-fields h4,.mec-options-fields h4,h4.mec-form-subtitle{text-transform:capitalize;border-bottom:1px solid #e5e5e5;padding-bottom:6px;margin:40px 0 16px;font-size:15px;font-weight:600}#mec_gateways_form h4{margin-bottom:0}#mec_styles_form #mec_styles_CSS{height:200px;margin-bottom:5px;font-family:Consolas,Monaco,monospace;font-size:13px;width:97%;background:#f9f9f9;outline:0}#mec_calendar_filter .description,#mec_styles_form .description{max-width:500px;display:block;margin:0 0 5px 0;padding:0;border:none}.mec-sed-methods li{display:inline-block;padding:8px 12px;border:1px solid #ddd;margin:0 5px 5px 0;cursor:pointer;border-radius:3px;box-shadow:0 2px 15px -2px rgba(0,0,0,.1)}.mec-sed-methods li:hover{border-color:#008aff}.mec-sed-methods li.active{border-color:#008aff;background-color:#fff;color:#008aff;font-weight:600;cursor:default;box-shadow:0 0 4px rgba(1,138,255,.3) inset}.mec-switcher input+label{display:block;position:relative;cursor:pointer;outline:0;padding:2px;width:38px;height:22px;background-color:#ddd;border-radius:60px}.mec-switcher input:checked+label{background-color:#008aff;box-shadow:0 3px 22px -6px #008aff}.mec-switcher input:checked+label:after{margin-left:16px}#mec_gateways_form input[type=text],#mec_gateways_form select,#mec_gateways_form textarea{width:calc(100% - 30px)}#mec_gateways_form textarea{min-height:65px}#mec_gateways_form li .mec-gateway-options-form,#payment_gateways_option li .mec-gateway-options-form{padding:15px 20px;background-color:#f7f7f7;border-left:6px solid #e3e3e3;margin-bottom:20px}#mec_gateways_form_container .mec-form-row input[type=number],#mec_gateways_form_container .mec-form-row select{width:100%}div#mec_gateways_form_container .mec-required.mec-mandatory{border:1px solid red}#mec_notifications_form label{display:inline-block;min-width:160px}div#booking_notification iframe{height:300px!important}#mec_notifications_form input[type=text],#mec_notifications_form select{min-width:300px}@media (max-width:536px){#mec_notifications_form input[type=text],#mec_notifications_form select{min-width:100%}}#mec_notifications_form .wp-editor-container{margin-bottom:45px}#mec_notifications_form ul li:last-child .wp-editor-container{margin-bottom:0}#mec_messages_form_container ul li label{display:block;font-weight:700}#mec_messages_form_container ul li input{display:block;width:100%}.mec-message-categories li.mec-acc-label{font-size:15px;font-weight:600;padding:0 30px;cursor:pointer;background-color:#fff;border:none;border-bottom:1px solid #e6e6e6;margin:0;letter-spacing:.5px;position:relative}.mec-message-categories li.mec-acc-label .mec-acc-cat-name{line-height:68px}.mec-message-categories ul{margin:15px 5px}.webnus-icons-list li{width:40px;display:inline-block;list-style:none;padding:0}.webnus-icons-list input{visibility:hidden;margin:0;padding:0;width:1px;height:1px;-moz-opacity:0;-khtml-opacity:0;opacity:0;cursor:pointer}.webnus-icons-list li label{color:#777;display:inline-block!important;float:none!important;width:33px!important;text-align:center;font-size:23px!important;font-weight:400!important;padding:5px 0!important;border:1px solid #eee!important}.mec-webnus-icon{float:left;margin-right:10px}.mec-webnus-icon i{font-size:24px;color:#222}.mec-accordion ul{display:none}.mec-switcher input{position:absolute;margin-left:-9999px;visibility:hidden}.mec-switcher input+label{display:block;position:relative;cursor:pointer;outline:0;padding:2px;width:50px;height:22px;background-color:#ddd;border-radius:60px}.mec-switcher input+label:after,.mec-switcher input+label:before{display:block;position:absolute;top:1px;left:1px;bottom:1px;content:""}.mec-switcher input+label:before{right:1px;background-color:#f1f1f1;border-radius:60px;transition:background .4s}.mec-switcher input+label:after{width:24px;background-color:#fff;border-radius:100%;box-shadow:0 2px 3px rgba(0,0,0,.1);transition:margin .4s}.wns-be-group-tab .mec-switcher input[value="1"]+label,.wns-be-group-tab .mec-switcher input[value="1"]+label:before{background-color:#008aff;background:linear-gradient(95deg,#4dacfd 0,#0d90ff 50%,#008aff 100%);box-shadow:0 3px 11px -7px #008aff}.wns-be-group-tab .mec-switcher input[value="1"]+label:after{margin-left:28px}.mec-switcher input:checked+label{box-shadow:0 3px 11px -7px #008aff}.mec-switcher input:checked+label:before{background-color:#008aff;background:linear-gradient(95deg,#4dacfd 0,#0d90ff 50%,#008aff 100%)}.mec-switcher input:checked+label:after{margin-left:28px}.mec-switcher label{display:block}.mec-sed-methods li{display:inline-block;padding:10px;border:1px solid #ddd;margin:0 5px 5px 0;cursor:pointer}#wpwrap .mec-button-primary{border-bottom:none;letter-spacing:.5px;line-height:18px;height:46px;transition:all .5s ease;color:#fff;padding:12px 25px;display:block;text-align:center;font-size:14px;background:0 0;background-color:#008aff;text-shadow:none;border:0;box-shadow:none;display:inline-block;margin:25px 0 12px;min-width:146px}#wpwrap .mec-button-primary:hover{background-color:#41c9de}#wpwrap .mec-button-primary.loading{background-color:#73c02a}#wpwrap .mec-button-primary:before{content:"\f00c";font-family:fontawesome;margin-right:4px;font-size:16px;display:none}#wpwrap .mec-button-primary.loading:before{display:inline-block}.mec-image-select-wrap{clear:both;overflow:hidden;padding:10px 0;margin:0}.mec-image-select-wrap li{float:left;display:block;margin-right:15px;margin-bottom:15px}.mec-image-select-wrap li input{display:none}.mec-image-select-wrap li span{width:35px;height:35px;display:block;margin:3px;border-radius:2px;border:3px solid transparent;transition:all .2s ease}.mec-image-select-wrap li input:checked+span{border-color:#fff;box-shadow:0 0 14px rgba(0,0,0,.25)}.mec-image-select-wrap li input:checked+span:after{content:"\f00c";font-family:fontawesome;font-size:20px;display:inline-block;color:#fff;padding:8px;max-width:100%;max-height:100%}.m-e-calendar_page_MEC-ix #wpwrap .mec-button-primary.mec-btn-2{margin:0 0 0 12px}.m-e-calendar_page_MEC-ix #wpwrap input[type=file]{padding-top:12px;padding-bottom:12px}.m-e-calendar_page_MEC-ix #wpwrap .mec-form-row select{min-height:46px}.mec-image-select-wrap .mec-colorskin-1{background-color:#40d9f1}.mec-image-select-wrap .mec-colorskin-2{background-color:#0093d0}.mec-image-select-wrap .mec-colorskin-3{background-color:#e53f51}.mec-image-select-wrap .mec-colorskin-4{background-color:#f1c40f}.mec-image-select-wrap .mec-colorskin-5{background-color:#e64883}.mec-image-select-wrap .mec-colorskin-6{background-color:#45ab48}.mec-image-select-wrap .mec-colorskin-7{background-color:#9661ab}.mec-image-select-wrap .mec-colorskin-8{background-color:#0aad80}.mec-image-select-wrap .mec-colorskin-9{background-color:#0ab1f0}.mec-image-select-wrap .mec-colorskin-10{background-color:#ff5a00}.mec-image-select-wrap .mec-colorskin-11{background-color:#c3512f}.mec-image-select-wrap .mec-colorskin-12{background-color:#55606e}.mec-image-select-wrap .mec-colorskin-13{background-color:#fe8178}.mec-image-select-wrap .mec-colorskin-14{background-color:#7c6853}.mec-image-select-wrap .mec-colorskin-15{background-color:#bed431}.mec-image-select-wrap .mec-colorskin-16{background-color:#2d5c88}.mec-image-select-wrap .mec-colorskin-17{background-color:#77da55}.mec-image-select-wrap .mec-colorskin-18{background-color:#2997ab}.mec-image-select-wrap .mec-colorskin-19{background-color:#734854}.mec-image-select-wrap .mec-colorskin-20{background-color:#a81010}.mec-image-select-wrap .mec-colorskin-21{background-color:#4ccfad}.mec-image-select-wrap .mec-colorskin-22{background-color:#3a609f}@media screen and (max-width:782px){.mec-form-row .description{max-width:500px;display:block;margin:0 0 5px 0;padding:0;border:none}.mec-col-1,.mec-col-10,.mec-col-11,.mec-col-12,.mec-col-2,.mec-col-3,.mec-col-4,.mec-col-5,.mec-col-6,.mec-col-7,.mec-col-8,.mec-col-9{margin-bottom:5px;display:block}.mec-form-row .mec-box .button,.mec-meta-box-fields .mec-box .button{float:left}.mec-form-row .time-dv{padding:0 4px}.mec-form-row .mec-col-4 input[type=text],.mec-form-row .mec-col-4 select{width:auto;min-width:192px}.mec-tooltip .dashicons-before:before{font-size:32px}}#frmb-0-clear-all,#frmb-0-save,#frmb-0-view-data{display:none}#mec_sn_googlecal{margin-bottom:0}#mec_fee_row1 .button{margin-right:10px}h4.mec-form-subtitle{font-size:15px;margin-top:0}h5.mec-form-second-title{font-size:15px;margin-top:0}#webnus-dashboard *{box-sizing:border-box}#webnus-dashboard.about-wrap{max-width:1240px;margin:25px auto 20px}#webnus-dashboard .change-log{word-wrap:break-word}#webnus-dashboard .welcome-head img{border:none}.w-welcome{position:relative;margin-top:30px;margin-bottom:10px}.w-box{position:relative;background:#fff;padding:5px 25px;margin-top:30px}.w-theme-version{box-shadow:0 3px 30px -4px #40d8f0;text-shadow:none;background:#40d8f0;background:linear-gradient(95deg,#40d8f0 0,#2dd1ea 50%,#13cbe8 100%);text-align:center;display:block;padding:10px 0;color:#fff;font-weight:600;margin-top:10px;border-radius:2px}.w-box{padding:0;min-height:310px;box-shadow:0 1px 16px rgba(0,0,0,.034);border-radius:2px}.w-box.print-events{min-height:134px}.w-box-head{font-weight:600;padding:20px 72px;position:relative;border-bottom:2px solid #008aff;font-size:20px}.w-box-head span{position:absolute;left:0;padding:0 25px;line-height:58px;background:#008aff;height:100%;top:0;color:#fff}.w-box-child,.w-box-content{padding:18px;line-height:24px;font-size:14px}.mec-count-child{width:50%;margin:0 auto}#webnus-dashboard .w-button a{color:#fff!important;border-radius:0;padding:10px 24px;font-size:12px;letter-spacing:1px;font-weight:600;background:#008aff;margin:10px 0;display:inline-block;text-transform:uppercase}#webnus-dashboard .w-box .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)}.w-system-info{margin-bottom:7px}.w-system-info:first-child{margin-top:20px}.w-system-info>span{display:inline-block;min-width:145px;line-height:20px;font-size:13px}#webnus-dashboard .w-current{min-width:110px}#webnus-dashboard .w-min{min-width:65px}.w-icon{color:#fff;padding:3px;border-radius:4px;margin-right:10px;vertical-align:middle}.w-icon-green{background:#27ae60}.w-icon-red{background:#e74c3c}.extra .w-box-head{padding:20px;border-bottom:1px solid #ededed}.doc .w-box-head{color:#4cbf67}#webnus-dashboard .doc .w-button a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);margin:35px 0 17px;box-shadow:0 5px 10px -5px #4cbf67;background-color:#fff}#webnus-dashboard .support .w-button a{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);margin:13px 0 18px;box-shadow:0 5px 10px -5px #ff876c}.doc .w-box-content{background:url(../img/document.png) no-repeat right center}.doc .w-box-content p,.w-box.support .w-box-content p{width:54%;color:#666;margin-top:10px;max-width:380px}.w-box-child p{color:#666;margin-top:10px}.w-box.support{background:#fff url(../img/support.png) no-repeat top right}.w-box.support .w-box-head{width:50%;color:#ff876c}.w-box-content pre{text-align:left;background:#f5f5f5;font-size:13px;padding:20px 25px;height:480px;overflow-y:scroll}.w-box.change-log .w-box-head{color:#01c6d9}#webnus-dashboard .button:not(.mec-intro-section-link-tag){border:0;background:0 0;box-shadow:none;color:#e74c3c;font-weight:700}.w-box .state{position:absolute;top:0;left:-100vw}#webnus-dashboard .button:hover{color:#222}.w-box .state:checked~.content{-webkit-transform:none;-ms-transform:none;transform:none}.w-box .state:checked~.backdrop{bottom:0;opacity:1;z-index:1}.w-box .lightbox{position:fixed;top:0;right:0;left:0;height:0;padding:0 20px}.w-box .lightbox .content{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;overflow:hidden;position:relative;z-index:2;max-width:500px;max-height:95vh;margin:20px auto;padding:20px;background:#fff;-webkit-transform:translateY(-200%);-ms-transform:translateY(-200%);transform:translateY(-200%);-webkit-transition:.3s -webkit-transform ease-in-out;transition:.3s transform ease-in-out;border:1px solid rgba(0,0,0,.1)}.w-box .lightbox .main{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1}.w-box .lightbox .backdrop{position:fixed;z-index:-1;top:0;right:0;bottom:100%;left:0;opacity:0;background:rgba(0,0,0,.3);-webkit-transition:.3s opacity ease-in-out;transition:.3s opacity ease-in-out}.content .main p{color:#bf3737}p.mec_dash_count{font-size:60px;font-weight:600;margin:0;color:#01c6d9}.w-col-sm-3 .w-box.doc{text-align:center;min-height:auto}.w-Knowledgebase{color:#8e5cea}.mec-view-all-articles a{margin:30px 0 17px;display:inline-block;color:#fff!important;border-radius:0;padding:10px 24px;font-size:12px;letter-spacing:1px;font-weight:600;background:#8e5cea;display:inline-block;text-transform:uppercase;transition:all .24s ease;-webkit-transition:all .24s ease}.mec-view-all-articles a:hover{background-color:#222}.w-box.upcoming-events .mec-event-article{margin-bottom:22px;border-bottom:1px solid #eee;padding-bottom:16px}.w-box.upcoming-events .mec-event-article .mec-event-date{font-size:14px;color:#666}.w-box.upcoming-events .mec-event-article .mec-event-date span{font-weight:600;margin-right:4px}.w-box.upcoming-events .mec-event-article h4.mec-event-title{margin:0;font-size:15px}.w-box.upcoming-events .mec-event-article .mec-event-detail{font-size:13px;color:#999}.w-box.upcoming-events .mec-event-article .mec-detail-button{font-size:10px;font-weight:600;letter-spacing:1px;padding:4px 12px;background:#f2f2f2;float:right}.w-box.total-bookings ul li{display:inline-block;padding:4px 12px;background:#f1f1f1;margin-right:5px;border-radius:3px}.w-box.total-bookings ul li.selected{background:#fff;border:1px solid #e9e9e9}.info-msg,.mec-error,.mec-success,.warning-msg{margin:10px 0;padding:10px;border-radius:3px 3px 3px 3px}.info-msg{color:#059;background-color:#bef}.info-msg-link{background:#fff;padding:4px 12px 6px;border-radius:3px;line-height:1;font-weight:600;color:#008aff}.mec-success{color:#270;background-color:#dff2bf}.warning-msg{color:#9f6000;background-color:#feefb3}.mec-error{color:#d8000c;background-color:#ffbaba}.mec-certain-day>div,.mec-select-deselect-actions li,.mec-xi-facebook-import-events .mec-select-deselect-actions li,.mec-xi-google-import-events .mec-select-deselect-actions li{display:inline-block;position:relative;outline:0;background:#fff;border:1px solid #e2e2e2;border-radius:50px;padding:11px 21px 11px 21px;line-height:1;font-size:11px;font-weight:600;color:#444;letter-spacing:2px;height:auto;cursor:pointer;margin-top:5px;text-transform:uppercase;box-shadow:0 0 3px rgba(0,0,0,.03)}.mec-certain-day>div:hover,.mec-select-deselect-actions li:hover,.mec-xi-facebook-import-events .mec-select-deselect-actions li:hover,.mec-xi-google-import-events .mec-select-deselect-actions li:hover{border-color:#008aff;box-shadow:0 0 7px rgba(0,0,0,.1)}.mec-not-in-days-remove{border:1px solid #ff4b64;border-radius:20px;padding:0 0 0 1px;color:#ff4b64;width:11px;height:12px;text-align:center;line-height:12px;display:inline-block;margin-right:-5px;margin-left:6px}div#mec_not_in_days_row2:hover{border-color:#e2e2e2!important;box-shadow:none!important}.mec-xi-facebook-import-events .mec-success,.mec-xi-google-import-events .mec-success{width:460px}.mec-xi-facebook-import-events .mec-select-deselect-actions li,.mec-xi-google-import-events .mec-select-deselect-actions li{display:inline-block;cursor:pointer}.lity-content>div{overflow:auto}.mce-mec-mce-items{text-transform:capitalize!important}#mec_setting_contextual li{list-style:none!important;font-size:12px;margin:0;padding:6px}.mec-bbf-field-container{margin-bottom:10px}.mec-bbf-field-container label{display:block}.kc-components ul.kc-components-list li .cpicon.mec-kingcomposer-icon,.kc-element-icon .cpicon.mec-kingcomposer-icon{background:url(../img/ico-mec-vc.png) no-repeat center center;background-size:auto;background-repeat:no-repeat}.mec-archive-skinsm.mec-category-skins,.mec-carousel-archive-link,.mec-carousel-head-text,.mec-toggle-month-divider{display:none}span.mec-archive-skins,span.mec-category-skins{margin-left:10px;vertical-align:text-bottom}.mec-archive-skins input,.mec-archive-skins select,.mec-category-skins input,.mec-category-skins select{min-width:225px;vertical-align:baseline}#mec_settings_default_skin_archive,#mec_settings_default_skin_category{min-width:225px}.w-welcome p span{background:#fff;padding:4px 10px}#mec_masonry_skin_options_container .mec-form-row .description{margin-left:0;padding-left:0;border:none;margin-top:-4px}@media (max-width:1280px){span.mec-archive-skins,span.mec-category-skins{margin-left:0}}.mec-shortcode-virtual-badge i{padding:0 5px 0 7px}/*!
2
  * Bootstrap v3.3.7 (http://getbootstrap.com)
3
  * Copyright 2011-2016 Twitter, Inc.
4
  * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
5
+ */#webnus-dashboard button,#webnus-dashboard input,#webnus-dashboard select,#webnus-dashboard textarea{font-family:inherit;font-size:inherit;line-height:inherit}#webnus-dashboard a{color:#337ab7;text-decoration:none}#webnus-dashboard a:focus,#webnus-dashboard a:hover{color:#23527c}#webnus-dashboard a:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}#webnus-dashboard figure{margin:0}#webnus-dashboard img{vertical-align:middle}.w-img-responsive{display:block;max-width:100%;height:auto}.w-img-rounded{border-radius:6px}.w-img-thumbnail{padding:4px;line-height:1w-42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all 0w-2s ease-in-out;-o-transition:all 0w-2s ease-in-out;transition:all 0w-2s ease-in-out;display:inline-block;max-width:100%;height:auto}.w-img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.w-sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.w-sr-only-focusable:active,.w-sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.w-container,.w-container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}[role=button]{cursor:pointer}@media (min-width:768px){.w-container{width:750px}}@media (min-width:992px){.w-container{width:970px}}@media (min-width:1200px){.w-container{width:1170px}}.w-row{margin-left:-15px;margin-right:-15px}.w-col-lg-1,.w-col-lg-10,.w-col-lg-11,.w-col-lg-12,.w-col-lg-2,.w-col-lg-3,.w-col-lg-4,.w-col-lg-5,.w-col-lg-6,.w-col-lg-7,.w-col-lg-8,.w-col-lg-9,.w-col-md-1,.w-col-md-10,.w-col-md-11,.w-col-md-12,.w-col-md-2,.w-col-md-3,.w-col-md-4,.w-col-md-5,.w-col-md-6,.w-col-md-7,.w-col-md-8,.w-col-md-9,.w-col-sm-1,.w-col-sm-10,.w-col-sm-11,.w-col-sm-12,.w-col-sm-2,.w-col-sm-3,.w-col-sm-4,.w-col-sm-5,.w-col-sm-6,.w-col-sm-7,.w-col-sm-8,.w-col-sm-9,.w-col-xs-1,.w-col-xs-10,.w-col-xs-11,.w-col-xs-12,.w-col-xs-2,.w-col-xs-3,.w-col-xs-4,.w-col-xs-5,.w-col-xs-6,.w-col-xs-7,.w-col-xs-8,.w-col-xs-9{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.w-col-xs-1,.w-col-xs-10,.w-col-xs-11,.w-col-xs-12,.w-col-xs-2,.w-col-xs-3,.w-col-xs-4,.w-col-xs-5,.w-col-xs-6,.w-col-xs-7,.w-col-xs-8,.w-col-xs-9{float:left}.w-col-xs-12{width:100%}.w-col-xs-11{width:91.66666667%}.w-col-xs-10{width:83.33333333%}.w-col-xs-9{width:75%}.w-col-xs-8{width:66.66666667%}.w-col-xs-7{width:58.33333333%}.w-col-xs-6{width:50%}.w-col-xs-5{width:41.66666667%}.w-col-xs-4{width:33.33333333%}.w-col-xs-3{width:25%}.w-col-xs-2{width:16.66666667%}.w-col-xs-1{width:8w-33333333%}.w-col-xs-pull-12{right:100%}.w-col-xs-pull-11{right:91.66666667%}.w-col-xs-pull-10{right:83.33333333%}.w-col-xs-pull-9{right:75%}.w-col-xs-pull-8{right:66.66666667%}.w-col-xs-pull-7{right:58.33333333%}.w-col-xs-pull-6{right:50%}.w-col-xs-pull-5{right:41.66666667%}.w-col-xs-pull-4{right:33.33333333%}.w-col-xs-pull-3{right:25%}.w-col-xs-pull-2{right:16.66666667%}.w-col-xs-pull-1{right:8w-33333333%}.w-col-xs-pull-0{right:auto}.w-col-xs-push-12{left:100%}.w-col-xs-push-11{left:91.66666667%}.w-col-xs-push-10{left:83.33333333%}.w-col-xs-push-9{left:75%}.w-col-xs-push-8{left:66.66666667%}.w-col-xs-push-7{left:58.33333333%}.w-col-xs-push-6{left:50%}.w-col-xs-push-5{left:41.66666667%}.w-col-xs-push-4{left:33.33333333%}.w-col-xs-push-3{left:25%}.w-col-xs-push-2{left:16.66666667%}.w-col-xs-push-1{left:8w-33333333%}.w-col-xs-push-0{left:auto}.w-col-xs-offset-12{margin-left:100%}.w-col-xs-offset-11{margin-left:91.66666667%}.w-col-xs-offset-10{margin-left:83.33333333%}.w-col-xs-offset-9{margin-left:75%}.w-col-xs-offset-8{margin-left:66.66666667%}.w-col-xs-offset-7{margin-left:58.33333333%}.w-col-xs-offset-6{margin-left:50%}.w-col-xs-offset-5{margin-left:41.66666667%}.w-col-xs-offset-4{margin-left:33.33333333%}.w-col-xs-offset-3{margin-left:25%}.w-col-xs-offset-2{margin-left:16.66666667%}.w-col-xs-offset-1{margin-left:8w-33333333%}.w-col-xs-offset-0{margin-left:0}@media (min-width:768px){.w-col-sm-1,.w-col-sm-10,.w-col-sm-11,.w-col-sm-12,.w-col-sm-2,.w-col-sm-3,.w-col-sm-4,.w-col-sm-5,.w-col-sm-6,.w-col-sm-7,.w-col-sm-8,.w-col-sm-9{float:left}.w-col-sm-12{width:100%}.w-col-sm-11{width:91.66666667%}.w-col-sm-10{width:83.33333333%}.w-col-sm-9{width:75%}.w-col-sm-8{width:66.66666667%}.w-col-sm-7{width:58.33333333%}.w-col-sm-6{width:50%}.w-col-sm-5{width:41.66666667%}.w-col-sm-4{width:33.33333333%}.w-col-sm-3{width:25%}.w-col-sm-2{width:16.66666667%}.w-col-sm-1{width:8w-33333333%}.w-col-sm-pull-12{right:100%}.w-col-sm-pull-11{right:91.66666667%}.w-col-sm-pull-10{right:83.33333333%}.w-col-sm-pull-9{right:75%}.w-col-sm-pull-8{right:66.66666667%}.w-col-sm-pull-7{right:58.33333333%}.w-col-sm-pull-6{right:50%}.w-col-sm-pull-5{right:41.66666667%}.w-col-sm-pull-4{right:33.33333333%}.w-col-sm-pull-3{right:25%}.w-col-sm-pull-2{right:16.66666667%}.w-col-sm-pull-1{right:8w-33333333%}.w-col-sm-pull-0{right:auto}.w-col-sm-push-12{left:100%}.w-col-sm-push-11{left:91.66666667%}.w-col-sm-push-10{left:83.33333333%}.w-col-sm-push-9{left:75%}.w-col-sm-push-8{left:66.66666667%}.w-col-sm-push-7{left:58.33333333%}.w-col-sm-push-6{left:50%}.w-col-sm-push-5{left:41.66666667%}.w-col-sm-push-4{left:33.33333333%}.w-col-sm-push-3{left:25%}.w-col-sm-push-2{left:16.66666667%}.w-col-sm-push-1{left:8w-33333333%}.w-col-sm-push-0{left:auto}.w-col-sm-offset-12{margin-left:100%}.w-col-sm-offset-11{margin-left:91.66666667%}.w-col-sm-offset-10{margin-left:83.33333333%}.w-col-sm-offset-9{margin-left:75%}.w-col-sm-offset-8{margin-left:66.66666667%}.w-col-sm-offset-7{margin-left:58.33333333%}.w-col-sm-offset-6{margin-left:50%}.w-col-sm-offset-5{margin-left:41.66666667%}.w-col-sm-offset-4{margin-left:33.33333333%}.w-col-sm-offset-3{margin-left:25%}.w-col-sm-offset-2{margin-left:16.66666667%}.w-col-sm-offset-1{margin-left:8w-33333333%}.w-col-sm-offset-0{margin-left:0}}@media (min-width:992px){.w-col-md-1,.w-col-md-10,.w-col-md-11,.w-col-md-12,.w-col-md-2,.w-col-md-3,.w-col-md-4,.w-col-md-5,.w-col-md-6,.w-col-md-7,.w-col-md-8,.w-col-md-9{float:left}.w-col-md-12{width:100%}.w-col-md-11{width:91.66666667%}.w-col-md-10{width:83.33333333%}.w-col-md-9{width:75%}.w-col-md-8{width:66.66666667%}.w-col-md-7{width:58.33333333%}.w-col-md-6{width:50%}.w-col-md-5{width:41.66666667%}.w-col-md-4{width:33.33333333%}.w-col-md-3{width:25%}.w-col-md-2{width:16.66666667%}.w-col-md-1{width:8w-33333333%}.w-col-md-pull-12{right:100%}.w-col-md-pull-11{right:91.66666667%}.w-col-md-pull-10{right:83.33333333%}.w-col-md-pull-9{right:75%}.w-col-md-pull-8{right:66.66666667%}.w-col-md-pull-7{right:58.33333333%}.w-col-md-pull-6{right:50%}.w-col-md-pull-5{right:41.66666667%}.w-col-md-pull-4{right:33.33333333%}.w-col-md-pull-3{right:25%}.w-col-md-pull-2{right:16.66666667%}.w-col-md-pull-1{right:8w-33333333%}.w-col-md-pull-0{right:auto}.w-col-md-push-12{left:100%}.w-col-md-push-11{left:91.66666667%}.w-col-md-push-10{left:83.33333333%}.w-col-md-push-9{left:75%}.w-col-md-push-8{left:66.66666667%}.w-col-md-push-7{left:58.33333333%}.w-col-md-push-6{left:50%}.w-col-md-push-5{left:41.66666667%}.w-col-md-push-4{left:33.33333333%}.w-col-md-push-3{left:25%}.w-col-md-push-2{left:16.66666667%}.w-col-md-push-1{left:8w-33333333%}.w-col-md-push-0{left:auto}.w-col-md-offset-12{margin-left:100%}.w-col-md-offset-11{margin-left:91.66666667%}.w-col-md-offset-10{margin-left:83.33333333%}.w-col-md-offset-9{margin-left:75%}.w-col-md-offset-8{margin-left:66.66666667%}.w-col-md-offset-7{margin-left:58.33333333%}.w-col-md-offset-6{margin-left:50%}.w-col-md-offset-5{margin-left:41.66666667%}.w-col-md-offset-4{margin-left:33.33333333%}.w-col-md-offset-3{margin-left:25%}.w-col-md-offset-2{margin-left:16.66666667%}.w-col-md-offset-1{margin-left:8w-33333333%}.w-col-md-offset-0{margin-left:0}}@media (min-width:1200px){.w-col-lg-1,.w-col-lg-10,.w-col-lg-11,.w-col-lg-12,.w-col-lg-2,.w-col-lg-3,.w-col-lg-4,.w-col-lg-5,.w-col-lg-6,.w-col-lg-7,.w-col-lg-8,.w-col-lg-9{float:left}.w-col-lg-12{width:100%}.w-col-lg-11{width:91.66666667%}.w-col-lg-10{width:83.33333333%}.w-col-lg-9{width:75%}.w-col-lg-8{width:66.66666667%}.w-col-lg-7{width:58.33333333%}.w-col-lg-6{width:50%}.w-col-lg-5{width:41.66666667%}.w-col-lg-4{width:33.33333333%}.w-col-lg-3{width:25%}.w-col-lg-2{width:16.66666667%}.w-col-lg-1{width:8w-33333333%}.w-col-lg-pull-12{right:100%}.w-col-lg-pull-11{right:91.66666667%}.w-col-lg-pull-10{right:83.33333333%}.w-col-lg-pull-9{right:75%}.w-col-lg-pull-8{right:66.66666667%}.w-col-lg-pull-7{right:58.33333333%}.w-col-lg-pull-6{right:50%}.w-col-lg-pull-5{right:41.66666667%}.w-col-lg-pull-4{right:33.33333333%}.w-col-lg-pull-3{right:25%}.w-col-lg-pull-2{right:16.66666667%}.w-col-lg-pull-1{right:8w-33333333%}.w-col-lg-pull-0{right:auto}.w-col-lg-push-12{left:100%}.w-col-lg-push-11{left:91.66666667%}.w-col-lg-push-10{left:83.33333333%}.w-col-lg-push-9{left:75%}.w-col-lg-push-8{left:66.66666667%}.w-col-lg-push-7{left:58.33333333%}.w-col-lg-push-6{left:50%}.w-col-lg-push-5{left:41.66666667%}.w-col-lg-push-4{left:33.33333333%}.w-col-lg-push-3{left:25%}.w-col-lg-push-2{left:16.66666667%}.w-col-lg-push-1{left:8w-33333333%}.w-col-lg-push-0{left:auto}.w-col-lg-offset-12{margin-left:100%}.w-col-lg-offset-11{margin-left:91.66666667%}.w-col-lg-offset-10{margin-left:83.33333333%}.w-col-lg-offset-9{margin-left:75%}.w-col-lg-offset-8{margin-left:66.66666667%}.w-col-lg-offset-7{margin-left:58.33333333%}.w-col-lg-offset-6{margin-left:50%}.w-col-lg-offset-5{margin-left:41.66666667%}.w-col-lg-offset-4{margin-left:33.33333333%}.w-col-lg-offset-3{margin-left:25%}.w-col-lg-offset-2{margin-left:16.66666667%}.w-col-lg-offset-1{margin-left:8w-33333333%}.w-col-lg-offset-0{margin-left:0}}.w-clearfix:after,.w-clearfix:before,.w-container-fluid:after,.w-container-fluid:before,.w-container:after,.w-container:before,.w-row:after,.w-row:before{content:" ";display:table}.w-clearfix:after,.w-container-fluid:after,.w-container:after,.w-row:after{clear:both}.w-center-block{display:block;margin-left:auto;margin-right:auto}.w-pull-right{float:right!important}.w-pull-left{float:left!important}.w-hide{display:none!important}.w-show{display:block!important}.w-invisible{visibility:hidden}.w-text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.w-hidden{display:none!important}.w-affix{position:fixed}.mec-image-popup-wrap{display:none}#wns-be-infobar.sticky{position:fixed;top:32px;background:#fff;z-index:9999;width:82%}.wns-be-main .wns-saved-settings.sticky{position:fixed;width:62.5%;top:111px;z-index:999999999999999999}.mec-export-settings,.mec-import-settings{font-weight:700;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:8px 32px;height:36px;letter-spacing:.2px;line-height:36px;font-size:13px;color:#fff;text-decoration:none;display:inline-block}.mec-export-settings:hover,.mec-import-settings:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5);color:#fff}textarea.mec-import-settings-content{display:block;width:100%;min-height:120px;margin-bottom:25px;padding:10px 15px}.mec-import-options-notification{display:inline-block}.mec-import-options-notification .mec-message-import-error,.mec-import-options-notification .mec-message-import-success{display:inline-block;padding:15px 12px;margin-left:12px;opacity:0;visibility:hidden;font-weight:700}.mec-import-options-notification .mec-message-import-success{opacity:1;visibility:visible;border:2px solid green}.mec-import-options-notification .mec-message-import-error{opacity:1;visibility:visible;border:2px solid #e62117}.mec-export-settings:focus,.mec-import-settings:focus{color:#fff}.mec-import-settings-wrap{position:relative}.mec-loarder-wrap{position:absolute;top:0;bottom:0;left:0;right:0;background:rgba(202,202,202,.7);z-index:9999}.mec-loarder-wrap.mec-settings-loader{top:34px}.mec-loarder{position:absolute;width:64px;height:64px;top:calc(50% - 32px);left:calc(50% - 36px)}.mec-loarder div{display:inline-block;position:absolute;left:6px;width:4px;background:#fff;animation:mec-loarder 1.2s cubic-bezier(0,.5,.5,1) infinite}.mec-loarder div:nth-child(1){left:27px;animation-delay:-.24s;background:#0075ff}.mec-loarder div:nth-child(2){left:36px;animation-delay:-.12s;background:#028bff}.mec-loarder div:nth-child(3){left:45px;animation-delay:0;background:#32a0ff}@keyframes mec-loarder{0%{top:6px;height:51px}100%,50%{top:19px;height:26px}}.w-box.support-page.searchbox{background:#008aff;background:linear-gradient(180deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff;min-height:260px;text-align:center;border-radius:2px}#webnus-dashboard .search-form input{background:rgba(255,255,255,.2);border:none;width:50%;outline:0;color:rgba(255,255,255,.7);font-size:18px;border-radius:4px 0 0 4px;box-shadow:0 1px 2px 0 rgba(0,0,0,.03);-webkit-transition:background .4s,box-shadow .2s;transition:background .4s,box-shadow .2s;padding:20px 32px;margin:0}#webnus-dashboard .search-form button{background:rgba(255,255,255,.2);border:none;padding:20px 32px;margin-left:-2px;color:#fff;border-radius:0 4px 4px 0;font-size:18px;cursor:pointer;-webkit-transition:background .4s,box-shadow .2s;transition:background .4s,box-shadow .2s}#webnus-dashboard .search-form button:hover{background:#fff;color:#3a3c4c}.w-box.support-page.searchbox p{font-size:30px}.search-form input::-webkit-input-placeholder{color:rgba(255,255,255,.7)}.search-form input::-moz-placeholder{color:rgba(255,255,255,.7)}.search-form input:-ms-input-placeholder{color:rgba(255,255,255,.7)}.search-form input:-moz-placeholder{color:rgba(255,255,255,.7)}#webnus-dashboard .search-form input:active,#webnus-dashboard .search-form input:focus{box-shadow:0 10px 20px rgba(0,0,0,.14);background:#fff;color:#3a3c4c}#webnus-dashboard .search-form input:active::-webkit-input-placeholder,#webnus-dashboard .search-form input:focus::-webkit-input-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active::-moz-placeholder,#webnus-dashboard .search-form input:focus::-moz-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active:-ms-input-placeholder,#webnus-dashboard .search-form input:focus:-ms-input-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active:-moz-placeholder,#webnus-dashboard .search-form input:focus:-moz-placeholder{color:#3a3c4c}#webnus-dashboard .w-box.support-page.mec-ticksy{text-align:center;min-height:260px}#webnus-dashboard .w-box.support-page.mec-ticksy p{font-size:20px;width:70%;margin:0 auto;margin-bottom:40px;margin-top:40px}#webnus-dashboard .support-box a,#webnus-dashboard .w-box.support-page.mec-ticksy a{color:#fff;font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:12px 20px;cursor:pointer;margin-bottom:40px;display:inline-block}#webnus-dashboard .support-box a:hover,#webnus-dashboard .w-box.support-page.mec-ticksy a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5)}#webnus-dashboard .support-box a{margin:40px 4px 0 4px}.mec-faq-accordion>.mec-faq-accordion-content{display:none}#webnus-dashboard .mec-faq-accordion-trigger a{font-size:16px;padding:12px;background:#f1f1f1;display:block;color:#222;line-height:17px;outline:0}.mec-faq-accordion-trigger{margin-bottom:5px;position:relative}#webnus-dashboard .mec-faq-accordion-trigger a:after{font-family:simple-line-icons;content:"\e095";position:absolute;right:12px;font-weight:700}.mec-faq-accordion-content{padding:5px 14px 25px}#webnus-dashboard .mec-faq-accordion-trigger a.active:after{content:"\e082"}#webnus-dashboard .support-page-links a{background-color:#fff;color:#fff;border-radius:2px;padding:13px 24px;font-size:12px;letter-spacing:1px;font-weight:600;text-transform:uppercase}#webnus-dashboard .support-page-links a:hover,#webnus-dashboard .w-box.support-page.videobox .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}#webnus-dashboard .support-page-links{display:inline-block;margin:12px 4px 16px 0}.support-page-links.link-to-doc a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.support-page-links.link-to-videos a{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);box-shadow:0 5px 10px -5px #ff876c}.support-page-links.link-to-articles a{background:#b092e6;background:linear-gradient(95deg,#b092e6 0,#9b70e8 50%,#8e5cea 100%);box-shadow:0 5px 10px -5px #b092e6}.w-box.support-page.articles-box .w-box-content a{display:block;padding:6px 0}#webnus-dashboard .w-box.support-page.videobox .w-button a{color:#fff;font-size:10px;padding:5px 15px;min-height:10px;font-weight:500;border-radius:22px;box-shadow:0 3px 10px -4px #ff5a35;text-shadow:none;background:#ff5a35;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);border:none;transition:.24s}.w-box.support-page.articles-box,.w-box.support-page.faq-box{min-height:500px}.w-box.support-page.videobox{border-radius:2px;min-height:282px;box-shadow:0 1px 6px rgba(0,0,0,.039)!important}#webnus-dashboard .w-box.support-page.videobox .w-button a i{margin-right:6px}.support-page .w-box-content ul{margin-top:5px;padding-left:5px}.support-page .w-box-content ul li{font-size:13px}.support-page .w-box-content ul li i{font-size:17px;vertical-align:text-bottom;margin-right:7px;color:#999}.w-box.mec-activation{background:#fff url(../img/dp-dsb-support.jpg) no-repeat top right}.w-box.mec-activation .w-box-head{color:#40d8f0;width:75%}.w-box.mec-activation .w-box-content{padding:10px 30px}.w-box.mec-activation input[type=radio]{display:none}.w-box.mec-activation input[type=radio]+label{color:#000;font-size:13px;line-height:14px!important;color:#7b7b7b}.w-box.mec-activation input[type=radio].checked+label{color:#40d8f0}.w-box.mec-activation input[type=radio]+label span{display:inline-block;margin:-2px 6px 0 0;vertical-align:middle;cursor:pointer;height:14px;width:14px;text-align:center;background-color:#fff;border:1px solid #d4d4d4;border-radius:100%;box-shadow:0 2px 16px -2px rgba(0,0,0,.2);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;position:relative}.w-box.mec-activation input[type=radio].checked+label span{background-color:#40d8f0;border-color:#40d8f0;box-shadow:0 2px 14px -3px #40d8f0}.w-box.mec-activation input[type=radio].checked+label span:after{content:'';display:block;position:absolute;top:4px;left:4px;width:4px;height:4px;background:#fff;border-radius:100%}.w-box.mec-activation .LicenseType label{padding-right:20px;font-weight:500}.w-box.mec-activation .LicenseField{display:inline-block;position:relative;margin-top:20px}.w-box.mec-activation input[name=MECPurchaseCode]{box-shadow:inset 0 1px 2px rgba(0,0,0,.07);min-width:220px;background:#f4f4f4;border:none;border-radius:33px;width:500px;min-height:50px;margin:0;padding-left:20px;text-align:left}#webnus-dashboard .w-box.mec-activation input[type=submit]{height:40px;line-height:40px;font-weight:600;border:none;cursor:pointer;padding:0 30px;border-radius:33px;color:#fff;letter-spacing:1px;text-transform:uppercase;font-size:12px;background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67;transition:all .28s ease;position:absolute;right:5px;top:4px;font-size:12px}#webnus-dashboard .w-box.mec-activation input[type=submit]:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5)}#MECActivation .MECPurchaseStatus,.addon-activation-form .MECPurchaseStatus{display:inline-block;width:40px;height:40px;text-align:center;padding-top:9px;color:#fff;font-weight:700;font-size:18px;border-radius:50%;padding-top:8px;position:absolute;right:-51px;top:calc(50% - 20px)}.MECPurchaseStatus:after,.MECPurchaseStatus:before{position:absolute;border-radius:50px;background:#fff;content:'';transform:rotate(45deg)}.MECPurchaseStatus.PurchaseError:before{width:22px;height:4px;right:9px;top:18px;transform:rotate(45deg)}.MECPurchaseStatus.PurchaseError:after{width:22px;height:4px;right:9px;top:18px;transform:rotate(-45deg)}.MECPurchaseStatus.PurchaseSuccess:before{width:13px;height:4px;right:19px;top:21px;transform:rotate(45deg)}.MECPurchaseStatus.PurchaseSuccess:after{width:22px;height:4px;right:5px;top:18px;transform:rotate(-45deg)}#MECActivation .MECPurchaseStatus.PurchaseError,.addon-activation-form .MECPurchaseStatus.PurchaseError{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);box-shadow:0 5px 10px -5px #ff876c}#MECActivation .MECPurchaseStatus.PurchaseSuccess,.addon-activation-form .MECPurchaseStatus.PurchaseSuccess{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.wna-spinner-wrap{position:absolute;background:#000;width:509px;height:64px;top:-8px;border-radius:50px;z-index:999;background-color:#fff;opacity:.9}.wna-spinner{width:40px;height:40px;position:relative;margin:6px auto}.wna-spinner .double-bounce1,.wna-spinner .double-bounce2{width:100%;height:100%;border-radius:50%;background-color:#40d8f0;opacity:.6;position:absolute;top:0;left:0;-webkit-animation:sk-bounce 2s infinite ease-in-out;animation:sk-bounce 2s infinite ease-in-out}.wna-spinner .double-bounce2{-webkit-animation-delay:-1s;animation-delay:-1s}#MECActivation .MECLicenseMessage,.addon-activation-form .MECLicenseMessage{margin-top:24px;color:#f64;max-width:570px}.box-addon-activation-toggle-content,.box-addon-activation-toggle-head{display:none}.addon-activation-form h3{font-size:15px;font-weight:400;margin:34px 0 -7px}.box-addon-activation-toggle-head{line-height:1.5;font-size:16px;margin-top:20px;cursor:pointer}.box-addon-activation-toggle-head i{margin-right:7px;cursor:pointer;font-weight:700}#mec-advanced-wraper div:first-child>ul{display:block;margin:5px 0;padding:5px 0;width:390px;border:1px solid #e1e2e3;border-radius:2px;box-shadow:0 1px 3px rgba(0,0,0,.05)}#mec-advanced-wraper div:first-child>ul span{display:none}#mec-advanced-wraper div:first-child>ul *{display:inline-block;background:#fff;font-size:12px;color:#717273;text-align:center}#mec-advanced-wraper div:first-child>ul>li{width:60px;font-weight:700;margin:0 10px 0 0;padding:4px 0;border-right:1px solid #e1e2e3}#mec-advanced-wraper div:first-child>ul>ul>li{margin:0;padding:2px 10px;cursor:pointer;border-radius:2px;transition:all .18s ease}#mec-advanced-wraper div:first-child>ul>ul>li:hover,.mec-active{background:#008aff!important;color:#fff!important}@-webkit-keyframes sk-bounce{0%,100%{-webkit-transform:scale(0)}50%{-webkit-transform:scale(1)}}@keyframes sk-bounce{0%,100%{transform:scale(0);-webkit-transform:scale(0)}50%{transform:scale(1);-webkit-transform:scale(1)}}.w-col-sm-3 .w-box.addon{min-height:auto;box-shadow:0 3px 16px -5px rgba(0,0,0,.1);border-radius:2px}.w-box-child.mec-addon-box{padding:20px 20px}.mec-addon-box-head{border-bottom:1px solid #e8e8e8;padding-bottom:5px;margin-bottom:14px;position:relative}.mec-addon-box-version{position:relative;background:#eaeaea;border-radius:1px;padding:0 8px;color:#5a5a5a;font-size:11px;letter-spacing:.2px;line-height:21px;display:inline-block;margin:10px 0}.mec-addon-box-head img{display:block;width:60px;height:60px;margin-bottom:10px}.mec-addon-box-title{font-weight:600;font-size:17px;line-height:25px}.mec-addon-box-title a span{color:#444;font-size:15px}.mec-addon-box-content p{color:#777;font-size:13px;letter-spacing:.1px}.mec-addon-box-mec-version{background:#f3f3f3;padding:10px;font-size:13px}#webnus-dashboard .addons-page-links{display:inline-block;margin:12px 4px 16px 0}#webnus-dashboard .addons-page-links a{background-color:#fff;color:#fff;border-radius:2px;padding:13px 24px;font-size:12px;letter-spacing:1px;font-weight:600;text-transform:uppercase}.addons-page-links.link-to-purchase a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.addons-page-links.link-to-install-addons a{background:#b092e6;background:linear-gradient(95deg,#b092e6 0,#9b70e8 50%,#8e5cea 100%);box-shadow:0 5px 10px -5px #b092e6}#webnus-dashboard .addons-page-links a:hover,#webnus-dashboard .w-box.addons-page.videobox .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}.mec-addon-box-footer{margin-top:25px;text-align:center}#webnus-dashboard .mec-addon-box-footer a{background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);margin-top:10px;display:inline-block;text-shadow:none;border:none;transition:.24s;position:relative;margin-right:7px;font-size:12px;font-weight:500;border-radius:7px;padding:9px 18px 8px;width:53px;height:34px;line-height:21px;box-shadow:0 2px 8px -3px #008aff}#webnus-dashboard .mec-addon-box-footer a:last-of-type{margin-right:0}#webnus-dashboard .mec-addon-box-footer a.mec-addon-box-intro{box-shadow:0 3px 10px -4px #ff3535;background:linear-gradient(95deg,#ff6c6c 0,#f55 50%,#ff3535 100%)}#webnus-dashboard .mec-addon-box-footer a:hover{background:#222!important;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%)!important;box-shadow:0 5px 23px -7px rgba(0,0,0,.5)!important;cursor:pointer!important}#webnus-dashboard .mec-addon-box-footer a i{color:#fff;font-size:16px}@media(max-width:1366px){.wns-be-container #wns-be-content{padding:5px 15px 0}.mec-form-row .mec-col-8 label{font-size:10px}#webnus-dashboard .mec-tooltip .box p,.mec-tooltip .box p{font-size:10px}}@media (max-width:780px){.wns-be-container #wns-be-content{padding:10px 0}.wns-be-container .mec-form-row .mec-col-8 label{width:50%;display:block}.wns-be-container .mec-form-row input[type=checkbox]{width:14px;height:14px}.wns-be-container .wns-be-sidebar li .subsection a{padding-left:30px}.wns-be-container .wns-be-sidebar{width:200px}.wns-be-container .wns-be-main{margin-left:200px}.wns-be-container .mec-tooltip .box{min-width:235px!important}.wns-be-container .mec-tooltip .box p{font-size:12px!important}#wns-be-infobar.sticky{position:unset}}@media (max-width:480px){.wns-be-container .wns-be-sidebar{width:100%;position:unset;float:none}.wns-be-container .wns-be-main{margin-left:0;width:100%;position:unset}.wns-be-container{margin-top:50px}.wns-be-container #wns-be-infobar:before{width:100%}.wns-be-container #wns-be-infobar{height:150px}#mec-search-settings{margin-top:80px;width:181px}}#mec_tickets .mec-box{position:relative;padding:25px 10px}#mec_fees_list input[type=text].mec-col-12,#mec_ticket_variations_list input[type=text].mec-col-12{max-width:625px}#taxes_option .mec-form-row input[type=text].mec-col-12,#ticket_variations_option input[type=text].mec-col-12{max-width:554px}.mec-booking-tab-content .mec-form-row textarea{max-width:762px}#mec_tickets .button.remove{padding:0;min-height:28px;height:28px;width:28px;margin:0;border-radius:50%;position:absolute;top:20px;right:20px;color:#ea6485;box-shadow:0 2px 6px -3px #ea6485;background:#fff;border-color:#ffd2dd;font-size:20px;line-height:1.5}#mec_tickets .button.remove svg{fill:#ea6485!important}#mec_tickets .button.remove:hover{color:#fff;border:2px solid #ea6485;background:#ea6485}#mec_tickets .button.remove:hover svg{fill:#fff!important}@media(max-width:480px){#mec_tickets .button.remove{top:5px;right:5px}}.mec-ticket-id{font-size:12px;line-height:12px;font-weight:400;color:#008aff;padding:0 0 8px;margin-top:-6px;margin-bottom:14px;cursor:default}#mec_meta_box_hourly_schedule_days .mec-form-row input[type=text],#mec_meta_box_tickets_form .mec-form-row input[type=text]{max-width:400px}#mec_exceptions_not_in_days_date{width:100%}#mec-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_select_tags.mec-create-shortcode-tab-content input[type=text],#mec_settings_weather_module_api_key{width:262px}#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]{max-width:262px}#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:75%}.mec-form-repeating-event-row .mec-col-6 input[type=text]{width:35%}.addons-page-error,.addons-page-notice{display:block;margin-top:15px;margin-bottom:0;background:#fff;border-left:4px solid #00a0d2;box-shadow:0 1px 1px 0 rgba(0,0,0,.1);padding:1px 12px}.addons-page-error p,.addons-page-notice p{margin:.5em 0;padding:2px;font-size:13px}.addons-page-error{border-left-color:#dc3232}.mec-addon-box-comingsoon{background:#eaeaea;padding:8px 11px;color:#5a5a5a;font-size:14px;font-weight:500;text-align:center}.mec-addons .w-row .w-col-sm-3:nth-child(4n+1){clear:left}@media (min-width:960px){#webnus-dashboard .mec-addon-box-footer .w-button{text-align:right}}@media (min-width:1401px){.mec-addon-box-title a span{font-size:17px}}.mec-pro-notice{margin-top:24px;line-height:30px}.mec-pro-notice .info-msg{padding:50px 30px;margin-bottom:0}#webnus-dashboard .mec-pro-notice .info-msg{background:#fff;box-shadow:0 1px 16px rgba(0,0,0,.034);text-align:center;color:#000}#webnus-dashboard a.info-msg-link{background:#e66f52;background:linear-gradient(95deg,#ff8162 0,#e66f52 50%,#ff4c20 100%);box-shadow:0 5px 10px -5px #e66f52;border-radius:2px;padding:12px 50px;font-size:16px;line-height:24px;border:none;margin:20px auto 0;color:#fff;transition:all .3s ease;display:inline-block}#webnus-dashboard a.info-msg-link:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}#webnus-dashboard .info-msg p{width:70%;margin:0 auto;line-height:1.8}#webnus-dashboard .info-msg-coupon{font-size:13px;color:#777;max-width:600px;line-height:1.68;margin:25px auto 0}#webnus-dashboard .info-msg-coupon strong{font-weight:700;color:#19ce18}.info-msg .socialfollow{padding-top:20px}.info-msg .socialfollow a{margin:0 2px;display:inline-block}.info-msg .socialfollow a i{background:#96a4b1;color:#fff;padding:6px;border-radius:3px;font-size:18px;box-shadow:0 2px 3px rgba(0,0,0,.1);transition:all .25s}.info-msg .socialfollow a:hover i{background:#008aff}.mec-intro-section .w-box-content{text-align:center}.mec-intro-section .w-box-content.mec-intro-section-welcome{max-width:600px;margin:0 auto}.mec-intro-section .w-box-content.mec-intro-section-welcome h3{font-size:27px}a.mec-intro-section-link-tag.button.button-hero{margin:0 10px 40px}a.mec-intro-section-link-tag.button.button-primary.button-hero{color:#fff!important}a.mec-intro-section-link-tag.button.button-secondary.button-hero{color:#000!important}.mec-intro-section-ifarme iframe{border:1px solid #e7e7e7;border-radius:3px;padding:10px;box-shadow:0 3px 10px -6px rgba(0,0,0,.2)}.w-box-content.mec-intro-section-welcome p{margin-bottom:0}.mec-tooltip a:focus{box-shadow:none}#mec_booking_form .mec-options-fields,#mec_modules_form .mec-options-fields,#mec_settings_form .mec-options-fields,#mec_single_form .mec-options-fields{padding-bottom:150px!important}#mec_taxes_fees_container_toggle{margin-bottom:60px}#mec_taxes_fees_container_toggle{margin-bottom:60px}.wns-be-sidebar li{position:relative}.wns-be-sidebar li .submneu-hover{position:absolute;top:-1px;right:-222px;width:220px;z-index:9;background:#fff;border:1px;border-style:solid;border-color:#dedede;margin:0;overflow:visible;opacity:0;visibility:hidden;transition:all .23s ease;padding-top:8px;padding-bottom:12px}.wns-be-sidebar li:hover{background:#fff}.wns-be-sidebar li:hover .submneu-hover{opacity:1;visibility:visible}.wns-be-sidebar li .submneu-hover a{background:#fff;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 26px}.wns-be-sidebar li .submneu-hover a:hover{background:#f6f6f6;color:#222}.wns-be-sidebar li .submneu-hover:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-15px;top:14px;border-right-color:#c5c5c5;right:0}.wns-be-sidebar li .submneu-hover:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-14px;top:14px}.wns-be-sidebar li a:focus,.wns-be-sidebar li:focus{outline:-webkit-focus-ring-color auto 0;border:0;box-shadow:none}@media (max-width:480px){.wns-be-sidebar li .submneu-hover{width:175px;right:0}.wns-be-sidebar li .submneu-hover a{font-size:11px;padding:5px 5px 5px 20px}}.mec-tooltip:hover:after,.mec-tooltip:hover:before{display:none}.mec-tooltip{display:inline-flex;bottom:7px}.mec-tooltip .box{min-width:300px;max-width:600px;display:inline-block;left:26px;top:50%;transform:translateY(-50%);padding:0;margin-top:8px;background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.3;position:absolute;z-index:9999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s}#webnus-dashboard .mec-tooltip .box p,.mec-tooltip .box p{color:#fff;font-size:14px;line-height:1.3;margin:0;font-style:normal}.mec-tooltip:hover .box{visibility:visible;opacity:1}.mec-tooltip:hover .box{padding:20px;border-radius:8px}.mec-tooltip .box h5{color:#fff;font-size:17px;font-weight:600;margin:-30px -20px;padding:15px 0;text-align:center;margin-bottom:10px;background:#3a3f44;border-bottom:1px solid #30353a;border-radius:6px 6px 0 0;z-index:9999}#webnus-dashboard .mec-tooltip .box p a,.mec-tooltip .box p a{color:#40d9f1;margin-top:10px;margin-left:0;font-weight:400;position:relative;text-decoration:none;display:block;width:max-content}.mec-tooltip .box a:hover{color:#f90}.mec-tooltip .box:after{display:block;position:absolute!important;top:100%!important;right:50%!important;margin-top:-6px!important;margin-right:-6px!important;width:12px!important;height:24px!important;overflow:hidden!important;transform:rotate(-90deg)!important}.mec-tooltip .box:before{display:block;content:''!important;position:absolute!important;width:12px;height:12px;left:-10px!important;top:50%!important;transform:translate(50%,-50%) rotate(-45deg)!important;background-color:#535a61!important;box-shadow:0 8px 9px -4px #535a61!important;z-index:0!important}.mec-tooltip .box.top{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-tooltip .box.top:after{top:50%!important;right:100%!important}.mec-tooltip .box.top:before{left:50%!important;top:100%!important}.mec-tooltip .box.bottom{left:50%;top:auto;bottom:0;transform:translate(-50%,100%);margin-bottom:-20px;margin-left:-10px}.mec-tooltip .box.bottom:after{top:0!important;right:50%!important;background-color:#3a3f44!important}.mec-tooltip .box.bottom:before{left:50%!important;top:-7px!important;transform:translateX(-50%);background-color:#3a3f44!important}.mec-tooltip .box.left{left:auto;right:26px;top:50%;transform:translateY(-50%)}.mec-tooltip .box.left:before{right:0!important;left:auto!important;top:50%!important}form#mec_reg_fields_form input[type=radio]:before{content:"";display:inline-block;background:#fff;border-radius:18px;width:14px;height:14px;margin:-1px 0 0 -2px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32)}form#mec_reg_fields_form input[type=radio]:checked:before{border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff;width:4px;height:4px}form#mec_reg_fields_form input[type=radio]{min-height:0;margin-right:6px}form#mec_reg_fields_form label{margin-right:20px}@media(min-width:1200px) and (max-width:1366px){.mec-tooltip .box.left{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-tooltip .box.left:after{top:50%!important;right:100%!important}.mec-tooltip .box.left:before{left:50%!important;top:100%!important}.mec-tooltip .box{min-width:225px}.mec-tooltip .box h5{font-size:15px}.mec-tooltip .box .content{font-size:12px}}@media(max-width:1366px){.wns-be-container .wns-be-group-tab p{margin-top:0}}.mec-addons-notification-box-wrap .w-col-sm-12,.mec-cmsg-notification-box-wrap .w-col-sm-12{padding:0}.mec-addons-notification-box-wrap img{width:auto}.mec-addons-notification-box-image{width:555px;display:inline-block;vertical-align:top}.mec-addons-notification-box-content{width:calc(100% - 559px);display:inline-block}.mec-addons-notification-box-content p{margin-top:1%;line-height:1.5;font-size:16px}.mec-addons-notification-box-content .w-box-content{padding-top:0;padding-bottom:0}.mec-addons-notification-box-content ol{font-size:16px}.mec-addons-notification-box-content a{background:#38d5ed;color:#fff!important;padding:10px 26px;margin-top:5px;display:inline-block;border-radius:3px;text-transform:capitalize;font-size:16px;letter-spacing:.4px;transition:all .1s ease;font-weight:600;text-decoration:none}.mec-addons-notification-box-content a:hover{background:#000}.w-clearfix.w-box.mec-addons-notification-box-wrap span,.w-clearfix.w-box.mec-cmsg-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}}body.rtl .wns-be-sidebar{width:260px;float:right;position:relative}body.rtl .wns-be-main{margin-left:0;border-left:0;margin-right:260px;border-right:1px solid #dedede}body.rtl .w-box.mec-activation .LicenseField{direction:rtl}body.rtl .w-box.mec-activation input[name=MECPurchaseCode]{text-align:right;padding-right:20px}body.rtl #MECActivation .MECPurchaseStatus,body.rtl .addon-activation-form .MECPurchaseStatus{right:auto;left:-51px}body.rtl #webnus-dashboard .w-box.mec-activation input[type=submit]{right:auto;left:5px}body.rtl .wns-be-sidebar .wns-be-group-menu li a{padding:13px 20px 13px 4px}body.rtl .wns-be-sidebar .wns-be-group-tab-link-a span.wns-be-group-menu-title{padding-left:0;padding-right:24px}body.rtl .wns-be-sidebar .has-sub span.extra-icon{float:left}body.rtl .wns-be-sidebar .wns-be-group-tab-link-a span.extra-icon i{right:auto;left:10px}body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:after,body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:transparent;border-left-color:#fff;right:auto;left:-1px;top:10px}body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{border-right-color:transparent;border-left-color:#c5c5c5;right:auto;left:0}body.rtl .mec-col-1,body.rtl .mec-col-10,body.rtl .mec-col-11,body.rtl .mec-col-12,body.rtl .mec-col-2,body.rtl .mec-col-3,body.rtl .mec-col-4,body.rtl .mec-col-5,body.rtl .mec-col-6,body.rtl .mec-col-7,body.rtl .mec-col-8,body.rtl .mec-col-9{float:right;margin:0 1% 0 0}body.rtl .wns-be-sidebar li .submneu-hover{right:auto;left:-222px}body.rtl .wns-be-sidebar li .submneu-hover:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:auto;right:-1px;top:14px}body.rtl #mec_styles_form #mec_styles_CSS{direction:ltr}body.rtl .w-box.mec-activation{-moz-transform:scaleY(-1);-o-transform:scaleY(-1);-webkit-transform:scaleY(-1);transform:scaleX(-1)}body.rtl .w-box.mec-activation .w-box-content,body.rtl .w-box.mec-activation .w-box-head{-moz-transform:scaleY(-1);-o-transform:scaleY(-1);-webkit-transform:scaleY(-1);transform:scaleX(-1);display:block}body.rtl .w-box.mec-activation .w-box-head{width:100%}body.rtl .wns-be-container #wns-be-infobar:before{left:auto;right:0}body.rtl .wns-be-container .dpr-btn.dpr-save-btn{float:left}body.rtl .wns-be-container .wns-be-group-tab h2:before,body.rtl .wns-be-container .wns-be-group-tab h4:before{left:auto;right:0;margin-right:0;margin-left:5px}body.rtl #mec_gateways_form .mec-tooltip{float:left}.mec-details-addons-container{margin-top:20px}.mec-details-addons-wrap img{float:left;width:19%;margin-right:17px}.mec-details-addons-wrap{clear:both;margin-bottom:80px;display:block;position:relative}.mec-details-addons-wrap a{text-decoration:none}.mec-details-addons-wrap p{float:left;width:340px;margin-top:0;margin-bottom:30px}.mec-details-addons-title{font-weight:700}.mec-details-addons-title a{color:#444}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx{border-radius:10px!important;box-shadow:0 4px 38px rgba(0,0,0,.14)!important}body .crisp-client .crisp-1rjpbb7 .crisp-13qutdl,body .crisp-client .crisp-1rjpbb7 .crisp-13qutdl *,body .crisp-client .crisp-1rjpbb7 .crisp-9dgo7z,body .crisp-client .crisp-1rjpbb7 .crisp-9dgo7z *{font-family:proxima-nova,-apple-system,BlinkMacSystemFont,"Segoe UI",Catamaran,sans-serif!important}body .crisp-client .crisp-1rjpbb7 .crisp-145mbcr,body .crisp-client .crisp-1rjpbb7 .crisp-1jrqqbm:hover{background-color:#fff!important}body .crisp-client .crisp-1rjpbb7 .crisp-14u434g{border-color:#e7e8e9!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-1bkorcf .crisp-1vzg1qq{font-size:20px!important;width:14px!important;height:19px!important;opacity:.85}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-1bkorcf .crisp-1vzg1qq:hover{opacity:.99}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-1sps3eb .crisp-1vd2grm .crisp-12w4w1a{font-size:13px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-1sps3eb .crisp-1vd2grm .crisp-12w4w1a::-webkit-input-placeholder{color:#717273!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=visitor] .crisp-z89v5n .crisp-162m9xf{background-color:#008aff!important;color:#fff!important;box-shadow:none!important;border-radius:5px!important;padding:15px 25px 15px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=visitor] .crisp-z89v5n .crisp-162m9xf .crisp-1o2g4mc{color:#fff!important;font-size:13px!important;letter-spacing:.3px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-z89v5n .crisp-162m9xf{background-color:#f1f2f3!important;border-radius:5px!important;padding:15px 25px 15px!important;box-shadow:none!important;color:#121314!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-type=audio] .crisp-z89v5n .crisp-162m9xf{background-color:#d1d7dc!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=operator] .crisp-z89v5n .crisp-1o2g4mc{color:#121314!important;-webkit-text-fill-color:#121314!important;font-size:13px!important;letter-spacing:.3px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-mkirz6 .crisp-12qaym5 .crisp-39hskb{opacity:.4;margin-right:5px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-mkirz6 .crisp-12qaym5 .crisp-ehr6mw{opacity:.68;font-size:12px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg{background-image:linear-gradient(125deg,#008aff -10%,#0066b1 100%)!important;height:110px!important;padding-top:35px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-1uw6f17,body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-85evuk,body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-nu40j6{font-size:17px!important;line-height:28px!important;padding-top:10px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-kquevr .crisp-x94m06{background-color:#008aff!important;background-image:linear-gradient(125deg,#008aff -10%,#008af0 100%)!important;box-shadow:0 5px 34px -6px #008aff!important}body .crisp-client .crisp-1rjpbb7 .crisp-4oo1n4{background-color:transparent!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx[data-chat-status=ongoing] .crisp-1784wh6 .crisp-1xmtdlg .crisp-172kolj{margin-top:-10px!important}body .crisp-client .crisp-1rjpbb7[data-last-operator-face=false] .crisp-1rf4xdh .crisp-kquevr .crisp-x94m06 .crisp-16qgsyi .crisp-101bp3x[data-is-ongoing=false]{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1OCIgaGVpZ2h0PSI1NSIgdmlld0JveD0iMCAwIDU4IDU1Ij4NCiAgPGcgaWQ9ImNoYXQtc3ZncmVwby1jb21fMV8iIGRhdGEtbmFtZT0iY2hhdC1zdmdyZXBvLWNvbSAoMSkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgLTEuNSkiPg0KICAgIDxwYXRoIGlkPSJQYXRoXzEiIGRhdGEtbmFtZT0iUGF0aCAxIiBkPSJNMjksMS41YzE2LjAxNiwwLDI5LDExLjY0MSwyOSwyNmEyNC4wMSwyNC4wMSwwLDAsMS00LjgsMTQuMzE4Yy40LDQuNzQ1LDEuNTQyLDExLjQyOCw0LjgsMTQuNjgyLDAsMC05Ljk0My0xLjQtMTYuNjc3LTUuNDYybC0uMDIyLjAwOWMtMi43NjQtMS44LTUuNTMyLTMuNjU2LTYuMS00LjEyNmExLDEsMCwwLDAtMS4zMy0uMjc3LDEuMDE3LDEuMDE3LDAsMCwwLS40ODkuODQ4Yy0uMDEuNjIyLjAwNS43ODQsNS41ODUsNC40MjFBMzEuOTE0LDMxLjkxNCwwLDAsMSwyOSw1My41Yy0xNi4wMTYsMC0yOS0xMS42NDEtMjktMjZTMTIuOTg0LDEuNSwyOSwxLjVaIiBmaWxsPSIjZmZmIi8+DQogICAgPGNpcmNsZSBpZD0iRWxsaXBzZV8xIiBkYXRhLW5hbWU9IkVsbGlwc2UgMSIgY3g9IjMiIGN5PSIzIiByPSIzIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMiAyNC41KSIgZmlsbD0iIzAwOGFmZiIvPg0KICAgIDxjaXJjbGUgaWQ9IkVsbGlwc2VfMiIgZGF0YS1uYW1lPSJFbGxpcHNlIDIiIGN4PSIzIiBjeT0iMyIgcj0iMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjYgMjQuNSkiIGZpbGw9IiMwMDhhZmYiLz4NCiAgICA8Y2lyY2xlIGlkPSJFbGxpcHNlXzMiIGRhdGEtbmFtZT0iRWxsaXBzZSAzIiBjeD0iMyIgY3k9IjMiIHI9IjMiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQwIDI0LjUpIiBmaWxsPSIjMDA4YWZmIi8+DQogIDwvZz4NCjwvc3ZnPg0K)!important;height:31px!important;top:16px!important;left:14px!important}body .csh-category-item a h6{text-align:left}.mec-form-row.mec-syn-schedule{background:#f7f7f7;padding:20px;border:1px solid #eee;box-shadow:0 1px 11px rgba(0,0,0,.034);margin-bottom:20px}.mec-form-row.mec-syn-schedule p{padding-left:26px}.mec-form-row.mec-syn-schedule h2{margin-top:0}.mec-form-row.mec-syn-schedule h4{margin:10px 0}li.wns-be-group-menu-li.mec-settings-menu .mec-settings-submenu{position:absolute;top:-1px;right:-222px;width:220px;z-index:9;background:#fff;border:1px;border-style:solid;border-color:#dedede;margin:0;overflow:visible;opacity:0;visibility:hidden;transition:all .23s ease;padding-top:8px;padding-bottom:12px}li.wns-be-group-menu-li.mec-settings-menu:hover>.mec-settings-submenu{visibility:visible;opacity:1}.mec-settings-menu .mec-settings-submenu:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-15px;top:14px;border-right-color:#c5c5c5;right:0}.mec-settings-menu .mec-settings-submenu:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-14px;top:14px}.wns-be-sidebar .mec-settings-menu .mec-settings-submenu a{background:#fff;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 26px}.mec-form-row.mec-skin-countdown-date-format-container input[type=text],.mec-form-row.mec-skin-grid-date-format-container input[type=text],.mec-form-row.mec-skin-list-date-format-container input[type=text],.mec-skin-options-container input[type=text]{max-width:unset}.wn-mec-select{width:32.33333333%!important;clear:unset!important}.wn-mec-select{-webkit-tap-highlight-color:transparent;background-color:#fff;border-radius:3px;border:1px solid #ddd;margin-bottom:8px;position:relative;text-align:left!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;box-shadow:0 3px 13px -5px rgba(0,0,0,.1),inset 0 1px 2px rgba(0,0,0,.07)}.wn-mec-select:hover{border-color:#dbdbdb}.wn-mec-select.open .list{overflow:unset;width:100%;margin:0}.wn-mec-select .list{background-color:#fff;border-radius:2px;box-shadow:0 2px 33px -2px rgba(0,0,0,.2),inset 0 1px 2px rgba(0,0,0,.07);box-sizing:border-box;margin-top:4px;opacity:0;overflow:hidden;padding:0;pointer-events:none;position:absolute;top:100%;left:0;-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0;transform-origin:50% 0;-webkit-transform:scale(.75) translateY(-21px);-ms-transform:scale(.75) translateY(-21px);transform:scale(.75) translateY(-21px);-webkit-transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;z-index:9}.wn-mec-select{-webkit-tap-highlight-color:transparent;background-color:#fff;border-radius:5px;border:solid 1px #e8e8e8;box-sizing:border-box;clear:both;cursor:pointer;display:block;float:left;font-family:inherit;font-size:14px;font-weight:400;height:42px;line-height:40px;outline:0;padding-left:18px;padding-right:30px;position:relative;text-align:left!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap;width:auto}.wn-mec-select:hover{border-color:#dbdbdb}.wn-mec-select:after{border-bottom:2px solid #999;border-right:2px solid #999;content:'';display:block;height:5px;margin-top:-4px;pointer-events:none;position:absolute;right:12px;top:50%;-webkit-transform-origin:66% 66%;-ms-transform-origin:66% 66%;transform-origin:66% 66%;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition:all .15s ease-in-out;transition:all .15s ease-in-out;width:5px}.wn-mec-select.open:after{-webkit-transform:rotate(-135deg);-ms-transform:rotate(-135deg);transform:rotate(-135deg)}.wn-mec-select.open .list{opacity:1;pointer-events:auto;-webkit-transform:scale(1) translateY(0);-ms-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}.wn-mec-select.disabled{border-color:#ededed;color:#999;pointer-events:none}.wn-mec-select.disabled:after{border-color:#ccc}.wn-mec-select.wide{width:100%}.wn-mec-select.wide .list{left:0!important;right:0!important}.wn-mec-select.right{float:right}.wn-mec-select.right .list{left:auto;right:0}.wn-mec-select.small{font-size:12px;height:36px;line-height:34px}.wn-mec-select.small:after{height:4px;width:4px}.wn-mec-select .list{background-color:#fff;border-radius:5px;box-shadow:0 0 0 1px rgba(68,68,68,.11);box-sizing:border-box;margin-top:4px;opacity:0;overflow:hidden;padding:0;pointer-events:none;position:absolute;top:100%;left:0;-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0;transform-origin:50% 0;-webkit-transform:scale(.75) translateY(-21px);-ms-transform:scale(.75) translateY(-21px);transform:scale(.75) translateY(-21px);-webkit-transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;z-index:9}.wn-mec-select .list:hover .option:not(:hover){background-color:transparent!important}.wn-mec-select .option{cursor:pointer;font-weight:400;list-style:none;min-height:40px;outline:0;text-align:left;position:relative;font-size:12px!important;padding:1px 12px!important;margin:0!important;line-height:28px!important;min-height:28px!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.wn-mec-select .option .wn-hover-img-sh img{position:absolute;padding:3px;top:-1px;left:100%;box-shadow:0 4px 42px -5px rgba(0,0,0,.16);visibility:hidden;opacity:0;border:1px solid #e3e3e3;border-radius:2px;z-index:99999999;background:#fff}.wn-mec-select .option:hover .wn-hover-img-sh img{visibility:visible;opacity:1}.wn-mec-select .option.focus,.wn-mec-select .option.selected.focus,.wn-mec-select .option:hover{background-color:#f6f6f6}.wn-mec-select .option.selected{font-weight:700}.wn-mec-select .option.disabled{background-color:transparent;color:#999;cursor:default}.no-csspointerevents .wn-mec-select .list{display:none}.no-csspointerevents .wn-mec-select.open .list{display:block}.mec-custom-nice-select ul.list li.option{width:30%!important;float:left!important;min-height:135px!important;height:135px;margin:1.66%!important;box-sizing:border-box;text-align:center;padding:10px!important;border-radius:3px;border:1px solid #eee;box-shadow:0 1px 3px rgba(0,0,0,.025);background:#fff!important}.mec-custom-nice-select ul.list li.option:hover{box-shadow:0 2px 7px rgba(0,0,0,.06);borde-color:#e0e0e0}.mec-custom-nice-select .list:hover .option:not(:hover),.mec-custom-nice-select ul.list:hover li.option{background:#fff!important}.mec-custom-nice-select ul.list{min-width:600px!important;padding:20px 10px!important;background:#fcfbfd;border:1px solid #e9e9e9;box-shadow:0 1px 4px rgba(0,0,0,.05)}.mec-custom-nice-select ul.list li.option.selected{border:1px solid #40d9f1;box-shadow:0 1px 8px -3px #40d9f1 inset;color:#00cae6;padding:12px 0 0 0!important}.mec-custom-nice-select .wn-img-sh img{margin:4px 0 1px 1px;line-height:1;max-width:68px;max-height:56px;filter:grayscale(1);-webkit-filter:grayscale(1);transition:all .22s ease;-webkit-transition:all .22s ease;-moz-transition:all .22s ease;-ms-transition:all .22s ease;-o-transition:all .22s ease}.wn-mec-select .option.focus .wn-img-sh img,.wn-mec-select .option.selected.focus .wn-img-sh img,.wn-mec-select .option:hover .wn-img-sh img{background-color:#f6f6f6;filter:grayscale(0);-webkit-filter:grayscale(0)}@media(max-width:768px){.wn-mec-select{width:45%!important}.mec-custom-nice-select ul.list{margin-left:-24px!important;min-width:404px!important}.mec-custom-nice-select ul.list li.option{width:46.6%!important}.wn-hover-img-sh{display:none}}@media(max-width:480px){.wn-mec-select{width:100%!important}.mec-custom-nice-select ul.list{min-width:337px!important}}@media(max-width:320px){.mec-custom-nice-select ul.list li.option{width:100%!important}.mec-custom-nice-select ul.list{min-width:298px!important}}.mec-sed-methods li{line-height:28px;padding-left:38px;position:relative}.mec-sed-methods li:before{margin-right:0}.mec-sed-methods li:before{border-radius:18px}.mec-custom-nice-select ul.list li .wn-mec-text:after,.mec-sed-methods li:before{content:"";position:absolute;display:inline-block;background:#fff;border-radius:2px;width:12px;height:12px;margin:-1px 0 0 -1px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32);border-radius:50%}.mec-custom-nice-select ul.list li .wn-mec-text{position:relative;padding-top:0;padding-bottom:28px}.mec-custom-nice-select ul.list li .wn-mec-text:after{left:calc(50% - 7px);top:auto;bottom:1px}.mec-custom-nice-select ul.list li .wn-img-sh{line-height:1}.mec-sed-methods li:before{left:9px;top:calc(50% - 7px)}.mec-custom-nice-select ul.list li.option.selected .wn-mec-text:after,.mec-sed-methods li.active:before{width:4px;height:4px;border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff}.menu-icon-mec-books .wp-menu-image img,.toplevel_page_mec-intro .wp-menu-image img{width:18px!important;padding-top:7px!important}.mec-add-booking-tabs-wrap,.mec-add-event-tabs-wrap,.mec-create-shortcode-tabs-wrap{display:flex;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox}.mec-add-booking-tabs-left,.mec-add-event-tabs-left,.mec-create-shortcode-tabs-left{flex:1}.mec-add-booking-tabs-right,.mec-add-event-tabs-right,.mec-create-shortcode-tabs-right{flex:6}a.mec-add-booking-tabs-link,a.mec-add-event-tabs-link,a.mec-create-shortcode-tabs-link{display:block}.mec-booking-tab-content,.mec-create-shortcode-tab-content,.mec-event-tab-content{display:none;transition:all .3s ease}.mec-booking-tab-content.mec-tab-active,.mec-create-shortcode-tab-content.mec-tab-active,.mec-event-tab-content.mec-tab-active{display:block}.mec-add-booking-tabs-wrap,.mec-add-event-tabs-wrap{background:#fff;margin:-6px -12px -12px}.mec-create-shortcode-tabs-wrap{margin:-30px -22px -42px}.mec-add-booking-tabs-left,.mec-add-event-tabs-left,.mec-create-shortcode-tabs-left{padding:0 0 38px;background:#fff;min-width:210px}.mec-add-booking-tabs-left a,.mec-add-event-tabs-left a,.mec-create-shortcode-tabs-left a{line-height:16px;font-size:13px;font-weight:600;letter-spacing:.3px;color:#6a6f77;text-decoration:none;background:#f7f7f7;padding:13px 20px;border-bottom:1px solid #e3e3e3;outline:0;box-shadow:none;transition:all .2s ease}.mec-add-booking-tabs-left a:hover,.mec-add-event-tabs-left a:hover,.mec-create-shortcode-tabs-left a:hover{color:#008aff;background:#fff}.mec-add-booking-tabs-left a.mec-tab-active,.mec-add-event-tabs-left a.mec-tab-active,.mec-create-shortcode-tabs-left a.mec-tab-active{background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff;margin:0 -6px;border-radius:5px;box-shadow:0 2px 12px -5px #36a2ff;border-bottom-color:transparent;position:relative}.mec-add-booking-tabs-right,.mec-add-event-tabs-right,.mec-create-shortcode-tabs-right{padding:0 30px 40px;border-left:1px solid #e2e2e2}.mec-booking-tab-content.mec-tab-active,.mec-create-shortcode-tab-content.mec-tab-active,.mec-event-tab-content.mec-tab-active{animation:fadeEffect2 .31s}@media (max-width:550px){.mec-add-booking-tabs-left,.mec-add-event-tabs-left,.mec-create-shortcode-tabs-left{min-width:100px}.mec-add-booking-tabs-left a,.mec-add-event-tabs-left a,.mec-create-shortcode-tabs-left a{font-size:11px;padding:12px 8px;line-height:1.2;letter-spacing:0}}@keyframes fadeEffect2{from{opacity:0;transform:translateX(11px)}to{opacity:1;transform:translateX(0)}}.mec-form-row .mec-col-8 label{padding-right:20px}#mec-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]{border:solid 1px #ddd;border-radius:2px;height:40px;line-height:38px;padding-left:10px;box-shadow:0 3px 10px -2px rgba(0,0,0,.05),inset 0 1px 2px rgba(0,0,0,.02)}.mec-calendar-metabox .wn-mec-select.open .list{border-radius:0 0 2px 2px;box-shadow:0 0 0 1px #ddd,0 2px 6px rgba(0,0,0,.07)}.mec-calendar-metabox .mec-custom-nice-select.open ul.list{border-radius:3px;box-shadow:0 2px 6px rgba(0,0,0,.07);margin-left:0!important;transform:translateX(-50%);left:50%}.mec-custom-nice-select ul.list li.option.selected .wn-mec-text:after{border:6px solid #40d9f1;box-shadow:0 3px 16px -3px #40d9f1}.mec-form-row input[type=checkbox]{background-color:#fff;border:1px solid #cacece;box-shadow:0 1px 2px rgba(0,0,0,.05);padding:9px;border-radius:3px;min-width:24px;min-height:24px;display:inline-block;transition:all .18s ease;outline:0;margin:2px 4px 4px 0}.mec-form-row input[type=checkbox]:focus{outline:0}.mec-form-row input[type=checkbox]:hover{border-color:#62b6ff}.mec-form-row input[type=checkbox]:checked{box-shadow:0 1px 6px -2px #008aff;border-color:#008aff;background:#008aff;border-radius:2px;position:relative}.mec-form-row.mec-switcher input[type=checkbox]{position:absolute}.mec-form-row input[type=checkbox]:checked:before{content:"";font:normal;position:absolute;top:12px;left:8px;border-right:2px solid transparent;border-bottom:2px solid transparent;transform:rotate(45deg);transform-origin:0 100%;color:#fff;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards}@keyframes checkbox-check{0%{width:0;height:0;border-color:#fff;transform:translate3d(0,0,0) rotate(45deg)}33%{width:5px;height:0;transform:translate3d(0,0,0) rotate(45deg)}100%{width:5px;height:11px;border-color:#fff;transform:translate3d(0,-11px,0) rotate(45deg)}}.mec-form-row input+span.mec-tooltip,.mec-form-row select+span.mec-tooltip{bottom:10px}.mec-form-row label+span.mec-tooltip{bottom:8px}.mec-form-row textarea+span.mec-tooltip{bottom:auto;vertical-align:top;top:12px}.mec-form-row span+span.mec-tooltip{bottom:0;vertical-align:middle}.mec-form-row .mec-col-8 input[type=text],.mec-form-row .mec-col-8 select,.mec-form-row .mec-col-8 span.mec-archive-skins{vertical-align:top}.mec-form-row .mec-col-8 span.mec-archive-skins input[type=text]{max-width:225px}.mec-form-row input:disabled{opacity:.6;background:#f6f6f6}.wns-be-group-tab h5{font-size:16px;font-weight:600;color:#444;margin:45px 0 25px}.mec-form-row textarea{height:auto;margin-bottom:0;min-height:60px}.mec-form-row .wp-picker-container input[type=text].wp-color-picker{height:25px;vertical-align:top;margin:0}.mec-form-row .wp-picker-container label{margin:0}.mec-image-select-wrap li span:hover{border-color:#fff;box-shadow:0 1px 8px rgba(0,0,0,.12)}.mec-message-categories li.mec-acc-label:after{content:"\e604";font-family:simple-line-icons;speak:none;font-style:normal;font-weight:400;display:block;font-size:13px;color:#999;position:absolute;right:27px;top:26px}.mec-message-categories>li.mec-acc-label[data-status=open]:after{content:"\e607";color:#008aff}.mec-message-categories>li.mec-acc-label[data-status=open]{color:#008aff}.mec-message-categories>li.mec-acc-label:last-of-type{border-bottom:none}.mec-message-categories>li.mec-acc-label[data-status=open]{border-bottom:1px solid #e6e6e6}.mec-form-row ul.mec-message-categories{box-shadow:0 2px 16px rgba(0,0,0,.03);border-radius:5px;overflow:hidden;margin-top:30px;background:#f5f5f5;border:2px solid #e6e6e6;max-width:700px}.mec-form-row ul.mec-message-categories li ul{padding:10px 40px 40px;margin:0 -30px 0;background:#f5f5f5;box-shadow:inset 0 4px 7px rgba(0,0,0,.04);cursor:default}.mec-form-row ul.mec-message-categories ul label{margin:25px 8px 7px;font-weight:600!important;font-size:13px;color:#888;cursor:default}.wns-be-sidebar li:hover a i,.wns-be-sidebar>li:hover a{color:#008aff}.mec-form-row.mec-skin-list-date-format-container span.mec-tooltip{top:2px}.mec-calendar-metabox .mec-form-row input[type=checkbox],.mec-meta-box-fields .mec-form-row input[type=checkbox]{margin-right:6px}#mec_meta_box_downloadable_file_options #mec_downloadable_file_remove_image_button,.mec-meta-box-fields .mec-form-row .button:not(.wp-color-result){height:37px;margin-top:1px;box-shadow:inset 0 2px 4px #fff,inset 0 -2px 4px rgba(0,0,0,.05),0 2px 2px rgba(0,0,0,.06)}#mec_meta_box_downloadable_file_options #mec_downloadable_file_remove_image_button{margin-top:12px}#mec-read-more .mec-form-row span.mec-tooltip{top:2px;left:-4px}#mec-search-settings{border-radius:21px;min-height:32px;box-shadow:inset 0 1px 2px rgba(0,0,0,.06);padding:9px 10px 12px 34px;margin-right:10px;color:#7c838a;font-size:13px;width:260px;background:#f5f5f5;border:none;z-index:1;transition:all .18s ease;outline:0;line-height:normal}#mec-search-settings:focus{background:#fff;box-shadow:0 1px 6px rgba(0,0,0,.07),0 0 0 1px #e6e6e6;width:270px}.mec-search-settings-wrap{display:inline-block;position:relative}.mec-search-settings-wrap i{position:absolute;left:14px;top:14px;font-size:13px;color:#7e8c98;display:block;z-index:2}#mec-search-settings::-webkit-input-placeholder{color:#7c838a}#mec-search-settings::-moz-placeholder{color:#7c838a}#mec-search-settings:-ms-input-placeholder{color:#7c838a}#mec-search-settings:-moz-placeholder{color:#7c838a}#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:#008aff}#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;margin-bottom:8px;padding:0 6px;border-radius:2px;border:1px solid #ddd;box-shadow:inset 0 1px 6px rgba(0,0,0,.07);background-color:#fff;color:#32373c;outline:0;transition:50ms border-color ease-in-out;min-width:200px;font-size:14px}.mec-add-event-tabs-wrap .select2-selection,.mec-create-shortcode-tab-content .select2-selection{border:none;background:0 0;padding-top:3px;width:100%;height:100%}.mec-add-event-tabs-wrap .select2-container--default.select2-container--focus .select2-selection,.mec-create-shortcode-tab-content .select2-container--default.select2-container--focus .select2-selection{border:none!important;outline:0}.mec-add-event-tabs-wrap .select2-container--default .select2-selection--single .select2-selection__arrow,.mec-create-shortcode-tab-content .select2-container--default .select2-selection--single .select2-selection__arrow{top:5px;right:4px}.fs-webform-container div .fserv-container{width:100%!important;max-width:none!important;min-height:208px!important;box-shadow:0 1px 16px rgba(0,0,0,.034)!important;border-radius:2px!important;padding:0!important;margin-bottom:0!important;margin-top:30px!important}.fserv-container .fserv-form-name{font-weight:600!important;position:relative!important;font-size:20px!important;padding:20px!important;border-bottom:1px solid #ededed!important;text-align:left!important;margin:0!important}.fserv-form-description{padding:10px 30px!important;margin:1em 0 0!important;line-height:1.5!important;font-size:16px!important}.fserv-container form{padding:0!important;padding-left:28px!important}.fserv-container .fserv-label{display:none!important}.fserv-field{display:inline-block;width:41%!important;padding:0!important;margin:0!important;margin-right:25px!important}.fserv-field+div:not(.fserv-field){margin:0!important;border:none!important;text-align:left!important;padding-left:4px!important;margin-top:0!important;padding-top:0!important;display:inline-block;margin-right:10px!important}.fserv-container .powered-by{display:none!important}#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-userinfo{width:calc(100% - 65px)}.mec-steps-panel{padding:35px;position:relative;display:flex;flex-direction:column;justify-content:space-between}.mec-steps-header-userinfo span{display:inline-block;vertical-align:middle}.mec-steps-header-userinfo span img{height:40px;border-radius:50px;margin-right:8px;vertical-align:middle}.mec-steps-header-userinfo span.mec-steps-header-name{font-size:14px;color:#778182}span.mec-steps-header-add-text{color:#839294;font-size:12px;margin-left:5px}.mec-steps-header-settings a{height:100%;display:block;padding-top:11px;text-decoration:none;font-size:12px;color:#707070}.mec-steps-header-settings a i{color:#1aaffb;font-size:16px;vertical-align:text-top;margin-right:5px}.mec-next-previous-buttons{clear:both}.mec-next-previous-buttons button.mec-button-next{float:right;background:#008aff;border:none;color:#fff;cursor:pointer;width:123px;text-align:left;padding:8px 18px 9px;border-radius:3px;font-size:14px;box-shadow:0 5px 10px 0 rgba(0,138,255,.3);transition:all .3s ease;outline:0}.mec-next-previous-buttons button:hover{background:#000;box-shadow:0 5px 10px 0 rgba(0,0,0,.3)}.mec-next-previous-buttons button.mec-button-next img{position:absolute;top:16px;right:18px}.mec-next-previous-buttons button{position:relative}.mec-next-previous-buttons button.mec-button-prev{background:#fff;border:none;color:#000;cursor:pointer;width:123px;text-align:right;padding:8px 15px 9px;border-radius:3px;font-size:14px;box-shadow:0 5px 10px 0 rgba(11,121,125,.01);transition:all .3s ease;outline:0}.mec-next-previous-buttons button.mec-button-prev img{position:absolute;top:16px;left:18px}.mec-next-previous-buttons button.mec-button-prev:hover{background:#000;box-shadow:0 5px 10px 0 rgba(0,0,0,.3);color:#fff}.mec-next-previous-buttons button.mec-button-new{background:#008aff;float:right;border:none;color:#fff;cursor:pointer;width:154px;text-align:left;padding:8px 18px 9px;border-radius:3px;font-size:14px;box-shadow:0 5px 10px 0 rgba(0,138,255,.3);transition:all .3s ease;outline:0}.mec-next-previous-buttons button.mec-button-new:hover{background:#000;box-shadow:0 5px 10px 0 rgba(0,0,0,.3)}.mec-next-previous-buttons button.mec-button-new img{vertical-align:sub;margin-left:-3px;margin-right:8px}div#mec_popup_shortcode_form{height:calc(100% - 37px)}.mec-steps-content-container{display:flex;flex-direction:column;height:100%}.mec-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}div#mec_meta_box_date_form .mec-form-row{margin-bottom:9px}.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_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 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}.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}.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}@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_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 .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:#282828;border-color:#353535;box-shadow:0 1px 6px -2px #000}.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 ul#adminmenu a.wp-has-current-submenu:after,.mec-admin-dark-mode 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_bfixed_form_fields button,.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_reg_form_field_types button,.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 .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-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_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-addon-box-version,.mec-admin-dark-mode .mec-calendar-metabox .wn-mec-select,.mec-admin-dark-mode .mec-form-row input[type=number],.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_event_form_fields button,.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 #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-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 .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=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-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{background:#282828;background:linear-gradient(95deg,#282828 0,#222 50%,#282828 100%);color:#d2d2d2}.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-container .wns-be-group-tab h4,.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;background:#000}.mec-admin-dark-mode .wns-be-sidebar .wns-be-group-menu li a:hover{color:#008aff}.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 .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:#000;background:linear-gradient(95deg,#1f1f1f 0,#222 50%,#000 100%)}.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 .attachments-browser .media-toolbar,.mec-admin-dark-mode .media-frame-content,.mec-admin-dark-mode .media-modal-content,.mec-admin-dark-mode .media-modal-content h1,.mec-admin-dark-mode .media-modal-content h2,.mec-admin-dark-mode .media-modal-content p,.mec-admin-dark-mode .media-sidebar{background:#000;color:#d2d2d2!important;border-color:#282828}.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.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-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:#0000!important}.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:#000!important;border-color:#333!important;color:#fff!important}.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 .media-router .media-menu-item:focus{box-shadow:unset}.mec-admin-dark-mode .media-router .media-menu-item{background:#282828;color:#ffff}.mec-admin-dark-mode .media-router .media-menu-item:hover{color:#d2d2d2}.mec-admin-dark-mode .media-router .active,.mec-admin-dark-mode .media-router .media-menu-item.active:last-child{background:#000;color:#666;border-color:#282828}.mec-admin-dark-mode .attachment-info,.mec-admin-dark-mode .media-frame-toolbar .media-toolbar{border-color:#282828}.mec-admin-dark-mode .wp-core-ui .attachment-preview,.mec-admin-dark-mode.post-type-mec-events .button:hover{background:#000!important}.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{padding:4px 13px 4px 13px;margin-right:4px}#mec_widget_total_bookings .w-box.total-bookings ul li:last-child{margin-right:0}#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:111px}.event-status-schema{background:#f7f7f7;padding:20px;margin-bottom:15px;border-radius:3px}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}@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-add-booking-tabs-right,.mec-add-event-tabs-right,.mec-create-shortcode-tabs-right{padding-left:14px;padding-right:14px}#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}
assets/js/backend.js CHANGED
@@ -22,19 +22,24 @@ jQuery(document).ready(function($)
22
  });
23
 
24
  // MEC Accordion
25
- $('.mec-accordion .mec-acc-label').on('click', function()
26
  {
27
- var key = $(this).attr('data-key');
28
- var status = $(this).attr('data-status');
29
-
30
  // Open the accordion
31
  if(status === 'close')
32
  {
33
  $('.mec-accordion .mec-acc-label ul').hide();
34
  $('.mec-accordion .mec-acc-label').attr('data-status', 'close');
35
- $(this).attr('data-status', 'open');
36
  $('#mec-acc-'+key).show();
 
 
 
 
37
  }
 
38
  });
39
 
40
  // MEC Select, Deselect, Toggle
@@ -177,10 +182,11 @@ jQuery(document).ready(function($)
177
  {
178
  var search_label = $(this).find('label.mec-col-3').text().toLowerCase();
179
  var search_title = $(this).find('h4.mec-form-subtitle').text().toLowerCase();
 
180
  if ((!search_label || search_label == "") && (!search_title || search_title == "")) {
181
  return false;
182
  }
183
- if ($(this).find('label.mec-col-3').text().toLowerCase().indexOf(value) > -1 || $(this).find('h4.mec-form-subtitle').text().toLowerCase().indexOf(value) > -1) {
184
  $('.mec-options-fields').hide();
185
  $('.mec-options-fields').removeClass('active');
186
  $('.wns-be-group-menu .subsection .mec-settings-menu li').removeClass('active');
@@ -207,6 +213,29 @@ jQuery(document).ready(function($)
207
  searchStr.show();
208
  searchStr.addClass('active')
209
  });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
210
  }
211
  }
212
  });
22
  });
23
 
24
  // MEC Accordion
25
+ $('.mec-accordion .mec-acc-label .mec-acc-cat-name').on('click', function()
26
  {
27
+ var key = $(this).parent().attr('data-key');
28
+ var status = $(this).parent().attr('data-status');
29
+
30
  // Open the accordion
31
  if(status === 'close')
32
  {
33
  $('.mec-accordion .mec-acc-label ul').hide();
34
  $('.mec-accordion .mec-acc-label').attr('data-status', 'close');
35
+ $(this).parent().attr('data-status', 'open');
36
  $('#mec-acc-'+key).show();
37
+ } else {
38
+ $('.mec-accordion .mec-acc-label ul').hide();
39
+ $('.mec-accordion .mec-acc-label').attr('data-status', 'close');
40
+ $('#mec-acc-'+key).hide();
41
  }
42
+
43
  });
44
 
45
  // MEC Select, Deselect, Toggle
182
  {
183
  var search_label = $(this).find('label.mec-col-3').text().toLowerCase();
184
  var search_title = $(this).find('h4.mec-form-subtitle').text().toLowerCase();
185
+ var search_title = $(this).find('.mec-form-row').text().toLowerCase();
186
  if ((!search_label || search_label == "") && (!search_title || search_title == "")) {
187
  return false;
188
  }
189
+ if ($(this).find('label.mec-col-3').text().toLowerCase().indexOf(value) > -1 || $(this).find('h4.mec-form-subtitle').text().toLowerCase().indexOf(value) > -1 || $(this).find('.mec-form-row').text().toLowerCase().indexOf(value) > -1) {
190
  $('.mec-options-fields').hide();
191
  $('.mec-options-fields').removeClass('active');
192
  $('.wns-be-group-menu .subsection .mec-settings-menu li').removeClass('active');
213
  searchStr.show();
214
  searchStr.addClass('active')
215
  });
216
+
217
+ jQuery("#wns-be-content .mec-form-row").each(function() {
218
+ if (value != "" && $(this).text().search(new RegExp(value, 'gi')) != -1) {
219
+ jQuery(this).addClass("results");
220
+ } else if (value != "" && $(this).text().search(value) != 1) {
221
+ jQuery(this).addClass("noresults");
222
+ }
223
+ });
224
+
225
+ jQuery("#wns-be-content ul li").each(function() {
226
+ if (value != "" && $(this).text().search(new RegExp(value, 'gi')) != -1) {
227
+ jQuery(this).addClass("enable");
228
+ } else if (value != "" && $(this).text().search(value) != 1) {
229
+ jQuery(this).addClass("disable");
230
+ }
231
+ });
232
+
233
+ }
234
+ if ( !value || value == "" ) {
235
+ jQuery(".results").removeClass("results");
236
+ jQuery(".noresults").removeClass("noresults");
237
+ jQuery(".enable").removeClass("enable");
238
+ jQuery(".disable").removeClass("disable");
239
  }
240
  }
241
  });
changelog.txt CHANGED
@@ -1,4 +1,28 @@
1
- v 5.8.521 July 2020
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  - Added: Booking button to all skins and ability to open the booking button in modal window (pro)
3
  - Added: An ability to change subject and content of notifications per event (pro)
4
  - Added: %%book_datetime%% placeholder to show book date and time together (pro)
1
+ v 5.9.029 July 2020
2
+ - Added: An ability to import bookings from CSV file (pro)
3
+ - Added: An option to restrict the booking cancellation time (pro)
4
+ - Added: Cost and categories to the RSS feed
5
+ - Added: Booking fields to the CSV and MS Excel export of the events (pro)
6
+ - Added: Event end date and time to the booking CSV export (pro)
7
+ - Added: Some hooks for customizing the events RSS feed
8
+ - Improved: The booking system by removing transaction data after removing the booking (pro)
9
+ - Improved: Add booking from the backend to insert attendee email in the booking title in addition to the attendee name (pro)
10
+ - Improved: The load time of simple style of monthly skin
11
+ - Improved: The way of printing ticket variations in booking export (pro)
12
+ - Improved: The notification per event system (pro)
13
+ - Improved: Searching on MEC settings
14
+ - Fixed: Update events when custom fields form has required fields
15
+ - Fixed: Some issues related to booking fixed fields (pro)
16
+ - Fixed: Some issues regarding event fields
17
+ - Fixed: A conflict in booking edit form when some new required fields added to booking form (pro)
18
+ - Fixed: Search widget related to the default value of month filter
19
+ - Fixed: Report email about sender name and email (pro)
20
+ - Fixed: Booking expired events in some conditions (pro)
21
+ - Fixed: Showing google ReCaptcha when the event is sold (pro)
22
+ - Fixed: Showing wrong end dates for multiple-day events in the single event page
23
+ - Fixed: Booking ongoing events when the already even started (pro)
24
+
25
+ v 5.8.5 – 21 July 2020
26
  - Added: Booking button to all skins and ability to open the booking button in modal window (pro)
27
  - Added: An ability to change subject and content of notifications per event (pro)
28
  - Added: %%book_datetime%% placeholder to show book date and time together (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: 2020-07-21 17:36+0430\n"
5
- "PO-Revision-Date: 2020-07-21 17:36+0430\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: cs_CZ\n"
@@ -22,9 +22,10 @@ msgstr ""
22
  "X-Poedit-SearchPathExcluded-0: *.js\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:37 app/features/ix/thirdparty.php:24
26
- #: app/features/mec.php:1140 app/features/mec.php:1170
27
- #: app/features/mec/dashboard.php:63 app/widgets/MEC.php:33
 
28
  msgid "Modern Events Calendar"
29
  msgstr "Moderní kalendář událostí"
30
 
@@ -97,8 +98,8 @@ msgstr "Barva události"
97
  msgid "Settings"
98
  msgstr "Nastavení"
99
 
100
- #: app/features/contextual.php:62 app/features/events.php:1563
101
- #: app/features/events.php:2378 app/features/mec/booking.php:524
102
  #: app/features/mec/support.php:29 app/libraries/main.php:564
103
  msgid "Booking Form"
104
  msgstr "Rezervační formulář"
@@ -126,7 +127,7 @@ msgstr ""
126
  "www.youtube.com/embed/YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></"
127
  "iframe>"
128
 
129
- #: app/features/contextual.php:70 app/features/mec/booking.php:716
130
  #: app/features/mec/support-page.php:115 app/features/mec/support.php:36
131
  #: app/libraries/main.php:565
132
  msgid "Payment Gateways"
@@ -282,14 +283,14 @@ msgid "Exceptional Days"
282
  msgstr "Výjimečné dny"
283
 
284
  #: app/features/contextual.php:308 app/features/events.php:315
285
- #: app/features/mec/booking.php:96 app/features/mec/notifications.php:33
286
  #: app/features/mec/support-page.php:110 app/features/mec/support-page.php:114
287
  #: app/libraries/main.php:559 app/libraries/main.php:588
288
  #: app/libraries/main.php:672
289
  msgid "Booking"
290
  msgstr "Rezervace"
291
 
292
- #: app/features/contextual.php:318 app/features/mec/booking.php:346
293
  #: app/libraries/main.php:561
294
  msgid "Coupons"
295
  msgstr "Kupóny"
@@ -308,8 +309,8 @@ msgstr "Integrace Mailchimp"
308
  msgid "MEC Activation"
309
  msgstr "Aktivace MEC"
310
 
311
- #: app/features/dlfile.php:121 app/features/events.php:1568
312
- #: app/features/mec/booking.php:268 app/features/mec/settings.php:811
313
  #, fuzzy
314
  #| msgid "Download ICS file"
315
  msgid "Downloadable File"
@@ -372,7 +373,7 @@ msgstr "Přidat událost"
372
  msgid "Add New Event"
373
  msgstr "Přidat novou událost"
374
 
375
- #: app/features/events.php:171 app/features/ix.php:3930
376
  #: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:68
377
  #: app/skins/map/tpl.php:88
378
  msgid "No events found!"
@@ -395,7 +396,7 @@ msgstr "Zobrazit událost"
395
  msgid "No events found in Trash!"
396
  msgstr "V koši nebyly nalezeny žádné události!"
397
 
398
- #: app/features/events.php:192 app/features/events.php:3449
399
  #: app/features/mec/meta_boxes/display_options.php:1395
400
  #: app/features/mec/meta_boxes/search_form.php:31
401
  #: app/features/mec/meta_boxes/search_form.php:101
@@ -409,19 +410,19 @@ msgstr "V koši nebyly nalezeny žádné události!"
409
  #: app/features/mec/meta_boxes/search_form.php:654
410
  #: app/features/mec/meta_boxes/search_form.php:760
411
  #: app/features/mec/settings.php:885 app/features/mec/single.php:323
412
- #: app/features/search.php:68 app/libraries/main.php:5888
413
- #: app/libraries/main.php:5936 app/libraries/skins.php:939
414
- #: app/skins/single.php:854 app/skins/single/default.php:220
415
  #: app/skins/single/default.php:453 app/skins/single/m1.php:197
416
  #: app/skins/single/m2.php:120 app/skins/single/modern.php:140
417
  msgid "Category"
418
  msgstr "Kategorie"
419
 
420
- #: app/features/events.php:193 app/features/events.php:3404
421
  #: app/features/fes/form.php:822 app/features/mec.php:461
422
  #: app/features/mec/meta_boxes/filter.php:69
423
- #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5887
424
- #: app/libraries/main.php:5935
425
  msgid "Categories"
426
  msgstr "Kategorie"
427
 
@@ -509,14 +510,14 @@ msgstr "Datum a čas"
509
  msgid "Event Repeating"
510
  msgstr "Opakování události"
511
 
512
- #: app/features/events.php:344 app/features/events.php:1126
513
  #, fuzzy
514
  #| msgid "Event Detail"
515
  msgid "Event Data"
516
  msgstr "Zobrazit událost"
517
 
518
- #: app/features/events.php:346 app/features/events.php:1308
519
- #: app/features/mec/settings.php:769 app/skins/single.php:1247
520
  msgid "Hourly Schedule"
521
  msgstr "Hodinový rozvrh"
522
 
@@ -532,9 +533,9 @@ msgstr "Umístění"
532
  msgid "Links"
533
  msgstr "Odkaz"
534
 
535
- #: app/features/events.php:349 app/features/events.php:3451
536
- #: app/features/events.php:3642 app/features/events.php:3684
537
- #: app/features/ix.php:3513 app/features/ix.php:3554
538
  #: app/features/mec/meta_boxes/display_options.php:1398
539
  #: app/features/mec/meta_boxes/search_form.php:46
540
  #: app/features/mec/meta_boxes/search_form.php:116
@@ -552,17 +553,17 @@ msgstr "Odkaz"
552
  #: app/features/organizers.php:260 app/features/organizers.php:262
553
  #: app/features/organizers.php:271 app/features/popup/event.php:163
554
  #: app/features/popup/event.php:172 app/features/search.php:80
555
- #: app/libraries/main.php:5894 app/libraries/main.php:5942
556
- #: app/libraries/skins.php:991 app/skins/single.php:1102
557
  #: app/skins/single/default.php:245 app/skins/single/default.php:478
558
  #: app/skins/single/m1.php:103 app/skins/single/m2.php:26
559
  #: app/skins/single/modern.php:48
560
  msgid "Organizer"
561
  msgstr "Organizátor"
562
 
563
- #: app/features/events.php:350 app/features/events.php:1113
564
- #: app/features/fes/form.php:793 app/libraries/main.php:5921
565
- #: app/libraries/main.php:5968 app/skins/single.php:880
566
  #: app/skins/single/default.php:143 app/skins/single/default.php:377
567
  #: app/skins/single/m1.php:62 app/skins/single/modern.php:237
568
  msgid "Cost"
@@ -574,51 +575,51 @@ msgstr "Cena"
574
  msgid "SEO Schema / Event Status"
575
  msgstr "Při spuštění události"
576
 
577
- #: app/features/events.php:487
578
  msgid "Note for reviewer"
579
  msgstr "Poznámka pro recenzenta"
580
 
581
- #: app/features/events.php:493
582
  msgid "Guest Data"
583
  msgstr "Údaje hosta"
584
 
585
- #: app/features/events.php:494 app/features/events.php:2364
586
- #: app/features/events.php:3981 app/features/fes.php:233
587
  #: app/features/fes/form.php:752 app/features/labels.php:178
588
  #: app/features/mec/booking.php:53 app/features/organizers.php:279
589
  #: app/features/popup/event.php:182 app/features/profile/profile.php:177
590
- #: app/libraries/notifications.php:1261 app/modules/booking/steps/form.php:48
591
  msgid "Name"
592
  msgstr "Jméno"
593
 
594
- #: app/features/events.php:495 app/features/events.php:2373
595
- #: app/features/events.php:2435 app/features/events.php:2524
596
- #: app/features/events.php:3984 app/features/fes.php:233
597
  #: app/features/fes/form.php:748 app/features/login/login.php:5
598
- #: app/features/mec/booking.php:65 app/features/mec/booking.php:562
599
- #: app/features/mec/booking.php:658 app/features/mec/single.php:183
600
  #: app/features/organizers.php:111 app/features/organizers.php:152
601
  #: app/features/profile/profile.php:180 app/features/speakers.php:127
602
  #: app/features/speakers.php:196 app/libraries/main.php:1719
603
- #: app/libraries/main.php:1788 app/libraries/main.php:3154
604
- #: app/libraries/notifications.php:1262 app/modules/booking/steps/form.php:57
605
- #: app/modules/booking/steps/form.php:157 app/skins/single.php:1119
606
- #: app/skins/single.php:1178 app/skins/single/default.php:262
607
  #: app/skins/single/default.php:495 app/skins/single/m1.php:120
608
  #: app/skins/single/m2.php:43 app/skins/single/modern.php:65
609
  msgid "Email"
610
  msgstr "Email"
611
 
612
- #: app/features/events.php:503 app/features/fes/form.php:265
613
  msgid "Date and Time"
614
  msgstr "Datum a čas"
615
 
616
- #: app/features/events.php:506 app/features/events.php:510
617
- #: app/features/events.php:3452 app/features/events.php:3642
618
- #: app/features/events.php:3684 app/features/fes/form.php:269
619
- #: app/features/fes/form.php:273 app/features/ix.php:3513
620
- #: app/features/ix.php:3554 app/features/ix/import_g_calendar.php:38
621
- #: app/features/mec.php:1323 app/features/mec/meta_boxes/display_options.php:51
622
  #: app/features/mec/meta_boxes/display_options.php:280
623
  #: app/features/mec/meta_boxes/display_options.php:520
624
  #: app/features/mec/meta_boxes/display_options.php:627
@@ -637,38 +638,38 @@ msgstr "Datum a čas"
637
  msgid "Start Date"
638
  msgstr "Počátečná den"
639
 
640
- #: app/features/events.php:525 app/features/events.php:529
641
- #: app/features/events.php:3453 app/features/events.php:3642
642
- #: app/features/events.php:3684 app/features/fes/form.php:288
643
- #: app/features/fes/form.php:292 app/features/ix.php:3513
644
- #: app/features/ix.php:3554 app/features/ix/import_g_calendar.php:44
645
- #: app/features/mec.php:1324 app/features/popup/event.php:92
646
  msgid "End Date"
647
  msgstr "Konečný den"
648
 
649
- #: app/features/events.php:552 app/features/fes/form.php:306
650
  #: app/features/popup/event.php:109
651
  #, fuzzy
652
  #| msgid "All Day Event"
653
  msgid "All-day Event"
654
  msgstr "Celodenní událost"
655
 
656
- #: app/features/events.php:562 app/features/fes/form.php:309
657
  msgid "Hide Event Time"
658
  msgstr "Skrýt čas události"
659
 
660
- #: app/features/events.php:572 app/features/fes/form.php:312
661
  msgid "Hide Event End Time"
662
  msgstr "Skrýt čas ukončení události"
663
 
664
- #: app/features/events.php:577 app/features/events.php:581
665
  #: app/features/fes/form.php:316
666
  #, fuzzy
667
  #| msgid "Note to reviewer"
668
  msgid "Notes on the time"
669
  msgstr "Poznámka pro recenzenta"
670
 
671
- #: app/features/events.php:582 app/features/fes/form.php:317
672
  #, fuzzy
673
  #| msgid ""
674
  #| "It shows next to event time on single event page. You can insert Timezone "
@@ -680,22 +681,22 @@ msgstr ""
680
  "Zobrazuje se vedle času události na stránce jedné události. Do tohoto pole "
681
  "můžete vložit časové pásmo atd."
682
 
683
- #: app/features/events.php:584 app/features/events.php:723
684
- #: app/features/events.php:1076 app/features/events.php:1225
685
- #: app/features/events.php:1533 app/features/events.php:1626
686
- #: app/features/events.php:1770 app/features/events.php:1785
687
- #: app/features/events.php:1951 app/features/events.php:1964
688
- #: app/features/events.php:2115 app/features/events.php:2151
689
- #: app/features/events.php:2249 app/features/events.php:2264
690
- #: app/features/events.php:2294 app/features/events.php:2307
691
  #: app/features/fes/form.php:396 app/features/fes/form.php:704
692
  #: app/features/locations.php:334 app/features/mec/booking.php:116
693
- #: app/features/mec/booking.php:182 app/features/mec/booking.php:195
694
- #: app/features/mec/booking.php:213 app/features/mec/booking.php:229
695
- #: app/features/mec/booking.php:269 app/features/mec/booking.php:391
696
- #: app/features/mec/booking.php:420 app/features/mec/booking.php:468
697
- #: app/features/mec/booking.php:478 app/features/mec/booking.php:500
698
- #: app/features/mec/booking.php:510 app/features/mec/dashboard.php:71
699
  #: app/features/mec/meta_boxes/display_options.php:82
700
  #: app/features/mec/meta_boxes/display_options.php:95
701
  #: app/features/mec/meta_boxes/display_options.php:108
@@ -731,14 +732,14 @@ msgstr ""
731
  #: app/features/mec/modules.php:52 app/features/mec/modules.php:85
732
  #: app/features/mec/modules.php:102 app/features/mec/modules.php:137
733
  #: app/features/mec/modules.php:153 app/features/mec/modules.php:323
734
- #: app/features/mec/notifications.php:87 app/features/mec/notifications.php:193
735
- #: app/features/mec/notifications.php:303
736
- #: app/features/mec/notifications.php:418
737
- #: app/features/mec/notifications.php:534
738
- #: app/features/mec/notifications.php:645
739
- #: app/features/mec/notifications.php:656
740
- #: app/features/mec/notifications.php:771
741
- #: app/features/mec/notifications.php:855 app/features/mec/settings.php:67
742
  #: app/features/mec/settings.php:86 app/features/mec/settings.php:133
743
  #: app/features/mec/settings.php:168 app/features/mec/settings.php:189
744
  #: app/features/mec/settings.php:234 app/features/mec/settings.php:269
@@ -755,82 +756,82 @@ msgstr ""
755
  #: app/features/mec/styling.php:119 app/features/mec/styling.php:218
756
  #: app/features/mec/styling.php:235 app/features/mec/styling.php:248
757
  #: app/features/organizers.php:272 app/features/popup/event.php:126
758
- #: app/features/popup/event.php:173 app/skins/single.php:965
759
  #: app/skins/single/default.php:160 app/skins/single/default.php:392
760
  #: app/skins/single/m1.php:219 app/skins/single/m2.php:143
761
  #: app/skins/single/modern.php:163
762
  msgid "Read More"
763
  msgstr "Číst více"
764
 
765
- #: app/features/events.php:592
766
  msgid "Repeating"
767
  msgstr "Opakování"
768
 
769
- #: app/features/events.php:601
770
  msgid "Event Repeating (Recurring events)"
771
  msgstr "Opakování události (opakující se události)"
772
 
773
- #: app/features/events.php:605 app/features/fes/form.php:327
774
  msgid "Repeats"
775
  msgstr "Opakování"
776
 
777
- #: app/features/events.php:613 app/features/fes/form.php:329
778
  #: app/features/mec.php:1326 app/skins/default_full_calendar/tpl.php:74
779
  #: app/skins/full_calendar/tpl.php:121
780
  msgid "Daily"
781
  msgstr "Děnně"
782
 
783
- #: app/features/events.php:620 app/features/fes/form.php:330
784
  msgid "Every Weekday"
785
  msgstr "Každý všední den"
786
 
787
- #: app/features/events.php:627 app/features/fes/form.php:331
788
  msgid "Every Weekend"
789
  msgstr "Každý víkend"
790
 
791
- #: app/features/events.php:634 app/features/fes/form.php:332
792
  msgid "Certain Weekdays"
793
  msgstr "Určité pracovní dny"
794
 
795
- #: app/features/events.php:641 app/features/fes/form.php:333
796
  #: app/skins/default_full_calendar/tpl.php:73
797
  #: app/skins/full_calendar/tpl.php:120
798
  msgid "Weekly"
799
  msgstr "Týdně"
800
 
801
- #: app/features/events.php:648 app/features/fes/form.php:334
802
  #: app/features/mec.php:1327 app/skins/default_full_calendar/tpl.php:72
803
  #: app/skins/full_calendar/tpl.php:119
804
  msgid "Monthly"
805
  msgstr "Měsíčně"
806
 
807
- #: app/features/events.php:655 app/features/fes/form.php:335
808
  #: app/features/mec.php:1328 app/skins/default_full_calendar/tpl.php:71
809
  #: app/skins/full_calendar/tpl.php:118
810
  msgid "Yearly"
811
  msgstr "Ročně"
812
 
813
- #: app/features/events.php:662 app/features/fes/form.php:336
814
  msgid "Custom Days"
815
  msgstr "Vlastní dny"
816
 
817
- #: app/features/events.php:669 app/features/fes/form.php:337
818
  msgid "Advanced"
819
  msgstr "Pokročilé"
820
 
821
- #: app/features/events.php:674 app/features/fes/form.php:341
822
  msgid "Repeat Interval"
823
  msgstr "Interval opakování"
824
 
825
- #: app/features/events.php:676 app/features/fes/form.php:342
826
  msgid "Repeat interval"
827
  msgstr "Interval opakování"
828
 
829
- #: app/features/events.php:680 app/features/fes/form.php:345
830
  msgid "Week Days"
831
  msgstr "Dny v týdnu"
832
 
833
- #: app/features/events.php:697
834
  #, fuzzy
835
  #| msgid "Pro version of Modern Events Calendar"
836
  msgid ""
@@ -838,27 +839,27 @@ msgid ""
838
  "Calendar."
839
  msgstr "Pro verze doplňku Modern Events Calendar"
840
 
841
- #: app/features/events.php:703 app/features/events.php:1853
842
- #: app/features/events.php:1881 app/features/events.php:2019
843
  #: app/features/fes/form.php:359 app/features/ix/import_f_calendar.php:42
844
  #: app/features/ix/import_g_calendar.php:51
845
  #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
846
  msgid "Start"
847
  msgstr "Začátek"
848
 
849
- #: app/features/events.php:716 app/features/events.php:1219
850
- #: app/features/events.php:1339 app/features/events.php:1444
851
- #: app/features/events.php:1837 app/features/events.php:2008
852
- #: app/features/events.php:2088 app/features/events.php:2221
853
  #: app/features/fes/form.php:389 app/features/fes/form.php:920
854
  msgid "Add"
855
  msgstr "Přidat"
856
 
857
- #: app/features/events.php:719 app/features/fes/form.php:392
858
  msgid "Custom Days Repeating"
859
  msgstr "Opakování vlastních dnů"
860
 
861
- #: app/features/events.php:722 app/features/fes/form.php:395
862
  #, fuzzy
863
  #| msgid ""
864
  #| "Add certain days to event occurrence dates. If you have single day event, "
@@ -873,55 +874,56 @@ msgstr ""
873
  "datum zahájení a ukončení by mělo být stejné. Pokud máte vícedenní událost, "
874
  "datum zahájení a ukončení musí odpovídat počátečnímu datu."
875
 
876
- #: app/features/events.php:733 app/features/events.php:1857
877
- #: app/features/events.php:1885 app/features/events.php:2023
878
  #: app/features/fes/form.php:374
879
  msgid "End"
880
  msgstr "Konec"
881
 
882
- #: app/features/events.php:810 app/features/fes/form.php:468
883
  msgid "First"
884
  msgstr "První"
885
 
886
- #: app/features/events.php:852 app/features/fes/form.php:510
887
  msgid "Second"
888
  msgstr "Druhá"
889
 
890
- #: app/features/events.php:894 app/features/fes/form.php:552
891
  msgid "Third"
892
  msgstr "Třetí"
893
 
894
- #: app/features/events.php:936 app/features/fes/form.php:594
895
  msgid "Fourth"
896
  msgstr "Čtvrtá"
897
 
898
- #: app/features/events.php:978 app/features/fes/form.php:636
899
  msgid "Last"
900
  msgstr "Poslední"
901
 
902
- #: app/features/events.php:1025 app/features/fes/form.php:682
903
  msgid "Ends Repeat"
904
  msgstr "Ukončení opakování"
905
 
906
- #: app/features/events.php:1037 app/features/fes/form.php:686
907
  msgid "Never"
908
  msgstr "Nikdy"
909
 
910
  # Možná Zapnuto
911
- #: app/features/events.php:1049 app/features/fes/form.php:691
912
  msgid "On"
913
  msgstr "Na"
914
 
915
- #: app/features/events.php:1065 app/features/fes/form.php:698
 
916
  msgid "After"
917
  msgstr "Po"
918
 
919
- #: app/features/events.php:1069 app/features/events.php:1073
920
  #: app/features/fes/form.php:700 app/features/fes/form.php:703
921
  msgid "Occurrences times"
922
  msgstr "Časy výskytu"
923
 
924
- #: app/features/events.php:1074
925
  #, fuzzy
926
  #| msgid ""
927
  #| "The event will finish after certain repeats. For example if you set it to "
@@ -933,40 +935,40 @@ msgstr ""
933
  "Událost bude ukončena po určitých opakováních. Pokud například nastavíte "
934
  "hodnotu 10, událost skončí po 10 opakováních."
935
 
936
- #: app/features/events.php:1089 app/features/fes/form.php:717
937
  #, fuzzy
938
  #| msgid "Next Occurrence of Other Events"
939
  msgid "Show only one occurrence of this event"
940
  msgstr "Další výskyt dalších událostí"
941
 
942
- #: app/features/events.php:1109 app/features/events.php:3642
943
- #: app/features/events.php:3684 app/features/fes/form.php:790
944
- #: app/features/ix.php:3513 app/features/ix.php:3554
945
- #: app/features/mec/settings.php:715 app/libraries/main.php:5920
946
- #: app/libraries/main.php:5967 app/widgets/single.php:103
947
  msgid "Event Cost"
948
  msgstr "Cena události"
949
 
950
- #: app/features/events.php:1206
951
  msgid "Exceptional Days (Exclude Dates)"
952
  msgstr "Výjimečné dny (vyjma dat)"
953
 
954
- #: app/features/events.php:1212 app/features/events.php:1222
955
  msgid "Exclude certain days"
956
  msgstr "Vyloučit určité dny"
957
 
958
- #: app/features/events.php:1217 app/features/events.php:2436
959
- #: app/features/events.php:2525 app/features/fes.php:233
960
- #: app/features/mec/booking.php:563 app/features/mec/booking.php:659
961
  #: app/features/mec/single.php:185 app/features/profile/profile.php:58
962
- #: app/libraries/main.php:3241 app/modules/booking/steps/tickets.php:94
963
- #: app/modules/next-event/details.php:134 app/skins/single.php:938
964
  #: app/skins/single/default.php:100 app/skins/single/default.php:334
965
  #: app/skins/single/m1.php:22 app/skins/single/modern.php:197
966
  msgid "Date"
967
  msgstr "Datum"
968
 
969
- #: app/features/events.php:1223
970
  msgid ""
971
  "Exclude certain days from event occurrence dates. Please note that you can "
972
  "exclude only single day occurrences and you cannot exclude one day from "
@@ -976,15 +978,15 @@ msgstr ""
976
  "můžete vyloučit pouze výskyty za jeden den a nelze vyloučit jeden den z "
977
  "vícedenních výskytů."
978
 
979
- #: app/features/events.php:1282 app/libraries/render.php:544
980
  msgid "Day 1"
981
  msgstr "Den 1"
982
 
983
- #: app/features/events.php:1312
984
  msgid "Add Day"
985
  msgstr "Přidat den"
986
 
987
- #: app/features/events.php:1313
988
  msgid ""
989
  "Add new days for schedule. For example if your event is multiple days, you "
990
  "can add a different schedule for each day!"
@@ -992,91 +994,91 @@ msgstr ""
992
  "Přidat nové dny pro rozvrh. Pokud je například vaše akce vícedenní, můžete "
993
  "pro každý den přidat jiný rozvrh!"
994
 
995
- #: app/features/events.php:1320
996
  #, php-format
997
  msgid "Day %s"
998
  msgstr "Den %s"
999
 
1000
- #: app/features/events.php:1324 app/features/events.php:1363
1001
- #: app/features/events.php:1398 app/features/events.php:1430
1002
- #: app/features/events.php:1459 app/features/events.php:2236
1003
- #: app/features/events.php:2283 app/features/events.php:3448
1004
- #: app/features/events.php:3642 app/features/events.php:3684
1005
- #: app/features/fes/form.php:248 app/features/ix.php:3513
1006
- #: app/features/ix.php:3554 app/features/mec/booking.php:460
1007
- #: app/features/mec/booking.php:492 app/features/mec/styling.php:130
1008
  msgid "Title"
1009
  msgstr "Název"
1010
 
1011
- #: app/features/events.php:1333 app/features/events.php:1370
1012
- #: app/features/events.php:1403 app/features/events.php:1438
1013
- #: app/features/events.php:1464 app/features/events.php:1867
1014
- #: app/features/events.php:1893 app/features/events.php:2029
1015
- #: app/features/events.php:2128 app/features/events.php:2164
1016
- #: app/features/events.php:2271 app/features/events.php:2313
1017
- #: app/features/mec/booking.php:403 app/features/mec/booking.php:432
1018
- #: app/features/mec/booking.php:483 app/features/mec/booking.php:515
1019
- #: app/libraries/main.php:3076 app/libraries/main.php:3105
1020
- #: app/libraries/main.php:3134 app/libraries/main.php:3163
1021
- #: app/libraries/main.php:3192 app/libraries/main.php:3221
1022
- #: app/libraries/main.php:3250 app/libraries/main.php:3279
1023
- #: app/libraries/main.php:3308 app/libraries/main.php:3329
1024
- #: app/libraries/main.php:3360 app/libraries/main.php:3406
1025
- #: app/libraries/main.php:3452 app/libraries/main.php:3501
1026
- #: app/libraries/main.php:3541
1027
  msgid "Remove"
1028
  msgstr "Odstranit"
1029
 
1030
- #: app/features/events.php:1340 app/features/events.php:1445
1031
  msgid "Add new hourly schedule row"
1032
  msgstr "Přidejte nový řádek rozvrhu hodin"
1033
 
1034
- #: app/features/events.php:1355 app/features/events.php:1392
1035
- #: app/features/events.php:1454
1036
  msgid "From e.g. 8:15"
1037
  msgstr "Od např. 8:15"
1038
 
1039
- #: app/features/events.php:1359 app/features/events.php:1395
1040
- #: app/features/events.php:1456
1041
  msgid "To e.g. 8:45"
1042
  msgstr "Do např. 8:45"
1043
 
1044
- #: app/features/events.php:1367 app/features/events.php:1401
1045
- #: app/features/events.php:1462 app/features/events.php:1758
1046
- #: app/features/events.php:1940
1047
  msgid "Description"
1048
  msgstr "Popis"
1049
 
1050
- #: app/features/events.php:1373 app/features/events.php:1406
1051
- #: app/features/events.php:1467 app/features/fes/form.php:916
1052
  #: app/features/mec.php:469 app/features/mec/modules.php:51
1053
  #: app/features/mec/settings.php:763 app/features/speakers.php:62
1054
- #: app/libraries/main.php:569 app/libraries/main.php:5895
1055
- #: app/libraries/main.php:5943 app/modules/speakers/details.php:18
1056
  msgid "Speakers"
1057
  msgstr "Řečníci"
1058
 
1059
- #: app/features/events.php:1426 app/features/events.php:1434
1060
  msgid "New Day"
1061
  msgstr "Nový den"
1062
 
1063
- #: app/features/events.php:1498 app/features/fes/form.php:767
1064
  #: app/features/mec/settings.php:709
1065
  msgid "Event Links"
1066
  msgstr "Odkazy na událost"
1067
 
1068
- #: app/features/events.php:1501 app/features/events.php:1507
1069
- #: app/features/fes/form.php:769 app/libraries/main.php:5918
1070
- #: app/libraries/main.php:5965
1071
  msgid "Event Link"
1072
  msgstr "Odkaz na událost"
1073
 
1074
- #: app/features/events.php:1504 app/features/events.php:1520
1075
  #: app/features/fes/form.php:770 app/features/fes/form.php:775
1076
  msgid "eg. http://yoursite.com/your-event"
1077
  msgstr "např. http://yoursite.com/vase-udalost"
1078
 
1079
- #: app/features/events.php:1508
1080
  #, fuzzy
1081
  #| msgid ""
1082
  #| "If you fill it, it will be replaced instead of default event page link. "
@@ -1091,32 +1093,32 @@ msgstr ""
1091
  "Vložte úplný odkaz včetně http (s): // - Pokud používáte reklamní adresu "
1092
  "URL, můžete také použít zkracovač URL"
1093
 
1094
- #: app/features/events.php:1510
1095
  msgid "URL Shortener"
1096
  msgstr "Zkracovač URL"
1097
 
1098
- #: app/features/events.php:1517 app/features/events.php:1530
1099
- #: app/features/fes/form.php:774 app/libraries/main.php:5919
1100
- #: app/libraries/main.php:5966 app/skins/single.php:964
1101
  #: app/skins/single/default.php:159 app/skins/single/default.php:391
1102
  #: app/skins/single/m1.php:218 app/skins/single/m2.php:142
1103
  #: app/skins/single/modern.php:162 app/widgets/single.php:107
1104
  msgid "More Info"
1105
  msgstr "Více info"
1106
 
1107
- #: app/features/events.php:1523 app/features/fes/form.php:776
1108
  msgid "More Information"
1109
  msgstr "Více informací"
1110
 
1111
- #: app/features/events.php:1525 app/features/fes/form.php:778
1112
  msgid "Current Window"
1113
  msgstr "Aktuální okno"
1114
 
1115
- #: app/features/events.php:1526 app/features/fes/form.php:779
1116
  msgid "New Window"
1117
  msgstr "Nové okno"
1118
 
1119
- #: app/features/events.php:1531 app/features/fes/form.php:781
1120
  msgid ""
1121
  "If you fill it, it will be shown in event details page as an optional link. "
1122
  "Insert full link including http(s)://"
@@ -1124,52 +1126,52 @@ msgstr ""
1124
  "Pokud ji vyplníte, zobrazí se jako volitelný odkaz na stránce s podrobnostmi "
1125
  "o události. Vložte celý odkaz včetně http (s): //"
1126
 
1127
- #: app/features/events.php:1554 app/features/mec/settings.php:777
1128
  msgid "Booking Options"
1129
  msgstr "Možnosti rezervace"
1130
 
1131
- #: app/features/events.php:1555
1132
  #, fuzzy
1133
  #| msgid "Total user booking limits"
1134
  msgid "Total User Booking Limits"
1135
  msgstr "Celkové limity rezervace uživatelů"
1136
 
1137
- #: app/features/events.php:1556 app/features/events.php:1701
1138
- #: app/libraries/book.php:60 app/libraries/main.php:5923
1139
  #: app/modules/booking/steps/tickets.php:119
1140
  #: app/modules/booking/steps/tickets.php:125
1141
  msgid "Tickets"
1142
  msgstr "Vstupenky"
1143
 
1144
- #: app/features/events.php:1558 app/features/events.php:2065
1145
  msgid "Fees"
1146
  msgstr "Poplatky"
1147
 
1148
- #: app/features/events.php:1561 app/features/events.php:2197
1149
  #: app/features/mec/settings.php:789
1150
  msgid "Ticket Variations / Options"
1151
  msgstr "Varianty vstupenky / možnosti"
1152
 
1153
- #: app/features/events.php:1565 app/features/mec/booking.php:735
1154
  #: app/features/mec/support-page.php:118
1155
  msgid "Organizer Payment"
1156
  msgstr "Platba organizátora"
1157
 
1158
- #: app/features/events.php:1608 app/features/events.php:1622
1159
  #, fuzzy
1160
  #| msgid "Total booking limits"
1161
  msgid "Total booking limit"
1162
  msgstr "Celkové limity rezervace"
1163
 
1164
- #: app/features/events.php:1619 app/features/events.php:1806
1165
- #: app/features/events.php:1978 app/modules/booking/default.php:98
1166
  #: app/modules/booking/steps/tickets.php:119
1167
  #: app/modules/booking/steps/tickets.php:125
1168
  #: app/skins/available_spot/tpl.php:142
1169
  msgid "Unlimited"
1170
  msgstr "Neomezené"
1171
 
1172
- #: app/features/events.php:1625
1173
  msgid ""
1174
  "If you want to set a limit to all tickets, uncheck this checkbox and put a "
1175
  "limitation number."
@@ -1177,45 +1179,45 @@ msgstr ""
1177
  "Pokud chcete nastavit limit na všechny lístky, zrušte zaškrtnutí tohoto "
1178
  "políčka a zadejte číslo omezení."
1179
 
1180
- #: app/features/events.php:1627
1181
  msgid "Read About A Booking System"
1182
  msgstr "Přečtěte si o rezervačním systému"
1183
 
1184
- #: app/features/events.php:1635
1185
  msgid "100"
1186
  msgstr "100"
1187
 
1188
- #: app/features/events.php:1637 app/features/events.php:1651
1189
  #, fuzzy
1190
  #| msgid "Next Occurrence"
1191
  msgid "Book All Occurrences"
1192
  msgstr "Další výskyt"
1193
 
1194
- #: app/features/events.php:1648
1195
  msgid "Sell all occurrences by one booking"
1196
  msgstr ""
1197
 
1198
- #: app/features/events.php:1654
1199
  msgid ""
1200
  "If you have a series of events and you want to sell all of them at once, "
1201
  "this option is for you! For example a weekly yoga course or something "
1202
  "similar."
1203
  msgstr ""
1204
 
1205
- #: app/features/events.php:1664
1206
  msgid "Total user booking limits"
1207
  msgstr "Celkové limity rezervace uživatelů"
1208
 
1209
- #: app/features/events.php:1675 app/features/events.php:2077
1210
- #: app/features/events.php:2209 app/features/events.php:2390
1211
  msgid "Inherit from global options"
1212
  msgstr "Zdědí z globálních možností"
1213
 
1214
- #: app/features/events.php:1678
1215
  msgid "12"
1216
  msgstr "12"
1217
 
1218
- #: app/features/events.php:1704
1219
  msgid ""
1220
  "You're translating an event so MEC will use the original event for tickets "
1221
  "and booking. You can only translate the ticket name and description. Please "
@@ -1225,54 +1227,54 @@ msgstr ""
1225
  "vstupenek a rezervace. Můžete přeložit pouze název a popis vstupenky. Prosím "
1226
  "definujte určité vstupenky, které jste definovali v původní události."
1227
 
1228
- #: app/features/events.php:1709
1229
  #, fuzzy
1230
  #| msgid "Ticket"
1231
  msgid "Add Ticket"
1232
  msgstr "Vstupenka"
1233
 
1234
- #: app/features/events.php:1721 app/features/events.php:1905
1235
  #, fuzzy
1236
  #| msgid "Ticket"
1237
  msgid "Ticket ID"
1238
  msgstr "Vstupenka"
1239
 
1240
- #: app/features/events.php:1721 app/features/events.php:1905
1241
- #: app/features/events.php:3642 app/features/events.php:3684
1242
- #: app/features/fes.php:233 app/features/ix.php:3513 app/features/ix.php:3554
1243
  #: app/features/labels.php:177 app/features/locations.php:260
1244
  #: app/features/organizers.php:203 app/features/speakers.php:268
1245
  msgid "ID"
1246
  msgstr "ID"
1247
 
1248
- #: app/features/events.php:1724 app/features/events.php:1908
1249
  msgid "Ticket Name"
1250
  msgstr "Název vstupenky"
1251
 
1252
- #: app/features/events.php:1729 app/features/events.php:1912
1253
- #: app/features/events.php:3642 app/features/events.php:3684
1254
- #: app/features/ix.php:3513 app/features/ix.php:3554
1255
  msgid "Start Time"
1256
  msgstr "Začátek"
1257
 
1258
- #: app/features/events.php:1742 app/features/events.php:1925
1259
- #: app/features/events.php:3642 app/features/events.php:3684
1260
- #: app/features/ix.php:3513 app/features/ix.php:3554
1261
  msgid "End Time"
1262
  msgstr "Konec"
1263
 
1264
- #: app/features/events.php:1763 app/features/events.php:1767
1265
- #: app/features/events.php:1861 app/features/events.php:1888
1266
- #: app/features/events.php:1945 app/features/events.php:1948
1267
- #: app/features/events.php:2025 app/features/events.php:2242
1268
- #: app/features/events.php:2246 app/features/events.php:2288
1269
- #: app/features/events.php:2291 app/features/mec/booking.php:464
1270
- #: app/features/mec/booking.php:467 app/features/mec/booking.php:496
1271
- #: app/features/mec/booking.php:499
1272
  msgid "Price"
1273
  msgstr "Cena"
1274
 
1275
- #: app/features/events.php:1768 app/features/events.php:1949
1276
  #, fuzzy
1277
  #| msgid "Insert 0 for free ticket. Only numbers please."
1278
  msgid ""
@@ -1280,60 +1282,60 @@ msgid ""
1280
  "any symbols or characters."
1281
  msgstr "Vložte 0 pro vstupenku zdarma. Prosím pouze čísla."
1282
 
1283
- #: app/features/events.php:1777 app/features/events.php:1782
1284
- #: app/features/events.php:1958 app/features/events.php:1961
1285
  msgid "Price Label"
1286
  msgstr "Cenový štítek"
1287
 
1288
- #: app/features/events.php:1783 app/features/events.php:1962
1289
  msgid "For showing on website. e.g. $15"
1290
  msgstr "Pro zobrazení na webu. např. 15 $"
1291
 
1292
- #: app/features/events.php:1793 app/features/events.php:1972
1293
  msgid "Available Tickets"
1294
  msgstr "Dostupné vstupenky"
1295
 
1296
- #: app/features/events.php:1810 app/features/events.php:1982
1297
  #, fuzzy
1298
  #| msgid "Maximum Per Ticket"
1299
  msgid "Minimum Ticket e.g. 3"
1300
  msgstr "Maximum na jednu vstupenku"
1301
 
1302
- #: app/features/events.php:1813 app/features/events.php:1985
1303
  #, fuzzy
1304
  #| msgid "Maximum Per Ticket"
1305
  msgid "MinimumTicket"
1306
  msgstr "Maximum na jednu vstupenku"
1307
 
1308
- #: app/features/events.php:1815 app/features/events.php:1987
1309
  msgid "Set a number for the minimum ticket reservation possible"
1310
  msgstr ""
1311
 
1312
- #: app/features/events.php:1823 app/features/events.php:1995
1313
  msgid "e.g. 0"
1314
  msgstr ""
1315
 
1316
- #: app/features/events.php:1825 app/features/events.php:1997
1317
  #, fuzzy
1318
  #| msgid "Days"
1319
  msgid "Day"
1320
  msgstr "Dny"
1321
 
1322
- #: app/features/events.php:1826 app/features/events.php:1998
1323
  msgid "Hour"
1324
  msgstr ""
1325
 
1326
- #: app/features/events.php:1828 app/features/events.php:2000
1327
  #, php-format
1328
  msgid "Stop selling ticket %s before event start."
1329
  msgstr ""
1330
 
1331
- #: app/features/events.php:1835 app/features/events.php:2006
1332
  msgid "Price per Date"
1333
  msgstr "Cena za datum"
1334
 
1335
- #: app/features/events.php:1865 app/features/events.php:1891
1336
- #: app/features/events.php:2027 app/features/labels.php:60
1337
  #: app/features/mec/meta_boxes/display_options.php:1396
1338
  #: app/features/mec/meta_boxes/search_form.php:67
1339
  #: app/features/mec/meta_boxes/search_form.php:137
@@ -1347,24 +1349,24 @@ msgstr "Cena za datum"
1347
  #: app/features/mec/meta_boxes/search_form.php:690
1348
  #: app/features/mec/meta_boxes/search_form.php:796
1349
  #: app/features/mec/settings.php:917 app/features/mec/single.php:341
1350
- #: app/features/search.php:98 app/libraries/skins.php:1069
1351
  msgid "Label"
1352
  msgstr "Štítek"
1353
 
1354
- #: app/features/events.php:2102 app/features/events.php:2140
1355
- #: app/features/mec/booking.php:383 app/features/mec/booking.php:412
1356
  msgid "Fee Title"
1357
  msgstr "Název poplatku"
1358
 
1359
- #: app/features/events.php:2108 app/features/events.php:2112
1360
- #: app/features/events.php:2145 app/features/events.php:2148
1361
- #: app/features/mec/booking.php:387 app/features/mec/booking.php:390
1362
- #: app/features/mec/booking.php:416 app/features/mec/booking.php:419
1363
  msgid "Amount"
1364
  msgstr "Množství"
1365
 
1366
- #: app/features/events.php:2113 app/features/events.php:2149
1367
- #: app/features/mec/booking.php:391 app/features/mec/booking.php:420
1368
  msgid ""
1369
  "Fee amount, considered as fixed amount if you set the type to amount "
1370
  "otherwise considered as percentage"
@@ -1372,96 +1374,96 @@ msgstr ""
1372
  "Výše poplatku, je považovaná za pevnou částku, pokud nastavíte typ na částku "
1373
  "odpovídající procentuální hodnotě"
1374
 
1375
- #: app/features/events.php:2122 app/features/events.php:2158
1376
- #: app/features/mec/booking.php:398 app/features/mec/booking.php:427
1377
  msgid "Percent"
1378
  msgstr "Procent"
1379
 
1380
- #: app/features/events.php:2123 app/features/events.php:2159
1381
- #: app/features/mec/booking.php:399 app/features/mec/booking.php:428
1382
  msgid "Amount (Per Ticket)"
1383
  msgstr "Částka (za vstupenku)"
1384
 
1385
- #: app/features/events.php:2124 app/features/events.php:2160
1386
- #: app/features/mec/booking.php:400 app/features/mec/booking.php:429
1387
  msgid "Amount (Per Booking)"
1388
  msgstr "Částka (za rezervaci)"
1389
 
1390
- #: app/features/events.php:2247 app/features/events.php:2292
1391
- #: app/features/mec/booking.php:468 app/features/mec/booking.php:500
1392
  msgid "Option Price"
1393
  msgstr "Možnosti ceny"
1394
 
1395
- #: app/features/events.php:2257 app/features/events.php:2261
1396
- #: app/features/events.php:2301 app/features/events.php:2304
1397
- #: app/features/mec/booking.php:474 app/features/mec/booking.php:477
1398
- #: app/features/mec/booking.php:506 app/features/mec/booking.php:509
1399
  msgid "Maximum Per Ticket"
1400
  msgstr "Maximum na jednu vstupenku"
1401
 
1402
- #: app/features/events.php:2262 app/features/events.php:2305
1403
- #: app/features/mec/booking.php:478 app/features/mec/booking.php:510
1404
  #, fuzzy
1405
  #| msgid "Maximum Per Ticket. Leave it blank for unlimited."
1406
  msgid "Maximum Per Ticket. Leave blank for unlimited."
1407
  msgstr "Maximum na jednu vstupenku. Ponechte to prázdné pro neomezené."
1408
 
1409
- #: app/features/events.php:2402 app/features/mec/booking.php:526
1410
  #, fuzzy
1411
  #| msgid "Attendees Limit"
1412
  msgid "Per Attendee Fields"
1413
  msgstr "Limit účastníků"
1414
 
1415
- #: app/features/events.php:2432 app/features/mec/booking.php:559
1416
- #: app/libraries/main.php:3096
1417
  msgid "MEC Name"
1418
  msgstr "MEC Jméno"
1419
 
1420
- #: app/features/events.php:2433 app/features/mec/booking.php:560
1421
- #: app/libraries/main.php:3125
1422
  msgid "MEC Email"
1423
  msgstr "MEC Email"
1424
 
1425
- #: app/features/events.php:2434 app/features/events.php:2523
1426
- #: app/features/mec/booking.php:561 app/features/mec/booking.php:657
1427
- #: app/features/mec/single.php:182 app/libraries/main.php:3067
1428
  msgid "Text"
1429
  msgstr "Text"
1430
 
1431
- #: app/features/events.php:2437 app/features/events.php:2526
1432
- #: app/features/mec/booking.php:564 app/features/mec/booking.php:660
1433
  #: app/features/mec/single.php:186 app/features/organizers.php:103
1434
  #: app/features/organizers.php:148 app/features/speakers.php:119
1435
  #: app/features/speakers.php:192 app/features/speakers.php:271
1436
- #: app/libraries/main.php:3270
1437
  msgid "Tel"
1438
  msgstr "Tel"
1439
 
1440
- #: app/features/events.php:2438 app/features/mec/booking.php:565
1441
- #: app/libraries/main.php:3212
1442
  msgid "File"
1443
  msgstr "Soubor"
1444
 
1445
- #: app/features/events.php:2439 app/features/events.php:2527
1446
- #: app/features/mec/booking.php:566 app/features/mec/booking.php:661
1447
- #: app/features/mec/single.php:187 app/libraries/main.php:3299
1448
  msgid "Textarea"
1449
  msgstr "Plocha textu"
1450
 
1451
- #: app/features/events.php:2440 app/features/events.php:2528
1452
- #: app/features/mec/booking.php:567 app/features/mec/booking.php:662
1453
- #: app/features/mec/single.php:189 app/libraries/main.php:3351
1454
  msgid "Checkboxes"
1455
  msgstr "Zatržítko"
1456
 
1457
- #: app/features/events.php:2441 app/features/events.php:2529
1458
- #: app/features/mec/booking.php:568 app/features/mec/booking.php:663
1459
- #: app/features/mec/single.php:190 app/libraries/main.php:3397
1460
  msgid "Radio Buttons"
1461
  msgstr "Přepínače"
1462
 
1463
- #: app/features/events.php:2442 app/features/events.php:2530
1464
- #: app/features/mec/booking.php:569 app/features/mec/booking.php:664
1465
  #: app/features/mec/meta_boxes/search_form.php:34
1466
  #: app/features/mec/meta_boxes/search_form.php:41
1467
  #: app/features/mec/meta_boxes/search_form.php:49
@@ -1538,57 +1540,57 @@ msgstr "Přepínače"
1538
  #: app/features/mec/meta_boxes/search_form.php:792
1539
  #: app/features/mec/meta_boxes/search_form.php:799
1540
  #: app/features/mec/meta_boxes/search_form.php:813
1541
- #: app/features/mec/single.php:191 app/libraries/main.php:3443
1542
  msgid "Dropdown"
1543
  msgstr "Rozbalovací"
1544
 
1545
- #: app/features/events.php:2443 app/features/events.php:2531
1546
- #: app/features/mec/booking.php:570 app/features/mec/booking.php:665
1547
- #: app/libraries/main.php:3492
1548
  msgid "Agreement"
1549
  msgstr "Smlouva"
1550
 
1551
- #: app/features/events.php:2444 app/features/events.php:2532
1552
- #: app/features/mec/booking.php:571 app/features/mec/booking.php:666
1553
- #: app/features/mec/single.php:188 app/libraries/main.php:3328
1554
  msgid "Paragraph"
1555
  msgstr "Paragraf"
1556
 
1557
- #: app/features/events.php:2493 app/features/mec/booking.php:624
1558
  #, fuzzy
1559
  #| msgid "Required Field"
1560
  msgid "Fixed Fields"
1561
  msgstr "Požadovaná pole"
1562
 
1563
- #: app/features/events.php:3350 app/features/events.php:3368
1564
- #: app/features/events.php:3386 app/features/events.php:3404
1565
  #, php-format
1566
  msgid "Show all %s"
1567
  msgstr "Ukázat všechny %s"
1568
 
1569
- #: app/features/events.php:3350
1570
  msgid "labels"
1571
  msgstr "štítky"
1572
 
1573
- #: app/features/events.php:3368
1574
  msgid "locations"
1575
  msgstr "umístění"
1576
 
1577
- #: app/features/events.php:3386
1578
  msgid "organizers"
1579
  msgstr "organizátoři"
1580
 
1581
- #: app/features/events.php:3420
1582
  #, fuzzy
1583
  #| msgid "Attendees Limit"
1584
  msgid "Attendees List"
1585
  msgstr "Limit účastníků"
1586
 
1587
- #: app/features/events.php:3450 app/features/events.php:3642
1588
- #: app/features/events.php:3684 app/features/ix.php:3513
1589
- #: app/features/ix.php:3554 app/features/locations.php:58
1590
- #: app/features/locations.php:261 app/features/locations.php:322
1591
- #: app/features/locations.php:324 app/features/locations.php:333
1592
  #: app/features/mec/meta_boxes/display_options.php:1397
1593
  #: app/features/mec/meta_boxes/search_form.php:38
1594
  #: app/features/mec/meta_boxes/search_form.php:108
@@ -1603,90 +1605,90 @@ msgstr "Limit účastníků"
1603
  #: app/features/mec/meta_boxes/search_form.php:767
1604
  #: app/features/mec/settings.php:891 app/features/mec/single.php:331
1605
  #: app/features/popup/event.php:116 app/features/popup/event.php:125
1606
- #: app/features/search.php:74 app/libraries/main.php:2424
1607
- #: app/libraries/main.php:5892 app/libraries/main.php:5940
1608
- #: app/libraries/skins.php:965 app/skins/single.php:781
1609
- #: app/skins/single.php:1224 app/skins/single/default.php:196
1610
  #: app/skins/single/default.php:429 app/skins/single/m1.php:174
1611
  #: app/skins/single/m2.php:97 app/skins/single/modern.php:116
1612
  msgid "Location"
1613
  msgstr "Umístění"
1614
 
1615
- #: app/features/events.php:3455
1616
  msgid "Repeat"
1617
  msgstr "Opakovat"
1618
 
1619
- #: app/features/events.php:3456
1620
  msgid "Author"
1621
  msgstr "Autor"
1622
 
1623
- #: app/features/events.php:3577 app/features/events.php:3578
1624
  msgid "iCal Export"
1625
  msgstr "iCal Export"
1626
 
1627
- #: app/features/events.php:3580 app/features/events.php:3581
1628
  msgid "CSV Export"
1629
  msgstr "CSV Export"
1630
 
1631
- #: app/features/events.php:3583 app/features/events.php:3584
1632
  msgid "MS Excel Export"
1633
  msgstr "MS Excel Export"
1634
 
1635
- #: app/features/events.php:3586 app/features/events.php:3587
1636
  msgid "XML Export"
1637
  msgstr "XML Export"
1638
 
1639
- #: app/features/events.php:3589 app/features/events.php:3590
1640
  msgid "JSON Export"
1641
  msgstr "JSON Export"
1642
 
1643
- #: app/features/events.php:3592 app/features/events.php:3593
1644
- #: app/features/events.php:3775
1645
  msgid "Duplicate"
1646
  msgstr "Duplikát"
1647
 
1648
- #: app/features/events.php:3642 app/features/events.php:3684
1649
- #: app/features/ix.php:3513 app/features/ix.php:3554
1650
  msgid "Link"
1651
  msgstr "Odkaz"
1652
 
1653
- #: app/features/events.php:3642 app/features/events.php:3684
1654
  #, php-format
1655
  msgid "%s Tel"
1656
  msgstr "%s Tel"
1657
 
1658
- #: app/features/events.php:3642 app/features/events.php:3684
1659
  #, php-format
1660
  msgid "%s Email"
1661
  msgstr "%s Email"
1662
 
1663
- #: app/features/events.php:3987 app/features/fes.php:233
1664
- #: app/features/profile/profile.php:183 app/libraries/main.php:2507
1665
- #: app/libraries/main.php:5922
1666
  msgid "Ticket"
1667
  msgstr "Vstupenka"
1668
 
1669
- #: app/features/events.php:3990 app/features/profile/profile.php:186
1670
  msgid "Variations"
1671
  msgstr "Variace"
1672
 
1673
- #: app/features/events.php:4005 app/features/fes.php:304
1674
  msgid "Unknown"
1675
  msgstr "Neznámý"
1676
 
1677
- #: app/features/events.php:4031
1678
  msgid ""
1679
  "If you want to send an email, first select your attendees and then click in "
1680
  "the button below, please."
1681
  msgstr ""
1682
 
1683
- #: app/features/events.php:4031 app/features/mec/report.php:50
1684
  #, fuzzy
1685
  #| msgid "Organizer Email"
1686
  msgid "Send Email"
1687
  msgstr "Organizátor Email"
1688
 
1689
- #: app/features/events.php:4035
1690
  #, fuzzy
1691
  #| msgid "Attendees Form"
1692
  msgid "No Attendees Found!"
@@ -1732,8 +1734,8 @@ msgstr "Událost byla odebrána!"
1732
  msgid "Order Time"
1733
  msgstr "Konec"
1734
 
1735
- #: app/features/fes.php:233 app/libraries/main.php:2455
1736
- #: app/libraries/main.php:2570
1737
  msgid "Transaction ID"
1738
  msgstr "ID transakce"
1739
 
@@ -1902,8 +1904,8 @@ msgstr "Odebrat obrázek"
1902
  #: app/features/fes/form.php:848 app/features/labels.php:61
1903
  #: app/features/labels.php:221 app/features/mec.php:462
1904
  #: app/features/mec/meta_boxes/filter.php:72
1905
- #: app/features/mec/meta_boxes/filter.php:133 app/libraries/main.php:5889
1906
- #: app/libraries/main.php:5937 app/skins/single.php:994
1907
  #: app/skins/single/default.php:174 app/skins/single/default.php:406
1908
  #: app/skins/single/m1.php:77 app/skins/single/modern.php:252
1909
  msgid "Labels"
@@ -1971,79 +1973,131 @@ msgstr "MEC Import / Export"
1971
  msgid "Import / Export"
1972
  msgstr "Import / Export"
1973
 
1974
- #: app/features/ix.php:205
1975
- msgid "Please upload the feed file."
 
 
1976
  msgstr "Nahrajte prosím zdrojový soubor."
1977
 
1978
- #: app/features/ix.php:208
1979
- msgid "The file type should be XML or ICS."
 
 
1980
  msgstr "Typ souboru by měl být XML nebo ICS."
1981
 
1982
- #: app/features/ix.php:217
1983
  msgid "An error occurred during the file upload! Please check permissions!"
1984
  msgstr "Při nahrávání souboru došlo k chybě! Zkontrolujte oprávnění!"
1985
 
1986
- #: app/features/ix.php:225
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1987
  msgid "The events are imported successfully!"
1988
  msgstr "Události byly úspěšně importovány!"
1989
 
1990
- #: app/features/ix.php:950
1991
  msgid "Third Party plugin is not installed and activated!"
1992
  msgstr "Plugin třetích stran není nainstalován a aktivován!"
1993
 
1994
- #: app/features/ix.php:973
1995
  msgid "Third Party plugin is invalid!"
1996
  msgstr "Plugin třetí strany je neplatný!"
1997
 
1998
- #: app/features/ix.php:2724 app/features/ix.php:2782
1999
  #, fuzzy
2000
  #| msgid "Both of API key and Calendar ID are required!"
2001
  msgid "API key and Calendar ID are required!"
2002
  msgstr "Obě hodnoty: klíč API a ID kalendáře jsou povinné!"
2003
 
2004
- #: app/features/ix.php:2777 app/features/ix.php:3196 app/features/ix.php:3937
2005
  #, fuzzy
2006
  #| msgid "Please select some events to import!"
2007
  msgid "Please select events to import!"
2008
  msgstr "Vyberte události, které chcete importovat!"
2009
 
2010
- #: app/features/ix.php:3138 app/features/ix.php:3201
2011
  #, fuzzy
2012
  #| msgid "Both of API key and Group URL are required!"
2013
  msgid "API key and Group URL are required!"
2014
  msgstr "Obě hodnoty: klíč API a skupina URL jsou povinné!"
2015
 
2016
- #: app/features/ix.php:3440
2017
  msgid "Check at Meetup"
2018
  msgstr "Ověřit Meetup"
2019
 
2020
- #: app/features/ix.php:3513 app/features/ix.php:3554
2021
  msgid "Organizer Tel"
2022
  msgstr "Organizátor Tel"
2023
 
2024
- #: app/features/ix.php:3513 app/features/ix.php:3554
2025
  msgid "Organizer Email"
2026
  msgstr "Organizátor Email"
2027
 
2028
  # Client Secret dle kontextu
2029
- #: app/features/ix.php:3629
2030
  #, fuzzy
2031
  #| msgid "All of Client ID, Client Secret and Calendar ID are required!"
2032
  msgid "All of Client ID, Client Secret, and Calendar ID are required!"
2033
  msgstr ""
2034
  "Vyžadují se všechny klientské ID, tajné informace klienta a ID kalendáře!"
2035
 
2036
- #: app/features/ix.php:3652
2037
  #, fuzzy, php-format
2038
  #| msgid "All seems good! Please click %s for authenticating your app."
2039
  msgid "All seems good! Please click %s to authenticate your app."
2040
  msgstr "Vše vypadá dobře! Klikněte na % s pro ověření vaší aplikace."
2041
 
2042
- #: app/features/ix.php:3652
2043
  msgid "here"
2044
  msgstr ""
2045
 
2046
- #: app/features/ix.php:3706
2047
  #, fuzzy
2048
  #| msgid "All of Client App, Client Secret and Calendar ID are required!"
2049
  msgid "Client App, Client Secret, and Calendar ID are all required!"
@@ -2051,28 +2105,28 @@ msgstr ""
2051
  "Všechny klientské aplikace, tajné informace klienta a ID kalendáře jsou "
2052
  "povinné!"
2053
 
2054
- #: app/features/ix.php:3859
2055
  #, fuzzy, php-format
2056
  #| msgid "%s events added to Google Calendar successfully."
2057
  msgid "%s events added to Google Calendar with success."
2058
  msgstr "% s události byly přidané do Google kalendáře úspěšně."
2059
 
2060
- #: app/features/ix.php:3860
2061
  #, fuzzy, php-format
2062
  #| msgid "%s previously added events get updated."
2063
  msgid "%s Updated previously added events."
2064
  msgstr "% s dříve přidané události byly aktualizovány."
2065
 
2066
- #: app/features/ix.php:3861
2067
  #, php-format
2068
  msgid "%s events failed to add for following reasons: %s"
2069
  msgstr "% s události se nepodařilo přidat z následujících důvodů: % s"
2070
 
2071
- #: app/features/ix.php:3893
2072
  msgid "Please insert your Facebook page's link."
2073
  msgstr "Vložte prosím odkaz na svou stránku na Facebooku."
2074
 
2075
- #: app/features/ix.php:3904 app/features/ix.php:3946
2076
  #, fuzzy
2077
  #| msgid ""
2078
  #| "We couldn't recognize your Facebook page. Please check it and provide us "
@@ -2084,7 +2138,7 @@ msgstr ""
2084
  "Vaši facebookovou stránku jsme nemohli rozpoznat. Zkontrolujte to a "
2085
  "poskytněte nám platný odkaz na stránku Facebooku."
2086
 
2087
- #: app/features/ix.php:3941
2088
  msgid "Please insert your facebook page's link."
2089
  msgstr "Vložte prosím odkaz na svou facebookovou stránku."
2090
 
@@ -2248,15 +2302,15 @@ msgstr "Přepnout"
2248
  #: app/features/ix/export_g_calendar.php:72
2249
  #: app/features/ix/export_g_calendar.php:151
2250
  #: app/features/ix/export_g_calendar.php:166
2251
- #: app/features/mec/notifications.php:138
2252
- #: app/features/mec/notifications.php:240
2253
- #: app/features/mec/notifications.php:355
2254
- #: app/features/mec/notifications.php:702
2255
  msgid "Add to Google Calendar"
2256
  msgstr "Přidat do Google kalendáře"
2257
 
2258
- #: app/features/ix/export_g_calendar.php:93 app/features/mec/booking.php:828
2259
- #: app/features/mec/modules.php:413 app/features/mec/notifications.php:978
2260
  #: app/features/mec/settings.php:1162 app/features/mec/single.php:388
2261
  msgid "Checking ..."
2262
  msgstr "Ověřování ..."
@@ -2283,6 +2337,7 @@ msgid "XML Feed"
2283
  msgstr "XML Feed"
2284
 
2285
  #: app/features/ix/import.php:29 app/features/ix/import.php:42
 
2286
  msgid "Upload & Import"
2287
  msgstr "Nahrát & importovat"
2288
 
@@ -2304,9 +2359,10 @@ msgstr ""
2304
  msgid "ICS Feed"
2305
  msgstr "ICS Feed"
2306
 
2307
- #: app/features/ix/import.php:46 app/features/mec/booking.php:99
2308
- #: app/features/mec/booking.php:333 app/features/mec/booking.php:349
2309
- #: app/features/mec/booking.php:367 app/features/mec/booking.php:444
 
2310
  #: app/features/mec/meta_boxes/display_options.php:214
2311
  #: app/features/mec/meta_boxes/display_options.php:467
2312
  #: app/features/mec/modules.php:69 app/features/mec/modules.php:211
@@ -2315,10 +2371,10 @@ msgstr "ICS Feed"
2315
  msgid "%s is required to use this feature."
2316
  msgstr "% s je vyžadováno pro použití této funkce."
2317
 
2318
- #: app/features/ix/import.php:46 app/features/ix/sync.php:22
2319
- #: app/features/mec/booking.php:99 app/features/mec/booking.php:333
2320
- #: app/features/mec/booking.php:349 app/features/mec/booking.php:367
2321
- #: app/features/mec/booking.php:444
2322
  #: app/features/mec/meta_boxes/display_options.php:214
2323
  #: app/features/mec/meta_boxes/display_options.php:467
2324
  #: app/features/mec/meta_boxes/display_options.php:508
@@ -2333,6 +2389,32 @@ msgstr "% s je vyžadováno pro použití této funkce."
2333
  msgid "Pro version of Modern Events Calendar"
2334
  msgstr "Pro verze doplňku Modern Events Calendar"
2335
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2336
  #: app/features/ix/import_f_calendar.php:22
2337
  msgid "The Facebook SDK requires PHP version 5.4 or higher."
2338
  msgstr "Facebook SDK vyžaduje PHP verze 5.4 nebo vyšší."
@@ -2512,7 +2594,7 @@ msgstr "Auto Google Import"
2512
 
2513
  #: app/features/ix/sync.php:32 app/features/ix/sync.php:41
2514
  #: app/features/ix/sync.php:52 app/features/ix/sync.php:63
2515
- #: app/features/mec/notifications.php:598
2516
  msgid "Important Note"
2517
  msgstr "Důležitá poznámka"
2518
 
@@ -2707,21 +2789,6 @@ msgstr "Normální"
2707
  msgid "Featured"
2708
  msgstr "Ztvárněná"
2709
 
2710
- #: app/features/labels.php:118 app/features/labels.php:143
2711
- #: app/libraries/main.php:6206 app/skins/agenda/render.php:43
2712
- #: app/skins/available_spot/tpl.php:58 app/skins/carousel/render.php:38
2713
- #: app/skins/countdown/tpl.php:39 app/skins/cover/tpl.php:37
2714
- #: app/skins/daily_view/render.php:29 app/skins/grid/render.php:64
2715
- #: app/skins/list/render.php:40 app/skins/masonry/render.php:34
2716
- #: app/skins/monthly_view/calendar.php:89
2717
- #: app/skins/monthly_view/calendar_clean.php:88
2718
- #: app/skins/monthly_view/calendar_novel.php:80 app/skins/slider/render.php:48
2719
- #: app/skins/tile/render.php:44 app/skins/timeline/render.php:49
2720
- #: app/skins/timetable/render.php:44 app/skins/timetable/render.php:111
2721
- #: app/skins/weekly_view/render.php:37 app/skins/yearly_view/render.php:53
2722
- msgid "Canceled"
2723
- msgstr "Zrušená"
2724
-
2725
  #: app/features/labels.php:120 app/features/labels.php:145
2726
  msgid "You can show featured and canceled events by a different style!"
2727
  msgstr "Vybrané a zrušené události můžete zobrazit jiným stylem!"
@@ -2745,8 +2812,8 @@ msgstr "Událost %s"
2745
 
2746
  #: app/features/locations.php:59 app/features/mec.php:463
2747
  #: app/features/mec/dashboard.php:273 app/features/mec/meta_boxes/filter.php:70
2748
- #: app/features/mec/meta_boxes/filter.php:97 app/libraries/main.php:5891
2749
- #: app/libraries/main.php:5939
2750
  msgid "Locations"
2751
  msgstr "Umístění"
2752
 
@@ -2881,8 +2948,8 @@ msgstr "Vyberte obrázek"
2881
  msgid "Don't show map in single event page"
2882
  msgstr "Nezobrazovat mapu na jednostránkové události"
2883
 
2884
- #: app/features/locations.php:396 app/libraries/main.php:5925
2885
- #: app/libraries/main.php:5970
2886
  msgid "Other Locations"
2887
  msgstr "Další místa"
2888
 
@@ -2970,7 +3037,7 @@ msgstr "Podpora"
2970
  #: app/features/mec.php:464 app/features/mec/dashboard.php:280
2971
  #: app/features/mec/meta_boxes/filter.php:71
2972
  #: app/features/mec/meta_boxes/filter.php:115 app/features/organizers.php:59
2973
- #: app/libraries/main.php:5893 app/libraries/main.php:5941
2974
  msgid "Organizers"
2975
  msgstr "Organizátoři"
2976
 
@@ -3167,25 +3234,25 @@ msgstr ""
3167
  "tomto případě na svého poskytovatele."
3168
 
3169
  #: app/features/mec/booking.php:78 app/features/mec/messages.php:13
3170
- #: app/features/mec/modules.php:23 app/features/mec/notifications.php:11
3171
  #: app/features/mec/settings.php:34 app/features/mec/single.php:19
3172
  #: app/features/mec/styling.php:35
3173
  msgid "Search..."
3174
  msgstr "Vyhledávání ..."
3175
 
3176
- #: app/features/mec/booking.php:80 app/features/mec/booking.php:672
3177
- #: app/features/mec/booking.php:744 app/features/mec/booking.php:753
3178
- #: app/features/mec/booking.php:763 app/features/mec/booking.php:845
3179
- #: app/features/mec/booking.php:859 app/features/mec/messages.php:15
3180
  #: app/features/mec/messages.php:51 app/features/mec/messages.php:60
3181
  #: app/features/mec/messages.php:94 app/features/mec/messages.php:103
3182
- #: app/features/mec/modules.php:25 app/features/mec/modules.php:378
3183
- #: app/features/mec/modules.php:388 app/features/mec/modules.php:430
3184
- #: app/features/mec/modules.php:444 app/features/mec/notifications.php:13
3185
- #: app/features/mec/notifications.php:885
3186
  #: app/features/mec/notifications.php:897
3187
- #: app/features/mec/notifications.php:995
3188
- #: app/features/mec/notifications.php:1009 app/features/mec/settings.php:36
 
3189
  #: app/features/mec/settings.php:1111 app/features/mec/settings.php:1121
3190
  #: app/features/mec/settings.php:1179 app/features/mec/settings.php:1193
3191
  #: app/features/mec/single.php:21 app/features/mec/single.php:353
@@ -3401,12 +3468,62 @@ msgstr ""
3401
  "Pokud nastavíte tuto možnost na 30, rezervační formulář se otevře pouze 30 "
3402
  "minut před zahájením akce!"
3403
 
3404
- #: app/features/mec/booking.php:171 app/features/mec/booking.php:181
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3405
  #: app/features/mec/settings.php:639 app/features/mec/settings.php:649
3406
  msgid "Thank You Page"
3407
  msgstr "Stránka s poděkováním"
3408
 
3409
- #: app/features/mec/booking.php:182
3410
  msgid ""
3411
  "User redirects to this page after booking. Leave it empty if you want to "
3412
  "disable it."
@@ -3414,16 +3531,16 @@ msgstr ""
3414
  "Uživatel bude přesměrován na tuto stránku po rezervaci. Pokud ji chcete "
3415
  "vypnout, ponechte ji prázdnou."
3416
 
3417
- #: app/features/mec/booking.php:189 app/features/mec/booking.php:194
3418
  #: app/features/mec/settings.php:659 app/features/mec/settings.php:664
3419
  msgid "Thank You Page Time Interval"
3420
  msgstr "Stránka s poděkováním časového intervalu"
3421
 
3422
- #: app/features/mec/booking.php:191 app/features/mec/settings.php:661
3423
  msgid "2000 mean 2 seconds"
3424
  msgstr "2000 znamená 2 vteřiny"
3425
 
3426
- #: app/features/mec/booking.php:195 app/features/mec/settings.php:665
3427
  msgid ""
3428
  "Waiting time before redirecting to thank you page. It's in miliseconds so "
3429
  "2000 means 2 seconds."
@@ -3431,86 +3548,86 @@ msgstr ""
3431
  "Čekací doba před přesměrováním na stránku s poděkováním. Je to v "
3432
  "milisekundách, takže 2000 znamená 2 vteřiny."
3433
 
3434
- #: app/features/mec/booking.php:202 app/features/mec/booking.php:212
3435
  #, fuzzy
3436
  #| msgid "User Profile"
3437
  msgid "User Role"
3438
  msgstr "Uživatelský profil"
3439
 
3440
- #: app/features/mec/booking.php:213
3441
  msgid ""
3442
  "MEC creates a user for main attendee after each booking. Default role of the "
3443
  "user is subscriber but you can change it if needed."
3444
  msgstr ""
3445
 
3446
- #: app/features/mec/booking.php:224
3447
  msgid "Enable Express Attendees Form"
3448
  msgstr "Povolit formulář Expres účastníci"
3449
 
3450
- #: app/features/mec/booking.php:228
3451
  msgid "Attendees Form"
3452
  msgstr "Formulář účastníků"
3453
 
3454
- #: app/features/mec/booking.php:229
3455
  msgid ""
3456
  "Apply the info from the first attendee to all purchased ticket by that user. "
3457
  "Uncheck if you want every ticket to have its own attendee’s info."
3458
  msgstr ""
3459
 
3460
- #: app/features/mec/booking.php:242
3461
  msgid "Enable Invoice"
3462
  msgstr "Povolit fakturu"
3463
 
3464
- #: app/features/mec/booking.php:253
3465
  msgid "Enable Booking for Ongoing Events"
3466
  msgstr "Povolit rezervaci pro probíhající události"
3467
 
3468
- #: app/features/mec/booking.php:264
3469
  msgid "Enable Downloadable File"
3470
  msgstr ""
3471
 
3472
- #: app/features/mec/booking.php:269
3473
  msgid ""
3474
  "By enabling this feature, You can upload a file for each event and bookers "
3475
  "are able to download it after booking."
3476
  msgstr ""
3477
 
3478
- #: app/features/mec/booking.php:276
3479
  msgid "Email verification"
3480
  msgstr "Ověřovací email"
3481
 
3482
- #: app/features/mec/booking.php:282
3483
  msgid "Auto verification for free bookings"
3484
  msgstr "Automatické ověření pro rezervace zdarma"
3485
 
3486
- #: app/features/mec/booking.php:291
3487
  msgid "Auto verification for paid bookings"
3488
  msgstr "Automatické ověření pro placené rezervace"
3489
 
3490
- #: app/features/mec/booking.php:295 app/features/mec/notifications.php:248
3491
  #: app/features/notifications.php:144 app/libraries/main.php:590
3492
  msgid "Booking Confirmation"
3493
  msgstr "Potvrzení rezervace"
3494
 
3495
- #: app/features/mec/booking.php:301
3496
  msgid "Auto confirmation for free bookings"
3497
  msgstr "Automatické potvrzení pro rezervace zdarma"
3498
 
3499
- #: app/features/mec/booking.php:310
3500
  msgid "Auto confirmation for paid bookings"
3501
  msgstr "Automatické ověření pro placené rezervace"
3502
 
3503
- #: app/features/mec/booking.php:319
3504
  msgid "Send confirmation email in auto confirmation mode"
3505
  msgstr ""
3506
 
3507
- #: app/features/mec/booking.php:330 app/libraries/main.php:560
3508
  #, fuzzy
3509
  #| msgid "Booking Style"
3510
  msgid "Booking Shortcode"
3511
  msgstr "Styl rezervace"
3512
 
3513
- #: app/features/mec/booking.php:338
3514
  #, php-format
3515
  msgid ""
3516
  "Booking module is available in the event details page but if you like to "
@@ -3519,7 +3636,7 @@ msgid ""
3519
  "into the page content and place the event id instead of 1."
3520
  msgstr ""
3521
 
3522
- #: app/features/mec/booking.php:339
3523
  #, php-format
3524
  msgid ""
3525
  "Also, you can insert %s if you like to show only one of the available "
@@ -3527,11 +3644,11 @@ msgid ""
3527
  "This parameter is optional."
3528
  msgstr ""
3529
 
3530
- #: app/features/mec/booking.php:354
3531
  msgid "Enable coupons module"
3532
  msgstr "Povolit modul vstupenek"
3533
 
3534
- #: app/features/mec/booking.php:356
3535
  #, fuzzy
3536
  #| msgid ""
3537
  #| "After enabling and saving the settings,, you should reload the page to "
@@ -3543,35 +3660,35 @@ msgstr ""
3543
  "Po povolení a uložení nastavení byste měli stránku znovu načíst a zobrazit "
3544
  "novou nabídku na řídícím panelu > Rezervace"
3545
 
3546
- #: app/features/mec/booking.php:364 app/libraries/main.php:562
3547
  msgid "Taxes / Fees"
3548
  msgstr "Daně / poplatky"
3549
 
3550
- #: app/features/mec/booking.php:372
3551
  msgid "Enable taxes / fees module"
3552
  msgstr "Povolit modul daní / poplatků"
3553
 
3554
- #: app/features/mec/booking.php:377
3555
  msgid "Add Fee"
3556
  msgstr "Přidat poplatek"
3557
 
3558
- #: app/features/mec/booking.php:441 app/libraries/main.php:563
3559
  msgid "Ticket Variations & Options"
3560
  msgstr "Varianty a možnosti vstupenek"
3561
 
3562
- #: app/features/mec/booking.php:449
3563
  msgid "Enable ticket options module"
3564
  msgstr "Povolit modul možností vstupenek"
3565
 
3566
- #: app/features/mec/booking.php:454
3567
  msgid "Add Variation / Option"
3568
  msgstr "Přidat varianty / možnosti"
3569
 
3570
- #: app/features/mec/booking.php:731
3571
  msgid "Enable Organizer Payment Module"
3572
  msgstr "Povolit platební modul organizátora"
3573
 
3574
- #: app/features/mec/booking.php:736
3575
  msgid ""
3576
  "By enabling this module, organizers are able to insert their own payment "
3577
  "credentials for enabled gateways per event and receive the payments directly!"
@@ -3579,31 +3696,22 @@ msgstr ""
3579
  "Po aktivaci tohoto modulu mohou organizátoři vkládat své vlastní platební "
3580
  "údaje pro povolené brány pro události a přijímat platby přímo!"
3581
 
3582
- #: app/features/mec/booking.php:823 app/features/mec/messages.php:78
3583
- #: app/features/mec/modules.php:408 app/features/mec/notifications.php:973
3584
  #: app/features/mec/settings.php:1157 app/features/mec/single.php:383
3585
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:311
3586
  msgid "Saved"
3587
  msgstr "Uloženo"
3588
 
3589
- #: app/features/mec/booking.php:824 app/features/mec/messages.php:79
3590
- #: app/features/mec/modules.php:409 app/features/mec/notifications.php:974
3591
  #: app/features/mec/settings.php:1158 app/features/mec/single.php:384
3592
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:312
3593
  msgid "Settings Saved!"
3594
  msgstr "Nastavení uložena!"
3595
 
3596
- #: app/features/mec/booking.php:826 app/features/mec/booking.php:848
3597
- #: app/features/mec/modules.php:411 app/features/mec/modules.php:433
3598
- #: app/features/mec/notifications.php:976
3599
- #: app/features/mec/notifications.php:998 app/features/mec/settings.php:1160
3600
- #: app/features/mec/settings.php:1182 app/features/mec/single.php:386
3601
- #: app/features/mec/single.php:408 app/libraries/main.php:6205
3602
- msgid "Verified"
3603
- msgstr "Ověřeno"
3604
-
3605
- #: app/features/mec/booking.php:850 app/features/mec/modules.php:435
3606
- #: app/features/mec/notifications.php:1000 app/features/mec/settings.php:1184
3607
  #: app/features/mec/single.php:410
3608
  msgid "Please Refresh Page"
3609
  msgstr "Prosím obnovte stránku"
@@ -4778,8 +4886,8 @@ msgstr "Zobrazit vyhledávací formulář"
4778
  #: app/features/mec/meta_boxes/search_form.php:782
4779
  #: app/features/mec/settings.php:904 app/features/mec/single.php:336
4780
  #: app/features/search.php:86 app/features/speakers.php:61
4781
- #: app/features/speakers.php:269 app/libraries/main.php:5896
4782
- #: app/libraries/main.php:5944 app/libraries/skins.php:1017
4783
  #: app/modules/speakers/details.php:18
4784
  msgid "Speaker"
4785
  msgstr "Řečník"
@@ -4796,7 +4904,7 @@ msgstr "Řečník"
4796
  #: app/features/mec/meta_boxes/search_form.php:683
4797
  #: app/features/mec/meta_boxes/search_form.php:789
4798
  #: app/features/mec/settings.php:911 app/features/mec/single.php:345
4799
- #: app/features/search.php:92 app/libraries/skins.php:1043
4800
  msgid "Tag"
4801
  msgstr "Štítek"
4802
 
@@ -5099,237 +5207,214 @@ msgstr "Limit účastníků"
5099
  msgid "Add booking activity to user profile"
5100
  msgstr "Přidejte do uživatelského profilu rezervační aktivitu"
5101
 
5102
- #: app/features/mec/modules.php:365 app/libraries/main.php:596
5103
- #, fuzzy
5104
- #| msgid "Notifications"
5105
- msgid "Notifications Per Event"
5106
- msgstr "Upozornění"
5107
-
5108
- #: app/features/mec/modules.php:369
5109
- #, fuzzy
5110
- #| msgid "Notifications"
5111
- msgid "Edit Notifications Per Event"
5112
- msgstr "Upozornění"
5113
-
5114
- #: app/features/mec/notifications.php:37
5115
  msgid "Enable booking notification"
5116
  msgstr "Povolit upozornění na rezervaci"
5117
 
5118
- #: app/features/mec/notifications.php:41
5119
  #, fuzzy
5120
  #| msgid "It sends to attendee after booking for notifying him/her."
5121
  msgid "Sent to attendee after booking to notify them."
5122
  msgstr "Po rezervaci odešle účastníkovi informační upozornění."
5123
 
5124
- #: app/features/mec/notifications.php:43 app/features/mec/notifications.php:149
5125
- #: app/features/mec/notifications.php:259
5126
- #: app/features/mec/notifications.php:374
5127
- #: app/features/mec/notifications.php:490
5128
- #: app/features/mec/notifications.php:601
5129
- #: app/features/mec/notifications.php:727
5130
- #: app/features/mec/notifications.php:811 app/features/mec/report.php:54
5131
  #: app/features/notifications.php:72
5132
  msgid "Email Subject"
5133
  msgstr "Předmět emailové zprávy"
5134
 
5135
- #: app/features/mec/notifications.php:49 app/features/mec/notifications.php:56
5136
- #: app/features/mec/notifications.php:155
5137
- #: app/features/mec/notifications.php:162
5138
- #: app/features/mec/notifications.php:265
5139
- #: app/features/mec/notifications.php:272
5140
- #: app/features/mec/notifications.php:380
5141
- #: app/features/mec/notifications.php:387
5142
- #: app/features/mec/notifications.php:496
5143
- #: app/features/mec/notifications.php:503
5144
- #: app/features/mec/notifications.php:607
5145
- #: app/features/mec/notifications.php:614
5146
- #: app/features/mec/notifications.php:733
5147
- #: app/features/mec/notifications.php:740
5148
- #: app/features/mec/notifications.php:817
5149
- #: app/features/mec/notifications.php:824
5150
- msgid "Receiver Users"
5151
- msgstr ""
5152
-
5153
- #: app/features/mec/notifications.php:57 app/features/mec/notifications.php:163
5154
  #: app/features/mec/notifications.php:273
 
5155
  #: app/features/mec/notifications.php:388
 
5156
  #: app/features/mec/notifications.php:504
 
5157
  #: app/features/mec/notifications.php:615
 
5158
  #: app/features/mec/notifications.php:741
 
5159
  #: app/features/mec/notifications.php:825
5160
- msgid "Select users to send a copy of email to them!"
5161
  msgstr ""
5162
 
5163
- #: app/features/mec/notifications.php:66 app/features/mec/notifications.php:73
5164
- #: app/features/mec/notifications.php:172
5165
- #: app/features/mec/notifications.php:179
5166
- #: app/features/mec/notifications.php:282
5167
- #: app/features/mec/notifications.php:289
5168
- #: app/features/mec/notifications.php:397
5169
- #: app/features/mec/notifications.php:404
5170
- #: app/features/mec/notifications.php:513
5171
- #: app/features/mec/notifications.php:520
5172
- #: app/features/mec/notifications.php:624
5173
- #: app/features/mec/notifications.php:631
5174
- #: app/features/mec/notifications.php:750
5175
- #: app/features/mec/notifications.php:757
5176
- #: app/features/mec/notifications.php:834
5177
- #: app/features/mec/notifications.php:841
5178
- msgid "Receiver Roles"
5179
  msgstr ""
5180
 
5181
- #: app/features/mec/notifications.php:74 app/features/mec/notifications.php:180
 
 
 
5182
  #: app/features/mec/notifications.php:290
 
5183
  #: app/features/mec/notifications.php:405
 
5184
  #: app/features/mec/notifications.php:521
 
5185
  #: app/features/mec/notifications.php:632
 
5186
  #: app/features/mec/notifications.php:758
 
5187
  #: app/features/mec/notifications.php:842
5188
- msgid "Select users a specific role."
5189
  msgstr ""
5190
 
5191
- #: app/features/mec/notifications.php:82 app/features/mec/notifications.php:86
5192
- #: app/features/mec/notifications.php:188
5193
- #: app/features/mec/notifications.php:192
5194
- #: app/features/mec/notifications.php:298
5195
- #: app/features/mec/notifications.php:302
5196
- #: app/features/mec/notifications.php:413
5197
- #: app/features/mec/notifications.php:417
5198
- #: app/features/mec/notifications.php:529
5199
- #: app/features/mec/notifications.php:533
5200
- #: app/features/mec/notifications.php:640
5201
- #: app/features/mec/notifications.php:644
5202
- #: app/features/mec/notifications.php:766
5203
- #: app/features/mec/notifications.php:770
5204
- #: app/features/mec/notifications.php:850
5205
- #: app/features/mec/notifications.php:854
5206
- msgid "Custom Recipients"
5207
- msgstr "Vlastní příjemci"
5208
 
5209
- #: app/features/mec/notifications.php:87 app/features/mec/notifications.php:193
 
 
 
5210
  #: app/features/mec/notifications.php:303
 
5211
  #: app/features/mec/notifications.php:418
 
5212
  #: app/features/mec/notifications.php:534
 
5213
  #: app/features/mec/notifications.php:645
 
5214
  #: app/features/mec/notifications.php:771
 
5215
  #: app/features/mec/notifications.php:855
 
 
 
 
 
 
 
 
 
 
5216
  msgid "Insert comma separated emails for multiple recipients."
5217
  msgstr "Vložte e-maily oddělené čárkami pro více příjemců."
5218
 
5219
- #: app/features/mec/notifications.php:94 app/features/mec/notifications.php:429
5220
- #: app/features/mec/notifications.php:541
5221
  msgid "Send the email to event organizer"
5222
  msgstr "Pošlete e-mail organizátorovi události"
5223
 
5224
- #: app/features/mec/notifications.php:97 app/features/mec/notifications.php:199
5225
- #: app/features/mec/notifications.php:313
5226
- #: app/features/mec/notifications.php:436
5227
- #: app/features/mec/notifications.php:544
5228
- #: app/features/mec/notifications.php:662
5229
- #: app/features/mec/notifications.php:777
5230
- #: app/features/mec/notifications.php:861 app/features/notifications.php:80
5231
  msgid "Email Content"
5232
  msgstr "Obsah zprávy"
5233
 
5234
- #: app/features/mec/notifications.php:100
5235
- #: app/features/mec/notifications.php:202
5236
- #: app/features/mec/notifications.php:316
5237
- #: app/features/mec/notifications.php:439
5238
- #: app/features/mec/notifications.php:547
5239
- #: app/features/mec/notifications.php:665
5240
- #: app/features/mec/notifications.php:780
5241
- #: app/features/mec/notifications.php:864 app/features/mec/report.php:56
5242
  #, fuzzy
5243
  #| msgid "You can use following placeholders"
5244
  msgid "You can use the following placeholders"
5245
  msgstr "Můžete použít následující zástupné symboly"
5246
 
5247
- #: app/features/mec/notifications.php:102
5248
- #: app/features/mec/notifications.php:204
5249
- #: app/features/mec/notifications.php:318
5250
- #: app/features/mec/notifications.php:441
5251
- #: app/features/mec/notifications.php:549
5252
- #: app/features/mec/notifications.php:667 app/features/notifications.php:91
5253
- msgid "First name of attendee"
5254
- msgstr "První jméno účastníka"
5255
-
5256
  #: app/features/mec/notifications.php:103
5257
  #: app/features/mec/notifications.php:205
5258
  #: app/features/mec/notifications.php:319
5259
  #: app/features/mec/notifications.php:442
5260
  #: app/features/mec/notifications.php:550
5261
- #: app/features/mec/notifications.php:668 app/features/notifications.php:92
5262
- msgid "Last name of attendee"
5263
- msgstr "Příjmení účastníka"
5264
 
5265
  #: app/features/mec/notifications.php:104
5266
  #: app/features/mec/notifications.php:206
5267
  #: app/features/mec/notifications.php:320
5268
  #: app/features/mec/notifications.php:443
5269
  #: app/features/mec/notifications.php:551
5270
- #: app/features/mec/notifications.php:669 app/features/notifications.php:93
5271
- msgid "Email of attendee"
5272
- msgstr "Email účastníka"
5273
 
5274
  #: app/features/mec/notifications.php:105
5275
  #: app/features/mec/notifications.php:207
5276
  #: app/features/mec/notifications.php:321
5277
  #: app/features/mec/notifications.php:444
5278
  #: app/features/mec/notifications.php:552
5279
- #: app/features/mec/notifications.php:670 app/features/notifications.php:94
5280
- msgid "Booked date of event"
5281
- msgstr "Datum rezervace akce"
5282
 
5283
  #: app/features/mec/notifications.php:106
5284
  #: app/features/mec/notifications.php:208
5285
  #: app/features/mec/notifications.php:322
5286
  #: app/features/mec/notifications.php:445
5287
  #: app/features/mec/notifications.php:553
5288
- #: app/features/mec/notifications.php:671 app/features/notifications.php:95
5289
- msgid "Booked time of event"
5290
- msgstr "Čas rezervace akce"
5291
 
5292
  #: app/features/mec/notifications.php:107
5293
  #: app/features/mec/notifications.php:209
5294
  #: app/features/mec/notifications.php:323
5295
  #: app/features/mec/notifications.php:446
5296
  #: app/features/mec/notifications.php:554
5297
- #: app/features/mec/notifications.php:672 app/features/notifications.php:96
5298
- #, fuzzy
5299
- #| msgid "Booked date of event"
5300
- msgid "Booked date and time of event"
5301
- msgstr "Datum rezervace akce"
5302
 
5303
  #: app/features/mec/notifications.php:108
5304
  #: app/features/mec/notifications.php:210
5305
  #: app/features/mec/notifications.php:324
5306
  #: app/features/mec/notifications.php:447
5307
  #: app/features/mec/notifications.php:555
5308
- #: app/features/mec/notifications.php:673 app/features/notifications.php:97
5309
- msgid "Booking Price"
5310
- msgstr "Cena rezervace"
 
 
5311
 
5312
  #: app/features/mec/notifications.php:109
5313
  #: app/features/mec/notifications.php:211
5314
  #: app/features/mec/notifications.php:325
5315
  #: app/features/mec/notifications.php:448
5316
  #: app/features/mec/notifications.php:556
5317
- #: app/features/mec/notifications.php:674 app/features/notifications.php:98
5318
- #, fuzzy
5319
- #| msgid "Cannot find the booking!"
5320
- msgid "Date and time of booking"
5321
- msgstr "Nemohu najít rezervaci!"
5322
 
5323
  #: app/features/mec/notifications.php:110
5324
  #: app/features/mec/notifications.php:212
5325
  #: app/features/mec/notifications.php:326
5326
  #: app/features/mec/notifications.php:449
5327
  #: app/features/mec/notifications.php:557
5328
- #: app/features/mec/notifications.php:675
5329
- #: app/features/mec/notifications.php:788
5330
- #: app/features/mec/notifications.php:872 app/features/notifications.php:99
5331
- msgid "Your website title"
5332
- msgstr "Název vašeho webu"
5333
 
5334
  #: app/features/mec/notifications.php:111
5335
  #: app/features/mec/notifications.php:213
@@ -5338,9 +5423,9 @@ msgstr "Název vašeho webu"
5338
  #: app/features/mec/notifications.php:558
5339
  #: app/features/mec/notifications.php:676
5340
  #: app/features/mec/notifications.php:789
5341
- #: app/features/mec/notifications.php:873 app/features/notifications.php:100
5342
- msgid "Your website URL"
5343
- msgstr "URL vašeho webu"
5344
 
5345
  #: app/features/mec/notifications.php:112
5346
  #: app/features/mec/notifications.php:214
@@ -5349,293 +5434,304 @@ msgstr "URL vašeho webu"
5349
  #: app/features/mec/notifications.php:559
5350
  #: app/features/mec/notifications.php:677
5351
  #: app/features/mec/notifications.php:790
5352
- #: app/features/mec/notifications.php:874 app/features/notifications.php:101
5353
- msgid "Your website description"
5354
- msgstr "Popis vašeho webu"
5355
 
5356
  #: app/features/mec/notifications.php:113
5357
  #: app/features/mec/notifications.php:215
5358
  #: app/features/mec/notifications.php:329
5359
  #: app/features/mec/notifications.php:452
5360
  #: app/features/mec/notifications.php:560
5361
- #: app/features/mec/notifications.php:678 app/features/notifications.php:102
5362
- msgid "Event title"
5363
- msgstr "Název události"
 
 
5364
 
5365
  #: app/features/mec/notifications.php:114
5366
  #: app/features/mec/notifications.php:216
5367
  #: app/features/mec/notifications.php:330
5368
  #: app/features/mec/notifications.php:453
5369
  #: app/features/mec/notifications.php:561
5370
- #: app/features/mec/notifications.php:679 app/features/notifications.php:103
5371
- msgid "Event link"
5372
- msgstr "Odkaz události"
5373
 
5374
  #: app/features/mec/notifications.php:115
5375
  #: app/features/mec/notifications.php:217
5376
  #: app/features/mec/notifications.php:331
5377
- #: app/features/mec/notifications.php:784
5378
- #: app/features/mec/notifications.php:868 app/features/notifications.php:124
5379
- #, fuzzy
5380
- #| msgid "Start Date"
5381
- msgid "Event Start Date"
5382
- msgstr "Počátečná den"
5383
 
5384
  #: app/features/mec/notifications.php:116
5385
  #: app/features/mec/notifications.php:218
5386
  #: app/features/mec/notifications.php:332
5387
  #: app/features/mec/notifications.php:785
5388
- #: app/features/mec/notifications.php:869 app/features/notifications.php:125
5389
  #, fuzzy
5390
- #| msgid "End Date"
5391
- msgid "Event End Date"
5392
- msgstr "Konečný den"
5393
 
5394
  #: app/features/mec/notifications.php:117
5395
  #: app/features/mec/notifications.php:219
5396
  #: app/features/mec/notifications.php:333
5397
- #: app/features/mec/notifications.php:454
5398
- #: app/features/mec/notifications.php:562
5399
- #: app/features/mec/notifications.php:680 app/features/notifications.php:104
5400
- msgid "Speaker name of booked event"
5401
- msgstr "Jméno řečníka rezervované události"
 
5402
 
5403
  #: app/features/mec/notifications.php:118
5404
  #: app/features/mec/notifications.php:220
5405
  #: app/features/mec/notifications.php:334
5406
  #: app/features/mec/notifications.php:455
5407
  #: app/features/mec/notifications.php:563
5408
- #: app/features/mec/notifications.php:681 app/features/notifications.php:105
5409
- msgid "Organizer name of booked event"
5410
- msgstr "Jméno organizátora rezervované události"
5411
 
5412
  #: app/features/mec/notifications.php:119
5413
  #: app/features/mec/notifications.php:221
5414
  #: app/features/mec/notifications.php:335
5415
  #: app/features/mec/notifications.php:456
5416
  #: app/features/mec/notifications.php:564
5417
- #: app/features/mec/notifications.php:682 app/features/notifications.php:106
5418
- msgid "Organizer tel of booked event"
5419
- msgstr "Telefon organizátora rezervované události"
5420
 
5421
  #: app/features/mec/notifications.php:120
5422
  #: app/features/mec/notifications.php:222
5423
  #: app/features/mec/notifications.php:336
5424
  #: app/features/mec/notifications.php:457
5425
  #: app/features/mec/notifications.php:565
5426
- #: app/features/mec/notifications.php:683 app/features/notifications.php:107
5427
- msgid "Organizer email of booked event"
5428
- msgstr "Email organizátora rezervované události"
5429
 
5430
  #: app/features/mec/notifications.php:121
5431
  #: app/features/mec/notifications.php:223
5432
  #: app/features/mec/notifications.php:337
5433
  #: app/features/mec/notifications.php:458
5434
  #: app/features/mec/notifications.php:566
5435
- #: app/features/mec/notifications.php:684 app/features/notifications.php:108
5436
- msgid "Location name of booked event"
5437
- msgstr "Název místa rezervované události"
5438
 
5439
  #: app/features/mec/notifications.php:122
5440
  #: app/features/mec/notifications.php:224
5441
  #: app/features/mec/notifications.php:338
5442
  #: app/features/mec/notifications.php:459
5443
  #: app/features/mec/notifications.php:567
5444
- #: app/features/mec/notifications.php:685 app/features/notifications.php:109
5445
- msgid "Location address of booked event"
5446
- msgstr "Adresa místa rezervované události"
5447
 
5448
  #: app/features/mec/notifications.php:123
5449
  #: app/features/mec/notifications.php:225
5450
  #: app/features/mec/notifications.php:339
5451
  #: app/features/mec/notifications.php:460
5452
  #: app/features/mec/notifications.php:568
5453
- #: app/features/mec/notifications.php:686 app/features/notifications.php:110
5454
- #, fuzzy
5455
- #| msgid "Location name of booked event"
5456
- msgid "Additional locations name of booked event"
5457
- msgstr "Název místa rezervované události"
5458
 
5459
  #: app/features/mec/notifications.php:124
5460
  #: app/features/mec/notifications.php:226
5461
  #: app/features/mec/notifications.php:340
5462
  #: app/features/mec/notifications.php:461
5463
  #: app/features/mec/notifications.php:569
5464
- #: app/features/mec/notifications.php:687 app/features/notifications.php:111
5465
  #, fuzzy
5466
- #| msgid "Location address of booked event"
5467
- msgid "Additional locations address of booked event"
5468
- msgstr "Adresa místa rezervované události"
5469
 
5470
  #: app/features/mec/notifications.php:125
5471
  #: app/features/mec/notifications.php:227
5472
  #: app/features/mec/notifications.php:341
5473
  #: app/features/mec/notifications.php:462
5474
  #: app/features/mec/notifications.php:570
5475
- #: app/features/mec/notifications.php:688 app/features/notifications.php:112
5476
  #, fuzzy
5477
- #| msgid "Speaker name of booked event"
5478
- msgid "Featured image of booked event"
5479
- msgstr "Jméno řečníka rezervované události"
5480
 
5481
  #: app/features/mec/notifications.php:126
5482
  #: app/features/mec/notifications.php:228
5483
  #: app/features/mec/notifications.php:342
5484
  #: app/features/mec/notifications.php:463
5485
  #: app/features/mec/notifications.php:571
5486
- #: app/features/mec/notifications.php:689 app/features/notifications.php:113
5487
- msgid "Full Attendee info such as booking form data, name, email etc."
5488
- msgstr ""
5489
- "Úplné informace o účastnících, jako jsou údaje z rezervačního formuláře, "
5490
- "jméno, e-mail atd."
5491
 
5492
  #: app/features/mec/notifications.php:127
5493
  #: app/features/mec/notifications.php:229
5494
  #: app/features/mec/notifications.php:343
5495
  #: app/features/mec/notifications.php:464
5496
  #: app/features/mec/notifications.php:572
5497
- #: app/features/mec/notifications.php:690 app/features/notifications.php:114
5498
- #, fuzzy
5499
- #| msgid "Booking"
5500
- msgid "Booking ID"
5501
- msgstr "Rezervace"
5502
 
5503
  #: app/features/mec/notifications.php:128
5504
  #: app/features/mec/notifications.php:230
5505
  #: app/features/mec/notifications.php:344
5506
  #: app/features/mec/notifications.php:465
5507
  #: app/features/mec/notifications.php:573
5508
- #: app/features/mec/notifications.php:691 app/features/notifications.php:115
 
 
 
 
 
 
 
 
 
 
 
5509
  #, fuzzy
5510
  #| msgid "Transaction ID"
5511
  msgid "Transaction ID of Booking"
5512
  msgstr "ID transakce"
5513
 
5514
- #: app/features/mec/notifications.php:129
5515
- #: app/features/mec/notifications.php:346
5516
- #: app/features/mec/notifications.php:693
5517
- msgid "Invoice Link"
5518
- msgstr "Odkaz na fakturu"
5519
-
5520
  #: app/features/mec/notifications.php:130
5521
- #: app/features/mec/notifications.php:232
5522
  #: app/features/mec/notifications.php:347
5523
- #: app/features/mec/notifications.php:467
5524
- #: app/features/mec/notifications.php:575
5525
- #: app/features/mec/notifications.php:694 app/features/notifications.php:117
5526
- #, fuzzy
5527
- #| msgid "There is no skins"
5528
- msgid "Total attendees of current booking"
5529
- msgstr "Neexistuje žádný vzhled"
5530
 
5531
  #: app/features/mec/notifications.php:131
5532
  #: app/features/mec/notifications.php:233
5533
  #: app/features/mec/notifications.php:348
5534
  #: app/features/mec/notifications.php:468
5535
  #: app/features/mec/notifications.php:576
5536
- #: app/features/mec/notifications.php:695 app/features/notifications.php:118
5537
- msgid "Amount of Booked Tickets (Total attendees of all bookings)"
5538
- msgstr ""
 
 
5539
 
5540
  #: app/features/mec/notifications.php:132
5541
  #: app/features/mec/notifications.php:234
5542
  #: app/features/mec/notifications.php:349
5543
  #: app/features/mec/notifications.php:469
5544
  #: app/features/mec/notifications.php:577
5545
- #: app/features/mec/notifications.php:696 app/features/notifications.php:119
5546
- msgid "Ticket name"
5547
- msgstr "Název vstupenky"
5548
 
5549
  #: app/features/mec/notifications.php:133
5550
  #: app/features/mec/notifications.php:235
5551
  #: app/features/mec/notifications.php:350
5552
  #: app/features/mec/notifications.php:470
5553
  #: app/features/mec/notifications.php:578
5554
- #: app/features/mec/notifications.php:697 app/features/notifications.php:120
5555
- msgid "Ticket time"
5556
- msgstr "Čas vstupenky"
5557
 
5558
  #: app/features/mec/notifications.php:134
5559
  #: app/features/mec/notifications.php:236
5560
  #: app/features/mec/notifications.php:351
5561
  #: app/features/mec/notifications.php:471
5562
  #: app/features/mec/notifications.php:579
5563
- #: app/features/mec/notifications.php:698 app/features/notifications.php:121
5564
- #, fuzzy
5565
- #| msgid "Ticket name"
5566
- msgid "Ticket name & time"
5567
- msgstr "Název vstupenky"
5568
 
5569
  #: app/features/mec/notifications.php:135
5570
  #: app/features/mec/notifications.php:237
5571
  #: app/features/mec/notifications.php:352
5572
  #: app/features/mec/notifications.php:472
5573
  #: app/features/mec/notifications.php:580
5574
- #: app/features/mec/notifications.php:699 app/features/notifications.php:122
5575
  #, fuzzy
5576
- #| msgid "Payment Gateways"
5577
- msgid "Payment Gateway"
5578
- msgstr "Platební brány"
5579
 
5580
  #: app/features/mec/notifications.php:136
5581
  #: app/features/mec/notifications.php:238
5582
  #: app/features/mec/notifications.php:353
5583
  #: app/features/mec/notifications.php:473
5584
  #: app/features/mec/notifications.php:581
5585
- #: app/features/mec/notifications.php:700 app/features/notifications.php:123
5586
- msgid "Link to the downloadable file"
5587
- msgstr ""
 
 
5588
 
5589
  #: app/features/mec/notifications.php:137
5590
  #: app/features/mec/notifications.php:239
5591
  #: app/features/mec/notifications.php:354
5592
- #: app/features/mec/notifications.php:701
 
 
 
 
 
 
 
 
 
5593
  msgid "Download ICS file"
5594
  msgstr "Stáhnout ICS soubor"
5595
 
5596
- #: app/features/mec/notifications.php:146 app/libraries/main.php:589
5597
  msgid "Booking Verification"
5598
  msgstr "Ověření rezervace"
5599
 
5600
- #: app/features/mec/notifications.php:147
5601
  msgid "It sends to attendee email for verifying their booking/email."
5602
  msgstr "Odesílá e-mail účastníkovi k ověření jeho rezervace / e-mailu."
5603
 
5604
- #: app/features/mec/notifications.php:231
5605
  msgid "Email/Booking verification link."
5606
  msgstr "Ověřovací odkaz E-mailu / Rezervace."
5607
 
5608
- #: app/features/mec/notifications.php:252
5609
  #, fuzzy
5610
  #| msgid "Enable booking notification"
5611
  msgid "Enable booking confirmation"
5612
  msgstr "Povolit upozornění na rezervaci"
5613
 
5614
- #: app/features/mec/notifications.php:257
5615
  #, fuzzy
5616
  #| msgid "It sends to attendee after confirming the booking by admin."
5617
  msgid "Sent to attendee after confirming the booking by admin."
5618
  msgstr "Po potvrzení rezervace od administrátora odešle účastníkovi."
5619
 
5620
- #: app/features/mec/notifications.php:310
5621
  msgid "Send One Single Email Only To First Attendee"
5622
  msgstr ""
5623
 
5624
- #: app/features/mec/notifications.php:345
5625
- #: app/features/mec/notifications.php:692
5626
  msgid "Booking cancellation link."
5627
  msgstr "Odkaz na zrušení rezervace."
5628
 
5629
- #: app/features/mec/notifications.php:364 app/features/notifications.php:147
5630
  #: app/libraries/main.php:591
5631
  msgid "Booking Cancellation"
5632
  msgstr "Zrušení rezervace"
5633
 
5634
- #: app/features/mec/notifications.php:368
5635
  msgid "Enable cancellation notification"
5636
  msgstr "Povolit oznámení o zrušení"
5637
 
5638
- #: app/features/mec/notifications.php:372
5639
  #, fuzzy
5640
  #| msgid ""
5641
  #| "It sends to selected recipients after booking cancellation for notifying "
@@ -5643,46 +5739,46 @@ msgstr "Povolit oznámení o zrušení"
5643
  msgid "Sent to selected recipients after booking cancellation to notify them."
5644
  msgstr "Po zrušení rezervace odešle vybraným příjemcům upozornění."
5645
 
5646
- #: app/features/mec/notifications.php:425
5647
- #: app/features/mec/notifications.php:722
5648
  msgid "Send the email to admin"
5649
  msgstr "Odeslat email administrátorovi"
5650
 
5651
- #: app/features/mec/notifications.php:433
5652
  #, fuzzy
5653
  #| msgid "Send the email to booking user"
5654
  msgid "Send the email to the booked user"
5655
  msgstr "Pošlete rezervační e-mail uživateli"
5656
 
5657
- #: app/features/mec/notifications.php:466
5658
- #: app/features/mec/notifications.php:574 app/features/notifications.php:116
5659
  msgid "Admin booking management link."
5660
  msgstr "Odkaz administrátora na správu rezervace."
5661
 
5662
- #: app/features/mec/notifications.php:480 app/libraries/main.php:593
5663
  msgid "Admin"
5664
  msgstr "Administrátor"
5665
 
5666
- #: app/features/mec/notifications.php:484
5667
  msgid "Enable admin notification"
5668
  msgstr "Povolit oznámení správce"
5669
 
5670
- #: app/features/mec/notifications.php:488
5671
  #, fuzzy
5672
  #| msgid "It sends to admin to notify him/her that a new booking received."
5673
  msgid "Sent to admin to notify them that a new booking has been received."
5674
  msgstr "Zašle správci informaci o přijetí nové rezervace."
5675
 
5676
- #: app/features/mec/notifications.php:588 app/features/notifications.php:153
5677
- #: app/libraries/main.php:592 app/libraries/notifications.php:584
5678
  msgid "Booking Reminder"
5679
  msgstr "Připomenutí rezervace"
5680
 
5681
- #: app/features/mec/notifications.php:592
5682
  msgid "Enable booking reminder notification"
5683
  msgstr "Povolit upozornění na připomenutí rezervace"
5684
 
5685
- #: app/features/mec/notifications.php:598
5686
  #, fuzzy, php-format
5687
  #| msgid ""
5688
  #| "Set a cronjob to call %s file once per day otherwise it won't send the "
@@ -5697,37 +5793,37 @@ msgstr ""
5697
  "zasílat připomenutí. Mějte na paměti, že byste měli zavolat tento soubor "
5698
  "% s, jinak může zasílat připomenutí několikrát."
5699
 
5700
- #: app/features/mec/notifications.php:598
5701
  #, fuzzy
5702
  #| msgid "only once per day"
5703
  msgid "only once per hour"
5704
  msgstr "pouze jednou denně"
5705
 
5706
- #: app/features/mec/notifications.php:651 app/libraries/main.php:6950
5707
- #: app/libraries/main.php:6967
5708
  #, fuzzy
5709
  #| msgid "hours"
5710
  msgid "Hours"
5711
  msgstr "hodiny"
5712
 
5713
- #: app/features/mec/notifications.php:655
5714
  msgid "Reminder hours"
5715
  msgstr ""
5716
 
5717
- #: app/features/mec/notifications.php:656
5718
  msgid "Please, insert comma to separate reminder hours."
5719
  msgstr ""
5720
 
5721
- #: app/features/mec/notifications.php:711 app/features/popup/event.php:253
5722
  #: app/libraries/main.php:581
5723
  msgid "New Event"
5724
  msgstr "Nová událost"
5725
 
5726
- #: app/features/mec/notifications.php:715
5727
  msgid "Enable new event notification"
5728
  msgstr "Povolit oznámení na novou událost"
5729
 
5730
- #: app/features/mec/notifications.php:725
5731
  #, fuzzy
5732
  #| msgid ""
5733
  #| "It sends after adding a new event from frontend event submission or from "
@@ -5739,41 +5835,41 @@ msgstr ""
5739
  "Odesílá se po přidání nové události z webových stránek události (frontend) "
5740
  "nebo z administrace webových stránek (backend)."
5741
 
5742
- #: app/features/mec/notifications.php:782
5743
- #: app/features/mec/notifications.php:866
5744
  msgid "Title of event"
5745
  msgstr "Název události"
5746
 
5747
- #: app/features/mec/notifications.php:783
5748
- #: app/features/mec/notifications.php:867
5749
  msgid "Link of event"
5750
  msgstr "Odkaz události"
5751
 
5752
- #: app/features/mec/notifications.php:786
5753
- #: app/features/mec/notifications.php:870 app/features/notifications.php:126
5754
  msgid "Status of event"
5755
  msgstr "Stav události"
5756
 
5757
- #: app/features/mec/notifications.php:787
5758
- #: app/features/mec/notifications.php:871 app/features/mec/settings.php:819
5759
  #: app/features/mec/settings.php:823 app/features/notifications.php:127
5760
  msgid "Event Note"
5761
  msgstr "Poznámka události"
5762
 
5763
- #: app/features/mec/notifications.php:791
5764
- #: app/features/mec/notifications.php:875
5765
  msgid "Admin events management link."
5766
  msgstr "Odkaz administrátora na správu událostí."
5767
 
5768
- #: app/features/mec/notifications.php:801 app/libraries/main.php:582
5769
  msgid "User Event Publishing"
5770
  msgstr "Publikování uživatelských událostí"
5771
 
5772
- #: app/features/mec/notifications.php:805
5773
  msgid "Enable user event publishing notification"
5774
  msgstr "Povolit oznámení o zveřejnění události uživatele"
5775
 
5776
- #: app/features/mec/notifications.php:809
5777
  #, fuzzy
5778
  #| msgid ""
5779
  #| "It sends after published a new event from frontend event submission or "
@@ -5785,6 +5881,18 @@ msgstr ""
5785
  "Odešle po zveřejnění nové události ze zadání z webových stránek (frontend) "
5786
  "nebo z administrace webových stránek (backend)."
5787
 
 
 
 
 
 
 
 
 
 
 
 
 
5788
  #: app/features/mec/report.php:15
5789
  #, fuzzy
5790
  #| msgid "Booking Form"
@@ -5962,7 +6070,7 @@ msgid "You can enable/disable Schema scripts"
5962
  msgstr "Můžete povolit nebo zakázat skripty schématu"
5963
 
5964
  #: app/features/mec/settings.php:157 app/features/mec/settings.php:167
5965
- #: app/libraries/main.php:5900 app/libraries/main.php:5948
5966
  msgid "Weekdays"
5967
  msgstr "Pracovní dny"
5968
 
@@ -6697,7 +6805,7 @@ msgstr ""
6697
  msgid "Custom Fields"
6698
  msgstr "Vlastní styly"
6699
 
6700
- #: app/features/mec/single.php:184 app/libraries/main.php:3183
6701
  msgid "URL"
6702
  msgstr ""
6703
 
@@ -7508,8 +7616,8 @@ msgstr "např. info@itreseni.cz"
7508
  msgid "eg. https://webnus.net"
7509
  msgstr "např. https://webnus.net"
7510
 
7511
- #: app/features/organizers.php:312 app/libraries/main.php:5924
7512
- #: app/libraries/main.php:5969 app/skins/single.php:1152
7513
  msgid "Other Organizers"
7514
  msgstr "Další organizátoři"
7515
 
@@ -7707,11 +7815,11 @@ msgstr "Vaše rezervace již byla zrušena!"
7707
  msgid "#"
7708
  msgstr "#"
7709
 
7710
- #: app/features/profile/profile.php:61 app/libraries/main.php:3515
7711
  msgid "Status"
7712
  msgstr "Stav"
7713
 
7714
- #: app/features/profile/profile.php:64 app/libraries/main.php:2491
7715
  msgid "Attendees"
7716
  msgstr "Účastníci"
7717
 
@@ -7832,12 +7940,12 @@ msgstr "Vyhledat"
7832
  msgid "No search result."
7833
  msgstr "Žádný výsledek vyhledávání."
7834
 
7835
- #: app/features/search_bar/search_result.php:12 app/libraries/main.php:5926
7836
- #: app/libraries/main.php:5971 app/libraries/notifications.php:989
7837
- #: app/libraries/render.php:516 app/libraries/render.php:816
7838
  #: app/modules/local-time/details.php:48 app/modules/local-time/type1.php:45
7839
  #: app/modules/local-time/type2.php:47 app/modules/local-time/type3.php:45
7840
- #: app/modules/next-event/details.php:145 app/skins/single.php:1044
7841
  #: app/skins/single/default.php:125 app/skins/single/default.php:359
7842
  #: app/skins/single/m1.php:47 app/skins/single/modern.php:222
7843
  #, fuzzy
@@ -8058,38 +8166,38 @@ msgstr "Zobrazení posuvníku"
8058
  msgid "Timeline View"
8059
  msgstr "Zobrazení rozvrhu"
8060
 
8061
- #: app/libraries/main.php:385 app/libraries/main.php:5902
8062
- #: app/libraries/main.php:5950
8063
  msgid "SU"
8064
  msgstr "NE"
8065
 
8066
- #: app/libraries/main.php:386 app/libraries/main.php:5903
8067
- #: app/libraries/main.php:5951
8068
  msgid "MO"
8069
  msgstr "PO"
8070
 
8071
- #: app/libraries/main.php:387 app/libraries/main.php:5904
8072
- #: app/libraries/main.php:5952
8073
  msgid "TU"
8074
  msgstr "ÚT"
8075
 
8076
- #: app/libraries/main.php:388 app/libraries/main.php:5905
8077
- #: app/libraries/main.php:5953
8078
  msgid "WE"
8079
  msgstr "ST"
8080
 
8081
- #: app/libraries/main.php:389 app/libraries/main.php:5906
8082
- #: app/libraries/main.php:5954
8083
  msgid "TH"
8084
  msgstr "ČT"
8085
 
8086
- #: app/libraries/main.php:390 app/libraries/main.php:5907
8087
- #: app/libraries/main.php:5955
8088
  msgid "FR"
8089
  msgstr "PÁ"
8090
 
8091
- #: app/libraries/main.php:391 app/libraries/main.php:5908
8092
- #: app/libraries/main.php:5956
8093
  msgid "SA"
8094
  msgstr "SO"
8095
 
@@ -8270,31 +8378,41 @@ msgstr "Vaše rezervace byla úspěšně ověřena."
8270
  msgid "Your booking cannot verify!"
8271
  msgstr "Vaši rezervaci nelze ověřit!"
8272
 
8273
- #: app/libraries/main.php:2328
 
 
 
 
 
 
 
 
 
 
8274
  msgid "Your booking successfully canceled."
8275
  msgstr "Vaše rezervace byla úspěšně zrušena."
8276
 
8277
- #: app/libraries/main.php:2329
8278
  msgid "Your booking cannot be canceled."
8279
  msgstr "Vaši rezervaci nelze zrušit."
8280
 
8281
- #: app/libraries/main.php:2333
8282
  msgid "You canceled the payment successfully."
8283
  msgstr "Platbu jste úspěšně zrušili."
8284
 
8285
- #: app/libraries/main.php:2337
8286
  msgid "You returned from payment gateway successfully."
8287
  msgstr "Úspěšně jste se vrátili z platební brány."
8288
 
8289
- #: app/libraries/main.php:2356
8290
  msgid "Cannot find the invoice!"
8291
  msgstr "Fakturu nelze najít!"
8292
 
8293
- #: app/libraries/main.php:2356
8294
  msgid "Invoice is invalid."
8295
  msgstr "Faktura je neplatná."
8296
 
8297
- #: app/libraries/main.php:2376
8298
  #, fuzzy
8299
  #| msgid ""
8300
  #| "Your booking still is not confirmed. You able download it after "
@@ -8304,245 +8422,245 @@ msgid ""
8304
  msgstr ""
8305
  "Vaše rezervace stále není potvrzena. Můžete si ji stáhnout po potvrzení!"
8306
 
8307
- #: app/libraries/main.php:2376
8308
  msgid "Booking Not Confirmed."
8309
  msgstr "Rezervace nebyla potvrzena."
8310
 
8311
- #: app/libraries/main.php:2382
8312
  msgid "Cannot find the booking!"
8313
  msgstr "Nemohu najít rezervaci!"
8314
 
8315
- #: app/libraries/main.php:2382
8316
  msgid "Booking is invalid."
8317
  msgstr "Rezervace není platná."
8318
 
8319
- #: app/libraries/main.php:2415
8320
  #, php-format
8321
  msgid "%s Invoice"
8322
  msgstr "%s Faktura"
8323
 
8324
- #: app/libraries/main.php:2448
8325
  #, fuzzy
8326
  #| msgid "Date and Time"
8327
  msgid "Date & Time"
8328
  msgstr "Datum a čas"
8329
 
8330
- #: app/libraries/main.php:2465
8331
  #, fuzzy
8332
  #| msgid "Booking Price"
8333
  msgid "Booking Fields"
8334
  msgstr "Cena rezervace"
8335
 
8336
- #: app/libraries/main.php:2537
8337
  msgid "Billing"
8338
  msgstr "Fakturace"
8339
 
8340
- #: app/libraries/main.php:2549
8341
  #, fuzzy
8342
  #| msgid "Coupons"
8343
  msgid "Coupon Code"
8344
  msgstr "Kupóny"
8345
 
8346
- #: app/libraries/main.php:2554
8347
  msgid "Total"
8348
  msgstr "Celkem"
8349
 
8350
- #: app/libraries/main.php:2561
8351
  #, fuzzy
8352
  #| msgid "Payment Gateways"
8353
  msgid "Payment"
8354
  msgstr "Platební brány"
8355
 
8356
- #: app/libraries/main.php:2565
8357
  #, fuzzy
8358
  #| msgid "Payment Gateways"
8359
  msgid "Gateway"
8360
  msgstr "Platební brány"
8361
 
8362
- #: app/libraries/main.php:2578
8363
  #, fuzzy
8364
  #| msgid "Payment Gateways"
8365
  msgid "Payment Time"
8366
  msgstr "Platební brány"
8367
 
8368
- #: app/libraries/main.php:2720
8369
  msgid "Request is not valid."
8370
  msgstr "Požadavek není platný."
8371
 
8372
- #: app/libraries/main.php:2720
8373
  msgid "iCal export stopped!"
8374
  msgstr "iCal export byl zastaven!"
8375
 
8376
- #: app/libraries/main.php:3066 app/libraries/main.php:3095
8377
- #: app/libraries/main.php:3124 app/libraries/main.php:3153
8378
- #: app/libraries/main.php:3182 app/libraries/main.php:3211
8379
- #: app/libraries/main.php:3240 app/libraries/main.php:3269
8380
- #: app/libraries/main.php:3298 app/libraries/main.php:3327
8381
- #: app/libraries/main.php:3350 app/libraries/main.php:3396
8382
- #: app/libraries/main.php:3442 app/libraries/main.php:3491
8383
- #: app/libraries/main.php:3540
8384
  msgid "Sort"
8385
  msgstr "Seřadit"
8386
 
8387
- #: app/libraries/main.php:3073 app/libraries/main.php:3102
8388
- #: app/libraries/main.php:3131 app/libraries/main.php:3160
8389
- #: app/libraries/main.php:3189 app/libraries/main.php:3218
8390
- #: app/libraries/main.php:3247 app/libraries/main.php:3276
8391
- #: app/libraries/main.php:3305 app/libraries/main.php:3357
8392
- #: app/libraries/main.php:3403 app/libraries/main.php:3449
8393
- #: app/libraries/main.php:3498
8394
  msgid "Required Field"
8395
  msgstr "Požadovaná pole"
8396
 
8397
- #: app/libraries/main.php:3079 app/libraries/main.php:3108
8398
- #: app/libraries/main.php:3137 app/libraries/main.php:3166
8399
- #: app/libraries/main.php:3195 app/libraries/main.php:3224
8400
- #: app/libraries/main.php:3253 app/libraries/main.php:3282
8401
- #: app/libraries/main.php:3311 app/libraries/main.php:3363
8402
- #: app/libraries/main.php:3409 app/libraries/main.php:3455
8403
- #: app/libraries/main.php:3504
8404
  msgid "Insert a label for this field"
8405
  msgstr "Vložte štítek pro toto pole"
8406
 
8407
- #: app/libraries/main.php:3333
8408
  msgid "HTML and shortcode are allowed."
8409
  msgstr "HTML a zkrácené kódy jsou povoleny."
8410
 
8411
- #: app/libraries/main.php:3376 app/libraries/main.php:3422
8412
- #: app/libraries/main.php:3468
8413
  msgid "Option"
8414
  msgstr "Možnost"
8415
 
8416
- #: app/libraries/main.php:3504
8417
  #, php-format
8418
  msgid "Instead of %s, the page title with a link will be show."
8419
  msgstr "Místo%s se zobrazí název stránky s odkazem."
8420
 
8421
- #: app/libraries/main.php:3506
8422
  msgid "Agreement Page"
8423
  msgstr "Stránka smlouvy"
8424
 
8425
- #: app/libraries/main.php:3517
8426
  msgid "Checked by default"
8427
  msgstr "Ve výchozím nastavení zaškrtnuto"
8428
 
8429
- #: app/libraries/main.php:3518
8430
  msgid "Unchecked by default"
8431
  msgstr "Ve výchozím nastavení není zaškrtnuto"
8432
 
8433
- #: app/libraries/main.php:3542
8434
  msgid "Insert a label for this option"
8435
  msgstr "Vložte štítek pro tuto možnost"
8436
 
8437
- #: app/libraries/main.php:3555
8438
  msgid "Free"
8439
  msgstr "Zdarma"
8440
 
8441
- #: app/libraries/main.php:4184 app/libraries/main.php:6220
8442
  msgid "M.E. Calender"
8443
  msgstr "M.E. Kalendář"
8444
 
8445
- #: app/libraries/main.php:4340
8446
  #, php-format
8447
  msgid "Copy of %s"
8448
  msgstr "Kopie %s"
8449
 
8450
- #: app/libraries/main.php:5158
8451
  msgid "Booked an event."
8452
  msgstr "Událost byla rezervována."
8453
 
8454
- #: app/libraries/main.php:5199
8455
  #, php-format
8456
  msgid "%s booked %s event."
8457
  msgstr "%s zarezervoval %s událost."
8458
 
8459
- #: app/libraries/main.php:5885 app/libraries/main.php:5933
8460
  msgid "Taxonomies"
8461
  msgstr "Taxonomie"
8462
 
8463
  # Mrknout na kontext
8464
- #: app/libraries/main.php:5887 app/libraries/main.php:5935
8465
  msgid "Category Plural Label"
8466
  msgstr "Štítek množné kategorie"
8467
 
8468
  # Mrknout na kontext
8469
- #: app/libraries/main.php:5888 app/libraries/main.php:5936
8470
  msgid "Category Singular Label"
8471
  msgstr "Štítek jednotné kategorie"
8472
 
8473
- #: app/libraries/main.php:5889 app/libraries/main.php:5937
8474
  msgid "Label Plural Label"
8475
  msgstr "Štítek množného štítku"
8476
 
8477
- #: app/libraries/main.php:5890 app/libraries/main.php:5938
8478
  msgid "Label Singular Label"
8479
  msgstr "Štítek jednotného štítku"
8480
 
8481
- #: app/libraries/main.php:5890 app/libraries/main.php:5938
8482
  msgid "label"
8483
  msgstr "štítek"
8484
 
8485
- #: app/libraries/main.php:5891 app/libraries/main.php:5939
8486
  msgid "Location Plural Label"
8487
  msgstr "Štítek množného umístění"
8488
 
8489
- #: app/libraries/main.php:5892 app/libraries/main.php:5940
8490
  msgid "Location Singular Label"
8491
  msgstr "Štítek jednotného umístění"
8492
 
8493
- #: app/libraries/main.php:5893 app/libraries/main.php:5941
8494
  msgid "Organizer Plural Label"
8495
  msgstr "Štítek množného organizátora"
8496
 
8497
- #: app/libraries/main.php:5894 app/libraries/main.php:5942
8498
  msgid "Organizer Singular Label"
8499
  msgstr "Štítek jednotného organizátora"
8500
 
8501
- #: app/libraries/main.php:5895 app/libraries/main.php:5943
8502
  msgid "Speaker Plural Label"
8503
  msgstr "Štítek množného řečníka"
8504
 
8505
- #: app/libraries/main.php:5896 app/libraries/main.php:5944
8506
  msgid "Speaker Singular Label"
8507
  msgstr "Štítek jednotného řečníka"
8508
 
8509
- #: app/libraries/main.php:5902 app/libraries/main.php:5950
8510
  msgid "Sunday abbreviation"
8511
  msgstr "Neděle zkratka"
8512
 
8513
- #: app/libraries/main.php:5903 app/libraries/main.php:5951
8514
  msgid "Monday abbreviation"
8515
  msgstr "Pondělí zkratka"
8516
 
8517
- #: app/libraries/main.php:5904 app/libraries/main.php:5952
8518
  msgid "Tuesday abbreviation"
8519
  msgstr "Úterý zkratka"
8520
 
8521
- #: app/libraries/main.php:5905 app/libraries/main.php:5953
8522
  msgid "Wednesday abbreviation"
8523
  msgstr "Středa zkratka"
8524
 
8525
- #: app/libraries/main.php:5906 app/libraries/main.php:5954
8526
  msgid "Thursday abbreviation"
8527
  msgstr "Čtvrtek zkratka"
8528
 
8529
- #: app/libraries/main.php:5907 app/libraries/main.php:5955
8530
  msgid "Friday abbreviation"
8531
  msgstr "Pátek zkratka"
8532
 
8533
- #: app/libraries/main.php:5908 app/libraries/main.php:5956
8534
  msgid "Saturday abbreviation"
8535
  msgstr "Sobota zkratka"
8536
 
8537
- #: app/libraries/main.php:5912 app/libraries/main.php:5960
8538
  msgid "Others"
8539
  msgstr "Další"
8540
 
8541
- #: app/libraries/main.php:5914
8542
  msgid "Booking Success Message"
8543
  msgstr "Zpráva o úspěchu rezervace"
8544
 
8545
- #: app/libraries/main.php:5914
8546
  #, fuzzy
8547
  #| msgid ""
8548
  #| "Thanks for your booking. Your tickets booked, booking verification might "
@@ -8554,18 +8672,18 @@ msgstr ""
8554
  "Děkujeme za vaši rezervaci. Vaše vstupenky jsou rezervovány, může být nutné "
8555
  "ověřit rezervaci. Zkontrolujte prosím svůj e-mail."
8556
 
8557
- #: app/libraries/main.php:5915 app/libraries/main.php:5962
8558
  #: app/widgets/single.php:131
8559
  msgid "Register Button"
8560
  msgstr "Registrační tlačítko"
8561
 
8562
- #: app/libraries/main.php:5915 app/libraries/main.php:5962
8563
  #: app/skins/available_spot/tpl.php:210 app/skins/carousel/render.php:110
8564
  #: app/skins/carousel/render.php:150 app/skins/grid/render.php:98
8565
  #: app/skins/grid/render.php:155 app/skins/grid/render.php:206
8566
  #: app/skins/grid/render.php:226 app/skins/list/render.php:68
8567
  #: app/skins/list/render.php:160 app/skins/masonry/render.php:150
8568
- #: app/skins/single.php:352 app/skins/single.php:1065 app/skins/single.php:1068
8569
  #: app/skins/single/default.php:288 app/skins/single/default.php:290
8570
  #: app/skins/single/default.php:521 app/skins/single/default.php:523
8571
  #: app/skins/single/m1.php:144 app/skins/single/m1.php:146
@@ -8577,11 +8695,11 @@ msgstr "Registrační tlačítko"
8577
  msgid "REGISTER"
8578
  msgstr "REGISTROVAT"
8579
 
8580
- #: app/libraries/main.php:5916 app/libraries/main.php:5963
8581
  msgid "View Detail Button"
8582
  msgstr "Tlačítko Zobrazit detail"
8583
 
8584
- #: app/libraries/main.php:5916 app/libraries/main.php:5963
8585
  #: app/skins/carousel/render.php:110 app/skins/carousel/render.php:150
8586
  #: app/skins/grid/render.php:98 app/skins/grid/render.php:155
8587
  #: app/skins/grid/render.php:206 app/skins/grid/render.php:226
@@ -8593,153 +8711,145 @@ msgstr "Tlačítko Zobrazit detail"
8593
  msgid "View Detail"
8594
  msgstr "Zobrazit detail"
8595
 
8596
- #: app/libraries/main.php:5917 app/libraries/main.php:5964
8597
  msgid "Event Detail Button"
8598
  msgstr "Tlačítko Detail události"
8599
 
8600
- #: app/libraries/main.php:5917 app/libraries/main.php:5964
8601
  #: app/skins/countdown/tpl.php:221
8602
  msgid "Event Detail"
8603
  msgstr "Zobrazit událost"
8604
 
8605
- #: app/libraries/main.php:5919 app/libraries/main.php:5966
8606
  msgid "More Info Link"
8607
  msgstr "Odkaz na více informací"
8608
 
8609
- #: app/libraries/main.php:5922
8610
  msgid "Ticket (Singular)"
8611
  msgstr "Vstupenka (Jednotné)"
8612
 
8613
- #: app/libraries/main.php:5923
8614
  msgid "Tickets (Plural)"
8615
  msgstr "Vstupenky (Množné)"
8616
 
8617
- #: app/libraries/main.php:6079
8618
  msgid "EventON"
8619
  msgstr "EventON"
8620
 
8621
- #: app/libraries/main.php:6080
8622
  msgid "The Events Calendar"
8623
  msgstr "The Events Calendar"
8624
 
8625
- #: app/libraries/main.php:6081
8626
  msgid "Events Schedule WP Plugin"
8627
  msgstr "Events Schedule WP Plugin"
8628
 
8629
- #: app/libraries/main.php:6082
8630
  msgid "Calendarize It"
8631
  msgstr "Calendarize It"
8632
 
8633
- #: app/libraries/main.php:6083
8634
  #, fuzzy
8635
  #| msgid "Event Speakers"
8636
  msgid "Event Espresso"
8637
  msgstr "Řečník události"
8638
 
8639
- #: app/libraries/main.php:6084
8640
  #, fuzzy
8641
  #| msgid "Event Repeating (Recurring events)"
8642
  msgid "Events Manager (Recurring)"
8643
  msgstr "Opakování události (opakující se události)"
8644
 
8645
- #: app/libraries/main.php:6085
8646
  #, fuzzy
8647
  #| msgid "Modern Events Calendar (Lite)"
8648
  msgid "Events Manager (Single)"
8649
  msgstr "Modern Events Calendar (Lite)"
8650
 
8651
- #: app/libraries/main.php:6157 app/libraries/main.php:6177
8652
- msgid "Confirmed"
8653
- msgstr "Potvrzeno"
8654
-
8655
- #: app/libraries/main.php:6158 app/libraries/main.php:6185
8656
- msgid "Rejected"
8657
- msgstr "Odmítnuto"
8658
-
8659
- #: app/libraries/main.php:6159 app/libraries/main.php:6181
8660
  msgid "Pending"
8661
  msgstr "Nevyřízený"
8662
 
8663
- #: app/libraries/main.php:6207
8664
  msgid "Waiting"
8665
  msgstr "Čekající"
8666
 
8667
- #: app/libraries/main.php:6250
8668
  #, fuzzy
8669
  #| msgid "Sunday"
8670
  msgid "Sun"
8671
  msgstr "Neděle"
8672
 
8673
- #: app/libraries/main.php:6250
8674
  #, fuzzy
8675
  #| msgid "Monday"
8676
  msgid "Mon"
8677
  msgstr "Pondělí"
8678
 
8679
- #: app/libraries/main.php:6250
8680
  #, fuzzy
8681
  #| msgid "Tel"
8682
  msgid "Tue"
8683
  msgstr "Tel"
8684
 
8685
- #: app/libraries/main.php:6250
8686
  msgid "Wed"
8687
  msgstr ""
8688
 
8689
- #: app/libraries/main.php:6250
8690
  msgid "Thu"
8691
  msgstr ""
8692
 
8693
- #: app/libraries/main.php:6250
8694
  #, fuzzy
8695
  #| msgid "Friday"
8696
  msgid "Fri"
8697
  msgstr "Pátek"
8698
 
8699
- #: app/libraries/main.php:6250
8700
  #, fuzzy
8701
  #| msgid "Start"
8702
  msgid "Sat"
8703
  msgstr "Začátek"
8704
 
8705
- #: app/libraries/main.php:6412 app/libraries/render.php:80
8706
  #: app/libraries/render.php:432
8707
  msgid "Skin controller does not exist."
8708
  msgstr "Ovladač vzhledu neexistuje."
8709
 
8710
- #: app/libraries/main.php:6627
8711
  msgid "Sold Out"
8712
  msgstr "Vyprodáno"
8713
 
8714
- #: app/libraries/main.php:6635
8715
  #, fuzzy
8716
  #| msgid "Ticket"
8717
  msgid "Last Few Tickets"
8718
  msgstr "Vstupenka"
8719
 
8720
- #: app/libraries/main.php:6956 app/libraries/main.php:6973
8721
  #, fuzzy
8722
  #| msgid "minutes"
8723
  msgid "Minutes"
8724
  msgstr "minuty"
8725
 
8726
- #: app/libraries/main.php:6978
8727
  msgid "AM / PM"
8728
  msgstr ""
8729
 
8730
- #: app/libraries/main.php:6979
8731
  msgid "AM"
8732
  msgstr "dop."
8733
 
8734
- #: app/libraries/main.php:6980
8735
  msgid "PM"
8736
  msgstr "odp."
8737
 
8738
- #: app/libraries/main.php:6988
8739
  msgid "Ongoing..."
8740
  msgstr ""
8741
 
8742
- #: app/libraries/main.php:6989
8743
  #, fuzzy
8744
  #| msgid "Expired Events"
8745
  msgid "Expired!"
@@ -8765,47 +8875,47 @@ msgstr "rezervace zrušena."
8765
  msgid "A new booking is received."
8766
  msgstr "Je přijata nová rezervace."
8767
 
8768
- #: app/libraries/notifications.php:707
8769
  msgid "A new event is added."
8770
  msgstr "Je přidána se nová událost."
8771
 
8772
- #: app/libraries/notifications.php:811
8773
  msgid "Your event is published."
8774
  msgstr "Vaše událost je zveřejněna."
8775
 
8776
- #: app/libraries/notifications.php:974 app/libraries/notifications.php:989
8777
- #: app/libraries/notifications.php:1000
8778
  #, php-format
8779
  msgid "%s to %s"
8780
  msgstr ""
8781
 
8782
- #: app/libraries/notifications.php:1172
8783
  msgid "to"
8784
  msgstr "do"
8785
 
8786
- #: app/libraries/notifications.php:1193 app/modules/export/details.php:46
8787
  msgid "+ Add to Google Calendar"
8788
  msgstr "+ Přidat do Google kalendáře"
8789
 
8790
- #: app/libraries/notifications.php:1194 app/modules/export/details.php:47
8791
  msgid "+ iCal export"
8792
  msgstr "+ iCal export"
8793
 
8794
- #: app/libraries/notifications.php:1279
8795
  msgid "Yes"
8796
  msgstr "Ano"
8797
 
8798
- #: app/libraries/notifications.php:1279
8799
  msgid "No"
8800
  msgstr "Ne"
8801
 
8802
- #: app/libraries/skins.php:1089
8803
  #, fuzzy
8804
  #| msgid "Select All"
8805
  msgid "Select"
8806
  msgstr "Vybrat vše"
8807
 
8808
- #: app/libraries/skins.php:1258 app/libraries/skins.php:1259
8809
  #: app/modules/booking/steps/tickets.php:90
8810
  msgid "Book Event"
8811
  msgstr "Rezervovat událost"
@@ -8925,7 +9035,7 @@ msgstr "Adresa od ..."
8925
  msgid "Get Directions"
8926
  msgstr "Získat směr"
8927
 
8928
- #: app/modules/links/details.php:17 app/skins/single.php:749
8929
  msgid "Share this event"
8930
  msgstr "Sdílet tuto událost"
8931
 
@@ -8980,7 +9090,7 @@ msgstr "Další výskyt"
8980
  msgid "Go to occurrence page"
8981
  msgstr "Přejít na stránku výskytu"
8982
 
8983
- #: app/modules/next-event/details.php:139 app/skins/single.php:1038
8984
  #: app/skins/single/default.php:119 app/skins/single/default.php:353
8985
  #: app/skins/single/m1.php:41 app/skins/single/modern.php:216
8986
  msgid "Time"
@@ -9105,15 +9215,15 @@ msgid "Tile"
9105
  msgstr "Zobrazení rozvrhu"
9106
 
9107
  #: app/skins/monthly_view/calendar.php:71
9108
- #: app/skins/monthly_view/calendar.php:113
9109
  #: app/skins/monthly_view/calendar_clean.php:70
9110
- #: app/skins/monthly_view/calendar_clean.php:130
9111
  #, php-format
9112
  msgid "Events for %s"
9113
  msgstr "Událost pro %s"
9114
 
9115
- #: app/skins/monthly_view/calendar.php:115
9116
- #: app/skins/monthly_view/calendar_clean.php:132
9117
  #: app/skins/timetable/render.php:83 app/skins/weekly_view/render.php:64
9118
  msgid "No Events"
9119
  msgstr "Žádné události"
@@ -9122,20 +9232,20 @@ msgstr "Žádné události"
9122
  msgid "Home"
9123
  msgstr "Domů"
9124
 
9125
- #: app/skins/single.php:832 app/skins/single/default.php:65
9126
  #: app/skins/single/m1.php:279 app/skins/single/m2.php:200
9127
  #: app/skins/single/modern.php:300
9128
  msgid "Sold out!"
9129
  msgstr "Vyprodáno!"
9130
 
9131
- #: app/skins/single.php:1112 app/skins/single.php:1171
9132
  #: app/skins/single/default.php:255 app/skins/single/default.php:488
9133
  #: app/skins/single/m1.php:113 app/skins/single/m2.php:36
9134
  #: app/skins/single/modern.php:58
9135
  msgid "Phone"
9136
  msgstr "Telefon"
9137
 
9138
- #: app/skins/single.php:1126 app/skins/single.php:1185
9139
  #: app/skins/single/default.php:203 app/skins/single/default.php:269
9140
  #: app/skins/single/default.php:436 app/skins/single/default.php:502
9141
  #: app/skins/single/m1.php:127 app/skins/single/m1.php:181
@@ -9144,7 +9254,7 @@ msgstr "Telefon"
9144
  msgid "Website"
9145
  msgstr "Webová stránka"
9146
 
9147
- #: app/skins/single.php:1261
9148
  msgid "Speakers:"
9149
  msgstr "Řečník:"
9150
 
@@ -9379,11 +9489,6 @@ msgstr "http://webnus.net"
9379
  #~ msgid "Status & Invoice"
9380
  #~ msgstr "%s Faktura"
9381
 
9382
- #, fuzzy
9383
- #~| msgid "Booking Cancellation"
9384
- #~ msgid "Cancellation Date"
9385
- #~ msgstr "Zrušení rezervace"
9386
-
9387
  #, fuzzy
9388
  #~| msgid "Bookings"
9389
  #~ msgid "Edit Booking"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar Lite\n"
4
+ "POT-Creation-Date: 2020-07-29 10:36+0430\n"
5
+ "PO-Revision-Date: 2020-07-29 10:36+0430\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: cs_CZ\n"
22
  "X-Poedit-SearchPathExcluded-0: *.js\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:37 app/features/ix/import.php:53
26
+ #: app/features/ix/thirdparty.php:24 app/features/mec.php:1140
27
+ #: app/features/mec.php:1170 app/features/mec/dashboard.php:63
28
+ #: app/widgets/MEC.php:33
29
  msgid "Modern Events Calendar"
30
  msgstr "Moderní kalendář událostí"
31
 
98
  msgid "Settings"
99
  msgstr "Nastavení"
100
 
101
+ #: app/features/contextual.php:62 app/features/events.php:1575
102
+ #: app/features/events.php:2390 app/features/mec/booking.php:546
103
  #: app/features/mec/support.php:29 app/libraries/main.php:564
104
  msgid "Booking Form"
105
  msgstr "Rezervační formulář"
127
  "www.youtube.com/embed/YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></"
128
  "iframe>"
129
 
130
+ #: app/features/contextual.php:70 app/features/mec/booking.php:738
131
  #: app/features/mec/support-page.php:115 app/features/mec/support.php:36
132
  #: app/libraries/main.php:565
133
  msgid "Payment Gateways"
283
  msgstr "Výjimečné dny"
284
 
285
  #: app/features/contextual.php:308 app/features/events.php:315
286
+ #: app/features/mec/booking.php:96 app/features/mec/notifications.php:34
287
  #: app/features/mec/support-page.php:110 app/features/mec/support-page.php:114
288
  #: app/libraries/main.php:559 app/libraries/main.php:588
289
  #: app/libraries/main.php:672
290
  msgid "Booking"
291
  msgstr "Rezervace"
292
 
293
+ #: app/features/contextual.php:318 app/features/mec/booking.php:368
294
  #: app/libraries/main.php:561
295
  msgid "Coupons"
296
  msgstr "Kupóny"
309
  msgid "MEC Activation"
310
  msgstr "Aktivace MEC"
311
 
312
+ #: app/features/dlfile.php:121 app/features/events.php:1580
313
+ #: app/features/mec/booking.php:290 app/features/mec/settings.php:811
314
  #, fuzzy
315
  #| msgid "Download ICS file"
316
  msgid "Downloadable File"
373
  msgid "Add New Event"
374
  msgstr "Přidat novou událost"
375
 
376
+ #: app/features/events.php:171 app/features/ix.php:4136
377
  #: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:68
378
  #: app/skins/map/tpl.php:88
379
  msgid "No events found!"
396
  msgid "No events found in Trash!"
397
  msgstr "V koši nebyly nalezeny žádné události!"
398
 
399
+ #: app/features/events.php:192 app/features/events.php:3461
400
  #: app/features/mec/meta_boxes/display_options.php:1395
401
  #: app/features/mec/meta_boxes/search_form.php:31
402
  #: app/features/mec/meta_boxes/search_form.php:101
410
  #: app/features/mec/meta_boxes/search_form.php:654
411
  #: app/features/mec/meta_boxes/search_form.php:760
412
  #: app/features/mec/settings.php:885 app/features/mec/single.php:323
413
+ #: app/features/search.php:68 app/libraries/main.php:5918
414
+ #: app/libraries/main.php:5966 app/libraries/skins.php:943
415
+ #: app/skins/single.php:849 app/skins/single/default.php:220
416
  #: app/skins/single/default.php:453 app/skins/single/m1.php:197
417
  #: app/skins/single/m2.php:120 app/skins/single/modern.php:140
418
  msgid "Category"
419
  msgstr "Kategorie"
420
 
421
+ #: app/features/events.php:193 app/features/events.php:3416
422
  #: app/features/fes/form.php:822 app/features/mec.php:461
423
  #: app/features/mec/meta_boxes/filter.php:69
424
+ #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5917
425
+ #: app/libraries/main.php:5965
426
  msgid "Categories"
427
  msgstr "Kategorie"
428
 
510
  msgid "Event Repeating"
511
  msgstr "Opakování události"
512
 
513
+ #: app/features/events.php:344 app/features/events.php:1138
514
  #, fuzzy
515
  #| msgid "Event Detail"
516
  msgid "Event Data"
517
  msgstr "Zobrazit událost"
518
 
519
+ #: app/features/events.php:346 app/features/events.php:1320
520
+ #: app/features/mec/settings.php:769 app/skins/single.php:1242
521
  msgid "Hourly Schedule"
522
  msgstr "Hodinový rozvrh"
523
 
533
  msgid "Links"
534
  msgstr "Odkaz"
535
 
536
+ #: app/features/events.php:349 app/features/events.php:3463
537
+ #: app/features/events.php:3652 app/features/ix.php:3719
538
+ #: app/features/ix.php:3760
539
  #: app/features/mec/meta_boxes/display_options.php:1398
540
  #: app/features/mec/meta_boxes/search_form.php:46
541
  #: app/features/mec/meta_boxes/search_form.php:116
553
  #: app/features/organizers.php:260 app/features/organizers.php:262
554
  #: app/features/organizers.php:271 app/features/popup/event.php:163
555
  #: app/features/popup/event.php:172 app/features/search.php:80
556
+ #: app/libraries/main.php:5924 app/libraries/main.php:5972
557
+ #: app/libraries/skins.php:995 app/skins/single.php:1097
558
  #: app/skins/single/default.php:245 app/skins/single/default.php:478
559
  #: app/skins/single/m1.php:103 app/skins/single/m2.php:26
560
  #: app/skins/single/modern.php:48
561
  msgid "Organizer"
562
  msgstr "Organizátor"
563
 
564
+ #: app/features/events.php:350 app/features/events.php:1125
565
+ #: app/features/fes/form.php:793 app/libraries/main.php:5951
566
+ #: app/libraries/main.php:5998 app/skins/single.php:875
567
  #: app/skins/single/default.php:143 app/skins/single/default.php:377
568
  #: app/skins/single/m1.php:62 app/skins/single/modern.php:237
569
  msgid "Cost"
575
  msgid "SEO Schema / Event Status"
576
  msgstr "Při spuštění události"
577
 
578
+ #: app/features/events.php:499
579
  msgid "Note for reviewer"
580
  msgstr "Poznámka pro recenzenta"
581
 
582
+ #: app/features/events.php:505
583
  msgid "Guest Data"
584
  msgstr "Údaje hosta"
585
 
586
+ #: app/features/events.php:506 app/features/events.php:2376
587
+ #: app/features/events.php:3967 app/features/fes.php:233
588
  #: app/features/fes/form.php:752 app/features/labels.php:178
589
  #: app/features/mec/booking.php:53 app/features/organizers.php:279
590
  #: app/features/popup/event.php:182 app/features/profile/profile.php:177
591
+ #: app/libraries/notifications.php:1262 app/modules/booking/steps/form.php:48
592
  msgid "Name"
593
  msgstr "Jméno"
594
 
595
+ #: app/features/events.php:507 app/features/events.php:2385
596
+ #: app/features/events.php:2447 app/features/events.php:2536
597
+ #: app/features/events.php:3970 app/features/fes.php:233
598
  #: app/features/fes/form.php:748 app/features/login/login.php:5
599
+ #: app/features/mec/booking.php:65 app/features/mec/booking.php:584
600
+ #: app/features/mec/booking.php:680 app/features/mec/single.php:183
601
  #: app/features/organizers.php:111 app/features/organizers.php:152
602
  #: app/features/profile/profile.php:180 app/features/speakers.php:127
603
  #: app/features/speakers.php:196 app/libraries/main.php:1719
604
+ #: app/libraries/main.php:1788 app/libraries/main.php:3184
605
+ #: app/libraries/notifications.php:1263 app/modules/booking/steps/form.php:57
606
+ #: app/modules/booking/steps/form.php:157 app/skins/single.php:1114
607
+ #: app/skins/single.php:1173 app/skins/single/default.php:262
608
  #: app/skins/single/default.php:495 app/skins/single/m1.php:120
609
  #: app/skins/single/m2.php:43 app/skins/single/modern.php:65
610
  msgid "Email"
611
  msgstr "Email"
612
 
613
+ #: app/features/events.php:515 app/features/fes/form.php:265
614
  msgid "Date and Time"
615
  msgstr "Datum a čas"
616
 
617
+ #: app/features/events.php:518 app/features/events.php:522
618
+ #: app/features/events.php:3464 app/features/events.php:3652
619
+ #: app/features/fes/form.php:269 app/features/fes/form.php:273
620
+ #: app/features/ix.php:3719 app/features/ix.php:3760
621
+ #: app/features/ix/import_g_calendar.php:38 app/features/mec.php:1323
622
+ #: app/features/mec/meta_boxes/display_options.php:51
623
  #: app/features/mec/meta_boxes/display_options.php:280
624
  #: app/features/mec/meta_boxes/display_options.php:520
625
  #: app/features/mec/meta_boxes/display_options.php:627
638
  msgid "Start Date"
639
  msgstr "Počátečná den"
640
 
641
+ #: app/features/events.php:537 app/features/events.php:541
642
+ #: app/features/events.php:3465 app/features/events.php:3652
643
+ #: app/features/fes/form.php:288 app/features/fes/form.php:292
644
+ #: app/features/ix.php:3719 app/features/ix.php:3760
645
+ #: app/features/ix/import_g_calendar.php:44 app/features/mec.php:1324
646
+ #: app/features/popup/event.php:92
647
  msgid "End Date"
648
  msgstr "Konečný den"
649
 
650
+ #: app/features/events.php:564 app/features/fes/form.php:306
651
  #: app/features/popup/event.php:109
652
  #, fuzzy
653
  #| msgid "All Day Event"
654
  msgid "All-day Event"
655
  msgstr "Celodenní událost"
656
 
657
+ #: app/features/events.php:574 app/features/fes/form.php:309
658
  msgid "Hide Event Time"
659
  msgstr "Skrýt čas události"
660
 
661
+ #: app/features/events.php:584 app/features/fes/form.php:312
662
  msgid "Hide Event End Time"
663
  msgstr "Skrýt čas ukončení události"
664
 
665
+ #: app/features/events.php:589 app/features/events.php:593
666
  #: app/features/fes/form.php:316
667
  #, fuzzy
668
  #| msgid "Note to reviewer"
669
  msgid "Notes on the time"
670
  msgstr "Poznámka pro recenzenta"
671
 
672
+ #: app/features/events.php:594 app/features/fes/form.php:317
673
  #, fuzzy
674
  #| msgid ""
675
  #| "It shows next to event time on single event page. You can insert Timezone "
681
  "Zobrazuje se vedle času události na stránce jedné události. Do tohoto pole "
682
  "můžete vložit časové pásmo atd."
683
 
684
+ #: app/features/events.php:596 app/features/events.php:735
685
+ #: app/features/events.php:1088 app/features/events.php:1237
686
+ #: app/features/events.php:1545 app/features/events.php:1638
687
+ #: app/features/events.php:1782 app/features/events.php:1797
688
+ #: app/features/events.php:1963 app/features/events.php:1976
689
+ #: app/features/events.php:2127 app/features/events.php:2163
690
+ #: app/features/events.php:2261 app/features/events.php:2276
691
+ #: app/features/events.php:2306 app/features/events.php:2319
692
  #: app/features/fes/form.php:396 app/features/fes/form.php:704
693
  #: app/features/locations.php:334 app/features/mec/booking.php:116
694
+ #: app/features/mec/booking.php:204 app/features/mec/booking.php:217
695
+ #: app/features/mec/booking.php:235 app/features/mec/booking.php:251
696
+ #: app/features/mec/booking.php:291 app/features/mec/booking.php:413
697
+ #: app/features/mec/booking.php:442 app/features/mec/booking.php:490
698
+ #: app/features/mec/booking.php:500 app/features/mec/booking.php:522
699
+ #: app/features/mec/booking.php:532 app/features/mec/dashboard.php:71
700
  #: app/features/mec/meta_boxes/display_options.php:82
701
  #: app/features/mec/meta_boxes/display_options.php:95
702
  #: app/features/mec/meta_boxes/display_options.php:108
732
  #: app/features/mec/modules.php:52 app/features/mec/modules.php:85
733
  #: app/features/mec/modules.php:102 app/features/mec/modules.php:137
734
  #: app/features/mec/modules.php:153 app/features/mec/modules.php:323
735
+ #: app/features/mec/notifications.php:88 app/features/mec/notifications.php:194
736
+ #: app/features/mec/notifications.php:304
737
+ #: app/features/mec/notifications.php:419
738
+ #: app/features/mec/notifications.php:535
739
+ #: app/features/mec/notifications.php:646
740
+ #: app/features/mec/notifications.php:657
741
+ #: app/features/mec/notifications.php:772
742
+ #: app/features/mec/notifications.php:856 app/features/mec/settings.php:67
743
  #: app/features/mec/settings.php:86 app/features/mec/settings.php:133
744
  #: app/features/mec/settings.php:168 app/features/mec/settings.php:189
745
  #: app/features/mec/settings.php:234 app/features/mec/settings.php:269
756
  #: app/features/mec/styling.php:119 app/features/mec/styling.php:218
757
  #: app/features/mec/styling.php:235 app/features/mec/styling.php:248
758
  #: app/features/organizers.php:272 app/features/popup/event.php:126
759
+ #: app/features/popup/event.php:173 app/skins/single.php:960
760
  #: app/skins/single/default.php:160 app/skins/single/default.php:392
761
  #: app/skins/single/m1.php:219 app/skins/single/m2.php:143
762
  #: app/skins/single/modern.php:163
763
  msgid "Read More"
764
  msgstr "Číst více"
765
 
766
+ #: app/features/events.php:604
767
  msgid "Repeating"
768
  msgstr "Opakování"
769
 
770
+ #: app/features/events.php:613
771
  msgid "Event Repeating (Recurring events)"
772
  msgstr "Opakování události (opakující se události)"
773
 
774
+ #: app/features/events.php:617 app/features/fes/form.php:327
775
  msgid "Repeats"
776
  msgstr "Opakování"
777
 
778
+ #: app/features/events.php:625 app/features/fes/form.php:329
779
  #: app/features/mec.php:1326 app/skins/default_full_calendar/tpl.php:74
780
  #: app/skins/full_calendar/tpl.php:121
781
  msgid "Daily"
782
  msgstr "Děnně"
783
 
784
+ #: app/features/events.php:632 app/features/fes/form.php:330
785
  msgid "Every Weekday"
786
  msgstr "Každý všední den"
787
 
788
+ #: app/features/events.php:639 app/features/fes/form.php:331
789
  msgid "Every Weekend"
790
  msgstr "Každý víkend"
791
 
792
+ #: app/features/events.php:646 app/features/fes/form.php:332
793
  msgid "Certain Weekdays"
794
  msgstr "Určité pracovní dny"
795
 
796
+ #: app/features/events.php:653 app/features/fes/form.php:333
797
  #: app/skins/default_full_calendar/tpl.php:73
798
  #: app/skins/full_calendar/tpl.php:120
799
  msgid "Weekly"
800
  msgstr "Týdně"
801
 
802
+ #: app/features/events.php:660 app/features/fes/form.php:334
803
  #: app/features/mec.php:1327 app/skins/default_full_calendar/tpl.php:72
804
  #: app/skins/full_calendar/tpl.php:119
805
  msgid "Monthly"
806
  msgstr "Měsíčně"
807
 
808
+ #: app/features/events.php:667 app/features/fes/form.php:335
809
  #: app/features/mec.php:1328 app/skins/default_full_calendar/tpl.php:71
810
  #: app/skins/full_calendar/tpl.php:118
811
  msgid "Yearly"
812
  msgstr "Ročně"
813
 
814
+ #: app/features/events.php:674 app/features/fes/form.php:336
815
  msgid "Custom Days"
816
  msgstr "Vlastní dny"
817
 
818
+ #: app/features/events.php:681 app/features/fes/form.php:337
819
  msgid "Advanced"
820
  msgstr "Pokročilé"
821
 
822
+ #: app/features/events.php:686 app/features/fes/form.php:341
823
  msgid "Repeat Interval"
824
  msgstr "Interval opakování"
825
 
826
+ #: app/features/events.php:688 app/features/fes/form.php:342
827
  msgid "Repeat interval"
828
  msgstr "Interval opakování"
829
 
830
+ #: app/features/events.php:692 app/features/fes/form.php:345
831
  msgid "Week Days"
832
  msgstr "Dny v týdnu"
833
 
834
+ #: app/features/events.php:709
835
  #, fuzzy
836
  #| msgid "Pro version of Modern Events Calendar"
837
  msgid ""
839
  "Calendar."
840
  msgstr "Pro verze doplňku Modern Events Calendar"
841
 
842
+ #: app/features/events.php:715 app/features/events.php:1865
843
+ #: app/features/events.php:1893 app/features/events.php:2031
844
  #: app/features/fes/form.php:359 app/features/ix/import_f_calendar.php:42
845
  #: app/features/ix/import_g_calendar.php:51
846
  #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
847
  msgid "Start"
848
  msgstr "Začátek"
849
 
850
+ #: app/features/events.php:728 app/features/events.php:1231
851
+ #: app/features/events.php:1351 app/features/events.php:1456
852
+ #: app/features/events.php:1849 app/features/events.php:2020
853
+ #: app/features/events.php:2100 app/features/events.php:2233
854
  #: app/features/fes/form.php:389 app/features/fes/form.php:920
855
  msgid "Add"
856
  msgstr "Přidat"
857
 
858
+ #: app/features/events.php:731 app/features/fes/form.php:392
859
  msgid "Custom Days Repeating"
860
  msgstr "Opakování vlastních dnů"
861
 
862
+ #: app/features/events.php:734 app/features/fes/form.php:395
863
  #, fuzzy
864
  #| msgid ""
865
  #| "Add certain days to event occurrence dates. If you have single day event, "
874
  "datum zahájení a ukončení by mělo být stejné. Pokud máte vícedenní událost, "
875
  "datum zahájení a ukončení musí odpovídat počátečnímu datu."
876
 
877
+ #: app/features/events.php:745 app/features/events.php:1869
878
+ #: app/features/events.php:1897 app/features/events.php:2035
879
  #: app/features/fes/form.php:374
880
  msgid "End"
881
  msgstr "Konec"
882
 
883
+ #: app/features/events.php:822 app/features/fes/form.php:468
884
  msgid "First"
885
  msgstr "První"
886
 
887
+ #: app/features/events.php:864 app/features/fes/form.php:510
888
  msgid "Second"
889
  msgstr "Druhá"
890
 
891
+ #: app/features/events.php:906 app/features/fes/form.php:552
892
  msgid "Third"
893
  msgstr "Třetí"
894
 
895
+ #: app/features/events.php:948 app/features/fes/form.php:594
896
  msgid "Fourth"
897
  msgstr "Čtvrtá"
898
 
899
+ #: app/features/events.php:990 app/features/fes/form.php:636
900
  msgid "Last"
901
  msgstr "Poslední"
902
 
903
+ #: app/features/events.php:1037 app/features/fes/form.php:682
904
  msgid "Ends Repeat"
905
  msgstr "Ukončení opakování"
906
 
907
+ #: app/features/events.php:1049 app/features/fes/form.php:686
908
  msgid "Never"
909
  msgstr "Nikdy"
910
 
911
  # Možná Zapnuto
912
+ #: app/features/events.php:1061 app/features/fes/form.php:691
913
  msgid "On"
914
  msgstr "Na"
915
 
916
+ #: app/features/events.php:1077 app/features/fes/form.php:698
917
+ #: app/features/mec/booking.php:180
918
  msgid "After"
919
  msgstr "Po"
920
 
921
+ #: app/features/events.php:1081 app/features/events.php:1085
922
  #: app/features/fes/form.php:700 app/features/fes/form.php:703
923
  msgid "Occurrences times"
924
  msgstr "Časy výskytu"
925
 
926
+ #: app/features/events.php:1086
927
  #, fuzzy
928
  #| msgid ""
929
  #| "The event will finish after certain repeats. For example if you set it to "
935
  "Událost bude ukončena po určitých opakováních. Pokud například nastavíte "
936
  "hodnotu 10, událost skončí po 10 opakováních."
937
 
938
+ #: app/features/events.php:1101 app/features/fes/form.php:717
939
  #, fuzzy
940
  #| msgid "Next Occurrence of Other Events"
941
  msgid "Show only one occurrence of this event"
942
  msgstr "Další výskyt dalších událostí"
943
 
944
+ #: app/features/events.php:1121 app/features/events.php:3652
945
+ #: app/features/fes/form.php:790 app/features/ix.php:3719
946
+ #: app/features/ix.php:3760 app/features/mec/settings.php:715
947
+ #: app/libraries/main.php:5950 app/libraries/main.php:5997
948
+ #: app/widgets/single.php:103
949
  msgid "Event Cost"
950
  msgstr "Cena události"
951
 
952
+ #: app/features/events.php:1218
953
  msgid "Exceptional Days (Exclude Dates)"
954
  msgstr "Výjimečné dny (vyjma dat)"
955
 
956
+ #: app/features/events.php:1224 app/features/events.php:1234
957
  msgid "Exclude certain days"
958
  msgstr "Vyloučit určité dny"
959
 
960
+ #: app/features/events.php:1229 app/features/events.php:2448
961
+ #: app/features/events.php:2537 app/features/fes.php:233
962
+ #: app/features/mec/booking.php:585 app/features/mec/booking.php:681
963
  #: app/features/mec/single.php:185 app/features/profile/profile.php:58
964
+ #: app/libraries/main.php:3271 app/modules/booking/steps/tickets.php:94
965
+ #: app/modules/next-event/details.php:134 app/skins/single.php:933
966
  #: app/skins/single/default.php:100 app/skins/single/default.php:334
967
  #: app/skins/single/m1.php:22 app/skins/single/modern.php:197
968
  msgid "Date"
969
  msgstr "Datum"
970
 
971
+ #: app/features/events.php:1235
972
  msgid ""
973
  "Exclude certain days from event occurrence dates. Please note that you can "
974
  "exclude only single day occurrences and you cannot exclude one day from "
978
  "můžete vyloučit pouze výskyty za jeden den a nelze vyloučit jeden den z "
979
  "vícedenních výskytů."
980
 
981
+ #: app/features/events.php:1294 app/libraries/render.php:546
982
  msgid "Day 1"
983
  msgstr "Den 1"
984
 
985
+ #: app/features/events.php:1324
986
  msgid "Add Day"
987
  msgstr "Přidat den"
988
 
989
+ #: app/features/events.php:1325
990
  msgid ""
991
  "Add new days for schedule. For example if your event is multiple days, you "
992
  "can add a different schedule for each day!"
994
  "Přidat nové dny pro rozvrh. Pokud je například vaše akce vícedenní, můžete "
995
  "pro každý den přidat jiný rozvrh!"
996
 
997
+ #: app/features/events.php:1332
998
  #, php-format
999
  msgid "Day %s"
1000
  msgstr "Den %s"
1001
 
1002
+ #: app/features/events.php:1336 app/features/events.php:1375
1003
+ #: app/features/events.php:1410 app/features/events.php:1442
1004
+ #: app/features/events.php:1471 app/features/events.php:2248
1005
+ #: app/features/events.php:2295 app/features/events.php:3460
1006
+ #: app/features/events.php:3652 app/features/fes/form.php:248
1007
+ #: app/features/ix.php:3719 app/features/ix.php:3760
1008
+ #: app/features/mec/booking.php:482 app/features/mec/booking.php:514
1009
+ #: app/features/mec/styling.php:130
1010
  msgid "Title"
1011
  msgstr "Název"
1012
 
1013
+ #: app/features/events.php:1345 app/features/events.php:1382
1014
+ #: app/features/events.php:1415 app/features/events.php:1450
1015
+ #: app/features/events.php:1476 app/features/events.php:1879
1016
+ #: app/features/events.php:1905 app/features/events.php:2041
1017
+ #: app/features/events.php:2140 app/features/events.php:2176
1018
+ #: app/features/events.php:2283 app/features/events.php:2325
1019
+ #: app/features/mec/booking.php:425 app/features/mec/booking.php:454
1020
+ #: app/features/mec/booking.php:505 app/features/mec/booking.php:537
1021
+ #: app/libraries/main.php:3106 app/libraries/main.php:3135
1022
+ #: app/libraries/main.php:3164 app/libraries/main.php:3193
1023
+ #: app/libraries/main.php:3222 app/libraries/main.php:3251
1024
+ #: app/libraries/main.php:3280 app/libraries/main.php:3309
1025
+ #: app/libraries/main.php:3338 app/libraries/main.php:3359
1026
+ #: app/libraries/main.php:3390 app/libraries/main.php:3436
1027
+ #: app/libraries/main.php:3482 app/libraries/main.php:3531
1028
+ #: app/libraries/main.php:3571
1029
  msgid "Remove"
1030
  msgstr "Odstranit"
1031
 
1032
+ #: app/features/events.php:1352 app/features/events.php:1457
1033
  msgid "Add new hourly schedule row"
1034
  msgstr "Přidejte nový řádek rozvrhu hodin"
1035
 
1036
+ #: app/features/events.php:1367 app/features/events.php:1404
1037
+ #: app/features/events.php:1466
1038
  msgid "From e.g. 8:15"
1039
  msgstr "Od např. 8:15"
1040
 
1041
+ #: app/features/events.php:1371 app/features/events.php:1407
1042
+ #: app/features/events.php:1468
1043
  msgid "To e.g. 8:45"
1044
  msgstr "Do např. 8:45"
1045
 
1046
+ #: app/features/events.php:1379 app/features/events.php:1413
1047
+ #: app/features/events.php:1474 app/features/events.php:1770
1048
+ #: app/features/events.php:1952
1049
  msgid "Description"
1050
  msgstr "Popis"
1051
 
1052
+ #: app/features/events.php:1385 app/features/events.php:1418
1053
+ #: app/features/events.php:1479 app/features/fes/form.php:916
1054
  #: app/features/mec.php:469 app/features/mec/modules.php:51
1055
  #: app/features/mec/settings.php:763 app/features/speakers.php:62
1056
+ #: app/libraries/main.php:569 app/libraries/main.php:5925
1057
+ #: app/libraries/main.php:5973 app/modules/speakers/details.php:18
1058
  msgid "Speakers"
1059
  msgstr "Řečníci"
1060
 
1061
+ #: app/features/events.php:1438 app/features/events.php:1446
1062
  msgid "New Day"
1063
  msgstr "Nový den"
1064
 
1065
+ #: app/features/events.php:1510 app/features/fes/form.php:767
1066
  #: app/features/mec/settings.php:709
1067
  msgid "Event Links"
1068
  msgstr "Odkazy na událost"
1069
 
1070
+ #: app/features/events.php:1513 app/features/events.php:1519
1071
+ #: app/features/fes/form.php:769 app/libraries/main.php:5948
1072
+ #: app/libraries/main.php:5995
1073
  msgid "Event Link"
1074
  msgstr "Odkaz na událost"
1075
 
1076
+ #: app/features/events.php:1516 app/features/events.php:1532
1077
  #: app/features/fes/form.php:770 app/features/fes/form.php:775
1078
  msgid "eg. http://yoursite.com/your-event"
1079
  msgstr "např. http://yoursite.com/vase-udalost"
1080
 
1081
+ #: app/features/events.php:1520
1082
  #, fuzzy
1083
  #| msgid ""
1084
  #| "If you fill it, it will be replaced instead of default event page link. "
1093
  "Vložte úplný odkaz včetně http (s): // - Pokud používáte reklamní adresu "
1094
  "URL, můžete také použít zkracovač URL"
1095
 
1096
+ #: app/features/events.php:1522
1097
  msgid "URL Shortener"
1098
  msgstr "Zkracovač URL"
1099
 
1100
+ #: app/features/events.php:1529 app/features/events.php:1542
1101
+ #: app/features/fes/form.php:774 app/libraries/main.php:5949
1102
+ #: app/libraries/main.php:5996 app/skins/single.php:959
1103
  #: app/skins/single/default.php:159 app/skins/single/default.php:391
1104
  #: app/skins/single/m1.php:218 app/skins/single/m2.php:142
1105
  #: app/skins/single/modern.php:162 app/widgets/single.php:107
1106
  msgid "More Info"
1107
  msgstr "Více info"
1108
 
1109
+ #: app/features/events.php:1535 app/features/fes/form.php:776
1110
  msgid "More Information"
1111
  msgstr "Více informací"
1112
 
1113
+ #: app/features/events.php:1537 app/features/fes/form.php:778
1114
  msgid "Current Window"
1115
  msgstr "Aktuální okno"
1116
 
1117
+ #: app/features/events.php:1538 app/features/fes/form.php:779
1118
  msgid "New Window"
1119
  msgstr "Nové okno"
1120
 
1121
+ #: app/features/events.php:1543 app/features/fes/form.php:781
1122
  msgid ""
1123
  "If you fill it, it will be shown in event details page as an optional link. "
1124
  "Insert full link including http(s)://"
1126
  "Pokud ji vyplníte, zobrazí se jako volitelný odkaz na stránce s podrobnostmi "
1127
  "o události. Vložte celý odkaz včetně http (s): //"
1128
 
1129
+ #: app/features/events.php:1566 app/features/mec/settings.php:777
1130
  msgid "Booking Options"
1131
  msgstr "Možnosti rezervace"
1132
 
1133
+ #: app/features/events.php:1567
1134
  #, fuzzy
1135
  #| msgid "Total user booking limits"
1136
  msgid "Total User Booking Limits"
1137
  msgstr "Celkové limity rezervace uživatelů"
1138
 
1139
+ #: app/features/events.php:1568 app/features/events.php:1713
1140
+ #: app/libraries/book.php:60 app/libraries/main.php:5953
1141
  #: app/modules/booking/steps/tickets.php:119
1142
  #: app/modules/booking/steps/tickets.php:125
1143
  msgid "Tickets"
1144
  msgstr "Vstupenky"
1145
 
1146
+ #: app/features/events.php:1570 app/features/events.php:2077
1147
  msgid "Fees"
1148
  msgstr "Poplatky"
1149
 
1150
+ #: app/features/events.php:1573 app/features/events.php:2209
1151
  #: app/features/mec/settings.php:789
1152
  msgid "Ticket Variations / Options"
1153
  msgstr "Varianty vstupenky / možnosti"
1154
 
1155
+ #: app/features/events.php:1577 app/features/mec/booking.php:757
1156
  #: app/features/mec/support-page.php:118
1157
  msgid "Organizer Payment"
1158
  msgstr "Platba organizátora"
1159
 
1160
+ #: app/features/events.php:1620 app/features/events.php:1634
1161
  #, fuzzy
1162
  #| msgid "Total booking limits"
1163
  msgid "Total booking limit"
1164
  msgstr "Celkové limity rezervace"
1165
 
1166
+ #: app/features/events.php:1631 app/features/events.php:1818
1167
+ #: app/features/events.php:1990 app/modules/booking/default.php:98
1168
  #: app/modules/booking/steps/tickets.php:119
1169
  #: app/modules/booking/steps/tickets.php:125
1170
  #: app/skins/available_spot/tpl.php:142
1171
  msgid "Unlimited"
1172
  msgstr "Neomezené"
1173
 
1174
+ #: app/features/events.php:1637
1175
  msgid ""
1176
  "If you want to set a limit to all tickets, uncheck this checkbox and put a "
1177
  "limitation number."
1179
  "Pokud chcete nastavit limit na všechny lístky, zrušte zaškrtnutí tohoto "
1180
  "políčka a zadejte číslo omezení."
1181
 
1182
+ #: app/features/events.php:1639
1183
  msgid "Read About A Booking System"
1184
  msgstr "Přečtěte si o rezervačním systému"
1185
 
1186
+ #: app/features/events.php:1647
1187
  msgid "100"
1188
  msgstr "100"
1189
 
1190
+ #: app/features/events.php:1649 app/features/events.php:1663
1191
  #, fuzzy
1192
  #| msgid "Next Occurrence"
1193
  msgid "Book All Occurrences"
1194
  msgstr "Další výskyt"
1195
 
1196
+ #: app/features/events.php:1660
1197
  msgid "Sell all occurrences by one booking"
1198
  msgstr ""
1199
 
1200
+ #: app/features/events.php:1666
1201
  msgid ""
1202
  "If you have a series of events and you want to sell all of them at once, "
1203
  "this option is for you! For example a weekly yoga course or something "
1204
  "similar."
1205
  msgstr ""
1206
 
1207
+ #: app/features/events.php:1676
1208
  msgid "Total user booking limits"
1209
  msgstr "Celkové limity rezervace uživatelů"
1210
 
1211
+ #: app/features/events.php:1687 app/features/events.php:2089
1212
+ #: app/features/events.php:2221 app/features/events.php:2402
1213
  msgid "Inherit from global options"
1214
  msgstr "Zdědí z globálních možností"
1215
 
1216
+ #: app/features/events.php:1690
1217
  msgid "12"
1218
  msgstr "12"
1219
 
1220
+ #: app/features/events.php:1716
1221
  msgid ""
1222
  "You're translating an event so MEC will use the original event for tickets "
1223
  "and booking. You can only translate the ticket name and description. Please "
1227
  "vstupenek a rezervace. Můžete přeložit pouze název a popis vstupenky. Prosím "
1228
  "definujte určité vstupenky, které jste definovali v původní události."
1229
 
1230
+ #: app/features/events.php:1721
1231
  #, fuzzy
1232
  #| msgid "Ticket"
1233
  msgid "Add Ticket"
1234
  msgstr "Vstupenka"
1235
 
1236
+ #: app/features/events.php:1733 app/features/events.php:1917
1237
  #, fuzzy
1238
  #| msgid "Ticket"
1239
  msgid "Ticket ID"
1240
  msgstr "Vstupenka"
1241
 
1242
+ #: app/features/events.php:1733 app/features/events.php:1917
1243
+ #: app/features/events.php:3652 app/features/fes.php:233
1244
+ #: app/features/ix.php:3719 app/features/ix.php:3760
1245
  #: app/features/labels.php:177 app/features/locations.php:260
1246
  #: app/features/organizers.php:203 app/features/speakers.php:268
1247
  msgid "ID"
1248
  msgstr "ID"
1249
 
1250
+ #: app/features/events.php:1736 app/features/events.php:1920
1251
  msgid "Ticket Name"
1252
  msgstr "Název vstupenky"
1253
 
1254
+ #: app/features/events.php:1741 app/features/events.php:1924
1255
+ #: app/features/events.php:3652 app/features/ix.php:3719
1256
+ #: app/features/ix.php:3760
1257
  msgid "Start Time"
1258
  msgstr "Začátek"
1259
 
1260
+ #: app/features/events.php:1754 app/features/events.php:1937
1261
+ #: app/features/events.php:3652 app/features/ix.php:3719
1262
+ #: app/features/ix.php:3760
1263
  msgid "End Time"
1264
  msgstr "Konec"
1265
 
1266
+ #: app/features/events.php:1775 app/features/events.php:1779
1267
+ #: app/features/events.php:1873 app/features/events.php:1900
1268
+ #: app/features/events.php:1957 app/features/events.php:1960
1269
+ #: app/features/events.php:2037 app/features/events.php:2254
1270
+ #: app/features/events.php:2258 app/features/events.php:2300
1271
+ #: app/features/events.php:2303 app/features/mec/booking.php:486
1272
+ #: app/features/mec/booking.php:489 app/features/mec/booking.php:518
1273
+ #: app/features/mec/booking.php:521
1274
  msgid "Price"
1275
  msgstr "Cena"
1276
 
1277
+ #: app/features/events.php:1780 app/features/events.php:1961
1278
  #, fuzzy
1279
  #| msgid "Insert 0 for free ticket. Only numbers please."
1280
  msgid ""
1282
  "any symbols or characters."
1283
  msgstr "Vložte 0 pro vstupenku zdarma. Prosím pouze čísla."
1284
 
1285
+ #: app/features/events.php:1789 app/features/events.php:1794
1286
+ #: app/features/events.php:1970 app/features/events.php:1973
1287
  msgid "Price Label"
1288
  msgstr "Cenový štítek"
1289
 
1290
+ #: app/features/events.php:1795 app/features/events.php:1974
1291
  msgid "For showing on website. e.g. $15"
1292
  msgstr "Pro zobrazení na webu. např. 15 $"
1293
 
1294
+ #: app/features/events.php:1805 app/features/events.php:1984
1295
  msgid "Available Tickets"
1296
  msgstr "Dostupné vstupenky"
1297
 
1298
+ #: app/features/events.php:1822 app/features/events.php:1994
1299
  #, fuzzy
1300
  #| msgid "Maximum Per Ticket"
1301
  msgid "Minimum Ticket e.g. 3"
1302
  msgstr "Maximum na jednu vstupenku"
1303
 
1304
+ #: app/features/events.php:1825 app/features/events.php:1997
1305
  #, fuzzy
1306
  #| msgid "Maximum Per Ticket"
1307
  msgid "MinimumTicket"
1308
  msgstr "Maximum na jednu vstupenku"
1309
 
1310
+ #: app/features/events.php:1827 app/features/events.php:1999
1311
  msgid "Set a number for the minimum ticket reservation possible"
1312
  msgstr ""
1313
 
1314
+ #: app/features/events.php:1835 app/features/events.php:2007
1315
  msgid "e.g. 0"
1316
  msgstr ""
1317
 
1318
+ #: app/features/events.php:1837 app/features/events.php:2009
1319
  #, fuzzy
1320
  #| msgid "Days"
1321
  msgid "Day"
1322
  msgstr "Dny"
1323
 
1324
+ #: app/features/events.php:1838 app/features/events.php:2010
1325
  msgid "Hour"
1326
  msgstr ""
1327
 
1328
+ #: app/features/events.php:1840 app/features/events.php:2012
1329
  #, php-format
1330
  msgid "Stop selling ticket %s before event start."
1331
  msgstr ""
1332
 
1333
+ #: app/features/events.php:1847 app/features/events.php:2018
1334
  msgid "Price per Date"
1335
  msgstr "Cena za datum"
1336
 
1337
+ #: app/features/events.php:1877 app/features/events.php:1903
1338
+ #: app/features/events.php:2039 app/features/labels.php:60
1339
  #: app/features/mec/meta_boxes/display_options.php:1396
1340
  #: app/features/mec/meta_boxes/search_form.php:67
1341
  #: app/features/mec/meta_boxes/search_form.php:137
1349
  #: app/features/mec/meta_boxes/search_form.php:690
1350
  #: app/features/mec/meta_boxes/search_form.php:796
1351
  #: app/features/mec/settings.php:917 app/features/mec/single.php:341
1352
+ #: app/features/search.php:98 app/libraries/skins.php:1073
1353
  msgid "Label"
1354
  msgstr "Štítek"
1355
 
1356
+ #: app/features/events.php:2114 app/features/events.php:2152
1357
+ #: app/features/mec/booking.php:405 app/features/mec/booking.php:434
1358
  msgid "Fee Title"
1359
  msgstr "Název poplatku"
1360
 
1361
+ #: app/features/events.php:2120 app/features/events.php:2124
1362
+ #: app/features/events.php:2157 app/features/events.php:2160
1363
+ #: app/features/mec/booking.php:409 app/features/mec/booking.php:412
1364
+ #: app/features/mec/booking.php:438 app/features/mec/booking.php:441
1365
  msgid "Amount"
1366
  msgstr "Množství"
1367
 
1368
+ #: app/features/events.php:2125 app/features/events.php:2161
1369
+ #: app/features/mec/booking.php:413 app/features/mec/booking.php:442
1370
  msgid ""
1371
  "Fee amount, considered as fixed amount if you set the type to amount "
1372
  "otherwise considered as percentage"
1374
  "Výše poplatku, je považovaná za pevnou částku, pokud nastavíte typ na částku "
1375
  "odpovídající procentuální hodnotě"
1376
 
1377
+ #: app/features/events.php:2134 app/features/events.php:2170
1378
+ #: app/features/mec/booking.php:420 app/features/mec/booking.php:449
1379
  msgid "Percent"
1380
  msgstr "Procent"
1381
 
1382
+ #: app/features/events.php:2135 app/features/events.php:2171
1383
+ #: app/features/mec/booking.php:421 app/features/mec/booking.php:450
1384
  msgid "Amount (Per Ticket)"
1385
  msgstr "Částka (za vstupenku)"
1386
 
1387
+ #: app/features/events.php:2136 app/features/events.php:2172
1388
+ #: app/features/mec/booking.php:422 app/features/mec/booking.php:451
1389
  msgid "Amount (Per Booking)"
1390
  msgstr "Částka (za rezervaci)"
1391
 
1392
+ #: app/features/events.php:2259 app/features/events.php:2304
1393
+ #: app/features/mec/booking.php:490 app/features/mec/booking.php:522
1394
  msgid "Option Price"
1395
  msgstr "Možnosti ceny"
1396
 
1397
+ #: app/features/events.php:2269 app/features/events.php:2273
1398
+ #: app/features/events.php:2313 app/features/events.php:2316
1399
+ #: app/features/mec/booking.php:496 app/features/mec/booking.php:499
1400
+ #: app/features/mec/booking.php:528 app/features/mec/booking.php:531
1401
  msgid "Maximum Per Ticket"
1402
  msgstr "Maximum na jednu vstupenku"
1403
 
1404
+ #: app/features/events.php:2274 app/features/events.php:2317
1405
+ #: app/features/mec/booking.php:500 app/features/mec/booking.php:532
1406
  #, fuzzy
1407
  #| msgid "Maximum Per Ticket. Leave it blank for unlimited."
1408
  msgid "Maximum Per Ticket. Leave blank for unlimited."
1409
  msgstr "Maximum na jednu vstupenku. Ponechte to prázdné pro neomezené."
1410
 
1411
+ #: app/features/events.php:2414 app/features/mec/booking.php:548
1412
  #, fuzzy
1413
  #| msgid "Attendees Limit"
1414
  msgid "Per Attendee Fields"
1415
  msgstr "Limit účastníků"
1416
 
1417
+ #: app/features/events.php:2444 app/features/mec/booking.php:581
1418
+ #: app/libraries/main.php:3126
1419
  msgid "MEC Name"
1420
  msgstr "MEC Jméno"
1421
 
1422
+ #: app/features/events.php:2445 app/features/mec/booking.php:582
1423
+ #: app/libraries/main.php:3155
1424
  msgid "MEC Email"
1425
  msgstr "MEC Email"
1426
 
1427
+ #: app/features/events.php:2446 app/features/events.php:2535
1428
+ #: app/features/mec/booking.php:583 app/features/mec/booking.php:679
1429
+ #: app/features/mec/single.php:182 app/libraries/main.php:3097
1430
  msgid "Text"
1431
  msgstr "Text"
1432
 
1433
+ #: app/features/events.php:2449 app/features/events.php:2538
1434
+ #: app/features/mec/booking.php:586 app/features/mec/booking.php:682
1435
  #: app/features/mec/single.php:186 app/features/organizers.php:103
1436
  #: app/features/organizers.php:148 app/features/speakers.php:119
1437
  #: app/features/speakers.php:192 app/features/speakers.php:271
1438
+ #: app/libraries/main.php:3300
1439
  msgid "Tel"
1440
  msgstr "Tel"
1441
 
1442
+ #: app/features/events.php:2450 app/features/mec/booking.php:587
1443
+ #: app/libraries/main.php:3242
1444
  msgid "File"
1445
  msgstr "Soubor"
1446
 
1447
+ #: app/features/events.php:2451 app/features/events.php:2539
1448
+ #: app/features/mec/booking.php:588 app/features/mec/booking.php:683
1449
+ #: app/features/mec/single.php:187 app/libraries/main.php:3329
1450
  msgid "Textarea"
1451
  msgstr "Plocha textu"
1452
 
1453
+ #: app/features/events.php:2452 app/features/events.php:2540
1454
+ #: app/features/mec/booking.php:589 app/features/mec/booking.php:684
1455
+ #: app/features/mec/single.php:189 app/libraries/main.php:3381
1456
  msgid "Checkboxes"
1457
  msgstr "Zatržítko"
1458
 
1459
+ #: app/features/events.php:2453 app/features/events.php:2541
1460
+ #: app/features/mec/booking.php:590 app/features/mec/booking.php:685
1461
+ #: app/features/mec/single.php:190 app/libraries/main.php:3427
1462
  msgid "Radio Buttons"
1463
  msgstr "Přepínače"
1464
 
1465
+ #: app/features/events.php:2454 app/features/events.php:2542
1466
+ #: app/features/mec/booking.php:591 app/features/mec/booking.php:686
1467
  #: app/features/mec/meta_boxes/search_form.php:34
1468
  #: app/features/mec/meta_boxes/search_form.php:41
1469
  #: app/features/mec/meta_boxes/search_form.php:49
1540
  #: app/features/mec/meta_boxes/search_form.php:792
1541
  #: app/features/mec/meta_boxes/search_form.php:799
1542
  #: app/features/mec/meta_boxes/search_form.php:813
1543
+ #: app/features/mec/single.php:191 app/libraries/main.php:3473
1544
  msgid "Dropdown"
1545
  msgstr "Rozbalovací"
1546
 
1547
+ #: app/features/events.php:2455 app/features/events.php:2543
1548
+ #: app/features/mec/booking.php:592 app/features/mec/booking.php:687
1549
+ #: app/libraries/main.php:3522
1550
  msgid "Agreement"
1551
  msgstr "Smlouva"
1552
 
1553
+ #: app/features/events.php:2456 app/features/events.php:2544
1554
+ #: app/features/mec/booking.php:593 app/features/mec/booking.php:688
1555
+ #: app/features/mec/single.php:188 app/libraries/main.php:3358
1556
  msgid "Paragraph"
1557
  msgstr "Paragraf"
1558
 
1559
+ #: app/features/events.php:2505 app/features/mec/booking.php:646
1560
  #, fuzzy
1561
  #| msgid "Required Field"
1562
  msgid "Fixed Fields"
1563
  msgstr "Požadovaná pole"
1564
 
1565
+ #: app/features/events.php:3362 app/features/events.php:3380
1566
+ #: app/features/events.php:3398 app/features/events.php:3416
1567
  #, php-format
1568
  msgid "Show all %s"
1569
  msgstr "Ukázat všechny %s"
1570
 
1571
+ #: app/features/events.php:3362
1572
  msgid "labels"
1573
  msgstr "štítky"
1574
 
1575
+ #: app/features/events.php:3380
1576
  msgid "locations"
1577
  msgstr "umístění"
1578
 
1579
+ #: app/features/events.php:3398
1580
  msgid "organizers"
1581
  msgstr "organizátoři"
1582
 
1583
+ #: app/features/events.php:3432
1584
  #, fuzzy
1585
  #| msgid "Attendees Limit"
1586
  msgid "Attendees List"
1587
  msgstr "Limit účastníků"
1588
 
1589
+ #: app/features/events.php:3462 app/features/events.php:3652
1590
+ #: app/features/ix.php:3719 app/features/ix.php:3760
1591
+ #: app/features/locations.php:58 app/features/locations.php:261
1592
+ #: app/features/locations.php:322 app/features/locations.php:324
1593
+ #: app/features/locations.php:333
1594
  #: app/features/mec/meta_boxes/display_options.php:1397
1595
  #: app/features/mec/meta_boxes/search_form.php:38
1596
  #: app/features/mec/meta_boxes/search_form.php:108
1605
  #: app/features/mec/meta_boxes/search_form.php:767
1606
  #: app/features/mec/settings.php:891 app/features/mec/single.php:331
1607
  #: app/features/popup/event.php:116 app/features/popup/event.php:125
1608
+ #: app/features/search.php:74 app/libraries/main.php:2454
1609
+ #: app/libraries/main.php:5922 app/libraries/main.php:5970
1610
+ #: app/libraries/skins.php:969 app/skins/single.php:776
1611
+ #: app/skins/single.php:1219 app/skins/single/default.php:196
1612
  #: app/skins/single/default.php:429 app/skins/single/m1.php:174
1613
  #: app/skins/single/m2.php:97 app/skins/single/modern.php:116
1614
  msgid "Location"
1615
  msgstr "Umístění"
1616
 
1617
+ #: app/features/events.php:3467
1618
  msgid "Repeat"
1619
  msgstr "Opakovat"
1620
 
1621
+ #: app/features/events.php:3468
1622
  msgid "Author"
1623
  msgstr "Autor"
1624
 
1625
+ #: app/features/events.php:3589 app/features/events.php:3590
1626
  msgid "iCal Export"
1627
  msgstr "iCal Export"
1628
 
1629
+ #: app/features/events.php:3592 app/features/events.php:3593
1630
  msgid "CSV Export"
1631
  msgstr "CSV Export"
1632
 
1633
+ #: app/features/events.php:3595 app/features/events.php:3596
1634
  msgid "MS Excel Export"
1635
  msgstr "MS Excel Export"
1636
 
1637
+ #: app/features/events.php:3598 app/features/events.php:3599
1638
  msgid "XML Export"
1639
  msgstr "XML Export"
1640
 
1641
+ #: app/features/events.php:3601 app/features/events.php:3602
1642
  msgid "JSON Export"
1643
  msgstr "JSON Export"
1644
 
1645
+ #: app/features/events.php:3604 app/features/events.php:3605
1646
+ #: app/features/events.php:3761
1647
  msgid "Duplicate"
1648
  msgstr "Duplikát"
1649
 
1650
+ #: app/features/events.php:3652 app/features/ix.php:3719
1651
+ #: app/features/ix.php:3760
1652
  msgid "Link"
1653
  msgstr "Odkaz"
1654
 
1655
+ #: app/features/events.php:3652
1656
  #, php-format
1657
  msgid "%s Tel"
1658
  msgstr "%s Tel"
1659
 
1660
+ #: app/features/events.php:3652
1661
  #, php-format
1662
  msgid "%s Email"
1663
  msgstr "%s Email"
1664
 
1665
+ #: app/features/events.php:3973 app/features/fes.php:233
1666
+ #: app/features/profile/profile.php:183 app/libraries/main.php:2537
1667
+ #: app/libraries/main.php:5952
1668
  msgid "Ticket"
1669
  msgstr "Vstupenka"
1670
 
1671
+ #: app/features/events.php:3976 app/features/profile/profile.php:186
1672
  msgid "Variations"
1673
  msgstr "Variace"
1674
 
1675
+ #: app/features/events.php:3991 app/features/fes.php:304
1676
  msgid "Unknown"
1677
  msgstr "Neznámý"
1678
 
1679
+ #: app/features/events.php:4017
1680
  msgid ""
1681
  "If you want to send an email, first select your attendees and then click in "
1682
  "the button below, please."
1683
  msgstr ""
1684
 
1685
+ #: app/features/events.php:4017 app/features/mec/report.php:50
1686
  #, fuzzy
1687
  #| msgid "Organizer Email"
1688
  msgid "Send Email"
1689
  msgstr "Organizátor Email"
1690
 
1691
+ #: app/features/events.php:4021
1692
  #, fuzzy
1693
  #| msgid "Attendees Form"
1694
  msgid "No Attendees Found!"
1734
  msgid "Order Time"
1735
  msgstr "Konec"
1736
 
1737
+ #: app/features/fes.php:233 app/libraries/main.php:2485
1738
+ #: app/libraries/main.php:2600
1739
  msgid "Transaction ID"
1740
  msgstr "ID transakce"
1741
 
1904
  #: app/features/fes/form.php:848 app/features/labels.php:61
1905
  #: app/features/labels.php:221 app/features/mec.php:462
1906
  #: app/features/mec/meta_boxes/filter.php:72
1907
+ #: app/features/mec/meta_boxes/filter.php:133 app/libraries/main.php:5919
1908
+ #: app/libraries/main.php:5967 app/skins/single.php:989
1909
  #: app/skins/single/default.php:174 app/skins/single/default.php:406
1910
  #: app/skins/single/m1.php:77 app/skins/single/modern.php:252
1911
  msgid "Labels"
1973
  msgid "Import / Export"
1974
  msgstr "Import / Export"
1975
 
1976
+ #: app/features/ix.php:206
1977
+ #, fuzzy
1978
+ #| msgid "Please upload the feed file."
1979
+ msgid "Please upload a CSV file."
1980
  msgstr "Nahrajte prosím zdrojový soubor."
1981
 
1982
+ #: app/features/ix.php:209
1983
+ #, fuzzy
1984
+ #| msgid "The file type should be XML or ICS."
1985
+ msgid "The file type should be CSV."
1986
  msgstr "Typ souboru by měl být XML nebo ICS."
1987
 
1988
+ #: app/features/ix.php:218 app/features/ix.php:423
1989
  msgid "An error occurred during the file upload! Please check permissions!"
1990
  msgstr "Při nahrávání souboru došlo k chybě! Zkontrolujte oprávnění!"
1991
 
1992
+ #: app/features/ix.php:268 app/libraries/main.php:6187
1993
+ #: app/libraries/main.php:6207
1994
+ msgid "Confirmed"
1995
+ msgstr "Potvrzeno"
1996
+
1997
+ #: app/features/ix.php:269 app/libraries/main.php:6188
1998
+ #: app/libraries/main.php:6215
1999
+ msgid "Rejected"
2000
+ msgstr "Odmítnuto"
2001
+
2002
+ #: app/features/ix.php:273 app/features/mec/booking.php:848
2003
+ #: app/features/mec/booking.php:870 app/features/mec/modules.php:401
2004
+ #: app/features/mec/modules.php:423 app/features/mec/notifications.php:988
2005
+ #: app/features/mec/notifications.php:1010 app/features/mec/settings.php:1160
2006
+ #: app/features/mec/settings.php:1182 app/features/mec/single.php:386
2007
+ #: app/features/mec/single.php:408 app/libraries/main.php:6235
2008
+ msgid "Verified"
2009
+ msgstr "Ověřeno"
2010
+
2011
+ #: app/features/ix.php:274 app/features/labels.php:118
2012
+ #: app/features/labels.php:143 app/libraries/main.php:6236
2013
+ #: app/skins/agenda/render.php:43 app/skins/available_spot/tpl.php:58
2014
+ #: app/skins/carousel/render.php:38 app/skins/countdown/tpl.php:39
2015
+ #: app/skins/cover/tpl.php:37 app/skins/daily_view/render.php:29
2016
+ #: app/skins/grid/render.php:64 app/skins/list/render.php:40
2017
+ #: app/skins/masonry/render.php:34 app/skins/monthly_view/calendar.php:89
2018
+ #: app/skins/monthly_view/calendar_clean.php:88
2019
+ #: app/skins/monthly_view/calendar_novel.php:80 app/skins/slider/render.php:48
2020
+ #: app/skins/tile/render.php:44 app/skins/timeline/render.php:49
2021
+ #: app/skins/timetable/render.php:44 app/skins/timetable/render.php:111
2022
+ #: app/skins/weekly_view/render.php:37 app/skins/yearly_view/render.php:53
2023
+ msgid "Canceled"
2024
+ msgstr "Zrušená"
2025
+
2026
+ #: app/features/ix.php:403
2027
+ #, fuzzy
2028
+ #| msgid "The events are imported successfully!"
2029
+ msgid "The bookings are imported successfully!"
2030
+ msgstr "Události byly úspěšně importovány!"
2031
+
2032
+ #: app/features/ix.php:411
2033
+ msgid "Please upload the feed file."
2034
+ msgstr "Nahrajte prosím zdrojový soubor."
2035
+
2036
+ #: app/features/ix.php:414
2037
+ msgid "The file type should be XML or ICS."
2038
+ msgstr "Typ souboru by měl být XML nebo ICS."
2039
+
2040
+ #: app/features/ix.php:431
2041
  msgid "The events are imported successfully!"
2042
  msgstr "Události byly úspěšně importovány!"
2043
 
2044
+ #: app/features/ix.php:1156
2045
  msgid "Third Party plugin is not installed and activated!"
2046
  msgstr "Plugin třetích stran není nainstalován a aktivován!"
2047
 
2048
+ #: app/features/ix.php:1179
2049
  msgid "Third Party plugin is invalid!"
2050
  msgstr "Plugin třetí strany je neplatný!"
2051
 
2052
+ #: app/features/ix.php:2930 app/features/ix.php:2988
2053
  #, fuzzy
2054
  #| msgid "Both of API key and Calendar ID are required!"
2055
  msgid "API key and Calendar ID are required!"
2056
  msgstr "Obě hodnoty: klíč API a ID kalendáře jsou povinné!"
2057
 
2058
+ #: app/features/ix.php:2983 app/features/ix.php:3402 app/features/ix.php:4143
2059
  #, fuzzy
2060
  #| msgid "Please select some events to import!"
2061
  msgid "Please select events to import!"
2062
  msgstr "Vyberte události, které chcete importovat!"
2063
 
2064
+ #: app/features/ix.php:3344 app/features/ix.php:3407
2065
  #, fuzzy
2066
  #| msgid "Both of API key and Group URL are required!"
2067
  msgid "API key and Group URL are required!"
2068
  msgstr "Obě hodnoty: klíč API a skupina URL jsou povinné!"
2069
 
2070
+ #: app/features/ix.php:3646
2071
  msgid "Check at Meetup"
2072
  msgstr "Ověřit Meetup"
2073
 
2074
+ #: app/features/ix.php:3719 app/features/ix.php:3760
2075
  msgid "Organizer Tel"
2076
  msgstr "Organizátor Tel"
2077
 
2078
+ #: app/features/ix.php:3719 app/features/ix.php:3760
2079
  msgid "Organizer Email"
2080
  msgstr "Organizátor Email"
2081
 
2082
  # Client Secret dle kontextu
2083
+ #: app/features/ix.php:3835
2084
  #, fuzzy
2085
  #| msgid "All of Client ID, Client Secret and Calendar ID are required!"
2086
  msgid "All of Client ID, Client Secret, and Calendar ID are required!"
2087
  msgstr ""
2088
  "Vyžadují se všechny klientské ID, tajné informace klienta a ID kalendáře!"
2089
 
2090
+ #: app/features/ix.php:3858
2091
  #, fuzzy, php-format
2092
  #| msgid "All seems good! Please click %s for authenticating your app."
2093
  msgid "All seems good! Please click %s to authenticate your app."
2094
  msgstr "Vše vypadá dobře! Klikněte na % s pro ověření vaší aplikace."
2095
 
2096
+ #: app/features/ix.php:3858
2097
  msgid "here"
2098
  msgstr ""
2099
 
2100
+ #: app/features/ix.php:3912
2101
  #, fuzzy
2102
  #| msgid "All of Client App, Client Secret and Calendar ID are required!"
2103
  msgid "Client App, Client Secret, and Calendar ID are all required!"
2105
  "Všechny klientské aplikace, tajné informace klienta a ID kalendáře jsou "
2106
  "povinné!"
2107
 
2108
+ #: app/features/ix.php:4065
2109
  #, fuzzy, php-format
2110
  #| msgid "%s events added to Google Calendar successfully."
2111
  msgid "%s events added to Google Calendar with success."
2112
  msgstr "% s události byly přidané do Google kalendáře úspěšně."
2113
 
2114
+ #: app/features/ix.php:4066
2115
  #, fuzzy, php-format
2116
  #| msgid "%s previously added events get updated."
2117
  msgid "%s Updated previously added events."
2118
  msgstr "% s dříve přidané události byly aktualizovány."
2119
 
2120
+ #: app/features/ix.php:4067
2121
  #, php-format
2122
  msgid "%s events failed to add for following reasons: %s"
2123
  msgstr "% s události se nepodařilo přidat z následujících důvodů: % s"
2124
 
2125
+ #: app/features/ix.php:4099
2126
  msgid "Please insert your Facebook page's link."
2127
  msgstr "Vložte prosím odkaz na svou stránku na Facebooku."
2128
 
2129
+ #: app/features/ix.php:4110 app/features/ix.php:4152
2130
  #, fuzzy
2131
  #| msgid ""
2132
  #| "We couldn't recognize your Facebook page. Please check it and provide us "
2138
  "Vaši facebookovou stránku jsme nemohli rozpoznat. Zkontrolujte to a "
2139
  "poskytněte nám platný odkaz na stránku Facebooku."
2140
 
2141
+ #: app/features/ix.php:4147
2142
  msgid "Please insert your facebook page's link."
2143
  msgstr "Vložte prosím odkaz na svou facebookovou stránku."
2144
 
2302
  #: app/features/ix/export_g_calendar.php:72
2303
  #: app/features/ix/export_g_calendar.php:151
2304
  #: app/features/ix/export_g_calendar.php:166
2305
+ #: app/features/mec/notifications.php:139
2306
+ #: app/features/mec/notifications.php:241
2307
+ #: app/features/mec/notifications.php:356
2308
+ #: app/features/mec/notifications.php:703
2309
  msgid "Add to Google Calendar"
2310
  msgstr "Přidat do Google kalendáře"
2311
 
2312
+ #: app/features/ix/export_g_calendar.php:93 app/features/mec/booking.php:850
2313
+ #: app/features/mec/modules.php:403 app/features/mec/notifications.php:990
2314
  #: app/features/mec/settings.php:1162 app/features/mec/single.php:388
2315
  msgid "Checking ..."
2316
  msgstr "Ověřování ..."
2337
  msgstr "XML Feed"
2338
 
2339
  #: app/features/ix/import.php:29 app/features/ix/import.php:42
2340
+ #: app/features/ix/import.php:59
2341
  msgid "Upload & Import"
2342
  msgstr "Nahrát & importovat"
2343
 
2359
  msgid "ICS Feed"
2360
  msgstr "ICS Feed"
2361
 
2362
+ #: app/features/ix/import.php:46 app/features/ix/import.php:63
2363
+ #: app/features/mec/booking.php:99 app/features/mec/booking.php:355
2364
+ #: app/features/mec/booking.php:371 app/features/mec/booking.php:389
2365
+ #: app/features/mec/booking.php:466
2366
  #: app/features/mec/meta_boxes/display_options.php:214
2367
  #: app/features/mec/meta_boxes/display_options.php:467
2368
  #: app/features/mec/modules.php:69 app/features/mec/modules.php:211
2371
  msgid "%s is required to use this feature."
2372
  msgstr "% s je vyžadováno pro použití této funkce."
2373
 
2374
+ #: app/features/ix/import.php:46 app/features/ix/import.php:63
2375
+ #: app/features/ix/sync.php:22 app/features/mec/booking.php:99
2376
+ #: app/features/mec/booking.php:355 app/features/mec/booking.php:371
2377
+ #: app/features/mec/booking.php:389 app/features/mec/booking.php:466
2378
  #: app/features/mec/meta_boxes/display_options.php:214
2379
  #: app/features/mec/meta_boxes/display_options.php:467
2380
  #: app/features/mec/meta_boxes/display_options.php:508
2389
  msgid "Pro version of Modern Events Calendar"
2390
  msgstr "Pro verze doplňku Modern Events Calendar"
2391
 
2392
+ #: app/features/ix/import.php:49
2393
+ #, fuzzy
2394
+ #| msgid "Import .ics File"
2395
+ msgid "Import Booking CSV File"
2396
+ msgstr "Import .ics souboru"
2397
+
2398
+ #: app/features/ix/import.php:53
2399
+ #, php-format
2400
+ msgid ""
2401
+ "You can export bookings from %s using the booking menu in source website. "
2402
+ "You need a CSV export and then you're able to simply import it using this "
2403
+ "form in to your target website."
2404
+ msgstr ""
2405
+
2406
+ #: app/features/ix/import.php:54
2407
+ msgid ""
2408
+ "Please note that you should create (or imports) events and tickets before "
2409
+ "importing the bookings otherwise booking won't import due to lack of data."
2410
+ msgstr ""
2411
+
2412
+ #: app/features/ix/import.php:57
2413
+ #, fuzzy
2414
+ #| msgid "File"
2415
+ msgid "CSV File"
2416
+ msgstr "Soubor"
2417
+
2418
  #: app/features/ix/import_f_calendar.php:22
2419
  msgid "The Facebook SDK requires PHP version 5.4 or higher."
2420
  msgstr "Facebook SDK vyžaduje PHP verze 5.4 nebo vyšší."
2594
 
2595
  #: app/features/ix/sync.php:32 app/features/ix/sync.php:41
2596
  #: app/features/ix/sync.php:52 app/features/ix/sync.php:63
2597
+ #: app/features/mec/notifications.php:599
2598
  msgid "Important Note"
2599
  msgstr "Důležitá poznámka"
2600
 
2789
  msgid "Featured"
2790
  msgstr "Ztvárněná"
2791
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2792
  #: app/features/labels.php:120 app/features/labels.php:145
2793
  msgid "You can show featured and canceled events by a different style!"
2794
  msgstr "Vybrané a zrušené události můžete zobrazit jiným stylem!"
2812
 
2813
  #: app/features/locations.php:59 app/features/mec.php:463
2814
  #: app/features/mec/dashboard.php:273 app/features/mec/meta_boxes/filter.php:70
2815
+ #: app/features/mec/meta_boxes/filter.php:97 app/libraries/main.php:5921
2816
+ #: app/libraries/main.php:5969
2817
  msgid "Locations"
2818
  msgstr "Umístění"
2819
 
2948
  msgid "Don't show map in single event page"
2949
  msgstr "Nezobrazovat mapu na jednostránkové události"
2950
 
2951
+ #: app/features/locations.php:396 app/libraries/main.php:5955
2952
+ #: app/libraries/main.php:6000
2953
  msgid "Other Locations"
2954
  msgstr "Další místa"
2955
 
3037
  #: app/features/mec.php:464 app/features/mec/dashboard.php:280
3038
  #: app/features/mec/meta_boxes/filter.php:71
3039
  #: app/features/mec/meta_boxes/filter.php:115 app/features/organizers.php:59
3040
+ #: app/libraries/main.php:5923 app/libraries/main.php:5971
3041
  msgid "Organizers"
3042
  msgstr "Organizátoři"
3043
 
3234
  "tomto případě na svého poskytovatele."
3235
 
3236
  #: app/features/mec/booking.php:78 app/features/mec/messages.php:13
3237
+ #: app/features/mec/modules.php:23 app/features/mec/notifications.php:12
3238
  #: app/features/mec/settings.php:34 app/features/mec/single.php:19
3239
  #: app/features/mec/styling.php:35
3240
  msgid "Search..."
3241
  msgstr "Vyhledávání ..."
3242
 
3243
+ #: app/features/mec/booking.php:80 app/features/mec/booking.php:694
3244
+ #: app/features/mec/booking.php:766 app/features/mec/booking.php:775
3245
+ #: app/features/mec/booking.php:785 app/features/mec/booking.php:867
3246
+ #: app/features/mec/booking.php:881 app/features/mec/messages.php:15
3247
  #: app/features/mec/messages.php:51 app/features/mec/messages.php:60
3248
  #: app/features/mec/messages.php:94 app/features/mec/messages.php:103
3249
+ #: app/features/mec/modules.php:25 app/features/mec/modules.php:368
3250
+ #: app/features/mec/modules.php:378 app/features/mec/modules.php:420
3251
+ #: app/features/mec/modules.php:434 app/features/mec/notifications.php:14
 
3252
  #: app/features/mec/notifications.php:897
3253
+ #: app/features/mec/notifications.php:909
3254
+ #: app/features/mec/notifications.php:1007
3255
+ #: app/features/mec/notifications.php:1021 app/features/mec/settings.php:36
3256
  #: app/features/mec/settings.php:1111 app/features/mec/settings.php:1121
3257
  #: app/features/mec/settings.php:1179 app/features/mec/settings.php:1193
3258
  #: app/features/mec/single.php:21 app/features/mec/single.php:353
3468
  "Pokud nastavíte tuto možnost na 30, rezervační formulář se otevře pouze 30 "
3469
  "minut před zahájením akce!"
3470
 
3471
+ #: app/features/mec/booking.php:171 app/features/mec/booking.php:185
3472
+ #, fuzzy
3473
+ #| msgid "Booking Cancellation"
3474
+ msgid "Cancellation Period"
3475
+ msgstr "Zrušení rezervace"
3476
+
3477
+ #: app/features/mec/booking.php:173
3478
+ msgid "e.g 5"
3479
+ msgstr ""
3480
+
3481
+ #: app/features/mec/booking.php:174
3482
+ msgid "Period"
3483
+ msgstr ""
3484
+
3485
+ #: app/features/mec/booking.php:175
3486
+ #, fuzzy
3487
+ #| msgid "hours"
3488
+ msgid "Hour(s)"
3489
+ msgstr "hodiny"
3490
+
3491
+ #: app/features/mec/booking.php:176
3492
+ msgid "Day(s)"
3493
+ msgstr ""
3494
+
3495
+ #: app/features/mec/booking.php:178
3496
+ #, fuzzy
3497
+ #| msgid "Type 1"
3498
+ msgid "Type"
3499
+ msgstr "Typ 1"
3500
+
3501
+ #: app/features/mec/booking.php:179
3502
+ #, fuzzy
3503
+ #| msgid "Before $10"
3504
+ msgid "Before"
3505
+ msgstr "Před $10"
3506
+
3507
+ #: app/features/mec/booking.php:182
3508
+ #, fuzzy
3509
+ #| msgid "On Event Start"
3510
+ msgid "Event Start"
3511
+ msgstr "Při spuštění události"
3512
+
3513
+ #: app/features/mec/booking.php:186
3514
+ msgid ""
3515
+ "You can restrict the ability to cancel bookings. Leave empty for "
3516
+ "cancellation at any time. For example if you insert 5 hours before event "
3517
+ "start then bookers are able to cancel their booking before this time and "
3518
+ "after that they're not able to do that."
3519
+ msgstr ""
3520
+
3521
+ #: app/features/mec/booking.php:193 app/features/mec/booking.php:203
3522
  #: app/features/mec/settings.php:639 app/features/mec/settings.php:649
3523
  msgid "Thank You Page"
3524
  msgstr "Stránka s poděkováním"
3525
 
3526
+ #: app/features/mec/booking.php:204
3527
  msgid ""
3528
  "User redirects to this page after booking. Leave it empty if you want to "
3529
  "disable it."
3531
  "Uživatel bude přesměrován na tuto stránku po rezervaci. Pokud ji chcete "
3532
  "vypnout, ponechte ji prázdnou."
3533
 
3534
+ #: app/features/mec/booking.php:211 app/features/mec/booking.php:216
3535
  #: app/features/mec/settings.php:659 app/features/mec/settings.php:664
3536
  msgid "Thank You Page Time Interval"
3537
  msgstr "Stránka s poděkováním časového intervalu"
3538
 
3539
+ #: app/features/mec/booking.php:213 app/features/mec/settings.php:661
3540
  msgid "2000 mean 2 seconds"
3541
  msgstr "2000 znamená 2 vteřiny"
3542
 
3543
+ #: app/features/mec/booking.php:217 app/features/mec/settings.php:665
3544
  msgid ""
3545
  "Waiting time before redirecting to thank you page. It's in miliseconds so "
3546
  "2000 means 2 seconds."
3548
  "Čekací doba před přesměrováním na stránku s poděkováním. Je to v "
3549
  "milisekundách, takže 2000 znamená 2 vteřiny."
3550
 
3551
+ #: app/features/mec/booking.php:224 app/features/mec/booking.php:234
3552
  #, fuzzy
3553
  #| msgid "User Profile"
3554
  msgid "User Role"
3555
  msgstr "Uživatelský profil"
3556
 
3557
+ #: app/features/mec/booking.php:235
3558
  msgid ""
3559
  "MEC creates a user for main attendee after each booking. Default role of the "
3560
  "user is subscriber but you can change it if needed."
3561
  msgstr ""
3562
 
3563
+ #: app/features/mec/booking.php:246
3564
  msgid "Enable Express Attendees Form"
3565
  msgstr "Povolit formulář Expres účastníci"
3566
 
3567
+ #: app/features/mec/booking.php:250
3568
  msgid "Attendees Form"
3569
  msgstr "Formulář účastníků"
3570
 
3571
+ #: app/features/mec/booking.php:251
3572
  msgid ""
3573
  "Apply the info from the first attendee to all purchased ticket by that user. "
3574
  "Uncheck if you want every ticket to have its own attendee’s info."
3575
  msgstr ""
3576
 
3577
+ #: app/features/mec/booking.php:264
3578
  msgid "Enable Invoice"
3579
  msgstr "Povolit fakturu"
3580
 
3581
+ #: app/features/mec/booking.php:275
3582
  msgid "Enable Booking for Ongoing Events"
3583
  msgstr "Povolit rezervaci pro probíhající události"
3584
 
3585
+ #: app/features/mec/booking.php:286
3586
  msgid "Enable Downloadable File"
3587
  msgstr ""
3588
 
3589
+ #: app/features/mec/booking.php:291
3590
  msgid ""
3591
  "By enabling this feature, You can upload a file for each event and bookers "
3592
  "are able to download it after booking."
3593
  msgstr ""
3594
 
3595
+ #: app/features/mec/booking.php:298
3596
  msgid "Email verification"
3597
  msgstr "Ověřovací email"
3598
 
3599
+ #: app/features/mec/booking.php:304
3600
  msgid "Auto verification for free bookings"
3601
  msgstr "Automatické ověření pro rezervace zdarma"
3602
 
3603
+ #: app/features/mec/booking.php:313
3604
  msgid "Auto verification for paid bookings"
3605
  msgstr "Automatické ověření pro placené rezervace"
3606
 
3607
+ #: app/features/mec/booking.php:317 app/features/mec/notifications.php:249
3608
  #: app/features/notifications.php:144 app/libraries/main.php:590
3609
  msgid "Booking Confirmation"
3610
  msgstr "Potvrzení rezervace"
3611
 
3612
+ #: app/features/mec/booking.php:323
3613
  msgid "Auto confirmation for free bookings"
3614
  msgstr "Automatické potvrzení pro rezervace zdarma"
3615
 
3616
+ #: app/features/mec/booking.php:332
3617
  msgid "Auto confirmation for paid bookings"
3618
  msgstr "Automatické ověření pro placené rezervace"
3619
 
3620
+ #: app/features/mec/booking.php:341
3621
  msgid "Send confirmation email in auto confirmation mode"
3622
  msgstr ""
3623
 
3624
+ #: app/features/mec/booking.php:352 app/libraries/main.php:560
3625
  #, fuzzy
3626
  #| msgid "Booking Style"
3627
  msgid "Booking Shortcode"
3628
  msgstr "Styl rezervace"
3629
 
3630
+ #: app/features/mec/booking.php:360
3631
  #, php-format
3632
  msgid ""
3633
  "Booking module is available in the event details page but if you like to "
3636
  "into the page content and place the event id instead of 1."
3637
  msgstr ""
3638
 
3639
+ #: app/features/mec/booking.php:361
3640
  #, php-format
3641
  msgid ""
3642
  "Also, you can insert %s if you like to show only one of the available "
3644
  "This parameter is optional."
3645
  msgstr ""
3646
 
3647
+ #: app/features/mec/booking.php:376
3648
  msgid "Enable coupons module"
3649
  msgstr "Povolit modul vstupenek"
3650
 
3651
+ #: app/features/mec/booking.php:378
3652
  #, fuzzy
3653
  #| msgid ""
3654
  #| "After enabling and saving the settings,, you should reload the page to "
3660
  "Po povolení a uložení nastavení byste měli stránku znovu načíst a zobrazit "
3661
  "novou nabídku na řídícím panelu > Rezervace"
3662
 
3663
+ #: app/features/mec/booking.php:386 app/libraries/main.php:562
3664
  msgid "Taxes / Fees"
3665
  msgstr "Daně / poplatky"
3666
 
3667
+ #: app/features/mec/booking.php:394
3668
  msgid "Enable taxes / fees module"
3669
  msgstr "Povolit modul daní / poplatků"
3670
 
3671
+ #: app/features/mec/booking.php:399
3672
  msgid "Add Fee"
3673
  msgstr "Přidat poplatek"
3674
 
3675
+ #: app/features/mec/booking.php:463 app/libraries/main.php:563
3676
  msgid "Ticket Variations & Options"
3677
  msgstr "Varianty a možnosti vstupenek"
3678
 
3679
+ #: app/features/mec/booking.php:471
3680
  msgid "Enable ticket options module"
3681
  msgstr "Povolit modul možností vstupenek"
3682
 
3683
+ #: app/features/mec/booking.php:476
3684
  msgid "Add Variation / Option"
3685
  msgstr "Přidat varianty / možnosti"
3686
 
3687
+ #: app/features/mec/booking.php:753
3688
  msgid "Enable Organizer Payment Module"
3689
  msgstr "Povolit platební modul organizátora"
3690
 
3691
+ #: app/features/mec/booking.php:758
3692
  msgid ""
3693
  "By enabling this module, organizers are able to insert their own payment "
3694
  "credentials for enabled gateways per event and receive the payments directly!"
3696
  "Po aktivaci tohoto modulu mohou organizátoři vkládat své vlastní platební "
3697
  "údaje pro povolené brány pro události a přijímat platby přímo!"
3698
 
3699
+ #: app/features/mec/booking.php:845 app/features/mec/messages.php:78
3700
+ #: app/features/mec/modules.php:398 app/features/mec/notifications.php:985
3701
  #: app/features/mec/settings.php:1157 app/features/mec/single.php:383
3702
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:311
3703
  msgid "Saved"
3704
  msgstr "Uloženo"
3705
 
3706
+ #: app/features/mec/booking.php:846 app/features/mec/messages.php:79
3707
+ #: app/features/mec/modules.php:399 app/features/mec/notifications.php:986
3708
  #: app/features/mec/settings.php:1158 app/features/mec/single.php:384
3709
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:312
3710
  msgid "Settings Saved!"
3711
  msgstr "Nastavení uložena!"
3712
 
3713
+ #: app/features/mec/booking.php:872 app/features/mec/modules.php:425
3714
+ #: app/features/mec/notifications.php:1012 app/features/mec/settings.php:1184
 
 
 
 
 
 
 
 
 
3715
  #: app/features/mec/single.php:410
3716
  msgid "Please Refresh Page"
3717
  msgstr "Prosím obnovte stránku"
4886
  #: app/features/mec/meta_boxes/search_form.php:782
4887
  #: app/features/mec/settings.php:904 app/features/mec/single.php:336
4888
  #: app/features/search.php:86 app/features/speakers.php:61
4889
+ #: app/features/speakers.php:269 app/libraries/main.php:5926
4890
+ #: app/libraries/main.php:5974 app/libraries/skins.php:1021
4891
  #: app/modules/speakers/details.php:18
4892
  msgid "Speaker"
4893
  msgstr "Řečník"
4904
  #: app/features/mec/meta_boxes/search_form.php:683
4905
  #: app/features/mec/meta_boxes/search_form.php:789
4906
  #: app/features/mec/settings.php:911 app/features/mec/single.php:345
4907
+ #: app/features/search.php:92 app/libraries/skins.php:1047
4908
  msgid "Tag"
4909
  msgstr "Štítek"
4910
 
5207
  msgid "Add booking activity to user profile"
5208
  msgstr "Přidejte do uživatelského profilu rezervační aktivitu"
5209
 
5210
+ #: app/features/mec/notifications.php:38
 
 
 
 
 
 
 
 
 
 
 
 
5211
  msgid "Enable booking notification"
5212
  msgstr "Povolit upozornění na rezervaci"
5213
 
5214
+ #: app/features/mec/notifications.php:42
5215
  #, fuzzy
5216
  #| msgid "It sends to attendee after booking for notifying him/her."
5217
  msgid "Sent to attendee after booking to notify them."
5218
  msgstr "Po rezervaci odešle účastníkovi informační upozornění."
5219
 
5220
+ #: app/features/mec/notifications.php:44 app/features/mec/notifications.php:150
5221
+ #: app/features/mec/notifications.php:260
5222
+ #: app/features/mec/notifications.php:375
5223
+ #: app/features/mec/notifications.php:491
5224
+ #: app/features/mec/notifications.php:602
5225
+ #: app/features/mec/notifications.php:728
5226
+ #: app/features/mec/notifications.php:812 app/features/mec/report.php:54
5227
  #: app/features/notifications.php:72
5228
  msgid "Email Subject"
5229
  msgstr "Předmět emailové zprávy"
5230
 
5231
+ #: app/features/mec/notifications.php:50 app/features/mec/notifications.php:57
5232
+ #: app/features/mec/notifications.php:156
5233
+ #: app/features/mec/notifications.php:163
5234
+ #: app/features/mec/notifications.php:266
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5235
  #: app/features/mec/notifications.php:273
5236
+ #: app/features/mec/notifications.php:381
5237
  #: app/features/mec/notifications.php:388
5238
+ #: app/features/mec/notifications.php:497
5239
  #: app/features/mec/notifications.php:504
5240
+ #: app/features/mec/notifications.php:608
5241
  #: app/features/mec/notifications.php:615
5242
+ #: app/features/mec/notifications.php:734
5243
  #: app/features/mec/notifications.php:741
5244
+ #: app/features/mec/notifications.php:818
5245
  #: app/features/mec/notifications.php:825
5246
+ msgid "Receiver Users"
5247
  msgstr ""
5248
 
5249
+ #: app/features/mec/notifications.php:58 app/features/mec/notifications.php:164
5250
+ #: app/features/mec/notifications.php:274
5251
+ #: app/features/mec/notifications.php:389
5252
+ #: app/features/mec/notifications.php:505
5253
+ #: app/features/mec/notifications.php:616
5254
+ #: app/features/mec/notifications.php:742
5255
+ #: app/features/mec/notifications.php:826
5256
+ msgid "Select users to send a copy of email to them!"
 
 
 
 
 
 
 
 
5257
  msgstr ""
5258
 
5259
+ #: app/features/mec/notifications.php:67 app/features/mec/notifications.php:74
5260
+ #: app/features/mec/notifications.php:173
5261
+ #: app/features/mec/notifications.php:180
5262
+ #: app/features/mec/notifications.php:283
5263
  #: app/features/mec/notifications.php:290
5264
+ #: app/features/mec/notifications.php:398
5265
  #: app/features/mec/notifications.php:405
5266
+ #: app/features/mec/notifications.php:514
5267
  #: app/features/mec/notifications.php:521
5268
+ #: app/features/mec/notifications.php:625
5269
  #: app/features/mec/notifications.php:632
5270
+ #: app/features/mec/notifications.php:751
5271
  #: app/features/mec/notifications.php:758
5272
+ #: app/features/mec/notifications.php:835
5273
  #: app/features/mec/notifications.php:842
5274
+ msgid "Receiver Roles"
5275
  msgstr ""
5276
 
5277
+ #: app/features/mec/notifications.php:75 app/features/mec/notifications.php:181
5278
+ #: app/features/mec/notifications.php:291
5279
+ #: app/features/mec/notifications.php:406
5280
+ #: app/features/mec/notifications.php:522
5281
+ #: app/features/mec/notifications.php:633
5282
+ #: app/features/mec/notifications.php:759
5283
+ #: app/features/mec/notifications.php:843
5284
+ msgid "Select users a specific role."
5285
+ msgstr ""
 
 
 
 
 
 
 
 
5286
 
5287
+ #: app/features/mec/notifications.php:83 app/features/mec/notifications.php:87
5288
+ #: app/features/mec/notifications.php:189
5289
+ #: app/features/mec/notifications.php:193
5290
+ #: app/features/mec/notifications.php:299
5291
  #: app/features/mec/notifications.php:303
5292
+ #: app/features/mec/notifications.php:414
5293
  #: app/features/mec/notifications.php:418
5294
+ #: app/features/mec/notifications.php:530
5295
  #: app/features/mec/notifications.php:534
5296
+ #: app/features/mec/notifications.php:641
5297
  #: app/features/mec/notifications.php:645
5298
+ #: app/features/mec/notifications.php:767
5299
  #: app/features/mec/notifications.php:771
5300
+ #: app/features/mec/notifications.php:851
5301
  #: app/features/mec/notifications.php:855
5302
+ msgid "Custom Recipients"
5303
+ msgstr "Vlastní příjemci"
5304
+
5305
+ #: app/features/mec/notifications.php:88 app/features/mec/notifications.php:194
5306
+ #: app/features/mec/notifications.php:304
5307
+ #: app/features/mec/notifications.php:419
5308
+ #: app/features/mec/notifications.php:535
5309
+ #: app/features/mec/notifications.php:646
5310
+ #: app/features/mec/notifications.php:772
5311
+ #: app/features/mec/notifications.php:856
5312
  msgid "Insert comma separated emails for multiple recipients."
5313
  msgstr "Vložte e-maily oddělené čárkami pro více příjemců."
5314
 
5315
+ #: app/features/mec/notifications.php:95 app/features/mec/notifications.php:430
5316
+ #: app/features/mec/notifications.php:542
5317
  msgid "Send the email to event organizer"
5318
  msgstr "Pošlete e-mail organizátorovi události"
5319
 
5320
+ #: app/features/mec/notifications.php:98 app/features/mec/notifications.php:200
5321
+ #: app/features/mec/notifications.php:314
5322
+ #: app/features/mec/notifications.php:437
5323
+ #: app/features/mec/notifications.php:545
5324
+ #: app/features/mec/notifications.php:663
5325
+ #: app/features/mec/notifications.php:778
5326
+ #: app/features/mec/notifications.php:862 app/features/notifications.php:80
5327
  msgid "Email Content"
5328
  msgstr "Obsah zprávy"
5329
 
5330
+ #: app/features/mec/notifications.php:101
5331
+ #: app/features/mec/notifications.php:203
5332
+ #: app/features/mec/notifications.php:317
5333
+ #: app/features/mec/notifications.php:440
5334
+ #: app/features/mec/notifications.php:548
5335
+ #: app/features/mec/notifications.php:666
5336
+ #: app/features/mec/notifications.php:781
5337
+ #: app/features/mec/notifications.php:865 app/features/mec/report.php:56
5338
  #, fuzzy
5339
  #| msgid "You can use following placeholders"
5340
  msgid "You can use the following placeholders"
5341
  msgstr "Můžete použít následující zástupné symboly"
5342
 
 
 
 
 
 
 
 
 
 
5343
  #: app/features/mec/notifications.php:103
5344
  #: app/features/mec/notifications.php:205
5345
  #: app/features/mec/notifications.php:319
5346
  #: app/features/mec/notifications.php:442
5347
  #: app/features/mec/notifications.php:550
5348
+ #: app/features/mec/notifications.php:668 app/features/notifications.php:91
5349
+ msgid "First name of attendee"
5350
+ msgstr "První jméno účastníka"
5351
 
5352
  #: app/features/mec/notifications.php:104
5353
  #: app/features/mec/notifications.php:206
5354
  #: app/features/mec/notifications.php:320
5355
  #: app/features/mec/notifications.php:443
5356
  #: app/features/mec/notifications.php:551
5357
+ #: app/features/mec/notifications.php:669 app/features/notifications.php:92
5358
+ msgid "Last name of attendee"
5359
+ msgstr "Příjmení účastníka"
5360
 
5361
  #: app/features/mec/notifications.php:105
5362
  #: app/features/mec/notifications.php:207
5363
  #: app/features/mec/notifications.php:321
5364
  #: app/features/mec/notifications.php:444
5365
  #: app/features/mec/notifications.php:552
5366
+ #: app/features/mec/notifications.php:670 app/features/notifications.php:93
5367
+ msgid "Email of attendee"
5368
+ msgstr "Email účastníka"
5369
 
5370
  #: app/features/mec/notifications.php:106
5371
  #: app/features/mec/notifications.php:208
5372
  #: app/features/mec/notifications.php:322
5373
  #: app/features/mec/notifications.php:445
5374
  #: app/features/mec/notifications.php:553
5375
+ #: app/features/mec/notifications.php:671 app/features/notifications.php:94
5376
+ msgid "Booked date of event"
5377
+ msgstr "Datum rezervace akce"
5378
 
5379
  #: app/features/mec/notifications.php:107
5380
  #: app/features/mec/notifications.php:209
5381
  #: app/features/mec/notifications.php:323
5382
  #: app/features/mec/notifications.php:446
5383
  #: app/features/mec/notifications.php:554
5384
+ #: app/features/mec/notifications.php:672 app/features/notifications.php:95
5385
+ msgid "Booked time of event"
5386
+ msgstr "Čas rezervace akce"
 
 
5387
 
5388
  #: app/features/mec/notifications.php:108
5389
  #: app/features/mec/notifications.php:210
5390
  #: app/features/mec/notifications.php:324
5391
  #: app/features/mec/notifications.php:447
5392
  #: app/features/mec/notifications.php:555
5393
+ #: app/features/mec/notifications.php:673 app/features/notifications.php:96
5394
+ #, fuzzy
5395
+ #| msgid "Booked date of event"
5396
+ msgid "Booked date and time of event"
5397
+ msgstr "Datum rezervace akce"
5398
 
5399
  #: app/features/mec/notifications.php:109
5400
  #: app/features/mec/notifications.php:211
5401
  #: app/features/mec/notifications.php:325
5402
  #: app/features/mec/notifications.php:448
5403
  #: app/features/mec/notifications.php:556
5404
+ #: app/features/mec/notifications.php:674 app/features/notifications.php:97
5405
+ msgid "Booking Price"
5406
+ msgstr "Cena rezervace"
 
 
5407
 
5408
  #: app/features/mec/notifications.php:110
5409
  #: app/features/mec/notifications.php:212
5410
  #: app/features/mec/notifications.php:326
5411
  #: app/features/mec/notifications.php:449
5412
  #: app/features/mec/notifications.php:557
5413
+ #: app/features/mec/notifications.php:675 app/features/notifications.php:98
5414
+ #, fuzzy
5415
+ #| msgid "Cannot find the booking!"
5416
+ msgid "Date and time of booking"
5417
+ msgstr "Nemohu najít rezervaci!"
5418
 
5419
  #: app/features/mec/notifications.php:111
5420
  #: app/features/mec/notifications.php:213
5423
  #: app/features/mec/notifications.php:558
5424
  #: app/features/mec/notifications.php:676
5425
  #: app/features/mec/notifications.php:789
5426
+ #: app/features/mec/notifications.php:873 app/features/notifications.php:99
5427
+ msgid "Your website title"
5428
+ msgstr "Název vašeho webu"
5429
 
5430
  #: app/features/mec/notifications.php:112
5431
  #: app/features/mec/notifications.php:214
5434
  #: app/features/mec/notifications.php:559
5435
  #: app/features/mec/notifications.php:677
5436
  #: app/features/mec/notifications.php:790
5437
+ #: app/features/mec/notifications.php:874 app/features/notifications.php:100
5438
+ msgid "Your website URL"
5439
+ msgstr "URL vašeho webu"
5440
 
5441
  #: app/features/mec/notifications.php:113
5442
  #: app/features/mec/notifications.php:215
5443
  #: app/features/mec/notifications.php:329
5444
  #: app/features/mec/notifications.php:452
5445
  #: app/features/mec/notifications.php:560
5446
+ #: app/features/mec/notifications.php:678
5447
+ #: app/features/mec/notifications.php:791
5448
+ #: app/features/mec/notifications.php:875 app/features/notifications.php:101
5449
+ msgid "Your website description"
5450
+ msgstr "Popis vašeho webu"
5451
 
5452
  #: app/features/mec/notifications.php:114
5453
  #: app/features/mec/notifications.php:216
5454
  #: app/features/mec/notifications.php:330
5455
  #: app/features/mec/notifications.php:453
5456
  #: app/features/mec/notifications.php:561
5457
+ #: app/features/mec/notifications.php:679 app/features/notifications.php:102
5458
+ msgid "Event title"
5459
+ msgstr "Název události"
5460
 
5461
  #: app/features/mec/notifications.php:115
5462
  #: app/features/mec/notifications.php:217
5463
  #: app/features/mec/notifications.php:331
5464
+ #: app/features/mec/notifications.php:454
5465
+ #: app/features/mec/notifications.php:562
5466
+ #: app/features/mec/notifications.php:680 app/features/notifications.php:103
5467
+ msgid "Event link"
5468
+ msgstr "Odkaz události"
 
5469
 
5470
  #: app/features/mec/notifications.php:116
5471
  #: app/features/mec/notifications.php:218
5472
  #: app/features/mec/notifications.php:332
5473
  #: app/features/mec/notifications.php:785
5474
+ #: app/features/mec/notifications.php:869 app/features/notifications.php:124
5475
  #, fuzzy
5476
+ #| msgid "Start Date"
5477
+ msgid "Event Start Date"
5478
+ msgstr "Počátečná den"
5479
 
5480
  #: app/features/mec/notifications.php:117
5481
  #: app/features/mec/notifications.php:219
5482
  #: app/features/mec/notifications.php:333
5483
+ #: app/features/mec/notifications.php:786
5484
+ #: app/features/mec/notifications.php:870 app/features/notifications.php:125
5485
+ #, fuzzy
5486
+ #| msgid "End Date"
5487
+ msgid "Event End Date"
5488
+ msgstr "Konečný den"
5489
 
5490
  #: app/features/mec/notifications.php:118
5491
  #: app/features/mec/notifications.php:220
5492
  #: app/features/mec/notifications.php:334
5493
  #: app/features/mec/notifications.php:455
5494
  #: app/features/mec/notifications.php:563
5495
+ #: app/features/mec/notifications.php:681 app/features/notifications.php:104
5496
+ msgid "Speaker name of booked event"
5497
+ msgstr "Jméno řečníka rezervované události"
5498
 
5499
  #: app/features/mec/notifications.php:119
5500
  #: app/features/mec/notifications.php:221
5501
  #: app/features/mec/notifications.php:335
5502
  #: app/features/mec/notifications.php:456
5503
  #: app/features/mec/notifications.php:564
5504
+ #: app/features/mec/notifications.php:682 app/features/notifications.php:105
5505
+ msgid "Organizer name of booked event"
5506
+ msgstr "Jméno organizátora rezervované události"
5507
 
5508
  #: app/features/mec/notifications.php:120
5509
  #: app/features/mec/notifications.php:222
5510
  #: app/features/mec/notifications.php:336
5511
  #: app/features/mec/notifications.php:457
5512
  #: app/features/mec/notifications.php:565
5513
+ #: app/features/mec/notifications.php:683 app/features/notifications.php:106
5514
+ msgid "Organizer tel of booked event"
5515
+ msgstr "Telefon organizátora rezervované události"
5516
 
5517
  #: app/features/mec/notifications.php:121
5518
  #: app/features/mec/notifications.php:223
5519
  #: app/features/mec/notifications.php:337
5520
  #: app/features/mec/notifications.php:458
5521
  #: app/features/mec/notifications.php:566
5522
+ #: app/features/mec/notifications.php:684 app/features/notifications.php:107
5523
+ msgid "Organizer email of booked event"
5524
+ msgstr "Email organizátora rezervované události"
5525
 
5526
  #: app/features/mec/notifications.php:122
5527
  #: app/features/mec/notifications.php:224
5528
  #: app/features/mec/notifications.php:338
5529
  #: app/features/mec/notifications.php:459
5530
  #: app/features/mec/notifications.php:567
5531
+ #: app/features/mec/notifications.php:685 app/features/notifications.php:108
5532
+ msgid "Location name of booked event"
5533
+ msgstr "Název místa rezervované události"
5534
 
5535
  #: app/features/mec/notifications.php:123
5536
  #: app/features/mec/notifications.php:225
5537
  #: app/features/mec/notifications.php:339
5538
  #: app/features/mec/notifications.php:460
5539
  #: app/features/mec/notifications.php:568
5540
+ #: app/features/mec/notifications.php:686 app/features/notifications.php:109
5541
+ msgid "Location address of booked event"
5542
+ msgstr "Adresa místa rezervované události"
 
 
5543
 
5544
  #: app/features/mec/notifications.php:124
5545
  #: app/features/mec/notifications.php:226
5546
  #: app/features/mec/notifications.php:340
5547
  #: app/features/mec/notifications.php:461
5548
  #: app/features/mec/notifications.php:569
5549
+ #: app/features/mec/notifications.php:687 app/features/notifications.php:110
5550
  #, fuzzy
5551
+ #| msgid "Location name of booked event"
5552
+ msgid "Additional locations name of booked event"
5553
+ msgstr "Název místa rezervované události"
5554
 
5555
  #: app/features/mec/notifications.php:125
5556
  #: app/features/mec/notifications.php:227
5557
  #: app/features/mec/notifications.php:341
5558
  #: app/features/mec/notifications.php:462
5559
  #: app/features/mec/notifications.php:570
5560
+ #: app/features/mec/notifications.php:688 app/features/notifications.php:111
5561
  #, fuzzy
5562
+ #| msgid "Location address of booked event"
5563
+ msgid "Additional locations address of booked event"
5564
+ msgstr "Adresa místa rezervované události"
5565
 
5566
  #: app/features/mec/notifications.php:126
5567
  #: app/features/mec/notifications.php:228
5568
  #: app/features/mec/notifications.php:342
5569
  #: app/features/mec/notifications.php:463
5570
  #: app/features/mec/notifications.php:571
5571
+ #: app/features/mec/notifications.php:689 app/features/notifications.php:112
5572
+ #, fuzzy
5573
+ #| msgid "Speaker name of booked event"
5574
+ msgid "Featured image of booked event"
5575
+ msgstr "Jméno řečníka rezervované události"
5576
 
5577
  #: app/features/mec/notifications.php:127
5578
  #: app/features/mec/notifications.php:229
5579
  #: app/features/mec/notifications.php:343
5580
  #: app/features/mec/notifications.php:464
5581
  #: app/features/mec/notifications.php:572
5582
+ #: app/features/mec/notifications.php:690 app/features/notifications.php:113
5583
+ msgid "Full Attendee info such as booking form data, name, email etc."
5584
+ msgstr ""
5585
+ "Úplné informace o účastnících, jako jsou údaje z rezervačního formuláře, "
5586
+ "jméno, e-mail atd."
5587
 
5588
  #: app/features/mec/notifications.php:128
5589
  #: app/features/mec/notifications.php:230
5590
  #: app/features/mec/notifications.php:344
5591
  #: app/features/mec/notifications.php:465
5592
  #: app/features/mec/notifications.php:573
5593
+ #: app/features/mec/notifications.php:691 app/features/notifications.php:114
5594
+ #, fuzzy
5595
+ #| msgid "Booking"
5596
+ msgid "Booking ID"
5597
+ msgstr "Rezervace"
5598
+
5599
+ #: app/features/mec/notifications.php:129
5600
+ #: app/features/mec/notifications.php:231
5601
+ #: app/features/mec/notifications.php:345
5602
+ #: app/features/mec/notifications.php:466
5603
+ #: app/features/mec/notifications.php:574
5604
+ #: app/features/mec/notifications.php:692 app/features/notifications.php:115
5605
  #, fuzzy
5606
  #| msgid "Transaction ID"
5607
  msgid "Transaction ID of Booking"
5608
  msgstr "ID transakce"
5609
 
 
 
 
 
 
 
5610
  #: app/features/mec/notifications.php:130
 
5611
  #: app/features/mec/notifications.php:347
5612
+ #: app/features/mec/notifications.php:694
5613
+ msgid "Invoice Link"
5614
+ msgstr "Odkaz na fakturu"
 
 
 
 
5615
 
5616
  #: app/features/mec/notifications.php:131
5617
  #: app/features/mec/notifications.php:233
5618
  #: app/features/mec/notifications.php:348
5619
  #: app/features/mec/notifications.php:468
5620
  #: app/features/mec/notifications.php:576
5621
+ #: app/features/mec/notifications.php:695 app/features/notifications.php:117
5622
+ #, fuzzy
5623
+ #| msgid "There is no skins"
5624
+ msgid "Total attendees of current booking"
5625
+ msgstr "Neexistuje žádný vzhled"
5626
 
5627
  #: app/features/mec/notifications.php:132
5628
  #: app/features/mec/notifications.php:234
5629
  #: app/features/mec/notifications.php:349
5630
  #: app/features/mec/notifications.php:469
5631
  #: app/features/mec/notifications.php:577
5632
+ #: app/features/mec/notifications.php:696 app/features/notifications.php:118
5633
+ msgid "Amount of Booked Tickets (Total attendees of all bookings)"
5634
+ msgstr ""
5635
 
5636
  #: app/features/mec/notifications.php:133
5637
  #: app/features/mec/notifications.php:235
5638
  #: app/features/mec/notifications.php:350
5639
  #: app/features/mec/notifications.php:470
5640
  #: app/features/mec/notifications.php:578
5641
+ #: app/features/mec/notifications.php:697 app/features/notifications.php:119
5642
+ msgid "Ticket name"
5643
+ msgstr "Název vstupenky"
5644
 
5645
  #: app/features/mec/notifications.php:134
5646
  #: app/features/mec/notifications.php:236
5647
  #: app/features/mec/notifications.php:351
5648
  #: app/features/mec/notifications.php:471
5649
  #: app/features/mec/notifications.php:579
5650
+ #: app/features/mec/notifications.php:698 app/features/notifications.php:120
5651
+ msgid "Ticket time"
5652
+ msgstr "Čas vstupenky"
 
 
5653
 
5654
  #: app/features/mec/notifications.php:135
5655
  #: app/features/mec/notifications.php:237
5656
  #: app/features/mec/notifications.php:352
5657
  #: app/features/mec/notifications.php:472
5658
  #: app/features/mec/notifications.php:580
5659
+ #: app/features/mec/notifications.php:699 app/features/notifications.php:121
5660
  #, fuzzy
5661
+ #| msgid "Ticket name"
5662
+ msgid "Ticket name & time"
5663
+ msgstr "Název vstupenky"
5664
 
5665
  #: app/features/mec/notifications.php:136
5666
  #: app/features/mec/notifications.php:238
5667
  #: app/features/mec/notifications.php:353
5668
  #: app/features/mec/notifications.php:473
5669
  #: app/features/mec/notifications.php:581
5670
+ #: app/features/mec/notifications.php:700 app/features/notifications.php:122
5671
+ #, fuzzy
5672
+ #| msgid "Payment Gateways"
5673
+ msgid "Payment Gateway"
5674
+ msgstr "Platební brány"
5675
 
5676
  #: app/features/mec/notifications.php:137
5677
  #: app/features/mec/notifications.php:239
5678
  #: app/features/mec/notifications.php:354
5679
+ #: app/features/mec/notifications.php:474
5680
+ #: app/features/mec/notifications.php:582
5681
+ #: app/features/mec/notifications.php:701 app/features/notifications.php:123
5682
+ msgid "Link to the downloadable file"
5683
+ msgstr ""
5684
+
5685
+ #: app/features/mec/notifications.php:138
5686
+ #: app/features/mec/notifications.php:240
5687
+ #: app/features/mec/notifications.php:355
5688
+ #: app/features/mec/notifications.php:702
5689
  msgid "Download ICS file"
5690
  msgstr "Stáhnout ICS soubor"
5691
 
5692
+ #: app/features/mec/notifications.php:147 app/libraries/main.php:589
5693
  msgid "Booking Verification"
5694
  msgstr "Ověření rezervace"
5695
 
5696
+ #: app/features/mec/notifications.php:148
5697
  msgid "It sends to attendee email for verifying their booking/email."
5698
  msgstr "Odesílá e-mail účastníkovi k ověření jeho rezervace / e-mailu."
5699
 
5700
+ #: app/features/mec/notifications.php:232
5701
  msgid "Email/Booking verification link."
5702
  msgstr "Ověřovací odkaz E-mailu / Rezervace."
5703
 
5704
+ #: app/features/mec/notifications.php:253
5705
  #, fuzzy
5706
  #| msgid "Enable booking notification"
5707
  msgid "Enable booking confirmation"
5708
  msgstr "Povolit upozornění na rezervaci"
5709
 
5710
+ #: app/features/mec/notifications.php:258
5711
  #, fuzzy
5712
  #| msgid "It sends to attendee after confirming the booking by admin."
5713
  msgid "Sent to attendee after confirming the booking by admin."
5714
  msgstr "Po potvrzení rezervace od administrátora odešle účastníkovi."
5715
 
5716
+ #: app/features/mec/notifications.php:311
5717
  msgid "Send One Single Email Only To First Attendee"
5718
  msgstr ""
5719
 
5720
+ #: app/features/mec/notifications.php:346
5721
+ #: app/features/mec/notifications.php:693
5722
  msgid "Booking cancellation link."
5723
  msgstr "Odkaz na zrušení rezervace."
5724
 
5725
+ #: app/features/mec/notifications.php:365 app/features/notifications.php:147
5726
  #: app/libraries/main.php:591
5727
  msgid "Booking Cancellation"
5728
  msgstr "Zrušení rezervace"
5729
 
5730
+ #: app/features/mec/notifications.php:369
5731
  msgid "Enable cancellation notification"
5732
  msgstr "Povolit oznámení o zrušení"
5733
 
5734
+ #: app/features/mec/notifications.php:373
5735
  #, fuzzy
5736
  #| msgid ""
5737
  #| "It sends to selected recipients after booking cancellation for notifying "
5739
  msgid "Sent to selected recipients after booking cancellation to notify them."
5740
  msgstr "Po zrušení rezervace odešle vybraným příjemcům upozornění."
5741
 
5742
+ #: app/features/mec/notifications.php:426
5743
+ #: app/features/mec/notifications.php:723
5744
  msgid "Send the email to admin"
5745
  msgstr "Odeslat email administrátorovi"
5746
 
5747
+ #: app/features/mec/notifications.php:434
5748
  #, fuzzy
5749
  #| msgid "Send the email to booking user"
5750
  msgid "Send the email to the booked user"
5751
  msgstr "Pošlete rezervační e-mail uživateli"
5752
 
5753
+ #: app/features/mec/notifications.php:467
5754
+ #: app/features/mec/notifications.php:575 app/features/notifications.php:116
5755
  msgid "Admin booking management link."
5756
  msgstr "Odkaz administrátora na správu rezervace."
5757
 
5758
+ #: app/features/mec/notifications.php:481 app/libraries/main.php:593
5759
  msgid "Admin"
5760
  msgstr "Administrátor"
5761
 
5762
+ #: app/features/mec/notifications.php:485
5763
  msgid "Enable admin notification"
5764
  msgstr "Povolit oznámení správce"
5765
 
5766
+ #: app/features/mec/notifications.php:489
5767
  #, fuzzy
5768
  #| msgid "It sends to admin to notify him/her that a new booking received."
5769
  msgid "Sent to admin to notify them that a new booking has been received."
5770
  msgstr "Zašle správci informaci o přijetí nové rezervace."
5771
 
5772
+ #: app/features/mec/notifications.php:589 app/features/notifications.php:153
5773
+ #: app/libraries/main.php:592 app/libraries/notifications.php:585
5774
  msgid "Booking Reminder"
5775
  msgstr "Připomenutí rezervace"
5776
 
5777
+ #: app/features/mec/notifications.php:593
5778
  msgid "Enable booking reminder notification"
5779
  msgstr "Povolit upozornění na připomenutí rezervace"
5780
 
5781
+ #: app/features/mec/notifications.php:599
5782
  #, fuzzy, php-format
5783
  #| msgid ""
5784
  #| "Set a cronjob to call %s file once per day otherwise it won't send the "
5793
  "zasílat připomenutí. Mějte na paměti, že byste měli zavolat tento soubor "
5794
  "% s, jinak může zasílat připomenutí několikrát."
5795
 
5796
+ #: app/features/mec/notifications.php:599
5797
  #, fuzzy
5798
  #| msgid "only once per day"
5799
  msgid "only once per hour"
5800
  msgstr "pouze jednou denně"
5801
 
5802
+ #: app/features/mec/notifications.php:652 app/libraries/main.php:6980
5803
+ #: app/libraries/main.php:6997
5804
  #, fuzzy
5805
  #| msgid "hours"
5806
  msgid "Hours"
5807
  msgstr "hodiny"
5808
 
5809
+ #: app/features/mec/notifications.php:656
5810
  msgid "Reminder hours"
5811
  msgstr ""
5812
 
5813
+ #: app/features/mec/notifications.php:657
5814
  msgid "Please, insert comma to separate reminder hours."
5815
  msgstr ""
5816
 
5817
+ #: app/features/mec/notifications.php:712 app/features/popup/event.php:253
5818
  #: app/libraries/main.php:581
5819
  msgid "New Event"
5820
  msgstr "Nová událost"
5821
 
5822
+ #: app/features/mec/notifications.php:716
5823
  msgid "Enable new event notification"
5824
  msgstr "Povolit oznámení na novou událost"
5825
 
5826
+ #: app/features/mec/notifications.php:726
5827
  #, fuzzy
5828
  #| msgid ""
5829
  #| "It sends after adding a new event from frontend event submission or from "
5835
  "Odesílá se po přidání nové události z webových stránek události (frontend) "
5836
  "nebo z administrace webových stránek (backend)."
5837
 
5838
+ #: app/features/mec/notifications.php:783
5839
+ #: app/features/mec/notifications.php:867
5840
  msgid "Title of event"
5841
  msgstr "Název události"
5842
 
5843
+ #: app/features/mec/notifications.php:784
5844
+ #: app/features/mec/notifications.php:868
5845
  msgid "Link of event"
5846
  msgstr "Odkaz události"
5847
 
5848
+ #: app/features/mec/notifications.php:787
5849
+ #: app/features/mec/notifications.php:871 app/features/notifications.php:126
5850
  msgid "Status of event"
5851
  msgstr "Stav události"
5852
 
5853
+ #: app/features/mec/notifications.php:788
5854
+ #: app/features/mec/notifications.php:872 app/features/mec/settings.php:819
5855
  #: app/features/mec/settings.php:823 app/features/notifications.php:127
5856
  msgid "Event Note"
5857
  msgstr "Poznámka události"
5858
 
5859
+ #: app/features/mec/notifications.php:792
5860
+ #: app/features/mec/notifications.php:876
5861
  msgid "Admin events management link."
5862
  msgstr "Odkaz administrátora na správu událostí."
5863
 
5864
+ #: app/features/mec/notifications.php:802 app/libraries/main.php:582
5865
  msgid "User Event Publishing"
5866
  msgstr "Publikování uživatelských událostí"
5867
 
5868
+ #: app/features/mec/notifications.php:806
5869
  msgid "Enable user event publishing notification"
5870
  msgstr "Povolit oznámení o zveřejnění události uživatele"
5871
 
5872
+ #: app/features/mec/notifications.php:810
5873
  #, fuzzy
5874
  #| msgid ""
5875
  #| "It sends after published a new event from frontend event submission or "
5881
  "Odešle po zveřejnění nové události ze zadání z webových stránek (frontend) "
5882
  "nebo z administrace webových stránek (backend)."
5883
 
5884
+ #: app/features/mec/notifications.php:884 app/libraries/main.php:596
5885
+ #, fuzzy
5886
+ #| msgid "Notifications"
5887
+ msgid "Notifications Per Event"
5888
+ msgstr "Upozornění"
5889
+
5890
+ #: app/features/mec/notifications.php:888
5891
+ #, fuzzy
5892
+ #| msgid "Notifications"
5893
+ msgid "Edit Notifications Per Event"
5894
+ msgstr "Upozornění"
5895
+
5896
  #: app/features/mec/report.php:15
5897
  #, fuzzy
5898
  #| msgid "Booking Form"
6070
  msgstr "Můžete povolit nebo zakázat skripty schématu"
6071
 
6072
  #: app/features/mec/settings.php:157 app/features/mec/settings.php:167
6073
+ #: app/libraries/main.php:5930 app/libraries/main.php:5978
6074
  msgid "Weekdays"
6075
  msgstr "Pracovní dny"
6076
 
6805
  msgid "Custom Fields"
6806
  msgstr "Vlastní styly"
6807
 
6808
+ #: app/features/mec/single.php:184 app/libraries/main.php:3213
6809
  msgid "URL"
6810
  msgstr ""
6811
 
7616
  msgid "eg. https://webnus.net"
7617
  msgstr "např. https://webnus.net"
7618
 
7619
+ #: app/features/organizers.php:312 app/libraries/main.php:5954
7620
+ #: app/libraries/main.php:5999 app/skins/single.php:1147
7621
  msgid "Other Organizers"
7622
  msgstr "Další organizátoři"
7623
 
7815
  msgid "#"
7816
  msgstr "#"
7817
 
7818
+ #: app/features/profile/profile.php:61 app/libraries/main.php:3545
7819
  msgid "Status"
7820
  msgstr "Stav"
7821
 
7822
+ #: app/features/profile/profile.php:64 app/libraries/main.php:2521
7823
  msgid "Attendees"
7824
  msgstr "Účastníci"
7825
 
7940
  msgid "No search result."
7941
  msgstr "Žádný výsledek vyhledávání."
7942
 
7943
+ #: app/features/search_bar/search_result.php:12 app/libraries/main.php:5956
7944
+ #: app/libraries/main.php:6001 app/libraries/notifications.php:990
7945
+ #: app/libraries/render.php:518 app/libraries/render.php:838
7946
  #: app/modules/local-time/details.php:48 app/modules/local-time/type1.php:45
7947
  #: app/modules/local-time/type2.php:47 app/modules/local-time/type3.php:45
7948
+ #: app/modules/next-event/details.php:145 app/skins/single.php:1039
7949
  #: app/skins/single/default.php:125 app/skins/single/default.php:359
7950
  #: app/skins/single/m1.php:47 app/skins/single/modern.php:222
7951
  #, fuzzy
8166
  msgid "Timeline View"
8167
  msgstr "Zobrazení rozvrhu"
8168
 
8169
+ #: app/libraries/main.php:385 app/libraries/main.php:5932
8170
+ #: app/libraries/main.php:5980
8171
  msgid "SU"
8172
  msgstr "NE"
8173
 
8174
+ #: app/libraries/main.php:386 app/libraries/main.php:5933
8175
+ #: app/libraries/main.php:5981
8176
  msgid "MO"
8177
  msgstr "PO"
8178
 
8179
+ #: app/libraries/main.php:387 app/libraries/main.php:5934
8180
+ #: app/libraries/main.php:5982
8181
  msgid "TU"
8182
  msgstr "ÚT"
8183
 
8184
+ #: app/libraries/main.php:388 app/libraries/main.php:5935
8185
+ #: app/libraries/main.php:5983
8186
  msgid "WE"
8187
  msgstr "ST"
8188
 
8189
+ #: app/libraries/main.php:389 app/libraries/main.php:5936
8190
+ #: app/libraries/main.php:5984
8191
  msgid "TH"
8192
  msgstr "ČT"
8193
 
8194
+ #: app/libraries/main.php:390 app/libraries/main.php:5937
8195
+ #: app/libraries/main.php:5985
8196
  msgid "FR"
8197
  msgstr "PÁ"
8198
 
8199
+ #: app/libraries/main.php:391 app/libraries/main.php:5938
8200
+ #: app/libraries/main.php:5986
8201
  msgid "SA"
8202
  msgstr "SO"
8203
 
8378
  msgid "Your booking cannot verify!"
8379
  msgstr "Vaši rezervaci nelze ověřit!"
8380
 
8381
+ #: app/libraries/main.php:2334
8382
+ #, fuzzy
8383
+ #| msgid "The event is finished."
8384
+ msgid "The event is already finished!"
8385
+ msgstr "Událost je ukončena."
8386
+
8387
+ #: app/libraries/main.php:2352
8388
+ msgid "The cancelation window is passed."
8389
+ msgstr ""
8390
+
8391
+ #: app/libraries/main.php:2358
8392
  msgid "Your booking successfully canceled."
8393
  msgstr "Vaše rezervace byla úspěšně zrušena."
8394
 
8395
+ #: app/libraries/main.php:2359
8396
  msgid "Your booking cannot be canceled."
8397
  msgstr "Vaši rezervaci nelze zrušit."
8398
 
8399
+ #: app/libraries/main.php:2363
8400
  msgid "You canceled the payment successfully."
8401
  msgstr "Platbu jste úspěšně zrušili."
8402
 
8403
+ #: app/libraries/main.php:2367
8404
  msgid "You returned from payment gateway successfully."
8405
  msgstr "Úspěšně jste se vrátili z platební brány."
8406
 
8407
+ #: app/libraries/main.php:2386
8408
  msgid "Cannot find the invoice!"
8409
  msgstr "Fakturu nelze najít!"
8410
 
8411
+ #: app/libraries/main.php:2386
8412
  msgid "Invoice is invalid."
8413
  msgstr "Faktura je neplatná."
8414
 
8415
+ #: app/libraries/main.php:2406
8416
  #, fuzzy
8417
  #| msgid ""
8418
  #| "Your booking still is not confirmed. You able download it after "
8422
  msgstr ""
8423
  "Vaše rezervace stále není potvrzena. Můžete si ji stáhnout po potvrzení!"
8424
 
8425
+ #: app/libraries/main.php:2406
8426
  msgid "Booking Not Confirmed."
8427
  msgstr "Rezervace nebyla potvrzena."
8428
 
8429
+ #: app/libraries/main.php:2412
8430
  msgid "Cannot find the booking!"
8431
  msgstr "Nemohu najít rezervaci!"
8432
 
8433
+ #: app/libraries/main.php:2412
8434
  msgid "Booking is invalid."
8435
  msgstr "Rezervace není platná."
8436
 
8437
+ #: app/libraries/main.php:2445
8438
  #, php-format
8439
  msgid "%s Invoice"
8440
  msgstr "%s Faktura"
8441
 
8442
+ #: app/libraries/main.php:2478
8443
  #, fuzzy
8444
  #| msgid "Date and Time"
8445
  msgid "Date & Time"
8446
  msgstr "Datum a čas"
8447
 
8448
+ #: app/libraries/main.php:2495
8449
  #, fuzzy
8450
  #| msgid "Booking Price"
8451
  msgid "Booking Fields"
8452
  msgstr "Cena rezervace"
8453
 
8454
+ #: app/libraries/main.php:2567
8455
  msgid "Billing"
8456
  msgstr "Fakturace"
8457
 
8458
+ #: app/libraries/main.php:2579
8459
  #, fuzzy
8460
  #| msgid "Coupons"
8461
  msgid "Coupon Code"
8462
  msgstr "Kupóny"
8463
 
8464
+ #: app/libraries/main.php:2584
8465
  msgid "Total"
8466
  msgstr "Celkem"
8467
 
8468
+ #: app/libraries/main.php:2591
8469
  #, fuzzy
8470
  #| msgid "Payment Gateways"
8471
  msgid "Payment"
8472
  msgstr "Platební brány"
8473
 
8474
+ #: app/libraries/main.php:2595
8475
  #, fuzzy
8476
  #| msgid "Payment Gateways"
8477
  msgid "Gateway"
8478
  msgstr "Platební brány"
8479
 
8480
+ #: app/libraries/main.php:2608
8481
  #, fuzzy
8482
  #| msgid "Payment Gateways"
8483
  msgid "Payment Time"
8484
  msgstr "Platební brány"
8485
 
8486
+ #: app/libraries/main.php:2750
8487
  msgid "Request is not valid."
8488
  msgstr "Požadavek není platný."
8489
 
8490
+ #: app/libraries/main.php:2750
8491
  msgid "iCal export stopped!"
8492
  msgstr "iCal export byl zastaven!"
8493
 
8494
+ #: app/libraries/main.php:3096 app/libraries/main.php:3125
8495
+ #: app/libraries/main.php:3154 app/libraries/main.php:3183
8496
+ #: app/libraries/main.php:3212 app/libraries/main.php:3241
8497
+ #: app/libraries/main.php:3270 app/libraries/main.php:3299
8498
+ #: app/libraries/main.php:3328 app/libraries/main.php:3357
8499
+ #: app/libraries/main.php:3380 app/libraries/main.php:3426
8500
+ #: app/libraries/main.php:3472 app/libraries/main.php:3521
8501
+ #: app/libraries/main.php:3570
8502
  msgid "Sort"
8503
  msgstr "Seřadit"
8504
 
8505
+ #: app/libraries/main.php:3103 app/libraries/main.php:3132
8506
+ #: app/libraries/main.php:3161 app/libraries/main.php:3190
8507
+ #: app/libraries/main.php:3219 app/libraries/main.php:3248
8508
+ #: app/libraries/main.php:3277 app/libraries/main.php:3306
8509
+ #: app/libraries/main.php:3335 app/libraries/main.php:3387
8510
+ #: app/libraries/main.php:3433 app/libraries/main.php:3479
8511
+ #: app/libraries/main.php:3528
8512
  msgid "Required Field"
8513
  msgstr "Požadovaná pole"
8514
 
8515
+ #: app/libraries/main.php:3109 app/libraries/main.php:3138
8516
+ #: app/libraries/main.php:3167 app/libraries/main.php:3196
8517
+ #: app/libraries/main.php:3225 app/libraries/main.php:3254
8518
+ #: app/libraries/main.php:3283 app/libraries/main.php:3312
8519
+ #: app/libraries/main.php:3341 app/libraries/main.php:3393
8520
+ #: app/libraries/main.php:3439 app/libraries/main.php:3485
8521
+ #: app/libraries/main.php:3534
8522
  msgid "Insert a label for this field"
8523
  msgstr "Vložte štítek pro toto pole"
8524
 
8525
+ #: app/libraries/main.php:3363
8526
  msgid "HTML and shortcode are allowed."
8527
  msgstr "HTML a zkrácené kódy jsou povoleny."
8528
 
8529
+ #: app/libraries/main.php:3406 app/libraries/main.php:3452
8530
+ #: app/libraries/main.php:3498
8531
  msgid "Option"
8532
  msgstr "Možnost"
8533
 
8534
+ #: app/libraries/main.php:3534
8535
  #, php-format
8536
  msgid "Instead of %s, the page title with a link will be show."
8537
  msgstr "Místo%s se zobrazí název stránky s odkazem."
8538
 
8539
+ #: app/libraries/main.php:3536
8540
  msgid "Agreement Page"
8541
  msgstr "Stránka smlouvy"
8542
 
8543
+ #: app/libraries/main.php:3547
8544
  msgid "Checked by default"
8545
  msgstr "Ve výchozím nastavení zaškrtnuto"
8546
 
8547
+ #: app/libraries/main.php:3548
8548
  msgid "Unchecked by default"
8549
  msgstr "Ve výchozím nastavení není zaškrtnuto"
8550
 
8551
+ #: app/libraries/main.php:3572
8552
  msgid "Insert a label for this option"
8553
  msgstr "Vložte štítek pro tuto možnost"
8554
 
8555
+ #: app/libraries/main.php:3585
8556
  msgid "Free"
8557
  msgstr "Zdarma"
8558
 
8559
+ #: app/libraries/main.php:4214 app/libraries/main.php:6250
8560
  msgid "M.E. Calender"
8561
  msgstr "M.E. Kalendář"
8562
 
8563
+ #: app/libraries/main.php:4370
8564
  #, php-format
8565
  msgid "Copy of %s"
8566
  msgstr "Kopie %s"
8567
 
8568
+ #: app/libraries/main.php:5188
8569
  msgid "Booked an event."
8570
  msgstr "Událost byla rezervována."
8571
 
8572
+ #: app/libraries/main.php:5229
8573
  #, php-format
8574
  msgid "%s booked %s event."
8575
  msgstr "%s zarezervoval %s událost."
8576
 
8577
+ #: app/libraries/main.php:5915 app/libraries/main.php:5963
8578
  msgid "Taxonomies"
8579
  msgstr "Taxonomie"
8580
 
8581
  # Mrknout na kontext
8582
+ #: app/libraries/main.php:5917 app/libraries/main.php:5965
8583
  msgid "Category Plural Label"
8584
  msgstr "Štítek množné kategorie"
8585
 
8586
  # Mrknout na kontext
8587
+ #: app/libraries/main.php:5918 app/libraries/main.php:5966
8588
  msgid "Category Singular Label"
8589
  msgstr "Štítek jednotné kategorie"
8590
 
8591
+ #: app/libraries/main.php:5919 app/libraries/main.php:5967
8592
  msgid "Label Plural Label"
8593
  msgstr "Štítek množného štítku"
8594
 
8595
+ #: app/libraries/main.php:5920 app/libraries/main.php:5968
8596
  msgid "Label Singular Label"
8597
  msgstr "Štítek jednotného štítku"
8598
 
8599
+ #: app/libraries/main.php:5920 app/libraries/main.php:5968
8600
  msgid "label"
8601
  msgstr "štítek"
8602
 
8603
+ #: app/libraries/main.php:5921 app/libraries/main.php:5969
8604
  msgid "Location Plural Label"
8605
  msgstr "Štítek množného umístění"
8606
 
8607
+ #: app/libraries/main.php:5922 app/libraries/main.php:5970
8608
  msgid "Location Singular Label"
8609
  msgstr "Štítek jednotného umístění"
8610
 
8611
+ #: app/libraries/main.php:5923 app/libraries/main.php:5971
8612
  msgid "Organizer Plural Label"
8613
  msgstr "Štítek množného organizátora"
8614
 
8615
+ #: app/libraries/main.php:5924 app/libraries/main.php:5972
8616
  msgid "Organizer Singular Label"
8617
  msgstr "Štítek jednotného organizátora"
8618
 
8619
+ #: app/libraries/main.php:5925 app/libraries/main.php:5973
8620
  msgid "Speaker Plural Label"
8621
  msgstr "Štítek množného řečníka"
8622
 
8623
+ #: app/libraries/main.php:5926 app/libraries/main.php:5974
8624
  msgid "Speaker Singular Label"
8625
  msgstr "Štítek jednotného řečníka"
8626
 
8627
+ #: app/libraries/main.php:5932 app/libraries/main.php:5980
8628
  msgid "Sunday abbreviation"
8629
  msgstr "Neděle zkratka"
8630
 
8631
+ #: app/libraries/main.php:5933 app/libraries/main.php:5981
8632
  msgid "Monday abbreviation"
8633
  msgstr "Pondělí zkratka"
8634
 
8635
+ #: app/libraries/main.php:5934 app/libraries/main.php:5982
8636
  msgid "Tuesday abbreviation"
8637
  msgstr "Úterý zkratka"
8638
 
8639
+ #: app/libraries/main.php:5935 app/libraries/main.php:5983
8640
  msgid "Wednesday abbreviation"
8641
  msgstr "Středa zkratka"
8642
 
8643
+ #: app/libraries/main.php:5936 app/libraries/main.php:5984
8644
  msgid "Thursday abbreviation"
8645
  msgstr "Čtvrtek zkratka"
8646
 
8647
+ #: app/libraries/main.php:5937 app/libraries/main.php:5985
8648
  msgid "Friday abbreviation"
8649
  msgstr "Pátek zkratka"
8650
 
8651
+ #: app/libraries/main.php:5938 app/libraries/main.php:5986
8652
  msgid "Saturday abbreviation"
8653
  msgstr "Sobota zkratka"
8654
 
8655
+ #: app/libraries/main.php:5942 app/libraries/main.php:5990
8656
  msgid "Others"
8657
  msgstr "Další"
8658
 
8659
+ #: app/libraries/main.php:5944
8660
  msgid "Booking Success Message"
8661
  msgstr "Zpráva o úspěchu rezervace"
8662
 
8663
+ #: app/libraries/main.php:5944
8664
  #, fuzzy
8665
  #| msgid ""
8666
  #| "Thanks for your booking. Your tickets booked, booking verification might "
8672
  "Děkujeme za vaši rezervaci. Vaše vstupenky jsou rezervovány, může být nutné "
8673
  "ověřit rezervaci. Zkontrolujte prosím svůj e-mail."
8674
 
8675
+ #: app/libraries/main.php:5945 app/libraries/main.php:5992
8676
  #: app/widgets/single.php:131
8677
  msgid "Register Button"
8678
  msgstr "Registrační tlačítko"
8679
 
8680
+ #: app/libraries/main.php:5945 app/libraries/main.php:5992
8681
  #: app/skins/available_spot/tpl.php:210 app/skins/carousel/render.php:110
8682
  #: app/skins/carousel/render.php:150 app/skins/grid/render.php:98
8683
  #: app/skins/grid/render.php:155 app/skins/grid/render.php:206
8684
  #: app/skins/grid/render.php:226 app/skins/list/render.php:68
8685
  #: app/skins/list/render.php:160 app/skins/masonry/render.php:150
8686
+ #: app/skins/single.php:352 app/skins/single.php:1060 app/skins/single.php:1063
8687
  #: app/skins/single/default.php:288 app/skins/single/default.php:290
8688
  #: app/skins/single/default.php:521 app/skins/single/default.php:523
8689
  #: app/skins/single/m1.php:144 app/skins/single/m1.php:146
8695
  msgid "REGISTER"
8696
  msgstr "REGISTROVAT"
8697
 
8698
+ #: app/libraries/main.php:5946 app/libraries/main.php:5993
8699
  msgid "View Detail Button"
8700
  msgstr "Tlačítko Zobrazit detail"
8701
 
8702
+ #: app/libraries/main.php:5946 app/libraries/main.php:5993
8703
  #: app/skins/carousel/render.php:110 app/skins/carousel/render.php:150
8704
  #: app/skins/grid/render.php:98 app/skins/grid/render.php:155
8705
  #: app/skins/grid/render.php:206 app/skins/grid/render.php:226
8711
  msgid "View Detail"
8712
  msgstr "Zobrazit detail"
8713
 
8714
+ #: app/libraries/main.php:5947 app/libraries/main.php:5994
8715
  msgid "Event Detail Button"
8716
  msgstr "Tlačítko Detail události"
8717
 
8718
+ #: app/libraries/main.php:5947 app/libraries/main.php:5994
8719
  #: app/skins/countdown/tpl.php:221
8720
  msgid "Event Detail"
8721
  msgstr "Zobrazit událost"
8722
 
8723
+ #: app/libraries/main.php:5949 app/libraries/main.php:5996
8724
  msgid "More Info Link"
8725
  msgstr "Odkaz na více informací"
8726
 
8727
+ #: app/libraries/main.php:5952
8728
  msgid "Ticket (Singular)"
8729
  msgstr "Vstupenka (Jednotné)"
8730
 
8731
+ #: app/libraries/main.php:5953
8732
  msgid "Tickets (Plural)"
8733
  msgstr "Vstupenky (Množné)"
8734
 
8735
+ #: app/libraries/main.php:6109
8736
  msgid "EventON"
8737
  msgstr "EventON"
8738
 
8739
+ #: app/libraries/main.php:6110
8740
  msgid "The Events Calendar"
8741
  msgstr "The Events Calendar"
8742
 
8743
+ #: app/libraries/main.php:6111
8744
  msgid "Events Schedule WP Plugin"
8745
  msgstr "Events Schedule WP Plugin"
8746
 
8747
+ #: app/libraries/main.php:6112
8748
  msgid "Calendarize It"
8749
  msgstr "Calendarize It"
8750
 
8751
+ #: app/libraries/main.php:6113
8752
  #, fuzzy
8753
  #| msgid "Event Speakers"
8754
  msgid "Event Espresso"
8755
  msgstr "Řečník události"
8756
 
8757
+ #: app/libraries/main.php:6114
8758
  #, fuzzy
8759
  #| msgid "Event Repeating (Recurring events)"
8760
  msgid "Events Manager (Recurring)"
8761
  msgstr "Opakování události (opakující se události)"
8762
 
8763
+ #: app/libraries/main.php:6115
8764
  #, fuzzy
8765
  #| msgid "Modern Events Calendar (Lite)"
8766
  msgid "Events Manager (Single)"
8767
  msgstr "Modern Events Calendar (Lite)"
8768
 
8769
+ #: app/libraries/main.php:6189 app/libraries/main.php:6211
 
 
 
 
 
 
 
 
8770
  msgid "Pending"
8771
  msgstr "Nevyřízený"
8772
 
8773
+ #: app/libraries/main.php:6237
8774
  msgid "Waiting"
8775
  msgstr "Čekající"
8776
 
8777
+ #: app/libraries/main.php:6280
8778
  #, fuzzy
8779
  #| msgid "Sunday"
8780
  msgid "Sun"
8781
  msgstr "Neděle"
8782
 
8783
+ #: app/libraries/main.php:6280
8784
  #, fuzzy
8785
  #| msgid "Monday"
8786
  msgid "Mon"
8787
  msgstr "Pondělí"
8788
 
8789
+ #: app/libraries/main.php:6280
8790
  #, fuzzy
8791
  #| msgid "Tel"
8792
  msgid "Tue"
8793
  msgstr "Tel"
8794
 
8795
+ #: app/libraries/main.php:6280
8796
  msgid "Wed"
8797
  msgstr ""
8798
 
8799
+ #: app/libraries/main.php:6280
8800
  msgid "Thu"
8801
  msgstr ""
8802
 
8803
+ #: app/libraries/main.php:6280
8804
  #, fuzzy
8805
  #| msgid "Friday"
8806
  msgid "Fri"
8807
  msgstr "Pátek"
8808
 
8809
+ #: app/libraries/main.php:6280
8810
  #, fuzzy
8811
  #| msgid "Start"
8812
  msgid "Sat"
8813
  msgstr "Začátek"
8814
 
8815
+ #: app/libraries/main.php:6442 app/libraries/render.php:80
8816
  #: app/libraries/render.php:432
8817
  msgid "Skin controller does not exist."
8818
  msgstr "Ovladač vzhledu neexistuje."
8819
 
8820
+ #: app/libraries/main.php:6657
8821
  msgid "Sold Out"
8822
  msgstr "Vyprodáno"
8823
 
8824
+ #: app/libraries/main.php:6665
8825
  #, fuzzy
8826
  #| msgid "Ticket"
8827
  msgid "Last Few Tickets"
8828
  msgstr "Vstupenka"
8829
 
8830
+ #: app/libraries/main.php:6986 app/libraries/main.php:7003
8831
  #, fuzzy
8832
  #| msgid "minutes"
8833
  msgid "Minutes"
8834
  msgstr "minuty"
8835
 
8836
+ #: app/libraries/main.php:7008
8837
  msgid "AM / PM"
8838
  msgstr ""
8839
 
8840
+ #: app/libraries/main.php:7009
8841
  msgid "AM"
8842
  msgstr "dop."
8843
 
8844
+ #: app/libraries/main.php:7010
8845
  msgid "PM"
8846
  msgstr "odp."
8847
 
8848
+ #: app/libraries/main.php:7018
8849
  msgid "Ongoing..."
8850
  msgstr ""
8851
 
8852
+ #: app/libraries/main.php:7019
8853
  #, fuzzy
8854
  #| msgid "Expired Events"
8855
  msgid "Expired!"
8875
  msgid "A new booking is received."
8876
  msgstr "Je přijata nová rezervace."
8877
 
8878
+ #: app/libraries/notifications.php:708
8879
  msgid "A new event is added."
8880
  msgstr "Je přidána se nová událost."
8881
 
8882
+ #: app/libraries/notifications.php:812
8883
  msgid "Your event is published."
8884
  msgstr "Vaše událost je zveřejněna."
8885
 
8886
+ #: app/libraries/notifications.php:975 app/libraries/notifications.php:990
8887
+ #: app/libraries/notifications.php:1001
8888
  #, php-format
8889
  msgid "%s to %s"
8890
  msgstr ""
8891
 
8892
+ #: app/libraries/notifications.php:1173
8893
  msgid "to"
8894
  msgstr "do"
8895
 
8896
+ #: app/libraries/notifications.php:1194 app/modules/export/details.php:46
8897
  msgid "+ Add to Google Calendar"
8898
  msgstr "+ Přidat do Google kalendáře"
8899
 
8900
+ #: app/libraries/notifications.php:1195 app/modules/export/details.php:47
8901
  msgid "+ iCal export"
8902
  msgstr "+ iCal export"
8903
 
8904
+ #: app/libraries/notifications.php:1280
8905
  msgid "Yes"
8906
  msgstr "Ano"
8907
 
8908
+ #: app/libraries/notifications.php:1280
8909
  msgid "No"
8910
  msgstr "Ne"
8911
 
8912
+ #: app/libraries/skins.php:1094
8913
  #, fuzzy
8914
  #| msgid "Select All"
8915
  msgid "Select"
8916
  msgstr "Vybrat vše"
8917
 
8918
+ #: app/libraries/skins.php:1269 app/libraries/skins.php:1270
8919
  #: app/modules/booking/steps/tickets.php:90
8920
  msgid "Book Event"
8921
  msgstr "Rezervovat událost"
9035
  msgid "Get Directions"
9036
  msgstr "Získat směr"
9037
 
9038
+ #: app/modules/links/details.php:17 app/skins/single.php:744
9039
  msgid "Share this event"
9040
  msgstr "Sdílet tuto událost"
9041
 
9090
  msgid "Go to occurrence page"
9091
  msgstr "Přejít na stránku výskytu"
9092
 
9093
+ #: app/modules/next-event/details.php:139 app/skins/single.php:1033
9094
  #: app/skins/single/default.php:119 app/skins/single/default.php:353
9095
  #: app/skins/single/m1.php:41 app/skins/single/modern.php:216
9096
  msgid "Time"
9215
  msgstr "Zobrazení rozvrhu"
9216
 
9217
  #: app/skins/monthly_view/calendar.php:71
9218
+ #: app/skins/monthly_view/calendar.php:116
9219
  #: app/skins/monthly_view/calendar_clean.php:70
9220
+ #: app/skins/monthly_view/calendar_clean.php:132
9221
  #, php-format
9222
  msgid "Events for %s"
9223
  msgstr "Událost pro %s"
9224
 
9225
+ #: app/skins/monthly_view/calendar.php:118
9226
+ #: app/skins/monthly_view/calendar_clean.php:134
9227
  #: app/skins/timetable/render.php:83 app/skins/weekly_view/render.php:64
9228
  msgid "No Events"
9229
  msgstr "Žádné události"
9232
  msgid "Home"
9233
  msgstr "Domů"
9234
 
9235
+ #: app/skins/single.php:827 app/skins/single/default.php:65
9236
  #: app/skins/single/m1.php:279 app/skins/single/m2.php:200
9237
  #: app/skins/single/modern.php:300
9238
  msgid "Sold out!"
9239
  msgstr "Vyprodáno!"
9240
 
9241
+ #: app/skins/single.php:1107 app/skins/single.php:1166
9242
  #: app/skins/single/default.php:255 app/skins/single/default.php:488
9243
  #: app/skins/single/m1.php:113 app/skins/single/m2.php:36
9244
  #: app/skins/single/modern.php:58
9245
  msgid "Phone"
9246
  msgstr "Telefon"
9247
 
9248
+ #: app/skins/single.php:1121 app/skins/single.php:1180
9249
  #: app/skins/single/default.php:203 app/skins/single/default.php:269
9250
  #: app/skins/single/default.php:436 app/skins/single/default.php:502
9251
  #: app/skins/single/m1.php:127 app/skins/single/m1.php:181
9254
  msgid "Website"
9255
  msgstr "Webová stránka"
9256
 
9257
+ #: app/skins/single.php:1256
9258
  msgid "Speakers:"
9259
  msgstr "Řečník:"
9260
 
9489
  #~ msgid "Status & Invoice"
9490
  #~ msgstr "%s Faktura"
9491
 
 
 
 
 
 
9492
  #, fuzzy
9493
  #~| msgid "Bookings"
9494
  #~ msgid "Edit Booking"
languages/modern-events-calendar-lite-de_DE.mo CHANGED
Binary file
languages/modern-events-calendar-lite-de_DE.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: ME Calender\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2020-07-21 17:36+0430\n"
6
- "PO-Revision-Date: 2020-07-21 17:36+0430\n"
7
  "Last-Translator: Jogon <koenig@kafinanz.de>\n"
8
  "Language-Team: German\n"
9
  "Language: de_DE\n"
@@ -18,9 +18,10 @@ msgstr ""
18
  "X-Poedit-SearchPath-0: .\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:37 app/features/ix/thirdparty.php:24
22
- #: app/features/mec.php:1140 app/features/mec.php:1170
23
- #: app/features/mec/dashboard.php:63 app/widgets/MEC.php:33
 
24
  msgid "Modern Events Calendar"
25
  msgstr "Moderner Event Kalender "
26
 
@@ -99,8 +100,8 @@ msgstr "Farbe der Veranstaltung"
99
  msgid "Settings"
100
  msgstr "Einstellungen"
101
 
102
- #: app/features/contextual.php:62 app/features/events.php:1563
103
- #: app/features/events.php:2378 app/features/mec/booking.php:524
104
  #: app/features/mec/support.php:29 app/libraries/main.php:564
105
  msgid "Booking Form"
106
  msgstr "Buchungsformular"
@@ -127,7 +128,7 @@ msgstr ""
127
  "<iframe width=\"600\" height=\"300\" src=\"https://www.youtube.com/embed/"
128
  "YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></iframe>"
129
 
130
- #: app/features/contextual.php:70 app/features/mec/booking.php:716
131
  #: app/features/mec/support-page.php:115 app/features/mec/support.php:36
132
  #: app/libraries/main.php:565
133
  msgid "Payment Gateways"
@@ -283,14 +284,14 @@ msgid "Exceptional Days"
283
  msgstr "Herausgenommene Tage "
284
 
285
  #: app/features/contextual.php:308 app/features/events.php:315
286
- #: app/features/mec/booking.php:96 app/features/mec/notifications.php:33
287
  #: app/features/mec/support-page.php:110 app/features/mec/support-page.php:114
288
  #: app/libraries/main.php:559 app/libraries/main.php:588
289
  #: app/libraries/main.php:672
290
  msgid "Booking"
291
  msgstr "Buchung / Reservierung"
292
 
293
- #: app/features/contextual.php:318 app/features/mec/booking.php:346
294
  #: app/libraries/main.php:561
295
  msgid "Coupons"
296
  msgstr "Gutscheine"
@@ -309,8 +310,8 @@ msgstr "Mailchimp Integration"
309
  msgid "MEC Activation"
310
  msgstr "MEC Aktivierung"
311
 
312
- #: app/features/dlfile.php:121 app/features/events.php:1568
313
- #: app/features/mec/booking.php:268 app/features/mec/settings.php:811
314
  #, fuzzy
315
  #| msgid "Download ICS file"
316
  msgid "Downloadable File"
@@ -371,7 +372,7 @@ msgstr "Veranstaltung hinzufügen"
371
  msgid "Add New Event"
372
  msgstr "Neue Veranstaltung hinzufügen"
373
 
374
- #: app/features/events.php:171 app/features/ix.php:3930
375
  #: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:68
376
  #: app/skins/map/tpl.php:88
377
  msgid "No events found!"
@@ -394,7 +395,7 @@ msgstr "Veranstaltung ansehen"
394
  msgid "No events found in Trash!"
395
  msgstr "Keine Veranstaltungen im Papierkorb gefunden!"
396
 
397
- #: app/features/events.php:192 app/features/events.php:3449
398
  #: app/features/mec/meta_boxes/display_options.php:1395
399
  #: app/features/mec/meta_boxes/search_form.php:31
400
  #: app/features/mec/meta_boxes/search_form.php:101
@@ -408,19 +409,19 @@ msgstr "Keine Veranstaltungen im Papierkorb gefunden!"
408
  #: app/features/mec/meta_boxes/search_form.php:654
409
  #: app/features/mec/meta_boxes/search_form.php:760
410
  #: app/features/mec/settings.php:885 app/features/mec/single.php:323
411
- #: app/features/search.php:68 app/libraries/main.php:5888
412
- #: app/libraries/main.php:5936 app/libraries/skins.php:939
413
- #: app/skins/single.php:854 app/skins/single/default.php:220
414
  #: app/skins/single/default.php:453 app/skins/single/m1.php:197
415
  #: app/skins/single/m2.php:120 app/skins/single/modern.php:140
416
  msgid "Category"
417
  msgstr "Kategorie"
418
 
419
- #: app/features/events.php:193 app/features/events.php:3404
420
  #: app/features/fes/form.php:822 app/features/mec.php:461
421
  #: app/features/mec/meta_boxes/filter.php:69
422
- #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5887
423
- #: app/libraries/main.php:5935
424
  msgid "Categories"
425
  msgstr "Kategorien"
426
 
@@ -506,14 +507,14 @@ msgstr "Datum und Uhrzeit"
506
  msgid "Event Repeating"
507
  msgstr "Wiederholende Veranstaltung"
508
 
509
- #: app/features/events.php:344 app/features/events.php:1126
510
  #, fuzzy
511
  #| msgid "Event Detail"
512
  msgid "Event Data"
513
  msgstr "Veranstaltungsdetails"
514
 
515
- #: app/features/events.php:346 app/features/events.php:1308
516
- #: app/features/mec/settings.php:769 app/skins/single.php:1247
517
  msgid "Hourly Schedule"
518
  msgstr "Stundenplan"
519
 
@@ -525,9 +526,9 @@ msgstr "Ort"
525
  msgid "Links"
526
  msgstr "Links"
527
 
528
- #: app/features/events.php:349 app/features/events.php:3451
529
- #: app/features/events.php:3642 app/features/events.php:3684
530
- #: app/features/ix.php:3513 app/features/ix.php:3554
531
  #: app/features/mec/meta_boxes/display_options.php:1398
532
  #: app/features/mec/meta_boxes/search_form.php:46
533
  #: app/features/mec/meta_boxes/search_form.php:116
@@ -545,17 +546,17 @@ msgstr "Links"
545
  #: app/features/organizers.php:260 app/features/organizers.php:262
546
  #: app/features/organizers.php:271 app/features/popup/event.php:163
547
  #: app/features/popup/event.php:172 app/features/search.php:80
548
- #: app/libraries/main.php:5894 app/libraries/main.php:5942
549
- #: app/libraries/skins.php:991 app/skins/single.php:1102
550
  #: app/skins/single/default.php:245 app/skins/single/default.php:478
551
  #: app/skins/single/m1.php:103 app/skins/single/m2.php:26
552
  #: app/skins/single/modern.php:48
553
  msgid "Organizer"
554
  msgstr "Veranstalter"
555
 
556
- #: app/features/events.php:350 app/features/events.php:1113
557
- #: app/features/fes/form.php:793 app/libraries/main.php:5921
558
- #: app/libraries/main.php:5968 app/skins/single.php:880
559
  #: app/skins/single/default.php:143 app/skins/single/default.php:377
560
  #: app/skins/single/m1.php:62 app/skins/single/modern.php:237
561
  msgid "Cost"
@@ -567,51 +568,51 @@ msgstr " Preis"
567
  msgid "SEO Schema / Event Status"
568
  msgstr "Am Event Start"
569
 
570
- #: app/features/events.php:487
571
  msgid "Note for reviewer"
572
  msgstr "Zusätzliche Anmerkungen zum Event "
573
 
574
- #: app/features/events.php:493
575
  msgid "Guest Data"
576
  msgstr "Gäste Daten"
577
 
578
- #: app/features/events.php:494 app/features/events.php:2364
579
- #: app/features/events.php:3981 app/features/fes.php:233
580
  #: app/features/fes/form.php:752 app/features/labels.php:178
581
  #: app/features/mec/booking.php:53 app/features/organizers.php:279
582
  #: app/features/popup/event.php:182 app/features/profile/profile.php:177
583
- #: app/libraries/notifications.php:1261 app/modules/booking/steps/form.php:48
584
  msgid "Name"
585
  msgstr "Name"
586
 
587
- #: app/features/events.php:495 app/features/events.php:2373
588
- #: app/features/events.php:2435 app/features/events.php:2524
589
- #: app/features/events.php:3984 app/features/fes.php:233
590
  #: app/features/fes/form.php:748 app/features/login/login.php:5
591
- #: app/features/mec/booking.php:65 app/features/mec/booking.php:562
592
- #: app/features/mec/booking.php:658 app/features/mec/single.php:183
593
  #: app/features/organizers.php:111 app/features/organizers.php:152
594
  #: app/features/profile/profile.php:180 app/features/speakers.php:127
595
  #: app/features/speakers.php:196 app/libraries/main.php:1719
596
- #: app/libraries/main.php:1788 app/libraries/main.php:3154
597
- #: app/libraries/notifications.php:1262 app/modules/booking/steps/form.php:57
598
- #: app/modules/booking/steps/form.php:157 app/skins/single.php:1119
599
- #: app/skins/single.php:1178 app/skins/single/default.php:262
600
  #: app/skins/single/default.php:495 app/skins/single/m1.php:120
601
  #: app/skins/single/m2.php:43 app/skins/single/modern.php:65
602
  msgid "Email"
603
  msgstr "E-Mail"
604
 
605
- #: app/features/events.php:503 app/features/fes/form.php:265
606
  msgid "Date and Time"
607
  msgstr "Datum und Uhrzeit"
608
 
609
- #: app/features/events.php:506 app/features/events.php:510
610
- #: app/features/events.php:3452 app/features/events.php:3642
611
- #: app/features/events.php:3684 app/features/fes/form.php:269
612
- #: app/features/fes/form.php:273 app/features/ix.php:3513
613
- #: app/features/ix.php:3554 app/features/ix/import_g_calendar.php:38
614
- #: app/features/mec.php:1323 app/features/mec/meta_boxes/display_options.php:51
615
  #: app/features/mec/meta_boxes/display_options.php:280
616
  #: app/features/mec/meta_boxes/display_options.php:520
617
  #: app/features/mec/meta_boxes/display_options.php:627
@@ -630,38 +631,38 @@ msgstr "Datum und Uhrzeit"
630
  msgid "Start Date"
631
  msgstr "Start Datum"
632
 
633
- #: app/features/events.php:525 app/features/events.php:529
634
- #: app/features/events.php:3453 app/features/events.php:3642
635
- #: app/features/events.php:3684 app/features/fes/form.php:288
636
- #: app/features/fes/form.php:292 app/features/ix.php:3513
637
- #: app/features/ix.php:3554 app/features/ix/import_g_calendar.php:44
638
- #: app/features/mec.php:1324 app/features/popup/event.php:92
639
  msgid "End Date"
640
  msgstr "Ende Datum"
641
 
642
- #: app/features/events.php:552 app/features/fes/form.php:306
643
  #: app/features/popup/event.php:109
644
  #, fuzzy
645
  #| msgid "All Day Event"
646
  msgid "All-day Event"
647
  msgstr "Ganztägige Veranstaltung"
648
 
649
- #: app/features/events.php:562 app/features/fes/form.php:309
650
  msgid "Hide Event Time"
651
  msgstr "Event / Veranstaltungszeit verbergen"
652
 
653
- #: app/features/events.php:572 app/features/fes/form.php:312
654
  msgid "Hide Event End Time"
655
  msgstr "Ende-Zeit der Veranstaltung verbergen"
656
 
657
- #: app/features/events.php:577 app/features/events.php:581
658
  #: app/features/fes/form.php:316
659
  #, fuzzy
660
  #| msgid "Note to reviewer"
661
  msgid "Notes on the time"
662
  msgstr "Zusätzliche Anmerkungen zum Event "
663
 
664
- #: app/features/events.php:582 app/features/fes/form.php:317
665
  #, fuzzy
666
  #| msgid ""
667
  #| "It shows next to event time on calendar. You can insert Timezone etc. in "
@@ -673,22 +674,22 @@ msgstr ""
673
  "Neben der Zeit im Kalender wird diese Angabe angezeigt. In diesem Feld "
674
  "können Sie z.B. eine Zeitzone wie z.B. \"MEZ\" usw. einfügen. "
675
 
676
- #: app/features/events.php:584 app/features/events.php:723
677
- #: app/features/events.php:1076 app/features/events.php:1225
678
- #: app/features/events.php:1533 app/features/events.php:1626
679
- #: app/features/events.php:1770 app/features/events.php:1785
680
- #: app/features/events.php:1951 app/features/events.php:1964
681
- #: app/features/events.php:2115 app/features/events.php:2151
682
- #: app/features/events.php:2249 app/features/events.php:2264
683
- #: app/features/events.php:2294 app/features/events.php:2307
684
  #: app/features/fes/form.php:396 app/features/fes/form.php:704
685
  #: app/features/locations.php:334 app/features/mec/booking.php:116
686
- #: app/features/mec/booking.php:182 app/features/mec/booking.php:195
687
- #: app/features/mec/booking.php:213 app/features/mec/booking.php:229
688
- #: app/features/mec/booking.php:269 app/features/mec/booking.php:391
689
- #: app/features/mec/booking.php:420 app/features/mec/booking.php:468
690
- #: app/features/mec/booking.php:478 app/features/mec/booking.php:500
691
- #: app/features/mec/booking.php:510 app/features/mec/dashboard.php:71
692
  #: app/features/mec/meta_boxes/display_options.php:82
693
  #: app/features/mec/meta_boxes/display_options.php:95
694
  #: app/features/mec/meta_boxes/display_options.php:108
@@ -724,14 +725,14 @@ msgstr ""
724
  #: app/features/mec/modules.php:52 app/features/mec/modules.php:85
725
  #: app/features/mec/modules.php:102 app/features/mec/modules.php:137
726
  #: app/features/mec/modules.php:153 app/features/mec/modules.php:323
727
- #: app/features/mec/notifications.php:87 app/features/mec/notifications.php:193
728
- #: app/features/mec/notifications.php:303
729
- #: app/features/mec/notifications.php:418
730
- #: app/features/mec/notifications.php:534
731
- #: app/features/mec/notifications.php:645
732
- #: app/features/mec/notifications.php:656
733
- #: app/features/mec/notifications.php:771
734
- #: app/features/mec/notifications.php:855 app/features/mec/settings.php:67
735
  #: app/features/mec/settings.php:86 app/features/mec/settings.php:133
736
  #: app/features/mec/settings.php:168 app/features/mec/settings.php:189
737
  #: app/features/mec/settings.php:234 app/features/mec/settings.php:269
@@ -748,82 +749,82 @@ msgstr ""
748
  #: app/features/mec/styling.php:119 app/features/mec/styling.php:218
749
  #: app/features/mec/styling.php:235 app/features/mec/styling.php:248
750
  #: app/features/organizers.php:272 app/features/popup/event.php:126
751
- #: app/features/popup/event.php:173 app/skins/single.php:965
752
  #: app/skins/single/default.php:160 app/skins/single/default.php:392
753
  #: app/skins/single/m1.php:219 app/skins/single/m2.php:143
754
  #: app/skins/single/modern.php:163
755
  msgid "Read More"
756
  msgstr "Mehr lesen"
757
 
758
- #: app/features/events.php:592
759
  msgid "Repeating"
760
  msgstr "Wiederholen"
761
 
762
- #: app/features/events.php:601
763
  msgid "Event Repeating (Recurring events)"
764
  msgstr "Wiederholende Veranstaltung"
765
 
766
- #: app/features/events.php:605 app/features/fes/form.php:327
767
  msgid "Repeats"
768
  msgstr "Wiederholend"
769
 
770
- #: app/features/events.php:613 app/features/fes/form.php:329
771
  #: app/features/mec.php:1326 app/skins/default_full_calendar/tpl.php:74
772
  #: app/skins/full_calendar/tpl.php:121
773
  msgid "Daily"
774
  msgstr "Täglich"
775
 
776
- #: app/features/events.php:620 app/features/fes/form.php:330
777
  msgid "Every Weekday"
778
  msgstr "An jedem Wochentag"
779
 
780
- #: app/features/events.php:627 app/features/fes/form.php:331
781
  msgid "Every Weekend"
782
  msgstr "An jedem Wochenende"
783
 
784
- #: app/features/events.php:634 app/features/fes/form.php:332
785
  msgid "Certain Weekdays"
786
  msgstr "Bestimmte Wochentage"
787
 
788
- #: app/features/events.php:641 app/features/fes/form.php:333
789
  #: app/skins/default_full_calendar/tpl.php:73
790
  #: app/skins/full_calendar/tpl.php:120
791
  msgid "Weekly"
792
  msgstr "Wöchentlich"
793
 
794
- #: app/features/events.php:648 app/features/fes/form.php:334
795
  #: app/features/mec.php:1327 app/skins/default_full_calendar/tpl.php:72
796
  #: app/skins/full_calendar/tpl.php:119
797
  msgid "Monthly"
798
  msgstr "Monatlich"
799
 
800
- #: app/features/events.php:655 app/features/fes/form.php:335
801
  #: app/features/mec.php:1328 app/skins/default_full_calendar/tpl.php:71
802
  #: app/skins/full_calendar/tpl.php:118
803
  msgid "Yearly"
804
  msgstr "Jährlich"
805
 
806
- #: app/features/events.php:662 app/features/fes/form.php:336
807
  msgid "Custom Days"
808
  msgstr "Benutzerdefinierte Tage"
809
 
810
- #: app/features/events.php:669 app/features/fes/form.php:337
811
  msgid "Advanced"
812
  msgstr "Fortgeschritten"
813
 
814
- #: app/features/events.php:674 app/features/fes/form.php:341
815
  msgid "Repeat Interval"
816
  msgstr "Wiederholungsintervall"
817
 
818
- #: app/features/events.php:676 app/features/fes/form.php:342
819
  msgid "Repeat interval"
820
  msgstr "Wiederholungsintervall"
821
 
822
- #: app/features/events.php:680 app/features/fes/form.php:345
823
  msgid "Week Days"
824
  msgstr "Wochentage"
825
 
826
- #: app/features/events.php:697
827
  #, fuzzy
828
  #| msgid "Pro version of Modern Events Calendar"
829
  msgid ""
@@ -831,81 +832,82 @@ msgid ""
831
  "Calendar."
832
  msgstr "Pro Version vom Modernen Event Calendar"
833
 
834
- #: app/features/events.php:703 app/features/events.php:1853
835
- #: app/features/events.php:1881 app/features/events.php:2019
836
  #: app/features/fes/form.php:359 app/features/ix/import_f_calendar.php:42
837
  #: app/features/ix/import_g_calendar.php:51
838
  #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
839
  msgid "Start"
840
  msgstr "Start"
841
 
842
- #: app/features/events.php:716 app/features/events.php:1219
843
- #: app/features/events.php:1339 app/features/events.php:1444
844
- #: app/features/events.php:1837 app/features/events.php:2008
845
- #: app/features/events.php:2088 app/features/events.php:2221
846
  #: app/features/fes/form.php:389 app/features/fes/form.php:920
847
  msgid "Add"
848
  msgstr "Hinzufügen"
849
 
850
- #: app/features/events.php:719 app/features/fes/form.php:392
851
  msgid "Custom Days Repeating"
852
  msgstr "Benutzerdefinierte Wiederholende Tage"
853
 
854
- #: app/features/events.php:722 app/features/fes/form.php:395
855
  msgid ""
856
  "Add certain days to event occurrence dates. If you have a single day event, "
857
  "start and end dates should be the same, If you have a multiple day event, "
858
  "the start and end dates must be commensurate with the initial date."
859
  msgstr ""
860
 
861
- #: app/features/events.php:733 app/features/events.php:1857
862
- #: app/features/events.php:1885 app/features/events.php:2023
863
  #: app/features/fes/form.php:374
864
  msgid "End"
865
  msgstr "Ende"
866
 
867
- #: app/features/events.php:810 app/features/fes/form.php:468
868
  msgid "First"
869
  msgstr "Erster"
870
 
871
- #: app/features/events.php:852 app/features/fes/form.php:510
872
  msgid "Second"
873
  msgstr "Zweiter"
874
 
875
- #: app/features/events.php:894 app/features/fes/form.php:552
876
  msgid "Third"
877
  msgstr "Dritter"
878
 
879
- #: app/features/events.php:936 app/features/fes/form.php:594
880
  msgid "Fourth"
881
  msgstr "Vierte"
882
 
883
- #: app/features/events.php:978 app/features/fes/form.php:636
884
  msgid "Last"
885
  msgstr "Letzter"
886
 
887
- #: app/features/events.php:1025 app/features/fes/form.php:682
888
  msgid "Ends Repeat"
889
  msgstr "Wiederholung endet"
890
 
891
- #: app/features/events.php:1037 app/features/fes/form.php:686
892
  msgid "Never"
893
  msgstr "Niemals"
894
 
895
- #: app/features/events.php:1049 app/features/fes/form.php:691
896
  msgid "On"
897
  msgstr "Am"
898
 
899
- #: app/features/events.php:1065 app/features/fes/form.php:698
 
900
  msgid "After"
901
  msgstr "Nach"
902
 
903
- #: app/features/events.php:1069 app/features/events.php:1073
904
  #: app/features/fes/form.php:700 app/features/fes/form.php:703
905
  msgid "Occurrences times"
906
  msgstr " mal vorkommen"
907
 
908
- #: app/features/events.php:1074
909
  #, fuzzy
910
  #| msgid ""
911
  #| "The event will finish after certain repeats. For example if you set it to "
@@ -917,148 +919,148 @@ msgstr ""
917
  "Das Event ist nach einer bestimmten Anzahl von Wiederholungen zu Ende. Zum "
918
  "Beispiel: Bei Eingabe von 10 wird das Event nach 10 Wiederholungen beendet"
919
 
920
- #: app/features/events.php:1089 app/features/fes/form.php:717
921
  #, fuzzy
922
  #| msgid "Next Occurrence of Other Events"
923
  msgid "Show only one occurrence of this event"
924
  msgstr "Nächstes Auftreten von anderen Events."
925
 
926
- #: app/features/events.php:1109 app/features/events.php:3642
927
- #: app/features/events.php:3684 app/features/fes/form.php:790
928
- #: app/features/ix.php:3513 app/features/ix.php:3554
929
- #: app/features/mec/settings.php:715 app/libraries/main.php:5920
930
- #: app/libraries/main.php:5967 app/widgets/single.php:103
931
  msgid "Event Cost"
932
  msgstr ""
933
  "Bruttopreis des Events in Euro, 0 für kostenlos oder z.B. 39, ohne €-Zeichen"
934
 
935
- #: app/features/events.php:1206
936
  #, fuzzy
937
  #| msgid "Exceptional Days"
938
  msgid "Exceptional Days (Exclude Dates)"
939
  msgstr "Herausgenommene Tage "
940
 
941
- #: app/features/events.php:1212 app/features/events.php:1222
942
  msgid "Exclude certain days"
943
  msgstr "Ausschluss bestimmter Tage"
944
 
945
- #: app/features/events.php:1217 app/features/events.php:2436
946
- #: app/features/events.php:2525 app/features/fes.php:233
947
- #: app/features/mec/booking.php:563 app/features/mec/booking.php:659
948
  #: app/features/mec/single.php:185 app/features/profile/profile.php:58
949
- #: app/libraries/main.php:3241 app/modules/booking/steps/tickets.php:94
950
- #: app/modules/next-event/details.php:134 app/skins/single.php:938
951
  #: app/skins/single/default.php:100 app/skins/single/default.php:334
952
  #: app/skins/single/m1.php:22 app/skins/single/modern.php:197
953
  msgid "Date"
954
  msgstr "Datum"
955
 
956
- #: app/features/events.php:1223
957
  msgid ""
958
  "Exclude certain days from event occurrence dates. Please note that you can "
959
  "exclude only single day occurrences and you cannot exclude one day from "
960
  "multiple day occurrences."
961
  msgstr ""
962
 
963
- #: app/features/events.php:1282 app/libraries/render.php:544
964
  msgid "Day 1"
965
  msgstr "Tag 1"
966
 
967
- #: app/features/events.php:1312
968
  msgid "Add Day"
969
  msgstr "Tag hinzufügen"
970
 
971
- #: app/features/events.php:1313
972
  msgid ""
973
  "Add new days for schedule. For example if your event is multiple days, you "
974
  "can add a different schedule for each day!"
975
  msgstr ""
976
 
977
- #: app/features/events.php:1320
978
  #, php-format
979
  msgid "Day %s"
980
  msgstr ""
981
 
982
- #: app/features/events.php:1324 app/features/events.php:1363
983
- #: app/features/events.php:1398 app/features/events.php:1430
984
- #: app/features/events.php:1459 app/features/events.php:2236
985
- #: app/features/events.php:2283 app/features/events.php:3448
986
- #: app/features/events.php:3642 app/features/events.php:3684
987
- #: app/features/fes/form.php:248 app/features/ix.php:3513
988
- #: app/features/ix.php:3554 app/features/mec/booking.php:460
989
- #: app/features/mec/booking.php:492 app/features/mec/styling.php:130
990
  msgid "Title"
991
  msgstr "Titel"
992
 
993
- #: app/features/events.php:1333 app/features/events.php:1370
994
- #: app/features/events.php:1403 app/features/events.php:1438
995
- #: app/features/events.php:1464 app/features/events.php:1867
996
- #: app/features/events.php:1893 app/features/events.php:2029
997
- #: app/features/events.php:2128 app/features/events.php:2164
998
- #: app/features/events.php:2271 app/features/events.php:2313
999
- #: app/features/mec/booking.php:403 app/features/mec/booking.php:432
1000
- #: app/features/mec/booking.php:483 app/features/mec/booking.php:515
1001
- #: app/libraries/main.php:3076 app/libraries/main.php:3105
1002
- #: app/libraries/main.php:3134 app/libraries/main.php:3163
1003
- #: app/libraries/main.php:3192 app/libraries/main.php:3221
1004
- #: app/libraries/main.php:3250 app/libraries/main.php:3279
1005
- #: app/libraries/main.php:3308 app/libraries/main.php:3329
1006
- #: app/libraries/main.php:3360 app/libraries/main.php:3406
1007
- #: app/libraries/main.php:3452 app/libraries/main.php:3501
1008
- #: app/libraries/main.php:3541
1009
  msgid "Remove"
1010
  msgstr "Entfernen"
1011
 
1012
- #: app/features/events.php:1340 app/features/events.php:1445
1013
  msgid "Add new hourly schedule row"
1014
  msgstr "Neue Stundenplan-Zeile hinzufügen"
1015
 
1016
- #: app/features/events.php:1355 app/features/events.php:1392
1017
- #: app/features/events.php:1454
1018
  msgid "From e.g. 8:15"
1019
  msgstr "Von z.B. 08:15 Uhr"
1020
 
1021
- #: app/features/events.php:1359 app/features/events.php:1395
1022
- #: app/features/events.php:1456
1023
  msgid "To e.g. 8:45"
1024
  msgstr "bis zum Beispiel 08:45 Uhr"
1025
 
1026
- #: app/features/events.php:1367 app/features/events.php:1401
1027
- #: app/features/events.php:1462 app/features/events.php:1758
1028
- #: app/features/events.php:1940
1029
  msgid "Description"
1030
  msgstr "Beschreibung"
1031
 
1032
- #: app/features/events.php:1373 app/features/events.php:1406
1033
- #: app/features/events.php:1467 app/features/fes/form.php:916
1034
  #: app/features/mec.php:469 app/features/mec/modules.php:51
1035
  #: app/features/mec/settings.php:763 app/features/speakers.php:62
1036
- #: app/libraries/main.php:569 app/libraries/main.php:5895
1037
- #: app/libraries/main.php:5943 app/modules/speakers/details.php:18
1038
  msgid "Speakers"
1039
  msgstr "Sprecher"
1040
 
1041
- #: app/features/events.php:1426 app/features/events.php:1434
1042
  msgid "New Day"
1043
  msgstr "Neuer Tag"
1044
 
1045
- #: app/features/events.php:1498 app/features/fes/form.php:767
1046
  #: app/features/mec/settings.php:709
1047
  msgid "Event Links"
1048
  msgstr "Veranstaltungslinks"
1049
 
1050
- #: app/features/events.php:1501 app/features/events.php:1507
1051
- #: app/features/fes/form.php:769 app/libraries/main.php:5918
1052
- #: app/libraries/main.php:5965
1053
  msgid "Event Link"
1054
  msgstr "Veranstaltungslink"
1055
 
1056
- #: app/features/events.php:1504 app/features/events.php:1520
1057
  #: app/features/fes/form.php:770 app/features/fes/form.php:775
1058
  msgid "eg. http://yoursite.com/your-event"
1059
  msgstr "z.B. http://yoursite.com/your-event"
1060
 
1061
- #: app/features/events.php:1508
1062
  #, fuzzy
1063
  #| msgid ""
1064
  #| "If you fill it, it will be replaced instead of default event page link. "
@@ -1072,32 +1074,32 @@ msgstr ""
1072
  "dieser durch einen neuen link ersetzt werden. Vollständigen Link einfügen, "
1073
  "einschließlich http(s)://"
1074
 
1075
- #: app/features/events.php:1510
1076
  msgid "URL Shortener"
1077
  msgstr ""
1078
 
1079
- #: app/features/events.php:1517 app/features/events.php:1530
1080
- #: app/features/fes/form.php:774 app/libraries/main.php:5919
1081
- #: app/libraries/main.php:5966 app/skins/single.php:964
1082
  #: app/skins/single/default.php:159 app/skins/single/default.php:391
1083
  #: app/skins/single/m1.php:218 app/skins/single/m2.php:142
1084
  #: app/skins/single/modern.php:162 app/widgets/single.php:107
1085
  msgid "More Info"
1086
  msgstr "Mehr Informationen"
1087
 
1088
- #: app/features/events.php:1523 app/features/fes/form.php:776
1089
  msgid "More Information"
1090
  msgstr "z.B. Noch mehr Informationen "
1091
 
1092
- #: app/features/events.php:1525 app/features/fes/form.php:778
1093
  msgid "Current Window"
1094
  msgstr "Aktuelles Fenster"
1095
 
1096
- #: app/features/events.php:1526 app/features/fes/form.php:779
1097
  msgid "New Window"
1098
  msgstr "Neues Fenster"
1099
 
1100
- #: app/features/events.php:1531 app/features/fes/form.php:781
1101
  msgid ""
1102
  "If you fill it, it will be shown in event details page as an optional link. "
1103
  "Insert full link including http(s)://"
@@ -1108,154 +1110,154 @@ msgstr ""
1108
  "Text angezeigt werden soll: zum Beispiel: Noch mehr Informationen oder Hier "
1109
  "zur Anmeldung (z.B. bei Webinaren sinnvoll) "
1110
 
1111
- #: app/features/events.php:1554 app/features/mec/settings.php:777
1112
  msgid "Booking Options"
1113
  msgstr "Buchungsoptionen"
1114
 
1115
- #: app/features/events.php:1555
1116
  #, fuzzy
1117
  #| msgid "Total booking limits"
1118
  msgid "Total User Booking Limits"
1119
  msgstr "Gesamt Verfügbare Plätze"
1120
 
1121
- #: app/features/events.php:1556 app/features/events.php:1701
1122
- #: app/libraries/book.php:60 app/libraries/main.php:5923
1123
  #: app/modules/booking/steps/tickets.php:119
1124
  #: app/modules/booking/steps/tickets.php:125
1125
  msgid "Tickets"
1126
  msgstr "Tickets"
1127
 
1128
- #: app/features/events.php:1558 app/features/events.php:2065
1129
  msgid "Fees"
1130
  msgstr "Gebühren"
1131
 
1132
- #: app/features/events.php:1561 app/features/events.php:2197
1133
  #: app/features/mec/settings.php:789
1134
  msgid "Ticket Variations / Options"
1135
  msgstr ""
1136
 
1137
- #: app/features/events.php:1565 app/features/mec/booking.php:735
1138
  #: app/features/mec/support-page.php:118
1139
  #, fuzzy
1140
  #| msgid "Organizer Tel"
1141
  msgid "Organizer Payment"
1142
  msgstr "Organisator Telefon"
1143
 
1144
- #: app/features/events.php:1608 app/features/events.php:1622
1145
  #, fuzzy
1146
  #| msgid "Total booking limits"
1147
  msgid "Total booking limit"
1148
  msgstr "Gesamt Verfügbare Plätze"
1149
 
1150
- #: app/features/events.php:1619 app/features/events.php:1806
1151
- #: app/features/events.php:1978 app/modules/booking/default.php:98
1152
  #: app/modules/booking/steps/tickets.php:119
1153
  #: app/modules/booking/steps/tickets.php:125
1154
  #: app/skins/available_spot/tpl.php:142
1155
  msgid "Unlimited"
1156
  msgstr "Unlimitiert"
1157
 
1158
- #: app/features/events.php:1625
1159
  msgid ""
1160
  "If you want to set a limit to all tickets, uncheck this checkbox and put a "
1161
  "limitation number."
1162
  msgstr ""
1163
 
1164
- #: app/features/events.php:1627
1165
  #, fuzzy
1166
  #| msgid "Choose your single event style."
1167
  msgid "Read About A Booking System"
1168
  msgstr "Wählen Sie Ihren Single Event Stil"
1169
 
1170
- #: app/features/events.php:1635
1171
  msgid "100"
1172
  msgstr "z.B. 100"
1173
 
1174
- #: app/features/events.php:1637 app/features/events.php:1651
1175
  #, fuzzy
1176
  #| msgid "Next Occurrence"
1177
  msgid "Book All Occurrences"
1178
  msgstr "Nächstes Event"
1179
 
1180
- #: app/features/events.php:1648
1181
  msgid "Sell all occurrences by one booking"
1182
  msgstr ""
1183
 
1184
- #: app/features/events.php:1654
1185
  msgid ""
1186
  "If you have a series of events and you want to sell all of them at once, "
1187
  "this option is for you! For example a weekly yoga course or something "
1188
  "similar."
1189
  msgstr ""
1190
 
1191
- #: app/features/events.php:1664
1192
  #, fuzzy
1193
  #| msgid "Total booking limits"
1194
  msgid "Total user booking limits"
1195
  msgstr "Gesamt Verfügbare Plätze"
1196
 
1197
- #: app/features/events.php:1675 app/features/events.php:2077
1198
- #: app/features/events.php:2209 app/features/events.php:2390
1199
  msgid "Inherit from global options"
1200
  msgstr "Aus den globalen Einstellungen übernehmen"
1201
 
1202
- #: app/features/events.php:1678
1203
  msgid "12"
1204
  msgstr "12"
1205
 
1206
- #: app/features/events.php:1704
1207
  msgid ""
1208
  "You're translating an event so MEC will use the original event for tickets "
1209
  "and booking. You can only translate the ticket name and description. Please "
1210
  "define exact tickets that you defined in the original event here."
1211
  msgstr ""
1212
 
1213
- #: app/features/events.php:1709
1214
  msgid "Add Ticket"
1215
  msgstr "Ticket hinzufügen"
1216
 
1217
- #: app/features/events.php:1721 app/features/events.php:1905
1218
  #, fuzzy
1219
  #| msgid "Ticket"
1220
  msgid "Ticket ID"
1221
  msgstr "Ticket"
1222
 
1223
- #: app/features/events.php:1721 app/features/events.php:1905
1224
- #: app/features/events.php:3642 app/features/events.php:3684
1225
- #: app/features/fes.php:233 app/features/ix.php:3513 app/features/ix.php:3554
1226
  #: app/features/labels.php:177 app/features/locations.php:260
1227
  #: app/features/organizers.php:203 app/features/speakers.php:268
1228
  msgid "ID"
1229
  msgstr "ID"
1230
 
1231
- #: app/features/events.php:1724 app/features/events.php:1908
1232
  msgid "Ticket Name"
1233
  msgstr "Ticket Name"
1234
 
1235
- #: app/features/events.php:1729 app/features/events.php:1912
1236
- #: app/features/events.php:3642 app/features/events.php:3684
1237
- #: app/features/ix.php:3513 app/features/ix.php:3554
1238
  msgid "Start Time"
1239
  msgstr "Uhrzeit des Beginns"
1240
 
1241
- #: app/features/events.php:1742 app/features/events.php:1925
1242
- #: app/features/events.php:3642 app/features/events.php:3684
1243
- #: app/features/ix.php:3513 app/features/ix.php:3554
1244
  msgid "End Time"
1245
  msgstr "Uhrzeit Ende"
1246
 
1247
- #: app/features/events.php:1763 app/features/events.php:1767
1248
- #: app/features/events.php:1861 app/features/events.php:1888
1249
- #: app/features/events.php:1945 app/features/events.php:1948
1250
- #: app/features/events.php:2025 app/features/events.php:2242
1251
- #: app/features/events.php:2246 app/features/events.php:2288
1252
- #: app/features/events.php:2291 app/features/mec/booking.php:464
1253
- #: app/features/mec/booking.php:467 app/features/mec/booking.php:496
1254
- #: app/features/mec/booking.php:499
1255
  msgid "Price"
1256
  msgstr "Preis"
1257
 
1258
- #: app/features/events.php:1768 app/features/events.php:1949
1259
  #, fuzzy
1260
  #| msgid "Insert 0 for free ticket. Only numbers please."
1261
  msgid ""
@@ -1263,54 +1265,54 @@ msgid ""
1263
  "any symbols or characters."
1264
  msgstr "Bitte 0 für kostenloses Ticket eingeben. Bitte nur Zahlen eintragen"
1265
 
1266
- #: app/features/events.php:1777 app/features/events.php:1782
1267
- #: app/features/events.php:1958 app/features/events.php:1961
1268
  msgid "Price Label"
1269
  msgstr "Preisschild"
1270
 
1271
- #: app/features/events.php:1783 app/features/events.php:1962
1272
  msgid "For showing on website. e.g. $15"
1273
  msgstr "Um das auf der Webseite anzuzeigen zum Beispiel 15 €"
1274
 
1275
- #: app/features/events.php:1793 app/features/events.php:1972
1276
  msgid "Available Tickets"
1277
  msgstr "Verfügbare Tickets: %s "
1278
 
1279
- #: app/features/events.php:1810 app/features/events.php:1982
1280
  msgid "Minimum Ticket e.g. 3"
1281
  msgstr "Ticket minimum z.B. 3"
1282
 
1283
- #: app/features/events.php:1813 app/features/events.php:1985
1284
  msgid "MinimumTicket"
1285
  msgstr "Ticket minimum"
1286
 
1287
- #: app/features/events.php:1815 app/features/events.php:1987
1288
  msgid "Set a number for the minimum ticket reservation possible"
1289
  msgstr ""
1290
 
1291
- #: app/features/events.php:1823 app/features/events.php:1995
1292
  msgid "e.g. 0"
1293
  msgstr "z.B. 0"
1294
 
1295
- #: app/features/events.php:1825 app/features/events.php:1997
1296
  msgid "Day"
1297
  msgstr "Tag"
1298
 
1299
- #: app/features/events.php:1826 app/features/events.php:1998
1300
  msgid "Hour"
1301
  msgstr "Stunde"
1302
 
1303
- #: app/features/events.php:1828 app/features/events.php:2000
1304
  #, php-format
1305
  msgid "Stop selling ticket %s before event start."
1306
  msgstr ""
1307
 
1308
- #: app/features/events.php:1835 app/features/events.php:2006
1309
  msgid "Price per Date"
1310
  msgstr "Preis pro Datum"
1311
 
1312
- #: app/features/events.php:1865 app/features/events.php:1891
1313
- #: app/features/events.php:2027 app/features/labels.php:60
1314
  #: app/features/mec/meta_boxes/display_options.php:1396
1315
  #: app/features/mec/meta_boxes/search_form.php:67
1316
  #: app/features/mec/meta_boxes/search_form.php:137
@@ -1324,24 +1326,24 @@ msgstr "Preis pro Datum"
1324
  #: app/features/mec/meta_boxes/search_form.php:690
1325
  #: app/features/mec/meta_boxes/search_form.php:796
1326
  #: app/features/mec/settings.php:917 app/features/mec/single.php:341
1327
- #: app/features/search.php:98 app/libraries/skins.php:1069
1328
  msgid "Label"
1329
  msgstr "Label"
1330
 
1331
- #: app/features/events.php:2102 app/features/events.php:2140
1332
- #: app/features/mec/booking.php:383 app/features/mec/booking.php:412
1333
  msgid "Fee Title"
1334
  msgstr "Gebühren Name"
1335
 
1336
- #: app/features/events.php:2108 app/features/events.php:2112
1337
- #: app/features/events.php:2145 app/features/events.php:2148
1338
- #: app/features/mec/booking.php:387 app/features/mec/booking.php:390
1339
- #: app/features/mec/booking.php:416 app/features/mec/booking.php:419
1340
  msgid "Amount"
1341
  msgstr "Betrag"
1342
 
1343
- #: app/features/events.php:2113 app/features/events.php:2149
1344
- #: app/features/mec/booking.php:391 app/features/mec/booking.php:420
1345
  msgid ""
1346
  "Fee amount, considered as fixed amount if you set the type to amount "
1347
  "otherwise considered as percentage"
@@ -1349,96 +1351,96 @@ msgstr ""
1349
  "Gebührenbetrag, gilt als fester Betrag, wenn Sie die Art auf Betrag setzen, "
1350
  "sonst als Prozentsatz"
1351
 
1352
- #: app/features/events.php:2122 app/features/events.php:2158
1353
- #: app/features/mec/booking.php:398 app/features/mec/booking.php:427
1354
  msgid "Percent"
1355
  msgstr "Prozent"
1356
 
1357
- #: app/features/events.php:2123 app/features/events.php:2159
1358
- #: app/features/mec/booking.php:399 app/features/mec/booking.php:428
1359
  msgid "Amount (Per Ticket)"
1360
  msgstr "Betrag (pro Ticket)"
1361
 
1362
- #: app/features/events.php:2124 app/features/events.php:2160
1363
- #: app/features/mec/booking.php:400 app/features/mec/booking.php:429
1364
  msgid "Amount (Per Booking)"
1365
  msgstr "Betrag (pro Buchung)"
1366
 
1367
- #: app/features/events.php:2247 app/features/events.php:2292
1368
- #: app/features/mec/booking.php:468 app/features/mec/booking.php:500
1369
  msgid "Option Price"
1370
  msgstr "Preis Optionen"
1371
 
1372
- #: app/features/events.php:2257 app/features/events.php:2261
1373
- #: app/features/events.php:2301 app/features/events.php:2304
1374
- #: app/features/mec/booking.php:474 app/features/mec/booking.php:477
1375
- #: app/features/mec/booking.php:506 app/features/mec/booking.php:509
1376
  msgid "Maximum Per Ticket"
1377
  msgstr "Maximum pro Ticket"
1378
 
1379
- #: app/features/events.php:2262 app/features/events.php:2305
1380
- #: app/features/mec/booking.php:478 app/features/mec/booking.php:510
1381
  #, fuzzy
1382
  #| msgid "Maximum Per Ticket. Leave it blank for unlimited."
1383
  msgid "Maximum Per Ticket. Leave blank for unlimited."
1384
  msgstr "Maximum pro Ticket. Leerlassen für unendlich."
1385
 
1386
- #: app/features/events.php:2402 app/features/mec/booking.php:526
1387
  #, fuzzy
1388
  #| msgid "Attendees List"
1389
  msgid "Per Attendee Fields"
1390
  msgstr "Teilnehmer Liste"
1391
 
1392
- #: app/features/events.php:2432 app/features/mec/booking.php:559
1393
- #: app/libraries/main.php:3096
1394
  msgid "MEC Name"
1395
  msgstr "MEC Name"
1396
 
1397
- #: app/features/events.php:2433 app/features/mec/booking.php:560
1398
- #: app/libraries/main.php:3125
1399
  msgid "MEC Email"
1400
  msgstr "MEC Email"
1401
 
1402
- #: app/features/events.php:2434 app/features/events.php:2523
1403
- #: app/features/mec/booking.php:561 app/features/mec/booking.php:657
1404
- #: app/features/mec/single.php:182 app/libraries/main.php:3067
1405
  msgid "Text"
1406
  msgstr "Text"
1407
 
1408
- #: app/features/events.php:2437 app/features/events.php:2526
1409
- #: app/features/mec/booking.php:564 app/features/mec/booking.php:660
1410
  #: app/features/mec/single.php:186 app/features/organizers.php:103
1411
  #: app/features/organizers.php:148 app/features/speakers.php:119
1412
  #: app/features/speakers.php:192 app/features/speakers.php:271
1413
- #: app/libraries/main.php:3270
1414
  msgid "Tel"
1415
  msgstr "Tel"
1416
 
1417
- #: app/features/events.php:2438 app/features/mec/booking.php:565
1418
- #: app/libraries/main.php:3212
1419
  msgid "File"
1420
  msgstr "Datei"
1421
 
1422
- #: app/features/events.php:2439 app/features/events.php:2527
1423
- #: app/features/mec/booking.php:566 app/features/mec/booking.php:661
1424
- #: app/features/mec/single.php:187 app/libraries/main.php:3299
1425
  msgid "Textarea"
1426
  msgstr "Textbereich"
1427
 
1428
- #: app/features/events.php:2440 app/features/events.php:2528
1429
- #: app/features/mec/booking.php:567 app/features/mec/booking.php:662
1430
- #: app/features/mec/single.php:189 app/libraries/main.php:3351
1431
  msgid "Checkboxes"
1432
  msgstr "Checkboxes"
1433
 
1434
- #: app/features/events.php:2441 app/features/events.php:2529
1435
- #: app/features/mec/booking.php:568 app/features/mec/booking.php:663
1436
- #: app/features/mec/single.php:190 app/libraries/main.php:3397
1437
  msgid "Radio Buttons"
1438
  msgstr "Radio Buttons"
1439
 
1440
- #: app/features/events.php:2442 app/features/events.php:2530
1441
- #: app/features/mec/booking.php:569 app/features/mec/booking.php:664
1442
  #: app/features/mec/meta_boxes/search_form.php:34
1443
  #: app/features/mec/meta_boxes/search_form.php:41
1444
  #: app/features/mec/meta_boxes/search_form.php:49
@@ -1515,55 +1517,55 @@ msgstr "Radio Buttons"
1515
  #: app/features/mec/meta_boxes/search_form.php:792
1516
  #: app/features/mec/meta_boxes/search_form.php:799
1517
  #: app/features/mec/meta_boxes/search_form.php:813
1518
- #: app/features/mec/single.php:191 app/libraries/main.php:3443
1519
  msgid "Dropdown"
1520
  msgstr "Dropdown"
1521
 
1522
- #: app/features/events.php:2443 app/features/events.php:2531
1523
- #: app/features/mec/booking.php:570 app/features/mec/booking.php:665
1524
- #: app/libraries/main.php:3492
1525
  msgid "Agreement"
1526
  msgstr "Zustimmung"
1527
 
1528
- #: app/features/events.php:2444 app/features/events.php:2532
1529
- #: app/features/mec/booking.php:571 app/features/mec/booking.php:666
1530
- #: app/features/mec/single.php:188 app/libraries/main.php:3328
1531
  msgid "Paragraph"
1532
  msgstr "Absatz"
1533
 
1534
- #: app/features/events.php:2493 app/features/mec/booking.php:624
1535
  #, fuzzy
1536
  #| msgid "Required Field"
1537
  msgid "Fixed Fields"
1538
  msgstr "Pflichtfeld"
1539
 
1540
- #: app/features/events.php:3350 app/features/events.php:3368
1541
- #: app/features/events.php:3386 app/features/events.php:3404
1542
  #, php-format
1543
  msgid "Show all %s"
1544
  msgstr "Zeige alle %s"
1545
 
1546
- #: app/features/events.php:3350
1547
  msgid "labels"
1548
  msgstr "Labels + Eventstatus"
1549
 
1550
- #: app/features/events.php:3368
1551
  msgid "locations"
1552
  msgstr "Orte"
1553
 
1554
- #: app/features/events.php:3386
1555
  msgid "organizers"
1556
  msgstr "Veranstalter"
1557
 
1558
- #: app/features/events.php:3420
1559
  msgid "Attendees List"
1560
  msgstr "Teilnehmer Liste"
1561
 
1562
- #: app/features/events.php:3450 app/features/events.php:3642
1563
- #: app/features/events.php:3684 app/features/ix.php:3513
1564
- #: app/features/ix.php:3554 app/features/locations.php:58
1565
- #: app/features/locations.php:261 app/features/locations.php:322
1566
- #: app/features/locations.php:324 app/features/locations.php:333
1567
  #: app/features/mec/meta_boxes/display_options.php:1397
1568
  #: app/features/mec/meta_boxes/search_form.php:38
1569
  #: app/features/mec/meta_boxes/search_form.php:108
@@ -1578,88 +1580,88 @@ msgstr "Teilnehmer Liste"
1578
  #: app/features/mec/meta_boxes/search_form.php:767
1579
  #: app/features/mec/settings.php:891 app/features/mec/single.php:331
1580
  #: app/features/popup/event.php:116 app/features/popup/event.php:125
1581
- #: app/features/search.php:74 app/libraries/main.php:2424
1582
- #: app/libraries/main.php:5892 app/libraries/main.php:5940
1583
- #: app/libraries/skins.php:965 app/skins/single.php:781
1584
- #: app/skins/single.php:1224 app/skins/single/default.php:196
1585
  #: app/skins/single/default.php:429 app/skins/single/m1.php:174
1586
  #: app/skins/single/m2.php:97 app/skins/single/modern.php:116
1587
  msgid "Location"
1588
  msgstr "Ort"
1589
 
1590
- #: app/features/events.php:3455
1591
  msgid "Repeat"
1592
  msgstr "Wiederholen"
1593
 
1594
- #: app/features/events.php:3456
1595
  msgid "Author"
1596
  msgstr "Autor"
1597
 
1598
- #: app/features/events.php:3577 app/features/events.php:3578
1599
  msgid "iCal Export"
1600
  msgstr "ical Export"
1601
 
1602
- #: app/features/events.php:3580 app/features/events.php:3581
1603
  msgid "CSV Export"
1604
  msgstr "CSV Export"
1605
 
1606
- #: app/features/events.php:3583 app/features/events.php:3584
1607
  msgid "MS Excel Export"
1608
  msgstr "MS Excel Export"
1609
 
1610
- #: app/features/events.php:3586 app/features/events.php:3587
1611
  msgid "XML Export"
1612
  msgstr "XML Export"
1613
 
1614
- #: app/features/events.php:3589 app/features/events.php:3590
1615
  msgid "JSON Export"
1616
  msgstr "JSON Export"
1617
 
1618
- #: app/features/events.php:3592 app/features/events.php:3593
1619
- #: app/features/events.php:3775
1620
  msgid "Duplicate"
1621
  msgstr "Kopie"
1622
 
1623
- #: app/features/events.php:3642 app/features/events.php:3684
1624
- #: app/features/ix.php:3513 app/features/ix.php:3554
1625
  msgid "Link"
1626
  msgstr "Link"
1627
 
1628
- #: app/features/events.php:3642 app/features/events.php:3684
1629
  #, php-format
1630
  msgid "%s Tel"
1631
  msgstr "%s Tel"
1632
 
1633
- #: app/features/events.php:3642 app/features/events.php:3684
1634
  #, php-format
1635
  msgid "%s Email"
1636
  msgstr "%s Email"
1637
 
1638
- #: app/features/events.php:3987 app/features/fes.php:233
1639
- #: app/features/profile/profile.php:183 app/libraries/main.php:2507
1640
- #: app/libraries/main.php:5922
1641
  msgid "Ticket"
1642
  msgstr "Ticket"
1643
 
1644
- #: app/features/events.php:3990 app/features/profile/profile.php:186
1645
  msgid "Variations"
1646
  msgstr "Variationen"
1647
 
1648
- #: app/features/events.php:4005 app/features/fes.php:304
1649
  msgid "Unknown"
1650
  msgstr "Unbekannt"
1651
 
1652
- #: app/features/events.php:4031
1653
  msgid ""
1654
  "If you want to send an email, first select your attendees and then click in "
1655
  "the button below, please."
1656
  msgstr ""
1657
 
1658
- #: app/features/events.php:4031 app/features/mec/report.php:50
1659
  msgid "Send Email"
1660
  msgstr "E-Mail senden"
1661
 
1662
- #: app/features/events.php:4035
1663
  msgid "No Attendees Found!"
1664
  msgstr "Keine Teilnehmer gefunden!"
1665
 
@@ -1703,8 +1705,8 @@ msgstr "Die Veranstaltung wurde entfernt."
1703
  msgid "Order Time"
1704
  msgstr "Uhrzeit Bestellung"
1705
 
1706
- #: app/features/fes.php:233 app/libraries/main.php:2455
1707
- #: app/libraries/main.php:2570
1708
  msgid "Transaction ID"
1709
  msgstr "Transaktions-ID"
1710
 
@@ -1871,8 +1873,8 @@ msgstr "Bild entfernen"
1871
  #: app/features/fes/form.php:848 app/features/labels.php:61
1872
  #: app/features/labels.php:221 app/features/mec.php:462
1873
  #: app/features/mec/meta_boxes/filter.php:72
1874
- #: app/features/mec/meta_boxes/filter.php:133 app/libraries/main.php:5889
1875
- #: app/libraries/main.php:5937 app/skins/single.php:994
1876
  #: app/skins/single/default.php:174 app/skins/single/default.php:406
1877
  #: app/skins/single/m1.php:77 app/skins/single/modern.php:252
1878
  msgid "Labels"
@@ -1941,107 +1943,157 @@ msgstr "MEC - Import / Export"
1941
  msgid "Import / Export"
1942
  msgstr "Import / Export"
1943
 
1944
- #: app/features/ix.php:205
1945
- msgid "Please upload the feed file."
1946
  msgstr ""
1947
 
1948
- #: app/features/ix.php:208
1949
- msgid "The file type should be XML or ICS."
 
 
1950
  msgstr "Der Datei Typ muss XML oder ICS sein."
1951
 
1952
- #: app/features/ix.php:217
1953
  msgid "An error occurred during the file upload! Please check permissions!"
1954
  msgstr ""
1955
 
1956
- #: app/features/ix.php:225
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1957
  msgid "The events are imported successfully!"
1958
  msgstr "Die Events wurden erfolgreich importiert!"
1959
 
1960
- #: app/features/ix.php:950
1961
  msgid "Third Party plugin is not installed and activated!"
1962
  msgstr "Drittanbieter-Plugin ist nicht installiert und aktiviert!"
1963
 
1964
- #: app/features/ix.php:973
1965
  msgid "Third Party plugin is invalid!"
1966
  msgstr "Drittanbieter-Plugin ist ungültig!"
1967
 
1968
- #: app/features/ix.php:2724 app/features/ix.php:2782
1969
  #, fuzzy
1970
  #| msgid "Both of API key and Calendar ID are required!"
1971
  msgid "API key and Calendar ID are required!"
1972
  msgstr "Beide, API Schlüssel und Calender ID wird benötigt"
1973
 
1974
- #: app/features/ix.php:2777 app/features/ix.php:3196 app/features/ix.php:3937
1975
  #, fuzzy
1976
  #| msgid "Please select some events to import!"
1977
  msgid "Please select events to import!"
1978
  msgstr "Bitte wählen Sie einige Veranstaltungen aus zum importieren"
1979
 
1980
- #: app/features/ix.php:3138 app/features/ix.php:3201
1981
  #, fuzzy
1982
  #| msgid "Both of API key and Calendar ID are required!"
1983
  msgid "API key and Group URL are required!"
1984
  msgstr "Beide, API Schlüssel und Calender ID wird benötigt"
1985
 
1986
- #: app/features/ix.php:3440
1987
  msgid "Check at Meetup"
1988
  msgstr ""
1989
 
1990
- #: app/features/ix.php:3513 app/features/ix.php:3554
1991
  msgid "Organizer Tel"
1992
  msgstr "Organisator Telefon"
1993
 
1994
- #: app/features/ix.php:3513 app/features/ix.php:3554
1995
  msgid "Organizer Email"
1996
  msgstr "Organisator Email"
1997
 
1998
- #: app/features/ix.php:3629
1999
  #, fuzzy
2000
  #| msgid "All of Client ID, Client Secret and Calendar ID are required!"
2001
  msgid "All of Client ID, Client Secret, and Calendar ID are required!"
2002
  msgstr "Dies wird alles benötigt: Client ID, Client Secret und Calender ID!"
2003
 
2004
- #: app/features/ix.php:3652
2005
  #, fuzzy, php-format
2006
  #| msgid "All seems good! Please click %s for authenticating your app."
2007
  msgid "All seems good! Please click %s to authenticate your app."
2008
  msgstr ""
2009
  "Alles scheint gut zu sein! Bitte klicken %s um Ihre App zu authentifizieren."
2010
 
2011
- #: app/features/ix.php:3652
2012
  msgid "here"
2013
  msgstr ""
2014
 
2015
- #: app/features/ix.php:3706
2016
  #, fuzzy
2017
  #| msgid "All of Client App, Client Secret and Calendar ID are required!"
2018
  msgid "Client App, Client Secret, and Calendar ID are all required!"
2019
  msgstr "Dies wird alles benötigt: Client ID, Client Secret und Calender ID!"
2020
 
2021
- #: app/features/ix.php:3859
2022
  #, fuzzy, php-format
2023
  #| msgid "%s events added to Google Calendar successfully."
2024
  msgid "%s events added to Google Calendar with success."
2025
  msgstr "%s Events wurden erfolgreich zum Google Kalender hinzugefügt."
2026
 
2027
- #: app/features/ix.php:3860
2028
  #, fuzzy, php-format
2029
  #| msgid "%s previously added events get updated."
2030
  msgid "%s Updated previously added events."
2031
  msgstr "%s vorherige hinzugefügte Events wurden aktualisiert."
2032
 
2033
- #: app/features/ix.php:3861
2034
  #, php-format
2035
  msgid "%s events failed to add for following reasons: %s"
2036
  msgstr "%s Events wurde aus folgenden Gründen nicht hinzugefügt: %s"
2037
 
2038
- #: app/features/ix.php:3893
2039
  #, fuzzy
2040
  #| msgid "Please insert your facebook page's link."
2041
  msgid "Please insert your Facebook page's link."
2042
  msgstr "Bitte Ihren Facebook Seitenlink eingeben."
2043
 
2044
- #: app/features/ix.php:3904 app/features/ix.php:3946
2045
  #, fuzzy
2046
  #| msgid ""
2047
  #| "We couldn't recognize your Facebook page. Please check it and provide us "
@@ -2053,7 +2105,7 @@ msgstr ""
2053
  "Wir konnten Ihre Facebookseite nicht erkennen. Bitte checken Sie das und "
2054
  "stellen Sie uns einen gültigen Facebookseitenlink zur Verfügung."
2055
 
2056
- #: app/features/ix.php:3941
2057
  msgid "Please insert your facebook page's link."
2058
  msgstr "Bitte Ihren Facebook Seitenlink eingeben."
2059
 
@@ -2220,15 +2272,15 @@ msgstr "Umschalten"
2220
  #: app/features/ix/export_g_calendar.php:72
2221
  #: app/features/ix/export_g_calendar.php:151
2222
  #: app/features/ix/export_g_calendar.php:166
2223
- #: app/features/mec/notifications.php:138
2224
- #: app/features/mec/notifications.php:240
2225
- #: app/features/mec/notifications.php:355
2226
- #: app/features/mec/notifications.php:702
2227
  msgid "Add to Google Calendar"
2228
  msgstr "Zum Google Kalender hinzufügen"
2229
 
2230
- #: app/features/ix/export_g_calendar.php:93 app/features/mec/booking.php:828
2231
- #: app/features/mec/modules.php:413 app/features/mec/notifications.php:978
2232
  #: app/features/mec/settings.php:1162 app/features/mec/single.php:388
2233
  msgid "Checking ..."
2234
  msgstr "Überprüfung"
@@ -2253,6 +2305,7 @@ msgid "XML Feed"
2253
  msgstr ""
2254
 
2255
  #: app/features/ix/import.php:29 app/features/ix/import.php:42
 
2256
  msgid "Upload & Import"
2257
  msgstr "Hochladen & Importieren"
2258
 
@@ -2271,9 +2324,10 @@ msgstr ""
2271
  msgid "ICS Feed"
2272
  msgstr ""
2273
 
2274
- #: app/features/ix/import.php:46 app/features/mec/booking.php:99
2275
- #: app/features/mec/booking.php:333 app/features/mec/booking.php:349
2276
- #: app/features/mec/booking.php:367 app/features/mec/booking.php:444
 
2277
  #: app/features/mec/meta_boxes/display_options.php:214
2278
  #: app/features/mec/meta_boxes/display_options.php:467
2279
  #: app/features/mec/modules.php:69 app/features/mec/modules.php:211
@@ -2282,10 +2336,10 @@ msgstr ""
2282
  msgid "%s is required to use this feature."
2283
  msgstr ""
2284
 
2285
- #: app/features/ix/import.php:46 app/features/ix/sync.php:22
2286
- #: app/features/mec/booking.php:99 app/features/mec/booking.php:333
2287
- #: app/features/mec/booking.php:349 app/features/mec/booking.php:367
2288
- #: app/features/mec/booking.php:444
2289
  #: app/features/mec/meta_boxes/display_options.php:214
2290
  #: app/features/mec/meta_boxes/display_options.php:467
2291
  #: app/features/mec/meta_boxes/display_options.php:508
@@ -2300,6 +2354,32 @@ msgstr ""
2300
  msgid "Pro version of Modern Events Calendar"
2301
  msgstr "Pro Version vom Modernen Event Calendar"
2302
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2303
  #: app/features/ix/import_f_calendar.php:22
2304
  msgid "The Facebook SDK requires PHP version 5.4 or higher."
2305
  msgstr "Facebook SDK benötigt PHP version 5.4. oder höher"
@@ -2498,7 +2578,7 @@ msgstr "Automatischer Google Calender Import"
2498
 
2499
  #: app/features/ix/sync.php:32 app/features/ix/sync.php:41
2500
  #: app/features/ix/sync.php:52 app/features/ix/sync.php:63
2501
- #: app/features/mec/notifications.php:598
2502
  msgid "Important Note"
2503
  msgstr "Important Note"
2504
 
@@ -2700,21 +2780,6 @@ msgstr "Normal"
2700
  msgid "Featured"
2701
  msgstr "Vorgeschlagen"
2702
 
2703
- #: app/features/labels.php:118 app/features/labels.php:143
2704
- #: app/libraries/main.php:6206 app/skins/agenda/render.php:43
2705
- #: app/skins/available_spot/tpl.php:58 app/skins/carousel/render.php:38
2706
- #: app/skins/countdown/tpl.php:39 app/skins/cover/tpl.php:37
2707
- #: app/skins/daily_view/render.php:29 app/skins/grid/render.php:64
2708
- #: app/skins/list/render.php:40 app/skins/masonry/render.php:34
2709
- #: app/skins/monthly_view/calendar.php:89
2710
- #: app/skins/monthly_view/calendar_clean.php:88
2711
- #: app/skins/monthly_view/calendar_novel.php:80 app/skins/slider/render.php:48
2712
- #: app/skins/tile/render.php:44 app/skins/timeline/render.php:49
2713
- #: app/skins/timetable/render.php:44 app/skins/timetable/render.php:111
2714
- #: app/skins/weekly_view/render.php:37 app/skins/yearly_view/render.php:53
2715
- msgid "Canceled"
2716
- msgstr "Abgesagt"
2717
-
2718
  #: app/features/labels.php:120 app/features/labels.php:145
2719
  msgid "You can show featured and canceled events by a different style!"
2720
  msgstr ""
@@ -2737,8 +2802,8 @@ msgstr "Event %s"
2737
 
2738
  #: app/features/locations.php:59 app/features/mec.php:463
2739
  #: app/features/mec/dashboard.php:273 app/features/mec/meta_boxes/filter.php:70
2740
- #: app/features/mec/meta_boxes/filter.php:97 app/libraries/main.php:5891
2741
- #: app/libraries/main.php:5939
2742
  msgid "Locations"
2743
  msgstr "Orte"
2744
 
@@ -2875,8 +2940,8 @@ msgstr "Bild wählen"
2875
  msgid "Don't show map in single event page"
2876
  msgstr "Karte in Einzelansicht nicht anzeigen"
2877
 
2878
- #: app/features/locations.php:396 app/libraries/main.php:5925
2879
- #: app/libraries/main.php:5970
2880
  msgid "Other Locations"
2881
  msgstr "Andere Orte"
2882
 
@@ -2960,7 +3025,7 @@ msgstr "Support"
2960
  #: app/features/mec.php:464 app/features/mec/dashboard.php:280
2961
  #: app/features/mec/meta_boxes/filter.php:71
2962
  #: app/features/mec/meta_boxes/filter.php:115 app/features/organizers.php:59
2963
- #: app/libraries/main.php:5893 app/libraries/main.php:5941
2964
  msgid "Organizers"
2965
  msgstr "Veranstalter"
2966
 
@@ -3154,25 +3219,25 @@ msgid ""
3154
  msgstr ""
3155
 
3156
  #: app/features/mec/booking.php:78 app/features/mec/messages.php:13
3157
- #: app/features/mec/modules.php:23 app/features/mec/notifications.php:11
3158
  #: app/features/mec/settings.php:34 app/features/mec/single.php:19
3159
  #: app/features/mec/styling.php:35
3160
  msgid "Search..."
3161
  msgstr "Suche…"
3162
 
3163
- #: app/features/mec/booking.php:80 app/features/mec/booking.php:672
3164
- #: app/features/mec/booking.php:744 app/features/mec/booking.php:753
3165
- #: app/features/mec/booking.php:763 app/features/mec/booking.php:845
3166
- #: app/features/mec/booking.php:859 app/features/mec/messages.php:15
3167
  #: app/features/mec/messages.php:51 app/features/mec/messages.php:60
3168
  #: app/features/mec/messages.php:94 app/features/mec/messages.php:103
3169
- #: app/features/mec/modules.php:25 app/features/mec/modules.php:378
3170
- #: app/features/mec/modules.php:388 app/features/mec/modules.php:430
3171
- #: app/features/mec/modules.php:444 app/features/mec/notifications.php:13
3172
- #: app/features/mec/notifications.php:885
3173
  #: app/features/mec/notifications.php:897
3174
- #: app/features/mec/notifications.php:995
3175
- #: app/features/mec/notifications.php:1009 app/features/mec/settings.php:36
 
3176
  #: app/features/mec/settings.php:1111 app/features/mec/settings.php:1121
3177
  #: app/features/mec/settings.php:1179 app/features/mec/settings.php:1193
3178
  #: app/features/mec/single.php:21 app/features/mec/single.php:353
@@ -3377,12 +3442,62 @@ msgid ""
3377
  "starting the event!"
3378
  msgstr ""
3379
 
3380
- #: app/features/mec/booking.php:171 app/features/mec/booking.php:181
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3381
  #: app/features/mec/settings.php:639 app/features/mec/settings.php:649
3382
  msgid "Thank You Page"
3383
  msgstr "Danke Seite"
3384
 
3385
- #: app/features/mec/booking.php:182
3386
  msgid ""
3387
  "User redirects to this page after booking. Leave it empty if you want to "
3388
  "disable it."
@@ -3390,101 +3505,101 @@ msgstr ""
3390
  "Benutzer werden auf diese Seite nach der Buchung weitergeleitet. Lassen Sie "
3391
  "es leer, wenn Sie es deaktivieren möchten."
3392
 
3393
- #: app/features/mec/booking.php:189 app/features/mec/booking.php:194
3394
  #: app/features/mec/settings.php:659 app/features/mec/settings.php:664
3395
  msgid "Thank You Page Time Interval"
3396
  msgstr "Dauer bis zur Weiterleitung auf die Danke Seite"
3397
 
3398
- #: app/features/mec/booking.php:191 app/features/mec/settings.php:661
3399
  msgid "2000 mean 2 seconds"
3400
  msgstr "2000 bedeutet 2 Sekunden"
3401
 
3402
- #: app/features/mec/booking.php:195 app/features/mec/settings.php:665
3403
  msgid ""
3404
  "Waiting time before redirecting to thank you page. It's in miliseconds so "
3405
  "2000 means 2 seconds."
3406
  msgstr ""
3407
 
3408
- #: app/features/mec/booking.php:202 app/features/mec/booking.php:212
3409
  #, fuzzy
3410
  #| msgid "User Profile"
3411
  msgid "User Role"
3412
  msgstr "Benutzer Profil"
3413
 
3414
- #: app/features/mec/booking.php:213
3415
  msgid ""
3416
  "MEC creates a user for main attendee after each booking. Default role of the "
3417
  "user is subscriber but you can change it if needed."
3418
  msgstr ""
3419
 
3420
- #: app/features/mec/booking.php:224
3421
  msgid "Enable Express Attendees Form"
3422
  msgstr "Aktivieren Sie das Express-Teilnehmerformular"
3423
 
3424
- #: app/features/mec/booking.php:228
3425
  msgid "Attendees Form"
3426
  msgstr "Teilnahmeformular"
3427
 
3428
- #: app/features/mec/booking.php:229
3429
  msgid ""
3430
  "Apply the info from the first attendee to all purchased ticket by that user. "
3431
  "Uncheck if you want every ticket to have its own attendee’s info."
3432
  msgstr ""
3433
 
3434
- #: app/features/mec/booking.php:242
3435
  msgid "Enable Invoice"
3436
  msgstr "Rechnungen aktivieren"
3437
 
3438
- #: app/features/mec/booking.php:253
3439
  msgid "Enable Booking for Ongoing Events"
3440
  msgstr "Aktiviere Buchung für bereits laufende Events"
3441
 
3442
- #: app/features/mec/booking.php:264
3443
  msgid "Enable Downloadable File"
3444
  msgstr ""
3445
 
3446
- #: app/features/mec/booking.php:269
3447
  msgid ""
3448
  "By enabling this feature, You can upload a file for each event and bookers "
3449
  "are able to download it after booking."
3450
  msgstr ""
3451
 
3452
- #: app/features/mec/booking.php:276
3453
  msgid "Email verification"
3454
  msgstr "Email-Verifizierung"
3455
 
3456
- #: app/features/mec/booking.php:282
3457
  msgid "Auto verification for free bookings"
3458
  msgstr "Automatische Verifizierung für kostenlose Buchungen"
3459
 
3460
- #: app/features/mec/booking.php:291
3461
  msgid "Auto verification for paid bookings"
3462
  msgstr "Automatische Verifizierung für kostenpflichtige Buchungen"
3463
 
3464
- #: app/features/mec/booking.php:295 app/features/mec/notifications.php:248
3465
  #: app/features/notifications.php:144 app/libraries/main.php:590
3466
  msgid "Booking Confirmation"
3467
  msgstr "Buchungsbestätigung"
3468
 
3469
- #: app/features/mec/booking.php:301
3470
  msgid "Auto confirmation for free bookings"
3471
  msgstr "Automatische Bestätigung für kostenlose Buchungen"
3472
 
3473
- #: app/features/mec/booking.php:310
3474
  msgid "Auto confirmation for paid bookings"
3475
  msgstr "Automatische Bestätigung für kostenpflichtige Buchungen"
3476
 
3477
- #: app/features/mec/booking.php:319
3478
  msgid "Send confirmation email in auto confirmation mode"
3479
  msgstr ""
3480
 
3481
- #: app/features/mec/booking.php:330 app/libraries/main.php:560
3482
  #, fuzzy
3483
  #| msgid "Booking"
3484
  msgid "Booking Shortcode"
3485
  msgstr "Buchung / Reservierung"
3486
 
3487
- #: app/features/mec/booking.php:338
3488
  #, php-format
3489
  msgid ""
3490
  "Booking module is available in the event details page but if you like to "
@@ -3493,7 +3608,7 @@ msgid ""
3493
  "into the page content and place the event id instead of 1."
3494
  msgstr ""
3495
 
3496
- #: app/features/mec/booking.php:339
3497
  #, php-format
3498
  msgid ""
3499
  "Also, you can insert %s if you like to show only one of the available "
@@ -3501,75 +3616,66 @@ msgid ""
3501
  "This parameter is optional."
3502
  msgstr ""
3503
 
3504
- #: app/features/mec/booking.php:354
3505
  msgid "Enable coupons module"
3506
  msgstr "Gutscheinmodul aktivieren"
3507
 
3508
- #: app/features/mec/booking.php:356
3509
  msgid ""
3510
  "After enabling and saving the settings, you should reload the page to see a "
3511
  "new menu on the Dashboard > Booking"
3512
  msgstr ""
3513
 
3514
- #: app/features/mec/booking.php:364 app/libraries/main.php:562
3515
  msgid "Taxes / Fees"
3516
  msgstr "Steuern/Gebühren"
3517
 
3518
- #: app/features/mec/booking.php:372
3519
  msgid "Enable taxes / fees module"
3520
  msgstr "Modul für Gebühren/Steuern aktivieren"
3521
 
3522
- #: app/features/mec/booking.php:377
3523
  msgid "Add Fee"
3524
  msgstr "Gebühr hinzufügen"
3525
 
3526
- #: app/features/mec/booking.php:441 app/libraries/main.php:563
3527
  msgid "Ticket Variations & Options"
3528
  msgstr ""
3529
 
3530
- #: app/features/mec/booking.php:449
3531
  msgid "Enable ticket options module"
3532
  msgstr "Ticket Optionen aktivieren"
3533
 
3534
- #: app/features/mec/booking.php:454
3535
  msgid "Add Variation / Option"
3536
  msgstr ""
3537
 
3538
- #: app/features/mec/booking.php:731
3539
  msgid "Enable Organizer Payment Module"
3540
  msgstr ""
3541
 
3542
- #: app/features/mec/booking.php:736
3543
  msgid ""
3544
  "By enabling this module, organizers are able to insert their own payment "
3545
  "credentials for enabled gateways per event and receive the payments directly!"
3546
  msgstr ""
3547
 
3548
- #: app/features/mec/booking.php:823 app/features/mec/messages.php:78
3549
- #: app/features/mec/modules.php:408 app/features/mec/notifications.php:973
3550
  #: app/features/mec/settings.php:1157 app/features/mec/single.php:383
3551
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:311
3552
  msgid "Saved"
3553
  msgstr "Gesichert"
3554
 
3555
- #: app/features/mec/booking.php:824 app/features/mec/messages.php:79
3556
- #: app/features/mec/modules.php:409 app/features/mec/notifications.php:974
3557
  #: app/features/mec/settings.php:1158 app/features/mec/single.php:384
3558
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:312
3559
  msgid "Settings Saved!"
3560
  msgstr "Einstellungen gespeichert!"
3561
 
3562
- #: app/features/mec/booking.php:826 app/features/mec/booking.php:848
3563
- #: app/features/mec/modules.php:411 app/features/mec/modules.php:433
3564
- #: app/features/mec/notifications.php:976
3565
- #: app/features/mec/notifications.php:998 app/features/mec/settings.php:1160
3566
- #: app/features/mec/settings.php:1182 app/features/mec/single.php:386
3567
- #: app/features/mec/single.php:408 app/libraries/main.php:6205
3568
- msgid "Verified"
3569
- msgstr "Verifiziert"
3570
-
3571
- #: app/features/mec/booking.php:850 app/features/mec/modules.php:435
3572
- #: app/features/mec/notifications.php:1000 app/features/mec/settings.php:1184
3573
  #: app/features/mec/single.php:410
3574
  msgid "Please Refresh Page"
3575
  msgstr "Bitte Seiten Refresh vornehmen"
@@ -4739,8 +4845,8 @@ msgstr "Such Formular anzeigen"
4739
  #: app/features/mec/meta_boxes/search_form.php:782
4740
  #: app/features/mec/settings.php:904 app/features/mec/single.php:336
4741
  #: app/features/search.php:86 app/features/speakers.php:61
4742
- #: app/features/speakers.php:269 app/libraries/main.php:5896
4743
- #: app/libraries/main.php:5944 app/libraries/skins.php:1017
4744
  #: app/modules/speakers/details.php:18
4745
  msgid "Speaker"
4746
  msgstr "Sprecher"
@@ -4757,7 +4863,7 @@ msgstr "Sprecher"
4757
  #: app/features/mec/meta_boxes/search_form.php:683
4758
  #: app/features/mec/meta_boxes/search_form.php:789
4759
  #: app/features/mec/settings.php:911 app/features/mec/single.php:345
4760
- #: app/features/search.php:92 app/libraries/skins.php:1043
4761
  msgid "Tag"
4762
  msgstr "Schlagwort"
4763
 
@@ -5060,23 +5166,11 @@ msgstr "Teilnehmer Limit, maximale Anzahl"
5060
  msgid "Add booking activity to user profile"
5061
  msgstr "Fügt Buchungsaktivitäten dem Benutzerprofil hinzu"
5062
 
5063
- #: app/features/mec/modules.php:365 app/libraries/main.php:596
5064
- #, fuzzy
5065
- #| msgid "Notifications"
5066
- msgid "Notifications Per Event"
5067
- msgstr "Benachrichtigungen"
5068
-
5069
- #: app/features/mec/modules.php:369
5070
- #, fuzzy
5071
- #| msgid "Admin Notification"
5072
- msgid "Edit Notifications Per Event"
5073
- msgstr "Admin-Benachrichtiung"
5074
-
5075
- #: app/features/mec/notifications.php:37
5076
  msgid "Enable booking notification"
5077
  msgstr "Buchungsbenachrichtigung aktivieren"
5078
 
5079
- #: app/features/mec/notifications.php:41
5080
  #, fuzzy
5081
  #| msgid "It sends to attendee after booking for notifying him/her."
5082
  msgid "Sent to attendee after booking to notify them."
@@ -5084,215 +5178,204 @@ msgstr ""
5084
  "Wird an den Teilnehmer in Anschluss an die Buchung versendet, um Ihn/Sie zu "
5085
  "benachrichtigen."
5086
 
5087
- #: app/features/mec/notifications.php:43 app/features/mec/notifications.php:149
5088
- #: app/features/mec/notifications.php:259
5089
- #: app/features/mec/notifications.php:374
5090
- #: app/features/mec/notifications.php:490
5091
- #: app/features/mec/notifications.php:601
5092
- #: app/features/mec/notifications.php:727
5093
- #: app/features/mec/notifications.php:811 app/features/mec/report.php:54
5094
  #: app/features/notifications.php:72
5095
  msgid "Email Subject"
5096
  msgstr "Email Betreff"
5097
 
5098
- #: app/features/mec/notifications.php:49 app/features/mec/notifications.php:56
5099
- #: app/features/mec/notifications.php:155
5100
- #: app/features/mec/notifications.php:162
5101
- #: app/features/mec/notifications.php:265
5102
- #: app/features/mec/notifications.php:272
5103
- #: app/features/mec/notifications.php:380
5104
- #: app/features/mec/notifications.php:387
5105
- #: app/features/mec/notifications.php:496
5106
- #: app/features/mec/notifications.php:503
5107
- #: app/features/mec/notifications.php:607
5108
- #: app/features/mec/notifications.php:614
5109
- #: app/features/mec/notifications.php:733
5110
- #: app/features/mec/notifications.php:740
5111
- #: app/features/mec/notifications.php:817
5112
- #: app/features/mec/notifications.php:824
5113
- msgid "Receiver Users"
5114
- msgstr ""
5115
-
5116
- #: app/features/mec/notifications.php:57 app/features/mec/notifications.php:163
5117
  #: app/features/mec/notifications.php:273
 
5118
  #: app/features/mec/notifications.php:388
 
5119
  #: app/features/mec/notifications.php:504
 
5120
  #: app/features/mec/notifications.php:615
 
5121
  #: app/features/mec/notifications.php:741
 
5122
  #: app/features/mec/notifications.php:825
5123
- msgid "Select users to send a copy of email to them!"
5124
  msgstr ""
5125
 
5126
- #: app/features/mec/notifications.php:66 app/features/mec/notifications.php:73
5127
- #: app/features/mec/notifications.php:172
5128
- #: app/features/mec/notifications.php:179
5129
- #: app/features/mec/notifications.php:282
5130
- #: app/features/mec/notifications.php:289
5131
- #: app/features/mec/notifications.php:397
5132
- #: app/features/mec/notifications.php:404
5133
- #: app/features/mec/notifications.php:513
5134
- #: app/features/mec/notifications.php:520
5135
- #: app/features/mec/notifications.php:624
5136
- #: app/features/mec/notifications.php:631
5137
- #: app/features/mec/notifications.php:750
5138
- #: app/features/mec/notifications.php:757
5139
- #: app/features/mec/notifications.php:834
5140
- #: app/features/mec/notifications.php:841
5141
- msgid "Receiver Roles"
5142
  msgstr ""
5143
 
5144
- #: app/features/mec/notifications.php:74 app/features/mec/notifications.php:180
 
 
 
5145
  #: app/features/mec/notifications.php:290
 
5146
  #: app/features/mec/notifications.php:405
 
5147
  #: app/features/mec/notifications.php:521
 
5148
  #: app/features/mec/notifications.php:632
 
5149
  #: app/features/mec/notifications.php:758
 
5150
  #: app/features/mec/notifications.php:842
5151
- msgid "Select users a specific role."
5152
  msgstr ""
5153
 
5154
- #: app/features/mec/notifications.php:82 app/features/mec/notifications.php:86
5155
- #: app/features/mec/notifications.php:188
5156
- #: app/features/mec/notifications.php:192
5157
- #: app/features/mec/notifications.php:298
5158
- #: app/features/mec/notifications.php:302
5159
- #: app/features/mec/notifications.php:413
5160
- #: app/features/mec/notifications.php:417
5161
- #: app/features/mec/notifications.php:529
5162
- #: app/features/mec/notifications.php:533
5163
- #: app/features/mec/notifications.php:640
5164
- #: app/features/mec/notifications.php:644
5165
- #: app/features/mec/notifications.php:766
5166
- #: app/features/mec/notifications.php:770
5167
- #: app/features/mec/notifications.php:850
5168
- #: app/features/mec/notifications.php:854
5169
- msgid "Custom Recipients"
5170
- msgstr "Individuelle Empfänger"
5171
 
5172
- #: app/features/mec/notifications.php:87 app/features/mec/notifications.php:193
 
 
 
5173
  #: app/features/mec/notifications.php:303
 
5174
  #: app/features/mec/notifications.php:418
 
5175
  #: app/features/mec/notifications.php:534
 
5176
  #: app/features/mec/notifications.php:645
 
5177
  #: app/features/mec/notifications.php:771
 
5178
  #: app/features/mec/notifications.php:855
 
 
 
 
 
 
 
 
 
 
5179
  msgid "Insert comma separated emails for multiple recipients."
5180
  msgstr "Geben Sie mit Komma getrennte email-Adressen ein für mehrere Empfänger"
5181
 
5182
- #: app/features/mec/notifications.php:94 app/features/mec/notifications.php:429
5183
- #: app/features/mec/notifications.php:541
5184
  msgid "Send the email to event organizer"
5185
  msgstr "Sendet das Email zum Event Organisator"
5186
 
5187
- #: app/features/mec/notifications.php:97 app/features/mec/notifications.php:199
5188
- #: app/features/mec/notifications.php:313
5189
- #: app/features/mec/notifications.php:436
5190
- #: app/features/mec/notifications.php:544
5191
- #: app/features/mec/notifications.php:662
5192
- #: app/features/mec/notifications.php:777
5193
- #: app/features/mec/notifications.php:861 app/features/notifications.php:80
5194
  msgid "Email Content"
5195
  msgstr "Email Inhalt"
5196
 
5197
- #: app/features/mec/notifications.php:100
5198
- #: app/features/mec/notifications.php:202
5199
- #: app/features/mec/notifications.php:316
5200
- #: app/features/mec/notifications.php:439
5201
- #: app/features/mec/notifications.php:547
5202
- #: app/features/mec/notifications.php:665
5203
- #: app/features/mec/notifications.php:780
5204
- #: app/features/mec/notifications.php:864 app/features/mec/report.php:56
5205
  #, fuzzy
5206
  #| msgid "You can use following placeholders"
5207
  msgid "You can use the following placeholders"
5208
  msgstr "Sie können die folgenden Platzhalter wählen"
5209
 
5210
- #: app/features/mec/notifications.php:102
5211
- #: app/features/mec/notifications.php:204
5212
- #: app/features/mec/notifications.php:318
5213
- #: app/features/mec/notifications.php:441
5214
- #: app/features/mec/notifications.php:549
5215
- #: app/features/mec/notifications.php:667 app/features/notifications.php:91
5216
- msgid "First name of attendee"
5217
- msgstr "Vorname des Teilnehmers"
5218
-
5219
  #: app/features/mec/notifications.php:103
5220
  #: app/features/mec/notifications.php:205
5221
  #: app/features/mec/notifications.php:319
5222
  #: app/features/mec/notifications.php:442
5223
  #: app/features/mec/notifications.php:550
5224
- #: app/features/mec/notifications.php:668 app/features/notifications.php:92
5225
- msgid "Last name of attendee"
5226
- msgstr "Nachname des Teilnehmers"
5227
 
5228
  #: app/features/mec/notifications.php:104
5229
  #: app/features/mec/notifications.php:206
5230
  #: app/features/mec/notifications.php:320
5231
  #: app/features/mec/notifications.php:443
5232
  #: app/features/mec/notifications.php:551
5233
- #: app/features/mec/notifications.php:669 app/features/notifications.php:93
5234
- msgid "Email of attendee"
5235
- msgstr "Email des Teilnehmers"
5236
 
5237
  #: app/features/mec/notifications.php:105
5238
  #: app/features/mec/notifications.php:207
5239
  #: app/features/mec/notifications.php:321
5240
  #: app/features/mec/notifications.php:444
5241
  #: app/features/mec/notifications.php:552
5242
- #: app/features/mec/notifications.php:670 app/features/notifications.php:94
5243
- msgid "Booked date of event"
5244
- msgstr "Gebuchtes Datum der Veranstaltung"
5245
 
5246
  #: app/features/mec/notifications.php:106
5247
  #: app/features/mec/notifications.php:208
5248
  #: app/features/mec/notifications.php:322
5249
  #: app/features/mec/notifications.php:445
5250
  #: app/features/mec/notifications.php:553
5251
- #: app/features/mec/notifications.php:671 app/features/notifications.php:95
5252
- msgid "Booked time of event"
5253
- msgstr "Gebuchte Zeit der Veranstaltung"
5254
 
5255
  #: app/features/mec/notifications.php:107
5256
  #: app/features/mec/notifications.php:209
5257
  #: app/features/mec/notifications.php:323
5258
  #: app/features/mec/notifications.php:446
5259
  #: app/features/mec/notifications.php:554
5260
- #: app/features/mec/notifications.php:672 app/features/notifications.php:96
5261
- #, fuzzy
5262
- #| msgid "Booked date of event"
5263
- msgid "Booked date and time of event"
5264
- msgstr "Gebuchtes Datum der Veranstaltung"
5265
 
5266
  #: app/features/mec/notifications.php:108
5267
  #: app/features/mec/notifications.php:210
5268
  #: app/features/mec/notifications.php:324
5269
  #: app/features/mec/notifications.php:447
5270
  #: app/features/mec/notifications.php:555
5271
- #: app/features/mec/notifications.php:673 app/features/notifications.php:97
5272
- msgid "Booking Price"
5273
- msgstr "Buchungspreis"
 
 
5274
 
5275
  #: app/features/mec/notifications.php:109
5276
  #: app/features/mec/notifications.php:211
5277
  #: app/features/mec/notifications.php:325
5278
  #: app/features/mec/notifications.php:448
5279
  #: app/features/mec/notifications.php:556
5280
- #: app/features/mec/notifications.php:674 app/features/notifications.php:98
5281
- #, fuzzy
5282
- #| msgid "Date and time of placing booking"
5283
- msgid "Date and time of booking"
5284
- msgstr "Datum und Uhrzeit der Buchung"
5285
 
5286
  #: app/features/mec/notifications.php:110
5287
  #: app/features/mec/notifications.php:212
5288
  #: app/features/mec/notifications.php:326
5289
  #: app/features/mec/notifications.php:449
5290
  #: app/features/mec/notifications.php:557
5291
- #: app/features/mec/notifications.php:675
5292
- #: app/features/mec/notifications.php:788
5293
- #: app/features/mec/notifications.php:872 app/features/notifications.php:99
5294
- msgid "Your website title"
5295
- msgstr "Titel Ihrer Webseite"
5296
 
5297
  #: app/features/mec/notifications.php:111
5298
  #: app/features/mec/notifications.php:213
@@ -5301,9 +5384,9 @@ msgstr "Titel Ihrer Webseite"
5301
  #: app/features/mec/notifications.php:558
5302
  #: app/features/mec/notifications.php:676
5303
  #: app/features/mec/notifications.php:789
5304
- #: app/features/mec/notifications.php:873 app/features/notifications.php:100
5305
- msgid "Your website URL"
5306
- msgstr "URL Ihrer Webseite"
5307
 
5308
  #: app/features/mec/notifications.php:112
5309
  #: app/features/mec/notifications.php:214
@@ -5312,62 +5395,64 @@ msgstr "URL Ihrer Webseite"
5312
  #: app/features/mec/notifications.php:559
5313
  #: app/features/mec/notifications.php:677
5314
  #: app/features/mec/notifications.php:790
5315
- #: app/features/mec/notifications.php:874 app/features/notifications.php:101
5316
- msgid "Your website description"
5317
- msgstr "Beschreibung Ihrer Webseite"
5318
 
5319
  #: app/features/mec/notifications.php:113
5320
  #: app/features/mec/notifications.php:215
5321
  #: app/features/mec/notifications.php:329
5322
  #: app/features/mec/notifications.php:452
5323
  #: app/features/mec/notifications.php:560
5324
- #: app/features/mec/notifications.php:678 app/features/notifications.php:102
5325
- msgid "Event title"
5326
- msgstr "Titel der Veranstaltung"
 
 
5327
 
5328
  #: app/features/mec/notifications.php:114
5329
  #: app/features/mec/notifications.php:216
5330
  #: app/features/mec/notifications.php:330
5331
  #: app/features/mec/notifications.php:453
5332
  #: app/features/mec/notifications.php:561
5333
- #: app/features/mec/notifications.php:679 app/features/notifications.php:103
5334
- msgid "Event link"
5335
- msgstr "Veranstaltungslink"
5336
 
5337
  #: app/features/mec/notifications.php:115
5338
  #: app/features/mec/notifications.php:217
5339
  #: app/features/mec/notifications.php:331
5340
- #: app/features/mec/notifications.php:784
5341
- #: app/features/mec/notifications.php:868 app/features/notifications.php:124
5342
- msgid "Event Start Date"
5343
- msgstr "Event Start Datum "
 
5344
 
5345
  #: app/features/mec/notifications.php:116
5346
  #: app/features/mec/notifications.php:218
5347
  #: app/features/mec/notifications.php:332
5348
  #: app/features/mec/notifications.php:785
5349
- #: app/features/mec/notifications.php:869 app/features/notifications.php:125
5350
- msgid "Event End Date"
5351
- msgstr "Event End Datum"
5352
 
5353
  #: app/features/mec/notifications.php:117
5354
  #: app/features/mec/notifications.php:219
5355
  #: app/features/mec/notifications.php:333
5356
- #: app/features/mec/notifications.php:454
5357
- #: app/features/mec/notifications.php:562
5358
- #: app/features/mec/notifications.php:680 app/features/notifications.php:104
5359
- #, fuzzy
5360
- #| msgid "Organizer name of booked event"
5361
- msgid "Speaker name of booked event"
5362
- msgstr "Name des Veranstalters des gebuchten Events"
5363
 
5364
  #: app/features/mec/notifications.php:118
5365
  #: app/features/mec/notifications.php:220
5366
  #: app/features/mec/notifications.php:334
5367
  #: app/features/mec/notifications.php:455
5368
  #: app/features/mec/notifications.php:563
5369
- #: app/features/mec/notifications.php:681 app/features/notifications.php:105
5370
- msgid "Organizer name of booked event"
 
 
5371
  msgstr "Name des Veranstalters des gebuchten Events"
5372
 
5373
  #: app/features/mec/notifications.php:119
@@ -5375,229 +5460,238 @@ msgstr "Name des Veranstalters des gebuchten Events"
5375
  #: app/features/mec/notifications.php:335
5376
  #: app/features/mec/notifications.php:456
5377
  #: app/features/mec/notifications.php:564
5378
- #: app/features/mec/notifications.php:682 app/features/notifications.php:106
5379
- msgid "Organizer tel of booked event"
5380
- msgstr "Tel des Veranstalters"
5381
 
5382
  #: app/features/mec/notifications.php:120
5383
  #: app/features/mec/notifications.php:222
5384
  #: app/features/mec/notifications.php:336
5385
  #: app/features/mec/notifications.php:457
5386
  #: app/features/mec/notifications.php:565
5387
- #: app/features/mec/notifications.php:683 app/features/notifications.php:107
5388
- msgid "Organizer email of booked event"
5389
- msgstr "Email des Veranstalters des gebuchten events"
5390
 
5391
  #: app/features/mec/notifications.php:121
5392
  #: app/features/mec/notifications.php:223
5393
  #: app/features/mec/notifications.php:337
5394
  #: app/features/mec/notifications.php:458
5395
  #: app/features/mec/notifications.php:566
5396
- #: app/features/mec/notifications.php:684 app/features/notifications.php:108
5397
- msgid "Location name of booked event"
5398
- msgstr "Veranstaltungsort"
5399
 
5400
  #: app/features/mec/notifications.php:122
5401
  #: app/features/mec/notifications.php:224
5402
  #: app/features/mec/notifications.php:338
5403
  #: app/features/mec/notifications.php:459
5404
  #: app/features/mec/notifications.php:567
5405
- #: app/features/mec/notifications.php:685 app/features/notifications.php:109
5406
- msgid "Location address of booked event"
5407
- msgstr "Adresse der gebuchten Veranstaltung"
5408
 
5409
  #: app/features/mec/notifications.php:123
5410
  #: app/features/mec/notifications.php:225
5411
  #: app/features/mec/notifications.php:339
5412
  #: app/features/mec/notifications.php:460
5413
  #: app/features/mec/notifications.php:568
5414
- #: app/features/mec/notifications.php:686 app/features/notifications.php:110
5415
- #, fuzzy
5416
- #| msgid "Location name of booked event"
5417
- msgid "Additional locations name of booked event"
5418
- msgstr "Veranstaltungsort"
5419
 
5420
  #: app/features/mec/notifications.php:124
5421
  #: app/features/mec/notifications.php:226
5422
  #: app/features/mec/notifications.php:340
5423
  #: app/features/mec/notifications.php:461
5424
  #: app/features/mec/notifications.php:569
5425
- #: app/features/mec/notifications.php:687 app/features/notifications.php:111
5426
  #, fuzzy
5427
- #| msgid "Location address of booked event"
5428
- msgid "Additional locations address of booked event"
5429
- msgstr "Adresse der gebuchten Veranstaltung"
5430
 
5431
  #: app/features/mec/notifications.php:125
5432
  #: app/features/mec/notifications.php:227
5433
  #: app/features/mec/notifications.php:341
5434
  #: app/features/mec/notifications.php:462
5435
  #: app/features/mec/notifications.php:570
5436
- #: app/features/mec/notifications.php:688 app/features/notifications.php:112
5437
- msgid "Featured image of booked event"
5438
- msgstr "Vorschau Bild des gebuchten Events"
 
 
5439
 
5440
  #: app/features/mec/notifications.php:126
5441
  #: app/features/mec/notifications.php:228
5442
  #: app/features/mec/notifications.php:342
5443
  #: app/features/mec/notifications.php:463
5444
  #: app/features/mec/notifications.php:571
5445
- #: app/features/mec/notifications.php:689 app/features/notifications.php:113
5446
- msgid "Full Attendee info such as booking form data, name, email etc."
5447
- msgstr ""
5448
- "Gesamte Teinehmerinformationen wie z.B. Daten aus dem Buchungsformular, "
5449
- "Name, email, etc."
5450
 
5451
  #: app/features/mec/notifications.php:127
5452
  #: app/features/mec/notifications.php:229
5453
  #: app/features/mec/notifications.php:343
5454
  #: app/features/mec/notifications.php:464
5455
  #: app/features/mec/notifications.php:572
5456
- #: app/features/mec/notifications.php:690 app/features/notifications.php:114
5457
- #, fuzzy
5458
- #| msgid "Booking"
5459
- msgid "Booking ID"
5460
- msgstr "Buchung / Reservierung"
5461
 
5462
  #: app/features/mec/notifications.php:128
5463
  #: app/features/mec/notifications.php:230
5464
  #: app/features/mec/notifications.php:344
5465
  #: app/features/mec/notifications.php:465
5466
  #: app/features/mec/notifications.php:573
5467
- #: app/features/mec/notifications.php:691 app/features/notifications.php:115
 
 
 
 
 
 
 
 
 
 
 
5468
  #, fuzzy
5469
  #| msgid "Transaction ID"
5470
  msgid "Transaction ID of Booking"
5471
  msgstr "Transaktions-ID"
5472
 
5473
- #: app/features/mec/notifications.php:129
5474
- #: app/features/mec/notifications.php:346
5475
- #: app/features/mec/notifications.php:693
5476
- msgid "Invoice Link"
5477
- msgstr "Rechnungslink"
5478
-
5479
  #: app/features/mec/notifications.php:130
5480
- #: app/features/mec/notifications.php:232
5481
  #: app/features/mec/notifications.php:347
5482
- #: app/features/mec/notifications.php:467
5483
- #: app/features/mec/notifications.php:575
5484
- #: app/features/mec/notifications.php:694 app/features/notifications.php:117
5485
- #, fuzzy
5486
- #| msgid "There is no attendee for booking!"
5487
- msgid "Total attendees of current booking"
5488
- msgstr "Es gibt keinen Teilnehmer für die Buchung!"
5489
 
5490
  #: app/features/mec/notifications.php:131
5491
  #: app/features/mec/notifications.php:233
5492
  #: app/features/mec/notifications.php:348
5493
  #: app/features/mec/notifications.php:468
5494
  #: app/features/mec/notifications.php:576
5495
- #: app/features/mec/notifications.php:695 app/features/notifications.php:118
5496
- msgid "Amount of Booked Tickets (Total attendees of all bookings)"
5497
- msgstr ""
 
 
5498
 
5499
  #: app/features/mec/notifications.php:132
5500
  #: app/features/mec/notifications.php:234
5501
  #: app/features/mec/notifications.php:349
5502
  #: app/features/mec/notifications.php:469
5503
  #: app/features/mec/notifications.php:577
5504
- #: app/features/mec/notifications.php:696 app/features/notifications.php:119
5505
- msgid "Ticket name"
5506
- msgstr "Ticket Name"
5507
 
5508
  #: app/features/mec/notifications.php:133
5509
  #: app/features/mec/notifications.php:235
5510
  #: app/features/mec/notifications.php:350
5511
  #: app/features/mec/notifications.php:470
5512
  #: app/features/mec/notifications.php:578
5513
- #: app/features/mec/notifications.php:697 app/features/notifications.php:120
5514
- msgid "Ticket time"
5515
- msgstr "Ticket Uhrzeit"
5516
 
5517
  #: app/features/mec/notifications.php:134
5518
  #: app/features/mec/notifications.php:236
5519
  #: app/features/mec/notifications.php:351
5520
  #: app/features/mec/notifications.php:471
5521
  #: app/features/mec/notifications.php:579
5522
- #: app/features/mec/notifications.php:698 app/features/notifications.php:121
5523
- #, fuzzy
5524
- #| msgid "Ticket name"
5525
- msgid "Ticket name & time"
5526
- msgstr "Ticket Name"
5527
 
5528
  #: app/features/mec/notifications.php:135
5529
  #: app/features/mec/notifications.php:237
5530
  #: app/features/mec/notifications.php:352
5531
  #: app/features/mec/notifications.php:472
5532
  #: app/features/mec/notifications.php:580
5533
- #: app/features/mec/notifications.php:699 app/features/notifications.php:122
5534
  #, fuzzy
5535
- #| msgid "Payment Gateways"
5536
- msgid "Payment Gateway"
5537
- msgstr "Zahlungs-Gateways"
5538
 
5539
  #: app/features/mec/notifications.php:136
5540
  #: app/features/mec/notifications.php:238
5541
  #: app/features/mec/notifications.php:353
5542
  #: app/features/mec/notifications.php:473
5543
  #: app/features/mec/notifications.php:581
5544
- #: app/features/mec/notifications.php:700 app/features/notifications.php:123
5545
- msgid "Link to the downloadable file"
5546
- msgstr ""
 
 
5547
 
5548
  #: app/features/mec/notifications.php:137
5549
  #: app/features/mec/notifications.php:239
5550
  #: app/features/mec/notifications.php:354
5551
- #: app/features/mec/notifications.php:701
 
 
 
 
 
 
 
 
 
5552
  msgid "Download ICS file"
5553
  msgstr "Download ICS Datei"
5554
 
5555
- #: app/features/mec/notifications.php:146 app/libraries/main.php:589
5556
  msgid "Booking Verification"
5557
  msgstr "Verifizierung der Buchung"
5558
 
5559
- #: app/features/mec/notifications.php:147
5560
  msgid "It sends to attendee email for verifying their booking/email."
5561
  msgstr ""
5562
  "Versendet an den Teilnehmer eine Email um dessen Buchung/Mail zu "
5563
  "verifizieren."
5564
 
5565
- #: app/features/mec/notifications.php:231
5566
  msgid "Email/Booking verification link."
5567
  msgstr "Bestätigungslink für Email/Buchung"
5568
 
5569
- #: app/features/mec/notifications.php:252
5570
  #, fuzzy
5571
  #| msgid "Enable booking notification"
5572
  msgid "Enable booking confirmation"
5573
  msgstr "Buchungsbenachrichtigung aktivieren"
5574
 
5575
- #: app/features/mec/notifications.php:257
5576
  #, fuzzy
5577
  #| msgid "It sends to attendee after confirming the booking by admin."
5578
  msgid "Sent to attendee after confirming the booking by admin."
5579
  msgstr ""
5580
  "Es wird an den Teilnehmer gesendet nach Bestätigung der Buchung vom admin."
5581
 
5582
- #: app/features/mec/notifications.php:310
5583
  msgid "Send One Single Email Only To First Attendee"
5584
  msgstr "Nur ein E-Mail zum ersten Teilnehmer senden"
5585
 
5586
- #: app/features/mec/notifications.php:345
5587
- #: app/features/mec/notifications.php:692
5588
  msgid "Booking cancellation link."
5589
  msgstr "Link zur Stornierung der Buchung"
5590
 
5591
- #: app/features/mec/notifications.php:364 app/features/notifications.php:147
5592
  #: app/libraries/main.php:591
5593
  msgid "Booking Cancellation"
5594
  msgstr "Buchung stornieren"
5595
 
5596
- #: app/features/mec/notifications.php:368
5597
  msgid "Enable cancellation notification"
5598
  msgstr "Benachrichtigung bei stornierter Buchung"
5599
 
5600
- #: app/features/mec/notifications.php:372
5601
  #, fuzzy
5602
  #| msgid "It sends to attendee after booking for notifying him/her."
5603
  msgid "Sent to selected recipients after booking cancellation to notify them."
@@ -5605,31 +5699,31 @@ msgstr ""
5605
  "Wird an den Teilnehmer in Anschluss an die Buchung versendet, um Ihn/Sie zu "
5606
  "benachrichtigen."
5607
 
5608
- #: app/features/mec/notifications.php:425
5609
- #: app/features/mec/notifications.php:722
5610
  msgid "Send the email to admin"
5611
  msgstr "Sendet die E-Mail zum Admin"
5612
 
5613
- #: app/features/mec/notifications.php:433
5614
  #, fuzzy
5615
  #| msgid "Send the email to booking user"
5616
  msgid "Send the email to the booked user"
5617
  msgstr "Sendet die Email zum Buchungs "
5618
 
5619
- #: app/features/mec/notifications.php:466
5620
- #: app/features/mec/notifications.php:574 app/features/notifications.php:116
5621
  msgid "Admin booking management link."
5622
  msgstr "Admin-link zur Buchungsverwaltung"
5623
 
5624
- #: app/features/mec/notifications.php:480 app/libraries/main.php:593
5625
  msgid "Admin"
5626
  msgstr "Admin"
5627
 
5628
- #: app/features/mec/notifications.php:484
5629
  msgid "Enable admin notification"
5630
  msgstr "Buchungsbenachrichtigung aktivieren (Admin)"
5631
 
5632
- #: app/features/mec/notifications.php:488
5633
  #, fuzzy
5634
  #| msgid "It sends to admin to notify him/her that a new booking received."
5635
  msgid "Sent to admin to notify them that a new booking has been received."
@@ -5637,16 +5731,16 @@ msgstr ""
5637
  "Sendet eine Benachrichtigung an den Adminstrator um diesen darüber zu "
5638
  "Informieren, dass eine neue Buchung eingegangen ist."
5639
 
5640
- #: app/features/mec/notifications.php:588 app/features/notifications.php:153
5641
- #: app/libraries/main.php:592 app/libraries/notifications.php:584
5642
  msgid "Booking Reminder"
5643
  msgstr "Buchungs Erinnerung"
5644
 
5645
- #: app/features/mec/notifications.php:592
5646
  msgid "Enable booking reminder notification"
5647
  msgstr "Aktivieren Sie die Erinnerung für die Buchungserinnerung"
5648
 
5649
- #: app/features/mec/notifications.php:598
5650
  #, fuzzy, php-format
5651
  #| msgid ""
5652
  #| "Set a cronjob to call %s file once per day otherwise it won't send the "
@@ -5662,37 +5756,37 @@ msgstr ""
5662
  "Sie diese Datei% s aufrufen sollten, sonst könnten die Erinnerungen mehrmals "
5663
  "gesendet werden."
5664
 
5665
- #: app/features/mec/notifications.php:598
5666
  #, fuzzy
5667
  #| msgid "only once per day"
5668
  msgid "only once per hour"
5669
  msgstr "nur einmal pro Tag"
5670
 
5671
- #: app/features/mec/notifications.php:651 app/libraries/main.php:6950
5672
- #: app/libraries/main.php:6967
5673
  #, fuzzy
5674
  #| msgid "Hour"
5675
  msgid "Hours"
5676
  msgstr "Stunde"
5677
 
5678
- #: app/features/mec/notifications.php:655
5679
  msgid "Reminder hours"
5680
  msgstr ""
5681
 
5682
- #: app/features/mec/notifications.php:656
5683
  msgid "Please, insert comma to separate reminder hours."
5684
  msgstr ""
5685
 
5686
- #: app/features/mec/notifications.php:711 app/features/popup/event.php:253
5687
  #: app/libraries/main.php:581
5688
  msgid "New Event"
5689
  msgstr "Neue Veranstaltung"
5690
 
5691
- #: app/features/mec/notifications.php:715
5692
  msgid "Enable new event notification"
5693
  msgstr "Benachrichtigung bei neuen Veranstaltungen aktivieren"
5694
 
5695
- #: app/features/mec/notifications.php:725
5696
  #, fuzzy
5697
  #| msgid ""
5698
  #| "It sends after adding a new event from frontend event submission or from "
@@ -5704,41 +5798,41 @@ msgstr ""
5704
  "Wird nach dem Hinzufügen einer neuen Veranstaltung aus der Frontend-"
5705
  "Übermittlung oder dem Backend versandt."
5706
 
5707
- #: app/features/mec/notifications.php:782
5708
- #: app/features/mec/notifications.php:866
5709
  msgid "Title of event"
5710
  msgstr "Titel der Veranstaltung"
5711
 
5712
- #: app/features/mec/notifications.php:783
5713
- #: app/features/mec/notifications.php:867
5714
  msgid "Link of event"
5715
  msgstr "Link der Veranstaltung"
5716
 
5717
- #: app/features/mec/notifications.php:786
5718
- #: app/features/mec/notifications.php:870 app/features/notifications.php:126
5719
  msgid "Status of event"
5720
  msgstr "Status der Veranstaltung"
5721
 
5722
- #: app/features/mec/notifications.php:787
5723
- #: app/features/mec/notifications.php:871 app/features/mec/settings.php:819
5724
  #: app/features/mec/settings.php:823 app/features/notifications.php:127
5725
  msgid "Event Note"
5726
  msgstr "Veranstaltungsnotiz"
5727
 
5728
- #: app/features/mec/notifications.php:791
5729
- #: app/features/mec/notifications.php:875
5730
  msgid "Admin events management link."
5731
  msgstr "Admin-link zur Veranstaltungsverwaltung"
5732
 
5733
- #: app/features/mec/notifications.php:801 app/libraries/main.php:582
5734
  msgid "User Event Publishing"
5735
  msgstr "Nutzer Event wurde veröffentlicht."
5736
 
5737
- #: app/features/mec/notifications.php:805
5738
  msgid "Enable user event publishing notification"
5739
  msgstr "Benachrichtigung bei neuen Nutzer Veranstaltungen aktivieren"
5740
 
5741
- #: app/features/mec/notifications.php:809
5742
  #, fuzzy
5743
  #| msgid ""
5744
  #| "It sends after adding a new event from frontend event submission or from "
@@ -5750,6 +5844,18 @@ msgstr ""
5750
  "Wird nach dem Hinzufügen einer neuen Veranstaltung aus der Frontend-"
5751
  "Übermittlung oder dem Backend versandt."
5752
 
 
 
 
 
 
 
 
 
 
 
 
 
5753
  #: app/features/mec/report.php:15
5754
  msgid "Booking Report"
5755
  msgstr "Buchungs Zusammenfassung"
@@ -5917,7 +6023,7 @@ msgid "You can enable/disable Schema scripts"
5917
  msgstr ""
5918
 
5919
  #: app/features/mec/settings.php:157 app/features/mec/settings.php:167
5920
- #: app/libraries/main.php:5900 app/libraries/main.php:5948
5921
  msgid "Weekdays"
5922
  msgstr "Wochentage"
5923
 
@@ -6664,7 +6770,7 @@ msgstr ""
6664
  msgid "Custom Fields"
6665
  msgstr "Benutzerdefinierte Stile"
6666
 
6667
- #: app/features/mec/single.php:184 app/libraries/main.php:3183
6668
  msgid "URL"
6669
  msgstr ""
6670
 
@@ -7486,8 +7592,8 @@ msgstr "z.B.. max@mustermann.com"
7486
  msgid "eg. https://webnus.net"
7487
  msgstr "http://webnus.net"
7488
 
7489
- #: app/features/organizers.php:312 app/libraries/main.php:5924
7490
- #: app/libraries/main.php:5969 app/skins/single.php:1152
7491
  msgid "Other Organizers"
7492
  msgstr "Andere Veranstalter"
7493
 
@@ -7685,11 +7791,11 @@ msgstr "Ihre Buchung wurde bereits storniert."
7685
  msgid "#"
7686
  msgstr ""
7687
 
7688
- #: app/features/profile/profile.php:61 app/libraries/main.php:3515
7689
  msgid "Status"
7690
  msgstr ""
7691
 
7692
- #: app/features/profile/profile.php:64 app/libraries/main.php:2491
7693
  msgid "Attendees"
7694
  msgstr "Teilnehmer"
7695
 
@@ -7814,12 +7920,12 @@ msgstr "Suche %s"
7814
  msgid "No search result."
7815
  msgstr "Kein Suchergebnis"
7816
 
7817
- #: app/features/search_bar/search_result.php:12 app/libraries/main.php:5926
7818
- #: app/libraries/main.php:5971 app/libraries/notifications.php:989
7819
- #: app/libraries/render.php:516 app/libraries/render.php:816
7820
  #: app/modules/local-time/details.php:48 app/modules/local-time/type1.php:45
7821
  #: app/modules/local-time/type2.php:47 app/modules/local-time/type3.php:45
7822
- #: app/modules/next-event/details.php:145 app/skins/single.php:1044
7823
  #: app/skins/single/default.php:125 app/skins/single/default.php:359
7824
  #: app/skins/single/m1.php:47 app/skins/single/modern.php:222
7825
  #, fuzzy
@@ -8051,38 +8157,38 @@ msgstr "Slideransicht"
8051
  msgid "Timeline View"
8052
  msgstr "Stundenplan"
8053
 
8054
- #: app/libraries/main.php:385 app/libraries/main.php:5902
8055
- #: app/libraries/main.php:5950
8056
  msgid "SU"
8057
  msgstr "SO"
8058
 
8059
- #: app/libraries/main.php:386 app/libraries/main.php:5903
8060
- #: app/libraries/main.php:5951
8061
  msgid "MO"
8062
  msgstr "MO"
8063
 
8064
- #: app/libraries/main.php:387 app/libraries/main.php:5904
8065
- #: app/libraries/main.php:5952
8066
  msgid "TU"
8067
  msgstr "DI"
8068
 
8069
- #: app/libraries/main.php:388 app/libraries/main.php:5905
8070
- #: app/libraries/main.php:5953
8071
  msgid "WE"
8072
  msgstr "MI"
8073
 
8074
- #: app/libraries/main.php:389 app/libraries/main.php:5906
8075
- #: app/libraries/main.php:5954
8076
  msgid "TH"
8077
  msgstr "DO"
8078
 
8079
- #: app/libraries/main.php:390 app/libraries/main.php:5907
8080
- #: app/libraries/main.php:5955
8081
  msgid "FR"
8082
  msgstr "FR"
8083
 
8084
- #: app/libraries/main.php:391 app/libraries/main.php:5908
8085
- #: app/libraries/main.php:5956
8086
  msgid "SA"
8087
  msgstr "SA"
8088
 
@@ -8261,270 +8367,280 @@ msgstr "Ihre Buchung wurde erfolgreich verifiziert."
8261
  msgid "Your booking cannot verify!"
8262
  msgstr "Ihre Buchung kann nicht verifiziert werden!"
8263
 
8264
- #: app/libraries/main.php:2328
 
 
 
 
 
 
 
 
 
 
8265
  msgid "Your booking successfully canceled."
8266
  msgstr "Ihre Buchung wurde erfolgreich storniert."
8267
 
8268
- #: app/libraries/main.php:2329
8269
  msgid "Your booking cannot be canceled."
8270
  msgstr "Ihre Buchung kann nicht storniert werden."
8271
 
8272
- #: app/libraries/main.php:2333
8273
  msgid "You canceled the payment successfully."
8274
  msgstr "Sie haben die Zahlung erfolgreich storniert."
8275
 
8276
- #: app/libraries/main.php:2337
8277
  msgid "You returned from payment gateway successfully."
8278
  msgstr "Sie sind vom Bezahlungs-Gateway erfolgreich zurückgekehrt."
8279
 
8280
- #: app/libraries/main.php:2356
8281
  msgid "Cannot find the invoice!"
8282
  msgstr "Die Buchung kann nicht gefunden werden."
8283
 
8284
- #: app/libraries/main.php:2356
8285
  msgid "Invoice is invalid."
8286
  msgstr "Die Buchung ist ungültig."
8287
 
8288
- #: app/libraries/main.php:2376
8289
  msgid ""
8290
  "Your booking still is not confirmed. You can download it after confirmation!"
8291
  msgstr ""
8292
 
8293
- #: app/libraries/main.php:2376
8294
  msgid "Booking Not Confirmed."
8295
  msgstr "Die Buchung ist nicht Bestätigt."
8296
 
8297
- #: app/libraries/main.php:2382
8298
  msgid "Cannot find the booking!"
8299
  msgstr "Die Buchung kann nicht gefunden werden!"
8300
 
8301
- #: app/libraries/main.php:2382
8302
  msgid "Booking is invalid."
8303
  msgstr "Buchung ist ungültig."
8304
 
8305
- #: app/libraries/main.php:2415
8306
  #, php-format
8307
  msgid "%s Invoice"
8308
  msgstr "% s Rechnung"
8309
 
8310
- #: app/libraries/main.php:2448
8311
  #, fuzzy
8312
  #| msgid "Date And Time"
8313
  msgid "Date & Time"
8314
  msgstr "Datum und Uhrzeit"
8315
 
8316
- #: app/libraries/main.php:2465
8317
  #, fuzzy
8318
  #| msgid "Booking Price"
8319
  msgid "Booking Fields"
8320
  msgstr "Buchungspreis"
8321
 
8322
- #: app/libraries/main.php:2537
8323
  msgid "Billing"
8324
  msgstr "Abrechnung"
8325
 
8326
- #: app/libraries/main.php:2549
8327
  #, fuzzy
8328
  #| msgid "Coupon"
8329
  msgid "Coupon Code"
8330
  msgstr "Gutschein"
8331
 
8332
- #: app/libraries/main.php:2554
8333
  msgid "Total"
8334
  msgstr "Gesamt"
8335
 
8336
- #: app/libraries/main.php:2561
8337
  msgid "Payment"
8338
  msgstr "Bezahlung"
8339
 
8340
- #: app/libraries/main.php:2565
8341
  msgid "Gateway"
8342
  msgstr "Gateway"
8343
 
8344
- #: app/libraries/main.php:2578
8345
  msgid "Payment Time"
8346
  msgstr "Bezahlung "
8347
 
8348
- #: app/libraries/main.php:2720
8349
  msgid "Request is not valid."
8350
  msgstr "Die Anfrage ist ungültig!"
8351
 
8352
- #: app/libraries/main.php:2720
8353
  msgid "iCal export stopped!"
8354
  msgstr "iCal Export wurde unterbrochen!"
8355
 
8356
- #: app/libraries/main.php:3066 app/libraries/main.php:3095
8357
- #: app/libraries/main.php:3124 app/libraries/main.php:3153
8358
- #: app/libraries/main.php:3182 app/libraries/main.php:3211
8359
- #: app/libraries/main.php:3240 app/libraries/main.php:3269
8360
- #: app/libraries/main.php:3298 app/libraries/main.php:3327
8361
- #: app/libraries/main.php:3350 app/libraries/main.php:3396
8362
- #: app/libraries/main.php:3442 app/libraries/main.php:3491
8363
- #: app/libraries/main.php:3540
8364
  msgid "Sort"
8365
  msgstr "Sortieren"
8366
 
8367
- #: app/libraries/main.php:3073 app/libraries/main.php:3102
8368
- #: app/libraries/main.php:3131 app/libraries/main.php:3160
8369
- #: app/libraries/main.php:3189 app/libraries/main.php:3218
8370
- #: app/libraries/main.php:3247 app/libraries/main.php:3276
8371
- #: app/libraries/main.php:3305 app/libraries/main.php:3357
8372
- #: app/libraries/main.php:3403 app/libraries/main.php:3449
8373
- #: app/libraries/main.php:3498
8374
  msgid "Required Field"
8375
  msgstr "Pflichtfeld"
8376
 
8377
- #: app/libraries/main.php:3079 app/libraries/main.php:3108
8378
- #: app/libraries/main.php:3137 app/libraries/main.php:3166
8379
- #: app/libraries/main.php:3195 app/libraries/main.php:3224
8380
- #: app/libraries/main.php:3253 app/libraries/main.php:3282
8381
- #: app/libraries/main.php:3311 app/libraries/main.php:3363
8382
- #: app/libraries/main.php:3409 app/libraries/main.php:3455
8383
- #: app/libraries/main.php:3504
8384
  msgid "Insert a label for this field"
8385
  msgstr "Geben Sie eine Bezeichnung (Label) für dieses Feld ein."
8386
 
8387
- #: app/libraries/main.php:3333
8388
  msgid "HTML and shortcode are allowed."
8389
  msgstr "HTML und shortcodes sind erlaubt."
8390
 
8391
- #: app/libraries/main.php:3376 app/libraries/main.php:3422
8392
- #: app/libraries/main.php:3468
8393
  msgid "Option"
8394
  msgstr "Option"
8395
 
8396
- #: app/libraries/main.php:3504
8397
  #, php-format
8398
  msgid "Instead of %s, the page title with a link will be show."
8399
  msgstr "Anstelle von %s, wird der Seitentitel mit einem Link gezeigt"
8400
 
8401
- #: app/libraries/main.php:3506
8402
  msgid "Agreement Page"
8403
  msgstr "Zustimmungsseite"
8404
 
8405
- #: app/libraries/main.php:3517
8406
  msgid "Checked by default"
8407
  msgstr ""
8408
 
8409
- #: app/libraries/main.php:3518
8410
  msgid "Unchecked by default"
8411
  msgstr ""
8412
 
8413
- #: app/libraries/main.php:3542
8414
  msgid "Insert a label for this option"
8415
  msgstr "Ein neues Label für diese Option einfügen"
8416
 
8417
- #: app/libraries/main.php:3555
8418
  msgid "Free"
8419
  msgstr "kostenfrei"
8420
 
8421
- #: app/libraries/main.php:4184 app/libraries/main.php:6220
8422
  msgid "M.E. Calender"
8423
  msgstr "M.E. Calender"
8424
 
8425
- #: app/libraries/main.php:4340
8426
  #, php-format
8427
  msgid "Copy of %s"
8428
  msgstr "Kopie von %s"
8429
 
8430
- #: app/libraries/main.php:5158
8431
  msgid "Booked an event."
8432
  msgstr "Eine Veranstaltung wurde gebucht."
8433
 
8434
- #: app/libraries/main.php:5199
8435
  #, php-format
8436
  msgid "%s booked %s event."
8437
  msgstr "%s gebuchtes %s Event"
8438
 
8439
- #: app/libraries/main.php:5885 app/libraries/main.php:5933
8440
  msgid "Taxonomies"
8441
  msgstr "Klassifizierung "
8442
 
8443
- #: app/libraries/main.php:5887 app/libraries/main.php:5935
8444
  msgid "Category Plural Label"
8445
  msgstr "Kategorien"
8446
 
8447
- #: app/libraries/main.php:5888 app/libraries/main.php:5936
8448
  msgid "Category Singular Label"
8449
  msgstr "Kategorie"
8450
 
8451
- #: app/libraries/main.php:5889 app/libraries/main.php:5937
8452
  msgid "Label Plural Label"
8453
  msgstr "Labels"
8454
 
8455
- #: app/libraries/main.php:5890 app/libraries/main.php:5938
8456
  msgid "Label Singular Label"
8457
  msgstr "Label"
8458
 
8459
- #: app/libraries/main.php:5890 app/libraries/main.php:5938
8460
  msgid "label"
8461
  msgstr "label"
8462
 
8463
- #: app/libraries/main.php:5891 app/libraries/main.php:5939
8464
  msgid "Location Plural Label"
8465
  msgstr "Veranstaltungsorte"
8466
 
8467
- #: app/libraries/main.php:5892 app/libraries/main.php:5940
8468
  msgid "Location Singular Label"
8469
  msgstr "Veranstaltungsort"
8470
 
8471
- #: app/libraries/main.php:5893 app/libraries/main.php:5941
8472
  msgid "Organizer Plural Label"
8473
  msgstr "Veranstalter"
8474
 
8475
- #: app/libraries/main.php:5894 app/libraries/main.php:5942
8476
  msgid "Organizer Singular Label"
8477
  msgstr "Veranstalter"
8478
 
8479
- #: app/libraries/main.php:5895 app/libraries/main.php:5943
8480
  #, fuzzy
8481
  #| msgid "Label Plural Label"
8482
  msgid "Speaker Plural Label"
8483
  msgstr "Labels"
8484
 
8485
- #: app/libraries/main.php:5896 app/libraries/main.php:5944
8486
  #, fuzzy
8487
  #| msgid "Label Singular Label"
8488
  msgid "Speaker Singular Label"
8489
  msgstr "Label"
8490
 
8491
- #: app/libraries/main.php:5902 app/libraries/main.php:5950
8492
  msgid "Sunday abbreviation"
8493
  msgstr "Sonntag Abkürzung"
8494
 
8495
- #: app/libraries/main.php:5903 app/libraries/main.php:5951
8496
  msgid "Monday abbreviation"
8497
  msgstr "Montag Abkürzung"
8498
 
8499
- #: app/libraries/main.php:5904 app/libraries/main.php:5952
8500
  msgid "Tuesday abbreviation"
8501
  msgstr "Dienstag Abkürzung"
8502
 
8503
- #: app/libraries/main.php:5905 app/libraries/main.php:5953
8504
  msgid "Wednesday abbreviation"
8505
  msgstr "Mittwoch Abkürzung"
8506
 
8507
- #: app/libraries/main.php:5906 app/libraries/main.php:5954
8508
  msgid "Thursday abbreviation"
8509
  msgstr "Donnerstag Abkürzung"
8510
 
8511
- #: app/libraries/main.php:5907 app/libraries/main.php:5955
8512
  msgid "Friday abbreviation"
8513
  msgstr "Freitag Abkürzung"
8514
 
8515
- #: app/libraries/main.php:5908 app/libraries/main.php:5956
8516
  msgid "Saturday abbreviation"
8517
  msgstr "Samstag Abkürzung "
8518
 
8519
- #: app/libraries/main.php:5912 app/libraries/main.php:5960
8520
  msgid "Others"
8521
  msgstr "Andere"
8522
 
8523
- #: app/libraries/main.php:5914
8524
  msgid "Booking Success Message"
8525
  msgstr "Buchung erfolgreich Mitteilung"
8526
 
8527
- #: app/libraries/main.php:5914
8528
  #, fuzzy
8529
  #| msgid ""
8530
  #| "Thanks for your booking. Your tickets booked, booking verification might "
@@ -8536,18 +8652,18 @@ msgstr ""
8536
  "Vielen Dank für Ihre Buchung. Für die gebuchten Tickets ist ggf. eine "
8537
  "Bestätigung durch Sie erforderlich. Bitte überprüfen Sie Ihre Emails."
8538
 
8539
- #: app/libraries/main.php:5915 app/libraries/main.php:5962
8540
  #: app/widgets/single.php:131
8541
  msgid "Register Button"
8542
  msgstr "Register Button"
8543
 
8544
- #: app/libraries/main.php:5915 app/libraries/main.php:5962
8545
  #: app/skins/available_spot/tpl.php:210 app/skins/carousel/render.php:110
8546
  #: app/skins/carousel/render.php:150 app/skins/grid/render.php:98
8547
  #: app/skins/grid/render.php:155 app/skins/grid/render.php:206
8548
  #: app/skins/grid/render.php:226 app/skins/list/render.php:68
8549
  #: app/skins/list/render.php:160 app/skins/masonry/render.php:150
8550
- #: app/skins/single.php:352 app/skins/single.php:1065 app/skins/single.php:1068
8551
  #: app/skins/single/default.php:288 app/skins/single/default.php:290
8552
  #: app/skins/single/default.php:521 app/skins/single/default.php:523
8553
  #: app/skins/single/m1.php:144 app/skins/single/m1.php:146
@@ -8559,11 +8675,11 @@ msgstr "Register Button"
8559
  msgid "REGISTER"
8560
  msgstr "ANMELDEN"
8561
 
8562
- #: app/libraries/main.php:5916 app/libraries/main.php:5963
8563
  msgid "View Detail Button"
8564
  msgstr "Ansicht Detail Button"
8565
 
8566
- #: app/libraries/main.php:5916 app/libraries/main.php:5963
8567
  #: app/skins/carousel/render.php:110 app/skins/carousel/render.php:150
8568
  #: app/skins/grid/render.php:98 app/skins/grid/render.php:155
8569
  #: app/skins/grid/render.php:206 app/skins/grid/render.php:226
@@ -8575,149 +8691,141 @@ msgstr "Ansicht Detail Button"
8575
  msgid "View Detail"
8576
  msgstr "Details "
8577
 
8578
- #: app/libraries/main.php:5917 app/libraries/main.php:5964
8579
  msgid "Event Detail Button"
8580
  msgstr "Event Detail Button"
8581
 
8582
- #: app/libraries/main.php:5917 app/libraries/main.php:5964
8583
  #: app/skins/countdown/tpl.php:221
8584
  msgid "Event Detail"
8585
  msgstr "Veranstaltungsdetails"
8586
 
8587
- #: app/libraries/main.php:5919 app/libraries/main.php:5966
8588
  msgid "More Info Link"
8589
  msgstr "Link Mehr Informationen"
8590
 
8591
- #: app/libraries/main.php:5922
8592
  msgid "Ticket (Singular)"
8593
  msgstr "Ticket"
8594
 
8595
- #: app/libraries/main.php:5923
8596
  msgid "Tickets (Plural)"
8597
  msgstr "Tickets"
8598
 
8599
- #: app/libraries/main.php:6079
8600
  msgid "EventON"
8601
  msgstr "EventON"
8602
 
8603
- #: app/libraries/main.php:6080
8604
  msgid "The Events Calendar"
8605
  msgstr "The Events Calendar"
8606
 
8607
- #: app/libraries/main.php:6081
8608
  msgid "Events Schedule WP Plugin"
8609
  msgstr "Event Zeitplan WP-Plugin"
8610
 
8611
- #: app/libraries/main.php:6082
8612
  msgid "Calendarize It"
8613
  msgstr ""
8614
 
8615
- #: app/libraries/main.php:6083
8616
  #, fuzzy
8617
  #| msgid "No Search Options"
8618
  msgid "Event Espresso"
8619
  msgstr "Keine Suchoptionen"
8620
 
8621
- #: app/libraries/main.php:6084
8622
  msgid "Events Manager (Recurring)"
8623
  msgstr "Wiederholende Veranstaltung"
8624
 
8625
- #: app/libraries/main.php:6085
8626
  msgid "Events Manager (Single)"
8627
  msgstr "Moderner Event Kalender"
8628
 
8629
- #: app/libraries/main.php:6157 app/libraries/main.php:6177
8630
- msgid "Confirmed"
8631
- msgstr "Bestätigt"
8632
-
8633
- #: app/libraries/main.php:6158 app/libraries/main.php:6185
8634
- msgid "Rejected"
8635
- msgstr "Abgelehnt"
8636
-
8637
- #: app/libraries/main.php:6159 app/libraries/main.php:6181
8638
  msgid "Pending"
8639
  msgstr "Ausstehend"
8640
 
8641
- #: app/libraries/main.php:6207
8642
  msgid "Waiting"
8643
  msgstr "in Bearbeitung"
8644
 
8645
- #: app/libraries/main.php:6250
8646
  #, fuzzy
8647
  #| msgid "Sunday"
8648
  msgid "Sun"
8649
  msgstr "Sonntag"
8650
 
8651
- #: app/libraries/main.php:6250
8652
  #, fuzzy
8653
  #| msgid "Month"
8654
  msgid "Mon"
8655
  msgstr "Monat "
8656
 
8657
- #: app/libraries/main.php:6250
8658
  #, fuzzy
8659
  #| msgid "Tel"
8660
  msgid "Tue"
8661
  msgstr "Tel"
8662
 
8663
- #: app/libraries/main.php:6250
8664
  msgid "Wed"
8665
  msgstr ""
8666
 
8667
- #: app/libraries/main.php:6250
8668
  msgid "Thu"
8669
  msgstr ""
8670
 
8671
- #: app/libraries/main.php:6250
8672
  #, fuzzy
8673
  #| msgid "Friday"
8674
  msgid "Fri"
8675
  msgstr "Freitag"
8676
 
8677
- #: app/libraries/main.php:6250
8678
  #, fuzzy
8679
  #| msgid "Start"
8680
  msgid "Sat"
8681
  msgstr "Start"
8682
 
8683
- #: app/libraries/main.php:6412 app/libraries/render.php:80
8684
  #: app/libraries/render.php:432
8685
  msgid "Skin controller does not exist."
8686
  msgstr "Skin contoller existiert nicht."
8687
 
8688
- #: app/libraries/main.php:6627
8689
  msgid "Sold Out"
8690
  msgstr "Ausgebucht"
8691
 
8692
- #: app/libraries/main.php:6635
8693
  msgid "Last Few Tickets"
8694
  msgstr "Nur noch wenige Tickets verfügbar."
8695
 
8696
- #: app/libraries/main.php:6956 app/libraries/main.php:6973
8697
  #, fuzzy
8698
  #| msgid "minutes"
8699
  msgid "Minutes"
8700
  msgstr "Minuten"
8701
 
8702
- #: app/libraries/main.php:6978
8703
  msgid "AM / PM"
8704
  msgstr ""
8705
 
8706
- #: app/libraries/main.php:6979
8707
  msgid "AM"
8708
  msgstr "AM"
8709
 
8710
- #: app/libraries/main.php:6980
8711
  msgid "PM"
8712
  msgstr "PM"
8713
 
8714
- #: app/libraries/main.php:6988
8715
  #, fuzzy
8716
  #| msgid "Loading..."
8717
  msgid "Ongoing..."
8718
  msgstr "Laden…"
8719
 
8720
- #: app/libraries/main.php:6989
8721
  #, fuzzy
8722
  #| msgid "Expired Events"
8723
  msgid "Expired!"
@@ -8743,45 +8851,45 @@ msgstr "Ihre Buchung wurde storniert"
8743
  msgid "A new booking is received."
8744
  msgstr "Eine neue Buchung ist eingegangen."
8745
 
8746
- #: app/libraries/notifications.php:707
8747
  msgid "A new event is added."
8748
  msgstr "Eine neue Veranstaltung wurde hinzugefügt."
8749
 
8750
- #: app/libraries/notifications.php:811
8751
  msgid "Your event is published."
8752
  msgstr "Die Veranstaltung wurde veröffentlicht."
8753
 
8754
- #: app/libraries/notifications.php:974 app/libraries/notifications.php:989
8755
- #: app/libraries/notifications.php:1000
8756
  #, php-format
8757
  msgid "%s to %s"
8758
  msgstr "%s zu %s"
8759
 
8760
- #: app/libraries/notifications.php:1172
8761
  msgid "to"
8762
  msgstr ""
8763
 
8764
- #: app/libraries/notifications.php:1193 app/modules/export/details.php:46
8765
  msgid "+ Add to Google Calendar"
8766
  msgstr "+ zum Google Calendar hinzufügen"
8767
 
8768
- #: app/libraries/notifications.php:1194 app/modules/export/details.php:47
8769
  msgid "+ iCal export"
8770
  msgstr "+ zu iCal exportieren"
8771
 
8772
- #: app/libraries/notifications.php:1279
8773
  msgid "Yes"
8774
  msgstr "Ja"
8775
 
8776
- #: app/libraries/notifications.php:1279
8777
  msgid "No"
8778
  msgstr "Nein"
8779
 
8780
- #: app/libraries/skins.php:1089
8781
  msgid "Select"
8782
  msgstr "Auswählen"
8783
 
8784
- #: app/libraries/skins.php:1258 app/libraries/skins.php:1259
8785
  #: app/modules/booking/steps/tickets.php:90
8786
  msgid "Book Event"
8787
  msgstr "Veranstaltung buchen"
@@ -8899,7 +9007,7 @@ msgstr "Adresse von..."
8899
  msgid "Get Directions"
8900
  msgstr "Wegbeschreibung"
8901
 
8902
- #: app/modules/links/details.php:17 app/skins/single.php:749
8903
  msgid "Share this event"
8904
  msgstr "Diese Veranstaltung teilen"
8905
 
@@ -8954,7 +9062,7 @@ msgstr "Nächstes Event"
8954
  msgid "Go to occurrence page"
8955
  msgstr "Zum Event"
8956
 
8957
- #: app/modules/next-event/details.php:139 app/skins/single.php:1038
8958
  #: app/skins/single/default.php:119 app/skins/single/default.php:353
8959
  #: app/skins/single/m1.php:41 app/skins/single/modern.php:216
8960
  msgid "Time"
@@ -9079,15 +9187,15 @@ msgid "Tile"
9079
  msgstr "Stundenplan"
9080
 
9081
  #: app/skins/monthly_view/calendar.php:71
9082
- #: app/skins/monthly_view/calendar.php:113
9083
  #: app/skins/monthly_view/calendar_clean.php:70
9084
- #: app/skins/monthly_view/calendar_clean.php:130
9085
  #, php-format
9086
  msgid "Events for %s"
9087
  msgstr "Veranstaltungen für %s"
9088
 
9089
- #: app/skins/monthly_view/calendar.php:115
9090
- #: app/skins/monthly_view/calendar_clean.php:132
9091
  #: app/skins/timetable/render.php:83 app/skins/weekly_view/render.php:64
9092
  msgid "No Events"
9093
  msgstr "Keine Veranstaltungen"
@@ -9096,20 +9204,20 @@ msgstr "Keine Veranstaltungen"
9096
  msgid "Home"
9097
  msgstr ""
9098
 
9099
- #: app/skins/single.php:832 app/skins/single/default.php:65
9100
  #: app/skins/single/m1.php:279 app/skins/single/m2.php:200
9101
  #: app/skins/single/modern.php:300
9102
  msgid "Sold out!"
9103
  msgstr "Ausverkauft!"
9104
 
9105
- #: app/skins/single.php:1112 app/skins/single.php:1171
9106
  #: app/skins/single/default.php:255 app/skins/single/default.php:488
9107
  #: app/skins/single/m1.php:113 app/skins/single/m2.php:36
9108
  #: app/skins/single/modern.php:58
9109
  msgid "Phone"
9110
  msgstr "Phone"
9111
 
9112
- #: app/skins/single.php:1126 app/skins/single.php:1185
9113
  #: app/skins/single/default.php:203 app/skins/single/default.php:269
9114
  #: app/skins/single/default.php:436 app/skins/single/default.php:502
9115
  #: app/skins/single/m1.php:127 app/skins/single/m1.php:181
@@ -9118,7 +9226,7 @@ msgstr "Phone"
9118
  msgid "Website"
9119
  msgstr "Website"
9120
 
9121
- #: app/skins/single.php:1261
9122
  msgid "Speakers:"
9123
  msgstr "Veranstalter"
9124
 
@@ -9379,9 +9487,6 @@ msgstr "http://webnus.net"
9379
  #~ msgid "Go to Edit Form"
9380
  #~ msgstr "Gehe zum Bearbeitungs Feld"
9381
 
9382
- #~ msgid "Cancellation Date"
9383
- #~ msgstr "Datum Stornierung"
9384
-
9385
  #~ msgid "Attachments"
9386
  #~ msgstr "Anhänge"
9387
 
2
  msgstr ""
3
  "Project-Id-Version: ME Calender\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2020-07-29 10:36+0430\n"
6
+ "PO-Revision-Date: 2020-07-29 10:37+0430\n"
7
  "Last-Translator: Jogon <koenig@kafinanz.de>\n"
8
  "Language-Team: German\n"
9
  "Language: de_DE\n"
18
  "X-Poedit-SearchPath-0: .\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:37 app/features/ix/import.php:53
22
+ #: app/features/ix/thirdparty.php:24 app/features/mec.php:1140
23
+ #: app/features/mec.php:1170 app/features/mec/dashboard.php:63
24
+ #: app/widgets/MEC.php:33
25
  msgid "Modern Events Calendar"
26
  msgstr "Moderner Event Kalender "
27
 
100
  msgid "Settings"
101
  msgstr "Einstellungen"
102
 
103
+ #: app/features/contextual.php:62 app/features/events.php:1575
104
+ #: app/features/events.php:2390 app/features/mec/booking.php:546
105
  #: app/features/mec/support.php:29 app/libraries/main.php:564
106
  msgid "Booking Form"
107
  msgstr "Buchungsformular"
128
  "<iframe width=\"600\" height=\"300\" src=\"https://www.youtube.com/embed/"
129
  "YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></iframe>"
130
 
131
+ #: app/features/contextual.php:70 app/features/mec/booking.php:738
132
  #: app/features/mec/support-page.php:115 app/features/mec/support.php:36
133
  #: app/libraries/main.php:565
134
  msgid "Payment Gateways"
284
  msgstr "Herausgenommene Tage "
285
 
286
  #: app/features/contextual.php:308 app/features/events.php:315
287
+ #: app/features/mec/booking.php:96 app/features/mec/notifications.php:34
288
  #: app/features/mec/support-page.php:110 app/features/mec/support-page.php:114
289
  #: app/libraries/main.php:559 app/libraries/main.php:588
290
  #: app/libraries/main.php:672
291
  msgid "Booking"
292
  msgstr "Buchung / Reservierung"
293
 
294
+ #: app/features/contextual.php:318 app/features/mec/booking.php:368
295
  #: app/libraries/main.php:561
296
  msgid "Coupons"
297
  msgstr "Gutscheine"
310
  msgid "MEC Activation"
311
  msgstr "MEC Aktivierung"
312
 
313
+ #: app/features/dlfile.php:121 app/features/events.php:1580
314
+ #: app/features/mec/booking.php:290 app/features/mec/settings.php:811
315
  #, fuzzy
316
  #| msgid "Download ICS file"
317
  msgid "Downloadable File"
372
  msgid "Add New Event"
373
  msgstr "Neue Veranstaltung hinzufügen"
374
 
375
+ #: app/features/events.php:171 app/features/ix.php:4136
376
  #: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:68
377
  #: app/skins/map/tpl.php:88
378
  msgid "No events found!"
395
  msgid "No events found in Trash!"
396
  msgstr "Keine Veranstaltungen im Papierkorb gefunden!"
397
 
398
+ #: app/features/events.php:192 app/features/events.php:3461
399
  #: app/features/mec/meta_boxes/display_options.php:1395
400
  #: app/features/mec/meta_boxes/search_form.php:31
401
  #: app/features/mec/meta_boxes/search_form.php:101
409
  #: app/features/mec/meta_boxes/search_form.php:654
410
  #: app/features/mec/meta_boxes/search_form.php:760
411
  #: app/features/mec/settings.php:885 app/features/mec/single.php:323
412
+ #: app/features/search.php:68 app/libraries/main.php:5918
413
+ #: app/libraries/main.php:5966 app/libraries/skins.php:943
414
+ #: app/skins/single.php:849 app/skins/single/default.php:220
415
  #: app/skins/single/default.php:453 app/skins/single/m1.php:197
416
  #: app/skins/single/m2.php:120 app/skins/single/modern.php:140
417
  msgid "Category"
418
  msgstr "Kategorie"
419
 
420
+ #: app/features/events.php:193 app/features/events.php:3416
421
  #: app/features/fes/form.php:822 app/features/mec.php:461
422
  #: app/features/mec/meta_boxes/filter.php:69
423
+ #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5917
424
+ #: app/libraries/main.php:5965
425
  msgid "Categories"
426
  msgstr "Kategorien"
427
 
507
  msgid "Event Repeating"
508
  msgstr "Wiederholende Veranstaltung"
509
 
510
+ #: app/features/events.php:344 app/features/events.php:1138
511
  #, fuzzy
512
  #| msgid "Event Detail"
513
  msgid "Event Data"
514
  msgstr "Veranstaltungsdetails"
515
 
516
+ #: app/features/events.php:346 app/features/events.php:1320
517
+ #: app/features/mec/settings.php:769 app/skins/single.php:1242
518
  msgid "Hourly Schedule"
519
  msgstr "Stundenplan"
520
 
526
  msgid "Links"
527
  msgstr "Links"
528
 
529
+ #: app/features/events.php:349 app/features/events.php:3463
530
+ #: app/features/events.php:3652 app/features/ix.php:3719
531
+ #: app/features/ix.php:3760
532
  #: app/features/mec/meta_boxes/display_options.php:1398
533
  #: app/features/mec/meta_boxes/search_form.php:46
534
  #: app/features/mec/meta_boxes/search_form.php:116
546
  #: app/features/organizers.php:260 app/features/organizers.php:262
547
  #: app/features/organizers.php:271 app/features/popup/event.php:163
548
  #: app/features/popup/event.php:172 app/features/search.php:80
549
+ #: app/libraries/main.php:5924 app/libraries/main.php:5972
550
+ #: app/libraries/skins.php:995 app/skins/single.php:1097
551
  #: app/skins/single/default.php:245 app/skins/single/default.php:478
552
  #: app/skins/single/m1.php:103 app/skins/single/m2.php:26
553
  #: app/skins/single/modern.php:48
554
  msgid "Organizer"
555
  msgstr "Veranstalter"
556
 
557
+ #: app/features/events.php:350 app/features/events.php:1125
558
+ #: app/features/fes/form.php:793 app/libraries/main.php:5951
559
+ #: app/libraries/main.php:5998 app/skins/single.php:875
560
  #: app/skins/single/default.php:143 app/skins/single/default.php:377
561
  #: app/skins/single/m1.php:62 app/skins/single/modern.php:237
562
  msgid "Cost"
568
  msgid "SEO Schema / Event Status"
569
  msgstr "Am Event Start"
570
 
571
+ #: app/features/events.php:499
572
  msgid "Note for reviewer"
573
  msgstr "Zusätzliche Anmerkungen zum Event "
574
 
575
+ #: app/features/events.php:505
576
  msgid "Guest Data"
577
  msgstr "Gäste Daten"
578
 
579
+ #: app/features/events.php:506 app/features/events.php:2376
580
+ #: app/features/events.php:3967 app/features/fes.php:233
581
  #: app/features/fes/form.php:752 app/features/labels.php:178
582
  #: app/features/mec/booking.php:53 app/features/organizers.php:279
583
  #: app/features/popup/event.php:182 app/features/profile/profile.php:177
584
+ #: app/libraries/notifications.php:1262 app/modules/booking/steps/form.php:48
585
  msgid "Name"
586
  msgstr "Name"
587
 
588
+ #: app/features/events.php:507 app/features/events.php:2385
589
+ #: app/features/events.php:2447 app/features/events.php:2536
590
+ #: app/features/events.php:3970 app/features/fes.php:233
591
  #: app/features/fes/form.php:748 app/features/login/login.php:5
592
+ #: app/features/mec/booking.php:65 app/features/mec/booking.php:584
593
+ #: app/features/mec/booking.php:680 app/features/mec/single.php:183
594
  #: app/features/organizers.php:111 app/features/organizers.php:152
595
  #: app/features/profile/profile.php:180 app/features/speakers.php:127
596
  #: app/features/speakers.php:196 app/libraries/main.php:1719
597
+ #: app/libraries/main.php:1788 app/libraries/main.php:3184
598
+ #: app/libraries/notifications.php:1263 app/modules/booking/steps/form.php:57
599
+ #: app/modules/booking/steps/form.php:157 app/skins/single.php:1114
600
+ #: app/skins/single.php:1173 app/skins/single/default.php:262
601
  #: app/skins/single/default.php:495 app/skins/single/m1.php:120
602
  #: app/skins/single/m2.php:43 app/skins/single/modern.php:65
603
  msgid "Email"
604
  msgstr "E-Mail"
605
 
606
+ #: app/features/events.php:515 app/features/fes/form.php:265
607
  msgid "Date and Time"
608
  msgstr "Datum und Uhrzeit"
609
 
610
+ #: app/features/events.php:518 app/features/events.php:522
611
+ #: app/features/events.php:3464 app/features/events.php:3652
612
+ #: app/features/fes/form.php:269 app/features/fes/form.php:273
613
+ #: app/features/ix.php:3719 app/features/ix.php:3760
614
+ #: app/features/ix/import_g_calendar.php:38 app/features/mec.php:1323
615
+ #: app/features/mec/meta_boxes/display_options.php:51
616
  #: app/features/mec/meta_boxes/display_options.php:280
617
  #: app/features/mec/meta_boxes/display_options.php:520
618
  #: app/features/mec/meta_boxes/display_options.php:627
631
  msgid "Start Date"
632
  msgstr "Start Datum"
633
 
634
+ #: app/features/events.php:537 app/features/events.php:541
635
+ #: app/features/events.php:3465 app/features/events.php:3652
636
+ #: app/features/fes/form.php:288 app/features/fes/form.php:292
637
+ #: app/features/ix.php:3719 app/features/ix.php:3760
638
+ #: app/features/ix/import_g_calendar.php:44 app/features/mec.php:1324
639
+ #: app/features/popup/event.php:92
640
  msgid "End Date"
641
  msgstr "Ende Datum"
642
 
643
+ #: app/features/events.php:564 app/features/fes/form.php:306
644
  #: app/features/popup/event.php:109
645
  #, fuzzy
646
  #| msgid "All Day Event"
647
  msgid "All-day Event"
648
  msgstr "Ganztägige Veranstaltung"
649
 
650
+ #: app/features/events.php:574 app/features/fes/form.php:309
651
  msgid "Hide Event Time"
652
  msgstr "Event / Veranstaltungszeit verbergen"
653
 
654
+ #: app/features/events.php:584 app/features/fes/form.php:312
655
  msgid "Hide Event End Time"
656
  msgstr "Ende-Zeit der Veranstaltung verbergen"
657
 
658
+ #: app/features/events.php:589 app/features/events.php:593
659
  #: app/features/fes/form.php:316
660
  #, fuzzy
661
  #| msgid "Note to reviewer"
662
  msgid "Notes on the time"
663
  msgstr "Zusätzliche Anmerkungen zum Event "
664
 
665
+ #: app/features/events.php:594 app/features/fes/form.php:317
666
  #, fuzzy
667
  #| msgid ""
668
  #| "It shows next to event time on calendar. You can insert Timezone etc. in "
674
  "Neben der Zeit im Kalender wird diese Angabe angezeigt. In diesem Feld "
675
  "können Sie z.B. eine Zeitzone wie z.B. \"MEZ\" usw. einfügen. "
676
 
677
+ #: app/features/events.php:596 app/features/events.php:735
678
+ #: app/features/events.php:1088 app/features/events.php:1237
679
+ #: app/features/events.php:1545 app/features/events.php:1638
680
+ #: app/features/events.php:1782 app/features/events.php:1797
681
+ #: app/features/events.php:1963 app/features/events.php:1976
682
+ #: app/features/events.php:2127 app/features/events.php:2163
683
+ #: app/features/events.php:2261 app/features/events.php:2276
684
+ #: app/features/events.php:2306 app/features/events.php:2319
685
  #: app/features/fes/form.php:396 app/features/fes/form.php:704
686
  #: app/features/locations.php:334 app/features/mec/booking.php:116
687
+ #: app/features/mec/booking.php:204 app/features/mec/booking.php:217
688
+ #: app/features/mec/booking.php:235 app/features/mec/booking.php:251
689
+ #: app/features/mec/booking.php:291 app/features/mec/booking.php:413
690
+ #: app/features/mec/booking.php:442 app/features/mec/booking.php:490
691
+ #: app/features/mec/booking.php:500 app/features/mec/booking.php:522
692
+ #: app/features/mec/booking.php:532 app/features/mec/dashboard.php:71
693
  #: app/features/mec/meta_boxes/display_options.php:82
694
  #: app/features/mec/meta_boxes/display_options.php:95
695
  #: app/features/mec/meta_boxes/display_options.php:108
725
  #: app/features/mec/modules.php:52 app/features/mec/modules.php:85
726
  #: app/features/mec/modules.php:102 app/features/mec/modules.php:137
727
  #: app/features/mec/modules.php:153 app/features/mec/modules.php:323
728
+ #: app/features/mec/notifications.php:88 app/features/mec/notifications.php:194
729
+ #: app/features/mec/notifications.php:304
730
+ #: app/features/mec/notifications.php:419
731
+ #: app/features/mec/notifications.php:535
732
+ #: app/features/mec/notifications.php:646
733
+ #: app/features/mec/notifications.php:657
734
+ #: app/features/mec/notifications.php:772
735
+ #: app/features/mec/notifications.php:856 app/features/mec/settings.php:67
736
  #: app/features/mec/settings.php:86 app/features/mec/settings.php:133
737
  #: app/features/mec/settings.php:168 app/features/mec/settings.php:189
738
  #: app/features/mec/settings.php:234 app/features/mec/settings.php:269
749
  #: app/features/mec/styling.php:119 app/features/mec/styling.php:218
750
  #: app/features/mec/styling.php:235 app/features/mec/styling.php:248
751
  #: app/features/organizers.php:272 app/features/popup/event.php:126
752
+ #: app/features/popup/event.php:173 app/skins/single.php:960
753
  #: app/skins/single/default.php:160 app/skins/single/default.php:392
754
  #: app/skins/single/m1.php:219 app/skins/single/m2.php:143
755
  #: app/skins/single/modern.php:163
756
  msgid "Read More"
757
  msgstr "Mehr lesen"
758
 
759
+ #: app/features/events.php:604
760
  msgid "Repeating"
761
  msgstr "Wiederholen"
762
 
763
+ #: app/features/events.php:613
764
  msgid "Event Repeating (Recurring events)"
765
  msgstr "Wiederholende Veranstaltung"
766
 
767
+ #: app/features/events.php:617 app/features/fes/form.php:327
768
  msgid "Repeats"
769
  msgstr "Wiederholend"
770
 
771
+ #: app/features/events.php:625 app/features/fes/form.php:329
772
  #: app/features/mec.php:1326 app/skins/default_full_calendar/tpl.php:74
773
  #: app/skins/full_calendar/tpl.php:121
774
  msgid "Daily"
775
  msgstr "Täglich"
776
 
777
+ #: app/features/events.php:632 app/features/fes/form.php:330
778
  msgid "Every Weekday"
779
  msgstr "An jedem Wochentag"
780
 
781
+ #: app/features/events.php:639 app/features/fes/form.php:331
782
  msgid "Every Weekend"
783
  msgstr "An jedem Wochenende"
784
 
785
+ #: app/features/events.php:646 app/features/fes/form.php:332
786
  msgid "Certain Weekdays"
787
  msgstr "Bestimmte Wochentage"
788
 
789
+ #: app/features/events.php:653 app/features/fes/form.php:333
790
  #: app/skins/default_full_calendar/tpl.php:73
791
  #: app/skins/full_calendar/tpl.php:120
792
  msgid "Weekly"
793
  msgstr "Wöchentlich"
794
 
795
+ #: app/features/events.php:660 app/features/fes/form.php:334
796
  #: app/features/mec.php:1327 app/skins/default_full_calendar/tpl.php:72
797
  #: app/skins/full_calendar/tpl.php:119
798
  msgid "Monthly"
799
  msgstr "Monatlich"
800
 
801
+ #: app/features/events.php:667 app/features/fes/form.php:335
802
  #: app/features/mec.php:1328 app/skins/default_full_calendar/tpl.php:71
803
  #: app/skins/full_calendar/tpl.php:118
804
  msgid "Yearly"
805
  msgstr "Jährlich"
806
 
807
+ #: app/features/events.php:674 app/features/fes/form.php:336
808
  msgid "Custom Days"
809
  msgstr "Benutzerdefinierte Tage"
810
 
811
+ #: app/features/events.php:681 app/features/fes/form.php:337
812
  msgid "Advanced"
813
  msgstr "Fortgeschritten"
814
 
815
+ #: app/features/events.php:686 app/features/fes/form.php:341
816
  msgid "Repeat Interval"
817
  msgstr "Wiederholungsintervall"
818
 
819
+ #: app/features/events.php:688 app/features/fes/form.php:342
820
  msgid "Repeat interval"
821
  msgstr "Wiederholungsintervall"
822
 
823
+ #: app/features/events.php:692 app/features/fes/form.php:345
824
  msgid "Week Days"
825
  msgstr "Wochentage"
826
 
827
+ #: app/features/events.php:709
828
  #, fuzzy
829
  #| msgid "Pro version of Modern Events Calendar"
830
  msgid ""
832
  "Calendar."
833
  msgstr "Pro Version vom Modernen Event Calendar"
834
 
835
+ #: app/features/events.php:715 app/features/events.php:1865
836
+ #: app/features/events.php:1893 app/features/events.php:2031
837
  #: app/features/fes/form.php:359 app/features/ix/import_f_calendar.php:42
838
  #: app/features/ix/import_g_calendar.php:51
839
  #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
840
  msgid "Start"
841
  msgstr "Start"
842
 
843
+ #: app/features/events.php:728 app/features/events.php:1231
844
+ #: app/features/events.php:1351 app/features/events.php:1456
845
+ #: app/features/events.php:1849 app/features/events.php:2020
846
+ #: app/features/events.php:2100 app/features/events.php:2233
847
  #: app/features/fes/form.php:389 app/features/fes/form.php:920
848
  msgid "Add"
849
  msgstr "Hinzufügen"
850
 
851
+ #: app/features/events.php:731 app/features/fes/form.php:392
852
  msgid "Custom Days Repeating"
853
  msgstr "Benutzerdefinierte Wiederholende Tage"
854
 
855
+ #: app/features/events.php:734 app/features/fes/form.php:395
856
  msgid ""
857
  "Add certain days to event occurrence dates. If you have a single day event, "
858
  "start and end dates should be the same, If you have a multiple day event, "
859
  "the start and end dates must be commensurate with the initial date."
860
  msgstr ""
861
 
862
+ #: app/features/events.php:745 app/features/events.php:1869
863
+ #: app/features/events.php:1897 app/features/events.php:2035
864
  #: app/features/fes/form.php:374
865
  msgid "End"
866
  msgstr "Ende"
867
 
868
+ #: app/features/events.php:822 app/features/fes/form.php:468
869
  msgid "First"
870
  msgstr "Erster"
871
 
872
+ #: app/features/events.php:864 app/features/fes/form.php:510
873
  msgid "Second"
874
  msgstr "Zweiter"
875
 
876
+ #: app/features/events.php:906 app/features/fes/form.php:552
877
  msgid "Third"
878
  msgstr "Dritter"
879
 
880
+ #: app/features/events.php:948 app/features/fes/form.php:594
881
  msgid "Fourth"
882
  msgstr "Vierte"
883
 
884
+ #: app/features/events.php:990 app/features/fes/form.php:636
885
  msgid "Last"
886
  msgstr "Letzter"
887
 
888
+ #: app/features/events.php:1037 app/features/fes/form.php:682
889
  msgid "Ends Repeat"
890
  msgstr "Wiederholung endet"
891
 
892
+ #: app/features/events.php:1049 app/features/fes/form.php:686
893
  msgid "Never"
894
  msgstr "Niemals"
895
 
896
+ #: app/features/events.php:1061 app/features/fes/form.php:691
897
  msgid "On"
898
  msgstr "Am"
899
 
900
+ #: app/features/events.php:1077 app/features/fes/form.php:698
901
+ #: app/features/mec/booking.php:180
902
  msgid "After"
903
  msgstr "Nach"
904
 
905
+ #: app/features/events.php:1081 app/features/events.php:1085
906
  #: app/features/fes/form.php:700 app/features/fes/form.php:703
907
  msgid "Occurrences times"
908
  msgstr " mal vorkommen"
909
 
910
+ #: app/features/events.php:1086
911
  #, fuzzy
912
  #| msgid ""
913
  #| "The event will finish after certain repeats. For example if you set it to "
919
  "Das Event ist nach einer bestimmten Anzahl von Wiederholungen zu Ende. Zum "
920
  "Beispiel: Bei Eingabe von 10 wird das Event nach 10 Wiederholungen beendet"
921
 
922
+ #: app/features/events.php:1101 app/features/fes/form.php:717
923
  #, fuzzy
924
  #| msgid "Next Occurrence of Other Events"
925
  msgid "Show only one occurrence of this event"
926
  msgstr "Nächstes Auftreten von anderen Events."
927
 
928
+ #: app/features/events.php:1121 app/features/events.php:3652
929
+ #: app/features/fes/form.php:790 app/features/ix.php:3719
930
+ #: app/features/ix.php:3760 app/features/mec/settings.php:715
931
+ #: app/libraries/main.php:5950 app/libraries/main.php:5997
932
+ #: app/widgets/single.php:103
933
  msgid "Event Cost"
934
  msgstr ""
935
  "Bruttopreis des Events in Euro, 0 für kostenlos oder z.B. 39, ohne €-Zeichen"
936
 
937
+ #: app/features/events.php:1218
938
  #, fuzzy
939
  #| msgid "Exceptional Days"
940
  msgid "Exceptional Days (Exclude Dates)"
941
  msgstr "Herausgenommene Tage "
942
 
943
+ #: app/features/events.php:1224 app/features/events.php:1234
944
  msgid "Exclude certain days"
945
  msgstr "Ausschluss bestimmter Tage"
946
 
947
+ #: app/features/events.php:1229 app/features/events.php:2448
948
+ #: app/features/events.php:2537 app/features/fes.php:233
949
+ #: app/features/mec/booking.php:585 app/features/mec/booking.php:681
950
  #: app/features/mec/single.php:185 app/features/profile/profile.php:58
951
+ #: app/libraries/main.php:3271 app/modules/booking/steps/tickets.php:94
952
+ #: app/modules/next-event/details.php:134 app/skins/single.php:933
953
  #: app/skins/single/default.php:100 app/skins/single/default.php:334
954
  #: app/skins/single/m1.php:22 app/skins/single/modern.php:197
955
  msgid "Date"
956
  msgstr "Datum"
957
 
958
+ #: app/features/events.php:1235
959
  msgid ""
960
  "Exclude certain days from event occurrence dates. Please note that you can "
961
  "exclude only single day occurrences and you cannot exclude one day from "
962
  "multiple day occurrences."
963
  msgstr ""
964
 
965
+ #: app/features/events.php:1294 app/libraries/render.php:546
966
  msgid "Day 1"
967
  msgstr "Tag 1"
968
 
969
+ #: app/features/events.php:1324
970
  msgid "Add Day"
971
  msgstr "Tag hinzufügen"
972
 
973
+ #: app/features/events.php:1325
974
  msgid ""
975
  "Add new days for schedule. For example if your event is multiple days, you "
976
  "can add a different schedule for each day!"
977
  msgstr ""
978
 
979
+ #: app/features/events.php:1332
980
  #, php-format
981
  msgid "Day %s"
982
  msgstr ""
983
 
984
+ #: app/features/events.php:1336 app/features/events.php:1375
985
+ #: app/features/events.php:1410 app/features/events.php:1442
986
+ #: app/features/events.php:1471 app/features/events.php:2248
987
+ #: app/features/events.php:2295 app/features/events.php:3460
988
+ #: app/features/events.php:3652 app/features/fes/form.php:248
989
+ #: app/features/ix.php:3719 app/features/ix.php:3760
990
+ #: app/features/mec/booking.php:482 app/features/mec/booking.php:514
991
+ #: app/features/mec/styling.php:130
992
  msgid "Title"
993
  msgstr "Titel"
994
 
995
+ #: app/features/events.php:1345 app/features/events.php:1382
996
+ #: app/features/events.php:1415 app/features/events.php:1450
997
+ #: app/features/events.php:1476 app/features/events.php:1879
998
+ #: app/features/events.php:1905 app/features/events.php:2041
999
+ #: app/features/events.php:2140 app/features/events.php:2176
1000
+ #: app/features/events.php:2283 app/features/events.php:2325
1001
+ #: app/features/mec/booking.php:425 app/features/mec/booking.php:454
1002
+ #: app/features/mec/booking.php:505 app/features/mec/booking.php:537
1003
+ #: app/libraries/main.php:3106 app/libraries/main.php:3135
1004
+ #: app/libraries/main.php:3164 app/libraries/main.php:3193
1005
+ #: app/libraries/main.php:3222 app/libraries/main.php:3251
1006
+ #: app/libraries/main.php:3280 app/libraries/main.php:3309
1007
+ #: app/libraries/main.php:3338 app/libraries/main.php:3359
1008
+ #: app/libraries/main.php:3390 app/libraries/main.php:3436
1009
+ #: app/libraries/main.php:3482 app/libraries/main.php:3531
1010
+ #: app/libraries/main.php:3571
1011
  msgid "Remove"
1012
  msgstr "Entfernen"
1013
 
1014
+ #: app/features/events.php:1352 app/features/events.php:1457
1015
  msgid "Add new hourly schedule row"
1016
  msgstr "Neue Stundenplan-Zeile hinzufügen"
1017
 
1018
+ #: app/features/events.php:1367 app/features/events.php:1404
1019
+ #: app/features/events.php:1466
1020
  msgid "From e.g. 8:15"
1021
  msgstr "Von z.B. 08:15 Uhr"
1022
 
1023
+ #: app/features/events.php:1371 app/features/events.php:1407
1024
+ #: app/features/events.php:1468
1025
  msgid "To e.g. 8:45"
1026
  msgstr "bis zum Beispiel 08:45 Uhr"
1027
 
1028
+ #: app/features/events.php:1379 app/features/events.php:1413
1029
+ #: app/features/events.php:1474 app/features/events.php:1770
1030
+ #: app/features/events.php:1952
1031
  msgid "Description"
1032
  msgstr "Beschreibung"
1033
 
1034
+ #: app/features/events.php:1385 app/features/events.php:1418
1035
+ #: app/features/events.php:1479 app/features/fes/form.php:916
1036
  #: app/features/mec.php:469 app/features/mec/modules.php:51
1037
  #: app/features/mec/settings.php:763 app/features/speakers.php:62
1038
+ #: app/libraries/main.php:569 app/libraries/main.php:5925
1039
+ #: app/libraries/main.php:5973 app/modules/speakers/details.php:18
1040
  msgid "Speakers"
1041
  msgstr "Sprecher"
1042
 
1043
+ #: app/features/events.php:1438 app/features/events.php:1446
1044
  msgid "New Day"
1045
  msgstr "Neuer Tag"
1046
 
1047
+ #: app/features/events.php:1510 app/features/fes/form.php:767
1048
  #: app/features/mec/settings.php:709
1049
  msgid "Event Links"
1050
  msgstr "Veranstaltungslinks"
1051
 
1052
+ #: app/features/events.php:1513 app/features/events.php:1519
1053
+ #: app/features/fes/form.php:769 app/libraries/main.php:5948
1054
+ #: app/libraries/main.php:5995
1055
  msgid "Event Link"
1056
  msgstr "Veranstaltungslink"
1057
 
1058
+ #: app/features/events.php:1516 app/features/events.php:1532
1059
  #: app/features/fes/form.php:770 app/features/fes/form.php:775
1060
  msgid "eg. http://yoursite.com/your-event"
1061
  msgstr "z.B. http://yoursite.com/your-event"
1062
 
1063
+ #: app/features/events.php:1520
1064
  #, fuzzy
1065
  #| msgid ""
1066
  #| "If you fill it, it will be replaced instead of default event page link. "
1074
  "dieser durch einen neuen link ersetzt werden. Vollständigen Link einfügen, "
1075
  "einschließlich http(s)://"
1076
 
1077
+ #: app/features/events.php:1522
1078
  msgid "URL Shortener"
1079
  msgstr ""
1080
 
1081
+ #: app/features/events.php:1529 app/features/events.php:1542
1082
+ #: app/features/fes/form.php:774 app/libraries/main.php:5949
1083
+ #: app/libraries/main.php:5996 app/skins/single.php:959
1084
  #: app/skins/single/default.php:159 app/skins/single/default.php:391
1085
  #: app/skins/single/m1.php:218 app/skins/single/m2.php:142
1086
  #: app/skins/single/modern.php:162 app/widgets/single.php:107
1087
  msgid "More Info"
1088
  msgstr "Mehr Informationen"
1089
 
1090
+ #: app/features/events.php:1535 app/features/fes/form.php:776
1091
  msgid "More Information"
1092
  msgstr "z.B. Noch mehr Informationen "
1093
 
1094
+ #: app/features/events.php:1537 app/features/fes/form.php:778
1095
  msgid "Current Window"
1096
  msgstr "Aktuelles Fenster"
1097
 
1098
+ #: app/features/events.php:1538 app/features/fes/form.php:779
1099
  msgid "New Window"
1100
  msgstr "Neues Fenster"
1101
 
1102
+ #: app/features/events.php:1543 app/features/fes/form.php:781
1103
  msgid ""
1104
  "If you fill it, it will be shown in event details page as an optional link. "
1105
  "Insert full link including http(s)://"
1110
  "Text angezeigt werden soll: zum Beispiel: Noch mehr Informationen oder Hier "
1111
  "zur Anmeldung (z.B. bei Webinaren sinnvoll) "
1112
 
1113
+ #: app/features/events.php:1566 app/features/mec/settings.php:777
1114
  msgid "Booking Options"
1115
  msgstr "Buchungsoptionen"
1116
 
1117
+ #: app/features/events.php:1567
1118
  #, fuzzy
1119
  #| msgid "Total booking limits"
1120
  msgid "Total User Booking Limits"
1121
  msgstr "Gesamt Verfügbare Plätze"
1122
 
1123
+ #: app/features/events.php:1568 app/features/events.php:1713
1124
+ #: app/libraries/book.php:60 app/libraries/main.php:5953
1125
  #: app/modules/booking/steps/tickets.php:119
1126
  #: app/modules/booking/steps/tickets.php:125
1127
  msgid "Tickets"
1128
  msgstr "Tickets"
1129
 
1130
+ #: app/features/events.php:1570 app/features/events.php:2077
1131
  msgid "Fees"
1132
  msgstr "Gebühren"
1133
 
1134
+ #: app/features/events.php:1573 app/features/events.php:2209
1135
  #: app/features/mec/settings.php:789
1136
  msgid "Ticket Variations / Options"
1137
  msgstr ""
1138
 
1139
+ #: app/features/events.php:1577 app/features/mec/booking.php:757
1140
  #: app/features/mec/support-page.php:118
1141
  #, fuzzy
1142
  #| msgid "Organizer Tel"
1143
  msgid "Organizer Payment"
1144
  msgstr "Organisator Telefon"
1145
 
1146
+ #: app/features/events.php:1620 app/features/events.php:1634
1147
  #, fuzzy
1148
  #| msgid "Total booking limits"
1149
  msgid "Total booking limit"
1150
  msgstr "Gesamt Verfügbare Plätze"
1151
 
1152
+ #: app/features/events.php:1631 app/features/events.php:1818
1153
+ #: app/features/events.php:1990 app/modules/booking/default.php:98
1154
  #: app/modules/booking/steps/tickets.php:119
1155
  #: app/modules/booking/steps/tickets.php:125
1156
  #: app/skins/available_spot/tpl.php:142
1157
  msgid "Unlimited"
1158
  msgstr "Unlimitiert"
1159
 
1160
+ #: app/features/events.php:1637
1161
  msgid ""
1162
  "If you want to set a limit to all tickets, uncheck this checkbox and put a "
1163
  "limitation number."
1164
  msgstr ""
1165
 
1166
+ #: app/features/events.php:1639
1167
  #, fuzzy
1168
  #| msgid "Choose your single event style."
1169
  msgid "Read About A Booking System"
1170
  msgstr "Wählen Sie Ihren Single Event Stil"
1171
 
1172
+ #: app/features/events.php:1647
1173
  msgid "100"
1174
  msgstr "z.B. 100"
1175
 
1176
+ #: app/features/events.php:1649 app/features/events.php:1663
1177
  #, fuzzy
1178
  #| msgid "Next Occurrence"
1179
  msgid "Book All Occurrences"
1180
  msgstr "Nächstes Event"
1181
 
1182
+ #: app/features/events.php:1660
1183
  msgid "Sell all occurrences by one booking"
1184
  msgstr ""
1185
 
1186
+ #: app/features/events.php:1666
1187
  msgid ""
1188
  "If you have a series of events and you want to sell all of them at once, "
1189
  "this option is for you! For example a weekly yoga course or something "
1190
  "similar."
1191
  msgstr ""
1192
 
1193
+ #: app/features/events.php:1676
1194
  #, fuzzy
1195
  #| msgid "Total booking limits"
1196
  msgid "Total user booking limits"
1197
  msgstr "Gesamt Verfügbare Plätze"
1198
 
1199
+ #: app/features/events.php:1687 app/features/events.php:2089
1200
+ #: app/features/events.php:2221 app/features/events.php:2402
1201
  msgid "Inherit from global options"
1202
  msgstr "Aus den globalen Einstellungen übernehmen"
1203
 
1204
+ #: app/features/events.php:1690
1205
  msgid "12"
1206
  msgstr "12"
1207
 
1208
+ #: app/features/events.php:1716
1209
  msgid ""
1210
  "You're translating an event so MEC will use the original event for tickets "
1211
  "and booking. You can only translate the ticket name and description. Please "
1212
  "define exact tickets that you defined in the original event here."
1213
  msgstr ""
1214
 
1215
+ #: app/features/events.php:1721
1216
  msgid "Add Ticket"
1217
  msgstr "Ticket hinzufügen"
1218
 
1219
+ #: app/features/events.php:1733 app/features/events.php:1917
1220
  #, fuzzy
1221
  #| msgid "Ticket"
1222
  msgid "Ticket ID"
1223
  msgstr "Ticket"
1224
 
1225
+ #: app/features/events.php:1733 app/features/events.php:1917
1226
+ #: app/features/events.php:3652 app/features/fes.php:233
1227
+ #: app/features/ix.php:3719 app/features/ix.php:3760
1228
  #: app/features/labels.php:177 app/features/locations.php:260
1229
  #: app/features/organizers.php:203 app/features/speakers.php:268
1230
  msgid "ID"
1231
  msgstr "ID"
1232
 
1233
+ #: app/features/events.php:1736 app/features/events.php:1920
1234
  msgid "Ticket Name"
1235
  msgstr "Ticket Name"
1236
 
1237
+ #: app/features/events.php:1741 app/features/events.php:1924
1238
+ #: app/features/events.php:3652 app/features/ix.php:3719
1239
+ #: app/features/ix.php:3760
1240
  msgid "Start Time"
1241
  msgstr "Uhrzeit des Beginns"
1242
 
1243
+ #: app/features/events.php:1754 app/features/events.php:1937
1244
+ #: app/features/events.php:3652 app/features/ix.php:3719
1245
+ #: app/features/ix.php:3760
1246
  msgid "End Time"
1247
  msgstr "Uhrzeit Ende"
1248
 
1249
+ #: app/features/events.php:1775 app/features/events.php:1779
1250
+ #: app/features/events.php:1873 app/features/events.php:1900
1251
+ #: app/features/events.php:1957 app/features/events.php:1960
1252
+ #: app/features/events.php:2037 app/features/events.php:2254
1253
+ #: app/features/events.php:2258 app/features/events.php:2300
1254
+ #: app/features/events.php:2303 app/features/mec/booking.php:486
1255
+ #: app/features/mec/booking.php:489 app/features/mec/booking.php:518
1256
+ #: app/features/mec/booking.php:521
1257
  msgid "Price"
1258
  msgstr "Preis"
1259
 
1260
+ #: app/features/events.php:1780 app/features/events.php:1961
1261
  #, fuzzy
1262
  #| msgid "Insert 0 for free ticket. Only numbers please."
1263
  msgid ""
1265
  "any symbols or characters."
1266
  msgstr "Bitte 0 für kostenloses Ticket eingeben. Bitte nur Zahlen eintragen"
1267
 
1268
+ #: app/features/events.php:1789 app/features/events.php:1794
1269
+ #: app/features/events.php:1970 app/features/events.php:1973
1270
  msgid "Price Label"
1271
  msgstr "Preisschild"
1272
 
1273
+ #: app/features/events.php:1795 app/features/events.php:1974
1274
  msgid "For showing on website. e.g. $15"
1275
  msgstr "Um das auf der Webseite anzuzeigen zum Beispiel 15 €"
1276
 
1277
+ #: app/features/events.php:1805 app/features/events.php:1984
1278
  msgid "Available Tickets"
1279
  msgstr "Verfügbare Tickets: %s "
1280
 
1281
+ #: app/features/events.php:1822 app/features/events.php:1994
1282
  msgid "Minimum Ticket e.g. 3"
1283
  msgstr "Ticket minimum z.B. 3"
1284
 
1285
+ #: app/features/events.php:1825 app/features/events.php:1997
1286
  msgid "MinimumTicket"
1287
  msgstr "Ticket minimum"
1288
 
1289
+ #: app/features/events.php:1827 app/features/events.php:1999
1290
  msgid "Set a number for the minimum ticket reservation possible"
1291
  msgstr ""
1292
 
1293
+ #: app/features/events.php:1835 app/features/events.php:2007
1294
  msgid "e.g. 0"
1295
  msgstr "z.B. 0"
1296
 
1297
+ #: app/features/events.php:1837 app/features/events.php:2009
1298
  msgid "Day"
1299
  msgstr "Tag"
1300
 
1301
+ #: app/features/events.php:1838 app/features/events.php:2010
1302
  msgid "Hour"
1303
  msgstr "Stunde"
1304
 
1305
+ #: app/features/events.php:1840 app/features/events.php:2012
1306
  #, php-format
1307
  msgid "Stop selling ticket %s before event start."
1308
  msgstr ""
1309
 
1310
+ #: app/features/events.php:1847 app/features/events.php:2018
1311
  msgid "Price per Date"
1312
  msgstr "Preis pro Datum"
1313
 
1314
+ #: app/features/events.php:1877 app/features/events.php:1903
1315
+ #: app/features/events.php:2039 app/features/labels.php:60
1316
  #: app/features/mec/meta_boxes/display_options.php:1396
1317
  #: app/features/mec/meta_boxes/search_form.php:67
1318
  #: app/features/mec/meta_boxes/search_form.php:137
1326
  #: app/features/mec/meta_boxes/search_form.php:690
1327
  #: app/features/mec/meta_boxes/search_form.php:796
1328
  #: app/features/mec/settings.php:917 app/features/mec/single.php:341
1329
+ #: app/features/search.php:98 app/libraries/skins.php:1073
1330
  msgid "Label"
1331
  msgstr "Label"
1332
 
1333
+ #: app/features/events.php:2114 app/features/events.php:2152
1334
+ #: app/features/mec/booking.php:405 app/features/mec/booking.php:434
1335
  msgid "Fee Title"
1336
  msgstr "Gebühren Name"
1337
 
1338
+ #: app/features/events.php:2120 app/features/events.php:2124
1339
+ #: app/features/events.php:2157 app/features/events.php:2160
1340
+ #: app/features/mec/booking.php:409 app/features/mec/booking.php:412
1341
+ #: app/features/mec/booking.php:438 app/features/mec/booking.php:441
1342
  msgid "Amount"
1343
  msgstr "Betrag"
1344
 
1345
+ #: app/features/events.php:2125 app/features/events.php:2161
1346
+ #: app/features/mec/booking.php:413 app/features/mec/booking.php:442
1347
  msgid ""
1348
  "Fee amount, considered as fixed amount if you set the type to amount "
1349
  "otherwise considered as percentage"
1351
  "Gebührenbetrag, gilt als fester Betrag, wenn Sie die Art auf Betrag setzen, "
1352
  "sonst als Prozentsatz"
1353
 
1354
+ #: app/features/events.php:2134 app/features/events.php:2170
1355
+ #: app/features/mec/booking.php:420 app/features/mec/booking.php:449
1356
  msgid "Percent"
1357
  msgstr "Prozent"
1358
 
1359
+ #: app/features/events.php:2135 app/features/events.php:2171
1360
+ #: app/features/mec/booking.php:421 app/features/mec/booking.php:450
1361
  msgid "Amount (Per Ticket)"
1362
  msgstr "Betrag (pro Ticket)"
1363
 
1364
+ #: app/features/events.php:2136 app/features/events.php:2172
1365
+ #: app/features/mec/booking.php:422 app/features/mec/booking.php:451
1366
  msgid "Amount (Per Booking)"
1367
  msgstr "Betrag (pro Buchung)"
1368
 
1369
+ #: app/features/events.php:2259 app/features/events.php:2304
1370
+ #: app/features/mec/booking.php:490 app/features/mec/booking.php:522
1371
  msgid "Option Price"
1372
  msgstr "Preis Optionen"
1373
 
1374
+ #: app/features/events.php:2269 app/features/events.php:2273
1375
+ #: app/features/events.php:2313 app/features/events.php:2316
1376
+ #: app/features/mec/booking.php:496 app/features/mec/booking.php:499
1377
+ #: app/features/mec/booking.php:528 app/features/mec/booking.php:531
1378
  msgid "Maximum Per Ticket"
1379
  msgstr "Maximum pro Ticket"
1380
 
1381
+ #: app/features/events.php:2274 app/features/events.php:2317
1382
+ #: app/features/mec/booking.php:500 app/features/mec/booking.php:532
1383
  #, fuzzy
1384
  #| msgid "Maximum Per Ticket. Leave it blank for unlimited."
1385
  msgid "Maximum Per Ticket. Leave blank for unlimited."
1386
  msgstr "Maximum pro Ticket. Leerlassen für unendlich."
1387
 
1388
+ #: app/features/events.php:2414 app/features/mec/booking.php:548
1389
  #, fuzzy
1390
  #| msgid "Attendees List"
1391
  msgid "Per Attendee Fields"
1392
  msgstr "Teilnehmer Liste"
1393
 
1394
+ #: app/features/events.php:2444 app/features/mec/booking.php:581
1395
+ #: app/libraries/main.php:3126
1396
  msgid "MEC Name"
1397
  msgstr "MEC Name"
1398
 
1399
+ #: app/features/events.php:2445 app/features/mec/booking.php:582
1400
+ #: app/libraries/main.php:3155
1401
  msgid "MEC Email"
1402
  msgstr "MEC Email"
1403
 
1404
+ #: app/features/events.php:2446 app/features/events.php:2535
1405
+ #: app/features/mec/booking.php:583 app/features/mec/booking.php:679
1406
+ #: app/features/mec/single.php:182 app/libraries/main.php:3097
1407
  msgid "Text"
1408
  msgstr "Text"
1409
 
1410
+ #: app/features/events.php:2449 app/features/events.php:2538
1411
+ #: app/features/mec/booking.php:586 app/features/mec/booking.php:682
1412
  #: app/features/mec/single.php:186 app/features/organizers.php:103
1413
  #: app/features/organizers.php:148 app/features/speakers.php:119
1414
  #: app/features/speakers.php:192 app/features/speakers.php:271
1415
+ #: app/libraries/main.php:3300
1416
  msgid "Tel"
1417
  msgstr "Tel"
1418
 
1419
+ #: app/features/events.php:2450 app/features/mec/booking.php:587
1420
+ #: app/libraries/main.php:3242
1421
  msgid "File"
1422
  msgstr "Datei"
1423
 
1424
+ #: app/features/events.php:2451 app/features/events.php:2539
1425
+ #: app/features/mec/booking.php:588 app/features/mec/booking.php:683
1426
+ #: app/features/mec/single.php:187 app/libraries/main.php:3329
1427
  msgid "Textarea"
1428
  msgstr "Textbereich"
1429
 
1430
+ #: app/features/events.php:2452 app/features/events.php:2540
1431
+ #: app/features/mec/booking.php:589 app/features/mec/booking.php:684
1432
+ #: app/features/mec/single.php:189 app/libraries/main.php:3381
1433
  msgid "Checkboxes"
1434
  msgstr "Checkboxes"
1435
 
1436
+ #: app/features/events.php:2453 app/features/events.php:2541
1437
+ #: app/features/mec/booking.php:590 app/features/mec/booking.php:685
1438
+ #: app/features/mec/single.php:190 app/libraries/main.php:3427
1439
  msgid "Radio Buttons"
1440
  msgstr "Radio Buttons"
1441
 
1442
+ #: app/features/events.php:2454 app/features/events.php:2542
1443
+ #: app/features/mec/booking.php:591 app/features/mec/booking.php:686
1444
  #: app/features/mec/meta_boxes/search_form.php:34
1445
  #: app/features/mec/meta_boxes/search_form.php:41
1446
  #: app/features/mec/meta_boxes/search_form.php:49
1517
  #: app/features/mec/meta_boxes/search_form.php:792
1518
  #: app/features/mec/meta_boxes/search_form.php:799
1519
  #: app/features/mec/meta_boxes/search_form.php:813
1520
+ #: app/features/mec/single.php:191 app/libraries/main.php:3473
1521
  msgid "Dropdown"
1522
  msgstr "Dropdown"
1523
 
1524
+ #: app/features/events.php:2455 app/features/events.php:2543
1525
+ #: app/features/mec/booking.php:592 app/features/mec/booking.php:687
1526
+ #: app/libraries/main.php:3522
1527
  msgid "Agreement"
1528
  msgstr "Zustimmung"
1529
 
1530
+ #: app/features/events.php:2456 app/features/events.php:2544
1531
+ #: app/features/mec/booking.php:593 app/features/mec/booking.php:688
1532
+ #: app/features/mec/single.php:188 app/libraries/main.php:3358
1533
  msgid "Paragraph"
1534
  msgstr "Absatz"
1535
 
1536
+ #: app/features/events.php:2505 app/features/mec/booking.php:646
1537
  #, fuzzy
1538
  #| msgid "Required Field"
1539
  msgid "Fixed Fields"
1540
  msgstr "Pflichtfeld"
1541
 
1542
+ #: app/features/events.php:3362 app/features/events.php:3380
1543
+ #: app/features/events.php:3398 app/features/events.php:3416
1544
  #, php-format
1545
  msgid "Show all %s"
1546
  msgstr "Zeige alle %s"
1547
 
1548
+ #: app/features/events.php:3362
1549
  msgid "labels"
1550
  msgstr "Labels + Eventstatus"
1551
 
1552
+ #: app/features/events.php:3380
1553
  msgid "locations"
1554
  msgstr "Orte"
1555
 
1556
+ #: app/features/events.php:3398
1557
  msgid "organizers"
1558
  msgstr "Veranstalter"
1559
 
1560
+ #: app/features/events.php:3432
1561
  msgid "Attendees List"
1562
  msgstr "Teilnehmer Liste"
1563
 
1564
+ #: app/features/events.php:3462 app/features/events.php:3652
1565
+ #: app/features/ix.php:3719 app/features/ix.php:3760
1566
+ #: app/features/locations.php:58 app/features/locations.php:261
1567
+ #: app/features/locations.php:322 app/features/locations.php:324
1568
+ #: app/features/locations.php:333
1569
  #: app/features/mec/meta_boxes/display_options.php:1397
1570
  #: app/features/mec/meta_boxes/search_form.php:38
1571
  #: app/features/mec/meta_boxes/search_form.php:108
1580
  #: app/features/mec/meta_boxes/search_form.php:767
1581
  #: app/features/mec/settings.php:891 app/features/mec/single.php:331
1582
  #: app/features/popup/event.php:116 app/features/popup/event.php:125
1583
+ #: app/features/search.php:74 app/libraries/main.php:2454
1584
+ #: app/libraries/main.php:5922 app/libraries/main.php:5970
1585
+ #: app/libraries/skins.php:969 app/skins/single.php:776
1586
+ #: app/skins/single.php:1219 app/skins/single/default.php:196
1587
  #: app/skins/single/default.php:429 app/skins/single/m1.php:174
1588
  #: app/skins/single/m2.php:97 app/skins/single/modern.php:116
1589
  msgid "Location"
1590
  msgstr "Ort"
1591
 
1592
+ #: app/features/events.php:3467
1593
  msgid "Repeat"
1594
  msgstr "Wiederholen"
1595
 
1596
+ #: app/features/events.php:3468
1597
  msgid "Author"
1598
  msgstr "Autor"
1599
 
1600
+ #: app/features/events.php:3589 app/features/events.php:3590
1601
  msgid "iCal Export"
1602
  msgstr "ical Export"
1603
 
1604
+ #: app/features/events.php:3592 app/features/events.php:3593
1605
  msgid "CSV Export"
1606
  msgstr "CSV Export"
1607
 
1608
+ #: app/features/events.php:3595 app/features/events.php:3596
1609
  msgid "MS Excel Export"
1610
  msgstr "MS Excel Export"
1611
 
1612
+ #: app/features/events.php:3598 app/features/events.php:3599
1613
  msgid "XML Export"
1614
  msgstr "XML Export"
1615
 
1616
+ #: app/features/events.php:3601 app/features/events.php:3602
1617
  msgid "JSON Export"
1618
  msgstr "JSON Export"
1619
 
1620
+ #: app/features/events.php:3604 app/features/events.php:3605
1621
+ #: app/features/events.php:3761
1622
  msgid "Duplicate"
1623
  msgstr "Kopie"
1624
 
1625
+ #: app/features/events.php:3652 app/features/ix.php:3719
1626
+ #: app/features/ix.php:3760
1627
  msgid "Link"
1628
  msgstr "Link"
1629
 
1630
+ #: app/features/events.php:3652
1631
  #, php-format
1632
  msgid "%s Tel"
1633
  msgstr "%s Tel"
1634
 
1635
+ #: app/features/events.php:3652
1636
  #, php-format
1637
  msgid "%s Email"
1638
  msgstr "%s Email"
1639
 
1640
+ #: app/features/events.php:3973 app/features/fes.php:233
1641
+ #: app/features/profile/profile.php:183 app/libraries/main.php:2537
1642
+ #: app/libraries/main.php:5952
1643
  msgid "Ticket"
1644
  msgstr "Ticket"
1645
 
1646
+ #: app/features/events.php:3976 app/features/profile/profile.php:186
1647
  msgid "Variations"
1648
  msgstr "Variationen"
1649
 
1650
+ #: app/features/events.php:3991 app/features/fes.php:304
1651
  msgid "Unknown"
1652
  msgstr "Unbekannt"
1653
 
1654
+ #: app/features/events.php:4017
1655
  msgid ""
1656
  "If you want to send an email, first select your attendees and then click in "
1657
  "the button below, please."
1658
  msgstr ""
1659
 
1660
+ #: app/features/events.php:4017 app/features/mec/report.php:50
1661
  msgid "Send Email"
1662
  msgstr "E-Mail senden"
1663
 
1664
+ #: app/features/events.php:4021
1665
  msgid "No Attendees Found!"
1666
  msgstr "Keine Teilnehmer gefunden!"
1667
 
1705
  msgid "Order Time"
1706
  msgstr "Uhrzeit Bestellung"
1707
 
1708
+ #: app/features/fes.php:233 app/libraries/main.php:2485
1709
+ #: app/libraries/main.php:2600
1710
  msgid "Transaction ID"
1711
  msgstr "Transaktions-ID"
1712
 
1873
  #: app/features/fes/form.php:848 app/features/labels.php:61
1874
  #: app/features/labels.php:221 app/features/mec.php:462
1875
  #: app/features/mec/meta_boxes/filter.php:72
1876
+ #: app/features/mec/meta_boxes/filter.php:133 app/libraries/main.php:5919
1877
+ #: app/libraries/main.php:5967 app/skins/single.php:989
1878
  #: app/skins/single/default.php:174 app/skins/single/default.php:406
1879
  #: app/skins/single/m1.php:77 app/skins/single/modern.php:252
1880
  msgid "Labels"
1943
  msgid "Import / Export"
1944
  msgstr "Import / Export"
1945
 
1946
+ #: app/features/ix.php:206
1947
+ msgid "Please upload a CSV file."
1948
  msgstr ""
1949
 
1950
+ #: app/features/ix.php:209
1951
+ #, fuzzy
1952
+ #| msgid "The file type should be XML or ICS."
1953
+ msgid "The file type should be CSV."
1954
  msgstr "Der Datei Typ muss XML oder ICS sein."
1955
 
1956
+ #: app/features/ix.php:218 app/features/ix.php:423
1957
  msgid "An error occurred during the file upload! Please check permissions!"
1958
  msgstr ""
1959
 
1960
+ #: app/features/ix.php:268 app/libraries/main.php:6187
1961
+ #: app/libraries/main.php:6207
1962
+ msgid "Confirmed"
1963
+ msgstr "Bestätigt"
1964
+
1965
+ #: app/features/ix.php:269 app/libraries/main.php:6188
1966
+ #: app/libraries/main.php:6215
1967
+ msgid "Rejected"
1968
+ msgstr "Abgelehnt"
1969
+
1970
+ #: app/features/ix.php:273 app/features/mec/booking.php:848
1971
+ #: app/features/mec/booking.php:870 app/features/mec/modules.php:401
1972
+ #: app/features/mec/modules.php:423 app/features/mec/notifications.php:988
1973
+ #: app/features/mec/notifications.php:1010 app/features/mec/settings.php:1160
1974
+ #: app/features/mec/settings.php:1182 app/features/mec/single.php:386
1975
+ #: app/features/mec/single.php:408 app/libraries/main.php:6235
1976
+ msgid "Verified"
1977
+ msgstr "Verifiziert"
1978
+
1979
+ #: app/features/ix.php:274 app/features/labels.php:118
1980
+ #: app/features/labels.php:143 app/libraries/main.php:6236
1981
+ #: app/skins/agenda/render.php:43 app/skins/available_spot/tpl.php:58
1982
+ #: app/skins/carousel/render.php:38 app/skins/countdown/tpl.php:39
1983
+ #: app/skins/cover/tpl.php:37 app/skins/daily_view/render.php:29
1984
+ #: app/skins/grid/render.php:64 app/skins/list/render.php:40
1985
+ #: app/skins/masonry/render.php:34 app/skins/monthly_view/calendar.php:89
1986
+ #: app/skins/monthly_view/calendar_clean.php:88
1987
+ #: app/skins/monthly_view/calendar_novel.php:80 app/skins/slider/render.php:48
1988
+ #: app/skins/tile/render.php:44 app/skins/timeline/render.php:49
1989
+ #: app/skins/timetable/render.php:44 app/skins/timetable/render.php:111
1990
+ #: app/skins/weekly_view/render.php:37 app/skins/yearly_view/render.php:53
1991
+ msgid "Canceled"
1992
+ msgstr "Abgesagt"
1993
+
1994
+ #: app/features/ix.php:403
1995
+ #, fuzzy
1996
+ #| msgid "The events are imported successfully!"
1997
+ msgid "The bookings are imported successfully!"
1998
+ msgstr "Die Events wurden erfolgreich importiert!"
1999
+
2000
+ #: app/features/ix.php:411
2001
+ msgid "Please upload the feed file."
2002
+ msgstr ""
2003
+
2004
+ #: app/features/ix.php:414
2005
+ msgid "The file type should be XML or ICS."
2006
+ msgstr "Der Datei Typ muss XML oder ICS sein."
2007
+
2008
+ #: app/features/ix.php:431
2009
  msgid "The events are imported successfully!"
2010
  msgstr "Die Events wurden erfolgreich importiert!"
2011
 
2012
+ #: app/features/ix.php:1156
2013
  msgid "Third Party plugin is not installed and activated!"
2014
  msgstr "Drittanbieter-Plugin ist nicht installiert und aktiviert!"
2015
 
2016
+ #: app/features/ix.php:1179
2017
  msgid "Third Party plugin is invalid!"
2018
  msgstr "Drittanbieter-Plugin ist ungültig!"
2019
 
2020
+ #: app/features/ix.php:2930 app/features/ix.php:2988
2021
  #, fuzzy
2022
  #| msgid "Both of API key and Calendar ID are required!"
2023
  msgid "API key and Calendar ID are required!"
2024
  msgstr "Beide, API Schlüssel und Calender ID wird benötigt"
2025
 
2026
+ #: app/features/ix.php:2983 app/features/ix.php:3402 app/features/ix.php:4143
2027
  #, fuzzy
2028
  #| msgid "Please select some events to import!"
2029
  msgid "Please select events to import!"
2030
  msgstr "Bitte wählen Sie einige Veranstaltungen aus zum importieren"
2031
 
2032
+ #: app/features/ix.php:3344 app/features/ix.php:3407
2033
  #, fuzzy
2034
  #| msgid "Both of API key and Calendar ID are required!"
2035
  msgid "API key and Group URL are required!"
2036
  msgstr "Beide, API Schlüssel und Calender ID wird benötigt"
2037
 
2038
+ #: app/features/ix.php:3646
2039
  msgid "Check at Meetup"
2040
  msgstr ""
2041
 
2042
+ #: app/features/ix.php:3719 app/features/ix.php:3760
2043
  msgid "Organizer Tel"
2044
  msgstr "Organisator Telefon"
2045
 
2046
+ #: app/features/ix.php:3719 app/features/ix.php:3760
2047
  msgid "Organizer Email"
2048
  msgstr "Organisator Email"
2049
 
2050
+ #: app/features/ix.php:3835
2051
  #, fuzzy
2052
  #| msgid "All of Client ID, Client Secret and Calendar ID are required!"
2053
  msgid "All of Client ID, Client Secret, and Calendar ID are required!"
2054
  msgstr "Dies wird alles benötigt: Client ID, Client Secret und Calender ID!"
2055
 
2056
+ #: app/features/ix.php:3858
2057
  #, fuzzy, php-format
2058
  #| msgid "All seems good! Please click %s for authenticating your app."
2059
  msgid "All seems good! Please click %s to authenticate your app."
2060
  msgstr ""
2061
  "Alles scheint gut zu sein! Bitte klicken %s um Ihre App zu authentifizieren."
2062
 
2063
+ #: app/features/ix.php:3858
2064
  msgid "here"
2065
  msgstr ""
2066
 
2067
+ #: app/features/ix.php:3912
2068
  #, fuzzy
2069
  #| msgid "All of Client App, Client Secret and Calendar ID are required!"
2070
  msgid "Client App, Client Secret, and Calendar ID are all required!"
2071
  msgstr "Dies wird alles benötigt: Client ID, Client Secret und Calender ID!"
2072
 
2073
+ #: app/features/ix.php:4065
2074
  #, fuzzy, php-format
2075
  #| msgid "%s events added to Google Calendar successfully."
2076
  msgid "%s events added to Google Calendar with success."
2077
  msgstr "%s Events wurden erfolgreich zum Google Kalender hinzugefügt."
2078
 
2079
+ #: app/features/ix.php:4066
2080
  #, fuzzy, php-format
2081
  #| msgid "%s previously added events get updated."
2082
  msgid "%s Updated previously added events."
2083
  msgstr "%s vorherige hinzugefügte Events wurden aktualisiert."
2084
 
2085
+ #: app/features/ix.php:4067
2086
  #, php-format
2087
  msgid "%s events failed to add for following reasons: %s"
2088
  msgstr "%s Events wurde aus folgenden Gründen nicht hinzugefügt: %s"
2089
 
2090
+ #: app/features/ix.php:4099
2091
  #, fuzzy
2092
  #| msgid "Please insert your facebook page's link."
2093
  msgid "Please insert your Facebook page's link."
2094
  msgstr "Bitte Ihren Facebook Seitenlink eingeben."
2095
 
2096
+ #: app/features/ix.php:4110 app/features/ix.php:4152
2097
  #, fuzzy
2098
  #| msgid ""
2099
  #| "We couldn't recognize your Facebook page. Please check it and provide us "
2105
  "Wir konnten Ihre Facebookseite nicht erkennen. Bitte checken Sie das und "
2106
  "stellen Sie uns einen gültigen Facebookseitenlink zur Verfügung."
2107
 
2108
+ #: app/features/ix.php:4147
2109
  msgid "Please insert your facebook page's link."
2110
  msgstr "Bitte Ihren Facebook Seitenlink eingeben."
2111
 
2272
  #: app/features/ix/export_g_calendar.php:72
2273
  #: app/features/ix/export_g_calendar.php:151
2274
  #: app/features/ix/export_g_calendar.php:166
2275
+ #: app/features/mec/notifications.php:139
2276
+ #: app/features/mec/notifications.php:241
2277
+ #: app/features/mec/notifications.php:356
2278
+ #: app/features/mec/notifications.php:703
2279
  msgid "Add to Google Calendar"
2280
  msgstr "Zum Google Kalender hinzufügen"
2281
 
2282
+ #: app/features/ix/export_g_calendar.php:93 app/features/mec/booking.php:850
2283
+ #: app/features/mec/modules.php:403 app/features/mec/notifications.php:990
2284
  #: app/features/mec/settings.php:1162 app/features/mec/single.php:388
2285
  msgid "Checking ..."
2286
  msgstr "Überprüfung"
2305
  msgstr ""
2306
 
2307
  #: app/features/ix/import.php:29 app/features/ix/import.php:42
2308
+ #: app/features/ix/import.php:59
2309
  msgid "Upload & Import"
2310
  msgstr "Hochladen & Importieren"
2311
 
2324
  msgid "ICS Feed"
2325
  msgstr ""
2326
 
2327
+ #: app/features/ix/import.php:46 app/features/ix/import.php:63
2328
+ #: app/features/mec/booking.php:99 app/features/mec/booking.php:355
2329
+ #: app/features/mec/booking.php:371 app/features/mec/booking.php:389
2330
+ #: app/features/mec/booking.php:466
2331
  #: app/features/mec/meta_boxes/display_options.php:214
2332
  #: app/features/mec/meta_boxes/display_options.php:467
2333
  #: app/features/mec/modules.php:69 app/features/mec/modules.php:211
2336
  msgid "%s is required to use this feature."
2337
  msgstr ""
2338
 
2339
+ #: app/features/ix/import.php:46 app/features/ix/import.php:63
2340
+ #: app/features/ix/sync.php:22 app/features/mec/booking.php:99
2341
+ #: app/features/mec/booking.php:355 app/features/mec/booking.php:371
2342
+ #: app/features/mec/booking.php:389 app/features/mec/booking.php:466
2343
  #: app/features/mec/meta_boxes/display_options.php:214
2344
  #: app/features/mec/meta_boxes/display_options.php:467
2345
  #: app/features/mec/meta_boxes/display_options.php:508
2354
  msgid "Pro version of Modern Events Calendar"
2355
  msgstr "Pro Version vom Modernen Event Calendar"
2356
 
2357
+ #: app/features/ix/import.php:49
2358
+ #, fuzzy
2359
+ #| msgid "Booking"
2360
+ msgid "Import Booking CSV File"
2361
+ msgstr "Buchung / Reservierung"
2362
+
2363
+ #: app/features/ix/import.php:53
2364
+ #, php-format
2365
+ msgid ""
2366
+ "You can export bookings from %s using the booking menu in source website. "
2367
+ "You need a CSV export and then you're able to simply import it using this "
2368
+ "form in to your target website."
2369
+ msgstr ""
2370
+
2371
+ #: app/features/ix/import.php:54
2372
+ msgid ""
2373
+ "Please note that you should create (or imports) events and tickets before "
2374
+ "importing the bookings otherwise booking won't import due to lack of data."
2375
+ msgstr ""
2376
+
2377
+ #: app/features/ix/import.php:57
2378
+ #, fuzzy
2379
+ #| msgid "File"
2380
+ msgid "CSV File"
2381
+ msgstr "Datei"
2382
+
2383
  #: app/features/ix/import_f_calendar.php:22
2384
  msgid "The Facebook SDK requires PHP version 5.4 or higher."
2385
  msgstr "Facebook SDK benötigt PHP version 5.4. oder höher"
2578
 
2579
  #: app/features/ix/sync.php:32 app/features/ix/sync.php:41
2580
  #: app/features/ix/sync.php:52 app/features/ix/sync.php:63
2581
+ #: app/features/mec/notifications.php:599
2582
  msgid "Important Note"
2583
  msgstr "Important Note"
2584
 
2780
  msgid "Featured"
2781
  msgstr "Vorgeschlagen"
2782
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2783
  #: app/features/labels.php:120 app/features/labels.php:145
2784
  msgid "You can show featured and canceled events by a different style!"
2785
  msgstr ""
2802
 
2803
  #: app/features/locations.php:59 app/features/mec.php:463
2804
  #: app/features/mec/dashboard.php:273 app/features/mec/meta_boxes/filter.php:70
2805
+ #: app/features/mec/meta_boxes/filter.php:97 app/libraries/main.php:5921
2806
+ #: app/libraries/main.php:5969
2807
  msgid "Locations"
2808
  msgstr "Orte"
2809
 
2940
  msgid "Don't show map in single event page"
2941
  msgstr "Karte in Einzelansicht nicht anzeigen"
2942
 
2943
+ #: app/features/locations.php:396 app/libraries/main.php:5955
2944
+ #: app/libraries/main.php:6000
2945
  msgid "Other Locations"
2946
  msgstr "Andere Orte"
2947
 
3025
  #: app/features/mec.php:464 app/features/mec/dashboard.php:280
3026
  #: app/features/mec/meta_boxes/filter.php:71
3027
  #: app/features/mec/meta_boxes/filter.php:115 app/features/organizers.php:59
3028
+ #: app/libraries/main.php:5923 app/libraries/main.php:5971
3029
  msgid "Organizers"
3030
  msgstr "Veranstalter"
3031
 
3219
  msgstr ""
3220
 
3221
  #: app/features/mec/booking.php:78 app/features/mec/messages.php:13
3222
+ #: app/features/mec/modules.php:23 app/features/mec/notifications.php:12
3223
  #: app/features/mec/settings.php:34 app/features/mec/single.php:19
3224
  #: app/features/mec/styling.php:35
3225
  msgid "Search..."
3226
  msgstr "Suche…"
3227
 
3228
+ #: app/features/mec/booking.php:80 app/features/mec/booking.php:694
3229
+ #: app/features/mec/booking.php:766 app/features/mec/booking.php:775
3230
+ #: app/features/mec/booking.php:785 app/features/mec/booking.php:867
3231
+ #: app/features/mec/booking.php:881 app/features/mec/messages.php:15
3232
  #: app/features/mec/messages.php:51 app/features/mec/messages.php:60
3233
  #: app/features/mec/messages.php:94 app/features/mec/messages.php:103
3234
+ #: app/features/mec/modules.php:25 app/features/mec/modules.php:368
3235
+ #: app/features/mec/modules.php:378 app/features/mec/modules.php:420
3236
+ #: app/features/mec/modules.php:434 app/features/mec/notifications.php:14
 
3237
  #: app/features/mec/notifications.php:897
3238
+ #: app/features/mec/notifications.php:909
3239
+ #: app/features/mec/notifications.php:1007
3240
+ #: app/features/mec/notifications.php:1021 app/features/mec/settings.php:36
3241
  #: app/features/mec/settings.php:1111 app/features/mec/settings.php:1121
3242
  #: app/features/mec/settings.php:1179 app/features/mec/settings.php:1193
3243
  #: app/features/mec/single.php:21 app/features/mec/single.php:353
3442
  "starting the event!"
3443
  msgstr ""
3444
 
3445
+ #: app/features/mec/booking.php:171 app/features/mec/booking.php:185
3446
+ #, fuzzy
3447
+ #| msgid "Cancellation Date"
3448
+ msgid "Cancellation Period"
3449
+ msgstr "Datum Stornierung"
3450
+
3451
+ #: app/features/mec/booking.php:173
3452
+ msgid "e.g 5"
3453
+ msgstr ""
3454
+
3455
+ #: app/features/mec/booking.php:174
3456
+ msgid "Period"
3457
+ msgstr ""
3458
+
3459
+ #: app/features/mec/booking.php:175
3460
+ #, fuzzy
3461
+ #| msgid "Hour"
3462
+ msgid "Hour(s)"
3463
+ msgstr "Stunde"
3464
+
3465
+ #: app/features/mec/booking.php:176
3466
+ msgid "Day(s)"
3467
+ msgstr ""
3468
+
3469
+ #: app/features/mec/booking.php:178
3470
+ #, fuzzy
3471
+ #| msgid "Type 1"
3472
+ msgid "Type"
3473
+ msgstr "Typ 1"
3474
+
3475
+ #: app/features/mec/booking.php:179
3476
+ #, fuzzy
3477
+ #| msgid "Before $10"
3478
+ msgid "Before"
3479
+ msgstr "Vor €10"
3480
+
3481
+ #: app/features/mec/booking.php:182
3482
+ #, fuzzy
3483
+ #| msgid "On Event Start"
3484
+ msgid "Event Start"
3485
+ msgstr "Am Event Start"
3486
+
3487
+ #: app/features/mec/booking.php:186
3488
+ msgid ""
3489
+ "You can restrict the ability to cancel bookings. Leave empty for "
3490
+ "cancellation at any time. For example if you insert 5 hours before event "
3491
+ "start then bookers are able to cancel their booking before this time and "
3492
+ "after that they're not able to do that."
3493
+ msgstr ""
3494
+
3495
+ #: app/features/mec/booking.php:193 app/features/mec/booking.php:203
3496
  #: app/features/mec/settings.php:639 app/features/mec/settings.php:649
3497
  msgid "Thank You Page"
3498
  msgstr "Danke Seite"
3499
 
3500
+ #: app/features/mec/booking.php:204
3501
  msgid ""
3502
  "User redirects to this page after booking. Leave it empty if you want to "
3503
  "disable it."
3505
  "Benutzer werden auf diese Seite nach der Buchung weitergeleitet. Lassen Sie "
3506
  "es leer, wenn Sie es deaktivieren möchten."
3507
 
3508
+ #: app/features/mec/booking.php:211 app/features/mec/booking.php:216
3509
  #: app/features/mec/settings.php:659 app/features/mec/settings.php:664
3510
  msgid "Thank You Page Time Interval"
3511
  msgstr "Dauer bis zur Weiterleitung auf die Danke Seite"
3512
 
3513
+ #: app/features/mec/booking.php:213 app/features/mec/settings.php:661
3514
  msgid "2000 mean 2 seconds"
3515
  msgstr "2000 bedeutet 2 Sekunden"
3516
 
3517
+ #: app/features/mec/booking.php:217 app/features/mec/settings.php:665
3518
  msgid ""
3519
  "Waiting time before redirecting to thank you page. It's in miliseconds so "
3520
  "2000 means 2 seconds."
3521
  msgstr ""
3522
 
3523
+ #: app/features/mec/booking.php:224 app/features/mec/booking.php:234
3524
  #, fuzzy
3525
  #| msgid "User Profile"
3526
  msgid "User Role"
3527
  msgstr "Benutzer Profil"
3528
 
3529
+ #: app/features/mec/booking.php:235
3530
  msgid ""
3531
  "MEC creates a user for main attendee after each booking. Default role of the "
3532
  "user is subscriber but you can change it if needed."
3533
  msgstr ""
3534
 
3535
+ #: app/features/mec/booking.php:246
3536
  msgid "Enable Express Attendees Form"
3537
  msgstr "Aktivieren Sie das Express-Teilnehmerformular"
3538
 
3539
+ #: app/features/mec/booking.php:250
3540
  msgid "Attendees Form"
3541
  msgstr "Teilnahmeformular"
3542
 
3543
+ #: app/features/mec/booking.php:251
3544
  msgid ""
3545
  "Apply the info from the first attendee to all purchased ticket by that user. "
3546
  "Uncheck if you want every ticket to have its own attendee’s info."
3547
  msgstr ""
3548
 
3549
+ #: app/features/mec/booking.php:264
3550
  msgid "Enable Invoice"
3551
  msgstr "Rechnungen aktivieren"
3552
 
3553
+ #: app/features/mec/booking.php:275
3554
  msgid "Enable Booking for Ongoing Events"
3555
  msgstr "Aktiviere Buchung für bereits laufende Events"
3556
 
3557
+ #: app/features/mec/booking.php:286
3558
  msgid "Enable Downloadable File"
3559
  msgstr ""
3560
 
3561
+ #: app/features/mec/booking.php:291
3562
  msgid ""
3563
  "By enabling this feature, You can upload a file for each event and bookers "
3564
  "are able to download it after booking."
3565
  msgstr ""
3566
 
3567
+ #: app/features/mec/booking.php:298
3568
  msgid "Email verification"
3569
  msgstr "Email-Verifizierung"
3570
 
3571
+ #: app/features/mec/booking.php:304
3572
  msgid "Auto verification for free bookings"
3573
  msgstr "Automatische Verifizierung für kostenlose Buchungen"
3574
 
3575
+ #: app/features/mec/booking.php:313
3576
  msgid "Auto verification for paid bookings"
3577
  msgstr "Automatische Verifizierung für kostenpflichtige Buchungen"
3578
 
3579
+ #: app/features/mec/booking.php:317 app/features/mec/notifications.php:249
3580
  #: app/features/notifications.php:144 app/libraries/main.php:590
3581
  msgid "Booking Confirmation"
3582
  msgstr "Buchungsbestätigung"
3583
 
3584
+ #: app/features/mec/booking.php:323
3585
  msgid "Auto confirmation for free bookings"
3586
  msgstr "Automatische Bestätigung für kostenlose Buchungen"
3587
 
3588
+ #: app/features/mec/booking.php:332
3589
  msgid "Auto confirmation for paid bookings"
3590
  msgstr "Automatische Bestätigung für kostenpflichtige Buchungen"
3591
 
3592
+ #: app/features/mec/booking.php:341
3593
  msgid "Send confirmation email in auto confirmation mode"
3594
  msgstr ""
3595
 
3596
+ #: app/features/mec/booking.php:352 app/libraries/main.php:560
3597
  #, fuzzy
3598
  #| msgid "Booking"
3599
  msgid "Booking Shortcode"
3600
  msgstr "Buchung / Reservierung"
3601
 
3602
+ #: app/features/mec/booking.php:360
3603
  #, php-format
3604
  msgid ""
3605
  "Booking module is available in the event details page but if you like to "
3608
  "into the page content and place the event id instead of 1."
3609
  msgstr ""
3610
 
3611
+ #: app/features/mec/booking.php:361
3612
  #, php-format
3613
  msgid ""
3614
  "Also, you can insert %s if you like to show only one of the available "
3616
  "This parameter is optional."
3617
  msgstr ""
3618
 
3619
+ #: app/features/mec/booking.php:376
3620
  msgid "Enable coupons module"
3621
  msgstr "Gutscheinmodul aktivieren"
3622
 
3623
+ #: app/features/mec/booking.php:378
3624
  msgid ""
3625
  "After enabling and saving the settings, you should reload the page to see a "
3626
  "new menu on the Dashboard > Booking"
3627
  msgstr ""
3628
 
3629
+ #: app/features/mec/booking.php:386 app/libraries/main.php:562
3630
  msgid "Taxes / Fees"
3631
  msgstr "Steuern/Gebühren"
3632
 
3633
+ #: app/features/mec/booking.php:394
3634
  msgid "Enable taxes / fees module"
3635
  msgstr "Modul für Gebühren/Steuern aktivieren"
3636
 
3637
+ #: app/features/mec/booking.php:399
3638
  msgid "Add Fee"
3639
  msgstr "Gebühr hinzufügen"
3640
 
3641
+ #: app/features/mec/booking.php:463 app/libraries/main.php:563
3642
  msgid "Ticket Variations & Options"
3643
  msgstr ""
3644
 
3645
+ #: app/features/mec/booking.php:471
3646
  msgid "Enable ticket options module"
3647
  msgstr "Ticket Optionen aktivieren"
3648
 
3649
+ #: app/features/mec/booking.php:476
3650
  msgid "Add Variation / Option"
3651
  msgstr ""
3652
 
3653
+ #: app/features/mec/booking.php:753
3654
  msgid "Enable Organizer Payment Module"
3655
  msgstr ""
3656
 
3657
+ #: app/features/mec/booking.php:758
3658
  msgid ""
3659
  "By enabling this module, organizers are able to insert their own payment "
3660
  "credentials for enabled gateways per event and receive the payments directly!"
3661
  msgstr ""
3662
 
3663
+ #: app/features/mec/booking.php:845 app/features/mec/messages.php:78
3664
+ #: app/features/mec/modules.php:398 app/features/mec/notifications.php:985
3665
  #: app/features/mec/settings.php:1157 app/features/mec/single.php:383
3666
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:311
3667
  msgid "Saved"
3668
  msgstr "Gesichert"
3669
 
3670
+ #: app/features/mec/booking.php:846 app/features/mec/messages.php:79
3671
+ #: app/features/mec/modules.php:399 app/features/mec/notifications.php:986
3672
  #: app/features/mec/settings.php:1158 app/features/mec/single.php:384
3673
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:312
3674
  msgid "Settings Saved!"
3675
  msgstr "Einstellungen gespeichert!"
3676
 
3677
+ #: app/features/mec/booking.php:872 app/features/mec/modules.php:425
3678
+ #: app/features/mec/notifications.php:1012 app/features/mec/settings.php:1184
 
 
 
 
 
 
 
 
 
3679
  #: app/features/mec/single.php:410
3680
  msgid "Please Refresh Page"
3681
  msgstr "Bitte Seiten Refresh vornehmen"
4845
  #: app/features/mec/meta_boxes/search_form.php:782
4846
  #: app/features/mec/settings.php:904 app/features/mec/single.php:336
4847
  #: app/features/search.php:86 app/features/speakers.php:61
4848
+ #: app/features/speakers.php:269 app/libraries/main.php:5926
4849
+ #: app/libraries/main.php:5974 app/libraries/skins.php:1021
4850
  #: app/modules/speakers/details.php:18
4851
  msgid "Speaker"
4852
  msgstr "Sprecher"
4863
  #: app/features/mec/meta_boxes/search_form.php:683
4864
  #: app/features/mec/meta_boxes/search_form.php:789
4865
  #: app/features/mec/settings.php:911 app/features/mec/single.php:345
4866
+ #: app/features/search.php:92 app/libraries/skins.php:1047
4867
  msgid "Tag"
4868
  msgstr "Schlagwort"
4869
 
5166
  msgid "Add booking activity to user profile"
5167
  msgstr "Fügt Buchungsaktivitäten dem Benutzerprofil hinzu"
5168
 
5169
+ #: app/features/mec/notifications.php:38
 
 
 
 
 
 
 
 
 
 
 
 
5170
  msgid "Enable booking notification"
5171
  msgstr "Buchungsbenachrichtigung aktivieren"
5172
 
5173
+ #: app/features/mec/notifications.php:42
5174
  #, fuzzy
5175
  #| msgid "It sends to attendee after booking for notifying him/her."
5176
  msgid "Sent to attendee after booking to notify them."
5178
  "Wird an den Teilnehmer in Anschluss an die Buchung versendet, um Ihn/Sie zu "
5179
  "benachrichtigen."
5180
 
5181
+ #: app/features/mec/notifications.php:44 app/features/mec/notifications.php:150
5182
+ #: app/features/mec/notifications.php:260
5183
+ #: app/features/mec/notifications.php:375
5184
+ #: app/features/mec/notifications.php:491
5185
+ #: app/features/mec/notifications.php:602
5186
+ #: app/features/mec/notifications.php:728
5187
+ #: app/features/mec/notifications.php:812 app/features/mec/report.php:54
5188
  #: app/features/notifications.php:72
5189
  msgid "Email Subject"
5190
  msgstr "Email Betreff"
5191
 
5192
+ #: app/features/mec/notifications.php:50 app/features/mec/notifications.php:57
5193
+ #: app/features/mec/notifications.php:156
5194
+ #: app/features/mec/notifications.php:163
5195
+ #: app/features/mec/notifications.php:266
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5196
  #: app/features/mec/notifications.php:273
5197
+ #: app/features/mec/notifications.php:381
5198
  #: app/features/mec/notifications.php:388
5199
+ #: app/features/mec/notifications.php:497
5200
  #: app/features/mec/notifications.php:504
5201
+ #: app/features/mec/notifications.php:608
5202
  #: app/features/mec/notifications.php:615
5203
+ #: app/features/mec/notifications.php:734
5204
  #: app/features/mec/notifications.php:741
5205
+ #: app/features/mec/notifications.php:818
5206
  #: app/features/mec/notifications.php:825
5207
+ msgid "Receiver Users"
5208
  msgstr ""
5209
 
5210
+ #: app/features/mec/notifications.php:58 app/features/mec/notifications.php:164
5211
+ #: app/features/mec/notifications.php:274
5212
+ #: app/features/mec/notifications.php:389
5213
+ #: app/features/mec/notifications.php:505
5214
+ #: app/features/mec/notifications.php:616
5215
+ #: app/features/mec/notifications.php:742
5216
+ #: app/features/mec/notifications.php:826
5217
+ msgid "Select users to send a copy of email to them!"
 
 
 
 
 
 
 
 
5218
  msgstr ""
5219
 
5220
+ #: app/features/mec/notifications.php:67 app/features/mec/notifications.php:74
5221
+ #: app/features/mec/notifications.php:173
5222
+ #: app/features/mec/notifications.php:180
5223
+ #: app/features/mec/notifications.php:283
5224
  #: app/features/mec/notifications.php:290
5225
+ #: app/features/mec/notifications.php:398
5226
  #: app/features/mec/notifications.php:405
5227
+ #: app/features/mec/notifications.php:514
5228
  #: app/features/mec/notifications.php:521
5229
+ #: app/features/mec/notifications.php:625
5230
  #: app/features/mec/notifications.php:632
5231
+ #: app/features/mec/notifications.php:751
5232
  #: app/features/mec/notifications.php:758
5233
+ #: app/features/mec/notifications.php:835
5234
  #: app/features/mec/notifications.php:842
5235
+ msgid "Receiver Roles"
5236
  msgstr ""
5237
 
5238
+ #: app/features/mec/notifications.php:75 app/features/mec/notifications.php:181
5239
+ #: app/features/mec/notifications.php:291
5240
+ #: app/features/mec/notifications.php:406
5241
+ #: app/features/mec/notifications.php:522
5242
+ #: app/features/mec/notifications.php:633
5243
+ #: app/features/mec/notifications.php:759
5244
+ #: app/features/mec/notifications.php:843
5245
+ msgid "Select users a specific role."
5246
+ msgstr ""
 
 
 
 
 
 
 
 
5247
 
5248
+ #: app/features/mec/notifications.php:83 app/features/mec/notifications.php:87
5249
+ #: app/features/mec/notifications.php:189
5250
+ #: app/features/mec/notifications.php:193
5251
+ #: app/features/mec/notifications.php:299
5252
  #: app/features/mec/notifications.php:303
5253
+ #: app/features/mec/notifications.php:414
5254
  #: app/features/mec/notifications.php:418
5255
+ #: app/features/mec/notifications.php:530
5256
  #: app/features/mec/notifications.php:534
5257
+ #: app/features/mec/notifications.php:641
5258
  #: app/features/mec/notifications.php:645
5259
+ #: app/features/mec/notifications.php:767
5260
  #: app/features/mec/notifications.php:771
5261
+ #: app/features/mec/notifications.php:851
5262
  #: app/features/mec/notifications.php:855
5263
+ msgid "Custom Recipients"
5264
+ msgstr "Individuelle Empfänger"
5265
+
5266
+ #: app/features/mec/notifications.php:88 app/features/mec/notifications.php:194
5267
+ #: app/features/mec/notifications.php:304
5268
+ #: app/features/mec/notifications.php:419
5269
+ #: app/features/mec/notifications.php:535
5270
+ #: app/features/mec/notifications.php:646
5271
+ #: app/features/mec/notifications.php:772
5272
+ #: app/features/mec/notifications.php:856
5273
  msgid "Insert comma separated emails for multiple recipients."
5274
  msgstr "Geben Sie mit Komma getrennte email-Adressen ein für mehrere Empfänger"
5275
 
5276
+ #: app/features/mec/notifications.php:95 app/features/mec/notifications.php:430
5277
+ #: app/features/mec/notifications.php:542
5278
  msgid "Send the email to event organizer"
5279
  msgstr "Sendet das Email zum Event Organisator"
5280
 
5281
+ #: app/features/mec/notifications.php:98 app/features/mec/notifications.php:200
5282
+ #: app/features/mec/notifications.php:314
5283
+ #: app/features/mec/notifications.php:437
5284
+ #: app/features/mec/notifications.php:545
5285
+ #: app/features/mec/notifications.php:663
5286
+ #: app/features/mec/notifications.php:778
5287
+ #: app/features/mec/notifications.php:862 app/features/notifications.php:80
5288
  msgid "Email Content"
5289
  msgstr "Email Inhalt"
5290
 
5291
+ #: app/features/mec/notifications.php:101
5292
+ #: app/features/mec/notifications.php:203
5293
+ #: app/features/mec/notifications.php:317
5294
+ #: app/features/mec/notifications.php:440
5295
+ #: app/features/mec/notifications.php:548
5296
+ #: app/features/mec/notifications.php:666
5297
+ #: app/features/mec/notifications.php:781
5298
+ #: app/features/mec/notifications.php:865 app/features/mec/report.php:56
5299
  #, fuzzy
5300
  #| msgid "You can use following placeholders"
5301
  msgid "You can use the following placeholders"
5302
  msgstr "Sie können die folgenden Platzhalter wählen"
5303
 
 
 
 
 
 
 
 
 
 
5304
  #: app/features/mec/notifications.php:103
5305
  #: app/features/mec/notifications.php:205
5306
  #: app/features/mec/notifications.php:319
5307
  #: app/features/mec/notifications.php:442
5308
  #: app/features/mec/notifications.php:550
5309
+ #: app/features/mec/notifications.php:668 app/features/notifications.php:91
5310
+ msgid "First name of attendee"
5311
+ msgstr "Vorname des Teilnehmers"
5312
 
5313
  #: app/features/mec/notifications.php:104
5314
  #: app/features/mec/notifications.php:206
5315
  #: app/features/mec/notifications.php:320
5316
  #: app/features/mec/notifications.php:443
5317
  #: app/features/mec/notifications.php:551
5318
+ #: app/features/mec/notifications.php:669 app/features/notifications.php:92
5319
+ msgid "Last name of attendee"
5320
+ msgstr "Nachname des Teilnehmers"
5321
 
5322
  #: app/features/mec/notifications.php:105
5323
  #: app/features/mec/notifications.php:207
5324
  #: app/features/mec/notifications.php:321
5325
  #: app/features/mec/notifications.php:444
5326
  #: app/features/mec/notifications.php:552
5327
+ #: app/features/mec/notifications.php:670 app/features/notifications.php:93
5328
+ msgid "Email of attendee"
5329
+ msgstr "Email des Teilnehmers"
5330
 
5331
  #: app/features/mec/notifications.php:106
5332
  #: app/features/mec/notifications.php:208
5333
  #: app/features/mec/notifications.php:322
5334
  #: app/features/mec/notifications.php:445
5335
  #: app/features/mec/notifications.php:553
5336
+ #: app/features/mec/notifications.php:671 app/features/notifications.php:94
5337
+ msgid "Booked date of event"
5338
+ msgstr "Gebuchtes Datum der Veranstaltung"
5339
 
5340
  #: app/features/mec/notifications.php:107
5341
  #: app/features/mec/notifications.php:209
5342
  #: app/features/mec/notifications.php:323
5343
  #: app/features/mec/notifications.php:446
5344
  #: app/features/mec/notifications.php:554
5345
+ #: app/features/mec/notifications.php:672 app/features/notifications.php:95
5346
+ msgid "Booked time of event"
5347
+ msgstr "Gebuchte Zeit der Veranstaltung"
 
 
5348
 
5349
  #: app/features/mec/notifications.php:108
5350
  #: app/features/mec/notifications.php:210
5351
  #: app/features/mec/notifications.php:324
5352
  #: app/features/mec/notifications.php:447
5353
  #: app/features/mec/notifications.php:555
5354
+ #: app/features/mec/notifications.php:673 app/features/notifications.php:96
5355
+ #, fuzzy
5356
+ #| msgid "Booked date of event"
5357
+ msgid "Booked date and time of event"
5358
+ msgstr "Gebuchtes Datum der Veranstaltung"
5359
 
5360
  #: app/features/mec/notifications.php:109
5361
  #: app/features/mec/notifications.php:211
5362
  #: app/features/mec/notifications.php:325
5363
  #: app/features/mec/notifications.php:448
5364
  #: app/features/mec/notifications.php:556
5365
+ #: app/features/mec/notifications.php:674 app/features/notifications.php:97
5366
+ msgid "Booking Price"
5367
+ msgstr "Buchungspreis"
 
 
5368
 
5369
  #: app/features/mec/notifications.php:110
5370
  #: app/features/mec/notifications.php:212
5371
  #: app/features/mec/notifications.php:326
5372
  #: app/features/mec/notifications.php:449
5373
  #: app/features/mec/notifications.php:557
5374
+ #: app/features/mec/notifications.php:675 app/features/notifications.php:98
5375
+ #, fuzzy
5376
+ #| msgid "Date and time of placing booking"
5377
+ msgid "Date and time of booking"
5378
+ msgstr "Datum und Uhrzeit der Buchung"
5379
 
5380
  #: app/features/mec/notifications.php:111
5381
  #: app/features/mec/notifications.php:213
5384
  #: app/features/mec/notifications.php:558
5385
  #: app/features/mec/notifications.php:676
5386
  #: app/features/mec/notifications.php:789
5387
+ #: app/features/mec/notifications.php:873 app/features/notifications.php:99
5388
+ msgid "Your website title"
5389
+ msgstr "Titel Ihrer Webseite"
5390
 
5391
  #: app/features/mec/notifications.php:112
5392
  #: app/features/mec/notifications.php:214
5395
  #: app/features/mec/notifications.php:559
5396
  #: app/features/mec/notifications.php:677
5397
  #: app/features/mec/notifications.php:790
5398
+ #: app/features/mec/notifications.php:874 app/features/notifications.php:100
5399
+ msgid "Your website URL"
5400
+ msgstr "URL Ihrer Webseite"
5401
 
5402
  #: app/features/mec/notifications.php:113
5403
  #: app/features/mec/notifications.php:215
5404
  #: app/features/mec/notifications.php:329
5405
  #: app/features/mec/notifications.php:452
5406
  #: app/features/mec/notifications.php:560
5407
+ #: app/features/mec/notifications.php:678
5408
+ #: app/features/mec/notifications.php:791
5409
+ #: app/features/mec/notifications.php:875 app/features/notifications.php:101
5410
+ msgid "Your website description"
5411
+ msgstr "Beschreibung Ihrer Webseite"
5412
 
5413
  #: app/features/mec/notifications.php:114
5414
  #: app/features/mec/notifications.php:216
5415
  #: app/features/mec/notifications.php:330
5416
  #: app/features/mec/notifications.php:453
5417
  #: app/features/mec/notifications.php:561
5418
+ #: app/features/mec/notifications.php:679 app/features/notifications.php:102
5419
+ msgid "Event title"
5420
+ msgstr "Titel der Veranstaltung"
5421
 
5422
  #: app/features/mec/notifications.php:115
5423
  #: app/features/mec/notifications.php:217
5424
  #: app/features/mec/notifications.php:331
5425
+ #: app/features/mec/notifications.php:454
5426
+ #: app/features/mec/notifications.php:562
5427
+ #: app/features/mec/notifications.php:680 app/features/notifications.php:103
5428
+ msgid "Event link"
5429
+ msgstr "Veranstaltungslink"
5430
 
5431
  #: app/features/mec/notifications.php:116
5432
  #: app/features/mec/notifications.php:218
5433
  #: app/features/mec/notifications.php:332
5434
  #: app/features/mec/notifications.php:785
5435
+ #: app/features/mec/notifications.php:869 app/features/notifications.php:124
5436
+ msgid "Event Start Date"
5437
+ msgstr "Event Start Datum "
5438
 
5439
  #: app/features/mec/notifications.php:117
5440
  #: app/features/mec/notifications.php:219
5441
  #: app/features/mec/notifications.php:333
5442
+ #: app/features/mec/notifications.php:786
5443
+ #: app/features/mec/notifications.php:870 app/features/notifications.php:125
5444
+ msgid "Event End Date"
5445
+ msgstr "Event End Datum"
 
 
 
5446
 
5447
  #: app/features/mec/notifications.php:118
5448
  #: app/features/mec/notifications.php:220
5449
  #: app/features/mec/notifications.php:334
5450
  #: app/features/mec/notifications.php:455
5451
  #: app/features/mec/notifications.php:563
5452
+ #: app/features/mec/notifications.php:681 app/features/notifications.php:104
5453
+ #, fuzzy
5454
+ #| msgid "Organizer name of booked event"
5455
+ msgid "Speaker name of booked event"
5456
  msgstr "Name des Veranstalters des gebuchten Events"
5457
 
5458
  #: app/features/mec/notifications.php:119
5460
  #: app/features/mec/notifications.php:335
5461
  #: app/features/mec/notifications.php:456
5462
  #: app/features/mec/notifications.php:564
5463
+ #: app/features/mec/notifications.php:682 app/features/notifications.php:105
5464
+ msgid "Organizer name of booked event"
5465
+ msgstr "Name des Veranstalters des gebuchten Events"
5466
 
5467
  #: app/features/mec/notifications.php:120
5468
  #: app/features/mec/notifications.php:222
5469
  #: app/features/mec/notifications.php:336
5470
  #: app/features/mec/notifications.php:457
5471
  #: app/features/mec/notifications.php:565
5472
+ #: app/features/mec/notifications.php:683 app/features/notifications.php:106
5473
+ msgid "Organizer tel of booked event"
5474
+ msgstr "Tel des Veranstalters"
5475
 
5476
  #: app/features/mec/notifications.php:121
5477
  #: app/features/mec/notifications.php:223
5478
  #: app/features/mec/notifications.php:337
5479
  #: app/features/mec/notifications.php:458
5480
  #: app/features/mec/notifications.php:566
5481
+ #: app/features/mec/notifications.php:684 app/features/notifications.php:107
5482
+ msgid "Organizer email of booked event"
5483
+ msgstr "Email des Veranstalters des gebuchten events"
5484
 
5485
  #: app/features/mec/notifications.php:122
5486
  #: app/features/mec/notifications.php:224
5487
  #: app/features/mec/notifications.php:338
5488
  #: app/features/mec/notifications.php:459
5489
  #: app/features/mec/notifications.php:567
5490
+ #: app/features/mec/notifications.php:685 app/features/notifications.php:108
5491
+ msgid "Location name of booked event"
5492
+ msgstr "Veranstaltungsort"
5493
 
5494
  #: app/features/mec/notifications.php:123
5495
  #: app/features/mec/notifications.php:225
5496
  #: app/features/mec/notifications.php:339
5497
  #: app/features/mec/notifications.php:460
5498
  #: app/features/mec/notifications.php:568
5499
+ #: app/features/mec/notifications.php:686 app/features/notifications.php:109
5500
+ msgid "Location address of booked event"
5501
+ msgstr "Adresse der gebuchten Veranstaltung"
 
 
5502
 
5503
  #: app/features/mec/notifications.php:124
5504
  #: app/features/mec/notifications.php:226
5505
  #: app/features/mec/notifications.php:340
5506
  #: app/features/mec/notifications.php:461
5507
  #: app/features/mec/notifications.php:569
5508
+ #: app/features/mec/notifications.php:687 app/features/notifications.php:110
5509
  #, fuzzy
5510
+ #| msgid "Location name of booked event"
5511
+ msgid "Additional locations name of booked event"
5512
+ msgstr "Veranstaltungsort"
5513
 
5514
  #: app/features/mec/notifications.php:125
5515
  #: app/features/mec/notifications.php:227
5516
  #: app/features/mec/notifications.php:341
5517
  #: app/features/mec/notifications.php:462
5518
  #: app/features/mec/notifications.php:570
5519
+ #: app/features/mec/notifications.php:688 app/features/notifications.php:111
5520
+ #, fuzzy
5521
+ #| msgid "Location address of booked event"
5522
+ msgid "Additional locations address of booked event"
5523
+ msgstr "Adresse der gebuchten Veranstaltung"
5524
 
5525
  #: app/features/mec/notifications.php:126
5526
  #: app/features/mec/notifications.php:228
5527
  #: app/features/mec/notifications.php:342
5528
  #: app/features/mec/notifications.php:463
5529
  #: app/features/mec/notifications.php:571
5530
+ #: app/features/mec/notifications.php:689 app/features/notifications.php:112
5531
+ msgid "Featured image of booked event"
5532
+ msgstr "Vorschau Bild des gebuchten Events"
 
 
5533
 
5534
  #: app/features/mec/notifications.php:127
5535
  #: app/features/mec/notifications.php:229
5536
  #: app/features/mec/notifications.php:343
5537
  #: app/features/mec/notifications.php:464
5538
  #: app/features/mec/notifications.php:572
5539
+ #: app/features/mec/notifications.php:690 app/features/notifications.php:113
5540
+ msgid "Full Attendee info such as booking form data, name, email etc."
5541
+ msgstr ""
5542
+ "Gesamte Teinehmerinformationen wie z.B. Daten aus dem Buchungsformular, "
5543
+ "Name, email, etc."
5544
 
5545
  #: app/features/mec/notifications.php:128
5546
  #: app/features/mec/notifications.php:230
5547
  #: app/features/mec/notifications.php:344
5548
  #: app/features/mec/notifications.php:465
5549
  #: app/features/mec/notifications.php:573
5550
+ #: app/features/mec/notifications.php:691 app/features/notifications.php:114
5551
+ #, fuzzy
5552
+ #| msgid "Booking"
5553
+ msgid "Booking ID"
5554
+ msgstr "Buchung / Reservierung"
5555
+
5556
+ #: app/features/mec/notifications.php:129
5557
+ #: app/features/mec/notifications.php:231
5558
+ #: app/features/mec/notifications.php:345
5559
+ #: app/features/mec/notifications.php:466
5560
+ #: app/features/mec/notifications.php:574
5561
+ #: app/features/mec/notifications.php:692 app/features/notifications.php:115
5562
  #, fuzzy
5563
  #| msgid "Transaction ID"
5564
  msgid "Transaction ID of Booking"
5565
  msgstr "Transaktions-ID"
5566
 
 
 
 
 
 
 
5567
  #: app/features/mec/notifications.php:130
 
5568
  #: app/features/mec/notifications.php:347
5569
+ #: app/features/mec/notifications.php:694
5570
+ msgid "Invoice Link"
5571
+ msgstr "Rechnungslink"
 
 
 
 
5572
 
5573
  #: app/features/mec/notifications.php:131
5574
  #: app/features/mec/notifications.php:233
5575
  #: app/features/mec/notifications.php:348
5576
  #: app/features/mec/notifications.php:468
5577
  #: app/features/mec/notifications.php:576
5578
+ #: app/features/mec/notifications.php:695 app/features/notifications.php:117
5579
+ #, fuzzy
5580
+ #| msgid "There is no attendee for booking!"
5581
+ msgid "Total attendees of current booking"
5582
+ msgstr "Es gibt keinen Teilnehmer für die Buchung!"
5583
 
5584
  #: app/features/mec/notifications.php:132
5585
  #: app/features/mec/notifications.php:234
5586
  #: app/features/mec/notifications.php:349
5587
  #: app/features/mec/notifications.php:469
5588
  #: app/features/mec/notifications.php:577
5589
+ #: app/features/mec/notifications.php:696 app/features/notifications.php:118
5590
+ msgid "Amount of Booked Tickets (Total attendees of all bookings)"
5591
+ msgstr ""
5592
 
5593
  #: app/features/mec/notifications.php:133
5594
  #: app/features/mec/notifications.php:235
5595
  #: app/features/mec/notifications.php:350
5596
  #: app/features/mec/notifications.php:470
5597
  #: app/features/mec/notifications.php:578
5598
+ #: app/features/mec/notifications.php:697 app/features/notifications.php:119
5599
+ msgid "Ticket name"
5600
+ msgstr "Ticket Name"
5601
 
5602
  #: app/features/mec/notifications.php:134
5603
  #: app/features/mec/notifications.php:236
5604
  #: app/features/mec/notifications.php:351
5605
  #: app/features/mec/notifications.php:471
5606
  #: app/features/mec/notifications.php:579
5607
+ #: app/features/mec/notifications.php:698 app/features/notifications.php:120
5608
+ msgid "Ticket time"
5609
+ msgstr "Ticket Uhrzeit"
 
 
5610
 
5611
  #: app/features/mec/notifications.php:135
5612
  #: app/features/mec/notifications.php:237
5613
  #: app/features/mec/notifications.php:352
5614
  #: app/features/mec/notifications.php:472
5615
  #: app/features/mec/notifications.php:580
5616
+ #: app/features/mec/notifications.php:699 app/features/notifications.php:121
5617
  #, fuzzy
5618
+ #| msgid "Ticket name"
5619
+ msgid "Ticket name & time"
5620
+ msgstr "Ticket Name"
5621
 
5622
  #: app/features/mec/notifications.php:136
5623
  #: app/features/mec/notifications.php:238
5624
  #: app/features/mec/notifications.php:353
5625
  #: app/features/mec/notifications.php:473
5626
  #: app/features/mec/notifications.php:581
5627
+ #: app/features/mec/notifications.php:700 app/features/notifications.php:122
5628
+ #, fuzzy
5629
+ #| msgid "Payment Gateways"
5630
+ msgid "Payment Gateway"
5631
+ msgstr "Zahlungs-Gateways"
5632
 
5633
  #: app/features/mec/notifications.php:137
5634
  #: app/features/mec/notifications.php:239
5635
  #: app/features/mec/notifications.php:354
5636
+ #: app/features/mec/notifications.php:474
5637
+ #: app/features/mec/notifications.php:582
5638
+ #: app/features/mec/notifications.php:701 app/features/notifications.php:123
5639
+ msgid "Link to the downloadable file"
5640
+ msgstr ""
5641
+
5642
+ #: app/features/mec/notifications.php:138
5643
+ #: app/features/mec/notifications.php:240
5644
+ #: app/features/mec/notifications.php:355
5645
+ #: app/features/mec/notifications.php:702
5646
  msgid "Download ICS file"
5647
  msgstr "Download ICS Datei"
5648
 
5649
+ #: app/features/mec/notifications.php:147 app/libraries/main.php:589
5650
  msgid "Booking Verification"
5651
  msgstr "Verifizierung der Buchung"
5652
 
5653
+ #: app/features/mec/notifications.php:148
5654
  msgid "It sends to attendee email for verifying their booking/email."
5655
  msgstr ""
5656
  "Versendet an den Teilnehmer eine Email um dessen Buchung/Mail zu "
5657
  "verifizieren."
5658
 
5659
+ #: app/features/mec/notifications.php:232
5660
  msgid "Email/Booking verification link."
5661
  msgstr "Bestätigungslink für Email/Buchung"
5662
 
5663
+ #: app/features/mec/notifications.php:253
5664
  #, fuzzy
5665
  #| msgid "Enable booking notification"
5666
  msgid "Enable booking confirmation"
5667
  msgstr "Buchungsbenachrichtigung aktivieren"
5668
 
5669
+ #: app/features/mec/notifications.php:258
5670
  #, fuzzy
5671
  #| msgid "It sends to attendee after confirming the booking by admin."
5672
  msgid "Sent to attendee after confirming the booking by admin."
5673
  msgstr ""
5674
  "Es wird an den Teilnehmer gesendet nach Bestätigung der Buchung vom admin."
5675
 
5676
+ #: app/features/mec/notifications.php:311
5677
  msgid "Send One Single Email Only To First Attendee"
5678
  msgstr "Nur ein E-Mail zum ersten Teilnehmer senden"
5679
 
5680
+ #: app/features/mec/notifications.php:346
5681
+ #: app/features/mec/notifications.php:693
5682
  msgid "Booking cancellation link."
5683
  msgstr "Link zur Stornierung der Buchung"
5684
 
5685
+ #: app/features/mec/notifications.php:365 app/features/notifications.php:147
5686
  #: app/libraries/main.php:591
5687
  msgid "Booking Cancellation"
5688
  msgstr "Buchung stornieren"
5689
 
5690
+ #: app/features/mec/notifications.php:369
5691
  msgid "Enable cancellation notification"
5692
  msgstr "Benachrichtigung bei stornierter Buchung"
5693
 
5694
+ #: app/features/mec/notifications.php:373
5695
  #, fuzzy
5696
  #| msgid "It sends to attendee after booking for notifying him/her."
5697
  msgid "Sent to selected recipients after booking cancellation to notify them."
5699
  "Wird an den Teilnehmer in Anschluss an die Buchung versendet, um Ihn/Sie zu "
5700
  "benachrichtigen."
5701
 
5702
+ #: app/features/mec/notifications.php:426
5703
+ #: app/features/mec/notifications.php:723
5704
  msgid "Send the email to admin"
5705
  msgstr "Sendet die E-Mail zum Admin"
5706
 
5707
+ #: app/features/mec/notifications.php:434
5708
  #, fuzzy
5709
  #| msgid "Send the email to booking user"
5710
  msgid "Send the email to the booked user"
5711
  msgstr "Sendet die Email zum Buchungs "
5712
 
5713
+ #: app/features/mec/notifications.php:467
5714
+ #: app/features/mec/notifications.php:575 app/features/notifications.php:116
5715
  msgid "Admin booking management link."
5716
  msgstr "Admin-link zur Buchungsverwaltung"
5717
 
5718
+ #: app/features/mec/notifications.php:481 app/libraries/main.php:593
5719
  msgid "Admin"
5720
  msgstr "Admin"
5721
 
5722
+ #: app/features/mec/notifications.php:485
5723
  msgid "Enable admin notification"
5724
  msgstr "Buchungsbenachrichtigung aktivieren (Admin)"
5725
 
5726
+ #: app/features/mec/notifications.php:489
5727
  #, fuzzy
5728
  #| msgid "It sends to admin to notify him/her that a new booking received."
5729
  msgid "Sent to admin to notify them that a new booking has been received."
5731
  "Sendet eine Benachrichtigung an den Adminstrator um diesen darüber zu "
5732
  "Informieren, dass eine neue Buchung eingegangen ist."
5733
 
5734
+ #: app/features/mec/notifications.php:589 app/features/notifications.php:153
5735
+ #: app/libraries/main.php:592 app/libraries/notifications.php:585
5736
  msgid "Booking Reminder"
5737
  msgstr "Buchungs Erinnerung"
5738
 
5739
+ #: app/features/mec/notifications.php:593
5740
  msgid "Enable booking reminder notification"
5741
  msgstr "Aktivieren Sie die Erinnerung für die Buchungserinnerung"
5742
 
5743
+ #: app/features/mec/notifications.php:599
5744
  #, fuzzy, php-format
5745
  #| msgid ""
5746
  #| "Set a cronjob to call %s file once per day otherwise it won't send the "
5756
  "Sie diese Datei% s aufrufen sollten, sonst könnten die Erinnerungen mehrmals "
5757
  "gesendet werden."
5758
 
5759
+ #: app/features/mec/notifications.php:599
5760
  #, fuzzy
5761
  #| msgid "only once per day"
5762
  msgid "only once per hour"
5763
  msgstr "nur einmal pro Tag"
5764
 
5765
+ #: app/features/mec/notifications.php:652 app/libraries/main.php:6980
5766
+ #: app/libraries/main.php:6997
5767
  #, fuzzy
5768
  #| msgid "Hour"
5769
  msgid "Hours"
5770
  msgstr "Stunde"
5771
 
5772
+ #: app/features/mec/notifications.php:656
5773
  msgid "Reminder hours"
5774
  msgstr ""
5775
 
5776
+ #: app/features/mec/notifications.php:657
5777
  msgid "Please, insert comma to separate reminder hours."
5778
  msgstr ""
5779
 
5780
+ #: app/features/mec/notifications.php:712 app/features/popup/event.php:253
5781
  #: app/libraries/main.php:581
5782
  msgid "New Event"
5783
  msgstr "Neue Veranstaltung"
5784
 
5785
+ #: app/features/mec/notifications.php:716
5786
  msgid "Enable new event notification"
5787
  msgstr "Benachrichtigung bei neuen Veranstaltungen aktivieren"
5788
 
5789
+ #: app/features/mec/notifications.php:726
5790
  #, fuzzy
5791
  #| msgid ""
5792
  #| "It sends after adding a new event from frontend event submission or from "
5798
  "Wird nach dem Hinzufügen einer neuen Veranstaltung aus der Frontend-"
5799
  "Übermittlung oder dem Backend versandt."
5800
 
5801
+ #: app/features/mec/notifications.php:783
5802
+ #: app/features/mec/notifications.php:867
5803
  msgid "Title of event"
5804
  msgstr "Titel der Veranstaltung"
5805
 
5806
+ #: app/features/mec/notifications.php:784
5807
+ #: app/features/mec/notifications.php:868
5808
  msgid "Link of event"
5809
  msgstr "Link der Veranstaltung"
5810
 
5811
+ #: app/features/mec/notifications.php:787
5812
+ #: app/features/mec/notifications.php:871 app/features/notifications.php:126
5813
  msgid "Status of event"
5814
  msgstr "Status der Veranstaltung"
5815
 
5816
+ #: app/features/mec/notifications.php:788
5817
+ #: app/features/mec/notifications.php:872 app/features/mec/settings.php:819
5818
  #: app/features/mec/settings.php:823 app/features/notifications.php:127
5819
  msgid "Event Note"
5820
  msgstr "Veranstaltungsnotiz"
5821
 
5822
+ #: app/features/mec/notifications.php:792
5823
+ #: app/features/mec/notifications.php:876
5824
  msgid "Admin events management link."
5825
  msgstr "Admin-link zur Veranstaltungsverwaltung"
5826
 
5827
+ #: app/features/mec/notifications.php:802 app/libraries/main.php:582
5828
  msgid "User Event Publishing"
5829
  msgstr "Nutzer Event wurde veröffentlicht."
5830
 
5831
+ #: app/features/mec/notifications.php:806
5832
  msgid "Enable user event publishing notification"
5833
  msgstr "Benachrichtigung bei neuen Nutzer Veranstaltungen aktivieren"
5834
 
5835
+ #: app/features/mec/notifications.php:810
5836
  #, fuzzy
5837
  #| msgid ""
5838
  #| "It sends after adding a new event from frontend event submission or from "
5844
  "Wird nach dem Hinzufügen einer neuen Veranstaltung aus der Frontend-"
5845
  "Übermittlung oder dem Backend versandt."
5846
 
5847
+ #: app/features/mec/notifications.php:884 app/libraries/main.php:596
5848
+ #, fuzzy
5849
+ #| msgid "Notifications"
5850
+ msgid "Notifications Per Event"
5851
+ msgstr "Benachrichtigungen"
5852
+
5853
+ #: app/features/mec/notifications.php:888
5854
+ #, fuzzy
5855
+ #| msgid "Admin Notification"
5856
+ msgid "Edit Notifications Per Event"
5857
+ msgstr "Admin-Benachrichtiung"
5858
+
5859
  #: app/features/mec/report.php:15
5860
  msgid "Booking Report"
5861
  msgstr "Buchungs Zusammenfassung"
6023
  msgstr ""
6024
 
6025
  #: app/features/mec/settings.php:157 app/features/mec/settings.php:167
6026
+ #: app/libraries/main.php:5930 app/libraries/main.php:5978
6027
  msgid "Weekdays"
6028
  msgstr "Wochentage"
6029
 
6770
  msgid "Custom Fields"
6771
  msgstr "Benutzerdefinierte Stile"
6772
 
6773
+ #: app/features/mec/single.php:184 app/libraries/main.php:3213
6774
  msgid "URL"
6775
  msgstr ""
6776
 
7592
  msgid "eg. https://webnus.net"
7593
  msgstr "http://webnus.net"
7594
 
7595
+ #: app/features/organizers.php:312 app/libraries/main.php:5954
7596
+ #: app/libraries/main.php:5999 app/skins/single.php:1147
7597
  msgid "Other Organizers"
7598
  msgstr "Andere Veranstalter"
7599
 
7791
  msgid "#"
7792
  msgstr ""
7793
 
7794
+ #: app/features/profile/profile.php:61 app/libraries/main.php:3545
7795
  msgid "Status"
7796
  msgstr ""
7797
 
7798
+ #: app/features/profile/profile.php:64 app/libraries/main.php:2521
7799
  msgid "Attendees"
7800
  msgstr "Teilnehmer"
7801
 
7920
  msgid "No search result."
7921
  msgstr "Kein Suchergebnis"
7922
 
7923
+ #: app/features/search_bar/search_result.php:12 app/libraries/main.php:5956
7924
+ #: app/libraries/main.php:6001 app/libraries/notifications.php:990
7925
+ #: app/libraries/render.php:518 app/libraries/render.php:838
7926
  #: app/modules/local-time/details.php:48 app/modules/local-time/type1.php:45
7927
  #: app/modules/local-time/type2.php:47 app/modules/local-time/type3.php:45
7928
+ #: app/modules/next-event/details.php:145 app/skins/single.php:1039
7929
  #: app/skins/single/default.php:125 app/skins/single/default.php:359
7930
  #: app/skins/single/m1.php:47 app/skins/single/modern.php:222
7931
  #, fuzzy
8157
  msgid "Timeline View"
8158
  msgstr "Stundenplan"
8159
 
8160
+ #: app/libraries/main.php:385 app/libraries/main.php:5932
8161
+ #: app/libraries/main.php:5980
8162
  msgid "SU"
8163
  msgstr "SO"
8164
 
8165
+ #: app/libraries/main.php:386 app/libraries/main.php:5933
8166
+ #: app/libraries/main.php:5981
8167
  msgid "MO"
8168
  msgstr "MO"
8169
 
8170
+ #: app/libraries/main.php:387 app/libraries/main.php:5934
8171
+ #: app/libraries/main.php:5982
8172
  msgid "TU"
8173
  msgstr "DI"
8174
 
8175
+ #: app/libraries/main.php:388 app/libraries/main.php:5935
8176
+ #: app/libraries/main.php:5983
8177
  msgid "WE"
8178
  msgstr "MI"
8179
 
8180
+ #: app/libraries/main.php:389 app/libraries/main.php:5936
8181
+ #: app/libraries/main.php:5984
8182
  msgid "TH"
8183
  msgstr "DO"
8184
 
8185
+ #: app/libraries/main.php:390 app/libraries/main.php:5937
8186
+ #: app/libraries/main.php:5985
8187
  msgid "FR"
8188
  msgstr "FR"
8189
 
8190
+ #: app/libraries/main.php:391 app/libraries/main.php:5938
8191
+ #: app/libraries/main.php:5986
8192
  msgid "SA"
8193
  msgstr "SA"
8194
 
8367
  msgid "Your booking cannot verify!"
8368
  msgstr "Ihre Buchung kann nicht verifiziert werden!"
8369
 
8370
+ #: app/libraries/main.php:2334
8371
+ #, fuzzy
8372
+ #| msgid "The event is finished."
8373
+ msgid "The event is already finished!"
8374
+ msgstr "Das Event ist beendet"
8375
+
8376
+ #: app/libraries/main.php:2352
8377
+ msgid "The cancelation window is passed."
8378
+ msgstr ""
8379
+
8380
+ #: app/libraries/main.php:2358
8381
  msgid "Your booking successfully canceled."
8382
  msgstr "Ihre Buchung wurde erfolgreich storniert."
8383
 
8384
+ #: app/libraries/main.php:2359
8385
  msgid "Your booking cannot be canceled."
8386
  msgstr "Ihre Buchung kann nicht storniert werden."
8387
 
8388
+ #: app/libraries/main.php:2363
8389
  msgid "You canceled the payment successfully."
8390
  msgstr "Sie haben die Zahlung erfolgreich storniert."
8391
 
8392
+ #: app/libraries/main.php:2367
8393
  msgid "You returned from payment gateway successfully."
8394
  msgstr "Sie sind vom Bezahlungs-Gateway erfolgreich zurückgekehrt."
8395
 
8396
+ #: app/libraries/main.php:2386
8397
  msgid "Cannot find the invoice!"
8398
  msgstr "Die Buchung kann nicht gefunden werden."
8399
 
8400
+ #: app/libraries/main.php:2386
8401
  msgid "Invoice is invalid."
8402
  msgstr "Die Buchung ist ungültig."
8403
 
8404
+ #: app/libraries/main.php:2406
8405
  msgid ""
8406
  "Your booking still is not confirmed. You can download it after confirmation!"
8407
  msgstr ""
8408
 
8409
+ #: app/libraries/main.php:2406
8410
  msgid "Booking Not Confirmed."
8411
  msgstr "Die Buchung ist nicht Bestätigt."
8412
 
8413
+ #: app/libraries/main.php:2412
8414
  msgid "Cannot find the booking!"
8415
  msgstr "Die Buchung kann nicht gefunden werden!"
8416
 
8417
+ #: app/libraries/main.php:2412
8418
  msgid "Booking is invalid."
8419
  msgstr "Buchung ist ungültig."
8420
 
8421
+ #: app/libraries/main.php:2445
8422
  #, php-format
8423
  msgid "%s Invoice"
8424
  msgstr "% s Rechnung"
8425
 
8426
+ #: app/libraries/main.php:2478
8427
  #, fuzzy
8428
  #| msgid "Date And Time"
8429
  msgid "Date & Time"
8430
  msgstr "Datum und Uhrzeit"
8431
 
8432
+ #: app/libraries/main.php:2495
8433
  #, fuzzy
8434
  #| msgid "Booking Price"
8435
  msgid "Booking Fields"
8436
  msgstr "Buchungspreis"
8437
 
8438
+ #: app/libraries/main.php:2567
8439
  msgid "Billing"
8440
  msgstr "Abrechnung"
8441
 
8442
+ #: app/libraries/main.php:2579
8443
  #, fuzzy
8444
  #| msgid "Coupon"
8445
  msgid "Coupon Code"
8446
  msgstr "Gutschein"
8447
 
8448
+ #: app/libraries/main.php:2584
8449
  msgid "Total"
8450
  msgstr "Gesamt"
8451
 
8452
+ #: app/libraries/main.php:2591
8453
  msgid "Payment"
8454
  msgstr "Bezahlung"
8455
 
8456
+ #: app/libraries/main.php:2595
8457
  msgid "Gateway"
8458
  msgstr "Gateway"
8459
 
8460
+ #: app/libraries/main.php:2608
8461
  msgid "Payment Time"
8462
  msgstr "Bezahlung "
8463
 
8464
+ #: app/libraries/main.php:2750
8465
  msgid "Request is not valid."
8466
  msgstr "Die Anfrage ist ungültig!"
8467
 
8468
+ #: app/libraries/main.php:2750
8469
  msgid "iCal export stopped!"
8470
  msgstr "iCal Export wurde unterbrochen!"
8471
 
8472
+ #: app/libraries/main.php:3096 app/libraries/main.php:3125
8473
+ #: app/libraries/main.php:3154 app/libraries/main.php:3183
8474
+ #: app/libraries/main.php:3212 app/libraries/main.php:3241
8475
+ #: app/libraries/main.php:3270 app/libraries/main.php:3299
8476
+ #: app/libraries/main.php:3328 app/libraries/main.php:3357
8477
+ #: app/libraries/main.php:3380 app/libraries/main.php:3426
8478
+ #: app/libraries/main.php:3472 app/libraries/main.php:3521
8479
+ #: app/libraries/main.php:3570
8480
  msgid "Sort"
8481
  msgstr "Sortieren"
8482
 
8483
+ #: app/libraries/main.php:3103 app/libraries/main.php:3132
8484
+ #: app/libraries/main.php:3161 app/libraries/main.php:3190
8485
+ #: app/libraries/main.php:3219 app/libraries/main.php:3248
8486
+ #: app/libraries/main.php:3277 app/libraries/main.php:3306
8487
+ #: app/libraries/main.php:3335 app/libraries/main.php:3387
8488
+ #: app/libraries/main.php:3433 app/libraries/main.php:3479
8489
+ #: app/libraries/main.php:3528
8490
  msgid "Required Field"
8491
  msgstr "Pflichtfeld"
8492
 
8493
+ #: app/libraries/main.php:3109 app/libraries/main.php:3138
8494
+ #: app/libraries/main.php:3167 app/libraries/main.php:3196
8495
+ #: app/libraries/main.php:3225 app/libraries/main.php:3254
8496
+ #: app/libraries/main.php:3283 app/libraries/main.php:3312
8497
+ #: app/libraries/main.php:3341 app/libraries/main.php:3393
8498
+ #: app/libraries/main.php:3439 app/libraries/main.php:3485
8499
+ #: app/libraries/main.php:3534
8500
  msgid "Insert a label for this field"
8501
  msgstr "Geben Sie eine Bezeichnung (Label) für dieses Feld ein."
8502
 
8503
+ #: app/libraries/main.php:3363
8504
  msgid "HTML and shortcode are allowed."
8505
  msgstr "HTML und shortcodes sind erlaubt."
8506
 
8507
+ #: app/libraries/main.php:3406 app/libraries/main.php:3452
8508
+ #: app/libraries/main.php:3498
8509
  msgid "Option"
8510
  msgstr "Option"
8511
 
8512
+ #: app/libraries/main.php:3534
8513
  #, php-format
8514
  msgid "Instead of %s, the page title with a link will be show."
8515
  msgstr "Anstelle von %s, wird der Seitentitel mit einem Link gezeigt"
8516
 
8517
+ #: app/libraries/main.php:3536
8518
  msgid "Agreement Page"
8519
  msgstr "Zustimmungsseite"
8520
 
8521
+ #: app/libraries/main.php:3547
8522
  msgid "Checked by default"
8523
  msgstr ""
8524
 
8525
+ #: app/libraries/main.php:3548
8526
  msgid "Unchecked by default"
8527
  msgstr ""
8528
 
8529
+ #: app/libraries/main.php:3572
8530
  msgid "Insert a label for this option"
8531
  msgstr "Ein neues Label für diese Option einfügen"
8532
 
8533
+ #: app/libraries/main.php:3585
8534
  msgid "Free"
8535
  msgstr "kostenfrei"
8536
 
8537
+ #: app/libraries/main.php:4214 app/libraries/main.php:6250
8538
  msgid "M.E. Calender"
8539
  msgstr "M.E. Calender"
8540
 
8541
+ #: app/libraries/main.php:4370
8542
  #, php-format
8543
  msgid "Copy of %s"
8544
  msgstr "Kopie von %s"
8545
 
8546
+ #: app/libraries/main.php:5188
8547
  msgid "Booked an event."
8548
  msgstr "Eine Veranstaltung wurde gebucht."
8549
 
8550
+ #: app/libraries/main.php:5229
8551
  #, php-format
8552
  msgid "%s booked %s event."
8553
  msgstr "%s gebuchtes %s Event"
8554
 
8555
+ #: app/libraries/main.php:5915 app/libraries/main.php:5963
8556
  msgid "Taxonomies"
8557
  msgstr "Klassifizierung "
8558
 
8559
+ #: app/libraries/main.php:5917 app/libraries/main.php:5965
8560
  msgid "Category Plural Label"
8561
  msgstr "Kategorien"
8562
 
8563
+ #: app/libraries/main.php:5918 app/libraries/main.php:5966
8564
  msgid "Category Singular Label"
8565
  msgstr "Kategorie"
8566
 
8567
+ #: app/libraries/main.php:5919 app/libraries/main.php:5967
8568
  msgid "Label Plural Label"
8569
  msgstr "Labels"
8570
 
8571
+ #: app/libraries/main.php:5920 app/libraries/main.php:5968
8572
  msgid "Label Singular Label"
8573
  msgstr "Label"
8574
 
8575
+ #: app/libraries/main.php:5920 app/libraries/main.php:5968
8576
  msgid "label"
8577
  msgstr "label"
8578
 
8579
+ #: app/libraries/main.php:5921 app/libraries/main.php:5969
8580
  msgid "Location Plural Label"
8581
  msgstr "Veranstaltungsorte"
8582
 
8583
+ #: app/libraries/main.php:5922 app/libraries/main.php:5970
8584
  msgid "Location Singular Label"
8585
  msgstr "Veranstaltungsort"
8586
 
8587
+ #: app/libraries/main.php:5923 app/libraries/main.php:5971
8588
  msgid "Organizer Plural Label"
8589
  msgstr "Veranstalter"
8590
 
8591
+ #: app/libraries/main.php:5924 app/libraries/main.php:5972
8592
  msgid "Organizer Singular Label"
8593
  msgstr "Veranstalter"
8594
 
8595
+ #: app/libraries/main.php:5925 app/libraries/main.php:5973
8596
  #, fuzzy
8597
  #| msgid "Label Plural Label"
8598
  msgid "Speaker Plural Label"
8599
  msgstr "Labels"
8600
 
8601
+ #: app/libraries/main.php:5926 app/libraries/main.php:5974
8602
  #, fuzzy
8603
  #| msgid "Label Singular Label"
8604
  msgid "Speaker Singular Label"
8605
  msgstr "Label"
8606
 
8607
+ #: app/libraries/main.php:5932 app/libraries/main.php:5980
8608
  msgid "Sunday abbreviation"
8609
  msgstr "Sonntag Abkürzung"
8610
 
8611
+ #: app/libraries/main.php:5933 app/libraries/main.php:5981
8612
  msgid "Monday abbreviation"
8613
  msgstr "Montag Abkürzung"
8614
 
8615
+ #: app/libraries/main.php:5934 app/libraries/main.php:5982
8616
  msgid "Tuesday abbreviation"
8617
  msgstr "Dienstag Abkürzung"
8618
 
8619
+ #: app/libraries/main.php:5935 app/libraries/main.php:5983
8620
  msgid "Wednesday abbreviation"
8621
  msgstr "Mittwoch Abkürzung"
8622
 
8623
+ #: app/libraries/main.php:5936 app/libraries/main.php:5984
8624
  msgid "Thursday abbreviation"
8625
  msgstr "Donnerstag Abkürzung"
8626
 
8627
+ #: app/libraries/main.php:5937 app/libraries/main.php:5985
8628
  msgid "Friday abbreviation"
8629
  msgstr "Freitag Abkürzung"
8630
 
8631
+ #: app/libraries/main.php:5938 app/libraries/main.php:5986
8632
  msgid "Saturday abbreviation"
8633
  msgstr "Samstag Abkürzung "
8634
 
8635
+ #: app/libraries/main.php:5942 app/libraries/main.php:5990
8636
  msgid "Others"
8637
  msgstr "Andere"
8638
 
8639
+ #: app/libraries/main.php:5944
8640
  msgid "Booking Success Message"
8641
  msgstr "Buchung erfolgreich Mitteilung"
8642
 
8643
+ #: app/libraries/main.php:5944
8644
  #, fuzzy
8645
  #| msgid ""
8646
  #| "Thanks for your booking. Your tickets booked, booking verification might "
8652
  "Vielen Dank für Ihre Buchung. Für die gebuchten Tickets ist ggf. eine "
8653
  "Bestätigung durch Sie erforderlich. Bitte überprüfen Sie Ihre Emails."
8654
 
8655
+ #: app/libraries/main.php:5945 app/libraries/main.php:5992
8656
  #: app/widgets/single.php:131
8657
  msgid "Register Button"
8658
  msgstr "Register Button"
8659
 
8660
+ #: app/libraries/main.php:5945 app/libraries/main.php:5992
8661
  #: app/skins/available_spot/tpl.php:210 app/skins/carousel/render.php:110
8662
  #: app/skins/carousel/render.php:150 app/skins/grid/render.php:98
8663
  #: app/skins/grid/render.php:155 app/skins/grid/render.php:206
8664
  #: app/skins/grid/render.php:226 app/skins/list/render.php:68
8665
  #: app/skins/list/render.php:160 app/skins/masonry/render.php:150
8666
+ #: app/skins/single.php:352 app/skins/single.php:1060 app/skins/single.php:1063
8667
  #: app/skins/single/default.php:288 app/skins/single/default.php:290
8668
  #: app/skins/single/default.php:521 app/skins/single/default.php:523
8669
  #: app/skins/single/m1.php:144 app/skins/single/m1.php:146
8675
  msgid "REGISTER"
8676
  msgstr "ANMELDEN"
8677
 
8678
+ #: app/libraries/main.php:5946 app/libraries/main.php:5993
8679
  msgid "View Detail Button"
8680
  msgstr "Ansicht Detail Button"
8681
 
8682
+ #: app/libraries/main.php:5946 app/libraries/main.php:5993
8683
  #: app/skins/carousel/render.php:110 app/skins/carousel/render.php:150
8684
  #: app/skins/grid/render.php:98 app/skins/grid/render.php:155
8685
  #: app/skins/grid/render.php:206 app/skins/grid/render.php:226
8691
  msgid "View Detail"
8692
  msgstr "Details "
8693
 
8694
+ #: app/libraries/main.php:5947 app/libraries/main.php:5994
8695
  msgid "Event Detail Button"
8696
  msgstr "Event Detail Button"
8697
 
8698
+ #: app/libraries/main.php:5947 app/libraries/main.php:5994
8699
  #: app/skins/countdown/tpl.php:221
8700
  msgid "Event Detail"
8701
  msgstr "Veranstaltungsdetails"
8702
 
8703
+ #: app/libraries/main.php:5949 app/libraries/main.php:5996
8704
  msgid "More Info Link"
8705
  msgstr "Link Mehr Informationen"
8706
 
8707
+ #: app/libraries/main.php:5952
8708
  msgid "Ticket (Singular)"
8709
  msgstr "Ticket"
8710
 
8711
+ #: app/libraries/main.php:5953
8712
  msgid "Tickets (Plural)"
8713
  msgstr "Tickets"
8714
 
8715
+ #: app/libraries/main.php:6109
8716
  msgid "EventON"
8717
  msgstr "EventON"
8718
 
8719
+ #: app/libraries/main.php:6110
8720
  msgid "The Events Calendar"
8721
  msgstr "The Events Calendar"
8722
 
8723
+ #: app/libraries/main.php:6111
8724
  msgid "Events Schedule WP Plugin"
8725
  msgstr "Event Zeitplan WP-Plugin"
8726
 
8727
+ #: app/libraries/main.php:6112
8728
  msgid "Calendarize It"
8729
  msgstr ""
8730
 
8731
+ #: app/libraries/main.php:6113
8732
  #, fuzzy
8733
  #| msgid "No Search Options"
8734
  msgid "Event Espresso"
8735
  msgstr "Keine Suchoptionen"
8736
 
8737
+ #: app/libraries/main.php:6114
8738
  msgid "Events Manager (Recurring)"
8739
  msgstr "Wiederholende Veranstaltung"
8740
 
8741
+ #: app/libraries/main.php:6115
8742
  msgid "Events Manager (Single)"
8743
  msgstr "Moderner Event Kalender"
8744
 
8745
+ #: app/libraries/main.php:6189 app/libraries/main.php:6211
 
 
 
 
 
 
 
 
8746
  msgid "Pending"
8747
  msgstr "Ausstehend"
8748
 
8749
+ #: app/libraries/main.php:6237
8750
  msgid "Waiting"
8751
  msgstr "in Bearbeitung"
8752
 
8753
+ #: app/libraries/main.php:6280
8754
  #, fuzzy
8755
  #| msgid "Sunday"
8756
  msgid "Sun"
8757
  msgstr "Sonntag"
8758
 
8759
+ #: app/libraries/main.php:6280
8760
  #, fuzzy
8761
  #| msgid "Month"
8762
  msgid "Mon"
8763
  msgstr "Monat "
8764
 
8765
+ #: app/libraries/main.php:6280
8766
  #, fuzzy
8767
  #| msgid "Tel"
8768
  msgid "Tue"
8769
  msgstr "Tel"
8770
 
8771
+ #: app/libraries/main.php:6280
8772
  msgid "Wed"
8773
  msgstr ""
8774
 
8775
+ #: app/libraries/main.php:6280
8776
  msgid "Thu"
8777
  msgstr ""
8778
 
8779
+ #: app/libraries/main.php:6280
8780
  #, fuzzy
8781
  #| msgid "Friday"
8782
  msgid "Fri"
8783
  msgstr "Freitag"
8784
 
8785
+ #: app/libraries/main.php:6280
8786
  #, fuzzy
8787
  #| msgid "Start"
8788
  msgid "Sat"
8789
  msgstr "Start"
8790
 
8791
+ #: app/libraries/main.php:6442 app/libraries/render.php:80
8792
  #: app/libraries/render.php:432
8793
  msgid "Skin controller does not exist."
8794
  msgstr "Skin contoller existiert nicht."
8795
 
8796
+ #: app/libraries/main.php:6657
8797
  msgid "Sold Out"
8798
  msgstr "Ausgebucht"
8799
 
8800
+ #: app/libraries/main.php:6665
8801
  msgid "Last Few Tickets"
8802
  msgstr "Nur noch wenige Tickets verfügbar."
8803
 
8804
+ #: app/libraries/main.php:6986 app/libraries/main.php:7003
8805
  #, fuzzy
8806
  #| msgid "minutes"
8807
  msgid "Minutes"
8808
  msgstr "Minuten"
8809
 
8810
+ #: app/libraries/main.php:7008
8811
  msgid "AM / PM"
8812
  msgstr ""
8813
 
8814
+ #: app/libraries/main.php:7009
8815
  msgid "AM"
8816
  msgstr "AM"
8817
 
8818
+ #: app/libraries/main.php:7010
8819
  msgid "PM"
8820
  msgstr "PM"
8821
 
8822
+ #: app/libraries/main.php:7018
8823
  #, fuzzy
8824
  #| msgid "Loading..."
8825
  msgid "Ongoing..."
8826
  msgstr "Laden…"
8827
 
8828
+ #: app/libraries/main.php:7019
8829
  #, fuzzy
8830
  #| msgid "Expired Events"
8831
  msgid "Expired!"
8851
  msgid "A new booking is received."
8852
  msgstr "Eine neue Buchung ist eingegangen."
8853
 
8854
+ #: app/libraries/notifications.php:708
8855
  msgid "A new event is added."
8856
  msgstr "Eine neue Veranstaltung wurde hinzugefügt."
8857
 
8858
+ #: app/libraries/notifications.php:812
8859
  msgid "Your event is published."
8860
  msgstr "Die Veranstaltung wurde veröffentlicht."
8861
 
8862
+ #: app/libraries/notifications.php:975 app/libraries/notifications.php:990
8863
+ #: app/libraries/notifications.php:1001
8864
  #, php-format
8865
  msgid "%s to %s"
8866
  msgstr "%s zu %s"
8867
 
8868
+ #: app/libraries/notifications.php:1173
8869
  msgid "to"
8870
  msgstr ""
8871
 
8872
+ #: app/libraries/notifications.php:1194 app/modules/export/details.php:46
8873
  msgid "+ Add to Google Calendar"
8874
  msgstr "+ zum Google Calendar hinzufügen"
8875
 
8876
+ #: app/libraries/notifications.php:1195 app/modules/export/details.php:47
8877
  msgid "+ iCal export"
8878
  msgstr "+ zu iCal exportieren"
8879
 
8880
+ #: app/libraries/notifications.php:1280
8881
  msgid "Yes"
8882
  msgstr "Ja"
8883
 
8884
+ #: app/libraries/notifications.php:1280
8885
  msgid "No"
8886
  msgstr "Nein"
8887
 
8888
+ #: app/libraries/skins.php:1094
8889
  msgid "Select"
8890
  msgstr "Auswählen"
8891
 
8892
+ #: app/libraries/skins.php:1269 app/libraries/skins.php:1270
8893
  #: app/modules/booking/steps/tickets.php:90
8894
  msgid "Book Event"
8895
  msgstr "Veranstaltung buchen"
9007
  msgid "Get Directions"
9008
  msgstr "Wegbeschreibung"
9009
 
9010
+ #: app/modules/links/details.php:17 app/skins/single.php:744
9011
  msgid "Share this event"
9012
  msgstr "Diese Veranstaltung teilen"
9013
 
9062
  msgid "Go to occurrence page"
9063
  msgstr "Zum Event"
9064
 
9065
+ #: app/modules/next-event/details.php:139 app/skins/single.php:1033
9066
  #: app/skins/single/default.php:119 app/skins/single/default.php:353
9067
  #: app/skins/single/m1.php:41 app/skins/single/modern.php:216
9068
  msgid "Time"
9187
  msgstr "Stundenplan"
9188
 
9189
  #: app/skins/monthly_view/calendar.php:71
9190
+ #: app/skins/monthly_view/calendar.php:116
9191
  #: app/skins/monthly_view/calendar_clean.php:70
9192
+ #: app/skins/monthly_view/calendar_clean.php:132
9193
  #, php-format
9194
  msgid "Events for %s"
9195
  msgstr "Veranstaltungen für %s"
9196
 
9197
+ #: app/skins/monthly_view/calendar.php:118
9198
+ #: app/skins/monthly_view/calendar_clean.php:134
9199
  #: app/skins/timetable/render.php:83 app/skins/weekly_view/render.php:64
9200
  msgid "No Events"
9201
  msgstr "Keine Veranstaltungen"
9204
  msgid "Home"
9205
  msgstr ""
9206
 
9207
+ #: app/skins/single.php:827 app/skins/single/default.php:65
9208
  #: app/skins/single/m1.php:279 app/skins/single/m2.php:200
9209
  #: app/skins/single/modern.php:300
9210
  msgid "Sold out!"
9211
  msgstr "Ausverkauft!"
9212
 
9213
+ #: app/skins/single.php:1107 app/skins/single.php:1166
9214
  #: app/skins/single/default.php:255 app/skins/single/default.php:488
9215
  #: app/skins/single/m1.php:113 app/skins/single/m2.php:36
9216
  #: app/skins/single/modern.php:58
9217
  msgid "Phone"
9218
  msgstr "Phone"
9219
 
9220
+ #: app/skins/single.php:1121 app/skins/single.php:1180
9221
  #: app/skins/single/default.php:203 app/skins/single/default.php:269
9222
  #: app/skins/single/default.php:436 app/skins/single/default.php:502
9223
  #: app/skins/single/m1.php:127 app/skins/single/m1.php:181
9226
  msgid "Website"
9227
  msgstr "Website"
9228
 
9229
+ #: app/skins/single.php:1256
9230
  msgid "Speakers:"
9231
  msgstr "Veranstalter"
9232
 
9487
  #~ msgid "Go to Edit Form"
9488
  #~ msgstr "Gehe zum Bearbeitungs Feld"
9489
 
 
 
 
9490
  #~ msgid "Attachments"
9491
  #~ msgstr "Anhänge"
9492
 
languages/modern-events-calendar-lite-en_US.mo CHANGED
Binary file
languages/modern-events-calendar-lite-en_US.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: modern-events-calendar\n"
4
- "POT-Creation-Date: 2020-07-21 17:36+0430\n"
5
- "PO-Revision-Date: 2020-07-21 17:40+0430\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: en_US\n"
@@ -17,9 +17,10 @@ msgstr ""
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:24
20
- #: app/features/ix/import.php:37 app/features/ix/thirdparty.php:24
21
- #: app/features/mec.php:1140 app/features/mec.php:1170
22
- #: app/features/mec/dashboard.php:63 app/widgets/MEC.php:33
 
23
  msgid "Modern Events Calendar"
24
  msgstr ""
25
 
@@ -86,8 +87,8 @@ msgstr ""
86
  msgid "Settings"
87
  msgstr ""
88
 
89
- #: app/features/contextual.php:62 app/features/events.php:1563
90
- #: app/features/events.php:2378 app/features/mec/booking.php:524
91
  #: app/features/mec/support.php:29 app/libraries/main.php:564
92
  msgid "Booking Form"
93
  msgstr ""
@@ -101,7 +102,7 @@ msgid ""
101
  "YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></iframe>"
102
  msgstr ""
103
 
104
- #: app/features/contextual.php:70 app/features/mec/booking.php:716
105
  #: app/features/mec/support-page.php:115 app/features/mec/support.php:36
106
  #: app/libraries/main.php:565
107
  msgid "Payment Gateways"
@@ -232,14 +233,14 @@ msgid "Exceptional Days"
232
  msgstr ""
233
 
234
  #: app/features/contextual.php:308 app/features/events.php:315
235
- #: app/features/mec/booking.php:96 app/features/mec/notifications.php:33
236
  #: app/features/mec/support-page.php:110 app/features/mec/support-page.php:114
237
  #: app/libraries/main.php:559 app/libraries/main.php:588
238
  #: app/libraries/main.php:672
239
  msgid "Booking"
240
  msgstr ""
241
 
242
- #: app/features/contextual.php:318 app/features/mec/booking.php:346
243
  #: app/libraries/main.php:561
244
  msgid "Coupons"
245
  msgstr ""
@@ -258,8 +259,8 @@ msgstr ""
258
  msgid "MEC Activation"
259
  msgstr ""
260
 
261
- #: app/features/dlfile.php:121 app/features/events.php:1568
262
- #: app/features/mec/booking.php:268 app/features/mec/settings.php:811
263
  msgid "Downloadable File"
264
  msgstr ""
265
 
@@ -314,7 +315,7 @@ msgstr ""
314
  msgid "Add New Event"
315
  msgstr ""
316
 
317
- #: app/features/events.php:171 app/features/ix.php:3930
318
  #: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:68
319
  #: app/skins/map/tpl.php:88
320
  msgid "No events found!"
@@ -337,7 +338,7 @@ msgstr ""
337
  msgid "No events found in Trash!"
338
  msgstr ""
339
 
340
- #: app/features/events.php:192 app/features/events.php:3449
341
  #: app/features/mec/meta_boxes/display_options.php:1395
342
  #: app/features/mec/meta_boxes/search_form.php:31
343
  #: app/features/mec/meta_boxes/search_form.php:101
@@ -351,19 +352,19 @@ msgstr ""
351
  #: app/features/mec/meta_boxes/search_form.php:654
352
  #: app/features/mec/meta_boxes/search_form.php:760
353
  #: app/features/mec/settings.php:885 app/features/mec/single.php:323
354
- #: app/features/search.php:68 app/libraries/main.php:5888
355
- #: app/libraries/main.php:5936 app/libraries/skins.php:939
356
- #: app/skins/single.php:854 app/skins/single/default.php:220
357
  #: app/skins/single/default.php:453 app/skins/single/m1.php:197
358
  #: app/skins/single/m2.php:120 app/skins/single/modern.php:140
359
  msgid "Category"
360
  msgstr ""
361
 
362
- #: app/features/events.php:193 app/features/events.php:3404
363
  #: app/features/fes/form.php:822 app/features/mec.php:461
364
  #: app/features/mec/meta_boxes/filter.php:69
365
- #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5887
366
- #: app/libraries/main.php:5935
367
  msgid "Categories"
368
  msgstr ""
369
 
@@ -447,12 +448,12 @@ msgstr ""
447
  msgid "Event Repeating"
448
  msgstr ""
449
 
450
- #: app/features/events.php:344 app/features/events.php:1126
451
  msgid "Event Data"
452
  msgstr ""
453
 
454
- #: app/features/events.php:346 app/features/events.php:1308
455
- #: app/features/mec/settings.php:769 app/skins/single.php:1247
456
  msgid "Hourly Schedule"
457
  msgstr ""
458
 
@@ -464,9 +465,9 @@ msgstr ""
464
  msgid "Links"
465
  msgstr ""
466
 
467
- #: app/features/events.php:349 app/features/events.php:3451
468
- #: app/features/events.php:3642 app/features/events.php:3684
469
- #: app/features/ix.php:3513 app/features/ix.php:3554
470
  #: app/features/mec/meta_boxes/display_options.php:1398
471
  #: app/features/mec/meta_boxes/search_form.php:46
472
  #: app/features/mec/meta_boxes/search_form.php:116
@@ -484,17 +485,17 @@ msgstr ""
484
  #: app/features/organizers.php:260 app/features/organizers.php:262
485
  #: app/features/organizers.php:271 app/features/popup/event.php:163
486
  #: app/features/popup/event.php:172 app/features/search.php:80
487
- #: app/libraries/main.php:5894 app/libraries/main.php:5942
488
- #: app/libraries/skins.php:991 app/skins/single.php:1102
489
  #: app/skins/single/default.php:245 app/skins/single/default.php:478
490
  #: app/skins/single/m1.php:103 app/skins/single/m2.php:26
491
  #: app/skins/single/modern.php:48
492
  msgid "Organizer"
493
  msgstr ""
494
 
495
- #: app/features/events.php:350 app/features/events.php:1113
496
- #: app/features/fes/form.php:793 app/libraries/main.php:5921
497
- #: app/libraries/main.php:5968 app/skins/single.php:880
498
  #: app/skins/single/default.php:143 app/skins/single/default.php:377
499
  #: app/skins/single/m1.php:62 app/skins/single/modern.php:237
500
  msgid "Cost"
@@ -504,51 +505,51 @@ msgstr ""
504
  msgid "SEO Schema / Event Status"
505
  msgstr ""
506
 
507
- #: app/features/events.php:487
508
  msgid "Note for reviewer"
509
  msgstr ""
510
 
511
- #: app/features/events.php:493
512
  msgid "Guest Data"
513
  msgstr ""
514
 
515
- #: app/features/events.php:494 app/features/events.php:2364
516
- #: app/features/events.php:3981 app/features/fes.php:233
517
  #: app/features/fes/form.php:752 app/features/labels.php:178
518
  #: app/features/mec/booking.php:53 app/features/organizers.php:279
519
  #: app/features/popup/event.php:182 app/features/profile/profile.php:177
520
- #: app/libraries/notifications.php:1261 app/modules/booking/steps/form.php:48
521
  msgid "Name"
522
  msgstr ""
523
 
524
- #: app/features/events.php:495 app/features/events.php:2373
525
- #: app/features/events.php:2435 app/features/events.php:2524
526
- #: app/features/events.php:3984 app/features/fes.php:233
527
  #: app/features/fes/form.php:748 app/features/login/login.php:5
528
- #: app/features/mec/booking.php:65 app/features/mec/booking.php:562
529
- #: app/features/mec/booking.php:658 app/features/mec/single.php:183
530
  #: app/features/organizers.php:111 app/features/organizers.php:152
531
  #: app/features/profile/profile.php:180 app/features/speakers.php:127
532
  #: app/features/speakers.php:196 app/libraries/main.php:1719
533
- #: app/libraries/main.php:1788 app/libraries/main.php:3154
534
- #: app/libraries/notifications.php:1262 app/modules/booking/steps/form.php:57
535
- #: app/modules/booking/steps/form.php:157 app/skins/single.php:1119
536
- #: app/skins/single.php:1178 app/skins/single/default.php:262
537
  #: app/skins/single/default.php:495 app/skins/single/m1.php:120
538
  #: app/skins/single/m2.php:43 app/skins/single/modern.php:65
539
  msgid "Email"
540
  msgstr ""
541
 
542
- #: app/features/events.php:503 app/features/fes/form.php:265
543
  msgid "Date and Time"
544
  msgstr ""
545
 
546
- #: app/features/events.php:506 app/features/events.php:510
547
- #: app/features/events.php:3452 app/features/events.php:3642
548
- #: app/features/events.php:3684 app/features/fes/form.php:269
549
- #: app/features/fes/form.php:273 app/features/ix.php:3513
550
- #: app/features/ix.php:3554 app/features/ix/import_g_calendar.php:38
551
- #: app/features/mec.php:1323 app/features/mec/meta_boxes/display_options.php:51
552
  #: app/features/mec/meta_boxes/display_options.php:280
553
  #: app/features/mec/meta_boxes/display_options.php:520
554
  #: app/features/mec/meta_boxes/display_options.php:627
@@ -567,55 +568,55 @@ msgstr ""
567
  msgid "Start Date"
568
  msgstr ""
569
 
570
- #: app/features/events.php:525 app/features/events.php:529
571
- #: app/features/events.php:3453 app/features/events.php:3642
572
- #: app/features/events.php:3684 app/features/fes/form.php:288
573
- #: app/features/fes/form.php:292 app/features/ix.php:3513
574
- #: app/features/ix.php:3554 app/features/ix/import_g_calendar.php:44
575
- #: app/features/mec.php:1324 app/features/popup/event.php:92
576
  msgid "End Date"
577
  msgstr ""
578
 
579
- #: app/features/events.php:552 app/features/fes/form.php:306
580
  #: app/features/popup/event.php:109
581
  msgid "All-day Event"
582
  msgstr ""
583
 
584
- #: app/features/events.php:562 app/features/fes/form.php:309
585
  msgid "Hide Event Time"
586
  msgstr ""
587
 
588
- #: app/features/events.php:572 app/features/fes/form.php:312
589
  msgid "Hide Event End Time"
590
  msgstr ""
591
 
592
- #: app/features/events.php:577 app/features/events.php:581
593
  #: app/features/fes/form.php:316
594
  msgid "Notes on the time"
595
  msgstr ""
596
 
597
- #: app/features/events.php:582 app/features/fes/form.php:317
598
  msgid ""
599
  "It shows next to event time on the Single Event Page. You can enter notes "
600
  "such as timezone in this field."
601
  msgstr ""
602
 
603
- #: app/features/events.php:584 app/features/events.php:723
604
- #: app/features/events.php:1076 app/features/events.php:1225
605
- #: app/features/events.php:1533 app/features/events.php:1626
606
- #: app/features/events.php:1770 app/features/events.php:1785
607
- #: app/features/events.php:1951 app/features/events.php:1964
608
- #: app/features/events.php:2115 app/features/events.php:2151
609
- #: app/features/events.php:2249 app/features/events.php:2264
610
- #: app/features/events.php:2294 app/features/events.php:2307
611
  #: app/features/fes/form.php:396 app/features/fes/form.php:704
612
  #: app/features/locations.php:334 app/features/mec/booking.php:116
613
- #: app/features/mec/booking.php:182 app/features/mec/booking.php:195
614
- #: app/features/mec/booking.php:213 app/features/mec/booking.php:229
615
- #: app/features/mec/booking.php:269 app/features/mec/booking.php:391
616
- #: app/features/mec/booking.php:420 app/features/mec/booking.php:468
617
- #: app/features/mec/booking.php:478 app/features/mec/booking.php:500
618
- #: app/features/mec/booking.php:510 app/features/mec/dashboard.php:71
619
  #: app/features/mec/meta_boxes/display_options.php:82
620
  #: app/features/mec/meta_boxes/display_options.php:95
621
  #: app/features/mec/meta_boxes/display_options.php:108
@@ -651,14 +652,14 @@ msgstr ""
651
  #: app/features/mec/modules.php:52 app/features/mec/modules.php:85
652
  #: app/features/mec/modules.php:102 app/features/mec/modules.php:137
653
  #: app/features/mec/modules.php:153 app/features/mec/modules.php:323
654
- #: app/features/mec/notifications.php:87 app/features/mec/notifications.php:193
655
- #: app/features/mec/notifications.php:303
656
- #: app/features/mec/notifications.php:418
657
- #: app/features/mec/notifications.php:534
658
- #: app/features/mec/notifications.php:645
659
- #: app/features/mec/notifications.php:656
660
- #: app/features/mec/notifications.php:771
661
- #: app/features/mec/notifications.php:855 app/features/mec/settings.php:67
662
  #: app/features/mec/settings.php:86 app/features/mec/settings.php:133
663
  #: app/features/mec/settings.php:168 app/features/mec/settings.php:189
664
  #: app/features/mec/settings.php:234 app/features/mec/settings.php:269
@@ -675,528 +676,529 @@ msgstr ""
675
  #: app/features/mec/styling.php:119 app/features/mec/styling.php:218
676
  #: app/features/mec/styling.php:235 app/features/mec/styling.php:248
677
  #: app/features/organizers.php:272 app/features/popup/event.php:126
678
- #: app/features/popup/event.php:173 app/skins/single.php:965
679
  #: app/skins/single/default.php:160 app/skins/single/default.php:392
680
  #: app/skins/single/m1.php:219 app/skins/single/m2.php:143
681
  #: app/skins/single/modern.php:163
682
  msgid "Read More"
683
  msgstr ""
684
 
685
- #: app/features/events.php:592
686
  msgid "Repeating"
687
  msgstr ""
688
 
689
- #: app/features/events.php:601
690
  msgid "Event Repeating (Recurring events)"
691
  msgstr ""
692
 
693
- #: app/features/events.php:605 app/features/fes/form.php:327
694
  msgid "Repeats"
695
  msgstr ""
696
 
697
- #: app/features/events.php:613 app/features/fes/form.php:329
698
  #: app/features/mec.php:1326 app/skins/default_full_calendar/tpl.php:74
699
  #: app/skins/full_calendar/tpl.php:121
700
  msgid "Daily"
701
  msgstr ""
702
 
703
- #: app/features/events.php:620 app/features/fes/form.php:330
704
  msgid "Every Weekday"
705
  msgstr ""
706
 
707
- #: app/features/events.php:627 app/features/fes/form.php:331
708
  msgid "Every Weekend"
709
  msgstr ""
710
 
711
- #: app/features/events.php:634 app/features/fes/form.php:332
712
  msgid "Certain Weekdays"
713
  msgstr ""
714
 
715
- #: app/features/events.php:641 app/features/fes/form.php:333
716
  #: app/skins/default_full_calendar/tpl.php:73
717
  #: app/skins/full_calendar/tpl.php:120
718
  msgid "Weekly"
719
  msgstr ""
720
 
721
- #: app/features/events.php:648 app/features/fes/form.php:334
722
  #: app/features/mec.php:1327 app/skins/default_full_calendar/tpl.php:72
723
  #: app/skins/full_calendar/tpl.php:119
724
  msgid "Monthly"
725
  msgstr ""
726
 
727
- #: app/features/events.php:655 app/features/fes/form.php:335
728
  #: app/features/mec.php:1328 app/skins/default_full_calendar/tpl.php:71
729
  #: app/skins/full_calendar/tpl.php:118
730
  msgid "Yearly"
731
  msgstr ""
732
 
733
- #: app/features/events.php:662 app/features/fes/form.php:336
734
  msgid "Custom Days"
735
  msgstr ""
736
 
737
- #: app/features/events.php:669 app/features/fes/form.php:337
738
  msgid "Advanced"
739
  msgstr ""
740
 
741
- #: app/features/events.php:674 app/features/fes/form.php:341
742
  msgid "Repeat Interval"
743
  msgstr ""
744
 
745
- #: app/features/events.php:676 app/features/fes/form.php:342
746
  msgid "Repeat interval"
747
  msgstr ""
748
 
749
- #: app/features/events.php:680 app/features/fes/form.php:345
750
  msgid "Week Days"
751
  msgstr ""
752
 
753
- #: app/features/events.php:697
754
  msgid ""
755
  "To add multiple occurrences per day you need Pro version of Modern Events "
756
  "Calendar."
757
  msgstr ""
758
 
759
- #: app/features/events.php:703 app/features/events.php:1853
760
- #: app/features/events.php:1881 app/features/events.php:2019
761
  #: app/features/fes/form.php:359 app/features/ix/import_f_calendar.php:42
762
  #: app/features/ix/import_g_calendar.php:51
763
  #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
764
  msgid "Start"
765
  msgstr ""
766
 
767
- #: app/features/events.php:716 app/features/events.php:1219
768
- #: app/features/events.php:1339 app/features/events.php:1444
769
- #: app/features/events.php:1837 app/features/events.php:2008
770
- #: app/features/events.php:2088 app/features/events.php:2221
771
  #: app/features/fes/form.php:389 app/features/fes/form.php:920
772
  msgid "Add"
773
  msgstr ""
774
 
775
- #: app/features/events.php:719 app/features/fes/form.php:392
776
  msgid "Custom Days Repeating"
777
  msgstr ""
778
 
779
- #: app/features/events.php:722 app/features/fes/form.php:395
780
  msgid ""
781
  "Add certain days to event occurrence dates. If you have a single day event, "
782
  "start and end dates should be the same, If you have a multiple day event, "
783
  "the start and end dates must be commensurate with the initial date."
784
  msgstr ""
785
 
786
- #: app/features/events.php:733 app/features/events.php:1857
787
- #: app/features/events.php:1885 app/features/events.php:2023
788
  #: app/features/fes/form.php:374
789
  msgid "End"
790
  msgstr ""
791
 
792
- #: app/features/events.php:810 app/features/fes/form.php:468
793
  msgid "First"
794
  msgstr ""
795
 
796
- #: app/features/events.php:852 app/features/fes/form.php:510
797
  msgid "Second"
798
  msgstr ""
799
 
800
- #: app/features/events.php:894 app/features/fes/form.php:552
801
  msgid "Third"
802
  msgstr ""
803
 
804
- #: app/features/events.php:936 app/features/fes/form.php:594
805
  msgid "Fourth"
806
  msgstr ""
807
 
808
- #: app/features/events.php:978 app/features/fes/form.php:636
809
  msgid "Last"
810
  msgstr ""
811
 
812
- #: app/features/events.php:1025 app/features/fes/form.php:682
813
  msgid "Ends Repeat"
814
  msgstr ""
815
 
816
- #: app/features/events.php:1037 app/features/fes/form.php:686
817
  msgid "Never"
818
  msgstr ""
819
 
820
- #: app/features/events.php:1049 app/features/fes/form.php:691
821
  msgid "On"
822
  msgstr ""
823
 
824
- #: app/features/events.php:1065 app/features/fes/form.php:698
 
825
  msgid "After"
826
  msgstr ""
827
 
828
- #: app/features/events.php:1069 app/features/events.php:1073
829
  #: app/features/fes/form.php:700 app/features/fes/form.php:703
830
  msgid "Occurrences times"
831
  msgstr ""
832
 
833
- #: app/features/events.php:1074
834
  msgid ""
835
  "The event will finish after certain repeats. For example if you set it to "
836
  "10, the event will finish after 10 occurrences."
837
  msgstr ""
838
 
839
- #: app/features/events.php:1089 app/features/fes/form.php:717
840
  msgid "Show only one occurrence of this event"
841
  msgstr ""
842
 
843
- #: app/features/events.php:1109 app/features/events.php:3642
844
- #: app/features/events.php:3684 app/features/fes/form.php:790
845
- #: app/features/ix.php:3513 app/features/ix.php:3554
846
- #: app/features/mec/settings.php:715 app/libraries/main.php:5920
847
- #: app/libraries/main.php:5967 app/widgets/single.php:103
848
  msgid "Event Cost"
849
  msgstr ""
850
 
851
- #: app/features/events.php:1206
852
  msgid "Exceptional Days (Exclude Dates)"
853
  msgstr ""
854
 
855
- #: app/features/events.php:1212 app/features/events.php:1222
856
  msgid "Exclude certain days"
857
  msgstr ""
858
 
859
- #: app/features/events.php:1217 app/features/events.php:2436
860
- #: app/features/events.php:2525 app/features/fes.php:233
861
- #: app/features/mec/booking.php:563 app/features/mec/booking.php:659
862
  #: app/features/mec/single.php:185 app/features/profile/profile.php:58
863
- #: app/libraries/main.php:3241 app/modules/booking/steps/tickets.php:94
864
- #: app/modules/next-event/details.php:134 app/skins/single.php:938
865
  #: app/skins/single/default.php:100 app/skins/single/default.php:334
866
  #: app/skins/single/m1.php:22 app/skins/single/modern.php:197
867
  msgid "Date"
868
  msgstr ""
869
 
870
- #: app/features/events.php:1223
871
  msgid ""
872
  "Exclude certain days from event occurrence dates. Please note that you can "
873
  "exclude only single day occurrences and you cannot exclude one day from "
874
  "multiple day occurrences."
875
  msgstr ""
876
 
877
- #: app/features/events.php:1282 app/libraries/render.php:544
878
  msgid "Day 1"
879
  msgstr ""
880
 
881
- #: app/features/events.php:1312
882
  msgid "Add Day"
883
  msgstr ""
884
 
885
- #: app/features/events.php:1313
886
  msgid ""
887
  "Add new days for schedule. For example if your event is multiple days, you "
888
  "can add a different schedule for each day!"
889
  msgstr ""
890
 
891
- #: app/features/events.php:1320
892
  #, php-format
893
  msgid "Day %s"
894
  msgstr ""
895
 
896
- #: app/features/events.php:1324 app/features/events.php:1363
897
- #: app/features/events.php:1398 app/features/events.php:1430
898
- #: app/features/events.php:1459 app/features/events.php:2236
899
- #: app/features/events.php:2283 app/features/events.php:3448
900
- #: app/features/events.php:3642 app/features/events.php:3684
901
- #: app/features/fes/form.php:248 app/features/ix.php:3513
902
- #: app/features/ix.php:3554 app/features/mec/booking.php:460
903
- #: app/features/mec/booking.php:492 app/features/mec/styling.php:130
904
  msgid "Title"
905
  msgstr ""
906
 
907
- #: app/features/events.php:1333 app/features/events.php:1370
908
- #: app/features/events.php:1403 app/features/events.php:1438
909
- #: app/features/events.php:1464 app/features/events.php:1867
910
- #: app/features/events.php:1893 app/features/events.php:2029
911
- #: app/features/events.php:2128 app/features/events.php:2164
912
- #: app/features/events.php:2271 app/features/events.php:2313
913
- #: app/features/mec/booking.php:403 app/features/mec/booking.php:432
914
- #: app/features/mec/booking.php:483 app/features/mec/booking.php:515
915
- #: app/libraries/main.php:3076 app/libraries/main.php:3105
916
- #: app/libraries/main.php:3134 app/libraries/main.php:3163
917
- #: app/libraries/main.php:3192 app/libraries/main.php:3221
918
- #: app/libraries/main.php:3250 app/libraries/main.php:3279
919
- #: app/libraries/main.php:3308 app/libraries/main.php:3329
920
- #: app/libraries/main.php:3360 app/libraries/main.php:3406
921
- #: app/libraries/main.php:3452 app/libraries/main.php:3501
922
- #: app/libraries/main.php:3541
923
  msgid "Remove"
924
  msgstr ""
925
 
926
- #: app/features/events.php:1340 app/features/events.php:1445
927
  msgid "Add new hourly schedule row"
928
  msgstr ""
929
 
930
- #: app/features/events.php:1355 app/features/events.php:1392
931
- #: app/features/events.php:1454
932
  msgid "From e.g. 8:15"
933
  msgstr ""
934
 
935
- #: app/features/events.php:1359 app/features/events.php:1395
936
- #: app/features/events.php:1456
937
  msgid "To e.g. 8:45"
938
  msgstr ""
939
 
940
- #: app/features/events.php:1367 app/features/events.php:1401
941
- #: app/features/events.php:1462 app/features/events.php:1758
942
- #: app/features/events.php:1940
943
  msgid "Description"
944
  msgstr ""
945
 
946
- #: app/features/events.php:1373 app/features/events.php:1406
947
- #: app/features/events.php:1467 app/features/fes/form.php:916
948
  #: app/features/mec.php:469 app/features/mec/modules.php:51
949
  #: app/features/mec/settings.php:763 app/features/speakers.php:62
950
- #: app/libraries/main.php:569 app/libraries/main.php:5895
951
- #: app/libraries/main.php:5943 app/modules/speakers/details.php:18
952
  msgid "Speakers"
953
  msgstr ""
954
 
955
- #: app/features/events.php:1426 app/features/events.php:1434
956
  msgid "New Day"
957
  msgstr ""
958
 
959
- #: app/features/events.php:1498 app/features/fes/form.php:767
960
  #: app/features/mec/settings.php:709
961
  msgid "Event Links"
962
  msgstr ""
963
 
964
- #: app/features/events.php:1501 app/features/events.php:1507
965
- #: app/features/fes/form.php:769 app/libraries/main.php:5918
966
- #: app/libraries/main.php:5965
967
  msgid "Event Link"
968
  msgstr ""
969
 
970
- #: app/features/events.php:1504 app/features/events.php:1520
971
  #: app/features/fes/form.php:770 app/features/fes/form.php:775
972
  msgid "eg. http://yoursite.com/your-event"
973
  msgstr ""
974
 
975
- #: app/features/events.php:1508
976
  msgid ""
977
  "If you fill it, it will replace the default event page link. Insert full "
978
  "link including http(s):// - Also, if you use advertising URL, can use URL "
979
  "Shortener"
980
  msgstr ""
981
 
982
- #: app/features/events.php:1510
983
  msgid "URL Shortener"
984
  msgstr ""
985
 
986
- #: app/features/events.php:1517 app/features/events.php:1530
987
- #: app/features/fes/form.php:774 app/libraries/main.php:5919
988
- #: app/libraries/main.php:5966 app/skins/single.php:964
989
  #: app/skins/single/default.php:159 app/skins/single/default.php:391
990
  #: app/skins/single/m1.php:218 app/skins/single/m2.php:142
991
  #: app/skins/single/modern.php:162 app/widgets/single.php:107
992
  msgid "More Info"
993
  msgstr ""
994
 
995
- #: app/features/events.php:1523 app/features/fes/form.php:776
996
  msgid "More Information"
997
  msgstr ""
998
 
999
- #: app/features/events.php:1525 app/features/fes/form.php:778
1000
  msgid "Current Window"
1001
  msgstr ""
1002
 
1003
- #: app/features/events.php:1526 app/features/fes/form.php:779
1004
  msgid "New Window"
1005
  msgstr ""
1006
 
1007
- #: app/features/events.php:1531 app/features/fes/form.php:781
1008
  msgid ""
1009
  "If you fill it, it will be shown in event details page as an optional link. "
1010
  "Insert full link including http(s)://"
1011
  msgstr ""
1012
 
1013
- #: app/features/events.php:1554 app/features/mec/settings.php:777
1014
  msgid "Booking Options"
1015
  msgstr ""
1016
 
1017
- #: app/features/events.php:1555
1018
  msgid "Total User Booking Limits"
1019
  msgstr ""
1020
 
1021
- #: app/features/events.php:1556 app/features/events.php:1701
1022
- #: app/libraries/book.php:60 app/libraries/main.php:5923
1023
  #: app/modules/booking/steps/tickets.php:119
1024
  #: app/modules/booking/steps/tickets.php:125
1025
  msgid "Tickets"
1026
  msgstr ""
1027
 
1028
- #: app/features/events.php:1558 app/features/events.php:2065
1029
  msgid "Fees"
1030
  msgstr ""
1031
 
1032
- #: app/features/events.php:1561 app/features/events.php:2197
1033
  #: app/features/mec/settings.php:789
1034
  msgid "Ticket Variations / Options"
1035
  msgstr ""
1036
 
1037
- #: app/features/events.php:1565 app/features/mec/booking.php:735
1038
  #: app/features/mec/support-page.php:118
1039
  msgid "Organizer Payment"
1040
  msgstr ""
1041
 
1042
- #: app/features/events.php:1608 app/features/events.php:1622
1043
  msgid "Total booking limit"
1044
  msgstr ""
1045
 
1046
- #: app/features/events.php:1619 app/features/events.php:1806
1047
- #: app/features/events.php:1978 app/modules/booking/default.php:98
1048
  #: app/modules/booking/steps/tickets.php:119
1049
  #: app/modules/booking/steps/tickets.php:125
1050
  #: app/skins/available_spot/tpl.php:142
1051
  msgid "Unlimited"
1052
  msgstr ""
1053
 
1054
- #: app/features/events.php:1625
1055
  msgid ""
1056
  "If you want to set a limit to all tickets, uncheck this checkbox and put a "
1057
  "limitation number."
1058
  msgstr ""
1059
 
1060
- #: app/features/events.php:1627
1061
  msgid "Read About A Booking System"
1062
  msgstr ""
1063
 
1064
- #: app/features/events.php:1635
1065
  msgid "100"
1066
  msgstr ""
1067
 
1068
- #: app/features/events.php:1637 app/features/events.php:1651
1069
  msgid "Book All Occurrences"
1070
  msgstr ""
1071
 
1072
- #: app/features/events.php:1648
1073
  msgid "Sell all occurrences by one booking"
1074
  msgstr ""
1075
 
1076
- #: app/features/events.php:1654
1077
  msgid ""
1078
  "If you have a series of events and you want to sell all of them at once, "
1079
  "this option is for you! For example a weekly yoga course or something "
1080
  "similar."
1081
  msgstr ""
1082
 
1083
- #: app/features/events.php:1664
1084
  msgid "Total user booking limits"
1085
  msgstr ""
1086
 
1087
- #: app/features/events.php:1675 app/features/events.php:2077
1088
- #: app/features/events.php:2209 app/features/events.php:2390
1089
  msgid "Inherit from global options"
1090
  msgstr ""
1091
 
1092
- #: app/features/events.php:1678
1093
  msgid "12"
1094
  msgstr ""
1095
 
1096
- #: app/features/events.php:1704
1097
  msgid ""
1098
  "You're translating an event so MEC will use the original event for tickets "
1099
  "and booking. You can only translate the ticket name and description. Please "
1100
  "define exact tickets that you defined in the original event here."
1101
  msgstr ""
1102
 
1103
- #: app/features/events.php:1709
1104
  msgid "Add Ticket"
1105
  msgstr ""
1106
 
1107
- #: app/features/events.php:1721 app/features/events.php:1905
1108
  msgid "Ticket ID"
1109
  msgstr ""
1110
 
1111
- #: app/features/events.php:1721 app/features/events.php:1905
1112
- #: app/features/events.php:3642 app/features/events.php:3684
1113
- #: app/features/fes.php:233 app/features/ix.php:3513 app/features/ix.php:3554
1114
  #: app/features/labels.php:177 app/features/locations.php:260
1115
  #: app/features/organizers.php:203 app/features/speakers.php:268
1116
  msgid "ID"
1117
  msgstr ""
1118
 
1119
- #: app/features/events.php:1724 app/features/events.php:1908
1120
  msgid "Ticket Name"
1121
  msgstr ""
1122
 
1123
- #: app/features/events.php:1729 app/features/events.php:1912
1124
- #: app/features/events.php:3642 app/features/events.php:3684
1125
- #: app/features/ix.php:3513 app/features/ix.php:3554
1126
  msgid "Start Time"
1127
  msgstr ""
1128
 
1129
- #: app/features/events.php:1742 app/features/events.php:1925
1130
- #: app/features/events.php:3642 app/features/events.php:3684
1131
- #: app/features/ix.php:3513 app/features/ix.php:3554
1132
  msgid "End Time"
1133
  msgstr ""
1134
 
1135
- #: app/features/events.php:1763 app/features/events.php:1767
1136
- #: app/features/events.php:1861 app/features/events.php:1888
1137
- #: app/features/events.php:1945 app/features/events.php:1948
1138
- #: app/features/events.php:2025 app/features/events.php:2242
1139
- #: app/features/events.php:2246 app/features/events.php:2288
1140
- #: app/features/events.php:2291 app/features/mec/booking.php:464
1141
- #: app/features/mec/booking.php:467 app/features/mec/booking.php:496
1142
- #: app/features/mec/booking.php:499
1143
  msgid "Price"
1144
  msgstr ""
1145
 
1146
- #: app/features/events.php:1768 app/features/events.php:1949
1147
  msgid ""
1148
  "Insert 0 for free ticket. Only numbers please — Enter only the price without "
1149
  "any symbols or characters."
1150
  msgstr ""
1151
 
1152
- #: app/features/events.php:1777 app/features/events.php:1782
1153
- #: app/features/events.php:1958 app/features/events.php:1961
1154
  msgid "Price Label"
1155
  msgstr ""
1156
 
1157
- #: app/features/events.php:1783 app/features/events.php:1962
1158
  msgid "For showing on website. e.g. $15"
1159
  msgstr ""
1160
 
1161
- #: app/features/events.php:1793 app/features/events.php:1972
1162
  msgid "Available Tickets"
1163
  msgstr ""
1164
 
1165
- #: app/features/events.php:1810 app/features/events.php:1982
1166
  msgid "Minimum Ticket e.g. 3"
1167
  msgstr ""
1168
 
1169
- #: app/features/events.php:1813 app/features/events.php:1985
1170
  msgid "MinimumTicket"
1171
  msgstr ""
1172
 
1173
- #: app/features/events.php:1815 app/features/events.php:1987
1174
  msgid "Set a number for the minimum ticket reservation possible"
1175
  msgstr ""
1176
 
1177
- #: app/features/events.php:1823 app/features/events.php:1995
1178
  msgid "e.g. 0"
1179
  msgstr ""
1180
 
1181
- #: app/features/events.php:1825 app/features/events.php:1997
1182
  msgid "Day"
1183
  msgstr ""
1184
 
1185
- #: app/features/events.php:1826 app/features/events.php:1998
1186
  msgid "Hour"
1187
  msgstr ""
1188
 
1189
- #: app/features/events.php:1828 app/features/events.php:2000
1190
  #, php-format
1191
  msgid "Stop selling ticket %s before event start."
1192
  msgstr ""
1193
 
1194
- #: app/features/events.php:1835 app/features/events.php:2006
1195
  msgid "Price per Date"
1196
  msgstr ""
1197
 
1198
- #: app/features/events.php:1865 app/features/events.php:1891
1199
- #: app/features/events.php:2027 app/features/labels.php:60
1200
  #: app/features/mec/meta_boxes/display_options.php:1396
1201
  #: app/features/mec/meta_boxes/search_form.php:67
1202
  #: app/features/mec/meta_boxes/search_form.php:137
@@ -1210,115 +1212,115 @@ msgstr ""
1210
  #: app/features/mec/meta_boxes/search_form.php:690
1211
  #: app/features/mec/meta_boxes/search_form.php:796
1212
  #: app/features/mec/settings.php:917 app/features/mec/single.php:341
1213
- #: app/features/search.php:98 app/libraries/skins.php:1069
1214
  msgid "Label"
1215
  msgstr ""
1216
 
1217
- #: app/features/events.php:2102 app/features/events.php:2140
1218
- #: app/features/mec/booking.php:383 app/features/mec/booking.php:412
1219
  msgid "Fee Title"
1220
  msgstr ""
1221
 
1222
- #: app/features/events.php:2108 app/features/events.php:2112
1223
- #: app/features/events.php:2145 app/features/events.php:2148
1224
- #: app/features/mec/booking.php:387 app/features/mec/booking.php:390
1225
- #: app/features/mec/booking.php:416 app/features/mec/booking.php:419
1226
  msgid "Amount"
1227
  msgstr ""
1228
 
1229
- #: app/features/events.php:2113 app/features/events.php:2149
1230
- #: app/features/mec/booking.php:391 app/features/mec/booking.php:420
1231
  msgid ""
1232
  "Fee amount, considered as fixed amount if you set the type to amount "
1233
  "otherwise considered as percentage"
1234
  msgstr ""
1235
 
1236
- #: app/features/events.php:2122 app/features/events.php:2158
1237
- #: app/features/mec/booking.php:398 app/features/mec/booking.php:427
1238
  msgid "Percent"
1239
  msgstr ""
1240
 
1241
- #: app/features/events.php:2123 app/features/events.php:2159
1242
- #: app/features/mec/booking.php:399 app/features/mec/booking.php:428
1243
  msgid "Amount (Per Ticket)"
1244
  msgstr ""
1245
 
1246
- #: app/features/events.php:2124 app/features/events.php:2160
1247
- #: app/features/mec/booking.php:400 app/features/mec/booking.php:429
1248
  msgid "Amount (Per Booking)"
1249
  msgstr ""
1250
 
1251
- #: app/features/events.php:2247 app/features/events.php:2292
1252
- #: app/features/mec/booking.php:468 app/features/mec/booking.php:500
1253
  msgid "Option Price"
1254
  msgstr ""
1255
 
1256
- #: app/features/events.php:2257 app/features/events.php:2261
1257
- #: app/features/events.php:2301 app/features/events.php:2304
1258
- #: app/features/mec/booking.php:474 app/features/mec/booking.php:477
1259
- #: app/features/mec/booking.php:506 app/features/mec/booking.php:509
1260
  msgid "Maximum Per Ticket"
1261
  msgstr ""
1262
 
1263
- #: app/features/events.php:2262 app/features/events.php:2305
1264
- #: app/features/mec/booking.php:478 app/features/mec/booking.php:510
1265
  msgid "Maximum Per Ticket. Leave blank for unlimited."
1266
  msgstr ""
1267
 
1268
- #: app/features/events.php:2402 app/features/mec/booking.php:526
1269
  msgid "Per Attendee Fields"
1270
  msgstr ""
1271
 
1272
- #: app/features/events.php:2432 app/features/mec/booking.php:559
1273
- #: app/libraries/main.php:3096
1274
  msgid "MEC Name"
1275
  msgstr ""
1276
 
1277
- #: app/features/events.php:2433 app/features/mec/booking.php:560
1278
- #: app/libraries/main.php:3125
1279
  msgid "MEC Email"
1280
  msgstr ""
1281
 
1282
- #: app/features/events.php:2434 app/features/events.php:2523
1283
- #: app/features/mec/booking.php:561 app/features/mec/booking.php:657
1284
- #: app/features/mec/single.php:182 app/libraries/main.php:3067
1285
  msgid "Text"
1286
  msgstr ""
1287
 
1288
- #: app/features/events.php:2437 app/features/events.php:2526
1289
- #: app/features/mec/booking.php:564 app/features/mec/booking.php:660
1290
  #: app/features/mec/single.php:186 app/features/organizers.php:103
1291
  #: app/features/organizers.php:148 app/features/speakers.php:119
1292
  #: app/features/speakers.php:192 app/features/speakers.php:271
1293
- #: app/libraries/main.php:3270
1294
  msgid "Tel"
1295
  msgstr ""
1296
 
1297
- #: app/features/events.php:2438 app/features/mec/booking.php:565
1298
- #: app/libraries/main.php:3212
1299
  msgid "File"
1300
  msgstr ""
1301
 
1302
- #: app/features/events.php:2439 app/features/events.php:2527
1303
- #: app/features/mec/booking.php:566 app/features/mec/booking.php:661
1304
- #: app/features/mec/single.php:187 app/libraries/main.php:3299
1305
  msgid "Textarea"
1306
  msgstr ""
1307
 
1308
- #: app/features/events.php:2440 app/features/events.php:2528
1309
- #: app/features/mec/booking.php:567 app/features/mec/booking.php:662
1310
- #: app/features/mec/single.php:189 app/libraries/main.php:3351
1311
  msgid "Checkboxes"
1312
  msgstr ""
1313
 
1314
- #: app/features/events.php:2441 app/features/events.php:2529
1315
- #: app/features/mec/booking.php:568 app/features/mec/booking.php:663
1316
- #: app/features/mec/single.php:190 app/libraries/main.php:3397
1317
  msgid "Radio Buttons"
1318
  msgstr ""
1319
 
1320
- #: app/features/events.php:2442 app/features/events.php:2530
1321
- #: app/features/mec/booking.php:569 app/features/mec/booking.php:664
1322
  #: app/features/mec/meta_boxes/search_form.php:34
1323
  #: app/features/mec/meta_boxes/search_form.php:41
1324
  #: app/features/mec/meta_boxes/search_form.php:49
@@ -1395,53 +1397,53 @@ msgstr ""
1395
  #: app/features/mec/meta_boxes/search_form.php:792
1396
  #: app/features/mec/meta_boxes/search_form.php:799
1397
  #: app/features/mec/meta_boxes/search_form.php:813
1398
- #: app/features/mec/single.php:191 app/libraries/main.php:3443
1399
  msgid "Dropdown"
1400
  msgstr ""
1401
 
1402
- #: app/features/events.php:2443 app/features/events.php:2531
1403
- #: app/features/mec/booking.php:570 app/features/mec/booking.php:665
1404
- #: app/libraries/main.php:3492
1405
  msgid "Agreement"
1406
  msgstr ""
1407
 
1408
- #: app/features/events.php:2444 app/features/events.php:2532
1409
- #: app/features/mec/booking.php:571 app/features/mec/booking.php:666
1410
- #: app/features/mec/single.php:188 app/libraries/main.php:3328
1411
  msgid "Paragraph"
1412
  msgstr ""
1413
 
1414
- #: app/features/events.php:2493 app/features/mec/booking.php:624
1415
  msgid "Fixed Fields"
1416
  msgstr ""
1417
 
1418
- #: app/features/events.php:3350 app/features/events.php:3368
1419
- #: app/features/events.php:3386 app/features/events.php:3404
1420
  #, php-format
1421
  msgid "Show all %s"
1422
  msgstr ""
1423
 
1424
- #: app/features/events.php:3350
1425
  msgid "labels"
1426
  msgstr ""
1427
 
1428
- #: app/features/events.php:3368
1429
  msgid "locations"
1430
  msgstr ""
1431
 
1432
- #: app/features/events.php:3386
1433
  msgid "organizers"
1434
  msgstr ""
1435
 
1436
- #: app/features/events.php:3420
1437
  msgid "Attendees List"
1438
  msgstr ""
1439
 
1440
- #: app/features/events.php:3450 app/features/events.php:3642
1441
- #: app/features/events.php:3684 app/features/ix.php:3513
1442
- #: app/features/ix.php:3554 app/features/locations.php:58
1443
- #: app/features/locations.php:261 app/features/locations.php:322
1444
- #: app/features/locations.php:324 app/features/locations.php:333
1445
  #: app/features/mec/meta_boxes/display_options.php:1397
1446
  #: app/features/mec/meta_boxes/search_form.php:38
1447
  #: app/features/mec/meta_boxes/search_form.php:108
@@ -1456,88 +1458,88 @@ msgstr ""
1456
  #: app/features/mec/meta_boxes/search_form.php:767
1457
  #: app/features/mec/settings.php:891 app/features/mec/single.php:331
1458
  #: app/features/popup/event.php:116 app/features/popup/event.php:125
1459
- #: app/features/search.php:74 app/libraries/main.php:2424
1460
- #: app/libraries/main.php:5892 app/libraries/main.php:5940
1461
- #: app/libraries/skins.php:965 app/skins/single.php:781
1462
- #: app/skins/single.php:1224 app/skins/single/default.php:196
1463
  #: app/skins/single/default.php:429 app/skins/single/m1.php:174
1464
  #: app/skins/single/m2.php:97 app/skins/single/modern.php:116
1465
  msgid "Location"
1466
  msgstr ""
1467
 
1468
- #: app/features/events.php:3455
1469
  msgid "Repeat"
1470
  msgstr ""
1471
 
1472
- #: app/features/events.php:3456
1473
  msgid "Author"
1474
  msgstr ""
1475
 
1476
- #: app/features/events.php:3577 app/features/events.php:3578
1477
  msgid "iCal Export"
1478
  msgstr ""
1479
 
1480
- #: app/features/events.php:3580 app/features/events.php:3581
1481
  msgid "CSV Export"
1482
  msgstr ""
1483
 
1484
- #: app/features/events.php:3583 app/features/events.php:3584
1485
  msgid "MS Excel Export"
1486
  msgstr ""
1487
 
1488
- #: app/features/events.php:3586 app/features/events.php:3587
1489
  msgid "XML Export"
1490
  msgstr ""
1491
 
1492
- #: app/features/events.php:3589 app/features/events.php:3590
1493
  msgid "JSON Export"
1494
  msgstr ""
1495
 
1496
- #: app/features/events.php:3592 app/features/events.php:3593
1497
- #: app/features/events.php:3775
1498
  msgid "Duplicate"
1499
  msgstr ""
1500
 
1501
- #: app/features/events.php:3642 app/features/events.php:3684
1502
- #: app/features/ix.php:3513 app/features/ix.php:3554
1503
  msgid "Link"
1504
  msgstr ""
1505
 
1506
- #: app/features/events.php:3642 app/features/events.php:3684
1507
  #, php-format
1508
  msgid "%s Tel"
1509
  msgstr ""
1510
 
1511
- #: app/features/events.php:3642 app/features/events.php:3684
1512
  #, php-format
1513
  msgid "%s Email"
1514
  msgstr ""
1515
 
1516
- #: app/features/events.php:3987 app/features/fes.php:233
1517
- #: app/features/profile/profile.php:183 app/libraries/main.php:2507
1518
- #: app/libraries/main.php:5922
1519
  msgid "Ticket"
1520
  msgstr ""
1521
 
1522
- #: app/features/events.php:3990 app/features/profile/profile.php:186
1523
  msgid "Variations"
1524
  msgstr ""
1525
 
1526
- #: app/features/events.php:4005 app/features/fes.php:304
1527
  msgid "Unknown"
1528
  msgstr ""
1529
 
1530
- #: app/features/events.php:4031
1531
  msgid ""
1532
  "If you want to send an email, first select your attendees and then click in "
1533
  "the button below, please."
1534
  msgstr ""
1535
 
1536
- #: app/features/events.php:4031 app/features/mec/report.php:50
1537
  msgid "Send Email"
1538
  msgstr ""
1539
 
1540
- #: app/features/events.php:4035
1541
  msgid "No Attendees Found!"
1542
  msgstr ""
1543
 
@@ -1576,8 +1578,8 @@ msgstr ""
1576
  msgid "Order Time"
1577
  msgstr ""
1578
 
1579
- #: app/features/fes.php:233 app/libraries/main.php:2455
1580
- #: app/libraries/main.php:2570
1581
  msgid "Transaction ID"
1582
  msgstr ""
1583
 
@@ -1725,8 +1727,8 @@ msgstr ""
1725
  #: app/features/fes/form.php:848 app/features/labels.php:61
1726
  #: app/features/labels.php:221 app/features/mec.php:462
1727
  #: app/features/mec/meta_boxes/filter.php:72
1728
- #: app/features/mec/meta_boxes/filter.php:133 app/libraries/main.php:5889
1729
- #: app/libraries/main.php:5937 app/skins/single.php:994
1730
  #: app/skins/single/default.php:174 app/skins/single/default.php:406
1731
  #: app/skins/single/m1.php:77 app/skins/single/modern.php:252
1732
  msgid "Labels"
@@ -1792,97 +1794,143 @@ msgstr ""
1792
  msgid "Import / Export"
1793
  msgstr ""
1794
 
1795
- #: app/features/ix.php:205
1796
- msgid "Please upload the feed file."
1797
  msgstr ""
1798
 
1799
- #: app/features/ix.php:208
1800
- msgid "The file type should be XML or ICS."
1801
  msgstr ""
1802
 
1803
- #: app/features/ix.php:217
1804
  msgid "An error occurred during the file upload! Please check permissions!"
1805
  msgstr ""
1806
 
1807
- #: app/features/ix.php:225
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1808
  msgid "The events are imported successfully!"
1809
  msgstr ""
1810
 
1811
- #: app/features/ix.php:950
1812
  msgid "Third Party plugin is not installed and activated!"
1813
  msgstr ""
1814
 
1815
- #: app/features/ix.php:973
1816
  msgid "Third Party plugin is invalid!"
1817
  msgstr ""
1818
 
1819
- #: app/features/ix.php:2724 app/features/ix.php:2782
1820
  msgid "API key and Calendar ID are required!"
1821
  msgstr ""
1822
 
1823
- #: app/features/ix.php:2777 app/features/ix.php:3196 app/features/ix.php:3937
1824
  msgid "Please select events to import!"
1825
  msgstr ""
1826
 
1827
- #: app/features/ix.php:3138 app/features/ix.php:3201
1828
  msgid "API key and Group URL are required!"
1829
  msgstr ""
1830
 
1831
- #: app/features/ix.php:3440
1832
  msgid "Check at Meetup"
1833
  msgstr ""
1834
 
1835
- #: app/features/ix.php:3513 app/features/ix.php:3554
1836
  msgid "Organizer Tel"
1837
  msgstr ""
1838
 
1839
- #: app/features/ix.php:3513 app/features/ix.php:3554
1840
  msgid "Organizer Email"
1841
  msgstr ""
1842
 
1843
- #: app/features/ix.php:3629
1844
  msgid "All of Client ID, Client Secret, and Calendar ID are required!"
1845
  msgstr ""
1846
 
1847
- #: app/features/ix.php:3652
1848
  #, php-format
1849
  msgid "All seems good! Please click %s to authenticate your app."
1850
  msgstr ""
1851
 
1852
- #: app/features/ix.php:3652
1853
  msgid "here"
1854
  msgstr ""
1855
 
1856
- #: app/features/ix.php:3706
1857
  msgid "Client App, Client Secret, and Calendar ID are all required!"
1858
  msgstr ""
1859
 
1860
- #: app/features/ix.php:3859
1861
  #, php-format
1862
  msgid "%s events added to Google Calendar with success."
1863
  msgstr ""
1864
 
1865
- #: app/features/ix.php:3860
1866
  #, php-format
1867
  msgid "%s Updated previously added events."
1868
  msgstr ""
1869
 
1870
- #: app/features/ix.php:3861
1871
  #, php-format
1872
  msgid "%s events failed to add for following reasons: %s"
1873
  msgstr ""
1874
 
1875
- #: app/features/ix.php:3893
1876
  msgid "Please insert your Facebook page's link."
1877
  msgstr ""
1878
 
1879
- #: app/features/ix.php:3904 app/features/ix.php:3946
1880
  msgid ""
1881
  "We were not able to recognize your Facebook page. Please check again and "
1882
  "provide a valid link."
1883
  msgstr ""
1884
 
1885
- #: app/features/ix.php:3941
1886
  msgid "Please insert your facebook page's link."
1887
  msgstr ""
1888
 
@@ -2039,15 +2087,15 @@ msgstr ""
2039
  #: app/features/ix/export_g_calendar.php:72
2040
  #: app/features/ix/export_g_calendar.php:151
2041
  #: app/features/ix/export_g_calendar.php:166
2042
- #: app/features/mec/notifications.php:138
2043
- #: app/features/mec/notifications.php:240
2044
- #: app/features/mec/notifications.php:355
2045
- #: app/features/mec/notifications.php:702
2046
  msgid "Add to Google Calendar"
2047
  msgstr ""
2048
 
2049
- #: app/features/ix/export_g_calendar.php:93 app/features/mec/booking.php:828
2050
- #: app/features/mec/modules.php:413 app/features/mec/notifications.php:978
2051
  #: app/features/mec/settings.php:1162 app/features/mec/single.php:388
2052
  msgid "Checking ..."
2053
  msgstr ""
@@ -2072,6 +2120,7 @@ msgid "XML Feed"
2072
  msgstr ""
2073
 
2074
  #: app/features/ix/import.php:29 app/features/ix/import.php:42
 
2075
  msgid "Upload & Import"
2076
  msgstr ""
2077
 
@@ -2090,9 +2139,10 @@ msgstr ""
2090
  msgid "ICS Feed"
2091
  msgstr ""
2092
 
2093
- #: app/features/ix/import.php:46 app/features/mec/booking.php:99
2094
- #: app/features/mec/booking.php:333 app/features/mec/booking.php:349
2095
- #: app/features/mec/booking.php:367 app/features/mec/booking.php:444
 
2096
  #: app/features/mec/meta_boxes/display_options.php:214
2097
  #: app/features/mec/meta_boxes/display_options.php:467
2098
  #: app/features/mec/modules.php:69 app/features/mec/modules.php:211
@@ -2101,10 +2151,10 @@ msgstr ""
2101
  msgid "%s is required to use this feature."
2102
  msgstr ""
2103
 
2104
- #: app/features/ix/import.php:46 app/features/ix/sync.php:22
2105
- #: app/features/mec/booking.php:99 app/features/mec/booking.php:333
2106
- #: app/features/mec/booking.php:349 app/features/mec/booking.php:367
2107
- #: app/features/mec/booking.php:444
2108
  #: app/features/mec/meta_boxes/display_options.php:214
2109
  #: app/features/mec/meta_boxes/display_options.php:467
2110
  #: app/features/mec/meta_boxes/display_options.php:508
@@ -2119,6 +2169,28 @@ msgstr ""
2119
  msgid "Pro version of Modern Events Calendar"
2120
  msgstr ""
2121
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2122
  #: app/features/ix/import_f_calendar.php:22
2123
  msgid "The Facebook SDK requires PHP version 5.4 or higher."
2124
  msgstr ""
@@ -2285,7 +2357,7 @@ msgstr ""
2285
 
2286
  #: app/features/ix/sync.php:32 app/features/ix/sync.php:41
2287
  #: app/features/ix/sync.php:52 app/features/ix/sync.php:63
2288
- #: app/features/mec/notifications.php:598
2289
  msgid "Important Note"
2290
  msgstr ""
2291
 
@@ -2454,21 +2526,6 @@ msgstr ""
2454
  msgid "Featured"
2455
  msgstr ""
2456
 
2457
- #: app/features/labels.php:118 app/features/labels.php:143
2458
- #: app/libraries/main.php:6206 app/skins/agenda/render.php:43
2459
- #: app/skins/available_spot/tpl.php:58 app/skins/carousel/render.php:38
2460
- #: app/skins/countdown/tpl.php:39 app/skins/cover/tpl.php:37
2461
- #: app/skins/daily_view/render.php:29 app/skins/grid/render.php:64
2462
- #: app/skins/list/render.php:40 app/skins/masonry/render.php:34
2463
- #: app/skins/monthly_view/calendar.php:89
2464
- #: app/skins/monthly_view/calendar_clean.php:88
2465
- #: app/skins/monthly_view/calendar_novel.php:80 app/skins/slider/render.php:48
2466
- #: app/skins/tile/render.php:44 app/skins/timeline/render.php:49
2467
- #: app/skins/timetable/render.php:44 app/skins/timetable/render.php:111
2468
- #: app/skins/weekly_view/render.php:37 app/skins/yearly_view/render.php:53
2469
- msgid "Canceled"
2470
- msgstr ""
2471
-
2472
  #: app/features/labels.php:120 app/features/labels.php:145
2473
  msgid "You can show featured and canceled events by a different style!"
2474
  msgstr ""
@@ -2491,8 +2548,8 @@ msgstr ""
2491
 
2492
  #: app/features/locations.php:59 app/features/mec.php:463
2493
  #: app/features/mec/dashboard.php:273 app/features/mec/meta_boxes/filter.php:70
2494
- #: app/features/mec/meta_boxes/filter.php:97 app/libraries/main.php:5891
2495
- #: app/libraries/main.php:5939
2496
  msgid "Locations"
2497
  msgstr ""
2498
 
@@ -2618,8 +2675,8 @@ msgstr ""
2618
  msgid "Don't show map in single event page"
2619
  msgstr ""
2620
 
2621
- #: app/features/locations.php:396 app/libraries/main.php:5925
2622
- #: app/libraries/main.php:5970
2623
  msgid "Other Locations"
2624
  msgstr ""
2625
 
@@ -2692,7 +2749,7 @@ msgstr ""
2692
  #: app/features/mec.php:464 app/features/mec/dashboard.php:280
2693
  #: app/features/mec/meta_boxes/filter.php:71
2694
  #: app/features/mec/meta_boxes/filter.php:115 app/features/organizers.php:59
2695
- #: app/libraries/main.php:5893 app/libraries/main.php:5941
2696
  msgid "Organizers"
2697
  msgstr ""
2698
 
@@ -2870,25 +2927,25 @@ msgid ""
2870
  msgstr ""
2871
 
2872
  #: app/features/mec/booking.php:78 app/features/mec/messages.php:13
2873
- #: app/features/mec/modules.php:23 app/features/mec/notifications.php:11
2874
  #: app/features/mec/settings.php:34 app/features/mec/single.php:19
2875
  #: app/features/mec/styling.php:35
2876
  msgid "Search..."
2877
  msgstr ""
2878
 
2879
- #: app/features/mec/booking.php:80 app/features/mec/booking.php:672
2880
- #: app/features/mec/booking.php:744 app/features/mec/booking.php:753
2881
- #: app/features/mec/booking.php:763 app/features/mec/booking.php:845
2882
- #: app/features/mec/booking.php:859 app/features/mec/messages.php:15
2883
  #: app/features/mec/messages.php:51 app/features/mec/messages.php:60
2884
  #: app/features/mec/messages.php:94 app/features/mec/messages.php:103
2885
- #: app/features/mec/modules.php:25 app/features/mec/modules.php:378
2886
- #: app/features/mec/modules.php:388 app/features/mec/modules.php:430
2887
- #: app/features/mec/modules.php:444 app/features/mec/notifications.php:13
2888
- #: app/features/mec/notifications.php:885
2889
  #: app/features/mec/notifications.php:897
2890
- #: app/features/mec/notifications.php:995
2891
- #: app/features/mec/notifications.php:1009 app/features/mec/settings.php:36
 
2892
  #: app/features/mec/settings.php:1111 app/features/mec/settings.php:1121
2893
  #: app/features/mec/settings.php:1179 app/features/mec/settings.php:1193
2894
  #: app/features/mec/single.php:21 app/features/mec/single.php:353
@@ -3089,108 +3146,148 @@ msgid ""
3089
  "starting the event!"
3090
  msgstr ""
3091
 
3092
- #: app/features/mec/booking.php:171 app/features/mec/booking.php:181
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3093
  #: app/features/mec/settings.php:639 app/features/mec/settings.php:649
3094
  msgid "Thank You Page"
3095
  msgstr ""
3096
 
3097
- #: app/features/mec/booking.php:182
3098
  msgid ""
3099
  "User redirects to this page after booking. Leave it empty if you want to "
3100
  "disable it."
3101
  msgstr ""
3102
 
3103
- #: app/features/mec/booking.php:189 app/features/mec/booking.php:194
3104
  #: app/features/mec/settings.php:659 app/features/mec/settings.php:664
3105
  msgid "Thank You Page Time Interval"
3106
  msgstr ""
3107
 
3108
- #: app/features/mec/booking.php:191 app/features/mec/settings.php:661
3109
  msgid "2000 mean 2 seconds"
3110
  msgstr ""
3111
 
3112
- #: app/features/mec/booking.php:195 app/features/mec/settings.php:665
3113
  msgid ""
3114
  "Waiting time before redirecting to thank you page. It's in miliseconds so "
3115
  "2000 means 2 seconds."
3116
  msgstr ""
3117
 
3118
- #: app/features/mec/booking.php:202 app/features/mec/booking.php:212
3119
  msgid "User Role"
3120
  msgstr ""
3121
 
3122
- #: app/features/mec/booking.php:213
3123
  msgid ""
3124
  "MEC creates a user for main attendee after each booking. Default role of the "
3125
  "user is subscriber but you can change it if needed."
3126
  msgstr ""
3127
 
3128
- #: app/features/mec/booking.php:224
3129
  msgid "Enable Express Attendees Form"
3130
  msgstr ""
3131
 
3132
- #: app/features/mec/booking.php:228
3133
  msgid "Attendees Form"
3134
  msgstr ""
3135
 
3136
- #: app/features/mec/booking.php:229
3137
  msgid ""
3138
  "Apply the info from the first attendee to all purchased ticket by that user. "
3139
  "Uncheck if you want every ticket to have its own attendee’s info."
3140
  msgstr ""
3141
 
3142
- #: app/features/mec/booking.php:242
3143
  msgid "Enable Invoice"
3144
  msgstr ""
3145
 
3146
- #: app/features/mec/booking.php:253
3147
  msgid "Enable Booking for Ongoing Events"
3148
  msgstr ""
3149
 
3150
- #: app/features/mec/booking.php:264
3151
  msgid "Enable Downloadable File"
3152
  msgstr ""
3153
 
3154
- #: app/features/mec/booking.php:269
3155
  msgid ""
3156
  "By enabling this feature, You can upload a file for each event and bookers "
3157
  "are able to download it after booking."
3158
  msgstr ""
3159
 
3160
- #: app/features/mec/booking.php:276
3161
  msgid "Email verification"
3162
  msgstr ""
3163
 
3164
- #: app/features/mec/booking.php:282
3165
  msgid "Auto verification for free bookings"
3166
  msgstr ""
3167
 
3168
- #: app/features/mec/booking.php:291
3169
  msgid "Auto verification for paid bookings"
3170
  msgstr ""
3171
 
3172
- #: app/features/mec/booking.php:295 app/features/mec/notifications.php:248
3173
  #: app/features/notifications.php:144 app/libraries/main.php:590
3174
  msgid "Booking Confirmation"
3175
  msgstr ""
3176
 
3177
- #: app/features/mec/booking.php:301
3178
  msgid "Auto confirmation for free bookings"
3179
  msgstr ""
3180
 
3181
- #: app/features/mec/booking.php:310
3182
  msgid "Auto confirmation for paid bookings"
3183
  msgstr ""
3184
 
3185
- #: app/features/mec/booking.php:319
3186
  msgid "Send confirmation email in auto confirmation mode"
3187
  msgstr ""
3188
 
3189
- #: app/features/mec/booking.php:330 app/libraries/main.php:560
3190
  msgid "Booking Shortcode"
3191
  msgstr ""
3192
 
3193
- #: app/features/mec/booking.php:338
3194
  #, php-format
3195
  msgid ""
3196
  "Booking module is available in the event details page but if you like to "
@@ -3199,7 +3296,7 @@ msgid ""
3199
  "into the page content and place the event id instead of 1."
3200
  msgstr ""
3201
 
3202
- #: app/features/mec/booking.php:339
3203
  #, php-format
3204
  msgid ""
3205
  "Also, you can insert %s if you like to show only one of the available "
@@ -3207,75 +3304,66 @@ msgid ""
3207
  "This parameter is optional."
3208
  msgstr ""
3209
 
3210
- #: app/features/mec/booking.php:354
3211
  msgid "Enable coupons module"
3212
  msgstr ""
3213
 
3214
- #: app/features/mec/booking.php:356
3215
  msgid ""
3216
  "After enabling and saving the settings, you should reload the page to see a "
3217
  "new menu on the Dashboard > Booking"
3218
  msgstr ""
3219
 
3220
- #: app/features/mec/booking.php:364 app/libraries/main.php:562
3221
  msgid "Taxes / Fees"
3222
  msgstr ""
3223
 
3224
- #: app/features/mec/booking.php:372
3225
  msgid "Enable taxes / fees module"
3226
  msgstr ""
3227
 
3228
- #: app/features/mec/booking.php:377
3229
  msgid "Add Fee"
3230
  msgstr ""
3231
 
3232
- #: app/features/mec/booking.php:441 app/libraries/main.php:563
3233
  msgid "Ticket Variations & Options"
3234
  msgstr ""
3235
 
3236
- #: app/features/mec/booking.php:449
3237
  msgid "Enable ticket options module"
3238
  msgstr ""
3239
 
3240
- #: app/features/mec/booking.php:454
3241
  msgid "Add Variation / Option"
3242
  msgstr ""
3243
 
3244
- #: app/features/mec/booking.php:731
3245
  msgid "Enable Organizer Payment Module"
3246
  msgstr ""
3247
 
3248
- #: app/features/mec/booking.php:736
3249
  msgid ""
3250
  "By enabling this module, organizers are able to insert their own payment "
3251
  "credentials for enabled gateways per event and receive the payments directly!"
3252
  msgstr ""
3253
 
3254
- #: app/features/mec/booking.php:823 app/features/mec/messages.php:78
3255
- #: app/features/mec/modules.php:408 app/features/mec/notifications.php:973
3256
  #: app/features/mec/settings.php:1157 app/features/mec/single.php:383
3257
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:311
3258
  msgid "Saved"
3259
  msgstr ""
3260
 
3261
- #: app/features/mec/booking.php:824 app/features/mec/messages.php:79
3262
- #: app/features/mec/modules.php:409 app/features/mec/notifications.php:974
3263
  #: app/features/mec/settings.php:1158 app/features/mec/single.php:384
3264
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:312
3265
  msgid "Settings Saved!"
3266
  msgstr ""
3267
 
3268
- #: app/features/mec/booking.php:826 app/features/mec/booking.php:848
3269
- #: app/features/mec/modules.php:411 app/features/mec/modules.php:433
3270
- #: app/features/mec/notifications.php:976
3271
- #: app/features/mec/notifications.php:998 app/features/mec/settings.php:1160
3272
- #: app/features/mec/settings.php:1182 app/features/mec/single.php:386
3273
- #: app/features/mec/single.php:408 app/libraries/main.php:6205
3274
- msgid "Verified"
3275
- msgstr ""
3276
-
3277
- #: app/features/mec/booking.php:850 app/features/mec/modules.php:435
3278
- #: app/features/mec/notifications.php:1000 app/features/mec/settings.php:1184
3279
  #: app/features/mec/single.php:410
3280
  msgid "Please Refresh Page"
3281
  msgstr ""
@@ -4384,8 +4472,8 @@ msgstr ""
4384
  #: app/features/mec/meta_boxes/search_form.php:782
4385
  #: app/features/mec/settings.php:904 app/features/mec/single.php:336
4386
  #: app/features/search.php:86 app/features/speakers.php:61
4387
- #: app/features/speakers.php:269 app/libraries/main.php:5896
4388
- #: app/libraries/main.php:5944 app/libraries/skins.php:1017
4389
  #: app/modules/speakers/details.php:18
4390
  msgid "Speaker"
4391
  msgstr ""
@@ -4402,7 +4490,7 @@ msgstr ""
4402
  #: app/features/mec/meta_boxes/search_form.php:683
4403
  #: app/features/mec/meta_boxes/search_form.php:789
4404
  #: app/features/mec/settings.php:911 app/features/mec/single.php:345
4405
- #: app/features/search.php:92 app/libraries/skins.php:1043
4406
  msgid "Tag"
4407
  msgstr ""
4408
 
@@ -4668,159 +4756,142 @@ msgstr ""
4668
  msgid "Add booking activity to user profile"
4669
  msgstr ""
4670
 
4671
- #: app/features/mec/modules.php:365 app/libraries/main.php:596
4672
- msgid "Notifications Per Event"
4673
- msgstr ""
4674
-
4675
- #: app/features/mec/modules.php:369
4676
- msgid "Edit Notifications Per Event"
4677
- msgstr ""
4678
-
4679
- #: app/features/mec/notifications.php:37
4680
  msgid "Enable booking notification"
4681
  msgstr ""
4682
 
4683
- #: app/features/mec/notifications.php:41
4684
  msgid "Sent to attendee after booking to notify them."
4685
  msgstr ""
4686
 
4687
- #: app/features/mec/notifications.php:43 app/features/mec/notifications.php:149
4688
- #: app/features/mec/notifications.php:259
4689
- #: app/features/mec/notifications.php:374
4690
- #: app/features/mec/notifications.php:490
4691
- #: app/features/mec/notifications.php:601
4692
- #: app/features/mec/notifications.php:727
4693
- #: app/features/mec/notifications.php:811 app/features/mec/report.php:54
4694
  #: app/features/notifications.php:72
4695
  msgid "Email Subject"
4696
  msgstr ""
4697
 
4698
- #: app/features/mec/notifications.php:49 app/features/mec/notifications.php:56
4699
- #: app/features/mec/notifications.php:155
4700
- #: app/features/mec/notifications.php:162
4701
- #: app/features/mec/notifications.php:265
4702
- #: app/features/mec/notifications.php:272
4703
- #: app/features/mec/notifications.php:380
4704
- #: app/features/mec/notifications.php:387
4705
- #: app/features/mec/notifications.php:496
4706
- #: app/features/mec/notifications.php:503
4707
- #: app/features/mec/notifications.php:607
4708
- #: app/features/mec/notifications.php:614
4709
- #: app/features/mec/notifications.php:733
4710
- #: app/features/mec/notifications.php:740
4711
- #: app/features/mec/notifications.php:817
4712
- #: app/features/mec/notifications.php:824
4713
- msgid "Receiver Users"
4714
- msgstr ""
4715
-
4716
- #: app/features/mec/notifications.php:57 app/features/mec/notifications.php:163
4717
  #: app/features/mec/notifications.php:273
 
4718
  #: app/features/mec/notifications.php:388
 
4719
  #: app/features/mec/notifications.php:504
 
4720
  #: app/features/mec/notifications.php:615
 
4721
  #: app/features/mec/notifications.php:741
 
4722
  #: app/features/mec/notifications.php:825
4723
- msgid "Select users to send a copy of email to them!"
4724
  msgstr ""
4725
 
4726
- #: app/features/mec/notifications.php:66 app/features/mec/notifications.php:73
4727
- #: app/features/mec/notifications.php:172
4728
- #: app/features/mec/notifications.php:179
4729
- #: app/features/mec/notifications.php:282
4730
- #: app/features/mec/notifications.php:289
4731
- #: app/features/mec/notifications.php:397
4732
- #: app/features/mec/notifications.php:404
4733
- #: app/features/mec/notifications.php:513
4734
- #: app/features/mec/notifications.php:520
4735
- #: app/features/mec/notifications.php:624
4736
- #: app/features/mec/notifications.php:631
4737
- #: app/features/mec/notifications.php:750
4738
- #: app/features/mec/notifications.php:757
4739
- #: app/features/mec/notifications.php:834
4740
- #: app/features/mec/notifications.php:841
4741
- msgid "Receiver Roles"
4742
  msgstr ""
4743
 
4744
- #: app/features/mec/notifications.php:74 app/features/mec/notifications.php:180
 
 
 
4745
  #: app/features/mec/notifications.php:290
 
4746
  #: app/features/mec/notifications.php:405
 
4747
  #: app/features/mec/notifications.php:521
 
4748
  #: app/features/mec/notifications.php:632
 
4749
  #: app/features/mec/notifications.php:758
 
4750
  #: app/features/mec/notifications.php:842
4751
- msgid "Select users a specific role."
4752
  msgstr ""
4753
 
4754
- #: app/features/mec/notifications.php:82 app/features/mec/notifications.php:86
4755
- #: app/features/mec/notifications.php:188
4756
- #: app/features/mec/notifications.php:192
4757
- #: app/features/mec/notifications.php:298
4758
- #: app/features/mec/notifications.php:302
4759
- #: app/features/mec/notifications.php:413
4760
- #: app/features/mec/notifications.php:417
4761
- #: app/features/mec/notifications.php:529
4762
- #: app/features/mec/notifications.php:533
4763
- #: app/features/mec/notifications.php:640
4764
- #: app/features/mec/notifications.php:644
4765
- #: app/features/mec/notifications.php:766
4766
- #: app/features/mec/notifications.php:770
4767
- #: app/features/mec/notifications.php:850
4768
- #: app/features/mec/notifications.php:854
4769
- msgid "Custom Recipients"
4770
  msgstr ""
4771
 
4772
- #: app/features/mec/notifications.php:87 app/features/mec/notifications.php:193
 
 
 
4773
  #: app/features/mec/notifications.php:303
 
4774
  #: app/features/mec/notifications.php:418
 
4775
  #: app/features/mec/notifications.php:534
 
4776
  #: app/features/mec/notifications.php:645
 
4777
  #: app/features/mec/notifications.php:771
 
4778
  #: app/features/mec/notifications.php:855
 
 
 
 
 
 
 
 
 
 
4779
  msgid "Insert comma separated emails for multiple recipients."
4780
  msgstr ""
4781
 
4782
- #: app/features/mec/notifications.php:94 app/features/mec/notifications.php:429
4783
- #: app/features/mec/notifications.php:541
4784
  msgid "Send the email to event organizer"
4785
  msgstr ""
4786
 
4787
- #: app/features/mec/notifications.php:97 app/features/mec/notifications.php:199
4788
- #: app/features/mec/notifications.php:313
4789
- #: app/features/mec/notifications.php:436
4790
- #: app/features/mec/notifications.php:544
4791
- #: app/features/mec/notifications.php:662
4792
- #: app/features/mec/notifications.php:777
4793
- #: app/features/mec/notifications.php:861 app/features/notifications.php:80
4794
  msgid "Email Content"
4795
  msgstr ""
4796
 
4797
- #: app/features/mec/notifications.php:100
4798
- #: app/features/mec/notifications.php:202
4799
- #: app/features/mec/notifications.php:316
4800
- #: app/features/mec/notifications.php:439
4801
- #: app/features/mec/notifications.php:547
4802
- #: app/features/mec/notifications.php:665
4803
- #: app/features/mec/notifications.php:780
4804
- #: app/features/mec/notifications.php:864 app/features/mec/report.php:56
4805
  msgid "You can use the following placeholders"
4806
  msgstr ""
4807
 
4808
- #: app/features/mec/notifications.php:102
4809
- #: app/features/mec/notifications.php:204
4810
- #: app/features/mec/notifications.php:318
4811
- #: app/features/mec/notifications.php:441
4812
- #: app/features/mec/notifications.php:549
4813
- #: app/features/mec/notifications.php:667 app/features/notifications.php:91
4814
- msgid "First name of attendee"
4815
- msgstr ""
4816
-
4817
  #: app/features/mec/notifications.php:103
4818
  #: app/features/mec/notifications.php:205
4819
  #: app/features/mec/notifications.php:319
4820
  #: app/features/mec/notifications.php:442
4821
  #: app/features/mec/notifications.php:550
4822
- #: app/features/mec/notifications.php:668 app/features/notifications.php:92
4823
- msgid "Last name of attendee"
4824
  msgstr ""
4825
 
4826
  #: app/features/mec/notifications.php:104
@@ -4828,8 +4899,8 @@ msgstr ""
4828
  #: app/features/mec/notifications.php:320
4829
  #: app/features/mec/notifications.php:443
4830
  #: app/features/mec/notifications.php:551
4831
- #: app/features/mec/notifications.php:669 app/features/notifications.php:93
4832
- msgid "Email of attendee"
4833
  msgstr ""
4834
 
4835
  #: app/features/mec/notifications.php:105
@@ -4837,8 +4908,8 @@ msgstr ""
4837
  #: app/features/mec/notifications.php:321
4838
  #: app/features/mec/notifications.php:444
4839
  #: app/features/mec/notifications.php:552
4840
- #: app/features/mec/notifications.php:670 app/features/notifications.php:94
4841
- msgid "Booked date of event"
4842
  msgstr ""
4843
 
4844
  #: app/features/mec/notifications.php:106
@@ -4846,8 +4917,8 @@ msgstr ""
4846
  #: app/features/mec/notifications.php:322
4847
  #: app/features/mec/notifications.php:445
4848
  #: app/features/mec/notifications.php:553
4849
- #: app/features/mec/notifications.php:671 app/features/notifications.php:95
4850
- msgid "Booked time of event"
4851
  msgstr ""
4852
 
4853
  #: app/features/mec/notifications.php:107
@@ -4855,8 +4926,8 @@ msgstr ""
4855
  #: app/features/mec/notifications.php:323
4856
  #: app/features/mec/notifications.php:446
4857
  #: app/features/mec/notifications.php:554
4858
- #: app/features/mec/notifications.php:672 app/features/notifications.php:96
4859
- msgid "Booked date and time of event"
4860
  msgstr ""
4861
 
4862
  #: app/features/mec/notifications.php:108
@@ -4864,8 +4935,8 @@ msgstr ""
4864
  #: app/features/mec/notifications.php:324
4865
  #: app/features/mec/notifications.php:447
4866
  #: app/features/mec/notifications.php:555
4867
- #: app/features/mec/notifications.php:673 app/features/notifications.php:97
4868
- msgid "Booking Price"
4869
  msgstr ""
4870
 
4871
  #: app/features/mec/notifications.php:109
@@ -4873,8 +4944,8 @@ msgstr ""
4873
  #: app/features/mec/notifications.php:325
4874
  #: app/features/mec/notifications.php:448
4875
  #: app/features/mec/notifications.php:556
4876
- #: app/features/mec/notifications.php:674 app/features/notifications.php:98
4877
- msgid "Date and time of booking"
4878
  msgstr ""
4879
 
4880
  #: app/features/mec/notifications.php:110
@@ -4882,10 +4953,8 @@ msgstr ""
4882
  #: app/features/mec/notifications.php:326
4883
  #: app/features/mec/notifications.php:449
4884
  #: app/features/mec/notifications.php:557
4885
- #: app/features/mec/notifications.php:675
4886
- #: app/features/mec/notifications.php:788
4887
- #: app/features/mec/notifications.php:872 app/features/notifications.php:99
4888
- msgid "Your website title"
4889
  msgstr ""
4890
 
4891
  #: app/features/mec/notifications.php:111
@@ -4895,8 +4964,8 @@ msgstr ""
4895
  #: app/features/mec/notifications.php:558
4896
  #: app/features/mec/notifications.php:676
4897
  #: app/features/mec/notifications.php:789
4898
- #: app/features/mec/notifications.php:873 app/features/notifications.php:100
4899
- msgid "Your website URL"
4900
  msgstr ""
4901
 
4902
  #: app/features/mec/notifications.php:112
@@ -4906,8 +4975,8 @@ msgstr ""
4906
  #: app/features/mec/notifications.php:559
4907
  #: app/features/mec/notifications.php:677
4908
  #: app/features/mec/notifications.php:790
4909
- #: app/features/mec/notifications.php:874 app/features/notifications.php:101
4910
- msgid "Your website description"
4911
  msgstr ""
4912
 
4913
  #: app/features/mec/notifications.php:113
@@ -4915,8 +4984,10 @@ msgstr ""
4915
  #: app/features/mec/notifications.php:329
4916
  #: app/features/mec/notifications.php:452
4917
  #: app/features/mec/notifications.php:560
4918
- #: app/features/mec/notifications.php:678 app/features/notifications.php:102
4919
- msgid "Event title"
 
 
4920
  msgstr ""
4921
 
4922
  #: app/features/mec/notifications.php:114
@@ -4924,33 +4995,33 @@ msgstr ""
4924
  #: app/features/mec/notifications.php:330
4925
  #: app/features/mec/notifications.php:453
4926
  #: app/features/mec/notifications.php:561
4927
- #: app/features/mec/notifications.php:679 app/features/notifications.php:103
4928
- msgid "Event link"
4929
  msgstr ""
4930
 
4931
  #: app/features/mec/notifications.php:115
4932
  #: app/features/mec/notifications.php:217
4933
  #: app/features/mec/notifications.php:331
4934
- #: app/features/mec/notifications.php:784
4935
- #: app/features/mec/notifications.php:868 app/features/notifications.php:124
4936
- msgid "Event Start Date"
 
4937
  msgstr ""
4938
 
4939
  #: app/features/mec/notifications.php:116
4940
  #: app/features/mec/notifications.php:218
4941
  #: app/features/mec/notifications.php:332
4942
  #: app/features/mec/notifications.php:785
4943
- #: app/features/mec/notifications.php:869 app/features/notifications.php:125
4944
- msgid "Event End Date"
4945
  msgstr ""
4946
 
4947
  #: app/features/mec/notifications.php:117
4948
  #: app/features/mec/notifications.php:219
4949
  #: app/features/mec/notifications.php:333
4950
- #: app/features/mec/notifications.php:454
4951
- #: app/features/mec/notifications.php:562
4952
- #: app/features/mec/notifications.php:680 app/features/notifications.php:104
4953
- msgid "Speaker name of booked event"
4954
  msgstr ""
4955
 
4956
  #: app/features/mec/notifications.php:118
@@ -4958,8 +5029,8 @@ msgstr ""
4958
  #: app/features/mec/notifications.php:334
4959
  #: app/features/mec/notifications.php:455
4960
  #: app/features/mec/notifications.php:563
4961
- #: app/features/mec/notifications.php:681 app/features/notifications.php:105
4962
- msgid "Organizer name of booked event"
4963
  msgstr ""
4964
 
4965
  #: app/features/mec/notifications.php:119
@@ -4967,8 +5038,8 @@ msgstr ""
4967
  #: app/features/mec/notifications.php:335
4968
  #: app/features/mec/notifications.php:456
4969
  #: app/features/mec/notifications.php:564
4970
- #: app/features/mec/notifications.php:682 app/features/notifications.php:106
4971
- msgid "Organizer tel of booked event"
4972
  msgstr ""
4973
 
4974
  #: app/features/mec/notifications.php:120
@@ -4976,8 +5047,8 @@ msgstr ""
4976
  #: app/features/mec/notifications.php:336
4977
  #: app/features/mec/notifications.php:457
4978
  #: app/features/mec/notifications.php:565
4979
- #: app/features/mec/notifications.php:683 app/features/notifications.php:107
4980
- msgid "Organizer email of booked event"
4981
  msgstr ""
4982
 
4983
  #: app/features/mec/notifications.php:121
@@ -4985,8 +5056,8 @@ msgstr ""
4985
  #: app/features/mec/notifications.php:337
4986
  #: app/features/mec/notifications.php:458
4987
  #: app/features/mec/notifications.php:566
4988
- #: app/features/mec/notifications.php:684 app/features/notifications.php:108
4989
- msgid "Location name of booked event"
4990
  msgstr ""
4991
 
4992
  #: app/features/mec/notifications.php:122
@@ -4994,8 +5065,8 @@ msgstr ""
4994
  #: app/features/mec/notifications.php:338
4995
  #: app/features/mec/notifications.php:459
4996
  #: app/features/mec/notifications.php:567
4997
- #: app/features/mec/notifications.php:685 app/features/notifications.php:109
4998
- msgid "Location address of booked event"
4999
  msgstr ""
5000
 
5001
  #: app/features/mec/notifications.php:123
@@ -5003,8 +5074,8 @@ msgstr ""
5003
  #: app/features/mec/notifications.php:339
5004
  #: app/features/mec/notifications.php:460
5005
  #: app/features/mec/notifications.php:568
5006
- #: app/features/mec/notifications.php:686 app/features/notifications.php:110
5007
- msgid "Additional locations name of booked event"
5008
  msgstr ""
5009
 
5010
  #: app/features/mec/notifications.php:124
@@ -5012,8 +5083,8 @@ msgstr ""
5012
  #: app/features/mec/notifications.php:340
5013
  #: app/features/mec/notifications.php:461
5014
  #: app/features/mec/notifications.php:569
5015
- #: app/features/mec/notifications.php:687 app/features/notifications.php:111
5016
- msgid "Additional locations address of booked event"
5017
  msgstr ""
5018
 
5019
  #: app/features/mec/notifications.php:125
@@ -5021,8 +5092,8 @@ msgstr ""
5021
  #: app/features/mec/notifications.php:341
5022
  #: app/features/mec/notifications.php:462
5023
  #: app/features/mec/notifications.php:570
5024
- #: app/features/mec/notifications.php:688 app/features/notifications.php:112
5025
- msgid "Featured image of booked event"
5026
  msgstr ""
5027
 
5028
  #: app/features/mec/notifications.php:126
@@ -5030,8 +5101,8 @@ msgstr ""
5030
  #: app/features/mec/notifications.php:342
5031
  #: app/features/mec/notifications.php:463
5032
  #: app/features/mec/notifications.php:571
5033
- #: app/features/mec/notifications.php:689 app/features/notifications.php:113
5034
- msgid "Full Attendee info such as booking form data, name, email etc."
5035
  msgstr ""
5036
 
5037
  #: app/features/mec/notifications.php:127
@@ -5039,8 +5110,8 @@ msgstr ""
5039
  #: app/features/mec/notifications.php:343
5040
  #: app/features/mec/notifications.php:464
5041
  #: app/features/mec/notifications.php:572
5042
- #: app/features/mec/notifications.php:690 app/features/notifications.php:114
5043
- msgid "Booking ID"
5044
  msgstr ""
5045
 
5046
  #: app/features/mec/notifications.php:128
@@ -5048,23 +5119,23 @@ msgstr ""
5048
  #: app/features/mec/notifications.php:344
5049
  #: app/features/mec/notifications.php:465
5050
  #: app/features/mec/notifications.php:573
5051
- #: app/features/mec/notifications.php:691 app/features/notifications.php:115
5052
- msgid "Transaction ID of Booking"
5053
  msgstr ""
5054
 
5055
  #: app/features/mec/notifications.php:129
5056
- #: app/features/mec/notifications.php:346
5057
- #: app/features/mec/notifications.php:693
5058
- msgid "Invoice Link"
 
 
 
5059
  msgstr ""
5060
 
5061
  #: app/features/mec/notifications.php:130
5062
- #: app/features/mec/notifications.php:232
5063
  #: app/features/mec/notifications.php:347
5064
- #: app/features/mec/notifications.php:467
5065
- #: app/features/mec/notifications.php:575
5066
- #: app/features/mec/notifications.php:694 app/features/notifications.php:117
5067
- msgid "Total attendees of current booking"
5068
  msgstr ""
5069
 
5070
  #: app/features/mec/notifications.php:131
@@ -5072,8 +5143,8 @@ msgstr ""
5072
  #: app/features/mec/notifications.php:348
5073
  #: app/features/mec/notifications.php:468
5074
  #: app/features/mec/notifications.php:576
5075
- #: app/features/mec/notifications.php:695 app/features/notifications.php:118
5076
- msgid "Amount of Booked Tickets (Total attendees of all bookings)"
5077
  msgstr ""
5078
 
5079
  #: app/features/mec/notifications.php:132
@@ -5081,8 +5152,8 @@ msgstr ""
5081
  #: app/features/mec/notifications.php:349
5082
  #: app/features/mec/notifications.php:469
5083
  #: app/features/mec/notifications.php:577
5084
- #: app/features/mec/notifications.php:696 app/features/notifications.php:119
5085
- msgid "Ticket name"
5086
  msgstr ""
5087
 
5088
  #: app/features/mec/notifications.php:133
@@ -5090,8 +5161,8 @@ msgstr ""
5090
  #: app/features/mec/notifications.php:350
5091
  #: app/features/mec/notifications.php:470
5092
  #: app/features/mec/notifications.php:578
5093
- #: app/features/mec/notifications.php:697 app/features/notifications.php:120
5094
- msgid "Ticket time"
5095
  msgstr ""
5096
 
5097
  #: app/features/mec/notifications.php:134
@@ -5099,8 +5170,8 @@ msgstr ""
5099
  #: app/features/mec/notifications.php:351
5100
  #: app/features/mec/notifications.php:471
5101
  #: app/features/mec/notifications.php:579
5102
- #: app/features/mec/notifications.php:698 app/features/notifications.php:121
5103
- msgid "Ticket name & time"
5104
  msgstr ""
5105
 
5106
  #: app/features/mec/notifications.php:135
@@ -5108,8 +5179,8 @@ msgstr ""
5108
  #: app/features/mec/notifications.php:352
5109
  #: app/features/mec/notifications.php:472
5110
  #: app/features/mec/notifications.php:580
5111
- #: app/features/mec/notifications.php:699 app/features/notifications.php:122
5112
- msgid "Payment Gateway"
5113
  msgstr ""
5114
 
5115
  #: app/features/mec/notifications.php:136
@@ -5117,95 +5188,104 @@ msgstr ""
5117
  #: app/features/mec/notifications.php:353
5118
  #: app/features/mec/notifications.php:473
5119
  #: app/features/mec/notifications.php:581
5120
- #: app/features/mec/notifications.php:700 app/features/notifications.php:123
5121
- msgid "Link to the downloadable file"
5122
  msgstr ""
5123
 
5124
  #: app/features/mec/notifications.php:137
5125
  #: app/features/mec/notifications.php:239
5126
  #: app/features/mec/notifications.php:354
5127
- #: app/features/mec/notifications.php:701
 
 
 
 
 
 
 
 
 
5128
  msgid "Download ICS file"
5129
  msgstr ""
5130
 
5131
- #: app/features/mec/notifications.php:146 app/libraries/main.php:589
5132
  msgid "Booking Verification"
5133
  msgstr ""
5134
 
5135
- #: app/features/mec/notifications.php:147
5136
  msgid "It sends to attendee email for verifying their booking/email."
5137
  msgstr ""
5138
 
5139
- #: app/features/mec/notifications.php:231
5140
  msgid "Email/Booking verification link."
5141
  msgstr ""
5142
 
5143
- #: app/features/mec/notifications.php:252
5144
  msgid "Enable booking confirmation"
5145
  msgstr ""
5146
 
5147
- #: app/features/mec/notifications.php:257
5148
  msgid "Sent to attendee after confirming the booking by admin."
5149
  msgstr ""
5150
 
5151
- #: app/features/mec/notifications.php:310
5152
  msgid "Send One Single Email Only To First Attendee"
5153
  msgstr ""
5154
 
5155
- #: app/features/mec/notifications.php:345
5156
- #: app/features/mec/notifications.php:692
5157
  msgid "Booking cancellation link."
5158
  msgstr ""
5159
 
5160
- #: app/features/mec/notifications.php:364 app/features/notifications.php:147
5161
  #: app/libraries/main.php:591
5162
  msgid "Booking Cancellation"
5163
  msgstr ""
5164
 
5165
- #: app/features/mec/notifications.php:368
5166
  msgid "Enable cancellation notification"
5167
  msgstr ""
5168
 
5169
- #: app/features/mec/notifications.php:372
5170
  msgid "Sent to selected recipients after booking cancellation to notify them."
5171
  msgstr ""
5172
 
5173
- #: app/features/mec/notifications.php:425
5174
- #: app/features/mec/notifications.php:722
5175
  msgid "Send the email to admin"
5176
  msgstr ""
5177
 
5178
- #: app/features/mec/notifications.php:433
5179
  msgid "Send the email to the booked user"
5180
  msgstr ""
5181
 
5182
- #: app/features/mec/notifications.php:466
5183
- #: app/features/mec/notifications.php:574 app/features/notifications.php:116
5184
  msgid "Admin booking management link."
5185
  msgstr ""
5186
 
5187
- #: app/features/mec/notifications.php:480 app/libraries/main.php:593
5188
  msgid "Admin"
5189
  msgstr ""
5190
 
5191
- #: app/features/mec/notifications.php:484
5192
  msgid "Enable admin notification"
5193
  msgstr ""
5194
 
5195
- #: app/features/mec/notifications.php:488
5196
  msgid "Sent to admin to notify them that a new booking has been received."
5197
  msgstr ""
5198
 
5199
- #: app/features/mec/notifications.php:588 app/features/notifications.php:153
5200
- #: app/libraries/main.php:592 app/libraries/notifications.php:584
5201
  msgid "Booking Reminder"
5202
  msgstr ""
5203
 
5204
- #: app/features/mec/notifications.php:592
5205
  msgid "Enable booking reminder notification"
5206
  msgstr ""
5207
 
5208
- #: app/features/mec/notifications.php:598
5209
  #, php-format
5210
  msgid ""
5211
  "Set a cronjob to call %s file once per hour otherwise it won't send the "
@@ -5213,78 +5293,86 @@ msgid ""
5213
  "send the reminders multiple times."
5214
  msgstr ""
5215
 
5216
- #: app/features/mec/notifications.php:598
5217
  msgid "only once per hour"
5218
  msgstr ""
5219
 
5220
- #: app/features/mec/notifications.php:651 app/libraries/main.php:6950
5221
- #: app/libraries/main.php:6967
5222
  msgid "Hours"
5223
  msgstr ""
5224
 
5225
- #: app/features/mec/notifications.php:655
5226
  msgid "Reminder hours"
5227
  msgstr ""
5228
 
5229
- #: app/features/mec/notifications.php:656
5230
  msgid "Please, insert comma to separate reminder hours."
5231
  msgstr ""
5232
 
5233
- #: app/features/mec/notifications.php:711 app/features/popup/event.php:253
5234
  #: app/libraries/main.php:581
5235
  msgid "New Event"
5236
  msgstr ""
5237
 
5238
- #: app/features/mec/notifications.php:715
5239
  msgid "Enable new event notification"
5240
  msgstr ""
5241
 
5242
- #: app/features/mec/notifications.php:725
5243
  msgid ""
5244
  "Sent after adding a new event from frontend event submission or from website "
5245
  "backend."
5246
  msgstr ""
5247
 
5248
- #: app/features/mec/notifications.php:782
5249
- #: app/features/mec/notifications.php:866
5250
  msgid "Title of event"
5251
  msgstr ""
5252
 
5253
- #: app/features/mec/notifications.php:783
5254
- #: app/features/mec/notifications.php:867
5255
  msgid "Link of event"
5256
  msgstr ""
5257
 
5258
- #: app/features/mec/notifications.php:786
5259
- #: app/features/mec/notifications.php:870 app/features/notifications.php:126
5260
  msgid "Status of event"
5261
  msgstr ""
5262
 
5263
- #: app/features/mec/notifications.php:787
5264
- #: app/features/mec/notifications.php:871 app/features/mec/settings.php:819
5265
  #: app/features/mec/settings.php:823 app/features/notifications.php:127
5266
  msgid "Event Note"
5267
  msgstr ""
5268
 
5269
- #: app/features/mec/notifications.php:791
5270
- #: app/features/mec/notifications.php:875
5271
  msgid "Admin events management link."
5272
  msgstr ""
5273
 
5274
- #: app/features/mec/notifications.php:801 app/libraries/main.php:582
5275
  msgid "User Event Publishing"
5276
  msgstr ""
5277
 
5278
- #: app/features/mec/notifications.php:805
5279
  msgid "Enable user event publishing notification"
5280
  msgstr ""
5281
 
5282
- #: app/features/mec/notifications.php:809
5283
  msgid ""
5284
  "Sent after publishing a new event from frontend event submission or from "
5285
  "website backend."
5286
  msgstr ""
5287
 
 
 
 
 
 
 
 
 
5288
  #: app/features/mec/report.php:15
5289
  msgid "Booking Report"
5290
  msgstr ""
@@ -5438,7 +5526,7 @@ msgid "You can enable/disable Schema scripts"
5438
  msgstr ""
5439
 
5440
  #: app/features/mec/settings.php:157 app/features/mec/settings.php:167
5441
- #: app/libraries/main.php:5900 app/libraries/main.php:5948
5442
  msgid "Weekdays"
5443
  msgstr ""
5444
 
@@ -6057,7 +6145,7 @@ msgstr ""
6057
  msgid "Custom Fields"
6058
  msgstr ""
6059
 
6060
- #: app/features/mec/single.php:184 app/libraries/main.php:3183
6061
  msgid "URL"
6062
  msgstr ""
6063
 
@@ -6737,8 +6825,8 @@ msgstr ""
6737
  msgid "eg. https://webnus.net"
6738
  msgstr ""
6739
 
6740
- #: app/features/organizers.php:312 app/libraries/main.php:5924
6741
- #: app/libraries/main.php:5969 app/skins/single.php:1152
6742
  msgid "Other Organizers"
6743
  msgstr ""
6744
 
@@ -6892,11 +6980,11 @@ msgstr ""
6892
  msgid "#"
6893
  msgstr ""
6894
 
6895
- #: app/features/profile/profile.php:61 app/libraries/main.php:3515
6896
  msgid "Status"
6897
  msgstr ""
6898
 
6899
- #: app/features/profile/profile.php:64 app/libraries/main.php:2491
6900
  msgid "Attendees"
6901
  msgstr ""
6902
 
@@ -7005,12 +7093,12 @@ msgstr ""
7005
  msgid "No search result."
7006
  msgstr ""
7007
 
7008
- #: app/features/search_bar/search_result.php:12 app/libraries/main.php:5926
7009
- #: app/libraries/main.php:5971 app/libraries/notifications.php:989
7010
- #: app/libraries/render.php:516 app/libraries/render.php:816
7011
  #: app/modules/local-time/details.php:48 app/modules/local-time/type1.php:45
7012
  #: app/modules/local-time/type2.php:47 app/modules/local-time/type3.php:45
7013
- #: app/modules/next-event/details.php:145 app/skins/single.php:1044
7014
  #: app/skins/single/default.php:125 app/skins/single/default.php:359
7015
  #: app/skins/single/m1.php:47 app/skins/single/modern.php:222
7016
  msgid "All Day"
@@ -7218,38 +7306,38 @@ msgstr ""
7218
  msgid "Timeline View"
7219
  msgstr ""
7220
 
7221
- #: app/libraries/main.php:385 app/libraries/main.php:5902
7222
- #: app/libraries/main.php:5950
7223
  msgid "SU"
7224
  msgstr ""
7225
 
7226
- #: app/libraries/main.php:386 app/libraries/main.php:5903
7227
- #: app/libraries/main.php:5951
7228
  msgid "MO"
7229
  msgstr ""
7230
 
7231
- #: app/libraries/main.php:387 app/libraries/main.php:5904
7232
- #: app/libraries/main.php:5952
7233
  msgid "TU"
7234
  msgstr ""
7235
 
7236
- #: app/libraries/main.php:388 app/libraries/main.php:5905
7237
- #: app/libraries/main.php:5953
7238
  msgid "WE"
7239
  msgstr ""
7240
 
7241
- #: app/libraries/main.php:389 app/libraries/main.php:5906
7242
- #: app/libraries/main.php:5954
7243
  msgid "TH"
7244
  msgstr ""
7245
 
7246
- #: app/libraries/main.php:390 app/libraries/main.php:5907
7247
- #: app/libraries/main.php:5955
7248
  msgid "FR"
7249
  msgstr ""
7250
 
7251
- #: app/libraries/main.php:391 app/libraries/main.php:5908
7252
- #: app/libraries/main.php:5956
7253
  msgid "SA"
7254
  msgstr ""
7255
 
@@ -7412,277 +7500,285 @@ msgstr ""
7412
  msgid "Your booking cannot verify!"
7413
  msgstr ""
7414
 
7415
- #: app/libraries/main.php:2328
 
 
 
 
 
 
 
 
7416
  msgid "Your booking successfully canceled."
7417
  msgstr ""
7418
 
7419
- #: app/libraries/main.php:2329
7420
  msgid "Your booking cannot be canceled."
7421
  msgstr ""
7422
 
7423
- #: app/libraries/main.php:2333
7424
  msgid "You canceled the payment successfully."
7425
  msgstr ""
7426
 
7427
- #: app/libraries/main.php:2337
7428
  msgid "You returned from payment gateway successfully."
7429
  msgstr ""
7430
 
7431
- #: app/libraries/main.php:2356
7432
  msgid "Cannot find the invoice!"
7433
  msgstr ""
7434
 
7435
- #: app/libraries/main.php:2356
7436
  msgid "Invoice is invalid."
7437
  msgstr ""
7438
 
7439
- #: app/libraries/main.php:2376
7440
  msgid ""
7441
  "Your booking still is not confirmed. You can download it after confirmation!"
7442
  msgstr ""
7443
 
7444
- #: app/libraries/main.php:2376
7445
  msgid "Booking Not Confirmed."
7446
  msgstr ""
7447
 
7448
- #: app/libraries/main.php:2382
7449
  msgid "Cannot find the booking!"
7450
  msgstr ""
7451
 
7452
- #: app/libraries/main.php:2382
7453
  msgid "Booking is invalid."
7454
  msgstr ""
7455
 
7456
- #: app/libraries/main.php:2415
7457
  #, php-format
7458
  msgid "%s Invoice"
7459
  msgstr ""
7460
 
7461
- #: app/libraries/main.php:2448
7462
  msgid "Date & Time"
7463
  msgstr ""
7464
 
7465
- #: app/libraries/main.php:2465
7466
  msgid "Booking Fields"
7467
  msgstr ""
7468
 
7469
- #: app/libraries/main.php:2537
7470
  msgid "Billing"
7471
  msgstr ""
7472
 
7473
- #: app/libraries/main.php:2549
7474
  msgid "Coupon Code"
7475
  msgstr ""
7476
 
7477
- #: app/libraries/main.php:2554
7478
  msgid "Total"
7479
  msgstr ""
7480
 
7481
- #: app/libraries/main.php:2561
7482
  msgid "Payment"
7483
  msgstr ""
7484
 
7485
- #: app/libraries/main.php:2565
7486
  msgid "Gateway"
7487
  msgstr ""
7488
 
7489
- #: app/libraries/main.php:2578
7490
  msgid "Payment Time"
7491
  msgstr ""
7492
 
7493
- #: app/libraries/main.php:2720
7494
  msgid "Request is not valid."
7495
  msgstr ""
7496
 
7497
- #: app/libraries/main.php:2720
7498
  msgid "iCal export stopped!"
7499
  msgstr ""
7500
 
7501
- #: app/libraries/main.php:3066 app/libraries/main.php:3095
7502
- #: app/libraries/main.php:3124 app/libraries/main.php:3153
7503
- #: app/libraries/main.php:3182 app/libraries/main.php:3211
7504
- #: app/libraries/main.php:3240 app/libraries/main.php:3269
7505
- #: app/libraries/main.php:3298 app/libraries/main.php:3327
7506
- #: app/libraries/main.php:3350 app/libraries/main.php:3396
7507
- #: app/libraries/main.php:3442 app/libraries/main.php:3491
7508
- #: app/libraries/main.php:3540
7509
  msgid "Sort"
7510
  msgstr ""
7511
 
7512
- #: app/libraries/main.php:3073 app/libraries/main.php:3102
7513
- #: app/libraries/main.php:3131 app/libraries/main.php:3160
7514
- #: app/libraries/main.php:3189 app/libraries/main.php:3218
7515
- #: app/libraries/main.php:3247 app/libraries/main.php:3276
7516
- #: app/libraries/main.php:3305 app/libraries/main.php:3357
7517
- #: app/libraries/main.php:3403 app/libraries/main.php:3449
7518
- #: app/libraries/main.php:3498
7519
  msgid "Required Field"
7520
  msgstr ""
7521
 
7522
- #: app/libraries/main.php:3079 app/libraries/main.php:3108
7523
- #: app/libraries/main.php:3137 app/libraries/main.php:3166
7524
- #: app/libraries/main.php:3195 app/libraries/main.php:3224
7525
- #: app/libraries/main.php:3253 app/libraries/main.php:3282
7526
- #: app/libraries/main.php:3311 app/libraries/main.php:3363
7527
- #: app/libraries/main.php:3409 app/libraries/main.php:3455
7528
- #: app/libraries/main.php:3504
7529
  msgid "Insert a label for this field"
7530
  msgstr ""
7531
 
7532
- #: app/libraries/main.php:3333
7533
  msgid "HTML and shortcode are allowed."
7534
  msgstr ""
7535
 
7536
- #: app/libraries/main.php:3376 app/libraries/main.php:3422
7537
- #: app/libraries/main.php:3468
7538
  msgid "Option"
7539
  msgstr ""
7540
 
7541
- #: app/libraries/main.php:3504
7542
  #, php-format
7543
  msgid "Instead of %s, the page title with a link will be show."
7544
  msgstr ""
7545
 
7546
- #: app/libraries/main.php:3506
7547
  msgid "Agreement Page"
7548
  msgstr ""
7549
 
7550
- #: app/libraries/main.php:3517
7551
  msgid "Checked by default"
7552
  msgstr ""
7553
 
7554
- #: app/libraries/main.php:3518
7555
  msgid "Unchecked by default"
7556
  msgstr ""
7557
 
7558
- #: app/libraries/main.php:3542
7559
  msgid "Insert a label for this option"
7560
  msgstr ""
7561
 
7562
- #: app/libraries/main.php:3555
7563
  msgid "Free"
7564
  msgstr ""
7565
 
7566
- #: app/libraries/main.php:4184 app/libraries/main.php:6220
7567
  msgid "M.E. Calender"
7568
  msgstr ""
7569
 
7570
- #: app/libraries/main.php:4340
7571
  #, php-format
7572
  msgid "Copy of %s"
7573
  msgstr ""
7574
 
7575
- #: app/libraries/main.php:5158
7576
  msgid "Booked an event."
7577
  msgstr ""
7578
 
7579
- #: app/libraries/main.php:5199
7580
  #, php-format
7581
  msgid "%s booked %s event."
7582
  msgstr ""
7583
 
7584
- #: app/libraries/main.php:5885 app/libraries/main.php:5933
7585
  msgid "Taxonomies"
7586
  msgstr ""
7587
 
7588
- #: app/libraries/main.php:5887 app/libraries/main.php:5935
7589
  msgid "Category Plural Label"
7590
  msgstr ""
7591
 
7592
- #: app/libraries/main.php:5888 app/libraries/main.php:5936
7593
  msgid "Category Singular Label"
7594
  msgstr ""
7595
 
7596
- #: app/libraries/main.php:5889 app/libraries/main.php:5937
7597
  msgid "Label Plural Label"
7598
  msgstr ""
7599
 
7600
- #: app/libraries/main.php:5890 app/libraries/main.php:5938
7601
  msgid "Label Singular Label"
7602
  msgstr ""
7603
 
7604
- #: app/libraries/main.php:5890 app/libraries/main.php:5938
7605
  msgid "label"
7606
  msgstr ""
7607
 
7608
- #: app/libraries/main.php:5891 app/libraries/main.php:5939
7609
  msgid "Location Plural Label"
7610
  msgstr ""
7611
 
7612
- #: app/libraries/main.php:5892 app/libraries/main.php:5940
7613
  msgid "Location Singular Label"
7614
  msgstr ""
7615
 
7616
- #: app/libraries/main.php:5893 app/libraries/main.php:5941
7617
  msgid "Organizer Plural Label"
7618
  msgstr ""
7619
 
7620
- #: app/libraries/main.php:5894 app/libraries/main.php:5942
7621
  msgid "Organizer Singular Label"
7622
  msgstr ""
7623
 
7624
- #: app/libraries/main.php:5895 app/libraries/main.php:5943
7625
  msgid "Speaker Plural Label"
7626
  msgstr ""
7627
 
7628
- #: app/libraries/main.php:5896 app/libraries/main.php:5944
7629
  msgid "Speaker Singular Label"
7630
  msgstr ""
7631
 
7632
- #: app/libraries/main.php:5902 app/libraries/main.php:5950
7633
  msgid "Sunday abbreviation"
7634
  msgstr ""
7635
 
7636
- #: app/libraries/main.php:5903 app/libraries/main.php:5951
7637
  msgid "Monday abbreviation"
7638
  msgstr ""
7639
 
7640
- #: app/libraries/main.php:5904 app/libraries/main.php:5952
7641
  msgid "Tuesday abbreviation"
7642
  msgstr ""
7643
 
7644
- #: app/libraries/main.php:5905 app/libraries/main.php:5953
7645
  msgid "Wednesday abbreviation"
7646
  msgstr ""
7647
 
7648
- #: app/libraries/main.php:5906 app/libraries/main.php:5954
7649
  msgid "Thursday abbreviation"
7650
  msgstr ""
7651
 
7652
- #: app/libraries/main.php:5907 app/libraries/main.php:5955
7653
  msgid "Friday abbreviation"
7654
  msgstr ""
7655
 
7656
- #: app/libraries/main.php:5908 app/libraries/main.php:5956
7657
  msgid "Saturday abbreviation"
7658
  msgstr ""
7659
 
7660
- #: app/libraries/main.php:5912 app/libraries/main.php:5960
7661
  msgid "Others"
7662
  msgstr ""
7663
 
7664
- #: app/libraries/main.php:5914
7665
  msgid "Booking Success Message"
7666
  msgstr ""
7667
 
7668
- #: app/libraries/main.php:5914
7669
  msgid ""
7670
  "Thanks you for booking. Your tickets are booked, booking verification might "
7671
  "be needed, please check your email."
7672
  msgstr ""
7673
 
7674
- #: app/libraries/main.php:5915 app/libraries/main.php:5962
7675
  #: app/widgets/single.php:131
7676
  msgid "Register Button"
7677
  msgstr ""
7678
 
7679
- #: app/libraries/main.php:5915 app/libraries/main.php:5962
7680
  #: app/skins/available_spot/tpl.php:210 app/skins/carousel/render.php:110
7681
  #: app/skins/carousel/render.php:150 app/skins/grid/render.php:98
7682
  #: app/skins/grid/render.php:155 app/skins/grid/render.php:206
7683
  #: app/skins/grid/render.php:226 app/skins/list/render.php:68
7684
  #: app/skins/list/render.php:160 app/skins/masonry/render.php:150
7685
- #: app/skins/single.php:352 app/skins/single.php:1065 app/skins/single.php:1068
7686
  #: app/skins/single/default.php:288 app/skins/single/default.php:290
7687
  #: app/skins/single/default.php:521 app/skins/single/default.php:523
7688
  #: app/skins/single/m1.php:144 app/skins/single/m1.php:146
@@ -7694,11 +7790,11 @@ msgstr ""
7694
  msgid "REGISTER"
7695
  msgstr ""
7696
 
7697
- #: app/libraries/main.php:5916 app/libraries/main.php:5963
7698
  msgid "View Detail Button"
7699
  msgstr ""
7700
 
7701
- #: app/libraries/main.php:5916 app/libraries/main.php:5963
7702
  #: app/skins/carousel/render.php:110 app/skins/carousel/render.php:150
7703
  #: app/skins/grid/render.php:98 app/skins/grid/render.php:155
7704
  #: app/skins/grid/render.php:206 app/skins/grid/render.php:226
@@ -7710,133 +7806,125 @@ msgstr ""
7710
  msgid "View Detail"
7711
  msgstr ""
7712
 
7713
- #: app/libraries/main.php:5917 app/libraries/main.php:5964
7714
  msgid "Event Detail Button"
7715
  msgstr ""
7716
 
7717
- #: app/libraries/main.php:5917 app/libraries/main.php:5964
7718
  #: app/skins/countdown/tpl.php:221
7719
  msgid "Event Detail"
7720
  msgstr ""
7721
 
7722
- #: app/libraries/main.php:5919 app/libraries/main.php:5966
7723
  msgid "More Info Link"
7724
  msgstr ""
7725
 
7726
- #: app/libraries/main.php:5922
7727
  msgid "Ticket (Singular)"
7728
  msgstr ""
7729
 
7730
- #: app/libraries/main.php:5923
7731
  msgid "Tickets (Plural)"
7732
  msgstr ""
7733
 
7734
- #: app/libraries/main.php:6079
7735
  msgid "EventON"
7736
  msgstr ""
7737
 
7738
- #: app/libraries/main.php:6080
7739
  msgid "The Events Calendar"
7740
  msgstr ""
7741
 
7742
- #: app/libraries/main.php:6081
7743
  msgid "Events Schedule WP Plugin"
7744
  msgstr ""
7745
 
7746
- #: app/libraries/main.php:6082
7747
  msgid "Calendarize It"
7748
  msgstr ""
7749
 
7750
- #: app/libraries/main.php:6083
7751
  msgid "Event Espresso"
7752
  msgstr ""
7753
 
7754
- #: app/libraries/main.php:6084
7755
  msgid "Events Manager (Recurring)"
7756
  msgstr ""
7757
 
7758
- #: app/libraries/main.php:6085
7759
  msgid "Events Manager (Single)"
7760
  msgstr ""
7761
 
7762
- #: app/libraries/main.php:6157 app/libraries/main.php:6177
7763
- msgid "Confirmed"
7764
- msgstr ""
7765
-
7766
- #: app/libraries/main.php:6158 app/libraries/main.php:6185
7767
- msgid "Rejected"
7768
- msgstr ""
7769
-
7770
- #: app/libraries/main.php:6159 app/libraries/main.php:6181
7771
  msgid "Pending"
7772
  msgstr ""
7773
 
7774
- #: app/libraries/main.php:6207
7775
  msgid "Waiting"
7776
  msgstr ""
7777
 
7778
- #: app/libraries/main.php:6250
7779
  msgid "Sun"
7780
  msgstr ""
7781
 
7782
- #: app/libraries/main.php:6250
7783
  msgid "Mon"
7784
  msgstr ""
7785
 
7786
- #: app/libraries/main.php:6250
7787
  msgid "Tue"
7788
  msgstr ""
7789
 
7790
- #: app/libraries/main.php:6250
7791
  msgid "Wed"
7792
  msgstr ""
7793
 
7794
- #: app/libraries/main.php:6250
7795
  msgid "Thu"
7796
  msgstr ""
7797
 
7798
- #: app/libraries/main.php:6250
7799
  msgid "Fri"
7800
  msgstr ""
7801
 
7802
- #: app/libraries/main.php:6250
7803
  msgid "Sat"
7804
  msgstr ""
7805
 
7806
- #: app/libraries/main.php:6412 app/libraries/render.php:80
7807
  #: app/libraries/render.php:432
7808
  msgid "Skin controller does not exist."
7809
  msgstr ""
7810
 
7811
- #: app/libraries/main.php:6627
7812
  msgid "Sold Out"
7813
  msgstr ""
7814
 
7815
- #: app/libraries/main.php:6635
7816
  msgid "Last Few Tickets"
7817
  msgstr ""
7818
 
7819
- #: app/libraries/main.php:6956 app/libraries/main.php:6973
7820
  msgid "Minutes"
7821
  msgstr ""
7822
 
7823
- #: app/libraries/main.php:6978
7824
  msgid "AM / PM"
7825
  msgstr ""
7826
 
7827
- #: app/libraries/main.php:6979
7828
  msgid "AM"
7829
  msgstr ""
7830
 
7831
- #: app/libraries/main.php:6980
7832
  msgid "PM"
7833
  msgstr ""
7834
 
7835
- #: app/libraries/main.php:6988
7836
  msgid "Ongoing..."
7837
  msgstr ""
7838
 
7839
- #: app/libraries/main.php:6989
7840
  msgid "Expired!"
7841
  msgstr ""
7842
 
@@ -7860,45 +7948,45 @@ msgstr ""
7860
  msgid "A new booking is received."
7861
  msgstr ""
7862
 
7863
- #: app/libraries/notifications.php:707
7864
  msgid "A new event is added."
7865
  msgstr ""
7866
 
7867
- #: app/libraries/notifications.php:811
7868
  msgid "Your event is published."
7869
  msgstr ""
7870
 
7871
- #: app/libraries/notifications.php:974 app/libraries/notifications.php:989
7872
- #: app/libraries/notifications.php:1000
7873
  #, php-format
7874
  msgid "%s to %s"
7875
  msgstr ""
7876
 
7877
- #: app/libraries/notifications.php:1172
7878
  msgid "to"
7879
  msgstr ""
7880
 
7881
- #: app/libraries/notifications.php:1193 app/modules/export/details.php:46
7882
  msgid "+ Add to Google Calendar"
7883
  msgstr ""
7884
 
7885
- #: app/libraries/notifications.php:1194 app/modules/export/details.php:47
7886
  msgid "+ iCal export"
7887
  msgstr ""
7888
 
7889
- #: app/libraries/notifications.php:1279
7890
  msgid "Yes"
7891
  msgstr ""
7892
 
7893
- #: app/libraries/notifications.php:1279
7894
  msgid "No"
7895
  msgstr ""
7896
 
7897
- #: app/libraries/skins.php:1089
7898
  msgid "Select"
7899
  msgstr ""
7900
 
7901
- #: app/libraries/skins.php:1258 app/libraries/skins.php:1259
7902
  #: app/modules/booking/steps/tickets.php:90
7903
  msgid "Book Event"
7904
  msgstr ""
@@ -8003,7 +8091,7 @@ msgstr ""
8003
  msgid "Get Directions"
8004
  msgstr ""
8005
 
8006
- #: app/modules/links/details.php:17 app/skins/single.php:749
8007
  msgid "Share this event"
8008
  msgstr ""
8009
 
@@ -8054,7 +8142,7 @@ msgstr ""
8054
  msgid "Go to occurrence page"
8055
  msgstr ""
8056
 
8057
- #: app/modules/next-event/details.php:139 app/skins/single.php:1038
8058
  #: app/skins/single/default.php:119 app/skins/single/default.php:353
8059
  #: app/skins/single/m1.php:41 app/skins/single/modern.php:216
8060
  msgid "Time"
@@ -8175,15 +8263,15 @@ msgid "Tile"
8175
  msgstr ""
8176
 
8177
  #: app/skins/monthly_view/calendar.php:71
8178
- #: app/skins/monthly_view/calendar.php:113
8179
  #: app/skins/monthly_view/calendar_clean.php:70
8180
- #: app/skins/monthly_view/calendar_clean.php:130
8181
  #, php-format
8182
  msgid "Events for %s"
8183
  msgstr ""
8184
 
8185
- #: app/skins/monthly_view/calendar.php:115
8186
- #: app/skins/monthly_view/calendar_clean.php:132
8187
  #: app/skins/timetable/render.php:83 app/skins/weekly_view/render.php:64
8188
  msgid "No Events"
8189
  msgstr ""
@@ -8192,20 +8280,20 @@ msgstr ""
8192
  msgid "Home"
8193
  msgstr ""
8194
 
8195
- #: app/skins/single.php:832 app/skins/single/default.php:65
8196
  #: app/skins/single/m1.php:279 app/skins/single/m2.php:200
8197
  #: app/skins/single/modern.php:300
8198
  msgid "Sold out!"
8199
  msgstr ""
8200
 
8201
- #: app/skins/single.php:1112 app/skins/single.php:1171
8202
  #: app/skins/single/default.php:255 app/skins/single/default.php:488
8203
  #: app/skins/single/m1.php:113 app/skins/single/m2.php:36
8204
  #: app/skins/single/modern.php:58
8205
  msgid "Phone"
8206
  msgstr ""
8207
 
8208
- #: app/skins/single.php:1126 app/skins/single.php:1185
8209
  #: app/skins/single/default.php:203 app/skins/single/default.php:269
8210
  #: app/skins/single/default.php:436 app/skins/single/default.php:502
8211
  #: app/skins/single/m1.php:127 app/skins/single/m1.php:181
@@ -8214,7 +8302,7 @@ msgstr ""
8214
  msgid "Website"
8215
  msgstr ""
8216
 
8217
- #: app/skins/single.php:1261
8218
  msgid "Speakers:"
8219
  msgstr ""
8220
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: modern-events-calendar\n"
4
+ "POT-Creation-Date: 2020-07-29 10:36+0430\n"
5
+ "PO-Revision-Date: 2020-07-29 10:37+0430\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: en_US\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:24
20
+ #: app/features/ix/import.php:37 app/features/ix/import.php:53
21
+ #: app/features/ix/thirdparty.php:24 app/features/mec.php:1140
22
+ #: app/features/mec.php:1170 app/features/mec/dashboard.php:63
23
+ #: app/widgets/MEC.php:33
24
  msgid "Modern Events Calendar"
25
  msgstr ""
26
 
87
  msgid "Settings"
88
  msgstr ""
89
 
90
+ #: app/features/contextual.php:62 app/features/events.php:1575
91
+ #: app/features/events.php:2390 app/features/mec/booking.php:546
92
  #: app/features/mec/support.php:29 app/libraries/main.php:564
93
  msgid "Booking Form"
94
  msgstr ""
102
  "YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></iframe>"
103
  msgstr ""
104
 
105
+ #: app/features/contextual.php:70 app/features/mec/booking.php:738
106
  #: app/features/mec/support-page.php:115 app/features/mec/support.php:36
107
  #: app/libraries/main.php:565
108
  msgid "Payment Gateways"
233
  msgstr ""
234
 
235
  #: app/features/contextual.php:308 app/features/events.php:315
236
+ #: app/features/mec/booking.php:96 app/features/mec/notifications.php:34
237
  #: app/features/mec/support-page.php:110 app/features/mec/support-page.php:114
238
  #: app/libraries/main.php:559 app/libraries/main.php:588
239
  #: app/libraries/main.php:672
240
  msgid "Booking"
241
  msgstr ""
242
 
243
+ #: app/features/contextual.php:318 app/features/mec/booking.php:368
244
  #: app/libraries/main.php:561
245
  msgid "Coupons"
246
  msgstr ""
259
  msgid "MEC Activation"
260
  msgstr ""
261
 
262
+ #: app/features/dlfile.php:121 app/features/events.php:1580
263
+ #: app/features/mec/booking.php:290 app/features/mec/settings.php:811
264
  msgid "Downloadable File"
265
  msgstr ""
266
 
315
  msgid "Add New Event"
316
  msgstr ""
317
 
318
+ #: app/features/events.php:171 app/features/ix.php:4136
319
  #: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:68
320
  #: app/skins/map/tpl.php:88
321
  msgid "No events found!"
338
  msgid "No events found in Trash!"
339
  msgstr ""
340
 
341
+ #: app/features/events.php:192 app/features/events.php:3461
342
  #: app/features/mec/meta_boxes/display_options.php:1395
343
  #: app/features/mec/meta_boxes/search_form.php:31
344
  #: app/features/mec/meta_boxes/search_form.php:101
352
  #: app/features/mec/meta_boxes/search_form.php:654
353
  #: app/features/mec/meta_boxes/search_form.php:760
354
  #: app/features/mec/settings.php:885 app/features/mec/single.php:323
355
+ #: app/features/search.php:68 app/libraries/main.php:5918
356
+ #: app/libraries/main.php:5966 app/libraries/skins.php:943
357
+ #: app/skins/single.php:849 app/skins/single/default.php:220
358
  #: app/skins/single/default.php:453 app/skins/single/m1.php:197
359
  #: app/skins/single/m2.php:120 app/skins/single/modern.php:140
360
  msgid "Category"
361
  msgstr ""
362
 
363
+ #: app/features/events.php:193 app/features/events.php:3416
364
  #: app/features/fes/form.php:822 app/features/mec.php:461
365
  #: app/features/mec/meta_boxes/filter.php:69
366
+ #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5917
367
+ #: app/libraries/main.php:5965
368
  msgid "Categories"
369
  msgstr ""
370
 
448
  msgid "Event Repeating"
449
  msgstr ""
450
 
451
+ #: app/features/events.php:344 app/features/events.php:1138
452
  msgid "Event Data"
453
  msgstr ""
454
 
455
+ #: app/features/events.php:346 app/features/events.php:1320
456
+ #: app/features/mec/settings.php:769 app/skins/single.php:1242
457
  msgid "Hourly Schedule"
458
  msgstr ""
459
 
465
  msgid "Links"
466
  msgstr ""
467
 
468
+ #: app/features/events.php:349 app/features/events.php:3463
469
+ #: app/features/events.php:3652 app/features/ix.php:3719
470
+ #: app/features/ix.php:3760
471
  #: app/features/mec/meta_boxes/display_options.php:1398
472
  #: app/features/mec/meta_boxes/search_form.php:46
473
  #: app/features/mec/meta_boxes/search_form.php:116
485
  #: app/features/organizers.php:260 app/features/organizers.php:262
486
  #: app/features/organizers.php:271 app/features/popup/event.php:163
487
  #: app/features/popup/event.php:172 app/features/search.php:80
488
+ #: app/libraries/main.php:5924 app/libraries/main.php:5972
489
+ #: app/libraries/skins.php:995 app/skins/single.php:1097
490
  #: app/skins/single/default.php:245 app/skins/single/default.php:478
491
  #: app/skins/single/m1.php:103 app/skins/single/m2.php:26
492
  #: app/skins/single/modern.php:48
493
  msgid "Organizer"
494
  msgstr ""
495
 
496
+ #: app/features/events.php:350 app/features/events.php:1125
497
+ #: app/features/fes/form.php:793 app/libraries/main.php:5951
498
+ #: app/libraries/main.php:5998 app/skins/single.php:875
499
  #: app/skins/single/default.php:143 app/skins/single/default.php:377
500
  #: app/skins/single/m1.php:62 app/skins/single/modern.php:237
501
  msgid "Cost"
505
  msgid "SEO Schema / Event Status"
506
  msgstr ""
507
 
508
+ #: app/features/events.php:499
509
  msgid "Note for reviewer"
510
  msgstr ""
511
 
512
+ #: app/features/events.php:505
513
  msgid "Guest Data"
514
  msgstr ""
515
 
516
+ #: app/features/events.php:506 app/features/events.php:2376
517
+ #: app/features/events.php:3967 app/features/fes.php:233
518
  #: app/features/fes/form.php:752 app/features/labels.php:178
519
  #: app/features/mec/booking.php:53 app/features/organizers.php:279
520
  #: app/features/popup/event.php:182 app/features/profile/profile.php:177
521
+ #: app/libraries/notifications.php:1262 app/modules/booking/steps/form.php:48
522
  msgid "Name"
523
  msgstr ""
524
 
525
+ #: app/features/events.php:507 app/features/events.php:2385
526
+ #: app/features/events.php:2447 app/features/events.php:2536
527
+ #: app/features/events.php:3970 app/features/fes.php:233
528
  #: app/features/fes/form.php:748 app/features/login/login.php:5
529
+ #: app/features/mec/booking.php:65 app/features/mec/booking.php:584
530
+ #: app/features/mec/booking.php:680 app/features/mec/single.php:183
531
  #: app/features/organizers.php:111 app/features/organizers.php:152
532
  #: app/features/profile/profile.php:180 app/features/speakers.php:127
533
  #: app/features/speakers.php:196 app/libraries/main.php:1719
534
+ #: app/libraries/main.php:1788 app/libraries/main.php:3184
535
+ #: app/libraries/notifications.php:1263 app/modules/booking/steps/form.php:57
536
+ #: app/modules/booking/steps/form.php:157 app/skins/single.php:1114
537
+ #: app/skins/single.php:1173 app/skins/single/default.php:262
538
  #: app/skins/single/default.php:495 app/skins/single/m1.php:120
539
  #: app/skins/single/m2.php:43 app/skins/single/modern.php:65
540
  msgid "Email"
541
  msgstr ""
542
 
543
+ #: app/features/events.php:515 app/features/fes/form.php:265
544
  msgid "Date and Time"
545
  msgstr ""
546
 
547
+ #: app/features/events.php:518 app/features/events.php:522
548
+ #: app/features/events.php:3464 app/features/events.php:3652
549
+ #: app/features/fes/form.php:269 app/features/fes/form.php:273
550
+ #: app/features/ix.php:3719 app/features/ix.php:3760
551
+ #: app/features/ix/import_g_calendar.php:38 app/features/mec.php:1323
552
+ #: app/features/mec/meta_boxes/display_options.php:51
553
  #: app/features/mec/meta_boxes/display_options.php:280
554
  #: app/features/mec/meta_boxes/display_options.php:520
555
  #: app/features/mec/meta_boxes/display_options.php:627
568
  msgid "Start Date"
569
  msgstr ""
570
 
571
+ #: app/features/events.php:537 app/features/events.php:541
572
+ #: app/features/events.php:3465 app/features/events.php:3652
573
+ #: app/features/fes/form.php:288 app/features/fes/form.php:292
574
+ #: app/features/ix.php:3719 app/features/ix.php:3760
575
+ #: app/features/ix/import_g_calendar.php:44 app/features/mec.php:1324
576
+ #: app/features/popup/event.php:92
577
  msgid "End Date"
578
  msgstr ""
579
 
580
+ #: app/features/events.php:564 app/features/fes/form.php:306
581
  #: app/features/popup/event.php:109
582
  msgid "All-day Event"
583
  msgstr ""
584
 
585
+ #: app/features/events.php:574 app/features/fes/form.php:309
586
  msgid "Hide Event Time"
587
  msgstr ""
588
 
589
+ #: app/features/events.php:584 app/features/fes/form.php:312
590
  msgid "Hide Event End Time"
591
  msgstr ""
592
 
593
+ #: app/features/events.php:589 app/features/events.php:593
594
  #: app/features/fes/form.php:316
595
  msgid "Notes on the time"
596
  msgstr ""
597
 
598
+ #: app/features/events.php:594 app/features/fes/form.php:317
599
  msgid ""
600
  "It shows next to event time on the Single Event Page. You can enter notes "
601
  "such as timezone in this field."
602
  msgstr ""
603
 
604
+ #: app/features/events.php:596 app/features/events.php:735
605
+ #: app/features/events.php:1088 app/features/events.php:1237
606
+ #: app/features/events.php:1545 app/features/events.php:1638
607
+ #: app/features/events.php:1782 app/features/events.php:1797
608
+ #: app/features/events.php:1963 app/features/events.php:1976
609
+ #: app/features/events.php:2127 app/features/events.php:2163
610
+ #: app/features/events.php:2261 app/features/events.php:2276
611
+ #: app/features/events.php:2306 app/features/events.php:2319
612
  #: app/features/fes/form.php:396 app/features/fes/form.php:704
613
  #: app/features/locations.php:334 app/features/mec/booking.php:116
614
+ #: app/features/mec/booking.php:204 app/features/mec/booking.php:217
615
+ #: app/features/mec/booking.php:235 app/features/mec/booking.php:251
616
+ #: app/features/mec/booking.php:291 app/features/mec/booking.php:413
617
+ #: app/features/mec/booking.php:442 app/features/mec/booking.php:490
618
+ #: app/features/mec/booking.php:500 app/features/mec/booking.php:522
619
+ #: app/features/mec/booking.php:532 app/features/mec/dashboard.php:71
620
  #: app/features/mec/meta_boxes/display_options.php:82
621
  #: app/features/mec/meta_boxes/display_options.php:95
622
  #: app/features/mec/meta_boxes/display_options.php:108
652
  #: app/features/mec/modules.php:52 app/features/mec/modules.php:85
653
  #: app/features/mec/modules.php:102 app/features/mec/modules.php:137
654
  #: app/features/mec/modules.php:153 app/features/mec/modules.php:323
655
+ #: app/features/mec/notifications.php:88 app/features/mec/notifications.php:194
656
+ #: app/features/mec/notifications.php:304
657
+ #: app/features/mec/notifications.php:419
658
+ #: app/features/mec/notifications.php:535
659
+ #: app/features/mec/notifications.php:646
660
+ #: app/features/mec/notifications.php:657
661
+ #: app/features/mec/notifications.php:772
662
+ #: app/features/mec/notifications.php:856 app/features/mec/settings.php:67
663
  #: app/features/mec/settings.php:86 app/features/mec/settings.php:133
664
  #: app/features/mec/settings.php:168 app/features/mec/settings.php:189
665
  #: app/features/mec/settings.php:234 app/features/mec/settings.php:269
676
  #: app/features/mec/styling.php:119 app/features/mec/styling.php:218
677
  #: app/features/mec/styling.php:235 app/features/mec/styling.php:248
678
  #: app/features/organizers.php:272 app/features/popup/event.php:126
679
+ #: app/features/popup/event.php:173 app/skins/single.php:960
680
  #: app/skins/single/default.php:160 app/skins/single/default.php:392
681
  #: app/skins/single/m1.php:219 app/skins/single/m2.php:143
682
  #: app/skins/single/modern.php:163
683
  msgid "Read More"
684
  msgstr ""
685
 
686
+ #: app/features/events.php:604
687
  msgid "Repeating"
688
  msgstr ""
689
 
690
+ #: app/features/events.php:613
691
  msgid "Event Repeating (Recurring events)"
692
  msgstr ""
693
 
694
+ #: app/features/events.php:617 app/features/fes/form.php:327
695
  msgid "Repeats"
696
  msgstr ""
697
 
698
+ #: app/features/events.php:625 app/features/fes/form.php:329
699
  #: app/features/mec.php:1326 app/skins/default_full_calendar/tpl.php:74
700
  #: app/skins/full_calendar/tpl.php:121
701
  msgid "Daily"
702
  msgstr ""
703
 
704
+ #: app/features/events.php:632 app/features/fes/form.php:330
705
  msgid "Every Weekday"
706
  msgstr ""
707
 
708
+ #: app/features/events.php:639 app/features/fes/form.php:331
709
  msgid "Every Weekend"
710
  msgstr ""
711
 
712
+ #: app/features/events.php:646 app/features/fes/form.php:332
713
  msgid "Certain Weekdays"
714
  msgstr ""
715
 
716
+ #: app/features/events.php:653 app/features/fes/form.php:333
717
  #: app/skins/default_full_calendar/tpl.php:73
718
  #: app/skins/full_calendar/tpl.php:120
719
  msgid "Weekly"
720
  msgstr ""
721
 
722
+ #: app/features/events.php:660 app/features/fes/form.php:334
723
  #: app/features/mec.php:1327 app/skins/default_full_calendar/tpl.php:72
724
  #: app/skins/full_calendar/tpl.php:119
725
  msgid "Monthly"
726
  msgstr ""
727
 
728
+ #: app/features/events.php:667 app/features/fes/form.php:335
729
  #: app/features/mec.php:1328 app/skins/default_full_calendar/tpl.php:71
730
  #: app/skins/full_calendar/tpl.php:118
731
  msgid "Yearly"
732
  msgstr ""
733
 
734
+ #: app/features/events.php:674 app/features/fes/form.php:336
735
  msgid "Custom Days"
736
  msgstr ""
737
 
738
+ #: app/features/events.php:681 app/features/fes/form.php:337
739
  msgid "Advanced"
740
  msgstr ""
741
 
742
+ #: app/features/events.php:686 app/features/fes/form.php:341
743
  msgid "Repeat Interval"
744
  msgstr ""
745
 
746
+ #: app/features/events.php:688 app/features/fes/form.php:342
747
  msgid "Repeat interval"
748
  msgstr ""
749
 
750
+ #: app/features/events.php:692 app/features/fes/form.php:345
751
  msgid "Week Days"
752
  msgstr ""
753
 
754
+ #: app/features/events.php:709
755
  msgid ""
756
  "To add multiple occurrences per day you need Pro version of Modern Events "
757
  "Calendar."
758
  msgstr ""
759
 
760
+ #: app/features/events.php:715 app/features/events.php:1865
761
+ #: app/features/events.php:1893 app/features/events.php:2031
762
  #: app/features/fes/form.php:359 app/features/ix/import_f_calendar.php:42
763
  #: app/features/ix/import_g_calendar.php:51
764
  #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
765
  msgid "Start"
766
  msgstr ""
767
 
768
+ #: app/features/events.php:728 app/features/events.php:1231
769
+ #: app/features/events.php:1351 app/features/events.php:1456
770
+ #: app/features/events.php:1849 app/features/events.php:2020
771
+ #: app/features/events.php:2100 app/features/events.php:2233
772
  #: app/features/fes/form.php:389 app/features/fes/form.php:920
773
  msgid "Add"
774
  msgstr ""
775
 
776
+ #: app/features/events.php:731 app/features/fes/form.php:392
777
  msgid "Custom Days Repeating"
778
  msgstr ""
779
 
780
+ #: app/features/events.php:734 app/features/fes/form.php:395
781
  msgid ""
782
  "Add certain days to event occurrence dates. If you have a single day event, "
783
  "start and end dates should be the same, If you have a multiple day event, "
784
  "the start and end dates must be commensurate with the initial date."
785
  msgstr ""
786
 
787
+ #: app/features/events.php:745 app/features/events.php:1869
788
+ #: app/features/events.php:1897 app/features/events.php:2035
789
  #: app/features/fes/form.php:374
790
  msgid "End"
791
  msgstr ""
792
 
793
+ #: app/features/events.php:822 app/features/fes/form.php:468
794
  msgid "First"
795
  msgstr ""
796
 
797
+ #: app/features/events.php:864 app/features/fes/form.php:510
798
  msgid "Second"
799
  msgstr ""
800
 
801
+ #: app/features/events.php:906 app/features/fes/form.php:552
802
  msgid "Third"
803
  msgstr ""
804
 
805
+ #: app/features/events.php:948 app/features/fes/form.php:594
806
  msgid "Fourth"
807
  msgstr ""
808
 
809
+ #: app/features/events.php:990 app/features/fes/form.php:636
810
  msgid "Last"
811
  msgstr ""
812
 
813
+ #: app/features/events.php:1037 app/features/fes/form.php:682
814
  msgid "Ends Repeat"
815
  msgstr ""
816
 
817
+ #: app/features/events.php:1049 app/features/fes/form.php:686
818
  msgid "Never"
819
  msgstr ""
820
 
821
+ #: app/features/events.php:1061 app/features/fes/form.php:691
822
  msgid "On"
823
  msgstr ""
824
 
825
+ #: app/features/events.php:1077 app/features/fes/form.php:698
826
+ #: app/features/mec/booking.php:180
827
  msgid "After"
828
  msgstr ""
829
 
830
+ #: app/features/events.php:1081 app/features/events.php:1085
831
  #: app/features/fes/form.php:700 app/features/fes/form.php:703
832
  msgid "Occurrences times"
833
  msgstr ""
834
 
835
+ #: app/features/events.php:1086
836
  msgid ""
837
  "The event will finish after certain repeats. For example if you set it to "
838
  "10, the event will finish after 10 occurrences."
839
  msgstr ""
840
 
841
+ #: app/features/events.php:1101 app/features/fes/form.php:717
842
  msgid "Show only one occurrence of this event"
843
  msgstr ""
844
 
845
+ #: app/features/events.php:1121 app/features/events.php:3652
846
+ #: app/features/fes/form.php:790 app/features/ix.php:3719
847
+ #: app/features/ix.php:3760 app/features/mec/settings.php:715
848
+ #: app/libraries/main.php:5950 app/libraries/main.php:5997
849
+ #: app/widgets/single.php:103
850
  msgid "Event Cost"
851
  msgstr ""
852
 
853
+ #: app/features/events.php:1218
854
  msgid "Exceptional Days (Exclude Dates)"
855
  msgstr ""
856
 
857
+ #: app/features/events.php:1224 app/features/events.php:1234
858
  msgid "Exclude certain days"
859
  msgstr ""
860
 
861
+ #: app/features/events.php:1229 app/features/events.php:2448
862
+ #: app/features/events.php:2537 app/features/fes.php:233
863
+ #: app/features/mec/booking.php:585 app/features/mec/booking.php:681
864
  #: app/features/mec/single.php:185 app/features/profile/profile.php:58
865
+ #: app/libraries/main.php:3271 app/modules/booking/steps/tickets.php:94
866
+ #: app/modules/next-event/details.php:134 app/skins/single.php:933
867
  #: app/skins/single/default.php:100 app/skins/single/default.php:334
868
  #: app/skins/single/m1.php:22 app/skins/single/modern.php:197
869
  msgid "Date"
870
  msgstr ""
871
 
872
+ #: app/features/events.php:1235
873
  msgid ""
874
  "Exclude certain days from event occurrence dates. Please note that you can "
875
  "exclude only single day occurrences and you cannot exclude one day from "
876
  "multiple day occurrences."
877
  msgstr ""
878
 
879
+ #: app/features/events.php:1294 app/libraries/render.php:546
880
  msgid "Day 1"
881
  msgstr ""
882
 
883
+ #: app/features/events.php:1324
884
  msgid "Add Day"
885
  msgstr ""
886
 
887
+ #: app/features/events.php:1325
888
  msgid ""
889
  "Add new days for schedule. For example if your event is multiple days, you "
890
  "can add a different schedule for each day!"
891
  msgstr ""
892
 
893
+ #: app/features/events.php:1332
894
  #, php-format
895
  msgid "Day %s"
896
  msgstr ""
897
 
898
+ #: app/features/events.php:1336 app/features/events.php:1375
899
+ #: app/features/events.php:1410 app/features/events.php:1442
900
+ #: app/features/events.php:1471 app/features/events.php:2248
901
+ #: app/features/events.php:2295 app/features/events.php:3460
902
+ #: app/features/events.php:3652 app/features/fes/form.php:248
903
+ #: app/features/ix.php:3719 app/features/ix.php:3760
904
+ #: app/features/mec/booking.php:482 app/features/mec/booking.php:514
905
+ #: app/features/mec/styling.php:130
906
  msgid "Title"
907
  msgstr ""
908
 
909
+ #: app/features/events.php:1345 app/features/events.php:1382
910
+ #: app/features/events.php:1415 app/features/events.php:1450
911
+ #: app/features/events.php:1476 app/features/events.php:1879
912
+ #: app/features/events.php:1905 app/features/events.php:2041
913
+ #: app/features/events.php:2140 app/features/events.php:2176
914
+ #: app/features/events.php:2283 app/features/events.php:2325
915
+ #: app/features/mec/booking.php:425 app/features/mec/booking.php:454
916
+ #: app/features/mec/booking.php:505 app/features/mec/booking.php:537
917
+ #: app/libraries/main.php:3106 app/libraries/main.php:3135
918
+ #: app/libraries/main.php:3164 app/libraries/main.php:3193
919
+ #: app/libraries/main.php:3222 app/libraries/main.php:3251
920
+ #: app/libraries/main.php:3280 app/libraries/main.php:3309
921
+ #: app/libraries/main.php:3338 app/libraries/main.php:3359
922
+ #: app/libraries/main.php:3390 app/libraries/main.php:3436
923
+ #: app/libraries/main.php:3482 app/libraries/main.php:3531
924
+ #: app/libraries/main.php:3571
925
  msgid "Remove"
926
  msgstr ""
927
 
928
+ #: app/features/events.php:1352 app/features/events.php:1457
929
  msgid "Add new hourly schedule row"
930
  msgstr ""
931
 
932
+ #: app/features/events.php:1367 app/features/events.php:1404
933
+ #: app/features/events.php:1466
934
  msgid "From e.g. 8:15"
935
  msgstr ""
936
 
937
+ #: app/features/events.php:1371 app/features/events.php:1407
938
+ #: app/features/events.php:1468
939
  msgid "To e.g. 8:45"
940
  msgstr ""
941
 
942
+ #: app/features/events.php:1379 app/features/events.php:1413
943
+ #: app/features/events.php:1474 app/features/events.php:1770
944
+ #: app/features/events.php:1952
945
  msgid "Description"
946
  msgstr ""
947
 
948
+ #: app/features/events.php:1385 app/features/events.php:1418
949
+ #: app/features/events.php:1479 app/features/fes/form.php:916
950
  #: app/features/mec.php:469 app/features/mec/modules.php:51
951
  #: app/features/mec/settings.php:763 app/features/speakers.php:62
952
+ #: app/libraries/main.php:569 app/libraries/main.php:5925
953
+ #: app/libraries/main.php:5973 app/modules/speakers/details.php:18
954
  msgid "Speakers"
955
  msgstr ""
956
 
957
+ #: app/features/events.php:1438 app/features/events.php:1446
958
  msgid "New Day"
959
  msgstr ""
960
 
961
+ #: app/features/events.php:1510 app/features/fes/form.php:767
962
  #: app/features/mec/settings.php:709
963
  msgid "Event Links"
964
  msgstr ""
965
 
966
+ #: app/features/events.php:1513 app/features/events.php:1519
967
+ #: app/features/fes/form.php:769 app/libraries/main.php:5948
968
+ #: app/libraries/main.php:5995
969
  msgid "Event Link"
970
  msgstr ""
971
 
972
+ #: app/features/events.php:1516 app/features/events.php:1532
973
  #: app/features/fes/form.php:770 app/features/fes/form.php:775
974
  msgid "eg. http://yoursite.com/your-event"
975
  msgstr ""
976
 
977
+ #: app/features/events.php:1520
978
  msgid ""
979
  "If you fill it, it will replace the default event page link. Insert full "
980
  "link including http(s):// - Also, if you use advertising URL, can use URL "
981
  "Shortener"
982
  msgstr ""
983
 
984
+ #: app/features/events.php:1522
985
  msgid "URL Shortener"
986
  msgstr ""
987
 
988
+ #: app/features/events.php:1529 app/features/events.php:1542
989
+ #: app/features/fes/form.php:774 app/libraries/main.php:5949
990
+ #: app/libraries/main.php:5996 app/skins/single.php:959
991
  #: app/skins/single/default.php:159 app/skins/single/default.php:391
992
  #: app/skins/single/m1.php:218 app/skins/single/m2.php:142
993
  #: app/skins/single/modern.php:162 app/widgets/single.php:107
994
  msgid "More Info"
995
  msgstr ""
996
 
997
+ #: app/features/events.php:1535 app/features/fes/form.php:776
998
  msgid "More Information"
999
  msgstr ""
1000
 
1001
+ #: app/features/events.php:1537 app/features/fes/form.php:778
1002
  msgid "Current Window"
1003
  msgstr ""
1004
 
1005
+ #: app/features/events.php:1538 app/features/fes/form.php:779
1006
  msgid "New Window"
1007
  msgstr ""
1008
 
1009
+ #: app/features/events.php:1543 app/features/fes/form.php:781
1010
  msgid ""
1011
  "If you fill it, it will be shown in event details page as an optional link. "
1012
  "Insert full link including http(s)://"
1013
  msgstr ""
1014
 
1015
+ #: app/features/events.php:1566 app/features/mec/settings.php:777
1016
  msgid "Booking Options"
1017
  msgstr ""
1018
 
1019
+ #: app/features/events.php:1567
1020
  msgid "Total User Booking Limits"
1021
  msgstr ""
1022
 
1023
+ #: app/features/events.php:1568 app/features/events.php:1713
1024
+ #: app/libraries/book.php:60 app/libraries/main.php:5953
1025
  #: app/modules/booking/steps/tickets.php:119
1026
  #: app/modules/booking/steps/tickets.php:125
1027
  msgid "Tickets"
1028
  msgstr ""
1029
 
1030
+ #: app/features/events.php:1570 app/features/events.php:2077
1031
  msgid "Fees"
1032
  msgstr ""
1033
 
1034
+ #: app/features/events.php:1573 app/features/events.php:2209
1035
  #: app/features/mec/settings.php:789
1036
  msgid "Ticket Variations / Options"
1037
  msgstr ""
1038
 
1039
+ #: app/features/events.php:1577 app/features/mec/booking.php:757
1040
  #: app/features/mec/support-page.php:118
1041
  msgid "Organizer Payment"
1042
  msgstr ""
1043
 
1044
+ #: app/features/events.php:1620 app/features/events.php:1634
1045
  msgid "Total booking limit"
1046
  msgstr ""
1047
 
1048
+ #: app/features/events.php:1631 app/features/events.php:1818
1049
+ #: app/features/events.php:1990 app/modules/booking/default.php:98
1050
  #: app/modules/booking/steps/tickets.php:119
1051
  #: app/modules/booking/steps/tickets.php:125
1052
  #: app/skins/available_spot/tpl.php:142
1053
  msgid "Unlimited"
1054
  msgstr ""
1055
 
1056
+ #: app/features/events.php:1637
1057
  msgid ""
1058
  "If you want to set a limit to all tickets, uncheck this checkbox and put a "
1059
  "limitation number."
1060
  msgstr ""
1061
 
1062
+ #: app/features/events.php:1639
1063
  msgid "Read About A Booking System"
1064
  msgstr ""
1065
 
1066
+ #: app/features/events.php:1647
1067
  msgid "100"
1068
  msgstr ""
1069
 
1070
+ #: app/features/events.php:1649 app/features/events.php:1663
1071
  msgid "Book All Occurrences"
1072
  msgstr ""
1073
 
1074
+ #: app/features/events.php:1660
1075
  msgid "Sell all occurrences by one booking"
1076
  msgstr ""
1077
 
1078
+ #: app/features/events.php:1666
1079
  msgid ""
1080
  "If you have a series of events and you want to sell all of them at once, "
1081
  "this option is for you! For example a weekly yoga course or something "
1082
  "similar."
1083
  msgstr ""
1084
 
1085
+ #: app/features/events.php:1676
1086
  msgid "Total user booking limits"
1087
  msgstr ""
1088
 
1089
+ #: app/features/events.php:1687 app/features/events.php:2089
1090
+ #: app/features/events.php:2221 app/features/events.php:2402
1091
  msgid "Inherit from global options"
1092
  msgstr ""
1093
 
1094
+ #: app/features/events.php:1690
1095
  msgid "12"
1096
  msgstr ""
1097
 
1098
+ #: app/features/events.php:1716
1099
  msgid ""
1100
  "You're translating an event so MEC will use the original event for tickets "
1101
  "and booking. You can only translate the ticket name and description. Please "
1102
  "define exact tickets that you defined in the original event here."
1103
  msgstr ""
1104
 
1105
+ #: app/features/events.php:1721
1106
  msgid "Add Ticket"
1107
  msgstr ""
1108
 
1109
+ #: app/features/events.php:1733 app/features/events.php:1917
1110
  msgid "Ticket ID"
1111
  msgstr ""
1112
 
1113
+ #: app/features/events.php:1733 app/features/events.php:1917
1114
+ #: app/features/events.php:3652 app/features/fes.php:233
1115
+ #: app/features/ix.php:3719 app/features/ix.php:3760
1116
  #: app/features/labels.php:177 app/features/locations.php:260
1117
  #: app/features/organizers.php:203 app/features/speakers.php:268
1118
  msgid "ID"
1119
  msgstr ""
1120
 
1121
+ #: app/features/events.php:1736 app/features/events.php:1920
1122
  msgid "Ticket Name"
1123
  msgstr ""
1124
 
1125
+ #: app/features/events.php:1741 app/features/events.php:1924
1126
+ #: app/features/events.php:3652 app/features/ix.php:3719
1127
+ #: app/features/ix.php:3760
1128
  msgid "Start Time"
1129
  msgstr ""
1130
 
1131
+ #: app/features/events.php:1754 app/features/events.php:1937
1132
+ #: app/features/events.php:3652 app/features/ix.php:3719
1133
+ #: app/features/ix.php:3760
1134
  msgid "End Time"
1135
  msgstr ""
1136
 
1137
+ #: app/features/events.php:1775 app/features/events.php:1779
1138
+ #: app/features/events.php:1873 app/features/events.php:1900
1139
+ #: app/features/events.php:1957 app/features/events.php:1960
1140
+ #: app/features/events.php:2037 app/features/events.php:2254
1141
+ #: app/features/events.php:2258 app/features/events.php:2300
1142
+ #: app/features/events.php:2303 app/features/mec/booking.php:486
1143
+ #: app/features/mec/booking.php:489 app/features/mec/booking.php:518
1144
+ #: app/features/mec/booking.php:521
1145
  msgid "Price"
1146
  msgstr ""
1147
 
1148
+ #: app/features/events.php:1780 app/features/events.php:1961
1149
  msgid ""
1150
  "Insert 0 for free ticket. Only numbers please — Enter only the price without "
1151
  "any symbols or characters."
1152
  msgstr ""
1153
 
1154
+ #: app/features/events.php:1789 app/features/events.php:1794
1155
+ #: app/features/events.php:1970 app/features/events.php:1973
1156
  msgid "Price Label"
1157
  msgstr ""
1158
 
1159
+ #: app/features/events.php:1795 app/features/events.php:1974
1160
  msgid "For showing on website. e.g. $15"
1161
  msgstr ""
1162
 
1163
+ #: app/features/events.php:1805 app/features/events.php:1984
1164
  msgid "Available Tickets"
1165
  msgstr ""
1166
 
1167
+ #: app/features/events.php:1822 app/features/events.php:1994
1168
  msgid "Minimum Ticket e.g. 3"
1169
  msgstr ""
1170
 
1171
+ #: app/features/events.php:1825 app/features/events.php:1997
1172
  msgid "MinimumTicket"
1173
  msgstr ""
1174
 
1175
+ #: app/features/events.php:1827 app/features/events.php:1999
1176
  msgid "Set a number for the minimum ticket reservation possible"
1177
  msgstr ""
1178
 
1179
+ #: app/features/events.php:1835 app/features/events.php:2007
1180
  msgid "e.g. 0"
1181
  msgstr ""
1182
 
1183
+ #: app/features/events.php:1837 app/features/events.php:2009
1184
  msgid "Day"
1185
  msgstr ""
1186
 
1187
+ #: app/features/events.php:1838 app/features/events.php:2010
1188
  msgid "Hour"
1189
  msgstr ""
1190
 
1191
+ #: app/features/events.php:1840 app/features/events.php:2012
1192
  #, php-format
1193
  msgid "Stop selling ticket %s before event start."
1194
  msgstr ""
1195
 
1196
+ #: app/features/events.php:1847 app/features/events.php:2018
1197
  msgid "Price per Date"
1198
  msgstr ""
1199
 
1200
+ #: app/features/events.php:1877 app/features/events.php:1903
1201
+ #: app/features/events.php:2039 app/features/labels.php:60
1202
  #: app/features/mec/meta_boxes/display_options.php:1396
1203
  #: app/features/mec/meta_boxes/search_form.php:67
1204
  #: app/features/mec/meta_boxes/search_form.php:137
1212
  #: app/features/mec/meta_boxes/search_form.php:690
1213
  #: app/features/mec/meta_boxes/search_form.php:796
1214
  #: app/features/mec/settings.php:917 app/features/mec/single.php:341
1215
+ #: app/features/search.php:98 app/libraries/skins.php:1073
1216
  msgid "Label"
1217
  msgstr ""
1218
 
1219
+ #: app/features/events.php:2114 app/features/events.php:2152
1220
+ #: app/features/mec/booking.php:405 app/features/mec/booking.php:434
1221
  msgid "Fee Title"
1222
  msgstr ""
1223
 
1224
+ #: app/features/events.php:2120 app/features/events.php:2124
1225
+ #: app/features/events.php:2157 app/features/events.php:2160
1226
+ #: app/features/mec/booking.php:409 app/features/mec/booking.php:412
1227
+ #: app/features/mec/booking.php:438 app/features/mec/booking.php:441
1228
  msgid "Amount"
1229
  msgstr ""
1230
 
1231
+ #: app/features/events.php:2125 app/features/events.php:2161
1232
+ #: app/features/mec/booking.php:413 app/features/mec/booking.php:442
1233
  msgid ""
1234
  "Fee amount, considered as fixed amount if you set the type to amount "
1235
  "otherwise considered as percentage"
1236
  msgstr ""
1237
 
1238
+ #: app/features/events.php:2134 app/features/events.php:2170
1239
+ #: app/features/mec/booking.php:420 app/features/mec/booking.php:449
1240
  msgid "Percent"
1241
  msgstr ""
1242
 
1243
+ #: app/features/events.php:2135 app/features/events.php:2171
1244
+ #: app/features/mec/booking.php:421 app/features/mec/booking.php:450
1245
  msgid "Amount (Per Ticket)"
1246
  msgstr ""
1247
 
1248
+ #: app/features/events.php:2136 app/features/events.php:2172
1249
+ #: app/features/mec/booking.php:422 app/features/mec/booking.php:451
1250
  msgid "Amount (Per Booking)"
1251
  msgstr ""
1252
 
1253
+ #: app/features/events.php:2259 app/features/events.php:2304
1254
+ #: app/features/mec/booking.php:490 app/features/mec/booking.php:522
1255
  msgid "Option Price"
1256
  msgstr ""
1257
 
1258
+ #: app/features/events.php:2269 app/features/events.php:2273
1259
+ #: app/features/events.php:2313 app/features/events.php:2316
1260
+ #: app/features/mec/booking.php:496 app/features/mec/booking.php:499
1261
+ #: app/features/mec/booking.php:528 app/features/mec/booking.php:531
1262
  msgid "Maximum Per Ticket"
1263
  msgstr ""
1264
 
1265
+ #: app/features/events.php:2274 app/features/events.php:2317
1266
+ #: app/features/mec/booking.php:500 app/features/mec/booking.php:532
1267
  msgid "Maximum Per Ticket. Leave blank for unlimited."
1268
  msgstr ""
1269
 
1270
+ #: app/features/events.php:2414 app/features/mec/booking.php:548
1271
  msgid "Per Attendee Fields"
1272
  msgstr ""
1273
 
1274
+ #: app/features/events.php:2444 app/features/mec/booking.php:581
1275
+ #: app/libraries/main.php:3126
1276
  msgid "MEC Name"
1277
  msgstr ""
1278
 
1279
+ #: app/features/events.php:2445 app/features/mec/booking.php:582
1280
+ #: app/libraries/main.php:3155
1281
  msgid "MEC Email"
1282
  msgstr ""
1283
 
1284
+ #: app/features/events.php:2446 app/features/events.php:2535
1285
+ #: app/features/mec/booking.php:583 app/features/mec/booking.php:679
1286
+ #: app/features/mec/single.php:182 app/libraries/main.php:3097
1287
  msgid "Text"
1288
  msgstr ""
1289
 
1290
+ #: app/features/events.php:2449 app/features/events.php:2538
1291
+ #: app/features/mec/booking.php:586 app/features/mec/booking.php:682
1292
  #: app/features/mec/single.php:186 app/features/organizers.php:103
1293
  #: app/features/organizers.php:148 app/features/speakers.php:119
1294
  #: app/features/speakers.php:192 app/features/speakers.php:271
1295
+ #: app/libraries/main.php:3300
1296
  msgid "Tel"
1297
  msgstr ""
1298
 
1299
+ #: app/features/events.php:2450 app/features/mec/booking.php:587
1300
+ #: app/libraries/main.php:3242
1301
  msgid "File"
1302
  msgstr ""
1303
 
1304
+ #: app/features/events.php:2451 app/features/events.php:2539
1305
+ #: app/features/mec/booking.php:588 app/features/mec/booking.php:683
1306
+ #: app/features/mec/single.php:187 app/libraries/main.php:3329
1307
  msgid "Textarea"
1308
  msgstr ""
1309
 
1310
+ #: app/features/events.php:2452 app/features/events.php:2540
1311
+ #: app/features/mec/booking.php:589 app/features/mec/booking.php:684
1312
+ #: app/features/mec/single.php:189 app/libraries/main.php:3381
1313
  msgid "Checkboxes"
1314
  msgstr ""
1315
 
1316
+ #: app/features/events.php:2453 app/features/events.php:2541
1317
+ #: app/features/mec/booking.php:590 app/features/mec/booking.php:685
1318
+ #: app/features/mec/single.php:190 app/libraries/main.php:3427
1319
  msgid "Radio Buttons"
1320
  msgstr ""
1321
 
1322
+ #: app/features/events.php:2454 app/features/events.php:2542
1323
+ #: app/features/mec/booking.php:591 app/features/mec/booking.php:686
1324
  #: app/features/mec/meta_boxes/search_form.php:34
1325
  #: app/features/mec/meta_boxes/search_form.php:41
1326
  #: app/features/mec/meta_boxes/search_form.php:49
1397
  #: app/features/mec/meta_boxes/search_form.php:792
1398
  #: app/features/mec/meta_boxes/search_form.php:799
1399
  #: app/features/mec/meta_boxes/search_form.php:813
1400
+ #: app/features/mec/single.php:191 app/libraries/main.php:3473
1401
  msgid "Dropdown"
1402
  msgstr ""
1403
 
1404
+ #: app/features/events.php:2455 app/features/events.php:2543
1405
+ #: app/features/mec/booking.php:592 app/features/mec/booking.php:687
1406
+ #: app/libraries/main.php:3522
1407
  msgid "Agreement"
1408
  msgstr ""
1409
 
1410
+ #: app/features/events.php:2456 app/features/events.php:2544
1411
+ #: app/features/mec/booking.php:593 app/features/mec/booking.php:688
1412
+ #: app/features/mec/single.php:188 app/libraries/main.php:3358
1413
  msgid "Paragraph"
1414
  msgstr ""
1415
 
1416
+ #: app/features/events.php:2505 app/features/mec/booking.php:646
1417
  msgid "Fixed Fields"
1418
  msgstr ""
1419
 
1420
+ #: app/features/events.php:3362 app/features/events.php:3380
1421
+ #: app/features/events.php:3398 app/features/events.php:3416
1422
  #, php-format
1423
  msgid "Show all %s"
1424
  msgstr ""
1425
 
1426
+ #: app/features/events.php:3362
1427
  msgid "labels"
1428
  msgstr ""
1429
 
1430
+ #: app/features/events.php:3380
1431
  msgid "locations"
1432
  msgstr ""
1433
 
1434
+ #: app/features/events.php:3398
1435
  msgid "organizers"
1436
  msgstr ""
1437
 
1438
+ #: app/features/events.php:3432
1439
  msgid "Attendees List"
1440
  msgstr ""
1441
 
1442
+ #: app/features/events.php:3462 app/features/events.php:3652
1443
+ #: app/features/ix.php:3719 app/features/ix.php:3760
1444
+ #: app/features/locations.php:58 app/features/locations.php:261
1445
+ #: app/features/locations.php:322 app/features/locations.php:324
1446
+ #: app/features/locations.php:333
1447
  #: app/features/mec/meta_boxes/display_options.php:1397
1448
  #: app/features/mec/meta_boxes/search_form.php:38
1449
  #: app/features/mec/meta_boxes/search_form.php:108
1458
  #: app/features/mec/meta_boxes/search_form.php:767
1459
  #: app/features/mec/settings.php:891 app/features/mec/single.php:331
1460
  #: app/features/popup/event.php:116 app/features/popup/event.php:125
1461
+ #: app/features/search.php:74 app/libraries/main.php:2454
1462
+ #: app/libraries/main.php:5922 app/libraries/main.php:5970
1463
+ #: app/libraries/skins.php:969 app/skins/single.php:776
1464
+ #: app/skins/single.php:1219 app/skins/single/default.php:196
1465
  #: app/skins/single/default.php:429 app/skins/single/m1.php:174
1466
  #: app/skins/single/m2.php:97 app/skins/single/modern.php:116
1467
  msgid "Location"
1468
  msgstr ""
1469
 
1470
+ #: app/features/events.php:3467
1471
  msgid "Repeat"
1472
  msgstr ""
1473
 
1474
+ #: app/features/events.php:3468
1475
  msgid "Author"
1476
  msgstr ""
1477
 
1478
+ #: app/features/events.php:3589 app/features/events.php:3590
1479
  msgid "iCal Export"
1480
  msgstr ""
1481
 
1482
+ #: app/features/events.php:3592 app/features/events.php:3593
1483
  msgid "CSV Export"
1484
  msgstr ""
1485
 
1486
+ #: app/features/events.php:3595 app/features/events.php:3596
1487
  msgid "MS Excel Export"
1488
  msgstr ""
1489
 
1490
+ #: app/features/events.php:3598 app/features/events.php:3599
1491
  msgid "XML Export"
1492
  msgstr ""
1493
 
1494
+ #: app/features/events.php:3601 app/features/events.php:3602
1495
  msgid "JSON Export"
1496
  msgstr ""
1497
 
1498
+ #: app/features/events.php:3604 app/features/events.php:3605
1499
+ #: app/features/events.php:3761
1500
  msgid "Duplicate"
1501
  msgstr ""
1502
 
1503
+ #: app/features/events.php:3652 app/features/ix.php:3719
1504
+ #: app/features/ix.php:3760
1505
  msgid "Link"
1506
  msgstr ""
1507
 
1508
+ #: app/features/events.php:3652
1509
  #, php-format
1510
  msgid "%s Tel"
1511
  msgstr ""
1512
 
1513
+ #: app/features/events.php:3652
1514
  #, php-format
1515
  msgid "%s Email"
1516
  msgstr ""
1517
 
1518
+ #: app/features/events.php:3973 app/features/fes.php:233
1519
+ #: app/features/profile/profile.php:183 app/libraries/main.php:2537
1520
+ #: app/libraries/main.php:5952
1521
  msgid "Ticket"
1522
  msgstr ""
1523
 
1524
+ #: app/features/events.php:3976 app/features/profile/profile.php:186
1525
  msgid "Variations"
1526
  msgstr ""
1527
 
1528
+ #: app/features/events.php:3991 app/features/fes.php:304
1529
  msgid "Unknown"
1530
  msgstr ""
1531
 
1532
+ #: app/features/events.php:4017
1533
  msgid ""
1534
  "If you want to send an email, first select your attendees and then click in "
1535
  "the button below, please."
1536
  msgstr ""
1537
 
1538
+ #: app/features/events.php:4017 app/features/mec/report.php:50
1539
  msgid "Send Email"
1540
  msgstr ""
1541
 
1542
+ #: app/features/events.php:4021
1543
  msgid "No Attendees Found!"
1544
  msgstr ""
1545
 
1578
  msgid "Order Time"
1579
  msgstr ""
1580
 
1581
+ #: app/features/fes.php:233 app/libraries/main.php:2485
1582
+ #: app/libraries/main.php:2600
1583
  msgid "Transaction ID"
1584
  msgstr ""
1585
 
1727
  #: app/features/fes/form.php:848 app/features/labels.php:61
1728
  #: app/features/labels.php:221 app/features/mec.php:462
1729
  #: app/features/mec/meta_boxes/filter.php:72
1730
+ #: app/features/mec/meta_boxes/filter.php:133 app/libraries/main.php:5919
1731
+ #: app/libraries/main.php:5967 app/skins/single.php:989
1732
  #: app/skins/single/default.php:174 app/skins/single/default.php:406
1733
  #: app/skins/single/m1.php:77 app/skins/single/modern.php:252
1734
  msgid "Labels"
1794
  msgid "Import / Export"
1795
  msgstr ""
1796
 
1797
+ #: app/features/ix.php:206
1798
+ msgid "Please upload a CSV file."
1799
  msgstr ""
1800
 
1801
+ #: app/features/ix.php:209
1802
+ msgid "The file type should be CSV."
1803
  msgstr ""
1804
 
1805
+ #: app/features/ix.php:218 app/features/ix.php:423
1806
  msgid "An error occurred during the file upload! Please check permissions!"
1807
  msgstr ""
1808
 
1809
+ #: app/features/ix.php:268 app/libraries/main.php:6187
1810
+ #: app/libraries/main.php:6207
1811
+ msgid "Confirmed"
1812
+ msgstr ""
1813
+
1814
+ #: app/features/ix.php:269 app/libraries/main.php:6188
1815
+ #: app/libraries/main.php:6215
1816
+ msgid "Rejected"
1817
+ msgstr ""
1818
+
1819
+ #: app/features/ix.php:273 app/features/mec/booking.php:848
1820
+ #: app/features/mec/booking.php:870 app/features/mec/modules.php:401
1821
+ #: app/features/mec/modules.php:423 app/features/mec/notifications.php:988
1822
+ #: app/features/mec/notifications.php:1010 app/features/mec/settings.php:1160
1823
+ #: app/features/mec/settings.php:1182 app/features/mec/single.php:386
1824
+ #: app/features/mec/single.php:408 app/libraries/main.php:6235
1825
+ msgid "Verified"
1826
+ msgstr ""
1827
+
1828
+ #: app/features/ix.php:274 app/features/labels.php:118
1829
+ #: app/features/labels.php:143 app/libraries/main.php:6236
1830
+ #: app/skins/agenda/render.php:43 app/skins/available_spot/tpl.php:58
1831
+ #: app/skins/carousel/render.php:38 app/skins/countdown/tpl.php:39
1832
+ #: app/skins/cover/tpl.php:37 app/skins/daily_view/render.php:29
1833
+ #: app/skins/grid/render.php:64 app/skins/list/render.php:40
1834
+ #: app/skins/masonry/render.php:34 app/skins/monthly_view/calendar.php:89
1835
+ #: app/skins/monthly_view/calendar_clean.php:88
1836
+ #: app/skins/monthly_view/calendar_novel.php:80 app/skins/slider/render.php:48
1837
+ #: app/skins/tile/render.php:44 app/skins/timeline/render.php:49
1838
+ #: app/skins/timetable/render.php:44 app/skins/timetable/render.php:111
1839
+ #: app/skins/weekly_view/render.php:37 app/skins/yearly_view/render.php:53
1840
+ msgid "Canceled"
1841
+ msgstr ""
1842
+
1843
+ #: app/features/ix.php:403
1844
+ msgid "The bookings are imported successfully!"
1845
+ msgstr ""
1846
+
1847
+ #: app/features/ix.php:411
1848
+ msgid "Please upload the feed file."
1849
+ msgstr ""
1850
+
1851
+ #: app/features/ix.php:414
1852
+ msgid "The file type should be XML or ICS."
1853
+ msgstr ""
1854
+
1855
+ #: app/features/ix.php:431
1856
  msgid "The events are imported successfully!"
1857
  msgstr ""
1858
 
1859
+ #: app/features/ix.php:1156
1860
  msgid "Third Party plugin is not installed and activated!"
1861
  msgstr ""
1862
 
1863
+ #: app/features/ix.php:1179
1864
  msgid "Third Party plugin is invalid!"
1865
  msgstr ""
1866
 
1867
+ #: app/features/ix.php:2930 app/features/ix.php:2988
1868
  msgid "API key and Calendar ID are required!"
1869
  msgstr ""
1870
 
1871
+ #: app/features/ix.php:2983 app/features/ix.php:3402 app/features/ix.php:4143
1872
  msgid "Please select events to import!"
1873
  msgstr ""
1874
 
1875
+ #: app/features/ix.php:3344 app/features/ix.php:3407
1876
  msgid "API key and Group URL are required!"
1877
  msgstr ""
1878
 
1879
+ #: app/features/ix.php:3646
1880
  msgid "Check at Meetup"
1881
  msgstr ""
1882
 
1883
+ #: app/features/ix.php:3719 app/features/ix.php:3760
1884
  msgid "Organizer Tel"
1885
  msgstr ""
1886
 
1887
+ #: app/features/ix.php:3719 app/features/ix.php:3760
1888
  msgid "Organizer Email"
1889
  msgstr ""
1890
 
1891
+ #: app/features/ix.php:3835
1892
  msgid "All of Client ID, Client Secret, and Calendar ID are required!"
1893
  msgstr ""
1894
 
1895
+ #: app/features/ix.php:3858
1896
  #, php-format
1897
  msgid "All seems good! Please click %s to authenticate your app."
1898
  msgstr ""
1899
 
1900
+ #: app/features/ix.php:3858
1901
  msgid "here"
1902
  msgstr ""
1903
 
1904
+ #: app/features/ix.php:3912
1905
  msgid "Client App, Client Secret, and Calendar ID are all required!"
1906
  msgstr ""
1907
 
1908
+ #: app/features/ix.php:4065
1909
  #, php-format
1910
  msgid "%s events added to Google Calendar with success."
1911
  msgstr ""
1912
 
1913
+ #: app/features/ix.php:4066
1914
  #, php-format
1915
  msgid "%s Updated previously added events."
1916
  msgstr ""
1917
 
1918
+ #: app/features/ix.php:4067
1919
  #, php-format
1920
  msgid "%s events failed to add for following reasons: %s"
1921
  msgstr ""
1922
 
1923
+ #: app/features/ix.php:4099
1924
  msgid "Please insert your Facebook page's link."
1925
  msgstr ""
1926
 
1927
+ #: app/features/ix.php:4110 app/features/ix.php:4152
1928
  msgid ""
1929
  "We were not able to recognize your Facebook page. Please check again and "
1930
  "provide a valid link."
1931
  msgstr ""
1932
 
1933
+ #: app/features/ix.php:4147
1934
  msgid "Please insert your facebook page's link."
1935
  msgstr ""
1936
 
2087
  #: app/features/ix/export_g_calendar.php:72
2088
  #: app/features/ix/export_g_calendar.php:151
2089
  #: app/features/ix/export_g_calendar.php:166
2090
+ #: app/features/mec/notifications.php:139
2091
+ #: app/features/mec/notifications.php:241
2092
+ #: app/features/mec/notifications.php:356
2093
+ #: app/features/mec/notifications.php:703
2094
  msgid "Add to Google Calendar"
2095
  msgstr ""
2096
 
2097
+ #: app/features/ix/export_g_calendar.php:93 app/features/mec/booking.php:850
2098
+ #: app/features/mec/modules.php:403 app/features/mec/notifications.php:990
2099
  #: app/features/mec/settings.php:1162 app/features/mec/single.php:388
2100
  msgid "Checking ..."
2101
  msgstr ""
2120
  msgstr ""
2121
 
2122
  #: app/features/ix/import.php:29 app/features/ix/import.php:42
2123
+ #: app/features/ix/import.php:59
2124
  msgid "Upload & Import"
2125
  msgstr ""
2126
 
2139
  msgid "ICS Feed"
2140
  msgstr ""
2141
 
2142
+ #: app/features/ix/import.php:46 app/features/ix/import.php:63
2143
+ #: app/features/mec/booking.php:99 app/features/mec/booking.php:355
2144
+ #: app/features/mec/booking.php:371 app/features/mec/booking.php:389
2145
+ #: app/features/mec/booking.php:466
2146
  #: app/features/mec/meta_boxes/display_options.php:214
2147
  #: app/features/mec/meta_boxes/display_options.php:467
2148
  #: app/features/mec/modules.php:69 app/features/mec/modules.php:211
2151
  msgid "%s is required to use this feature."
2152
  msgstr ""
2153
 
2154
+ #: app/features/ix/import.php:46 app/features/ix/import.php:63
2155
+ #: app/features/ix/sync.php:22 app/features/mec/booking.php:99
2156
+ #: app/features/mec/booking.php:355 app/features/mec/booking.php:371
2157
+ #: app/features/mec/booking.php:389 app/features/mec/booking.php:466
2158
  #: app/features/mec/meta_boxes/display_options.php:214
2159
  #: app/features/mec/meta_boxes/display_options.php:467
2160
  #: app/features/mec/meta_boxes/display_options.php:508
2169
  msgid "Pro version of Modern Events Calendar"
2170
  msgstr ""
2171
 
2172
+ #: app/features/ix/import.php:49
2173
+ msgid "Import Booking CSV File"
2174
+ msgstr ""
2175
+
2176
+ #: app/features/ix/import.php:53
2177
+ #, php-format
2178
+ msgid ""
2179
+ "You can export bookings from %s using the booking menu in source website. "
2180
+ "You need a CSV export and then you're able to simply import it using this "
2181
+ "form in to your target website."
2182
+ msgstr ""
2183
+
2184
+ #: app/features/ix/import.php:54
2185
+ msgid ""
2186
+ "Please note that you should create (or imports) events and tickets before "
2187
+ "importing the bookings otherwise booking won't import due to lack of data."
2188
+ msgstr ""
2189
+
2190
+ #: app/features/ix/import.php:57
2191
+ msgid "CSV File"
2192
+ msgstr ""
2193
+
2194
  #: app/features/ix/import_f_calendar.php:22
2195
  msgid "The Facebook SDK requires PHP version 5.4 or higher."
2196
  msgstr ""
2357
 
2358
  #: app/features/ix/sync.php:32 app/features/ix/sync.php:41
2359
  #: app/features/ix/sync.php:52 app/features/ix/sync.php:63
2360
+ #: app/features/mec/notifications.php:599
2361
  msgid "Important Note"
2362
  msgstr ""
2363
 
2526
  msgid "Featured"
2527
  msgstr ""
2528
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2529
  #: app/features/labels.php:120 app/features/labels.php:145
2530
  msgid "You can show featured and canceled events by a different style!"
2531
  msgstr ""
2548
 
2549
  #: app/features/locations.php:59 app/features/mec.php:463
2550
  #: app/features/mec/dashboard.php:273 app/features/mec/meta_boxes/filter.php:70
2551
+ #: app/features/mec/meta_boxes/filter.php:97 app/libraries/main.php:5921
2552
+ #: app/libraries/main.php:5969
2553
  msgid "Locations"
2554
  msgstr ""
2555
 
2675
  msgid "Don't show map in single event page"
2676
  msgstr ""
2677
 
2678
+ #: app/features/locations.php:396 app/libraries/main.php:5955
2679
+ #: app/libraries/main.php:6000
2680
  msgid "Other Locations"
2681
  msgstr ""
2682
 
2749
  #: app/features/mec.php:464 app/features/mec/dashboard.php:280
2750
  #: app/features/mec/meta_boxes/filter.php:71
2751
  #: app/features/mec/meta_boxes/filter.php:115 app/features/organizers.php:59
2752
+ #: app/libraries/main.php:5923 app/libraries/main.php:5971
2753
  msgid "Organizers"
2754
  msgstr ""
2755
 
2927
  msgstr ""
2928
 
2929
  #: app/features/mec/booking.php:78 app/features/mec/messages.php:13
2930
+ #: app/features/mec/modules.php:23 app/features/mec/notifications.php:12
2931
  #: app/features/mec/settings.php:34 app/features/mec/single.php:19
2932
  #: app/features/mec/styling.php:35
2933
  msgid "Search..."
2934
  msgstr ""
2935
 
2936
+ #: app/features/mec/booking.php:80 app/features/mec/booking.php:694
2937
+ #: app/features/mec/booking.php:766 app/features/mec/booking.php:775
2938
+ #: app/features/mec/booking.php:785 app/features/mec/booking.php:867
2939
+ #: app/features/mec/booking.php:881 app/features/mec/messages.php:15
2940
  #: app/features/mec/messages.php:51 app/features/mec/messages.php:60
2941
  #: app/features/mec/messages.php:94 app/features/mec/messages.php:103
2942
+ #: app/features/mec/modules.php:25 app/features/mec/modules.php:368
2943
+ #: app/features/mec/modules.php:378 app/features/mec/modules.php:420
2944
+ #: app/features/mec/modules.php:434 app/features/mec/notifications.php:14
 
2945
  #: app/features/mec/notifications.php:897
2946
+ #: app/features/mec/notifications.php:909
2947
+ #: app/features/mec/notifications.php:1007
2948
+ #: app/features/mec/notifications.php:1021 app/features/mec/settings.php:36
2949
  #: app/features/mec/settings.php:1111 app/features/mec/settings.php:1121
2950
  #: app/features/mec/settings.php:1179 app/features/mec/settings.php:1193
2951
  #: app/features/mec/single.php:21 app/features/mec/single.php:353
3146
  "starting the event!"
3147
  msgstr ""
3148
 
3149
+ #: app/features/mec/booking.php:171 app/features/mec/booking.php:185
3150
+ msgid "Cancellation Period"
3151
+ msgstr ""
3152
+
3153
+ #: app/features/mec/booking.php:173
3154
+ msgid "e.g 5"
3155
+ msgstr ""
3156
+
3157
+ #: app/features/mec/booking.php:174
3158
+ msgid "Period"
3159
+ msgstr ""
3160
+
3161
+ #: app/features/mec/booking.php:175
3162
+ msgid "Hour(s)"
3163
+ msgstr ""
3164
+
3165
+ #: app/features/mec/booking.php:176
3166
+ msgid "Day(s)"
3167
+ msgstr ""
3168
+
3169
+ #: app/features/mec/booking.php:178
3170
+ msgid "Type"
3171
+ msgstr ""
3172
+
3173
+ #: app/features/mec/booking.php:179
3174
+ msgid "Before"
3175
+ msgstr ""
3176
+
3177
+ #: app/features/mec/booking.php:182
3178
+ msgid "Event Start"
3179
+ msgstr ""
3180
+
3181
+ #: app/features/mec/booking.php:186
3182
+ msgid ""
3183
+ "You can restrict the ability to cancel bookings. Leave empty for "
3184
+ "cancellation at any time. For example if you insert 5 hours before event "
3185
+ "start then bookers are able to cancel their booking before this time and "
3186
+ "after that they're not able to do that."
3187
+ msgstr ""
3188
+
3189
+ #: app/features/mec/booking.php:193 app/features/mec/booking.php:203
3190
  #: app/features/mec/settings.php:639 app/features/mec/settings.php:649
3191
  msgid "Thank You Page"
3192
  msgstr ""
3193
 
3194
+ #: app/features/mec/booking.php:204
3195
  msgid ""
3196
  "User redirects to this page after booking. Leave it empty if you want to "
3197
  "disable it."
3198
  msgstr ""
3199
 
3200
+ #: app/features/mec/booking.php:211 app/features/mec/booking.php:216
3201
  #: app/features/mec/settings.php:659 app/features/mec/settings.php:664
3202
  msgid "Thank You Page Time Interval"
3203
  msgstr ""
3204
 
3205
+ #: app/features/mec/booking.php:213 app/features/mec/settings.php:661
3206
  msgid "2000 mean 2 seconds"
3207
  msgstr ""
3208
 
3209
+ #: app/features/mec/booking.php:217 app/features/mec/settings.php:665
3210
  msgid ""
3211
  "Waiting time before redirecting to thank you page. It's in miliseconds so "
3212
  "2000 means 2 seconds."
3213
  msgstr ""
3214
 
3215
+ #: app/features/mec/booking.php:224 app/features/mec/booking.php:234
3216
  msgid "User Role"
3217
  msgstr ""
3218
 
3219
+ #: app/features/mec/booking.php:235
3220
  msgid ""
3221
  "MEC creates a user for main attendee after each booking. Default role of the "
3222
  "user is subscriber but you can change it if needed."
3223
  msgstr ""
3224
 
3225
+ #: app/features/mec/booking.php:246
3226
  msgid "Enable Express Attendees Form"
3227
  msgstr ""
3228
 
3229
+ #: app/features/mec/booking.php:250
3230
  msgid "Attendees Form"
3231
  msgstr ""
3232
 
3233
+ #: app/features/mec/booking.php:251
3234
  msgid ""
3235
  "Apply the info from the first attendee to all purchased ticket by that user. "
3236
  "Uncheck if you want every ticket to have its own attendee’s info."
3237
  msgstr ""
3238
 
3239
+ #: app/features/mec/booking.php:264
3240
  msgid "Enable Invoice"
3241
  msgstr ""
3242
 
3243
+ #: app/features/mec/booking.php:275
3244
  msgid "Enable Booking for Ongoing Events"
3245
  msgstr ""
3246
 
3247
+ #: app/features/mec/booking.php:286
3248
  msgid "Enable Downloadable File"
3249
  msgstr ""
3250
 
3251
+ #: app/features/mec/booking.php:291
3252
  msgid ""
3253
  "By enabling this feature, You can upload a file for each event and bookers "
3254
  "are able to download it after booking."
3255
  msgstr ""
3256
 
3257
+ #: app/features/mec/booking.php:298
3258
  msgid "Email verification"
3259
  msgstr ""
3260
 
3261
+ #: app/features/mec/booking.php:304
3262
  msgid "Auto verification for free bookings"
3263
  msgstr ""
3264
 
3265
+ #: app/features/mec/booking.php:313
3266
  msgid "Auto verification for paid bookings"
3267
  msgstr ""
3268
 
3269
+ #: app/features/mec/booking.php:317 app/features/mec/notifications.php:249
3270
  #: app/features/notifications.php:144 app/libraries/main.php:590
3271
  msgid "Booking Confirmation"
3272
  msgstr ""
3273
 
3274
+ #: app/features/mec/booking.php:323
3275
  msgid "Auto confirmation for free bookings"
3276
  msgstr ""
3277
 
3278
+ #: app/features/mec/booking.php:332
3279
  msgid "Auto confirmation for paid bookings"
3280
  msgstr ""
3281
 
3282
+ #: app/features/mec/booking.php:341
3283
  msgid "Send confirmation email in auto confirmation mode"
3284
  msgstr ""
3285
 
3286
+ #: app/features/mec/booking.php:352 app/libraries/main.php:560
3287
  msgid "Booking Shortcode"
3288
  msgstr ""
3289
 
3290
+ #: app/features/mec/booking.php:360
3291
  #, php-format
3292
  msgid ""
3293
  "Booking module is available in the event details page but if you like to "
3296
  "into the page content and place the event id instead of 1."
3297
  msgstr ""
3298
 
3299
+ #: app/features/mec/booking.php:361
3300
  #, php-format
3301
  msgid ""
3302
  "Also, you can insert %s if you like to show only one of the available "
3304
  "This parameter is optional."
3305
  msgstr ""
3306
 
3307
+ #: app/features/mec/booking.php:376
3308
  msgid "Enable coupons module"
3309
  msgstr ""
3310
 
3311
+ #: app/features/mec/booking.php:378
3312
  msgid ""
3313
  "After enabling and saving the settings, you should reload the page to see a "
3314
  "new menu on the Dashboard > Booking"
3315
  msgstr ""
3316
 
3317
+ #: app/features/mec/booking.php:386 app/libraries/main.php:562
3318
  msgid "Taxes / Fees"
3319
  msgstr ""
3320
 
3321
+ #: app/features/mec/booking.php:394
3322
  msgid "Enable taxes / fees module"
3323
  msgstr ""
3324
 
3325
+ #: app/features/mec/booking.php:399
3326
  msgid "Add Fee"
3327
  msgstr ""
3328
 
3329
+ #: app/features/mec/booking.php:463 app/libraries/main.php:563
3330
  msgid "Ticket Variations & Options"
3331
  msgstr ""
3332
 
3333
+ #: app/features/mec/booking.php:471
3334
  msgid "Enable ticket options module"
3335
  msgstr ""
3336
 
3337
+ #: app/features/mec/booking.php:476
3338
  msgid "Add Variation / Option"
3339
  msgstr ""
3340
 
3341
+ #: app/features/mec/booking.php:753
3342
  msgid "Enable Organizer Payment Module"
3343
  msgstr ""
3344
 
3345
+ #: app/features/mec/booking.php:758
3346
  msgid ""
3347
  "By enabling this module, organizers are able to insert their own payment "
3348
  "credentials for enabled gateways per event and receive the payments directly!"
3349
  msgstr ""
3350
 
3351
+ #: app/features/mec/booking.php:845 app/features/mec/messages.php:78
3352
+ #: app/features/mec/modules.php:398 app/features/mec/notifications.php:985
3353
  #: app/features/mec/settings.php:1157 app/features/mec/single.php:383
3354
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:311
3355
  msgid "Saved"
3356
  msgstr ""
3357
 
3358
+ #: app/features/mec/booking.php:846 app/features/mec/messages.php:79
3359
+ #: app/features/mec/modules.php:399 app/features/mec/notifications.php:986
3360
  #: app/features/mec/settings.php:1158 app/features/mec/single.php:384
3361
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:312
3362
  msgid "Settings Saved!"
3363
  msgstr ""
3364
 
3365
+ #: app/features/mec/booking.php:872 app/features/mec/modules.php:425
3366
+ #: app/features/mec/notifications.php:1012 app/features/mec/settings.php:1184
 
 
 
 
 
 
 
 
 
3367
  #: app/features/mec/single.php:410
3368
  msgid "Please Refresh Page"
3369
  msgstr ""
4472
  #: app/features/mec/meta_boxes/search_form.php:782
4473
  #: app/features/mec/settings.php:904 app/features/mec/single.php:336
4474
  #: app/features/search.php:86 app/features/speakers.php:61
4475
+ #: app/features/speakers.php:269 app/libraries/main.php:5926
4476
+ #: app/libraries/main.php:5974 app/libraries/skins.php:1021
4477
  #: app/modules/speakers/details.php:18
4478
  msgid "Speaker"
4479
  msgstr ""
4490
  #: app/features/mec/meta_boxes/search_form.php:683
4491
  #: app/features/mec/meta_boxes/search_form.php:789
4492
  #: app/features/mec/settings.php:911 app/features/mec/single.php:345
4493
+ #: app/features/search.php:92 app/libraries/skins.php:1047
4494
  msgid "Tag"
4495
  msgstr ""
4496
 
4756
  msgid "Add booking activity to user profile"
4757
  msgstr ""
4758
 
4759
+ #: app/features/mec/notifications.php:38
 
 
 
 
 
 
 
 
4760
  msgid "Enable booking notification"
4761
  msgstr ""
4762
 
4763
+ #: app/features/mec/notifications.php:42
4764
  msgid "Sent to attendee after booking to notify them."
4765
  msgstr ""
4766
 
4767
+ #: app/features/mec/notifications.php:44 app/features/mec/notifications.php:150
4768
+ #: app/features/mec/notifications.php:260
4769
+ #: app/features/mec/notifications.php:375
4770
+ #: app/features/mec/notifications.php:491
4771
+ #: app/features/mec/notifications.php:602
4772
+ #: app/features/mec/notifications.php:728
4773
+ #: app/features/mec/notifications.php:812 app/features/mec/report.php:54
4774
  #: app/features/notifications.php:72
4775
  msgid "Email Subject"
4776
  msgstr ""
4777
 
4778
+ #: app/features/mec/notifications.php:50 app/features/mec/notifications.php:57
4779
+ #: app/features/mec/notifications.php:156
4780
+ #: app/features/mec/notifications.php:163
4781
+ #: app/features/mec/notifications.php:266
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4782
  #: app/features/mec/notifications.php:273
4783
+ #: app/features/mec/notifications.php:381
4784
  #: app/features/mec/notifications.php:388
4785
+ #: app/features/mec/notifications.php:497
4786
  #: app/features/mec/notifications.php:504
4787
+ #: app/features/mec/notifications.php:608
4788
  #: app/features/mec/notifications.php:615
4789
+ #: app/features/mec/notifications.php:734
4790
  #: app/features/mec/notifications.php:741
4791
+ #: app/features/mec/notifications.php:818
4792
  #: app/features/mec/notifications.php:825
4793
+ msgid "Receiver Users"
4794
  msgstr ""
4795
 
4796
+ #: app/features/mec/notifications.php:58 app/features/mec/notifications.php:164
4797
+ #: app/features/mec/notifications.php:274
4798
+ #: app/features/mec/notifications.php:389
4799
+ #: app/features/mec/notifications.php:505
4800
+ #: app/features/mec/notifications.php:616
4801
+ #: app/features/mec/notifications.php:742
4802
+ #: app/features/mec/notifications.php:826
4803
+ msgid "Select users to send a copy of email to them!"
 
 
 
 
 
 
 
 
4804
  msgstr ""
4805
 
4806
+ #: app/features/mec/notifications.php:67 app/features/mec/notifications.php:74
4807
+ #: app/features/mec/notifications.php:173
4808
+ #: app/features/mec/notifications.php:180
4809
+ #: app/features/mec/notifications.php:283
4810
  #: app/features/mec/notifications.php:290
4811
+ #: app/features/mec/notifications.php:398
4812
  #: app/features/mec/notifications.php:405
4813
+ #: app/features/mec/notifications.php:514
4814
  #: app/features/mec/notifications.php:521
4815
+ #: app/features/mec/notifications.php:625
4816
  #: app/features/mec/notifications.php:632
4817
+ #: app/features/mec/notifications.php:751
4818
  #: app/features/mec/notifications.php:758
4819
+ #: app/features/mec/notifications.php:835
4820
  #: app/features/mec/notifications.php:842
4821
+ msgid "Receiver Roles"
4822
  msgstr ""
4823
 
4824
+ #: app/features/mec/notifications.php:75 app/features/mec/notifications.php:181
4825
+ #: app/features/mec/notifications.php:291
4826
+ #: app/features/mec/notifications.php:406
4827
+ #: app/features/mec/notifications.php:522
4828
+ #: app/features/mec/notifications.php:633
4829
+ #: app/features/mec/notifications.php:759
4830
+ #: app/features/mec/notifications.php:843
4831
+ msgid "Select users a specific role."
 
 
 
 
 
 
 
 
4832
  msgstr ""
4833
 
4834
+ #: app/features/mec/notifications.php:83 app/features/mec/notifications.php:87
4835
+ #: app/features/mec/notifications.php:189
4836
+ #: app/features/mec/notifications.php:193
4837
+ #: app/features/mec/notifications.php:299
4838
  #: app/features/mec/notifications.php:303
4839
+ #: app/features/mec/notifications.php:414
4840
  #: app/features/mec/notifications.php:418
4841
+ #: app/features/mec/notifications.php:530
4842
  #: app/features/mec/notifications.php:534
4843
+ #: app/features/mec/notifications.php:641
4844
  #: app/features/mec/notifications.php:645
4845
+ #: app/features/mec/notifications.php:767
4846
  #: app/features/mec/notifications.php:771
4847
+ #: app/features/mec/notifications.php:851
4848
  #: app/features/mec/notifications.php:855
4849
+ msgid "Custom Recipients"
4850
+ msgstr ""
4851
+
4852
+ #: app/features/mec/notifications.php:88 app/features/mec/notifications.php:194
4853
+ #: app/features/mec/notifications.php:304
4854
+ #: app/features/mec/notifications.php:419
4855
+ #: app/features/mec/notifications.php:535
4856
+ #: app/features/mec/notifications.php:646
4857
+ #: app/features/mec/notifications.php:772
4858
+ #: app/features/mec/notifications.php:856
4859
  msgid "Insert comma separated emails for multiple recipients."
4860
  msgstr ""
4861
 
4862
+ #: app/features/mec/notifications.php:95 app/features/mec/notifications.php:430
4863
+ #: app/features/mec/notifications.php:542
4864
  msgid "Send the email to event organizer"
4865
  msgstr ""
4866
 
4867
+ #: app/features/mec/notifications.php:98 app/features/mec/notifications.php:200
4868
+ #: app/features/mec/notifications.php:314
4869
+ #: app/features/mec/notifications.php:437
4870
+ #: app/features/mec/notifications.php:545
4871
+ #: app/features/mec/notifications.php:663
4872
+ #: app/features/mec/notifications.php:778
4873
+ #: app/features/mec/notifications.php:862 app/features/notifications.php:80
4874
  msgid "Email Content"
4875
  msgstr ""
4876
 
4877
+ #: app/features/mec/notifications.php:101
4878
+ #: app/features/mec/notifications.php:203
4879
+ #: app/features/mec/notifications.php:317
4880
+ #: app/features/mec/notifications.php:440
4881
+ #: app/features/mec/notifications.php:548
4882
+ #: app/features/mec/notifications.php:666
4883
+ #: app/features/mec/notifications.php:781
4884
+ #: app/features/mec/notifications.php:865 app/features/mec/report.php:56
4885
  msgid "You can use the following placeholders"
4886
  msgstr ""
4887
 
 
 
 
 
 
 
 
 
 
4888
  #: app/features/mec/notifications.php:103
4889
  #: app/features/mec/notifications.php:205
4890
  #: app/features/mec/notifications.php:319
4891
  #: app/features/mec/notifications.php:442
4892
  #: app/features/mec/notifications.php:550
4893
+ #: app/features/mec/notifications.php:668 app/features/notifications.php:91
4894
+ msgid "First name of attendee"
4895
  msgstr ""
4896
 
4897
  #: app/features/mec/notifications.php:104
4899
  #: app/features/mec/notifications.php:320
4900
  #: app/features/mec/notifications.php:443
4901
  #: app/features/mec/notifications.php:551
4902
+ #: app/features/mec/notifications.php:669 app/features/notifications.php:92
4903
+ msgid "Last name of attendee"
4904
  msgstr ""
4905
 
4906
  #: app/features/mec/notifications.php:105
4908
  #: app/features/mec/notifications.php:321
4909
  #: app/features/mec/notifications.php:444
4910
  #: app/features/mec/notifications.php:552
4911
+ #: app/features/mec/notifications.php:670 app/features/notifications.php:93
4912
+ msgid "Email of attendee"
4913
  msgstr ""
4914
 
4915
  #: app/features/mec/notifications.php:106
4917
  #: app/features/mec/notifications.php:322
4918
  #: app/features/mec/notifications.php:445
4919
  #: app/features/mec/notifications.php:553
4920
+ #: app/features/mec/notifications.php:671 app/features/notifications.php:94
4921
+ msgid "Booked date of event"
4922
  msgstr ""
4923
 
4924
  #: app/features/mec/notifications.php:107
4926
  #: app/features/mec/notifications.php:323
4927
  #: app/features/mec/notifications.php:446
4928
  #: app/features/mec/notifications.php:554
4929
+ #: app/features/mec/notifications.php:672 app/features/notifications.php:95
4930
+ msgid "Booked time of event"
4931
  msgstr ""
4932
 
4933
  #: app/features/mec/notifications.php:108
4935
  #: app/features/mec/notifications.php:324
4936
  #: app/features/mec/notifications.php:447
4937
  #: app/features/mec/notifications.php:555
4938
+ #: app/features/mec/notifications.php:673 app/features/notifications.php:96
4939
+ msgid "Booked date and time of event"
4940
  msgstr ""
4941
 
4942
  #: app/features/mec/notifications.php:109
4944
  #: app/features/mec/notifications.php:325
4945
  #: app/features/mec/notifications.php:448
4946
  #: app/features/mec/notifications.php:556
4947
+ #: app/features/mec/notifications.php:674 app/features/notifications.php:97
4948
+ msgid "Booking Price"
4949
  msgstr ""
4950
 
4951
  #: app/features/mec/notifications.php:110
4953
  #: app/features/mec/notifications.php:326
4954
  #: app/features/mec/notifications.php:449
4955
  #: app/features/mec/notifications.php:557
4956
+ #: app/features/mec/notifications.php:675 app/features/notifications.php:98
4957
+ msgid "Date and time of booking"
 
 
4958
  msgstr ""
4959
 
4960
  #: app/features/mec/notifications.php:111
4964
  #: app/features/mec/notifications.php:558
4965
  #: app/features/mec/notifications.php:676
4966
  #: app/features/mec/notifications.php:789
4967
+ #: app/features/mec/notifications.php:873 app/features/notifications.php:99
4968
+ msgid "Your website title"
4969
  msgstr ""
4970
 
4971
  #: app/features/mec/notifications.php:112
4975
  #: app/features/mec/notifications.php:559
4976
  #: app/features/mec/notifications.php:677
4977
  #: app/features/mec/notifications.php:790
4978
+ #: app/features/mec/notifications.php:874 app/features/notifications.php:100
4979
+ msgid "Your website URL"
4980
  msgstr ""
4981
 
4982
  #: app/features/mec/notifications.php:113
4984
  #: app/features/mec/notifications.php:329
4985
  #: app/features/mec/notifications.php:452
4986
  #: app/features/mec/notifications.php:560
4987
+ #: app/features/mec/notifications.php:678
4988
+ #: app/features/mec/notifications.php:791
4989
+ #: app/features/mec/notifications.php:875 app/features/notifications.php:101
4990
+ msgid "Your website description"
4991
  msgstr ""
4992
 
4993
  #: app/features/mec/notifications.php:114
4995
  #: app/features/mec/notifications.php:330
4996
  #: app/features/mec/notifications.php:453
4997
  #: app/features/mec/notifications.php:561
4998
+ #: app/features/mec/notifications.php:679 app/features/notifications.php:102
4999
+ msgid "Event title"
5000
  msgstr ""
5001
 
5002
  #: app/features/mec/notifications.php:115
5003
  #: app/features/mec/notifications.php:217
5004
  #: app/features/mec/notifications.php:331
5005
+ #: app/features/mec/notifications.php:454
5006
+ #: app/features/mec/notifications.php:562
5007
+ #: app/features/mec/notifications.php:680 app/features/notifications.php:103
5008
+ msgid "Event link"
5009
  msgstr ""
5010
 
5011
  #: app/features/mec/notifications.php:116
5012
  #: app/features/mec/notifications.php:218
5013
  #: app/features/mec/notifications.php:332
5014
  #: app/features/mec/notifications.php:785
5015
+ #: app/features/mec/notifications.php:869 app/features/notifications.php:124
5016
+ msgid "Event Start Date"
5017
  msgstr ""
5018
 
5019
  #: app/features/mec/notifications.php:117
5020
  #: app/features/mec/notifications.php:219
5021
  #: app/features/mec/notifications.php:333
5022
+ #: app/features/mec/notifications.php:786
5023
+ #: app/features/mec/notifications.php:870 app/features/notifications.php:125
5024
+ msgid "Event End Date"
 
5025
  msgstr ""
5026
 
5027
  #: app/features/mec/notifications.php:118
5029
  #: app/features/mec/notifications.php:334
5030
  #: app/features/mec/notifications.php:455
5031
  #: app/features/mec/notifications.php:563
5032
+ #: app/features/mec/notifications.php:681 app/features/notifications.php:104
5033
+ msgid "Speaker name of booked event"
5034
  msgstr ""
5035
 
5036
  #: app/features/mec/notifications.php:119
5038
  #: app/features/mec/notifications.php:335
5039
  #: app/features/mec/notifications.php:456
5040
  #: app/features/mec/notifications.php:564
5041
+ #: app/features/mec/notifications.php:682 app/features/notifications.php:105
5042
+ msgid "Organizer name of booked event"
5043
  msgstr ""
5044
 
5045
  #: app/features/mec/notifications.php:120
5047
  #: app/features/mec/notifications.php:336
5048
  #: app/features/mec/notifications.php:457
5049
  #: app/features/mec/notifications.php:565
5050
+ #: app/features/mec/notifications.php:683 app/features/notifications.php:106
5051
+ msgid "Organizer tel of booked event"
5052
  msgstr ""
5053
 
5054
  #: app/features/mec/notifications.php:121
5056
  #: app/features/mec/notifications.php:337
5057
  #: app/features/mec/notifications.php:458
5058
  #: app/features/mec/notifications.php:566
5059
+ #: app/features/mec/notifications.php:684 app/features/notifications.php:107
5060
+ msgid "Organizer email of booked event"
5061
  msgstr ""
5062
 
5063
  #: app/features/mec/notifications.php:122
5065
  #: app/features/mec/notifications.php:338
5066
  #: app/features/mec/notifications.php:459
5067
  #: app/features/mec/notifications.php:567
5068
+ #: app/features/mec/notifications.php:685 app/features/notifications.php:108
5069
+ msgid "Location name of booked event"
5070
  msgstr ""
5071
 
5072
  #: app/features/mec/notifications.php:123
5074
  #: app/features/mec/notifications.php:339
5075
  #: app/features/mec/notifications.php:460
5076
  #: app/features/mec/notifications.php:568
5077
+ #: app/features/mec/notifications.php:686 app/features/notifications.php:109
5078
+ msgid "Location address of booked event"
5079
  msgstr ""
5080
 
5081
  #: app/features/mec/notifications.php:124
5083
  #: app/features/mec/notifications.php:340
5084
  #: app/features/mec/notifications.php:461
5085
  #: app/features/mec/notifications.php:569
5086
+ #: app/features/mec/notifications.php:687 app/features/notifications.php:110
5087
+ msgid "Additional locations name of booked event"
5088
  msgstr ""
5089
 
5090
  #: app/features/mec/notifications.php:125
5092
  #: app/features/mec/notifications.php:341
5093
  #: app/features/mec/notifications.php:462
5094
  #: app/features/mec/notifications.php:570
5095
+ #: app/features/mec/notifications.php:688 app/features/notifications.php:111
5096
+ msgid "Additional locations address of booked event"
5097
  msgstr ""
5098
 
5099
  #: app/features/mec/notifications.php:126
5101
  #: app/features/mec/notifications.php:342
5102
  #: app/features/mec/notifications.php:463
5103
  #: app/features/mec/notifications.php:571
5104
+ #: app/features/mec/notifications.php:689 app/features/notifications.php:112
5105
+ msgid "Featured image of booked event"
5106
  msgstr ""
5107
 
5108
  #: app/features/mec/notifications.php:127
5110
  #: app/features/mec/notifications.php:343
5111
  #: app/features/mec/notifications.php:464
5112
  #: app/features/mec/notifications.php:572
5113
+ #: app/features/mec/notifications.php:690 app/features/notifications.php:113
5114
+ msgid "Full Attendee info such as booking form data, name, email etc."
5115
  msgstr ""
5116
 
5117
  #: app/features/mec/notifications.php:128
5119
  #: app/features/mec/notifications.php:344
5120
  #: app/features/mec/notifications.php:465
5121
  #: app/features/mec/notifications.php:573
5122
+ #: app/features/mec/notifications.php:691 app/features/notifications.php:114
5123
+ msgid "Booking ID"
5124
  msgstr ""
5125
 
5126
  #: app/features/mec/notifications.php:129
5127
+ #: app/features/mec/notifications.php:231
5128
+ #: app/features/mec/notifications.php:345
5129
+ #: app/features/mec/notifications.php:466
5130
+ #: app/features/mec/notifications.php:574
5131
+ #: app/features/mec/notifications.php:692 app/features/notifications.php:115
5132
+ msgid "Transaction ID of Booking"
5133
  msgstr ""
5134
 
5135
  #: app/features/mec/notifications.php:130
 
5136
  #: app/features/mec/notifications.php:347
5137
+ #: app/features/mec/notifications.php:694
5138
+ msgid "Invoice Link"
 
 
5139
  msgstr ""
5140
 
5141
  #: app/features/mec/notifications.php:131
5143
  #: app/features/mec/notifications.php:348
5144
  #: app/features/mec/notifications.php:468
5145
  #: app/features/mec/notifications.php:576
5146
+ #: app/features/mec/notifications.php:695 app/features/notifications.php:117
5147
+ msgid "Total attendees of current booking"
5148
  msgstr ""
5149
 
5150
  #: app/features/mec/notifications.php:132
5152
  #: app/features/mec/notifications.php:349
5153
  #: app/features/mec/notifications.php:469
5154
  #: app/features/mec/notifications.php:577
5155
+ #: app/features/mec/notifications.php:696 app/features/notifications.php:118
5156
+ msgid "Amount of Booked Tickets (Total attendees of all bookings)"
5157
  msgstr ""
5158
 
5159
  #: app/features/mec/notifications.php:133
5161
  #: app/features/mec/notifications.php:350
5162
  #: app/features/mec/notifications.php:470
5163
  #: app/features/mec/notifications.php:578
5164
+ #: app/features/mec/notifications.php:697 app/features/notifications.php:119
5165
+ msgid "Ticket name"
5166
  msgstr ""
5167
 
5168
  #: app/features/mec/notifications.php:134
5170
  #: app/features/mec/notifications.php:351
5171
  #: app/features/mec/notifications.php:471
5172
  #: app/features/mec/notifications.php:579
5173
+ #: app/features/mec/notifications.php:698 app/features/notifications.php:120
5174
+ msgid "Ticket time"
5175
  msgstr ""
5176
 
5177
  #: app/features/mec/notifications.php:135
5179
  #: app/features/mec/notifications.php:352
5180
  #: app/features/mec/notifications.php:472
5181
  #: app/features/mec/notifications.php:580
5182
+ #: app/features/mec/notifications.php:699 app/features/notifications.php:121
5183
+ msgid "Ticket name & time"
5184
  msgstr ""
5185
 
5186
  #: app/features/mec/notifications.php:136
5188
  #: app/features/mec/notifications.php:353
5189
  #: app/features/mec/notifications.php:473
5190
  #: app/features/mec/notifications.php:581
5191
+ #: app/features/mec/notifications.php:700 app/features/notifications.php:122
5192
+ msgid "Payment Gateway"
5193
  msgstr ""
5194
 
5195
  #: app/features/mec/notifications.php:137
5196
  #: app/features/mec/notifications.php:239
5197
  #: app/features/mec/notifications.php:354
5198
+ #: app/features/mec/notifications.php:474
5199
+ #: app/features/mec/notifications.php:582
5200
+ #: app/features/mec/notifications.php:701 app/features/notifications.php:123
5201
+ msgid "Link to the downloadable file"
5202
+ msgstr ""
5203
+
5204
+ #: app/features/mec/notifications.php:138
5205
+ #: app/features/mec/notifications.php:240
5206
+ #: app/features/mec/notifications.php:355
5207
+ #: app/features/mec/notifications.php:702
5208
  msgid "Download ICS file"
5209
  msgstr ""
5210
 
5211
+ #: app/features/mec/notifications.php:147 app/libraries/main.php:589
5212
  msgid "Booking Verification"
5213
  msgstr ""
5214
 
5215
+ #: app/features/mec/notifications.php:148
5216
  msgid "It sends to attendee email for verifying their booking/email."
5217
  msgstr ""
5218
 
5219
+ #: app/features/mec/notifications.php:232
5220
  msgid "Email/Booking verification link."
5221
  msgstr ""
5222
 
5223
+ #: app/features/mec/notifications.php:253
5224
  msgid "Enable booking confirmation"
5225
  msgstr ""
5226
 
5227
+ #: app/features/mec/notifications.php:258
5228
  msgid "Sent to attendee after confirming the booking by admin."
5229
  msgstr ""
5230
 
5231
+ #: app/features/mec/notifications.php:311
5232
  msgid "Send One Single Email Only To First Attendee"
5233
  msgstr ""
5234
 
5235
+ #: app/features/mec/notifications.php:346
5236
+ #: app/features/mec/notifications.php:693
5237
  msgid "Booking cancellation link."
5238
  msgstr ""
5239
 
5240
+ #: app/features/mec/notifications.php:365 app/features/notifications.php:147
5241
  #: app/libraries/main.php:591
5242
  msgid "Booking Cancellation"
5243
  msgstr ""
5244
 
5245
+ #: app/features/mec/notifications.php:369
5246
  msgid "Enable cancellation notification"
5247
  msgstr ""
5248
 
5249
+ #: app/features/mec/notifications.php:373
5250
  msgid "Sent to selected recipients after booking cancellation to notify them."
5251
  msgstr ""
5252
 
5253
+ #: app/features/mec/notifications.php:426
5254
+ #: app/features/mec/notifications.php:723
5255
  msgid "Send the email to admin"
5256
  msgstr ""
5257
 
5258
+ #: app/features/mec/notifications.php:434
5259
  msgid "Send the email to the booked user"
5260
  msgstr ""
5261
 
5262
+ #: app/features/mec/notifications.php:467
5263
+ #: app/features/mec/notifications.php:575 app/features/notifications.php:116
5264
  msgid "Admin booking management link."
5265
  msgstr ""
5266
 
5267
+ #: app/features/mec/notifications.php:481 app/libraries/main.php:593
5268
  msgid "Admin"
5269
  msgstr ""
5270
 
5271
+ #: app/features/mec/notifications.php:485
5272
  msgid "Enable admin notification"
5273
  msgstr ""
5274
 
5275
+ #: app/features/mec/notifications.php:489
5276
  msgid "Sent to admin to notify them that a new booking has been received."
5277
  msgstr ""
5278
 
5279
+ #: app/features/mec/notifications.php:589 app/features/notifications.php:153
5280
+ #: app/libraries/main.php:592 app/libraries/notifications.php:585
5281
  msgid "Booking Reminder"
5282
  msgstr ""
5283
 
5284
+ #: app/features/mec/notifications.php:593
5285
  msgid "Enable booking reminder notification"
5286
  msgstr ""
5287
 
5288
+ #: app/features/mec/notifications.php:599
5289
  #, php-format
5290
  msgid ""
5291
  "Set a cronjob to call %s file once per hour otherwise it won't send the "
5293
  "send the reminders multiple times."
5294
  msgstr ""
5295
 
5296
+ #: app/features/mec/notifications.php:599
5297
  msgid "only once per hour"
5298
  msgstr ""
5299
 
5300
+ #: app/features/mec/notifications.php:652 app/libraries/main.php:6980
5301
+ #: app/libraries/main.php:6997
5302
  msgid "Hours"
5303
  msgstr ""
5304
 
5305
+ #: app/features/mec/notifications.php:656
5306
  msgid "Reminder hours"
5307
  msgstr ""
5308
 
5309
+ #: app/features/mec/notifications.php:657
5310
  msgid "Please, insert comma to separate reminder hours."
5311
  msgstr ""
5312
 
5313
+ #: app/features/mec/notifications.php:712 app/features/popup/event.php:253
5314
  #: app/libraries/main.php:581
5315
  msgid "New Event"
5316
  msgstr ""
5317
 
5318
+ #: app/features/mec/notifications.php:716
5319
  msgid "Enable new event notification"
5320
  msgstr ""
5321
 
5322
+ #: app/features/mec/notifications.php:726
5323
  msgid ""
5324
  "Sent after adding a new event from frontend event submission or from website "
5325
  "backend."
5326
  msgstr ""
5327
 
5328
+ #: app/features/mec/notifications.php:783
5329
+ #: app/features/mec/notifications.php:867
5330
  msgid "Title of event"
5331
  msgstr ""
5332
 
5333
+ #: app/features/mec/notifications.php:784
5334
+ #: app/features/mec/notifications.php:868
5335
  msgid "Link of event"
5336
  msgstr ""
5337
 
5338
+ #: app/features/mec/notifications.php:787
5339
+ #: app/features/mec/notifications.php:871 app/features/notifications.php:126
5340
  msgid "Status of event"
5341
  msgstr ""
5342
 
5343
+ #: app/features/mec/notifications.php:788
5344
+ #: app/features/mec/notifications.php:872 app/features/mec/settings.php:819
5345
  #: app/features/mec/settings.php:823 app/features/notifications.php:127
5346
  msgid "Event Note"
5347
  msgstr ""
5348
 
5349
+ #: app/features/mec/notifications.php:792
5350
+ #: app/features/mec/notifications.php:876
5351
  msgid "Admin events management link."
5352
  msgstr ""
5353
 
5354
+ #: app/features/mec/notifications.php:802 app/libraries/main.php:582
5355
  msgid "User Event Publishing"
5356
  msgstr ""
5357
 
5358
+ #: app/features/mec/notifications.php:806
5359
  msgid "Enable user event publishing notification"
5360
  msgstr ""
5361
 
5362
+ #: app/features/mec/notifications.php:810
5363
  msgid ""
5364
  "Sent after publishing a new event from frontend event submission or from "
5365
  "website backend."
5366
  msgstr ""
5367
 
5368
+ #: app/features/mec/notifications.php:884 app/libraries/main.php:596
5369
+ msgid "Notifications Per Event"
5370
+ msgstr ""
5371
+
5372
+ #: app/features/mec/notifications.php:888
5373
+ msgid "Edit Notifications Per Event"
5374
+ msgstr ""
5375
+
5376
  #: app/features/mec/report.php:15
5377
  msgid "Booking Report"
5378
  msgstr ""
5526
  msgstr ""
5527
 
5528
  #: app/features/mec/settings.php:157 app/features/mec/settings.php:167
5529
+ #: app/libraries/main.php:5930 app/libraries/main.php:5978
5530
  msgid "Weekdays"
5531
  msgstr ""
5532
 
6145
  msgid "Custom Fields"
6146
  msgstr ""
6147
 
6148
+ #: app/features/mec/single.php:184 app/libraries/main.php:3213
6149
  msgid "URL"
6150
  msgstr ""
6151
 
6825
  msgid "eg. https://webnus.net"
6826
  msgstr ""
6827
 
6828
+ #: app/features/organizers.php:312 app/libraries/main.php:5954
6829
+ #: app/libraries/main.php:5999 app/skins/single.php:1147
6830
  msgid "Other Organizers"
6831
  msgstr ""
6832
 
6980
  msgid "#"
6981
  msgstr ""
6982
 
6983
+ #: app/features/profile/profile.php:61 app/libraries/main.php:3545
6984
  msgid "Status"
6985
  msgstr ""
6986
 
6987
+ #: app/features/profile/profile.php:64 app/libraries/main.php:2521
6988
  msgid "Attendees"
6989
  msgstr ""
6990
 
7093
  msgid "No search result."
7094
  msgstr ""
7095
 
7096
+ #: app/features/search_bar/search_result.php:12 app/libraries/main.php:5956
7097
+ #: app/libraries/main.php:6001 app/libraries/notifications.php:990
7098
+ #: app/libraries/render.php:518 app/libraries/render.php:838
7099
  #: app/modules/local-time/details.php:48 app/modules/local-time/type1.php:45
7100
  #: app/modules/local-time/type2.php:47 app/modules/local-time/type3.php:45
7101
+ #: app/modules/next-event/details.php:145 app/skins/single.php:1039
7102
  #: app/skins/single/default.php:125 app/skins/single/default.php:359
7103
  #: app/skins/single/m1.php:47 app/skins/single/modern.php:222
7104
  msgid "All Day"
7306
  msgid "Timeline View"
7307
  msgstr ""
7308
 
7309
+ #: app/libraries/main.php:385 app/libraries/main.php:5932
7310
+ #: app/libraries/main.php:5980
7311
  msgid "SU"
7312
  msgstr ""
7313
 
7314
+ #: app/libraries/main.php:386 app/libraries/main.php:5933
7315
+ #: app/libraries/main.php:5981
7316
  msgid "MO"
7317
  msgstr ""
7318
 
7319
+ #: app/libraries/main.php:387 app/libraries/main.php:5934
7320
+ #: app/libraries/main.php:5982
7321
  msgid "TU"
7322
  msgstr ""
7323
 
7324
+ #: app/libraries/main.php:388 app/libraries/main.php:5935
7325
+ #: app/libraries/main.php:5983
7326
  msgid "WE"
7327
  msgstr ""
7328
 
7329
+ #: app/libraries/main.php:389 app/libraries/main.php:5936
7330
+ #: app/libraries/main.php:5984
7331
  msgid "TH"
7332
  msgstr ""
7333
 
7334
+ #: app/libraries/main.php:390 app/libraries/main.php:5937
7335
+ #: app/libraries/main.php:5985
7336
  msgid "FR"
7337
  msgstr ""
7338
 
7339
+ #: app/libraries/main.php:391 app/libraries/main.php:5938
7340
+ #: app/libraries/main.php:5986
7341
  msgid "SA"
7342
  msgstr ""
7343
 
7500
  msgid "Your booking cannot verify!"
7501
  msgstr ""
7502
 
7503
+ #: app/libraries/main.php:2334
7504
+ msgid "The event is already finished!"
7505
+ msgstr ""
7506
+
7507
+ #: app/libraries/main.php:2352
7508
+ msgid "The cancelation window is passed."
7509
+ msgstr ""
7510
+
7511
+ #: app/libraries/main.php:2358
7512
  msgid "Your booking successfully canceled."
7513
  msgstr ""
7514
 
7515
+ #: app/libraries/main.php:2359
7516
  msgid "Your booking cannot be canceled."
7517
  msgstr ""
7518
 
7519
+ #: app/libraries/main.php:2363
7520
  msgid "You canceled the payment successfully."
7521
  msgstr ""
7522
 
7523
+ #: app/libraries/main.php:2367
7524
  msgid "You returned from payment gateway successfully."
7525
  msgstr ""
7526
 
7527
+ #: app/libraries/main.php:2386
7528
  msgid "Cannot find the invoice!"
7529
  msgstr ""
7530
 
7531
+ #: app/libraries/main.php:2386
7532
  msgid "Invoice is invalid."
7533
  msgstr ""
7534
 
7535
+ #: app/libraries/main.php:2406
7536
  msgid ""
7537
  "Your booking still is not confirmed. You can download it after confirmation!"
7538
  msgstr ""
7539
 
7540
+ #: app/libraries/main.php:2406
7541
  msgid "Booking Not Confirmed."
7542
  msgstr ""
7543
 
7544
+ #: app/libraries/main.php:2412
7545
  msgid "Cannot find the booking!"
7546
  msgstr ""
7547
 
7548
+ #: app/libraries/main.php:2412
7549
  msgid "Booking is invalid."
7550
  msgstr ""
7551
 
7552
+ #: app/libraries/main.php:2445
7553
  #, php-format
7554
  msgid "%s Invoice"
7555
  msgstr ""
7556
 
7557
+ #: app/libraries/main.php:2478
7558
  msgid "Date & Time"
7559
  msgstr ""
7560
 
7561
+ #: app/libraries/main.php:2495
7562
  msgid "Booking Fields"
7563
  msgstr ""
7564
 
7565
+ #: app/libraries/main.php:2567
7566
  msgid "Billing"
7567
  msgstr ""
7568
 
7569
+ #: app/libraries/main.php:2579
7570
  msgid "Coupon Code"
7571
  msgstr ""
7572
 
7573
+ #: app/libraries/main.php:2584
7574
  msgid "Total"
7575
  msgstr ""
7576
 
7577
+ #: app/libraries/main.php:2591
7578
  msgid "Payment"
7579
  msgstr ""
7580
 
7581
+ #: app/libraries/main.php:2595
7582
  msgid "Gateway"
7583
  msgstr ""
7584
 
7585
+ #: app/libraries/main.php:2608
7586
  msgid "Payment Time"
7587
  msgstr ""
7588
 
7589
+ #: app/libraries/main.php:2750
7590
  msgid "Request is not valid."
7591
  msgstr ""
7592
 
7593
+ #: app/libraries/main.php:2750
7594
  msgid "iCal export stopped!"
7595
  msgstr ""
7596
 
7597
+ #: app/libraries/main.php:3096 app/libraries/main.php:3125
7598
+ #: app/libraries/main.php:3154 app/libraries/main.php:3183
7599
+ #: app/libraries/main.php:3212 app/libraries/main.php:3241
7600
+ #: app/libraries/main.php:3270 app/libraries/main.php:3299
7601
+ #: app/libraries/main.php:3328 app/libraries/main.php:3357
7602
+ #: app/libraries/main.php:3380 app/libraries/main.php:3426
7603
+ #: app/libraries/main.php:3472 app/libraries/main.php:3521
7604
+ #: app/libraries/main.php:3570
7605
  msgid "Sort"
7606
  msgstr ""
7607
 
7608
+ #: app/libraries/main.php:3103 app/libraries/main.php:3132
7609
+ #: app/libraries/main.php:3161 app/libraries/main.php:3190
7610
+ #: app/libraries/main.php:3219 app/libraries/main.php:3248
7611
+ #: app/libraries/main.php:3277 app/libraries/main.php:3306
7612
+ #: app/libraries/main.php:3335 app/libraries/main.php:3387
7613
+ #: app/libraries/main.php:3433 app/libraries/main.php:3479
7614
+ #: app/libraries/main.php:3528
7615
  msgid "Required Field"
7616
  msgstr ""
7617
 
7618
+ #: app/libraries/main.php:3109 app/libraries/main.php:3138
7619
+ #: app/libraries/main.php:3167 app/libraries/main.php:3196
7620
+ #: app/libraries/main.php:3225 app/libraries/main.php:3254
7621
+ #: app/libraries/main.php:3283 app/libraries/main.php:3312
7622
+ #: app/libraries/main.php:3341 app/libraries/main.php:3393
7623
+ #: app/libraries/main.php:3439 app/libraries/main.php:3485
7624
+ #: app/libraries/main.php:3534
7625
  msgid "Insert a label for this field"
7626
  msgstr ""
7627
 
7628
+ #: app/libraries/main.php:3363
7629
  msgid "HTML and shortcode are allowed."
7630
  msgstr ""
7631
 
7632
+ #: app/libraries/main.php:3406 app/libraries/main.php:3452
7633
+ #: app/libraries/main.php:3498
7634
  msgid "Option"
7635
  msgstr ""
7636
 
7637
+ #: app/libraries/main.php:3534
7638
  #, php-format
7639
  msgid "Instead of %s, the page title with a link will be show."
7640
  msgstr ""
7641
 
7642
+ #: app/libraries/main.php:3536
7643
  msgid "Agreement Page"
7644
  msgstr ""
7645
 
7646
+ #: app/libraries/main.php:3547
7647
  msgid "Checked by default"
7648
  msgstr ""
7649
 
7650
+ #: app/libraries/main.php:3548
7651
  msgid "Unchecked by default"
7652
  msgstr ""
7653
 
7654
+ #: app/libraries/main.php:3572
7655
  msgid "Insert a label for this option"
7656
  msgstr ""
7657
 
7658
+ #: app/libraries/main.php:3585
7659
  msgid "Free"
7660
  msgstr ""
7661
 
7662
+ #: app/libraries/main.php:4214 app/libraries/main.php:6250
7663
  msgid "M.E. Calender"
7664
  msgstr ""
7665
 
7666
+ #: app/libraries/main.php:4370
7667
  #, php-format
7668
  msgid "Copy of %s"
7669
  msgstr ""
7670
 
7671
+ #: app/libraries/main.php:5188
7672
  msgid "Booked an event."
7673
  msgstr ""
7674
 
7675
+ #: app/libraries/main.php:5229
7676
  #, php-format
7677
  msgid "%s booked %s event."
7678
  msgstr ""
7679
 
7680
+ #: app/libraries/main.php:5915 app/libraries/main.php:5963
7681
  msgid "Taxonomies"
7682
  msgstr ""
7683
 
7684
+ #: app/libraries/main.php:5917 app/libraries/main.php:5965
7685
  msgid "Category Plural Label"
7686
  msgstr ""
7687
 
7688
+ #: app/libraries/main.php:5918 app/libraries/main.php:5966
7689
  msgid "Category Singular Label"
7690
  msgstr ""
7691
 
7692
+ #: app/libraries/main.php:5919 app/libraries/main.php:5967
7693
  msgid "Label Plural Label"
7694
  msgstr ""
7695
 
7696
+ #: app/libraries/main.php:5920 app/libraries/main.php:5968
7697
  msgid "Label Singular Label"
7698
  msgstr ""
7699
 
7700
+ #: app/libraries/main.php:5920 app/libraries/main.php:5968
7701
  msgid "label"
7702
  msgstr ""
7703
 
7704
+ #: app/libraries/main.php:5921 app/libraries/main.php:5969
7705
  msgid "Location Plural Label"
7706
  msgstr ""
7707
 
7708
+ #: app/libraries/main.php:5922 app/libraries/main.php:5970
7709
  msgid "Location Singular Label"
7710
  msgstr ""
7711
 
7712
+ #: app/libraries/main.php:5923 app/libraries/main.php:5971
7713
  msgid "Organizer Plural Label"
7714
  msgstr ""
7715
 
7716
+ #: app/libraries/main.php:5924 app/libraries/main.php:5972
7717
  msgid "Organizer Singular Label"
7718
  msgstr ""
7719
 
7720
+ #: app/libraries/main.php:5925 app/libraries/main.php:5973
7721
  msgid "Speaker Plural Label"
7722
  msgstr ""
7723
 
7724
+ #: app/libraries/main.php:5926 app/libraries/main.php:5974
7725
  msgid "Speaker Singular Label"
7726
  msgstr ""
7727
 
7728
+ #: app/libraries/main.php:5932 app/libraries/main.php:5980
7729
  msgid "Sunday abbreviation"
7730
  msgstr ""
7731
 
7732
+ #: app/libraries/main.php:5933 app/libraries/main.php:5981
7733
  msgid "Monday abbreviation"
7734
  msgstr ""
7735
 
7736
+ #: app/libraries/main.php:5934 app/libraries/main.php:5982
7737
  msgid "Tuesday abbreviation"
7738
  msgstr ""
7739
 
7740
+ #: app/libraries/main.php:5935 app/libraries/main.php:5983
7741
  msgid "Wednesday abbreviation"
7742
  msgstr ""
7743
 
7744
+ #: app/libraries/main.php:5936 app/libraries/main.php:5984
7745
  msgid "Thursday abbreviation"
7746
  msgstr ""
7747
 
7748
+ #: app/libraries/main.php:5937 app/libraries/main.php:5985
7749
  msgid "Friday abbreviation"
7750
  msgstr ""
7751
 
7752
+ #: app/libraries/main.php:5938 app/libraries/main.php:5986
7753
  msgid "Saturday abbreviation"
7754
  msgstr ""
7755
 
7756
+ #: app/libraries/main.php:5942 app/libraries/main.php:5990
7757
  msgid "Others"
7758
  msgstr ""
7759
 
7760
+ #: app/libraries/main.php:5944
7761
  msgid "Booking Success Message"
7762
  msgstr ""
7763
 
7764
+ #: app/libraries/main.php:5944
7765
  msgid ""
7766
  "Thanks you for booking. Your tickets are booked, booking verification might "
7767
  "be needed, please check your email."
7768
  msgstr ""
7769
 
7770
+ #: app/libraries/main.php:5945 app/libraries/main.php:5992
7771
  #: app/widgets/single.php:131
7772
  msgid "Register Button"
7773
  msgstr ""
7774
 
7775
+ #: app/libraries/main.php:5945 app/libraries/main.php:5992
7776
  #: app/skins/available_spot/tpl.php:210 app/skins/carousel/render.php:110
7777
  #: app/skins/carousel/render.php:150 app/skins/grid/render.php:98
7778
  #: app/skins/grid/render.php:155 app/skins/grid/render.php:206
7779
  #: app/skins/grid/render.php:226 app/skins/list/render.php:68
7780
  #: app/skins/list/render.php:160 app/skins/masonry/render.php:150
7781
+ #: app/skins/single.php:352 app/skins/single.php:1060 app/skins/single.php:1063
7782
  #: app/skins/single/default.php:288 app/skins/single/default.php:290
7783
  #: app/skins/single/default.php:521 app/skins/single/default.php:523
7784
  #: app/skins/single/m1.php:144 app/skins/single/m1.php:146
7790
  msgid "REGISTER"
7791
  msgstr ""
7792
 
7793
+ #: app/libraries/main.php:5946 app/libraries/main.php:5993
7794
  msgid "View Detail Button"
7795
  msgstr ""
7796
 
7797
+ #: app/libraries/main.php:5946 app/libraries/main.php:5993
7798
  #: app/skins/carousel/render.php:110 app/skins/carousel/render.php:150
7799
  #: app/skins/grid/render.php:98 app/skins/grid/render.php:155
7800
  #: app/skins/grid/render.php:206 app/skins/grid/render.php:226
7806
  msgid "View Detail"
7807
  msgstr ""
7808
 
7809
+ #: app/libraries/main.php:5947 app/libraries/main.php:5994
7810
  msgid "Event Detail Button"
7811
  msgstr ""
7812
 
7813
+ #: app/libraries/main.php:5947 app/libraries/main.php:5994
7814
  #: app/skins/countdown/tpl.php:221
7815
  msgid "Event Detail"
7816
  msgstr ""
7817
 
7818
+ #: app/libraries/main.php:5949 app/libraries/main.php:5996
7819
  msgid "More Info Link"
7820
  msgstr ""
7821
 
7822
+ #: app/libraries/main.php:5952
7823
  msgid "Ticket (Singular)"
7824
  msgstr ""
7825
 
7826
+ #: app/libraries/main.php:5953
7827
  msgid "Tickets (Plural)"
7828
  msgstr ""
7829
 
7830
+ #: app/libraries/main.php:6109
7831
  msgid "EventON"
7832
  msgstr ""
7833
 
7834
+ #: app/libraries/main.php:6110
7835
  msgid "The Events Calendar"
7836
  msgstr ""
7837
 
7838
+ #: app/libraries/main.php:6111
7839
  msgid "Events Schedule WP Plugin"
7840
  msgstr ""
7841
 
7842
+ #: app/libraries/main.php:6112
7843
  msgid "Calendarize It"
7844
  msgstr ""
7845
 
7846
+ #: app/libraries/main.php:6113
7847
  msgid "Event Espresso"
7848
  msgstr ""
7849
 
7850
+ #: app/libraries/main.php:6114
7851
  msgid "Events Manager (Recurring)"
7852
  msgstr ""
7853
 
7854
+ #: app/libraries/main.php:6115
7855
  msgid "Events Manager (Single)"
7856
  msgstr ""
7857
 
7858
+ #: app/libraries/main.php:6189 app/libraries/main.php:6211
 
 
 
 
 
 
 
 
7859
  msgid "Pending"
7860
  msgstr ""
7861
 
7862
+ #: app/libraries/main.php:6237
7863
  msgid "Waiting"
7864
  msgstr ""
7865
 
7866
+ #: app/libraries/main.php:6280
7867
  msgid "Sun"
7868
  msgstr ""
7869
 
7870
+ #: app/libraries/main.php:6280
7871
  msgid "Mon"
7872
  msgstr ""
7873
 
7874
+ #: app/libraries/main.php:6280
7875
  msgid "Tue"
7876
  msgstr ""
7877
 
7878
+ #: app/libraries/main.php:6280
7879
  msgid "Wed"
7880
  msgstr ""
7881
 
7882
+ #: app/libraries/main.php:6280
7883
  msgid "Thu"
7884
  msgstr ""
7885
 
7886
+ #: app/libraries/main.php:6280
7887
  msgid "Fri"
7888
  msgstr ""
7889
 
7890
+ #: app/libraries/main.php:6280
7891
  msgid "Sat"
7892
  msgstr ""
7893
 
7894
+ #: app/libraries/main.php:6442 app/libraries/render.php:80
7895
  #: app/libraries/render.php:432
7896
  msgid "Skin controller does not exist."
7897
  msgstr ""
7898
 
7899
+ #: app/libraries/main.php:6657
7900
  msgid "Sold Out"
7901
  msgstr ""
7902
 
7903
+ #: app/libraries/main.php:6665
7904
  msgid "Last Few Tickets"
7905
  msgstr ""
7906
 
7907
+ #: app/libraries/main.php:6986 app/libraries/main.php:7003
7908
  msgid "Minutes"
7909
  msgstr ""
7910
 
7911
+ #: app/libraries/main.php:7008
7912
  msgid "AM / PM"
7913
  msgstr ""
7914
 
7915
+ #: app/libraries/main.php:7009
7916
  msgid "AM"
7917
  msgstr ""
7918
 
7919
+ #: app/libraries/main.php:7010
7920
  msgid "PM"
7921
  msgstr ""
7922
 
7923
+ #: app/libraries/main.php:7018
7924
  msgid "Ongoing..."
7925
  msgstr ""
7926
 
7927
+ #: app/libraries/main.php:7019
7928
  msgid "Expired!"
7929
  msgstr ""
7930
 
7948
  msgid "A new booking is received."
7949
  msgstr ""
7950
 
7951
+ #: app/libraries/notifications.php:708
7952
  msgid "A new event is added."
7953
  msgstr ""
7954
 
7955
+ #: app/libraries/notifications.php:812
7956
  msgid "Your event is published."
7957
  msgstr ""
7958
 
7959
+ #: app/libraries/notifications.php:975 app/libraries/notifications.php:990
7960
+ #: app/libraries/notifications.php:1001
7961
  #, php-format
7962
  msgid "%s to %s"
7963
  msgstr ""
7964
 
7965
+ #: app/libraries/notifications.php:1173
7966
  msgid "to"
7967
  msgstr ""
7968
 
7969
+ #: app/libraries/notifications.php:1194 app/modules/export/details.php:46
7970
  msgid "+ Add to Google Calendar"
7971
  msgstr ""
7972
 
7973
+ #: app/libraries/notifications.php:1195 app/modules/export/details.php:47
7974
  msgid "+ iCal export"
7975
  msgstr ""
7976
 
7977
+ #: app/libraries/notifications.php:1280
7978
  msgid "Yes"
7979
  msgstr ""
7980
 
7981
+ #: app/libraries/notifications.php:1280
7982
  msgid "No"
7983
  msgstr ""
7984
 
7985
+ #: app/libraries/skins.php:1094
7986
  msgid "Select"
7987
  msgstr ""
7988
 
7989
+ #: app/libraries/skins.php:1269 app/libraries/skins.php:1270
7990
  #: app/modules/booking/steps/tickets.php:90
7991
  msgid "Book Event"
7992
  msgstr ""
8091
  msgid "Get Directions"
8092
  msgstr ""
8093
 
8094
+ #: app/modules/links/details.php:17 app/skins/single.php:744
8095
  msgid "Share this event"
8096
  msgstr ""
8097
 
8142
  msgid "Go to occurrence page"
8143
  msgstr ""
8144
 
8145
+ #: app/modules/next-event/details.php:139 app/skins/single.php:1033
8146
  #: app/skins/single/default.php:119 app/skins/single/default.php:353
8147
  #: app/skins/single/m1.php:41 app/skins/single/modern.php:216
8148
  msgid "Time"
8263
  msgstr ""
8264
 
8265
  #: app/skins/monthly_view/calendar.php:71
8266
+ #: app/skins/monthly_view/calendar.php:116
8267
  #: app/skins/monthly_view/calendar_clean.php:70
8268
+ #: app/skins/monthly_view/calendar_clean.php:132
8269
  #, php-format
8270
  msgid "Events for %s"
8271
  msgstr ""
8272
 
8273
+ #: app/skins/monthly_view/calendar.php:118
8274
+ #: app/skins/monthly_view/calendar_clean.php:134
8275
  #: app/skins/timetable/render.php:83 app/skins/weekly_view/render.php:64
8276
  msgid "No Events"
8277
  msgstr ""
8280
  msgid "Home"
8281
  msgstr ""
8282
 
8283
+ #: app/skins/single.php:827 app/skins/single/default.php:65
8284
  #: app/skins/single/m1.php:279 app/skins/single/m2.php:200
8285
  #: app/skins/single/modern.php:300
8286
  msgid "Sold out!"
8287
  msgstr ""
8288
 
8289
+ #: app/skins/single.php:1107 app/skins/single.php:1166
8290
  #: app/skins/single/default.php:255 app/skins/single/default.php:488
8291
  #: app/skins/single/m1.php:113 app/skins/single/m2.php:36
8292
  #: app/skins/single/modern.php:58
8293
  msgid "Phone"
8294
  msgstr ""
8295
 
8296
+ #: app/skins/single.php:1121 app/skins/single.php:1180
8297
  #: app/skins/single/default.php:203 app/skins/single/default.php:269
8298
  #: app/skins/single/default.php:436 app/skins/single/default.php:502
8299
  #: app/skins/single/m1.php:127 app/skins/single/m1.php:181
8302
  msgid "Website"
8303
  msgstr ""
8304
 
8305
+ #: app/skins/single.php:1256
8306
  msgid "Speakers:"
8307
  msgstr ""
8308
 
languages/modern-events-calendar-lite-es_ES.mo CHANGED
Binary file
languages/modern-events-calendar-lite-es_ES.po CHANGED
@@ -4,8 +4,8 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Plugins - Modern Events Calendar Lite - Stable (latest "
6
  "release)\n"
7
- "POT-Creation-Date: 2020-07-21 17:36+0430\n"
8
- "PO-Revision-Date: 2020-07-21 17:40+0430\n"
9
  "Last-Translator: \n"
10
  "Language-Team: \n"
11
  "Language: es\n"
@@ -16,9 +16,10 @@ msgstr ""
16
  "X-Generator: Poedit 2.2\n"
17
 
18
  #: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:24
19
- #: app/features/ix/import.php:37 app/features/ix/thirdparty.php:24
20
- #: app/features/mec.php:1140 app/features/mec.php:1170
21
- #: app/features/mec/dashboard.php:63 app/widgets/MEC.php:33
 
22
  msgid "Modern Events Calendar"
23
  msgstr "Modern Events Calendar"
24
 
@@ -93,8 +94,8 @@ msgstr "Color del evento"
93
  msgid "Settings"
94
  msgstr "Ajustes"
95
 
96
- #: app/features/contextual.php:62 app/features/events.php:1563
97
- #: app/features/events.php:2378 app/features/mec/booking.php:524
98
  #: app/features/mec/support.php:29 app/libraries/main.php:564
99
  msgid "Booking Form"
100
  msgstr "Formulario de Reservas"
@@ -122,7 +123,7 @@ msgstr ""
122
  "www.youtube.com/embed/YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></"
123
  "iframe>"
124
 
125
- #: app/features/contextual.php:70 app/features/mec/booking.php:716
126
  #: app/features/mec/support-page.php:115 app/features/mec/support.php:36
127
  #: app/libraries/main.php:565
128
  msgid "Payment Gateways"
@@ -278,14 +279,14 @@ msgid "Exceptional Days"
278
  msgstr "Días excepcionales"
279
 
280
  #: app/features/contextual.php:308 app/features/events.php:315
281
- #: app/features/mec/booking.php:96 app/features/mec/notifications.php:33
282
  #: app/features/mec/support-page.php:110 app/features/mec/support-page.php:114
283
  #: app/libraries/main.php:559 app/libraries/main.php:588
284
  #: app/libraries/main.php:672
285
  msgid "Booking"
286
  msgstr "Reserva"
287
 
288
- #: app/features/contextual.php:318 app/features/mec/booking.php:346
289
  #: app/libraries/main.php:561
290
  msgid "Coupons"
291
  msgstr "Cupones"
@@ -304,8 +305,8 @@ msgstr "Integración de MailChimp"
304
  msgid "MEC Activation"
305
  msgstr "Activación MEC"
306
 
307
- #: app/features/dlfile.php:121 app/features/events.php:1568
308
- #: app/features/mec/booking.php:268 app/features/mec/settings.php:811
309
  #, fuzzy
310
  #| msgid "Download ICS file"
311
  msgid "Downloadable File"
@@ -368,7 +369,7 @@ msgstr "Nuevo evento"
368
  msgid "Add New Event"
369
  msgstr "Añadir nuevo evento"
370
 
371
- #: app/features/events.php:171 app/features/ix.php:3930
372
  #: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:68
373
  #: app/skins/map/tpl.php:88
374
  msgid "No events found!"
@@ -391,7 +392,7 @@ msgstr "Ver evento"
391
  msgid "No events found in Trash!"
392
  msgstr "No hay eventos en la papelera"
393
 
394
- #: app/features/events.php:192 app/features/events.php:3449
395
  #: app/features/mec/meta_boxes/display_options.php:1395
396
  #: app/features/mec/meta_boxes/search_form.php:31
397
  #: app/features/mec/meta_boxes/search_form.php:101
@@ -405,19 +406,19 @@ msgstr "No hay eventos en la papelera"
405
  #: app/features/mec/meta_boxes/search_form.php:654
406
  #: app/features/mec/meta_boxes/search_form.php:760
407
  #: app/features/mec/settings.php:885 app/features/mec/single.php:323
408
- #: app/features/search.php:68 app/libraries/main.php:5888
409
- #: app/libraries/main.php:5936 app/libraries/skins.php:939
410
- #: app/skins/single.php:854 app/skins/single/default.php:220
411
  #: app/skins/single/default.php:453 app/skins/single/m1.php:197
412
  #: app/skins/single/m2.php:120 app/skins/single/modern.php:140
413
  msgid "Category"
414
  msgstr "Categoría"
415
 
416
- #: app/features/events.php:193 app/features/events.php:3404
417
  #: app/features/fes/form.php:822 app/features/mec.php:461
418
  #: app/features/mec/meta_boxes/filter.php:69
419
- #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5887
420
- #: app/libraries/main.php:5935
421
  msgid "Categories"
422
  msgstr "Categorías"
423
 
@@ -505,14 +506,14 @@ msgstr "Día y hora"
505
  msgid "Event Repeating"
506
  msgstr "Repetir el evento"
507
 
508
- #: app/features/events.php:344 app/features/events.php:1126
509
  #, fuzzy
510
  #| msgid "Event Detail"
511
  msgid "Event Data"
512
  msgstr "Detalle del evento"
513
 
514
- #: app/features/events.php:346 app/features/events.php:1308
515
- #: app/features/mec/settings.php:769 app/skins/single.php:1247
516
  msgid "Hourly Schedule"
517
  msgstr "Programación horaria"
518
 
@@ -528,9 +529,9 @@ msgstr "Localización"
528
  msgid "Links"
529
  msgstr "Enlace"
530
 
531
- #: app/features/events.php:349 app/features/events.php:3451
532
- #: app/features/events.php:3642 app/features/events.php:3684
533
- #: app/features/ix.php:3513 app/features/ix.php:3554
534
  #: app/features/mec/meta_boxes/display_options.php:1398
535
  #: app/features/mec/meta_boxes/search_form.php:46
536
  #: app/features/mec/meta_boxes/search_form.php:116
@@ -548,17 +549,17 @@ msgstr "Enlace"
548
  #: app/features/organizers.php:260 app/features/organizers.php:262
549
  #: app/features/organizers.php:271 app/features/popup/event.php:163
550
  #: app/features/popup/event.php:172 app/features/search.php:80
551
- #: app/libraries/main.php:5894 app/libraries/main.php:5942
552
- #: app/libraries/skins.php:991 app/skins/single.php:1102
553
  #: app/skins/single/default.php:245 app/skins/single/default.php:478
554
  #: app/skins/single/m1.php:103 app/skins/single/m2.php:26
555
  #: app/skins/single/modern.php:48
556
  msgid "Organizer"
557
  msgstr "Organizador"
558
 
559
- #: app/features/events.php:350 app/features/events.php:1113
560
- #: app/features/fes/form.php:793 app/libraries/main.php:5921
561
- #: app/libraries/main.php:5968 app/skins/single.php:880
562
  #: app/skins/single/default.php:143 app/skins/single/default.php:377
563
  #: app/skins/single/m1.php:62 app/skins/single/modern.php:237
564
  msgid "Cost"
@@ -570,51 +571,51 @@ msgstr "Coste"
570
  msgid "SEO Schema / Event Status"
571
  msgstr "En el inicio del evento"
572
 
573
- #: app/features/events.php:487
574
  msgid "Note for reviewer"
575
  msgstr "Nota para el encargado"
576
 
577
- #: app/features/events.php:493
578
  msgid "Guest Data"
579
  msgstr "Datos del invitado"
580
 
581
- #: app/features/events.php:494 app/features/events.php:2364
582
- #: app/features/events.php:3981 app/features/fes.php:233
583
  #: app/features/fes/form.php:752 app/features/labels.php:178
584
  #: app/features/mec/booking.php:53 app/features/organizers.php:279
585
  #: app/features/popup/event.php:182 app/features/profile/profile.php:177
586
- #: app/libraries/notifications.php:1261 app/modules/booking/steps/form.php:48
587
  msgid "Name"
588
  msgstr "Nombre"
589
 
590
- #: app/features/events.php:495 app/features/events.php:2373
591
- #: app/features/events.php:2435 app/features/events.php:2524
592
- #: app/features/events.php:3984 app/features/fes.php:233
593
  #: app/features/fes/form.php:748 app/features/login/login.php:5
594
- #: app/features/mec/booking.php:65 app/features/mec/booking.php:562
595
- #: app/features/mec/booking.php:658 app/features/mec/single.php:183
596
  #: app/features/organizers.php:111 app/features/organizers.php:152
597
  #: app/features/profile/profile.php:180 app/features/speakers.php:127
598
  #: app/features/speakers.php:196 app/libraries/main.php:1719
599
- #: app/libraries/main.php:1788 app/libraries/main.php:3154
600
- #: app/libraries/notifications.php:1262 app/modules/booking/steps/form.php:57
601
- #: app/modules/booking/steps/form.php:157 app/skins/single.php:1119
602
- #: app/skins/single.php:1178 app/skins/single/default.php:262
603
  #: app/skins/single/default.php:495 app/skins/single/m1.php:120
604
  #: app/skins/single/m2.php:43 app/skins/single/modern.php:65
605
  msgid "Email"
606
  msgstr "Correo electrónico"
607
 
608
- #: app/features/events.php:503 app/features/fes/form.php:265
609
  msgid "Date and Time"
610
  msgstr "Día y hora"
611
 
612
- #: app/features/events.php:506 app/features/events.php:510
613
- #: app/features/events.php:3452 app/features/events.php:3642
614
- #: app/features/events.php:3684 app/features/fes/form.php:269
615
- #: app/features/fes/form.php:273 app/features/ix.php:3513
616
- #: app/features/ix.php:3554 app/features/ix/import_g_calendar.php:38
617
- #: app/features/mec.php:1323 app/features/mec/meta_boxes/display_options.php:51
618
  #: app/features/mec/meta_boxes/display_options.php:280
619
  #: app/features/mec/meta_boxes/display_options.php:520
620
  #: app/features/mec/meta_boxes/display_options.php:627
@@ -633,38 +634,38 @@ msgstr "Día y hora"
633
  msgid "Start Date"
634
  msgstr "Día de inicio"
635
 
636
- #: app/features/events.php:525 app/features/events.php:529
637
- #: app/features/events.php:3453 app/features/events.php:3642
638
- #: app/features/events.php:3684 app/features/fes/form.php:288
639
- #: app/features/fes/form.php:292 app/features/ix.php:3513
640
- #: app/features/ix.php:3554 app/features/ix/import_g_calendar.php:44
641
- #: app/features/mec.php:1324 app/features/popup/event.php:92
642
  msgid "End Date"
643
  msgstr "Día final"
644
 
645
- #: app/features/events.php:552 app/features/fes/form.php:306
646
  #: app/features/popup/event.php:109
647
  #, fuzzy
648
  #| msgid "All Day Event"
649
  msgid "All-day Event"
650
  msgstr "Evento de todo el día"
651
 
652
- #: app/features/events.php:562 app/features/fes/form.php:309
653
  msgid "Hide Event Time"
654
  msgstr "Ocultar hora del evento"
655
 
656
- #: app/features/events.php:572 app/features/fes/form.php:312
657
  msgid "Hide Event End Time"
658
  msgstr "Oculta la hora de finalización del evento"
659
 
660
- #: app/features/events.php:577 app/features/events.php:581
661
  #: app/features/fes/form.php:316
662
  #, fuzzy
663
  #| msgid "Note to reviewer"
664
  msgid "Notes on the time"
665
  msgstr "Nota al revisor"
666
 
667
- #: app/features/events.php:582 app/features/fes/form.php:317
668
  #, fuzzy
669
  #| msgid ""
670
  #| "It shows next to event time on calendar. You can insert Timezone etc. in "
@@ -676,22 +677,22 @@ msgstr ""
676
  "Muestra la hora del siguiente evento en el calendario. Puedes insertar Zona "
677
  "horaria, etc en este campo."
678
 
679
- #: app/features/events.php:584 app/features/events.php:723
680
- #: app/features/events.php:1076 app/features/events.php:1225
681
- #: app/features/events.php:1533 app/features/events.php:1626
682
- #: app/features/events.php:1770 app/features/events.php:1785
683
- #: app/features/events.php:1951 app/features/events.php:1964
684
- #: app/features/events.php:2115 app/features/events.php:2151
685
- #: app/features/events.php:2249 app/features/events.php:2264
686
- #: app/features/events.php:2294 app/features/events.php:2307
687
  #: app/features/fes/form.php:396 app/features/fes/form.php:704
688
  #: app/features/locations.php:334 app/features/mec/booking.php:116
689
- #: app/features/mec/booking.php:182 app/features/mec/booking.php:195
690
- #: app/features/mec/booking.php:213 app/features/mec/booking.php:229
691
- #: app/features/mec/booking.php:269 app/features/mec/booking.php:391
692
- #: app/features/mec/booking.php:420 app/features/mec/booking.php:468
693
- #: app/features/mec/booking.php:478 app/features/mec/booking.php:500
694
- #: app/features/mec/booking.php:510 app/features/mec/dashboard.php:71
695
  #: app/features/mec/meta_boxes/display_options.php:82
696
  #: app/features/mec/meta_boxes/display_options.php:95
697
  #: app/features/mec/meta_boxes/display_options.php:108
@@ -727,14 +728,14 @@ msgstr ""
727
  #: app/features/mec/modules.php:52 app/features/mec/modules.php:85
728
  #: app/features/mec/modules.php:102 app/features/mec/modules.php:137
729
  #: app/features/mec/modules.php:153 app/features/mec/modules.php:323
730
- #: app/features/mec/notifications.php:87 app/features/mec/notifications.php:193
731
- #: app/features/mec/notifications.php:303
732
- #: app/features/mec/notifications.php:418
733
- #: app/features/mec/notifications.php:534
734
- #: app/features/mec/notifications.php:645
735
- #: app/features/mec/notifications.php:656
736
- #: app/features/mec/notifications.php:771
737
- #: app/features/mec/notifications.php:855 app/features/mec/settings.php:67
738
  #: app/features/mec/settings.php:86 app/features/mec/settings.php:133
739
  #: app/features/mec/settings.php:168 app/features/mec/settings.php:189
740
  #: app/features/mec/settings.php:234 app/features/mec/settings.php:269
@@ -751,88 +752,88 @@ msgstr ""
751
  #: app/features/mec/styling.php:119 app/features/mec/styling.php:218
752
  #: app/features/mec/styling.php:235 app/features/mec/styling.php:248
753
  #: app/features/organizers.php:272 app/features/popup/event.php:126
754
- #: app/features/popup/event.php:173 app/skins/single.php:965
755
  #: app/skins/single/default.php:160 app/skins/single/default.php:392
756
  #: app/skins/single/m1.php:219 app/skins/single/m2.php:143
757
  #: app/skins/single/modern.php:163
758
  msgid "Read More"
759
  msgstr "Leer más"
760
 
761
- #: app/features/events.php:592
762
  #, fuzzy
763
  #| msgid "Repeat"
764
  msgid "Repeating"
765
  msgstr "Repetir"
766
 
767
- #: app/features/events.php:601
768
  #, fuzzy
769
  #| msgid "Event Repeating"
770
  msgid "Event Repeating (Recurring events)"
771
  msgstr "Repetir el evento"
772
 
773
- #: app/features/events.php:605 app/features/fes/form.php:327
774
  msgid "Repeats"
775
  msgstr "Repeticiones"
776
 
777
- #: app/features/events.php:613 app/features/fes/form.php:329
778
  #: app/features/mec.php:1326 app/skins/default_full_calendar/tpl.php:74
779
  #: app/skins/full_calendar/tpl.php:121
780
  msgid "Daily"
781
  msgstr "Diariamente"
782
 
783
- #: app/features/events.php:620 app/features/fes/form.php:330
784
  msgid "Every Weekday"
785
  msgstr "Cada día de la semana"
786
 
787
- #: app/features/events.php:627 app/features/fes/form.php:331
788
  msgid "Every Weekend"
789
  msgstr "Cada fin de semana"
790
 
791
- #: app/features/events.php:634 app/features/fes/form.php:332
792
  msgid "Certain Weekdays"
793
  msgstr "Ciertos días de la semana"
794
 
795
- #: app/features/events.php:641 app/features/fes/form.php:333
796
  #: app/skins/default_full_calendar/tpl.php:73
797
  #: app/skins/full_calendar/tpl.php:120
798
  msgid "Weekly"
799
  msgstr "Semanal"
800
 
801
- #: app/features/events.php:648 app/features/fes/form.php:334
802
  #: app/features/mec.php:1327 app/skins/default_full_calendar/tpl.php:72
803
  #: app/skins/full_calendar/tpl.php:119
804
  msgid "Monthly"
805
  msgstr "Mensual"
806
 
807
- #: app/features/events.php:655 app/features/fes/form.php:335
808
  #: app/features/mec.php:1328 app/skins/default_full_calendar/tpl.php:71
809
  #: app/skins/full_calendar/tpl.php:118
810
  msgid "Yearly"
811
  msgstr "Anual"
812
 
813
- #: app/features/events.php:662 app/features/fes/form.php:336
814
  msgid "Custom Days"
815
  msgstr "Días personalizados"
816
 
817
- #: app/features/events.php:669 app/features/fes/form.php:337
818
  #, fuzzy
819
  #| msgid "Advanced Method"
820
  msgid "Advanced"
821
  msgstr "Método avanzado"
822
 
823
- #: app/features/events.php:674 app/features/fes/form.php:341
824
  msgid "Repeat Interval"
825
  msgstr "Intervalo de repetición"
826
 
827
- #: app/features/events.php:676 app/features/fes/form.php:342
828
  msgid "Repeat interval"
829
  msgstr "Intervalo de repetición"
830
 
831
- #: app/features/events.php:680 app/features/fes/form.php:345
832
  msgid "Week Days"
833
  msgstr "Días de semana"
834
 
835
- #: app/features/events.php:697
836
  #, fuzzy
837
  #| msgid "Pro version of Modern Events Calendar"
838
  msgid ""
@@ -840,91 +841,92 @@ msgid ""
840
  "Calendar."
841
  msgstr "Versión Pro de Modern Events Calendar"
842
 
843
- #: app/features/events.php:703 app/features/events.php:1853
844
- #: app/features/events.php:1881 app/features/events.php:2019
845
  #: app/features/fes/form.php:359 app/features/ix/import_f_calendar.php:42
846
  #: app/features/ix/import_g_calendar.php:51
847
  #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
848
  msgid "Start"
849
  msgstr "Inicio"
850
 
851
- #: app/features/events.php:716 app/features/events.php:1219
852
- #: app/features/events.php:1339 app/features/events.php:1444
853
- #: app/features/events.php:1837 app/features/events.php:2008
854
- #: app/features/events.php:2088 app/features/events.php:2221
855
  #: app/features/fes/form.php:389 app/features/fes/form.php:920
856
  msgid "Add"
857
  msgstr "Añadir"
858
 
859
- #: app/features/events.php:719 app/features/fes/form.php:392
860
  #, fuzzy
861
  #| msgid "Custom Days"
862
  msgid "Custom Days Repeating"
863
  msgstr "Días personalizados"
864
 
865
- #: app/features/events.php:722 app/features/fes/form.php:395
866
  msgid ""
867
  "Add certain days to event occurrence dates. If you have a single day event, "
868
  "start and end dates should be the same, If you have a multiple day event, "
869
  "the start and end dates must be commensurate with the initial date."
870
  msgstr ""
871
 
872
- #: app/features/events.php:733 app/features/events.php:1857
873
- #: app/features/events.php:1885 app/features/events.php:2023
874
  #: app/features/fes/form.php:374
875
  msgid "End"
876
  msgstr ""
877
 
878
- #: app/features/events.php:810 app/features/fes/form.php:468
879
  #, fuzzy
880
  #| msgid "Ticket name"
881
  msgid "First"
882
  msgstr "Nombre de la entrada"
883
 
884
- #: app/features/events.php:852 app/features/fes/form.php:510
885
  #, fuzzy
886
  #| msgid "second"
887
  msgid "Second"
888
  msgstr "segundo"
889
 
890
- #: app/features/events.php:894 app/features/fes/form.php:552
891
  #, fuzzy
892
  #| msgid "Third Party"
893
  msgid "Third"
894
  msgstr "Terceros"
895
 
896
- #: app/features/events.php:936 app/features/fes/form.php:594
897
  msgid "Fourth"
898
  msgstr ""
899
 
900
- #: app/features/events.php:978 app/features/fes/form.php:636
901
  #, fuzzy
902
  #| msgid "Last Year"
903
  msgid "Last"
904
  msgstr "Año pasado"
905
 
906
- #: app/features/events.php:1025 app/features/fes/form.php:682
907
  msgid "Ends Repeat"
908
  msgstr "Finaliza la repetición"
909
 
910
- #: app/features/events.php:1037 app/features/fes/form.php:686
911
  msgid "Never"
912
  msgstr "Nunca"
913
 
914
- #: app/features/events.php:1049 app/features/fes/form.php:691
915
  msgid "On"
916
  msgstr "On"
917
 
918
- #: app/features/events.php:1065 app/features/fes/form.php:698
 
919
  msgid "After"
920
  msgstr "Después"
921
 
922
- #: app/features/events.php:1069 app/features/events.php:1073
923
  #: app/features/fes/form.php:700 app/features/fes/form.php:703
924
  msgid "Occurrences times"
925
  msgstr "Ocurrencias del evento"
926
 
927
- #: app/features/events.php:1074
928
  #, fuzzy
929
  #| msgid ""
930
  #| "The event will finish after certain repeats. For example if you set it to "
@@ -936,149 +938,149 @@ msgstr ""
936
  "El evento finalizará después de ciertas repeticiones. Por ejemplo, si "
937
  "estableces en 10, el evento terminará después de 10 repeticiones."
938
 
939
- #: app/features/events.php:1089 app/features/fes/form.php:717
940
  #, fuzzy
941
  #| msgid "Next Occurrence of Other Events"
942
  msgid "Show only one occurrence of this event"
943
  msgstr "Próxima aparición de otros eventos"
944
 
945
- #: app/features/events.php:1109 app/features/events.php:3642
946
- #: app/features/events.php:3684 app/features/fes/form.php:790
947
- #: app/features/ix.php:3513 app/features/ix.php:3554
948
- #: app/features/mec/settings.php:715 app/libraries/main.php:5920
949
- #: app/libraries/main.php:5967 app/widgets/single.php:103
950
  msgid "Event Cost"
951
  msgstr "Coste del evento"
952
 
953
- #: app/features/events.php:1206
954
  #, fuzzy
955
  #| msgid "Exceptional Days"
956
  msgid "Exceptional Days (Exclude Dates)"
957
  msgstr "Días excepcionales"
958
 
959
- #: app/features/events.php:1212 app/features/events.php:1222
960
  msgid "Exclude certain days"
961
  msgstr "Excluir ciertos días"
962
 
963
- #: app/features/events.php:1217 app/features/events.php:2436
964
- #: app/features/events.php:2525 app/features/fes.php:233
965
- #: app/features/mec/booking.php:563 app/features/mec/booking.php:659
966
  #: app/features/mec/single.php:185 app/features/profile/profile.php:58
967
- #: app/libraries/main.php:3241 app/modules/booking/steps/tickets.php:94
968
- #: app/modules/next-event/details.php:134 app/skins/single.php:938
969
  #: app/skins/single/default.php:100 app/skins/single/default.php:334
970
  #: app/skins/single/m1.php:22 app/skins/single/modern.php:197
971
  msgid "Date"
972
  msgstr "Fecha"
973
 
974
- #: app/features/events.php:1223
975
  msgid ""
976
  "Exclude certain days from event occurrence dates. Please note that you can "
977
  "exclude only single day occurrences and you cannot exclude one day from "
978
  "multiple day occurrences."
979
  msgstr ""
980
 
981
- #: app/features/events.php:1282 app/libraries/render.php:544
982
  msgid "Day 1"
983
  msgstr ""
984
 
985
- #: app/features/events.php:1312
986
  msgid "Add Day"
987
  msgstr ""
988
 
989
- #: app/features/events.php:1313
990
  msgid ""
991
  "Add new days for schedule. For example if your event is multiple days, you "
992
  "can add a different schedule for each day!"
993
  msgstr ""
994
 
995
- #: app/features/events.php:1320
996
  #, php-format
997
  msgid "Day %s"
998
  msgstr ""
999
 
1000
- #: app/features/events.php:1324 app/features/events.php:1363
1001
- #: app/features/events.php:1398 app/features/events.php:1430
1002
- #: app/features/events.php:1459 app/features/events.php:2236
1003
- #: app/features/events.php:2283 app/features/events.php:3448
1004
- #: app/features/events.php:3642 app/features/events.php:3684
1005
- #: app/features/fes/form.php:248 app/features/ix.php:3513
1006
- #: app/features/ix.php:3554 app/features/mec/booking.php:460
1007
- #: app/features/mec/booking.php:492 app/features/mec/styling.php:130
1008
  msgid "Title"
1009
  msgstr "Titulo"
1010
 
1011
- #: app/features/events.php:1333 app/features/events.php:1370
1012
- #: app/features/events.php:1403 app/features/events.php:1438
1013
- #: app/features/events.php:1464 app/features/events.php:1867
1014
- #: app/features/events.php:1893 app/features/events.php:2029
1015
- #: app/features/events.php:2128 app/features/events.php:2164
1016
- #: app/features/events.php:2271 app/features/events.php:2313
1017
- #: app/features/mec/booking.php:403 app/features/mec/booking.php:432
1018
- #: app/features/mec/booking.php:483 app/features/mec/booking.php:515
1019
- #: app/libraries/main.php:3076 app/libraries/main.php:3105
1020
- #: app/libraries/main.php:3134 app/libraries/main.php:3163
1021
- #: app/libraries/main.php:3192 app/libraries/main.php:3221
1022
- #: app/libraries/main.php:3250 app/libraries/main.php:3279
1023
- #: app/libraries/main.php:3308 app/libraries/main.php:3329
1024
- #: app/libraries/main.php:3360 app/libraries/main.php:3406
1025
- #: app/libraries/main.php:3452 app/libraries/main.php:3501
1026
- #: app/libraries/main.php:3541
1027
  msgid "Remove"
1028
  msgstr "Eliminar"
1029
 
1030
- #: app/features/events.php:1340 app/features/events.php:1445
1031
  msgid "Add new hourly schedule row"
1032
  msgstr "Añadir nueva línea programa horario"
1033
 
1034
- #: app/features/events.php:1355 app/features/events.php:1392
1035
- #: app/features/events.php:1454
1036
  msgid "From e.g. 8:15"
1037
  msgstr "Desde 8:15"
1038
 
1039
- #: app/features/events.php:1359 app/features/events.php:1395
1040
- #: app/features/events.php:1456
1041
  msgid "To e.g. 8:45"
1042
  msgstr "a 8:45"
1043
 
1044
- #: app/features/events.php:1367 app/features/events.php:1401
1045
- #: app/features/events.php:1462 app/features/events.php:1758
1046
- #: app/features/events.php:1940
1047
  msgid "Description"
1048
  msgstr "Descripción"
1049
 
1050
- #: app/features/events.php:1373 app/features/events.php:1406
1051
- #: app/features/events.php:1467 app/features/fes/form.php:916
1052
  #: app/features/mec.php:469 app/features/mec/modules.php:51
1053
  #: app/features/mec/settings.php:763 app/features/speakers.php:62
1054
- #: app/libraries/main.php:569 app/libraries/main.php:5895
1055
- #: app/libraries/main.php:5943 app/modules/speakers/details.php:18
1056
  msgid "Speakers"
1057
  msgstr ""
1058
 
1059
- #: app/features/events.php:1426 app/features/events.php:1434
1060
  #, fuzzy
1061
  #| msgid "Week Days"
1062
  msgid "New Day"
1063
  msgstr "Días de semana"
1064
 
1065
- #: app/features/events.php:1498 app/features/fes/form.php:767
1066
  #: app/features/mec/settings.php:709
1067
  msgid "Event Links"
1068
  msgstr "Enlaces de eventos"
1069
 
1070
- #: app/features/events.php:1501 app/features/events.php:1507
1071
- #: app/features/fes/form.php:769 app/libraries/main.php:5918
1072
- #: app/libraries/main.php:5965
1073
  msgid "Event Link"
1074
  msgstr "Enlace del evento"
1075
 
1076
- #: app/features/events.php:1504 app/features/events.php:1520
1077
  #: app/features/fes/form.php:770 app/features/fes/form.php:775
1078
  msgid "eg. http://yoursite.com/your-event"
1079
  msgstr "ej. http://yoursite.com/your-event"
1080
 
1081
- #: app/features/events.php:1508
1082
  #, fuzzy
1083
  #| msgid ""
1084
  #| "If you fill it, it will be replaced instead of default event page link. "
@@ -1091,32 +1093,32 @@ msgstr ""
1091
  "Si lo rellenas, se reemplazará en vez del enlace de la página del evento por "
1092
  "defecto. Inserta todo el enlace incluyendo http(s)://"
1093
 
1094
- #: app/features/events.php:1510
1095
  msgid "URL Shortener"
1096
  msgstr ""
1097
 
1098
- #: app/features/events.php:1517 app/features/events.php:1530
1099
- #: app/features/fes/form.php:774 app/libraries/main.php:5919
1100
- #: app/libraries/main.php:5966 app/skins/single.php:964
1101
  #: app/skins/single/default.php:159 app/skins/single/default.php:391
1102
  #: app/skins/single/m1.php:218 app/skins/single/m2.php:142
1103
  #: app/skins/single/modern.php:162 app/widgets/single.php:107
1104
  msgid "More Info"
1105
  msgstr "Más Información"
1106
 
1107
- #: app/features/events.php:1523 app/features/fes/form.php:776
1108
  msgid "More Information"
1109
  msgstr "Más Información"
1110
 
1111
- #: app/features/events.php:1525 app/features/fes/form.php:778
1112
  msgid "Current Window"
1113
  msgstr "Ventana actual"
1114
 
1115
- #: app/features/events.php:1526 app/features/fes/form.php:779
1116
  msgid "New Window"
1117
  msgstr "Nueva ventana"
1118
 
1119
- #: app/features/events.php:1531 app/features/fes/form.php:781
1120
  msgid ""
1121
  "If you fill it, it will be shown in event details page as an optional link. "
1122
  "Insert full link including http(s)://"
@@ -1124,100 +1126,100 @@ msgstr ""
1124
  "Si lo rellenas, se mostrará en la página de detalles del evento como enlace "
1125
  "opcional. Inserta todo el enlace incluyendo http(s)://"
1126
 
1127
- #: app/features/events.php:1554 app/features/mec/settings.php:777
1128
  msgid "Booking Options"
1129
  msgstr "Opciones de reserva"
1130
 
1131
- #: app/features/events.php:1555
1132
  #, fuzzy
1133
  #| msgid "Total booking limits"
1134
  msgid "Total User Booking Limits"
1135
  msgstr "Límite total de reservas"
1136
 
1137
- #: app/features/events.php:1556 app/features/events.php:1701
1138
- #: app/libraries/book.php:60 app/libraries/main.php:5923
1139
  #: app/modules/booking/steps/tickets.php:119
1140
  #: app/modules/booking/steps/tickets.php:125
1141
  msgid "Tickets"
1142
  msgstr "Tickets"
1143
 
1144
- #: app/features/events.php:1558 app/features/events.php:2065
1145
  msgid "Fees"
1146
  msgstr "Tasas"
1147
 
1148
- #: app/features/events.php:1561 app/features/events.php:2197
1149
  #: app/features/mec/settings.php:789
1150
  msgid "Ticket Variations / Options"
1151
  msgstr ""
1152
 
1153
- #: app/features/events.php:1565 app/features/mec/booking.php:735
1154
  #: app/features/mec/support-page.php:118
1155
  #, fuzzy
1156
  #| msgid "Organizer Tel"
1157
  msgid "Organizer Payment"
1158
  msgstr "Teléfono del Organizador"
1159
 
1160
- #: app/features/events.php:1608 app/features/events.php:1622
1161
  #, fuzzy
1162
  #| msgid "Total booking limits"
1163
  msgid "Total booking limit"
1164
  msgstr "Límite total de reservas"
1165
 
1166
- #: app/features/events.php:1619 app/features/events.php:1806
1167
- #: app/features/events.php:1978 app/modules/booking/default.php:98
1168
  #: app/modules/booking/steps/tickets.php:119
1169
  #: app/modules/booking/steps/tickets.php:125
1170
  #: app/skins/available_spot/tpl.php:142
1171
  msgid "Unlimited"
1172
  msgstr "Ilimitado"
1173
 
1174
- #: app/features/events.php:1625
1175
  msgid ""
1176
  "If you want to set a limit to all tickets, uncheck this checkbox and put a "
1177
  "limitation number."
1178
  msgstr ""
1179
 
1180
- #: app/features/events.php:1627
1181
  msgid "Read About A Booking System"
1182
  msgstr ""
1183
 
1184
- #: app/features/events.php:1635
1185
  msgid "100"
1186
  msgstr "100"
1187
 
1188
- #: app/features/events.php:1637 app/features/events.php:1651
1189
  #, fuzzy
1190
  #| msgid "Next Occurrence"
1191
  msgid "Book All Occurrences"
1192
  msgstr "Siguiente repetición"
1193
 
1194
- #: app/features/events.php:1648
1195
  msgid "Sell all occurrences by one booking"
1196
  msgstr ""
1197
 
1198
- #: app/features/events.php:1654
1199
  msgid ""
1200
  "If you have a series of events and you want to sell all of them at once, "
1201
  "this option is for you! For example a weekly yoga course or something "
1202
  "similar."
1203
  msgstr ""
1204
 
1205
- #: app/features/events.php:1664
1206
  #, fuzzy
1207
  #| msgid "Total booking limits"
1208
  msgid "Total user booking limits"
1209
  msgstr "Límite total de reservas"
1210
 
1211
- #: app/features/events.php:1675 app/features/events.php:2077
1212
- #: app/features/events.php:2209 app/features/events.php:2390
1213
  msgid "Inherit from global options"
1214
  msgstr "Heredar opciones globales"
1215
 
1216
- #: app/features/events.php:1678
1217
  msgid "12"
1218
  msgstr ""
1219
 
1220
- #: app/features/events.php:1704
1221
  msgid ""
1222
  "You're translating an event so MEC will use the original event for tickets "
1223
  "and booking. You can only translate the ticket name and description. Please "
@@ -1228,54 +1230,54 @@ msgstr ""
1228
  "entrada. Por favor define las entradas exactas que podrías definir en un "
1229
  "evento original aquí."
1230
 
1231
- #: app/features/events.php:1709
1232
  #, fuzzy
1233
  #| msgid "Ticket"
1234
  msgid "Add Ticket"
1235
  msgstr "Ticket"
1236
 
1237
- #: app/features/events.php:1721 app/features/events.php:1905
1238
  #, fuzzy
1239
  #| msgid "Ticket"
1240
  msgid "Ticket ID"
1241
  msgstr "Ticket"
1242
 
1243
- #: app/features/events.php:1721 app/features/events.php:1905
1244
- #: app/features/events.php:3642 app/features/events.php:3684
1245
- #: app/features/fes.php:233 app/features/ix.php:3513 app/features/ix.php:3554
1246
  #: app/features/labels.php:177 app/features/locations.php:260
1247
  #: app/features/organizers.php:203 app/features/speakers.php:268
1248
  msgid "ID"
1249
  msgstr "ID"
1250
 
1251
- #: app/features/events.php:1724 app/features/events.php:1908
1252
  msgid "Ticket Name"
1253
  msgstr "Nombre del ticket"
1254
 
1255
- #: app/features/events.php:1729 app/features/events.php:1912
1256
- #: app/features/events.php:3642 app/features/events.php:3684
1257
- #: app/features/ix.php:3513 app/features/ix.php:3554
1258
  msgid "Start Time"
1259
  msgstr "Hora de Inicio"
1260
 
1261
- #: app/features/events.php:1742 app/features/events.php:1925
1262
- #: app/features/events.php:3642 app/features/events.php:3684
1263
- #: app/features/ix.php:3513 app/features/ix.php:3554
1264
  msgid "End Time"
1265
  msgstr "Hora de finalización"
1266
 
1267
- #: app/features/events.php:1763 app/features/events.php:1767
1268
- #: app/features/events.php:1861 app/features/events.php:1888
1269
- #: app/features/events.php:1945 app/features/events.php:1948
1270
- #: app/features/events.php:2025 app/features/events.php:2242
1271
- #: app/features/events.php:2246 app/features/events.php:2288
1272
- #: app/features/events.php:2291 app/features/mec/booking.php:464
1273
- #: app/features/mec/booking.php:467 app/features/mec/booking.php:496
1274
- #: app/features/mec/booking.php:499
1275
  msgid "Price"
1276
  msgstr "Precio"
1277
 
1278
- #: app/features/events.php:1768 app/features/events.php:1949
1279
  #, fuzzy
1280
  #| msgid "Insert 0 for free ticket. Only numbers please."
1281
  msgid ""
@@ -1283,58 +1285,58 @@ msgid ""
1283
  "any symbols or characters."
1284
  msgstr "Introduce un 0 para una entrada gratuita. Utiliza únicamente números."
1285
 
1286
- #: app/features/events.php:1777 app/features/events.php:1782
1287
- #: app/features/events.php:1958 app/features/events.php:1961
1288
  msgid "Price Label"
1289
  msgstr "Etiqueta de precio"
1290
 
1291
- #: app/features/events.php:1783 app/features/events.php:1962
1292
  msgid "For showing on website. e.g. $15"
1293
  msgstr "Para mostrar en la web. Ej. 15€"
1294
 
1295
- #: app/features/events.php:1793 app/features/events.php:1972
1296
  msgid "Available Tickets"
1297
  msgstr "Tickets disponibles"
1298
 
1299
- #: app/features/events.php:1810 app/features/events.php:1982
1300
  msgid "Minimum Ticket e.g. 3"
1301
  msgstr ""
1302
 
1303
- #: app/features/events.php:1813 app/features/events.php:1985
1304
  #, fuzzy
1305
  #| msgid "Ticket"
1306
  msgid "MinimumTicket"
1307
  msgstr "Ticket"
1308
 
1309
- #: app/features/events.php:1815 app/features/events.php:1987
1310
  msgid "Set a number for the minimum ticket reservation possible"
1311
  msgstr ""
1312
 
1313
- #: app/features/events.php:1823 app/features/events.php:1995
1314
  msgid "e.g. 0"
1315
  msgstr ""
1316
 
1317
- #: app/features/events.php:1825 app/features/events.php:1997
1318
  #, fuzzy
1319
  #| msgid "Days"
1320
  msgid "Day"
1321
  msgstr "Días"
1322
 
1323
- #: app/features/events.php:1826 app/features/events.php:1998
1324
  msgid "Hour"
1325
  msgstr ""
1326
 
1327
- #: app/features/events.php:1828 app/features/events.php:2000
1328
  #, php-format
1329
  msgid "Stop selling ticket %s before event start."
1330
  msgstr ""
1331
 
1332
- #: app/features/events.php:1835 app/features/events.php:2006
1333
  msgid "Price per Date"
1334
  msgstr ""
1335
 
1336
- #: app/features/events.php:1865 app/features/events.php:1891
1337
- #: app/features/events.php:2027 app/features/labels.php:60
1338
  #: app/features/mec/meta_boxes/display_options.php:1396
1339
  #: app/features/mec/meta_boxes/search_form.php:67
1340
  #: app/features/mec/meta_boxes/search_form.php:137
@@ -1348,24 +1350,24 @@ msgstr ""
1348
  #: app/features/mec/meta_boxes/search_form.php:690
1349
  #: app/features/mec/meta_boxes/search_form.php:796
1350
  #: app/features/mec/settings.php:917 app/features/mec/single.php:341
1351
- #: app/features/search.php:98 app/libraries/skins.php:1069
1352
  msgid "Label"
1353
  msgstr "Etiqueta"
1354
 
1355
- #: app/features/events.php:2102 app/features/events.php:2140
1356
- #: app/features/mec/booking.php:383 app/features/mec/booking.php:412
1357
  msgid "Fee Title"
1358
  msgstr "Título de la cuota"
1359
 
1360
- #: app/features/events.php:2108 app/features/events.php:2112
1361
- #: app/features/events.php:2145 app/features/events.php:2148
1362
- #: app/features/mec/booking.php:387 app/features/mec/booking.php:390
1363
- #: app/features/mec/booking.php:416 app/features/mec/booking.php:419
1364
  msgid "Amount"
1365
  msgstr "Cantidad"
1366
 
1367
- #: app/features/events.php:2113 app/features/events.php:2149
1368
- #: app/features/mec/booking.php:391 app/features/mec/booking.php:420
1369
  msgid ""
1370
  "Fee amount, considered as fixed amount if you set the type to amount "
1371
  "otherwise considered as percentage"
@@ -1373,98 +1375,98 @@ msgstr ""
1373
  "Cantidad de cuota, considerada como cantidad fija si estableces el tipo de "
1374
  "cantidad, si no será considerada como porcentaje"
1375
 
1376
- #: app/features/events.php:2122 app/features/events.php:2158
1377
- #: app/features/mec/booking.php:398 app/features/mec/booking.php:427
1378
  msgid "Percent"
1379
  msgstr "Porcentaje"
1380
 
1381
- #: app/features/events.php:2123 app/features/events.php:2159
1382
- #: app/features/mec/booking.php:399 app/features/mec/booking.php:428
1383
  msgid "Amount (Per Ticket)"
1384
  msgstr "Cantidad (Por ticket)"
1385
 
1386
- #: app/features/events.php:2124 app/features/events.php:2160
1387
- #: app/features/mec/booking.php:400 app/features/mec/booking.php:429
1388
  msgid "Amount (Per Booking)"
1389
  msgstr "Cantidad (por reservas)"
1390
 
1391
- #: app/features/events.php:2247 app/features/events.php:2292
1392
- #: app/features/mec/booking.php:468 app/features/mec/booking.php:500
1393
  msgid "Option Price"
1394
  msgstr ""
1395
 
1396
- #: app/features/events.php:2257 app/features/events.php:2261
1397
- #: app/features/events.php:2301 app/features/events.php:2304
1398
- #: app/features/mec/booking.php:474 app/features/mec/booking.php:477
1399
- #: app/features/mec/booking.php:506 app/features/mec/booking.php:509
1400
  msgid "Maximum Per Ticket"
1401
  msgstr ""
1402
 
1403
- #: app/features/events.php:2262 app/features/events.php:2305
1404
- #: app/features/mec/booking.php:478 app/features/mec/booking.php:510
1405
  msgid "Maximum Per Ticket. Leave blank for unlimited."
1406
  msgstr ""
1407
 
1408
- #: app/features/events.php:2402 app/features/mec/booking.php:526
1409
  #, fuzzy
1410
  #| msgid "Attendees Limit"
1411
  msgid "Per Attendee Fields"
1412
  msgstr "Límite de asistentes"
1413
 
1414
- #: app/features/events.php:2432 app/features/mec/booking.php:559
1415
- #: app/libraries/main.php:3096
1416
  #, fuzzy
1417
  #| msgid "Name"
1418
  msgid "MEC Name"
1419
  msgstr "Nombre"
1420
 
1421
- #: app/features/events.php:2433 app/features/mec/booking.php:560
1422
- #: app/libraries/main.php:3125
1423
  #, fuzzy
1424
  #| msgid "Email"
1425
  msgid "MEC Email"
1426
  msgstr "Correo electrónico"
1427
 
1428
- #: app/features/events.php:2434 app/features/events.php:2523
1429
- #: app/features/mec/booking.php:561 app/features/mec/booking.php:657
1430
- #: app/features/mec/single.php:182 app/libraries/main.php:3067
1431
  msgid "Text"
1432
  msgstr "Texto"
1433
 
1434
- #: app/features/events.php:2437 app/features/events.php:2526
1435
- #: app/features/mec/booking.php:564 app/features/mec/booking.php:660
1436
  #: app/features/mec/single.php:186 app/features/organizers.php:103
1437
  #: app/features/organizers.php:148 app/features/speakers.php:119
1438
  #: app/features/speakers.php:192 app/features/speakers.php:271
1439
- #: app/libraries/main.php:3270
1440
  msgid "Tel"
1441
  msgstr "Tel"
1442
 
1443
- #: app/features/events.php:2438 app/features/mec/booking.php:565
1444
- #: app/libraries/main.php:3212
1445
  msgid "File"
1446
  msgstr ""
1447
 
1448
- #: app/features/events.php:2439 app/features/events.php:2527
1449
- #: app/features/mec/booking.php:566 app/features/mec/booking.php:661
1450
- #: app/features/mec/single.php:187 app/libraries/main.php:3299
1451
  msgid "Textarea"
1452
  msgstr "Área de texto"
1453
 
1454
- #: app/features/events.php:2440 app/features/events.php:2528
1455
- #: app/features/mec/booking.php:567 app/features/mec/booking.php:662
1456
- #: app/features/mec/single.php:189 app/libraries/main.php:3351
1457
  msgid "Checkboxes"
1458
  msgstr "Checkboxes"
1459
 
1460
- #: app/features/events.php:2441 app/features/events.php:2529
1461
- #: app/features/mec/booking.php:568 app/features/mec/booking.php:663
1462
- #: app/features/mec/single.php:190 app/libraries/main.php:3397
1463
  msgid "Radio Buttons"
1464
  msgstr "Botón tipo radio"
1465
 
1466
- #: app/features/events.php:2442 app/features/events.php:2530
1467
- #: app/features/mec/booking.php:569 app/features/mec/booking.php:664
1468
  #: app/features/mec/meta_boxes/search_form.php:34
1469
  #: app/features/mec/meta_boxes/search_form.php:41
1470
  #: app/features/mec/meta_boxes/search_form.php:49
@@ -1541,57 +1543,57 @@ msgstr "Botón tipo radio"
1541
  #: app/features/mec/meta_boxes/search_form.php:792
1542
  #: app/features/mec/meta_boxes/search_form.php:799
1543
  #: app/features/mec/meta_boxes/search_form.php:813
1544
- #: app/features/mec/single.php:191 app/libraries/main.php:3443
1545
  msgid "Dropdown"
1546
  msgstr "Desplegable"
1547
 
1548
- #: app/features/events.php:2443 app/features/events.php:2531
1549
- #: app/features/mec/booking.php:570 app/features/mec/booking.php:665
1550
- #: app/libraries/main.php:3492
1551
  msgid "Agreement"
1552
  msgstr "Acuerdo"
1553
 
1554
- #: app/features/events.php:2444 app/features/events.php:2532
1555
- #: app/features/mec/booking.php:571 app/features/mec/booking.php:666
1556
- #: app/features/mec/single.php:188 app/libraries/main.php:3328
1557
  msgid "Paragraph"
1558
  msgstr "Párrafo"
1559
 
1560
- #: app/features/events.php:2493 app/features/mec/booking.php:624
1561
  #, fuzzy
1562
  #| msgid "Required Field"
1563
  msgid "Fixed Fields"
1564
  msgstr "Campo obligatorio"
1565
 
1566
- #: app/features/events.php:3350 app/features/events.php:3368
1567
- #: app/features/events.php:3386 app/features/events.php:3404
1568
  #, php-format
1569
  msgid "Show all %s"
1570
  msgstr "Mostrar todos %s"
1571
 
1572
- #: app/features/events.php:3350
1573
  msgid "labels"
1574
  msgstr "etiquetas"
1575
 
1576
- #: app/features/events.php:3368
1577
  msgid "locations"
1578
  msgstr "ubicaciones"
1579
 
1580
- #: app/features/events.php:3386
1581
  msgid "organizers"
1582
  msgstr "organizadores"
1583
 
1584
- #: app/features/events.php:3420
1585
  #, fuzzy
1586
  #| msgid "Attendees Limit"
1587
  msgid "Attendees List"
1588
  msgstr "Límite de asistentes"
1589
 
1590
- #: app/features/events.php:3450 app/features/events.php:3642
1591
- #: app/features/events.php:3684 app/features/ix.php:3513
1592
- #: app/features/ix.php:3554 app/features/locations.php:58
1593
- #: app/features/locations.php:261 app/features/locations.php:322
1594
- #: app/features/locations.php:324 app/features/locations.php:333
1595
  #: app/features/mec/meta_boxes/display_options.php:1397
1596
  #: app/features/mec/meta_boxes/search_form.php:38
1597
  #: app/features/mec/meta_boxes/search_form.php:108
@@ -1606,90 +1608,90 @@ msgstr "Límite de asistentes"
1606
  #: app/features/mec/meta_boxes/search_form.php:767
1607
  #: app/features/mec/settings.php:891 app/features/mec/single.php:331
1608
  #: app/features/popup/event.php:116 app/features/popup/event.php:125
1609
- #: app/features/search.php:74 app/libraries/main.php:2424
1610
- #: app/libraries/main.php:5892 app/libraries/main.php:5940
1611
- #: app/libraries/skins.php:965 app/skins/single.php:781
1612
- #: app/skins/single.php:1224 app/skins/single/default.php:196
1613
  #: app/skins/single/default.php:429 app/skins/single/m1.php:174
1614
  #: app/skins/single/m2.php:97 app/skins/single/modern.php:116
1615
  msgid "Location"
1616
  msgstr "Localización"
1617
 
1618
- #: app/features/events.php:3455
1619
  msgi
4
  msgstr ""
5
  "Project-Id-Version: Plugins - Modern Events Calendar Lite - Stable (latest "
6
  "release)\n"
7
+ "POT-Creation-Date: 2020-07-29 10:36+0430\n"
8
+ "PO-Revision-Date: 2020-07-29 10:37+0430\n"
9
  "Last-Translator: \n"
10
  "Language-Team: \n"
11
  "Language: es\n"
16
  "X-Generator: Poedit 2.2\n"
17
 
18
  #: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:24
19
+ #: app/features/ix/import.php:37 app/features/ix/import.php:53
20
+ #: app/features/ix/thirdparty.php:24 app/features/mec.php:1140
21
+ #: app/features/mec.php:1170 app/features/mec/dashboard.php:63
22
+ #: app/widgets/MEC.php:33
23
  msgid "Modern Events Calendar"
24
  msgstr "Modern Events Calendar"
25
 
94
  msgid "Settings"
95
  msgstr "Ajustes"
96
 
97
+ #: app/features/contextual.php:62 app/features/events.php:1575
98
+ #: app/features/events.php:2390 app/features/mec/booking.php:546
99
  #: app/features/mec/support.php:29 app/libraries/main.php:564
100
  msgid "Booking Form"
101
  msgstr "Formulario de Reservas"
123
  "www.youtube.com/embed/YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></"
124
  "iframe>"
125
 
126
+ #: app/features/contextual.php:70 app/features/mec/booking.php:738
127
  #: app/features/mec/support-page.php:115 app/features/mec/support.php:36
128
  #: app/libraries/main.php:565
129
  msgid "Payment Gateways"
279
  msgstr "Días excepcionales"
280
 
281
  #: app/features/contextual.php:308 app/features/events.php:315
282
+ #: app/features/mec/booking.php:96 app/features/mec/notifications.php:34
283
  #: app/features/mec/support-page.php:110 app/features/mec/support-page.php:114
284
  #: app/libraries/main.php:559 app/libraries/main.php:588
285
  #: app/libraries/main.php:672
286
  msgid "Booking"
287
  msgstr "Reserva"
288
 
289
+ #: app/features/contextual.php:318 app/features/mec/booking.php:368
290
  #: app/libraries/main.php:561
291
  msgid "Coupons"
292
  msgstr "Cupones"
305
  msgid "MEC Activation"
306
  msgstr "Activación MEC"
307
 
308
+ #: app/features/dlfile.php:121 app/features/events.php:1580
309
+ #: app/features/mec/booking.php:290 app/features/mec/settings.php:811
310
  #, fuzzy
311
  #| msgid "Download ICS file"
312
  msgid "Downloadable File"
369
  msgid "Add New Event"
370
  msgstr "Añadir nuevo evento"
371
 
372
+ #: app/features/events.php:171 app/features/ix.php:4136
373
  #: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:68
374
  #: app/skins/map/tpl.php:88
375
  msgid "No events found!"
392
  msgid "No events found in Trash!"
393
  msgstr "No hay eventos en la papelera"
394
 
395
+ #: app/features/events.php:192 app/features/events.php:3461
396
  #: app/features/mec/meta_boxes/display_options.php:1395
397
  #: app/features/mec/meta_boxes/search_form.php:31
398
  #: app/features/mec/meta_boxes/search_form.php:101
406
  #: app/features/mec/meta_boxes/search_form.php:654
407
  #: app/features/mec/meta_boxes/search_form.php:760
408
  #: app/features/mec/settings.php:885 app/features/mec/single.php:323
409
+ #: app/features/search.php:68 app/libraries/main.php:5918
410
+ #: app/libraries/main.php:5966 app/libraries/skins.php:943
411
+ #: app/skins/single.php:849 app/skins/single/default.php:220
412
  #: app/skins/single/default.php:453 app/skins/single/m1.php:197
413
  #: app/skins/single/m2.php:120 app/skins/single/modern.php:140
414
  msgid "Category"
415
  msgstr "Categoría"
416
 
417
+ #: app/features/events.php:193 app/features/events.php:3416
418
  #: app/features/fes/form.php:822 app/features/mec.php:461
419
  #: app/features/mec/meta_boxes/filter.php:69
420
+ #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5917
421
+ #: app/libraries/main.php:5965
422
  msgid "Categories"
423
  msgstr "Categorías"
424
 
506
  msgid "Event Repeating"
507
  msgstr "Repetir el evento"
508
 
509
+ #: app/features/events.php:344 app/features/events.php:1138
510
  #, fuzzy
511
  #| msgid "Event Detail"
512
  msgid "Event Data"
513
  msgstr "Detalle del evento"
514
 
515
+ #: app/features/events.php:346 app/features/events.php:1320
516
+ #: app/features/mec/settings.php:769 app/skins/single.php:1242
517
  msgid "Hourly Schedule"
518
  msgstr "Programación horaria"
519
 
529
  msgid "Links"
530
  msgstr "Enlace"
531
 
532
+ #: app/features/events.php:349 app/features/events.php:3463
533
+ #: app/features/events.php:3652 app/features/ix.php:3719
534
+ #: app/features/ix.php:3760
535
  #: app/features/mec/meta_boxes/display_options.php:1398
536
  #: app/features/mec/meta_boxes/search_form.php:46
537
  #: app/features/mec/meta_boxes/search_form.php:116
549
  #: app/features/organizers.php:260 app/features/organizers.php:262
550
  #: app/features/organizers.php:271 app/features/popup/event.php:163
551
  #: app/features/popup/event.php:172 app/features/search.php:80
552
+ #: app/libraries/main.php:5924 app/libraries/main.php:5972
553
+ #: app/libraries/skins.php:995 app/skins/single.php:1097
554
  #: app/skins/single/default.php:245 app/skins/single/default.php:478
555
  #: app/skins/single/m1.php:103 app/skins/single/m2.php:26
556
  #: app/skins/single/modern.php:48
557
  msgid "Organizer"
558
  msgstr "Organizador"
559
 
560
+ #: app/features/events.php:350 app/features/events.php:1125
561
+ #: app/features/fes/form.php:793 app/libraries/main.php:5951
562
+ #: app/libraries/main.php:5998 app/skins/single.php:875
563
  #: app/skins/single/default.php:143 app/skins/single/default.php:377
564
  #: app/skins/single/m1.php:62 app/skins/single/modern.php:237
565
  msgid "Cost"
571
  msgid "SEO Schema / Event Status"
572
  msgstr "En el inicio del evento"
573
 
574
+ #: app/features/events.php:499
575
  msgid "Note for reviewer"
576
  msgstr "Nota para el encargado"
577
 
578
+ #: app/features/events.php:505
579
  msgid "Guest Data"
580
  msgstr "Datos del invitado"
581
 
582
+ #: app/features/events.php:506 app/features/events.php:2376
583
+ #: app/features/events.php:3967 app/features/fes.php:233
584
  #: app/features/fes/form.php:752 app/features/labels.php:178
585
  #: app/features/mec/booking.php:53 app/features/organizers.php:279
586
  #: app/features/popup/event.php:182 app/features/profile/profile.php:177
587
+ #: app/libraries/notifications.php:1262 app/modules/booking/steps/form.php:48
588
  msgid "Name"
589
  msgstr "Nombre"
590
 
591
+ #: app/features/events.php:507 app/features/events.php:2385
592
+ #: app/features/events.php:2447 app/features/events.php:2536
593
+ #: app/features/events.php:3970 app/features/fes.php:233
594
  #: app/features/fes/form.php:748 app/features/login/login.php:5
595
+ #: app/features/mec/booking.php:65 app/features/mec/booking.php:584
596
+ #: app/features/mec/booking.php:680 app/features/mec/single.php:183
597
  #: app/features/organizers.php:111 app/features/organizers.php:152
598
  #: app/features/profile/profile.php:180 app/features/speakers.php:127
599
  #: app/features/speakers.php:196 app/libraries/main.php:1719
600
+ #: app/libraries/main.php:1788 app/libraries/main.php:3184
601
+ #: app/libraries/notifications.php:1263 app/modules/booking/steps/form.php:57
602
+ #: app/modules/booking/steps/form.php:157 app/skins/single.php:1114
603
+ #: app/skins/single.php:1173 app/skins/single/default.php:262
604
  #: app/skins/single/default.php:495 app/skins/single/m1.php:120
605
  #: app/skins/single/m2.php:43 app/skins/single/modern.php:65
606
  msgid "Email"
607
  msgstr "Correo electrónico"
608
 
609
+ #: app/features/events.php:515 app/features/fes/form.php:265
610
  msgid "Date and Time"
611
  msgstr "Día y hora"
612
 
613
+ #: app/features/events.php:518 app/features/events.php:522
614
+ #: app/features/events.php:3464 app/features/events.php:3652
615
+ #: app/features/fes/form.php:269 app/features/fes/form.php:273
616
+ #: app/features/ix.php:3719 app/features/ix.php:3760
617
+ #: app/features/ix/import_g_calendar.php:38 app/features/mec.php:1323
618
+ #: app/features/mec/meta_boxes/display_options.php:51
619
  #: app/features/mec/meta_boxes/display_options.php:280
620
  #: app/features/mec/meta_boxes/display_options.php:520
621
  #: app/features/mec/meta_boxes/display_options.php:627
634
  msgid "Start Date"
635
  msgstr "Día de inicio"
636
 
637
+ #: app/features/events.php:537 app/features/events.php:541
638
+ #: app/features/events.php:3465 app/features/events.php:3652
639
+ #: app/features/fes/form.php:288 app/features/fes/form.php:292
640
+ #: app/features/ix.php:3719 app/features/ix.php:3760
641
+ #: app/features/ix/import_g_calendar.php:44 app/features/mec.php:1324
642
+ #: app/features/popup/event.php:92
643
  msgid "End Date"
644
  msgstr "Día final"
645
 
646
+ #: app/features/events.php:564 app/features/fes/form.php:306
647
  #: app/features/popup/event.php:109
648
  #, fuzzy
649
  #| msgid "All Day Event"
650
  msgid "All-day Event"
651
  msgstr "Evento de todo el día"
652
 
653
+ #: app/features/events.php:574 app/features/fes/form.php:309
654
  msgid "Hide Event Time"
655
  msgstr "Ocultar hora del evento"
656
 
657
+ #: app/features/events.php:584 app/features/fes/form.php:312
658
  msgid "Hide Event End Time"
659
  msgstr "Oculta la hora de finalización del evento"
660
 
661
+ #: app/features/events.php:589 app/features/events.php:593
662
  #: app/features/fes/form.php:316
663
  #, fuzzy
664
  #| msgid "Note to reviewer"
665
  msgid "Notes on the time"
666
  msgstr "Nota al revisor"
667
 
668
+ #: app/features/events.php:594 app/features/fes/form.php:317
669
  #, fuzzy
670
  #| msgid ""
671
  #| "It shows next to event time on calendar. You can insert Timezone etc. in "
677
  "Muestra la hora del siguiente evento en el calendario. Puedes insertar Zona "
678
  "horaria, etc en este campo."
679
 
680
+ #: app/features/events.php:596 app/features/events.php:735
681
+ #: app/features/events.php:1088 app/features/events.php:1237
682
+ #: app/features/events.php:1545 app/features/events.php:1638
683
+ #: app/features/events.php:1782 app/features/events.php:1797
684
+ #: app/features/events.php:1963 app/features/events.php:1976
685
+ #: app/features/events.php:2127 app/features/events.php:2163
686
+ #: app/features/events.php:2261 app/features/events.php:2276
687
+ #: app/features/events.php:2306 app/features/events.php:2319
688
  #: app/features/fes/form.php:396 app/features/fes/form.php:704
689
  #: app/features/locations.php:334 app/features/mec/booking.php:116
690
+ #: app/features/mec/booking.php:204 app/features/mec/booking.php:217
691
+ #: app/features/mec/booking.php:235 app/features/mec/booking.php:251
692
+ #: app/features/mec/booking.php:291 app/features/mec/booking.php:413
693
+ #: app/features/mec/booking.php:442 app/features/mec/booking.php:490
694
+ #: app/features/mec/booking.php:500 app/features/mec/booking.php:522
695
+ #: app/features/mec/booking.php:532 app/features/mec/dashboard.php:71
696
  #: app/features/mec/meta_boxes/display_options.php:82
697
  #: app/features/mec/meta_boxes/display_options.php:95
698
  #: app/features/mec/meta_boxes/display_options.php:108
728
  #: app/features/mec/modules.php:52 app/features/mec/modules.php:85
729
  #: app/features/mec/modules.php:102 app/features/mec/modules.php:137
730
  #: app/features/mec/modules.php:153 app/features/mec/modules.php:323
731
+ #: app/features/mec/notifications.php:88 app/features/mec/notifications.php:194
732
+ #: app/features/mec/notifications.php:304
733
+ #: app/features/mec/notifications.php:419
734
+ #: app/features/mec/notifications.php:535
735
+ #: app/features/mec/notifications.php:646
736
+ #: app/features/mec/notifications.php:657
737
+ #: app/features/mec/notifications.php:772
738
+ #: app/features/mec/notifications.php:856 app/features/mec/settings.php:67
739
  #: app/features/mec/settings.php:86 app/features/mec/settings.php:133
740
  #: app/features/mec/settings.php:168 app/features/mec/settings.php:189
741
  #: app/features/mec/settings.php:234 app/features/mec/settings.php:269
752
  #: app/features/mec/styling.php:119 app/features/mec/styling.php:218
753
  #: app/features/mec/styling.php:235 app/features/mec/styling.php:248
754
  #: app/features/organizers.php:272 app/features/popup/event.php:126
755
+ #: app/features/popup/event.php:173 app/skins/single.php:960
756
  #: app/skins/single/default.php:160 app/skins/single/default.php:392
757
  #: app/skins/single/m1.php:219 app/skins/single/m2.php:143
758
  #: app/skins/single/modern.php:163
759
  msgid "Read More"
760
  msgstr "Leer más"
761
 
762
+ #: app/features/events.php:604
763
  #, fuzzy
764
  #| msgid "Repeat"
765
  msgid "Repeating"
766
  msgstr "Repetir"
767
 
768
+ #: app/features/events.php:613
769
  #, fuzzy
770
  #| msgid "Event Repeating"
771
  msgid "Event Repeating (Recurring events)"
772
  msgstr "Repetir el evento"
773
 
774
+ #: app/features/events.php:617 app/features/fes/form.php:327
775
  msgid "Repeats"
776
  msgstr "Repeticiones"
777
 
778
+ #: app/features/events.php:625 app/features/fes/form.php:329
779
  #: app/features/mec.php:1326 app/skins/default_full_calendar/tpl.php:74
780
  #: app/skins/full_calendar/tpl.php:121
781
  msgid "Daily"
782
  msgstr "Diariamente"
783
 
784
+ #: app/features/events.php:632 app/features/fes/form.php:330
785
  msgid "Every Weekday"
786
  msgstr "Cada día de la semana"
787
 
788
+ #: app/features/events.php:639 app/features/fes/form.php:331
789
  msgid "Every Weekend"
790
  msgstr "Cada fin de semana"
791
 
792
+ #: app/features/events.php:646 app/features/fes/form.php:332
793
  msgid "Certain Weekdays"
794
  msgstr "Ciertos días de la semana"
795
 
796
+ #: app/features/events.php:653 app/features/fes/form.php:333
797
  #: app/skins/default_full_calendar/tpl.php:73
798
  #: app/skins/full_calendar/tpl.php:120
799
  msgid "Weekly"
800
  msgstr "Semanal"
801
 
802
+ #: app/features/events.php:660 app/features/fes/form.php:334
803
  #: app/features/mec.php:1327 app/skins/default_full_calendar/tpl.php:72
804
  #: app/skins/full_calendar/tpl.php:119
805
  msgid "Monthly"
806
  msgstr "Mensual"
807
 
808
+ #: app/features/events.php:667 app/features/fes/form.php:335
809
  #: app/features/mec.php:1328 app/skins/default_full_calendar/tpl.php:71
810
  #: app/skins/full_calendar/tpl.php:118
811
  msgid "Yearly"
812
  msgstr "Anual"
813
 
814
+ #: app/features/events.php:674 app/features/fes/form.php:336
815
  msgid "Custom Days"
816
  msgstr "Días personalizados"
817
 
818
+ #: app/features/events.php:681 app/features/fes/form.php:337
819
  #, fuzzy
820
  #| msgid "Advanced Method"
821
  msgid "Advanced"
822
  msgstr "Método avanzado"
823
 
824
+ #: app/features/events.php:686 app/features/fes/form.php:341
825
  msgid "Repeat Interval"
826
  msgstr "Intervalo de repetición"
827
 
828
+ #: app/features/events.php:688 app/features/fes/form.php:342
829
  msgid "Repeat interval"
830
  msgstr "Intervalo de repetición"
831
 
832
+ #: app/features/events.php:692 app/features/fes/form.php:345
833
  msgid "Week Days"
834
  msgstr "Días de semana"
835
 
836
+ #: app/features/events.php:709
837
  #, fuzzy
838
  #| msgid "Pro version of Modern Events Calendar"
839
  msgid ""
841
  "Calendar."
842
  msgstr "Versión Pro de Modern Events Calendar"
843
 
844
+ #: app/features/events.php:715 app/features/events.php:1865
845
+ #: app/features/events.php:1893 app/features/events.php:2031
846
  #: app/features/fes/form.php:359 app/features/ix/import_f_calendar.php:42
847
  #: app/features/ix/import_g_calendar.php:51
848
  #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
849
  msgid "Start"
850
  msgstr "Inicio"
851
 
852
+ #: app/features/events.php:728 app/features/events.php:1231
853
+ #: app/features/events.php:1351 app/features/events.php:1456
854
+ #: app/features/events.php:1849 app/features/events.php:2020
855
+ #: app/features/events.php:2100 app/features/events.php:2233
856
  #: app/features/fes/form.php:389 app/features/fes/form.php:920
857
  msgid "Add"
858
  msgstr "Añadir"
859
 
860
+ #: app/features/events.php:731 app/features/fes/form.php:392
861
  #, fuzzy
862
  #| msgid "Custom Days"
863
  msgid "Custom Days Repeating"
864
  msgstr "Días personalizados"
865
 
866
+ #: app/features/events.php:734 app/features/fes/form.php:395
867
  msgid ""
868
  "Add certain days to event occurrence dates. If you have a single day event, "
869
  "start and end dates should be the same, If you have a multiple day event, "
870
  "the start and end dates must be commensurate with the initial date."
871
  msgstr ""
872
 
873
+ #: app/features/events.php:745 app/features/events.php:1869
874
+ #: app/features/events.php:1897 app/features/events.php:2035
875
  #: app/features/fes/form.php:374
876
  msgid "End"
877
  msgstr ""
878
 
879
+ #: app/features/events.php:822 app/features/fes/form.php:468
880
  #, fuzzy
881
  #| msgid "Ticket name"
882
  msgid "First"
883
  msgstr "Nombre de la entrada"
884
 
885
+ #: app/features/events.php:864 app/features/fes/form.php:510
886
  #, fuzzy
887
  #| msgid "second"
888
  msgid "Second"
889
  msgstr "segundo"
890
 
891
+ #: app/features/events.php:906 app/features/fes/form.php:552
892
  #, fuzzy
893
  #| msgid "Third Party"
894
  msgid "Third"
895
  msgstr "Terceros"
896
 
897
+ #: app/features/events.php:948 app/features/fes/form.php:594
898
  msgid "Fourth"
899
  msgstr ""
900
 
901
+ #: app/features/events.php:990 app/features/fes/form.php:636
902
  #, fuzzy
903
  #| msgid "Last Year"
904
  msgid "Last"
905
  msgstr "Año pasado"
906
 
907
+ #: app/features/events.php:1037 app/features/fes/form.php:682
908
  msgid "Ends Repeat"
909
  msgstr "Finaliza la repetición"
910
 
911
+ #: app/features/events.php:1049 app/features/fes/form.php:686
912
  msgid "Never"
913
  msgstr "Nunca"
914
 
915
+ #: app/features/events.php:1061 app/features/fes/form.php:691
916
  msgid "On"
917
  msgstr "On"
918
 
919
+ #: app/features/events.php:1077 app/features/fes/form.php:698
920
+ #: app/features/mec/booking.php:180
921
  msgid "After"
922
  msgstr "Después"
923
 
924
+ #: app/features/events.php:1081 app/features/events.php:1085
925
  #: app/features/fes/form.php:700 app/features/fes/form.php:703
926
  msgid "Occurrences times"
927
  msgstr "Ocurrencias del evento"
928
 
929
+ #: app/features/events.php:1086
930
  #, fuzzy
931
  #| msgid ""
932
  #| "The event will finish after certain repeats. For example if you set it to "
938
  "El evento finalizará después de ciertas repeticiones. Por ejemplo, si "
939
  "estableces en 10, el evento terminará después de 10 repeticiones."
940
 
941
+ #: app/features/events.php:1101 app/features/fes/form.php:717
942
  #, fuzzy
943
  #| msgid "Next Occurrence of Other Events"
944
  msgid "Show only one occurrence of this event"
945
  msgstr "Próxima aparición de otros eventos"
946
 
947
+ #: app/features/events.php:1121 app/features/events.php:3652
948
+ #: app/features/fes/form.php:790 app/features/ix.php:3719
949
+ #: app/features/ix.php:3760 app/features/mec/settings.php:715
950
+ #: app/libraries/main.php:5950 app/libraries/main.php:5997
951
+ #: app/widgets/single.php:103
952
  msgid "Event Cost"
953
  msgstr "Coste del evento"
954
 
955
+ #: app/features/events.php:1218
956
  #, fuzzy
957
  #| msgid "Exceptional Days"
958
  msgid "Exceptional Days (Exclude Dates)"
959
  msgstr "Días excepcionales"
960
 
961
+ #: app/features/events.php:1224 app/features/events.php:1234
962
  msgid "Exclude certain days"
963
  msgstr "Excluir ciertos días"
964
 
965
+ #: app/features/events.php:1229 app/features/events.php:2448
966
+ #: app/features/events.php:2537 app/features/fes.php:233
967
+ #: app/features/mec/booking.php:585 app/features/mec/booking.php:681
968
  #: app/features/mec/single.php:185 app/features/profile/profile.php:58
969
+ #: app/libraries/main.php:3271 app/modules/booking/steps/tickets.php:94
970
+ #: app/modules/next-event/details.php:134 app/skins/single.php:933
971
  #: app/skins/single/default.php:100 app/skins/single/default.php:334
972
  #: app/skins/single/m1.php:22 app/skins/single/modern.php:197
973
  msgid "Date"
974
  msgstr "Fecha"
975
 
976
+ #: app/features/events.php:1235
977
  msgid ""
978
  "Exclude certain days from event occurrence dates. Please note that you can "
979
  "exclude only single day occurrences and you cannot exclude one day from "
980
  "multiple day occurrences."
981
  msgstr ""
982
 
983
+ #: app/features/events.php:1294 app/libraries/render.php:546
984
  msgid "Day 1"
985
  msgstr ""
986
 
987
+ #: app/features/events.php:1324
988
  msgid "Add Day"
989
  msgstr ""
990
 
991
+ #: app/features/events.php:1325
992
  msgid ""
993
  "Add new days for schedule. For example if your event is multiple days, you "
994
  "can add a different schedule for each day!"
995
  msgstr ""
996
 
997
+ #: app/features/events.php:1332
998
  #, php-format
999
  msgid "Day %s"
1000
  msgstr ""
1001
 
1002
+ #: app/features/events.php:1336 app/features/events.php:1375
1003
+ #: app/features/events.php:1410 app/features/events.php:1442
1004
+ #: app/features/events.php:1471 app/features/events.php:2248
1005
+ #: app/features/events.php:2295 app/features/events.php:3460
1006
+ #: app/features/events.php:3652 app/features/fes/form.php:248
1007
+ #: app/features/ix.php:3719 app/features/ix.php:3760
1008
+ #: app/features/mec/booking.php:482 app/features/mec/booking.php:514
1009
+ #: app/features/mec/styling.php:130
1010
  msgid "Title"
1011
  msgstr "Titulo"
1012
 
1013
+ #: app/features/events.php:1345 app/features/events.php:1382
1014
+ #: app/features/events.php:1415 app/features/events.php:1450
1015
+ #: app/features/events.php:1476 app/features/events.php:1879
1016
+ #: app/features/events.php:1905 app/features/events.php:2041
1017
+ #: app/features/events.php:2140 app/features/events.php:2176
1018
+ #: app/features/events.php:2283 app/features/events.php:2325
1019
+ #: app/features/mec/booking.php:425 app/features/mec/booking.php:454
1020
+ #: app/features/mec/booking.php:505 app/features/mec/booking.php:537
1021
+ #: app/libraries/main.php:3106 app/libraries/main.php:3135
1022
+ #: app/libraries/main.php:3164 app/libraries/main.php:3193
1023
+ #: app/libraries/main.php:3222 app/libraries/main.php:3251
1024
+ #: app/libraries/main.php:3280 app/libraries/main.php:3309
1025
+ #: app/libraries/main.php:3338 app/libraries/main.php:3359
1026
+ #: app/libraries/main.php:3390 app/libraries/main.php:3436
1027
+ #: app/libraries/main.php:3482 app/libraries/main.php:3531
1028
+ #: app/libraries/main.php:3571
1029
  msgid "Remove"
1030
  msgstr "Eliminar"
1031
 
1032
+ #: app/features/events.php:1352 app/features/events.php:1457
1033
  msgid "Add new hourly schedule row"
1034
  msgstr "Añadir nueva línea programa horario"
1035
 
1036
+ #: app/features/events.php:1367 app/features/events.php:1404
1037
+ #: app/features/events.php:1466
1038
  msgid "From e.g. 8:15"
1039
  msgstr "Desde 8:15"
1040
 
1041
+ #: app/features/events.php:1371 app/features/events.php:1407
1042
+ #: app/features/events.php:1468
1043
  msgid "To e.g. 8:45"
1044
  msgstr "a 8:45"
1045
 
1046
+ #: app/features/events.php:1379 app/features/events.php:1413
1047
+ #: app/features/events.php:1474 app/features/events.php:1770
1048
+ #: app/features/events.php:1952
1049
  msgid "Description"
1050
  msgstr "Descripción"
1051
 
1052
+ #: app/features/events.php:1385 app/features/events.php:1418
1053
+ #: app/features/events.php:1479 app/features/fes/form.php:916
1054
  #: app/features/mec.php:469 app/features/mec/modules.php:51
1055
  #: app/features/mec/settings.php:763 app/features/speakers.php:62
1056
+ #: app/libraries/main.php:569 app/libraries/main.php:5925
1057
+ #: app/libraries/main.php:5973 app/modules/speakers/details.php:18
1058
  msgid "Speakers"
1059
  msgstr ""
1060
 
1061
+ #: app/features/events.php:1438 app/features/events.php:1446
1062
  #, fuzzy
1063
  #| msgid "Week Days"
1064
  msgid "New Day"
1065
  msgstr "Días de semana"
1066
 
1067
+ #: app/features/events.php:1510 app/features/fes/form.php:767
1068
  #: app/features/mec/settings.php:709
1069
  msgid "Event Links"
1070
  msgstr "Enlaces de eventos"
1071
 
1072
+ #: app/features/events.php:1513 app/features/events.php:1519
1073
+ #: app/features/fes/form.php:769 app/libraries/main.php:5948
1074
+ #: app/libraries/main.php:5995
1075
  msgid "Event Link"
1076
  msgstr "Enlace del evento"
1077
 
1078
+ #: app/features/events.php:1516 app/features/events.php:1532
1079
  #: app/features/fes/form.php:770 app/features/fes/form.php:775
1080
  msgid "eg. http://yoursite.com/your-event"
1081
  msgstr "ej. http://yoursite.com/your-event"
1082
 
1083
+ #: app/features/events.php:1520
1084
  #, fuzzy
1085
  #| msgid ""
1086
  #| "If you fill it, it will be replaced instead of default event page link. "
1093
  "Si lo rellenas, se reemplazará en vez del enlace de la página del evento por "
1094
  "defecto. Inserta todo el enlace incluyendo http(s)://"
1095
 
1096
+ #: app/features/events.php:1522
1097
  msgid "URL Shortener"
1098
  msgstr ""
1099
 
1100
+ #: app/features/events.php:1529 app/features/events.php:1542
1101
+ #: app/features/fes/form.php:774 app/libraries/main.php:5949
1102
+ #: app/libraries/main.php:5996 app/skins/single.php:959
1103
  #: app/skins/single/default.php:159 app/skins/single/default.php:391
1104
  #: app/skins/single/m1.php:218 app/skins/single/m2.php:142
1105
  #: app/skins/single/modern.php:162 app/widgets/single.php:107
1106
  msgid "More Info"
1107
  msgstr "Más Información"
1108
 
1109
+ #: app/features/events.php:1535 app/features/fes/form.php:776
1110
  msgid "More Information"
1111
  msgstr "Más Información"
1112
 
1113
+ #: app/features/events.php:1537 app/features/fes/form.php:778
1114
  msgid "Current Window"
1115
  msgstr "Ventana actual"
1116
 
1117
+ #: app/features/events.php:1538 app/features/fes/form.php:779
1118
  msgid "New Window"
1119
  msgstr "Nueva ventana"
1120
 
1121
+ #: app/features/events.php:1543 app/features/fes/form.php:781
1122
  msgid ""
1123
  "If you fill it, it will be shown in event details page as an optional link. "
1124
  "Insert full link including http(s)://"
1126
  "Si lo rellenas, se mostrará en la página de detalles del evento como enlace "
1127
  "opcional. Inserta todo el enlace incluyendo http(s)://"
1128
 
1129
+ #: app/features/events.php:1566 app/features/mec/settings.php:777
1130
  msgid "Booking Options"
1131
  msgstr "Opciones de reserva"
1132
 
1133
+ #: app/features/events.php:1567
1134
  #, fuzzy
1135
  #| msgid "Total booking limits"
1136
  msgid "Total User Booking Limits"
1137
  msgstr "Límite total de reservas"
1138
 
1139
+ #: app/features/events.php:1568 app/features/events.php:1713
1140
+ #: app/libraries/book.php:60 app/libraries/main.php:5953
1141
  #: app/modules/booking/steps/tickets.php:119
1142
  #: app/modules/booking/steps/tickets.php:125
1143
  msgid "Tickets"
1144
  msgstr "Tickets"
1145
 
1146
+ #: app/features/events.php:1570 app/features/events.php:2077
1147
  msgid "Fees"
1148
  msgstr "Tasas"
1149
 
1150
+ #: app/features/events.php:1573 app/features/events.php:2209
1151
  #: app/features/mec/settings.php:789
1152
  msgid "Ticket Variations / Options"
1153
  msgstr ""
1154
 
1155
+ #: app/features/events.php:1577 app/features/mec/booking.php:757
1156
  #: app/features/mec/support-page.php:118
1157
  #, fuzzy
1158
  #| msgid "Organizer Tel"
1159
  msgid "Organizer Payment"
1160
  msgstr "Teléfono del Organizador"
1161
 
1162
+ #: app/features/events.php:1620 app/features/events.php:1634
1163
  #, fuzzy
1164
  #| msgid "Total booking limits"
1165
  msgid "Total booking limit"
1166
  msgstr "Límite total de reservas"
1167
 
1168
+ #: app/features/events.php:1631 app/features/events.php:1818
1169
+ #: app/features/events.php:1990 app/modules/booking/default.php:98
1170
  #: app/modules/booking/steps/tickets.php:119
1171
  #: app/modules/booking/steps/tickets.php:125
1172
  #: app/skins/available_spot/tpl.php:142
1173
  msgid "Unlimited"
1174
  msgstr "Ilimitado"
1175
 
1176
+ #: app/features/events.php:1637
1177
  msgid ""
1178
  "If you want to set a limit to all tickets, uncheck this checkbox and put a "
1179
  "limitation number."
1180
  msgstr ""
1181
 
1182
+ #: app/features/events.php:1639
1183
  msgid "Read About A Booking System"
1184
  msgstr ""
1185
 
1186
+ #: app/features/events.php:1647
1187
  msgid "100"
1188
  msgstr "100"
1189
 
1190
+ #: app/features/events.php:1649 app/features/events.php:1663
1191
  #, fuzzy
1192
  #| msgid "Next Occurrence"
1193
  msgid "Book All Occurrences"
1194
  msgstr "Siguiente repetición"
1195
 
1196
+ #: app/features/events.php:1660
1197
  msgid "Sell all occurrences by one booking"
1198
  msgstr ""
1199
 
1200
+ #: app/features/events.php:1666
1201
  msgid ""
1202
  "If you have a series of events and you want to sell all of them at once, "
1203
  "this option is for you! For example a weekly yoga course or something "
1204
  "similar."
1205
  msgstr ""
1206
 
1207
+ #: app/features/events.php:1676
1208
  #, fuzzy
1209
  #| msgid "Total booking limits"
1210
  msgid "Total user booking limits"
1211
  msgstr "Límite total de reservas"
1212
 
1213
+ #: app/features/events.php:1687 app/features/events.php:2089
1214
+ #: app/features/events.php:2221 app/features/events.php:2402
1215
  msgid "Inherit from global options"
1216
  msgstr "Heredar opciones globales"
1217
 
1218
+ #: app/features/events.php:1690
1219
  msgid "12"
1220
  msgstr ""
1221
 
1222
+ #: app/features/events.php:1716
1223
  msgid ""
1224
  "You're translating an event so MEC will use the original event for tickets "
1225
  "and booking. You can only translate the ticket name and description. Please "
1230
  "entrada. Por favor define las entradas exactas que podrías definir en un "
1231
  "evento original aquí."
1232
 
1233
+ #: app/features/events.php:1721
1234
  #, fuzzy
1235
  #| msgid "Ticket"
1236
  msgid "Add Ticket"
1237
  msgstr "Ticket"
1238
 
1239
+ #: app/features/events.php:1733 app/features/events.php:1917
1240
  #, fuzzy
1241
  #| msgid "Ticket"
1242
  msgid "Ticket ID"
1243
  msgstr "Ticket"
1244
 
1245
+ #: app/features/events.php:1733 app/features/events.php:1917
1246
+ #: app/features/events.php:3652 app/features/fes.php:233
1247
+ #: app/features/ix.php:3719 app/features/ix.php:3760
1248
  #: app/features/labels.php:177 app/features/locations.php:260
1249
  #: app/features/organizers.php:203 app/features/speakers.php:268
1250
  msgid "ID"
1251
  msgstr "ID"
1252
 
1253
+ #: app/features/events.php:1736 app/features/events.php:1920
1254
  msgid "Ticket Name"
1255
  msgstr "Nombre del ticket"
1256
 
1257
+ #: app/features/events.php:1741 app/features/events.php:1924
1258
+ #: app/features/events.php:3652 app/features/ix.php:3719
1259
+ #: app/features/ix.php:3760
1260
  msgid "Start Time"
1261
  msgstr "Hora de Inicio"
1262
 
1263
+ #: app/features/events.php:1754 app/features/events.php:1937
1264
+ #: app/features/events.php:3652 app/features/ix.php:3719
1265
+ #: app/features/ix.php:3760
1266
  msgid "End Time"
1267
  msgstr "Hora de finalización"
1268
 
1269
+ #: app/features/events.php:1775 app/features/events.php:1779
1270
+ #: app/features/events.php:1873 app/features/events.php:1900
1271
+ #: app/features/events.php:1957 app/features/events.php:1960
1272
+ #: app/features/events.php:2037 app/features/events.php:2254
1273
+ #: app/features/events.php:2258 app/features/events.php:2300
1274
+ #: app/features/events.php:2303 app/features/mec/booking.php:486
1275
+ #: app/features/mec/booking.php:489 app/features/mec/booking.php:518
1276
+ #: app/features/mec/booking.php:521
1277
  msgid "Price"
1278
  msgstr "Precio"
1279
 
1280
+ #: app/features/events.php:1780 app/features/events.php:1961
1281
  #, fuzzy
1282
  #| msgid "Insert 0 for free ticket. Only numbers please."
1283
  msgid ""
1285
  "any symbols or characters."
1286
  msgstr "Introduce un 0 para una entrada gratuita. Utiliza únicamente números."
1287
 
1288
+ #: app/features/events.php:1789 app/features/events.php:1794
1289
+ #: app/features/events.php:1970 app/features/events.php:1973
1290
  msgid "Price Label"
1291
  msgstr "Etiqueta de precio"
1292
 
1293
+ #: app/features/events.php:1795 app/features/events.php:1974
1294
  msgid "For showing on website. e.g. $15"
1295
  msgstr "Para mostrar en la web. Ej. 15€"
1296
 
1297
+ #: app/features/events.php:1805 app/features/events.php:1984
1298
  msgid "Available Tickets"
1299
  msgstr "Tickets disponibles"
1300
 
1301
+ #: app/features/events.php:1822 app/features/events.php:1994
1302
  msgid "Minimum Ticket e.g. 3"
1303
  msgstr ""
1304
 
1305
+ #: app/features/events.php:1825 app/features/events.php:1997
1306
  #, fuzzy
1307
  #| msgid "Ticket"
1308
  msgid "MinimumTicket"
1309
  msgstr "Ticket"
1310
 
1311
+ #: app/features/events.php:1827 app/features/events.php:1999
1312
  msgid "Set a number for the minimum ticket reservation possible"
1313
  msgstr ""
1314
 
1315
+ #: app/features/events.php:1835 app/features/events.php:2007
1316
  msgid "e.g. 0"
1317
  msgstr ""
1318
 
1319
+ #: app/features/events.php:1837 app/features/events.php:2009
1320
  #, fuzzy
1321
  #| msgid "Days"
1322
  msgid "Day"
1323
  msgstr "Días"
1324
 
1325
+ #: app/features/events.php:1838 app/features/events.php:2010
1326
  msgid "Hour"
1327
  msgstr ""
1328
 
1329
+ #: app/features/events.php:1840 app/features/events.php:2012
1330
  #, php-format
1331
  msgid "Stop selling ticket %s before event start."
1332
  msgstr ""
1333
 
1334
+ #: app/features/events.php:1847 app/features/events.php:2018
1335
  msgid "Price per Date"
1336
  msgstr ""
1337
 
1338
+ #: app/features/events.php:1877 app/features/events.php:1903
1339
+ #: app/features/events.php:2039 app/features/labels.php:60
1340
  #: app/features/mec/meta_boxes/display_options.php:1396
1341
  #: app/features/mec/meta_boxes/search_form.php:67
1342
  #: app/features/mec/meta_boxes/search_form.php:137
1350
  #: app/features/mec/meta_boxes/search_form.php:690
1351
  #: app/features/mec/meta_boxes/search_form.php:796
1352
  #: app/features/mec/settings.php:917 app/features/mec/single.php:341
1353
+ #: app/features/search.php:98 app/libraries/skins.php:1073
1354
  msgid "Label"
1355
  msgstr "Etiqueta"
1356
 
1357
+ #: app/features/events.php:2114 app/features/events.php:2152
1358
+ #: app/features/mec/booking.php:405 app/features/mec/booking.php:434
1359
  msgid "Fee Title"
1360
  msgstr "Título de la cuota"
1361
 
1362
+ #: app/features/events.php:2120 app/features/events.php:2124
1363
+ #: app/features/events.php:2157 app/features/events.php:2160
1364
+ #: app/features/mec/booking.php:409 app/features/mec/booking.php:412
1365
+ #: app/features/mec/booking.php:438 app/features/mec/booking.php:441
1366
  msgid "Amount"
1367
  msgstr "Cantidad"
1368
 
1369
+ #: app/features/events.php:2125 app/features/events.php:2161
1370
+ #: app/features/mec/booking.php:413 app/features/mec/booking.php:442
1371
  msgid ""
1372
  "Fee amount, considered as fixed amount if you set the type to amount "
1373
  "otherwise considered as percentage"
1375
  "Cantidad de cuota, considerada como cantidad fija si estableces el tipo de "
1376
  "cantidad, si no será considerada como porcentaje"
1377
 
1378
+ #: app/features/events.php:2134 app/features/events.php:2170
1379
+ #: app/features/mec/booking.php:420 app/features/mec/booking.php:449
1380
  msgid "Percent"
1381
  msgstr "Porcentaje"
1382
 
1383
+ #: app/features/events.php:2135 app/features/events.php:2171
1384
+ #: app/features/mec/booking.php:421 app/features/mec/booking.php:450
1385
  msgid "Amount (Per Ticket)"
1386
  msgstr "Cantidad (Por ticket)"
1387
 
1388
+ #: app/features/events.php:2136 app/features/events.php:2172
1389
+ #: app/features/mec/booking.php:422 app/features/mec/booking.php:451
1390
  msgid "Amount (Per Booking)"
1391
  msgstr "Cantidad (por reservas)"
1392
 
1393
+ #: app/features/events.php:2259 app/features/events.php:2304
1394
+ #: app/features/mec/booking.php:490 app/features/mec/booking.php:522
1395
  msgid "Option Price"
1396
  msgstr ""
1397
 
1398
+ #: app/features/events.php:2269 app/features/events.php:2273
1399
+ #: app/features/events.php:2313 app/features/events.php:2316
1400
+ #: app/features/mec/booking.php:496 app/features/mec/booking.php:499
1401
+ #: app/features/mec/booking.php:528 app/features/mec/booking.php:531
1402
  msgid "Maximum Per Ticket"
1403
  msgstr ""
1404
 
1405
+ #: app/features/events.php:2274 app/features/events.php:2317
1406
+ #: app/features/mec/booking.php:500 app/features/mec/booking.php:532
1407
  msgid "Maximum Per Ticket. Leave blank for unlimited."
1408
  msgstr ""
1409
 
1410
+ #: app/features/events.php:2414 app/features/mec/booking.php:548
1411
  #, fuzzy
1412
  #| msgid "Attendees Limit"
1413
  msgid "Per Attendee Fields"
1414
  msgstr "Límite de asistentes"
1415
 
1416
+ #: app/features/events.php:2444 app/features/mec/booking.php:581
1417
+ #: app/libraries/main.php:3126
1418
  #, fuzzy
1419
  #| msgid "Name"
1420
  msgid "MEC Name"
1421
  msgstr "Nombre"
1422
 
1423
+ #: app/features/events.php:2445 app/features/mec/booking.php:582
1424
+ #: app/libraries/main.php:3155
1425
  #, fuzzy
1426
  #| msgid "Email"
1427
  msgid "MEC Email"
1428
  msgstr "Correo electrónico"
1429
 
1430
+ #: app/features/events.php:2446 app/features/events.php:2535
1431
+ #: app/features/mec/booking.php:583 app/features/mec/booking.php:679
1432
+ #: app/features/mec/single.php:182 app/libraries/main.php:3097
1433
  msgid "Text"
1434
  msgstr "Texto"
1435
 
1436
+ #: app/features/events.php:2449 app/features/events.php:2538
1437
+ #: app/features/mec/booking.php:586 app/features/mec/booking.php:682
1438
  #: app/features/mec/single.php:186 app/features/organizers.php:103
1439
  #: app/features/organizers.php:148 app/features/speakers.php:119
1440
  #: app/features/speakers.php:192 app/features/speakers.php:271
1441
+ #: app/libraries/main.php:3300
1442
  msgid "Tel"
1443
  msgstr "Tel"
1444
 
1445
+ #: app/features/events.php:2450 app/features/mec/booking.php:587
1446
+ #: app/libraries/main.php:3242
1447
  msgid "File"
1448
  msgstr ""
1449
 
1450
+ #: app/features/events.php:2451 app/features/events.php:2539
1451
+ #: app/features/mec/booking.php:588 app/features/mec/booking.php:683
1452
+ #: app/features/mec/single.php:187 app/libraries/main.php:3329
1453
  msgid "Textarea"
1454
  msgstr "Área de texto"
1455
 
1456
+ #: app/features/events.php:2452 app/features/events.php:2540
1457
+ #: app/features/mec/booking.php:589 app/features/mec/booking.php:684
1458
+ #: app/features/mec/single.php:189 app/libraries/main.php:3381
1459
  msgid "Checkboxes"
1460
  msgstr "Checkboxes"
1461
 
1462
+ #: app/features/events.php:2453 app/features/events.php:2541
1463
+ #: app/features/mec/booking.php:590 app/features/mec/booking.php:685
1464
+ #: app/features/mec/single.php:190 app/libraries/main.php:3427
1465
  msgid "Radio Buttons"
1466
  msgstr "Botón tipo radio"
1467
 
1468
+ #: app/features/events.php:2454 app/features/events.php:2542
1469
+ #: app/features/mec/booking.php:591 app/features/mec/booking.php:686
1470
  #: app/features/mec/meta_boxes/search_form.php:34
1471
  #: app/features/mec/meta_boxes/search_form.php:41
1472
  #: app/features/mec/meta_boxes/search_form.php:49
1543
  #: app/features/mec/meta_boxes/search_form.php:792
1544
  #: app/features/mec/meta_boxes/search_form.php:799
1545
  #: app/features/mec/meta_boxes/search_form.php:813
1546
+ #: app/features/mec/single.php:191 app/libraries/main.php:3473
1547
  msgid "Dropdown"
1548
  msgstr "Desplegable"
1549
 
1550
+ #: app/features/events.php:2455 app/features/events.php:2543
1551
+ #: app/features/mec/booking.php:592 app/features/mec/booking.php:687
1552
+ #: app/libraries/main.php:3522
1553
  msgid "Agreement"
1554
  msgstr "Acuerdo"
1555
 
1556
+ #: app/features/events.php:2456 app/features/events.php:2544
1557
+ #: app/features/mec/booking.php:593 app/features/mec/booking.php:688
1558
+ #: app/features/mec/single.php:188 app/libraries/main.php:3358
1559
  msgid "Paragraph"
1560
  msgstr "Párrafo"
1561
 
1562
+ #: app/features/events.php:2505 app/features/mec/booking.php:646
1563
  #, fuzzy
1564
  #| msgid "Required Field"
1565
  msgid "Fixed Fields"
1566
  msgstr "Campo obligatorio"
1567
 
1568
+ #: app/features/events.php:3362 app/features/events.php:3380
1569
+ #: app/features/events.php:3398 app/features/events.php:3416
1570
  #, php-format
1571
  msgid "Show all %s"
1572
  msgstr "Mostrar todos %s"
1573
 
1574
+ #: app/features/events.php:3362
1575
  msgid "labels"
1576
  msgstr "etiquetas"
1577
 
1578
+ #: app/features/events.php:3380
1579
  msgid "locations"
1580
  msgstr "ubicaciones"
1581
 
1582
+ #: app/features/events.php:3398
1583
  msgid "organizers"
1584
  msgstr "organizadores"
1585
 
1586
+ #: app/features/events.php:3432
1587
  #, fuzzy
1588
  #| msgid "Attendees Limit"
1589
  msgid "Attendees List"
1590
  msgstr "Límite de asistentes"
1591
 
1592
+ #: app/features/events.php:3462 app/features/events.php:3652
1593
+ #: app/features/ix.php:3719 app/features/ix.php:3760
1594
+ #: app/features/locations.php:58 app/features/locations.php:261
1595
+ #: app/features/locations.php:322 app/features/locations.php:324
1596
+ #: app/features/locations.php:333
1597
  #: app/features/mec/meta_boxes/display_options.php:1397
1598
  #: app/features/mec/meta_boxes/search_form.php:38
1599
  #: app/features/mec/meta_boxes/search_form.php:108
1608
  #: app/features/mec/meta_boxes/search_form.php:767
1609
  #: app/features/mec/settings.php:891 app/features/mec/single.php:331
1610
  #: app/features/popup/event.php:116 app/features/popup/event.php:125
1611
+ #: app/features/search.php:74 app/libraries/main.php:2454
1612
+ #: app/libraries/main.php:5922 app/libraries/main.php:5970
1613
+ #: app/libraries/skins.php:969 app/skins/single.php:776
1614
+ #: app/skins/single.php:1219 app/skins/single/default.php:196
1615
  #: app/skins/single/default.php:429 app/skins/single/m1.php:174
1616
  #: app/skins/single/m2.php:97 app/skins/single/modern.php:116
1617
  msgid "Location"
1618
  msgstr "Localización"
1619
 
1620
+ #: app/features/events.php:3467
1621
  msgi