Modern Events Calendar Lite - Version 4.7.7

Version Description

  • 30 October 2019 =
  • Compatibility: WordPress 5.2.4
  • Added: An option to manage waiting time before redirecting to Thank You Page (pro)
  • Added: Display the total amount of purchased tickets in confirmation email (pro)
  • Added: A note to speakers' tab after adding a speaker
  • Fixed: Paypal Express (pro)
  • Fixed: Filtering options in timetable skin (pro)
  • Fixed: Disable invoice link when booking is not confirmed (pro)
  • Fixed: "Show only Expired Events" in all skins
  • Fixed: Advanced days
  • Fixed: Some minor issues
Download this release

Release Info

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

Code changes from version 4.7.6 to 4.7.7

Files changed (42) hide show
  1. app/features/contextual.php +1 -1
  2. app/features/mec/booking.php +19 -6
  3. app/features/mec/notifications.php +1 -0
  4. app/features/speakers.php +33 -0
  5. app/libraries/book.php +10 -2
  6. app/libraries/factory.php +1 -1
  7. app/libraries/main.php +12 -1
  8. app/libraries/notifications.php +7 -1
  9. app/libraries/render.php +50 -37
  10. app/skins/agenda.php +2 -2
  11. app/skins/carousel.php +2 -3
  12. app/skins/custom.php +2 -2
  13. app/skins/daily_view.php +2 -2
  14. app/skins/default_full_calendar.php +2 -2
  15. app/skins/full_calendar.php +2 -2
  16. app/skins/grid.php +2 -2
  17. app/skins/list.php +2 -2
  18. app/skins/masonry.php +2 -2
  19. app/skins/monthly_view.php +3 -3
  20. app/skins/slider.php +2 -2
  21. app/skins/timetable.php +5 -1
  22. app/skins/weekly_view.php +2 -2
  23. app/skins/yearly_view.php +3 -3
  24. assets/css/frontend.css +2 -0
  25. assets/css/frontend.min.css +1 -1
  26. assets/js/frontend.js +7 -0
  27. assets/js/jquery.nice-select.min.js +3 -3
  28. changelog.txt +13 -1
  29. languages/modern-events-calendar-lite-de_DE.mo +0 -0
  30. languages/modern-events-calendar-lite-de_DE.po +438 -398
  31. languages/modern-events-calendar-lite-en_US.mo +0 -0
  32. languages/modern-events-calendar-lite-en_US.po +431 -397
  33. languages/modern-events-calendar-lite-es_ES.mo +0 -0
  34. languages/modern-events-calendar-lite-es_ES.po +438 -398
  35. languages/modern-events-calendar-lite-fr_FR.mo +0 -0
  36. languages/modern-events-calendar-lite-fr_FR.po +438 -398
  37. languages/modern-events-calendar-lite-hu_HU.mo +0 -0
  38. languages/modern-events-calendar-lite-hu_HU.po +433 -397
  39. languages/modern-events-calendar-lite-it_IT.mo +0 -0
  40. languages/modern-events-calendar-lite-it_IT.po +438 -398
  41. languages/modern-events-calendar-lite-nb_NO.mo +0 -0
  42. languages/modern-events-calendar-lite-nb_NO.po +338 -310
app/features/contextual.php CHANGED
@@ -38,7 +38,7 @@ class MEC_feature_contextual extends MEC_base
38
  public function init()
39
  {
40
  // updating checking
41
- $this->factory->filter('contextual_help', array($this, 'contextual'), 10, 2);
42
  }
43
 
44
  public function contextual( $contextual_help, $screen_id)
38
  public function init()
39
  {
40
  // updating checking
41
+ //$this->factory->filter('contextual_help', array($this, 'contextual'), 10, 2);
42
  }
43
 
44
  public function contextual( $contextual_help, $screen_id)
app/features/mec/booking.php CHANGED
@@ -153,12 +153,25 @@ $gateways_options = $this->main->get_gateways_options();
153
  <?php endforeach; ?>
154
  </select>
155
  <span class="mec-tooltip">
156
- <div class="box top">
157
- <h5 class="title"><?php _e('Thank You Page', 'modern-events-calendar-lite'); ?></h5>
158
- <div class="content"><p><?php esc_attr_e("User redirects to this page after booking. Leave it empty if you want to disable it.", 'modern-events-calendar-lite'); ?><a href="https://webnus.net/dox/modern-events-calendar/booking/" target="_blank"><?php _e('Read More', 'modern-events-calendar-lite'); ?></a></p></div>
159
- </div>
160
- <i title="" class="dashicons-before dashicons-editor-help"></i>
161
- </span>
 
 
 
 
 
 
 
 
 
 
 
 
 
162
  </div>
163
  </div>
164
  <div class="mec-form-row">
153
  <?php endforeach; ?>
154
  </select>
155
  <span class="mec-tooltip">
156
+ <div class="box top">
157
+ <h5 class="title"><?php _e('Thank You Page', 'modern-events-calendar-lite'); ?></h5>
158
+ <div class="content"><p><?php esc_attr_e("User redirects to this page after booking. Leave it empty if you want to disable it.", 'modern-events-calendar-lite'); ?><a href="https://webnus.net/dox/modern-events-calendar/booking/" target="_blank"><?php _e('Read More', 'modern-events-calendar-lite'); ?></a></p></div>
159
+ </div>
160
+ <i title="" class="dashicons-before dashicons-editor-help"></i>
161
+ </span>
162
+ </div>
163
+ </div>
164
+ <div class="mec-form-row">
165
+ <label class="mec-col-3" for="mec_settings_booking_thankyou_page_time"><?php _e('Thank You Page Time Interval', 'modern-events-calendar-lite'); ?></label>
166
+ <div class="mec-col-4">
167
+ <input type="number" id="mec_settings_booking_thankyou_page_time" name="mec[settings][booking_thankyou_page_time]" value="<?php echo ((isset($settings['booking_thankyou_page_time']) and trim($settings['booking_thankyou_page_time']) != '0') ? $settings['booking_thankyou_page_time'] : '2000'); ?>" placeholder="<?php esc_attr_e('2000 mean 2 seconds', 'modern-events-calendar-lite'); ?>" />
168
+ <span class="mec-tooltip">
169
+ <div class="box top">
170
+ <h5 class="title"><?php _e('Thank You Page Time Interval', 'modern-events-calendar-lite'); ?></h5>
171
+ <div class="content"><p><?php esc_attr_e("Waiting time before redirecting to thank you page. It's in miliseconds so 2000 means 2 seconds.", 'modern-events-calendar-lite'); ?><a href="https://webnus.net/dox/modern-events-calendar/booking/" target="_blank"><?php _e('Read More', 'modern-events-calendar-lite'); ?></a></p></div>
172
+ </div>
173
+ <i title="" class="dashicons-before dashicons-editor-help"></i>
174
+ </span>
175
  </div>
176
  </div>
177
  <div class="mec-form-row">
app/features/mec/notifications.php CHANGED
@@ -191,6 +191,7 @@ $notifications = $this->main->get_notifications();
191
  <li><span>%%cancellation_link%%</span>: <?php _e('Booking cancellation link.', 'modern-events-calendar-lite'); ?></li>
192
  <li><span>%%invoice_link%%</span>: <?php _e('Invoice Link', 'modern-events-calendar-lite'); ?></li>
193
  <li><span>%%total_attendees%%</span>: <?php _e('Total Attendees', 'modern-events-calendar-lite'); ?></li>
 
194
  <li><span>%%ticket_name%%</span>: <?php _e('Ticket name', 'modern-events-calendar-lite'); ?></li>
195
  <li><span>%%ticket_time%%</span>: <?php _e('Ticket time', 'modern-events-calendar-lite'); ?></li>
196
  <li><span>%%ics_link%%</span>: <?php _e('Download ICS file', 'modern-events-calendar-lite'); ?></li>
191
  <li><span>%%cancellation_link%%</span>: <?php _e('Booking cancellation link.', 'modern-events-calendar-lite'); ?></li>
192
  <li><span>%%invoice_link%%</span>: <?php _e('Invoice Link', 'modern-events-calendar-lite'); ?></li>
193
  <li><span>%%total_attendees%%</span>: <?php _e('Total Attendees', 'modern-events-calendar-lite'); ?></li>
194
+ <li><span>%%amount_tickets%%</span>: <?php _e('Amount Tickets', 'modern-events-calendar-lite'); ?></li>
195
  <li><span>%%ticket_name%%</span>: <?php _e('Ticket name', 'modern-events-calendar-lite'); ?></li>
196
  <li><span>%%ticket_time%%</span>: <?php _e('Ticket time', 'modern-events-calendar-lite'); ?></li>
197
  <li><span>%%ics_link%%</span>: <?php _e('Download ICS file', 'modern-events-calendar-lite'); ?></li>
app/features/speakers.php CHANGED
@@ -46,6 +46,8 @@ class MEC_feature_speakers extends MEC_base
46
  $this->factory->action('wp_ajax_speaker_adding', array($this, 'fes_speaker_adding'));
47
  $this->factory->action('wp_ajax_nopriv_speaker_adding', array($this, 'fes_speaker_adding'));
48
 
 
 
49
  $this->factory->filter('manage_edit-mec_speaker_columns', array($this, 'filter_columns'));
50
  $this->factory->filter('manage_mec_speaker_custom_column', array($this, 'filter_columns_content'), 10, 3);
51
  }
@@ -340,4 +342,35 @@ class MEC_feature_speakers extends MEC_base
340
  echo $speakers;
341
  exit;
342
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
343
  }
46
  $this->factory->action('wp_ajax_speaker_adding', array($this, 'fes_speaker_adding'));
47
  $this->factory->action('wp_ajax_nopriv_speaker_adding', array($this, 'fes_speaker_adding'));
48
 
49
+ $this->factory->action('current_screen', array($this, 'show_notics'));
50
+
51
  $this->factory->filter('manage_edit-mec_speaker_columns', array($this, 'filter_columns'));
52
  $this->factory->filter('manage_mec_speaker_custom_column', array($this, 'filter_columns_content'), 10, 3);
53
  }
342
  echo $speakers;
343
  exit;
344
  }
345
+
346
+ public function show_notics($screen)
347
+ {
348
+ if(isset($screen->id) and $screen->id == 'edit-mec_speaker')
349
+ {
350
+ add_action('admin_footer', function ()
351
+ {
352
+ echo "<script>
353
+ var xhrObject = window.XMLHttpRequest;
354
+ function ajaxXHR()
355
+ {
356
+ var xmlHttp = new xhrObject();
357
+ xmlHttp.addEventListener('readystatechange', function (xhr)
358
+ {
359
+ if(xmlHttp.readyState == 4 && xmlHttp.status == 200)
360
+ {
361
+ if(xhr.currentTarget.responseText.indexOf('tr') != -1)
362
+ {
363
+ jQuery('.form-wrap').find('.warning-msg').remove();
364
+ jQuery('.form-wrap').append('<div class=\"warning-msg\"><p>" . __('Note: You can use the speakers in your event edit/add page > hourly schedule section and speaker widget section!', 'modern-events-calendar-lite') . "</p></div>');
365
+ }
366
+ }
367
+ });
368
+
369
+ return xmlHttp;
370
+ }
371
+ window.XMLHttpRequest = ajaxXHR;
372
+ </script>";
373
+ });
374
+ }
375
+ }
376
  }
app/libraries/book.php CHANGED
@@ -366,15 +366,20 @@ class MEC_book extends MEC_base
366
  * @author Webnus <info@webnus.biz>
367
  * @param int $event_id
368
  * @param string $date
 
369
  * @return array
370
  */
371
- public function get_tickets_availability($event_id, $date)
372
  {
373
  $availability = array();
374
  $tickets = get_post_meta($event_id, 'mec_tickets', true);
375
 
376
  // No Ticket Found!
377
- if(!is_array($tickets) or (is_array($tickets) and !count($tickets))) return $availability;
 
 
 
 
378
 
379
  $booking_options = get_post_meta($event_id, 'mec_booking', true);
380
  if(!is_array($booking_options)) $booking_options = array();
@@ -455,6 +460,9 @@ class MEC_book extends MEC_base
455
  $availability[$ticket_id] = $ticket_availability >= 0 ? $ticket_availability : 0;
456
  }
457
 
 
 
 
458
  // Set Total Booking Limit
459
  $availability['total'] = $total_bookings_limit;
460
 
366
  * @author Webnus <info@webnus.biz>
367
  * @param int $event_id
368
  * @param string $date
369
+ * @param string $mode
370
  * @return array
371
  */
372
+ public function get_tickets_availability($event_id, $date, $mode = 'availability')
373
  {
374
  $availability = array();
375
  $tickets = get_post_meta($event_id, 'mec_tickets', true);
376
 
377
  // No Ticket Found!
378
+ if(!is_array($tickets) or (is_array($tickets) and !count($tickets)))
379
+ {
380
+ if($mode == 'reservation') return 0;
381
+ else return $availability;
382
+ }
383
 
384
  $booking_options = get_post_meta($event_id, 'mec_booking', true);
385
  if(!is_array($booking_options)) $booking_options = array();
460
  $availability[$ticket_id] = $ticket_availability >= 0 ? $ticket_availability : 0;
461
  }
462
 
463
+ // For the time being set reservation parameter
464
+ if($mode == 'reservation') return $booked;
465
+
466
  // Set Total Booking Limit
467
  $availability['total'] = $total_bookings_limit;
468
 
app/libraries/factory.php CHANGED
@@ -882,7 +882,7 @@ class MEC_factory extends MEC_base
882
  foreach($calendars as $calendar)
883
  {
884
  // Calendar exists
885
- if(post_exists($calendar['title'], 'modern-events-calendar-lite')) continue;
886
 
887
  $post = array('post_title'=>$calendar['title'], 'post_content'=>'MEC', 'post_type'=>'mec_calendars', 'post_status'=>'publish');
888
  $post_id = wp_insert_post($post);
882
  foreach($calendars as $calendar)
883
  {
884
  // Calendar exists
885
+ if(post_exists($calendar['title'], 'MEC')) continue;
886
 
887
  $post = array('post_title'=>$calendar['title'], 'post_content'=>'MEC', 'post_type'=>'mec_calendars', 'post_status'=>'publish');
888
  $post_id = wp_insert_post($post);
app/libraries/main.php CHANGED
@@ -1995,10 +1995,21 @@ class MEC_main extends MEC_base
1995
  // Libraries
1996
  $book = $this->getBook();
1997
  $render = $this->getRender();
1998
-
 
1999
  $transaction = $book->get_transaction($transaction_id);
2000
  $event_id = isset($transaction['event_id']) ? $transaction['event_id'] : 0;
2001
 
 
 
 
 
 
 
 
 
 
 
2002
  if(!$event_id)
2003
  {
2004
  wp_die(__('Cannot find the booking!', 'modern-events-calendar-lite'), __('Booking is invalid.', 'modern-events-calendar-lite'), array('back_link'=>true));
1995
  // Libraries
1996
  $book = $this->getBook();
1997
  $render = $this->getRender();
1998
+ $db = $this->getDB();
1999
+
2000
  $transaction = $book->get_transaction($transaction_id);
2001
  $event_id = isset($transaction['event_id']) ? $transaction['event_id'] : 0;
2002
 
2003
+ // Dont Show PDF If Booking Confirmation Status Equals Pending
2004
+ $book_id = $db->select("SELECT `post_id` FROM `#__postmeta` WHERE `meta_value`='".$transaction_id."' AND `meta_key`='mec_transaction_id'", 'loadResult');
2005
+ $mec_confirmed = get_post_meta($book_id, 'mec_confirmed', true);
2006
+
2007
+ if(!$mec_confirmed)
2008
+ {
2009
+ wp_die(__('Your booking still is not confirmed. You able download it after confirmation!', 'modern-events-calendar-lite'), __('Booking Not Confirmed.', 'modern-events-calendar-lite'), array('back_link'=>true));
2010
+ exit;
2011
+ }
2012
+
2013
  if(!$event_id)
2014
  {
2015
  wp_die(__('Cannot find the booking!', 'modern-events-calendar-lite'), __('Booking is invalid.', 'modern-events-calendar-lite'), array('back_link'=>true));
app/libraries/notifications.php CHANGED
@@ -757,7 +757,13 @@ class MEC_notifications extends MEC_base
757
  $price = get_post_meta($book_id, 'mec_price', true);
758
  $message = str_replace('%%book_price%%', $this->main->render_price(($price ? $price : 0)), $message);
759
  $message = str_replace('%%total_attendees%%', $this->book->get_total_attendees($book_id), $message);
760
-
 
 
 
 
 
 
761
  // Event Data
762
  $organizer_id = get_post_meta($event_id, 'mec_organizer_id', true);
763
  $location_id = get_post_meta($event_id, 'mec_location_id', true);
757
  $price = get_post_meta($book_id, 'mec_price', true);
758
  $message = str_replace('%%book_price%%', $this->main->render_price(($price ? $price : 0)), $message);
759
  $message = str_replace('%%total_attendees%%', $this->book->get_total_attendees($book_id), $message);
760
+
761
+ $event_id = get_post_meta($book_id, 'mec_event_id', true);
762
+ $mec_date = explode(':', get_post_meta($book_id, 'mec_date', true));
763
+
764
+ if(count($mec_date) == 2 and isset($mec_date[0]))
765
+ $message = str_replace('%%amount_tickets%%', $this->book->get_tickets_availability($event_id, current($mec_date), 'reservation'), $message);
766
+
767
  // Event Data
768
  $organizer_id = get_post_meta($event_id, 'mec_organizer_id', true);
769
  $location_id = get_post_meta($event_id, 'mec_location_id', true);
app/libraries/render.php CHANGED
@@ -888,25 +888,28 @@ class MEC_render extends MEC_base
888
  * Render advanced dates
889
  * @author Webnus <info@webnus.biz>
890
  * @param array $advanced_days
 
 
 
 
891
  * @return array
892
  */
893
- function generate_advanced_days($advanced_days = array(), $event_info = array(), $maximum = 6, $today = NULL, $mode = 'render')
894
  {
895
  if(!count($advanced_days)) return array();
896
- if(!trim($today)) $today = date( 'Y-m-d', current_time( 'timestamp', 0 ));
897
-
898
  $levels = array('first', 'second', 'third', 'fourth', 'last');
899
  $year = date('Y');
900
  $dates = array();
901
-
902
  // Set last month for include current month results
903
- $month = date('m', strtotime('first day of last month'));
904
  $current_day = date("d");
905
- $last_day =substr(end($advanced_days), 0, 3);
906
-
907
  $maximum = intval($maximum);
908
  $i = 0;
909
-
910
  // Event info
911
  $exceptional_days = array_key_exists('exceptional_days', $event_info) ? $event_info['exceptional_days'] : array();
912
  $start_date = $event_info['start'];
@@ -918,76 +921,86 @@ class MEC_render extends MEC_base
918
  $event_period_days = $event_period ? $event_period->days : 0;
919
  $mec_repeat_end = array_key_exists('mec_repeat_end', $event_info) ? $event_info['mec_repeat_end'] : '';
920
  $occurrences = array_key_exists('occurrences', $event_info) ? $event_info['occurrences'] : 0;
921
-
922
  // Include default start date to resualts
923
- if(!$this->main->is_past($start_date['date'], $today) and !in_array($start_date['date'], $exceptional_days))
924
  {
925
  $dates[] = array(
926
  'start' => $start_date,
927
  'end' => $end_date,
928
  'allday' => $allday,
929
  'hide_time' => $hide_time,
930
- 'past' => 0
931
  );
932
-
933
  if($mode == 'render') $i++;
934
  }
935
-
936
- while($i < $maximum)
 
937
  {
938
  foreach($advanced_days as $day)
939
  {
940
  if($i >= $maximum) break;
941
-
942
  // Explode $day value for example (Sun.1) to Sun and 1
943
  $d = explode('.', $day);
944
-
945
  // Set indexes for {$levels} index if number day is Last(Sun.l) then indexes set 4th {$levels} index
946
  $index = intval($d[1]) ? (intval($d[1]) - 1) : 4;
947
-
948
  // Generate date
949
  $date = "{$year}-{$month}-{$current_day}";
950
-
951
  // Generate start date for example "first Sun of next month"
952
  $start = date('Y-m-d', strtotime("{$levels[$index]} {$d[0]} of next month", strtotime(date($date))));
953
  $end = date('Y-m-d', strtotime("+{$event_period_days} Days", strtotime($start)));
954
-
955
  // When ends repeat date set
956
- if($mode == 'render' and $this->main->is_past($finish_date, $start)) continue;
957
-
958
  // Jump to next level if start date is past
959
- if($this->main->is_past($start, $today) or in_array($start, $exceptional_days)) continue;
960
-
961
  // Add dates
962
  $dates[] = array(
963
- 'start' => array('date'=>$start, 'hour'=>$start_date['hour'], 'minutes'=>$start_date['minutes'], 'ampm'=>$start_date['ampm']),
964
- 'end' => array('date'=>$end, 'hour'=>$end_date['hour'], 'minutes'=>$end_date['minutes'], 'ampm'=>$end_date['ampm']),
 
 
 
 
 
 
 
 
 
965
  'allday' => $allday,
966
  'hide_time' => $hide_time,
967
- 'past' => 0
968
  );
969
-
970
  $i++;
971
  }
972
-
973
  // When ends repeat date set
974
  if($mode == 'render' and $this->main->is_past($finish_date, $start)) break;
975
-
976
  // Change month and years for next resualts
977
  if(intval($month) == 12)
978
  {
979
- $year = intval($year)+1;
980
  $month = '00';
981
  }
982
-
983
- $month = sprintf("%02d", intval($month)+1);
984
  }
985
-
986
- if($mode == 'render' and trim($mec_repeat_end) == 'occurrences' and count($dates) > $occurrences)
987
  {
988
  $max = strtotime(reset($dates)['start']['date']);
989
  $pos = 0;
990
-
991
  for($i = 1; $i < count($dates); $i++)
992
  {
993
  if(strtotime($dates[$i]['start']['date']) > $max)
@@ -996,10 +1009,10 @@ class MEC_render extends MEC_base
996
  $pos = $i;
997
  }
998
  }
999
-
1000
  unset($dates[$pos]);
1001
  }
1002
-
1003
  return $dates;
1004
  }
1005
 
888
  * Render advanced dates
889
  * @author Webnus <info@webnus.biz>
890
  * @param array $advanced_days
891
+ * @param array $event_info
892
+ * @param int $maximum
893
+ * @param string $referer_date
894
+ * @param string $mode
895
  * @return array
896
  */
897
+ public function generate_advanced_days($advanced_days = array(), $event_info = array(), $maximum = 6, $referer_date = NULL, $mode = 'render')
898
  {
899
  if(!count($advanced_days)) return array();
900
+ if(!trim($referer_date)) $referer_date = date('Y-m-d', current_time('timestamp', 0));
901
+
902
  $levels = array('first', 'second', 'third', 'fourth', 'last');
903
  $year = date('Y');
904
  $dates = array();
905
+
906
  // Set last month for include current month results
907
+ $month = date('m', strtotime('first day of last month', strtotime($event_info['start']['date'])));
908
  $current_day = date("d");
909
+
 
910
  $maximum = intval($maximum);
911
  $i = 0;
912
+
913
  // Event info
914
  $exceptional_days = array_key_exists('exceptional_days', $event_info) ? $event_info['exceptional_days'] : array();
915
  $start_date = $event_info['start'];
921
  $event_period_days = $event_period ? $event_period->days : 0;
922
  $mec_repeat_end = array_key_exists('mec_repeat_end', $event_info) ? $event_info['mec_repeat_end'] : '';
923
  $occurrences = array_key_exists('occurrences', $event_info) ? $event_info['occurrences'] : 0;
924
+
925
  // Include default start date to resualts
926
+ if(!$this->main->is_past($start_date['date'], $referer_date) and !in_array($start_date['date'], $exceptional_days))
927
  {
928
  $dates[] = array(
929
  'start' => $start_date,
930
  'end' => $end_date,
931
  'allday' => $allday,
932
  'hide_time' => $hide_time,
933
+ 'past' => 0,
934
  );
935
+
936
  if($mode == 'render') $i++;
937
  }
938
+
939
+ $referer_date = $event_info['start']['date'];
940
+ while($i < $maximum)
941
  {
942
  foreach($advanced_days as $day)
943
  {
944
  if($i >= $maximum) break;
945
+
946
  // Explode $day value for example (Sun.1) to Sun and 1
947
  $d = explode('.', $day);
948
+
949
  // Set indexes for {$levels} index if number day is Last(Sun.l) then indexes set 4th {$levels} index
950
  $index = intval($d[1]) ? (intval($d[1]) - 1) : 4;
951
+
952
  // Generate date
953
  $date = "{$year}-{$month}-{$current_day}";
954
+
955
  // Generate start date for example "first Sun of next month"
956
  $start = date('Y-m-d', strtotime("{$levels[$index]} {$d[0]} of next month", strtotime(date($date))));
957
  $end = date('Y-m-d', strtotime("+{$event_period_days} Days", strtotime($start)));
958
+
959
  // When ends repeat date set
960
+ if ($mode == 'render' and $this->main->is_past($finish_date, $start)) continue;
961
+
962
  // Jump to next level if start date is past
963
+ if ($this->main->is_past($start, $referer_date) or in_array($start, $exceptional_days)) continue;
964
+
965
  // Add dates
966
  $dates[] = array(
967
+ 'start' => array(
968
+ 'date' => $start,
969
+ 'hour' => $start_date['hour'],
970
+ 'minutes' => $start_date['minutes'],
971
+ 'ampm' => $start_date['ampm'],
972
+ ),
973
+ 'end' => array('date' => $end,
974
+ 'hour' => $end_date['hour'],
975
+ 'minutes' => $end_date['minutes'],
976
+ 'ampm' => $end_date['ampm'],
977
+ ),
978
  'allday' => $allday,
979
  'hide_time' => $hide_time,
980
+ 'past' => 0,
981
  );
982
+
983
  $i++;
984
  }
985
+
986
  // When ends repeat date set
987
  if($mode == 'render' and $this->main->is_past($finish_date, $start)) break;
988
+
989
  // Change month and years for next resualts
990
  if(intval($month) == 12)
991
  {
992
+ $year = intval($year) + 1;
993
  $month = '00';
994
  }
995
+
996
+ $month = sprintf("%02d", intval($month) + 1);
997
  }
998
+
999
+ if(($mode == 'render') and (trim($mec_repeat_end) == 'occurrences') and (count($dates) > $occurrences))
1000
  {
1001
  $max = strtotime(reset($dates)['start']['date']);
1002
  $pos = 0;
1003
+
1004
  for($i = 1; $i < count($dates); $i++)
1005
  {
1006
  if(strtotime($dates[$i]['start']['date']) > $max)
1009
  $pos = $i;
1010
  }
1011
  }
1012
+
1013
  unset($dates[$pos]);
1014
  }
1015
+
1016
  return $dates;
1017
  }
1018
 
app/skins/agenda.php CHANGED
@@ -201,8 +201,8 @@ class MEC_skin_agenda extends MEC_skins
201
  // Show only expired events
202
  if(isset($this->show_only_expired_events) and $this->show_only_expired_events)
203
  {
204
- $yesterday = date('Y-m-d', strtotime('Yesterday'));
205
- if(strtotime($date) > strtotime($yesterday)) $date = $yesterday;
206
  }
207
 
208
  return $date;
201
  // Show only expired events
202
  if(isset($this->show_only_expired_events) and $this->show_only_expired_events)
203
  {
204
+ $now = date('Y-m-d H:i:s', current_time('timestamp', 0));
205
+ if(strtotime($date) > strtotime($now)) $date = $now;
206
  }
207
 
208
  return $date;
app/skins/carousel.php CHANGED
@@ -73,7 +73,6 @@ class MEC_skin_carousel extends MEC_skins
73
 
74
  // Override the style if the style forced by us in a widget etc
75
  if(isset($this->atts['style']) and trim($this->atts['style']) != '') $this->style = $this->atts['style'];
76
-
77
 
78
  // HTML class
79
  $this->html_class = '';
@@ -178,8 +177,8 @@ class MEC_skin_carousel extends MEC_skins
178
  // Show only expired events
179
  if(isset($this->show_only_expired_events) and $this->show_only_expired_events)
180
  {
181
- $yesterday = date('Y-m-d', strtotime('Yesterday'));
182
- if(strtotime($date) > strtotime($yesterday)) $date = $yesterday;
183
  }
184
 
185
  return $date;
73
 
74
  // Override the style if the style forced by us in a widget etc
75
  if(isset($this->atts['style']) and trim($this->atts['style']) != '') $this->style = $this->atts['style'];
 
76
 
77
  // HTML class
78
  $this->html_class = '';
177
  // Show only expired events
178
  if(isset($this->show_only_expired_events) and $this->show_only_expired_events)
179
  {
180
+ $now = date('Y-m-d H:i:s', current_time('timestamp', 0));
181
+ if(strtotime($date) > strtotime($now)) $date = $now;
182
  }
183
 
184
  return $date;
app/skins/custom.php CHANGED
@@ -235,8 +235,8 @@ class MEC_skin_custom extends MEC_skins
235
  // Show only expired events
236
  if(isset($this->show_only_expired_events) and $this->show_only_expired_events)
237
  {
238
- $yesterday = date('Y-m-d', strtotime('Yesterday'));
239
- if(strtotime($date) > strtotime($yesterday)) $date = $yesterday;
240
  }
241
 
242
  return $date;
235
  // Show only expired events
236
  if(isset($this->show_only_expired_events) and $this->show_only_expired_events)
237
  {
238
+ $now = date('Y-m-d H:i:s', current_time('timestamp', 0));
239
+ if(strtotime($date) > strtotime($now)) $date = $now;
240
  }
241
 
242
  return $date;
app/skins/daily_view.php CHANGED
@@ -125,7 +125,7 @@ class MEC_skin_daily_view extends MEC_skins
125
  $this->active_day = $this->year.'-'.$this->month.'-'.$this->day;
126
 
127
  // Set the maximum date in current month
128
- if($this->show_only_expired_events) $this->maximum_date = date('Y-m-d', strtotime('Yesterday'));
129
 
130
  // We will extend the end date in the loop
131
  $this->end_date = $this->start_date;
@@ -140,7 +140,7 @@ class MEC_skin_daily_view extends MEC_skins
140
  {
141
  if($this->show_only_expired_events)
142
  {
143
- $start = current_time('Y-m-d');
144
  $end = $this->start_date;
145
  }
146
  else
125
  $this->active_day = $this->year.'-'.$this->month.'-'.$this->day;
126
 
127
  // Set the maximum date in current month
128
+ if($this->show_only_expired_events) $this->maximum_date = date('Y-m-d H:i:s', current_time('timestamp', 0));
129
 
130
  // We will extend the end date in the loop
131
  $this->end_date = $this->start_date;
140
  {
141
  if($this->show_only_expired_events)
142
  {
143
+ $start = date('Y-m-d H:i:s', current_time('timestamp', 0));
144
  $end = $this->start_date;
145
  }
146
  else
app/skins/default_full_calendar.php CHANGED
@@ -120,8 +120,8 @@ class MEC_skin_default_full_calendar extends MEC_skins
120
  // Show only expired events
121
  if(isset($this->show_expired_events) and $this->show_expired_events)
122
  {
123
- $yesterday = date('Y-m-d', strtotime('Yesterday'));
124
- if(strtotime($date) > strtotime($yesterday)) $date = $yesterday;
125
  }
126
 
127
  return $date;
120
  // Show only expired events
121
  if(isset($this->show_expired_events) and $this->show_expired_events)
122
  {
123
+ $now = date('Y-m-d H:i:s', current_time('timestamp', 0));
124
+ if(strtotime($date) > strtotime($now)) $date = $now;
125
  }
126
 
127
  return $date;
app/skins/full_calendar.php CHANGED
@@ -120,8 +120,8 @@ class MEC_skin_full_calendar extends MEC_skins
120
  // Show only expired events
121
  if(isset($this->show_expired_events) and $this->show_expired_events)
122
  {
123
- $yesterday = date('Y-m-d', strtotime('Yesterday'));
124
- if(strtotime($date) > strtotime($yesterday)) $date = $yesterday;
125
  }
126
 
127
  return $date;
120
  // Show only expired events
121
  if(isset($this->show_expired_events) and $this->show_expired_events)
122
  {
123
+ $now = date('Y-m-d H:i:s', current_time('timestamp', 0));
124
+ if(strtotime($date) > strtotime($now)) $date = $now;
125
  }
126
 
127
  return $date;
app/skins/grid.php CHANGED
@@ -235,8 +235,8 @@ class MEC_skin_grid extends MEC_skins
235
  // Show only expired events
236
  if(isset($this->show_only_expired_events) and $this->show_only_expired_events)
237
  {
238
- $yesterday = date('Y-m-d', strtotime('Yesterday'));
239
- if(strtotime($date) > strtotime($yesterday)) $date = $yesterday;
240
  }
241
 
242
  return $date;
235
  // Show only expired events
236
  if(isset($this->show_only_expired_events) and $this->show_only_expired_events)
237
  {
238
+ $now = date('Y-m-d H:i:s', current_time('timestamp', 0));
239
+ if(strtotime($date) > strtotime($now)) $date = $now;
240
  }
241
 
242
  return $date;
app/skins/list.php CHANGED
@@ -231,8 +231,8 @@ class MEC_skin_list extends MEC_skins
231
  // Show only expired events
232
  if(isset($this->show_only_expired_events) and $this->show_only_expired_events)
233
  {
234
- $yesterday = date('Y-m-d', strtotime('Yesterday'));
235
- if(strtotime($date) > strtotime($yesterday)) $date = $yesterday;
236
  }
237
 
238
  return $date;
231
  // Show only expired events
232
  if(isset($this->show_only_expired_events) and $this->show_only_expired_events)
233
  {
234
+ $now = date('Y-m-d H:i:s', current_time('timestamp', 0));
235
+ if(strtotime($date) > strtotime($now)) $date = $now;
236
  }
237
 
238
  return $date;
app/skins/masonry.php CHANGED
@@ -191,8 +191,8 @@ class MEC_skin_masonry extends MEC_skins
191
  // Show only expired events
192
  if(isset($this->show_only_expired_events) and $this->show_only_expired_events)
193
  {
194
- $yesterday = date('Y-m-d', strtotime('Yesterday'));
195
- if(strtotime($date) > strtotime($yesterday)) $date = $yesterday;
196
  }
197
 
198
  return $date;
191
  // Show only expired events
192
  if(isset($this->show_only_expired_events) and $this->show_only_expired_events)
193
  {
194
+ $now = date('Y-m-d H:i:s', current_time('timestamp', 0));
195
+ if(strtotime($date) > strtotime($now)) $date = $now;
196
  }
197
 
198
  return $date;
app/skins/monthly_view.php CHANGED
@@ -146,7 +146,7 @@ class MEC_skin_monthly_view extends MEC_skins
146
  {
147
  if($this->show_only_expired_events)
148
  {
149
- $start = current_time('Y-m-d');
150
  $end = $this->start_date;
151
  }
152
  else
@@ -274,8 +274,8 @@ class MEC_skin_monthly_view extends MEC_skins
274
 
275
  if($this->show_only_expired_events)
276
  {
277
- $this->start_date = date('Y-m-t', strtotime($this->year.'-'.$this->month.'-01'));
278
- $this->active_day = $this->start_date;
279
  }
280
  else
281
  {
146
  {
147
  if($this->show_only_expired_events)
148
  {
149
+ $start = date('Y-m-d H:i:s', current_time('timestamp', 0));
150
  $end = $this->start_date;
151
  }
152
  else
274
 
275
  if($this->show_only_expired_events)
276
  {
277
+ $this->start_date = date('Y-m-d', strtotime($this->year.'-'.$this->month.'-01'));
278
+ $this->active_day = date('Y-m-t', strtotime($this->year.'-'.$this->month.'-01'));
279
  }
280
  else
281
  {
app/skins/slider.php CHANGED
@@ -184,8 +184,8 @@ class MEC_skin_slider extends MEC_skins
184
  // Show only expired events
185
  if(isset($this->show_only_expired_events) and $this->show_only_expired_events)
186
  {
187
- $yesterday = date('Y-m-d', strtotime('Yesterday'));
188
- if(strtotime($date) > strtotime($yesterday)) $date = $yesterday;
189
  }
190
 
191
  return $date;
184
  // Show only expired events
185
  if(isset($this->show_only_expired_events) and $this->show_only_expired_events)
186
  {
187
+ $now = date('Y-m-d H:i:s', current_time('timestamp', 0));
188
+ if(strtotime($date) > strtotime($now)) $date = $now;
189
  }
190
 
191
  return $date;
app/skins/timetable.php CHANGED
@@ -304,7 +304,11 @@ class MEC_skin_timetable extends MEC_skins
304
  $this->year = $this->request->getVar('mec_year', date('Y'));
305
  $this->month = $this->request->getVar('mec_month', date('m'));
306
  $this->week = 1;
307
-
 
 
 
 
308
  $this->start_date = $this->year.'-'.$this->month.'-01';
309
 
310
  // We will extend the end date in the loop
304
  $this->year = $this->request->getVar('mec_year', date('Y'));
305
  $this->month = $this->request->getVar('mec_month', date('m'));
306
  $this->week = 1;
307
+
308
+ // Set MEC Year And Month If Disable Options
309
+ if(!trim($this->year)) $this->year = date('Y');
310
+ if(!trim($this->month)) $this->month = date('m');
311
+
312
  $this->start_date = $this->year.'-'.$this->month.'-01';
313
 
314
  // We will extend the end date in the loop
app/skins/weekly_view.php CHANGED
@@ -125,7 +125,7 @@ class MEC_skin_weekly_view extends MEC_skins
125
  $this->start_date = $this->year.'-'.$this->month.'-01';
126
 
127
  // Set the maximum date in current month
128
- if($this->show_only_expired_events) $this->maximum_date = date('Y-m-d', strtotime('Yesterday'));
129
 
130
  // We will extend the end date in the loop
131
  $this->end_date = $this->start_date;
@@ -145,7 +145,7 @@ class MEC_skin_weekly_view extends MEC_skins
145
  {
146
  if($this->show_only_expired_events)
147
  {
148
- $start = current_time('Y-m-d');
149
  $end = $this->start_date;
150
  }
151
  else
125
  $this->start_date = $this->year.'-'.$this->month.'-01';
126
 
127
  // Set the maximum date in current month
128
+ if($this->show_only_expired_events) $this->maximum_date = date('Y-m-d H:i:s', current_time('timestamp', 0));
129
 
130
  // We will extend the end date in the loop
131
  $this->end_date = $this->start_date;
145
  {
146
  if($this->show_only_expired_events)
147
  {
148
+ $start = date('Y-m-d H:i:s', current_time('timestamp', 0));
149
  $end = $this->start_date;
150
  }
151
  else
app/skins/yearly_view.php CHANGED
@@ -149,8 +149,8 @@ class MEC_skin_yearly_view extends MEC_skins
149
  {
150
  if($this->show_only_expired_events)
151
  {
152
- $start = current_time('Y-m-d');
153
- $end = $this->start_date;
154
  }
155
  else
156
  {
@@ -255,7 +255,7 @@ class MEC_skin_yearly_view extends MEC_skins
255
 
256
  if($this->show_only_expired_events)
257
  {
258
- $this->start_date = date('Y-m-t', strtotime($this->year.'-01-01'));
259
  $this->active_day = $this->start_date;
260
  }
261
  else
149
  {
150
  if($this->show_only_expired_events)
151
  {
152
+ $start = date('Y-m-d H:i:s', current_time('timestamp', 0));
153
+ $end = date('Y-01-01', strtotime($this->start_date));
154
  }
155
  else
156
  {
255
 
256
  if($this->show_only_expired_events)
257
  {
258
+ $this->start_date = date('Y-m-01', strtotime($this->year.'-01-01'));
259
  $this->active_day = $this->start_date;
260
  }
261
  else
assets/css/frontend.css CHANGED
@@ -5695,6 +5695,7 @@ li.mec-no-event-found .mec-event-title {
5695
  -webkit-transition: all .21s ease;
5696
  -moz-transition: all .21s ease;
5697
  transition: all .21s ease;
 
5698
  }
5699
 
5700
  .mec-fes-list-top-actions a:hover,
@@ -5774,6 +5775,7 @@ li.mec-no-event-found .mec-event-title {
5774
  height: 40px;
5775
  max-width: 280px;
5776
  color: #798f96;
 
5777
  }
5778
 
5779
  .mec-fes-form input {
5695
  -webkit-transition: all .21s ease;
5696
  -moz-transition: all .21s ease;
5697
  transition: all .21s ease;
5698
+ text-decoration: unset;
5699
  }
5700
 
5701
  .mec-fes-list-top-actions a:hover,
5775
  height: 40px;
5776
  max-width: 280px;
5777
  color: #798f96;
5778
+ font-family: inherit;
5779
  }
5780
 
5781
  .mec-fes-form input {
assets/css/frontend.min.css CHANGED
@@ -1 +1 @@
1
- .lity-container,.mec-wrap,.mec-wrap div:not([class^=elementor-]){font-family:Montserrat,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif}.entry-content .mec-wrap h1,.entry-content .mec-wrap h2,.entry-content .mec-wrap h3,.entry-content .mec-wrap h4,.entry-content .mec-wrap h5,.entry-content .mec-wrap h6,.mec-wrap h1,.mec-wrap h2,.mec-wrap h3,.mec-wrap h4,.mec-wrap h5,.mec-wrap h6{font-family:Montserrat,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;color:#171c24;font-weight:300;font-style:inherit;letter-spacing:normal;clear:none}.mec-wrap h1{font-size:50px;line-height:1.16;margin-bottom:12px;letter-spacing:-1px}.mec-wrap h2{font-size:36px;line-height:1.14;margin-bottom:10px}.mec-wrap h3{font-size:28px;line-height:1.2;margin-bottom:8px}.mec-wrap h4{font-size:24px;line-height:1.2;margin-bottom:10px}.mec-wrap h5{font-size:18px;line-height:1.3;margin-bottom:7px}.mec-wrap h6{font-size:16px;line-height:1.3;margin-bottom:4px}.mec-wrap .subheader{color:#849098}.mec-wrap h1 strong{font-weight:700}.mec-wrap p{margin:0 0 20px 0;color:#616161;font-size:14px;line-height:1.8}.mec-wrap .mec-event-article .mec-color-hover{box-shadow:none;border:none}.mec-wrap abbr,.mec-wrap acronym{cursor:auto;border:none}.entry-content .mec-wrap a{box-shadow:none}.mec-wrap .button,.mec-wrap a.button:not(.owl-dot),.mec-wrap button:not(.owl-dot),.mec-wrap input[type=button],.mec-wrap input[type=reset],.mec-wrap input[type=submit]{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease}.mec-wrap .button:hover,.mec-wrap a.button:hover,.mec-wrap button:hover,.mec-wrap input[type=button]:hover,.mec-wrap input[type=reset]:hover,.mec-wrap input[type=submit]:hover{background:#222;color:#fff}.mec-booking-form-container button{display:block!important}.vertical-space,.vertical-space1,.vertical-space2,.vertical-space3,.vertical-space4,.vertical-space5{display:block;width:100%;margin:0;clear:both;border:0 none;height:20px}.vertical-space2{height:40px}.vertical-space3{height:60px}.vertical-space4{height:80px}.vertical-space5{height:100px}@media only screen and (max-width:479px){.vertical-space,.vertical-space1{height:8px}.vertical-space2{height:14px}.vertical-space3{height:28px}.vertical-space4{height:40px}.vertical-space5{height:60px}}@media only screen and (max-width:960px){.vertical-space,.vertical-space1{height:12px}.vertical-space2{height:18px}.vertical-space3{height:36px}.vertical-space4{height:50px}.vertical-space5{height:80px}}.mec-wrap abbr{cursor:auto;border-bottom:0}@-webkit-keyframes rotating{from{-ms-transform:rotate(0);-moz-transform:rotate(0);-webkit-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}to{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes rotating{from{-ms-transform:rotate(0);-moz-transform:rotate(0);-webkit-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}to{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}.mec-wrap{font:14px/25px sans-serif;font-family:Montserrat,Helvetica,Arial,sans-serif;font-weight:400;color:#626262}.mec-wrap .mec-events a{border-bottom:none}.mec-wrap .mec-container a{box-shadow:none}.mec-event-content p{font-family:Roboto,sans-serif;font-weight:300}.mec-wrap .mec-clear:after,.mec-wrap .mec-clear:before{content:" ";display:table}.mec-wrap .mec-clear:after{clear:both}.mec-events-button{background:#fff;padding:12px 34px;font-size:13px;font-weight:400;letter-spacing:0;border:1px solid #e3e3e3;margin-right:10px;transition:.3s}.mec-wrap .mec-events-button:hover{color:#fff}.mec-no-event{display:none}#mec-active-current{display:block!important}.current-hide #mec-active-current{display:none!important}.mec-event-grid-classic .mec-event-article{position:relative;border:2px solid #e3e3e3;box-shadow:0 2px 0 0 rgba(0,0,0,.016);margin-bottom:30px;max-width:none}.mec-event-grid-classic .mec-event-content{background:#fff;color:#767676;padding:0 20px 5px;text-align:center;min-height:125px}.mec-event-grid-classic .mec-event-title{color:#202020;margin:10px 0;font-weight:700;font-size:20px;letter-spacing:1px;text-transform:uppercase}.mec-event-grid-classic .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-classic .mec-event-date{font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:1px;color:#fff;padding:3px 20px;margin:0 -20px 20px -20px;text-align:center}.mec-event-grid-classic .mec-event-content p{font-size:15px;color:#8a8a8a}.mec-event-grid-classic .mec-event-detail{display:none}.mec-event-grid-classic img{margin-bottom:0;width:100%}.mec-event-footer{position:relative;border-top:1px solid #efefef;padding:20px;min-height:80px;margin:0;background:#fafafa}.mec-event-sharing-wrap{left:15px;position:absolute;list-style:none;margin:0}.mec-event-sharing-wrap .mec-event-sharing{position:absolute;padding:8px 0 2px;left:-6px;bottom:54px;margin:0;margin-top:6px;border-radius:5px;width:50px;visibility:hidden;opacity:0;border:1px solid #e2e2e2;background:#fff;box-shadow:0 0 9px 0 rgba(0,0,0,.06);z-index:99;-webkit-transition:all .18s ease;transition:all .18s ease}.mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-sharing-wrap .mec-event-sharing:before{content:'';display:block;position:absolute;bottom:-10px;left:50%;margin-left:-10px;width:0;height:0;border-style:solid;border-width:10px}.mec-event-sharing-wrap .mec-event-sharing:before{bottom:-21px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-sharing-wrap .mec-event-sharing:after{bottom:-19px;border-color:#fff transparent transparent transparent}.mec-event-sharing-wrap:hover .mec-event-sharing{opacity:1;visibility:visible}.mec-event-sharing-wrap li{text-align:center;border:0;display:block;margin-right:2px;overflow:hidden;margin:0 auto 6px;width:38px}.mec-event-sharing-wrap:hover>li{cursor:pointer;background-color:#40d9f1}.mec-event-sharing-wrap:hover li a{color:#fff}.mec-event-sharing-wrap>li:first-of-type{border:1px solid #d9d9d9}.mec-event-sharing-wrap li a,.mec-event-sharing-wrap:hover li ul li a{border:none;color:#767676}.mec-event-sharing-wrap li i{width:36px;height:36px;display:table-cell;vertical-align:middle}.mec-event-sharing-wrap .mec-event-sharing li a{display:block}.mec-event-sharing-wrap .mec-event-sharing li:hover a{color:#40d9f1}.mec-event-sharing .mec-event-share:hover .event-sharing-icon{background:#40d9f1;border-width:0 1px 0;cursor:pointer}.mec-event-sharing .mec-event-map{border-width:1px 0 1px}.mec-event-footer .mec-booking-button{box-shadow:none;transition:all .21s ease;font-size:11px;font-weight:500;letter-spacing:1px;text-transform:uppercase;background:#fff;color:#767676;border:1px solid #e8e8e8;position:absolute;top:20px;right:15px;padding:0 16px;line-height:37px;height:38px}.mec-event-footer .mec-booking-button:hover{background:#191919;color:#fff;border-color:#191919}@media only screen and (max-width:960px){.mec-event-grid-classic{margin-bottom:30px}}.mec-widget .mec-event-grid-classic.mec-owl-carousel{padding:36px 0 16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav{margin:5px 0;width:100%;position:absolute;top:15px;padding:0}.mec-skin-grid-container.mec-widget{padding-top:18px}.mec-widget .mec-event-grid-classic.mec-owl-carousel{padding:20px 0 16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav{margin:0;width:100%;position:absolute;top:0;padding:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav div{position:absolute;background:#fff;line-height:0;width:34px;height:26px;padding:6px;text-align:center;margin-top:-17px;border-radius:3px;border:1px solid #e2e2e2;text-align:center;box-shadow:0 2px 0 0 rgba(0,0,0,.028);transition:all .33s ease}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav .owl-next{right:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav .owl-prev{left:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-sharing{display:none}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-footer{text-align:center}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-footer .mec-booking-button{position:static;padding:11px 16px}.widget .mec-event-footer ul.mec-event-sharing-wrap li a.mec-event-share-icon{padding:0}@media screen and (min-width:56.875em){.mec-widget .mec-month-container dl{margin-bottom:0}}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-footer{text-align:right}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-sharing-wrap{left:5px;padding-left:5px}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-sharing-wrap .mec-event-sharing{left:0}.mec-widget .mec-event-sharing-wrap .mec-event-sharing{position:absolute;top:auto;bottom:52px;margin:0;margin-top:0;border-radius:5px}.mec-widget .mec-event-sharing-wrap .mec-event-sharing:after{top:auto;bottom:-17px;border-color:#fff transparent transparent transparent}.mec-widget .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-18px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-grid-clean{margin-bottom:10px;max-width:none}.mec-event-grid-clean .mec-event-article{margin-bottom:30px;position:relative;border:1px solid #e2e2e2;text-align:center;padding:15px 15px 0;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-clean .mec-event-content{background:#fff;color:#767676;padding:25px 16px 0;text-align:left}.mec-event-grid-clean .mec-event-title{color:#202020;margin:0 0 10px 0;font-weight:700;font-size:21px;text-transform:capitalize}.mec-event-grid-clean .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-clean .mec-event-date{font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:1px;background-color:#40d9f1;color:#fff;padding:3px 0;margin:0;text-align:center}.mec-event-grid-clean .mec-event-content p{font-size:15px;color:#9a9a9a;line-height:1.54}.mec-event-grid-clean img{margin-bottom:0;width:100%}.mec-event-grid-clean .event-grid-t2-head{margin-bottom:10px;color:#fff;padding:9px 14px 6px;text-align:left}.mec-event-grid-clean .event-grid-t2-head .mec-event-date{font-size:50px;line-height:50px;float:left;margin-right:11px}.mec-event-grid-clean .event-grid-t2-head .mec-event-month{text-transform:uppercase;font-size:17px;line-height:20px;padding-top:4px}.mec-event-grid-clean .event-grid-t2-head .mec-event-detail{font-size:12px}.mec-event-grid-clean .mec-event-sharing-wrap{left:0}.mec-event-grid-clean .mec-event-footer{position:relative;border-top:2px solid;padding:20px 0;margin:0 14px;text-align:left;background:0 0}.mec-event-grid-clean .mec-event-footer .mec-booking-button{right:0}.mec-event-grid-clean .row{margin-bottom:30px}.mec-event-grid-modern{margin-bottom:10px;max-width:none}.mec-event-grid-modern .mec-event-article{position:relative;border:1px solid #e2e2e2;text-align:center;margin-bottom:30px;padding:45px 15px 10px;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-modern .mec-event-content{background:#fff;color:#767676;padding:35px 15px 10px;text-align:left}.mec-event-grid-modern .mec-event-title{color:#202020;margin:0 0 10px 0;font-weight:700;font-size:24px;text-transform:none;letter-spacing:-1px}.mec-event-grid-modern .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-modern .mec-event-content p{font-size:15px;color:#9a9a9a;line-height:1.54}.mec-event-grid-modern img{margin-bottom:0;width:100%}.mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:9px 14px 6px;text-align:left}.mec-event-grid-modern .event-grid-modern-head .mec-event-date{font-size:50px;line-height:50px;float:left;margin-right:11px}.mec-event-grid-modern .event-grid-modern-head .mec-event-month{text-transform:uppercase;font-size:17px;line-height:20px;padding-top:4px}.mec-event-grid-modern .event-grid-modern-head .mec-event-detail{font-size:12px}.mec-event-grid-modern .event-grid-modern-head .mec-event-day{margin-top:9px;color:silver;font-family:Roboto,sans-serif;font-size:35px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.mec-event-grid-modern .mec-event-footer{position:relative;height:90px;padding:20px 0;border:none;margin:0 14px;text-align:left;background:0 0}.mec-event-grid-modern .mec-event-footer .mec-booking-button{right:auto;left:0}.mec-event-grid-modern .mec-event-sharing-wrap{left:auto;right:0}.mec-event-grid-modern .mec-event-sharing{left:auto;right:-6px}.mec-event-grid-modern .mec-event-sharing-wrap li{border-radius:55px}.mec-event-grid-modern .row{margin-bottom:0}@media only screen and (max-width:479px){.mec-event-grid-modern .mec-event-article{padding-bottom:30px}.mec-event-grid-modern .mec-event-sharing{top:60px;left:0;right:auto}.mec-event-grid-modern .mec-event-footer .mec-booking-button{top:0}}.mec-event-title-soldout .soldout{background:#de3120;padding:4px 5px;color:#fff}.mec-event-title-soldout .soldout{background:#de3120;position:relative;top:-2px;border-radius:10px 0 0 20px;padding:2px 4px 2px 10px;color:#fff}.mec-event-title-soldout .soldout:before{content:' ';position:absolute;width:0;height:0;border-top:10px solid #de3120;border-bottom:10px solid #de3120;right:-10px;border-right:10px solid transparent;border-left:10px solid transparent;top:0}.mec-event-title-soldout .soldout:after{content:' ';position:absolute;width:6px;height:6px;background:#de3120;border-radius:50%;left:3px;top:4px;border:2px dashed #fff}.mec-event-grid-colorful .mec-event-article{min-height:400px;border:none;box-shadow:none;background:#40d9f1;padding-top:25px;margin:0;color:#fff}.mec-event-grid-colorful .mec-event-content{background:0 0}.mec-event-grid-colorful .event-grid-modern-head,.mec-event-grid-colorful .event-grid-modern-head .mec-event-date,.mec-event-grid-colorful .event-grid-modern-head .mec-event-day,.mec-event-grid-colorful .mec-event-content p,.mec-event-grid-colorful .mec-event-sharing-wrap>li>a,.mec-event-grid-colorful .mec-event-title a{color:#fff}.mec-event-grid-colorful .mec-event-footer .mec-booking-button{border:none}.mec-event-grid-colorful .mec-event-sharing-wrap>li{border-color:#fff}.mec-event-grid-colorful .mec-event-sharing-wrap:hover>li{background:#333;border-color:#333}.mec-event-grid-colorful .mec-event-title a.mec-color-hover:hover{color:#fff;text-decoration:underline}.mec-event-grid-colorful .mec-event-title .event-color{display:none}.mec-event-grid-colorful div[class^=col-md-]{padding:0 1px 1px 0;margin:0}@media only screen and (min-width:768px){.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-day{font-size:26px}.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-month{font-size:15px}.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-date{font-size:50px}.mec-wrap.mec-sm959.mec-event-grid-colorful .mec-event-title{font-size:21px}.mec-wrap.mec-sm959.mec-event-grid-colorful .mec-event-content p{font-size:13px}}@media only screen and (min-width:768px) and (max-width:1200px){.mec-wrap.mec-sm959.mec-event-grid-colorful div[class^=col-md-]{width:50%}}.mec-event-list-minimal .mec-event-article{border-bottom:1px solid #efefef;padding:24px 0 16px}.mec-event-list-minimal .mec-wrap .col-md-9{padding:0}.mec-event-list-minimal .mec-event-date{position:relative;float:left;margin-right:30px;color:#fff;width:52px;padding:6px 4px 3px;text-align:center;text-transform:uppercase;border-radius:3px}.mec-event-list-minimal .mec-event-date span{display:block;font-size:24px;font-weight:700;text-align:center;margin-bottom:4px}.mec-event-list-minimal .mec-event-date:after{display:block;content:"";position:absolute;width:50px;left:1px;top:1px;height:30px;background:rgba(255,255,255,.1);box-shadow:0 4px 4px rgba(0,0,0,.02)}.mec-event-list-minimal .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;font-size:18px;text-transform:uppercase;letter-spacing:0;padding-top:5px}.mec-event-list-minimal .mec-event-detail{font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;font-family:Roboto,sans-serif}.mec-event-list-minimal .btn-wrapper{text-align:right;padding-right:0;padding-top:6px}.mec-event-list-minimal .btn-wrapper .mec-detail-button{border-bottom:0;margin-bottom:14px;margin-right:0;box-shadow:none}.mec-event-list-minimal a.mec-detail-button{text-align:center;display:inline-block;background:#ededed;color:#191919;padding:12px;border-radius:2px;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:2px;transition:all .24s ease}.mec-event-list-minimal a.mec-detail-button:hover{background:#292929;color:#fff}.vc_col-sm-4 .mec-event-list-minimal .mec-event-date,.vc_col-sm-6 .mec-event-list-minimal .mec-event-date{margin-right:12px}.vc_col-sm-4 .mec-event-list-minimal .mec-event-title,.vc_col-sm-6 .mec-event-list-minimal .mec-event-title{font-size:15px;letter-spacing:2px}@media only screen and (min-width:480px) and (max-width:767px){.mec-event-list-minimal .btn-wrapper{padding-left:0}.mec-event-list-minimal .mec-event-date{margin-right:10px}}@media only screen and (max-width:767px){.mec-event-list-minimal .btn-wrapper .mec-detail-button{display:block;text-align:center;margin:0;margin-top:16px;padding:8px}.mec-event-list-minimal .btn-wrapper{margin:12px 0}}@media only screen and (max-width:479px){.mec-event-list-minimal .mec-event-date{float:none;width:100%;margin-bottom:8px}.mec-event-list-minimal .mec-event-date span{display:inline;padding-right:25px;margin-right:7px;font-size:inherit}.mec-event-list-minimal .mec-event-date:after{width:45%;box-shadow:4px 0 4px rgba(0,0,0,.02)}.mec-event-list-minimal .btn-wrapper{text-align:center;padding-left:0}.mec-event-list-minimal{text-align:center}.mec-event-list-minimal .mec-event-detail{margin-bottom:10px}}.mec-wrap .mec-event-list-modern .mec-event-title{margin-top:0;margin-bottom:10px}.mec-event-list-modern .mec-event-article{border-bottom:1px solid #efefef;padding:30px 0 10px}.mec-event-list-modern .mec-event-article:last-child{border-bottom:none}.mec-event-list-modern .mec-event-title a{color:#191919;transition:all .24s ease;box-shadow:none}.mec-event-list-modern .mec-event-date{text-transform:uppercase;padding:10px 0}.mec-event-list-modern .mec-event-date .event-d{font-size:48px;display:table-cell;padding:10px 0 0}.mec-event-list-modern .mec-event-date .event-f{font-size:13px;display:table-cell;vertical-align:middle;padding-left:7px;font-weight:500;letter-spacing:3px;color:#777}.mec-event-list-modern .mec-event-detail{font-weight:300;color:#8a8a8a}.mec-event-list-modern .mec-event-date .event-da{margin-top:9px;color:silver;font-family:Roboto,sans-serif;font-size:28px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.mec-event-list-modern .mec-btn-wrapper .mec-booking-button{border-radius:1px;letter-spacing:2px;border:1px solid #e6e6e6;color:#333;background-color:#fff;padding:13px 20px;font-weight:700;font-size:11px;box-shadow:0 2px 0 0 rgba(0,0,0,.016);transition:all .28s ease}.mec-event-list-modern .mec-btn-wrapper .mec-booking-button:hover{border-color:#222;background:#222;color:#fff}.mec-event-list-modern .mec-event-title{font-weight:700;font-size:20px;text-transform:uppercase;letter-spacing:1px}.mec-event-list-modern .mec-event-detail{color:#9a9a9a;font-size:15px;font-weight:300;line-height:25px;font-family:Roboto,sans-serif}.mec-event-list-modern .mec-btn-wrapper{text-align:right;padding:10px 0;text-transform:uppercase}.mec-event-list-modern .mec-event-sharing{position:relative;margin:10px 0}.mec-event-list-modern .mec-event-sharing>li{display:inline-block;border:none;border-radius:50%;margin-right:3px}.mec-event-list-modern .mec-event-sharing>li:hover{display:inline-block}.mec-event-list-modern .mec-event-sharing>li:hover a i{color:#fff;background:#40d9f1;border-color:#40d9f1}.mec-event-list-modern .mec-event-sharing>li i{width:36px;display:inline-block;line-height:35px;color:#767676;text-align:center;border-radius:50%;border:1px solid #ddd;font-size:14px}.mec-event-list-modern .mec-event-sharing .mec-event-share:hover .mec-event-sharing-icon{background:#40d9f1;border-color:#40d9f1;cursor:pointer;border-radius:50%}.mec-event-list-modern .mec-event-sharing li:hover a i{background:#40d9f1}@media only screen and (min-width:768px){.mec-event-list-modern .mec-event-article{position:relative;min-height:160px;overflow:hidden}.mec-event-list-modern .col-md-2.col-sm-2{width:210px;position:absolute;left:0;top:20px}.mec-event-list-modern .col-md-4.col-sm-4.mec-btn-wrapper{width:180px;padding:0;position:absolute;right:0;top:30%}.mec-event-list-modern .col-md-6.col-sm-6{width:100%;padding-left:225px;padding-right:195px}}@media only screen and (max-width:767px){.mec-event-list-modern .mec-btn-wrapper .mec-booking-button{letter-spacing:1px;border:1px solid #e1e1e1;padding:8px 16px}.mec-event-list-modern .mec-btn-wrapper{padding:0 0 12px}.mec-event-list-modern .mec-event-sharing{margin-bottom:0}}.mec-event-grid-minimal .mec-event-article{margin:15px 0;min-height:80px;display:table}.mec-event-grid-minimal .event-detail-wrap{display:table-cell;vertical-align:middle}.mec-event-grid-minimal .mec-event-date{width:70px;float:left;margin-right:20px;padding:12px 16px 10px;text-align:center;text-transform:uppercase;border-radius:4px;border:1px solid #e6e6e6;transition:all .37s ease-in-out;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-minimal .mec-event-date span{display:block;font-size:24px;font-weight:700;text-align:center;margin-bottom:4px;color:#2a2a2a;transition:color .3s ease}.mec-event-grid-minimal .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;line-height:21px;font-size:16px;text-transform:uppercase;transition:color .3s ease}.mec-event-grid-minimal .mec-event-title a{color:#191919;transition:color .3s ease}.mec-event-grid-minimal .mec-event-detail{font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;font-family:Roboto,sans-serif}.mec-event-grid-minimal .mec-event-date:hover{color:#fff}.mec-event-grid-minimal .mec-event-date:hover span{color:#fff}.mec-event-list-classic .mec-event-article{padding:12px 0;margin-bottom:20px}.mec-event-list-classic .mec-event-image{float:left;width:86px;margin-right:20px}.mec-event-list-classic .mec-event-date{font-weight:400;font-size:13px;letter-spacing:0;line-height:18px}.mec-event-list-classic .mec-event-date span{font-weight:500;margin-bottom:6px}.mec-event-list-classic .mec-event-title{font-size:15px;margin:10px 0 12px;font-weight:700;text-transform:uppercase}.mec-event-list-classic .mec-event-title a{color:#494949;transition:color .3s ease}.mec-event-list-classic .mec-event-detail{color:#777;font-weight:400;line-height:12px;font-size:12px;overflow:hidden}.mec-event-list-classic a.magicmore{padding:10px 16px;color:#fff;background:#222;letter-spacing:2px;font-size:11px}.mec-event-list-classic a.magicmore:after{content:"";display:none}.mec-event-list-classic a.magicmore:hover{color:#40d9f1}.mec-event-grid-simple .mec-event-article{position:relative;margin-bottom:30px}.mec-event-grid-simple .mec-event-article:after{border-right:1px solid #e6e6e6;height:60px;position:absolute;top:50%;margin-top:-30px;right:-1px}.mec-event-grid-simple .row div:last-child .mec-event-article:after{border:none}.mec-event-grid-simple .row{margin:15px 0 30px;text-align:center}.mec-event-grid-simple .mec-event-date{padding:0;margin:0;text-transform:capitalize;font-size:12px;font-weight:700}.mec-event-grid-simple .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;line-height:21px;font-size:15px;padding-top:5px;text-transform:uppercase;transition:color .37s ease}.mec-event-grid-simple .mec-event-title a{color:#494949;transition:color .3s ease}.mec-event-grid-simple .mec-event-detail{font-family:Roboto,sans-serif;font-weight:400;line-height:1;letter-spacing:0;font-size:13px;color:#777}.mec-event-grid-simple:hover .mec-event-title{color:#40d9f1}.mec-event-grid-simple:hover .mec-event-date{background:0 0}.event-last:after{display:none}@media only screen and (max-width:767px){.mec-event-grid-simple .mec-event-article{padding-bottom:20px;margin-bottom:20px;border-bottom:1px solid #eee}.mec-event-grid-simple .mec-event-article:after{border:none}}.mec-event-grid-novel .mec-event-article{position:relative;margin-bottom:30px;padding:60px 5% 60px 7%;border:1px solid rgba(255,255,255,.12);border-radius:10px;background-color:#0050fd;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease;z-index:1}.mec-event-grid-novel .mec-event-article .novel-grad-bg{position:absolute;top:0;left:0;width:100%;height:100%;border-radius:10px;opacity:0;z-index:-1;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease}.mec-event-grid-novel .mec-event-article:hover{-webkit-box-shadow:0 13px 36px 0 rgba(0,0,0,.23);box-shadow:0 13px 36px 0 rgba(0,0,0,.23);border-color:transparent}.mec-event-grid-novel .mec-event-article:hover .novel-grad-bg{background-image:-webkit-gradient(linear,left top,right top,from(#262e32),to(#0e1015));background-image:-webkit-linear-gradient(left,#262e32 0,#0e1015 100%);background-image:-o-linear-gradient(left,#262e32 0,#0e1015 100%);background-image:linear-gradient(90deg,#262e32 0,#0e1015 100%);opacity:1}.mec-event-grid-novel .mec-event-image{float:left;width:150px;height:150px}.mec-event-grid-novel .mec-event-image img{width:150px;height:150px;border-radius:50%}.mec-event-grid-novel .mec-event-detail-wrap{margin-left:200px}.mec-event-grid-novel .mec-event-content h4{position:relative;margin-bottom:10px;display:inline-block}.mec-event-grid-novel .mec-event-content h4 a{font-size:24px;line-height:35px;color:#fafcff}.mec-event-grid-novel .mec-event-content h4::before{content:'';position:absolute;top:8px;left:-30px;width:17px;height:17px;background:#5cd0ed;opacity:.4;border-radius:50%}.mec-event-grid-novel .mec-event-content h4::after{content:'';position:absolute;top:12px;left:-26px;width:9px;height:9px;background:#5cd0ed;border-radius:50%}.mec-event-grid-novel .mec-event-address,.mec-event-grid-novel .mec-event-detail,.mec-event-grid-novel .mec-event-month{position:relative;padding-left:35px;font-size:15px;line-height:30px;color:rgba(255,255,255,.4)}.mec-event-grid-novel .mec-event-address::before,.mec-event-grid-novel .mec-event-detail::before,.mec-event-grid-novel .mec-event-month::before{position:absolute;top:6px;left:6px;font-size:17px;font-family:simple-line-icons;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1}.mec-event-grid-novel .mec-event-month::before{content:"\e075"}.mec-event-grid-novel .mec-event-detail::before{content:"\e081"}.mec-event-grid-novel .mec-event-address::before{content:"\e096"}.mec-event-grid-novel .mec-event-footer{clear:both;padding:20px 0;border-top:none;background:0 0}.mec-event-grid-novel .mec-event-footer .mec-booking-button{right:auto;left:0;height:42px;width:148px;padding:0 20px;font-size:14px;font-weight:400;line-height:42px;text-align:center;color:#fff;background:0 0;border-color:rgba(255,255,255,.1);border-radius:50px}.mec-event-grid-novel .mec-event-footer .mec-booking-button:hover{background-color:rgba(255,255,255,.1)}.mec-event-grid-novel .mec-event-sharing-wrap{left:175px;cursor:pointer}.mec-event-grid-novel .mec-event-sharing-wrap>li{border-color:rgba(255,255,255,.1);border-radius:50%}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing{top:-5px;left:0;padding:5px 10px 2px 50px;min-width:150px;width:inherit;height:37px;background-color:rgba(255,255,255,.1);-webkit-box-shadow:none;box-shadow:none;border:none;border-radius:50px}.mec-event-grid-novel .mec-event-sharing-wrap:hover>li{background-color:rgba(255,255,255,.1)}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing::after,.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing::before{display:none}.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon,.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon a,.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li i{display:inline}.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon a{padding:0 10px}.mec-event-grid-novel .mec-event-sharing-wrap>li a{color:#fff}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li a{color:rgba(255,255,255,.4)}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li a:hover{color:rgba(255,255,255,1)}@media only screen and (max-width:1200px){.mec-event-grid-novel .row .col-md-6.col-sm-6{width:100%;float:none}.mec-event-grid-novel .mec-event-image{float:none;margin-top:-20px;margin-bottom:20px}.mec-event-grid-novel .mec-event-detail-wrap{margin-left:20px}.mec-event-grid-novel .mec-event-footer{margin-top:30px}}@media only screen and (max-width:767px){.mec-event-grid-novel .mec-event-footer{margin-top:0;padding-top:30px;margin-bottom:24px}.mec-event-grid-novel .mec-event-footer .mec-booking-button{display:block;position:relative}.mec-event-grid-novel .mec-event-sharing-wrap{left:0;bottom:-55px}.mec-event-grid-novel .mec-event-content h4 a{font-size:20px;line-height:1.3}}.mec-event-cover-modern{position:relative}.mec-event-cover-modern .mec-event-cover-a{background:0 0;position:absolute;color:#fff;bottom:0;left:0;text-decoration:none}.mec-event-cover-modern .mec-event-cover-a .mec-event-overlay{transition:all .5s;opacity:.8;width:100%;height:100%;position:absolute}.mec-event-cover-modern .mec-event-cover-a:hover .mec-event-overlay{opacity:1}.mec-event-cover-modern .mec-event-detail{padding:40px;position:relative}.mec-event-cover-modern .mec-event-cover-a:hover .mec-event-tag{color:#333;transition:all .5s}.mec-event-cover-modern .mec-event-cover-a .mec-event-title:hover{text-decoration:underline}.mec-event-cover-modern .mec-event-tag{background:#fff;display:inline-block;padding:5px 9px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:24px}.mec-event-cover-modern .mec-event-date{text-transform:uppercase;font-size:17px;font-weight:300}.mec-event-cover-modern .mec-event-title{color:#fff;text-transform:uppercase;font-size:40px;font-weight:700;margin:6px 0}.mec-event-cover-modern .mec-event-place{font-weight:400;font-size:18px;font-family:Roboto,sans-serif}@media only screen and (max-width:767px){.mec-event-cover-modern .mec-event-cover-a{width:100%}}.mec-event-cover-classic{position:relative;overflow:hidden;background:#fff;padding:6px;border:1px solid #e8e8e8}.mec-event-cover-classic .mec-event-overlay{position:absolute;left:6px;right:6px;bottom:6px;top:6px;width:auto;height:auto;background-color:rgba(36,36,36,.4);transition:all .33s ease-in-out}.mec-event-cover-classic:hover .mec-event-overlay{background-color:rgba(36,36,36,.6)}.mec-event-cover-classic .mec-event-content{font-size:15px;color:#fff;position:absolute;bottom:0;padding:50px 35px;transition:all .33s ease-in-out}.mec-event-cover-classic .mec-event-date{font-size:14px;text-transform:uppercase;font-weight:400;line-height:1.6}.mec-event-cover-classic .mec-event-date span{display:block;font-weight:700;font-size:16px}.mec-event-cover-classic .mec-event-title{color:#fff;margin:20px 0 38px;font-size:24px;font-weight:700;text-transform:uppercase;font-style:normal}.mec-event-cover-classic .mec-btn-wrapper{text-align:left}.mec-event-cover-classic .mec-event-icon{font-size:18px;float:left;margin-right:14px;color:#fff;padding:13px}.mec-event-cover-classic .mec-event-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:12px 20px;letter-spacing:3px;font-size:12px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none}.mec-event-cover-classic .mec-event-button:hover{color:#191919;background-color:#fff;border-color:#fff;border-radius:1px}.mec-event-cover-classic .mec-event-image img{min-width:100%}@media only screen and (max-width:960px){.mec-event-cover-classic .mec-event-content{padding:20px}.mec-event-cover-classic .mec-event-button{font-size:11px;padding:7px 10px;letter-spacing:1px}.mec-event-cover-classic .mec-event-title{font-size:19px;margin:15px 0 25px}.mec-event-cover-classic .mec-event-date{font-size:12px}}@media only screen and (max-width:767px){.mec-event-cover-classic{margin-bottom:30px}}@media only screen and (max-width:479px){.mec-event-cover-classic .mec-event-content{padding:15px;font-size:15px}.mec-event-cover-classic .mec-event-title{font-size:15px;margin:10px 0}.mec-event-cover-classic .mec-event-button{font-size:10px;padding:6px;letter-spacing:1px}.mec-event-cover-classic .mec-event-icon{padding:10px}}.mec-load-more-wrap{text-align:center;display:block;width:100%;padding-top:20px;text-align:center;position:relative}.mec-load-more-button{box-shadow:none;transition:all .21s ease;font-size:12px;font-weight:500;letter-spacing:1px;text-transform:uppercase;background:#fff;color:#767676;border:2px solid #e8e8e8;border-radius:50px;padding:0 28px;margin-bottom:20px;cursor:pointer;line-height:40px;font-family:Montserrat,Helvetica,Arial,sans-serif;height:42px;display:inline-block}.mec-load-more-button:hover{background:#191919;color:#fff;border-color:#191919}.mec-load-more-loading{content:url(../img/ajax-loader.gif);cursor:wait;background:0 0;border-style:none}.mec-load-more-loading:hover{background:0 0}.mec-modal-preloader,.mec-month-navigator-loading{width:100%;height:100%;background:no-repeat rgba(255,255,255,.88) url(../img/ajax-loader.gif) center;border-style:none;position:fixed;left:0;right:0;bottom:0;top:0;z-index:9}.mec-event-calendar-classic .mec-calendar-side .mec-calendar-table{min-height:1024px}.mec-calendar-side .mec-calendar-table{min-height:450px}.mec-skin-weekly-view-events-container.mec-month-navigator-loading{margin-top:0}.mec-calendar.mec-event-calendar-classic .mec-calendar-side{display:block}.mec-skin-daily-view-events-container.mec-month-navigator-loading{margin-top:0}@media only screen and (min-width:961px){.mec-wrap.mec-sm959 .mec-calendar-side .mec-calendar-table{min-height:1px}}@media only screen and (max-width:479px){.mec-calendar-side .mec-calendar-table{min-height:1px}}.mec-event-cover-clean{position:relative;border:1px solid #e6e6e6;padding:8px}.mec-event-cover-clean .mec-event-overlay{height:100%;background-color:rgba(36,36,36,.4);position:absolute;width:100%;left:0;border:8px solid #fff;top:0;transition:all .5s ease-in-out}.mec-event-cover-clean .mec-event-content{color:#fff;position:absolute;bottom:20px;padding:40px 60px;transition:all .5s ease-in-out}.mec-event-cover-clean .mec-event-title{color:#fff;font-weight:700;margin:46px 0 19px;font-size:29px;text-transform:uppercase;text-shadow:0 0 1px rgba(0,0,0,.5)}.mec-event-cover-clean .mec-event-title a{color:#fff;transition:all .5s;text-decoration:none;outline:0;border:none;box-shadow:none}.mec-event-cover-clean .mec-event-title a:hover{text-decoration:underline}.mec-event-cover-clean .mec-event-date{position:absolute;top:-20px;right:60px;color:#fff;width:60px;padding:14px 10px;z-index:1}.mec-event-cover-clean .mec-event-date div{text-align:center;text-transform:uppercase;letter-spacing:1px;line-height:16px}.mec-event-cover-clean .mec-event-date .dday{padding-bottom:15px;border-bottom:1px solid rgba(255,255,255,.5);margin-bottom:13px;font-size:24px}.mec-event-cover-clean .mec-event-date .dmonth{letter-spacing:2px}.mec-event-cover-clean .mec-event-place{font-size:18px;font-family:Roboto,sans-serif}.mec-event-cover-clean .mec-event-image img{width:100%}@media only screen and (max-width:768px){.mec-event-cover-clean .mec-event-content{padding:20px;bottom:5px}.mec-event-cover-clean .mec-event-title{font-size:23px}.mec-event-cover-clean .mec-event-date{right:20px;padding:10px;width:50px}}@media only screen and (max-width:479px){.mec-event-cover-clean .mec-event-content{padding:10px}.mec-event-cover-clean .mec-event-title{font-size:19px;padding-right:25px}.mec-event-cover-clean .mec-event-date{right:-20px;top:-10px}.mec-event-cover-clean .mec-event-detail{font-size:12px}}.mec-month-divider{text-align:center;margin:60px 0 40px 0}.widget .mec-month-divider{margin:10px 0}.mec-month-divider span{text-transform:uppercase;font-size:22px;font-weight:700;padding-bottom:5px;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative}.mec-month-divider span:before{border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-30px;left:50%;width:60px}.widget .mec-month-divider span{font-size:13px}.mec-event-list-standard .mec-events-pagination{margin-top:60px;border-top:4px solid #ebebeb;min-height:80px;padding-top:20px}.mec-event-list-standard .mec-events-pagination .mec-events-pag-previous{float:left;margin-left:0}.mec-event-list-standard .mec-events-pagination .mec-events-pag-next{float:right;margin-right:0}.mec-event-list-standard .mec-event-article{position:relative;display:block;margin-bottom:25px;border:1px solid #e9e9e9;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-list-standard .mec-topsec{display:table;width:100%}.mec-event-list-standard .col-md-3.mec-event-image-wrap{padding-left:0}.mec-event-list-standard .mec-event-content{padding-top:15px;padding-right:30px}.mec-event-list-standard .mec-event-title{font-size:29px;font-weight:700;letter-spacing:-1px;margin:0 0 10px}.mec-event-list-standard .mec-event-title a{color:#292929;transition:color .3s ease}.mec-event-list-standard .mec-col-table-c{display:table-cell;height:100%;vertical-align:middle;float:none!important}.mec-event-list-standard .mec-col-table-c.mec-event-meta-wrap{padding-top:15px}.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{vertical-align:top}.mec-topsec .mec-event-image{line-height:1px}.mec-event-list-standard .mec-event-meta-wrap{border-left:1px solid #eee}.mec-event-list-standard .mec-time-details{text-transform:uppercase;font-size:11px;font-weight:300;padding-top:0;text-align:left;padding-left:30px}.mec-event-list-standard .mec-event-meta .mec-event-address{font-style:normal;letter-spacing:0;font-size:13px;color:#8a8a8a}.mec-event-list-standard .mec-event-meta span.mec-event-d,.mec-event-list-standard .mec-event-meta span.mec-event-m{font-size:17px;font-weight:700;padding-right:6px;color:#444;text-transform:uppercase}.mec-event-list-standard .mec-date-details,.mec-event-list-standard .mec-time-details,.mec-event-list-standard .mec-venue-details{position:relative;padding-left:28px;margin-bottom:10px}.mec-event-list-standard .mec-date-details:before,.mec-event-list-standard .mec-time-details:before,.mec-event-list-standard .mec-venue-details:before{content:"\f041";font-family:fontawesome;position:absolute;left:6px;font-size:15px}.mec-event-list-standard .mec-date-details:before{content:"\f073"}.mec-event-list-standard .mec-time-details:before{content:"\f017"}.mec-event-list-minimal .mec-event-title a{color:#292929;transition:color .3s ease}.mec-event-meta-wrap .mec-price-details{margin-bottom:10px}.mec-price-details i{margin-right:5px;vertical-align:text-top}.mec-event-meta-wrap .mec-event-meta .mec-price-details i:before{font-size:15px}@media only screen and (max-width:960px){.mec-event-list-standard .mec-topsec{display:block}.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{display:block;width:40%}.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap{display:block;min-height:230px}.mec-event-list-standard .mec-event-meta-wrap{display:block;border-left:none;border-top:1px solid #eee;width:100%;float:none;padding-top:20px}}@media only screen and (min-width:480px) and (max-width:960px){.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap,.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{display:table-cell}}@media only screen and (max-width:479px){.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap,.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap img{float:none;width:100%;padding:0}.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap{padding:10px 10px 10px 30px}}.mec-wrap .mec-events-cal-links{margin-bottom:0}.mec-single-event #mec-wrap{padding:0;margin-top:35px}.mec-wrap .mec-single-title{margin-top:0;margin-bottom:30px;font-weight:700;font-size:33px}.mec-single-event .mec-event-content{padding:40px 0 30px;margin-bottom:10px}.mec-single-event .mec-events-meta-group-booking,.mec-single-event .mec-frontbox{margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-wrap #main-content{overflow:hidden;padding-top:35px}.mec-single-event .mec-map-get-direction-address-cnt{position:relative}.mec-single-event .mec-map-get-direction-address-cnt input.mec-map-get-direction-address{width:100%;height:46px;padding:13px 10px;margin-bottom:0;background:#fcfcfc;border:1px solid #e0e0e0;border-radius:0;box-shadow:inset 0 2px 5px rgba(0,0,0,.081)}.mec-single-event .mec-map-get-direction-address-cnt input.mec-map-get-direction-address:focus{color:#444;background:#fff;border-color:#b0b0b0;box-shadow:0 0 3px rgba(0,0,0,.2)}.mec-single-event .mec-map-get-direction-btn-cnt input{width:100%}.mec-single-event .mec-map-get-direction-reset{position:absolute;z-index:2;top:5px;right:10px;font-size:11px;cursor:pointer}.mec-events-meta-group-tags{margin-top:20px}.mec-events-meta-group-tags a{display:inline-block;color:#444;font-size:11px;text-transform:uppercase;letter-spacing:1.5px;font-weight:500;padding:3px 7px;border:1px solid #ddd;border-radius:2px;background:#fff;margin:1px 3px}.mec-events-meta-group-tags a:hover{text-decoration:underline;background:#f9f9f9}.mec-local-time-details li{list-style:none}.mec-single-event:not(.mec-single-modern) .mec-local-time-details{background:#f7f7f7;padding:12px 14px 8px;margin-bottom:12px;vertical-align:baseline;position:relative;border:none}.mec-single-event:not(.mec-single-modern) .mec-local-time-details ul{margin:0;padding-left:35px}.mec-single-event:not(.mec-single-modern) .mec-local-time-details h3{border:none;padding-left:15px}.mec-single-event:not(.mec-single-modern) .mec-local-time-details h3:before{display:none}.mec-single-event.mec-single-modern i.mec-sl-speedometer{display:none}.mec-single-event .mec-events-meta-group-booking{padding-bottom:30px}.mec-single-event .mec-events-meta-group-booking ul{list-style:none;margin-left:0;padding-left:0}.mec-single-event .mec-events-meta-group-booking ul li{padding:0;list-style:none;margin-top:40px}.mec-single-event .mec-events-meta-group-booking h4{margin-bottom:20px;font-size:23px;font-weight:700}.mec-single-event .mec-events-meta-group-booking li h4{font-size:19px}.mec-single-event .mec-events-meta-group-booking button,.mec-single-event .mec-events-meta-group-booking input{border-radius:0;margin-bottom:6px}.mec-single-event .mec-events-meta-group-booking button{min-width:170px;margin-top:5px}.mec-single-event .mec-events-meta-group-booking button{margin-left:15px}.mec-single-event .mec-book-form-coupon button{margin-left:0}.mec-single-event .mec-book-form-gateway-checkout button{margin-left:0}.mec-single-event .mec-book-first,.mec-single-event .mec-event-tickets-list{padding-left:15px;padding-right:15px}.mec-single-event label.mec-fill-attendees{margin-left:15px!important}.mec-single-event .mec-events-meta-group-booking .mec-event-ticket-available{display:block;margin-bottom:20px;margin-top:-17px;font-size:11px;color:#8a8a8a}.mec-single-event .mec-events-meta-group-booking .mec-book-price-total{display:inline-block;margin-bottom:10px;font-size:26px;color:#39c36e;font-weight:700;padding:10px 0}.mec-single-event .mec-events-meta-group-booking form{margin:0}.mec-single-event .mec-events-meta-group-booking h5 span,.mec-single-event .mec-events-meta-group-booking label{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:3px 0;display:block;clear:none;padding:5px 1em 3px 0}.mec-single-event .mec-events-meta-group-booking h5 span{display:inline-block}.mec-single-event .mec-events-meta-group-booking h5 span.mec-ticket-variation-name{padding-right:5px;text-transform:capitalize}.mec-single-event .mec-events-meta-group-booking input::-webkit-input-placeholder{color:#aaa}.mec-single-event .mec-events-meta-group-booking input:-moz-placeholder{color:#aaa}.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking input[type=email],.mec-single-event .mec-events-meta-group-booking input[type=number],.mec-single-event .mec-events-meta-group-booking input[type=password],.mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-single-event .mec-events-meta-group-booking input[type=text],.mec-single-event .mec-events-meta-group-booking select,.mec-single-event .mec-events-meta-group-booking textarea{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:330px;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both}.wbmec-mandatory{padding-left:5px;font-size:14px}.mec-single-event .mec-events-meta-group-booking .mec-red-notification input,.mec-single-event .mec-events-meta-group-booking .mec-red-notification select,.mec-single-event .mec-events-meta-group-booking .mec-red-notification textarea{border:1px solid #ff3c3c}.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=checkbox],.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=radio]{outline:1px solid #ff3c3c}@media only screen and (max-width:479px){.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking input[type=email],.mec-single-event .mec-events-meta-group-booking input[type=number],.mec-single-event .mec-events-meta-group-booking input[type=password],.mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-single-event .mec-events-meta-group-booking input[type=text],.mec-single-event .mec-events-meta-group-booking select,.mec-single-event .mec-events-meta-group-booking textarea{width:100%}}.mec-single-event .mec-events-meta-group-booking input[type=email]:focus,.mec-single-event .mec-events-meta-group-booking input[type=number]:focus,.mec-single-event .mec-events-meta-group-booking input[type=password]:focus,.mec-single-event .mec-events-meta-group-booking input[type=tel]:focus,.mec-single-event .mec-events-meta-group-booking input[type=text]:.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking select:focus,.mec-single-event .mec-events-meta-group-booking textarea:focus,focus{border:1px solid #aaa;color:#444;background:#fff;-moz-box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);box-shadow:0 0 3px rgba(0,0,0,.2);outline:0}.mec-single-event .mec-events-meta-group-booking input[type=checkbox],.mec-single-event .mec-events-meta-group-booking input[type=radio]{margin-right:6px;margin-top:5px;min-height:20px;clear:none;margin:0 0 0 2px}.lity-container .mec-events-meta-group-booking input[type=radio]:before,.mec-single-event .mec-events-meta-group-booking input[type=radio]:before{content:"";display:inline-block;background:#fff;border-radius:18px;width:18px;height:18px;margin:-1px 0 0 -3px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32)}.lity-container .mec-events-meta-group-booking input[type=radio]:checked:before,.mec-single-event .mec-events-meta-group-booking input[type=radio]:checked:before{border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff}.lity-container .mec-events-meta-group-booking input[type=radio],.mec-single-event .mec-events-meta-group-booking input[type=radio]{min-height:0;margin:0;margin-right:6px}.mec-single-event .mec-events-meta-group-booking input[type=checkbox]{float:left}.lity-container .mec-events-meta-group-booking .mec_book_first_for_all,.mec-single-event .mec-events-meta-group-booking .mec_book_first_for_all{display:none}.mec-events-meta-group-booking ul.mec-book-price-details{list-style:none;border:1px solid #eee;padding:0;overflow:hidden}.mec-events-meta-group-booking ul.mec-book-price-details li{font-size:15px;color:#a9a9a9;list-style:none;padding:13px 18px;margin:0;float:left;border-right:1px solid #eee}.mec-events-meta-group-booking ul.mec-book-price-details li:last-child{border-right:none}.mec-events-meta-group-booking ul.mec-book-price-details li span.mec-book-price-detail-amount{font-weight:700;font-size:21px;color:#222}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label{height:14px;width:14px;background-color:transparent;border:1px solid #d4d4d4;position:relative;display:inline-block;-moz-transition:border-color ease .2s;-o-transition:border-color ease .2s;-webkit-transition:border-color ease .2s;transition:border-color ease .2s;cursor:pointer;box-shadow:0 2px 16px -2px rgba(0,0,0,.2);vertical-align:middle;margin-right:3px;margin-top:-2px}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label{border-color:#008aff;box-shadow:0 2px 14px -3px #008aff}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:after,.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:before,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:after,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:before{position:absolute;height:0;width:1px;background-color:#008aff;display:inline-block;-moz-transform-origin:left top;-ms-transform-origin:left top;-o-transform-origin:left top;-webkit-transform-origin:left top;transform-origin:left top;content:'';-webkit-transition:opacity ease .5;-moz-transition:opacity ease .5;transition:opacity ease .5}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:before,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:before{top:8px;left:7px;box-shadow:0 0 0 2px #fff;-moz-transform:rotate(-145deg);-ms-transform:rotate(-145deg);-o-transform:rotate(-145deg);-webkit-transform:rotate(-145deg);transform:rotate(-145deg)}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::before,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::before{height:12px;-moz-animation:dothatopcheck .16s ease 0s forwards;-o-animation:dothatopcheck .16s ease 0s forwards;-webkit-animation:dothatopcheck .16s ease 0s forwards;animation:dothatopcheck .16s ease 0s forwards}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:after,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:after{top:6px;left:3px;-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::after,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::after{-moz-animation:dothabottomcheck 80ms ease 0s forwards;-o-animation:dothabottomcheck 80ms ease 0s forwards;-webkit-animation:dothabottomcheck 80ms ease 0s forwards;animation:dothabottomcheck 80ms ease 0s forwards;height:4px}.mec-single-event .mec-events-meta-group-booking button[type=submit]:after,.mec-single-event a.button:after{display:none;font-family:simple-line-icons;content:"\e098";margin-left:4px;-webkit-animation:rotating 1.2s linear infinite;-moz-animation:rotating 1.2s linear infinite;-ms-animation:rotating 1.2s linear infinite;-o-animation:rotating 1.2s linear infinite;animation:rotating 1.2s linear infinite}.mec-single-event .mec-events-meta-group-booking button[type=submit].loading:after,.mec-single-event a.button.loading:after{display:inline-block}.mec-single-event .mec-event-export-module{display:block}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul{display:table;width:100%}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li{display:table-cell}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li:last-child{text-align:right}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a:hover{color:#fff}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul{padding-left:0;margin:15px 5px}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting{padding-left:0;margin:0}.mec-ticket-price{margin-left:10px;font-size:13px;font-weight:300}.mec-book-reg-field-checkbox label,.mec-book-reg-field-radio label{line-height:1.36}.mec-book-reg-field-checkbox input[type=checkbox],.mec-book-reg-field-radio input[type=radio]{float:left;margin-right:5px!important}.mec-ticket-available-spots .mec-event-ticket-description,.mec-ticket-available-spots .mec-event-ticket-price{font-size:11px}.mec-book-ticket-container .mec-reg-mandatory:nth-child(2) label:after,.mec-book-ticket-container .mec-reg-mandatory:nth-child(3) label:after,.mec-book-ticket-container .wbmec-mandatory{content:"";color:red;width:50px;height:50px;font-size:14px;padding-left:5px}@media only screen and (max-width:767px){.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li{width:100%;min-height:40px;margin-bottom:15px;text-align:center;float:none;display:block}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a{width:100%;padding-left:0;padding-right:0;text-align:center;display:block;font-size:12px}}.mec-single-event .mec-events-meta-group{margin-bottom:0}@media only screen and (max-width:767px){.mec-single-event .mec-events-meta-group-booking{margin-bottom:30px}}.mec-single-event .mec-event-meta dt,.mec-single-event .mec-event-meta h3{text-transform:uppercase;font-size:16px;font-weight:700;padding-bottom:5px;display:inline;color:#000;padding-left:10px}.mec-single-event .mec-event-meta h6{text-transform:uppercase;font-size:13px;padding-bottom:5px;display:inline;color:#222;padding-left:0}.mec-single-event .mec-event-meta .mec-events-event-categories a,.mec-single-event .mec-event-meta dd{font-size:14px;color:#8d8d8d}.mec-single-event .mec-event-meta .mec-location dd.author{color:#3c3b3b}.mec-single-event .mec-event-meta dd{margin:0;padding-left:35px}.mec-single-event .mec-event-meta dd.mec-events-event-categories{min-height:35px;line-height:35px}@media only screen and (max-width:480px){.single-mec-events .lity-container{width:100%}.single-mec-events .lity-content .mec-events-meta-group-booking{padding:20px;width:85%;margin:0 auto}}.mec-single-event .mec-event-meta dd.mec-events-event-categories:first-of-type{padding-top:5px}.mec-single-event .mec-event-meta dd.mec-events-event-categories:last-of-type{border-bottom:0}.mec-single-event .mec-event-meta dd a{color:#8d8d8d;transition:all .2s ease}.mec-single-event .mec-event-meta dd a i:before{font-size:16px!important}.mec-single-event .mec-event-meta dd a i{margin-right:8px}.mec-single-event .mec-event-meta dl{margin-bottom:0}.mec-single-event .mec-event-meta .mec-events-event-cost{font-size:18px}.mec-single-event .mec-event-meta .mec-events-address{color:#a9a9a9;margin-bottom:3px}.mec-single-event .mec-event-meta .mec-events-meta-group-venue .author{margin-bottom:0;color:#8d8d8d;font-size:13px}.mec-single-event .mec-events-event-image{margin-bottom:0}.mec-single-event h2.mec-single-event-title{margin-bottom:30px;font-weight:700;font-size:33px}.mec-single-event .mec-booking-button{border-bottom:none;letter-spacing:.5px;line-height:48px;height:76px;transition:all .5s ease;color:#fff;padding:16px;display:block;text-align:center;font-size:16px}.mec-single-event .mec-booking-button:hover{background-color:#101010!important}.mec-single-event .mec-event-tags a{display:inline-block;color:#444;font-size:11px;text-transform:uppercase;letter-spacing:1.5px;font-weight:500;padding:3px 7px;border:1px solid #ddd;border-radius:2px;background:#fff;margin:1px 3px}.mec-single-event .mec-event-tags:before{font-size:24px;color:#303030;margin-right:5px;content:"\f02c";font-family:fontawesome}.mec-single-event .mec-event-tags{padding-top:13px}.mec-single-event .mec-event-sharing{margin:30px 0 10px}.mec-region.mec-events-abbr,.mec-single-event .mec-street-address{font-style:normal;font-size:13px}.mec-events-meta-group.mec-events-meta-group-venue:before,.mec-single-event-date:before,.mec-single-event-time:before{color:#40d9f1}.mec-single-event .mec-event-social{text-align:center}.mec-single-event .mec-event-social h3{text-transform:uppercase;font-size:15px;font-weight:700;padding-bottom:5px;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative}.mec-single-event .mec-social-single:before{padding:13px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:39px}.mec-single-event .mec-event-social .event-sharing{margin-top:30px}.mec-single-event .mec-event-social ul{list-style:none;margin-left:0}.mec-single-event .mec-event-social li.mec-event-social-icon{display:inline-block}.mec-single-event .mec-event-social li.mec-event-social-icon a{display:inline-block;color:#fff;width:40px;height:40px;padding:9px;font-size:16px;margin-right:5px}.mec-single-event .mec-event-social a.facebook{background:#3b5996}.mec-single-event .mec-event-social a.facebook:hover{background:#28385c}.mec-single-event .mec-event-social a.twitter{background:#00acee}.mec-single-event .mec-event-social a.twitter:hover{background:#0087bd}.mec-single-event .mec-event-social a.vimeo{background:#0dadd6}.mec-single-event .mec-event-social a.vimeo:hover{background:#0a85a3}.mec-single-event .mec-event-social a.dribble{background:#d53e68}.mec-single-event .mec-event-social a.dribble:hover{background:#bf4c78}.mec-single-event .mec-event-social a.youtube{background:#cb322c}.mec-single-event .mec-event-social a.youtube:hover{background:#992622}.mec-single-event .mec-event-social a.pinterest{background:#cb2027}.mec-single-event .mec-event-social a.pinterest:hover{background:#99181d}.mec-single-event .mec-event-social a.google{background:#c3391c}.mec-single-event .mec-event-social a.google:hover{background:#99181f}.mec-single-event .mec-event-social a.linkedin{background:#0073b2}.mec-single-event .mec-event-social a.linkedin:hover{background:#005380}.mec-single-event .mec-event-social a.email{background:#ff5d5e}.mec-single-event .mec-event-social a.email:hover{background:#cc4949}.mec-single-event .mec-event-social a.vk{background:#5b88bd}.mec-single-event .mec-event-social a.vk:hover{background:#3d608a}.mec-single-event .mec-event-social a.rss{background:#f29a1d}.mec-single-event .mec-event-social a.rss:hover{background:#cc7400}.mec-single-event .mec-event-social a.instagram{background:#457399}.mec-single-event .mec-event-social a.instagram:hover{background:#2e4d66}.mec-single-event .mec-event-social a.other-social{background:#ff5d5e}.mec-single-event .mec-event-social a.other-social:hover{background:#cc4949}.mec-single-event .mec-event-social{text-align:center}.mec-single-event .mec-events-meta-group-booking form>h4,.mec-single-event .mec-frontbox-title{text-transform:uppercase;font-size:15px;font-weight:700;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative;text-align:center}.mec-single-event .mec-events-meta-group-booking form>h4:before,.mec-single-event .mec-frontbox-title:before{padding:1px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-35px;left:50%}.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-month],.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-year]{width:47%!important;margin-right:12px;margin-top:5px;display:inline-block!important}@media(max-width:768px){.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-month],.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-year]{width:100%!important;margin-right:0;display:block!important}}.mec-event-meta i:before{font-size:20px;vertical-align:middle}.mec-event-meta .mec-single-event-additional-organizers i:before,.mec-event-meta .mec-single-event-organizer i:before{font-size:14px;vertical-align:baseline}#mec-wrap .mec-events-day-time-slot .mec-events-content{float:left;width:33%;padding:0 15px}#mec-wrap .mec-events-day-time-slot .mec-events-event-image{padding-left:0}#mec-events-content .mec-events-abbr{color:#8d8d8d;font-size:14px}.mec-single-event .mec-events-content{margin-bottom:30px}.mec-single-event .mec-organizer-url a{word-wrap:break-word}.mec-single-event #headline{margin:0 0 10px}.mec-single-event #headline h2{padding:0}.mec-single-event .mec-events-meta-group.mec-events-meta-group-gmap .mec-events-venue-map{margin-top:0;padding:8px;border:1px solid #e5e5e5;border-radius:7px}#mec-events-gmap-0{height:325px!important}.mec-events-list .mec-events-day-time-slot .mec-events-event-meta{width:33%;float:left;padding:40px;height:auto;margin:0}.mec-events-day-time-slot .mec-events-content.description.entry-summary{font-size:15px;font-weight:300;color:#8d8d8d}.mec-events-day-time-slot .type-mec_events h2{font-size:28px;padding-bottom:20px}.mec-events-day .mec-events-day-time-slot .type-mec_events{margin:0}.mec-events-day .mec-events-day-time-slot h5{background-color:#8d8d8d}.mec-single-event .mec-event-meta .mec-single-event-additional-organizers .mec-events-single-section-title,.mec-single-event .mec-event-meta .mec-single-event-organizer .mec-events-single-section-title,.mec-single-event .mec-events-meta-date h3{padding-left:0;margin:10px;display:inline-block}.mec-single-event .mec-events-meta-date h3{width:100%}.mec-single-event .mec-events-event-image{border:0}.mec-single-event .mec-events-venue-map{padding:0}.mec-event-cost,.mec-event-more-info,.mec-event-website,.mec-events-meta-date,.mec-single-event-additional-organizers,.mec-single-event-category,.mec-single-event-date,.mec-single-event-label,.mec-single-event-location,.mec-single-event-organizer,.mec-single-event-time{background:#f7f7f7;padding:12px 14px 8px;margin-bottom:12px;vertical-align:baseline;position:relative}.mec-single-event .mec-events-meta-date dd,.mec-single-event .mec-single-event-additional-organizers dd,.mec-single-event .mec-single-event-organizer dd{padding-left:0;margin-bottom:10px}.mec-single-event .mec-events-meta-date dd span,.mec-single-event .mec-single-event-additional-organizers dd span,.mec-single-event .mec-single-event-organizer dd span{display:block;padding-left:12px;color:#8d8d8d}.mec-single-event .mec-events-meta-date i,.mec-single-event .mec-single-event-additional-organizers i,.mec-single-event .mec-single-event-organizer i{margin-right:10px;margin-left:12px}.mec-events-meta-group.mec-events-meta-group-venue dl{margin-bottom:0}address.mec-events-address{line-height:19px;font-style:normal;font-size:12px}.mec-single-event .mec-event-content dt{margin-top:5px}.mec-single-event .mec-single-event-additional-organizers .mec-single-event-additional-organizer{margin-bottom:15px;padding-bottom:5px;border-bottom:1px solid #e4e4e4}.mec-single-event .mec-single-event-additional-organizers .mec-single-event-additional-organizer:last-child{margin-bottom:0;padding-bottom:0;border:none}.mec-event-schedule-content{border-left:4px solid #f0f0f0;padding-top:10px;margin-top:30px;margin-left:25px;margin-bottom:20px;color:#8a8a8a}.mec-event-schedule-content dl{padding-left:24px;font-size:12px;position:relative;margin-bottom:35px}.mec-event-schedule-content dl:before{content:'';display:block;position:absolute;left:0;top:4px;width:20px;height:0;border-top:4px solid #f0f0f0}.mec-event-schedule-content dl dt{margin:0 0 10px;line-height:1.16}.mec-event-schedule-content dl dt.mec-schedule-title{font-size:13px;color:#5a5a5a;font-weight:700}.mec-event-schedule-content dl dt.mec-schedule-description{font-weight:300}.mec-event-schedule-content .mec-schedule-speakers{background:#f7f7f7;padding:10px}.mec-wrap .mec-event-schedule-content h6{font-size:13px;color:#5a5a5a;font-weight:700;display:inline-block}.mec-wrap .mec-event-schedule-content a{font-weight:400;color:#5a5a5a;transition:all .1s ease}.single-mec-events .mec-speakers-details ul{padding:0}.mec-single-event .mec-speakers-details ul li{list-style:none;background:#f7f7f7;padding:5px 5px 18px 5px;margin-top:14px}.mec-single-event .mec-speakers-details ul li a{-webkit-transition:.2s all ease;transition:.2s all ease}.mec-single-event .mec-speakers-details ul li .mec-speaker-avatar a img{float:left;border-radius:50%;transition:.2s all ease;border:2px solid transparent;width:68px;height:68px}.mec-single-event .mec-speakers-details ul li .mec-speaker-avatar a:hover img{border-color:#40d9f1}.mec-single-event .mec-speakers-details ul li .mec-speaker-name{display:inline-block;margin-top:6px;font-size:14px;text-transform:capitalize;font-weight:700;padding-left:8px}.mec-single-event .mec-speakers-details ul li .mec-speaker-job-title{display:block;font-size:12px;margin-top:-1px;padding-left:75px}.mec-single-event-location img,.mec-single-event-organizer img{margin-bottom:10px;width:100%}.mec-qrcode-details{text-align:center}.mec-time-comment{font-size:11px}.mec-wrap .mec-attendees-list-details p{font-weight:300;margin:20px 0 0 0;color:#8d8d8d}.mec-wrap .mec-attendees-list-details li{list-style:none;display:block;margin-top:15px}.mec-wrap .mec-attendees-list-details li .mec-attendee-avatar{display:inline-block}.mec-wrap .mec-attendees-list-details li .mec-attendee-profile-link{display:inline-block;vertical-align:top;margin-left:10px}.mec-attendees-list-details ul{margin-bottom:0}.mec-attendees-list-details .mec-attendee-profile-link a{color:#8d8d8d}.mec-attendees-list-details .mec-attendee-profile-link span{display:block;color:#000}.mec-calendar{margin-bottom:20px;border:1px solid #e8e8e8;width:100%;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-calendar .mec-calendar-topsec{display:table;background:#fff}.mec-calendar .mec-calendar-topsec .mec-calendar-events-sec{display:none}.mec-calendar .mec-calendar-side{width:590px;display:table-cell;padding:40px;position:relative;text-align:center;box-shadow:0 1px 5px 6px rgba(0,0,0,.005) inset}.mec-calendar .mec-calendar-events-side{display:table-cell;height:100%;border-left:1px solid #efefef;padding:40px;width:100%}.mec-calendar .mec-calendar-events-side .mec-table-side-day{width:46px;height:46px;margin:0 auto 20px;position:relative;text-align:center;line-height:46px;border:1px solid #40d9f1;border-radius:50%;font-size:12px;font-weight:600;padding:0}.mec-calendar .mec-calendar-events-side .mec-table-side-title{text-align:center;font-size:11px;text-transform:uppercase;letter-spacing:3px;margin-bottom:14px}.mec-calendar .mec-calendar-header{position:relative;width:560px;margin-top:8px;margin-bottom:16px}.mec-calendar .mec-calendar-header h2{text-transform:uppercase;font-size:22px;font-weight:700;color:#333}.mec-calendar .mec-event-footer{width:auto;min-height:60px}.mec-calendar dl{display:table;margin:0;border:none;padding:0;table-layout:fixed}.mec-calendar dt{display:table-cell;transition:all .66s ease;color:#4d4d4d;background:#fff;border-radius:44px;font-size:14px;width:80px;height:80px;line-height:80px;text-align:center}.mec-calendar .mec-calendar-table .mec-no-event{display:none}.mec-calendar .mec-calendar-table-head dt{font-weight:700;text-transform:uppercase;font-size:15px}.mec-calendar .mec-calendar-row dt:hover{background:#f4f4f4}.mec-calendar .mec-table-nullday{color:#cacaca}.mec-calendar.mec-box-calendar .mec-table-nullday:last-child{border-right:1px solid #eaeaea}.mec-calendar .mec-next-month:hover,.mec-calendar .mec-prev-month:hover{background:#f4f4f4}.mec-calendar .mec-selected-day,.mec-calendar .mec-selected-day:hover{background:#40d9f1;color:#fff}.mec-calendar .mec-selected-day a{color:#fff}.mec-calendar .mec-has-event{position:relative}.mec-calendar .mec-calendar-row dt.mec-has-event:hover{background:#40d9f1}.mec-calendar .mec-has-event a{cursor:pointer;display:block;width:100%;height:100%;border-radius:50%;color:#4d4d4d;transition:all .25s ease;text-decoration:none;box-shadow:none}.mec-calendar .mec-calendar-row dt.mec-has-event.mec-selected-day a,.mec-calendar .mec-calendar-row dt.mec-has-event:hover a{color:#fff}.mec-calendar .mec-has-event:after{background-color:#40d9f1;border-radius:50%;display:block;content:'';width:8px;height:8px;bottom:14px;left:50%;margin:-4px 0 0 -4px;position:absolute;transition:all .25s ease}.mec-calendar .mec-calendar-row dt.mec-has-event:hover:after{background-color:#fff}.mec-calendar .mec-has-event.mec-selected-day:after{display:none}.mec-calendar .mec-event-article{text-align:left;margin-bottom:0;padding-bottom:25px;padding-top:26px;border-top:1px solid #efefef;transition:all .33s ease}.mec-calendar .mec-event-article:hover{background-color:#fafafa}.mec-calendar .mec-event-article .mec-event-time{font-size:11px;line-height:1.1;margin:0}.mec-calendar .mec-event-article .mec-event-title{font-size:13px;padding:0;margin:10px 0 8px;font-weight:700;text-transform:uppercase}.mec-calendar .mec-event-article .mec-event-title a{text-decoration:none;color:#494949;transition:color .3s ease}.mec-calendar .mec-event-article .mec-event-title a:hover{color:#40d9f1}.mec-calendar .mec-event-article .mec-event-image,.mec-calendar .mec-event-list-classic .mec-event-image img{width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-image{float:left;margin-right:20px;width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-detail{font-size:13px;line-height:1.3;font-family:Roboto,sans-serif;color:#9a9a9a;margin-bottom:0}.mec-calendar .mec-calendar-side .mec-next-month,.mec-calendar .mec-calendar-side .mec-previous-month{cursor:pointer;position:absolute;top:0;min-width:50px;height:50px;line-height:50px;text-align:center;background:#fff;color:#a9a9a9;font-size:12px;letter-spacing:1px;text-transform:uppercase;padding-left:10px;padding-right:10px;border:1px solid #efefef;border-top:none;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease}.mec-calendar .mec-calendar-side .mec-next-month i,.mec-calendar .mec-calendar-side .mec-previous-month i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-calendar .mec-calendar-side .mec-next-month:hover,.mec-calendar .mec-calendar-side .mec-previous-month:hover{background-color:#f9f9f9;color:#40d9f1}.mec-calendar .mec-calendar-side .mec-previous-month{left:0;border-bottom-right-radius:6px;border-left:none}.mec-calendar .mec-calendar-side .mec-next-month{right:0;border-bottom-left-radius:6px;border-right:none}@media only screen and (min-width:961px){.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-has-event:after{width:6px;height:6px;bottom:6px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-calendar-side{width:370px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-calendar-header{position:relative;width:350px;margin-top:30px;margin-bottom:20px;padding-top:20px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) dt{width:50px;height:50px;line-height:50px}.mec-wrap.mec-sm959 .mec-calendar.mec-event-calendar-classic dl dt{height:110px}}@media only screen and (max-width:1200px){.mec-calendar .mec-has-event:after{width:6px;height:6px;bottom:6px}.mec-calendar .mec-calendar-side{width:370px}.mec-calendar .mec-calendar-header{position:relative;width:350px;margin-top:30px}.mec-calendar dt{width:50px;height:50px;line-height:50px}}@media only screen and (max-width:767px){.mec-calendar .mec-calendar-header h2{font-size:18px}.mec-calendar .mec-calendar-topsec{width:100%}.mec-calendar .mec-calendar-side{width:100%;display:block;padding:30px}.mec-calendar .mec-calendar-header{width:auto}.mec-calendar .mec-calendar-events-side{width:100%;display:block;height:100%;border-left:none;border-top:1px solid #efefef;padding:20px}.mec-calendar dl{width:100%}.mec-calendar dt{width:14%;height:60px;line-height:60px;border-radius:50px}}@media only screen and (max-width:479px){.mec-calendar .mec-has-event:after{width:4px;height:4px}.mec-calendar .mec-calendar-header h2{font-size:16px;margin-top:33px}.mec-calendar dt{height:38px;line-height:38px}.mec-calendar .mec-event-list-classic .mec-event-detail,.mec-calendar .mec-event-list-classic .mec-event-title{font-size:12px}.mec-calendar .mec-event-list-classic .mec-event-time{font-size:10px}}.mec-box-calendar.mec-calendar .mec-has-event a,.mec-box-calendar.mec-calendar dt{border-radius:0}.mec-box-calendar.mec-calendar .mec-calendar-header{margin-top:2px;margin-bottom:30px}.mec-box-calendar.mec-calendar dt{border-bottom:1px solid #eaeaea;border-left:1px solid #eaeaea}.mec-box-calendar.mec-calendar dl dt:last-child{border-right:1px solid #eaeaea}.mec-box-calendar.mec-calendar .mec-calendar-table-head dt{border-top:1px solid #eaeaea;background-color:#f8f8f8}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt{background-color:#f4f4f4}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{border-radius:2px;top:40px;border:1px solid #eee;height:30px;line-height:30px;z-index:1}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:60px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:60px}.mec-box-calendar.mec-calendar .mec-calendar-side{box-shadow:none}.mec-box-calendar.mec-calendar .mec-calendar-events-side{border:none}.mec-box-calendar.mec-calendar .mec-calendar-events-side .mec-table-side-day{border-radius:2px}.mec-box-calendar.mec-calendar h4.mec-month-label{position:relative;width:560px;margin-top:2px;margin-bottom:30px;text-transform:uppercase;font-size:22px;font-weight:700;color:#333}.mec-widget .mec-box-calendar.mec-calendar h4.mec-month-label{width:100%;margin-top:8px;font-size:13px}@media only screen and (max-width:1200px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:42px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:42px}.mec-calendar .mec-calendar-header h2{font-size:17px;margin-top:7px}}@media only screen and (max-width:767px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{top:28px;font-size:10px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:30px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:30px}.mec-calendar .mec-calendar-header h2{font-size:15px}}@media only screen and (max-width:479px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{top:16px;font-size:0;padding:4px 0;text-align:center;min-width:33px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:10px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:10px}.mec-box-calendar.mec-calendar .mec-calendar-header h2{font-size:12px;margin-top:15px}.mec-box-calendar.mec-calendar .mec-event-image{margin-right:12px}}.mec-calendar.mec-event-calendar-classic,.mec-calendar.mec-event-calendar-classic .mec-calendar-side{border:none;padding:0;width:100%;height:100%;box-shadow:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-side{display:block}.mec-calendar.mec-event-calendar-classic .mec-calendar-header,.mec-calendar.mec-event-calendar-classic dl{width:100%}.mec-calendar.mec-event-calendar-classic dl dt{width:15%;height:136px;line-height:1.2;text-align:left;padding:5px 7px;position:relative}.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt{height:30px!important}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month{top:0}.mec-calendar.mec-event-calendar-classic .mec-has-event:after{bottom:auto;top:24px;left:7px;margin:0}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month{left:0}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month{right:0}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{text-align:left;background:#fafafa;border:1px solid #eaeaea;border-top:none;padding:10px 20px}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{display:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-event-article:hover{background-color:#fcfcfc}.mec-calendar.mec-event-calendar-classic .mec-selected-day,.mec-calendar.mec-event-calendar-classic dt.mec-selected-day:hover{color:#40d9f1;font-weight:700;background:#fafafa;border-bottom:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-day,.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-title{display:inline-block;margin:0;margin-bottom:15px;font-weight:700}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-day{margin-left:4px}.mec-calendar.mec-event-calendar-classic .mec-calendar-row dt.mec-has-event a{color:#4d4d4d}.mec-calendar.mec-event-calendar-classic .mec-calendar-row dt.mec-has-event:not(.mec-selected-day):hover a{color:#fff}@media only screen and (max-width:1200px){.mec-calendar.mec-event-calendar-classic dl dt{height:100px}}@media only screen and (max-width:767px){.mec-calendar.mec-event-calendar-classic dl dt{height:40px}}@media only screen and (max-width:479px){.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{padding:10px}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-header h2{font-size:13px;margin-top:8px}}.mec-calendar .mec-event-article.mec-single-event-novel{padding:4px 8px;min-height:25px;margin:0 -4px;border-radius:0}.mec-calendar .mec-event-article.mec-single-event-novel h4{margin:0;font-size:10px;line-height:18px}.mec-calendar.mec-event-container-novel dl dt{padding:3px}.mec-calendar.mec-event-calendar-classic .mec-calendar-novel-selected-day{display:inline-block;padding:4px;margin-left:1px}.mec-calendar.mec-event-calendar-classic .mec-selected-day .mec-calendar-novel-selected-day{color:#fff}.mec-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-selected-day,.mec-calendar.mec-event-calendar-classic.mec-event-container-novel dt.mec-selected-day:hover{border-bottom:1px solid #eaeaea}.mec-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-calendar-side .mec-calendar-table{min-height:auto}.mec-single-event-novel.light h4{color:#000!important}.mec-single-event-novel.dark h4{color:#fff!important}@media only screen and (max-width:768px){.mec-calendar .mec-event-article.mec-single-event-novel{padding:0;min-height:5px}.mec-calendar .mec-event-article.mec-single-event-novel h4{display:block;font-size:9px}}.mec-event-container-simple .event-single-content-simple{display:none}.mec-event-calendar-classic.mec-event-container-simple .mec-calendar-side .mec-calendar-table{min-height:unset}.mec-event-container-simple .mec-monthly-tooltip h4{font-size:13px;font-weight:500;margin:0;color:#444}.mec-event-container-simple .mec-monthly-tooltip h4:hover{text-decoration:underline;color:#111}.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple{border-bottom:1px dashed #e3e3e3;padding:10px 2px;display:block}.mec-calendar.mec-event-container-simple dl dt.mec-calendar-day{font-size:30px;color:#000}.mec-calendar.mec-event-container-simple .mec-calendar-row dt:hover{background:unset}.mec-calendar.mec-event-container-simple .mec-calendar-row dt,.mec-calendar.mec-event-container-simple .mec-calendar-row dt:last-child,.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt,.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt:last-child{border-width:2px}.mec-calendar.mec-event-container-simple dl dt.mec-selected-day,.mec-calendar.mec-event-container-simple dl dt.mec-selected-day:hover{border-bottom:2px solid #40d9f1;background:unset}.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt{line-height:36px}@media (max-width:768px){.mec-calendar.mec-event-container-simple{overflow-x:scroll}.mec-calendar.mec-event-container-simple .mec-calendar-side{min-width:700px}.mec-event-container-simple .mec-monthly-tooltip h4{font-size:12px}}.mec-wrap.colorskin-custom .mec-calendar.mec-event-container-simple .mec-selected-day:hover{background:#f4f4f4}.mec-event-container-simple .mec-calendar-day .mec-monthly-tooltip.event-single-link-simple:last-of-type{border:none}.mec-tooltip-event-title{font-size:16px;font-weight:700;color:#000;margin-bottom:2px}.mec-tooltip-event-time{font-size:12px;color:#888;margin-bottom:8px;margin-top:5px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-content{padding:17px}.mec-tooltip-event-content{clear:both}.mec-tooltip-event-featured{float:left;margin-right:13px;margin-bottom:1px}.mec-tooltip-event-featured img{max-width:120px}.mec-tooltip-event-desc{font-size:14px;color:#444;line-height:18px}.mec-tooltip-event-desc p{font-size:13px;line-height:1.4;margin-bottom:10px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-box{border-radius:3px!important;border:1px solid #e2e3e4!important;background:#fff!important;box-shadow:0 -1px 30px -2px rgba(0,0,0,.15)!important}.tooltipster-sidetip .tooltipster-arrow{overflow:visible!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-border{border-width:12px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-right .tooltipster-arrow-border{border-right-color:#e2e3e4!important}.tooltipster-sidetip .tooltipster-arrow-border{left:-12px!important;z-index:9999999999!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-background{display:block!important}.tooltipster-sidetip .tooltipster-arrow-background{border-width:11px!important;z-index:99999999999!important}.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background{left:-9px!important;top:1px!important;border-right-color:#fff!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background{border-top-color:#fff!important;left:0!important;top:-1px!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border{left:-1px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-top .tooltipster-arrow-border{border-top-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{left:-1px!important;top:-11px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{border-bottom-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background{top:-9px!important;border-bottom-color:#fff!important}.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background{border-left-color:#fff!important;left:-2px!important;top:0!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-left .tooltipster-arrow-border{border-left-color:#e2e3e4!important;left:-1px!important;top:-1px!important}@media (max-width:780px){.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple h4{word-break:break-all;font-size:13px}}@media (max-width:320px){.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple h4{font-size:10px}}.mec-calendar.mec-calendar-daily .mec-calendar-day-events .mec-event-article{padding-left:15px;padding-right:15px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month{text-align:center;background-color:#fff;border-bottom:2px solid #f4f4f4;position:relative}.mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{color:#444;font-size:18px;line-height:1.2;padding:15px 0 11px;margin:0;font-weight:700;letter-spacing:1px;text-transform:uppercase;border-bottom:1px solid #e6e6e6}.mec-calendar.mec-calendar-daily .mec-calendar-d-top{text-align:center;padding:10px 0;position:relative;background-color:#fafafa}.mec-calendar.mec-calendar-daily .mec-next-month,.mec-calendar.mec-calendar-daily .mec-previous-month{position:absolute;top:50%;left:50%;margin-top:-25px;min-width:50px;height:50px;line-height:50px;text-align:center;background:#fff;border:1px solid #e2e2e2;border-radius:50px;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month i,.mec-calendar.mec-calendar-daily .mec-previous-month i{font-size:14px;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month:hover,.mec-calendar.mec-calendar-daily .mec-previous-month:hover{border-color:#d0d0d0;color:#444;box-shadow:0 2px 5px 0 rgba(0,0,0,.075)}.mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-150px}.mec-calendar.mec-calendar-daily .mec-next-month{margin-left:100px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-next-month,.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-previous-month{min-height:28px;height:28px;line-height:28px;width:28px;margin-top:-14px;border-radius:3px}.mec-calendar.mec-calendar-daily .mec-calendar-d-top h2,.mec-calendar.mec-calendar-daily .mec-calendar-d-top h3{margin-top:9px;color:#b9b9b9;font-family:Roboto,sans-serif;font-size:30px;font-weight:100;text-transform:uppercase;margin-bottom:12px;line-height:1}.mec-calendar.mec-calendar-daily .mec-calendar-d-top h2{font-size:81px;color:#444;margin-bottom:10px;line-height:1.1}.mec-calendar.mec-calendar-daily .mec-calendar-d-table{overflow:hidden;background:#fff;min-height:60px;border-top:1px solid #e6e6e6;border-bottom:2px solid #f3f3f3;padding:0 50px;position:relative}@media only screen and (min-width:479px){.mec-calendar.mec-calendar-daily .mec-calendar-d-table{padding:0 55px}}.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl{width:1310px;display:block}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl{display:none}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl.mec-weekly-view-week-active{display:block}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt{display:block;background:#fff;width:42px;height:60px;line-height:60px;text-align:center;float:left;border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6;border-radius:0}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day:hover,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt:hover{background:#fafafa;box-shadow:0 2px 5px 0 rgba(0,0,0,.065) inset;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day{cursor:default;background:#fff;color:#c1c1c1;line-height:59px;text-align:center;border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-has-event{cursor:pointer;font-weight:700;color:#4a4a4a}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-daily-view-day-active,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt.mec-table-d-current{font-size:18px;font-weight:700;background:#fafafa;color:#40d9f1}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next,.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-prev{float:none;font-size:14px;width:55px;position:absolute;top:0;left:0;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next{left:auto;right:0;border-left:1px solid #e6e6e6;border-right:none}.mec-calendar.mec-calendar-daily .mec-today-container .mec-today-count{font-size:12px;color:#888;text-align:center}@media only screen and (max-width:479px){.mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-130px}.mec-calendar.mec-calendar-daily .mec-next-month{margin-left:80px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{font-size:14px;letter-spacing:0}}.widget .mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{font-size:14px;letter-spacing:0}.widget .mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-130px}.widget .mec-calendar.mec-calendar-daily .mec-next-month{margin-left:80px}.mec-util-hidden{display:none}.mec-daily-view-date-events,.mec-weekly-view-date-events{list-style:none;margin:0}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table{padding:0}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl{width:calc(100% - 1px)}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt{width:14.286%;height:70px;line-height:normal;cursor:default}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:hover{background:#fff;cursor:default}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:last-child{border-right:none}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:12px;font-weight:700;text-transform:uppercase;display:block;margin:15px 0 6px}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table a.mec-table-d-next,.mec-calendar.mec-calendar-weekly .mec-calendar-d-table a.mec-table-d-prev{display:none}ul.mec-weekly-view-dates-events,ul.mec-weekly-view-dates-events li{padding:0;margin:0;line-height:initial}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:64px;height:64px;margin-right:10px;font-size:11px;text-transform:uppercase;float:left;text-align:center;padding-top:2px}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:40px;line-height:30px;font-weight:700;display:block;margin-bottom:6px;letter-spacing:1px}.mec-calendar.mec-calendar-weekly .mec-calendar-a-month .mec-previous-month{margin-left:0;left:12px}.mec-calendar.mec-calendar-weekly .mec-calendar-a-month .mec-next-month{margin-left:0;left:auto;right:12px}@media only screen and (max-width:479px){.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:9px;letter-spacing:0}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:100%;height:36px;margin-bottom:12px;line-height:1;font-size:10px;margin-right:5px;text-align:left}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:18px;margin-bottom:5px}}.widget .mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:9px;letter-spacing:0}.widget .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:100%;height:36px;margin-bottom:12px;line-height:1;font-size:10px;margin-right:5px;text-align:left}.widget .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:18px;margin-bottom:5px}.mec-week-events-container .mec-weekly-view-dates-events li.mec-no-event-found{list-style:none!important}li.mec-no-event-found .mec-event-title{text-align:center}.mec-widget .mec-calendar{max-width:100%}.mec-widget .mec-calendar dl dt,.mec-wrap.mec-sm959.mec-widget .mec-calendar.mec-event-calendar-classic dl dt{height:40px}.mec-widget .mec-calendar .mec-calendar-events-sec{padding:10px}.mec-widget .mec-calendar .mec-calendar-header h2{font-size:13px;margin-top:8px}.mec-widget .mec-calendar .mec-event-list-classic .mec-event-image{margin-right:12px}.mec-widget .mec-calendar .mec-has-event:after{width:4px;height:4px}.mec-widget .mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-title{font-size:14px}.mec-widget .mec-calendar .mec-event-article .mec-event-image{margin-right:11px}.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-header{margin-bottom:20px}.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{font-size:0;padding:4px 0;text-align:center;min-width:33px}.mec-widget .mec-event-calendar-classic .mec-calendar-side .mec-calendar-table{min-height:200px}.mec-widget .mec-event-list-classic{margin-bottom:8px;padding:8px 0}.mec-widget .mec-event-list-classic .mec-event-article{margin-bottom:0;padding:10px 0;position:relative;min-height:86px;padding-left:80px}.mec-widget .mec-event-list-classic .mec-event-date{font-size:10px;line-height:14px;text-transform:uppercase}.mec-widget .mec-event-list-classic .mec-event-title{font-size:13px}.mec-widget .mec-event-list-classic .mec-event-detail{font-size:11px}.mec-widget .mec-event-list-classic .mec-event-image{width:68px;position:absolute;left:0}.mec-event-list-classic .mec-event-image img{width:100%}.mec-widget .mec-event-list-classic .mec-event-detail{overflow:visible}.event-color{width:14px;display:inline-block;height:14px;margin-left:5px;border-radius:50%}.mec-map-lightbox-wp{width:580px;padding:15px 15px 0;background-color:#fff}.mec-map-view-event-detail.mec-event-detail{width:580px;background-color:#e9e9e9;padding:8px 15px}.mec-map-lightbox-wp.mec-event-list-classic .mec-event-article{padding:0 0 15px;margin:0}.mec-map-lightbox-wp.mec-event-list-classic .mec-event-image{width:70px;margin-right:15px}.mec-marker-infowindow-wp{padding:10px}.mec-marker-infowindow-wp .mec-marker-infowindow-count{width:60px;height:60px;display:block;text-align:center;line-height:60px;border:1px solid #40d9f1;border-radius:50%;font-size:32px;color:#40d9f1;float:left;margin-right:11px}.mec-marker-infowindow-wp .mec-marker-infowindow-content{overflow:hidden;padding-top:6px}.mec-marker-infowindow-wp .mec-marker-infowindow-content span{display:block;color:#222}.mec-marker-infowindow-wp .mec-marker-infowindow-content span:first-child{font-size:15px;font-weight:700}.mec-marker-wrap{display:inline-block;width:35px;height:35px;margin:15px 0 0 4px;border-radius:50% 50% 50% 0;background:#00cae9;animation-name:mec-map-bounce;animation-fill-mode:both;animation-duration:1s;border:3px solid #fff;cursor:pointer}.mec-marker-wrap .mec-marker{margin-top:5px;display:block;-webkit-transform:rotate(45deg);transform:rotate(45deg);text-align:center;color:#fff;font-size:17px}.mec-marker-wrap .mec-marker-pulse-wrap{-webkit-transform:rotate(45deg);transform:rotate(45deg);display:inline-block;margin-left:-11px;margin-top:0}.mec-marker-wrap .mec-marker-pulse{display:inline-block;background:#c5c5c5;border-radius:50%;height:14px;width:14px;-webkit-transform:rotateX(55deg);transform:rotateX(55deg);z-index:-2}.mec-marker-wrap .mec-marker-pulse:after{content:"";border-radius:50%;height:40px;width:40px;position:absolute;margin:-13px 0 0 -13px;animation:pulsate 1s ease-out;animation-iteration-count:infinite;opacity:0;box-shadow:0 0 1px 2px #00cae9;animation-delay:1.1s}@keyframes pulsate{0%{transform:scale(.1,.1);opacity:0}50%{opacity:1}100%{transform:scale(1.2,1.2);opacity:0}}@keyframes mec-map-bounce{0%{opacity:0;transform:translateY(-2000px) rotate(-45deg)}60%{opacity:1;transform:translateY(30px) rotate(-45deg)}80%{transform:translateY(-10px) rotate(-45deg)}100%{transform:translateY(0) rotate(-45deg)}}.mec-skin-grid-container .mec-skin-map-container,.mec-skin-list-container .mec-skin-map-container{margin-bottom:20px}.mec-single-event{margin-top:10px}.mec-single-event .mec-events-meta-group-countdown{color:#c9c9c9;text-align:center;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-events-meta-group-countdown .countdown-w{text-align:center;font-size:36px;margin:0 auto;padding:40px 0 0;position:relative;display:table;table-layout:fixed}.mec-events-meta-group-countdown .countdown-w .icon-w{font-size:24px}.mec-events-meta-group-countdown .countdown-w .label-w{font-size:15px;font-weight:300;letter-spacing:1px;text-transform:uppercase;position:relative}.mec-events-meta-group-countdown .countdown-w .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px;width:190px;font-size:72px;transition:all .3s ease-in-out;line-height:1.2}.mec-events-meta-group-countdown .countdown-w .block-w.done-w{border:0 none}.mec-events-meta-group-countdown .countdown-w span{padding:24px 0 20px}.mec-events-meta-group-countdown .countdown-w .div-d{display:none}.mec-events-meta-group-countdown .countdown-w .countdown-message{display:none}.mec-events-meta-group-countdown .countdown-w .block-w i{display:none}#countdown{list-style:none;margin-bottom:0;margin-top:0;margin-left:0;padding-left:0}.mec-events-meta-group-countdown .mec-end-counts h3{display:inherit;text-align:center;font-size:16px;right:50%}.mec-countdown-details .countdown-w .clockdiv li p{margin-top:23px}@media (min-width:481px) and (max-width:768px){.mec-events-meta-group-countdown .countdown-w{padding:0}.mec-events-meta-group-countdown .countdown-w .label-w{font-size:12px;letter-spacing:0}.mec-events-meta-group-countdown .countdown-w span{font-size:34px}}@media (min-width:320px) and (max-width:480px){.mec-events-meta-group-countdown .countdown-w .label-w{font-size:10px}.mec-events-meta-group-countdown .countdown-w span{font-size:28px}.mec-countdown-details .countdown-w .clockdiv li p{margin-top:16px}}@media (max-width:320px){.mec-events-meta-group-countdown .countdown-w .label-w{font-size:9px;letter-spacing:0}.mec-events-meta-group-countdown .countdown-w span{font-size:22px}}.info-msg,.mec-error,.mec-success,.warning-msg{margin:10px 0;padding:10px;border-radius:3px 3px 3px 3px;font-size:13px}.info-msg{color:#059;background-color:#bef}.mec-success{color:#0dbf52;background-color:#cef7ce}.warning-msg{color:#9f6000;background-color:#feefb3}.mec-error{color:#d8000c;background-color:#ffbaba}.mec-fes-form,.mec-fes-list{background:#f8feff;padding:30px 3%;color:#798f96;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important}.mec-fes-list .mec-fes-list-top-actions,.mec-fes-list ul{margin:0 auto 15px;max-width:960px;list-style:none}.mec-fes-form-cntt .dashicons-editor-help{display:none}.mec-fes-list ul li *{text-decoration:none!important}.mec-fes-list ul li{padding:20px 15px;border-radius:3px;margin-bottom:15px;border:1px solid #cfeff5;box-shadow:0 2px 6px -4px #cfeff5;background:#fff;line-height:normal}.mec-fes-list ul li a{box-shadow:none;color:#181818}.mec-fes-list ul li a:hover{color:#40d9f1}.mec-fes-list ul li .mec-event-title{font-size:17px;font-weight:600;width:calc(100% - 250px);display:inline-block}@media (max-width:600px){.mec-fes-list ul li .mec-event-title{font-size:13px}}.mec-fes-list .mec-event-status{color:#fff!important;border-color:transparent!important}.mec-fes-form .mec-book-confirmed,.mec-fes-list .mec-book-confirmed{background:#50d477!important}.mec-fes-form .mec-book-pending,.mec-fes-list .mec-book-pending{background:#fcbe69!important}.mec-fes-form .mec-book-rejected,.mec-fes-list .mec-book-rejected{background:#fe686a!important}.mec-fes-form .mec-book-other,.mec-fes-list .mec-book-other{background:#40d9f1!important}.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view{font-size:11px;padding:0;border:0;background:#f7f8f9;float:right;margin-left:5px;border-radius:2px;transition:all .2s ease}.mec-fes-list ul li .mec-fes-event-export a,.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view a{padding:4px 8px;display:inline-block;border:1px solid #e7e8e9;border-radius:2px;color:#789;position:relative}@media (max-width:600px){.mec-fes-list ul li .mec-fes-event-export a,.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view a{font-size:10px}}.mec-fes-list ul li .mec-fes-event-remove:hover{cursor:pointer;background:#f96f8a;border-color:#f96f8a;color:#fff}.mec-fes-list ul li .mec-fes-event-export a:hover,.mec-fes-list ul li .mec-fes-event-view a:hover{background:#40d9f1;color:#fff;border-color:#40d9f1}.mec-fes-form-top-actions a,.mec-fes-list-top-actions a{position:relative;border:none;border-radius:3px;color:#fff!important;display:inline-block;font-size:13px;line-height:1;text-transform:none;font-weight:400;text-decoration:none;cursor:pointer;margin-bottom:20px!important;margin-right:10px;line-height:1;letter-spacing:0;padding:15px 22px;background:#39c36e;box-shadow:0 1px 7px -3px #39c36e!important;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease}.mec-fes-form-top-actions a:hover,.mec-fes-list-top-actions a:hover{background:#222;color:#fff}.mec-fes-list-top-actions a{font-weight:600;text-transform:capitalize}.mec-fes-form-top-actions a:before{content:"";border:solid #fff;border-width:0 2px 2px 0;display:inline-block;padding:6px;margin-right:5px;vertical-align:sub;transform:rotate(135deg);-webkit-transform:rotate(135deg)}.mec-fes-form .mec-form-row,.mec-fes-list .mec-form-row{margin-bottom:10px;clear:both}.mec-fes-form label{font-size:13px;display:block;color:#798f96;font-weight:400;padding:0 0 4px 2px}.mec-fes-form input+label{padding-top:8px;padding-left:3px;margin:0;display:inline-block;vertical-align:top}.mec-fes-form .post-status{float:right!important;margin:0 5px;color:#fff;padding:0 10px;border-radius:12px;font-style:italic;font-size:18px}.mec-fes-form input[type=email],.mec-fes-form input[type=number],.mec-fes-form input[type=password],.mec-fes-form input[type=tel],.mec-fes-form input[type=text],.mec-fes-form select,.mec-fes-form textarea{min-width:inherit;width:auto;display:inline;min-height:30px;font-size:13px;padding:10px;margin-bottom:20px;clear:both;background:#fff;border:1px solid #cfeff5;box-shadow:0 2px 5px rgba(207,239,245,.38) inset;border-radius:3px;height:40px;max-width:280px;color:#798f96}.mec-fes-form input{background:#fff!important;border-radius:3px!important;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important}.mec-fes-form textarea{height:80px}.mec-fes-form input::-webkit-input-placeholder{color:#798f96}.mec-fes-form input::-moz-placeholder{color:#798f96}.mec-fes-form input:-ms-input-placeholder{color:#798f96}.mec-fes-form input:-moz-placeholder{color:#798f96}#mec_more_info_target{width:100%}@media only screen and (min-width:961px){.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=text],.mec-fes-form textarea{width:100%;display:inline-block}}@media only screen and (max-width:768px){.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=text],.mec-fes-form textarea{width:100%}}.mec-fes-form input[type=text]#mec_fes_title{padding:5px 10px;min-height:32px;height:50px;background:#fff!important;max-width:100%;font-size:19px;font-weight:400}.mec-fes-form input[type=checkbox],.mec-fes-form input[type=radio]{display:inline!important;float:left;margin:5px 5px 0 0}.mec-fes-form input[type=email]:focus,.mec-fes-form input[type=number]:focus,.mec-fes-form input[type=password]:focus,.mec-fes-form input[type=tel]:focus,.mec-fes-form input[type=text]:focus,.mec-fes-form select:focus,.mec-fes-form textarea:focus{border:1px solid #aaa;color:#444;background:#fff;-moz-box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);box-shadow:0 0 3px rgba(0,0,0,.2);outline:0}.mec-form-row .mec-color{cursor:pointer}.mec-form-row.mec-available-color-row span{margin:10px;width:14px;height:14px;display:inline-block;margin-right:6px;border-radius:20px 20px 20px 20px;vertical-align:middle}.mec-form-row.mec-available-color-row span:first-of-type{margin-left:0}.mec-fes-form.mec-fes-form .mec-tooltip{display:inline}.mec-fes-form-cntt .dashicons-editor-help{display:block}.mec-fes-form .mec-tooltip:hover:after,.mec-fes-form .mec-tooltip:hover:before{display:none}.mec-fes-form.mec-fes-form .mec-tooltip{display:inline-flex;bottom:7px}.mec-fes-form .mec-tooltip .box{min-width:300px;max-width:600px;display:inline-block;left:26px;top:50%;transform:translateY(-50%);padding:0;margin-top:8px;background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.3;position:absolute;z-index:9999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s}#webnus-dashboard .mec-fes-form .mec-tooltip .box p,.mec-fes-form .mec-tooltip .box p{color:#fff;font-size:14px;line-height:1.3;margin:0}.mec-fes-form .mec-tooltip:hover .box{visibility:visible;opacity:1}.mec-fes-form .mec-tooltip:hover .box{padding:20px;border-radius:8px}.mec-fes-form .mec-tooltip .box h5{color:#fff;font-size:17px;font-weight:600;margin:-30px -20px;padding:20px 0;text-align:center;margin-bottom:10px;background:#3a3f44;border-bottom:1px solid #32363a;border-radius:6px 6px 0 0;z-index:9999}#webnus-dashboard .mec-fes-form .mec-tooltip .box p a,.mec-fes-form .mec-tooltip .box p a{color:#40d9f1;margin-top:10px;margin-left:0;font-weight:400;position:relative;text-decoration:none;display:block;width:max-content}.mec-fes-form .mec-tooltip .box a:hover{color:#f90}.mec-fes-form .mec-tooltip .box:after{display:block;position:absolute!important;top:100%!important;right:50%!important;margin-top:-6px!important;margin-right:-6px!important;width:12px!important;height:24px!important;overflow:hidden!important;transform:rotate(-90deg)!important}.mec-fes-form .mec-tooltip .box:before{display:block;content:''!important;position:absolute!important;width:12px;height:12px;left:-10px!important;top:50%!important;transform:translate(50%,-50%) rotate(-45deg)!important;background-color:#535a61!important;box-shadow:0 8px 9px -4px #535a61!important;z-index:0!important}.mec-fes-form .mec-tooltip .box.top{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-fes-form .mec-tooltip .box.top:after{top:50%!important;right:100%!important}.mec-fes-form .mec-tooltip .box.top:before{left:50%!important;top:100%!important}.mec-fes-form .mec-tooltip .box.bottom{left:50%;top:auto;bottom:0;transform:translate(-50%,100%);margin-bottom:-20px;margin-left:-10px}.mec-fes-form .mec-tooltip .box.bottom:after{top:0!important;right:50%!important;background-color:#3a3f44!important}.mec-fes-form .mec-tooltip .box.bottom:before{left:50%!important;top:-7px!important;transform:translateX(-50%);background-color:#3a3f44!important}.mec-fes-form .mec-tooltip .box.left{left:auto;right:26px;top:50%;transform:translateY(-50%)}.mec-fes-form .mec-tooltip .box.left:before{right:0!important;left:auto!important;top:50%!important}.mec-fes-form .mec-tooltip{display:inline-block;position:relative;margin-right:10px;cursor:help;bottom:5px;left:3px}.mec-fes-form .mec-tooltip:last-child{margin-right:0}.mec-fes-form .mec-tooltip:hover:after{background:#313130;border-radius:5px;bottom:24px;color:#fff;content:attr(title);left:-75px;padding:10px;position:absolute;z-index:98;width:240px}.mec-fes-form .mec-tooltip:hover:before{border:solid;border-color:#313130 transparent;border-width:6px 6px 0;bottom:18px;content:"";left:30%;position:absolute;z-index:99}.mec-fes-form .mec-tooltip .dashicons-before:before{font-size:24px;color:#008aff;line-height:37px}.mec-fes-form .mec-tooltip a:focus{box-shadow:none}.mec-form-row .bootstrap_unvalid{display:block;border:2px solid red;position:relative;display:inline-block;border-bottom:1px dotted #000}.mec-fes-form .mec-tooltiptext{visibility:hidden;width:120px;background-color:red;color:#fff;text-align:center;border-radius:6px;padding:5px 0;position:absolute;z-index:1}.mec-fes-form .mec-tooltip .content p a{display:none}@media only screen and (min-width:961px){.mec-fes-form .mec-fes-form-cntt,.mec-fes-form .mec-fes-form-sdbr{width:68%;float:left;padding-right:20px}.mec-fes-form .mec-fes-form-sdbr{width:32%;padding-right:0;padding-left:20px}.mec-fes-submit-mobile{display:none}}.mec-fes-form .mec-meta-box-fields{padding:0 20px 20px;border:1px solid #cfeff5;margin-bottom:20px!important;box-shadow:0 2px 6px -3px #cfeff5;border-radius:3px;background:#fff}.mec-fes-form .mec-meta-box-fields h4{margin:0 -20px;font-size:15px;font-weight:600;letter-spacing:0;color:#40d9f1;text-transform:capitalize;padding:15px 20px;background:#ecfcff;margin-bottom:20px;border-radius:3px}.mec-fes-sub-button{width:100%}.mec-available-color-row span.color-selected{border:3px solid #fff;box-sizing:content-box;box-shadow:0 0 0 2px #40d9f1,0 2px 8px -1px #40d9f1}.mec-fes-loading:before{content:url(../img/ajax-loader.gif);background:0 0;border-style:none;display:block;margin-left:47%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text]{width:190px;margin-right:1.4%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-1,.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-2{width:120px;margin-right:10px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].widefat{width:100%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row{border-bottom:none;padding-bottom:10px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-6{width:39%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row button{margin-right:0;padding:9px 26px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row button.mec-add-hourly-schedule-button{font-size:12px;height:30px;line-height:25px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row .description{display:inline-block;border-left:1px dashed #bfcacc;margin-left:12px;line-height:28px;padding-left:12px;margin-top:5px;font-style:italic}@media only screen and (max-width:768px){.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text]{width:100%!important}}#mec_fes_form_message{max-width:838px;margin:10px auto;display:block!important;text-align:center}.mec-wrap .mec-totalcal-box{position:relative;border:1px solid #efefef;padding:20px 5px;margin:0 0 20px;background:#fafafa;overflow:hidden;box-shadow:0 3px 2px 0 rgba(0,0,0,.012);min-height:78px}.mec-wrap .mec-totalcal-box i{float:left;margin:0;width:36px;height:36px;background:#fff;border:1px solid #efefef;text-align:center;padding:10px 0;font-size:15px;color:#888}.mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-wrap .mec-totalcal-box input,.mec-wrap .mec-totalcal-box select{width:auto;min-height:36px;height:36px;line-height:36px;background:#fff;font-size:13px;color:#777;border:1px solid #efefef;margin:0 0 0 -1px;float:left;padding:0 5px;font-family:Roboto,Helvetica,Arial,sans-serif}.mec-wrap .mec-totalcal-box input[type=submit]{cursor:pointer;padding:0 16px;text-transform:uppercase;font-size:11px;font-family:Montserrat,Helvetica,Arial,sans-serif;transition:all .21s ease}.mec-wrap .mec-totalcal-box input[type=submit]:hover{background:#222;color:#fff}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{display:inline-block;text-transform:uppercase;font-family:Montserrat,Helvetica,Arial,sans-serif;font-size:11px;padding:0 12px;cursor:pointer}.mec-wrap .mec-totalcal-box .mec-totalcal-view span:hover{color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view span.mec-totalcalview-selected{color:#fff;background:#40d9f1;border-color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view{text-align:right;float:right}.mec-wrap .mec-totalcal-box input[type=search]{width:calc(100% - 36px)}@media only screen and (min-width:961px) and (max-width:1200px){.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-3,.mec-wrap .mec-totalcal-box .col-md-4,.mec-wrap .mec-totalcal-box .col-md-5{width:100%;float:none;padding-bottom:20px;clear:both;overflow:hidden}}@media only screen and (min-width:768px) and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-4{position:relative;right:10px;top:20px;width:initial}.mec-wrap .mec-totalcal-box .col-md-5{padding-bottom:0}.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:767px){.mec-wrap .mec-totalcal-box .mec-totalcal-view{float:none}.mec-wrap .mec-totalcal-box .col-md-4{padding-bottom:0}}@media only screen and (max-width:479px){.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 8px;font-size:10px}.mec-wrap .mec-totalcal-box input[type=submit]{padding:0 10px;font-size:10px}}@media only screen and (min-width:961px){.mec-wrap .mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5,.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-3{width:100%;float:none;padding-bottom:20px;clear:both;overflow:hidden}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-4{position:absolute;right:10px;top:20px;width:initial}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5{padding-bottom:0;width:100%}}@media (min-width:961px) and (max-width:1200px){.mec-full-calendar-wrap .mec-totalcal-box{padding:20px 20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:50%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{padding-bottom:20px!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select{min-width:calc(100% - 36px)}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select{min-width:calc(30% - 10px)}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3:last-child select{min-width:calc(50% - 19px)}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view{margin-right:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:10px;text-align:center}}@media (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box{padding:20px 20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:50%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{padding-bottom:10px!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select{min-width:calc(100% - 36px);margin-bottom:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view{margin-right:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:10px;text-align:center}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:100%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:absolute;top:20px}}@media (min-width:780px) and (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:absolute;top:20px}}@media(max-width:780px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select{width:calc(50% - 18px)!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:unset;padding-right:0}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:20%;text-align:center;font-size:10px}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 7px;margin-top:20px}}@media(max-width:480px){.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:20%;text-align:center;font-size:10px}}.mec-search-form{padding:20px 10px}.mec-search-form .mec-dropdown-wrap{display:table;width:100%}.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{padding:0 10px;float:left;min-height:55px}.mec-search-form .mec-date-search,.mec-search-form .mec-text-input-search{width:50%;min-height:36px;display:block}.mec-full-calendar-wrap .mec-search-form .mec-date-search,.mec-full-calendar-wrap .mec-search-form .mec-text-input-search{width:100%}.mec-full-calendar-wrap .mec-search-form .col-md-3,.mec-full-calendar-wrap .mec-search-form .col-md-5,.mec-full-calendar-wrap .mec-search-form .col-md-6,.mec-full-calendar-wrap .mec-search-form .col-md-8{padding:0}.mec-widget .mec-search-form .mec-date-search,.mec-widget .mec-search-form .mec-text-input-search{width:100%}.mec-widget .mec-search-form .mec-text-input-search{margin-top:10px}.mec-search-form .mec-date-search{clear:left}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:table-cell;float:none}.mec-widget .mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block}.mec-wrap .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select{width:calc(100% - 36px);margin-bottom:20px}.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 106px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}@media only screen and (max-width:767px){.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{width:100%;float:none}.mec-search-form .mec-date-search{min-height:55px}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:50%;float:left}}@media only screen and (max-width:960px){.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 124px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}}@media only screen and (max-width:479px){.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:100%;float:none}}.ui-datepicker{background-color:#fff;border:1px solid #66afe9;border-radius:4px;box-shadow:0 0 8px rgba(102,175,233,.6);display:none;margin-top:4px;padding:10px;width:240px}.ui-datepicker a,.ui-datepicker a:hover{text-decoration:none;cursor:pointer}.ui-datepicker a:hover,.ui-datepicker td:hover a{color:#2c6396;-webkit-transition:color .1s ease-in-out;-moz-transition:color .1s ease-in-out;-o-transition:color .1s ease-in-out;transition:color .1s ease-in-out}.ui-datepicker .ui-datepicker-header{margin-bottom:4px;text-align:center}.ui-datepicker .ui-datepicker-title{font-weight:700}.ui-datepicker .ui-datepicker-next,.ui-datepicker .ui-datepicker-prev{cursor:default;font-family:dashicons;-webkit-font-smoothing:antialiased;font-style:normal;font-weight:400;height:20px;line-height:1.4;margin-top:2px;width:20px}.ui-datepicker .ui-datepicker-prev{float:left;text-align:left}.ui-datepicker .ui-datepicker-next{float:right;text-align:center}.ui-datepicker .ui-datepicker-prev:before{content:"\f341"}.ui-datepicker .ui-datepicker-next:before{content:"\f345"}.ui-datepicker .ui-icon{display:none}.ui-datepicker .ui-datepicker-calendar{table-layout:fixed;width:100%}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker .ui-datepicker-calendar th{text-align:center;padding:4px 0}.ui-datepicker .ui-datepicker-calendar td{border-radius:4px;-webkit-transition:background-color .1s ease-in-out,color .1s ease-in-out;-moz-transition:background-color .1s ease-in-out,color .1s ease-in-out;-o-transition:background-color .1s ease-in-out,color .1s ease-in-out;transition:background-color .1s ease-in-out,color .1s ease-in-out}.ui-datepicker .ui-datepicker-calendar td:hover{background-color:#eee;cursor:pointer}.ui-datepicker .ui-datepicker-calendar td a{text-decoration:none}.ui-datepicker .ui-datepicker-current-day{background-color:#4289cc}.ui-datepicker .ui-datepicker-current-day a{color:#fff}.ui-datepicker .ui-datepicker-calendar .ui-datepicker-unselectable:hover{background-color:#fff;cursor:default}.mec-owl-theme .owl-dots .owl-dot{border:none}.event-carousel-type1-head .mec-event-image{position:relative;min-height:150px}.event-carousel-type1-head .mec-event-image img{width:100%}.mec-event-carousel-content .mec-event-carousel-title a{transition:all .2s ease}.event-carousel-type1-head .mec-event-date-carousel{position:absolute;top:25px;left:1px;font-size:41px;width:160px;color:#fff;font-weight:500;background-color:#40d9f1;padding-left:21px;height:97px;line-height:2.3;padding-right:85px}.event-carousel-type1-head .mec-event-date-carousel:after{content:"";position:absolute;display:inline-block;z-index:-1;bottom:-13px;left:5px;width:0;border-width:13px;border-style:solid;border-color:transparent transparent #40d9f1 transparent;transform:rotate(45deg)}.event-carousel-type1-head .mec-event-date-info{font-size:12px;font-weight:300;position:absolute;top:27px;left:75px}.event-carousel-type1-head .mec-event-date-info-year{font-size:12px;font-weight:300;position:absolute;top:45px;left:75px}.mec-event-carousel-content{border:1px solid #e8e8e8;border-top:none;margin-top:-5px;padding:34px 9px 11px 37px}.mec-event-carousel-content .mec-event-carousel-title a{font-size:23px;font-weight:500;color:#000;letter-spacing:-1px}.mec-event-carousel-content p{font-size:14px;color:#7a7272;font-weight:300}.mec-owl-crousel-skin-type1 .owl-item .mec-event-article{padding:0 19px}.mec-event-carousel-type1 .owl-page.active span{background-color:#00aeef;height:14px;width:14px}.mec-event-carousel-type1 .mec-event-carousel-content{margin-bottom:15px;box-shadow:0 1px 2px rgba(0,0,0,.04);transition:all .27s ease}.mec-event-carousel-type1 .mec-event-carousel-content:hover{box-shadow:0 0 35px rgba(0,0,0,.07)}@media only screen and (min-width:768px) and (max-width:1000px),(min-width:270px) and (max-width:448px){.event-carousel-type1-head .mec-event-date-carousel{font-size:25px;line-height:2.5;padding-right:70px;height:64px;width:120px}.event-carousel-type1-head .mec-event-date-carousel:after{left:7px}.event-carousel-type1-head .mec-event-date-info{font-size:10px;top:13px;left:55px}.event-carousel-type1-head .mec-event-date-info-year{font-size:10px;top:25px;left:55px}.event-carousel-type1-head .mec-event-date-carousel:after{top:48px}}.event-carousel-type2-head{background:#fff;border:1px solid #e6e6e6}.event-carousel-type2-head .mec-event-carousel-content-type2{margin-top:15px;min-height:182px}.event-carousel-type2-head .mec-event-carousel-content-type2 .mec-event-date-info{font-size:15px;color:#9a9a9a;font-weight:300}.event-carousel-type2-head .mec-event-carousel-content-type2 .mec-event-carousel-title{font-size:26px;font-weight:700;color:#1c1d21;margin-top:15px;letter-spacing:-1px}.mec-event-carousel-content-type2 .mec-event-carousel-title a{color:inherit}.mec-event-carousel-type2 .event-carousel-type2-head .mec-event-carousel-content-type2 p{font-size:16px;font-weight:300;color:#444}.event-carousel-type2-head .mec-event-footer-carousel-type2{margin-top:33px;position:relative}.mec-event-carousel-type2 .mec-event-footer-carousel-type2 .mec-event-sharing-wrap{left:0}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-event-sharing-wrap>li{border:none;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button{border:1px solid #e4e4e4;float:right;padding:7px 23px 7px;font-size:12px;text-transform:uppercase;color:#707070;font-weight:500;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button:hover{color:#fff}.mec-event-article .event-carousel-type2-head{padding:10%;margin-right:-1px}.mec-event-carousel-type2 .mec-owl-carousel .owl-wrapper-outer{border-right:1px solid #e6e6e6}.mec-wrap .mec-event-carousel-type2 .owl-next,.mec-wrap .mec-event-carousel-type2 .owl-prev,.mec-wrap .mec-event-carousel-type3 .owl-next,.mec-wrap .mec-event-carousel-type3 .owl-prev,.mec-wrap .mec-event-carousel-type4 .owl-next,.mec-wrap .mec-event-carousel-type4 .owl-prev{transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:47%;background-color:transparent!important}.mec-event-carousel-type2 .owl-next{right:-60px}.mec-event-carousel-type2 .owl-prev{left:-60px}.mec-event-carousel-type2 .owl-next i,.mec-event-carousel-type2 .owl-prev i,.mec-event-carousel-type3 .owl-next i,.mec-event-carousel-type3 .owl-prev i,.mec-event-carousel-type4 .owl-next i,.mec-event-carousel-type4 .owl-prev i{font-size:40px;color:#282828}.mec-event-carousel-type2 .owl-next i:hover,.mec-event-carousel-type2 .owl-prev i:hover,.mec-event-carousel-type3 .owl-next i:hover,.mec-event-carousel-type3 .owl-prev i:hover{color:#000;cursor:pointer}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}@media only screen and (min-width:320px) and (max-width:768px){.mec-event-carousel-type2 .owl-next,.mec-event-carousel-type2 .owl-prev,.mec-event-carousel-type3 .owl-next,.mec-event-carousel-type3 .owl-prev,.mec-event-carousel-type4 .owl-next,.mec-event-carousel-type4 .owl-prev{position:initial;top:100%}}.mec-event-carousel-type3 .mec-event-article{margin:0 10px}.event-carousel-type3-head .mec-event-image,.event-carousel-type3-head .mec-event-image img{width:100%;height:auto}.event-carousel-type3-head .mec-event-footer-carousel-type3{background:#fff;display:inline-block;width:calc(100% - 40px);margin-top:-74px;position:relative;margin-left:20px;margin-right:20px;margin-bottom:6px;padding:8% 11%;box-shadow:0 2px 10px -2px rgba(0,0,0,.2)}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button{border:1px solid #e4e4e4;text-transform:uppercase;float:right;padding:7px 23px 7px;font-size:12px;color:#707070;font-weight:500}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button:hover{color:#fff}.mec-event-footer-carousel-type3 span{font-size:15px;color:#9a9a9a;font-weight:300;display:block;margin-top:30px}.mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:29px;font-weight:700}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:26px;font-weight:700;color:#1c1d21;margin-top:15px;letter-spacing:-1px}.mec-event-footer-carousel-type3 .mec-event-carousel-title a{color:inherit}.event-carousel-type3-head .mec-event-footer-carousel-type3 p{font-size:16px;font-weight:300;color:#444!important;margin-bottom:36px}.mec-event-carousel-type3 .owl-next{right:-70px}.mec-event-carousel-type3 .owl-prev{left:-70px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap{left:11%}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}.event-carousel-type3-head .mec-end-date-label{display:inline;margin-left:2px}.event-carousel-type4-head.clearfix{position:relative;overflow:hidden;background:#fff}.event-carousel-type4-head .mec-event-overlay{position:absolute;left:0;right:0;bottom:0;top:0;width:auto;height:auto;background-color:rgba(36,36,36,.4);transition:all .33s ease-in-out}.mec-event-hover-carousel-type4{font-size:15px;color:#fff;position:absolute;bottom:0;padding:50px 35px;transition:all .33s ease-in-out;opacity:0;visibility:hidden}.mec-event-carousel-type4 .mec-event-article{margin:0 10px}.mec-event-carousel-type4 .mec-event-article:hover .mec-event-hover-carousel-type4{opacity:1;visibility:visible}.mec-event-hover-carousel-type4 .mec-event-icon{font-size:18px;float:left;margin-right:14px;color:#fff;padding:13px}.mec-event-hover-carousel-type4 .mec-event-date{font-size:11px;text-transform:uppercase;font-weight:400;line-height:1.6}.mec-event-hover-carousel-type4 .mec-event-date span{display:block;font-weight:700;font-size:14px}.mec-event-hover-carousel-type4 .mec-event-title{color:#fff;margin:20px 0 38px;font-size:16px;font-weight:700;text-transform:uppercase;font-style:normal}.mec-event-hover-carousel-type4 .mec-btn-wrapper{text-align:left}.mec-event-hover-carousel-type4 .mec-event-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:10px 14px;letter-spacing:1.5px;font-size:11px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none}.mec-event-hover-carousel-type4 .mec-event-button:hover{color:#191919;background-color:#fff;border-color:#fff;border-radius:1px}.mec-event-carousel-type4 .owl-next{right:-70px}.mec-event-carousel-type4 .owl-prev{left:-70px}.mec-carousel-type4-head{margin-bottom:25px}.mec-carousel-type4-head-title{padding:0 11px;text-align:left;font-weight:700;font-size:20px;color:#000}.mec-carousel-type4-head-link{text-align:right;padding:0 11px}.mec-carousel-type4-head-link a{background:#222;color:#fff;padding:10px 38px;transition:all .3s ease}.mec-carousel-type4-head-link a:hover,.mec-carousel-type4-head-link a:visited{color:#fff}@media (max-width:960px){.mec-event-carousel-type4 .owl-stage{left:-50px}}.mec-wrap .mec-event-countdown-style1{color:#fff;padding:0!important;display:table;background:#437df9}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1{z-index:5;padding:50px 1% 50px 4%;display:table-cell;float:none;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2{background-color:rgba(0,0,0,.05);height:100%;padding-top:0;display:table-cell;float:none;position:relative;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{background-color:#f8f8f8;display:table-cell;float:none;text-align:center;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style1 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{content:"";position:absolute;display:inline-block;z-index:1;top:50%;margin-top:-11px;right:-24px;width:0;border-width:12px;border-style:solid;border-color:transparent transparent transparent #4077ed}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style1 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto}.mec-event-countdown-style1 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style1 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (min-width:1200px){.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%}}@media (max-width:960px){.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%;transform:rotate(90deg)}}@media (max-width:480px){.mec-event-countdown-style1 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{padding:10px 5px;min-width:50px;margin:3px 1px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:8px}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{display:inline}}.mec-wrap .mec-event-countdown-style2{color:#fff;padding:30px 0;background:#437df9;max-width:600px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part3{width:100%;float:none;vertical-align:middle;padding:50px 10% 50px 10%}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2{padding-top:12%;padding-bottom:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style2 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date-place{text-align:left;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 8px}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#222;background:#fff;transition:all .24s ease}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button:hover{background:#222;color:#fff}.mec-event-countdown-style2 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0}.mec-event-countdown-style2 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style2 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (max-width:767px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:80px;padding:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:26px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:11px}}@media only screen and (max-width:479px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:40px;padding:15px 10px;margin:2px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:20px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:9px}}@media (max-width:380px){.mec-event-countdown-style2 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{padding:10px 4px;margin:4px 1px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:7px}}.mec-wrap .mec-event-countdown-style3{color:#fff;padding:0;background:#282828;display:table;width:100%}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1{width:68%;padding:50px 1% 50px 4%;vertical-align:middle;display:table-cell;position:relative}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:32%;display:table-cell;position:relative;padding-bottom:0;padding-top:0}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 img{width:100%;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{font-weight:300;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{color:#fff;font-size:36px;letter-spacing:-2px;font-weight:700;line-height:1;margin-top:-10px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style3 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style3 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto;position:absolute;top:40px;right:20px}.mec-event-countdown-style3 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style3 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:11px;color:#888;margin:8px 0 0;line-height:1}.mec-event-countdown-style3 .mec-event-date{width:176px;height:96px;background:#40d9f1;color:#fff;font-size:13px;position:absolute;left:-27px;top:146px}.mec-event-countdown-style3 .mec-event-date:after{content:"";position:absolute;display:inline-block;z-index:1;bottom:-18px;left:8px;width:0;border-width:19px;border-style:solid;border-color:transparent transparent #40d9f1 transparent;transform:rotate(45deg)}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:50px;position:absolute;top:36px;left:12px;letter-spacing:-3px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:80px;top:26px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:80px;top:45px}.mec-event-countdown-style3 .mec-event-countdown-part-details{padding-top:35px;margin-bottom:50px;min-height:100px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-title{font-size:17px;color:#fff;line-height:1.4;padding-right:20px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link{color:#fff;font-size:12px;position:relative;padding-left:22px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link:before{content:"";display:inline-block;width:18px;border-top:1px solid #fff;position:absolute;left:0;top:8px}.mec-event-countdown-style3 .mec-event-title-link{position:absolute;left:190px;top:152px}.event-carousel-type1-head .mec-event-date-carousel:before,.mec-event-countdown-style3 .mec-event-date:before{content:'';position:absolute;left:0;bottom:0;z-index:2;width:100%;height:96px;background:0 0;display:inline-block;box-shadow:0 5px 5px rgba(0,0,0,.12)}@media only screen and (min-width:960px){.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown li{padding:10px}.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:31px}}@media (max-width:959px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:100%;display:block}.mec-event-countdown-style3 .mec-event-title-link{top:190px}.mec-event-countdown-style3 .mec-event-countdown{top:96px}.mec-event-countdown-style3 .mec-event-date{left:0;top:190px}.mec-event-countdown-style3 .mec-event-date:after{display:none}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{display:inline}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:150px}}@media (max-width:767px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:26px;letter-spacing:-1px}.mec-event-countdown-style3 .mec-event-title-link{left:130px}.mec-event-countdown-style3 .mec-event-date{width:120px;font-size:10px;height:63px}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:36px;top:20px;left:4px;letter-spacing:-2px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:52px;top:12px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:52px;top:28px}}@media (max-width:380px){.mec-event-countdown-style3 .mec-event-title-link{left:10px;top:260px}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:300px}.mec-event-countdown-style3 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:10px 5px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:8px}}.mec-slider-t1-wrap{width:100%;padding:60px 90px;background:#f7f7f7;min-height:560px;position:relative}.mec-slider-t1{height:500px;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t1 .mec-event-article{position:relative;height:500px}.mec-slider-t1 .mec-slider-t1-img{position:relative;background-size:cover!important;background-position:center!important;width:50%;height:100%;float:right;margin:0;overflow:hidden}.mec-slider-t1 .mec-slider-t1-content{width:50%;float:left;height:100%;background:#fff;padding:6%}.mec-slider-t1-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t1-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:54px;height:54px;line-height:48px;border-radius:0;text-align:center;background:#fff;box-shadow:0 2px 11px 0 rgba(0,0,0,.045);transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-27px;cursor:pointer}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 29px 0 rgba(0,0,0,.095)}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:12px;color:#282828;transition:all .21s ease}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{font-size:13px;color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t1{margin:0 auto;max-width:900px}}@media only screen and (max-width:960px){.mec-slider-t1 .mec-slider-t1-content,.mec-slider-t1 .mec-slider-t1-img{width:100%;float:none}.mec-slider-t1 .mec-slider-t1-img{height:300px}.mec-slider-t1,.mec-slider-t1 .mec-event-article{height:auto}}@media only screen and (max-width:768px){.mec-slider-t1-wrap{padding:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:10px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}}@media only screen and (max-width:479px){.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t2-wrap{width:100%;padding:0;background:#fff;min-height:600px;position:relative}.mec-slider-t2 .mec-event-article{height:600px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t2 .mec-slider-t2-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:70%;height:100%;margin:0;overflow:hidden}.mec-slider-t2 .mec-slider-t2-content{width:50%;position:absolute;right:0;top:60px;bottom:60px;padding:5%}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern *{color:#fff}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-content,.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t2-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:84px;cursor:pointer}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}.mec-wrap.colorskin-custom .mec-slider-t2 .mec-event-article .mec-event-date.mec-color{color:#fff}@media only screen and (min-width:961px){.mec-slider-t2{margin:0 auto;max-width:1200px}}@media only screen and (max-width:960px){.mec-slider-t2 .mec-slider-t2-content,.mec-slider-t2 .mec-slider-t2-img{width:100%;float:none;position:static}.mec-slider-t2 .mec-slider-t2-img{height:300px}.mec-slider-t2 .mec-event-article{height:auto}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px}}@media only screen and (max-width:479px){.mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:22px}}.mec-slider-t3-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t3 .mec-event-article{height:700px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t3 .mec-slider-t3-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;opacity:.68;z-index:1}.mec-slider-t3 .mec-slider-t3-content{width:50%;height:auto;vertical-align:middle;display:table;position:absolute;left:0;top:0;bottom:0;padding:0 2% 0 7%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t3 .mec-slider-t3-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-content,.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-slider-t3-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t3-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{border-color:#40d9f1}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-22px;cursor:pointer}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next{right:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:50px;font-weight:300}.mec-slider-t3-content.mec-event-grid-modern .mec-event-description{font-size:19px}}@media only screen and (max-width:767px){.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}}@media only screen and (max-width:479px){.mec-slider-t3 .mec-slider-t3-content{width:100%}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t4-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t4 .mec-event-article{height:700px;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t4 .mec-slider-t4-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;z-index:1}.mec-slider-t4 .mec-slider-t4-content{width:auto;max-width:700px;background:rgba(37,37,37,.94)!important;height:auto;vertical-align:middle;display:table;position:absolute;left:8%;top:19%;padding:3%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t4 .mec-slider-t4-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-content,.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:13px;padding:0 42px;line-height:49px;height:50px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t4-content.mec-event-grid-modern .mec-slider-t4-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next{right:60px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{right:112px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:767px){.mec-slider-t4 .mec-slider-t4-content{width:100%;left:0;top:auto;bottom:0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t5-wrap{width:auto;max-width:570px;padding:0;margin:0 auto 25px;background:#f7f7f7;min-height:480px;position:relative}.mec-slider-t5{height:auto;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t5 .mec-event-article{position:relative;height:auto}.mec-slider-t5 .mec-slider-t5-img{position:relative;background-size:cover!important;background-position:center!important;width:100%;height:300px;float:none;margin:0;overflow:hidden}.mec-slider-t5 .mec-slider-t5-content{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-slider-t5 .mec-events-content p{margin-bottom:20px}.mec-slider-t5-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t5-wrap .mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:14px 34px;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t5 .mec-slider-t5-col6{width:50%;float:left;height:100%}.mec-slider-t5 .mec-slider-t5-col6 i{font-size:42px;float:left;margin-right:7px;height:58px}.mec-slider-t5 .mec-slider-t5-col6 h6{text-transform:uppercase;font-size:17px;padding:4px 0;display:inline;color:#444}.mec-slider-t5 .mec-slider-t5-col6 address{font-size:12px;margin-bottom:0}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t5-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:768px){.mec-slider-t5 .mec-slider-t5-col6{width:100%;margin:10px 0}}@media only screen and (max-width:479px){.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.mec-single-modern .mec-events-event-image{text-align:center}.mec-single-modern .mec-events-event-image img{width:100%}.mec-single-modern .mec-single-event-bar{background-color:#f7f7f7;margin:20px 0 0;padding:15px;display:table;width:100%}.mec-single-modern .mec-single-event-bar>div{display:table-cell}.mec-single-modern .mec-single-event-bar>div i{font-size:20px;vertical-align:middle}.mec-single-modern .mec-single-event-bar>div .mec-time-comment{font-size:12px;color:#999}.mec-single-modern .mec-single-event-bar>div h3{text-transform:uppercase;font-size:16px;font-weight:700;padding-bottom:5px;display:inline;color:#000;padding-left:10px}.mec-single-modern .mec-single-event-bar>div dd{font-size:14px;color:#8d8d8d;padding-left:34px;margin-bottom:0}.mec-single-modern .col-md-4 .mec-frontbox{margin-top:-50px;margin-bottom:70px;padding:20px;border:none;background:#f7f7f7;box-shadow:none}.mec-next-occurrence li{list-style:none}@media only screen and (min-width:960px){.mec-single-modern .col-md-4 .mec-frontbox{margin-left:20px}}@media only screen and (max-width:960px){.mec-single-modern .mec-single-event-bar>div{display:block}}.lity-content>div{overflow:auto}.mec-next-event-details li{list-style:none;margin-top:20px}.mec-next-event-details h6{text-transform:uppercase;font-size:13px;padding-bottom:5px;display:inline;color:#222;padding-left:0}.mec-next-event-details abbr{display:block;padding-left:12px;color:#8d8d8d}.mec-next-event-details i{margin-right:10px;margin-left:12px}.mec-next-event-details i:before{color:#40d9f1}.mec-next-event-details a{text-align:center;display:block;background:#fff;padding:6px 0;font-size:11px;font-weight:400;letter-spacing:0;border:1px solid #e3e3e3;transition:.3s}.mec-single-modal.mec-single-modern .mec-single-title{text-align:center;padding:15px 10px 0}.admin-bar .mec-single-modal.mec-single-modern .mec-single-title{padding-top:40px}.mec-single-modal.mec-single-modern .mec-single-event-bar{padding:5px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div dd{font-size:13px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div h3{font-size:15px}@media only screen and (min-width:960px){.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-left:0}}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-top:10px;margin-bottom:10px}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox.mec-event-meta{padding:0}.mec-single-modal .mec-event-meta dd.mec-organizer-email a,.mec-single-modal .mec-event-meta dd.mec-organizer-url a{font-size:12px;display:block}.mec-modal-wrap{max-width:60vw;max-height:90vh!important;background:#fff;box-shadow:0 1px 55px rgba(0,0,0,.5);overflow-x:hidden!important}@media(max-width:1023px){.mec-modal-wrap{max-width:80vw}}.mec-single-modal .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li,.mec-single-modal .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a.mec-events-button{display:block;text-align:center}body .featherlight .featherlight-content{background:0 0;overflow:unset;z-index:9999}body .featherlight .featherlight-close-icon{position:fixed;top:40px;right:40px;background:0 0;color:#fff;border:1px solid #fff;border-radius:0}body .featherlight .featherlight-close-icon:hover{background:#fff;color:#000;border:1px solid #000}@media (max-width:320px){.mec-wrap span.flip-clock-divider{width:20px}.mec-single-event .mec-events-meta-group-countdown{padding:15px 12%}}@media (max-width:414px){.mec-wrap span.flip-clock-divider{width:30px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 7%}}@media (max-width:480px){.mec-wrap span.flip-clock-divider{width:7px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 1%}}@media(max-width:1366px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:20px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 15px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:48px}}@media(max-width:1280px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:14px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:15px 10px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:38px}}@media(min-width:961px) and (max-width:1024px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:7px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:15px 5px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:14px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul li a div{font-size:30px}}@media(max-width:640px){body .mec-modal-wrap .mec-single-modal.featherlight-close-icon{top:14px;right:14px}}@media(max-width:480px){.featherlight .featherlight-content,body .mec-modal-wrap{max-width:100%}body .mec-modal-wrap.flip-clock-divider .flip-clock-label{display:block}}@media (max-width:414px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:50px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 65px}body .featherlight-content .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 2px 20px 2px!important}body .featherlight-content .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:3px!important}}@media (max-width:375px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:50px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 45px}}@media (max-width:320px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:20px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 40px}}.mec-events-toggle{max-width:960px;margin-left:auto;margin-right:auto}.mec-events-toggle .mec-toggle-item{border:1px solid #e4e4e4;margin-bottom:15px;box-shadow:0 10px 15px #f3f3f3}.mec-events-toggle .mec-toggle-item-inner{cursor:pointer;position:relative;padding:30px 60px 30px 15px;background:#fff;transition:all .3s ease;min-height:100px;display:table;width:100%;border-collapse:separate}.mec-events-toggle .mec-toggle-item-inner:hover{background:#fbfbfb}.mec-toggle-item-col{width:200px;border-right:1px solid #e3e3e3;margin-right:15px;display:table-cell;padding-right:5px}.mec-toggle-item-col .mec-event-date{font-size:38px;line-height:40px;float:left;margin-right:8px}.mec-toggle-item-col .mec-event-month{text-transform:uppercase;font-size:12px;line-height:14px;padding-top:4px;font-weight:700}.mec-toggle-item-col .mec-event-detail{font-size:10px}.mec-toggle-item-col .mec-event-day{margin-top:9px;color:silver;font-family:Roboto,sans-serif;font-size:35px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.mec-events-toggle .mec-toggle-title{color:#000;font-size:23px;font-weight:600;margin-bottom:0;transition:all .3s ease;display:table-cell;text-align:left;max-width:calc(100% - 200px);padding-left:15px;vertical-align:middle}.mec-events-toggle .mec-toggle-item-inner span.event-color{width:5px;height:100%;position:absolute;left:-1px;top:0;bottom:0;border-radius:0;margin:0}.mec-events-toggle .mec-toggle-item-inner i{position:absolute;font-size:30px;right:25px;top:50%;transform:translate(0,-50%);cursor:pointer}.mec-events-toggle .mec-toggle-item.is-open i.mec-sl-plus:before{content:"\e615"}.mec-events-toggle .mec-toggle-item.is-open .mec-toggle-title{background:#f8f8f8;cursor:pointer}.mec-events-toggle .mec-toggle-content{border-top:1px solid #e4e4e4}.mec-events-toggle .mec-toggle-content .mec-modal-wrap{margin:0;max-width:100%;box-shadow:none}.mec-events-toggle .mec-toggle-content .mec-modal-wrap .mec-single-event{margin:0}.mec-events-toggle .mec-toggle-content .mec-single-event-bar,.mec-events-toggle .mec-toggle-content h1.mec-single-title{display:none}.mec-events-toggle .media-links a{margin-bottom:0}.mec-events-toggle .mec-toggle-content .mec-toggle-meta{margin-bottom:14px}.mec-events-toggle #mec_speakers_details.mec-frontbox{padding:0;margin:0}.mec-events-toggle .mec-toggle-item h3.mec-speakers{border:none;text-align:left}.mec-events-toggle .mec-toggle-item h3.mec-speakers:before{content:"\e063";font-family:simple-line-icons;border:none;position:relative;display:inline-block;left:unset;bottom:unset;font-size:22px;font-weight:400;padding:0 11px 0 28px;vertical-align:middle}@media only screen and (max-width:767px){.mec-toggle-item-inner .mec-toggle-item-col{float:none;width:100%;border-right:none;margin-bottom:5px;display:block;max-width:100%;padding-left:15px}.mec-events-toggle .mec-toggle-title{display:block;width:100%;max-width:100%}}.mec-events-agenda-wrap{margin:10px 0;border:1px solid #e9e9e9;padding-left:20px;box-shadow:0 2px 2px rgba(0,0,0,.03)}.mec-events-agenda{padding:0;border-bottom:1px solid #e9e9e9;overflow:hidden}.mec-agenda-date-wrap{width:210px;padding-top:15px;float:left;font-size:13px}.mec-agenda-date-wrap i,.mec-agenda-event i{font-size:11px;color:#aaa;margin-right:4px;margin-left:1px}.mec-agenda-event i{vertical-align:middle;margin-right:1px}.mec-agenda-events-wrap{float:left;width:calc(100% - 210px);background:#f9f9f9;padding:15px}.mec-agenda-time{font-size:11px;color:#707070;padding-right:10px;width:138px;display:inline-block}.mec-agenda-event-title{position:relative;padding-left:14px}.mec-agenda-event-title a{font-family:Roboto,Montserrat,Helvetica,Arial,sans-serif;font-size:14px;font-weight:600;color:#333}.mec-agenda-event-title span.event-color{width:9px;height:9px;position:absolute;left:0;top:4px;margin:0}.mec-agenda-date-wrap span.mec-agenda-day{color:#aaa;font-size:12px}@media only screen and (max-width:767px){.mec-agenda-date-wrap,.mec-agenda-events-wrap{float:none;width:100%}.mec-events-agenda span.mec-agenda-event-title{display:block;width:100%}.mec-agenda-event-title span.event-color{top:7px}.mec-agenda-event-title a{font-size:13px}}.mec-yearly-view-wrap{margin:0 0 15px;border:1px solid #e6e6e6;box-shadow:0 2px 4px rgba(0,0,0,.04);border-bottom-width:4px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar{max-width:100%;width:232px;padding:10px;background:#fff;margin:10px;display:inline-block}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar dl dt{transition:none;height:30px;width:30px;line-height:30px;border-radius:0;font-size:12px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar .mec-calendar-events-sec{padding:10px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar .mec-has-event:after{width:4px;height:4px;bottom:3px;margin-left:-2px}.mec-yearly-view-wrap .mec-calendar-side .mec-calendar-table{min-height:200px}.mec-calendar.mec-yearly-calendar .mec-calendar-table-head dl dt{background:#f9f9f9;font-size:13px}.mec-calendar.mec-yearly-calendar .mec-calendar-table-title{text-align:center;font-size:15px;font-weight:700;color:#222;margin-top:-5px;padding-bottom:5px}.mec-yearly-view-wrap .mec-yearly-calendar-sec{min-height:200px;width:538px;overflow:hidden;float:left;background:#f8f8f8;padding:15px}.mec-yearly-view-wrap .mec-yearly-agenda-sec{min-height:200px;width:calc(100% - 538px);float:left;padding:0 0 0 20px;overflow:hidden}.mec-yearly-view-wrap .mec-yearly-title-sec{position:relative;padding:15px;text-align:center;border-bottom:1px solid #e6e6e6;box-shadow:0 1px 3px rgba(0,0,0,.02)}.mec-yearly-view-wrap .mec-yearly-title-sec h2{font-size:30px;line-height:40px;color:#333;margin:0;font-weight:700}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year,.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year{position:absolute;top:50%;margin-top:-15px;min-width:30px;height:30px;line-height:30px;padding:0 8px;text-align:center;background:#fff;color:#666;font-size:14px;border:1px solid #eee;border-radius:2px;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease;cursor:pointer}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year{right:auto;left:20px;padding-right:14px}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year{left:auto;right:20px;padding-left:14px}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year i,.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-yearly-view-wrap .mec-events-agenda.mec-selected{box-shadow:-10px 0 0 0 #fffcf2,0 -1px 0 #fbebb6;background:#fffcf2;border-color:#fbebb6;color:#f9af29}@media only screen and (max-width:959px){.mec-yearly-view-wrap .mec-yearly-calendar-sec{width:268px;padding:10px 5px}.mec-yearly-view-wrap .mec-yearly-agenda-sec{width:calc(100% - 268px);padding:0 0 0 10px}}@media only screen and (max-width:767px){.mec-yearly-view-wrap .mec-yearly-agenda-sec,.mec-yearly-view-wrap .mec-yearly-calendar-sec{width:100%;float:none}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar{width:auto}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar dl dt{width:14.2%}.mec-yearly-view-wrap .mec-yearly-title-sec h2{font-size:25px}}.mec-yearly-view-wrap .mec-agenda-event i,.mec-yearly-view-wrap .mec-agenda-time{display:none}@media only screen and (min-width:768px){.mec-yearly-view-wrap .mec-events-agenda-wrap{margin-top:0;border:none;padding-left:0;box-shadow:none}.mec-yearly-view-wrap .mec-agenda-date-wrap{width:174px;font-size:11px;padding-top:10px}.mec-yearly-view-wrap .mec-agenda-events-wrap{width:calc(100% - 174px);padding:10px}.mec-yearly-view-wrap .mec-agenda-event-title a{font-size:13px}.mec-yearly-view-wrap .mec-agenda-event-title span.event-color{width:8px;height:8px}.mec-yearly-view-wrap .mec-agenda-date-wrap span.mec-agenda-day{font-size:11px}.mec-yearly-view-wrap .mec-yearly-calendar-sec{box-shadow:-2px 0 5px rgba(0,0,0,.03) inset}}@media only screen and (max-width:1200px){.mec-yearly-view-wrap .mec-agenda-event-title a{font-size:12px;padding-right:6px}}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table{padding-bottom:10px;border-bottom:none}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt:hover{cursor:pointer}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-has-no-event,.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-has-no-event:hover{color:#bbb;cursor:default}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-day-active{background:#40d9f1;color:#fff;position:relative}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-day-active:after{content:'';position:absolute;display:block;bottom:-20px;left:50%;margin-left:-10px;width:0;border-width:10px;border-style:solid;border-color:#40d9f1 transparent transparent transparent}.mec-timetable-events-list{padding:10px 20px;border:none;margin:0}.mec-timetable-events-list .mec-timetable-event{padding:10px 0;border-bottom:1px dashed #ddd}.mec-timetable-events-list .mec-timetable-event:last-child{border:none}.mec-timetable-event .mec-timetable-event-span{font-size:12px;color:#444;padding-right:30px;line-height:22px}.mec-timetable-events-list .mec-timetable-event i{font-size:13px;color:#aaa;margin-right:3px;vertical-align:baseline}.mec-timetable-event .mec-timetable-event-span a{color:#333}.mec-timetable-event .mec-timetable-event-time{font-size:11px}.mec-timetable-event .mec-timetable-event-time i{vertical-align:text-bottom}.mec-timetable-event .mec-timetable-event-title{font-size:13px}.mec-timetable-event .mec-timetable-event-title .event-color{width:10px;height:10px}.mec-timetable-events-list .mec-timetable-event.mec-util-hidden{display:none}.mec-timetable-events-list.mec-util-hidden{display:none}@media only screen and (min-width:768px){.mec-timetable-events-list{display:table;width:100%;margin:10px 0 20px}.mec-timetable-events-list .mec-timetable-event{display:table-row;padding:0;border:none;background:#fff}.mec-timetable-events-list .mec-timetable-event:hover{background:#fafafa}.mec-timetable-event .mec-timetable-event-span{display:table-cell;padding:10px 15px;border-bottom:1px solid #ebebeb}.mec-timetable-events-list .mec-timetable-event:last-child .mec-timetable-event-span{border-bottom:none}}@media only screen and (max-width:767px){.mec-timetable-event .mec-timetable-event-title{display:block;width:100%;padding:5px 0 10px;font-weight:700}}.mec-timetable-t2-wrap{border:1px solid #e6e6e6;background:#fafafa;padding:0 15px 15px;overflow:hidden;box-shadow:0 3px 2px 0 rgba(0,0,0,.012)}.mec-timetable-t2-col{width:20%;float:left;min-height:20px;padding-right:1px;background:0 0}.mec-ttt2-title{background:#fafafa;color:#333;font-size:13px;font-weight:600;text-transform:uppercase;letter-spacing:1px;text-align:center;padding:25px 10px 10px;margin-bottom:1px}.mec-timetable-t2-col .mec-event-article{position:relative}.mec-timetable-t2-col .mec-event-article .event-color{position:absolute;width:auto;height:auto;left:0;right:0;top:0;bottom:0;margin:0;z-index:1;border-radius:2px}.mec-timetable-t2-content{position:relative;z-index:2;color:#fff;padding:15px 15px 20px;text-align:left;height:130px;margin-bottom:1px;overflow:hidden}.mec-timetable-t2-content .mec-event-title{line-height:22px;margin-bottom:13px;white-space:nowrap;padding-right:1px;overflow:hidden}.mec-timetable-t2-content .mec-event-title a{color:#fff;font-size:15px;font-weight:600;white-space:nowrap;overflow:hidden}.mec-timetable-t2-content div{color:#fff;font-size:11px;font-weight:400;line-height:19px;white-space:nowrap}.mec-timetable-t2-content div i{font-size:12px;margin-right:4px}@media only screen and (max-width:960px){.mec-timetable-t2-col{width:100%;float:none}}@media(min-width:961px){.mec-timetable-col-7{width:14.28%}.mec-timetable-col-6{width:16.6666%}}.mec-weather-box{padding:15px 0}.mec-weather-head{min-height:90px;padding:5px 0;clear:both;overflow:hidden;margin-bottom:25px;border-radius:10px;background:#238af5;position:relative}.mec-weather-icon-box{float:left;width:80px;height:80px;border-radius:10px;overflow:hidden;background:#238af5}.mec-weather-icon{width:80px;height:80px;display:inline-block;border-radius:10px}.mec-weather-summary{float:left;width:calc(100% - 80px);padding-left:10px;margin:10px 0;height:60px}.mec-weather-summary-report{font-size:15px;color:rgba(255,255,255,.68);margin-bottom:6px}.mec-weather-summary-temp{font-family:Roboto,Sans-serif;font-weight:300;color:#fff;font-size:29px;line-height:1}.degrees-mode{background:rgba(0,0,0,.2);cursor:pointer;font-weight:300;font-size:18px;padding:4px 5px;line-height:1;color:#fff;position:absolute;border-radius:8px;bottom:16px;left:16px}.mec-weather-extras{width:auto;padding:10px 15px 0 15px;float:right;min-height:80px;color:#fff;font-size:13px;line-height:1}.mec-weather-extras{width:auto;padding:10px 15px 0 15px;float:right;min-height:80px;color:#fff;font-size:13px;line-height:1}.mec-weather-extras div{line-height:20px;height:20px}.mec-weather-extras span{color:rgba(255,255,255,.68);font-size:12px;text-transform:uppercase}.mec-weather-extras var{font-size:11px;letter-spacing:.4px}.mec-weather-icon.clear-day,.mec-weather-icon.clear-night{background-image:url(../img/mec-weather-icon-01.png)}.mec-weather-icon.partly-sunny-day,.mec-weather-icon.partly-sunny-night{background-image:url(../img/mec-weather-icon-02.png)}.mec-weather-icon.partly-cloudy-day,.mec-weather-icon.partly-cloudy-night{background-image:url(../img/mec-weather-icon-03.png)}.mec-weather-icon.cloudy,.mec-weather-icon.fog,.mec-weather-icon.wind{background-image:url(../img/mec-weather-icon-04.png)}.mec-weather-icon.thunderstorm{background-image:url(../img/mec-weather-icon-05.png)}.mec-weather-icon.rain{background-image:url(../img/mec-weather-icon-06.png)}.mec-weather-icon.hail,.mec-weather-icon.sleet,.mec-weather-icon.snow{background-image:url(../img/mec-weather-icon-07.png)}.mec-av-spot-wrap{width:auto;max-width:1200px;padding:0;margin:0 auto 25px;background:#f7f7f7;min-height:480px;position:relative}.mec-av-spot{height:auto;border:1px solid #eee;box-shadow:0 6px 12px -4px rgba(0,0,0,.05)}.mec-av-spot .mec-event-article{position:relative;height:auto}.mec-av-spot .mec-av-spot-img{position:relative;background-size:cover!important;background-position:center!important;width:100%;height:330px;float:none;margin:0;overflow:hidden}.mec-av-spot .mec-av-spot-content,.mec-av-spot .mec-av-spot-head{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-av-spot .mec-av-spot-head{background:#222;color:#fff;min-height:80px}.mec-av-spot .mec-av-spot-head .mec-av-spot-box{padding-top:25px;font-size:13px;color:#ddd}.mec-av-spot .mec-av-spot-head .mec-av-spot-box span{color:#40d9f1;font-size:40px;font-weight:700;font-style:italic}.mec-av-spot .mec-av-spot-head .mec-event-countdown{text-align:center;padding-top:10px;display:table;table-layout:fixed;margin:0 auto;float:right}.mec-av-spot .mec-av-spot-head .mec-event-countdown li{display:table-cell;padding:10px 20px;position:relative;height:60px}.mec-av-spot .mec-av-spot-head .mec-event-countdown p{margin-bottom:0}.mec-av-spot .mec-events-content p{margin-bottom:20px}.mec-av-spot-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-av-spot-wrap .mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:14px 34px;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-av-spot-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-av-spot .mec-av-spot-col6{width:50%;float:left;height:100%}.mec-av-spot .mec-av-spot-col6 i{font-size:42px;float:left;margin-right:7px;height:58px}.mec-av-spot .mec-av-spot-col6 h6{text-transform:uppercase;font-size:17px;padding:4px 0;display:inline;color:#444}.mec-av-spot .mec-av-spot-col6 address{font-size:12px;margin-bottom:0}.mec-av-spot-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-av-spot-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05)}@media only screen and (max-width:768px){.mec-av-spot .mec-av-spot-col6{width:100%;margin:10px 0}}@media only screen and (max-width:479px){.mec-av-spot-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.mec-events-masonry-wrap{display:block;width:auto}.mec-masonry-item-wrap{width:calc(33.33% - 30px);padding:0;margin:0 15px 30px;min-height:10px;position:relative}.isotope-item{z-index:2}.isotope-hidden.isotope-item{pointer-events:none;z-index:1}.isotope,.isotope .isotope-item{-webkit-transition-duration:.8s;-moz-transition-duration:.8s;transition-duration:.8s}.isotope{-webkit-transition-property:height,width;-moz-transition-property:height,width;transition-property:height,width}.isotope .isotope-item{-webkit-transition-property:-webkit-transform,opacity;-moz-transition-property:-moz-transform,opacity;transition-property:transform,opacity}.mec-events-masonry-cats{padding:10px;margin-bottom:25px;text-align:center;clear:both;list-style:none outside none}.mec-events-masonry-cats a{border-radius:2px;padding:6px 12px;font-size:13px;line-height:1.2;color:#333;font-weight:400;margin-top:0!important;text-align:center;display:inline-block;width:auto;border:2px solid transparent;transition:all .2s ease}.mec-events-masonry-cats a:hover{border-color:#40d9f1;color:#333}.mec-events-masonry-cats a.mec-masonry-cat-selected{border:2px solid #40d9f1;color:#40d9f1}.mec-masonry{background:#f7f7f7;height:auto;border:1px solid #eee;box-shadow:0 6px 12px -4px rgba(0,0,0,.05)}.mec-masonry .mec-event-article{position:relative;height:auto}.mec-masonry .mec-masonry-img{position:relative;width:100%;height:auto;float:none;margin:0;overflow:hidden}.mec-masonry .mec-masonry-img img{width:100%}.mec-masonry .mec-masonry-content,.mec-masonry .mec-masonry-head{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-masonry .mec-events-content p{margin-bottom:20px}.mec-masonry-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-masonry-item-wrap .mec-event-grid-modern .event-grid-modern-head{min-height:79px;margin-bottom:10px;padding:14px 5%;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-masonry-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-masonry-content.mec-event-grid-modern .mec-event-content{padding-top:20px}.mec-masonry-content.mec-event-grid-modern .mec-event-footer{height:auto}.mec-masonry .mec-masonry-col6 .mec-event-date{font-size:34px;letter-spacing:-2px}.mec-masonry .mec-masonry-col6{width:50%;float:left;height:100%}.mec-masonry .mec-masonry-col6 i{font-size:24px;float:left;margin-right:7px;height:50px}.mec-masonry .mec-masonry-col6 .mec-event-month,.mec-masonry .mec-masonry-col6 h6{text-transform:capitalize;font-size:15px;padding:4px 0;display:inline;color:#444}.mec-masonry .mec-masonry-col6 .mec-event-detail,.mec-masonry .mec-masonry-col6 address{font-size:11px;margin-bottom:0}.mec-masonry-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-masonry-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05)}@media only screen and (max-width:960px){.mec-masonry-item-wrap{width:calc(50% - 30px)}}@media only screen and (max-width:768px){.mec-masonry .mec-masonry-col6{width:100%;margin:10px 0}.mec-masonry-item-wrap{width:calc(100% - 30px)}}@media only screen and (max-width:479px){.mec-masonry-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.btn-wrapper{text-align:center}.countdown-wrapper .btn-wrapper{padding-top:10px;padding-right:0}.countdown-wrapper h5.countdown-message{letter-spacing:5px;font-weight:500;font-size:18px}.blox.dar .countdown-wrapper p,.countdown-wrapper p{color:#888}.countdown-wrapper a.button.black{float:right;margin-right:0}.mec-wrap .threedaydigits .days .flip-clock-label{right:-100px}@media only screen and (min-width:320px) and (max-width:767px){.mec-wrap .flip-clock-wrapper ul{width:29px!important}.mec-wrap .flip-clock-wrapper ul li a div div.inn{font-size:25px!important}.mec-wrap .flip-clock-divider .flip-clock-label{left:0;font-weight:300}.mec-wrap span.flip-clock-divider{width:12px}}@media only screen and (min-width:320px) and (max-width:480px){.mec-wrap .flip-clock-wrapper ul{width:29px!important}.mec-wrap .flip-clock-wrapper ul li a div div.inn{font-size:25px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}.mec-wrap span.flip-clock-divider:first-child{width:0}.mec-wrap span.flip-clock-divider{width:20px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 18%}}@media screen and (min-width:960px) and (max-width:1200px){.mec-wrap .threedaydigits ul{height:50px;width:47px}}@media screen and (min-width:480px) and (max-width:768px){.mec-wrap .threedaydigits ul{height:48px;width:26px!important}.mec-wrap .threedaydigits .flip-clock-label{font-size:8px;left:-8px}}@media screen and (min-width:320px) and (max-width:480px){.mec-wrap .threedaydigits ul{height:48px;width:22px!important}}.mec-wrap .flip-clock-wrapper *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;-o-box-sizing:border-box;box-sizing:border-box;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-o-backface-visibility:hidden;backface-visibility:hidden}.mec-wrap .flip-clock-wrapper a{cursor:pointer;text-decoration:none;color:#ccc}.mec-wrap .flip-clock-wrapper a:hover{color:#fff}.mec-wrap .flip-clock-wrapper ul{list-style:none}.flip-clock-wrapper.clearfix:after,.mec-wrap .flip-clock-wrapper.clearfix:before{content:" ";display:table}.mec-wrap .flip-clock-wrapper.clearfix:after{clear:both}.mec-wrap .flip-clock-wrapper{font:normal 11px "helvetica neue",helvetica,sans-serif;-webkit-user-select:none}.mec-wrap .flip-clock-meridium{background:0 0!important;box-shadow:0 0 0!important;font-size:36px!important}.mec-wrap .flip-clock-meridium a{color:#313333}.mec-wrap .flip-clock-wrapper{text-align:center;position:relative;display:inline-block;padding-bottom:10px}.flip-clock-wrapper:after,.mec-wrap .flip-clock-wrapper:before{content:" ";display:table}.mec-wrap .flip-clock-wrapper:after{clear:both}.mec-wrap .flip-clock-wrapper ul{position:relative;float:left;margin:2px;width:50px;height:50px;font-size:80px;font-weight:700;line-height:87px;border-radius:3px;background:rgba(0,0,0,.21)}.mec-wrap .flip-clock-wrapper ul li{z-index:1;position:absolute;left:0;top:0;width:100%;height:100%;line-height:54px;text-decoration:none!important}.mec-wrap .flip-clock-wrapper ul li:first-child{z-index:2}.mec-wrap .flip-clock-wrapper ul li a{display:block;height:100%;-webkit-perspective:200px;-moz-perspective:200px;perspective:200px;margin:0!important;overflow:visible!important;cursor:default!important}.mec-wrap .flip-clock-wrapper ul li a div{z-index:1;position:absolute;left:0;width:100%;height:50%;font-size:80px;overflow:hidden;outline:1px solid transparent}.mec-wrap .flip-clock-wrapper ul li a div .shadow{position:absolute;width:100%;height:100%;z-index:2}.mec-wrap .flip-clock-wrapper ul li a div.up{-webkit-transform-origin:50% 100%;-moz-transform-origin:50% 100%;-ms-transform-origin:50% 100%;-o-transform-origin:50% 100%;transform-origin:50% 100%;top:0}.mec-wrap .flip-clock-wrapper ul li a div.up:after{content:"";position:absolute;top:24px;left:0;z-index:5;width:100%;height:3px;background-color:rgba(0,0,0,.12)}.mec-wrap .flip-clock-wrapper ul li a div.down{-webkit-transform-origin:50% 0;-moz-transform-origin:50% 0;-ms-transform-origin:50% 0;-o-transform-origin:50% 0;transform-origin:50% 0;bottom:0;border-bottom-left-radius:3px;border-bottom-right-radius:3px}.mec-wrap .flip-clock-wrapper ul li a div div.inn{position:absolute;left:0;z-index:1;width:100%;height:200%;color:#fff;text-shadow:0 0 2px rgba(0,0,0,.25);text-align:center;background-color:#40d9f1;border-radius:3px;font-size:48px}.mec-wrap .flip-clock-wrapper ul li a div.up div.inn{top:0}.mec-wrap .flip-clock-wrapper ul li a div.down div.inn{bottom:0}.mec-wrap .flip-clock-wrapper ul.play li.flip-clock-before{z-index:3}.mec-wrap .flip-clock-wrapper .flip{box-shadow:0 2px 5px rgba(0,0,0,.17)}.mec-wrap .flip-clock-wrapper ul.play li.flip-clock-active{-webkit-animation:asd .5s .5s linear both;-moz-animation:asd .5s .5s linear both;animation:asd .5s .5s linear both;z-index:5}.mec-wrap .flip-clock-divider{float:left;display:inline-block;position:relative;width:18px;height:62px}.mec-wrap .flip-clock-divider:first-child{width:0}.mec-wrap .flip-clock-dot{display:none;background:#323434;width:10px;height:10px;position:absolute;border-radius:50%;box-shadow:0 0 5px rgba(0,0,0,.5);left:5px}.mec-wrap .flip-clock-divider .flip-clock-label{position:absolute;bottom:-1.5em;right:-71px;color:#101010;font-weight:700;text-shadow:none;text-transform:uppercase}.mec-wrap .blox.dark .flip-clock-divider .flip-clock-label{color:#8a8a8a}.mec-wrap .flip-clock-divider.seconds .flip-clock-label{right:-82px}.mec-wrap .flip-clock-dot.top{top:30px}.mec-wrap .flip-clock-dot.bottom{bottom:30px}@-webkit-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@-moz-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@-o-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}.flip-clock-wrapper ul.play li.flip-clock-active .down{z-index:2;-webkit-animation:turn .5s .5s linear both;-moz-animation:turn .5s .5s linear both;animation:turn .5s .5s linear both}@-webkit-keyframes turn{0%{-webkit-transform:rotatex(90deg)}100%{-webkit-transform:rotatex(0)}}@-moz-keyframes turn{0%{-moz-transform:rotatex(90deg)}100%{-moz-transform:rotatex(0)}}@-o-keyframes turn{0%{-o-transform:rotatex(90deg)}100%{-o-transform:rotatex(0)}}@keyframes turn{0%{transform:rotatex(90deg)}100%{transform:rotatex(0)}}.flip-clock-wrapper ul.play li.flip-clock-before .up{z-index:2;-webkit-animation:turn2 .5s linear both;-moz-animation:turn2 .5s linear both;animation:turn2 .5s linear both}@-webkit-keyframes turn2{0%{-webkit-transform:rotatex(0)}100%{-webkit-transform:rotatex(-90deg)}}@-moz-keyframes turn2{0%{-moz-transform:rotatex(0)}100%{-moz-transform:rotatex(-90deg)}}@-o-keyframes turn2{0%{-o-transform:rotatex(0)}100%{-o-transform:rotatex(-90deg)}}@keyframes turn2{0%{transform:rotatex(0)}100%{transform:rotatex(-90deg)}}.flip-clock-wrapper ul li.flip-clock-active{z-index:3}.flip-clock-wrapper ul.play li.flip-clock-before .up .shadow{background:-moz-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,.1)),color-stop(100%,rgba(64,64,64,.68)));background:linear,top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;background:-o-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-ms-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:linear,to bottom,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;-webkit-animation:show .5s linear both;-moz-animation:show .5s linear both;animation:show .5s linear both}.flip-clock-wrapper ul.play li.flip-clock-active .up .shadow{background:-moz-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,.1)),color-stop(100%,rgba(64,64,64,.68)));background:linear,top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;background:-o-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-ms-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:linear,to bottom,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;-webkit-animation:hide .5s .3s linear both;-moz-animation:hide .5s .3s linear both;animation:hide .5s .3s linear both}.flip-clock-wrapper ul.play li.flip-clock-before .down .shadow{background:-moz-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(64,64,64,.68)),color-stop(100%,rgba(0,0,0,.1)));background:linear,top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;background:-o-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-ms-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:linear,to bottom,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;-webkit-animation:show .5s linear both;-moz-animation:show .5s linear both;animation:show .5s linear both}.flip-clock-wrapper ul.play li.flip-clock-active .down .shadow{background:-moz-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(64,64,64,.68)),color-stop(100%,rgba(0,0,0,.1)));background:linear,top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;background:-o-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-ms-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:linear,to bottom,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;-webkit-animation:hide .5s .3s linear both;-moz-animation:hide .5s .3s linear both;animation:hide .5s .2s linear both}@-webkit-keyframes show{0%{opacity:0}100%{opacity:1}}@-moz-keyframes show{0%{opacity:0}100%{opacity:1}}@-o-keyframes show{0%{opacity:0}100%{opacity:1}}@keyframes show{0%{opacity:0}100%{opacity:1}}@-webkit-keyframes hide{0%{opacity:1}100%{opacity:0}}@-moz-keyframes hide{0%{opacity:1}100%{opacity:0}}@-o-keyframes hide{0%{opacity:1}100%{opacity:0}}@keyframes hide{0%{opacity:1}100%{opacity:0}}@font-face{font-family:simple-line-icons;src:url(../fonts/Simple-Line-Icons.eot?v=2.3.1);src:url(../fonts/Simple-Line-Icons.eot?v=2.3.1#iefix) format('embedded-opentype'),url(../fonts/Simple-Line-Icons.woff2?v=2.3.1) format('woff2'),url(../fonts/Simple-Line-Icons.woff?v=2.3.1) format('woff'),url(../fonts/Simple-Line-Icons.ttf?v=2.3.1) format('truetype'),url(../fonts/Simple-Line-Icons.svg?v=2.3.1#simple-line-icons) format('svg');font-weight:400;font-style:normal}[class*=mec-sl-]{font-family:simple-line-icons;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.mec-sl-facebook:before{content:"\e00b"}.mec-sl-twitter:before{content:"\e009"}.mec-sl-google-plus:before{content:"\e60d"}.mec-sl-angle-left:before{content:"\e605"}.mec-sl-angle-right:before{content:"\e606"}.mec-sl-calendar:before{content:"\e075"}.mec-sl-clock-o:before{content:"\e081"}.mec-sl-home:before{content:"\e069"}.mec-sl-phone:before{content:"\e600"}.mec-sl-envelope:before{content:"\e086"}.mec-sl-sitemap:before{content:"\e037"}.mec-sl-map-marker:before{content:"\e096"}.mec-sl-floder:before{content:"\e089"}.mec-sl-wallet:before{content:"\e02a"}.mec-color,.mec-color-before :before,.mec-color-hover:hover,.mec-wrap .mec-color,.mec-wrap .mec-color-before :before,.mec-wrap .mec-color-hover:hover{color:#40d9f1}.mec-bg-color,.mec-bg-color-hover:hover,.mec-wrap .mec-bg-color,.mec-wrap .mec-bg-color-hover:hover{background-color:#40d9f1}.mec-border-color,.mec-border-color-hover:hover,.mec-wrap .mec-border-color,.mec-wrap .mec-border-color-hover:hover{border-color:#40d9f1}.mec-toggle-month-divider.mec-skin-list-events-container{border:1px solid #e8e8e8;margin-bottom:30px;background:#f8f8f8;box-shadow:0 2px 18px -1px rgba(0,0,0,.1);border-radius:2px}.mec-toggle-month-divider .mec-month-divider{margin:0;text-align:left;background:#fff;position:relative;cursor:pointer;border-top:1px solid #e8e8e8}.mec-toggle-month-divider .mec-month-divider span{padding:20px;border-bottom:1px solid #e8e8e8}.mec-toggle-month-divider .mec-month-divider i{position:absolute;right:20px;top:24px;font-size:20px;cursor:pointer}.mec-toggle-month-divider .mec-month-divider span:before{display:none}.mec-toggle-month-divider .mec-month-divider+article{margin-top:20px}.mec-toggle-month-divider .mec-wrap .mec-month-divider:first-of-type{border-top:none}.mec-toggle-month-divider .mec-event-list-accordion .mec-month-divider:not(:first-of-type)~article{display:none}.mec-skin-list-events-container:not(.mec-toggle-month-divider) .mec-month-divider i{display:none}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-month{display:inline-block;padding-top:0}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-date{font-size:14px;line-height:14px;float:none;display:inline-block;margin-right:0;font-weight:700}.mec-events-toggle .mec-toogle-inner-month-divider.mec-toggle-item-inner{padding:20px 60px 30px 15px}.mec-toogle-inner-month-divider .mec-toggle-month-inner-image{float:left;clear:right;width:100px;margin-right:20px;margin-left:10px}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-detail{margin-top:-6px}.mec-toogle-inner-month-divider .mec-toggle-item-col{float:none;width:100%;margin-top:10px;display:block;border:none}.mec-events-toggle .mec-toogle-inner-month-divider .mec-toggle-title{font-size:19px;display:block;padding-top:10px}@media only screen and (max-width:768px){.mec-events-toggle .mec-toogle-inner-month-divider .mec-toggle-title{font-size:14px;padding-top:0}.mec-toogle-inner-month-divider .mec-toggle-item-col{margin-top:0}.mec-toogle-inner-month-divider .mec-toggle-month-inner-image{width:70px}}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled:before,.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-featured:before{z-index:1;position:absolute;top:25px;right:-37px;font-size:11px;letter-spacing:1px;text-transform:uppercase;background:#04de78;padding:2px 40px;color:#fff;-ms-transform:rotate(45deg);-webkit-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition:.5s cubic-bezier(.25,.5,.06,.85);transition:.5s cubic-bezier(.25,.5,.06,.85);content:attr(data-style)}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled,.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-featured{overflow:hidden;position:relative}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled:before{background:#de0404}.mec-daily-view-date-events article:before,ul.mec-weekly-view-dates-events article:before{padding:7px 40px!important;top:27px!important}.mec-event-grid-classic article .mec-fc-style,.mec-event-grid-minimal article .mec-fc-style,.mec-event-grid-simple article .mec-fc-style,.mec-timetable-wrap article .mec-fc-style,.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article.mec-event-cover-modern .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{font-size:9px;letter-spacing:.5px;text-transform:uppercase;background:#04de78;padding:2px 7px;color:#fff;position:relative;margin-left:5px;border-radius:2px}.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-modern.mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-minimal article .mec-fc-style:before,.mec-event-grid-simple article .mec-fc-style:before,.mec-timetable-wrap article .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article .mec-fc-style:before,.mec-wrap .mec-event-list-modern article .mec-fc-style:before,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style:before{width:0;height:0;border-top:4px solid transparent!important;border-right:5px solid;border-bottom:4px solid transparent;margin:0;top:50%;left:-4px;transform:translateY(-4.5px);position:absolute;content:'';color:#04de78}.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-event-grid-classic article.mec-label-canceled:before,.mec-event-grid-classic article.mec-label-featured:before,.mec-event-grid-minimal article.mec-label-canceled:before,.mec-event-grid-minimal article.mec-label-featured:before,.mec-event-grid-simple article.mec-label-canceled:before,.mec-event-grid-simple article.mec-label-featured:before,.mec-timetable-wrap article.mec-label-canceled:before,.mec-timetable-wrap article.mec-label-featured:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled:before,.mec-wrap .mec-event-list-accordion article.mec-label-featured:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled:before,.mec-wrap .mec-event-list-modern article.mec-label-featured:before{display:none}.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{top:-3px;font-size:11px;margin-left:10px}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style:before,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-canceled:before,.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-featured:before{-ms-transform:none;-webkit-transform:none;transform:none;-webkit-transition:none;transition:none;top:271px;right:0}.mec-timetable-wrap article .mec-fc-style{top:-2px;font-size:10px}.mec-wrap article.mec-event-cover-modern .mec-fc-style{padding:5px 9px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:24px;display:inline-block;border-radius:2px}.mec-skin-grid-events-container .mec-wrap .mec-event-grid-clean .mec-event-article:before{-ms-transform:none;-webkit-transform:none;transform:none!important;-webkit-transition:none;transition:none;top:22px!important;right:22px!important;padding:0 10px!important}.mec-event-grid-minimal article .mec-fc-style,.mec-event-grid-simple article .mec-fc-style{top:-4px;font-size:10px;margin-left:10px}.mec-event-grid-classic article .mec-fc-style{padding:5px 20px;font-size:12px;margin-top:8px;display:inline-block}.mec-hourly-schedule-speaker-info{background:#fff;padding:30px;border:1px solid #e6e6e6;max-width:740px;width:740px;margin-left:-110px}.mec-hourly-schedule-speaker-thumbnail{float:left;max-width:30%;width:30%}.mec-hourly-schedule-speaker-name{font-weight:700;font-size:26px;line-height:1.2;color:#333;text-transform:uppercase}.mec-hourly-schedule-speaker-details{float:left;width:69%;padding-left:25px}.mec-hourly-schedule-speaker-job-title{font-size:16px;line-height:1.3;margin-bottom:4px}.mec-hourly-schedule-speaker-description{font-size:14px;font-weight:400;color:#6d7683;line-height:1.7;text-align:left}.mec-hourly-schedule-speaker-contact-information a i{color:#6b6b6b;background:#ebebeb;line-height:29px;margin:9px 7px 9px 0;width:30px;height:30px;display:inline-block;text-align:center;transition:all .2s ease;font-size:15px;cursor:pointer}.mec-hourly-schedule-speaker-contact-information a i:hover{background:#222;color:#fff}@media only screen and (max-width:479px){.mec-hourly-schedule-speaker-thumbnail{float:none;max-width:none;margin-right:0;margin-bottom:15px;width:100%}.mec-hourly-schedule-speaker-thumbnail img{width:100%}.mec-hourly-schedule-speaker-details{padding-left:0}.mec-hourly-schedule-speaker-info{width:90%;margin:0 auto}}.mec-profile .mec-profile-bookings{border:2px solid #e6e6e6;text-align:center}.mec-profile .mec-profile-bookings tbody tr:first-child{background:#f7f7f7;font-weight:700;text-transform:capitalize}.mec-profile .mec-profile-bookings tbody tr{border-bottom:1px solid #e6e6e6;font-size:14px}.mec-profile .mec-profile-bookings tbody tr td{border:1px solid #e6e6e6;padding:10px;text-align:center;word-break:initial}.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:53%;text-align:left}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8) i{color:#fe686a}.mec-profile .mec-event-status{padding:5px 10px;color:#fff;border-radius:2px;font-size:12px;line-height:12px;letter-spacing:.4px}.mec-profile .mec-event-status.mec-book-confirmed{background:#50d477}.mec-profile .mec-event-status.mec-book-pending{background:#fcbe69}.mec-profile .mec-event-status.mec-book-rejected{background:#fe686a}.mec-profile .mec-event-date{font-size:12px;color:#888}.mec-event-date,.mec-event-status{text-align:center}.mec-event-date .mec-tooltip,.mec-event-status .mec-tooltip{position:relative;width:fit-content;margin:auto}.mec-profile i{font-size:15px;color:#008aff;vertical-align:text-bottom;margin-right:4px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{min-width:250px;max-width:300px;display:inline-block;top:-8px;left:50%;margin-top:0;transform:translate(-50%,-100%);padding:0;background-color:#000;color:#fff;font-weight:400;font-size:14px;letter-spacing:.5px;line-height:1.5;position:absolute;z-index:99999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #535a61;padding:5px 10px 6px;border-radius:8px;text-align:center;font-style:normal;opacity:0;visibility:hidden;display:none}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{font-size:13px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;letter-spacing:1.1px;font-weight:500}.mec-event-date .mec-tooltip:hover .box:after,.mec-event-status .mec-tooltip:hover .box:after{content:'';position:absolute;width:12px;height:12px;left:calc(50% - 12px);bottom:-12px;transform:translate(50%,-50%) rotate(-45deg);background-color:#000;box-shadow:0 8px 9px -4px #535a61}.mec-event-status .mec-tooltip .box{min-width:100px}.mec-event-status.mec-book-confirmed .mec-tooltip .box,.mec-event-status.mec-book-confirmed .mec-tooltip:hover .box:after{background-color:#50d477}.mec-event-status.mec-book-rejected .mec-tooltip .box,.mec-event-status.mec-book-rejected .mec-tooltip:hover .box:after{background-color:#fe686a}.mec-event-status.mec-book-pending .mec-tooltip .box,.mec-event-status.mec-book-pending .mec-tooltip:hover .box:after{background-color:#fcbe69}.mec-event-date .mec-tooltip:hover .box,.mec-event-status .mec-tooltip:hover .box{opacity:1;visibility:visible;display:block}.mec-profile .mec-event-status{padding:0}.mec-profile .mec-booking-number-of-attendees{font-size:13px;color:#888}.mec-profile .mec-booking-number-of-attendees i,.mec-profile .mec-profile-bookings-view-invoice i{font-size:15px;color:#008aff;vertical-align:text-bottom;margin-right:4px}.mec-booking-attendees{background:#fff;padding:10px}.mec-booking-attendees{width:850px;text-align:center}.mec-booking-attendees-wrapper{border:2px solid #e6e6e6;font-size:14px}.mec-booking-attendees-head{display:table;width:100%;background:#f7f7f7;border-bottom:1px solid #e6e6e6;font-weight:700}.mec-booking-attendees-head span,.mec-booking-attendees-head-content>span{vertical-align:middle;display:table-cell;padding:7px;border-right:1px solid #e6e6e6;font-size:12px}.mec-booking-attendees-head-content{display:table;width:100%;border-bottom:1px solid #e6e6e6}.mec-booking-attendees-wrapper .mec-booking-attendees-head-content:last-child{border:none}.mec-booking-attendees-head span:nth-child(1),.mec-booking-attendees-head-content>span:nth-child(1){width:4%}.mec-booking-attendees-head span:nth-child(2),.mec-booking-attendees-head-content>span:nth-child(2){width:20%}.mec-booking-attendees-head span:nth-child(3),.mec-booking-attendees-head-content>span:nth-child(3){width:24%}.mec-booking-attendees-head span:nth-child(4),.mec-booking-attendees-head-content>span:nth-child(4){width:26%}.mec-booking-attendees-head span:nth-child(5),.mec-booking-attendees-head-content>span:nth-child(5){width:26%}@media only screen and (max-width:759px){.mec-booking-attendees{width:470px}.mec-booking-attendees-head span,.mec-booking-attendees-head-content>span{word-break:break-all}}@media(max-width:1366px){.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:6%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:40%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:12%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:8%}}@media(max-width:1024px){.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:30%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:15%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:10%}}@media(max-width:780px){.mec-profile .mec-profile-bookings tbody tr,.mec-profile i{font-size:12px}.mec-event-date .mec-tooltip .box{min-width:200px}.mec-event-status .mec-tooltip .box{min-width:90px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{padding:4px 5px!important}.mec-profile .mec-profile-bookings tbody tr{font-size:12px}}@media(max-width:480px){.mec-profile .mec-booking-number-of-attendees,.mec-profile .mec-profile-bookings tbody tr,.mec-profile i{font-size:8px!important}.mec-profile .mec-profile-bookings tbody tr td{padding:3px}.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:19%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:12%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:18%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:13%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:13%}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{font-size:8px}.mec-event-date .mec-tooltip .box{min-width:75px}.mec-event-status .mec-tooltip .box{min-width:70px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{padding:4px 5px!important}}.mec-woo-booking-checkout{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;border-radius:0;margin-bottom:6px;min-width:170px;margin-top:5px;text-align:center}.mec-woo-booking-checkout:hover{background:#222;color:#fff}.mec-woo-booking-checkout:focus,.mec-woo-booking-checkout:visited{color:#fff}.single-mec-events .lity-container{max-width:480px;width:480px}.lity-content .mec-events-meta-group-booking{width:100%;padding:20px 50px;background:#fff}.lity-content .mec-events-meta-group-booking .mec-booking form>h4{text-transform:uppercase;font-size:15px;font-weight:700;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative;text-align:center;line-height:1.2;margin-bottom:10px}.lity-content .mec-events-meta-group-booking .mec-booking form>h4:before{padding:1px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-35px;left:50%}.lity-content .mec-events-meta-group-booking .mec-event-ticket-available,.lity-content .mec-events-meta-group-booking .mec-event-ticket-name,.lity-content .mec-events-meta-group-booking .mec-event-ticket-price,.lity-content .mec-events-meta-group-booking .mec-ticket-variation-name,.lity-content .mec-events-meta-group-booking .mec-ticket-variation-price,.lity-content .mec-events-meta-group-booking label{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:3px 0;clear:none;padding:5px 1em 3px 0;display:inline-block}.lity-content .mec-events-meta-group-booking .mec-event-ticket-available{margin-bottom:12px}.lity-content .mec-events-meta-group-booking select{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:100%;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both;font-family:Montserrat,Helvetica,Arial,sans-serif}.lity-content .mec-events-meta-group-booking input[type=email]{color:#888;border:1px solid #e1e1e1;font-size:14px;display:block;width:100%;outline:0}.lity-content .mec-events-meta-group-booking input{margin-bottom:10px!important}.lity-content .mec-book-ticket-variation h5{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:0;clear:none;padding:5px 1em 3px 0;display:inline-block;text-transform:capitalize;font-family:Montserrat,Helvetica,Arial,sans-serif}.lity-content ul.mec-book-tickets-container{padding:0}.lity-content .mec-events-meta-group-booking input[type=email],.lity-content .mec-events-meta-group-booking input[type=number],.lity-content .mec-events-meta-group-booking input[type=text]{outline:0;font-family:Montserrat,Helvetica,Arial,sans-serif;display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:100%;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both;margin-bottom:2px!important}.lity-content button[type=submit]{position:relative;border:none;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;min-width:170px;margin-top:5px;border-radius:0;margin-bottom:6px}.lity-content button[type=submit]:hover{background:#222}.lity-content .mec-book-tickets-container li{list-style:none}.lity-content .mec-events-meta-group-booking #mec_book_payment_form h4,.lity-content .mec-events-meta-group-booking li h4{font-size:19px;font-weight:700}.lity-content .mec-events-meta-group-booking .mec-book-price-total{display:inline-block;margin-bottom:10px;font-size:26px;color:#39c36e;font-weight:700;padding:10px 0}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li{width:50%}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li:nth-child(even){border:none}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li span{display:block}.lity-content .mec-events-meta-group-booking button[type=submit]:after{display:none;font-family:simple-line-icons;content:"\e098";margin-left:4px;-webkit-animation:rotating 1.2s linear infinite;-moz-animation:rotating 1.2s linear infinite;-ms-animation:rotating 1.2s linear infinite;-o-animation:rotating 1.2s linear infinite;animation:rotating 1.2s linear infinite}.lity-content .mec-events-meta-group-booking button[type=submit].loading:after{display:inline-block}@media only screen and (max-width:480px){.lity-content .mec-events-meta-group-booking{padding:20px;width:340px;margin:0 auto}}.mec-events-meta-group-booking{position:relative}.mec-cover-loader:after{content:'';position:absolute;top:0;right:0;left:0;bottom:0;background:rgba(255,255,255,.5);z-index:99999}.mec-loader{background:rgba(0,0,0,0);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);z-index:9}.mec-loader,.mec-loader:after{border-radius:50%;width:5em;height:5em;z-index:999999999999}.mec-loader{font-size:10px;text-indent:-9999em;border-top:.5em solid rgba(0,0,0,.2);border-right:.5em solid rgba(0,0,0,.2);border-bottom:.5em solid rgba(0,0,0,.2);border-left:.5em solid #fff;-webkit-transform:translateZ(0);-ms-transform:translateZ(0);transform:translateZ(0);-webkit-animation:mecloader 1.1s infinite linear;animation:mecloader 1.1s infinite linear}@-webkit-keyframes mecloader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes mecloader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.mec-google-recaptcha{margin:0 0 20px 16px}.mec-wrap *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mec-wrap :after,.mec-wrap :before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mec-wrap .clearfix:after,.mec-wrap .clearfix:before{content:'\0020';display:block;overflow:hidden;visibility:hidden;width:0;height:0}.mec-wrap .clearfix:after{clear:both}.mec-wrap .clearfix{zoom:1}.mec-wrap .clear,.mec-wrap .clr{clear:both;display:block;overflow:hidden;visibility:hidden}.mec-wrap .clr{visibility:visible;overflow:visible}.mec-container [class*=col-] img{max-width:100%}.mec-container{margin-right:auto;margin-left:auto;padding-left:10px;padding-right:10px}.mec-container:after,.mec-container:before{content:" ";display:table}.mec-container:after{clear:both}@media only screen and (max-width:479px){.mec-container{width:300px}}@media only screen and (min-width:480px) and (max-width:767px){.mec-container{width:420px}}@media only screen and (min-width:768px) and (max-width:960px){.mec-container{width:768px}}@media only screen and (min-width:961px){.mec-container{width:960px}}@media only screen and (min-width:1200px){.mec-container{width:1196px;padding-left:15px;padding-right:15px}}@media only screen and (min-width:1921px){.mec-container{max-width:1690px}}.mec-wrap .row{margin-left:-10px;margin-right:-10px}.mec-wrap .row:after,.mec-wrap .row:before{content:" ";display:table}.mec-wrap .row:after{clear:both}.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9,.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9,.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9,.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{position:relative;min-height:1px;padding-left:10px;padding-right:10px}@media only screen and (min-width:1200px){.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9,.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9,.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9,.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{padding-left:15px;padding-right:15px}.mec-wrap .row{margin-left:-15px;margin-right:-15px}}.mec-container [class*=col-].alpha{padding-left:0}.mec-container [class*=col-].omega{padding-right:0}.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{float:left}.mec-wrap .col-xs-12{width:100%}.mec-wrap .col-xs-11{width:91.66666666666666%}.mec-wrap .col-xs-10{width:83.33333333333334%}.mec-wrap .col-xs-9{width:75%}.mec-wrap .col-xs-8{width:66.66666666666666%}.mec-wrap .col-xs-7{width:58.333333333333336%}.mec-wrap .col-xs-6{width:50%}.mec-wrap .col-xs-5{width:41.66666666666667%}.mec-wrap .col-xs-4{width:33.33333333333333%}.mec-wrap .col-xs-3{width:25%}.mec-wrap .col-xs-2{width:16.666666666666664%}.mec-wrap .col-xs-1{width:8.333333333333332%}@media (min-width:768px){.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9{float:left}.mec-wrap .col-sm-12{width:100%}.mec-wrap .col-sm-11{width:91.66666666666666%}.mec-wrap .col-sm-10{width:83.33333333333334%}.mec-wrap .col-sm-9{width:75%}.mec-wrap .col-sm-8{width:66.66666666666666%}.mec-wrap .col-sm-7{width:58.333333333333336%}.mec-wrap .col-sm-6{width:50%}.mec-wrap .col-sm-5{width:41.66666666666667%}.mec-wrap .col-sm-4{width:33.33333333333333%}.mec-wrap .col-sm-3{width:25%}.mec-wrap .col-sm-2{width:16.666666666666664%}.mec-wrap .col-sm-1{width:8.333333333333332%}}@media (min-width:961px){.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9{float:left}.mec-wrap .col-md-12{width:100%}.mec-wrap .col-md-11{width:91.66666666666666%}.mec-wrap .col-md-10{width:83.33333333333334%}.mec-wrap .col-md-9{width:75%}.mec-wrap .col-md-8{width:66.66666666666666%}.mec-wrap .col-md-7{width:58.333333333333336%}.mec-wrap .col-md-6{width:50%}.mec-wrap .col-md-5{width:41.66666666666667%}.mec-wrap .col-md-4{width:33.33333333333333%}.mec-wrap .col-md-3{width:25%}.mec-wrap .col-md-2{width:16.666666666666664%}.mec-wrap .col-md-1{width:8.333333333333332%}}@media (min-width:1200px){.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9{float:left}.mec-wrap .col-lg-12{width:100%}.mec-wrap .col-lg-11{width:91.66666666666666%}.mec-wrap .col-lg-10{width:83.33333333333334%}.mec-wrap .col-lg-9{width:75%}.mec-wrap .col-lg-8{width:66.66666666666666%}.mec-wrap .col-lg-7{width:58.333333333333336%}.mec-wrap .col-lg-6{width:50%}.mec-wrap .col-lg-5{width:41.66666666666667%}.mec-wrap .col-lg-4{width:33.33333333333333%}.mec-wrap .col-lg-3{width:25%}.mec-wrap .col-lg-2{width:16.666666666666664%}.mec-wrap .col-lg-1{width:8.333333333333332%}}#mec_woo_add_to_cart_btn{min-width:170px;margin-top:5px;text-align:center}.mec-breadcrumbs{border-radius:2px;padding:9px 15px 6px;font-size:11px;color:#8d8d8d;letter-spacing:0;text-transform:none;font-weight:500;margin:auto 15px 33px 15px;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.025)}.mec-breadcrumbs-modern{margin:auto 0 33px 0}.mec-breadcrumbs a{color:#000;padding-left:4px}.mec-breadcrumbs a:hover{text-decoration:underline}.mec-breadcrumbs i{font-size:8px;margin:0 0 0 4px}.mec-breadcrumbs .container{padding-left:20px}.mec-content-notification a{margin-left:5px}.mec-content-notification{background:#f7f7f7;padding:10px 10px 10px;border:1px solid #e8e8e8}.mec-content-notification p{margin-bottom:0}.mec-fes-form #mec-advanced-wraper div:first-child>ul{border:1px solid #cfeff5;width:auto;box-shadow:0 1px 4px -2px #cfeff5;display:block;margin:5px 0 10px;padding:5px 0;border-radius:2px}.mec-fes-form #mec-advanced-wraper div:first-child>ul:last-of-type{margin-bottom:35px}#mec-advanced-wraper div:first-child>ul span{display:none}#mec-advanced-wraper div:first-child>ul *{display:inline-block;background:#fff;font-size:12px;color:#717273;text-align:center}#mec-advanced-wraper div:first-child>ul>li{width:60px;font-weight:700;margin:0 10px 0 0;padding:4px 0;border-right:1px solid #cfeff5}#mec-advanced-wraper div:first-child>ul>ul>li{margin:0;padding:2px 10px;cursor:pointer;border-radius:2px;transition:all .18s ease}.mec-fes-form #mec-advanced-wraper div:first-child>ul>ul>li.mec-active,.mec-fes-form #mec-advanced-wraper div:first-child>ul>ul>li:hover{background:#40d9f1!important;box-shadow:0 1px 9px -3px #40d9f1;color:#fff!important}.mec-search-bar-wrap .mec-search-form .mec-text-input-search{width:83%}.mec-search-bar-wrap .mec-search-form .mec-ajax-search-result .mec-text-input-search{width:100%;float:none}.mec-search-bar-wrap input#mec-search-bar-input{width:calc(100% - 84%);margin-left:11px;background:#40d9f1;Color:#fff;font-weight:400}.mec-text-input-search+input#mec-search-bar-input{margin-left:-3px}.mec-search-bar-wrap input#mec-search-bar-input:hover{background:#000}.mec-wrap.mec-search-bar-wrap .mec-totalcal-box input{float:none}@media(max-width:768px){.mec-search-bar-wrap .mec-search-form .mec-text-input-search{display:inline-block}}@media(max-width:480px){.mec-search-bar-wrap .mec-search-form .mec-text-input-search{width:64%}.mec-search-bar-wrap input#mec-search-bar-input{width:calc(100% - 67%)}}.mec-wrap.mec-search-bar-wrap .mec-totalcal-box{overflow:visible}.mec-ajax-search-result{position:relative}.mec-search-bar-wrap.mec-wrap .mec-totalcal-box input[type=text]{width:calc(100% - 36px)}.mec-search-bar-wrap.mec-wrap .mec-totalcal-box input[type=text]:focus{border-color:#efefef}div#mec-ajax-search-result-wrap{position:absolute;top:100%;opacity:0;visibility:hidden;width:calc(100% - 2px);min-height:50px;left:0;right:0;padding:0 10px;z-index:9999;transition:all .3s ease}.mec-ajax-search-result-events{background:#fff;padding:10px 20px;border:1px solid #efefef;border-top:none}.mec-ajax-search-result-events article:first-of-type{border:none}article.mec-search-bar-result{text-align:left;margin-bottom:0;padding-bottom:25px;padding-top:26px;border-top:1px solid #efefef;transition:all .33s ease;clear:both}.mec-search-bar-result .mec-event-list-search-bar-date{width:64px;height:64px;margin-right:10px;font-size:11px;text-transform:uppercase;float:left;text-align:center;padding-top:2px}.mec-search-bar-result .mec-event-list-search-bar-date span{font-size:40px;line-height:30px;font-weight:700;display:block;margin-bottom:6px;letter-spacing:1px}.mec-search-bar-result .mec-event-image{float:left;margin-right:20px;width:65px;height:auto}.mec-search-bar-result .mec-event-time{font-size:11px;line-height:1.1;margin:0}.mec-search-bar-result .mec-event-time i{color:#40d9f1;float:none;width:unset;height:unset;font-size:inherit;margin-right:3px;border:none;padding:0}.mec-search-bar-result .mec-event-title{font-size:13px;padding:0;margin:10px 0 8px;font-weight:700;text-transform:uppercase}.mec-search-bar-result .mec-event-title a{text-decoration:none;color:#494949;transition:color .3s ease}.mec-search-bar-result .mec-event-detail{font-size:13px;line-height:1.3;font-family:Roboto,sans-serif;color:#9a9a9a;margin-bottom:0}.mec-wrap.mec-modern-search-bar .mec-totalcal-box{background:rgba(255,255,255,.87);border:none;padding:35px;border-radius:3px;box-shadow:0 3px 13px rgba(0,0,0,.4);position:relative}.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=search],.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=text]{height:58px;background:rgba(255,255,255,.99);border-radius:2px;box-shadow:0 4px 8px rgba(0,0,0,.1) inset;border:1px solid #ccc;width:100%;padding-left:45px;padding-right:13px;font-size:16px}.mec-wrap.mec-modern-search-bar .mec-totalcal-box .mec-text-input-search i{position:absolute;background:0 0;border:none;font-size:21px;left:15px;top:calc(50% - 19px);color:#40d9f1}.mec-wrap.mec-modern-search-bar .mec-text-input-search{position:relative;height:58px}.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=submit]{height:58px;border:none;border-radius:2px;background:#fc4a1a;font-size:17px;font-weight:700!important}.mec-wrap.mec-modern-search-bar .mec-text-input-search+input#mec-search-bar-input{margin-left:0}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select{height:45px;background:rgba(255,255,255,.99);border-radius:2px;box-shadow:0 4px 8px rgba(0,0,0,.1) inset;border:1px solid #ccc;padding-right:13px;font-size:16px;border-left:0}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap i{height:45px;background:#ffff;border-radius:2px 0 0 2px;box-shadow:none;border:1px solid #ccc;font-size:15px;padding-top:14px;border-right:0;color:#40d9f1;margin-right:-1px}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap{min-height:64px}@media(max-width:768px){.mec-wrap.mec-modern-search-bar .mec-search-form .mec-text-input-search{width:70%}.mec-wrap.mec-modern-search-bar input#mec-search-bar-input{width:calc(100% - 72%)}}@media(max-width:480px){.mec-wrap.mec-modern-search-bar input#mec-search-bar-input{width:92%;padding:0 10px;position:relative;display:block;margin-left:11px}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-text-input-search{width:100%;margin-bottom:20px}.mec-wrap.mec-modern-search-bar .mec-text-input-search+input#mec-search-bar-input{margin-left:10px}}.mec-related-events-wrap{margin-top:50px}.mec-related-events-wrap h3.mec-rec-events-title:before{content:"";background:#2c2f34;width:46px;height:4px;position:absolute;top:59px;left:0}.mec-related-events-wrap h3.mec-rec-events-title{font-size:21px;font-weight:600;padding:17px 0;margin-bottom:28px;text-transform:uppercase;border-bottom:1px solid #e8e8e8;position:relative}.mec-related-event-post figure{margin:0}.mec-related-event-post figure img{width:100%}.mec-related-event-content{background-color:#fff;margin:-27px 30px 15px;position:relative;max-width:90%;padding:13px 21px 16px 19px}.mec-related-event-content h5 a{font-size:16px;color:#121212;font-weight:600;transition:all .3s ease}.mec-fes-form-cntt #mec-organizer-payments ul{list-style:none;background:0 0;margin:0}.mec-fes-form-cntt #mec-organizer-payments ul li h4{background:0 0;letter-spacing:.2px;display:inline-block;padding-left:0!important;padding-bottom:10px!important;margin:0;margin-bottom:1px;letter-spacing:1px;text-transform:capitalize;padding-top:1px}.mec-fes-form-cntt #mec-organizer-payments ul>li{width:100%;display:inline-block;vertical-align:top;padding:0;margin:0}#mec-login-form.mec-login-form{width:100%;background:#fff;padding:20px;margin:0 auto;text-align:center;position:relative}#mec-login-form.mec-login-form .mec-login-input{display:block;width:286px;margin:0 auto;margin-bottom:12px}#mec-login-form.mec-login-form .mec-login-forgotpassword{display:inline-block}.mec-login-forgotpassword a{color:#000}#mec-login-form.mec-login-form .mec-login-submit{float:right;text-align:right;width:49%;padding-right:2px}#mec-login-form.mec-login-form .mec-login-input input{border:none;box-shadow:none;background:#fff;color:#ccc;border-left:1px solid #e6e6e6;padding:0;height:100%;background-image:none!important;padding-left:10px;padding-right:0;width:222px;margin-left:0;clear:none;float:left}#mec-login-form.mec-login-form .mec-login-input label{border:1px solid #e6e6e6;height:52px;display:inline-block;padding:0;border-radius:3px;overflow:hidden;box-shadow:0 2px 4px rgba(0,0,0,.04)}#mec-login-form.mec-login-form .mec-login-input label i{padding:15px 13px 17px 16px;vertical-align:middle;font-size:20px;width:50px;color:#c5cad0;background:#fafafa;margin-right:0;float:left}#mec-login-form.mec-login-form .mec-login-forgotpassword{float:left;width:49%;text-align:left;padding-top:10px;font-size:13px;padding-left:2px}#mec-login-form.mec-login-form button{width:120px;height:44px;border:none;color:#fff;border-radius:3px;font-size:12px;font-weight:700;letter-spacing:1px;text-transform:uppercase;transition:all .22s ease;margin:0;min-width:unset}.mec-login-form button{box-shadow:0 4px 22px -7px #40d9f1;background-color:#40d9f1}#mec-login-form.mec-login-form button:hover{background:#222;box-shadow:0 3px 14px -4px #333}#mec-login-form.mec-login-form .mec-login-form-footer{width:286px;margin:0 auto;margin-top:20px;clear:both;position:relative;display:block;min-height:50px}#mec-login-form.mec-login-form .mec-ajax-login-loading{position:absolute;background:#ffffffc2;left:0;right:0;top:0;bottom:0}#mec-login-form.mec-login-form .lds-ripple{position:absolute;width:64px;height:64px;top:calc(50% - 23px);left:calc(50% - 23px)}#mec-login-form.mec-login-form .lds-ripple div{position:absolute;border:4px solid #40d9f1;opacity:1;border-radius:50%;animation:lds-ripple 1.2s cubic-bezier(0,.2,.1,.8) infinite}#mec-login-form.mec-login-form .lds-ripple div:nth-child(2){animation-delay:-.5s}#mec-login-form.mec-login-form .mec-ajax-login-loading-text{position:absolute;min-width:200px;top:calc(50% - 18px);left:calc(50% - 124px);color:#fff;padding:10px 22px;border-radius:3px;background:#fff;height:47px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text strong{color:#3fcc60}#mec-login-form.mec-login-form .mec-ajax-login-loading-text strong:before{content:"";position:absolute;top:8px;left:1px;border-right:2px solid #3fcc60;border-bottom:2px solid #3acb5c;transform:rotate(45deg);transform-origin:0 100%;color:#000;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards;width:8px;height:14px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong:after{content:"";position:absolute;top:14px;left:5px;border-bottom:2px solid #ff5d39;transform:rotate(45deg);transform-origin:0 100%;color:#000;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards;width:14px;height:4px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong{color:#ff5d39}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong:before{border-color:#ff5d39;border-bottom:none}@keyframes lds-ripple{0%{top:28px;left:28px;width:0;height:0;opacity:1}100%{top:-1px;left:-1px;width:58px;height:58px;opacity:0}}.mec-book-form-gateway-checkout [id*=mec_do_transaction_stripe_] .mec-form-row:first-child{margin-bottom:20px}.mec-events-meta-group-booking .StripeElement{box-sizing:border-box;height:40px;padding:10px 12px;border:1px solid transparent;border-radius:4px;background-color:#fff;box-shadow:0 1px 3px 0 #e6ebf1;-webkit-transition:box-shadow 150ms ease;transition:box-shadow 150ms ease;margin-bottom:20px;background:#fff}.mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text]{box-sizing:border-box;height:40px;padding:10px 12px;border:0!important;border-radius:4px;background-color:#fff;box-shadow:0 1px 3px 0 #e6ebf1!important;-webkit-transition:box-shadow 150ms ease;transition:box-shadow 150ms ease;margin-bottom:20px;background:#fff!important}.mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text]:focus{outline:0}.mec-events-meta-group-booking .StripeElement--focus{box-shadow:0 1px 3px 0 #cfd7df}.mec-events-meta-group-booking .StripeElement--invalid{border-color:#fa755a}.mec-events-meta-group-booking .StripeElement--webkit-autofill{background-color:#fefde5!important}.mec-booking-tab-content .button,.mec-booking-tab-content .mec-reg-field-add-option,.mec-fes-form .mec-form-row .button:not(.wp-color-result),.mec-fes-form input[type=file],ul#mec_reg_form_fields li .mec_reg_field_remove{height:40px;margin-top:1px;text-decoration:none;font-size:14px;line-height:34px!important;margin:0;padding:0 15px 1px!important;text-transform:none;letter-spacing:0;font-weight:600;color:#40d9f1;background:#fff;border-radius:3px;margin-right:8px;border:2px solid #cfeff5;box-shadow:0 2px 6px -3px #cfeff5}.mec-booking-tab-content .button:hover,.mec-booking-tab-content .mec-reg-field-add-option:hover,.mec-fes-form .mec-form-row .button:not(.wp-color-result):hover{background:#40d9f1;color:#fff;border-color:#40d9f1;box-shadow:0 2px 6px -3px #40d9f1}.mec-fes-form .mec-form-row input+button.button{vertical-align:top}.mec-fes-form .mec-form-row .quicktags-toolbar input.button.button-small{border-width:1px;padding:0 7px;color:#80c6d2;font-weight:400;margin:1px;transform:none}.mec-fes-form input[type=file]{max-width:166px;text-align:center;height:44px;transition:all .2s ease;border-radius:5px!important;border:2px dashed #b8e9f3}.mec-fes-form input[type=file]:hover{box-shadow:0 2px 16px -3px #cfeff5}.mec-fes-form input[type=file]::-webkit-file-upload-button{visibility:hidden;width:1px;height:38px}.mec-fes-form input[type=file]::-moz-file-upload-button{visibility:hidden;width:1px;height:38px}.mec-fes-form .mec-meta-box-fields>label{padding:0}#mec_reg_form_fields li{list-style:none}ul#mec_reg_form_fields{padding:0;margin:0}ul#mec_reg_form_fields li{background:#f8feff;margin:6px -20px;padding:15px 25px 10px;width:auto;font-size:13px;border-top:1px solid #e8fafd;border-bottom:1px solid #e8fafd;position:relative}ul#mec_reg_form_fields li .mec_reg_field_remove{position:absolute;right:10px;top:10px;margin:0;padding:6px 8px!important;font-size:11px;line-height:12px!important;min-height:10px;height:auto;display:block;cursor:pointer;color:#ea6485;border-color:#ffd2dd;letter-spacing:.4px}ul#mec_reg_form_fields li .mec_reg_field_remove:hover{background:#ea6485;color:#fff;border-color:#ea6485;box-shadow:0 2px 6px -3px #ea6485}#mec_reg_form_fields input[type=checkbox],#mec_reg_form_fields input[type=radio],.mec-form-row input[type=checkbox],.mec-form-row input[type=radio]{background-color:#fff;border:1px solid #cfeff5;box-shadow:0 1px 3px -1px #cfeff5;padding:9px;border-radius:3px;min-width:24px;min-height:24px;display:inline-block!important;vertical-align:middle;float:none;transition:all .18s ease;outline:0;margin:1px 4px 4px 0;text-align:left;cursor:pointer;-webkit-appearance:none;-moz-appearance:none}#mec_reg_form_fields input[type=checkbox]:focus,#mec_reg_form_fields input[type=radio]:focus,.mec-form-row input[type=checkbox]:focus,.mec-form-row input[type=radio]:focus{outline:0}#mec_reg_form_fields input[type=radio],.mec-form-row input[type=radio]{-webkit-appearance:none;border-radius:20px!important;min-width:20px;min-height:20px;margin:0 0 4px 0;vertical-align:middle}#mec_reg_form_fields input[type=checkbox]:hover,#mec_reg_form_fields input[type=radio]:hover,.mec-form-row input[type=checkbox]:hover,.mec-form-row input[type=radio]:hover{border-color:#40d9f1}#mec_reg_form_fields input[type=checkbox]:checked,#mec_reg_form_fields input[type=radio]:checked,.mec-fes-form .mec-form-row input[type=checkbox]:checked,.mec-fes-form .mec-form-row input[type=radio]:checked{box-shadow:0 1px 6px -2px #40d9f1;border-color:#40d9f1;background:#40d9f1!important;border-radius:2px;position:relative}.mec-form-row input[type=radio]:checked{box-shadow:0 1px 6px -2px #40d9f1,inset 0 0 0 3px #fff!important}#mec_reg_form_fields input[type=checkbox]:checked::before,.mec-form-row input[type=checkbox]:checked:before{content:"";font:normal;position:absolute;top:12px;left:5px;margin:0;vertical-align:middle;line-height:1;border-right:2px solid #fff!important;border-bottom:2px solid #fff!important;transform:rotate(45deg);transform-origin:0 100%;color:#fff;transition:all .2s ease;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards}@keyframes checkbox-check{0%{width:0;height:0;border-color:#fff;transform:translate3d(0,0,0) rotate(45deg)}33%{width:6px;height:0;transform:translate3d(0,0,0) rotate(45deg)}100%{width:6px;height:12px;border-color:#fff;transform:translate3d(0,-12px,0) rotate(45deg)}}#mec_reg_form_field_types .button{position:relative;outline:0;border-radius:50px;padding:2px 21px 2px 31px!important;line-height:1;font-size:11px;font-weight:600;color:#40d9f1;letter-spacing:2px;height:auto;cursor:pointer;margin-top:5px;text-transform:uppercase;box-shadow:0 2px 6px -3px #40d9f1;border:2px solid #cfeff5}#mec_fes_location_remove_image_button,#mec_fes_organizer_remove_image_button,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button,#mec_meta_box_tickets_form [id^=mec_ticket_row] button,#mec_reg_form_field_types .button.red{color:#ea6485;box-shadow:0 2px 6px -3px #ea6485;background:#fff;border-color:#ffd2dd}#mec_fes_location_remove_image_button:hover,#mec_fes_organizer_remove_image_button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button:hover,#mec_meta_box_tickets_form [id^=mec_ticket_row] button:hover,#mec_reg_form_field_types .button.red:hover{background:#ea6485;color:#fff}#mec_reg_form_field_types .button:before{position:absolute;left:12px;color:#40d9f1;content:"\e095";font-family:simple-line-icons;font-size:13px;display:inline-block}#mec_reg_form_field_types .button.red:before{color:#ea6485}#mec_reg_form_field_types .button.red:hover:before,#mec_reg_form_field_types .button:hover:before{color:#fff}#mec_fes_location_remove_image_button:hover,#mec_fes_organizer_remove_image_button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button:hover,#mec_meta_box_tickets_form [id^=mec_ticket_row] button:hover,#mec_price_per_dates_container .button:hover,#mec_reg_form_field_types .button.red:hover{color:#fff;border:2px solid #ea6485}#mec_taxes_fees_container_toggle [id^=mec_remove_fee_button],#mec_ticket_variations_list [id^=mec_remove_ticket_variation_button]{color:#ea6485;border-color:#ffd2dd}#mec_taxes_fees_container_toggle [id^=mec_remove_fee_button]:hover,#mec_ticket_variations_list [id^=mec_remove_ticket_variation_button]:hover{color:#fff;border:2px solid #ea6485;background:#ea6485}#mec_fees_list [id^=mec_remove_fee_button],#mec_meta_box_ticket_variations_form .mec-form-row [id^=mec_remove_ticket_variation_button]{margin-left:14px!important}#mec_meta_box_hourly_schedule_days .mec-add-hourly-schedule-button{line-height:10px!important}#mec_meta_box_tickets_form [id^=mec_ticket_row] .mec_add_price_date_button{color:#40d9f1;box-shadow:0 2px 6px -3px #40d9f1;border:2px solid #cfeff5}#mec_meta_box_tickets_form [id^=mec_ticket_row] .mec_add_price_date_button:hover,#mec_reg_form_field_types .button:hover{color:#fff;border:2px solid #40d9f1;background:#40d9f1}.mec-form-row input+span.mec-tooltip,.mec-form-row select+span.mec-tooltip{bottom:10px}.mec-form-row label+span.mec-tooltip{bottom:8px}.mec-form-row textarea+span.mec-tooltip{bottom:auto;vertical-align:top;top:12px}.mec-form-row span+span.mec-tooltip{bottom:0;vertical-align:middle}.mec-form-row .mec-col-8 input[type=text],.mec-form-row .mec-col-8 select,.mec-form-row .mec-col-8 span.mec-archive-skins{vertical-align:top}.mec-form-row input:disabled{opacity:.6;background:#f6f6f6}.mec-form-row p{font-size:12px!important;line-height:18px!important;color:#97b2bb!important}.mec-form-row p.description{font-style:italic}.ui-datepicker.ui-widget{border:1px solid #e8e8e8;box-shadow:0 1px 9px rgba(0,0,0,.12);font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif}table.ui-datepicker-calendar{margin-bottom:0}.ui-datepicker-calendar th{font-weight:700;color:#4a4b4c}.ui-datepicker-calendar td,.ui-datepicker-calendar th,.ui-datepicker-calendar tr{border:none}.ui-datepicker.ui-widget select{font-weight:600;font-size:12px;display:inline-block;border-radius:2px;padding:2px 10px;margin:5px 3px;width:auto;min-height:20px;height:26px;border:1px solid #e3e3e3;box-shadow:inset 0 1px 3px rgba(0,0,0,.04)}.ui-datepicker.ui-widget table{border-spacing:2px;border:none}.ui-datepicker.ui-widget td,.ui-datepicker.ui-widget tr{padding:0;background:0 0!important}.ui-datepicker.ui-widget td a{color:#9a9b9c;font-weight:600;width:30px;height:30px;line-height:30px;display:inline-block;border-radius:33px;padding:0;background:#fff;transition:all .2s ease}.ui-datepicker.ui-widget td a.ui-state-active,.ui-datepicker.ui-widget td a:hover{background:#40d9f1;color:#fff}.ui-datepicker.ui-widget .ui-datepicker-next,.ui-datepicker.ui-widget .ui-datepicker-prev{color:#40d9f1;width:30px;height:30px;line-height:30px;display:inline-block;text-align:center;border-radius:33px;background:#ecfcff;transition:all .2s ease}.ui-datepicker.ui-widget .ui-datepicker-next:hover,.ui-datepicker.ui-widget .ui-datepicker-prev:hover{background:#fff;box-shadow:0 0 7px -3px rgba(0,0,0,.4)}.mec-fes-form .mec-tooltip .dashicons-before:before{color:#40d9f1}.mec-fes-form button[type=submit].mec-fes-sub-button{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;border-radius:3px;background:#40d9f1;color:#fff;height:54px;font-size:17px;font-weight:700;box-shadow:0 2px 8px -4px #40d9f1;display:block;transition:all .28s ease;text-transform:uppercase;margin:20px 0 0;padding:14px 20px;border:0;cursor:pointer;text-align:center;letter-spacing:.1em;line-height:1}.mec-fes-form button[type=submit].mec-fes-sub-button:hover{box-shadow:0 2px 12px -2px #40d9f1}.mec-fes-form button[type=submit].mec-fes-sub-button:focus{margin-bottom:-2px;background:#1dc2dc}.mec-fes-form .mec-title span.mec-dashicons{color:#40d9f1;float:left;margin-right:5px}.mec-fes-form .mec-tooltip .box h5{padding:14px 2px}#mec_fes_form,.mec-fes-form-top-actions{max-width:838px;margin:0 auto}@media only screen and (min-width:961px){.mec-fes-form .mec-fes-form-cntt{width:calc(100% - 300px);float:left;padding-right:20px;max-width:538px;display:block}.mec-fes-form .mec-fes-form-sdbr{width:300px}}.mec-fes-form .quicktags-toolbar,.mec-fes-form div.mce-toolbar-grp{background:#ecfcff;border-bottom:1px solid #cfeff5;box-shadow:0 1px 0 1px #cfeff5}.mec-fes-form .quicktags-toolbar{margin-right:-1px;border-top:1px solid #cfeff5}.mec-fes-form div.mce-statusbar{border-top-color:#cfeff5}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-listbox{border:1px solid #cfeff5;border-radius:3px}.mec-fes-form .mce-tinymce.mce-container.mce-panel{border:1px solid #cfeff5;box-shadow:0 2px 6px -3px #cfeff5;border-radius:2px 0 2px 2px}.mec-fes-form .wp-editor-tools .wp-media-buttons{transform:translateY(-6px);margin-top:-6px}.mec-fes-form .wp-editor-tabs{padding-right:0;margin-right:-2px}.mec-fes-form .wp-editor-tabs .wp-switch-editor{border-radius:3px 3px 0 0;border-color:#cfeff5;background:#fff;color:#96b8bd;border-bottom:1px solid #ecfcff}.mec-fes-form .html-active .switch-html,.mec-fes-form .tmce-active .switch-tmce,.mec-fes-form .wp-editor-tabs .wp-switch-editor:active{background:#ecfcff;color:#40d9f1}.mec-fes-form .wp-editor-container,.mec-fes-form div.mce-edit-area.mce-panel{border:none;box-shadow:none}.mec-fes-form .wp-editor-container textarea.wp-editor-area{max-width:100%}.mec-fes-form .mce-toolbar .mce-listbox button{font-size:12px;line-height:22px;color:#798f96}.mec-fes-form .mce-toolbar .mce-ico{color:#627f88}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-active,.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn:active,.mec-fes-form .qt-dfw.active{background:#fff;border-color:#40d9f1;box-shadow:inset 0 2px 6px -3px rgba(106,231,255,.7)}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-active .mce-ico{color:#40d9f1}body .mce-menu .mce-menu-item.mce-active.mce-menu-item-normal,body .mce-menu .mce-menu-item.mce-selected,body .mce-menu .mce-menu-item:focus,body .mce-menu .mce-menu-item:hover,body.mce-menu .mce-menu-item.mce-active.mce-menu-item-preview{background:#40d9f1;color:#fff}.mec-fes-form .mec-not-in-days-day{display:inline-block;padding:4px 32px 4px 15px;border-radius:33px;border:1px solid #cfeff5;box-shadow:0 1px 3px -1px #cfeff5;background:#fbfeff;color:#40d9f1;vertical-align:top}.mec-fes-form .mec-not-in-days-remove{display:inline-block;padding:0 1px 0 0;margin-left:-30px;vertical-align:sub;background:#ff918a;color:#fff;font-family:cursive;width:21px;height:21px;line-height:17px;text-align:center;border-radius:20px;cursor:pointer}.mec-fes-list ul li .mec-event-status{float:left;margin-right:10px;margin-left:0;font-size:11px;font-weight:400;letter-spacing:.3px;border-radius:3px;padding:4px 8px}.mec-fes-form .post-status.mec-book-confirmed:before,.mec-fes-list ul li .mec-event-status.mec-book-confirmed:before{content:"";margin:0;vertical-align:middle;line-height:1;border-right:2px solid #fff!important;border-bottom:2px solid #fff!important;transform:rotate(45deg);color:#fff;width:6px;height:12px;float:left;margin-right:6px}.mec-fes-list ul li .mec-fes-event-export a:before,.mec-fes-list ul li .mec-fes-event-remove:before,.mec-fes-list ul li .mec-fes-event-view a:before,.mec-fes-list-top-actions a:before{content:"\e054";font-family:simple-line-icons;font-size:13px;vertical-align:middle}.mec-fes-list ul li .mec-fes-event-view a:before{content:"\e087"}.mec-fes-list-top-actions a:before{content:"\e095";font-weight:400;margin-right:6px}.mec-fes-list ul li .mec-fes-event-export a:before{content:"\e083"}.mec-fes-form .post-status{border-radius:20px}.mec-fes-form .post-status.mec-book-confirmed:before{height:20px;width:9px;margin:3px 10px}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker-calendar th{height:auto;padding:0}.ui-datepicker .ui-datepicker-calendar td a,.ui-datepicker-calendar th{font-size:14px;line-height:30px}.mec-fes-form .description{font-size:16px}.mec-fes-form input[type=file]{text-align:left}.mec-fes-export-wrapper{width:640px;background:#f8feff;padding:40px 25px}.mec-fes-export-wrapper .mec-fes-btn-date{font-size:16px;line-height:44px;overflow:hidden}.mec-fes-export-wrapper .date-messgae{font-family:sans-serif;padding:2px 18px}.mec-fes-list ul li .mec-event-export-csv,.mec-fes-list ul li .mec-event-export-excel{font-size:12px;border:1px solid #40d9f1;padding:1px 4px;background:rgba(141,229,243,.18);border-radius:4px;color:#40d9f1;font-family:sans-serif;cursor:pointer;display:inline-block;height:26px;line-height:22px}.mec-export-badge{font-size:11px;color:#40d9f1;width:auto;height:24px;line-height:25px;display:inline-block;padding:0 8px;text-align:center;border-radius:3px;background:#ecfcff;transition:all .2s ease}.mec-fes-list ul li .mec-fes-event-export{font-size:11px;background:#f7f7f7;float:right;margin-left:5px}.mec-fes-list ul li .mec-fes-event-export:hover{cursor:pointer;background:#90f0e0;border-color:#4dc8cc}.mec-fes-export-wrapper ul{padding:0;width:100%;text-align:center}.mec-fes-export-wrapper ul li{list-style:none;display:inline-block;width:30%;padding:10px 15px 10px 32px;border-radius:3px;margin-bottom:15px;border:1px solid #cfeff5;box-shadow:0 2px 6px -4px #cfeff5;background:#fff;line-height:normal;margin-right:10px;position:relative;cursor:pointer;font-size:13px;line-height:1;transition:all .2s ease}.mec-fes-export-wrapper ul li:nth-child(3n+0){margin-right:0}.mec-fes-export-wrapper ul li:hover{box-shadow:0 2px 16px -1px #c6e8ef}.mec-fes-export-wrapper ul li:before{content:"";position:absolute;display:inline-block;background:#fff;width:15px;height:15px;margin:-1px 0 0 5px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32);border-radius:50%;left:9px;top:calc(50% - 7px)}.mec-fes-export-wrapper ul li.fes-export-date-active{color:#40d9f1}.mec-fes-export-wrapper ul li.fes-export-date-active:before{width:15px;height:15px;border:6px solid #40d9f1;background:#fff;box-shadow:0 3px 16px -3px #40d9f1}.mec-fes-btn-export{margin-left:15px;margin-top:12px}.mec-fes-btn-export span{position:relative;border:none;border-radius:3px;color:#fff!important;display:inline-block;font-size:13px;line-height:1;text-transform:none;font-weight:400;text-decoration:none;cursor:pointer;margin-right:4px;line-height:1;letter-spacing:0;padding:15px 22px;background:#39c36e;box-shadow:0 1px 7px -3px #39c36e!important;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;cursor:pointer;margin-left:6px}.mec-fes-btn-export span:hover{background:#222}.mec-event-export-excel:before,span.mec-event-export-csv:before{content:"\e083";font-family:simple-line-icons;font-size:13px;vertical-align:middle;margin-right:7px;margin-top:-1px;display:inline-block}.mec-fes-list .wn-p-t-right{min-width:170px;max-width:200px;display:inline-block;top:-8px;left:50%;margin-top:0;transform:translate(-50%,-100%);padding:0;background-color:#000;color:#fff;font-weight:400;font-size:14px;letter-spacing:.5px;line-height:1.5;position:absolute;z-index:99999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #535a61;visibility:hidden;opacity:0;transition:opacity .23s;padding:5px 10px 6px;border-radius:8px;text-align:center;font-style:normal}.mec-fes-list .mec-fes-event-export:hover .wn-p-t-right,.mec-fes-list .mec-fes-event-remove:hover .wn-p-t-right,.mec-fes-list .mec-fes-event-view:hover .wn-p-t-right{visibility:visible;opacity:1}.mec-fes-list .wn-p-t-right i{position:absolute!important;top:100%;right:50%;margin-top:-6px!important;margin-right:-6px!important;width:12px;height:24px;overflow:hidden;transform:rotate(-90deg)}.mec-fes-list .wn-p-t-right i:after{content:'';position:absolute;width:12px;height:12px;left:0;top:50%;transform:translate(50%,-50%) rotate(-45deg);background-color:#000;box-shadow:0 8px 9px -4px #535a61}.mec-fes-form .select2-container{min-height:38px;box-sizing:border-box;margin-bottom:8px;padding:0 6px;border-radius:2px;border:1px solid #ddd;box-shadow:inset 0 1px 6px rgba(0,0,0,.07);background-color:#fff;color:#32373c;outline:0;transition:50ms border-color ease-in-out;min-width:200px;font-size:14px}.mec-fes-form .select2-selection{border:none;background:0 0;padding-top:2px;width:100%;height:100%}.mec-fes-form .select2-container--default.select2-container--focus .select2-selection{border:none!important;outline:0}.mec-fes-form .select2-container--default .select2-selection--single .select2-selection__arrow{top:5px;right:4px}.select2-results{font-size:14px}.mec-fes-category-children,.mec-fes-category-children .mec-fes-category-children{padding-left:24px}
1
+ .lity-container,.mec-wrap,.mec-wrap div:not([class^=elementor-]){font-family:Montserrat,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif}.entry-content .mec-wrap h1,.entry-content .mec-wrap h2,.entry-content .mec-wrap h3,.entry-content .mec-wrap h4,.entry-content .mec-wrap h5,.entry-content .mec-wrap h6,.mec-wrap h1,.mec-wrap h2,.mec-wrap h3,.mec-wrap h4,.mec-wrap h5,.mec-wrap h6{font-family:Montserrat,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;color:#171c24;font-weight:300;font-style:inherit;letter-spacing:normal;clear:none}.mec-wrap h1{font-size:50px;line-height:1.16;margin-bottom:12px;letter-spacing:-1px}.mec-wrap h2{font-size:36px;line-height:1.14;margin-bottom:10px}.mec-wrap h3{font-size:28px;line-height:1.2;margin-bottom:8px}.mec-wrap h4{font-size:24px;line-height:1.2;margin-bottom:10px}.mec-wrap h5{font-size:18px;line-height:1.3;margin-bottom:7px}.mec-wrap h6{font-size:16px;line-height:1.3;margin-bottom:4px}.mec-wrap .subheader{color:#849098}.mec-wrap h1 strong{font-weight:700}.mec-wrap p{margin:0 0 20px 0;color:#616161;font-size:14px;line-height:1.8}.mec-wrap .mec-event-article .mec-color-hover{box-shadow:none;border:none}.mec-wrap abbr,.mec-wrap acronym{cursor:auto;border:none}.entry-content .mec-wrap a{box-shadow:none}.mec-wrap .button,.mec-wrap a.button:not(.owl-dot),.mec-wrap button:not(.owl-dot),.mec-wrap input[type=button],.mec-wrap input[type=reset],.mec-wrap input[type=submit]{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease}.mec-wrap .button:hover,.mec-wrap a.button:hover,.mec-wrap button:hover,.mec-wrap input[type=button]:hover,.mec-wrap input[type=reset]:hover,.mec-wrap input[type=submit]:hover{background:#222;color:#fff}.mec-booking-form-container button{display:block!important}.vertical-space,.vertical-space1,.vertical-space2,.vertical-space3,.vertical-space4,.vertical-space5{display:block;width:100%;margin:0;clear:both;border:0 none;height:20px}.vertical-space2{height:40px}.vertical-space3{height:60px}.vertical-space4{height:80px}.vertical-space5{height:100px}@media only screen and (max-width:479px){.vertical-space,.vertical-space1{height:8px}.vertical-space2{height:14px}.vertical-space3{height:28px}.vertical-space4{height:40px}.vertical-space5{height:60px}}@media only screen and (max-width:960px){.vertical-space,.vertical-space1{height:12px}.vertical-space2{height:18px}.vertical-space3{height:36px}.vertical-space4{height:50px}.vertical-space5{height:80px}}.mec-wrap abbr{cursor:auto;border-bottom:0}@-webkit-keyframes rotating{from{-ms-transform:rotate(0);-moz-transform:rotate(0);-webkit-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}to{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes rotating{from{-ms-transform:rotate(0);-moz-transform:rotate(0);-webkit-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}to{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}.mec-wrap{font:14px/25px sans-serif;font-family:Montserrat,Helvetica,Arial,sans-serif;font-weight:400;color:#626262}.mec-wrap .mec-events a{border-bottom:none}.mec-wrap .mec-container a{box-shadow:none}.mec-event-content p{font-family:Roboto,sans-serif;font-weight:300}.mec-wrap .mec-clear:after,.mec-wrap .mec-clear:before{content:" ";display:table}.mec-wrap .mec-clear:after{clear:both}.mec-events-button{background:#fff;padding:12px 34px;font-size:13px;font-weight:400;letter-spacing:0;border:1px solid #e3e3e3;margin-right:10px;transition:.3s}.mec-wrap .mec-events-button:hover{color:#fff}.mec-no-event{display:none}#mec-active-current{display:block!important}.current-hide #mec-active-current{display:none!important}.mec-event-grid-classic .mec-event-article{position:relative;border:2px solid #e3e3e3;box-shadow:0 2px 0 0 rgba(0,0,0,.016);margin-bottom:30px;max-width:none}.mec-event-grid-classic .mec-event-content{background:#fff;color:#767676;padding:0 20px 5px;text-align:center;min-height:125px}.mec-event-grid-classic .mec-event-title{color:#202020;margin:10px 0;font-weight:700;font-size:20px;letter-spacing:1px;text-transform:uppercase}.mec-event-grid-classic .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-classic .mec-event-date{font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:1px;color:#fff;padding:3px 20px;margin:0 -20px 20px -20px;text-align:center}.mec-event-grid-classic .mec-event-content p{font-size:15px;color:#8a8a8a}.mec-event-grid-classic .mec-event-detail{display:none}.mec-event-grid-classic img{margin-bottom:0;width:100%}.mec-event-footer{position:relative;border-top:1px solid #efefef;padding:20px;min-height:80px;margin:0;background:#fafafa}.mec-event-sharing-wrap{left:15px;position:absolute;list-style:none;margin:0}.mec-event-sharing-wrap .mec-event-sharing{position:absolute;padding:8px 0 2px;left:-6px;bottom:54px;margin:0;margin-top:6px;border-radius:5px;width:50px;visibility:hidden;opacity:0;border:1px solid #e2e2e2;background:#fff;box-shadow:0 0 9px 0 rgba(0,0,0,.06);z-index:99;-webkit-transition:all .18s ease;transition:all .18s ease}.mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-sharing-wrap .mec-event-sharing:before{content:'';display:block;position:absolute;bottom:-10px;left:50%;margin-left:-10px;width:0;height:0;border-style:solid;border-width:10px}.mec-event-sharing-wrap .mec-event-sharing:before{bottom:-21px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-sharing-wrap .mec-event-sharing:after{bottom:-19px;border-color:#fff transparent transparent transparent}.mec-event-sharing-wrap:hover .mec-event-sharing{opacity:1;visibility:visible}.mec-event-sharing-wrap li{text-align:center;border:0;display:block;margin-right:2px;overflow:hidden;margin:0 auto 6px;width:38px}.mec-event-sharing-wrap:hover>li{cursor:pointer;background-color:#40d9f1}.mec-event-sharing-wrap:hover li a{color:#fff}.mec-event-sharing-wrap>li:first-of-type{border:1px solid #d9d9d9}.mec-event-sharing-wrap li a,.mec-event-sharing-wrap:hover li ul li a{border:none;color:#767676}.mec-event-sharing-wrap li i{width:36px;height:36px;display:table-cell;vertical-align:middle}.mec-event-sharing-wrap .mec-event-sharing li a{display:block}.mec-event-sharing-wrap .mec-event-sharing li:hover a{color:#40d9f1}.mec-event-sharing .mec-event-share:hover .event-sharing-icon{background:#40d9f1;border-width:0 1px 0;cursor:pointer}.mec-event-sharing .mec-event-map{border-width:1px 0 1px}.mec-event-footer .mec-booking-button{box-shadow:none;transition:all .21s ease;font-size:11px;font-weight:500;letter-spacing:1px;text-transform:uppercase;background:#fff;color:#767676;border:1px solid #e8e8e8;position:absolute;top:20px;right:15px;padding:0 16px;line-height:37px;height:38px}.mec-event-footer .mec-booking-button:hover{background:#191919;color:#fff;border-color:#191919}@media only screen and (max-width:960px){.mec-event-grid-classic{margin-bottom:30px}}.mec-widget .mec-event-grid-classic.mec-owl-carousel{padding:36px 0 16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav{margin:5px 0;width:100%;position:absolute;top:15px;padding:0}.mec-skin-grid-container.mec-widget{padding-top:18px}.mec-widget .mec-event-grid-classic.mec-owl-carousel{padding:20px 0 16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav{margin:0;width:100%;position:absolute;top:0;padding:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav div{position:absolute;background:#fff;line-height:0;width:34px;height:26px;padding:6px;text-align:center;margin-top:-17px;border-radius:3px;border:1px solid #e2e2e2;text-align:center;box-shadow:0 2px 0 0 rgba(0,0,0,.028);transition:all .33s ease}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav .owl-next{right:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav .owl-prev{left:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-sharing{display:none}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-footer{text-align:center}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-footer .mec-booking-button{position:static;padding:11px 16px}.widget .mec-event-footer ul.mec-event-sharing-wrap li a.mec-event-share-icon{padding:0}@media screen and (min-width:56.875em){.mec-widget .mec-month-container dl{margin-bottom:0}}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-footer{text-align:right}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-sharing-wrap{left:5px;padding-left:5px}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-sharing-wrap .mec-event-sharing{left:0}.mec-widget .mec-event-sharing-wrap .mec-event-sharing{position:absolute;top:auto;bottom:52px;margin:0;margin-top:0;border-radius:5px}.mec-widget .mec-event-sharing-wrap .mec-event-sharing:after{top:auto;bottom:-17px;border-color:#fff transparent transparent transparent}.mec-widget .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-18px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-grid-clean{margin-bottom:10px;max-width:none}.mec-event-grid-clean .mec-event-article{margin-bottom:30px;position:relative;border:1px solid #e2e2e2;text-align:center;padding:15px 15px 0;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-clean .mec-event-content{background:#fff;color:#767676;padding:25px 16px 0;text-align:left}.mec-event-grid-clean .mec-event-title{color:#202020;margin:0 0 10px 0;font-weight:700;font-size:21px;text-transform:capitalize}.mec-event-grid-clean .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-clean .mec-event-date{font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:1px;background-color:#40d9f1;color:#fff;padding:3px 0;margin:0;text-align:center}.mec-event-grid-clean .mec-event-content p{font-size:15px;color:#9a9a9a;line-height:1.54}.mec-event-grid-clean img{margin-bottom:0;width:100%}.mec-event-grid-clean .event-grid-t2-head{margin-bottom:10px;color:#fff;padding:9px 14px 6px;text-align:left}.mec-event-grid-clean .event-grid-t2-head .mec-event-date{font-size:50px;line-height:50px;float:left;margin-right:11px}.mec-event-grid-clean .event-grid-t2-head .mec-event-month{text-transform:uppercase;font-size:17px;line-height:20px;padding-top:4px}.mec-event-grid-clean .event-grid-t2-head .mec-event-detail{font-size:12px}.mec-event-grid-clean .mec-event-sharing-wrap{left:0}.mec-event-grid-clean .mec-event-footer{position:relative;border-top:2px solid;padding:20px 0;margin:0 14px;text-align:left;background:0 0}.mec-event-grid-clean .mec-event-footer .mec-booking-button{right:0}.mec-event-grid-clean .row{margin-bottom:30px}.mec-event-grid-modern{margin-bottom:10px;max-width:none}.mec-event-grid-modern .mec-event-article{position:relative;border:1px solid #e2e2e2;text-align:center;margin-bottom:30px;padding:45px 15px 10px;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-modern .mec-event-content{background:#fff;color:#767676;padding:35px 15px 10px;text-align:left}.mec-event-grid-modern .mec-event-title{color:#202020;margin:0 0 10px 0;font-weight:700;font-size:24px;text-transform:none;letter-spacing:-1px}.mec-event-grid-modern .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-modern .mec-event-content p{font-size:15px;color:#9a9a9a;line-height:1.54}.mec-event-grid-modern img{margin-bottom:0;width:100%}.mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:9px 14px 6px;text-align:left}.mec-event-grid-modern .event-grid-modern-head .mec-event-date{font-size:50px;line-height:50px;float:left;margin-right:11px}.mec-event-grid-modern .event-grid-modern-head .mec-event-month{text-transform:uppercase;font-size:17px;line-height:20px;padding-top:4px}.mec-event-grid-modern .event-grid-modern-head .mec-event-detail{font-size:12px}.mec-event-grid-modern .event-grid-modern-head .mec-event-day{margin-top:9px;color:silver;font-family:Roboto,sans-serif;font-size:35px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.mec-event-grid-modern .mec-event-footer{position:relative;height:90px;padding:20px 0;border:none;margin:0 14px;text-align:left;background:0 0}.mec-event-grid-modern .mec-event-footer .mec-booking-button{right:auto;left:0}.mec-event-grid-modern .mec-event-sharing-wrap{left:auto;right:0}.mec-event-grid-modern .mec-event-sharing{left:auto;right:-6px}.mec-event-grid-modern .mec-event-sharing-wrap li{border-radius:55px}.mec-event-grid-modern .row{margin-bottom:0}@media only screen and (max-width:479px){.mec-event-grid-modern .mec-event-article{padding-bottom:30px}.mec-event-grid-modern .mec-event-sharing{top:60px;left:0;right:auto}.mec-event-grid-modern .mec-event-footer .mec-booking-button{top:0}}.mec-event-title-soldout .soldout{background:#de3120;padding:4px 5px;color:#fff}.mec-event-title-soldout .soldout{background:#de3120;position:relative;top:-2px;border-radius:10px 0 0 20px;padding:2px 4px 2px 10px;color:#fff}.mec-event-title-soldout .soldout:before{content:' ';position:absolute;width:0;height:0;border-top:10px solid #de3120;border-bottom:10px solid #de3120;right:-10px;border-right:10px solid transparent;border-left:10px solid transparent;top:0}.mec-event-title-soldout .soldout:after{content:' ';position:absolute;width:6px;height:6px;background:#de3120;border-radius:50%;left:3px;top:4px;border:2px dashed #fff}.mec-event-grid-colorful .mec-event-article{min-height:400px;border:none;box-shadow:none;background:#40d9f1;padding-top:25px;margin:0;color:#fff}.mec-event-grid-colorful .mec-event-content{background:0 0}.mec-event-grid-colorful .event-grid-modern-head,.mec-event-grid-colorful .event-grid-modern-head .mec-event-date,.mec-event-grid-colorful .event-grid-modern-head .mec-event-day,.mec-event-grid-colorful .mec-event-content p,.mec-event-grid-colorful .mec-event-sharing-wrap>li>a,.mec-event-grid-colorful .mec-event-title a{color:#fff}.mec-event-grid-colorful .mec-event-footer .mec-booking-button{border:none}.mec-event-grid-colorful .mec-event-sharing-wrap>li{border-color:#fff}.mec-event-grid-colorful .mec-event-sharing-wrap:hover>li{background:#333;border-color:#333}.mec-event-grid-colorful .mec-event-title a.mec-color-hover:hover{color:#fff;text-decoration:underline}.mec-event-grid-colorful .mec-event-title .event-color{display:none}.mec-event-grid-colorful div[class^=col-md-]{padding:0 1px 1px 0;margin:0}@media only screen and (min-width:768px){.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-day{font-size:26px}.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-month{font-size:15px}.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-date{font-size:50px}.mec-wrap.mec-sm959.mec-event-grid-colorful .mec-event-title{font-size:21px}.mec-wrap.mec-sm959.mec-event-grid-colorful .mec-event-content p{font-size:13px}}@media only screen and (min-width:768px) and (max-width:1200px){.mec-wrap.mec-sm959.mec-event-grid-colorful div[class^=col-md-]{width:50%}}.mec-event-list-minimal .mec-event-article{border-bottom:1px solid #efefef;padding:24px 0 16px}.mec-event-list-minimal .mec-wrap .col-md-9{padding:0}.mec-event-list-minimal .mec-event-date{position:relative;float:left;margin-right:30px;color:#fff;width:52px;padding:6px 4px 3px;text-align:center;text-transform:uppercase;border-radius:3px}.mec-event-list-minimal .mec-event-date span{display:block;font-size:24px;font-weight:700;text-align:center;margin-bottom:4px}.mec-event-list-minimal .mec-event-date:after{display:block;content:"";position:absolute;width:50px;left:1px;top:1px;height:30px;background:rgba(255,255,255,.1);box-shadow:0 4px 4px rgba(0,0,0,.02)}.mec-event-list-minimal .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;font-size:18px;text-transform:uppercase;letter-spacing:0;padding-top:5px}.mec-event-list-minimal .mec-event-detail{font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;font-family:Roboto,sans-serif}.mec-event-list-minimal .btn-wrapper{text-align:right;padding-right:0;padding-top:6px}.mec-event-list-minimal .btn-wrapper .mec-detail-button{border-bottom:0;margin-bottom:14px;margin-right:0;box-shadow:none}.mec-event-list-minimal a.mec-detail-button{text-align:center;display:inline-block;background:#ededed;color:#191919;padding:12px;border-radius:2px;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:2px;transition:all .24s ease}.mec-event-list-minimal a.mec-detail-button:hover{background:#292929;color:#fff}.vc_col-sm-4 .mec-event-list-minimal .mec-event-date,.vc_col-sm-6 .mec-event-list-minimal .mec-event-date{margin-right:12px}.vc_col-sm-4 .mec-event-list-minimal .mec-event-title,.vc_col-sm-6 .mec-event-list-minimal .mec-event-title{font-size:15px;letter-spacing:2px}@media only screen and (min-width:480px) and (max-width:767px){.mec-event-list-minimal .btn-wrapper{padding-left:0}.mec-event-list-minimal .mec-event-date{margin-right:10px}}@media only screen and (max-width:767px){.mec-event-list-minimal .btn-wrapper .mec-detail-button{display:block;text-align:center;margin:0;margin-top:16px;padding:8px}.mec-event-list-minimal .btn-wrapper{margin:12px 0}}@media only screen and (max-width:479px){.mec-event-list-minimal .mec-event-date{float:none;width:100%;margin-bottom:8px}.mec-event-list-minimal .mec-event-date span{display:inline;padding-right:25px;margin-right:7px;font-size:inherit}.mec-event-list-minimal .mec-event-date:after{width:45%;box-shadow:4px 0 4px rgba(0,0,0,.02)}.mec-event-list-minimal .btn-wrapper{text-align:center;padding-left:0}.mec-event-list-minimal{text-align:center}.mec-event-list-minimal .mec-event-detail{margin-bottom:10px}}.mec-wrap .mec-event-list-modern .mec-event-title{margin-top:0;margin-bottom:10px}.mec-event-list-modern .mec-event-article{border-bottom:1px solid #efefef;padding:30px 0 10px}.mec-event-list-modern .mec-event-article:last-child{border-bottom:none}.mec-event-list-modern .mec-event-title a{color:#191919;transition:all .24s ease;box-shadow:none}.mec-event-list-modern .mec-event-date{text-transform:uppercase;padding:10px 0}.mec-event-list-modern .mec-event-date .event-d{font-size:48px;display:table-cell;padding:10px 0 0}.mec-event-list-modern .mec-event-date .event-f{font-size:13px;display:table-cell;vertical-align:middle;padding-left:7px;font-weight:500;letter-spacing:3px;color:#777}.mec-event-list-modern .mec-event-detail{font-weight:300;color:#8a8a8a}.mec-event-list-modern .mec-event-date .event-da{margin-top:9px;color:silver;font-family:Roboto,sans-serif;font-size:28px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.mec-event-list-modern .mec-btn-wrapper .mec-booking-button{border-radius:1px;letter-spacing:2px;border:1px solid #e6e6e6;color:#333;background-color:#fff;padding:13px 20px;font-weight:700;font-size:11px;box-shadow:0 2px 0 0 rgba(0,0,0,.016);transition:all .28s ease}.mec-event-list-modern .mec-btn-wrapper .mec-booking-button:hover{border-color:#222;background:#222;color:#fff}.mec-event-list-modern .mec-event-title{font-weight:700;font-size:20px;text-transform:uppercase;letter-spacing:1px}.mec-event-list-modern .mec-event-detail{color:#9a9a9a;font-size:15px;font-weight:300;line-height:25px;font-family:Roboto,sans-serif}.mec-event-list-modern .mec-btn-wrapper{text-align:right;padding:10px 0;text-transform:uppercase}.mec-event-list-modern .mec-event-sharing{position:relative;margin:10px 0}.mec-event-list-modern .mec-event-sharing>li{display:inline-block;border:none;border-radius:50%;margin-right:3px}.mec-event-list-modern .mec-event-sharing>li:hover{display:inline-block}.mec-event-list-modern .mec-event-sharing>li:hover a i{color:#fff;background:#40d9f1;border-color:#40d9f1}.mec-event-list-modern .mec-event-sharing>li i{width:36px;display:inline-block;line-height:35px;color:#767676;text-align:center;border-radius:50%;border:1px solid #ddd;font-size:14px}.mec-event-list-modern .mec-event-sharing .mec-event-share:hover .mec-event-sharing-icon{background:#40d9f1;border-color:#40d9f1;cursor:pointer;border-radius:50%}.mec-event-list-modern .mec-event-sharing li:hover a i{background:#40d9f1}@media only screen and (min-width:768px){.mec-event-list-modern .mec-event-article{position:relative;min-height:160px;overflow:hidden}.mec-event-list-modern .col-md-2.col-sm-2{width:210px;position:absolute;left:0;top:20px}.mec-event-list-modern .col-md-4.col-sm-4.mec-btn-wrapper{width:180px;padding:0;position:absolute;right:0;top:30%}.mec-event-list-modern .col-md-6.col-sm-6{width:100%;padding-left:225px;padding-right:195px}}@media only screen and (max-width:767px){.mec-event-list-modern .mec-btn-wrapper .mec-booking-button{letter-spacing:1px;border:1px solid #e1e1e1;padding:8px 16px}.mec-event-list-modern .mec-btn-wrapper{padding:0 0 12px}.mec-event-list-modern .mec-event-sharing{margin-bottom:0}}.mec-event-grid-minimal .mec-event-article{margin:15px 0;min-height:80px;display:table}.mec-event-grid-minimal .event-detail-wrap{display:table-cell;vertical-align:middle}.mec-event-grid-minimal .mec-event-date{width:70px;float:left;margin-right:20px;padding:12px 16px 10px;text-align:center;text-transform:uppercase;border-radius:4px;border:1px solid #e6e6e6;transition:all .37s ease-in-out;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-minimal .mec-event-date span{display:block;font-size:24px;font-weight:700;text-align:center;margin-bottom:4px;color:#2a2a2a;transition:color .3s ease}.mec-event-grid-minimal .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;line-height:21px;font-size:16px;text-transform:uppercase;transition:color .3s ease}.mec-event-grid-minimal .mec-event-title a{color:#191919;transition:color .3s ease}.mec-event-grid-minimal .mec-event-detail{font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;font-family:Roboto,sans-serif}.mec-event-grid-minimal .mec-event-date:hover{color:#fff}.mec-event-grid-minimal .mec-event-date:hover span{color:#fff}.mec-event-list-classic .mec-event-article{padding:12px 0;margin-bottom:20px}.mec-event-list-classic .mec-event-image{float:left;width:86px;margin-right:20px}.mec-event-list-classic .mec-event-date{font-weight:400;font-size:13px;letter-spacing:0;line-height:18px}.mec-event-list-classic .mec-event-date span{font-weight:500;margin-bottom:6px}.mec-event-list-classic .mec-event-title{font-size:15px;margin:10px 0 12px;font-weight:700;text-transform:uppercase}.mec-event-list-classic .mec-event-title a{color:#494949;transition:color .3s ease}.mec-event-list-classic .mec-event-detail{color:#777;font-weight:400;line-height:12px;font-size:12px;overflow:hidden}.mec-event-list-classic a.magicmore{padding:10px 16px;color:#fff;background:#222;letter-spacing:2px;font-size:11px}.mec-event-list-classic a.magicmore:after{content:"";display:none}.mec-event-list-classic a.magicmore:hover{color:#40d9f1}.mec-event-grid-simple .mec-event-article{position:relative;margin-bottom:30px}.mec-event-grid-simple .mec-event-article:after{border-right:1px solid #e6e6e6;height:60px;position:absolute;top:50%;margin-top:-30px;right:-1px}.mec-event-grid-simple .row div:last-child .mec-event-article:after{border:none}.mec-event-grid-simple .row{margin:15px 0 30px;text-align:center}.mec-event-grid-simple .mec-event-date{padding:0;margin:0;text-transform:capitalize;font-size:12px;font-weight:700}.mec-event-grid-simple .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;line-height:21px;font-size:15px;padding-top:5px;text-transform:uppercase;transition:color .37s ease}.mec-event-grid-simple .mec-event-title a{color:#494949;transition:color .3s ease}.mec-event-grid-simple .mec-event-detail{font-family:Roboto,sans-serif;font-weight:400;line-height:1;letter-spacing:0;font-size:13px;color:#777}.mec-event-grid-simple:hover .mec-event-title{color:#40d9f1}.mec-event-grid-simple:hover .mec-event-date{background:0 0}.event-last:after{display:none}@media only screen and (max-width:767px){.mec-event-grid-simple .mec-event-article{padding-bottom:20px;margin-bottom:20px;border-bottom:1px solid #eee}.mec-event-grid-simple .mec-event-article:after{border:none}}.mec-event-grid-novel .mec-event-article{position:relative;margin-bottom:30px;padding:60px 5% 60px 7%;border:1px solid rgba(255,255,255,.12);border-radius:10px;background-color:#0050fd;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease;z-index:1}.mec-event-grid-novel .mec-event-article .novel-grad-bg{position:absolute;top:0;left:0;width:100%;height:100%;border-radius:10px;opacity:0;z-index:-1;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease}.mec-event-grid-novel .mec-event-article:hover{-webkit-box-shadow:0 13px 36px 0 rgba(0,0,0,.23);box-shadow:0 13px 36px 0 rgba(0,0,0,.23);border-color:transparent}.mec-event-grid-novel .mec-event-article:hover .novel-grad-bg{background-image:-webkit-gradient(linear,left top,right top,from(#262e32),to(#0e1015));background-image:-webkit-linear-gradient(left,#262e32 0,#0e1015 100%);background-image:-o-linear-gradient(left,#262e32 0,#0e1015 100%);background-image:linear-gradient(90deg,#262e32 0,#0e1015 100%);opacity:1}.mec-event-grid-novel .mec-event-image{float:left;width:150px;height:150px}.mec-event-grid-novel .mec-event-image img{width:150px;height:150px;border-radius:50%}.mec-event-grid-novel .mec-event-detail-wrap{margin-left:200px}.mec-event-grid-novel .mec-event-content h4{position:relative;margin-bottom:10px;display:inline-block}.mec-event-grid-novel .mec-event-content h4 a{font-size:24px;line-height:35px;color:#fafcff}.mec-event-grid-novel .mec-event-content h4::before{content:'';position:absolute;top:8px;left:-30px;width:17px;height:17px;background:#5cd0ed;opacity:.4;border-radius:50%}.mec-event-grid-novel .mec-event-content h4::after{content:'';position:absolute;top:12px;left:-26px;width:9px;height:9px;background:#5cd0ed;border-radius:50%}.mec-event-grid-novel .mec-event-address,.mec-event-grid-novel .mec-event-detail,.mec-event-grid-novel .mec-event-month{position:relative;padding-left:35px;font-size:15px;line-height:30px;color:rgba(255,255,255,.4)}.mec-event-grid-novel .mec-event-address::before,.mec-event-grid-novel .mec-event-detail::before,.mec-event-grid-novel .mec-event-month::before{position:absolute;top:6px;left:6px;font-size:17px;font-family:simple-line-icons;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1}.mec-event-grid-novel .mec-event-month::before{content:"\e075"}.mec-event-grid-novel .mec-event-detail::before{content:"\e081"}.mec-event-grid-novel .mec-event-address::before{content:"\e096"}.mec-event-grid-novel .mec-event-footer{clear:both;padding:20px 0;border-top:none;background:0 0}.mec-event-grid-novel .mec-event-footer .mec-booking-button{right:auto;left:0;height:42px;width:148px;padding:0 20px;font-size:14px;font-weight:400;line-height:42px;text-align:center;color:#fff;background:0 0;border-color:rgba(255,255,255,.1);border-radius:50px}.mec-event-grid-novel .mec-event-footer .mec-booking-button:hover{background-color:rgba(255,255,255,.1)}.mec-event-grid-novel .mec-event-sharing-wrap{left:175px;cursor:pointer}.mec-event-grid-novel .mec-event-sharing-wrap>li{border-color:rgba(255,255,255,.1);border-radius:50%}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing{top:-5px;left:0;padding:5px 10px 2px 50px;min-width:150px;width:inherit;height:37px;background-color:rgba(255,255,255,.1);-webkit-box-shadow:none;box-shadow:none;border:none;border-radius:50px}.mec-event-grid-novel .mec-event-sharing-wrap:hover>li{background-color:rgba(255,255,255,.1)}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing::after,.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing::before{display:none}.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon,.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon a,.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li i{display:inline}.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon a{padding:0 10px}.mec-event-grid-novel .mec-event-sharing-wrap>li a{color:#fff}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li a{color:rgba(255,255,255,.4)}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li a:hover{color:rgba(255,255,255,1)}@media only screen and (max-width:1200px){.mec-event-grid-novel .row .col-md-6.col-sm-6{width:100%;float:none}.mec-event-grid-novel .mec-event-image{float:none;margin-top:-20px;margin-bottom:20px}.mec-event-grid-novel .mec-event-detail-wrap{margin-left:20px}.mec-event-grid-novel .mec-event-footer{margin-top:30px}}@media only screen and (max-width:767px){.mec-event-grid-novel .mec-event-footer{margin-top:0;padding-top:30px;margin-bottom:24px}.mec-event-grid-novel .mec-event-footer .mec-booking-button{display:block;position:relative}.mec-event-grid-novel .mec-event-sharing-wrap{left:0;bottom:-55px}.mec-event-grid-novel .mec-event-content h4 a{font-size:20px;line-height:1.3}}.mec-event-cover-modern{position:relative}.mec-event-cover-modern .mec-event-cover-a{background:0 0;position:absolute;color:#fff;bottom:0;left:0;text-decoration:none}.mec-event-cover-modern .mec-event-cover-a .mec-event-overlay{transition:all .5s;opacity:.8;width:100%;height:100%;position:absolute}.mec-event-cover-modern .mec-event-cover-a:hover .mec-event-overlay{opacity:1}.mec-event-cover-modern .mec-event-detail{padding:40px;position:relative}.mec-event-cover-modern .mec-event-cover-a:hover .mec-event-tag{color:#333;transition:all .5s}.mec-event-cover-modern .mec-event-cover-a .mec-event-title:hover{text-decoration:underline}.mec-event-cover-modern .mec-event-tag{background:#fff;display:inline-block;padding:5px 9px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:24px}.mec-event-cover-modern .mec-event-date{text-transform:uppercase;font-size:17px;font-weight:300}.mec-event-cover-modern .mec-event-title{color:#fff;text-transform:uppercase;font-size:40px;font-weight:700;margin:6px 0}.mec-event-cover-modern .mec-event-place{font-weight:400;font-size:18px;font-family:Roboto,sans-serif}@media only screen and (max-width:767px){.mec-event-cover-modern .mec-event-cover-a{width:100%}}.mec-event-cover-classic{position:relative;overflow:hidden;background:#fff;padding:6px;border:1px solid #e8e8e8}.mec-event-cover-classic .mec-event-overlay{position:absolute;left:6px;right:6px;bottom:6px;top:6px;width:auto;height:auto;background-color:rgba(36,36,36,.4);transition:all .33s ease-in-out}.mec-event-cover-classic:hover .mec-event-overlay{background-color:rgba(36,36,36,.6)}.mec-event-cover-classic .mec-event-content{font-size:15px;color:#fff;position:absolute;bottom:0;padding:50px 35px;transition:all .33s ease-in-out}.mec-event-cover-classic .mec-event-date{font-size:14px;text-transform:uppercase;font-weight:400;line-height:1.6}.mec-event-cover-classic .mec-event-date span{display:block;font-weight:700;font-size:16px}.mec-event-cover-classic .mec-event-title{color:#fff;margin:20px 0 38px;font-size:24px;font-weight:700;text-transform:uppercase;font-style:normal}.mec-event-cover-classic .mec-btn-wrapper{text-align:left}.mec-event-cover-classic .mec-event-icon{font-size:18px;float:left;margin-right:14px;color:#fff;padding:13px}.mec-event-cover-classic .mec-event-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:12px 20px;letter-spacing:3px;font-size:12px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none}.mec-event-cover-classic .mec-event-button:hover{color:#191919;background-color:#fff;border-color:#fff;border-radius:1px}.mec-event-cover-classic .mec-event-image img{min-width:100%}@media only screen and (max-width:960px){.mec-event-cover-classic .mec-event-content{padding:20px}.mec-event-cover-classic .mec-event-button{font-size:11px;padding:7px 10px;letter-spacing:1px}.mec-event-cover-classic .mec-event-title{font-size:19px;margin:15px 0 25px}.mec-event-cover-classic .mec-event-date{font-size:12px}}@media only screen and (max-width:767px){.mec-event-cover-classic{margin-bottom:30px}}@media only screen and (max-width:479px){.mec-event-cover-classic .mec-event-content{padding:15px;font-size:15px}.mec-event-cover-classic .mec-event-title{font-size:15px;margin:10px 0}.mec-event-cover-classic .mec-event-button{font-size:10px;padding:6px;letter-spacing:1px}.mec-event-cover-classic .mec-event-icon{padding:10px}}.mec-load-more-wrap{text-align:center;display:block;width:100%;padding-top:20px;text-align:center;position:relative}.mec-load-more-button{box-shadow:none;transition:all .21s ease;font-size:12px;font-weight:500;letter-spacing:1px;text-transform:uppercase;background:#fff;color:#767676;border:2px solid #e8e8e8;border-radius:50px;padding:0 28px;margin-bottom:20px;cursor:pointer;line-height:40px;font-family:Montserrat,Helvetica,Arial,sans-serif;height:42px;display:inline-block}.mec-load-more-button:hover{background:#191919;color:#fff;border-color:#191919}.mec-load-more-loading{content:url(../img/ajax-loader.gif);cursor:wait;background:0 0;border-style:none}.mec-load-more-loading:hover{background:0 0}.mec-modal-preloader,.mec-month-navigator-loading{width:100%;height:100%;background:no-repeat rgba(255,255,255,.88) url(../img/ajax-loader.gif) center;border-style:none;position:fixed;left:0;right:0;bottom:0;top:0;z-index:9}.mec-event-calendar-classic .mec-calendar-side .mec-calendar-table{min-height:1024px}.mec-calendar-side .mec-calendar-table{min-height:450px}.mec-skin-weekly-view-events-container.mec-month-navigator-loading{margin-top:0}.mec-calendar.mec-event-calendar-classic .mec-calendar-side{display:block}.mec-skin-daily-view-events-container.mec-month-navigator-loading{margin-top:0}@media only screen and (min-width:961px){.mec-wrap.mec-sm959 .mec-calendar-side .mec-calendar-table{min-height:1px}}@media only screen and (max-width:479px){.mec-calendar-side .mec-calendar-table{min-height:1px}}.mec-event-cover-clean{position:relative;border:1px solid #e6e6e6;padding:8px}.mec-event-cover-clean .mec-event-overlay{height:100%;background-color:rgba(36,36,36,.4);position:absolute;width:100%;left:0;border:8px solid #fff;top:0;transition:all .5s ease-in-out}.mec-event-cover-clean .mec-event-content{color:#fff;position:absolute;bottom:20px;padding:40px 60px;transition:all .5s ease-in-out}.mec-event-cover-clean .mec-event-title{color:#fff;font-weight:700;margin:46px 0 19px;font-size:29px;text-transform:uppercase;text-shadow:0 0 1px rgba(0,0,0,.5)}.mec-event-cover-clean .mec-event-title a{color:#fff;transition:all .5s;text-decoration:none;outline:0;border:none;box-shadow:none}.mec-event-cover-clean .mec-event-title a:hover{text-decoration:underline}.mec-event-cover-clean .mec-event-date{position:absolute;top:-20px;right:60px;color:#fff;width:60px;padding:14px 10px;z-index:1}.mec-event-cover-clean .mec-event-date div{text-align:center;text-transform:uppercase;letter-spacing:1px;line-height:16px}.mec-event-cover-clean .mec-event-date .dday{padding-bottom:15px;border-bottom:1px solid rgba(255,255,255,.5);margin-bottom:13px;font-size:24px}.mec-event-cover-clean .mec-event-date .dmonth{letter-spacing:2px}.mec-event-cover-clean .mec-event-place{font-size:18px;font-family:Roboto,sans-serif}.mec-event-cover-clean .mec-event-image img{width:100%}@media only screen and (max-width:768px){.mec-event-cover-clean .mec-event-content{padding:20px;bottom:5px}.mec-event-cover-clean .mec-event-title{font-size:23px}.mec-event-cover-clean .mec-event-date{right:20px;padding:10px;width:50px}}@media only screen and (max-width:479px){.mec-event-cover-clean .mec-event-content{padding:10px}.mec-event-cover-clean .mec-event-title{font-size:19px;padding-right:25px}.mec-event-cover-clean .mec-event-date{right:-20px;top:-10px}.mec-event-cover-clean .mec-event-detail{font-size:12px}}.mec-month-divider{text-align:center;margin:60px 0 40px 0}.widget .mec-month-divider{margin:10px 0}.mec-month-divider span{text-transform:uppercase;font-size:22px;font-weight:700;padding-bottom:5px;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative}.mec-month-divider span:before{border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-30px;left:50%;width:60px}.widget .mec-month-divider span{font-size:13px}.mec-event-list-standard .mec-events-pagination{margin-top:60px;border-top:4px solid #ebebeb;min-height:80px;padding-top:20px}.mec-event-list-standard .mec-events-pagination .mec-events-pag-previous{float:left;margin-left:0}.mec-event-list-standard .mec-events-pagination .mec-events-pag-next{float:right;margin-right:0}.mec-event-list-standard .mec-event-article{position:relative;display:block;margin-bottom:25px;border:1px solid #e9e9e9;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-list-standard .mec-topsec{display:table;width:100%}.mec-event-list-standard .col-md-3.mec-event-image-wrap{padding-left:0}.mec-event-list-standard .mec-event-content{padding-top:15px;padding-right:30px}.mec-event-list-standard .mec-event-title{font-size:29px;font-weight:700;letter-spacing:-1px;margin:0 0 10px}.mec-event-list-standard .mec-event-title a{color:#292929;transition:color .3s ease}.mec-event-list-standard .mec-col-table-c{display:table-cell;height:100%;vertical-align:middle;float:none!important}.mec-event-list-standard .mec-col-table-c.mec-event-meta-wrap{padding-top:15px}.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{vertical-align:top}.mec-topsec .mec-event-image{line-height:1px}.mec-event-list-standard .mec-event-meta-wrap{border-left:1px solid #eee}.mec-event-list-standard .mec-time-details{text-transform:uppercase;font-size:11px;font-weight:300;padding-top:0;text-align:left;padding-left:30px}.mec-event-list-standard .mec-event-meta .mec-event-address{font-style:normal;letter-spacing:0;font-size:13px;color:#8a8a8a}.mec-event-list-standard .mec-event-meta span.mec-event-d,.mec-event-list-standard .mec-event-meta span.mec-event-m{font-size:17px;font-weight:700;padding-right:6px;color:#444;text-transform:uppercase}.mec-event-list-standard .mec-date-details,.mec-event-list-standard .mec-time-details,.mec-event-list-standard .mec-venue-details{position:relative;padding-left:28px;margin-bottom:10px}.mec-event-list-standard .mec-date-details:before,.mec-event-list-standard .mec-time-details:before,.mec-event-list-standard .mec-venue-details:before{content:"\f041";font-family:fontawesome;position:absolute;left:6px;font-size:15px}.mec-event-list-standard .mec-date-details:before{content:"\f073"}.mec-event-list-standard .mec-time-details:before{content:"\f017"}.mec-event-list-minimal .mec-event-title a{color:#292929;transition:color .3s ease}.mec-event-meta-wrap .mec-price-details{margin-bottom:10px}.mec-price-details i{margin-right:5px;vertical-align:text-top}.mec-event-meta-wrap .mec-event-meta .mec-price-details i:before{font-size:15px}@media only screen and (max-width:960px){.mec-event-list-standard .mec-topsec{display:block}.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{display:block;width:40%}.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap{display:block;min-height:230px}.mec-event-list-standard .mec-event-meta-wrap{display:block;border-left:none;border-top:1px solid #eee;width:100%;float:none;padding-top:20px}}@media only screen and (min-width:480px) and (max-width:960px){.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap,.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{display:table-cell}}@media only screen and (max-width:479px){.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap,.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap img{float:none;width:100%;padding:0}.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap{padding:10px 10px 10px 30px}}.mec-wrap .mec-events-cal-links{margin-bottom:0}.mec-single-event #mec-wrap{padding:0;margin-top:35px}.mec-wrap .mec-single-title{margin-top:0;margin-bottom:30px;font-weight:700;font-size:33px}.mec-single-event .mec-event-content{padding:40px 0 30px;margin-bottom:10px}.mec-single-event .mec-events-meta-group-booking,.mec-single-event .mec-frontbox{margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-wrap #main-content{overflow:hidden;padding-top:35px}.mec-single-event .mec-map-get-direction-address-cnt{position:relative}.mec-single-event .mec-map-get-direction-address-cnt input.mec-map-get-direction-address{width:100%;height:46px;padding:13px 10px;margin-bottom:0;background:#fcfcfc;border:1px solid #e0e0e0;border-radius:0;box-shadow:inset 0 2px 5px rgba(0,0,0,.081)}.mec-single-event .mec-map-get-direction-address-cnt input.mec-map-get-direction-address:focus{color:#444;background:#fff;border-color:#b0b0b0;box-shadow:0 0 3px rgba(0,0,0,.2)}.mec-single-event .mec-map-get-direction-btn-cnt input{width:100%}.mec-single-event .mec-map-get-direction-reset{position:absolute;z-index:2;top:5px;right:10px;font-size:11px;cursor:pointer}.mec-events-meta-group-tags{margin-top:20px}.mec-events-meta-group-tags a{display:inline-block;color:#444;font-size:11px;text-transform:uppercase;letter-spacing:1.5px;font-weight:500;padding:3px 7px;border:1px solid #ddd;border-radius:2px;background:#fff;margin:1px 3px}.mec-events-meta-group-tags a:hover{text-decoration:underline;background:#f9f9f9}.mec-local-time-details li{list-style:none}.mec-single-event:not(.mec-single-modern) .mec-local-time-details{background:#f7f7f7;padding:12px 14px 8px;margin-bottom:12px;vertical-align:baseline;position:relative;border:none}.mec-single-event:not(.mec-single-modern) .mec-local-time-details ul{margin:0;padding-left:35px}.mec-single-event:not(.mec-single-modern) .mec-local-time-details h3{border:none;padding-left:15px}.mec-single-event:not(.mec-single-modern) .mec-local-time-details h3:before{display:none}.mec-single-event.mec-single-modern i.mec-sl-speedometer{display:none}.mec-single-event .mec-events-meta-group-booking{padding-bottom:30px}.mec-single-event .mec-events-meta-group-booking ul{list-style:none;margin-left:0;padding-left:0}.mec-single-event .mec-events-meta-group-booking ul li{padding:0;list-style:none;margin-top:40px}.mec-single-event .mec-events-meta-group-booking h4{margin-bottom:20px;font-size:23px;font-weight:700}.mec-single-event .mec-events-meta-group-booking li h4{font-size:19px}.mec-single-event .mec-events-meta-group-booking button,.mec-single-event .mec-events-meta-group-booking input{border-radius:0;margin-bottom:6px}.mec-single-event .mec-events-meta-group-booking button{min-width:170px;margin-top:5px}.mec-single-event .mec-events-meta-group-booking button{margin-left:15px}.mec-single-event .mec-book-form-coupon button{margin-left:0}.mec-single-event .mec-book-form-gateway-checkout button{margin-left:0}.mec-single-event .mec-book-first,.mec-single-event .mec-event-tickets-list{padding-left:15px;padding-right:15px}.mec-single-event label.mec-fill-attendees{margin-left:15px!important}.mec-single-event .mec-events-meta-group-booking .mec-event-ticket-available{display:block;margin-bottom:20px;margin-top:-17px;font-size:11px;color:#8a8a8a}.mec-single-event .mec-events-meta-group-booking .mec-book-price-total{display:inline-block;margin-bottom:10px;font-size:26px;color:#39c36e;font-weight:700;padding:10px 0}.mec-single-event .mec-events-meta-group-booking form{margin:0}.mec-single-event .mec-events-meta-group-booking h5 span,.mec-single-event .mec-events-meta-group-booking label{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:3px 0;display:block;clear:none;padding:5px 1em 3px 0}.mec-single-event .mec-events-meta-group-booking h5 span{display:inline-block}.mec-single-event .mec-events-meta-group-booking h5 span.mec-ticket-variation-name{padding-right:5px;text-transform:capitalize}.mec-single-event .mec-events-meta-group-booking input::-webkit-input-placeholder{color:#aaa}.mec-single-event .mec-events-meta-group-booking input:-moz-placeholder{color:#aaa}.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking input[type=email],.mec-single-event .mec-events-meta-group-booking input[type=number],.mec-single-event .mec-events-meta-group-booking input[type=password],.mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-single-event .mec-events-meta-group-booking input[type=text],.mec-single-event .mec-events-meta-group-booking select,.mec-single-event .mec-events-meta-group-booking textarea{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:330px;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both}.wbmec-mandatory{padding-left:5px;font-size:14px}.mec-single-event .mec-events-meta-group-booking .mec-red-notification input,.mec-single-event .mec-events-meta-group-booking .mec-red-notification select,.mec-single-event .mec-events-meta-group-booking .mec-red-notification textarea{border:1px solid #ff3c3c}.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=checkbox],.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=radio]{outline:1px solid #ff3c3c}@media only screen and (max-width:479px){.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking input[type=email],.mec-single-event .mec-events-meta-group-booking input[type=number],.mec-single-event .mec-events-meta-group-booking input[type=password],.mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-single-event .mec-events-meta-group-booking input[type=text],.mec-single-event .mec-events-meta-group-booking select,.mec-single-event .mec-events-meta-group-booking textarea{width:100%}}.mec-single-event .mec-events-meta-group-booking input[type=email]:focus,.mec-single-event .mec-events-meta-group-booking input[type=number]:focus,.mec-single-event .mec-events-meta-group-booking input[type=password]:focus,.mec-single-event .mec-events-meta-group-booking input[type=tel]:focus,.mec-single-event .mec-events-meta-group-booking input[type=text]:.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking select:focus,.mec-single-event .mec-events-meta-group-booking textarea:focus,focus{border:1px solid #aaa;color:#444;background:#fff;-moz-box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);box-shadow:0 0 3px rgba(0,0,0,.2);outline:0}.mec-single-event .mec-events-meta-group-booking input[type=checkbox],.mec-single-event .mec-events-meta-group-booking input[type=radio]{margin-right:6px;margin-top:5px;min-height:20px;clear:none;margin:0 0 0 2px}.lity-container .mec-events-meta-group-booking input[type=radio]:before,.mec-single-event .mec-events-meta-group-booking input[type=radio]:before{content:"";display:inline-block;background:#fff;border-radius:18px;width:18px;height:18px;margin:-1px 0 0 -3px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32)}.lity-container .mec-events-meta-group-booking input[type=radio]:checked:before,.mec-single-event .mec-events-meta-group-booking input[type=radio]:checked:before{border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff}.lity-container .mec-events-meta-group-booking input[type=radio],.mec-single-event .mec-events-meta-group-booking input[type=radio]{min-height:0;margin:0;margin-right:6px}.mec-single-event .mec-events-meta-group-booking input[type=checkbox]{float:left}.lity-container .mec-events-meta-group-booking .mec_book_first_for_all,.mec-single-event .mec-events-meta-group-booking .mec_book_first_for_all{display:none}.mec-events-meta-group-booking ul.mec-book-price-details{list-style:none;border:1px solid #eee;padding:0;overflow:hidden}.mec-events-meta-group-booking ul.mec-book-price-details li{font-size:15px;color:#a9a9a9;list-style:none;padding:13px 18px;margin:0;float:left;border-right:1px solid #eee}.mec-events-meta-group-booking ul.mec-book-price-details li:last-child{border-right:none}.mec-events-meta-group-booking ul.mec-book-price-details li span.mec-book-price-detail-amount{font-weight:700;font-size:21px;color:#222}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label{height:14px;width:14px;background-color:transparent;border:1px solid #d4d4d4;position:relative;display:inline-block;-moz-transition:border-color ease .2s;-o-transition:border-color ease .2s;-webkit-transition:border-color ease .2s;transition:border-color ease .2s;cursor:pointer;box-shadow:0 2px 16px -2px rgba(0,0,0,.2);vertical-align:middle;margin-right:3px;margin-top:-2px}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label{border-color:#008aff;box-shadow:0 2px 14px -3px #008aff}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:after,.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:before,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:after,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:before{position:absolute;height:0;width:1px;background-color:#008aff;display:inline-block;-moz-transform-origin:left top;-ms-transform-origin:left top;-o-transform-origin:left top;-webkit-transform-origin:left top;transform-origin:left top;content:'';-webkit-transition:opacity ease .5;-moz-transition:opacity ease .5;transition:opacity ease .5}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:before,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:before{top:8px;left:7px;box-shadow:0 0 0 2px #fff;-moz-transform:rotate(-145deg);-ms-transform:rotate(-145deg);-o-transform:rotate(-145deg);-webkit-transform:rotate(-145deg);transform:rotate(-145deg)}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::before,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::before{height:12px;-moz-animation:dothatopcheck .16s ease 0s forwards;-o-animation:dothatopcheck .16s ease 0s forwards;-webkit-animation:dothatopcheck .16s ease 0s forwards;animation:dothatopcheck .16s ease 0s forwards}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:after,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:after{top:6px;left:3px;-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::after,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::after{-moz-animation:dothabottomcheck 80ms ease 0s forwards;-o-animation:dothabottomcheck 80ms ease 0s forwards;-webkit-animation:dothabottomcheck 80ms ease 0s forwards;animation:dothabottomcheck 80ms ease 0s forwards;height:4px}.mec-single-event .mec-events-meta-group-booking button[type=submit]:after,.mec-single-event a.button:after{display:none;font-family:simple-line-icons;content:"\e098";margin-left:4px;-webkit-animation:rotating 1.2s linear infinite;-moz-animation:rotating 1.2s linear infinite;-ms-animation:rotating 1.2s linear infinite;-o-animation:rotating 1.2s linear infinite;animation:rotating 1.2s linear infinite}.mec-single-event .mec-events-meta-group-booking button[type=submit].loading:after,.mec-single-event a.button.loading:after{display:inline-block}.mec-single-event .mec-event-export-module{display:block}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul{display:table;width:100%}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li{display:table-cell}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li:last-child{text-align:right}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a:hover{color:#fff}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul{padding-left:0;margin:15px 5px}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting{padding-left:0;margin:0}.mec-ticket-price{margin-left:10px;font-size:13px;font-weight:300}.mec-book-reg-field-checkbox label,.mec-book-reg-field-radio label{line-height:1.36}.mec-book-reg-field-checkbox input[type=checkbox],.mec-book-reg-field-radio input[type=radio]{float:left;margin-right:5px!important}.mec-ticket-available-spots .mec-event-ticket-description,.mec-ticket-available-spots .mec-event-ticket-price{font-size:11px}.mec-book-ticket-container .mec-reg-mandatory:nth-child(2) label:after,.mec-book-ticket-container .mec-reg-mandatory:nth-child(3) label:after,.mec-book-ticket-container .wbmec-mandatory{content:"";color:red;width:50px;height:50px;font-size:14px;padding-left:5px}@media only screen and (max-width:767px){.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li{width:100%;min-height:40px;margin-bottom:15px;text-align:center;float:none;display:block}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a{width:100%;padding-left:0;padding-right:0;text-align:center;display:block;font-size:12px}}.mec-single-event .mec-events-meta-group{margin-bottom:0}@media only screen and (max-width:767px){.mec-single-event .mec-events-meta-group-booking{margin-bottom:30px}}.mec-single-event .mec-event-meta dt,.mec-single-event .mec-event-meta h3{text-transform:uppercase;font-size:16px;font-weight:700;padding-bottom:5px;display:inline;color:#000;padding-left:10px}.mec-single-event .mec-event-meta h6{text-transform:uppercase;font-size:13px;padding-bottom:5px;display:inline;color:#222;padding-left:0}.mec-single-event .mec-event-meta .mec-events-event-categories a,.mec-single-event .mec-event-meta dd{font-size:14px;color:#8d8d8d}.mec-single-event .mec-event-meta .mec-location dd.author{color:#3c3b3b}.mec-single-event .mec-event-meta dd{margin:0;padding-left:35px}.mec-single-event .mec-event-meta dd.mec-events-event-categories{min-height:35px;line-height:35px}@media only screen and (max-width:480px){.single-mec-events .lity-container{width:100%}.single-mec-events .lity-content .mec-events-meta-group-booking{padding:20px;width:85%;margin:0 auto}}.mec-single-event .mec-event-meta dd.mec-events-event-categories:first-of-type{padding-top:5px}.mec-single-event .mec-event-meta dd.mec-events-event-categories:last-of-type{border-bottom:0}.mec-single-event .mec-event-meta dd a{color:#8d8d8d;transition:all .2s ease}.mec-single-event .mec-event-meta dd a i:before{font-size:16px!important}.mec-single-event .mec-event-meta dd a i{margin-right:8px}.mec-single-event .mec-event-meta dl{margin-bottom:0}.mec-single-event .mec-event-meta .mec-events-event-cost{font-size:18px}.mec-single-event .mec-event-meta .mec-events-address{color:#a9a9a9;margin-bottom:3px}.mec-single-event .mec-event-meta .mec-events-meta-group-venue .author{margin-bottom:0;color:#8d8d8d;font-size:13px}.mec-single-event .mec-events-event-image{margin-bottom:0}.mec-single-event h2.mec-single-event-title{margin-bottom:30px;font-weight:700;font-size:33px}.mec-single-event .mec-booking-button{border-bottom:none;letter-spacing:.5px;line-height:48px;height:76px;transition:all .5s ease;color:#fff;padding:16px;display:block;text-align:center;font-size:16px}.mec-single-event .mec-booking-button:hover{background-color:#101010!important}.mec-single-event .mec-event-tags a{display:inline-block;color:#444;font-size:11px;text-transform:uppercase;letter-spacing:1.5px;font-weight:500;padding:3px 7px;border:1px solid #ddd;border-radius:2px;background:#fff;margin:1px 3px}.mec-single-event .mec-event-tags:before{font-size:24px;color:#303030;margin-right:5px;content:"\f02c";font-family:fontawesome}.mec-single-event .mec-event-tags{padding-top:13px}.mec-single-event .mec-event-sharing{margin:30px 0 10px}.mec-region.mec-events-abbr,.mec-single-event .mec-street-address{font-style:normal;font-size:13px}.mec-events-meta-group.mec-events-meta-group-venue:before,.mec-single-event-date:before,.mec-single-event-time:before{color:#40d9f1}.mec-single-event .mec-event-social{text-align:center}.mec-single-event .mec-event-social h3{text-transform:uppercase;font-size:15px;font-weight:700;padding-bottom:5px;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative}.mec-single-event .mec-social-single:before{padding:13px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:39px}.mec-single-event .mec-event-social .event-sharing{margin-top:30px}.mec-single-event .mec-event-social ul{list-style:none;margin-left:0}.mec-single-event .mec-event-social li.mec-event-social-icon{display:inline-block}.mec-single-event .mec-event-social li.mec-event-social-icon a{display:inline-block;color:#fff;width:40px;height:40px;padding:9px;font-size:16px;margin-right:5px}.mec-single-event .mec-event-social a.facebook{background:#3b5996}.mec-single-event .mec-event-social a.facebook:hover{background:#28385c}.mec-single-event .mec-event-social a.twitter{background:#00acee}.mec-single-event .mec-event-social a.twitter:hover{background:#0087bd}.mec-single-event .mec-event-social a.vimeo{background:#0dadd6}.mec-single-event .mec-event-social a.vimeo:hover{background:#0a85a3}.mec-single-event .mec-event-social a.dribble{background:#d53e68}.mec-single-event .mec-event-social a.dribble:hover{background:#bf4c78}.mec-single-event .mec-event-social a.youtube{background:#cb322c}.mec-single-event .mec-event-social a.youtube:hover{background:#992622}.mec-single-event .mec-event-social a.pinterest{background:#cb2027}.mec-single-event .mec-event-social a.pinterest:hover{background:#99181d}.mec-single-event .mec-event-social a.google{background:#c3391c}.mec-single-event .mec-event-social a.google:hover{background:#99181f}.mec-single-event .mec-event-social a.linkedin{background:#0073b2}.mec-single-event .mec-event-social a.linkedin:hover{background:#005380}.mec-single-event .mec-event-social a.email{background:#ff5d5e}.mec-single-event .mec-event-social a.email:hover{background:#cc4949}.mec-single-event .mec-event-social a.vk{background:#5b88bd}.mec-single-event .mec-event-social a.vk:hover{background:#3d608a}.mec-single-event .mec-event-social a.rss{background:#f29a1d}.mec-single-event .mec-event-social a.rss:hover{background:#cc7400}.mec-single-event .mec-event-social a.instagram{background:#457399}.mec-single-event .mec-event-social a.instagram:hover{background:#2e4d66}.mec-single-event .mec-event-social a.other-social{background:#ff5d5e}.mec-single-event .mec-event-social a.other-social:hover{background:#cc4949}.mec-single-event .mec-event-social{text-align:center}.mec-single-event .mec-events-meta-group-booking form>h4,.mec-single-event .mec-frontbox-title{text-transform:uppercase;font-size:15px;font-weight:700;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative;text-align:center}.mec-single-event .mec-events-meta-group-booking form>h4:before,.mec-single-event .mec-frontbox-title:before{padding:1px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-35px;left:50%}.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-month],.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-year]{width:47%!important;margin-right:12px;margin-top:5px;display:inline-block!important}@media(max-width:768px){.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-month],.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-year]{width:100%!important;margin-right:0;display:block!important}}.mec-event-meta i:before{font-size:20px;vertical-align:middle}.mec-event-meta .mec-single-event-additional-organizers i:before,.mec-event-meta .mec-single-event-organizer i:before{font-size:14px;vertical-align:baseline}#mec-wrap .mec-events-day-time-slot .mec-events-content{float:left;width:33%;padding:0 15px}#mec-wrap .mec-events-day-time-slot .mec-events-event-image{padding-left:0}#mec-events-content .mec-events-abbr{color:#8d8d8d;font-size:14px}.mec-single-event .mec-events-content{margin-bottom:30px}.mec-single-event .mec-organizer-url a{word-wrap:break-word}.mec-single-event #headline{margin:0 0 10px}.mec-single-event #headline h2{padding:0}.mec-single-event .mec-events-meta-group.mec-events-meta-group-gmap .mec-events-venue-map{margin-top:0;padding:8px;border:1px solid #e5e5e5;border-radius:7px}#mec-events-gmap-0{height:325px!important}.mec-events-list .mec-events-day-time-slot .mec-events-event-meta{width:33%;float:left;padding:40px;height:auto;margin:0}.mec-events-day-time-slot .mec-events-content.description.entry-summary{font-size:15px;font-weight:300;color:#8d8d8d}.mec-events-day-time-slot .type-mec_events h2{font-size:28px;padding-bottom:20px}.mec-events-day .mec-events-day-time-slot .type-mec_events{margin:0}.mec-events-day .mec-events-day-time-slot h5{background-color:#8d8d8d}.mec-single-event .mec-event-meta .mec-single-event-additional-organizers .mec-events-single-section-title,.mec-single-event .mec-event-meta .mec-single-event-organizer .mec-events-single-section-title,.mec-single-event .mec-events-meta-date h3{padding-left:0;margin:10px;display:inline-block}.mec-single-event .mec-events-meta-date h3{width:100%}.mec-single-event .mec-events-event-image{border:0}.mec-single-event .mec-events-venue-map{padding:0}.mec-event-cost,.mec-event-more-info,.mec-event-website,.mec-events-meta-date,.mec-single-event-additional-organizers,.mec-single-event-category,.mec-single-event-date,.mec-single-event-label,.mec-single-event-location,.mec-single-event-organizer,.mec-single-event-time{background:#f7f7f7;padding:12px 14px 8px;margin-bottom:12px;vertical-align:baseline;position:relative}.mec-single-event .mec-events-meta-date dd,.mec-single-event .mec-single-event-additional-organizers dd,.mec-single-event .mec-single-event-organizer dd{padding-left:0;margin-bottom:10px}.mec-single-event .mec-events-meta-date dd span,.mec-single-event .mec-single-event-additional-organizers dd span,.mec-single-event .mec-single-event-organizer dd span{display:block;padding-left:12px;color:#8d8d8d}.mec-single-event .mec-events-meta-date i,.mec-single-event .mec-single-event-additional-organizers i,.mec-single-event .mec-single-event-organizer i{margin-right:10px;margin-left:12px}.mec-events-meta-group.mec-events-meta-group-venue dl{margin-bottom:0}address.mec-events-address{line-height:19px;font-style:normal;font-size:12px}.mec-single-event .mec-event-content dt{margin-top:5px}.mec-single-event .mec-single-event-additional-organizers .mec-single-event-additional-organizer{margin-bottom:15px;padding-bottom:5px;border-bottom:1px solid #e4e4e4}.mec-single-event .mec-single-event-additional-organizers .mec-single-event-additional-organizer:last-child{margin-bottom:0;padding-bottom:0;border:none}.mec-event-schedule-content{border-left:4px solid #f0f0f0;padding-top:10px;margin-top:30px;margin-left:25px;margin-bottom:20px;color:#8a8a8a}.mec-event-schedule-content dl{padding-left:24px;font-size:12px;position:relative;margin-bottom:35px}.mec-event-schedule-content dl:before{content:'';display:block;position:absolute;left:0;top:4px;width:20px;height:0;border-top:4px solid #f0f0f0}.mec-event-schedule-content dl dt{margin:0 0 10px;line-height:1.16}.mec-event-schedule-content dl dt.mec-schedule-title{font-size:13px;color:#5a5a5a;font-weight:700}.mec-event-schedule-content dl dt.mec-schedule-description{font-weight:300}.mec-event-schedule-content .mec-schedule-speakers{background:#f7f7f7;padding:10px}.mec-wrap .mec-event-schedule-content h6{font-size:13px;color:#5a5a5a;font-weight:700;display:inline-block}.mec-wrap .mec-event-schedule-content a{font-weight:400;color:#5a5a5a;transition:all .1s ease}.single-mec-events .mec-speakers-details ul{padding:0}.mec-single-event .mec-speakers-details ul li{list-style:none;background:#f7f7f7;padding:5px 5px 18px 5px;margin-top:14px}.mec-single-event .mec-speakers-details ul li a{-webkit-transition:.2s all ease;transition:.2s all ease}.mec-single-event .mec-speakers-details ul li .mec-speaker-avatar a img{float:left;border-radius:50%;transition:.2s all ease;border:2px solid transparent;width:68px;height:68px}.mec-single-event .mec-speakers-details ul li .mec-speaker-avatar a:hover img{border-color:#40d9f1}.mec-single-event .mec-speakers-details ul li .mec-speaker-name{display:inline-block;margin-top:6px;font-size:14px;text-transform:capitalize;font-weight:700;padding-left:8px}.mec-single-event .mec-speakers-details ul li .mec-speaker-job-title{display:block;font-size:12px;margin-top:-1px;padding-left:75px}.mec-single-event-location img,.mec-single-event-organizer img{margin-bottom:10px;width:100%}.mec-qrcode-details{text-align:center}.mec-time-comment{font-size:11px}.mec-wrap .mec-attendees-list-details p{font-weight:300;margin:20px 0 0 0;color:#8d8d8d}.mec-wrap .mec-attendees-list-details li{list-style:none;display:block;margin-top:15px}.mec-wrap .mec-attendees-list-details li .mec-attendee-avatar{display:inline-block}.mec-wrap .mec-attendees-list-details li .mec-attendee-profile-link{display:inline-block;vertical-align:top;margin-left:10px}.mec-attendees-list-details ul{margin-bottom:0}.mec-attendees-list-details .mec-attendee-profile-link a{color:#8d8d8d}.mec-attendees-list-details .mec-attendee-profile-link span{display:block;color:#000}.mec-calendar{margin-bottom:20px;border:1px solid #e8e8e8;width:100%;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-calendar .mec-calendar-topsec{display:table;background:#fff}.mec-calendar .mec-calendar-topsec .mec-calendar-events-sec{display:none}.mec-calendar .mec-calendar-side{width:590px;display:table-cell;padding:40px;position:relative;text-align:center;box-shadow:0 1px 5px 6px rgba(0,0,0,.005) inset}.mec-calendar .mec-calendar-events-side{display:table-cell;height:100%;border-left:1px solid #efefef;padding:40px;width:100%}.mec-calendar .mec-calendar-events-side .mec-table-side-day{width:46px;height:46px;margin:0 auto 20px;position:relative;text-align:center;line-height:46px;border:1px solid #40d9f1;border-radius:50%;font-size:12px;font-weight:600;padding:0}.mec-calendar .mec-calendar-events-side .mec-table-side-title{text-align:center;font-size:11px;text-transform:uppercase;letter-spacing:3px;margin-bottom:14px}.mec-calendar .mec-calendar-header{position:relative;width:560px;margin-top:8px;margin-bottom:16px}.mec-calendar .mec-calendar-header h2{text-transform:uppercase;font-size:22px;font-weight:700;color:#333}.mec-calendar .mec-event-footer{width:auto;min-height:60px}.mec-calendar dl{display:table;margin:0;border:none;padding:0;table-layout:fixed}.mec-calendar dt{display:table-cell;transition:all .66s ease;color:#4d4d4d;background:#fff;border-radius:44px;font-size:14px;width:80px;height:80px;line-height:80px;text-align:center}.mec-calendar .mec-calendar-table .mec-no-event{display:none}.mec-calendar .mec-calendar-table-head dt{font-weight:700;text-transform:uppercase;font-size:15px}.mec-calendar .mec-calendar-row dt:hover{background:#f4f4f4}.mec-calendar .mec-table-nullday{color:#cacaca}.mec-calendar.mec-box-calendar .mec-table-nullday:last-child{border-right:1px solid #eaeaea}.mec-calendar .mec-next-month:hover,.mec-calendar .mec-prev-month:hover{background:#f4f4f4}.mec-calendar .mec-selected-day,.mec-calendar .mec-selected-day:hover{background:#40d9f1;color:#fff}.mec-calendar .mec-selected-day a{color:#fff}.mec-calendar .mec-has-event{position:relative}.mec-calendar .mec-calendar-row dt.mec-has-event:hover{background:#40d9f1}.mec-calendar .mec-has-event a{cursor:pointer;display:block;width:100%;height:100%;border-radius:50%;color:#4d4d4d;transition:all .25s ease;text-decoration:none;box-shadow:none}.mec-calendar .mec-calendar-row dt.mec-has-event.mec-selected-day a,.mec-calendar .mec-calendar-row dt.mec-has-event:hover a{color:#fff}.mec-calendar .mec-has-event:after{background-color:#40d9f1;border-radius:50%;display:block;content:'';width:8px;height:8px;bottom:14px;left:50%;margin:-4px 0 0 -4px;position:absolute;transition:all .25s ease}.mec-calendar .mec-calendar-row dt.mec-has-event:hover:after{background-color:#fff}.mec-calendar .mec-has-event.mec-selected-day:after{display:none}.mec-calendar .mec-event-article{text-align:left;margin-bottom:0;padding-bottom:25px;padding-top:26px;border-top:1px solid #efefef;transition:all .33s ease}.mec-calendar .mec-event-article:hover{background-color:#fafafa}.mec-calendar .mec-event-article .mec-event-time{font-size:11px;line-height:1.1;margin:0}.mec-calendar .mec-event-article .mec-event-title{font-size:13px;padding:0;margin:10px 0 8px;font-weight:700;text-transform:uppercase}.mec-calendar .mec-event-article .mec-event-title a{text-decoration:none;color:#494949;transition:color .3s ease}.mec-calendar .mec-event-article .mec-event-title a:hover{color:#40d9f1}.mec-calendar .mec-event-article .mec-event-image,.mec-calendar .mec-event-list-classic .mec-event-image img{width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-image{float:left;margin-right:20px;width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-detail{font-size:13px;line-height:1.3;font-family:Roboto,sans-serif;color:#9a9a9a;margin-bottom:0}.mec-calendar .mec-calendar-side .mec-next-month,.mec-calendar .mec-calendar-side .mec-previous-month{cursor:pointer;position:absolute;top:0;min-width:50px;height:50px;line-height:50px;text-align:center;background:#fff;color:#a9a9a9;font-size:12px;letter-spacing:1px;text-transform:uppercase;padding-left:10px;padding-right:10px;border:1px solid #efefef;border-top:none;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease}.mec-calendar .mec-calendar-side .mec-next-month i,.mec-calendar .mec-calendar-side .mec-previous-month i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-calendar .mec-calendar-side .mec-next-month:hover,.mec-calendar .mec-calendar-side .mec-previous-month:hover{background-color:#f9f9f9;color:#40d9f1}.mec-calendar .mec-calendar-side .mec-previous-month{left:0;border-bottom-right-radius:6px;border-left:none}.mec-calendar .mec-calendar-side .mec-next-month{right:0;border-bottom-left-radius:6px;border-right:none}@media only screen and (min-width:961px){.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-has-event:after{width:6px;height:6px;bottom:6px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-calendar-side{width:370px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-calendar-header{position:relative;width:350px;margin-top:30px;margin-bottom:20px;padding-top:20px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) dt{width:50px;height:50px;line-height:50px}.mec-wrap.mec-sm959 .mec-calendar.mec-event-calendar-classic dl dt{height:110px}}@media only screen and (max-width:1200px){.mec-calendar .mec-has-event:after{width:6px;height:6px;bottom:6px}.mec-calendar .mec-calendar-side{width:370px}.mec-calendar .mec-calendar-header{position:relative;width:350px;margin-top:30px}.mec-calendar dt{width:50px;height:50px;line-height:50px}}@media only screen and (max-width:767px){.mec-calendar .mec-calendar-header h2{font-size:18px}.mec-calendar .mec-calendar-topsec{width:100%}.mec-calendar .mec-calendar-side{width:100%;display:block;padding:30px}.mec-calendar .mec-calendar-header{width:auto}.mec-calendar .mec-calendar-events-side{width:100%;display:block;height:100%;border-left:none;border-top:1px solid #efefef;padding:20px}.mec-calendar dl{width:100%}.mec-calendar dt{width:14%;height:60px;line-height:60px;border-radius:50px}}@media only screen and (max-width:479px){.mec-calendar .mec-has-event:after{width:4px;height:4px}.mec-calendar .mec-calendar-header h2{font-size:16px;margin-top:33px}.mec-calendar dt{height:38px;line-height:38px}.mec-calendar .mec-event-list-classic .mec-event-detail,.mec-calendar .mec-event-list-classic .mec-event-title{font-size:12px}.mec-calendar .mec-event-list-classic .mec-event-time{font-size:10px}}.mec-box-calendar.mec-calendar .mec-has-event a,.mec-box-calendar.mec-calendar dt{border-radius:0}.mec-box-calendar.mec-calendar .mec-calendar-header{margin-top:2px;margin-bottom:30px}.mec-box-calendar.mec-calendar dt{border-bottom:1px solid #eaeaea;border-left:1px solid #eaeaea}.mec-box-calendar.mec-calendar dl dt:last-child{border-right:1px solid #eaeaea}.mec-box-calendar.mec-calendar .mec-calendar-table-head dt{border-top:1px solid #eaeaea;background-color:#f8f8f8}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt{background-color:#f4f4f4}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{border-radius:2px;top:40px;border:1px solid #eee;height:30px;line-height:30px;z-index:1}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:60px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:60px}.mec-box-calendar.mec-calendar .mec-calendar-side{box-shadow:none}.mec-box-calendar.mec-calendar .mec-calendar-events-side{border:none}.mec-box-calendar.mec-calendar .mec-calendar-events-side .mec-table-side-day{border-radius:2px}.mec-box-calendar.mec-calendar h4.mec-month-label{position:relative;width:560px;margin-top:2px;margin-bottom:30px;text-transform:uppercase;font-size:22px;font-weight:700;color:#333}.mec-widget .mec-box-calendar.mec-calendar h4.mec-month-label{width:100%;margin-top:8px;font-size:13px}@media only screen and (max-width:1200px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:42px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:42px}.mec-calendar .mec-calendar-header h2{font-size:17px;margin-top:7px}}@media only screen and (max-width:767px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{top:28px;font-size:10px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:30px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:30px}.mec-calendar .mec-calendar-header h2{font-size:15px}}@media only screen and (max-width:479px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{top:16px;font-size:0;padding:4px 0;text-align:center;min-width:33px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:10px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:10px}.mec-box-calendar.mec-calendar .mec-calendar-header h2{font-size:12px;margin-top:15px}.mec-box-calendar.mec-calendar .mec-event-image{margin-right:12px}}.mec-calendar.mec-event-calendar-classic,.mec-calendar.mec-event-calendar-classic .mec-calendar-side{border:none;padding:0;width:100%;height:100%;box-shadow:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-side{display:block}.mec-calendar.mec-event-calendar-classic .mec-calendar-header,.mec-calendar.mec-event-calendar-classic dl{width:100%}.mec-calendar.mec-event-calendar-classic dl dt{width:15%;height:136px;line-height:1.2;text-align:left;padding:5px 7px;position:relative}.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt{height:30px!important}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month{top:0}.mec-calendar.mec-event-calendar-classic .mec-has-event:after{bottom:auto;top:24px;left:7px;margin:0}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month{left:0}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month{right:0}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{text-align:left;background:#fafafa;border:1px solid #eaeaea;border-top:none;padding:10px 20px}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{display:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-event-article:hover{background-color:#fcfcfc}.mec-calendar.mec-event-calendar-classic .mec-selected-day,.mec-calendar.mec-event-calendar-classic dt.mec-selected-day:hover{color:#40d9f1;font-weight:700;background:#fafafa;border-bottom:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-day,.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-title{display:inline-block;margin:0;margin-bottom:15px;font-weight:700}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-day{margin-left:4px}.mec-calendar.mec-event-calendar-classic .mec-calendar-row dt.mec-has-event a{color:#4d4d4d}.mec-calendar.mec-event-calendar-classic .mec-calendar-row dt.mec-has-event:not(.mec-selected-day):hover a{color:#fff}@media only screen and (max-width:1200px){.mec-calendar.mec-event-calendar-classic dl dt{height:100px}}@media only screen and (max-width:767px){.mec-calendar.mec-event-calendar-classic dl dt{height:40px}}@media only screen and (max-width:479px){.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{padding:10px}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-header h2{font-size:13px;margin-top:8px}}.mec-calendar .mec-event-article.mec-single-event-novel{padding:4px 8px;min-height:25px;margin:0 -4px;border-radius:0}.mec-calendar .mec-event-article.mec-single-event-novel h4{margin:0;font-size:10px;line-height:18px}.mec-calendar.mec-event-container-novel dl dt{padding:3px}.mec-calendar.mec-event-calendar-classic .mec-calendar-novel-selected-day{display:inline-block;padding:4px;margin-left:1px}.mec-calendar.mec-event-calendar-classic .mec-selected-day .mec-calendar-novel-selected-day{color:#fff}.mec-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-selected-day,.mec-calendar.mec-event-calendar-classic.mec-event-container-novel dt.mec-selected-day:hover{border-bottom:1px solid #eaeaea}.mec-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-calendar-side .mec-calendar-table{min-height:auto}.mec-single-event-novel.light h4{color:#000!important}.mec-single-event-novel.dark h4{color:#fff!important}@media only screen and (max-width:768px){.mec-calendar .mec-event-article.mec-single-event-novel{padding:0;min-height:5px}.mec-calendar .mec-event-article.mec-single-event-novel h4{display:block;font-size:9px}}.mec-event-container-simple .event-single-content-simple{display:none}.mec-event-calendar-classic.mec-event-container-simple .mec-calendar-side .mec-calendar-table{min-height:unset}.mec-event-container-simple .mec-monthly-tooltip h4{font-size:13px;font-weight:500;margin:0;color:#444}.mec-event-container-simple .mec-monthly-tooltip h4:hover{text-decoration:underline;color:#111}.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple{border-bottom:1px dashed #e3e3e3;padding:10px 2px;display:block}.mec-calendar.mec-event-container-simple dl dt.mec-calendar-day{font-size:30px;color:#000}.mec-calendar.mec-event-container-simple .mec-calendar-row dt:hover{background:unset}.mec-calendar.mec-event-container-simple .mec-calendar-row dt,.mec-calendar.mec-event-container-simple .mec-calendar-row dt:last-child,.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt,.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt:last-child{border-width:2px}.mec-calendar.mec-event-container-simple dl dt.mec-selected-day,.mec-calendar.mec-event-container-simple dl dt.mec-selected-day:hover{border-bottom:2px solid #40d9f1;background:unset}.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt{line-height:36px}@media (max-width:768px){.mec-calendar.mec-event-container-simple{overflow-x:scroll}.mec-calendar.mec-event-container-simple .mec-calendar-side{min-width:700px}.mec-event-container-simple .mec-monthly-tooltip h4{font-size:12px}}.mec-wrap.colorskin-custom .mec-calendar.mec-event-container-simple .mec-selected-day:hover{background:#f4f4f4}.mec-event-container-simple .mec-calendar-day .mec-monthly-tooltip.event-single-link-simple:last-of-type{border:none}.mec-tooltip-event-title{font-size:16px;font-weight:700;color:#000;margin-bottom:2px}.mec-tooltip-event-time{font-size:12px;color:#888;margin-bottom:8px;margin-top:5px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-content{padding:17px}.mec-tooltip-event-content{clear:both}.mec-tooltip-event-featured{float:left;margin-right:13px;margin-bottom:1px}.mec-tooltip-event-featured img{max-width:120px}.mec-tooltip-event-desc{font-size:14px;color:#444;line-height:18px}.mec-tooltip-event-desc p{font-size:13px;line-height:1.4;margin-bottom:10px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-box{border-radius:3px!important;border:1px solid #e2e3e4!important;background:#fff!important;box-shadow:0 -1px 30px -2px rgba(0,0,0,.15)!important}.tooltipster-sidetip .tooltipster-arrow{overflow:visible!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-border{border-width:12px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-right .tooltipster-arrow-border{border-right-color:#e2e3e4!important}.tooltipster-sidetip .tooltipster-arrow-border{left:-12px!important;z-index:9999999999!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-background{display:block!important}.tooltipster-sidetip .tooltipster-arrow-background{border-width:11px!important;z-index:99999999999!important}.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background{left:-9px!important;top:1px!important;border-right-color:#fff!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background{border-top-color:#fff!important;left:0!important;top:-1px!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border{left:-1px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-top .tooltipster-arrow-border{border-top-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{left:-1px!important;top:-11px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{border-bottom-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background{top:-9px!important;border-bottom-color:#fff!important}.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background{border-left-color:#fff!important;left:-2px!important;top:0!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-left .tooltipster-arrow-border{border-left-color:#e2e3e4!important;left:-1px!important;top:-1px!important}@media (max-width:780px){.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple h4{word-break:break-all;font-size:13px}}@media (max-width:320px){.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple h4{font-size:10px}}.mec-calendar.mec-calendar-daily .mec-calendar-day-events .mec-event-article{padding-left:15px;padding-right:15px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month{text-align:center;background-color:#fff;border-bottom:2px solid #f4f4f4;position:relative}.mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{color:#444;font-size:18px;line-height:1.2;padding:15px 0 11px;margin:0;font-weight:700;letter-spacing:1px;text-transform:uppercase;border-bottom:1px solid #e6e6e6}.mec-calendar.mec-calendar-daily .mec-calendar-d-top{text-align:center;padding:10px 0;position:relative;background-color:#fafafa}.mec-calendar.mec-calendar-daily .mec-next-month,.mec-calendar.mec-calendar-daily .mec-previous-month{position:absolute;top:50%;left:50%;margin-top:-25px;min-width:50px;height:50px;line-height:50px;text-align:center;background:#fff;border:1px solid #e2e2e2;border-radius:50px;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month i,.mec-calendar.mec-calendar-daily .mec-previous-month i{font-size:14px;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month:hover,.mec-calendar.mec-calendar-daily .mec-previous-month:hover{border-color:#d0d0d0;color:#444;box-shadow:0 2px 5px 0 rgba(0,0,0,.075)}.mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-150px}.mec-calendar.mec-calendar-daily .mec-next-month{margin-left:100px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-next-month,.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-previous-month{min-height:28px;height:28px;line-height:28px;width:28px;margin-top:-14px;border-radius:3px}.mec-calendar.mec-calendar-daily .mec-calendar-d-top h2,.mec-calendar.mec-calendar-daily .mec-calendar-d-top h3{margin-top:9px;color:#b9b9b9;font-family:Roboto,sans-serif;font-size:30px;font-weight:100;text-transform:uppercase;margin-bottom:12px;line-height:1}.mec-calendar.mec-calendar-daily .mec-calendar-d-top h2{font-size:81px;color:#444;margin-bottom:10px;line-height:1.1}.mec-calendar.mec-calendar-daily .mec-calendar-d-table{overflow:hidden;background:#fff;min-height:60px;border-top:1px solid #e6e6e6;border-bottom:2px solid #f3f3f3;padding:0 50px;position:relative}@media only screen and (min-width:479px){.mec-calendar.mec-calendar-daily .mec-calendar-d-table{padding:0 55px}}.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl{width:1310px;display:block}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl{display:none}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl.mec-weekly-view-week-active{display:block}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt{display:block;background:#fff;width:42px;height:60px;line-height:60px;text-align:center;float:left;border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6;border-radius:0}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day:hover,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt:hover{background:#fafafa;box-shadow:0 2px 5px 0 rgba(0,0,0,.065) inset;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day{cursor:default;background:#fff;color:#c1c1c1;line-height:59px;text-align:center;border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-has-event{cursor:pointer;font-weight:700;color:#4a4a4a}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-daily-view-day-active,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt.mec-table-d-current{font-size:18px;font-weight:700;background:#fafafa;color:#40d9f1}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next,.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-prev{float:none;font-size:14px;width:55px;position:absolute;top:0;left:0;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next{left:auto;right:0;border-left:1px solid #e6e6e6;border-right:none}.mec-calendar.mec-calendar-daily .mec-today-container .mec-today-count{font-size:12px;color:#888;text-align:center}@media only screen and (max-width:479px){.mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-130px}.mec-calendar.mec-calendar-daily .mec-next-month{margin-left:80px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{font-size:14px;letter-spacing:0}}.widget .mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{font-size:14px;letter-spacing:0}.widget .mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-130px}.widget .mec-calendar.mec-calendar-daily .mec-next-month{margin-left:80px}.mec-util-hidden{display:none}.mec-daily-view-date-events,.mec-weekly-view-date-events{list-style:none;margin:0}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table{padding:0}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl{width:calc(100% - 1px)}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt{width:14.286%;height:70px;line-height:normal;cursor:default}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:hover{background:#fff;cursor:default}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:last-child{border-right:none}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:12px;font-weight:700;text-transform:uppercase;display:block;margin:15px 0 6px}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table a.mec-table-d-next,.mec-calendar.mec-calendar-weekly .mec-calendar-d-table a.mec-table-d-prev{display:none}ul.mec-weekly-view-dates-events,ul.mec-weekly-view-dates-events li{padding:0;margin:0;line-height:initial}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:64px;height:64px;margin-right:10px;font-size:11px;text-transform:uppercase;float:left;text-align:center;padding-top:2px}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:40px;line-height:30px;font-weight:700;display:block;margin-bottom:6px;letter-spacing:1px}.mec-calendar.mec-calendar-weekly .mec-calendar-a-month .mec-previous-month{margin-left:0;left:12px}.mec-calendar.mec-calendar-weekly .mec-calendar-a-month .mec-next-month{margin-left:0;left:auto;right:12px}@media only screen and (max-width:479px){.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:9px;letter-spacing:0}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:100%;height:36px;margin-bottom:12px;line-height:1;font-size:10px;margin-right:5px;text-align:left}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:18px;margin-bottom:5px}}.widget .mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:9px;letter-spacing:0}.widget .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:100%;height:36px;margin-bottom:12px;line-height:1;font-size:10px;margin-right:5px;text-align:left}.widget .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:18px;margin-bottom:5px}.mec-week-events-container .mec-weekly-view-dates-events li.mec-no-event-found{list-style:none!important}li.mec-no-event-found .mec-event-title{text-align:center}.mec-widget .mec-calendar{max-width:100%}.mec-widget .mec-calendar dl dt,.mec-wrap.mec-sm959.mec-widget .mec-calendar.mec-event-calendar-classic dl dt{height:40px}.mec-widget .mec-calendar .mec-calendar-events-sec{padding:10px}.mec-widget .mec-calendar .mec-calendar-header h2{font-size:13px;margin-top:8px}.mec-widget .mec-calendar .mec-event-list-classic .mec-event-image{margin-right:12px}.mec-widget .mec-calendar .mec-has-event:after{width:4px;height:4px}.mec-widget .mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-title{font-size:14px}.mec-widget .mec-calendar .mec-event-article .mec-event-image{margin-right:11px}.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-header{margin-bottom:20px}.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{font-size:0;padding:4px 0;text-align:center;min-width:33px}.mec-widget .mec-event-calendar-classic .mec-calendar-side .mec-calendar-table{min-height:200px}.mec-widget .mec-event-list-classic{margin-bottom:8px;padding:8px 0}.mec-widget .mec-event-list-classic .mec-event-article{margin-bottom:0;padding:10px 0;position:relative;min-height:86px;padding-left:80px}.mec-widget .mec-event-list-classic .mec-event-date{font-size:10px;line-height:14px;text-transform:uppercase}.mec-widget .mec-event-list-classic .mec-event-title{font-size:13px}.mec-widget .mec-event-list-classic .mec-event-detail{font-size:11px}.mec-widget .mec-event-list-classic .mec-event-image{width:68px;position:absolute;left:0}.mec-event-list-classic .mec-event-image img{width:100%}.mec-widget .mec-event-list-classic .mec-event-detail{overflow:visible}.event-color{width:14px;display:inline-block;height:14px;margin-left:5px;border-radius:50%}.mec-map-lightbox-wp{width:580px;padding:15px 15px 0;background-color:#fff}.mec-map-view-event-detail.mec-event-detail{width:580px;background-color:#e9e9e9;padding:8px 15px}.mec-map-lightbox-wp.mec-event-list-classic .mec-event-article{padding:0 0 15px;margin:0}.mec-map-lightbox-wp.mec-event-list-classic .mec-event-image{width:70px;margin-right:15px}.mec-marker-infowindow-wp{padding:10px}.mec-marker-infowindow-wp .mec-marker-infowindow-count{width:60px;height:60px;display:block;text-align:center;line-height:60px;border:1px solid #40d9f1;border-radius:50%;font-size:32px;color:#40d9f1;float:left;margin-right:11px}.mec-marker-infowindow-wp .mec-marker-infowindow-content{overflow:hidden;padding-top:6px}.mec-marker-infowindow-wp .mec-marker-infowindow-content span{display:block;color:#222}.mec-marker-infowindow-wp .mec-marker-infowindow-content span:first-child{font-size:15px;font-weight:700}.mec-marker-wrap{display:inline-block;width:35px;height:35px;margin:15px 0 0 4px;border-radius:50% 50% 50% 0;background:#00cae9;animation-name:mec-map-bounce;animation-fill-mode:both;animation-duration:1s;border:3px solid #fff;cursor:pointer}.mec-marker-wrap .mec-marker{margin-top:5px;display:block;-webkit-transform:rotate(45deg);transform:rotate(45deg);text-align:center;color:#fff;font-size:17px}.mec-marker-wrap .mec-marker-pulse-wrap{-webkit-transform:rotate(45deg);transform:rotate(45deg);display:inline-block;margin-left:-11px;margin-top:0}.mec-marker-wrap .mec-marker-pulse{display:inline-block;background:#c5c5c5;border-radius:50%;height:14px;width:14px;-webkit-transform:rotateX(55deg);transform:rotateX(55deg);z-index:-2}.mec-marker-wrap .mec-marker-pulse:after{content:"";border-radius:50%;height:40px;width:40px;position:absolute;margin:-13px 0 0 -13px;animation:pulsate 1s ease-out;animation-iteration-count:infinite;opacity:0;box-shadow:0 0 1px 2px #00cae9;animation-delay:1.1s}@keyframes pulsate{0%{transform:scale(.1,.1);opacity:0}50%{opacity:1}100%{transform:scale(1.2,1.2);opacity:0}}@keyframes mec-map-bounce{0%{opacity:0;transform:translateY(-2000px) rotate(-45deg)}60%{opacity:1;transform:translateY(30px) rotate(-45deg)}80%{transform:translateY(-10px) rotate(-45deg)}100%{transform:translateY(0) rotate(-45deg)}}.mec-skin-grid-container .mec-skin-map-container,.mec-skin-list-container .mec-skin-map-container{margin-bottom:20px}.mec-single-event{margin-top:10px}.mec-single-event .mec-events-meta-group-countdown{color:#c9c9c9;text-align:center;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-events-meta-group-countdown .countdown-w{text-align:center;font-size:36px;margin:0 auto;padding:40px 0 0;position:relative;display:table;table-layout:fixed}.mec-events-meta-group-countdown .countdown-w .icon-w{font-size:24px}.mec-events-meta-group-countdown .countdown-w .label-w{font-size:15px;font-weight:300;letter-spacing:1px;text-transform:uppercase;position:relative}.mec-events-meta-group-countdown .countdown-w .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px;width:190px;font-size:72px;transition:all .3s ease-in-out;line-height:1.2}.mec-events-meta-group-countdown .countdown-w .block-w.done-w{border:0 none}.mec-events-meta-group-countdown .countdown-w span{padding:24px 0 20px}.mec-events-meta-group-countdown .countdown-w .div-d{display:none}.mec-events-meta-group-countdown .countdown-w .countdown-message{display:none}.mec-events-meta-group-countdown .countdown-w .block-w i{display:none}#countdown{list-style:none;margin-bottom:0;margin-top:0;margin-left:0;padding-left:0}.mec-events-meta-group-countdown .mec-end-counts h3{display:inherit;text-align:center;font-size:16px;right:50%}.mec-countdown-details .countdown-w .clockdiv li p{margin-top:23px}@media (min-width:481px) and (max-width:768px){.mec-events-meta-group-countdown .countdown-w{padding:0}.mec-events-meta-group-countdown .countdown-w .label-w{font-size:12px;letter-spacing:0}.mec-events-meta-group-countdown .countdown-w span{font-size:34px}}@media (min-width:320px) and (max-width:480px){.mec-events-meta-group-countdown .countdown-w .label-w{font-size:10px}.mec-events-meta-group-countdown .countdown-w span{font-size:28px}.mec-countdown-details .countdown-w .clockdiv li p{margin-top:16px}}@media (max-width:320px){.mec-events-meta-group-countdown .countdown-w .label-w{font-size:9px;letter-spacing:0}.mec-events-meta-group-countdown .countdown-w span{font-size:22px}}.info-msg,.mec-error,.mec-success,.warning-msg{margin:10px 0;padding:10px;border-radius:3px 3px 3px 3px;font-size:13px}.info-msg{color:#059;background-color:#bef}.mec-success{color:#0dbf52;background-color:#cef7ce}.warning-msg{color:#9f6000;background-color:#feefb3}.mec-error{color:#d8000c;background-color:#ffbaba}.mec-fes-form,.mec-fes-list{background:#f8feff;padding:30px 3%;color:#798f96;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important}.mec-fes-list .mec-fes-list-top-actions,.mec-fes-list ul{margin:0 auto 15px;max-width:960px;list-style:none}.mec-fes-form-cntt .dashicons-editor-help{display:none}.mec-fes-list ul li *{text-decoration:none!important}.mec-fes-list ul li{padding:20px 15px;border-radius:3px;margin-bottom:15px;border:1px solid #cfeff5;box-shadow:0 2px 6px -4px #cfeff5;background:#fff;line-height:normal}.mec-fes-list ul li a{box-shadow:none;color:#181818}.mec-fes-list ul li a:hover{color:#40d9f1}.mec-fes-list ul li .mec-event-title{font-size:17px;font-weight:600;width:calc(100% - 250px);display:inline-block}@media (max-width:600px){.mec-fes-list ul li .mec-event-title{font-size:13px}}.mec-fes-list .mec-event-status{color:#fff!important;border-color:transparent!important}.mec-fes-form .mec-book-confirmed,.mec-fes-list .mec-book-confirmed{background:#50d477!important}.mec-fes-form .mec-book-pending,.mec-fes-list .mec-book-pending{background:#fcbe69!important}.mec-fes-form .mec-book-rejected,.mec-fes-list .mec-book-rejected{background:#fe686a!important}.mec-fes-form .mec-book-other,.mec-fes-list .mec-book-other{background:#40d9f1!important}.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view{font-size:11px;padding:0;border:0;background:#f7f8f9;float:right;margin-left:5px;border-radius:2px;transition:all .2s ease}.mec-fes-list ul li .mec-fes-event-export a,.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view a{padding:4px 8px;display:inline-block;border:1px solid #e7e8e9;border-radius:2px;color:#789;position:relative}@media (max-width:600px){.mec-fes-list ul li .mec-fes-event-export a,.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view a{font-size:10px}}.mec-fes-list ul li .mec-fes-event-remove:hover{cursor:pointer;background:#f96f8a;border-color:#f96f8a;color:#fff}.mec-fes-list ul li .mec-fes-event-export a:hover,.mec-fes-list ul li .mec-fes-event-view a:hover{background:#40d9f1;color:#fff;border-color:#40d9f1}.mec-fes-form-top-actions a,.mec-fes-list-top-actions a{position:relative;border:none;border-radius:3px;color:#fff!important;display:inline-block;font-size:13px;line-height:1;text-transform:none;font-weight:400;text-decoration:none;cursor:pointer;margin-bottom:20px!important;margin-right:10px;line-height:1;letter-spacing:0;padding:15px 22px;background:#39c36e;box-shadow:0 1px 7px -3px #39c36e!important;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;text-decoration:unset}.mec-fes-form-top-actions a:hover,.mec-fes-list-top-actions a:hover{background:#222;color:#fff}.mec-fes-list-top-actions a{font-weight:600;text-transform:capitalize}.mec-fes-form-top-actions a:before{content:"";border:solid #fff;border-width:0 2px 2px 0;display:inline-block;padding:6px;margin-right:5px;vertical-align:sub;transform:rotate(135deg);-webkit-transform:rotate(135deg)}.mec-fes-form .mec-form-row,.mec-fes-list .mec-form-row{margin-bottom:10px;clear:both}.mec-fes-form label{font-size:13px;display:block;color:#798f96;font-weight:400;padding:0 0 4px 2px}.mec-fes-form input+label{padding-top:8px;padding-left:3px;margin:0;display:inline-block;vertical-align:top}.mec-fes-form .post-status{float:right!important;margin:0 5px;color:#fff;padding:0 10px;border-radius:12px;font-style:italic;font-size:18px}.mec-fes-form input[type=email],.mec-fes-form input[type=number],.mec-fes-form input[type=password],.mec-fes-form input[type=tel],.mec-fes-form input[type=text],.mec-fes-form select,.mec-fes-form textarea{min-width:inherit;width:auto;display:inline;min-height:30px;font-size:13px;padding:10px;margin-bottom:20px;clear:both;background:#fff;border:1px solid #cfeff5;box-shadow:0 2px 5px rgba(207,239,245,.38) inset;border-radius:3px;height:40px;max-width:280px;color:#798f96;font-family:inherit}.mec-fes-form input{background:#fff!important;border-radius:3px!important;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important}.mec-fes-form textarea{height:80px}.mec-fes-form input::-webkit-input-placeholder{color:#798f96}.mec-fes-form input::-moz-placeholder{color:#798f96}.mec-fes-form input:-ms-input-placeholder{color:#798f96}.mec-fes-form input:-moz-placeholder{color:#798f96}#mec_more_info_target{width:100%}@media only screen and (min-width:961px){.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=text],.mec-fes-form textarea{width:100%;display:inline-block}}@media only screen and (max-width:768px){.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=text],.mec-fes-form textarea{width:100%}}.mec-fes-form input[type=text]#mec_fes_title{padding:5px 10px;min-height:32px;height:50px;background:#fff!important;max-width:100%;font-size:19px;font-weight:400}.mec-fes-form input[type=checkbox],.mec-fes-form input[type=radio]{display:inline!important;float:left;margin:5px 5px 0 0}.mec-fes-form input[type=email]:focus,.mec-fes-form input[type=number]:focus,.mec-fes-form input[type=password]:focus,.mec-fes-form input[type=tel]:focus,.mec-fes-form input[type=text]:focus,.mec-fes-form select:focus,.mec-fes-form textarea:focus{border:1px solid #aaa;color:#444;background:#fff;-moz-box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);box-shadow:0 0 3px rgba(0,0,0,.2);outline:0}.mec-form-row .mec-color{cursor:pointer}.mec-form-row.mec-available-color-row span{margin:10px;width:14px;height:14px;display:inline-block;margin-right:6px;border-radius:20px 20px 20px 20px;vertical-align:middle}.mec-form-row.mec-available-color-row span:first-of-type{margin-left:0}.mec-fes-form.mec-fes-form .mec-tooltip{display:inline}.mec-fes-form-cntt .dashicons-editor-help{display:block}.mec-fes-form .mec-tooltip:hover:after,.mec-fes-form .mec-tooltip:hover:before{display:none}.mec-fes-form.mec-fes-form .mec-tooltip{display:inline-flex;bottom:7px}.mec-fes-form .mec-tooltip .box{min-width:300px;max-width:600px;display:inline-block;left:26px;top:50%;transform:translateY(-50%);padding:0;margin-top:8px;background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.3;position:absolute;z-index:9999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s}#webnus-dashboard .mec-fes-form .mec-tooltip .box p,.mec-fes-form .mec-tooltip .box p{color:#fff;font-size:14px;line-height:1.3;margin:0}.mec-fes-form .mec-tooltip:hover .box{visibility:visible;opacity:1}.mec-fes-form .mec-tooltip:hover .box{padding:20px;border-radius:8px}.mec-fes-form .mec-tooltip .box h5{color:#fff;font-size:17px;font-weight:600;margin:-30px -20px;padding:20px 0;text-align:center;margin-bottom:10px;background:#3a3f44;border-bottom:1px solid #32363a;border-radius:6px 6px 0 0;z-index:9999}#webnus-dashboard .mec-fes-form .mec-tooltip .box p a,.mec-fes-form .mec-tooltip .box p a{color:#40d9f1;margin-top:10px;margin-left:0;font-weight:400;position:relative;text-decoration:none;display:block;width:max-content}.mec-fes-form .mec-tooltip .box a:hover{color:#f90}.mec-fes-form .mec-tooltip .box:after{display:block;position:absolute!important;top:100%!important;right:50%!important;margin-top:-6px!important;margin-right:-6px!important;width:12px!important;height:24px!important;overflow:hidden!important;transform:rotate(-90deg)!important}.mec-fes-form .mec-tooltip .box:before{display:block;content:''!important;position:absolute!important;width:12px;height:12px;left:-10px!important;top:50%!important;transform:translate(50%,-50%) rotate(-45deg)!important;background-color:#535a61!important;box-shadow:0 8px 9px -4px #535a61!important;z-index:0!important}.mec-fes-form .mec-tooltip .box.top{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-fes-form .mec-tooltip .box.top:after{top:50%!important;right:100%!important}.mec-fes-form .mec-tooltip .box.top:before{left:50%!important;top:100%!important}.mec-fes-form .mec-tooltip .box.bottom{left:50%;top:auto;bottom:0;transform:translate(-50%,100%);margin-bottom:-20px;margin-left:-10px}.mec-fes-form .mec-tooltip .box.bottom:after{top:0!important;right:50%!important;background-color:#3a3f44!important}.mec-fes-form .mec-tooltip .box.bottom:before{left:50%!important;top:-7px!important;transform:translateX(-50%);background-color:#3a3f44!important}.mec-fes-form .mec-tooltip .box.left{left:auto;right:26px;top:50%;transform:translateY(-50%)}.mec-fes-form .mec-tooltip .box.left:before{right:0!important;left:auto!important;top:50%!important}.mec-fes-form .mec-tooltip{display:inline-block;position:relative;margin-right:10px;cursor:help;bottom:5px;left:3px}.mec-fes-form .mec-tooltip:last-child{margin-right:0}.mec-fes-form .mec-tooltip:hover:after{background:#313130;border-radius:5px;bottom:24px;color:#fff;content:attr(title);left:-75px;padding:10px;position:absolute;z-index:98;width:240px}.mec-fes-form .mec-tooltip:hover:before{border:solid;border-color:#313130 transparent;border-width:6px 6px 0;bottom:18px;content:"";left:30%;position:absolute;z-index:99}.mec-fes-form .mec-tooltip .dashicons-before:before{font-size:24px;color:#008aff;line-height:37px}.mec-fes-form .mec-tooltip a:focus{box-shadow:none}.mec-form-row .bootstrap_unvalid{display:block;border:2px solid red;position:relative;display:inline-block;border-bottom:1px dotted #000}.mec-fes-form .mec-tooltiptext{visibility:hidden;width:120px;background-color:red;color:#fff;text-align:center;border-radius:6px;padding:5px 0;position:absolute;z-index:1}.mec-fes-form .mec-tooltip .content p a{display:none}@media only screen and (min-width:961px){.mec-fes-form .mec-fes-form-cntt,.mec-fes-form .mec-fes-form-sdbr{width:68%;float:left;padding-right:20px}.mec-fes-form .mec-fes-form-sdbr{width:32%;padding-right:0;padding-left:20px}.mec-fes-submit-mobile{display:none}}.mec-fes-form .mec-meta-box-fields{padding:0 20px 20px;border:1px solid #cfeff5;margin-bottom:20px!important;box-shadow:0 2px 6px -3px #cfeff5;border-radius:3px;background:#fff}.mec-fes-form .mec-meta-box-fields h4{margin:0 -20px;font-size:15px;font-weight:600;letter-spacing:0;color:#40d9f1;text-transform:capitalize;padding:15px 20px;background:#ecfcff;margin-bottom:20px;border-radius:3px}.mec-fes-sub-button{width:100%}.mec-available-color-row span.color-selected{border:3px solid #fff;box-sizing:content-box;box-shadow:0 0 0 2px #40d9f1,0 2px 8px -1px #40d9f1}.mec-fes-loading:before{content:url(../img/ajax-loader.gif);background:0 0;border-style:none;display:block;margin-left:47%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text]{width:190px;margin-right:1.4%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-1,.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-2{width:120px;margin-right:10px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].widefat{width:100%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row{border-bottom:none;padding-bottom:10px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-6{width:39%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row button{margin-right:0;padding:9px 26px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row button.mec-add-hourly-schedule-button{font-size:12px;height:30px;line-height:25px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row .description{display:inline-block;border-left:1px dashed #bfcacc;margin-left:12px;line-height:28px;padding-left:12px;margin-top:5px;font-style:italic}@media only screen and (max-width:768px){.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text]{width:100%!important}}#mec_fes_form_message{max-width:838px;margin:10px auto;display:block!important;text-align:center}.mec-wrap .mec-totalcal-box{position:relative;border:1px solid #efefef;padding:20px 5px;margin:0 0 20px;background:#fafafa;overflow:hidden;box-shadow:0 3px 2px 0 rgba(0,0,0,.012);min-height:78px}.mec-wrap .mec-totalcal-box i{float:left;margin:0;width:36px;height:36px;background:#fff;border:1px solid #efefef;text-align:center;padding:10px 0;font-size:15px;color:#888}.mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-wrap .mec-totalcal-box input,.mec-wrap .mec-totalcal-box select{width:auto;min-height:36px;height:36px;line-height:36px;background:#fff;font-size:13px;color:#777;border:1px solid #efefef;margin:0 0 0 -1px;float:left;padding:0 5px;font-family:Roboto,Helvetica,Arial,sans-serif}.mec-wrap .mec-totalcal-box input[type=submit]{cursor:pointer;padding:0 16px;text-transform:uppercase;font-size:11px;font-family:Montserrat,Helvetica,Arial,sans-serif;transition:all .21s ease}.mec-wrap .mec-totalcal-box input[type=submit]:hover{background:#222;color:#fff}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{display:inline-block;text-transform:uppercase;font-family:Montserrat,Helvetica,Arial,sans-serif;font-size:11px;padding:0 12px;cursor:pointer}.mec-wrap .mec-totalcal-box .mec-totalcal-view span:hover{color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view span.mec-totalcalview-selected{color:#fff;background:#40d9f1;border-color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view{text-align:right;float:right}.mec-wrap .mec-totalcal-box input[type=search]{width:calc(100% - 36px)}@media only screen and (min-width:961px) and (max-width:1200px){.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-3,.mec-wrap .mec-totalcal-box .col-md-4,.mec-wrap .mec-totalcal-box .col-md-5{width:100%;float:none;padding-bottom:20px;clear:both;overflow:hidden}}@media only screen and (min-width:768px) and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-4{position:relative;right:10px;top:20px;width:initial}.mec-wrap .mec-totalcal-box .col-md-5{padding-bottom:0}.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:767px){.mec-wrap .mec-totalcal-box .mec-totalcal-view{float:none}.mec-wrap .mec-totalcal-box .col-md-4{padding-bottom:0}}@media only screen and (max-width:479px){.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 8px;font-size:10px}.mec-wrap .mec-totalcal-box input[type=submit]{padding:0 10px;font-size:10px}}@media only screen and (min-width:961px){.mec-wrap .mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5,.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-3{width:100%;float:none;padding-bottom:20px;clear:both;overflow:hidden}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-4{position:absolute;right:10px;top:20px;width:initial}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5{padding-bottom:0;width:100%}}@media (min-width:961px) and (max-width:1200px){.mec-full-calendar-wrap .mec-totalcal-box{padding:20px 20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:50%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{padding-bottom:20px!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select{min-width:calc(100% - 36px)}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select{min-width:calc(30% - 10px)}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3:last-child select{min-width:calc(50% - 19px)}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view{margin-right:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:10px;text-align:center}}@media (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box{padding:20px 20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:50%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{padding-bottom:10px!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select{min-width:calc(100% - 36px);margin-bottom:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view{margin-right:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:10px;text-align:center}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:100%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:absolute;top:20px}}@media (min-width:780px) and (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:absolute;top:20px}}@media(max-width:780px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select{width:calc(50% - 18px)!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:unset;padding-right:0}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:20%;text-align:center;font-size:10px}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 7px;margin-top:20px}}@media(max-width:480px){.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:20%;text-align:center;font-size:10px}}.mec-search-form{padding:20px 10px}.mec-search-form .mec-dropdown-wrap{display:table;width:100%}.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{padding:0 10px;float:left;min-height:55px}.mec-search-form .mec-date-search,.mec-search-form .mec-text-input-search{width:50%;min-height:36px;display:block}.mec-full-calendar-wrap .mec-search-form .mec-date-search,.mec-full-calendar-wrap .mec-search-form .mec-text-input-search{width:100%}.mec-full-calendar-wrap .mec-search-form .col-md-3,.mec-full-calendar-wrap .mec-search-form .col-md-5,.mec-full-calendar-wrap .mec-search-form .col-md-6,.mec-full-calendar-wrap .mec-search-form .col-md-8{padding:0}.mec-widget .mec-search-form .mec-date-search,.mec-widget .mec-search-form .mec-text-input-search{width:100%}.mec-widget .mec-search-form .mec-text-input-search{margin-top:10px}.mec-search-form .mec-date-search{clear:left}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:table-cell;float:none}.mec-widget .mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block}.mec-wrap .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select{width:calc(100% - 36px);margin-bottom:20px}.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 106px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}@media only screen and (max-width:767px){.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{width:100%;float:none}.mec-search-form .mec-date-search{min-height:55px}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:50%;float:left}}@media only screen and (max-width:960px){.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 124px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}}@media only screen and (max-width:479px){.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:100%;float:none}}.ui-datepicker{background-color:#fff;border:1px solid #66afe9;border-radius:4px;box-shadow:0 0 8px rgba(102,175,233,.6);display:none;margin-top:4px;padding:10px;width:240px}.ui-datepicker a,.ui-datepicker a:hover{text-decoration:none;cursor:pointer}.ui-datepicker a:hover,.ui-datepicker td:hover a{color:#2c6396;-webkit-transition:color .1s ease-in-out;-moz-transition:color .1s ease-in-out;-o-transition:color .1s ease-in-out;transition:color .1s ease-in-out}.ui-datepicker .ui-datepicker-header{margin-bottom:4px;text-align:center}.ui-datepicker .ui-datepicker-title{font-weight:700}.ui-datepicker .ui-datepicker-next,.ui-datepicker .ui-datepicker-prev{cursor:default;font-family:dashicons;-webkit-font-smoothing:antialiased;font-style:normal;font-weight:400;height:20px;line-height:1.4;margin-top:2px;width:20px}.ui-datepicker .ui-datepicker-prev{float:left;text-align:left}.ui-datepicker .ui-datepicker-next{float:right;text-align:center}.ui-datepicker .ui-datepicker-prev:before{content:"\f341"}.ui-datepicker .ui-datepicker-next:before{content:"\f345"}.ui-datepicker .ui-icon{display:none}.ui-datepicker .ui-datepicker-calendar{table-layout:fixed;width:100%}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker .ui-datepicker-calendar th{text-align:center;padding:4px 0}.ui-datepicker .ui-datepicker-calendar td{border-radius:4px;-webkit-transition:background-color .1s ease-in-out,color .1s ease-in-out;-moz-transition:background-color .1s ease-in-out,color .1s ease-in-out;-o-transition:background-color .1s ease-in-out,color .1s ease-in-out;transition:background-color .1s ease-in-out,color .1s ease-in-out}.ui-datepicker .ui-datepicker-calendar td:hover{background-color:#eee;cursor:pointer}.ui-datepicker .ui-datepicker-calendar td a{text-decoration:none}.ui-datepicker .ui-datepicker-current-day{background-color:#4289cc}.ui-datepicker .ui-datepicker-current-day a{color:#fff}.ui-datepicker .ui-datepicker-calendar .ui-datepicker-unselectable:hover{background-color:#fff;cursor:default}.mec-owl-theme .owl-dots .owl-dot{border:none}.event-carousel-type1-head .mec-event-image{position:relative;min-height:150px}.event-carousel-type1-head .mec-event-image img{width:100%}.mec-event-carousel-content .mec-event-carousel-title a{transition:all .2s ease}.event-carousel-type1-head .mec-event-date-carousel{position:absolute;top:25px;left:1px;font-size:41px;width:160px;color:#fff;font-weight:500;background-color:#40d9f1;padding-left:21px;height:97px;line-height:2.3;padding-right:85px}.event-carousel-type1-head .mec-event-date-carousel:after{content:"";position:absolute;display:inline-block;z-index:-1;bottom:-13px;left:5px;width:0;border-width:13px;border-style:solid;border-color:transparent transparent #40d9f1 transparent;transform:rotate(45deg)}.event-carousel-type1-head .mec-event-date-info{font-size:12px;font-weight:300;position:absolute;top:27px;left:75px}.event-carousel-type1-head .mec-event-date-info-year{font-size:12px;font-weight:300;position:absolute;top:45px;left:75px}.mec-event-carousel-content{border:1px solid #e8e8e8;border-top:none;margin-top:-5px;padding:34px 9px 11px 37px}.mec-event-carousel-content .mec-event-carousel-title a{font-size:23px;font-weight:500;color:#000;letter-spacing:-1px}.mec-event-carousel-content p{font-size:14px;color:#7a7272;font-weight:300}.mec-owl-crousel-skin-type1 .owl-item .mec-event-article{padding:0 19px}.mec-event-carousel-type1 .owl-page.active span{background-color:#00aeef;height:14px;width:14px}.mec-event-carousel-type1 .mec-event-carousel-content{margin-bottom:15px;box-shadow:0 1px 2px rgba(0,0,0,.04);transition:all .27s ease}.mec-event-carousel-type1 .mec-event-carousel-content:hover{box-shadow:0 0 35px rgba(0,0,0,.07)}@media only screen and (min-width:768px) and (max-width:1000px),(min-width:270px) and (max-width:448px){.event-carousel-type1-head .mec-event-date-carousel{font-size:25px;line-height:2.5;padding-right:70px;height:64px;width:120px}.event-carousel-type1-head .mec-event-date-carousel:after{left:7px}.event-carousel-type1-head .mec-event-date-info{font-size:10px;top:13px;left:55px}.event-carousel-type1-head .mec-event-date-info-year{font-size:10px;top:25px;left:55px}.event-carousel-type1-head .mec-event-date-carousel:after{top:48px}}.event-carousel-type2-head{background:#fff;border:1px solid #e6e6e6}.event-carousel-type2-head .mec-event-carousel-content-type2{margin-top:15px;min-height:182px}.event-carousel-type2-head .mec-event-carousel-content-type2 .mec-event-date-info{font-size:15px;color:#9a9a9a;font-weight:300}.event-carousel-type2-head .mec-event-carousel-content-type2 .mec-event-carousel-title{font-size:26px;font-weight:700;color:#1c1d21;margin-top:15px;letter-spacing:-1px}.mec-event-carousel-content-type2 .mec-event-carousel-title a{color:inherit}.mec-event-carousel-type2 .event-carousel-type2-head .mec-event-carousel-content-type2 p{font-size:16px;font-weight:300;color:#444}.event-carousel-type2-head .mec-event-footer-carousel-type2{margin-top:33px;position:relative}.mec-event-carousel-type2 .mec-event-footer-carousel-type2 .mec-event-sharing-wrap{left:0}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-event-sharing-wrap>li{border:none;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button{border:1px solid #e4e4e4;float:right;padding:7px 23px 7px;font-size:12px;text-transform:uppercase;color:#707070;font-weight:500;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button:hover{color:#fff}.mec-event-article .event-carousel-type2-head{padding:10%;margin-right:-1px}.mec-event-carousel-type2 .mec-owl-carousel .owl-wrapper-outer{border-right:1px solid #e6e6e6}.mec-wrap .mec-event-carousel-type2 .owl-next,.mec-wrap .mec-event-carousel-type2 .owl-prev,.mec-wrap .mec-event-carousel-type3 .owl-next,.mec-wrap .mec-event-carousel-type3 .owl-prev,.mec-wrap .mec-event-carousel-type4 .owl-next,.mec-wrap .mec-event-carousel-type4 .owl-prev{transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:47%;background-color:transparent!important}.mec-event-carousel-type2 .owl-next{right:-60px}.mec-event-carousel-type2 .owl-prev{left:-60px}.mec-event-carousel-type2 .owl-next i,.mec-event-carousel-type2 .owl-prev i,.mec-event-carousel-type3 .owl-next i,.mec-event-carousel-type3 .owl-prev i,.mec-event-carousel-type4 .owl-next i,.mec-event-carousel-type4 .owl-prev i{font-size:40px;color:#282828}.mec-event-carousel-type2 .owl-next i:hover,.mec-event-carousel-type2 .owl-prev i:hover,.mec-event-carousel-type3 .owl-next i:hover,.mec-event-carousel-type3 .owl-prev i:hover{color:#000;cursor:pointer}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}@media only screen and (min-width:320px) and (max-width:768px){.mec-event-carousel-type2 .owl-next,.mec-event-carousel-type2 .owl-prev,.mec-event-carousel-type3 .owl-next,.mec-event-carousel-type3 .owl-prev,.mec-event-carousel-type4 .owl-next,.mec-event-carousel-type4 .owl-prev{position:initial;top:100%}}.mec-event-carousel-type3 .mec-event-article{margin:0 10px}.event-carousel-type3-head .mec-event-image,.event-carousel-type3-head .mec-event-image img{width:100%;height:auto}.event-carousel-type3-head .mec-event-footer-carousel-type3{background:#fff;display:inline-block;width:calc(100% - 40px);margin-top:-74px;position:relative;margin-left:20px;margin-right:20px;margin-bottom:6px;padding:8% 11%;box-shadow:0 2px 10px -2px rgba(0,0,0,.2)}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button{border:1px solid #e4e4e4;text-transform:uppercase;float:right;padding:7px 23px 7px;font-size:12px;color:#707070;font-weight:500}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button:hover{color:#fff}.mec-event-footer-carousel-type3 span{font-size:15px;color:#9a9a9a;font-weight:300;display:block;margin-top:30px}.mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:29px;font-weight:700}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:26px;font-weight:700;color:#1c1d21;margin-top:15px;letter-spacing:-1px}.mec-event-footer-carousel-type3 .mec-event-carousel-title a{color:inherit}.event-carousel-type3-head .mec-event-footer-carousel-type3 p{font-size:16px;font-weight:300;color:#444!important;margin-bottom:36px}.mec-event-carousel-type3 .owl-next{right:-70px}.mec-event-carousel-type3 .owl-prev{left:-70px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap{left:11%}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}.event-carousel-type3-head .mec-end-date-label{display:inline;margin-left:2px}.event-carousel-type4-head.clearfix{position:relative;overflow:hidden;background:#fff}.event-carousel-type4-head .mec-event-overlay{position:absolute;left:0;right:0;bottom:0;top:0;width:auto;height:auto;background-color:rgba(36,36,36,.4);transition:all .33s ease-in-out}.mec-event-hover-carousel-type4{font-size:15px;color:#fff;position:absolute;bottom:0;padding:50px 35px;transition:all .33s ease-in-out;opacity:0;visibility:hidden}.mec-event-carousel-type4 .mec-event-article{margin:0 10px}.mec-event-carousel-type4 .mec-event-article:hover .mec-event-hover-carousel-type4{opacity:1;visibility:visible}.mec-event-hover-carousel-type4 .mec-event-icon{font-size:18px;float:left;margin-right:14px;color:#fff;padding:13px}.mec-event-hover-carousel-type4 .mec-event-date{font-size:11px;text-transform:uppercase;font-weight:400;line-height:1.6}.mec-event-hover-carousel-type4 .mec-event-date span{display:block;font-weight:700;font-size:14px}.mec-event-hover-carousel-type4 .mec-event-title{color:#fff;margin:20px 0 38px;font-size:16px;font-weight:700;text-transform:uppercase;font-style:normal}.mec-event-hover-carousel-type4 .mec-btn-wrapper{text-align:left}.mec-event-hover-carousel-type4 .mec-event-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:10px 14px;letter-spacing:1.5px;font-size:11px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none}.mec-event-hover-carousel-type4 .mec-event-button:hover{color:#191919;background-color:#fff;border-color:#fff;border-radius:1px}.mec-event-carousel-type4 .owl-next{right:-70px}.mec-event-carousel-type4 .owl-prev{left:-70px}.mec-carousel-type4-head{margin-bottom:25px}.mec-carousel-type4-head-title{padding:0 11px;text-align:left;font-weight:700;font-size:20px;color:#000}.mec-carousel-type4-head-link{text-align:right;padding:0 11px}.mec-carousel-type4-head-link a{background:#222;color:#fff;padding:10px 38px;transition:all .3s ease}.mec-carousel-type4-head-link a:hover,.mec-carousel-type4-head-link a:visited{color:#fff}@media (max-width:960px){.mec-event-carousel-type4 .owl-stage{left:-50px}}.mec-wrap .mec-event-countdown-style1{color:#fff;padding:0!important;display:table;background:#437df9}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1{z-index:5;padding:50px 1% 50px 4%;display:table-cell;float:none;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2{background-color:rgba(0,0,0,.05);height:100%;padding-top:0;display:table-cell;float:none;position:relative;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{background-color:#f8f8f8;display:table-cell;float:none;text-align:center;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style1 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{content:"";position:absolute;display:inline-block;z-index:1;top:50%;margin-top:-11px;right:-24px;width:0;border-width:12px;border-style:solid;border-color:transparent transparent transparent #4077ed}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style1 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto}.mec-event-countdown-style1 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style1 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (min-width:1200px){.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%}}@media (max-width:960px){.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%;transform:rotate(90deg)}}@media (max-width:480px){.mec-event-countdown-style1 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{padding:10px 5px;min-width:50px;margin:3px 1px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:8px}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{display:inline}}.mec-wrap .mec-event-countdown-style2{color:#fff;padding:30px 0;background:#437df9;max-width:600px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part3{width:100%;float:none;vertical-align:middle;padding:50px 10% 50px 10%}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2{padding-top:12%;padding-bottom:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style2 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date-place{text-align:left;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 8px}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#222;background:#fff;transition:all .24s ease}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button:hover{background:#222;color:#fff}.mec-event-countdown-style2 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0}.mec-event-countdown-style2 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style2 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (max-width:767px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:80px;padding:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:26px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:11px}}@media only screen and (max-width:479px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:40px;padding:15px 10px;margin:2px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:20px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:9px}}@media (max-width:380px){.mec-event-countdown-style2 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{padding:10px 4px;margin:4px 1px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:7px}}.mec-wrap .mec-event-countdown-style3{color:#fff;padding:0;background:#282828;display:table;width:100%}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1{width:68%;padding:50px 1% 50px 4%;vertical-align:middle;display:table-cell;position:relative}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:32%;display:table-cell;position:relative;padding-bottom:0;padding-top:0}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 img{width:100%;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{font-weight:300;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{color:#fff;font-size:36px;letter-spacing:-2px;font-weight:700;line-height:1;margin-top:-10px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style3 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style3 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto;position:absolute;top:40px;right:20px}.mec-event-countdown-style3 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style3 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:11px;color:#888;margin:8px 0 0;line-height:1}.mec-event-countdown-style3 .mec-event-date{width:176px;height:96px;background:#40d9f1;color:#fff;font-size:13px;position:absolute;left:-27px;top:146px}.mec-event-countdown-style3 .mec-event-date:after{content:"";position:absolute;display:inline-block;z-index:1;bottom:-18px;left:8px;width:0;border-width:19px;border-style:solid;border-color:transparent transparent #40d9f1 transparent;transform:rotate(45deg)}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:50px;position:absolute;top:36px;left:12px;letter-spacing:-3px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:80px;top:26px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:80px;top:45px}.mec-event-countdown-style3 .mec-event-countdown-part-details{padding-top:35px;margin-bottom:50px;min-height:100px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-title{font-size:17px;color:#fff;line-height:1.4;padding-right:20px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link{color:#fff;font-size:12px;position:relative;padding-left:22px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link:before{content:"";display:inline-block;width:18px;border-top:1px solid #fff;position:absolute;left:0;top:8px}.mec-event-countdown-style3 .mec-event-title-link{position:absolute;left:190px;top:152px}.event-carousel-type1-head .mec-event-date-carousel:before,.mec-event-countdown-style3 .mec-event-date:before{content:'';position:absolute;left:0;bottom:0;z-index:2;width:100%;height:96px;background:0 0;display:inline-block;box-shadow:0 5px 5px rgba(0,0,0,.12)}@media only screen and (min-width:960px){.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown li{padding:10px}.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:31px}}@media (max-width:959px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:100%;display:block}.mec-event-countdown-style3 .mec-event-title-link{top:190px}.mec-event-countdown-style3 .mec-event-countdown{top:96px}.mec-event-countdown-style3 .mec-event-date{left:0;top:190px}.mec-event-countdown-style3 .mec-event-date:after{display:none}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{display:inline}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:150px}}@media (max-width:767px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:26px;letter-spacing:-1px}.mec-event-countdown-style3 .mec-event-title-link{left:130px}.mec-event-countdown-style3 .mec-event-date{width:120px;font-size:10px;height:63px}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:36px;top:20px;left:4px;letter-spacing:-2px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:52px;top:12px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:52px;top:28px}}@media (max-width:380px){.mec-event-countdown-style3 .mec-event-title-link{left:10px;top:260px}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:300px}.mec-event-countdown-style3 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:10px 5px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:8px}}.mec-slider-t1-wrap{width:100%;padding:60px 90px;background:#f7f7f7;min-height:560px;position:relative}.mec-slider-t1{height:500px;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t1 .mec-event-article{position:relative;height:500px}.mec-slider-t1 .mec-slider-t1-img{position:relative;background-size:cover!important;background-position:center!important;width:50%;height:100%;float:right;margin:0;overflow:hidden}.mec-slider-t1 .mec-slider-t1-content{width:50%;float:left;height:100%;background:#fff;padding:6%}.mec-slider-t1-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t1-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:54px;height:54px;line-height:48px;border-radius:0;text-align:center;background:#fff;box-shadow:0 2px 11px 0 rgba(0,0,0,.045);transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-27px;cursor:pointer}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 29px 0 rgba(0,0,0,.095)}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:12px;color:#282828;transition:all .21s ease}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{font-size:13px;color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t1{margin:0 auto;max-width:900px}}@media only screen and (max-width:960px){.mec-slider-t1 .mec-slider-t1-content,.mec-slider-t1 .mec-slider-t1-img{width:100%;float:none}.mec-slider-t1 .mec-slider-t1-img{height:300px}.mec-slider-t1,.mec-slider-t1 .mec-event-article{height:auto}}@media only screen and (max-width:768px){.mec-slider-t1-wrap{padding:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:10px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}}@media only screen and (max-width:479px){.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t2-wrap{width:100%;padding:0;background:#fff;min-height:600px;position:relative}.mec-slider-t2 .mec-event-article{height:600px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t2 .mec-slider-t2-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:70%;height:100%;margin:0;overflow:hidden}.mec-slider-t2 .mec-slider-t2-content{width:50%;position:absolute;right:0;top:60px;bottom:60px;padding:5%}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern *{color:#fff}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-content,.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t2-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:84px;cursor:pointer}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}.mec-wrap.colorskin-custom .mec-slider-t2 .mec-event-article .mec-event-date.mec-color{color:#fff}@media only screen and (min-width:961px){.mec-slider-t2{margin:0 auto;max-width:1200px}}@media only screen and (max-width:960px){.mec-slider-t2 .mec-slider-t2-content,.mec-slider-t2 .mec-slider-t2-img{width:100%;float:none;position:static}.mec-slider-t2 .mec-slider-t2-img{height:300px}.mec-slider-t2 .mec-event-article{height:auto}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px}}@media only screen and (max-width:479px){.mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:22px}}.mec-slider-t3-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t3 .mec-event-article{height:700px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t3 .mec-slider-t3-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;opacity:.68;z-index:1}.mec-slider-t3 .mec-slider-t3-content{width:50%;height:auto;vertical-align:middle;display:table;position:absolute;left:0;top:0;bottom:0;padding:0 2% 0 7%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t3 .mec-slider-t3-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-content,.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-slider-t3-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t3-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{border-color:#40d9f1}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-22px;cursor:pointer}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next{right:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:50px;font-weight:300}.mec-slider-t3-content.mec-event-grid-modern .mec-event-description{font-size:19px}}@media only screen and (max-width:767px){.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}}@media only screen and (max-width:479px){.mec-slider-t3 .mec-slider-t3-content{width:100%}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t4-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t4 .mec-event-article{height:700px;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t4 .mec-slider-t4-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;z-index:1}.mec-slider-t4 .mec-slider-t4-content{width:auto;max-width:700px;background:rgba(37,37,37,.94)!important;height:auto;vertical-align:middle;display:table;position:absolute;left:8%;top:19%;padding:3%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t4 .mec-slider-t4-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-content,.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:13px;padding:0 42px;line-height:49px;height:50px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t4-content.mec-event-grid-modern .mec-slider-t4-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next{right:60px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{right:112px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:767px){.mec-slider-t4 .mec-slider-t4-content{width:100%;left:0;top:auto;bottom:0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t5-wrap{width:auto;max-width:570px;padding:0;margin:0 auto 25px;background:#f7f7f7;min-height:480px;position:relative}.mec-slider-t5{height:auto;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t5 .mec-event-article{position:relative;height:auto}.mec-slider-t5 .mec-slider-t5-img{position:relative;background-size:cover!important;background-position:center!important;width:100%;height:300px;float:none;margin:0;overflow:hidden}.mec-slider-t5 .mec-slider-t5-content{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-slider-t5 .mec-events-content p{margin-bottom:20px}.mec-slider-t5-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t5-wrap .mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:14px 34px;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t5 .mec-slider-t5-col6{width:50%;float:left;height:100%}.mec-slider-t5 .mec-slider-t5-col6 i{font-size:42px;float:left;margin-right:7px;height:58px}.mec-slider-t5 .mec-slider-t5-col6 h6{text-transform:uppercase;font-size:17px;padding:4px 0;display:inline;color:#444}.mec-slider-t5 .mec-slider-t5-col6 address{font-size:12px;margin-bottom:0}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t5-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:768px){.mec-slider-t5 .mec-slider-t5-col6{width:100%;margin:10px 0}}@media only screen and (max-width:479px){.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.mec-single-modern .mec-events-event-image{text-align:center}.mec-single-modern .mec-events-event-image img{width:100%}.mec-single-modern .mec-single-event-bar{background-color:#f7f7f7;margin:20px 0 0;padding:15px;display:table;width:100%}.mec-single-modern .mec-single-event-bar>div{display:table-cell}.mec-single-modern .mec-single-event-bar>div i{font-size:20px;vertical-align:middle}.mec-single-modern .mec-single-event-bar>div .mec-time-comment{font-size:12px;color:#999}.mec-single-modern .mec-single-event-bar>div h3{text-transform:uppercase;font-size:16px;font-weight:700;padding-bottom:5px;display:inline;color:#000;padding-left:10px}.mec-single-modern .mec-single-event-bar>div dd{font-size:14px;color:#8d8d8d;padding-left:34px;margin-bottom:0}.mec-single-modern .col-md-4 .mec-frontbox{margin-top:-50px;margin-bottom:70px;padding:20px;border:none;background:#f7f7f7;box-shadow:none}.mec-next-occurrence li{list-style:none}@media only screen and (min-width:960px){.mec-single-modern .col-md-4 .mec-frontbox{margin-left:20px}}@media only screen and (max-width:960px){.mec-single-modern .mec-single-event-bar>div{display:block}}.lity-content>div{overflow:auto}.mec-next-event-details li{list-style:none;margin-top:20px}.mec-next-event-details h6{text-transform:uppercase;font-size:13px;padding-bottom:5px;display:inline;color:#222;padding-left:0}.mec-next-event-details abbr{display:block;padding-left:12px;color:#8d8d8d}.mec-next-event-details i{margin-right:10px;margin-left:12px}.mec-next-event-details i:before{color:#40d9f1}.mec-next-event-details a{text-align:center;display:block;background:#fff;padding:6px 0;font-size:11px;font-weight:400;letter-spacing:0;border:1px solid #e3e3e3;transition:.3s}.mec-single-modal.mec-single-modern .mec-single-title{text-align:center;padding:15px 10px 0}.admin-bar .mec-single-modal.mec-single-modern .mec-single-title{padding-top:40px}.mec-single-modal.mec-single-modern .mec-single-event-bar{padding:5px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div dd{font-size:13px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div h3{font-size:15px}@media only screen and (min-width:960px){.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-left:0}}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-top:10px;margin-bottom:10px}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox.mec-event-meta{padding:0}.mec-single-modal .mec-event-meta dd.mec-organizer-email a,.mec-single-modal .mec-event-meta dd.mec-organizer-url a{font-size:12px;display:block}.mec-modal-wrap{max-width:60vw;max-height:90vh!important;background:#fff;box-shadow:0 1px 55px rgba(0,0,0,.5);overflow-x:hidden!important}@media(max-width:1023px){.mec-modal-wrap{max-width:80vw}}.mec-single-modal .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li,.mec-single-modal .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a.mec-events-button{display:block;text-align:center}body .featherlight .featherlight-content{background:0 0;overflow:unset;z-index:9999}body .featherlight .featherlight-close-icon{position:fixed;top:40px;right:40px;background:0 0;color:#fff;border:1px solid #fff;border-radius:0}body .featherlight .featherlight-close-icon:hover{background:#fff;color:#000;border:1px solid #000}@media (max-width:320px){.mec-wrap span.flip-clock-divider{width:20px}.mec-single-event .mec-events-meta-group-countdown{padding:15px 12%}}@media (max-width:414px){.mec-wrap span.flip-clock-divider{width:30px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 7%}}@media (max-width:480px){.mec-wrap span.flip-clock-divider{width:7px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 1%}}@media(max-width:1366px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:20px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 15px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:48px}}@media(max-width:1280px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:14px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:15px 10px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:38px}}@media(min-width:961px) and (max-width:1024px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:7px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:15px 5px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:14px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul li a div{font-size:30px}}@media(max-width:640px){body .mec-modal-wrap .mec-single-modal.featherlight-close-icon{top:14px;right:14px}}@media(max-width:480px){.featherlight .featherlight-content,body .mec-modal-wrap{max-width:100%}body .mec-modal-wrap.flip-clock-divider .flip-clock-label{display:block}}@media (max-width:414px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:50px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 65px}body .featherlight-content .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 2px 20px 2px!important}body .featherlight-content .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:3px!important}}@media (max-width:375px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:50px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 45px}}@media (max-width:320px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:20px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 40px}}.mec-events-toggle{max-width:960px;margin-left:auto;margin-right:auto}.mec-events-toggle .mec-toggle-item{border:1px solid #e4e4e4;margin-bottom:15px;box-shadow:0 10px 15px #f3f3f3}.mec-events-toggle .mec-toggle-item-inner{cursor:pointer;position:relative;padding:30px 60px 30px 15px;background:#fff;transition:all .3s ease;min-height:100px;display:table;width:100%;border-collapse:separate}.mec-events-toggle .mec-toggle-item-inner:hover{background:#fbfbfb}.mec-toggle-item-col{width:200px;border-right:1px solid #e3e3e3;margin-right:15px;display:table-cell;padding-right:5px}.mec-toggle-item-col .mec-event-date{font-size:38px;line-height:40px;float:left;margin-right:8px}.mec-toggle-item-col .mec-event-month{text-transform:uppercase;font-size:12px;line-height:14px;padding-top:4px;font-weight:700}.mec-toggle-item-col .mec-event-detail{font-size:10px}.mec-toggle-item-col .mec-event-day{margin-top:9px;color:silver;font-family:Roboto,sans-serif;font-size:35px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.mec-events-toggle .mec-toggle-title{color:#000;font-size:23px;font-weight:600;margin-bottom:0;transition:all .3s ease;display:table-cell;text-align:left;max-width:calc(100% - 200px);padding-left:15px;vertical-align:middle}.mec-events-toggle .mec-toggle-item-inner span.event-color{width:5px;height:100%;position:absolute;left:-1px;top:0;bottom:0;border-radius:0;margin:0}.mec-events-toggle .mec-toggle-item-inner i{position:absolute;font-size:30px;right:25px;top:50%;transform:translate(0,-50%);cursor:pointer}.mec-events-toggle .mec-toggle-item.is-open i.mec-sl-plus:before{content:"\e615"}.mec-events-toggle .mec-toggle-item.is-open .mec-toggle-title{background:#f8f8f8;cursor:pointer}.mec-events-toggle .mec-toggle-content{border-top:1px solid #e4e4e4}.mec-events-toggle .mec-toggle-content .mec-modal-wrap{margin:0;max-width:100%;box-shadow:none}.mec-events-toggle .mec-toggle-content .mec-modal-wrap .mec-single-event{margin:0}.mec-events-toggle .mec-toggle-content .mec-single-event-bar,.mec-events-toggle .mec-toggle-content h1.mec-single-title{display:none}.mec-events-toggle .media-links a{margin-bottom:0}.mec-events-toggle .mec-toggle-content .mec-toggle-meta{margin-bottom:14px}.mec-events-toggle #mec_speakers_details.mec-frontbox{padding:0;margin:0}.mec-events-toggle .mec-toggle-item h3.mec-speakers{border:none;text-align:left}.mec-events-toggle .mec-toggle-item h3.mec-speakers:before{content:"\e063";font-family:simple-line-icons;border:none;position:relative;display:inline-block;left:unset;bottom:unset;font-size:22px;font-weight:400;padding:0 11px 0 28px;vertical-align:middle}@media only screen and (max-width:767px){.mec-toggle-item-inner .mec-toggle-item-col{float:none;width:100%;border-right:none;margin-bottom:5px;display:block;max-width:100%;padding-left:15px}.mec-events-toggle .mec-toggle-title{display:block;width:100%;max-width:100%}}.mec-events-agenda-wrap{margin:10px 0;border:1px solid #e9e9e9;padding-left:20px;box-shadow:0 2px 2px rgba(0,0,0,.03)}.mec-events-agenda{padding:0;border-bottom:1px solid #e9e9e9;overflow:hidden}.mec-agenda-date-wrap{width:210px;padding-top:15px;float:left;font-size:13px}.mec-agenda-date-wrap i,.mec-agenda-event i{font-size:11px;color:#aaa;margin-right:4px;margin-left:1px}.mec-agenda-event i{vertical-align:middle;margin-right:1px}.mec-agenda-events-wrap{float:left;width:calc(100% - 210px);background:#f9f9f9;padding:15px}.mec-agenda-time{font-size:11px;color:#707070;padding-right:10px;width:138px;display:inline-block}.mec-agenda-event-title{position:relative;padding-left:14px}.mec-agenda-event-title a{font-family:Roboto,Montserrat,Helvetica,Arial,sans-serif;font-size:14px;font-weight:600;color:#333}.mec-agenda-event-title span.event-color{width:9px;height:9px;position:absolute;left:0;top:4px;margin:0}.mec-agenda-date-wrap span.mec-agenda-day{color:#aaa;font-size:12px}@media only screen and (max-width:767px){.mec-agenda-date-wrap,.mec-agenda-events-wrap{float:none;width:100%}.mec-events-agenda span.mec-agenda-event-title{display:block;width:100%}.mec-agenda-event-title span.event-color{top:7px}.mec-agenda-event-title a{font-size:13px}}.mec-yearly-view-wrap{margin:0 0 15px;border:1px solid #e6e6e6;box-shadow:0 2px 4px rgba(0,0,0,.04);border-bottom-width:4px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar{max-width:100%;width:232px;padding:10px;background:#fff;margin:10px;display:inline-block}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar dl dt{transition:none;height:30px;width:30px;line-height:30px;border-radius:0;font-size:12px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar .mec-calendar-events-sec{padding:10px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar .mec-has-event:after{width:4px;height:4px;bottom:3px;margin-left:-2px}.mec-yearly-view-wrap .mec-calendar-side .mec-calendar-table{min-height:200px}.mec-calendar.mec-yearly-calendar .mec-calendar-table-head dl dt{background:#f9f9f9;font-size:13px}.mec-calendar.mec-yearly-calendar .mec-calendar-table-title{text-align:center;font-size:15px;font-weight:700;color:#222;margin-top:-5px;padding-bottom:5px}.mec-yearly-view-wrap .mec-yearly-calendar-sec{min-height:200px;width:538px;overflow:hidden;float:left;background:#f8f8f8;padding:15px}.mec-yearly-view-wrap .mec-yearly-agenda-sec{min-height:200px;width:calc(100% - 538px);float:left;padding:0 0 0 20px;overflow:hidden}.mec-yearly-view-wrap .mec-yearly-title-sec{position:relative;padding:15px;text-align:center;border-bottom:1px solid #e6e6e6;box-shadow:0 1px 3px rgba(0,0,0,.02)}.mec-yearly-view-wrap .mec-yearly-title-sec h2{font-size:30px;line-height:40px;color:#333;margin:0;font-weight:700}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year,.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year{position:absolute;top:50%;margin-top:-15px;min-width:30px;height:30px;line-height:30px;padding:0 8px;text-align:center;background:#fff;color:#666;font-size:14px;border:1px solid #eee;border-radius:2px;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease;cursor:pointer}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year{right:auto;left:20px;padding-right:14px}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year{left:auto;right:20px;padding-left:14px}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year i,.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-yearly-view-wrap .mec-events-agenda.mec-selected{box-shadow:-10px 0 0 0 #fffcf2,0 -1px 0 #fbebb6;background:#fffcf2;border-color:#fbebb6;color:#f9af29}@media only screen and (max-width:959px){.mec-yearly-view-wrap .mec-yearly-calendar-sec{width:268px;padding:10px 5px}.mec-yearly-view-wrap .mec-yearly-agenda-sec{width:calc(100% - 268px);padding:0 0 0 10px}}@media only screen and (max-width:767px){.mec-yearly-view-wrap .mec-yearly-agenda-sec,.mec-yearly-view-wrap .mec-yearly-calendar-sec{width:100%;float:none}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar{width:auto}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar dl dt{width:14.2%}.mec-yearly-view-wrap .mec-yearly-title-sec h2{font-size:25px}}.mec-yearly-view-wrap .mec-agenda-event i,.mec-yearly-view-wrap .mec-agenda-time{display:none}@media only screen and (min-width:768px){.mec-yearly-view-wrap .mec-events-agenda-wrap{margin-top:0;border:none;padding-left:0;box-shadow:none}.mec-yearly-view-wrap .mec-agenda-date-wrap{width:174px;font-size:11px;padding-top:10px}.mec-yearly-view-wrap .mec-agenda-events-wrap{width:calc(100% - 174px);padding:10px}.mec-yearly-view-wrap .mec-agenda-event-title a{font-size:13px}.mec-yearly-view-wrap .mec-agenda-event-title span.event-color{width:8px;height:8px}.mec-yearly-view-wrap .mec-agenda-date-wrap span.mec-agenda-day{font-size:11px}.mec-yearly-view-wrap .mec-yearly-calendar-sec{box-shadow:-2px 0 5px rgba(0,0,0,.03) inset}}@media only screen and (max-width:1200px){.mec-yearly-view-wrap .mec-agenda-event-title a{font-size:12px;padding-right:6px}}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table{padding-bottom:10px;border-bottom:none}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt:hover{cursor:pointer}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-has-no-event,.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-has-no-event:hover{color:#bbb;cursor:default}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-day-active{background:#40d9f1;color:#fff;position:relative}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-day-active:after{content:'';position:absolute;display:block;bottom:-20px;left:50%;margin-left:-10px;width:0;border-width:10px;border-style:solid;border-color:#40d9f1 transparent transparent transparent}.mec-timetable-events-list{padding:10px 20px;border:none;margin:0}.mec-timetable-events-list .mec-timetable-event{padding:10px 0;border-bottom:1px dashed #ddd}.mec-timetable-events-list .mec-timetable-event:last-child{border:none}.mec-timetable-event .mec-timetable-event-span{font-size:12px;color:#444;padding-right:30px;line-height:22px}.mec-timetable-events-list .mec-timetable-event i{font-size:13px;color:#aaa;margin-right:3px;vertical-align:baseline}.mec-timetable-event .mec-timetable-event-span a{color:#333}.mec-timetable-event .mec-timetable-event-time{font-size:11px}.mec-timetable-event .mec-timetable-event-time i{vertical-align:text-bottom}.mec-timetable-event .mec-timetable-event-title{font-size:13px}.mec-timetable-event .mec-timetable-event-title .event-color{width:10px;height:10px}.mec-timetable-events-list .mec-timetable-event.mec-util-hidden{display:none}.mec-timetable-events-list.mec-util-hidden{display:none}@media only screen and (min-width:768px){.mec-timetable-events-list{display:table;width:100%;margin:10px 0 20px}.mec-timetable-events-list .mec-timetable-event{display:table-row;padding:0;border:none;background:#fff}.mec-timetable-events-list .mec-timetable-event:hover{background:#fafafa}.mec-timetable-event .mec-timetable-event-span{display:table-cell;padding:10px 15px;border-bottom:1px solid #ebebeb}.mec-timetable-events-list .mec-timetable-event:last-child .mec-timetable-event-span{border-bottom:none}}@media only screen and (max-width:767px){.mec-timetable-event .mec-timetable-event-title{display:block;width:100%;padding:5px 0 10px;font-weight:700}}.mec-timetable-t2-wrap{border:1px solid #e6e6e6;background:#fafafa;padding:0 15px 15px;overflow:hidden;box-shadow:0 3px 2px 0 rgba(0,0,0,.012)}.mec-timetable-t2-col{width:20%;float:left;min-height:20px;padding-right:1px;background:0 0}.mec-ttt2-title{background:#fafafa;color:#333;font-size:13px;font-weight:600;text-transform:uppercase;letter-spacing:1px;text-align:center;padding:25px 10px 10px;margin-bottom:1px}.mec-timetable-t2-col .mec-event-article{position:relative}.mec-timetable-t2-col .mec-event-article .event-color{position:absolute;width:auto;height:auto;left:0;right:0;top:0;bottom:0;margin:0;z-index:1;border-radius:2px}.mec-timetable-t2-content{position:relative;z-index:2;color:#fff;padding:15px 15px 20px;text-align:left;height:130px;margin-bottom:1px;overflow:hidden}.mec-timetable-t2-content .mec-event-title{line-height:22px;margin-bottom:13px;white-space:nowrap;padding-right:1px;overflow:hidden}.mec-timetable-t2-content .mec-event-title a{color:#fff;font-size:15px;font-weight:600;white-space:nowrap;overflow:hidden}.mec-timetable-t2-content div{color:#fff;font-size:11px;font-weight:400;line-height:19px;white-space:nowrap}.mec-timetable-t2-content div i{font-size:12px;margin-right:4px}@media only screen and (max-width:960px){.mec-timetable-t2-col{width:100%;float:none}}@media(min-width:961px){.mec-timetable-col-7{width:14.28%}.mec-timetable-col-6{width:16.6666%}}.mec-weather-box{padding:15px 0}.mec-weather-head{min-height:90px;padding:5px 0;clear:both;overflow:hidden;margin-bottom:25px;border-radius:10px;background:#238af5;position:relative}.mec-weather-icon-box{float:left;width:80px;height:80px;border-radius:10px;overflow:hidden;background:#238af5}.mec-weather-icon{width:80px;height:80px;display:inline-block;border-radius:10px}.mec-weather-summary{float:left;width:calc(100% - 80px);padding-left:10px;margin:10px 0;height:60px}.mec-weather-summary-report{font-size:15px;color:rgba(255,255,255,.68);margin-bottom:6px}.mec-weather-summary-temp{font-family:Roboto,Sans-serif;font-weight:300;color:#fff;font-size:29px;line-height:1}.degrees-mode{background:rgba(0,0,0,.2);cursor:pointer;font-weight:300;font-size:18px;padding:4px 5px;line-height:1;color:#fff;position:absolute;border-radius:8px;bottom:16px;left:16px}.mec-weather-extras{width:auto;padding:10px 15px 0 15px;float:right;min-height:80px;color:#fff;font-size:13px;line-height:1}.mec-weather-extras{width:auto;padding:10px 15px 0 15px;float:right;min-height:80px;color:#fff;font-size:13px;line-height:1}.mec-weather-extras div{line-height:20px;height:20px}.mec-weather-extras span{color:rgba(255,255,255,.68);font-size:12px;text-transform:uppercase}.mec-weather-extras var{font-size:11px;letter-spacing:.4px}.mec-weather-icon.clear-day,.mec-weather-icon.clear-night{background-image:url(../img/mec-weather-icon-01.png)}.mec-weather-icon.partly-sunny-day,.mec-weather-icon.partly-sunny-night{background-image:url(../img/mec-weather-icon-02.png)}.mec-weather-icon.partly-cloudy-day,.mec-weather-icon.partly-cloudy-night{background-image:url(../img/mec-weather-icon-03.png)}.mec-weather-icon.cloudy,.mec-weather-icon.fog,.mec-weather-icon.wind{background-image:url(../img/mec-weather-icon-04.png)}.mec-weather-icon.thunderstorm{background-image:url(../img/mec-weather-icon-05.png)}.mec-weather-icon.rain{background-image:url(../img/mec-weather-icon-06.png)}.mec-weather-icon.hail,.mec-weather-icon.sleet,.mec-weather-icon.snow{background-image:url(../img/mec-weather-icon-07.png)}.mec-av-spot-wrap{width:auto;max-width:1200px;padding:0;margin:0 auto 25px;background:#f7f7f7;min-height:480px;position:relative}.mec-av-spot{height:auto;border:1px solid #eee;box-shadow:0 6px 12px -4px rgba(0,0,0,.05)}.mec-av-spot .mec-event-article{position:relative;height:auto}.mec-av-spot .mec-av-spot-img{position:relative;background-size:cover!important;background-position:center!important;width:100%;height:330px;float:none;margin:0;overflow:hidden}.mec-av-spot .mec-av-spot-content,.mec-av-spot .mec-av-spot-head{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-av-spot .mec-av-spot-head{background:#222;color:#fff;min-height:80px}.mec-av-spot .mec-av-spot-head .mec-av-spot-box{padding-top:25px;font-size:13px;color:#ddd}.mec-av-spot .mec-av-spot-head .mec-av-spot-box span{color:#40d9f1;font-size:40px;font-weight:700;font-style:italic}.mec-av-spot .mec-av-spot-head .mec-event-countdown{text-align:center;padding-top:10px;display:table;table-layout:fixed;margin:0 auto;float:right}.mec-av-spot .mec-av-spot-head .mec-event-countdown li{display:table-cell;padding:10px 20px;position:relative;height:60px}.mec-av-spot .mec-av-spot-head .mec-event-countdown p{margin-bottom:0}.mec-av-spot .mec-events-content p{margin-bottom:20px}.mec-av-spot-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-av-spot-wrap .mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:14px 34px;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-av-spot-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-av-spot .mec-av-spot-col6{width:50%;float:left;height:100%}.mec-av-spot .mec-av-spot-col6 i{font-size:42px;float:left;margin-right:7px;height:58px}.mec-av-spot .mec-av-spot-col6 h6{text-transform:uppercase;font-size:17px;padding:4px 0;display:inline;color:#444}.mec-av-spot .mec-av-spot-col6 address{font-size:12px;margin-bottom:0}.mec-av-spot-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-av-spot-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05)}@media only screen and (max-width:768px){.mec-av-spot .mec-av-spot-col6{width:100%;margin:10px 0}}@media only screen and (max-width:479px){.mec-av-spot-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.mec-events-masonry-wrap{display:block;width:auto}.mec-masonry-item-wrap{width:calc(33.33% - 30px);padding:0;margin:0 15px 30px;min-height:10px;position:relative}.isotope-item{z-index:2}.isotope-hidden.isotope-item{pointer-events:none;z-index:1}.isotope,.isotope .isotope-item{-webkit-transition-duration:.8s;-moz-transition-duration:.8s;transition-duration:.8s}.isotope{-webkit-transition-property:height,width;-moz-transition-property:height,width;transition-property:height,width}.isotope .isotope-item{-webkit-transition-property:-webkit-transform,opacity;-moz-transition-property:-moz-transform,opacity;transition-property:transform,opacity}.mec-events-masonry-cats{padding:10px;margin-bottom:25px;text-align:center;clear:both;list-style:none outside none}.mec-events-masonry-cats a{border-radius:2px;padding:6px 12px;font-size:13px;line-height:1.2;color:#333;font-weight:400;margin-top:0!important;text-align:center;display:inline-block;width:auto;border:2px solid transparent;transition:all .2s ease}.mec-events-masonry-cats a:hover{border-color:#40d9f1;color:#333}.mec-events-masonry-cats a.mec-masonry-cat-selected{border:2px solid #40d9f1;color:#40d9f1}.mec-masonry{background:#f7f7f7;height:auto;border:1px solid #eee;box-shadow:0 6px 12px -4px rgba(0,0,0,.05)}.mec-masonry .mec-event-article{position:relative;height:auto}.mec-masonry .mec-masonry-img{position:relative;width:100%;height:auto;float:none;margin:0;overflow:hidden}.mec-masonry .mec-masonry-img img{width:100%}.mec-masonry .mec-masonry-content,.mec-masonry .mec-masonry-head{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-masonry .mec-events-content p{margin-bottom:20px}.mec-masonry-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-masonry-item-wrap .mec-event-grid-modern .event-grid-modern-head{min-height:79px;margin-bottom:10px;padding:14px 5%;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-masonry-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-masonry-content.mec-event-grid-modern .mec-event-content{padding-top:20px}.mec-masonry-content.mec-event-grid-modern .mec-event-footer{height:auto}.mec-masonry .mec-masonry-col6 .mec-event-date{font-size:34px;letter-spacing:-2px}.mec-masonry .mec-masonry-col6{width:50%;float:left;height:100%}.mec-masonry .mec-masonry-col6 i{font-size:24px;float:left;margin-right:7px;height:50px}.mec-masonry .mec-masonry-col6 .mec-event-month,.mec-masonry .mec-masonry-col6 h6{text-transform:capitalize;font-size:15px;padding:4px 0;display:inline;color:#444}.mec-masonry .mec-masonry-col6 .mec-event-detail,.mec-masonry .mec-masonry-col6 address{font-size:11px;margin-bottom:0}.mec-masonry-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-masonry-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05)}@media only screen and (max-width:960px){.mec-masonry-item-wrap{width:calc(50% - 30px)}}@media only screen and (max-width:768px){.mec-masonry .mec-masonry-col6{width:100%;margin:10px 0}.mec-masonry-item-wrap{width:calc(100% - 30px)}}@media only screen and (max-width:479px){.mec-masonry-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.btn-wrapper{text-align:center}.countdown-wrapper .btn-wrapper{padding-top:10px;padding-right:0}.countdown-wrapper h5.countdown-message{letter-spacing:5px;font-weight:500;font-size:18px}.blox.dar .countdown-wrapper p,.countdown-wrapper p{color:#888}.countdown-wrapper a.button.black{float:right;margin-right:0}.mec-wrap .threedaydigits .days .flip-clock-label{right:-100px}@media only screen and (min-width:320px) and (max-width:767px){.mec-wrap .flip-clock-wrapper ul{width:29px!important}.mec-wrap .flip-clock-wrapper ul li a div div.inn{font-size:25px!important}.mec-wrap .flip-clock-divider .flip-clock-label{left:0;font-weight:300}.mec-wrap span.flip-clock-divider{width:12px}}@media only screen and (min-width:320px) and (max-width:480px){.mec-wrap .flip-clock-wrapper ul{width:29px!important}.mec-wrap .flip-clock-wrapper ul li a div div.inn{font-size:25px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}.mec-wrap span.flip-clock-divider:first-child{width:0}.mec-wrap span.flip-clock-divider{width:20px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 18%}}@media screen and (min-width:960px) and (max-width:1200px){.mec-wrap .threedaydigits ul{height:50px;width:47px}}@media screen and (min-width:480px) and (max-width:768px){.mec-wrap .threedaydigits ul{height:48px;width:26px!important}.mec-wrap .threedaydigits .flip-clock-label{font-size:8px;left:-8px}}@media screen and (min-width:320px) and (max-width:480px){.mec-wrap .threedaydigits ul{height:48px;width:22px!important}}.mec-wrap .flip-clock-wrapper *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;-o-box-sizing:border-box;box-sizing:border-box;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-o-backface-visibility:hidden;backface-visibility:hidden}.mec-wrap .flip-clock-wrapper a{cursor:pointer;text-decoration:none;color:#ccc}.mec-wrap .flip-clock-wrapper a:hover{color:#fff}.mec-wrap .flip-clock-wrapper ul{list-style:none}.flip-clock-wrapper.clearfix:after,.mec-wrap .flip-clock-wrapper.clearfix:before{content:" ";display:table}.mec-wrap .flip-clock-wrapper.clearfix:after{clear:both}.mec-wrap .flip-clock-wrapper{font:normal 11px "helvetica neue",helvetica,sans-serif;-webkit-user-select:none}.mec-wrap .flip-clock-meridium{background:0 0!important;box-shadow:0 0 0!important;font-size:36px!important}.mec-wrap .flip-clock-meridium a{color:#313333}.mec-wrap .flip-clock-wrapper{text-align:center;position:relative;display:inline-block;padding-bottom:10px}.flip-clock-wrapper:after,.mec-wrap .flip-clock-wrapper:before{content:" ";display:table}.mec-wrap .flip-clock-wrapper:after{clear:both}.mec-wrap .flip-clock-wrapper ul{position:relative;float:left;margin:2px;width:50px;height:50px;font-size:80px;font-weight:700;line-height:87px;border-radius:3px;background:rgba(0,0,0,.21)}.mec-wrap .flip-clock-wrapper ul li{z-index:1;position:absolute;left:0;top:0;width:100%;height:100%;line-height:54px;text-decoration:none!important}.mec-wrap .flip-clock-wrapper ul li:first-child{z-index:2}.mec-wrap .flip-clock-wrapper ul li a{display:block;height:100%;-webkit-perspective:200px;-moz-perspective:200px;perspective:200px;margin:0!important;overflow:visible!important;cursor:default!important}.mec-wrap .flip-clock-wrapper ul li a div{z-index:1;position:absolute;left:0;width:100%;height:50%;font-size:80px;overflow:hidden;outline:1px solid transparent}.mec-wrap .flip-clock-wrapper ul li a div .shadow{position:absolute;width:100%;height:100%;z-index:2}.mec-wrap .flip-clock-wrapper ul li a div.up{-webkit-transform-origin:50% 100%;-moz-transform-origin:50% 100%;-ms-transform-origin:50% 100%;-o-transform-origin:50% 100%;transform-origin:50% 100%;top:0}.mec-wrap .flip-clock-wrapper ul li a div.up:after{content:"";position:absolute;top:24px;left:0;z-index:5;width:100%;height:3px;background-color:rgba(0,0,0,.12)}.mec-wrap .flip-clock-wrapper ul li a div.down{-webkit-transform-origin:50% 0;-moz-transform-origin:50% 0;-ms-transform-origin:50% 0;-o-transform-origin:50% 0;transform-origin:50% 0;bottom:0;border-bottom-left-radius:3px;border-bottom-right-radius:3px}.mec-wrap .flip-clock-wrapper ul li a div div.inn{position:absolute;left:0;z-index:1;width:100%;height:200%;color:#fff;text-shadow:0 0 2px rgba(0,0,0,.25);text-align:center;background-color:#40d9f1;border-radius:3px;font-size:48px}.mec-wrap .flip-clock-wrapper ul li a div.up div.inn{top:0}.mec-wrap .flip-clock-wrapper ul li a div.down div.inn{bottom:0}.mec-wrap .flip-clock-wrapper ul.play li.flip-clock-before{z-index:3}.mec-wrap .flip-clock-wrapper .flip{box-shadow:0 2px 5px rgba(0,0,0,.17)}.mec-wrap .flip-clock-wrapper ul.play li.flip-clock-active{-webkit-animation:asd .5s .5s linear both;-moz-animation:asd .5s .5s linear both;animation:asd .5s .5s linear both;z-index:5}.mec-wrap .flip-clock-divider{float:left;display:inline-block;position:relative;width:18px;height:62px}.mec-wrap .flip-clock-divider:first-child{width:0}.mec-wrap .flip-clock-dot{display:none;background:#323434;width:10px;height:10px;position:absolute;border-radius:50%;box-shadow:0 0 5px rgba(0,0,0,.5);left:5px}.mec-wrap .flip-clock-divider .flip-clock-label{position:absolute;bottom:-1.5em;right:-71px;color:#101010;font-weight:700;text-shadow:none;text-transform:uppercase}.mec-wrap .blox.dark .flip-clock-divider .flip-clock-label{color:#8a8a8a}.mec-wrap .flip-clock-divider.seconds .flip-clock-label{right:-82px}.mec-wrap .flip-clock-dot.top{top:30px}.mec-wrap .flip-clock-dot.bottom{bottom:30px}@-webkit-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@-moz-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@-o-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}.flip-clock-wrapper ul.play li.flip-clock-active .down{z-index:2;-webkit-animation:turn .5s .5s linear both;-moz-animation:turn .5s .5s linear both;animation:turn .5s .5s linear both}@-webkit-keyframes turn{0%{-webkit-transform:rotatex(90deg)}100%{-webkit-transform:rotatex(0)}}@-moz-keyframes turn{0%{-moz-transform:rotatex(90deg)}100%{-moz-transform:rotatex(0)}}@-o-keyframes turn{0%{-o-transform:rotatex(90deg)}100%{-o-transform:rotatex(0)}}@keyframes turn{0%{transform:rotatex(90deg)}100%{transform:rotatex(0)}}.flip-clock-wrapper ul.play li.flip-clock-before .up{z-index:2;-webkit-animation:turn2 .5s linear both;-moz-animation:turn2 .5s linear both;animation:turn2 .5s linear both}@-webkit-keyframes turn2{0%{-webkit-transform:rotatex(0)}100%{-webkit-transform:rotatex(-90deg)}}@-moz-keyframes turn2{0%{-moz-transform:rotatex(0)}100%{-moz-transform:rotatex(-90deg)}}@-o-keyframes turn2{0%{-o-transform:rotatex(0)}100%{-o-transform:rotatex(-90deg)}}@keyframes turn2{0%{transform:rotatex(0)}100%{transform:rotatex(-90deg)}}.flip-clock-wrapper ul li.flip-clock-active{z-index:3}.flip-clock-wrapper ul.play li.flip-clock-before .up .shadow{background:-moz-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,.1)),color-stop(100%,rgba(64,64,64,.68)));background:linear,top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;background:-o-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-ms-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:linear,to bottom,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;-webkit-animation:show .5s linear both;-moz-animation:show .5s linear both;animation:show .5s linear both}.flip-clock-wrapper ul.play li.flip-clock-active .up .shadow{background:-moz-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,.1)),color-stop(100%,rgba(64,64,64,.68)));background:linear,top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;background:-o-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-ms-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:linear,to bottom,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;-webkit-animation:hide .5s .3s linear both;-moz-animation:hide .5s .3s linear both;animation:hide .5s .3s linear both}.flip-clock-wrapper ul.play li.flip-clock-before .down .shadow{background:-moz-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(64,64,64,.68)),color-stop(100%,rgba(0,0,0,.1)));background:linear,top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;background:-o-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-ms-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:linear,to bottom,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;-webkit-animation:show .5s linear both;-moz-animation:show .5s linear both;animation:show .5s linear both}.flip-clock-wrapper ul.play li.flip-clock-active .down .shadow{background:-moz-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(64,64,64,.68)),color-stop(100%,rgba(0,0,0,.1)));background:linear,top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;background:-o-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-ms-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:linear,to bottom,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;-webkit-animation:hide .5s .3s linear both;-moz-animation:hide .5s .3s linear both;animation:hide .5s .2s linear both}@-webkit-keyframes show{0%{opacity:0}100%{opacity:1}}@-moz-keyframes show{0%{opacity:0}100%{opacity:1}}@-o-keyframes show{0%{opacity:0}100%{opacity:1}}@keyframes show{0%{opacity:0}100%{opacity:1}}@-webkit-keyframes hide{0%{opacity:1}100%{opacity:0}}@-moz-keyframes hide{0%{opacity:1}100%{opacity:0}}@-o-keyframes hide{0%{opacity:1}100%{opacity:0}}@keyframes hide{0%{opacity:1}100%{opacity:0}}@font-face{font-family:simple-line-icons;src:url(../fonts/Simple-Line-Icons.eot?v=2.3.1);src:url(../fonts/Simple-Line-Icons.eot?v=2.3.1#iefix) format('embedded-opentype'),url(../fonts/Simple-Line-Icons.woff2?v=2.3.1) format('woff2'),url(../fonts/Simple-Line-Icons.woff?v=2.3.1) format('woff'),url(../fonts/Simple-Line-Icons.ttf?v=2.3.1) format('truetype'),url(../fonts/Simple-Line-Icons.svg?v=2.3.1#simple-line-icons) format('svg');font-weight:400;font-style:normal}[class*=mec-sl-]{font-family:simple-line-icons;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.mec-sl-facebook:before{content:"\e00b"}.mec-sl-twitter:before{content:"\e009"}.mec-sl-google-plus:before{content:"\e60d"}.mec-sl-angle-left:before{content:"\e605"}.mec-sl-angle-right:before{content:"\e606"}.mec-sl-calendar:before{content:"\e075"}.mec-sl-clock-o:before{content:"\e081"}.mec-sl-home:before{content:"\e069"}.mec-sl-phone:before{content:"\e600"}.mec-sl-envelope:before{content:"\e086"}.mec-sl-sitemap:before{content:"\e037"}.mec-sl-map-marker:before{content:"\e096"}.mec-sl-floder:before{content:"\e089"}.mec-sl-wallet:before{content:"\e02a"}.mec-color,.mec-color-before :before,.mec-color-hover:hover,.mec-wrap .mec-color,.mec-wrap .mec-color-before :before,.mec-wrap .mec-color-hover:hover{color:#40d9f1}.mec-bg-color,.mec-bg-color-hover:hover,.mec-wrap .mec-bg-color,.mec-wrap .mec-bg-color-hover:hover{background-color:#40d9f1}.mec-border-color,.mec-border-color-hover:hover,.mec-wrap .mec-border-color,.mec-wrap .mec-border-color-hover:hover{border-color:#40d9f1}.mec-toggle-month-divider.mec-skin-list-events-container{border:1px solid #e8e8e8;margin-bottom:30px;background:#f8f8f8;box-shadow:0 2px 18px -1px rgba(0,0,0,.1);border-radius:2px}.mec-toggle-month-divider .mec-month-divider{margin:0;text-align:left;background:#fff;position:relative;cursor:pointer;border-top:1px solid #e8e8e8}.mec-toggle-month-divider .mec-month-divider span{padding:20px;border-bottom:1px solid #e8e8e8}.mec-toggle-month-divider .mec-month-divider i{position:absolute;right:20px;top:24px;font-size:20px;cursor:pointer}.mec-toggle-month-divider .mec-month-divider span:before{display:none}.mec-toggle-month-divider .mec-month-divider+article{margin-top:20px}.mec-toggle-month-divider .mec-wrap .mec-month-divider:first-of-type{border-top:none}.mec-toggle-month-divider .mec-event-list-accordion .mec-month-divider:not(:first-of-type)~article{display:none}.mec-skin-list-events-container:not(.mec-toggle-month-divider) .mec-month-divider i{display:none}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-month{display:inline-block;padding-top:0}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-date{font-size:14px;line-height:14px;float:none;display:inline-block;margin-right:0;font-weight:700}.mec-events-toggle .mec-toogle-inner-month-divider.mec-toggle-item-inner{padding:20px 60px 30px 15px}.mec-toogle-inner-month-divider .mec-toggle-month-inner-image{float:left;clear:right;width:100px;margin-right:20px;margin-left:10px}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-detail{margin-top:-6px}.mec-toogle-inner-month-divider .mec-toggle-item-col{float:none;width:100%;margin-top:10px;display:block;border:none}.mec-events-toggle .mec-toogle-inner-month-divider .mec-toggle-title{font-size:19px;display:block;padding-top:10px}@media only screen and (max-width:768px){.mec-events-toggle .mec-toogle-inner-month-divider .mec-toggle-title{font-size:14px;padding-top:0}.mec-toogle-inner-month-divider .mec-toggle-item-col{margin-top:0}.mec-toogle-inner-month-divider .mec-toggle-month-inner-image{width:70px}}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled:before,.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-featured:before{z-index:1;position:absolute;top:25px;right:-37px;font-size:11px;letter-spacing:1px;text-transform:uppercase;background:#04de78;padding:2px 40px;color:#fff;-ms-transform:rotate(45deg);-webkit-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition:.5s cubic-bezier(.25,.5,.06,.85);transition:.5s cubic-bezier(.25,.5,.06,.85);content:attr(data-style)}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled,.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-featured{overflow:hidden;position:relative}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled:before{background:#de0404}.mec-daily-view-date-events article:before,ul.mec-weekly-view-dates-events article:before{padding:7px 40px!important;top:27px!important}.mec-event-grid-classic article .mec-fc-style,.mec-event-grid-minimal article .mec-fc-style,.mec-event-grid-simple article .mec-fc-style,.mec-timetable-wrap article .mec-fc-style,.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article.mec-event-cover-modern .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{font-size:9px;letter-spacing:.5px;text-transform:uppercase;background:#04de78;padding:2px 7px;color:#fff;position:relative;margin-left:5px;border-radius:2px}.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-modern.mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-minimal article .mec-fc-style:before,.mec-event-grid-simple article .mec-fc-style:before,.mec-timetable-wrap article .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article .mec-fc-style:before,.mec-wrap .mec-event-list-modern article .mec-fc-style:before,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style:before{width:0;height:0;border-top:4px solid transparent!important;border-right:5px solid;border-bottom:4px solid transparent;margin:0;top:50%;left:-4px;transform:translateY(-4.5px);position:absolute;content:'';color:#04de78}.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-event-grid-classic article.mec-label-canceled:before,.mec-event-grid-classic article.mec-label-featured:before,.mec-event-grid-minimal article.mec-label-canceled:before,.mec-event-grid-minimal article.mec-label-featured:before,.mec-event-grid-simple article.mec-label-canceled:before,.mec-event-grid-simple article.mec-label-featured:before,.mec-timetable-wrap article.mec-label-canceled:before,.mec-timetable-wrap article.mec-label-featured:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled:before,.mec-wrap .mec-event-list-accordion article.mec-label-featured:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled:before,.mec-wrap .mec-event-list-modern article.mec-label-featured:before{display:none}.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{top:-3px;font-size:11px;margin-left:10px}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style:before,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-canceled:before,.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-featured:before{-ms-transform:none;-webkit-transform:none;transform:none;-webkit-transition:none;transition:none;top:271px;right:0}.mec-timetable-wrap article .mec-fc-style{top:-2px;font-size:10px}.mec-wrap article.mec-event-cover-modern .mec-fc-style{padding:5px 9px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:24px;display:inline-block;border-radius:2px}.mec-skin-grid-events-container .mec-wrap .mec-event-grid-clean .mec-event-article:before{-ms-transform:none;-webkit-transform:none;transform:none!important;-webkit-transition:none;transition:none;top:22px!important;right:22px!important;padding:0 10px!important}.mec-event-grid-minimal article .mec-fc-style,.mec-event-grid-simple article .mec-fc-style{top:-4px;font-size:10px;margin-left:10px}.mec-event-grid-classic article .mec-fc-style{padding:5px 20px;font-size:12px;margin-top:8px;display:inline-block}.mec-hourly-schedule-speaker-info{background:#fff;padding:30px;border:1px solid #e6e6e6;max-width:740px;width:740px;margin-left:-110px}.mec-hourly-schedule-speaker-thumbnail{float:left;max-width:30%;width:30%}.mec-hourly-schedule-speaker-name{font-weight:700;font-size:26px;line-height:1.2;color:#333;text-transform:uppercase}.mec-hourly-schedule-speaker-details{float:left;width:69%;padding-left:25px}.mec-hourly-schedule-speaker-job-title{font-size:16px;line-height:1.3;margin-bottom:4px}.mec-hourly-schedule-speaker-description{font-size:14px;font-weight:400;color:#6d7683;line-height:1.7;text-align:left}.mec-hourly-schedule-speaker-contact-information a i{color:#6b6b6b;background:#ebebeb;line-height:29px;margin:9px 7px 9px 0;width:30px;height:30px;display:inline-block;text-align:center;transition:all .2s ease;font-size:15px;cursor:pointer}.mec-hourly-schedule-speaker-contact-information a i:hover{background:#222;color:#fff}@media only screen and (max-width:479px){.mec-hourly-schedule-speaker-thumbnail{float:none;max-width:none;margin-right:0;margin-bottom:15px;width:100%}.mec-hourly-schedule-speaker-thumbnail img{width:100%}.mec-hourly-schedule-speaker-details{padding-left:0}.mec-hourly-schedule-speaker-info{width:90%;margin:0 auto}}.mec-profile .mec-profile-bookings{border:2px solid #e6e6e6;text-align:center}.mec-profile .mec-profile-bookings tbody tr:first-child{background:#f7f7f7;font-weight:700;text-transform:capitalize}.mec-profile .mec-profile-bookings tbody tr{border-bottom:1px solid #e6e6e6;font-size:14px}.mec-profile .mec-profile-bookings tbody tr td{border:1px solid #e6e6e6;padding:10px;text-align:center;word-break:initial}.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:53%;text-align:left}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8) i{color:#fe686a}.mec-profile .mec-event-status{padding:5px 10px;color:#fff;border-radius:2px;font-size:12px;line-height:12px;letter-spacing:.4px}.mec-profile .mec-event-status.mec-book-confirmed{background:#50d477}.mec-profile .mec-event-status.mec-book-pending{background:#fcbe69}.mec-profile .mec-event-status.mec-book-rejected{background:#fe686a}.mec-profile .mec-event-date{font-size:12px;color:#888}.mec-event-date,.mec-event-status{text-align:center}.mec-event-date .mec-tooltip,.mec-event-status .mec-tooltip{position:relative;width:fit-content;margin:auto}.mec-profile i{font-size:15px;color:#008aff;vertical-align:text-bottom;margin-right:4px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{min-width:250px;max-width:300px;display:inline-block;top:-8px;left:50%;margin-top:0;transform:translate(-50%,-100%);padding:0;background-color:#000;color:#fff;font-weight:400;font-size:14px;letter-spacing:.5px;line-height:1.5;position:absolute;z-index:99999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #535a61;padding:5px 10px 6px;border-radius:8px;text-align:center;font-style:normal;opacity:0;visibility:hidden;display:none}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{font-size:13px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;letter-spacing:1.1px;font-weight:500}.mec-event-date .mec-tooltip:hover .box:after,.mec-event-status .mec-tooltip:hover .box:after{content:'';position:absolute;width:12px;height:12px;left:calc(50% - 12px);bottom:-12px;transform:translate(50%,-50%) rotate(-45deg);background-color:#000;box-shadow:0 8px 9px -4px #535a61}.mec-event-status .mec-tooltip .box{min-width:100px}.mec-event-status.mec-book-confirmed .mec-tooltip .box,.mec-event-status.mec-book-confirmed .mec-tooltip:hover .box:after{background-color:#50d477}.mec-event-status.mec-book-rejected .mec-tooltip .box,.mec-event-status.mec-book-rejected .mec-tooltip:hover .box:after{background-color:#fe686a}.mec-event-status.mec-book-pending .mec-tooltip .box,.mec-event-status.mec-book-pending .mec-tooltip:hover .box:after{background-color:#fcbe69}.mec-event-date .mec-tooltip:hover .box,.mec-event-status .mec-tooltip:hover .box{opacity:1;visibility:visible;display:block}.mec-profile .mec-event-status{padding:0}.mec-profile .mec-booking-number-of-attendees{font-size:13px;color:#888}.mec-profile .mec-booking-number-of-attendees i,.mec-profile .mec-profile-bookings-view-invoice i{font-size:15px;color:#008aff;vertical-align:text-bottom;margin-right:4px}.mec-booking-attendees{background:#fff;padding:10px}.mec-booking-attendees{width:850px;text-align:center}.mec-booking-attendees-wrapper{border:2px solid #e6e6e6;font-size:14px}.mec-booking-attendees-head{display:table;width:100%;background:#f7f7f7;border-bottom:1px solid #e6e6e6;font-weight:700}.mec-booking-attendees-head span,.mec-booking-attendees-head-content>span{vertical-align:middle;display:table-cell;padding:7px;border-right:1px solid #e6e6e6;font-size:12px}.mec-booking-attendees-head-content{display:table;width:100%;border-bottom:1px solid #e6e6e6}.mec-booking-attendees-wrapper .mec-booking-attendees-head-content:last-child{border:none}.mec-booking-attendees-head span:nth-child(1),.mec-booking-attendees-head-content>span:nth-child(1){width:4%}.mec-booking-attendees-head span:nth-child(2),.mec-booking-attendees-head-content>span:nth-child(2){width:20%}.mec-booking-attendees-head span:nth-child(3),.mec-booking-attendees-head-content>span:nth-child(3){width:24%}.mec-booking-attendees-head span:nth-child(4),.mec-booking-attendees-head-content>span:nth-child(4){width:26%}.mec-booking-attendees-head span:nth-child(5),.mec-booking-attendees-head-content>span:nth-child(5){width:26%}@media only screen and (max-width:759px){.mec-booking-attendees{width:470px}.mec-booking-attendees-head span,.mec-booking-attendees-head-content>span{word-break:break-all}}@media(max-width:1366px){.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:6%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:40%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:12%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:8%}}@media(max-width:1024px){.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:30%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:15%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:10%}}@media(max-width:780px){.mec-profile .mec-profile-bookings tbody tr,.mec-profile i{font-size:12px}.mec-event-date .mec-tooltip .box{min-width:200px}.mec-event-status .mec-tooltip .box{min-width:90px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{padding:4px 5px!important}.mec-profile .mec-profile-bookings tbody tr{font-size:12px}}@media(max-width:480px){.mec-profile .mec-booking-number-of-attendees,.mec-profile .mec-profile-bookings tbody tr,.mec-profile i{font-size:8px!important}.mec-profile .mec-profile-bookings tbody tr td{padding:3px}.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:19%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:12%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:18%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:13%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:13%}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{font-size:8px}.mec-event-date .mec-tooltip .box{min-width:75px}.mec-event-status .mec-tooltip .box{min-width:70px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{padding:4px 5px!important}}.mec-woo-booking-checkout{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;border-radius:0;margin-bottom:6px;min-width:170px;margin-top:5px;text-align:center}.mec-woo-booking-checkout:hover{background:#222;color:#fff}.mec-woo-booking-checkout:focus,.mec-woo-booking-checkout:visited{color:#fff}.single-mec-events .lity-container{max-width:480px;width:480px}.lity-content .mec-events-meta-group-booking{width:100%;padding:20px 50px;background:#fff}.lity-content .mec-events-meta-group-booking .mec-booking form>h4{text-transform:uppercase;font-size:15px;font-weight:700;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative;text-align:center;line-height:1.2;margin-bottom:10px}.lity-content .mec-events-meta-group-booking .mec-booking form>h4:before{padding:1px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-35px;left:50%}.lity-content .mec-events-meta-group-booking .mec-event-ticket-available,.lity-content .mec-events-meta-group-booking .mec-event-ticket-name,.lity-content .mec-events-meta-group-booking .mec-event-ticket-price,.lity-content .mec-events-meta-group-booking .mec-ticket-variation-name,.lity-content .mec-events-meta-group-booking .mec-ticket-variation-price,.lity-content .mec-events-meta-group-booking label{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:3px 0;clear:none;padding:5px 1em 3px 0;display:inline-block}.lity-content .mec-events-meta-group-booking .mec-event-ticket-available{margin-bottom:12px}.lity-content .mec-events-meta-group-booking select{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:100%;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both;font-family:Montserrat,Helvetica,Arial,sans-serif}.lity-content .mec-events-meta-group-booking input[type=email]{color:#888;border:1px solid #e1e1e1;font-size:14px;display:block;width:100%;outline:0}.lity-content .mec-events-meta-group-booking input{margin-bottom:10px!important}.lity-content .mec-book-ticket-variation h5{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:0;clear:none;padding:5px 1em 3px 0;display:inline-block;text-transform:capitalize;font-family:Montserrat,Helvetica,Arial,sans-serif}.lity-content ul.mec-book-tickets-container{padding:0}.lity-content .mec-events-meta-group-booking input[type=email],.lity-content .mec-events-meta-group-booking input[type=number],.lity-content .mec-events-meta-group-booking input[type=text]{outline:0;font-family:Montserrat,Helvetica,Arial,sans-serif;display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:100%;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both;margin-bottom:2px!important}.lity-content button[type=submit]{position:relative;border:none;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;min-width:170px;margin-top:5px;border-radius:0;margin-bottom:6px}.lity-content button[type=submit]:hover{background:#222}.lity-content .mec-book-tickets-container li{list-style:none}.lity-content .mec-events-meta-group-booking #mec_book_payment_form h4,.lity-content .mec-events-meta-group-booking li h4{font-size:19px;font-weight:700}.lity-content .mec-events-meta-group-booking .mec-book-price-total{display:inline-block;margin-bottom:10px;font-size:26px;color:#39c36e;font-weight:700;padding:10px 0}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li{width:50%}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li:nth-child(even){border:none}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li span{display:block}.lity-content .mec-events-meta-group-booking button[type=submit]:after{display:none;font-family:simple-line-icons;content:"\e098";margin-left:4px;-webkit-animation:rotating 1.2s linear infinite;-moz-animation:rotating 1.2s linear infinite;-ms-animation:rotating 1.2s linear infinite;-o-animation:rotating 1.2s linear infinite;animation:rotating 1.2s linear infinite}.lity-content .mec-events-meta-group-booking button[type=submit].loading:after{display:inline-block}@media only screen and (max-width:480px){.lity-content .mec-events-meta-group-booking{padding:20px;width:340px;margin:0 auto}}.mec-events-meta-group-booking{position:relative}.mec-cover-loader:after{content:'';position:absolute;top:0;right:0;left:0;bottom:0;background:rgba(255,255,255,.5);z-index:99999}.mec-loader{background:rgba(0,0,0,0);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);z-index:9}.mec-loader,.mec-loader:after{border-radius:50%;width:5em;height:5em;z-index:999999999999}.mec-loader{font-size:10px;text-indent:-9999em;border-top:.5em solid rgba(0,0,0,.2);border-right:.5em solid rgba(0,0,0,.2);border-bottom:.5em solid rgba(0,0,0,.2);border-left:.5em solid #fff;-webkit-transform:translateZ(0);-ms-transform:translateZ(0);transform:translateZ(0);-webkit-animation:mecloader 1.1s infinite linear;animation:mecloader 1.1s infinite linear}@-webkit-keyframes mecloader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes mecloader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.mec-google-recaptcha{margin:0 0 20px 16px}.mec-wrap *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mec-wrap :after,.mec-wrap :before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mec-wrap .clearfix:after,.mec-wrap .clearfix:before{content:'\0020';display:block;overflow:hidden;visibility:hidden;width:0;height:0}.mec-wrap .clearfix:after{clear:both}.mec-wrap .clearfix{zoom:1}.mec-wrap .clear,.mec-wrap .clr{clear:both;display:block;overflow:hidden;visibility:hidden}.mec-wrap .clr{visibility:visible;overflow:visible}.mec-container [class*=col-] img{max-width:100%}.mec-container{margin-right:auto;margin-left:auto;padding-left:10px;padding-right:10px}.mec-container:after,.mec-container:before{content:" ";display:table}.mec-container:after{clear:both}@media only screen and (max-width:479px){.mec-container{width:300px}}@media only screen and (min-width:480px) and (max-width:767px){.mec-container{width:420px}}@media only screen and (min-width:768px) and (max-width:960px){.mec-container{width:768px}}@media only screen and (min-width:961px){.mec-container{width:960px}}@media only screen and (min-width:1200px){.mec-container{width:1196px;padding-left:15px;padding-right:15px}}@media only screen and (min-width:1921px){.mec-container{max-width:1690px}}.mec-wrap .row{margin-left:-10px;margin-right:-10px}.mec-wrap .row:after,.mec-wrap .row:before{content:" ";display:table}.mec-wrap .row:after{clear:both}.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9,.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9,.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9,.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{position:relative;min-height:1px;padding-left:10px;padding-right:10px}@media only screen and (min-width:1200px){.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9,.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9,.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9,.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{padding-left:15px;padding-right:15px}.mec-wrap .row{margin-left:-15px;margin-right:-15px}}.mec-container [class*=col-].alpha{padding-left:0}.mec-container [class*=col-].omega{padding-right:0}.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{float:left}.mec-wrap .col-xs-12{width:100%}.mec-wrap .col-xs-11{width:91.66666666666666%}.mec-wrap .col-xs-10{width:83.33333333333334%}.mec-wrap .col-xs-9{width:75%}.mec-wrap .col-xs-8{width:66.66666666666666%}.mec-wrap .col-xs-7{width:58.333333333333336%}.mec-wrap .col-xs-6{width:50%}.mec-wrap .col-xs-5{width:41.66666666666667%}.mec-wrap .col-xs-4{width:33.33333333333333%}.mec-wrap .col-xs-3{width:25%}.mec-wrap .col-xs-2{width:16.666666666666664%}.mec-wrap .col-xs-1{width:8.333333333333332%}@media (min-width:768px){.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9{float:left}.mec-wrap .col-sm-12{width:100%}.mec-wrap .col-sm-11{width:91.66666666666666%}.mec-wrap .col-sm-10{width:83.33333333333334%}.mec-wrap .col-sm-9{width:75%}.mec-wrap .col-sm-8{width:66.66666666666666%}.mec-wrap .col-sm-7{width:58.333333333333336%}.mec-wrap .col-sm-6{width:50%}.mec-wrap .col-sm-5{width:41.66666666666667%}.mec-wrap .col-sm-4{width:33.33333333333333%}.mec-wrap .col-sm-3{width:25%}.mec-wrap .col-sm-2{width:16.666666666666664%}.mec-wrap .col-sm-1{width:8.333333333333332%}}@media (min-width:961px){.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9{float:left}.mec-wrap .col-md-12{width:100%}.mec-wrap .col-md-11{width:91.66666666666666%}.mec-wrap .col-md-10{width:83.33333333333334%}.mec-wrap .col-md-9{width:75%}.mec-wrap .col-md-8{width:66.66666666666666%}.mec-wrap .col-md-7{width:58.333333333333336%}.mec-wrap .col-md-6{width:50%}.mec-wrap .col-md-5{width:41.66666666666667%}.mec-wrap .col-md-4{width:33.33333333333333%}.mec-wrap .col-md-3{width:25%}.mec-wrap .col-md-2{width:16.666666666666664%}.mec-wrap .col-md-1{width:8.333333333333332%}}@media (min-width:1200px){.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9{float:left}.mec-wrap .col-lg-12{width:100%}.mec-wrap .col-lg-11{width:91.66666666666666%}.mec-wrap .col-lg-10{width:83.33333333333334%}.mec-wrap .col-lg-9{width:75%}.mec-wrap .col-lg-8{width:66.66666666666666%}.mec-wrap .col-lg-7{width:58.333333333333336%}.mec-wrap .col-lg-6{width:50%}.mec-wrap .col-lg-5{width:41.66666666666667%}.mec-wrap .col-lg-4{width:33.33333333333333%}.mec-wrap .col-lg-3{width:25%}.mec-wrap .col-lg-2{width:16.666666666666664%}.mec-wrap .col-lg-1{width:8.333333333333332%}}#mec_woo_add_to_cart_btn{min-width:170px;margin-top:5px;text-align:center}.mec-breadcrumbs{border-radius:2px;padding:9px 15px 6px;font-size:11px;color:#8d8d8d;letter-spacing:0;text-transform:none;font-weight:500;margin:auto 15px 33px 15px;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.025)}.mec-breadcrumbs-modern{margin:auto 0 33px 0}.mec-breadcrumbs a{color:#000;padding-left:4px}.mec-breadcrumbs a:hover{text-decoration:underline}.mec-breadcrumbs i{font-size:8px;margin:0 0 0 4px}.mec-breadcrumbs .container{padding-left:20px}.mec-content-notification a{margin-left:5px}.mec-content-notification{background:#f7f7f7;padding:10px 10px 10px;border:1px solid #e8e8e8}.mec-content-notification p{margin-bottom:0}.mec-fes-form #mec-advanced-wraper div:first-child>ul{border:1px solid #cfeff5;width:auto;box-shadow:0 1px 4px -2px #cfeff5;display:block;margin:5px 0 10px;padding:5px 0;border-radius:2px}.mec-fes-form #mec-advanced-wraper div:first-child>ul:last-of-type{margin-bottom:35px}#mec-advanced-wraper div:first-child>ul span{display:none}#mec-advanced-wraper div:first-child>ul *{display:inline-block;background:#fff;font-size:12px;color:#717273;text-align:center}#mec-advanced-wraper div:first-child>ul>li{width:60px;font-weight:700;margin:0 10px 0 0;padding:4px 0;border-right:1px solid #cfeff5}#mec-advanced-wraper div:first-child>ul>ul>li{margin:0;padding:2px 10px;cursor:pointer;border-radius:2px;transition:all .18s ease}.mec-fes-form #mec-advanced-wraper div:first-child>ul>ul>li.mec-active,.mec-fes-form #mec-advanced-wraper div:first-child>ul>ul>li:hover{background:#40d9f1!important;box-shadow:0 1px 9px -3px #40d9f1;color:#fff!important}.mec-search-bar-wrap .mec-search-form .mec-text-input-search{width:83%}.mec-search-bar-wrap .mec-search-form .mec-ajax-search-result .mec-text-input-search{width:100%;float:none}.mec-search-bar-wrap input#mec-search-bar-input{width:calc(100% - 84%);margin-left:11px;background:#40d9f1;Color:#fff;font-weight:400}.mec-text-input-search+input#mec-search-bar-input{margin-left:-3px}.mec-search-bar-wrap input#mec-search-bar-input:hover{background:#000}.mec-wrap.mec-search-bar-wrap .mec-totalcal-box input{float:none}@media(max-width:768px){.mec-search-bar-wrap .mec-search-form .mec-text-input-search{display:inline-block}}@media(max-width:480px){.mec-search-bar-wrap .mec-search-form .mec-text-input-search{width:64%}.mec-search-bar-wrap input#mec-search-bar-input{width:calc(100% - 67%)}}.mec-wrap.mec-search-bar-wrap .mec-totalcal-box{overflow:visible}.mec-ajax-search-result{position:relative}.mec-search-bar-wrap.mec-wrap .mec-totalcal-box input[type=text]{width:calc(100% - 36px)}.mec-search-bar-wrap.mec-wrap .mec-totalcal-box input[type=text]:focus{border-color:#efefef}div#mec-ajax-search-result-wrap{position:absolute;top:100%;opacity:0;visibility:hidden;width:calc(100% - 2px);min-height:50px;left:0;right:0;padding:0 10px;z-index:9999;transition:all .3s ease}.mec-ajax-search-result-events{background:#fff;padding:10px 20px;border:1px solid #efefef;border-top:none}.mec-ajax-search-result-events article:first-of-type{border:none}article.mec-search-bar-result{text-align:left;margin-bottom:0;padding-bottom:25px;padding-top:26px;border-top:1px solid #efefef;transition:all .33s ease;clear:both}.mec-search-bar-result .mec-event-list-search-bar-date{width:64px;height:64px;margin-right:10px;font-size:11px;text-transform:uppercase;float:left;text-align:center;padding-top:2px}.mec-search-bar-result .mec-event-list-search-bar-date span{font-size:40px;line-height:30px;font-weight:700;display:block;margin-bottom:6px;letter-spacing:1px}.mec-search-bar-result .mec-event-image{float:left;margin-right:20px;width:65px;height:auto}.mec-search-bar-result .mec-event-time{font-size:11px;line-height:1.1;margin:0}.mec-search-bar-result .mec-event-time i{color:#40d9f1;float:none;width:unset;height:unset;font-size:inherit;margin-right:3px;border:none;padding:0}.mec-search-bar-result .mec-event-title{font-size:13px;padding:0;margin:10px 0 8px;font-weight:700;text-transform:uppercase}.mec-search-bar-result .mec-event-title a{text-decoration:none;color:#494949;transition:color .3s ease}.mec-search-bar-result .mec-event-detail{font-size:13px;line-height:1.3;font-family:Roboto,sans-serif;color:#9a9a9a;margin-bottom:0}.mec-wrap.mec-modern-search-bar .mec-totalcal-box{background:rgba(255,255,255,.87);border:none;padding:35px;border-radius:3px;box-shadow:0 3px 13px rgba(0,0,0,.4);position:relative}.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=search],.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=text]{height:58px;background:rgba(255,255,255,.99);border-radius:2px;box-shadow:0 4px 8px rgba(0,0,0,.1) inset;border:1px solid #ccc;width:100%;padding-left:45px;padding-right:13px;font-size:16px}.mec-wrap.mec-modern-search-bar .mec-totalcal-box .mec-text-input-search i{position:absolute;background:0 0;border:none;font-size:21px;left:15px;top:calc(50% - 19px);color:#40d9f1}.mec-wrap.mec-modern-search-bar .mec-text-input-search{position:relative;height:58px}.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=submit]{height:58px;border:none;border-radius:2px;background:#fc4a1a;font-size:17px;font-weight:700!important}.mec-wrap.mec-modern-search-bar .mec-text-input-search+input#mec-search-bar-input{margin-left:0}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select{height:45px;background:rgba(255,255,255,.99);border-radius:2px;box-shadow:0 4px 8px rgba(0,0,0,.1) inset;border:1px solid #ccc;padding-right:13px;font-size:16px;border-left:0}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap i{height:45px;background:#ffff;border-radius:2px 0 0 2px;box-shadow:none;border:1px solid #ccc;font-size:15px;padding-top:14px;border-right:0;color:#40d9f1;margin-right:-1px}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap{min-height:64px}@media(max-width:768px){.mec-wrap.mec-modern-search-bar .mec-search-form .mec-text-input-search{width:70%}.mec-wrap.mec-modern-search-bar input#mec-search-bar-input{width:calc(100% - 72%)}}@media(max-width:480px){.mec-wrap.mec-modern-search-bar input#mec-search-bar-input{width:92%;padding:0 10px;position:relative;display:block;margin-left:11px}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-text-input-search{width:100%;margin-bottom:20px}.mec-wrap.mec-modern-search-bar .mec-text-input-search+input#mec-search-bar-input{margin-left:10px}}.mec-related-events-wrap{margin-top:50px}.mec-related-events-wrap h3.mec-rec-events-title:before{content:"";background:#2c2f34;width:46px;height:4px;position:absolute;top:59px;left:0}.mec-related-events-wrap h3.mec-rec-events-title{font-size:21px;font-weight:600;padding:17px 0;margin-bottom:28px;text-transform:uppercase;border-bottom:1px solid #e8e8e8;position:relative}.mec-related-event-post figure{margin:0}.mec-related-event-post figure img{width:100%}.mec-related-event-content{background-color:#fff;margin:-27px 30px 15px;position:relative;max-width:90%;padding:13px 21px 16px 19px}.mec-related-event-content h5 a{font-size:16px;color:#121212;font-weight:600;transition:all .3s ease}.mec-fes-form-cntt #mec-organizer-payments ul{list-style:none;background:0 0;margin:0}.mec-fes-form-cntt #mec-organizer-payments ul li h4{background:0 0;letter-spacing:.2px;display:inline-block;padding-left:0!important;padding-bottom:10px!important;margin:0;margin-bottom:1px;letter-spacing:1px;text-transform:capitalize;padding-top:1px}.mec-fes-form-cntt #mec-organizer-payments ul>li{width:100%;display:inline-block;vertical-align:top;padding:0;margin:0}#mec-login-form.mec-login-form{width:100%;background:#fff;padding:20px;margin:0 auto;text-align:center;position:relative}#mec-login-form.mec-login-form .mec-login-input{display:block;width:286px;margin:0 auto;margin-bottom:12px}#mec-login-form.mec-login-form .mec-login-forgotpassword{display:inline-block}.mec-login-forgotpassword a{color:#000}#mec-login-form.mec-login-form .mec-login-submit{float:right;text-align:right;width:49%;padding-right:2px}#mec-login-form.mec-login-form .mec-login-input input{border:none;box-shadow:none;background:#fff;color:#ccc;border-left:1px solid #e6e6e6;padding:0;height:100%;background-image:none!important;padding-left:10px;padding-right:0;width:222px;margin-left:0;clear:none;float:left}#mec-login-form.mec-login-form .mec-login-input label{border:1px solid #e6e6e6;height:52px;display:inline-block;padding:0;border-radius:3px;overflow:hidden;box-shadow:0 2px 4px rgba(0,0,0,.04)}#mec-login-form.mec-login-form .mec-login-input label i{padding:15px 13px 17px 16px;vertical-align:middle;font-size:20px;width:50px;color:#c5cad0;background:#fafafa;margin-right:0;float:left}#mec-login-form.mec-login-form .mec-login-forgotpassword{float:left;width:49%;text-align:left;padding-top:10px;font-size:13px;padding-left:2px}#mec-login-form.mec-login-form button{width:120px;height:44px;border:none;color:#fff;border-radius:3px;font-size:12px;font-weight:700;letter-spacing:1px;text-transform:uppercase;transition:all .22s ease;margin:0;min-width:unset}.mec-login-form button{box-shadow:0 4px 22px -7px #40d9f1;background-color:#40d9f1}#mec-login-form.mec-login-form button:hover{background:#222;box-shadow:0 3px 14px -4px #333}#mec-login-form.mec-login-form .mec-login-form-footer{width:286px;margin:0 auto;margin-top:20px;clear:both;position:relative;display:block;min-height:50px}#mec-login-form.mec-login-form .mec-ajax-login-loading{position:absolute;background:#ffffffc2;left:0;right:0;top:0;bottom:0}#mec-login-form.mec-login-form .lds-ripple{position:absolute;width:64px;height:64px;top:calc(50% - 23px);left:calc(50% - 23px)}#mec-login-form.mec-login-form .lds-ripple div{position:absolute;border:4px solid #40d9f1;opacity:1;border-radius:50%;animation:lds-ripple 1.2s cubic-bezier(0,.2,.1,.8) infinite}#mec-login-form.mec-login-form .lds-ripple div:nth-child(2){animation-delay:-.5s}#mec-login-form.mec-login-form .mec-ajax-login-loading-text{position:absolute;min-width:200px;top:calc(50% - 18px);left:calc(50% - 124px);color:#fff;padding:10px 22px;border-radius:3px;background:#fff;height:47px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text strong{color:#3fcc60}#mec-login-form.mec-login-form .mec-ajax-login-loading-text strong:before{content:"";position:absolute;top:8px;left:1px;border-right:2px solid #3fcc60;border-bottom:2px solid #3acb5c;transform:rotate(45deg);transform-origin:0 100%;color:#000;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards;width:8px;height:14px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong:after{content:"";position:absolute;top:14px;left:5px;border-bottom:2px solid #ff5d39;transform:rotate(45deg);transform-origin:0 100%;color:#000;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards;width:14px;height:4px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong{color:#ff5d39}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong:before{border-color:#ff5d39;border-bottom:none}@keyframes lds-ripple{0%{top:28px;left:28px;width:0;height:0;opacity:1}100%{top:-1px;left:-1px;width:58px;height:58px;opacity:0}}.mec-book-form-gateway-checkout [id*=mec_do_transaction_stripe_] .mec-form-row:first-child{margin-bottom:20px}.mec-events-meta-group-booking .StripeElement{box-sizing:border-box;height:40px;padding:10px 12px;border:1px solid transparent;border-radius:4px;background-color:#fff;box-shadow:0 1px 3px 0 #e6ebf1;-webkit-transition:box-shadow 150ms ease;transition:box-shadow 150ms ease;margin-bottom:20px;background:#fff}.mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text]{box-sizing:border-box;height:40px;padding:10px 12px;border:0!important;border-radius:4px;background-color:#fff;box-shadow:0 1px 3px 0 #e6ebf1!important;-webkit-transition:box-shadow 150ms ease;transition:box-shadow 150ms ease;margin-bottom:20px;background:#fff!important}.mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text]:focus{outline:0}.mec-events-meta-group-booking .StripeElement--focus{box-shadow:0 1px 3px 0 #cfd7df}.mec-events-meta-group-booking .StripeElement--invalid{border-color:#fa755a}.mec-events-meta-group-booking .StripeElement--webkit-autofill{background-color:#fefde5!important}.mec-booking-tab-content .button,.mec-booking-tab-content .mec-reg-field-add-option,.mec-fes-form .mec-form-row .button:not(.wp-color-result),.mec-fes-form input[type=file],ul#mec_reg_form_fields li .mec_reg_field_remove{height:40px;margin-top:1px;text-decoration:none;font-size:14px;line-height:34px!important;margin:0;padding:0 15px 1px!important;text-transform:none;letter-spacing:0;font-weight:600;color:#40d9f1;background:#fff;border-radius:3px;margin-right:8px;border:2px solid #cfeff5;box-shadow:0 2px 6px -3px #cfeff5}.mec-booking-tab-content .button:hover,.mec-booking-tab-content .mec-reg-field-add-option:hover,.mec-fes-form .mec-form-row .button:not(.wp-color-result):hover{background:#40d9f1;color:#fff;border-color:#40d9f1;box-shadow:0 2px 6px -3px #40d9f1}.mec-fes-form .mec-form-row input+button.button{vertical-align:top}.mec-fes-form .mec-form-row .quicktags-toolbar input.button.button-small{border-width:1px;padding:0 7px;color:#80c6d2;font-weight:400;margin:1px;transform:none}.mec-fes-form input[type=file]{max-width:166px;text-align:center;height:44px;transition:all .2s ease;border-radius:5px!important;border:2px dashed #b8e9f3}.mec-fes-form input[type=file]:hover{box-shadow:0 2px 16px -3px #cfeff5}.mec-fes-form input[type=file]::-webkit-file-upload-button{visibility:hidden;width:1px;height:38px}.mec-fes-form input[type=file]::-moz-file-upload-button{visibility:hidden;width:1px;height:38px}.mec-fes-form .mec-meta-box-fields>label{padding:0}#mec_reg_form_fields li{list-style:none}ul#mec_reg_form_fields{padding:0;margin:0}ul#mec_reg_form_fields li{background:#f8feff;margin:6px -20px;padding:15px 25px 10px;width:auto;font-size:13px;border-top:1px solid #e8fafd;border-bottom:1px solid #e8fafd;position:relative}ul#mec_reg_form_fields li .mec_reg_field_remove{position:absolute;right:10px;top:10px;margin:0;padding:6px 8px!important;font-size:11px;line-height:12px!important;min-height:10px;height:auto;display:block;cursor:pointer;color:#ea6485;border-color:#ffd2dd;letter-spacing:.4px}ul#mec_reg_form_fields li .mec_reg_field_remove:hover{background:#ea6485;color:#fff;border-color:#ea6485;box-shadow:0 2px 6px -3px #ea6485}#mec_reg_form_fields input[type=checkbox],#mec_reg_form_fields input[type=radio],.mec-form-row input[type=checkbox],.mec-form-row input[type=radio]{background-color:#fff;border:1px solid #cfeff5;box-shadow:0 1px 3px -1px #cfeff5;padding:9px;border-radius:3px;min-width:24px;min-height:24px;display:inline-block!important;vertical-align:middle;float:none;transition:all .18s ease;outline:0;margin:1px 4px 4px 0;text-align:left;cursor:pointer;-webkit-appearance:none;-moz-appearance:none}#mec_reg_form_fields input[type=checkbox]:focus,#mec_reg_form_fields input[type=radio]:focus,.mec-form-row input[type=checkbox]:focus,.mec-form-row input[type=radio]:focus{outline:0}#mec_reg_form_fields input[type=radio],.mec-form-row input[type=radio]{-webkit-appearance:none;border-radius:20px!important;min-width:20px;min-height:20px;margin:0 0 4px 0;vertical-align:middle}#mec_reg_form_fields input[type=checkbox]:hover,#mec_reg_form_fields input[type=radio]:hover,.mec-form-row input[type=checkbox]:hover,.mec-form-row input[type=radio]:hover{border-color:#40d9f1}#mec_reg_form_fields input[type=checkbox]:checked,#mec_reg_form_fields input[type=radio]:checked,.mec-fes-form .mec-form-row input[type=checkbox]:checked,.mec-fes-form .mec-form-row input[type=radio]:checked{box-shadow:0 1px 6px -2px #40d9f1;border-color:#40d9f1;background:#40d9f1!important;border-radius:2px;position:relative}.mec-form-row input[type=radio]:checked{box-shadow:0 1px 6px -2px #40d9f1,inset 0 0 0 3px #fff!important}#mec_reg_form_fields input[type=checkbox]:checked::before,.mec-form-row input[type=checkbox]:checked:before{content:"";font:normal;position:absolute;top:12px;left:5px;margin:0;vertical-align:middle;line-height:1;border-right:2px solid #fff!important;border-bottom:2px solid #fff!important;transform:rotate(45deg);transform-origin:0 100%;color:#fff;transition:all .2s ease;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards}@keyframes checkbox-check{0%{width:0;height:0;border-color:#fff;transform:translate3d(0,0,0) rotate(45deg)}33%{width:6px;height:0;transform:translate3d(0,0,0) rotate(45deg)}100%{width:6px;height:12px;border-color:#fff;transform:translate3d(0,-12px,0) rotate(45deg)}}#mec_reg_form_field_types .button{position:relative;outline:0;border-radius:50px;padding:2px 21px 2px 31px!important;line-height:1;font-size:11px;font-weight:600;color:#40d9f1;letter-spacing:2px;height:auto;cursor:pointer;margin-top:5px;text-transform:uppercase;box-shadow:0 2px 6px -3px #40d9f1;border:2px solid #cfeff5}#mec_fes_location_remove_image_button,#mec_fes_organizer_remove_image_button,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button,#mec_meta_box_tickets_form [id^=mec_ticket_row] button,#mec_reg_form_field_types .button.red{color:#ea6485;box-shadow:0 2px 6px -3px #ea6485;background:#fff;border-color:#ffd2dd}#mec_fes_location_remove_image_button:hover,#mec_fes_organizer_remove_image_button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button:hover,#mec_meta_box_tickets_form [id^=mec_ticket_row] button:hover,#mec_reg_form_field_types .button.red:hover{background:#ea6485;color:#fff}#mec_reg_form_field_types .button:before{position:absolute;left:12px;color:#40d9f1;content:"\e095";font-family:simple-line-icons;font-size:13px;display:inline-block}#mec_reg_form_field_types .button.red:before{color:#ea6485}#mec_reg_form_field_types .button.red:hover:before,#mec_reg_form_field_types .button:hover:before{color:#fff}#mec_fes_location_remove_image_button:hover,#mec_fes_organizer_remove_image_button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button:hover,#mec_meta_box_tickets_form [id^=mec_ticket_row] button:hover,#mec_price_per_dates_container .button:hover,#mec_reg_form_field_types .button.red:hover{color:#fff;border:2px solid #ea6485}#mec_taxes_fees_container_toggle [id^=mec_remove_fee_button],#mec_ticket_variations_list [id^=mec_remove_ticket_variation_button]{color:#ea6485;border-color:#ffd2dd}#mec_taxes_fees_container_toggle [id^=mec_remove_fee_button]:hover,#mec_ticket_variations_list [id^=mec_remove_ticket_variation_button]:hover{color:#fff;border:2px solid #ea6485;background:#ea6485}#mec_fees_list [id^=mec_remove_fee_button],#mec_meta_box_ticket_variations_form .mec-form-row [id^=mec_remove_ticket_variation_button]{margin-left:14px!important}#mec_meta_box_hourly_schedule_days .mec-add-hourly-schedule-button{line-height:10px!important}#mec_meta_box_tickets_form [id^=mec_ticket_row] .mec_add_price_date_button{color:#40d9f1;box-shadow:0 2px 6px -3px #40d9f1;border:2px solid #cfeff5}#mec_meta_box_tickets_form [id^=mec_ticket_row] .mec_add_price_date_button:hover,#mec_reg_form_field_types .button:hover{color:#fff;border:2px solid #40d9f1;background:#40d9f1}.mec-form-row input+span.mec-tooltip,.mec-form-row select+span.mec-tooltip{bottom:10px}.mec-form-row label+span.mec-tooltip{bottom:8px}.mec-form-row textarea+span.mec-tooltip{bottom:auto;vertical-align:top;top:12px}.mec-form-row span+span.mec-tooltip{bottom:0;vertical-align:middle}.mec-form-row .mec-col-8 input[type=text],.mec-form-row .mec-col-8 select,.mec-form-row .mec-col-8 span.mec-archive-skins{vertical-align:top}.mec-form-row input:disabled{opacity:.6;background:#f6f6f6}.mec-form-row p{font-size:12px!important;line-height:18px!important;color:#97b2bb!important}.mec-form-row p.description{font-style:italic}.ui-datepicker.ui-widget{border:1px solid #e8e8e8;box-shadow:0 1px 9px rgba(0,0,0,.12);font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif}table.ui-datepicker-calendar{margin-bottom:0}.ui-datepicker-calendar th{font-weight:700;color:#4a4b4c}.ui-datepicker-calendar td,.ui-datepicker-calendar th,.ui-datepicker-calendar tr{border:none}.ui-datepicker.ui-widget select{font-weight:600;font-size:12px;display:inline-block;border-radius:2px;padding:2px 10px;margin:5px 3px;width:auto;min-height:20px;height:26px;border:1px solid #e3e3e3;box-shadow:inset 0 1px 3px rgba(0,0,0,.04)}.ui-datepicker.ui-widget table{border-spacing:2px;border:none}.ui-datepicker.ui-widget td,.ui-datepicker.ui-widget tr{padding:0;background:0 0!important}.ui-datepicker.ui-widget td a{color:#9a9b9c;font-weight:600;width:30px;height:30px;line-height:30px;display:inline-block;border-radius:33px;padding:0;background:#fff;transition:all .2s ease}.ui-datepicker.ui-widget td a.ui-state-active,.ui-datepicker.ui-widget td a:hover{background:#40d9f1;color:#fff}.ui-datepicker.ui-widget .ui-datepicker-next,.ui-datepicker.ui-widget .ui-datepicker-prev{color:#40d9f1;width:30px;height:30px;line-height:30px;display:inline-block;text-align:center;border-radius:33px;background:#ecfcff;transition:all .2s ease}.ui-datepicker.ui-widget .ui-datepicker-next:hover,.ui-datepicker.ui-widget .ui-datepicker-prev:hover{background:#fff;box-shadow:0 0 7px -3px rgba(0,0,0,.4)}.mec-fes-form .mec-tooltip .dashicons-before:before{color:#40d9f1}.mec-fes-form button[type=submit].mec-fes-sub-button{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;border-radius:3px;background:#40d9f1;color:#fff;height:54px;font-size:17px;font-weight:700;box-shadow:0 2px 8px -4px #40d9f1;display:block;transition:all .28s ease;text-transform:uppercase;margin:20px 0 0;padding:14px 20px;border:0;cursor:pointer;text-align:center;letter-spacing:.1em;line-height:1}.mec-fes-form button[type=submit].mec-fes-sub-button:hover{box-shadow:0 2px 12px -2px #40d9f1}.mec-fes-form button[type=submit].mec-fes-sub-button:focus{margin-bottom:-2px;background:#1dc2dc}.mec-fes-form .mec-title span.mec-dashicons{color:#40d9f1;float:left;margin-right:5px}.mec-fes-form .mec-tooltip .box h5{padding:14px 2px}#mec_fes_form,.mec-fes-form-top-actions{max-width:838px;margin:0 auto}@media only screen and (min-width:961px){.mec-fes-form .mec-fes-form-cntt{width:calc(100% - 300px);float:left;padding-right:20px;max-width:538px;display:block}.mec-fes-form .mec-fes-form-sdbr{width:300px}}.mec-fes-form .quicktags-toolbar,.mec-fes-form div.mce-toolbar-grp{background:#ecfcff;border-bottom:1px solid #cfeff5;box-shadow:0 1px 0 1px #cfeff5}.mec-fes-form .quicktags-toolbar{margin-right:-1px;border-top:1px solid #cfeff5}.mec-fes-form div.mce-statusbar{border-top-color:#cfeff5}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-listbox{border:1px solid #cfeff5;border-radius:3px}.mec-fes-form .mce-tinymce.mce-container.mce-panel{border:1px solid #cfeff5;box-shadow:0 2px 6px -3px #cfeff5;border-radius:2px 0 2px 2px}.mec-fes-form .wp-editor-tools .wp-media-buttons{transform:translateY(-6px);margin-top:-6px}.mec-fes-form .wp-editor-tabs{padding-right:0;margin-right:-2px}.mec-fes-form .wp-editor-tabs .wp-switch-editor{border-radius:3px 3px 0 0;border-color:#cfeff5;background:#fff;color:#96b8bd;border-bottom:1px solid #ecfcff}.mec-fes-form .html-active .switch-html,.mec-fes-form .tmce-active .switch-tmce,.mec-fes-form .wp-editor-tabs .wp-switch-editor:active{background:#ecfcff;color:#40d9f1}.mec-fes-form .wp-editor-container,.mec-fes-form div.mce-edit-area.mce-panel{border:none;box-shadow:none}.mec-fes-form .wp-editor-container textarea.wp-editor-area{max-width:100%}.mec-fes-form .mce-toolbar .mce-listbox button{font-size:12px;line-height:22px;color:#798f96}.mec-fes-form .mce-toolbar .mce-ico{color:#627f88}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-active,.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn:active,.mec-fes-form .qt-dfw.active{background:#fff;border-color:#40d9f1;box-shadow:inset 0 2px 6px -3px rgba(106,231,255,.7)}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-active .mce-ico{color:#40d9f1}body .mce-menu .mce-menu-item.mce-active.mce-menu-item-normal,body .mce-menu .mce-menu-item.mce-selected,body .mce-menu .mce-menu-item:focus,body .mce-menu .mce-menu-item:hover,body.mce-menu .mce-menu-item.mce-active.mce-menu-item-preview{background:#40d9f1;color:#fff}.mec-fes-form .mec-not-in-days-day{display:inline-block;padding:4px 32px 4px 15px;border-radius:33px;border:1px solid #cfeff5;box-shadow:0 1px 3px -1px #cfeff5;background:#fbfeff;color:#40d9f1;vertical-align:top}.mec-fes-form .mec-not-in-days-remove{display:inline-block;padding:0 1px 0 0;margin-left:-30px;vertical-align:sub;background:#ff918a;color:#fff;font-family:cursive;width:21px;height:21px;line-height:17px;text-align:center;border-radius:20px;cursor:pointer}.mec-fes-list ul li .mec-event-status{float:left;margin-right:10px;margin-left:0;font-size:11px;font-weight:400;letter-spacing:.3px;border-radius:3px;padding:4px 8px}.mec-fes-form .post-status.mec-book-confirmed:before,.mec-fes-list ul li .mec-event-status.mec-book-confirmed:before{content:"";margin:0;vertical-align:middle;line-height:1;border-right:2px solid #fff!important;border-bottom:2px solid #fff!important;transform:rotate(45deg);color:#fff;width:6px;height:12px;float:left;margin-right:6px}.mec-fes-list ul li .mec-fes-event-export a:before,.mec-fes-list ul li .mec-fes-event-remove:before,.mec-fes-list ul li .mec-fes-event-view a:before,.mec-fes-list-top-actions a:before{content:"\e054";font-family:simple-line-icons;font-size:13px;vertical-align:middle}.mec-fes-list ul li .mec-fes-event-view a:before{content:"\e087"}.mec-fes-list-top-actions a:before{content:"\e095";font-weight:400;margin-right:6px}.mec-fes-list ul li .mec-fes-event-export a:before{content:"\e083"}.mec-fes-form .post-status{border-radius:20px}.mec-fes-form .post-status.mec-book-confirmed:before{height:20px;width:9px;margin:3px 10px}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker-calendar th{height:auto;padding:0}.ui-datepicker .ui-datepicker-calendar td a,.ui-datepicker-calendar th{font-size:14px;line-height:30px}.mec-fes-form .description{font-size:16px}.mec-fes-form input[type=file]{text-align:left}.mec-fes-export-wrapper{width:640px;background:#f8feff;padding:40px 25px}.mec-fes-export-wrapper .mec-fes-btn-date{font-size:16px;line-height:44px;overflow:hidden}.mec-fes-export-wrapper .date-messgae{font-family:sans-serif;padding:2px 18px}.mec-fes-list ul li .mec-event-export-csv,.mec-fes-list ul li .mec-event-export-excel{font-size:12px;border:1px solid #40d9f1;padding:1px 4px;background:rgba(141,229,243,.18);border-radius:4px;color:#40d9f1;font-family:sans-serif;cursor:pointer;display:inline-block;height:26px;line-height:22px}.mec-export-badge{font-size:11px;color:#40d9f1;width:auto;height:24px;line-height:25px;display:inline-block;padding:0 8px;text-align:center;border-radius:3px;background:#ecfcff;transition:all .2s ease}.mec-fes-list ul li .mec-fes-event-export{font-size:11px;background:#f7f7f7;float:right;margin-left:5px}.mec-fes-list ul li .mec-fes-event-export:hover{cursor:pointer;background:#90f0e0;border-color:#4dc8cc}.mec-fes-export-wrapper ul{padding:0;width:100%;text-align:center}.mec-fes-export-wrapper ul li{list-style:none;display:inline-block;width:30%;padding:10px 15px 10px 32px;border-radius:3px;margin-bottom:15px;border:1px solid #cfeff5;box-shadow:0 2px 6px -4px #cfeff5;background:#fff;line-height:normal;margin-right:10px;position:relative;cursor:pointer;font-size:13px;line-height:1;transition:all .2s ease}.mec-fes-export-wrapper ul li:nth-child(3n+0){margin-right:0}.mec-fes-export-wrapper ul li:hover{box-shadow:0 2px 16px -1px #c6e8ef}.mec-fes-export-wrapper ul li:before{content:"";position:absolute;display:inline-block;background:#fff;width:15px;height:15px;margin:-1px 0 0 5px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32);border-radius:50%;left:9px;top:calc(50% - 7px)}.mec-fes-export-wrapper ul li.fes-export-date-active{color:#40d9f1}.mec-fes-export-wrapper ul li.fes-export-date-active:before{width:15px;height:15px;border:6px solid #40d9f1;background:#fff;box-shadow:0 3px 16px -3px #40d9f1}.mec-fes-btn-export{margin-left:15px;margin-top:12px}.mec-fes-btn-export span{position:relative;border:none;border-radius:3px;color:#fff!important;display:inline-block;font-size:13px;line-height:1;text-transform:none;font-weight:400;text-decoration:none;cursor:pointer;margin-right:4px;line-height:1;letter-spacing:0;padding:15px 22px;background:#39c36e;box-shadow:0 1px 7px -3px #39c36e!important;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;cursor:pointer;margin-left:6px}.mec-fes-btn-export span:hover{background:#222}.mec-event-export-excel:before,span.mec-event-export-csv:before{content:"\e083";font-family:simple-line-icons;font-size:13px;vertical-align:middle;margin-right:7px;margin-top:-1px;display:inline-block}.mec-fes-list .wn-p-t-right{min-width:170px;max-width:200px;display:inline-block;top:-8px;left:50%;margin-top:0;transform:translate(-50%,-100%);padding:0;background-color:#000;color:#fff;font-weight:400;font-size:14px;letter-spacing:.5px;line-height:1.5;position:absolute;z-index:99999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #535a61;visibility:hidden;opacity:0;transition:opacity .23s;padding:5px 10px 6px;border-radius:8px;text-align:center;font-style:normal}.mec-fes-list .mec-fes-event-export:hover .wn-p-t-right,.mec-fes-list .mec-fes-event-remove:hover .wn-p-t-right,.mec-fes-list .mec-fes-event-view:hover .wn-p-t-right{visibility:visible;opacity:1}.mec-fes-list .wn-p-t-right i{position:absolute!important;top:100%;right:50%;margin-top:-6px!important;margin-right:-6px!important;width:12px;height:24px;overflow:hidden;transform:rotate(-90deg)}.mec-fes-list .wn-p-t-right i:after{content:'';position:absolute;width:12px;height:12px;left:0;top:50%;transform:translate(50%,-50%) rotate(-45deg);background-color:#000;box-shadow:0 8px 9px -4px #535a61}.mec-fes-form .select2-container{min-height:38px;box-sizing:border-box;margin-bottom:8px;padding:0 6px;border-radius:2px;border:1px solid #ddd;box-shadow:inset 0 1px 6px rgba(0,0,0,.07);background-color:#fff;color:#32373c;outline:0;transition:50ms border-color ease-in-out;min-width:200px;font-size:14px}.mec-fes-form .select2-selection{border:none;background:0 0;padding-top:2px;width:100%;height:100%}.mec-fes-form .select2-container--default.select2-container--focus .select2-selection{border:none!important;outline:0}.mec-fes-form .select2-container--default .select2-selection--single .select2-selection__arrow{top:5px;right:4px}.select2-results{font-size:14px}.mec-fes-category-children,.mec-fes-category-children .mec-fes-category-children{padding-left:24px}
assets/js/frontend.js CHANGED
@@ -1741,6 +1741,10 @@ var mecSingleEventDisplayer = {
1741
  if (jQuery('.mec-modal-result').length === 0) jQuery('.mec-wrap').append('<div class="mec-modal-result"></div>');
1742
  jQuery('.mec-modal-result').addClass('mec-month-navigator-loading');
1743
 
 
 
 
 
1744
  $.ajax({
1745
  url: settings.ajax_url,
1746
  data: "action=mec_timetable_load_month&mec_year=" + year + "&mec_month=" + month + "&mec_week=" + week_number + "&" + settings.atts + "&apply_sf_date=1",
@@ -1764,6 +1768,9 @@ var mecSingleEventDisplayer = {
1764
 
1765
  // Set active week
1766
  setThisWeek(response.week_id);
 
 
 
1767
  },
1768
  error: function () {}
1769
  });
1741
  if (jQuery('.mec-modal-result').length === 0) jQuery('.mec-wrap').append('<div class="mec-modal-result"></div>');
1742
  jQuery('.mec-modal-result').addClass('mec-month-navigator-loading');
1743
 
1744
+ // Set MEC Year And Month If Undefined
1745
+ year = typeof year == 'undefined' ? '' : year;
1746
+ month = typeof month == 'undefined' ? '' : month;
1747
+
1748
  $.ajax({
1749
  url: settings.ajax_url,
1750
  data: "action=mec_timetable_load_month&mec_year=" + year + "&mec_month=" + month + "&mec_week=" + week_number + "&" + settings.atts + "&apply_sf_date=1",
1768
 
1769
  // Set active week
1770
  setThisWeek(response.week_id);
1771
+
1772
+ // Focus First Active Week
1773
+ mec_focus_week(settings.id);
1774
  },
1775
  error: function () {}
1776
  });
assets/js/jquery.nice-select.min.js CHANGED
@@ -1,4 +1,4 @@
1
- /* jQuery Nice Select - v1.0
2
- https://github.com/hernansartorio/jquery-nice-select
3
- Made by Hernán Sartorio */
4
  !function(e){e.fn.niceSelect=function(t){function s(t){t.after(e("<div></div>").addClass("nice-select").addClass(t.attr("class")||"").addClass(t.attr("disabled")?"disabled":"").attr("tabindex",t.attr("disabled")?null:"0").html('<span class="current"></span><ul class="list"></ul>'));var s=t.next(),n=t.find("option"),i=t.find("option:selected");s.find(".current").html(i.data("display")||i.text()),n.each(function(t){var n=e(this),i=n.data("display");s.find("ul").append(e("<li></li>").attr("data-value",n.val()).attr("data-display",i||null).addClass("option"+(n.is(":selected")?" selected":"")+(n.is(":disabled")?" disabled":"")).html(n.text()))})}if("string"==typeof t)return"update"==t?this.each(function(){var t=e(this),n=e(this).next(".nice-select"),i=n.hasClass("open");n.length&&(n.remove(),s(t),i&&t.next().trigger("click"))}):"destroy"==t?(this.each(function(){var t=e(this),s=e(this).next(".nice-select");s.length&&(s.remove(),t.css("display",""))}),0==e(".nice-select").length&&e(document).off(".nice_select")):console.log('Method "'+t+'" does not exist.'),this;this.hide(),this.each(function(){var t=e(this);t.next().hasClass("nice-select")||s(t)}),e(document).off(".nice_select"),e(document).on("click.nice_select",".nice-select",function(t){var s=e(this);e(".nice-select").not(s).removeClass("open"),s.toggleClass("open"),s.hasClass("open")?(s.find(".option"),s.find(".focus").removeClass("focus"),s.find(".selected").addClass("focus")):s.focus()}),e(document).on("click.nice_select",function(t){0===e(t.target).closest(".nice-select").length&&e(".nice-select").removeClass("open").find(".option")}),e(document).on("click.nice_select",".nice-select .option:not(.disabled)",function(t){var s=e(this),n=s.closest(".nice-select");n.find(".selected").removeClass("selected"),s.addClass("selected");var i=s.data("display")||s.text();n.find(".current").text(i),n.prev("select").val(s.data("value")).trigger("change")}),e(document).on("keydown.nice_select",".nice-select",function(t){var s=e(this),n=e(s.find(".focus")||s.find(".list .option.selected"));if(32==t.keyCode||13==t.keyCode)return s.hasClass("open")?n.trigger("click"):s.trigger("click"),!1;if(40==t.keyCode){if(s.hasClass("open")){var i=n.nextAll(".option:not(.disabled)").first();i.length>0&&(s.find(".focus").removeClass("focus"),i.addClass("focus"))}else s.trigger("click");return!1}if(38==t.keyCode){if(s.hasClass("open")){var l=n.prevAll(".option:not(.disabled)").first();l.length>0&&(s.find(".focus").removeClass("focus"),l.addClass("focus"))}else s.trigger("click");return!1}if(27==t.keyCode)s.hasClass("open")&&s.trigger("click");else if(9==t.keyCode&&s.hasClass("open"))return!1});var n=document.createElement("a").style;return n.cssText="pointer-events:auto","auto"!==n.pointerEvents&&e("html").addClass("no-csspointerevents"),this}}(jQuery);
1
+ /* jQuery Nice Select - v1.0
2
+ https://github.com/hernansartorio/jquery-nice-select
3
+ Made by Hernán Sartorio */
4
  !function(e){e.fn.niceSelect=function(t){function s(t){t.after(e("<div></div>").addClass("nice-select").addClass(t.attr("class")||"").addClass(t.attr("disabled")?"disabled":"").attr("tabindex",t.attr("disabled")?null:"0").html('<span class="current"></span><ul class="list"></ul>'));var s=t.next(),n=t.find("option"),i=t.find("option:selected");s.find(".current").html(i.data("display")||i.text()),n.each(function(t){var n=e(this),i=n.data("display");s.find("ul").append(e("<li></li>").attr("data-value",n.val()).attr("data-display",i||null).addClass("option"+(n.is(":selected")?" selected":"")+(n.is(":disabled")?" disabled":"")).html(n.text()))})}if("string"==typeof t)return"update"==t?this.each(function(){var t=e(this),n=e(this).next(".nice-select"),i=n.hasClass("open");n.length&&(n.remove(),s(t),i&&t.next().trigger("click"))}):"destroy"==t?(this.each(function(){var t=e(this),s=e(this).next(".nice-select");s.length&&(s.remove(),t.css("display",""))}),0==e(".nice-select").length&&e(document).off(".nice_select")):console.log('Method "'+t+'" does not exist.'),this;this.hide(),this.each(function(){var t=e(this);t.next().hasClass("nice-select")||s(t)}),e(document).off(".nice_select"),e(document).on("click.nice_select",".nice-select",function(t){var s=e(this);e(".nice-select").not(s).removeClass("open"),s.toggleClass("open"),s.hasClass("open")?(s.find(".option"),s.find(".focus").removeClass("focus"),s.find(".selected").addClass("focus")):s.focus()}),e(document).on("click.nice_select",function(t){0===e(t.target).closest(".nice-select").length&&e(".nice-select").removeClass("open").find(".option")}),e(document).on("click.nice_select",".nice-select .option:not(.disabled)",function(t){var s=e(this),n=s.closest(".nice-select");n.find(".selected").removeClass("selected"),s.addClass("selected");var i=s.data("display")||s.text();n.find(".current").text(i),n.prev("select").val(s.data("value")).trigger("change")}),e(document).on("keydown.nice_select",".nice-select",function(t){var s=e(this),n=e(s.find(".focus")||s.find(".list .option.selected"));if(32==t.keyCode||13==t.keyCode)return s.hasClass("open")?n.trigger("click"):s.trigger("click"),!1;if(40==t.keyCode){if(s.hasClass("open")){var i=n.nextAll(".option:not(.disabled)").first();i.length>0&&(s.find(".focus").removeClass("focus"),i.addClass("focus"))}else s.trigger("click");return!1}if(38==t.keyCode){if(s.hasClass("open")){var l=n.prevAll(".option:not(.disabled)").first();l.length>0&&(s.find(".focus").removeClass("focus"),l.addClass("focus"))}else s.trigger("click");return!1}if(27==t.keyCode)s.hasClass("open")&&s.trigger("click");else if(9==t.keyCode&&s.hasClass("open"))return!1});var n=document.createElement("a").style;return n.cssText="pointer-events:auto","auto"!==n.pointerEvents&&e("html").addClass("no-csspointerevents"),this}}(jQuery);
changelog.txt CHANGED
@@ -1,4 +1,16 @@
1
- v 4.7.6 - 22 October 2019
 
 
 
 
 
 
 
 
 
 
 
 
2
  - Added: A guide message in "Show Only Expired Events" section in shortcode builder
3
  - Added: A new message for booking verification (pro)
4
  - Improved: Select organizers/locations in add event section
1
+ v 4.7.7 - 30 October 2019
2
+ - Compatibility: WordPress 5.2.4
3
+ - Added: An option to manage waiting time before redirecting to Thank You Page (pro)
4
+ - Added: Display the total amount of purchased tickets in confirmation email (pro)
5
+ - Added: A note to speakers' tab after adding a speaker
6
+ - Fixed: Paypal Express (pro)
7
+ - Fixed: Filtering options in timetable skin (pro)
8
+ - Fixed: Disable invoice link when booking is not confirmed (pro)
9
+ - Fixed: "Show only Expired Events" in all skins
10
+ - Fixed: Advanced days
11
+ - Fixed: Some minor issues
12
+
13
+ v 4.7.6 - 22 October 2019
14
  - Added: A guide message in "Show Only Expired Events" section in shortcode builder
15
  - Added: A new message for booking verification (pro)
16
  - Improved: Select organizers/locations in add event section
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: 2019-10-22 15:22+0330\n"
6
- "PO-Revision-Date: 2019-10-22 15:24+0330\n"
7
  "Last-Translator: Jogon <koenig@kafinanz.de>\n"
8
  "Language-Team: German\n"
9
  "Language: de_DE\n"
@@ -79,7 +79,7 @@ msgid "Settings"
79
  msgstr "Einstellungen"
80
 
81
  #: app/features/contextual.php:62 app/features/events.php:2415
82
- #: app/features/mec/booking.php:426 app/features/mec/support.php:29
83
  #: app/libraries/main.php:554
84
  msgid "Booking Form"
85
  msgstr "Buchungsformular"
@@ -98,7 +98,7 @@ msgstr ""
98
  "<iframe width=\"600\" height=\"300\" src=\"https://www.youtube.com/embed/"
99
  "YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></iframe>"
100
 
101
- #: app/features/contextual.php:70 app/features/mec/booking.php:544
102
  #: app/features/mec/support.php:36 app/libraries/main.php:555
103
  msgid "Payment Gateways"
104
  msgstr "Zahlungs-Gateways"
@@ -252,7 +252,7 @@ msgstr "Herausgenommene Tage "
252
  msgid "Booking"
253
  msgstr "Buchung / Reservierung"
254
 
255
- #: app/features/contextual.php:318 app/features/mec/booking.php:248
256
  #: app/libraries/main.php:551
257
  msgid "Coupons"
258
  msgstr "Gutscheine"
@@ -328,7 +328,7 @@ msgstr "Keine Veranstaltungen im Papierkorb gefunden!"
328
  #: app/features/mec/meta_boxes/search_form.php:514
329
  #: app/features/mec/meta_boxes/search_form.php:575
330
  #: app/features/mec/settings.php:720 app/features/mec/single.php:204
331
- #: app/features/search.php:67 app/libraries/main.php:4886
332
  #: app/libraries/skins.php:808 app/skins/single.php:559
333
  #: app/skins/single/default.php:185 app/skins/single/default.php:397
334
  #: app/skins/single/m1.php:170 app/skins/single/m2.php:102
@@ -338,62 +338,62 @@ msgstr "Kategorie"
338
 
339
  #: app/features/events.php:176 app/features/events.php:3212
340
  #: app/features/fes/form.php:737 app/features/mec.php:336
341
- #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:4885
342
  msgid "Categories"
343
  msgstr "Kategorien"
344
 
345
  #: app/features/events.php:186 app/features/labels.php:71
346
  #: app/features/locations.php:69 app/features/organizers.php:69
347
- #: app/features/speakers.php:70
348
  #, php-format
349
  msgid "All %s"
350
  msgstr "Alle %s"
351
 
352
  #: app/features/events.php:187 app/features/labels.php:72
353
  #: app/features/locations.php:70 app/features/organizers.php:70
354
- #: app/features/speakers.php:71
355
  #, php-format
356
  msgid "Edit %s"
357
  msgstr "Bearbeiten %s"
358
 
359
  #: app/features/events.php:188 app/features/labels.php:73
360
  #: app/features/locations.php:71 app/features/organizers.php:71
361
- #: app/features/speakers.php:72
362
  #, php-format
363
  msgid "View %s"
364
  msgstr "Ansicht %s"
365
 
366
  #: app/features/events.php:189 app/features/labels.php:74
367
  #: app/features/locations.php:72 app/features/organizers.php:72
368
- #: app/features/speakers.php:73
369
  #, php-format
370
  msgid "Update %s"
371
  msgstr "Update %s"
372
 
373
  #: app/features/events.php:190 app/features/labels.php:75
374
  #: app/features/locations.php:73 app/features/organizers.php:73
375
- #: app/features/speakers.php:74
376
  #, php-format
377
  msgid "Add New %s"
378
  msgstr "Neu hinzufügen%s"
379
 
380
  #: app/features/events.php:191 app/features/labels.php:76
381
  #: app/features/locations.php:74 app/features/organizers.php:74
382
- #: app/features/speakers.php:75
383
  #, php-format
384
  msgid "New %s Name"
385
  msgstr "Neuer %s Name"
386
 
387
  #: app/features/events.php:192 app/features/labels.php:77
388
  #: app/features/locations.php:75 app/features/organizers.php:75
389
- #: app/features/speakers.php:76
390
  #, php-format
391
  msgid "Popular %s"
392
  msgstr "Beliebt %s"
393
 
394
  #: app/features/events.php:193 app/features/labels.php:78
395
  #: app/features/locations.php:76 app/features/organizers.php:76
396
- #: app/features/speakers.php:77
397
  #, php-format
398
  msgid "Search %s"
399
  msgstr "Suche %s"
@@ -422,7 +422,7 @@ msgstr "Gäste Daten"
422
  #: app/features/fes.php:224 app/features/fes.php:332
423
  #: app/features/fes/form.php:669 app/features/labels.php:178
424
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
425
- #: app/features/profile/profile.php:168 app/libraries/notifications.php:880
426
  #: app/modules/booking/steps/form.php:37
427
  msgid "Name"
428
  msgstr "Name"
@@ -430,12 +430,12 @@ msgstr "Name"
430
  #: app/features/events.php:463 app/features/events.php:2408
431
  #: app/features/events.php:2484 app/features/fes.php:224
432
  #: app/features/fes.php:332 app/features/fes/form.php:665
433
- #: app/features/mec/booking.php:57 app/features/mec/booking.php:477
434
  #: app/features/organizers.php:111 app/features/organizers.php:152
435
- #: app/features/profile/profile.php:171 app/features/speakers.php:124
436
- #: app/features/speakers.php:185 app/libraries/main.php:1472
437
- #: app/libraries/main.php:1541 app/libraries/main.php:2592
438
- #: app/libraries/notifications.php:881 app/modules/booking/steps/form.php:46
439
  #: app/modules/booking/steps/form.php:84 app/skins/single.php:812
440
  #: app/skins/single.php:867 app/skins/single/default.php:227
441
  #: app/skins/single/default.php:439 app/skins/single/m1.php:107
@@ -531,10 +531,11 @@ msgstr ""
531
  #: app/features/events.php:2324 app/features/events.php:2337
532
  #: app/features/fes/form.php:631 app/features/locations.php:299
533
  #: app/features/mec/booking.php:108 app/features/mec/booking.php:158
534
- #: app/features/mec/booking.php:174 app/features/mec/booking.php:293
535
- #: app/features/mec/booking.php:322 app/features/mec/booking.php:370
536
- #: app/features/mec/booking.php:380 app/features/mec/booking.php:402
537
- #: app/features/mec/booking.php:412 app/features/mec/dashboard.php:71
 
538
  #: app/features/mec/meta_boxes/display_options.php:66
539
  #: app/features/mec/meta_boxes/display_options.php:79
540
  #: app/features/mec/meta_boxes/display_options.php:92
@@ -570,12 +571,12 @@ msgstr ""
570
  #: app/features/mec/modules.php:154 app/features/mec/modules.php:312
571
  #: app/features/mec/notifications.php:54 app/features/mec/notifications.php:111
572
  #: app/features/mec/notifications.php:163
573
- #: app/features/mec/notifications.php:222
574
- #: app/features/mec/notifications.php:290
575
- #: app/features/mec/notifications.php:353
576
- #: app/features/mec/notifications.php:364
577
- #: app/features/mec/notifications.php:426
578
- #: app/features/mec/notifications.php:472 app/features/mec/settings.php:66
579
  #: app/features/mec/settings.php:85 app/features/mec/settings.php:112
580
  #: app/features/mec/settings.php:147 app/features/mec/settings.php:168
581
  #: app/features/mec/settings.php:188 app/features/mec/settings.php:265
@@ -814,14 +815,14 @@ msgstr ""
814
  #: app/features/events.php:1153 app/features/events.php:3434
815
  #: app/features/events.php:3476 app/features/fes/form.php:707
816
  #: app/features/ix.php:2743 app/features/ix.php:2784
817
- #: app/features/mec/settings.php:576 app/libraries/main.php:4918
818
  #: app/widgets/single.php:103
819
  msgid "Event Cost"
820
  msgstr ""
821
  "Bruttopreis des Events in Euro, 0 für kostenlos oder z.B. 39, ohne €-Zeichen"
822
 
823
  #: app/features/events.php:1157 app/features/fes/form.php:710
824
- #: app/libraries/main.php:4919 app/skins/single.php:582
825
  #: app/skins/single/default.php:119 app/skins/single/default.php:331
826
  #: app/skins/single/m1.php:49 app/skins/single/modern.php:199
827
  msgid "Cost"
@@ -839,8 +840,8 @@ msgstr "Ausschluss bestimmter Tage"
839
 
840
  #: app/features/events.php:1189 app/features/events.php:2485
841
  #: app/features/fes.php:224 app/features/fes.php:332
842
- #: app/features/mec/booking.php:478 app/features/profile/profile.php:53
843
- #: app/libraries/main.php:2048 app/libraries/main.php:2650
844
  #: app/modules/booking/steps/tickets.php:22
845
  #: app/modules/next-event/details.php:90 app/skins/single.php:637
846
  #: app/skins/single/default.php:83 app/skins/single/default.php:295
@@ -885,8 +886,8 @@ msgstr ""
885
  #: app/features/events.php:2313 app/features/events.php:3240
886
  #: app/features/events.php:3434 app/features/events.php:3476
887
  #: app/features/fes/form.php:226 app/features/ix.php:2743
888
- #: app/features/ix.php:2784 app/features/mec/booking.php:362
889
- #: app/features/mec/booking.php:394 app/features/mec/styling.php:115
890
  msgid "Title"
891
  msgstr "Titel"
892
 
@@ -897,15 +898,15 @@ msgstr "Titel"
897
  #: app/features/events.php:2032 app/features/events.php:2059
898
  #: app/features/events.php:2158 app/features/events.php:2194
899
  #: app/features/events.php:2301 app/features/events.php:2343
900
- #: app/features/mec/booking.php:305 app/features/mec/booking.php:334
901
- #: app/features/mec/booking.php:385 app/features/mec/booking.php:417
902
- #: app/libraries/main.php:2511 app/libraries/main.php:2541
903
- #: app/libraries/main.php:2570 app/libraries/main.php:2600
904
- #: app/libraries/main.php:2629 app/libraries/main.php:2658
905
- #: app/libraries/main.php:2687 app/libraries/main.php:2716
906
- #: app/libraries/main.php:2738 app/libraries/main.php:2769
907
- #: app/libraries/main.php:2813 app/libraries/main.php:2857
908
- #: app/libraries/main.php:2904 app/libraries/main.php:2943
909
  msgid "Remove"
910
  msgstr "Entfernen"
911
 
@@ -932,8 +933,8 @@ msgstr "Beschreibung"
932
  #: app/features/events.php:1336 app/features/events.php:1369
933
  #: app/features/events.php:1430 app/features/fes/form.php:831
934
  #: app/features/mec.php:344 app/features/mec/modules.php:52
935
- #: app/features/mec/settings.php:624 app/features/speakers.php:60
936
- #: app/libraries/main.php:559 app/libraries/main.php:4893
937
  #: app/modules/speakers/details.php:18
938
  msgid "Speakers"
939
  msgstr ""
@@ -950,7 +951,7 @@ msgid "Event Links"
950
  msgstr "Veranstaltungslinks"
951
 
952
  #: app/features/events.php:1464 app/features/events.php:1470
953
- #: app/features/fes/form.php:686 app/libraries/main.php:4916
954
  msgid "Event Link"
955
  msgstr "Veranstaltungslink"
956
 
@@ -978,7 +979,7 @@ msgid "URL Shortener"
978
  msgstr ""
979
 
980
  #: app/features/events.php:1480 app/features/events.php:1493
981
- #: app/features/fes/form.php:691 app/libraries/main.php:4917
982
  #: app/skins/single.php:656 app/skins/single/default.php:133
983
  #: app/skins/single/default.php:345 app/skins/single/m1.php:191
984
  #: app/skins/single/m2.php:124 app/skins/single/modern.php:132
@@ -1052,7 +1053,7 @@ msgid "12"
1052
  msgstr ""
1053
 
1054
  #: app/features/events.php:1638 app/libraries/book.php:60
1055
- #: app/libraries/main.php:4921 app/modules/booking/steps/tickets.php:40
1056
  msgid "Tickets"
1057
  msgstr "Tickets"
1058
 
@@ -1084,9 +1085,9 @@ msgstr "Uhrzeit Ende"
1084
  #: app/features/events.php:1996 app/features/events.php:1999
1085
  #: app/features/events.php:2055 app/features/events.php:2272
1086
  #: app/features/events.php:2276 app/features/events.php:2318
1087
- #: app/features/events.php:2321 app/features/mec/booking.php:366
1088
- #: app/features/mec/booking.php:369 app/features/mec/booking.php:398
1089
- #: app/features/mec/booking.php:401
1090
  msgid "Price"
1091
  msgstr "Preis"
1092
 
@@ -1136,19 +1137,19 @@ msgid "Fees"
1136
  msgstr "Gebühren"
1137
 
1138
  #: app/features/events.php:2132 app/features/events.php:2170
1139
- #: app/features/mec/booking.php:285 app/features/mec/booking.php:314
1140
  msgid "Fee Title"
1141
  msgstr "Gebühren Name"
1142
 
1143
  #: app/features/events.php:2138 app/features/events.php:2142
1144
  #: app/features/events.php:2175 app/features/events.php:2178
1145
- #: app/features/mec/booking.php:289 app/features/mec/booking.php:292
1146
- #: app/features/mec/booking.php:318 app/features/mec/booking.php:321
1147
  msgid "Amount"
1148
  msgstr "Betrag"
1149
 
1150
  #: app/features/events.php:2143 app/features/events.php:2179
1151
- #: app/features/mec/booking.php:293 app/features/mec/booking.php:322
1152
  msgid ""
1153
  "Fee amount, considered as fixed amount if you set the type to amount "
1154
  "otherwise considered as percentage"
@@ -1157,17 +1158,17 @@ msgstr ""
1157
  "sonst als Prozentsatz"
1158
 
1159
  #: app/features/events.php:2152 app/features/events.php:2188
1160
- #: app/features/mec/booking.php:300 app/features/mec/booking.php:329
1161
  msgid "Percent"
1162
  msgstr "Prozent"
1163
 
1164
  #: app/features/events.php:2153 app/features/events.php:2189
1165
- #: app/features/mec/booking.php:301 app/features/mec/booking.php:330
1166
  msgid "Amount (Per Ticket)"
1167
  msgstr "Betrag (pro Ticket)"
1168
 
1169
  #: app/features/events.php:2154 app/features/events.php:2190
1170
- #: app/features/mec/booking.php:302 app/features/mec/booking.php:331
1171
  msgid "Amount (Per Booking)"
1172
  msgstr "Betrag (pro Buchung)"
1173
 
@@ -1176,7 +1177,7 @@ msgid "Ticket Variations / Options"
1176
  msgstr ""
1177
 
1178
  #: app/features/events.php:2277 app/features/events.php:2322
1179
- #: app/features/mec/booking.php:370 app/features/mec/booking.php:402
1180
  #, fuzzy
1181
  #| msgid "Option"
1182
  msgid "Option Price"
@@ -1184,65 +1185,65 @@ msgstr "Option"
1184
 
1185
  #: app/features/events.php:2287 app/features/events.php:2291
1186
  #: app/features/events.php:2331 app/features/events.php:2334
1187
- #: app/features/mec/booking.php:376 app/features/mec/booking.php:379
1188
- #: app/features/mec/booking.php:408 app/features/mec/booking.php:411
1189
  #, fuzzy
1190
  #| msgid "Amount (Per Ticket)"
1191
  msgid "Maximum Per Ticket"
1192
  msgstr "Betrag (pro Ticket)"
1193
 
1194
  #: app/features/events.php:2292 app/features/events.php:2335
1195
- #: app/features/mec/booking.php:380 app/features/mec/booking.php:412
1196
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
1197
  msgstr ""
1198
 
1199
- #: app/features/events.php:2481 app/features/mec/booking.php:474
1200
- #: app/libraries/main.php:2533
1201
  #, fuzzy
1202
  #| msgid "Name"
1203
  msgid "MEC Name"
1204
  msgstr "Name"
1205
 
1206
- #: app/features/events.php:2482 app/features/mec/booking.php:475
1207
- #: app/libraries/main.php:2562
1208
  #, fuzzy
1209
  #| msgid "Email"
1210
  msgid "MEC Email"
1211
  msgstr "Email"
1212
 
1213
- #: app/features/events.php:2483 app/features/mec/booking.php:476
1214
- #: app/libraries/main.php:2503
1215
  msgid "Text"
1216
  msgstr "Text"
1217
 
1218
- #: app/features/events.php:2486 app/features/mec/booking.php:479
1219
  #: app/features/organizers.php:103 app/features/organizers.php:148
1220
- #: app/features/speakers.php:116 app/features/speakers.php:181
1221
- #: app/features/speakers.php:254 app/libraries/main.php:2679
1222
  msgid "Tel"
1223
  msgstr "Tel"
1224
 
1225
- #: app/features/events.php:2487 app/features/mec/booking.php:480
1226
- #: app/libraries/main.php:2621
1227
  msgid "File"
1228
  msgstr ""
1229
 
1230
- #: app/features/events.php:2488 app/features/mec/booking.php:481
1231
- #: app/libraries/main.php:2708
1232
  msgid "Textarea"
1233
  msgstr "Textbereich"
1234
 
1235
- #: app/features/events.php:2489 app/features/mec/booking.php:482
1236
- #: app/libraries/main.php:2761
1237
  msgid "Checkboxes"
1238
  msgstr "Checkboxes"
1239
 
1240
- #: app/features/events.php:2490 app/features/mec/booking.php:483
1241
- #: app/libraries/main.php:2805
1242
  msgid "Radio Buttons"
1243
  msgstr "Radio Buttons"
1244
 
1245
- #: app/features/events.php:2491 app/features/mec/booking.php:484
1246
  #: app/features/mec/meta_boxes/search_form.php:34
1247
  #: app/features/mec/meta_boxes/search_form.php:41
1248
  #: app/features/mec/meta_boxes/search_form.php:48
@@ -1311,17 +1312,17 @@ msgstr "Radio Buttons"
1311
  #: app/features/mec/meta_boxes/search_form.php:599
1312
  #: app/features/mec/meta_boxes/search_form.php:606
1313
  #: app/features/mec/meta_boxes/search_form.php:613
1314
- #: app/features/mec/meta_boxes/search_form.php:620 app/libraries/main.php:2849
1315
  msgid "Dropdown"
1316
  msgstr "Dropdown"
1317
 
1318
- #: app/features/events.php:2492 app/features/mec/booking.php:485
1319
- #: app/libraries/main.php:2896
1320
  msgid "Agreement"
1321
  msgstr "Zustimmung"
1322
 
1323
- #: app/features/events.php:2493 app/features/mec/booking.php:486
1324
- #: app/libraries/main.php:2737
1325
  msgid "Paragraph"
1326
  msgstr "Absatz"
1327
 
@@ -1360,8 +1361,8 @@ msgstr "Veranstalter"
1360
  #: app/features/mec/meta_boxes/search_form.php:521
1361
  #: app/features/mec/meta_boxes/search_form.php:582
1362
  #: app/features/mec/settings.php:726 app/features/mec/single.php:212
1363
- #: app/features/search.php:71 app/libraries/main.php:2042
1364
- #: app/libraries/main.php:4890 app/libraries/skins.php:834
1365
  #: app/skins/single.php:486 app/skins/single.php:907
1366
  #: app/skins/single/default.php:169 app/skins/single/default.php:381
1367
  #: app/skins/single/m1.php:155 app/skins/single/m2.php:87
@@ -1386,7 +1387,7 @@ msgstr "Ort"
1386
  #: app/features/organizers.php:58 app/features/organizers.php:204
1387
  #: app/features/organizers.php:260 app/features/organizers.php:262
1388
  #: app/features/organizers.php:271 app/features/search.php:75
1389
- #: app/libraries/main.php:4892 app/libraries/skins.php:860
1390
  #: app/skins/single.php:795 app/skins/single/default.php:210
1391
  #: app/skins/single/default.php:422 app/skins/single/m1.php:90
1392
  #: app/skins/single/m2.php:22 app/skins/single/modern.php:31
@@ -1430,7 +1431,7 @@ msgstr "Kopie"
1430
  #: app/features/fes.php:224 app/features/fes.php:332 app/features/ix.php:2743
1431
  #: app/features/ix.php:2784 app/features/labels.php:177
1432
  #: app/features/locations.php:229 app/features/organizers.php:203
1433
- #: app/features/speakers.php:251
1434
  msgid "ID"
1435
  msgstr "ID"
1436
 
@@ -1483,13 +1484,13 @@ msgid "The event removed!"
1483
  msgstr "Die Veranstaltung wurde entfernt."
1484
 
1485
  #: app/features/fes.php:224 app/features/fes.php:332
1486
- #: app/features/profile/profile.php:174 app/libraries/main.php:2077
1487
- #: app/libraries/main.php:4920
1488
  msgid "Ticket"
1489
  msgstr "Ticket"
1490
 
1491
  #: app/features/fes.php:224 app/features/fes.php:332
1492
- #: app/libraries/main.php:2054
1493
  msgid "Transaction ID"
1494
  msgstr "Transaktions-ID"
1495
 
@@ -1580,7 +1581,7 @@ msgstr "Bild entfernen"
1580
 
1581
  #: app/features/fes/form.php:763 app/features/labels.php:61
1582
  #: app/features/labels.php:221 app/features/mec.php:337
1583
- #: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:4887
1584
  #: app/skins/single.php:685 app/skins/single/default.php:148
1585
  #: app/skins/single/default.php:360 app/skins/single/m1.php:64
1586
  #: app/skins/single/modern.php:214
@@ -1927,13 +1928,13 @@ msgstr "Umschalten"
1927
  #: app/features/ix/export_g_calendar.php:147
1928
  #: app/features/ix/export_g_calendar.php:164
1929
  #: app/features/mec/notifications.php:92 app/features/mec/notifications.php:144
1930
- #: app/features/mec/notifications.php:197
1931
- #: app/features/mec/notifications.php:398
1932
  msgid "Add to Google Calendar"
1933
  msgstr "Zum Google Kalender hinzufügen"
1934
 
1935
- #: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:616
1936
- #: app/features/mec/modules.php:392 app/features/mec/notifications.php:590
1937
  #: app/features/mec/settings.php:895 app/features/mec/single.php:269
1938
  msgid "Checking ..."
1939
  msgstr "Überprüfung"
@@ -1979,8 +1980,8 @@ msgid "ICS Feed"
1979
  msgstr ""
1980
 
1981
  #: app/features/ix/import.php:46 app/features/mec/booking.php:91
1982
- #: app/features/mec/booking.php:251 app/features/mec/booking.php:269
1983
- #: app/features/mec/booking.php:346
1984
  #: app/features/mec/meta_boxes/display_options.php:150
1985
  #: app/features/mec/meta_boxes/display_options.php:315
1986
  #: app/features/mec/modules.php:70 app/features/mec/modules.php:211
@@ -1990,8 +1991,8 @@ msgid "%s is required to use this feature."
1990
  msgstr ""
1991
 
1992
  #: app/features/ix/import.php:46 app/features/ix/sync.php:22
1993
- #: app/features/mec/booking.php:91 app/features/mec/booking.php:251
1994
- #: app/features/mec/booking.php:269 app/features/mec/booking.php:346
1995
  #: app/features/mec/meta_boxes/display_options.php:150
1996
  #: app/features/mec/meta_boxes/display_options.php:315
1997
  #: app/features/mec/meta_boxes/display_options.php:330
@@ -2195,7 +2196,7 @@ msgstr "Automatischer Google Calender Import"
2195
 
2196
  #: app/features/ix/sync.php:32 app/features/ix/sync.php:41
2197
  #: app/features/ix/sync.php:52 app/features/ix/sync.php:63
2198
- #: app/features/mec/notifications.php:341
2199
  msgid "Important Note"
2200
  msgstr "Important Note"
2201
 
@@ -2349,7 +2350,7 @@ msgstr ""
2349
  "Event Seite zu bearbeiten und sicherzustellen, dass sie korrekt sind."
2350
 
2351
  #: app/features/labels.php:79 app/features/locations.php:77
2352
- #: app/features/organizers.php:77 app/features/speakers.php:78
2353
  #, php-format
2354
  msgid "← Back to %s"
2355
  msgstr ""
@@ -2397,7 +2398,7 @@ msgid "Featured"
2397
  msgstr "Ausgewähltes Bild"
2398
 
2399
  #: app/features/labels.php:118 app/features/labels.php:143
2400
- #: app/libraries/main.php:5133 app/skins/agenda/render.php:41
2401
  #: app/skins/available_spot/tpl.php:42 app/skins/carousel/render.php:45
2402
  #: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:32
2403
  #: app/skins/daily_view/render.php:52 app/skins/grid/render.php:50
@@ -2415,7 +2416,7 @@ msgid "You can show featured and canceled events by a different style!"
2415
  msgstr ""
2416
 
2417
  #: app/features/labels.php:180 app/features/locations.php:232
2418
- #: app/features/organizers.php:206 app/features/speakers.php:255
2419
  #: app/modules/booking/steps/tickets.php:38
2420
  msgid "Count"
2421
  msgstr "Zähler"
@@ -2432,7 +2433,7 @@ msgstr "Event %s"
2432
 
2433
  #: app/features/locations.php:59 app/features/mec.php:338
2434
  #: app/features/mec/dashboard.php:243 app/features/mec/meta_boxes/filter.php:96
2435
- #: app/libraries/main.php:4889
2436
  msgid "Locations"
2437
  msgstr "Orte"
2438
 
@@ -2465,13 +2466,13 @@ msgstr "Geologischer Längengrad (Optional)"
2465
 
2466
  #: app/features/locations.php:138 app/features/locations.php:180
2467
  #: app/features/organizers.php:127 app/features/organizers.php:160
2468
- #: app/features/speakers.php:156 app/features/speakers.php:201
2469
  msgid "Thumbnail"
2470
  msgstr "Miniaturansicht"
2471
 
2472
  #: app/features/locations.php:143 app/features/locations.php:183
2473
  #: app/features/organizers.php:132 app/features/organizers.php:163
2474
- #: app/features/speakers.php:161 app/features/speakers.php:204
2475
  msgid "Upload/Add image"
2476
  msgstr "Bild hochladen/hinzufügen"
2477
 
@@ -2479,7 +2480,7 @@ msgstr "Bild hochladen/hinzufügen"
2479
  #: app/features/locations.php:340 app/features/locations.php:347
2480
  #: app/features/organizers.php:133 app/features/organizers.php:164
2481
  #: app/features/organizers.php:299 app/features/organizers.php:306
2482
- #: app/features/speakers.php:162 app/features/speakers.php:205
2483
  msgid "Remove image"
2484
  msgstr "Bild entfernen"
2485
 
@@ -2544,7 +2545,7 @@ msgstr "Bild wählen"
2544
  msgid "Don't show map in single event page"
2545
  msgstr "Karte in Einzelansicht nicht anzeigen"
2546
 
2547
- #: app/features/locations.php:356 app/libraries/main.php:4923
2548
  #, fuzzy
2549
  #| msgid "Locations"
2550
  msgid "Other Locations"
@@ -2605,7 +2606,7 @@ msgstr "Support"
2605
 
2606
  #: app/features/mec.php:339 app/features/mec/dashboard.php:250
2607
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2608
- #: app/libraries/main.php:4891
2609
  msgid "Organizers"
2610
  msgstr "Veranstalter"
2611
 
@@ -2705,19 +2706,19 @@ msgstr ""
2705
  msgid "Search..."
2706
  msgstr "Suche %s"
2707
 
2708
- #: app/features/mec/booking.php:72 app/features/mec/booking.php:492
2709
- #: app/features/mec/booking.php:572 app/features/mec/booking.php:581
2710
- #: app/features/mec/booking.php:591 app/features/mec/booking.php:633
2711
- #: app/features/mec/booking.php:647 app/features/mec/messages.php:15
2712
  #: app/features/mec/messages.php:51 app/features/mec/messages.php:60
2713
  #: app/features/mec/messages.php:94 app/features/mec/messages.php:103
2714
  #: app/features/mec/modules.php:25 app/features/mec/modules.php:357
2715
  #: app/features/mec/modules.php:367 app/features/mec/modules.php:409
2716
  #: app/features/mec/modules.php:423 app/features/mec/notifications.php:14
2717
- #: app/features/mec/notifications.php:499
2718
- #: app/features/mec/notifications.php:511
2719
- #: app/features/mec/notifications.php:607
2720
- #: app/features/mec/notifications.php:621 app/features/mec/settings.php:34
2721
  #: app/features/mec/settings.php:844 app/features/mec/settings.php:854
2722
  #: app/features/mec/settings.php:912 app/features/mec/settings.php:926
2723
  #: app/features/mec/single.php:17 app/features/mec/single.php:234
@@ -2815,15 +2816,31 @@ msgstr ""
2815
  "Benutzer werden auf diese Seite nach der Buchung weitergeleitet. Lassen Sie "
2816
  "es leer, wenn Sie es deaktivieren möchten."
2817
 
2818
- #: app/features/mec/booking.php:169
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2819
  msgid "Enable Express Attendees Form"
2820
  msgstr "Aktivieren Sie das Express-Teilnehmerformular"
2821
 
2822
- #: app/features/mec/booking.php:173 app/modules/booking/steps/form.php:52
2823
  msgid "Attendees Form"
2824
  msgstr "Teilnahmeformular"
2825
 
2826
- #: app/features/mec/booking.php:174
2827
  msgid ""
2828
  "Users are able to apply first attendee information for other attendees in "
2829
  "the booking form."
@@ -2831,120 +2848,120 @@ msgstr ""
2831
  "Benutzer können erste Teilnehmerinformationen für andere Teilnehmer im "
2832
  "Buchungsformular anwenden."
2833
 
2834
- #: app/features/mec/booking.php:187
2835
  #, fuzzy
2836
  #| msgid "Download Invoice"
2837
  msgid "Enable Invoice"
2838
  msgstr "Download Rechnung"
2839
 
2840
- #: app/features/mec/booking.php:198
2841
  #, fuzzy
2842
  #| msgid "Enable booking notification"
2843
  msgid "Enable Booking for Ongoing Events"
2844
  msgstr "Buchungsbenachrichtigung aktivieren"
2845
 
2846
- #: app/features/mec/booking.php:203
2847
  msgid "Email verification"
2848
  msgstr "Email-Verifizierung"
2849
 
2850
- #: app/features/mec/booking.php:209
2851
  msgid "Auto verification for free bookings"
2852
  msgstr "Automatische Verifizierung für kostenlose Buchungen"
2853
 
2854
- #: app/features/mec/booking.php:218
2855
  msgid "Auto verification for paid bookings"
2856
  msgstr "Automatische Verifizierung für kostenpflichtige Buchungen"
2857
 
2858
- #: app/features/mec/booking.php:222 app/features/mec/notifications.php:151
2859
  #: app/libraries/main.php:573
2860
  msgid "Booking Confirmation"
2861
  msgstr "Buchungsbestätigung"
2862
 
2863
- #: app/features/mec/booking.php:228
2864
  msgid "Auto confirmation for free bookings"
2865
  msgstr "Automatische Bestätigung für kostenlose Buchungen"
2866
 
2867
- #: app/features/mec/booking.php:237
2868
  msgid "Auto confirmation for paid bookings"
2869
  msgstr "Automatische Bestätigung für kostenpflichtige Buchungen"
2870
 
2871
- #: app/features/mec/booking.php:256
2872
  msgid "Enable coupons module"
2873
  msgstr "Gutscheinmodul aktivieren"
2874
 
2875
- #: app/features/mec/booking.php:258
2876
  msgid ""
2877
  "After enabling and saving the settings,, you should reload the page to see a "
2878
  "new menu on the Dashboard > Booking"
2879
  msgstr ""
2880
 
2881
- #: app/features/mec/booking.php:266 app/libraries/main.php:552
2882
  msgid "Taxes / Fees"
2883
  msgstr "Steuern/Gebühren"
2884
 
2885
- #: app/features/mec/booking.php:274
2886
  msgid "Enable taxes / fees module"
2887
  msgstr "Modul für Gebühren/Steuern aktivieren"
2888
 
2889
- #: app/features/mec/booking.php:279
2890
  msgid "Add Fee"
2891
  msgstr "Gebühr hinzufügen"
2892
 
2893
- #: app/features/mec/booking.php:343 app/libraries/main.php:553
2894
  msgid "Ticket Variations & Options"
2895
  msgstr ""
2896
 
2897
- #: app/features/mec/booking.php:351
2898
  #, fuzzy
2899
  #| msgid "Enable coupons module"
2900
  msgid "Enable ticket options module"
2901
  msgstr "Gutscheinmodul aktivieren"
2902
 
2903
- #: app/features/mec/booking.php:356
2904
  msgid "Add Variation / Option"
2905
  msgstr ""
2906
 
2907
- #: app/features/mec/booking.php:559
2908
  msgid "Enable Organizer Payment Module"
2909
  msgstr ""
2910
 
2911
- #: app/features/mec/booking.php:563
2912
  #, fuzzy
2913
  #| msgid "Organizer Tel"
2914
  msgid "Organizer Payment"
2915
  msgstr "Organisator Telefon"
2916
 
2917
- #: app/features/mec/booking.php:564
2918
  msgid ""
2919
  "By enabling this module, organizers are able to insert their own payment "
2920
  "credentials for enabled gateways per event and receive the payments directly!"
2921
  msgstr ""
2922
 
2923
- #: app/features/mec/booking.php:611 app/features/mec/messages.php:78
2924
- #: app/features/mec/modules.php:387 app/features/mec/notifications.php:585
2925
  #: app/features/mec/settings.php:890 app/features/mec/single.php:264
2926
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:296
2927
  msgid "Saved"
2928
  msgstr "Gesichert"
2929
 
2930
- #: app/features/mec/booking.php:612 app/features/mec/messages.php:79
2931
- #: app/features/mec/modules.php:388 app/features/mec/notifications.php:586
2932
  #: app/features/mec/settings.php:891 app/features/mec/single.php:265
2933
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:297
2934
  msgid "Settings Saved!"
2935
  msgstr ""
2936
 
2937
- #: app/features/mec/booking.php:614 app/features/mec/booking.php:636
2938
  #: app/features/mec/modules.php:390 app/features/mec/modules.php:412
2939
- #: app/features/mec/notifications.php:588
2940
- #: app/features/mec/notifications.php:610 app/features/mec/settings.php:893
2941
  #: app/features/mec/settings.php:915 app/features/mec/single.php:267
2942
- #: app/features/mec/single.php:289 app/libraries/main.php:5132
2943
  msgid "Verified"
2944
  msgstr "Verifiziert"
2945
 
2946
- #: app/features/mec/booking.php:638 app/features/mec/modules.php:414
2947
- #: app/features/mec/notifications.php:612 app/features/mec/settings.php:917
2948
  #: app/features/mec/single.php:291
2949
  msgid "Please Refresh Page"
2950
  msgstr "Bitte Seiten Refresh vornehmen"
@@ -3918,8 +3935,8 @@ msgstr "Deaktiviert"
3918
  #: app/features/mec/meta_boxes/search_form.php:535
3919
  #: app/features/mec/meta_boxes/search_form.php:596
3920
  #: app/features/mec/settings.php:739 app/features/mec/single.php:217
3921
- #: app/features/search.php:79 app/features/speakers.php:59
3922
- #: app/features/speakers.php:252 app/libraries/main.php:4894
3923
  #: app/libraries/skins.php:886
3924
  msgid "Speaker"
3925
  msgstr ""
@@ -4200,11 +4217,11 @@ msgstr ""
4200
 
4201
  #: app/features/mec/notifications.php:45 app/features/mec/notifications.php:102
4202
  #: app/features/mec/notifications.php:154
4203
- #: app/features/mec/notifications.php:213
4204
- #: app/features/mec/notifications.php:281
4205
- #: app/features/mec/notifications.php:344
4206
- #: app/features/mec/notifications.php:417
4207
- #: app/features/mec/notifications.php:463
4208
  msgid "Email Subject"
4209
  msgstr "Email Betreff"
4210
 
@@ -4213,93 +4230,93 @@ msgstr "Email Betreff"
4213
  #: app/features/mec/notifications.php:110
4214
  #: app/features/mec/notifications.php:158
4215
  #: app/features/mec/notifications.php:162
4216
- #: app/features/mec/notifications.php:217
4217
- #: app/features/mec/notifications.php:221
4218
- #: app/features/mec/notifications.php:285
4219
- #: app/features/mec/notifications.php:289
4220
- #: app/features/mec/notifications.php:348
4221
- #: app/features/mec/notifications.php:352
4222
- #: app/features/mec/notifications.php:363
4223
- #: app/features/mec/notifications.php:421
4224
- #: app/features/mec/notifications.php:425
4225
- #: app/features/mec/notifications.php:467
4226
- #: app/features/mec/notifications.php:471
4227
- msgid "Custom Recipients"
4228
- msgstr "Individuelle Empfänger"
4229
-
4230
- #: app/features/mec/notifications.php:54 app/features/mec/notifications.php:111
4231
- #: app/features/mec/notifications.php:163
4232
  #: app/features/mec/notifications.php:222
 
4233
  #: app/features/mec/notifications.php:290
 
4234
  #: app/features/mec/notifications.php:353
4235
  #: app/features/mec/notifications.php:364
 
4236
  #: app/features/mec/notifications.php:426
 
4237
  #: app/features/mec/notifications.php:472
 
 
 
 
 
 
 
 
 
 
 
4238
  msgid "Insert comma separated emails for multiple recipients."
4239
  msgstr "Geben Sie mit Komma getrennte email-Adressen ein für mehrere Empfänger"
4240
 
4241
- #: app/features/mec/notifications.php:61 app/features/mec/notifications.php:233
4242
- #: app/features/mec/notifications.php:297
4243
  msgid "Send the email to event organizer"
4244
  msgstr "Sendet das Email zum Event Organisator"
4245
 
4246
  #: app/features/mec/notifications.php:64 app/features/mec/notifications.php:117
4247
  #: app/features/mec/notifications.php:169
4248
- #: app/features/mec/notifications.php:240
4249
- #: app/features/mec/notifications.php:300
4250
- #: app/features/mec/notifications.php:370
4251
- #: app/features/mec/notifications.php:432
4252
- #: app/features/mec/notifications.php:478
4253
  msgid "Email Content"
4254
  msgstr "Email Inhalt"
4255
 
4256
  #: app/features/mec/notifications.php:67 app/features/mec/notifications.php:120
4257
  #: app/features/mec/notifications.php:172
4258
- #: app/features/mec/notifications.php:243
4259
- #: app/features/mec/notifications.php:303
4260
- #: app/features/mec/notifications.php:373
4261
- #: app/features/mec/notifications.php:435
4262
- #: app/features/mec/notifications.php:481
4263
  msgid "You can use following placeholders"
4264
  msgstr "Sie können die folgenden Platzhalter wählen"
4265
 
4266
  #: app/features/mec/notifications.php:69 app/features/mec/notifications.php:122
4267
  #: app/features/mec/notifications.php:174
4268
- #: app/features/mec/notifications.php:245
4269
- #: app/features/mec/notifications.php:305
4270
- #: app/features/mec/notifications.php:375
4271
  msgid "First name of attendee"
4272
  msgstr "Vorname des Teilnehmers"
4273
 
4274
  #: app/features/mec/notifications.php:70 app/features/mec/notifications.php:123
4275
  #: app/features/mec/notifications.php:175
4276
- #: app/features/mec/notifications.php:246
4277
- #: app/features/mec/notifications.php:306
4278
- #: app/features/mec/notifications.php:376
4279
  msgid "Last name of attendee"
4280
  msgstr "Nachname des Teilnehmers"
4281
 
4282
  #: app/features/mec/notifications.php:71 app/features/mec/notifications.php:124
4283
  #: app/features/mec/notifications.php:176
4284
- #: app/features/mec/notifications.php:247
4285
- #: app/features/mec/notifications.php:307
4286
- #: app/features/mec/notifications.php:377
4287
  msgid "Email of attendee"
4288
  msgstr "Email des Teilnehmers"
4289
 
4290
  #: app/features/mec/notifications.php:72 app/features/mec/notifications.php:125
4291
  #: app/features/mec/notifications.php:177
4292
- #: app/features/mec/notifications.php:248
4293
- #: app/features/mec/notifications.php:308
4294
- #: app/features/mec/notifications.php:378
4295
  msgid "Booked date of event"
4296
  msgstr "Gebuchtes Datum der Veranstaltung"
4297
 
4298
  #: app/features/mec/notifications.php:73 app/features/mec/notifications.php:126
4299
  #: app/features/mec/notifications.php:178
4300
- #: app/features/mec/notifications.php:249
4301
- #: app/features/mec/notifications.php:309
4302
- #: app/features/mec/notifications.php:379
4303
  #, fuzzy
4304
  #| msgid "Booked date of event"
4305
  msgid "Booked time of event"
@@ -4307,55 +4324,55 @@ msgstr "Gebuchtes Datum der Veranstaltung"
4307
 
4308
  #: app/features/mec/notifications.php:74 app/features/mec/notifications.php:127
4309
  #: app/features/mec/notifications.php:179
4310
- #: app/features/mec/notifications.php:250
4311
- #: app/features/mec/notifications.php:310
4312
- #: app/features/mec/notifications.php:380
4313
  msgid "Booking Price"
4314
  msgstr "Buchungspreis"
4315
 
4316
  #: app/features/mec/notifications.php:75 app/features/mec/notifications.php:128
4317
  #: app/features/mec/notifications.php:180
4318
- #: app/features/mec/notifications.php:251
4319
- #: app/features/mec/notifications.php:311
4320
- #: app/features/mec/notifications.php:381
4321
- #: app/features/mec/notifications.php:441
4322
- #: app/features/mec/notifications.php:487
4323
- msgid "Your website title"
4324
- msgstr "Titel Ihrer Webseite"
4325
-
4326
- #: app/features/mec/notifications.php:76 app/features/mec/notifications.php:129
4327
- #: app/features/mec/notifications.php:181
4328
  #: app/features/mec/notifications.php:252
4329
  #: app/features/mec/notifications.php:312
4330
  #: app/features/mec/notifications.php:382
4331
  #: app/features/mec/notifications.php:442
4332
  #: app/features/mec/notifications.php:488
4333
- msgid "Your website URL"
4334
- msgstr "URL Ihrer Webseite"
4335
 
4336
- #: app/features/mec/notifications.php:77 app/features/mec/notifications.php:130
4337
- #: app/features/mec/notifications.php:182
4338
  #: app/features/mec/notifications.php:253
4339
  #: app/features/mec/notifications.php:313
4340
  #: app/features/mec/notifications.php:383
4341
  #: app/features/mec/notifications.php:443
4342
  #: app/features/mec/notifications.php:489
 
 
 
 
 
 
 
 
 
 
4343
  msgid "Your website description"
4344
  msgstr "Beschreibung Ihrer Webseite"
4345
 
4346
  #: app/features/mec/notifications.php:78 app/features/mec/notifications.php:131
4347
  #: app/features/mec/notifications.php:183
4348
- #: app/features/mec/notifications.php:254
4349
- #: app/features/mec/notifications.php:314
4350
- #: app/features/mec/notifications.php:384
4351
  msgid "Event title"
4352
  msgstr "Titel der Veranstaltung"
4353
 
4354
  #: app/features/mec/notifications.php:79 app/features/mec/notifications.php:132
4355
  #: app/features/mec/notifications.php:184
4356
- #: app/features/mec/notifications.php:255
4357
- #: app/features/mec/notifications.php:315
4358
- #: app/features/mec/notifications.php:385
4359
  #, fuzzy
4360
  #| msgid "Event Link"
4361
  msgid "Event link"
@@ -4363,9 +4380,9 @@ msgstr "Veranstaltungslink"
4363
 
4364
  #: app/features/mec/notifications.php:80 app/features/mec/notifications.php:133
4365
  #: app/features/mec/notifications.php:185
4366
- #: app/features/mec/notifications.php:256
4367
- #: app/features/mec/notifications.php:316
4368
- #: app/features/mec/notifications.php:386
4369
  #, fuzzy
4370
  #| msgid "Organizer name of booked event"
4371
  msgid "Speaker name of booked event"
@@ -4373,83 +4390,83 @@ msgstr "Name des Veranstalters des gebuchten Events"
4373
 
4374
  #: app/features/mec/notifications.php:81 app/features/mec/notifications.php:134
4375
  #: app/features/mec/notifications.php:186
4376
- #: app/features/mec/notifications.php:257
4377
- #: app/features/mec/notifications.php:317
4378
- #: app/features/mec/notifications.php:387
4379
  msgid "Organizer name of booked event"
4380
  msgstr "Name des Veranstalters des gebuchten Events"
4381
 
4382
  #: app/features/mec/notifications.php:82 app/features/mec/notifications.php:135
4383
  #: app/features/mec/notifications.php:187
4384
- #: app/features/mec/notifications.php:258
4385
- #: app/features/mec/notifications.php:318
4386
- #: app/features/mec/notifications.php:388
4387
  msgid "Organizer tel of booked event"
4388
  msgstr "Tel des Veranstalters"
4389
 
4390
  #: app/features/mec/notifications.php:83 app/features/mec/notifications.php:136
4391
  #: app/features/mec/notifications.php:188
4392
- #: app/features/mec/notifications.php:259
4393
- #: app/features/mec/notifications.php:319
4394
- #: app/features/mec/notifications.php:389
4395
  msgid "Organizer email of booked event"
4396
  msgstr "Email des Veranstalters des gebuchten events"
4397
 
4398
  #: app/features/mec/notifications.php:84 app/features/mec/notifications.php:137
4399
  #: app/features/mec/notifications.php:189
4400
- #: app/features/mec/notifications.php:260
4401
- #: app/features/mec/notifications.php:320
4402
- #: app/features/mec/notifications.php:390
4403
  msgid "Location name of booked event"
4404
  msgstr "Veranstaltungsort"
4405
 
4406
  #: app/features/mec/notifications.php:85 app/features/mec/notifications.php:138
4407
  #: app/features/mec/notifications.php:190
4408
- #: app/features/mec/notifications.php:261
4409
- #: app/features/mec/notifications.php:321
4410
- #: app/features/mec/notifications.php:391
4411
  msgid "Location address of booked event"
4412
  msgstr "Adresse der gebuchten Veranstaltung"
4413
 
4414
- #: app/features/mec/notifications.php:86 app/features/mec/notifications.php:263
4415
- #: app/features/mec/notifications.php:323
4416
  msgid "Full Attendee info such as booking form data, name, email etc."
4417
  msgstr ""
4418
  "Gesamte Teinehmerinformationen wie z.B. Daten aus dem Buchungsformular, "
4419
  "Name, email, etc."
4420
 
4421
  #: app/features/mec/notifications.php:87 app/features/mec/notifications.php:192
4422
- #: app/features/mec/notifications.php:393
4423
  msgid "Invoice Link"
4424
  msgstr "Rechnungslink"
4425
 
4426
  #: app/features/mec/notifications.php:88 app/features/mec/notifications.php:140
4427
  #: app/features/mec/notifications.php:193
4428
- #: app/features/mec/notifications.php:264
4429
- #: app/features/mec/notifications.php:324
4430
- #: app/features/mec/notifications.php:394
4431
  msgid "Total Attendees"
4432
  msgstr ""
4433
 
4434
  #: app/features/mec/notifications.php:89 app/features/mec/notifications.php:141
4435
- #: app/features/mec/notifications.php:194
4436
- #: app/features/mec/notifications.php:395
4437
  #, fuzzy
4438
  #| msgid "Ticket Name"
4439
  msgid "Ticket name"
4440
  msgstr "Ticket Name"
4441
 
4442
  #: app/features/mec/notifications.php:90 app/features/mec/notifications.php:142
4443
- #: app/features/mec/notifications.php:195
4444
- #: app/features/mec/notifications.php:396
4445
  #, fuzzy
4446
  #| msgid "Ticket Name"
4447
  msgid "Ticket time"
4448
  msgstr "Ticket Name"
4449
 
4450
  #: app/features/mec/notifications.php:91 app/features/mec/notifications.php:143
4451
- #: app/features/mec/notifications.php:196
4452
- #: app/features/mec/notifications.php:397
4453
  #, fuzzy
4454
  #| msgid "Download Invoice"
4455
  msgid "Download ICS file"
@@ -4475,23 +4492,29 @@ msgstr ""
4475
  "Es wird an den Teilnehmer gesendet nach Bestätigung der Buchung vom admin."
4476
 
4477
  #: app/features/mec/notifications.php:191
4478
- #: app/features/mec/notifications.php:392
4479
  msgid "Booking cancellation link."
4480
  msgstr "Link zur Stornierung der Buchung"
4481
 
4482
- #: app/features/mec/notifications.php:203 app/libraries/main.php:574
 
 
 
 
 
 
4483
  #, fuzzy
4484
  #| msgid "Booking cancellation link."
4485
  msgid "Booking Cancellation"
4486
  msgstr "Link zur Stornierung der Buchung"
4487
 
4488
- #: app/features/mec/notifications.php:207
4489
  #, fuzzy
4490
  #| msgid "Enable new event notification"
4491
  msgid "Enable cancellation notification"
4492
  msgstr "Benachrichtigung bei neuen Veranstaltungen aktivieren"
4493
 
4494
- #: app/features/mec/notifications.php:211
4495
  #, fuzzy
4496
  #| msgid "It sends to attendee after booking for notifying him/her."
4497
  msgid ""
@@ -4501,49 +4524,49 @@ msgstr ""
4501
  "Wird an den Teilnehmer in Anschluss an die Buchung versendet, um Ihn/Sie zu "
4502
  "benachrichtigen."
4503
 
4504
- #: app/features/mec/notifications.php:229
4505
  #, fuzzy
4506
  #| msgid "Send the email to event organizer"
4507
  msgid "Send the email to admin"
4508
  msgstr "Sendet das Email zum Event Organisator"
4509
 
4510
- #: app/features/mec/notifications.php:237
4511
  #, fuzzy
4512
  #| msgid "Send the email to event organizer"
4513
  msgid "Send the email to booking user"
4514
  msgstr "Sendet das Email zum Event Organisator"
4515
 
4516
- #: app/features/mec/notifications.php:262
4517
- #: app/features/mec/notifications.php:322
4518
  msgid "Admin booking management link."
4519
  msgstr "Admin-link zur Buchungsverwaltung"
4520
 
4521
- #: app/features/mec/notifications.php:271 app/libraries/main.php:576
4522
  msgid "Admin"
4523
  msgstr ""
4524
 
4525
- #: app/features/mec/notifications.php:275
4526
  #, fuzzy
4527
  #| msgid "Enable booking notification"
4528
  msgid "Enable admin notification"
4529
  msgstr "Buchungsbenachrichtigung aktivieren"
4530
 
4531
- #: app/features/mec/notifications.php:279
4532
  msgid "It sends to admin to notify him/her that a new booking received."
4533
  msgstr ""
4534
  "Sendet eine Benachrichtigung an den Adminstrator um diesen darüber zu "
4535
  "Informieren, dass eine neue Buchung eingegangen ist."
4536
 
4537
- #: app/features/mec/notifications.php:331 app/libraries/main.php:575
4538
  #: app/libraries/notifications.php:478
4539
  msgid "Booking Reminder"
4540
  msgstr "Buchungs Erinnerung"
4541
 
4542
- #: app/features/mec/notifications.php:335
4543
  msgid "Enable booking reminder notification"
4544
  msgstr "Aktivieren Sie die Erinnerung für die Buchungserinnerung"
4545
 
4546
- #: app/features/mec/notifications.php:341
4547
  #, php-format
4548
  msgid ""
4549
  "Set a cronjob to call %s file once per day otherwise it won't send the "
@@ -4555,24 +4578,24 @@ msgstr ""
4555
  "Sie diese Datei% s aufrufen sollten, sonst könnten die Erinnerungen mehrmals "
4556
  "gesendet werden."
4557
 
4558
- #: app/features/mec/notifications.php:341
4559
  msgid "only once per day"
4560
  msgstr "nur einmal pro Tag"
4561
 
4562
- #: app/features/mec/notifications.php:359
4563
  msgid "Days"
4564
  msgstr "Tage"
4565
 
4566
- #: app/features/mec/notifications.php:407 app/features/mec/support-page.php:80
4567
  #: app/libraries/main.php:577
4568
  msgid "New Event"
4569
  msgstr "Neue Veranstaltung"
4570
 
4571
- #: app/features/mec/notifications.php:411
4572
  msgid "Enable new event notification"
4573
  msgstr "Benachrichtigung bei neuen Veranstaltungen aktivieren"
4574
 
4575
- #: app/features/mec/notifications.php:415
4576
  msgid ""
4577
  "It sends after adding a new event from frontend event submission or from "
4578
  "website backend."
@@ -4580,47 +4603,47 @@ msgstr ""
4580
  "Wird nach dem Hinzufügen einer neuen Veranstaltung aus der Frontend-"
4581
  "Übermittlung oder dem Backend versandt."
4582
 
4583
- #: app/features/mec/notifications.php:437
4584
- #: app/features/mec/notifications.php:483
4585
  msgid "Title of event"
4586
  msgstr "Titel der Veranstaltung"
4587
 
4588
- #: app/features/mec/notifications.php:438
4589
- #: app/features/mec/notifications.php:484
4590
  #, fuzzy
4591
  #| msgid "Title of event"
4592
  msgid "Link of event"
4593
  msgstr "Titel der Veranstaltung"
4594
 
4595
- #: app/features/mec/notifications.php:439
4596
- #: app/features/mec/notifications.php:485
4597
  msgid "Status of event"
4598
  msgstr "Status der Veranstaltung"
4599
 
4600
- #: app/features/mec/notifications.php:440
4601
- #: app/features/mec/notifications.php:486 app/features/mec/settings.php:654
4602
  #: app/features/mec/settings.php:658
4603
  msgid "Event Note"
4604
  msgstr "Veranstaltungsnotiz"
4605
 
4606
- #: app/features/mec/notifications.php:444
4607
- #: app/features/mec/notifications.php:490
4608
  msgid "Admin events management link."
4609
  msgstr "Admin-link zur Veranstaltungsverwaltung"
4610
 
4611
- #: app/features/mec/notifications.php:453 app/libraries/main.php:578
4612
  #, fuzzy
4613
  #| msgid "The event published."
4614
  msgid "User Event Publishing"
4615
  msgstr "Die Veranstaltung wurde veröffentlicht."
4616
 
4617
- #: app/features/mec/notifications.php:457
4618
  #, fuzzy
4619
  #| msgid "Enable new event notification"
4620
  msgid "Enable user event publishing notification"
4621
  msgstr "Benachrichtigung bei neuen Veranstaltungen aktivieren"
4622
 
4623
- #: app/features/mec/notifications.php:461
4624
  #, fuzzy
4625
  #| msgid ""
4626
  #| "It sends after adding a new event from frontend event submission or from "
@@ -4726,7 +4749,7 @@ msgid "You can enable/disable Schema scripts"
4726
  msgstr ""
4727
 
4728
  #: app/features/mec/settings.php:136 app/features/mec/settings.php:146
4729
- #: app/libraries/main.php:4898
4730
  msgid "Weekdays"
4731
  msgstr "Wochentage"
4732
 
@@ -5913,7 +5936,7 @@ msgstr "z.B.. max@mustermann.com"
5913
  msgid "eg. https://webnus.net"
5914
  msgstr "http://webnus.net"
5915
 
5916
- #: app/features/organizers.php:311 app/libraries/main.php:4922
5917
  #: app/skins/single.php:845
5918
  msgid "Other Organizers"
5919
  msgstr "Andere Veranstalter"
@@ -5941,11 +5964,11 @@ msgstr "Ihre Buchung kann nicht storniert werden."
5941
  msgid "#"
5942
  msgstr ""
5943
 
5944
- #: app/features/profile/profile.php:56 app/libraries/main.php:2918
5945
  msgid "Status"
5946
  msgstr ""
5947
 
5948
- #: app/features/profile/profile.php:59 app/libraries/main.php:2063
5949
  msgid "Attendees"
5950
  msgstr "Teilnehmer"
5951
 
@@ -5980,7 +6003,7 @@ msgstr "Verifizierung"
5980
  msgid "No bookings found!"
5981
  msgstr "Keine Buchungen gefunden"
5982
 
5983
- #: app/features/search.php:87 app/libraries/main.php:4888
5984
  msgid "label"
5985
  msgstr "label"
5986
 
@@ -6015,77 +6038,83 @@ msgstr ""
6015
  msgid "All of the day"
6016
  msgstr "Den ganzen Tag"
6017
 
6018
- #: app/features/speakers.php:108 app/features/speakers.php:177
6019
- #: app/features/speakers.php:253
6020
  #, fuzzy
6021
  #| msgid "Title"
6022
  msgid "Job Title"
6023
  msgstr "Titel"
6024
 
6025
- #: app/features/speakers.php:111 app/features/speakers.php:178
6026
  msgid "Insert speaker job title."
6027
  msgstr ""
6028
 
6029
- #: app/features/speakers.php:119 app/features/speakers.php:182
6030
  #, fuzzy
6031
  #| msgid "Insert organizer phone number."
6032
  msgid "Insert speaker phone number."
6033
  msgstr "Veranstalter Telefonnummer einfügen"
6034
 
6035
- #: app/features/speakers.php:127 app/features/speakers.php:186
6036
  #, fuzzy
6037
  #| msgid "Insert organizer email address."
6038
  msgid "Insert speaker email address."
6039
  msgstr "Veranstalter Email-Adresse einfügen"
6040
 
6041
- #: app/features/speakers.php:132 app/features/speakers.php:189
6042
  #, fuzzy
6043
  #| msgid "Facebook Page Link"
6044
  msgid "Facebook Page"
6045
  msgstr "Facebook Seiten Link"
6046
 
6047
- #: app/features/speakers.php:135 app/features/speakers.php:190
6048
  #, fuzzy
6049
  #| msgid "Import from Facebook Calendar"
6050
  msgid "Insert URL of Facebook Page"
6051
  msgstr "Vom Facebook Kalender Importieren"
6052
 
6053
- #: app/features/speakers.php:140 app/features/speakers.php:193
6054
  msgid "Instagram"
6055
  msgstr ""
6056
 
6057
- #: app/features/speakers.php:143 app/features/speakers.php:194
6058
  #, fuzzy
6059
  #| msgid "Insert -1 for unlimited usage"
6060
  msgid "Insert URL of Instagram"
6061
  msgstr "Geben Sie -1 ein für unlimitierte Verwendung"
6062
 
6063
- #: app/features/speakers.php:148 app/features/speakers.php:197
6064
  #, fuzzy
6065
  #| msgid "Twitter"
6066
  msgid "Twitter Page"
6067
  msgstr "Twitter"
6068
 
6069
- #: app/features/speakers.php:151 app/features/speakers.php:198
6070
  #, fuzzy
6071
  #| msgid "Insert -1 for unlimited usage"
6072
  msgid "Insert URL of Twitter Page"
6073
  msgstr "Geben Sie -1 ein für unlimitierte Verwendung"
6074
 
6075
- #: app/features/speakers.php:313
6076
  msgid "Sorry, You must insert speaker name!"
6077
  msgstr ""
6078
 
 
 
 
 
 
 
6079
  #: app/libraries/book.php:60
6080
  #, php-format
6081
  msgid "%s Price"
6082
  msgstr "%s Preis"
6083
 
6084
- #: app/libraries/book.php:553
6085
  msgid "Discount"
6086
  msgstr "Rabatt"
6087
 
6088
- #: app/libraries/book.php:643 app/modules/booking/default.php:305
6089
  #: app/modules/booking/default.php:403
6090
  msgid "Download Invoice"
6091
  msgstr "Download Rechnung"
@@ -6220,31 +6249,31 @@ msgstr "Karussellansicht"
6220
  msgid "Slider View"
6221
  msgstr "Slideransicht"
6222
 
6223
- #: app/libraries/main.php:382 app/libraries/main.php:4900
6224
  msgid "SU"
6225
  msgstr "SO"
6226
 
6227
- #: app/libraries/main.php:383 app/libraries/main.php:4901
6228
  msgid "MO"
6229
  msgstr "MO"
6230
 
6231
- #: app/libraries/main.php:384 app/libraries/main.php:4902
6232
  msgid "TU"
6233
  msgstr "DI"
6234
 
6235
- #: app/libraries/main.php:385 app/libraries/main.php:4903
6236
  msgid "WE"
6237
  msgstr "MI"
6238
 
6239
- #: app/libraries/main.php:386 app/libraries/main.php:4904
6240
  msgid "TH"
6241
  msgstr "DO"
6242
 
6243
- #: app/libraries/main.php:387 app/libraries/main.php:4905
6244
  msgid "FR"
6245
  msgstr "FR"
6246
 
6247
- #: app/libraries/main.php:388 app/libraries/main.php:4906
6248
  msgid "SA"
6249
  msgstr "SA"
6250
 
@@ -6390,204 +6419,215 @@ msgstr "Kann die Buchung nicht finden!"
6390
  msgid "Invoice is invalid."
6391
  msgstr "Buchung ist ungültig."
6392
 
6393
- #: app/libraries/main.php:2004
 
 
 
 
 
 
 
 
 
 
 
6394
  msgid "Cannot find the booking!"
6395
  msgstr "Kann die Buchung nicht finden!"
6396
 
6397
- #: app/libraries/main.php:2004
6398
  msgid "Booking is invalid."
6399
  msgstr "Buchung ist ungültig."
6400
 
6401
- #: app/libraries/main.php:2033
6402
  #, php-format
6403
  msgid "%s Invoice"
6404
  msgstr "% s Rechnung"
6405
 
6406
- #: app/libraries/main.php:2107
6407
  msgid "Billing"
6408
  msgstr "Abrechnung"
6409
 
6410
- #: app/libraries/main.php:2118
6411
  msgid "Total"
6412
  msgstr "Gesamt"
6413
 
6414
- #: app/libraries/main.php:2175
6415
  #, fuzzy
6416
  #| msgid "Request is invalid!"
6417
  msgid "Request is not valid."
6418
  msgstr "Die Anfrage ist ungültig!"
6419
 
6420
- #: app/libraries/main.php:2175
6421
  msgid "iCal export stopped!"
6422
  msgstr "iCal Export wurde unterbrochen!"
6423
 
6424
- #: app/libraries/main.php:2502 app/libraries/main.php:2532
6425
- #: app/libraries/main.php:2561 app/libraries/main.php:2591
6426
- #: app/libraries/main.php:2620 app/libraries/main.php:2649
6427
- #: app/libraries/main.php:2678 app/libraries/main.php:2707
6428
- #: app/libraries/main.php:2736 app/libraries/main.php:2760
6429
- #: app/libraries/main.php:2804 app/libraries/main.php:2848
6430
- #: app/libraries/main.php:2895 app/libraries/main.php:2942
6431
  msgid "Sort"
6432
  msgstr "Sortieren"
6433
 
6434
- #: app/libraries/main.php:2508 app/libraries/main.php:2538
6435
- #: app/libraries/main.php:2567 app/libraries/main.php:2597
6436
- #: app/libraries/main.php:2626 app/libraries/main.php:2655
6437
- #: app/libraries/main.php:2684 app/libraries/main.php:2713
6438
- #: app/libraries/main.php:2766 app/libraries/main.php:2810
6439
- #: app/libraries/main.php:2854 app/libraries/main.php:2901
6440
  msgid "Required Field"
6441
  msgstr "Pflichtfeld"
6442
 
6443
- #: app/libraries/main.php:2514 app/libraries/main.php:2544
6444
- #: app/libraries/main.php:2573 app/libraries/main.php:2603
6445
- #: app/libraries/main.php:2632 app/libraries/main.php:2661
6446
- #: app/libraries/main.php:2690 app/libraries/main.php:2719
6447
- #: app/libraries/main.php:2772 app/libraries/main.php:2816
6448
- #: app/libraries/main.php:2860 app/libraries/main.php:2907
6449
  msgid "Insert a label for this field"
6450
  msgstr "Geben Sie eine Bezeichnung (Label) für dieses Feld ein."
6451
 
6452
- #: app/libraries/main.php:2742
6453
  msgid "HTML and shortcode are allowed."
6454
  msgstr "HTML und shortcodes sind erlaubt."
6455
 
6456
- #: app/libraries/main.php:2785 app/libraries/main.php:2829
6457
- #: app/libraries/main.php:2873
6458
  msgid "Option"
6459
  msgstr "Option"
6460
 
6461
- #: app/libraries/main.php:2907
6462
  #, php-format
6463
  msgid "Instead of %s, the page title with a link will be show."
6464
  msgstr "Anstelle von %s, wird der Seitentitel mit einem Link gezeigt"
6465
 
6466
- #: app/libraries/main.php:2909
6467
  msgid "Agreement Page"
6468
  msgstr "Zustimmungsseite"
6469
 
6470
- #: app/libraries/main.php:2920
6471
  msgid "Checked by default"
6472
  msgstr ""
6473
 
6474
- #: app/libraries/main.php:2921
6475
  msgid "Unchecked by default"
6476
  msgstr ""
6477
 
6478
- #: app/libraries/main.php:2944
6479
  msgid "Insert a label for this option"
6480
  msgstr "Ein neues Label für diese Option einfügen"
6481
 
6482
- #: app/libraries/main.php:2959
6483
  msgid "Free"
6484
  msgstr "kostenfrei"
6485
 
6486
- #: app/libraries/main.php:3565 app/libraries/main.php:5147
6487
  #, fuzzy
6488
  #| msgid "M.E. Calendar"
6489
  msgid "M.E. Calender"
6490
  msgstr "M.E. Calender"
6491
 
6492
- #: app/libraries/main.php:3720
6493
  #, php-format
6494
  msgid "Copy of %s"
6495
  msgstr "Kopie von %s"
6496
 
6497
- #: app/libraries/main.php:4393
6498
  msgid "Booked an event."
6499
  msgstr "Eine Veranstaltung wurde gebucht."
6500
 
6501
- #: app/libraries/main.php:4434
6502
  #, php-format
6503
  msgid "%s booked %s event."
6504
  msgstr "%s gebuchtes %s Event"
6505
 
6506
- #: app/libraries/main.php:4883
6507
  msgid "Taxonomies"
6508
  msgstr "Klassifizierung "
6509
 
6510
- #: app/libraries/main.php:4885
6511
  msgid "Category Plural Label"
6512
  msgstr "Kategorien"
6513
 
6514
- #: app/libraries/main.php:4886
6515
  msgid "Category Singular Label"
6516
  msgstr "Kategorie"
6517
 
6518
- #: app/libraries/main.php:4887
6519
  msgid "Label Plural Label"
6520
  msgstr "Labels"
6521
 
6522
- #: app/libraries/main.php:4888
6523
  msgid "Label Singular Label"
6524
  msgstr "Label"
6525
 
6526
- #: app/libraries/main.php:4889
6527
  msgid "Location Plural Label"
6528
  msgstr "Veranstaltungsorte"
6529
 
6530
- #: app/libraries/main.php:4890
6531
  msgid "Location Singular Label"
6532
  msgstr "Veranstaltungsort"
6533
 
6534
- #: app/libraries/main.php:4891
6535
  msgid "Organizer Plural Label"
6536
  msgstr "Veranstalter"
6537
 
6538
- #: app/libraries/main.php:4892
6539
  msgid "Organizer Singular Label"
6540
  msgstr "Veranstalter"
6541
 
6542
- #: app/libraries/main.php:4893
6543
  #, fuzzy
6544
  #| msgid "Label Plural Label"
6545
  msgid "Speaker Plural Label"
6546
  msgstr "Labels"
6547
 
6548
- #: app/libraries/main.php:4894
6549
  #, fuzzy
6550
  #| msgid "Label Singular Label"
6551
  msgid "Speaker Singular Label"
6552
  msgstr "Label"
6553
 
6554
- #: app/libraries/main.php:4900
6555
  msgid "Sunday abbreviation"
6556
  msgstr "Sonntag Abkürzung"
6557
 
6558
- #: app/libraries/main.php:4901
6559
  msgid "Monday abbreviation"
6560
  msgstr "Montag Abkürzung"
6561
 
6562
- #: app/libraries/main.php:4902
6563
  msgid "Tuesday abbreviation"
6564
  msgstr "Dienstag Abkürzung"
6565
 
6566
- #: app/libraries/main.php:4903
6567
  msgid "Wednesday abbreviation"
6568
  msgstr "Mittwoch Abkürzung"
6569
 
6570
- #: app/libraries/main.php:4904
6571
  msgid "Thursday abbreviation"
6572
  msgstr "Donnerstag Abkürzung"
6573
 
6574
- #: app/libraries/main.php:4905
6575
  msgid "Friday abbreviation"
6576
  msgstr "Freitag Abkürzung"
6577
 
6578
- #: app/libraries/main.php:4906
6579
  msgid "Saturday abbreviation"
6580
  msgstr "Samstag Abkürzung "
6581
 
6582
- #: app/libraries/main.php:4910
6583
  msgid "Others"
6584
  msgstr "Andere"
6585
 
6586
- #: app/libraries/main.php:4912
6587
  msgid "Booking Success Message"
6588
  msgstr "Buchung erfolgreich Mitteilung"
6589
 
6590
- #: app/libraries/main.php:4912
6591
  msgid ""
6592
  "Thanks for your booking. Your tickets booked, booking verification might be "
6593
  "needed, please check your email."
@@ -6595,11 +6635,11 @@ msgstr ""
6595
  "Vielen Dank für Ihre Buchung. Für die gebuchten Tickets ist ggf. eine "
6596
  "Bestätigung durch Sie erforderlich. Bitte überprüfen Sie Ihre Emails."
6597
 
6598
- #: app/libraries/main.php:4913 app/widgets/single.php:131
6599
  msgid "Register Button"
6600
  msgstr "Register Button"
6601
 
6602
- #: app/libraries/main.php:4913 app/skins/available_spot/tpl.php:224
6603
  #: app/skins/carousel/render.php:158 app/skins/carousel/render.php:194
6604
  #: app/skins/grid/render.php:118 app/skins/grid/render.php:164
6605
  #: app/skins/grid/render.php:207 app/skins/grid/render.php:235
@@ -6616,11 +6656,11 @@ msgstr "Register Button"
6616
  msgid "REGISTER"
6617
  msgstr "ANMELDEN"
6618
 
6619
- #: app/libraries/main.php:4914
6620
  msgid "View Detail Button"
6621
  msgstr "Ansicht Detail Button"
6622
 
6623
- #: app/libraries/main.php:4914 app/skins/carousel/render.php:158
6624
  #: app/skins/carousel/render.php:194 app/skins/grid/render.php:118
6625
  #: app/skins/grid/render.php:164 app/skins/grid/render.php:207
6626
  #: app/skins/grid/render.php:235 app/skins/list/render.php:108
@@ -6631,59 +6671,59 @@ msgstr "Ansicht Detail Button"
6631
  msgid "View Detail"
6632
  msgstr "Details "
6633
 
6634
- #: app/libraries/main.php:4915
6635
  msgid "Event Detail Button"
6636
  msgstr "Event Detail Button"
6637
 
6638
- #: app/libraries/main.php:4915 app/skins/countdown/tpl.php:244
6639
  msgid "Event Detail"
6640
  msgstr "Veranstaltungsdetails"
6641
 
6642
- #: app/libraries/main.php:4917
6643
  msgid "More Info Link"
6644
  msgstr "Link Mehr Informationen"
6645
 
6646
- #: app/libraries/main.php:4920
6647
  msgid "Ticket (Singular)"
6648
  msgstr "Ticket"
6649
 
6650
- #: app/libraries/main.php:4921
6651
  msgid "Tickets (Plural)"
6652
  msgstr "Tickets"
6653
 
6654
- #: app/libraries/main.php:5007
6655
  msgid "EventON"
6656
  msgstr "EventON"
6657
 
6658
- #: app/libraries/main.php:5008
6659
  msgid "The Events Calendar"
6660
  msgstr "The Events Calendar"
6661
 
6662
- #: app/libraries/main.php:5009
6663
  msgid "Events Schedule WP Plugin"
6664
  msgstr "Event Zeitplan WP-Plugin"
6665
 
6666
- #: app/libraries/main.php:5010
6667
  msgid "Calendarize It"
6668
  msgstr ""
6669
 
6670
- #: app/libraries/main.php:5084 app/libraries/main.php:5104
6671
  msgid "Confirmed"
6672
  msgstr "Bestätigt"
6673
 
6674
- #: app/libraries/main.php:5085 app/libraries/main.php:5112
6675
  msgid "Rejected"
6676
  msgstr "Abgelehnt"
6677
 
6678
- #: app/libraries/main.php:5086 app/libraries/main.php:5108
6679
  msgid "Pending"
6680
  msgstr "Ausstehend"
6681
 
6682
- #: app/libraries/main.php:5134
6683
  msgid "Waiting"
6684
  msgstr "in Bearbeitung"
6685
 
6686
- #: app/libraries/main.php:5339 app/libraries/render.php:382
6687
  msgid "Skin controller does not exist."
6688
  msgstr "Skin contoller existiert nicht."
6689
 
@@ -6719,23 +6759,23 @@ msgstr "Eine neue Veranstaltung wurde hinzugefügt."
6719
  msgid "Your event is published."
6720
  msgstr "Die Veranstaltung wurde veröffentlicht."
6721
 
6722
- #: app/libraries/notifications.php:821
6723
  msgid "to"
6724
  msgstr ""
6725
 
6726
- #: app/libraries/notifications.php:834 app/modules/export/details.php:27
6727
  msgid "+ Add to Google Calendar"
6728
  msgstr "+ zum Google Calendar hinzufügen"
6729
 
6730
- #: app/libraries/notifications.php:835 app/modules/export/details.php:28
6731
  msgid "+ iCal export"
6732
  msgstr "+ zu iCal exportieren"
6733
 
6734
- #: app/libraries/notifications.php:898
6735
  msgid "Yes"
6736
  msgstr "Ja"
6737
 
6738
- #: app/libraries/notifications.php:898
6739
  msgid "No"
6740
  msgstr "Nein"
6741
 
2
  msgstr ""
3
  "Project-Id-Version: ME Calender\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2019-10-30 12:41+0330\n"
6
+ "PO-Revision-Date: 2019-10-30 12:42+0330\n"
7
  "Last-Translator: Jogon <koenig@kafinanz.de>\n"
8
  "Language-Team: German\n"
9
  "Language: de_DE\n"
79
  msgstr "Einstellungen"
80
 
81
  #: app/features/contextual.php:62 app/features/events.php:2415
82
+ #: app/features/mec/booking.php:439 app/features/mec/support.php:29
83
  #: app/libraries/main.php:554
84
  msgid "Booking Form"
85
  msgstr "Buchungsformular"
98
  "<iframe width=\"600\" height=\"300\" src=\"https://www.youtube.com/embed/"
99
  "YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></iframe>"
100
 
101
+ #: app/features/contextual.php:70 app/features/mec/booking.php:557
102
  #: app/features/mec/support.php:36 app/libraries/main.php:555
103
  msgid "Payment Gateways"
104
  msgstr "Zahlungs-Gateways"
252
  msgid "Booking"
253
  msgstr "Buchung / Reservierung"
254
 
255
+ #: app/features/contextual.php:318 app/features/mec/booking.php:261
256
  #: app/libraries/main.php:551
257
  msgid "Coupons"
258
  msgstr "Gutscheine"
328
  #: app/features/mec/meta_boxes/search_form.php:514
329
  #: app/features/mec/meta_boxes/search_form.php:575
330
  #: app/features/mec/settings.php:720 app/features/mec/single.php:204
331
+ #: app/features/search.php:67 app/libraries/main.php:4897
332
  #: app/libraries/skins.php:808 app/skins/single.php:559
333
  #: app/skins/single/default.php:185 app/skins/single/default.php:397
334
  #: app/skins/single/m1.php:170 app/skins/single/m2.php:102
338
 
339
  #: app/features/events.php:176 app/features/events.php:3212
340
  #: app/features/fes/form.php:737 app/features/mec.php:336
341
+ #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:4896
342
  msgid "Categories"
343
  msgstr "Kategorien"
344
 
345
  #: app/features/events.php:186 app/features/labels.php:71
346
  #: app/features/locations.php:69 app/features/organizers.php:69
347
+ #: app/features/speakers.php:72
348
  #, php-format
349
  msgid "All %s"
350
  msgstr "Alle %s"
351
 
352
  #: app/features/events.php:187 app/features/labels.php:72
353
  #: app/features/locations.php:70 app/features/organizers.php:70
354
+ #: app/features/speakers.php:73
355
  #, php-format
356
  msgid "Edit %s"
357
  msgstr "Bearbeiten %s"
358
 
359
  #: app/features/events.php:188 app/features/labels.php:73
360
  #: app/features/locations.php:71 app/features/organizers.php:71
361
+ #: app/features/speakers.php:74
362
  #, php-format
363
  msgid "View %s"
364
  msgstr "Ansicht %s"
365
 
366
  #: app/features/events.php:189 app/features/labels.php:74
367
  #: app/features/locations.php:72 app/features/organizers.php:72
368
+ #: app/features/speakers.php:75
369
  #, php-format
370
  msgid "Update %s"
371
  msgstr "Update %s"
372
 
373
  #: app/features/events.php:190 app/features/labels.php:75
374
  #: app/features/locations.php:73 app/features/organizers.php:73
375
+ #: app/features/speakers.php:76
376
  #, php-format
377
  msgid "Add New %s"
378
  msgstr "Neu hinzufügen%s"
379
 
380
  #: app/features/events.php:191 app/features/labels.php:76
381
  #: app/features/locations.php:74 app/features/organizers.php:74
382
+ #: app/features/speakers.php:77
383
  #, php-format
384
  msgid "New %s Name"
385
  msgstr "Neuer %s Name"
386
 
387
  #: app/features/events.php:192 app/features/labels.php:77
388
  #: app/features/locations.php:75 app/features/organizers.php:75
389
+ #: app/features/speakers.php:78
390
  #, php-format
391
  msgid "Popular %s"
392
  msgstr "Beliebt %s"
393
 
394
  #: app/features/events.php:193 app/features/labels.php:78
395
  #: app/features/locations.php:76 app/features/organizers.php:76
396
+ #: app/features/speakers.php:79
397
  #, php-format
398
  msgid "Search %s"
399
  msgstr "Suche %s"
422
  #: app/features/fes.php:224 app/features/fes.php:332
423
  #: app/features/fes/form.php:669 app/features/labels.php:178
424
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
425
+ #: app/features/profile/profile.php:168 app/libraries/notifications.php:886
426
  #: app/modules/booking/steps/form.php:37
427
  msgid "Name"
428
  msgstr "Name"
430
  #: app/features/events.php:463 app/features/events.php:2408
431
  #: app/features/events.php:2484 app/features/fes.php:224
432
  #: app/features/fes.php:332 app/features/fes/form.php:665
433
+ #: app/features/mec/booking.php:57 app/features/mec/booking.php:490
434
  #: app/features/organizers.php:111 app/features/organizers.php:152
435
+ #: app/features/profile/profile.php:171 app/features/speakers.php:126
436
+ #: app/features/speakers.php:187 app/libraries/main.php:1472
437
+ #: app/libraries/main.php:1541 app/libraries/main.php:2603
438
+ #: app/libraries/notifications.php:887 app/modules/booking/steps/form.php:46
439
  #: app/modules/booking/steps/form.php:84 app/skins/single.php:812
440
  #: app/skins/single.php:867 app/skins/single/default.php:227
441
  #: app/skins/single/default.php:439 app/skins/single/m1.php:107
531
  #: app/features/events.php:2324 app/features/events.php:2337
532
  #: app/features/fes/form.php:631 app/features/locations.php:299
533
  #: app/features/mec/booking.php:108 app/features/mec/booking.php:158
534
+ #: app/features/mec/booking.php:171 app/features/mec/booking.php:187
535
+ #: app/features/mec/booking.php:306 app/features/mec/booking.php:335
536
+ #: app/features/mec/booking.php:383 app/features/mec/booking.php:393
537
+ #: app/features/mec/booking.php:415 app/features/mec/booking.php:425
538
+ #: app/features/mec/dashboard.php:71
539
  #: app/features/mec/meta_boxes/display_options.php:66
540
  #: app/features/mec/meta_boxes/display_options.php:79
541
  #: app/features/mec/meta_boxes/display_options.php:92
571
  #: app/features/mec/modules.php:154 app/features/mec/modules.php:312
572
  #: app/features/mec/notifications.php:54 app/features/mec/notifications.php:111
573
  #: app/features/mec/notifications.php:163
574
+ #: app/features/mec/notifications.php:223
575
+ #: app/features/mec/notifications.php:291
576
+ #: app/features/mec/notifications.php:354
577
+ #: app/features/mec/notifications.php:365
578
+ #: app/features/mec/notifications.php:427
579
+ #: app/features/mec/notifications.php:473 app/features/mec/settings.php:66
580
  #: app/features/mec/settings.php:85 app/features/mec/settings.php:112
581
  #: app/features/mec/settings.php:147 app/features/mec/settings.php:168
582
  #: app/features/mec/settings.php:188 app/features/mec/settings.php:265
815
  #: app/features/events.php:1153 app/features/events.php:3434
816
  #: app/features/events.php:3476 app/features/fes/form.php:707
817
  #: app/features/ix.php:2743 app/features/ix.php:2784
818
+ #: app/features/mec/settings.php:576 app/libraries/main.php:4929
819
  #: app/widgets/single.php:103
820
  msgid "Event Cost"
821
  msgstr ""
822
  "Bruttopreis des Events in Euro, 0 für kostenlos oder z.B. 39, ohne €-Zeichen"
823
 
824
  #: app/features/events.php:1157 app/features/fes/form.php:710
825
+ #: app/libraries/main.php:4930 app/skins/single.php:582
826
  #: app/skins/single/default.php:119 app/skins/single/default.php:331
827
  #: app/skins/single/m1.php:49 app/skins/single/modern.php:199
828
  msgid "Cost"
840
 
841
  #: app/features/events.php:1189 app/features/events.php:2485
842
  #: app/features/fes.php:224 app/features/fes.php:332
843
+ #: app/features/mec/booking.php:491 app/features/profile/profile.php:53
844
+ #: app/libraries/main.php:2059 app/libraries/main.php:2661
845
  #: app/modules/booking/steps/tickets.php:22
846
  #: app/modules/next-event/details.php:90 app/skins/single.php:637
847
  #: app/skins/single/default.php:83 app/skins/single/default.php:295
886
  #: app/features/events.php:2313 app/features/events.php:3240
887
  #: app/features/events.php:3434 app/features/events.php:3476
888
  #: app/features/fes/form.php:226 app/features/ix.php:2743
889
+ #: app/features/ix.php:2784 app/features/mec/booking.php:375
890
+ #: app/features/mec/booking.php:407 app/features/mec/styling.php:115
891
  msgid "Title"
892
  msgstr "Titel"
893
 
898
  #: app/features/events.php:2032 app/features/events.php:2059
899
  #: app/features/events.php:2158 app/features/events.php:2194
900
  #: app/features/events.php:2301 app/features/events.php:2343
901
+ #: app/features/mec/booking.php:318 app/features/mec/booking.php:347
902
+ #: app/features/mec/booking.php:398 app/features/mec/booking.php:430
903
+ #: app/libraries/main.php:2522 app/libraries/main.php:2552
904
+ #: app/libraries/main.php:2581 app/libraries/main.php:2611
905
+ #: app/libraries/main.php:2640 app/libraries/main.php:2669
906
+ #: app/libraries/main.php:2698 app/libraries/main.php:2727
907
+ #: app/libraries/main.php:2749 app/libraries/main.php:2780
908
+ #: app/libraries/main.php:2824 app/libraries/main.php:2868
909
+ #: app/libraries/main.php:2915 app/libraries/main.php:2954
910
  msgid "Remove"
911
  msgstr "Entfernen"
912
 
933
  #: app/features/events.php:1336 app/features/events.php:1369
934
  #: app/features/events.php:1430 app/features/fes/form.php:831
935
  #: app/features/mec.php:344 app/features/mec/modules.php:52
936
+ #: app/features/mec/settings.php:624 app/features/speakers.php:62
937
+ #: app/libraries/main.php:559 app/libraries/main.php:4904
938
  #: app/modules/speakers/details.php:18
939
  msgid "Speakers"
940
  msgstr ""
951
  msgstr "Veranstaltungslinks"
952
 
953
  #: app/features/events.php:1464 app/features/events.php:1470
954
+ #: app/features/fes/form.php:686 app/libraries/main.php:4927
955
  msgid "Event Link"
956
  msgstr "Veranstaltungslink"
957
 
979
  msgstr ""
980
 
981
  #: app/features/events.php:1480 app/features/events.php:1493
982
+ #: app/features/fes/form.php:691 app/libraries/main.php:4928
983
  #: app/skins/single.php:656 app/skins/single/default.php:133
984
  #: app/skins/single/default.php:345 app/skins/single/m1.php:191
985
  #: app/skins/single/m2.php:124 app/skins/single/modern.php:132
1053
  msgstr ""
1054
 
1055
  #: app/features/events.php:1638 app/libraries/book.php:60
1056
+ #: app/libraries/main.php:4932 app/modules/booking/steps/tickets.php:40
1057
  msgid "Tickets"
1058
  msgstr "Tickets"
1059
 
1085
  #: app/features/events.php:1996 app/features/events.php:1999
1086
  #: app/features/events.php:2055 app/features/events.php:2272
1087
  #: app/features/events.php:2276 app/features/events.php:2318
1088
+ #: app/features/events.php:2321 app/features/mec/booking.php:379
1089
+ #: app/features/mec/booking.php:382 app/features/mec/booking.php:411
1090
+ #: app/features/mec/booking.php:414
1091
  msgid "Price"
1092
  msgstr "Preis"
1093
 
1137
  msgstr "Gebühren"
1138
 
1139
  #: app/features/events.php:2132 app/features/events.php:2170
1140
+ #: app/features/mec/booking.php:298 app/features/mec/booking.php:327
1141
  msgid "Fee Title"
1142
  msgstr "Gebühren Name"
1143
 
1144
  #: app/features/events.php:2138 app/features/events.php:2142
1145
  #: app/features/events.php:2175 app/features/events.php:2178
1146
+ #: app/features/mec/booking.php:302 app/features/mec/booking.php:305
1147
+ #: app/features/mec/booking.php:331 app/features/mec/booking.php:334
1148
  msgid "Amount"
1149
  msgstr "Betrag"
1150
 
1151
  #: app/features/events.php:2143 app/features/events.php:2179
1152
+ #: app/features/mec/booking.php:306 app/features/mec/booking.php:335
1153
  msgid ""
1154
  "Fee amount, considered as fixed amount if you set the type to amount "
1155
  "otherwise considered as percentage"
1158
  "sonst als Prozentsatz"
1159
 
1160
  #: app/features/events.php:2152 app/features/events.php:2188
1161
+ #: app/features/mec/booking.php:313 app/features/mec/booking.php:342
1162
  msgid "Percent"
1163
  msgstr "Prozent"
1164
 
1165
  #: app/features/events.php:2153 app/features/events.php:2189
1166
+ #: app/features/mec/booking.php:314 app/features/mec/booking.php:343
1167
  msgid "Amount (Per Ticket)"
1168
  msgstr "Betrag (pro Ticket)"
1169
 
1170
  #: app/features/events.php:2154 app/features/events.php:2190
1171
+ #: app/features/mec/booking.php:315 app/features/mec/booking.php:344
1172
  msgid "Amount (Per Booking)"
1173
  msgstr "Betrag (pro Buchung)"
1174
 
1177
  msgstr ""
1178
 
1179
  #: app/features/events.php:2277 app/features/events.php:2322
1180
+ #: app/features/mec/booking.php:383 app/features/mec/booking.php:415
1181
  #, fuzzy
1182
  #| msgid "Option"
1183
  msgid "Option Price"
1185
 
1186
  #: app/features/events.php:2287 app/features/events.php:2291
1187
  #: app/features/events.php:2331 app/features/events.php:2334
1188
+ #: app/features/mec/booking.php:389 app/features/mec/booking.php:392
1189
+ #: app/features/mec/booking.php:421 app/features/mec/booking.php:424
1190
  #, fuzzy
1191
  #| msgid "Amount (Per Ticket)"
1192
  msgid "Maximum Per Ticket"
1193
  msgstr "Betrag (pro Ticket)"
1194
 
1195
  #: app/features/events.php:2292 app/features/events.php:2335
1196
+ #: app/features/mec/booking.php:393 app/features/mec/booking.php:425
1197
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
1198
  msgstr ""
1199
 
1200
+ #: app/features/events.php:2481 app/features/mec/booking.php:487
1201
+ #: app/libraries/main.php:2544
1202
  #, fuzzy
1203
  #| msgid "Name"
1204
  msgid "MEC Name"
1205
  msgstr "Name"
1206
 
1207
+ #: app/features/events.php:2482 app/features/mec/booking.php:488
1208
+ #: app/libraries/main.php:2573
1209
  #, fuzzy
1210
  #| msgid "Email"
1211
  msgid "MEC Email"
1212
  msgstr "Email"
1213
 
1214
+ #: app/features/events.php:2483 app/features/mec/booking.php:489
1215
+ #: app/libraries/main.php:2514
1216
  msgid "Text"
1217
  msgstr "Text"
1218
 
1219
+ #: app/features/events.php:2486 app/features/mec/booking.php:492
1220
  #: app/features/organizers.php:103 app/features/organizers.php:148
1221
+ #: app/features/speakers.php:118 app/features/speakers.php:183
1222
+ #: app/features/speakers.php:256 app/libraries/main.php:2690
1223
  msgid "Tel"
1224
  msgstr "Tel"
1225
 
1226
+ #: app/features/events.php:2487 app/features/mec/booking.php:493
1227
+ #: app/libraries/main.php:2632
1228
  msgid "File"
1229
  msgstr ""
1230
 
1231
+ #: app/features/events.php:2488 app/features/mec/booking.php:494
1232
+ #: app/libraries/main.php:2719
1233
  msgid "Textarea"
1234
  msgstr "Textbereich"
1235
 
1236
+ #: app/features/events.php:2489 app/features/mec/booking.php:495
1237
+ #: app/libraries/main.php:2772
1238
  msgid "Checkboxes"
1239
  msgstr "Checkboxes"
1240
 
1241
+ #: app/features/events.php:2490 app/features/mec/booking.php:496
1242
+ #: app/libraries/main.php:2816
1243
  msgid "Radio Buttons"
1244
  msgstr "Radio Buttons"
1245
 
1246
+ #: app/features/events.php:2491 app/features/mec/booking.php:497
1247
  #: app/features/mec/meta_boxes/search_form.php:34
1248
  #: app/features/mec/meta_boxes/search_form.php:41
1249
  #: app/features/mec/meta_boxes/search_form.php:48
1312
  #: app/features/mec/meta_boxes/search_form.php:599
1313
  #: app/features/mec/meta_boxes/search_form.php:606
1314
  #: app/features/mec/meta_boxes/search_form.php:613
1315
+ #: app/features/mec/meta_boxes/search_form.php:620 app/libraries/main.php:2860
1316
  msgid "Dropdown"
1317
  msgstr "Dropdown"
1318
 
1319
+ #: app/features/events.php:2492 app/features/mec/booking.php:498
1320
+ #: app/libraries/main.php:2907
1321
  msgid "Agreement"
1322
  msgstr "Zustimmung"
1323
 
1324
+ #: app/features/events.php:2493 app/features/mec/booking.php:499
1325
+ #: app/libraries/main.php:2748
1326
  msgid "Paragraph"
1327
  msgstr "Absatz"
1328
 
1361
  #: app/features/mec/meta_boxes/search_form.php:521
1362
  #: app/features/mec/meta_boxes/search_form.php:582
1363
  #: app/features/mec/settings.php:726 app/features/mec/single.php:212
1364
+ #: app/features/search.php:71 app/libraries/main.php:2053
1365
+ #: app/libraries/main.php:4901 app/libraries/skins.php:834
1366
  #: app/skins/single.php:486 app/skins/single.php:907
1367
  #: app/skins/single/default.php:169 app/skins/single/default.php:381
1368
  #: app/skins/single/m1.php:155 app/skins/single/m2.php:87
1387
  #: app/features/organizers.php:58 app/features/organizers.php:204
1388
  #: app/features/organizers.php:260 app/features/organizers.php:262
1389
  #: app/features/organizers.php:271 app/features/search.php:75
1390
+ #: app/libraries/main.php:4903 app/libraries/skins.php:860
1391
  #: app/skins/single.php:795 app/skins/single/default.php:210
1392
  #: app/skins/single/default.php:422 app/skins/single/m1.php:90
1393
  #: app/skins/single/m2.php:22 app/skins/single/modern.php:31
1431
  #: app/features/fes.php:224 app/features/fes.php:332 app/features/ix.php:2743
1432
  #: app/features/ix.php:2784 app/features/labels.php:177
1433
  #: app/features/locations.php:229 app/features/organizers.php:203
1434
+ #: app/features/speakers.php:253
1435
  msgid "ID"
1436
  msgstr "ID"
1437
 
1484
  msgstr "Die Veranstaltung wurde entfernt."
1485
 
1486
  #: app/features/fes.php:224 app/features/fes.php:332
1487
+ #: app/features/profile/profile.php:174 app/libraries/main.php:2088
1488
+ #: app/libraries/main.php:4931
1489
  msgid "Ticket"
1490
  msgstr "Ticket"
1491
 
1492
  #: app/features/fes.php:224 app/features/fes.php:332
1493
+ #: app/libraries/main.php:2065
1494
  msgid "Transaction ID"
1495
  msgstr "Transaktions-ID"
1496
 
1581
 
1582
  #: app/features/fes/form.php:763 app/features/labels.php:61
1583
  #: app/features/labels.php:221 app/features/mec.php:337
1584
+ #: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:4898
1585
  #: app/skins/single.php:685 app/skins/single/default.php:148
1586
  #: app/skins/single/default.php:360 app/skins/single/m1.php:64
1587
  #: app/skins/single/modern.php:214
1928
  #: app/features/ix/export_g_calendar.php:147
1929
  #: app/features/ix/export_g_calendar.php:164
1930
  #: app/features/mec/notifications.php:92 app/features/mec/notifications.php:144
1931
+ #: app/features/mec/notifications.php:198
1932
+ #: app/features/mec/notifications.php:399
1933
  msgid "Add to Google Calendar"
1934
  msgstr "Zum Google Kalender hinzufügen"
1935
 
1936
+ #: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:629
1937
+ #: app/features/mec/modules.php:392 app/features/mec/notifications.php:591
1938
  #: app/features/mec/settings.php:895 app/features/mec/single.php:269
1939
  msgid "Checking ..."
1940
  msgstr "Überprüfung"
1980
  msgstr ""
1981
 
1982
  #: app/features/ix/import.php:46 app/features/mec/booking.php:91
1983
+ #: app/features/mec/booking.php:264 app/features/mec/booking.php:282
1984
+ #: app/features/mec/booking.php:359
1985
  #: app/features/mec/meta_boxes/display_options.php:150
1986
  #: app/features/mec/meta_boxes/display_options.php:315
1987
  #: app/features/mec/modules.php:70 app/features/mec/modules.php:211
1991
  msgstr ""
1992
 
1993
  #: app/features/ix/import.php:46 app/features/ix/sync.php:22
1994
+ #: app/features/mec/booking.php:91 app/features/mec/booking.php:264
1995
+ #: app/features/mec/booking.php:282 app/features/mec/booking.php:359
1996
  #: app/features/mec/meta_boxes/display_options.php:150
1997
  #: app/features/mec/meta_boxes/display_options.php:315
1998
  #: app/features/mec/meta_boxes/display_options.php:330
2196
 
2197
  #: app/features/ix/sync.php:32 app/features/ix/sync.php:41
2198
  #: app/features/ix/sync.php:52 app/features/ix/sync.php:63
2199
+ #: app/features/mec/notifications.php:342
2200
  msgid "Important Note"
2201
  msgstr "Important Note"
2202
 
2350
  "Event Seite zu bearbeiten und sicherzustellen, dass sie korrekt sind."
2351
 
2352
  #: app/features/labels.php:79 app/features/locations.php:77
2353
+ #: app/features/organizers.php:77 app/features/speakers.php:80
2354
  #, php-format
2355
  msgid "← Back to %s"
2356
  msgstr ""
2398
  msgstr "Ausgewähltes Bild"
2399
 
2400
  #: app/features/labels.php:118 app/features/labels.php:143
2401
+ #: app/libraries/main.php:5144 app/skins/agenda/render.php:41
2402
  #: app/skins/available_spot/tpl.php:42 app/skins/carousel/render.php:45
2403
  #: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:32
2404
  #: app/skins/daily_view/render.php:52 app/skins/grid/render.php:50
2416
  msgstr ""
2417
 
2418
  #: app/features/labels.php:180 app/features/locations.php:232
2419
+ #: app/features/organizers.php:206 app/features/speakers.php:257
2420
  #: app/modules/booking/steps/tickets.php:38
2421
  msgid "Count"
2422
  msgstr "Zähler"
2433
 
2434
  #: app/features/locations.php:59 app/features/mec.php:338
2435
  #: app/features/mec/dashboard.php:243 app/features/mec/meta_boxes/filter.php:96
2436
+ #: app/libraries/main.php:4900
2437
  msgid "Locations"
2438
  msgstr "Orte"
2439
 
2466
 
2467
  #: app/features/locations.php:138 app/features/locations.php:180
2468
  #: app/features/organizers.php:127 app/features/organizers.php:160
2469
+ #: app/features/speakers.php:158 app/features/speakers.php:203
2470
  msgid "Thumbnail"
2471
  msgstr "Miniaturansicht"
2472
 
2473
  #: app/features/locations.php:143 app/features/locations.php:183
2474
  #: app/features/organizers.php:132 app/features/organizers.php:163
2475
+ #: app/features/speakers.php:163 app/features/speakers.php:206
2476
  msgid "Upload/Add image"
2477
  msgstr "Bild hochladen/hinzufügen"
2478
 
2480
  #: app/features/locations.php:340 app/features/locations.php:347
2481
  #: app/features/organizers.php:133 app/features/organizers.php:164
2482
  #: app/features/organizers.php:299 app/features/organizers.php:306
2483
+ #: app/features/speakers.php:164 app/features/speakers.php:207
2484
  msgid "Remove image"
2485
  msgstr "Bild entfernen"
2486
 
2545
  msgid "Don't show map in single event page"
2546
  msgstr "Karte in Einzelansicht nicht anzeigen"
2547
 
2548
+ #: app/features/locations.php:356 app/libraries/main.php:4934
2549
  #, fuzzy
2550
  #| msgid "Locations"
2551
  msgid "Other Locations"
2606
 
2607
  #: app/features/mec.php:339 app/features/mec/dashboard.php:250
2608
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2609
+ #: app/libraries/main.php:4902
2610
  msgid "Organizers"
2611
  msgstr "Veranstalter"
2612
 
2706
  msgid "Search..."
2707
  msgstr "Suche %s"
2708
 
2709
+ #: app/features/mec/booking.php:72 app/features/mec/booking.php:505
2710
+ #: app/features/mec/booking.php:585 app/features/mec/booking.php:594
2711
+ #: app/features/mec/booking.php:604 app/features/mec/booking.php:646
2712
+ #: app/features/mec/booking.php:660 app/features/mec/messages.php:15
2713
  #: app/features/mec/messages.php:51 app/features/mec/messages.php:60
2714
  #: app/features/mec/messages.php:94 app/features/mec/messages.php:103
2715
  #: app/features/mec/modules.php:25 app/features/mec/modules.php:357
2716
  #: app/features/mec/modules.php:367 app/features/mec/modules.php:409
2717
  #: app/features/mec/modules.php:423 app/features/mec/notifications.php:14
2718
+ #: app/features/mec/notifications.php:500
2719
+ #: app/features/mec/notifications.php:512
2720
+ #: app/features/mec/notifications.php:608
2721
+ #: app/features/mec/notifications.php:622 app/features/mec/settings.php:34
2722
  #: app/features/mec/settings.php:844 app/features/mec/settings.php:854
2723
  #: app/features/mec/settings.php:912 app/features/mec/settings.php:926
2724
  #: app/features/mec/single.php:17 app/features/mec/single.php:234
2816
  "Benutzer werden auf diese Seite nach der Buchung weitergeleitet. Lassen Sie "
2817
  "es leer, wenn Sie es deaktivieren möchten."
2818
 
2819
+ #: app/features/mec/booking.php:165 app/features/mec/booking.php:170
2820
+ #, fuzzy
2821
+ #| msgid "Thank You Page"
2822
+ msgid "Thank You Page Time Interval"
2823
+ msgstr "Danke Seite"
2824
+
2825
+ #: app/features/mec/booking.php:167
2826
+ msgid "2000 mean 2 seconds"
2827
+ msgstr ""
2828
+
2829
+ #: app/features/mec/booking.php:171
2830
+ msgid ""
2831
+ "Waiting time before redirecting to thank you page. It's in miliseconds so "
2832
+ "2000 means 2 seconds."
2833
+ msgstr ""
2834
+
2835
+ #: app/features/mec/booking.php:182
2836
  msgid "Enable Express Attendees Form"
2837
  msgstr "Aktivieren Sie das Express-Teilnehmerformular"
2838
 
2839
+ #: app/features/mec/booking.php:186 app/modules/booking/steps/form.php:52
2840
  msgid "Attendees Form"
2841
  msgstr "Teilnahmeformular"
2842
 
2843
+ #: app/features/mec/booking.php:187
2844
  msgid ""
2845
  "Users are able to apply first attendee information for other attendees in "
2846
  "the booking form."
2848
  "Benutzer können erste Teilnehmerinformationen für andere Teilnehmer im "
2849
  "Buchungsformular anwenden."
2850
 
2851
+ #: app/features/mec/booking.php:200
2852
  #, fuzzy
2853
  #| msgid "Download Invoice"
2854
  msgid "Enable Invoice"
2855
  msgstr "Download Rechnung"
2856
 
2857
+ #: app/features/mec/booking.php:211
2858
  #, fuzzy
2859
  #| msgid "Enable booking notification"
2860
  msgid "Enable Booking for Ongoing Events"
2861
  msgstr "Buchungsbenachrichtigung aktivieren"
2862
 
2863
+ #: app/features/mec/booking.php:216
2864
  msgid "Email verification"
2865
  msgstr "Email-Verifizierung"
2866
 
2867
+ #: app/features/mec/booking.php:222
2868
  msgid "Auto verification for free bookings"
2869
  msgstr "Automatische Verifizierung für kostenlose Buchungen"
2870
 
2871
+ #: app/features/mec/booking.php:231
2872
  msgid "Auto verification for paid bookings"
2873
  msgstr "Automatische Verifizierung für kostenpflichtige Buchungen"
2874
 
2875
+ #: app/features/mec/booking.php:235 app/features/mec/notifications.php:151
2876
  #: app/libraries/main.php:573
2877
  msgid "Booking Confirmation"
2878
  msgstr "Buchungsbestätigung"
2879
 
2880
+ #: app/features/mec/booking.php:241
2881
  msgid "Auto confirmation for free bookings"
2882
  msgstr "Automatische Bestätigung für kostenlose Buchungen"
2883
 
2884
+ #: app/features/mec/booking.php:250
2885
  msgid "Auto confirmation for paid bookings"
2886
  msgstr "Automatische Bestätigung für kostenpflichtige Buchungen"
2887
 
2888
+ #: app/features/mec/booking.php:269
2889
  msgid "Enable coupons module"
2890
  msgstr "Gutscheinmodul aktivieren"
2891
 
2892
+ #: app/features/mec/booking.php:271
2893
  msgid ""
2894
  "After enabling and saving the settings,, you should reload the page to see a "
2895
  "new menu on the Dashboard > Booking"
2896
  msgstr ""
2897
 
2898
+ #: app/features/mec/booking.php:279 app/libraries/main.php:552
2899
  msgid "Taxes / Fees"
2900
  msgstr "Steuern/Gebühren"
2901
 
2902
+ #: app/features/mec/booking.php:287
2903
  msgid "Enable taxes / fees module"
2904
  msgstr "Modul für Gebühren/Steuern aktivieren"
2905
 
2906
+ #: app/features/mec/booking.php:292
2907
  msgid "Add Fee"
2908
  msgstr "Gebühr hinzufügen"
2909
 
2910
+ #: app/features/mec/booking.php:356 app/libraries/main.php:553
2911
  msgid "Ticket Variations & Options"
2912
  msgstr ""
2913
 
2914
+ #: app/features/mec/booking.php:364
2915
  #, fuzzy
2916
  #| msgid "Enable coupons module"
2917
  msgid "Enable ticket options module"
2918
  msgstr "Gutscheinmodul aktivieren"
2919
 
2920
+ #: app/features/mec/booking.php:369
2921
  msgid "Add Variation / Option"
2922
  msgstr ""
2923
 
2924
+ #: app/features/mec/booking.php:572
2925
  msgid "Enable Organizer Payment Module"
2926
  msgstr ""
2927
 
2928
+ #: app/features/mec/booking.php:576
2929
  #, fuzzy
2930
  #| msgid "Organizer Tel"
2931
  msgid "Organizer Payment"
2932
  msgstr "Organisator Telefon"
2933
 
2934
+ #: app/features/mec/booking.php:577
2935
  msgid ""
2936
  "By enabling this module, organizers are able to insert their own payment "
2937
  "credentials for enabled gateways per event and receive the payments directly!"
2938
  msgstr ""
2939
 
2940
+ #: app/features/mec/booking.php:624 app/features/mec/messages.php:78
2941
+ #: app/features/mec/modules.php:387 app/features/mec/notifications.php:586
2942
  #: app/features/mec/settings.php:890 app/features/mec/single.php:264
2943
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:296
2944
  msgid "Saved"
2945
  msgstr "Gesichert"
2946
 
2947
+ #: app/features/mec/booking.php:625 app/features/mec/messages.php:79
2948
+ #: app/features/mec/modules.php:388 app/features/mec/notifications.php:587
2949
  #: app/features/mec/settings.php:891 app/features/mec/single.php:265
2950
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:297
2951
  msgid "Settings Saved!"
2952
  msgstr ""
2953
 
2954
+ #: app/features/mec/booking.php:627 app/features/mec/booking.php:649
2955
  #: app/features/mec/modules.php:390 app/features/mec/modules.php:412
2956
+ #: app/features/mec/notifications.php:589
2957
+ #: app/features/mec/notifications.php:611 app/features/mec/settings.php:893
2958
  #: app/features/mec/settings.php:915 app/features/mec/single.php:267
2959
+ #: app/features/mec/single.php:289 app/libraries/main.php:5143
2960
  msgid "Verified"
2961
  msgstr "Verifiziert"
2962
 
2963
+ #: app/features/mec/booking.php:651 app/features/mec/modules.php:414
2964
+ #: app/features/mec/notifications.php:613 app/features/mec/settings.php:917
2965
  #: app/features/mec/single.php:291
2966
  msgid "Please Refresh Page"
2967
  msgstr "Bitte Seiten Refresh vornehmen"
3935
  #: app/features/mec/meta_boxes/search_form.php:535
3936
  #: app/features/mec/meta_boxes/search_form.php:596
3937
  #: app/features/mec/settings.php:739 app/features/mec/single.php:217
3938
+ #: app/features/search.php:79 app/features/speakers.php:61
3939
+ #: app/features/speakers.php:254 app/libraries/main.php:4905
3940
  #: app/libraries/skins.php:886
3941
  msgid "Speaker"
3942
  msgstr ""
4217
 
4218
  #: app/features/mec/notifications.php:45 app/features/mec/notifications.php:102
4219
  #: app/features/mec/notifications.php:154
4220
+ #: app/features/mec/notifications.php:214
4221
+ #: app/features/mec/notifications.php:282
4222
+ #: app/features/mec/notifications.php:345
4223
+ #: app/features/mec/notifications.php:418
4224
+ #: app/features/mec/notifications.php:464
4225
  msgid "Email Subject"
4226
  msgstr "Email Betreff"
4227
 
4230
  #: app/features/mec/notifications.php:110
4231
  #: app/features/mec/notifications.php:158
4232
  #: app/features/mec/notifications.php:162
4233
+ #: app/features/mec/notifications.php:218
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4234
  #: app/features/mec/notifications.php:222
4235
+ #: app/features/mec/notifications.php:286
4236
  #: app/features/mec/notifications.php:290
4237
+ #: app/features/mec/notifications.php:349
4238
  #: app/features/mec/notifications.php:353
4239
  #: app/features/mec/notifications.php:364
4240
+ #: app/features/mec/notifications.php:422
4241
  #: app/features/mec/notifications.php:426
4242
+ #: app/features/mec/notifications.php:468
4243
  #: app/features/mec/notifications.php:472
4244
+ msgid "Custom Recipients"
4245
+ msgstr "Individuelle Empfänger"
4246
+
4247
+ #: app/features/mec/notifications.php:54 app/features/mec/notifications.php:111
4248
+ #: app/features/mec/notifications.php:163
4249
+ #: app/features/mec/notifications.php:223
4250
+ #: app/features/mec/notifications.php:291
4251
+ #: app/features/mec/notifications.php:354
4252
+ #: app/features/mec/notifications.php:365
4253
+ #: app/features/mec/notifications.php:427
4254
+ #: app/features/mec/notifications.php:473
4255
  msgid "Insert comma separated emails for multiple recipients."
4256
  msgstr "Geben Sie mit Komma getrennte email-Adressen ein für mehrere Empfänger"
4257
 
4258
+ #: app/features/mec/notifications.php:61 app/features/mec/notifications.php:234
4259
+ #: app/features/mec/notifications.php:298
4260
  msgid "Send the email to event organizer"
4261
  msgstr "Sendet das Email zum Event Organisator"
4262
 
4263
  #: app/features/mec/notifications.php:64 app/features/mec/notifications.php:117
4264
  #: app/features/mec/notifications.php:169
4265
+ #: app/features/mec/notifications.php:241
4266
+ #: app/features/mec/notifications.php:301
4267
+ #: app/features/mec/notifications.php:371
4268
+ #: app/features/mec/notifications.php:433
4269
+ #: app/features/mec/notifications.php:479
4270
  msgid "Email Content"
4271
  msgstr "Email Inhalt"
4272
 
4273
  #: app/features/mec/notifications.php:67 app/features/mec/notifications.php:120
4274
  #: app/features/mec/notifications.php:172
4275
+ #: app/features/mec/notifications.php:244
4276
+ #: app/features/mec/notifications.php:304
4277
+ #: app/features/mec/notifications.php:374
4278
+ #: app/features/mec/notifications.php:436
4279
+ #: app/features/mec/notifications.php:482
4280
  msgid "You can use following placeholders"
4281
  msgstr "Sie können die folgenden Platzhalter wählen"
4282
 
4283
  #: app/features/mec/notifications.php:69 app/features/mec/notifications.php:122
4284
  #: app/features/mec/notifications.php:174
4285
+ #: app/features/mec/notifications.php:246
4286
+ #: app/features/mec/notifications.php:306
4287
+ #: app/features/mec/notifications.php:376
4288
  msgid "First name of attendee"
4289
  msgstr "Vorname des Teilnehmers"
4290
 
4291
  #: app/features/mec/notifications.php:70 app/features/mec/notifications.php:123
4292
  #: app/features/mec/notifications.php:175
4293
+ #: app/features/mec/notifications.php:247
4294
+ #: app/features/mec/notifications.php:307
4295
+ #: app/features/mec/notifications.php:377
4296
  msgid "Last name of attendee"
4297
  msgstr "Nachname des Teilnehmers"
4298
 
4299
  #: app/features/mec/notifications.php:71 app/features/mec/notifications.php:124
4300
  #: app/features/mec/notifications.php:176
4301
+ #: app/features/mec/notifications.php:248
4302
+ #: app/features/mec/notifications.php:308
4303
+ #: app/features/mec/notifications.php:378
4304
  msgid "Email of attendee"
4305
  msgstr "Email des Teilnehmers"
4306
 
4307
  #: app/features/mec/notifications.php:72 app/features/mec/notifications.php:125
4308
  #: app/features/mec/notifications.php:177
4309
+ #: app/features/mec/notifications.php:249
4310
+ #: app/features/mec/notifications.php:309
4311
+ #: app/features/mec/notifications.php:379
4312
  msgid "Booked date of event"
4313
  msgstr "Gebuchtes Datum der Veranstaltung"
4314
 
4315
  #: app/features/mec/notifications.php:73 app/features/mec/notifications.php:126
4316
  #: app/features/mec/notifications.php:178
4317
+ #: app/features/mec/notifications.php:250
4318
+ #: app/features/mec/notifications.php:310
4319
+ #: app/features/mec/notifications.php:380
4320
  #, fuzzy
4321
  #| msgid "Booked date of event"
4322
  msgid "Booked time of event"
4324
 
4325
  #: app/features/mec/notifications.php:74 app/features/mec/notifications.php:127
4326
  #: app/features/mec/notifications.php:179
4327
+ #: app/features/mec/notifications.php:251
4328
+ #: app/features/mec/notifications.php:311
4329
+ #: app/features/mec/notifications.php:381
4330
  msgid "Booking Price"
4331
  msgstr "Buchungspreis"
4332
 
4333
  #: app/features/mec/notifications.php:75 app/features/mec/notifications.php:128
4334
  #: app/features/mec/notifications.php:180
 
 
 
 
 
 
 
 
 
 
4335
  #: app/features/mec/notifications.php:252
4336
  #: app/features/mec/notifications.php:312
4337
  #: app/features/mec/notifications.php:382
4338
  #: app/features/mec/notifications.php:442
4339
  #: app/features/mec/notifications.php:488
4340
+ msgid "Your website title"
4341
+ msgstr "Titel Ihrer Webseite"
4342
 
4343
+ #: app/features/mec/notifications.php:76 app/features/mec/notifications.php:129
4344
+ #: app/features/mec/notifications.php:181
4345
  #: app/features/mec/notifications.php:253
4346
  #: app/features/mec/notifications.php:313
4347
  #: app/features/mec/notifications.php:383
4348
  #: app/features/mec/notifications.php:443
4349
  #: app/features/mec/notifications.php:489
4350
+ msgid "Your website URL"
4351
+ msgstr "URL Ihrer Webseite"
4352
+
4353
+ #: app/features/mec/notifications.php:77 app/features/mec/notifications.php:130
4354
+ #: app/features/mec/notifications.php:182
4355
+ #: app/features/mec/notifications.php:254
4356
+ #: app/features/mec/notifications.php:314
4357
+ #: app/features/mec/notifications.php:384
4358
+ #: app/features/mec/notifications.php:444
4359
+ #: app/features/mec/notifications.php:490
4360
  msgid "Your website description"
4361
  msgstr "Beschreibung Ihrer Webseite"
4362
 
4363
  #: app/features/mec/notifications.php:78 app/features/mec/notifications.php:131
4364
  #: app/features/mec/notifications.php:183
4365
+ #: app/features/mec/notifications.php:255
4366
+ #: app/features/mec/notifications.php:315
4367
+ #: app/features/mec/notifications.php:385
4368
  msgid "Event title"
4369
  msgstr "Titel der Veranstaltung"
4370
 
4371
  #: app/features/mec/notifications.php:79 app/features/mec/notifications.php:132
4372
  #: app/features/mec/notifications.php:184
4373
+ #: app/features/mec/notifications.php:256
4374
+ #: app/features/mec/notifications.php:316
4375
+ #: app/features/mec/notifications.php:386
4376
  #, fuzzy
4377
  #| msgid "Event Link"
4378
  msgid "Event link"
4380
 
4381
  #: app/features/mec/notifications.php:80 app/features/mec/notifications.php:133
4382
  #: app/features/mec/notifications.php:185
4383
+ #: app/features/mec/notifications.php:257
4384
+ #: app/features/mec/notifications.php:317
4385
+ #: app/features/mec/notifications.php:387
4386
  #, fuzzy
4387
  #| msgid "Organizer name of booked event"
4388
  msgid "Speaker name of booked event"
4390
 
4391
  #: app/features/mec/notifications.php:81 app/features/mec/notifications.php:134
4392
  #: app/features/mec/notifications.php:186
4393
+ #: app/features/mec/notifications.php:258
4394
+ #: app/features/mec/notifications.php:318
4395
+ #: app/features/mec/notifications.php:388
4396
  msgid "Organizer name of booked event"
4397
  msgstr "Name des Veranstalters des gebuchten Events"
4398
 
4399
  #: app/features/mec/notifications.php:82 app/features/mec/notifications.php:135
4400
  #: app/features/mec/notifications.php:187
4401
+ #: app/features/mec/notifications.php:259
4402
+ #: app/features/mec/notifications.php:319
4403
+ #: app/features/mec/notifications.php:389
4404
  msgid "Organizer tel of booked event"
4405
  msgstr "Tel des Veranstalters"
4406
 
4407
  #: app/features/mec/notifications.php:83 app/features/mec/notifications.php:136
4408
  #: app/features/mec/notifications.php:188
4409
+ #: app/features/mec/notifications.php:260
4410
+ #: app/features/mec/notifications.php:320
4411
+ #: app/features/mec/notifications.php:390
4412
  msgid "Organizer email of booked event"
4413
  msgstr "Email des Veranstalters des gebuchten events"
4414
 
4415
  #: app/features/mec/notifications.php:84 app/features/mec/notifications.php:137
4416
  #: app/features/mec/notifications.php:189
4417
+ #: app/features/mec/notifications.php:261
4418
+ #: app/features/mec/notifications.php:321
4419
+ #: app/features/mec/notifications.php:391
4420
  msgid "Location name of booked event"
4421
  msgstr "Veranstaltungsort"
4422
 
4423
  #: app/features/mec/notifications.php:85 app/features/mec/notifications.php:138
4424
  #: app/features/mec/notifications.php:190
4425
+ #: app/features/mec/notifications.php:262
4426
+ #: app/features/mec/notifications.php:322
4427
+ #: app/features/mec/notifications.php:392
4428
  msgid "Location address of booked event"
4429
  msgstr "Adresse der gebuchten Veranstaltung"
4430
 
4431
+ #: app/features/mec/notifications.php:86 app/features/mec/notifications.php:264
4432
+ #: app/features/mec/notifications.php:324
4433
  msgid "Full Attendee info such as booking form data, name, email etc."
4434
  msgstr ""
4435
  "Gesamte Teinehmerinformationen wie z.B. Daten aus dem Buchungsformular, "
4436
  "Name, email, etc."
4437
 
4438
  #: app/features/mec/notifications.php:87 app/features/mec/notifications.php:192
4439
+ #: app/features/mec/notifications.php:394
4440
  msgid "Invoice Link"
4441
  msgstr "Rechnungslink"
4442
 
4443
  #: app/features/mec/notifications.php:88 app/features/mec/notifications.php:140
4444
  #: app/features/mec/notifications.php:193
4445
+ #: app/features/mec/notifications.php:265
4446
+ #: app/features/mec/notifications.php:325
4447
+ #: app/features/mec/notifications.php:395
4448
  msgid "Total Attendees"
4449
  msgstr ""
4450
 
4451
  #: app/features/mec/notifications.php:89 app/features/mec/notifications.php:141
4452
+ #: app/features/mec/notifications.php:195
4453
+ #: app/features/mec/notifications.php:396
4454
  #, fuzzy
4455
  #| msgid "Ticket Name"
4456
  msgid "Ticket name"
4457
  msgstr "Ticket Name"
4458
 
4459
  #: app/features/mec/notifications.php:90 app/features/mec/notifications.php:142
4460
+ #: app/features/mec/notifications.php:196
4461
+ #: app/features/mec/notifications.php:397
4462
  #, fuzzy
4463
  #| msgid "Ticket Name"
4464
  msgid "Ticket time"
4465
  msgstr "Ticket Name"
4466
 
4467
  #: app/features/mec/notifications.php:91 app/features/mec/notifications.php:143
4468
+ #: app/features/mec/notifications.php:197
4469
+ #: app/features/mec/notifications.php:398
4470
  #, fuzzy
4471
  #| msgid "Download Invoice"
4472
  msgid "Download ICS file"
4492
  "Es wird an den Teilnehmer gesendet nach Bestätigung der Buchung vom admin."
4493
 
4494
  #: app/features/mec/notifications.php:191
4495
+ #: app/features/mec/notifications.php:393
4496
  msgid "Booking cancellation link."
4497
  msgstr "Link zur Stornierung der Buchung"
4498
 
4499
+ #: app/features/mec/notifications.php:194
4500
+ #, fuzzy
4501
+ #| msgid "Amount (Per Ticket)"
4502
+ msgid "Amount Tickets"
4503
+ msgstr "Betrag (pro Ticket)"
4504
+
4505
+ #: app/features/mec/notifications.php:204 app/libraries/main.php:574
4506
  #, fuzzy
4507
  #| msgid "Booking cancellation link."
4508
  msgid "Booking Cancellation"
4509
  msgstr "Link zur Stornierung der Buchung"
4510
 
4511
+ #: app/features/mec/notifications.php:208
4512
  #, fuzzy
4513
  #| msgid "Enable new event notification"
4514
  msgid "Enable cancellation notification"
4515
  msgstr "Benachrichtigung bei neuen Veranstaltungen aktivieren"
4516
 
4517
+ #: app/features/mec/notifications.php:212
4518
  #, fuzzy
4519
  #| msgid "It sends to attendee after booking for notifying him/her."
4520
  msgid ""
4524
  "Wird an den Teilnehmer in Anschluss an die Buchung versendet, um Ihn/Sie zu "
4525
  "benachrichtigen."
4526
 
4527
+ #: app/features/mec/notifications.php:230
4528
  #, fuzzy
4529
  #| msgid "Send the email to event organizer"
4530
  msgid "Send the email to admin"
4531
  msgstr "Sendet das Email zum Event Organisator"
4532
 
4533
+ #: app/features/mec/notifications.php:238
4534
  #, fuzzy
4535
  #| msgid "Send the email to event organizer"
4536
  msgid "Send the email to booking user"
4537
  msgstr "Sendet das Email zum Event Organisator"
4538
 
4539
+ #: app/features/mec/notifications.php:263
4540
+ #: app/features/mec/notifications.php:323
4541
  msgid "Admin booking management link."
4542
  msgstr "Admin-link zur Buchungsverwaltung"
4543
 
4544
+ #: app/features/mec/notifications.php:272 app/libraries/main.php:576
4545
  msgid "Admin"
4546
  msgstr ""
4547
 
4548
+ #: app/features/mec/notifications.php:276
4549
  #, fuzzy
4550
  #| msgid "Enable booking notification"
4551
  msgid "Enable admin notification"
4552
  msgstr "Buchungsbenachrichtigung aktivieren"
4553
 
4554
+ #: app/features/mec/notifications.php:280
4555
  msgid "It sends to admin to notify him/her that a new booking received."
4556
  msgstr ""
4557
  "Sendet eine Benachrichtigung an den Adminstrator um diesen darüber zu "
4558
  "Informieren, dass eine neue Buchung eingegangen ist."
4559
 
4560
+ #: app/features/mec/notifications.php:332 app/libraries/main.php:575
4561
  #: app/libraries/notifications.php:478
4562
  msgid "Booking Reminder"
4563
  msgstr "Buchungs Erinnerung"
4564
 
4565
+ #: app/features/mec/notifications.php:336
4566
  msgid "Enable booking reminder notification"
4567
  msgstr "Aktivieren Sie die Erinnerung für die Buchungserinnerung"
4568
 
4569
+ #: app/features/mec/notifications.php:342
4570
  #, php-format
4571
  msgid ""
4572
  "Set a cronjob to call %s file once per day otherwise it won't send the "
4578
  "Sie diese Datei% s aufrufen sollten, sonst könnten die Erinnerungen mehrmals "
4579
  "gesendet werden."
4580
 
4581
+ #: app/features/mec/notifications.php:342
4582
  msgid "only once per day"
4583
  msgstr "nur einmal pro Tag"
4584
 
4585
+ #: app/features/mec/notifications.php:360
4586
  msgid "Days"
4587
  msgstr "Tage"
4588
 
4589
+ #: app/features/mec/notifications.php:408 app/features/mec/support-page.php:80
4590
  #: app/libraries/main.php:577
4591
  msgid "New Event"
4592
  msgstr "Neue Veranstaltung"
4593
 
4594
+ #: app/features/mec/notifications.php:412
4595
  msgid "Enable new event notification"
4596
  msgstr "Benachrichtigung bei neuen Veranstaltungen aktivieren"
4597
 
4598
+ #: app/features/mec/notifications.php:416
4599
  msgid ""
4600
  "It sends after adding a new event from frontend event submission or from "
4601
  "website backend."
4603
  "Wird nach dem Hinzufügen einer neuen Veranstaltung aus der Frontend-"
4604
  "Übermittlung oder dem Backend versandt."
4605
 
4606
+ #: app/features/mec/notifications.php:438
4607
+ #: app/features/mec/notifications.php:484
4608
  msgid "Title of event"
4609
  msgstr "Titel der Veranstaltung"
4610
 
4611
+ #: app/features/mec/notifications.php:439
4612
+ #: app/features/mec/notifications.php:485
4613
  #, fuzzy
4614
  #| msgid "Title of event"
4615
  msgid "Link of event"
4616
  msgstr "Titel der Veranstaltung"
4617
 
4618
+ #: app/features/mec/notifications.php:440
4619
+ #: app/features/mec/notifications.php:486
4620
  msgid "Status of event"
4621
  msgstr "Status der Veranstaltung"
4622
 
4623
+ #: app/features/mec/notifications.php:441
4624
+ #: app/features/mec/notifications.php:487 app/features/mec/settings.php:654
4625
  #: app/features/mec/settings.php:658
4626
  msgid "Event Note"
4627
  msgstr "Veranstaltungsnotiz"
4628
 
4629
+ #: app/features/mec/notifications.php:445
4630
+ #: app/features/mec/notifications.php:491
4631
  msgid "Admin events management link."
4632
  msgstr "Admin-link zur Veranstaltungsverwaltung"
4633
 
4634
+ #: app/features/mec/notifications.php:454 app/libraries/main.php:578
4635
  #, fuzzy
4636
  #| msgid "The event published."
4637
  msgid "User Event Publishing"
4638
  msgstr "Die Veranstaltung wurde veröffentlicht."
4639
 
4640
+ #: app/features/mec/notifications.php:458
4641
  #, fuzzy
4642
  #| msgid "Enable new event notification"
4643
  msgid "Enable user event publishing notification"
4644
  msgstr "Benachrichtigung bei neuen Veranstaltungen aktivieren"
4645
 
4646
+ #: app/features/mec/notifications.php:462
4647
  #, fuzzy
4648
  #| msgid ""
4649
  #| "It sends after adding a new event from frontend event submission or from "
4749
  msgstr ""
4750
 
4751
  #: app/features/mec/settings.php:136 app/features/mec/settings.php:146
4752
+ #: app/libraries/main.php:4909
4753
  msgid "Weekdays"
4754
  msgstr "Wochentage"
4755
 
5936
  msgid "eg. https://webnus.net"
5937
  msgstr "http://webnus.net"
5938
 
5939
+ #: app/features/organizers.php:311 app/libraries/main.php:4933
5940
  #: app/skins/single.php:845
5941
  msgid "Other Organizers"
5942
  msgstr "Andere Veranstalter"
5964
  msgid "#"
5965
  msgstr ""
5966
 
5967
+ #: app/features/profile/profile.php:56 app/libraries/main.php:2929
5968
  msgid "Status"
5969
  msgstr ""
5970
 
5971
+ #: app/features/profile/profile.php:59 app/libraries/main.php:2074
5972
  msgid "Attendees"
5973
  msgstr "Teilnehmer"
5974
 
6003
  msgid "No bookings found!"
6004
  msgstr "Keine Buchungen gefunden"
6005
 
6006
+ #: app/features/search.php:87 app/libraries/main.php:4899
6007
  msgid "label"
6008
  msgstr "label"
6009
 
6038
  msgid "All of the day"
6039
  msgstr "Den ganzen Tag"
6040
 
6041
+ #: app/features/speakers.php:110 app/features/speakers.php:179
6042
+ #: app/features/speakers.php:255
6043
  #, fuzzy
6044
  #| msgid "Title"
6045
  msgid "Job Title"
6046
  msgstr "Titel"
6047
 
6048
+ #: app/features/speakers.php:113 app/features/speakers.php:180
6049
  msgid "Insert speaker job title."
6050
  msgstr ""
6051
 
6052
+ #: app/features/speakers.php:121 app/features/speakers.php:184
6053
  #, fuzzy
6054
  #| msgid "Insert organizer phone number."
6055
  msgid "Insert speaker phone number."
6056
  msgstr "Veranstalter Telefonnummer einfügen"
6057
 
6058
+ #: app/features/speakers.php:129 app/features/speakers.php:188
6059
  #, fuzzy
6060
  #| msgid "Insert organizer email address."
6061
  msgid "Insert speaker email address."
6062
  msgstr "Veranstalter Email-Adresse einfügen"
6063
 
6064
+ #: app/features/speakers.php:134 app/features/speakers.php:191
6065
  #, fuzzy
6066
  #| msgid "Facebook Page Link"
6067
  msgid "Facebook Page"
6068
  msgstr "Facebook Seiten Link"
6069
 
6070
+ #: app/features/speakers.php:137 app/features/speakers.php:192
6071
  #, fuzzy
6072
  #| msgid "Import from Facebook Calendar"
6073
  msgid "Insert URL of Facebook Page"
6074
  msgstr "Vom Facebook Kalender Importieren"
6075
 
6076
+ #: app/features/speakers.php:142 app/features/speakers.php:195
6077
  msgid "Instagram"
6078
  msgstr ""
6079
 
6080
+ #: app/features/speakers.php:145 app/features/speakers.php:196
6081
  #, fuzzy
6082
  #| msgid "Insert -1 for unlimited usage"
6083
  msgid "Insert URL of Instagram"
6084
  msgstr "Geben Sie -1 ein für unlimitierte Verwendung"
6085
 
6086
+ #: app/features/speakers.php:150 app/features/speakers.php:199
6087
  #, fuzzy
6088
  #| msgid "Twitter"
6089
  msgid "Twitter Page"
6090
  msgstr "Twitter"
6091
 
6092
+ #: app/features/speakers.php:153 app/features/speakers.php:200
6093
  #, fuzzy
6094
  #| msgid "Insert -1 for unlimited usage"
6095
  msgid "Insert URL of Twitter Page"
6096
  msgstr "Geben Sie -1 ein für unlimitierte Verwendung"
6097
 
6098
+ #: app/features/speakers.php:315
6099
  msgid "Sorry, You must insert speaker name!"
6100
  msgstr ""
6101
 
6102
+ #: app/features/speakers.php:364
6103
+ msgid ""
6104
+ "Note: You can use the speakers in your event edit/add page > hourly schedule "
6105
+ "section and speaker widget section!"
6106
+ msgstr ""
6107
+
6108
  #: app/libraries/book.php:60
6109
  #, php-format
6110
  msgid "%s Price"
6111
  msgstr "%s Preis"
6112
 
6113
+ #: app/libraries/book.php:561
6114
  msgid "Discount"
6115
  msgstr "Rabatt"
6116
 
6117
+ #: app/libraries/book.php:651 app/modules/booking/default.php:305
6118
  #: app/modules/booking/default.php:403
6119
  msgid "Download Invoice"
6120
  msgstr "Download Rechnung"
6249
  msgid "Slider View"
6250
  msgstr "Slideransicht"
6251
 
6252
+ #: app/libraries/main.php:382 app/libraries/main.php:4911
6253
  msgid "SU"
6254
  msgstr "SO"
6255
 
6256
+ #: app/libraries/main.php:383 app/libraries/main.php:4912
6257
  msgid "MO"
6258
  msgstr "MO"
6259
 
6260
+ #: app/libraries/main.php:384 app/libraries/main.php:4913
6261
  msgid "TU"
6262
  msgstr "DI"
6263
 
6264
+ #: app/libraries/main.php:385 app/libraries/main.php:4914
6265
  msgid "WE"
6266
  msgstr "MI"
6267
 
6268
+ #: app/libraries/main.php:386 app/libraries/main.php:4915
6269
  msgid "TH"
6270
  msgstr "DO"
6271
 
6272
+ #: app/libraries/main.php:387 app/libraries/main.php:4916
6273
  msgid "FR"
6274
  msgstr "FR"
6275
 
6276
+ #: app/libraries/main.php:388 app/libraries/main.php:4917
6277
  msgid "SA"
6278
  msgstr "SA"
6279
 
6419
  msgid "Invoice is invalid."
6420
  msgstr "Buchung ist ungültig."
6421
 
6422
+ #: app/libraries/main.php:2009
6423
+ msgid ""
6424
+ "Your booking still is not confirmed. You able download it after confirmation!"
6425
+ msgstr ""
6426
+
6427
+ #: app/libraries/main.php:2009
6428
+ #, fuzzy
6429
+ #| msgid "Booking Confirmation"
6430
+ msgid "Booking Not Confirmed."
6431
+ msgstr "Buchungsbestätigung"
6432
+
6433
+ #: app/libraries/main.php:2015
6434
  msgid "Cannot find the booking!"
6435
  msgstr "Kann die Buchung nicht finden!"
6436
 
6437
+ #: app/libraries/main.php:2015
6438
  msgid "Booking is invalid."
6439
  msgstr "Buchung ist ungültig."
6440
 
6441
+ #: app/libraries/main.php:2044
6442
  #, php-format
6443
  msgid "%s Invoice"
6444
  msgstr "% s Rechnung"
6445
 
6446
+ #: app/libraries/main.php:2118
6447
  msgid "Billing"
6448
  msgstr "Abrechnung"
6449
 
6450
+ #: app/libraries/main.php:2129
6451
  msgid "Total"
6452
  msgstr "Gesamt"
6453
 
6454
+ #: app/libraries/main.php:2186
6455
  #, fuzzy
6456
  #| msgid "Request is invalid!"
6457
  msgid "Request is not valid."
6458
  msgstr "Die Anfrage ist ungültig!"
6459
 
6460
+ #: app/libraries/main.php:2186
6461
  msgid "iCal export stopped!"
6462
  msgstr "iCal Export wurde unterbrochen!"
6463
 
6464
+ #: app/libraries/main.php:2513 app/libraries/main.php:2543
6465
+ #: app/libraries/main.php:2572 app/libraries/main.php:2602
6466
+ #: app/libraries/main.php:2631 app/libraries/main.php:2660
6467
+ #: app/libraries/main.php:2689 app/libraries/main.php:2718
6468
+ #: app/libraries/main.php:2747 app/libraries/main.php:2771
6469
+ #: app/libraries/main.php:2815 app/libraries/main.php:2859
6470
+ #: app/libraries/main.php:2906 app/libraries/main.php:2953
6471
  msgid "Sort"
6472
  msgstr "Sortieren"
6473
 
6474
+ #: app/libraries/main.php:2519 app/libraries/main.php:2549
6475
+ #: app/libraries/main.php:2578 app/libraries/main.php:2608
6476
+ #: app/libraries/main.php:2637 app/libraries/main.php:2666
6477
+ #: app/libraries/main.php:2695 app/libraries/main.php:2724
6478
+ #: app/libraries/main.php:2777 app/libraries/main.php:2821
6479
+ #: app/libraries/main.php:2865 app/libraries/main.php:2912
6480
  msgid "Required Field"
6481
  msgstr "Pflichtfeld"
6482
 
6483
+ #: app/libraries/main.php:2525 app/libraries/main.php:2555
6484
+ #: app/libraries/main.php:2584 app/libraries/main.php:2614
6485
+ #: app/libraries/main.php:2643 app/libraries/main.php:2672
6486
+ #: app/libraries/main.php:2701 app/libraries/main.php:2730
6487
+ #: app/libraries/main.php:2783 app/libraries/main.php:2827
6488
+ #: app/libraries/main.php:2871 app/libraries/main.php:2918
6489
  msgid "Insert a label for this field"
6490
  msgstr "Geben Sie eine Bezeichnung (Label) für dieses Feld ein."
6491
 
6492
+ #: app/libraries/main.php:2753
6493
  msgid "HTML and shortcode are allowed."
6494
  msgstr "HTML und shortcodes sind erlaubt."
6495
 
6496
+ #: app/libraries/main.php:2796 app/libraries/main.php:2840
6497
+ #: app/libraries/main.php:2884
6498
  msgid "Option"
6499
  msgstr "Option"
6500
 
6501
+ #: app/libraries/main.php:2918
6502
  #, php-format
6503
  msgid "Instead of %s, the page title with a link will be show."
6504
  msgstr "Anstelle von %s, wird der Seitentitel mit einem Link gezeigt"
6505
 
6506
+ #: app/libraries/main.php:2920
6507
  msgid "Agreement Page"
6508
  msgstr "Zustimmungsseite"
6509
 
6510
+ #: app/libraries/main.php:2931
6511
  msgid "Checked by default"
6512
  msgstr ""
6513
 
6514
+ #: app/libraries/main.php:2932
6515
  msgid "Unchecked by default"
6516
  msgstr ""
6517
 
6518
+ #: app/libraries/main.php:2955
6519
  msgid "Insert a label for this option"
6520
  msgstr "Ein neues Label für diese Option einfügen"
6521
 
6522
+ #: app/libraries/main.php:2970
6523
  msgid "Free"
6524
  msgstr "kostenfrei"
6525
 
6526
+ #: app/libraries/main.php:3576 app/libraries/main.php:5158
6527
  #, fuzzy
6528
  #| msgid "M.E. Calendar"
6529
  msgid "M.E. Calender"
6530
  msgstr "M.E. Calender"
6531
 
6532
+ #: app/libraries/main.php:3731
6533
  #, php-format
6534
  msgid "Copy of %s"
6535
  msgstr "Kopie von %s"
6536
 
6537
+ #: app/libraries/main.php:4404
6538
  msgid "Booked an event."
6539
  msgstr "Eine Veranstaltung wurde gebucht."
6540
 
6541
+ #: app/libraries/main.php:4445
6542
  #, php-format
6543
  msgid "%s booked %s event."
6544
  msgstr "%s gebuchtes %s Event"
6545
 
6546
+ #: app/libraries/main.php:4894
6547
  msgid "Taxonomies"
6548
  msgstr "Klassifizierung "
6549
 
6550
+ #: app/libraries/main.php:4896
6551
  msgid "Category Plural Label"
6552
  msgstr "Kategorien"
6553
 
6554
+ #: app/libraries/main.php:4897
6555
  msgid "Category Singular Label"
6556
  msgstr "Kategorie"
6557
 
6558
+ #: app/libraries/main.php:4898
6559
  msgid "Label Plural Label"
6560
  msgstr "Labels"
6561
 
6562
+ #: app/libraries/main.php:4899
6563
  msgid "Label Singular Label"
6564
  msgstr "Label"
6565
 
6566
+ #: app/libraries/main.php:4900
6567
  msgid "Location Plural Label"
6568
  msgstr "Veranstaltungsorte"
6569
 
6570
+ #: app/libraries/main.php:4901
6571
  msgid "Location Singular Label"
6572
  msgstr "Veranstaltungsort"
6573
 
6574
+ #: app/libraries/main.php:4902
6575
  msgid "Organizer Plural Label"
6576
  msgstr "Veranstalter"
6577
 
6578
+ #: app/libraries/main.php:4903
6579
  msgid "Organizer Singular Label"
6580
  msgstr "Veranstalter"
6581
 
6582
+ #: app/libraries/main.php:4904
6583
  #, fuzzy
6584
  #| msgid "Label Plural Label"
6585
  msgid "Speaker Plural Label"
6586
  msgstr "Labels"
6587
 
6588
+ #: app/libraries/main.php:4905
6589
  #, fuzzy
6590
  #| msgid "Label Singular Label"
6591
  msgid "Speaker Singular Label"
6592
  msgstr "Label"
6593
 
6594
+ #: app/libraries/main.php:4911
6595
  msgid "Sunday abbreviation"
6596
  msgstr "Sonntag Abkürzung"
6597
 
6598
+ #: app/libraries/main.php:4912
6599
  msgid "Monday abbreviation"
6600
  msgstr "Montag Abkürzung"
6601
 
6602
+ #: app/libraries/main.php:4913
6603
  msgid "Tuesday abbreviation"
6604
  msgstr "Dienstag Abkürzung"
6605
 
6606
+ #: app/libraries/main.php:4914
6607
  msgid "Wednesday abbreviation"
6608
  msgstr "Mittwoch Abkürzung"
6609
 
6610
+ #: app/libraries/main.php:4915
6611
  msgid "Thursday abbreviation"
6612
  msgstr "Donnerstag Abkürzung"
6613
 
6614
+ #: app/libraries/main.php:4916
6615
  msgid "Friday abbreviation"
6616
  msgstr "Freitag Abkürzung"
6617
 
6618
+ #: app/libraries/main.php:4917
6619
  msgid "Saturday abbreviation"
6620
  msgstr "Samstag Abkürzung "
6621
 
6622
+ #: app/libraries/main.php:4921
6623
  msgid "Others"
6624
  msgstr "Andere"
6625
 
6626
+ #: app/libraries/main.php:4923
6627
  msgid "Booking Success Message"
6628
  msgstr "Buchung erfolgreich Mitteilung"
6629
 
6630
+ #: app/libraries/main.php:4923
6631
  msgid ""
6632
  "Thanks for your booking. Your tickets booked, booking verification might be "
6633
  "needed, please check your email."
6635
  "Vielen Dank für Ihre Buchung. Für die gebuchten Tickets ist ggf. eine "
6636
  "Bestätigung durch Sie erforderlich. Bitte überprüfen Sie Ihre Emails."
6637
 
6638
+ #: app/libraries/main.php:4924 app/widgets/single.php:131
6639
  msgid "Register Button"
6640
  msgstr "Register Button"
6641
 
6642
+ #: app/libraries/main.php:4924 app/skins/available_spot/tpl.php:224
6643
  #: app/skins/carousel/render.php:158 app/skins/carousel/render.php:194
6644
  #: app/skins/grid/render.php:118 app/skins/grid/render.php:164
6645
  #: app/skins/grid/render.php:207 app/skins/grid/render.php:235
6656
  msgid "REGISTER"
6657
  msgstr "ANMELDEN"
6658
 
6659
+ #: app/libraries/main.php:4925
6660
  msgid "View Detail Button"
6661
  msgstr "Ansicht Detail Button"
6662
 
6663
+ #: app/libraries/main.php:4925 app/skins/carousel/render.php:158
6664
  #: app/skins/carousel/render.php:194 app/skins/grid/render.php:118
6665
  #: app/skins/grid/render.php:164 app/skins/grid/render.php:207
6666
  #: app/skins/grid/render.php:235 app/skins/list/render.php:108
6671
  msgid "View Detail"
6672
  msgstr "Details "
6673
 
6674
+ #: app/libraries/main.php:4926
6675
  msgid "Event Detail Button"
6676
  msgstr "Event Detail Button"
6677
 
6678
+ #: app/libraries/main.php:4926 app/skins/countdown/tpl.php:244
6679
  msgid "Event Detail"
6680
  msgstr "Veranstaltungsdetails"
6681
 
6682
+ #: app/libraries/main.php:4928
6683
  msgid "More Info Link"
6684
  msgstr "Link Mehr Informationen"
6685
 
6686
+ #: app/libraries/main.php:4931
6687
  msgid "Ticket (Singular)"
6688
  msgstr "Ticket"
6689
 
6690
+ #: app/libraries/main.php:4932
6691
  msgid "Tickets (Plural)"
6692
  msgstr "Tickets"
6693
 
6694
+ #: app/libraries/main.php:5018
6695
  msgid "EventON"
6696
  msgstr "EventON"
6697
 
6698
+ #: app/libraries/main.php:5019
6699
  msgid "The Events Calendar"
6700
  msgstr "The Events Calendar"
6701
 
6702
+ #: app/libraries/main.php:5020
6703
  msgid "Events Schedule WP Plugin"
6704
  msgstr "Event Zeitplan WP-Plugin"
6705
 
6706
+ #: app/libraries/main.php:5021
6707
  msgid "Calendarize It"
6708
  msgstr ""
6709
 
6710
+ #: app/libraries/main.php:5095 app/libraries/main.php:5115
6711
  msgid "Confirmed"
6712
  msgstr "Bestätigt"
6713
 
6714
+ #: app/libraries/main.php:5096 app/libraries/main.php:5123
6715
  msgid "Rejected"
6716
  msgstr "Abgelehnt"
6717
 
6718
+ #: app/libraries/main.php:5097 app/libraries/main.php:5119
6719
  msgid "Pending"
6720
  msgstr "Ausstehend"
6721
 
6722
+ #: app/libraries/main.php:5145
6723
  msgid "Waiting"
6724
  msgstr "in Bearbeitung"
6725
 
6726
+ #: app/libraries/main.php:5350 app/libraries/render.php:382
6727
  msgid "Skin controller does not exist."
6728
  msgstr "Skin contoller existiert nicht."
6729
 
6759
  msgid "Your event is published."
6760
  msgstr "Die Veranstaltung wurde veröffentlicht."
6761
 
6762
+ #: app/libraries/notifications.php:827
6763
  msgid "to"
6764
  msgstr ""
6765
 
6766
+ #: app/libraries/notifications.php:840 app/modules/export/details.php:27
6767
  msgid "+ Add to Google Calendar"
6768
  msgstr "+ zum Google Calendar hinzufügen"
6769
 
6770
+ #: app/libraries/notifications.php:841 app/modules/export/details.php:28
6771
  msgid "+ iCal export"
6772
  msgstr "+ zu iCal exportieren"
6773
 
6774
+ #: app/libraries/notifications.php:904
6775
  msgid "Yes"
6776
  msgstr "Ja"
6777
 
6778
+ #: app/libraries/notifications.php:904
6779
  msgid "No"
6780
  msgstr "Nein"
6781
 
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: 2019-10-22 15:22+0330\n"
5
- "PO-Revision-Date: 2019-10-22 15:24+0330\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: en_US\n"
@@ -67,7 +67,7 @@ msgid "Settings"
67
  msgstr ""
68
 
69
  #: app/features/contextual.php:62 app/features/events.php:2415
70
- #: app/features/mec/booking.php:426 app/features/mec/support.php:29
71
  #: app/libraries/main.php:554
72
  msgid "Booking Form"
73
  msgstr ""
@@ -81,7 +81,7 @@ msgid ""
81
  "YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></iframe>"
82
  msgstr ""
83
 
84
- #: app/features/contextual.php:70 app/features/mec/booking.php:544
85
  #: app/features/mec/support.php:36 app/libraries/main.php:555
86
  msgid "Payment Gateways"
87
  msgstr ""
@@ -216,7 +216,7 @@ msgstr ""
216
  msgid "Booking"
217
  msgstr ""
218
 
219
- #: app/features/contextual.php:318 app/features/mec/booking.php:248
220
  #: app/libraries/main.php:551
221
  msgid "Coupons"
222
  msgstr ""
@@ -292,7 +292,7 @@ msgstr ""
292
  #: app/features/mec/meta_boxes/search_form.php:514
293
  #: app/features/mec/meta_boxes/search_form.php:575
294
  #: app/features/mec/settings.php:720 app/features/mec/single.php:204
295
- #: app/features/search.php:67 app/libraries/main.php:4886
296
  #: app/libraries/skins.php:808 app/skins/single.php:559
297
  #: app/skins/single/default.php:185 app/skins/single/default.php:397
298
  #: app/skins/single/m1.php:170 app/skins/single/m2.php:102
@@ -302,62 +302,62 @@ msgstr ""
302
 
303
  #: app/features/events.php:176 app/features/events.php:3212
304
  #: app/features/fes/form.php:737 app/features/mec.php:336
305
- #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:4885
306
  msgid "Categories"
307
  msgstr ""
308
 
309
  #: app/features/events.php:186 app/features/labels.php:71
310
  #: app/features/locations.php:69 app/features/organizers.php:69
311
- #: app/features/speakers.php:70
312
  #, php-format
313
  msgid "All %s"
314
  msgstr ""
315
 
316
  #: app/features/events.php:187 app/features/labels.php:72
317
  #: app/features/locations.php:70 app/features/organizers.php:70
318
- #: app/features/speakers.php:71
319
  #, php-format
320
  msgid "Edit %s"
321
  msgstr ""
322
 
323
  #: app/features/events.php:188 app/features/labels.php:73
324
  #: app/features/locations.php:71 app/features/organizers.php:71
325
- #: app/features/speakers.php:72
326
  #, php-format
327
  msgid "View %s"
328
  msgstr ""
329
 
330
  #: app/features/events.php:189 app/features/labels.php:74
331
  #: app/features/locations.php:72 app/features/organizers.php:72
332
- #: app/features/speakers.php:73
333
  #, php-format
334
  msgid "Update %s"
335
  msgstr ""
336
 
337
  #: app/features/events.php:190 app/features/labels.php:75
338
  #: app/features/locations.php:73 app/features/organizers.php:73
339
- #: app/features/speakers.php:74
340
  #, php-format
341
  msgid "Add New %s"
342
  msgstr ""
343
 
344
  #: app/features/events.php:191 app/features/labels.php:76
345
  #: app/features/locations.php:74 app/features/organizers.php:74
346
- #: app/features/speakers.php:75
347
  #, php-format
348
  msgid "New %s Name"
349
  msgstr ""
350
 
351
  #: app/features/events.php:192 app/features/labels.php:77
352
  #: app/features/locations.php:75 app/features/organizers.php:75
353
- #: app/features/speakers.php:76
354
  #, php-format
355
  msgid "Popular %s"
356
  msgstr ""
357
 
358
  #: app/features/events.php:193 app/features/labels.php:78
359
  #: app/features/locations.php:76 app/features/organizers.php:76
360
- #: app/features/speakers.php:77
361
  #, php-format
362
  msgid "Search %s"
363
  msgstr ""
@@ -386,7 +386,7 @@ msgstr ""
386
  #: app/features/fes.php:224 app/features/fes.php:332
387
  #: app/features/fes/form.php:669 app/features/labels.php:178
388
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
389
- #: app/features/profile/profile.php:168 app/libraries/notifications.php:880
390
  #: app/modules/booking/steps/form.php:37
391
  msgid "Name"
392
  msgstr ""
@@ -394,12 +394,12 @@ msgstr ""
394
  #: app/features/events.php:463 app/features/events.php:2408
395
  #: app/features/events.php:2484 app/features/fes.php:224
396
  #: app/features/fes.php:332 app/features/fes/form.php:665
397
- #: app/features/mec/booking.php:57 app/features/mec/booking.php:477
398
  #: app/features/organizers.php:111 app/features/organizers.php:152
399
- #: app/features/profile/profile.php:171 app/features/speakers.php:124
400
- #: app/features/speakers.php:185 app/libraries/main.php:1472
401
- #: app/libraries/main.php:1541 app/libraries/main.php:2592
402
- #: app/libraries/notifications.php:881 app/modules/booking/steps/form.php:46
403
  #: app/modules/booking/steps/form.php:84 app/skins/single.php:812
404
  #: app/skins/single.php:867 app/skins/single/default.php:227
405
  #: app/skins/single/default.php:439 app/skins/single/m1.php:107
@@ -489,10 +489,11 @@ msgstr ""
489
  #: app/features/events.php:2324 app/features/events.php:2337
490
  #: app/features/fes/form.php:631 app/features/locations.php:299
491
  #: app/features/mec/booking.php:108 app/features/mec/booking.php:158
492
- #: app/features/mec/booking.php:174 app/features/mec/booking.php:293
493
- #: app/features/mec/booking.php:322 app/features/mec/booking.php:370
494
- #: app/features/mec/booking.php:380 app/features/mec/booking.php:402
495
- #: app/features/mec/booking.php:412 app/features/mec/dashboard.php:71
 
496
  #: app/features/mec/meta_boxes/display_options.php:66
497
  #: app/features/mec/meta_boxes/display_options.php:79
498
  #: app/features/mec/meta_boxes/display_options.php:92
@@ -528,12 +529,12 @@ msgstr ""
528
  #: app/features/mec/modules.php:154 app/features/mec/modules.php:312
529
  #: app/features/mec/notifications.php:54 app/features/mec/notifications.php:111
530
  #: app/features/mec/notifications.php:163
531
- #: app/features/mec/notifications.php:222
532
- #: app/features/mec/notifications.php:290
533
- #: app/features/mec/notifications.php:353
534
- #: app/features/mec/notifications.php:364
535
- #: app/features/mec/notifications.php:426
536
- #: app/features/mec/notifications.php:472 app/features/mec/settings.php:66
537
  #: app/features/mec/settings.php:85 app/features/mec/settings.php:112
538
  #: app/features/mec/settings.php:147 app/features/mec/settings.php:168
539
  #: app/features/mec/settings.php:188 app/features/mec/settings.php:265
@@ -752,13 +753,13 @@ msgstr ""
752
  #: app/features/events.php:1153 app/features/events.php:3434
753
  #: app/features/events.php:3476 app/features/fes/form.php:707
754
  #: app/features/ix.php:2743 app/features/ix.php:2784
755
- #: app/features/mec/settings.php:576 app/libraries/main.php:4918
756
  #: app/widgets/single.php:103
757
  msgid "Event Cost"
758
  msgstr ""
759
 
760
  #: app/features/events.php:1157 app/features/fes/form.php:710
761
- #: app/libraries/main.php:4919 app/skins/single.php:582
762
  #: app/skins/single/default.php:119 app/skins/single/default.php:331
763
  #: app/skins/single/m1.php:49 app/skins/single/modern.php:199
764
  msgid "Cost"
@@ -774,8 +775,8 @@ msgstr ""
774
 
775
  #: app/features/events.php:1189 app/features/events.php:2485
776
  #: app/features/fes.php:224 app/features/fes.php:332
777
- #: app/features/mec/booking.php:478 app/features/profile/profile.php:53
778
- #: app/libraries/main.php:2048 app/libraries/main.php:2650
779
  #: app/modules/booking/steps/tickets.php:22
780
  #: app/modules/next-event/details.php:90 app/skins/single.php:637
781
  #: app/skins/single/default.php:83 app/skins/single/default.php:295
@@ -820,8 +821,8 @@ msgstr ""
820
  #: app/features/events.php:2313 app/features/events.php:3240
821
  #: app/features/events.php:3434 app/features/events.php:3476
822
  #: app/features/fes/form.php:226 app/features/ix.php:2743
823
- #: app/features/ix.php:2784 app/features/mec/booking.php:362
824
- #: app/features/mec/booking.php:394 app/features/mec/styling.php:115
825
  msgid "Title"
826
  msgstr ""
827
 
@@ -832,15 +833,15 @@ msgstr ""
832
  #: app/features/events.php:2032 app/features/events.php:2059
833
  #: app/features/events.php:2158 app/features/events.php:2194
834
  #: app/features/events.php:2301 app/features/events.php:2343
835
- #: app/features/mec/booking.php:305 app/features/mec/booking.php:334
836
- #: app/features/mec/booking.php:385 app/features/mec/booking.php:417
837
- #: app/libraries/main.php:2511 app/libraries/main.php:2541
838
- #: app/libraries/main.php:2570 app/libraries/main.php:2600
839
- #: app/libraries/main.php:2629 app/libraries/main.php:2658
840
- #: app/libraries/main.php:2687 app/libraries/main.php:2716
841
- #: app/libraries/main.php:2738 app/libraries/main.php:2769
842
- #: app/libraries/main.php:2813 app/libraries/main.php:2857
843
- #: app/libraries/main.php:2904 app/libraries/main.php:2943
844
  msgid "Remove"
845
  msgstr ""
846
 
@@ -867,8 +868,8 @@ msgstr ""
867
  #: app/features/events.php:1336 app/features/events.php:1369
868
  #: app/features/events.php:1430 app/features/fes/form.php:831
869
  #: app/features/mec.php:344 app/features/mec/modules.php:52
870
- #: app/features/mec/settings.php:624 app/features/speakers.php:60
871
- #: app/libraries/main.php:559 app/libraries/main.php:4893
872
  #: app/modules/speakers/details.php:18
873
  msgid "Speakers"
874
  msgstr ""
@@ -883,7 +884,7 @@ msgid "Event Links"
883
  msgstr ""
884
 
885
  #: app/features/events.php:1464 app/features/events.php:1470
886
- #: app/features/fes/form.php:686 app/libraries/main.php:4916
887
  msgid "Event Link"
888
  msgstr ""
889
 
@@ -904,7 +905,7 @@ msgid "URL Shortener"
904
  msgstr ""
905
 
906
  #: app/features/events.php:1480 app/features/events.php:1493
907
- #: app/features/fes/form.php:691 app/libraries/main.php:4917
908
  #: app/skins/single.php:656 app/skins/single/default.php:133
909
  #: app/skins/single/default.php:345 app/skins/single/m1.php:191
910
  #: app/skins/single/m2.php:124 app/skins/single/modern.php:132
@@ -969,7 +970,7 @@ msgid "12"
969
  msgstr ""
970
 
971
  #: app/features/events.php:1638 app/libraries/book.php:60
972
- #: app/libraries/main.php:4921 app/modules/booking/steps/tickets.php:40
973
  msgid "Tickets"
974
  msgstr ""
975
 
@@ -1001,9 +1002,9 @@ msgstr ""
1001
  #: app/features/events.php:1996 app/features/events.php:1999
1002
  #: app/features/events.php:2055 app/features/events.php:2272
1003
  #: app/features/events.php:2276 app/features/events.php:2318
1004
- #: app/features/events.php:2321 app/features/mec/booking.php:366
1005
- #: app/features/mec/booking.php:369 app/features/mec/booking.php:398
1006
- #: app/features/mec/booking.php:401
1007
  msgid "Price"
1008
  msgstr ""
1009
 
@@ -1051,36 +1052,36 @@ msgid "Fees"
1051
  msgstr ""
1052
 
1053
  #: app/features/events.php:2132 app/features/events.php:2170
1054
- #: app/features/mec/booking.php:285 app/features/mec/booking.php:314
1055
  msgid "Fee Title"
1056
  msgstr ""
1057
 
1058
  #: app/features/events.php:2138 app/features/events.php:2142
1059
  #: app/features/events.php:2175 app/features/events.php:2178
1060
- #: app/features/mec/booking.php:289 app/features/mec/booking.php:292
1061
- #: app/features/mec/booking.php:318 app/features/mec/booking.php:321
1062
  msgid "Amount"
1063
  msgstr ""
1064
 
1065
  #: app/features/events.php:2143 app/features/events.php:2179
1066
- #: app/features/mec/booking.php:293 app/features/mec/booking.php:322
1067
  msgid ""
1068
  "Fee amount, considered as fixed amount if you set the type to amount "
1069
  "otherwise considered as percentage"
1070
  msgstr ""
1071
 
1072
  #: app/features/events.php:2152 app/features/events.php:2188
1073
- #: app/features/mec/booking.php:300 app/features/mec/booking.php:329
1074
  msgid "Percent"
1075
  msgstr ""
1076
 
1077
  #: app/features/events.php:2153 app/features/events.php:2189
1078
- #: app/features/mec/booking.php:301 app/features/mec/booking.php:330
1079
  msgid "Amount (Per Ticket)"
1080
  msgstr ""
1081
 
1082
  #: app/features/events.php:2154 app/features/events.php:2190
1083
- #: app/features/mec/booking.php:302 app/features/mec/booking.php:331
1084
  msgid "Amount (Per Booking)"
1085
  msgstr ""
1086
 
@@ -1089,65 +1090,65 @@ msgid "Ticket Variations / Options"
1089
  msgstr ""
1090
 
1091
  #: app/features/events.php:2277 app/features/events.php:2322
1092
- #: app/features/mec/booking.php:370 app/features/mec/booking.php:402
1093
  msgid "Option Price"
1094
  msgstr ""
1095
 
1096
  #: app/features/events.php:2287 app/features/events.php:2291
1097
  #: app/features/events.php:2331 app/features/events.php:2334
1098
- #: app/features/mec/booking.php:376 app/features/mec/booking.php:379
1099
- #: app/features/mec/booking.php:408 app/features/mec/booking.php:411
1100
  msgid "Maximum Per Ticket"
1101
  msgstr ""
1102
 
1103
  #: app/features/events.php:2292 app/features/events.php:2335
1104
- #: app/features/mec/booking.php:380 app/features/mec/booking.php:412
1105
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
1106
  msgstr ""
1107
 
1108
- #: app/features/events.php:2481 app/features/mec/booking.php:474
1109
- #: app/libraries/main.php:2533
1110
  msgid "MEC Name"
1111
  msgstr ""
1112
 
1113
- #: app/features/events.php:2482 app/features/mec/booking.php:475
1114
- #: app/libraries/main.php:2562
1115
  msgid "MEC Email"
1116
  msgstr ""
1117
 
1118
- #: app/features/events.php:2483 app/features/mec/booking.php:476
1119
- #: app/libraries/main.php:2503
1120
  msgid "Text"
1121
  msgstr ""
1122
 
1123
- #: app/features/events.php:2486 app/features/mec/booking.php:479
1124
  #: app/features/organizers.php:103 app/features/organizers.php:148
1125
- #: app/features/speakers.php:116 app/features/speakers.php:181
1126
- #: app/features/speakers.php:254 app/libraries/main.php:2679
1127
  msgid "Tel"
1128
  msgstr ""
1129
 
1130
- #: app/features/events.php:2487 app/features/mec/booking.php:480
1131
- #: app/libraries/main.php:2621
1132
  msgid "File"
1133
  msgstr ""
1134
 
1135
- #: app/features/events.php:2488 app/features/mec/booking.php:481
1136
- #: app/libraries/main.php:2708
1137
  msgid "Textarea"
1138
  msgstr ""
1139
 
1140
- #: app/features/events.php:2489 app/features/mec/booking.php:482
1141
- #: app/libraries/main.php:2761
1142
  msgid "Checkboxes"
1143
  msgstr ""
1144
 
1145
- #: app/features/events.php:2490 app/features/mec/booking.php:483
1146
- #: app/libraries/main.php:2805
1147
  msgid "Radio Buttons"
1148
  msgstr ""
1149
 
1150
- #: app/features/events.php:2491 app/features/mec/booking.php:484
1151
  #: app/features/mec/meta_boxes/search_form.php:34
1152
  #: app/features/mec/meta_boxes/search_form.php:41
1153
  #: app/features/mec/meta_boxes/search_form.php:48
@@ -1216,17 +1217,17 @@ msgstr ""
1216
  #: app/features/mec/meta_boxes/search_form.php:599
1217
  #: app/features/mec/meta_boxes/search_form.php:606
1218
  #: app/features/mec/meta_boxes/search_form.php:613
1219
- #: app/features/mec/meta_boxes/search_form.php:620 app/libraries/main.php:2849
1220
  msgid "Dropdown"
1221
  msgstr ""
1222
 
1223
- #: app/features/events.php:2492 app/features/mec/booking.php:485
1224
- #: app/libraries/main.php:2896
1225
  msgid "Agreement"
1226
  msgstr ""
1227
 
1228
- #: app/features/events.php:2493 app/features/mec/booking.php:486
1229
- #: app/libraries/main.php:2737
1230
  msgid "Paragraph"
1231
  msgstr ""
1232
 
@@ -1265,8 +1266,8 @@ msgstr ""
1265
  #: app/features/mec/meta_boxes/search_form.php:521
1266
  #: app/features/mec/meta_boxes/search_form.php:582
1267
  #: app/features/mec/settings.php:726 app/features/mec/single.php:212
1268
- #: app/features/search.php:71 app/libraries/main.php:2042
1269
- #: app/libraries/main.php:4890 app/libraries/skins.php:834
1270
  #: app/skins/single.php:486 app/skins/single.php:907
1271
  #: app/skins/single/default.php:169 app/skins/single/default.php:381
1272
  #: app/skins/single/m1.php:155 app/skins/single/m2.php:87
@@ -1291,7 +1292,7 @@ msgstr ""
1291
  #: app/features/organizers.php:58 app/features/organizers.php:204
1292
  #: app/features/organizers.php:260 app/features/organizers.php:262
1293
  #: app/features/organizers.php:271 app/features/search.php:75
1294
- #: app/libraries/main.php:4892 app/libraries/skins.php:860
1295
  #: app/skins/single.php:795 app/skins/single/default.php:210
1296
  #: app/skins/single/default.php:422 app/skins/single/m1.php:90
1297
  #: app/skins/single/m2.php:22 app/skins/single/modern.php:31
@@ -1335,7 +1336,7 @@ msgstr ""
1335
  #: app/features/fes.php:224 app/features/fes.php:332 app/features/ix.php:2743
1336
  #: app/features/ix.php:2784 app/features/labels.php:177
1337
  #: app/features/locations.php:229 app/features/organizers.php:203
1338
- #: app/features/speakers.php:251
1339
  msgid "ID"
1340
  msgstr ""
1341
 
@@ -1385,13 +1386,13 @@ msgid "The event removed!"
1385
  msgstr ""
1386
 
1387
  #: app/features/fes.php:224 app/features/fes.php:332
1388
- #: app/features/profile/profile.php:174 app/libraries/main.php:2077
1389
- #: app/libraries/main.php:4920
1390
  msgid "Ticket"
1391
  msgstr ""
1392
 
1393
  #: app/features/fes.php:224 app/features/fes.php:332
1394
- #: app/libraries/main.php:2054
1395
  msgid "Transaction ID"
1396
  msgstr ""
1397
 
@@ -1475,7 +1476,7 @@ msgstr ""
1475
 
1476
  #: app/features/fes/form.php:763 app/features/labels.php:61
1477
  #: app/features/labels.php:221 app/features/mec.php:337
1478
- #: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:4887
1479
  #: app/skins/single.php:685 app/skins/single/default.php:148
1480
  #: app/skins/single/default.php:360 app/skins/single/m1.php:64
1481
  #: app/skins/single/modern.php:214
@@ -1791,13 +1792,13 @@ msgstr ""
1791
  #: app/features/ix/export_g_calendar.php:147
1792
  #: app/features/ix/export_g_calendar.php:164
1793
  #: app/features/mec/notifications.php:92 app/features/mec/notifications.php:144
1794
- #: app/features/mec/notifications.php:197
1795
- #: app/features/mec/notifications.php:398
1796
  msgid "Add to Google Calendar"
1797
  msgstr ""
1798
 
1799
- #: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:616
1800
- #: app/features/mec/modules.php:392 app/features/mec/notifications.php:590
1801
  #: app/features/mec/settings.php:895 app/features/mec/single.php:269
1802
  msgid "Checking ..."
1803
  msgstr ""
@@ -1841,8 +1842,8 @@ msgid "ICS Feed"
1841
  msgstr ""
1842
 
1843
  #: app/features/ix/import.php:46 app/features/mec/booking.php:91
1844
- #: app/features/mec/booking.php:251 app/features/mec/booking.php:269
1845
- #: app/features/mec/booking.php:346
1846
  #: app/features/mec/meta_boxes/display_options.php:150
1847
  #: app/features/mec/meta_boxes/display_options.php:315
1848
  #: app/features/mec/modules.php:70 app/features/mec/modules.php:211
@@ -1852,8 +1853,8 @@ msgid "%s is required to use this feature."
1852
  msgstr ""
1853
 
1854
  #: app/features/ix/import.php:46 app/features/ix/sync.php:22
1855
- #: app/features/mec/booking.php:91 app/features/mec/booking.php:251
1856
- #: app/features/mec/booking.php:269 app/features/mec/booking.php:346
1857
  #: app/features/mec/meta_boxes/display_options.php:150
1858
  #: app/features/mec/meta_boxes/display_options.php:315
1859
  #: app/features/mec/meta_boxes/display_options.php:330
@@ -2027,7 +2028,7 @@ msgstr ""
2027
 
2028
  #: app/features/ix/sync.php:32 app/features/ix/sync.php:41
2029
  #: app/features/ix/sync.php:52 app/features/ix/sync.php:63
2030
- #: app/features/mec/notifications.php:341
2031
  msgid "Important Note"
2032
  msgstr ""
2033
 
@@ -2149,7 +2150,7 @@ msgid ""
2149
  msgstr ""
2150
 
2151
  #: app/features/labels.php:79 app/features/locations.php:77
2152
- #: app/features/organizers.php:77 app/features/speakers.php:78
2153
  #, php-format
2154
  msgid "← Back to %s"
2155
  msgstr ""
@@ -2195,7 +2196,7 @@ msgid "Featured"
2195
  msgstr ""
2196
 
2197
  #: app/features/labels.php:118 app/features/labels.php:143
2198
- #: app/libraries/main.php:5133 app/skins/agenda/render.php:41
2199
  #: app/skins/available_spot/tpl.php:42 app/skins/carousel/render.php:45
2200
  #: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:32
2201
  #: app/skins/daily_view/render.php:52 app/skins/grid/render.php:50
@@ -2213,7 +2214,7 @@ msgid "You can show featured and canceled events by a different style!"
2213
  msgstr ""
2214
 
2215
  #: app/features/labels.php:180 app/features/locations.php:232
2216
- #: app/features/organizers.php:206 app/features/speakers.php:255
2217
  #: app/modules/booking/steps/tickets.php:38
2218
  msgid "Count"
2219
  msgstr ""
@@ -2230,7 +2231,7 @@ msgstr ""
2230
 
2231
  #: app/features/locations.php:59 app/features/mec.php:338
2232
  #: app/features/mec/dashboard.php:243 app/features/mec/meta_boxes/filter.php:96
2233
- #: app/libraries/main.php:4889
2234
  msgid "Locations"
2235
  msgstr ""
2236
 
@@ -2263,13 +2264,13 @@ msgstr ""
2263
 
2264
  #: app/features/locations.php:138 app/features/locations.php:180
2265
  #: app/features/organizers.php:127 app/features/organizers.php:160
2266
- #: app/features/speakers.php:156 app/features/speakers.php:201
2267
  msgid "Thumbnail"
2268
  msgstr ""
2269
 
2270
  #: app/features/locations.php:143 app/features/locations.php:183
2271
  #: app/features/organizers.php:132 app/features/organizers.php:163
2272
- #: app/features/speakers.php:161 app/features/speakers.php:204
2273
  msgid "Upload/Add image"
2274
  msgstr ""
2275
 
@@ -2277,7 +2278,7 @@ msgstr ""
2277
  #: app/features/locations.php:340 app/features/locations.php:347
2278
  #: app/features/organizers.php:133 app/features/organizers.php:164
2279
  #: app/features/organizers.php:299 app/features/organizers.php:306
2280
- #: app/features/speakers.php:162 app/features/speakers.php:205
2281
  msgid "Remove image"
2282
  msgstr ""
2283
 
@@ -2335,7 +2336,7 @@ msgstr ""
2335
  msgid "Don't show map in single event page"
2336
  msgstr ""
2337
 
2338
- #: app/features/locations.php:356 app/libraries/main.php:4923
2339
  msgid "Other Locations"
2340
  msgstr ""
2341
 
@@ -2383,7 +2384,7 @@ msgstr ""
2383
 
2384
  #: app/features/mec.php:339 app/features/mec/dashboard.php:250
2385
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2386
- #: app/libraries/main.php:4891
2387
  msgid "Organizers"
2388
  msgstr ""
2389
 
@@ -2479,19 +2480,19 @@ msgstr ""
2479
  msgid "Search..."
2480
  msgstr ""
2481
 
2482
- #: app/features/mec/booking.php:72 app/features/mec/booking.php:492
2483
- #: app/features/mec/booking.php:572 app/features/mec/booking.php:581
2484
- #: app/features/mec/booking.php:591 app/features/mec/booking.php:633
2485
- #: app/features/mec/booking.php:647 app/features/mec/messages.php:15
2486
  #: app/features/mec/messages.php:51 app/features/mec/messages.php:60
2487
  #: app/features/mec/messages.php:94 app/features/mec/messages.php:103
2488
  #: app/features/mec/modules.php:25 app/features/mec/modules.php:357
2489
  #: app/features/mec/modules.php:367 app/features/mec/modules.php:409
2490
  #: app/features/mec/modules.php:423 app/features/mec/notifications.php:14
2491
- #: app/features/mec/notifications.php:499
2492
- #: app/features/mec/notifications.php:511
2493
- #: app/features/mec/notifications.php:607
2494
- #: app/features/mec/notifications.php:621 app/features/mec/settings.php:34
2495
  #: app/features/mec/settings.php:844 app/features/mec/settings.php:854
2496
  #: app/features/mec/settings.php:912 app/features/mec/settings.php:926
2497
  #: app/features/mec/single.php:17 app/features/mec/single.php:234
@@ -2581,126 +2582,140 @@ msgid ""
2581
  "disable it."
2582
  msgstr ""
2583
 
2584
- #: app/features/mec/booking.php:169
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2585
  msgid "Enable Express Attendees Form"
2586
  msgstr ""
2587
 
2588
- #: app/features/mec/booking.php:173 app/modules/booking/steps/form.php:52
2589
  msgid "Attendees Form"
2590
  msgstr ""
2591
 
2592
- #: app/features/mec/booking.php:174
2593
  msgid ""
2594
  "Users are able to apply first attendee information for other attendees in "
2595
  "the booking form."
2596
  msgstr ""
2597
 
2598
- #: app/features/mec/booking.php:187
2599
  msgid "Enable Invoice"
2600
  msgstr ""
2601
 
2602
- #: app/features/mec/booking.php:198
2603
  msgid "Enable Booking for Ongoing Events"
2604
  msgstr ""
2605
 
2606
- #: app/features/mec/booking.php:203
2607
  msgid "Email verification"
2608
  msgstr ""
2609
 
2610
- #: app/features/mec/booking.php:209
2611
  msgid "Auto verification for free bookings"
2612
  msgstr ""
2613
 
2614
- #: app/features/mec/booking.php:218
2615
  msgid "Auto verification for paid bookings"
2616
  msgstr ""
2617
 
2618
- #: app/features/mec/booking.php:222 app/features/mec/notifications.php:151
2619
  #: app/libraries/main.php:573
2620
  msgid "Booking Confirmation"
2621
  msgstr ""
2622
 
2623
- #: app/features/mec/booking.php:228
2624
  msgid "Auto confirmation for free bookings"
2625
  msgstr ""
2626
 
2627
- #: app/features/mec/booking.php:237
2628
  msgid "Auto confirmation for paid bookings"
2629
  msgstr ""
2630
 
2631
- #: app/features/mec/booking.php:256
2632
  msgid "Enable coupons module"
2633
  msgstr ""
2634
 
2635
- #: app/features/mec/booking.php:258
2636
  msgid ""
2637
  "After enabling and saving the settings,, you should reload the page to see a "
2638
  "new menu on the Dashboard > Booking"
2639
  msgstr ""
2640
 
2641
- #: app/features/mec/booking.php:266 app/libraries/main.php:552
2642
  msgid "Taxes / Fees"
2643
  msgstr ""
2644
 
2645
- #: app/features/mec/booking.php:274
2646
  msgid "Enable taxes / fees module"
2647
  msgstr ""
2648
 
2649
- #: app/features/mec/booking.php:279
2650
  msgid "Add Fee"
2651
  msgstr ""
2652
 
2653
- #: app/features/mec/booking.php:343 app/libraries/main.php:553
2654
  msgid "Ticket Variations & Options"
2655
  msgstr ""
2656
 
2657
- #: app/features/mec/booking.php:351
2658
  msgid "Enable ticket options module"
2659
  msgstr ""
2660
 
2661
- #: app/features/mec/booking.php:356
2662
  msgid "Add Variation / Option"
2663
  msgstr ""
2664
 
2665
- #: app/features/mec/booking.php:559
2666
  msgid "Enable Organizer Payment Module"
2667
  msgstr ""
2668
 
2669
- #: app/features/mec/booking.php:563
2670
  msgid "Organizer Payment"
2671
  msgstr ""
2672
 
2673
- #: app/features/mec/booking.php:564
2674
  msgid ""
2675
  "By enabling this module, organizers are able to insert their own payment "
2676
  "credentials for enabled gateways per event and receive the payments directly!"
2677
  msgstr ""
2678
 
2679
- #: app/features/mec/booking.php:611 app/features/mec/messages.php:78
2680
- #: app/features/mec/modules.php:387 app/features/mec/notifications.php:585
2681
  #: app/features/mec/settings.php:890 app/features/mec/single.php:264
2682
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:296
2683
  msgid "Saved"
2684
  msgstr ""
2685
 
2686
- #: app/features/mec/booking.php:612 app/features/mec/messages.php:79
2687
- #: app/features/mec/modules.php:388 app/features/mec/notifications.php:586
2688
  #: app/features/mec/settings.php:891 app/features/mec/single.php:265
2689
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:297
2690
  msgid "Settings Saved!"
2691
  msgstr ""
2692
 
2693
- #: app/features/mec/booking.php:614 app/features/mec/booking.php:636
2694
  #: app/features/mec/modules.php:390 app/features/mec/modules.php:412
2695
- #: app/features/mec/notifications.php:588
2696
- #: app/features/mec/notifications.php:610 app/features/mec/settings.php:893
2697
  #: app/features/mec/settings.php:915 app/features/mec/single.php:267
2698
- #: app/features/mec/single.php:289 app/libraries/main.php:5132
2699
  msgid "Verified"
2700
  msgstr ""
2701
 
2702
- #: app/features/mec/booking.php:638 app/features/mec/modules.php:414
2703
- #: app/features/mec/notifications.php:612 app/features/mec/settings.php:917
2704
  #: app/features/mec/single.php:291
2705
  msgid "Please Refresh Page"
2706
  msgstr ""
@@ -3625,8 +3640,8 @@ msgstr ""
3625
  #: app/features/mec/meta_boxes/search_form.php:535
3626
  #: app/features/mec/meta_boxes/search_form.php:596
3627
  #: app/features/mec/settings.php:739 app/features/mec/single.php:217
3628
- #: app/features/search.php:79 app/features/speakers.php:59
3629
- #: app/features/speakers.php:252 app/libraries/main.php:4894
3630
  #: app/libraries/skins.php:886
3631
  msgid "Speaker"
3632
  msgstr ""
@@ -3885,11 +3900,11 @@ msgstr ""
3885
 
3886
  #: app/features/mec/notifications.php:45 app/features/mec/notifications.php:102
3887
  #: app/features/mec/notifications.php:154
3888
- #: app/features/mec/notifications.php:213
3889
- #: app/features/mec/notifications.php:281
3890
- #: app/features/mec/notifications.php:344
3891
- #: app/features/mec/notifications.php:417
3892
- #: app/features/mec/notifications.php:463
3893
  msgid "Email Subject"
3894
  msgstr ""
3895
 
@@ -3898,231 +3913,231 @@ msgstr ""
3898
  #: app/features/mec/notifications.php:110
3899
  #: app/features/mec/notifications.php:158
3900
  #: app/features/mec/notifications.php:162
3901
- #: app/features/mec/notifications.php:217
3902
- #: app/features/mec/notifications.php:221
3903
- #: app/features/mec/notifications.php:285
3904
- #: app/features/mec/notifications.php:289
3905
- #: app/features/mec/notifications.php:348
3906
- #: app/features/mec/notifications.php:352
3907
- #: app/features/mec/notifications.php:363
3908
- #: app/features/mec/notifications.php:421
3909
- #: app/features/mec/notifications.php:425
3910
- #: app/features/mec/notifications.php:467
3911
- #: app/features/mec/notifications.php:471
3912
- msgid "Custom Recipients"
3913
- msgstr ""
3914
-
3915
- #: app/features/mec/notifications.php:54 app/features/mec/notifications.php:111
3916
- #: app/features/mec/notifications.php:163
3917
  #: app/features/mec/notifications.php:222
 
3918
  #: app/features/mec/notifications.php:290
 
3919
  #: app/features/mec/notifications.php:353
3920
  #: app/features/mec/notifications.php:364
 
3921
  #: app/features/mec/notifications.php:426
 
3922
  #: app/features/mec/notifications.php:472
 
 
 
 
 
 
 
 
 
 
 
3923
  msgid "Insert comma separated emails for multiple recipients."
3924
  msgstr ""
3925
 
3926
- #: app/features/mec/notifications.php:61 app/features/mec/notifications.php:233
3927
- #: app/features/mec/notifications.php:297
3928
  msgid "Send the email to event organizer"
3929
  msgstr ""
3930
 
3931
  #: app/features/mec/notifications.php:64 app/features/mec/notifications.php:117
3932
  #: app/features/mec/notifications.php:169
3933
- #: app/features/mec/notifications.php:240
3934
- #: app/features/mec/notifications.php:300
3935
- #: app/features/mec/notifications.php:370
3936
- #: app/features/mec/notifications.php:432
3937
- #: app/features/mec/notifications.php:478
3938
  msgid "Email Content"
3939
  msgstr ""
3940
 
3941
  #: app/features/mec/notifications.php:67 app/features/mec/notifications.php:120
3942
  #: app/features/mec/notifications.php:172
3943
- #: app/features/mec/notifications.php:243
3944
- #: app/features/mec/notifications.php:303
3945
- #: app/features/mec/notifications.php:373
3946
- #: app/features/mec/notifications.php:435
3947
- #: app/features/mec/notifications.php:481
3948
  msgid "You can use following placeholders"
3949
  msgstr ""
3950
 
3951
  #: app/features/mec/notifications.php:69 app/features/mec/notifications.php:122
3952
  #: app/features/mec/notifications.php:174
3953
- #: app/features/mec/notifications.php:245
3954
- #: app/features/mec/notifications.php:305
3955
- #: app/features/mec/notifications.php:375
3956
- msgid "First name of attendee"
3957
- msgstr ""
3958
-
3959
- #: app/features/mec/notifications.php:70 app/features/mec/notifications.php:123
3960
- #: app/features/mec/notifications.php:175
3961
  #: app/features/mec/notifications.php:246
3962
  #: app/features/mec/notifications.php:306
3963
  #: app/features/mec/notifications.php:376
3964
- msgid "Last name of attendee"
3965
  msgstr ""
3966
 
3967
- #: app/features/mec/notifications.php:71 app/features/mec/notifications.php:124
3968
- #: app/features/mec/notifications.php:176
3969
  #: app/features/mec/notifications.php:247
3970
  #: app/features/mec/notifications.php:307
3971
  #: app/features/mec/notifications.php:377
3972
- msgid "Email of attendee"
3973
  msgstr ""
3974
 
3975
- #: app/features/mec/notifications.php:72 app/features/mec/notifications.php:125
3976
- #: app/features/mec/notifications.php:177
3977
  #: app/features/mec/notifications.php:248
3978
  #: app/features/mec/notifications.php:308
3979
  #: app/features/mec/notifications.php:378
3980
- msgid "Booked date of event"
3981
  msgstr ""
3982
 
3983
- #: app/features/mec/notifications.php:73 app/features/mec/notifications.php:126
3984
- #: app/features/mec/notifications.php:178
3985
  #: app/features/mec/notifications.php:249
3986
  #: app/features/mec/notifications.php:309
3987
  #: app/features/mec/notifications.php:379
3988
- msgid "Booked time of event"
3989
  msgstr ""
3990
 
3991
- #: app/features/mec/notifications.php:74 app/features/mec/notifications.php:127
3992
- #: app/features/mec/notifications.php:179
3993
  #: app/features/mec/notifications.php:250
3994
  #: app/features/mec/notifications.php:310
3995
  #: app/features/mec/notifications.php:380
3996
- msgid "Booking Price"
3997
  msgstr ""
3998
 
3999
- #: app/features/mec/notifications.php:75 app/features/mec/notifications.php:128
4000
- #: app/features/mec/notifications.php:180
4001
  #: app/features/mec/notifications.php:251
4002
  #: app/features/mec/notifications.php:311
4003
  #: app/features/mec/notifications.php:381
4004
- #: app/features/mec/notifications.php:441
4005
- #: app/features/mec/notifications.php:487
4006
- msgid "Your website title"
4007
  msgstr ""
4008
 
4009
- #: app/features/mec/notifications.php:76 app/features/mec/notifications.php:129
4010
- #: app/features/mec/notifications.php:181
4011
  #: app/features/mec/notifications.php:252
4012
  #: app/features/mec/notifications.php:312
4013
  #: app/features/mec/notifications.php:382
4014
  #: app/features/mec/notifications.php:442
4015
  #: app/features/mec/notifications.php:488
4016
- msgid "Your website URL"
4017
  msgstr ""
4018
 
4019
- #: app/features/mec/notifications.php:77 app/features/mec/notifications.php:130
4020
- #: app/features/mec/notifications.php:182
4021
  #: app/features/mec/notifications.php:253
4022
  #: app/features/mec/notifications.php:313
4023
  #: app/features/mec/notifications.php:383
4024
  #: app/features/mec/notifications.php:443
4025
  #: app/features/mec/notifications.php:489
4026
- msgid "Your website description"
4027
  msgstr ""
4028
 
4029
- #: app/features/mec/notifications.php:78 app/features/mec/notifications.php:131
4030
- #: app/features/mec/notifications.php:183
4031
  #: app/features/mec/notifications.php:254
4032
  #: app/features/mec/notifications.php:314
4033
  #: app/features/mec/notifications.php:384
4034
- msgid "Event title"
 
 
4035
  msgstr ""
4036
 
4037
- #: app/features/mec/notifications.php:79 app/features/mec/notifications.php:132
4038
- #: app/features/mec/notifications.php:184
4039
  #: app/features/mec/notifications.php:255
4040
  #: app/features/mec/notifications.php:315
4041
  #: app/features/mec/notifications.php:385
4042
- msgid "Event link"
4043
  msgstr ""
4044
 
4045
- #: app/features/mec/notifications.php:80 app/features/mec/notifications.php:133
4046
- #: app/features/mec/notifications.php:185
4047
  #: app/features/mec/notifications.php:256
4048
  #: app/features/mec/notifications.php:316
4049
  #: app/features/mec/notifications.php:386
4050
- msgid "Speaker name of booked event"
4051
  msgstr ""
4052
 
4053
- #: app/features/mec/notifications.php:81 app/features/mec/notifications.php:134
4054
- #: app/features/mec/notifications.php:186
4055
  #: app/features/mec/notifications.php:257
4056
  #: app/features/mec/notifications.php:317
4057
  #: app/features/mec/notifications.php:387
4058
- msgid "Organizer name of booked event"
4059
  msgstr ""
4060
 
4061
- #: app/features/mec/notifications.php:82 app/features/mec/notifications.php:135
4062
- #: app/features/mec/notifications.php:187
4063
  #: app/features/mec/notifications.php:258
4064
  #: app/features/mec/notifications.php:318
4065
  #: app/features/mec/notifications.php:388
4066
- msgid "Organizer tel of booked event"
4067
  msgstr ""
4068
 
4069
- #: app/features/mec/notifications.php:83 app/features/mec/notifications.php:136
4070
- #: app/features/mec/notifications.php:188
4071
  #: app/features/mec/notifications.php:259
4072
  #: app/features/mec/notifications.php:319
4073
  #: app/features/mec/notifications.php:389
4074
- msgid "Organizer email of booked event"
4075
  msgstr ""
4076
 
4077
- #: app/features/mec/notifications.php:84 app/features/mec/notifications.php:137
4078
- #: app/features/mec/notifications.php:189
4079
  #: app/features/mec/notifications.php:260
4080
  #: app/features/mec/notifications.php:320
4081
  #: app/features/mec/notifications.php:390
4082
- msgid "Location name of booked event"
4083
  msgstr ""
4084
 
4085
- #: app/features/mec/notifications.php:85 app/features/mec/notifications.php:138
4086
- #: app/features/mec/notifications.php:190
4087
  #: app/features/mec/notifications.php:261
4088
  #: app/features/mec/notifications.php:321
4089
  #: app/features/mec/notifications.php:391
 
 
 
 
 
 
 
 
4090
  msgid "Location address of booked event"
4091
  msgstr ""
4092
 
4093
- #: app/features/mec/notifications.php:86 app/features/mec/notifications.php:263
4094
- #: app/features/mec/notifications.php:323
4095
  msgid "Full Attendee info such as booking form data, name, email etc."
4096
  msgstr ""
4097
 
4098
  #: app/features/mec/notifications.php:87 app/features/mec/notifications.php:192
4099
- #: app/features/mec/notifications.php:393
4100
  msgid "Invoice Link"
4101
  msgstr ""
4102
 
4103
  #: app/features/mec/notifications.php:88 app/features/mec/notifications.php:140
4104
  #: app/features/mec/notifications.php:193
4105
- #: app/features/mec/notifications.php:264
4106
- #: app/features/mec/notifications.php:324
4107
- #: app/features/mec/notifications.php:394
4108
  msgid "Total Attendees"
4109
  msgstr ""
4110
 
4111
  #: app/features/mec/notifications.php:89 app/features/mec/notifications.php:141
4112
- #: app/features/mec/notifications.php:194
4113
- #: app/features/mec/notifications.php:395
4114
  msgid "Ticket name"
4115
  msgstr ""
4116
 
4117
  #: app/features/mec/notifications.php:90 app/features/mec/notifications.php:142
4118
- #: app/features/mec/notifications.php:195
4119
- #: app/features/mec/notifications.php:396
4120
  msgid "Ticket time"
4121
  msgstr ""
4122
 
4123
  #: app/features/mec/notifications.php:91 app/features/mec/notifications.php:143
4124
- #: app/features/mec/notifications.php:196
4125
- #: app/features/mec/notifications.php:397
4126
  msgid "Download ICS file"
4127
  msgstr ""
4128
 
@@ -4143,59 +4158,63 @@ msgid "It sends to attendee after confirming the booking by admin."
4143
  msgstr ""
4144
 
4145
  #: app/features/mec/notifications.php:191
4146
- #: app/features/mec/notifications.php:392
4147
  msgid "Booking cancellation link."
4148
  msgstr ""
4149
 
4150
- #: app/features/mec/notifications.php:203 app/libraries/main.php:574
 
 
 
 
4151
  msgid "Booking Cancellation"
4152
  msgstr ""
4153
 
4154
- #: app/features/mec/notifications.php:207
4155
  msgid "Enable cancellation notification"
4156
  msgstr ""
4157
 
4158
- #: app/features/mec/notifications.php:211
4159
  msgid ""
4160
  "It sends to selected recipients after booking cancellation for notifying "
4161
  "them."
4162
  msgstr ""
4163
 
4164
- #: app/features/mec/notifications.php:229
4165
  msgid "Send the email to admin"
4166
  msgstr ""
4167
 
4168
- #: app/features/mec/notifications.php:237
4169
  msgid "Send the email to booking user"
4170
  msgstr ""
4171
 
4172
- #: app/features/mec/notifications.php:262
4173
- #: app/features/mec/notifications.php:322
4174
  msgid "Admin booking management link."
4175
  msgstr ""
4176
 
4177
- #: app/features/mec/notifications.php:271 app/libraries/main.php:576
4178
  msgid "Admin"
4179
  msgstr ""
4180
 
4181
- #: app/features/mec/notifications.php:275
4182
  msgid "Enable admin notification"
4183
  msgstr ""
4184
 
4185
- #: app/features/mec/notifications.php:279
4186
  msgid "It sends to admin to notify him/her that a new booking received."
4187
  msgstr ""
4188
 
4189
- #: app/features/mec/notifications.php:331 app/libraries/main.php:575
4190
  #: app/libraries/notifications.php:478
4191
  msgid "Booking Reminder"
4192
  msgstr ""
4193
 
4194
- #: app/features/mec/notifications.php:335
4195
  msgid "Enable booking reminder notification"
4196
  msgstr ""
4197
 
4198
- #: app/features/mec/notifications.php:341
4199
  #, php-format
4200
  msgid ""
4201
  "Set a cronjob to call %s file once per day otherwise it won't send the "
@@ -4203,64 +4222,64 @@ msgid ""
4203
  "send the reminders multiple times."
4204
  msgstr ""
4205
 
4206
- #: app/features/mec/notifications.php:341
4207
  msgid "only once per day"
4208
  msgstr ""
4209
 
4210
- #: app/features/mec/notifications.php:359
4211
  msgid "Days"
4212
  msgstr ""
4213
 
4214
- #: app/features/mec/notifications.php:407 app/features/mec/support-page.php:80
4215
  #: app/libraries/main.php:577
4216
  msgid "New Event"
4217
  msgstr ""
4218
 
4219
- #: app/features/mec/notifications.php:411
4220
  msgid "Enable new event notification"
4221
  msgstr ""
4222
 
4223
- #: app/features/mec/notifications.php:415
4224
  msgid ""
4225
  "It sends after adding a new event from frontend event submission or from "
4226
  "website backend."
4227
  msgstr ""
4228
 
4229
- #: app/features/mec/notifications.php:437
4230
- #: app/features/mec/notifications.php:483
4231
- msgid "Title of event"
4232
- msgstr ""
4233
-
4234
  #: app/features/mec/notifications.php:438
4235
  #: app/features/mec/notifications.php:484
4236
- msgid "Link of event"
4237
  msgstr ""
4238
 
4239
  #: app/features/mec/notifications.php:439
4240
  #: app/features/mec/notifications.php:485
4241
- msgid "Status of event"
4242
  msgstr ""
4243
 
4244
  #: app/features/mec/notifications.php:440
4245
- #: app/features/mec/notifications.php:486 app/features/mec/settings.php:654
 
 
 
 
 
4246
  #: app/features/mec/settings.php:658
4247
  msgid "Event Note"
4248
  msgstr ""
4249
 
4250
- #: app/features/mec/notifications.php:444
4251
- #: app/features/mec/notifications.php:490
4252
  msgid "Admin events management link."
4253
  msgstr ""
4254
 
4255
- #: app/features/mec/notifications.php:453 app/libraries/main.php:578
4256
  msgid "User Event Publishing"
4257
  msgstr ""
4258
 
4259
- #: app/features/mec/notifications.php:457
4260
  msgid "Enable user event publishing notification"
4261
  msgstr ""
4262
 
4263
- #: app/features/mec/notifications.php:461
4264
  msgid ""
4265
  "It sends after published a new event from frontend event submission or from "
4266
  "website backend."
@@ -4352,7 +4371,7 @@ msgid "You can enable/disable Schema scripts"
4352
  msgstr ""
4353
 
4354
  #: app/features/mec/settings.php:136 app/features/mec/settings.php:146
4355
- #: app/libraries/main.php:4898
4356
  msgid "Weekdays"
4357
  msgstr ""
4358
 
@@ -5356,7 +5375,7 @@ msgstr ""
5356
  msgid "eg. https://webnus.net"
5357
  msgstr ""
5358
 
5359
- #: app/features/organizers.php:311 app/libraries/main.php:4922
5360
  #: app/skins/single.php:845
5361
  msgid "Other Organizers"
5362
  msgstr ""
@@ -5379,11 +5398,11 @@ msgstr ""
5379
  msgid "#"
5380
  msgstr ""
5381
 
5382
- #: app/features/profile/profile.php:56 app/libraries/main.php:2918
5383
  msgid "Status"
5384
  msgstr ""
5385
 
5386
- #: app/features/profile/profile.php:59 app/libraries/main.php:2063
5387
  msgid "Attendees"
5388
  msgstr ""
5389
 
@@ -5412,7 +5431,7 @@ msgstr ""
5412
  msgid "No bookings found!"
5413
  msgstr ""
5414
 
5415
- #: app/features/search.php:87 app/libraries/main.php:4888
5416
  msgid "label"
5417
  msgstr ""
5418
 
@@ -5445,61 +5464,67 @@ msgstr ""
5445
  msgid "All of the day"
5446
  msgstr ""
5447
 
5448
- #: app/features/speakers.php:108 app/features/speakers.php:177
5449
- #: app/features/speakers.php:253
5450
  msgid "Job Title"
5451
  msgstr ""
5452
 
5453
- #: app/features/speakers.php:111 app/features/speakers.php:178
5454
  msgid "Insert speaker job title."
5455
  msgstr ""
5456
 
5457
- #: app/features/speakers.php:119 app/features/speakers.php:182
5458
  msgid "Insert speaker phone number."
5459
  msgstr ""
5460
 
5461
- #: app/features/speakers.php:127 app/features/speakers.php:186
5462
  msgid "Insert speaker email address."
5463
  msgstr ""
5464
 
5465
- #: app/features/speakers.php:132 app/features/speakers.php:189
5466
  msgid "Facebook Page"
5467
  msgstr ""
5468
 
5469
- #: app/features/speakers.php:135 app/features/speakers.php:190
5470
  msgid "Insert URL of Facebook Page"
5471
  msgstr ""
5472
 
5473
- #: app/features/speakers.php:140 app/features/speakers.php:193
5474
  msgid "Instagram"
5475
  msgstr ""
5476
 
5477
- #: app/features/speakers.php:143 app/features/speakers.php:194
5478
  msgid "Insert URL of Instagram"
5479
  msgstr ""
5480
 
5481
- #: app/features/speakers.php:148 app/features/speakers.php:197
5482
  msgid "Twitter Page"
5483
  msgstr ""
5484
 
5485
- #: app/features/speakers.php:151 app/features/speakers.php:198
5486
  msgid "Insert URL of Twitter Page"
5487
  msgstr ""
5488
 
5489
- #: app/features/speakers.php:313
5490
  msgid "Sorry, You must insert speaker name!"
5491
  msgstr ""
5492
 
 
 
 
 
 
 
5493
  #: app/libraries/book.php:60
5494
  #, php-format
5495
  msgid "%s Price"
5496
  msgstr ""
5497
 
5498
- #: app/libraries/book.php:553
5499
  msgid "Discount"
5500
  msgstr ""
5501
 
5502
- #: app/libraries/book.php:643 app/modules/booking/default.php:305
5503
  #: app/modules/booking/default.php:403
5504
  msgid "Download Invoice"
5505
  msgstr ""
@@ -5630,31 +5655,31 @@ msgstr ""
5630
  msgid "Slider View"
5631
  msgstr ""
5632
 
5633
- #: app/libraries/main.php:382 app/libraries/main.php:4900
5634
  msgid "SU"
5635
  msgstr ""
5636
 
5637
- #: app/libraries/main.php:383 app/libraries/main.php:4901
5638
  msgid "MO"
5639
  msgstr ""
5640
 
5641
- #: app/libraries/main.php:384 app/libraries/main.php:4902
5642
  msgid "TU"
5643
  msgstr ""
5644
 
5645
- #: app/libraries/main.php:385 app/libraries/main.php:4903
5646
  msgid "WE"
5647
  msgstr ""
5648
 
5649
- #: app/libraries/main.php:386 app/libraries/main.php:4904
5650
  msgid "TH"
5651
  msgstr ""
5652
 
5653
- #: app/libraries/main.php:387 app/libraries/main.php:4905
5654
  msgid "FR"
5655
  msgstr ""
5656
 
5657
- #: app/libraries/main.php:388 app/libraries/main.php:4906
5658
  msgid "SA"
5659
  msgstr ""
5660
 
@@ -5784,206 +5809,215 @@ msgstr ""
5784
  msgid "Invoice is invalid."
5785
  msgstr ""
5786
 
5787
- #: app/libraries/main.php:2004
 
 
 
 
 
 
 
 
 
5788
  msgid "Cannot find the booking!"
5789
  msgstr ""
5790
 
5791
- #: app/libraries/main.php:2004
5792
  msgid "Booking is invalid."
5793
  msgstr ""
5794
 
5795
- #: app/libraries/main.php:2033
5796
  #, php-format
5797
  msgid "%s Invoice"
5798
  msgstr ""
5799
 
5800
- #: app/libraries/main.php:2107
5801
  msgid "Billing"
5802
  msgstr ""
5803
 
5804
- #: app/libraries/main.php:2118
5805
  msgid "Total"
5806
  msgstr ""
5807
 
5808
- #: app/libraries/main.php:2175
5809
  msgid "Request is not valid."
5810
  msgstr ""
5811
 
5812
- #: app/libraries/main.php:2175
5813
  msgid "iCal export stopped!"
5814
  msgstr ""
5815
 
5816
- #: app/libraries/main.php:2502 app/libraries/main.php:2532
5817
- #: app/libraries/main.php:2561 app/libraries/main.php:2591
5818
- #: app/libraries/main.php:2620 app/libraries/main.php:2649
5819
- #: app/libraries/main.php:2678 app/libraries/main.php:2707
5820
- #: app/libraries/main.php:2736 app/libraries/main.php:2760
5821
- #: app/libraries/main.php:2804 app/libraries/main.php:2848
5822
- #: app/libraries/main.php:2895 app/libraries/main.php:2942
5823
  msgid "Sort"
5824
  msgstr ""
5825
 
5826
- #: app/libraries/main.php:2508 app/libraries/main.php:2538
5827
- #: app/libraries/main.php:2567 app/libraries/main.php:2597
5828
- #: app/libraries/main.php:2626 app/libraries/main.php:2655
5829
- #: app/libraries/main.php:2684 app/libraries/main.php:2713
5830
- #: app/libraries/main.php:2766 app/libraries/main.php:2810
5831
- #: app/libraries/main.php:2854 app/libraries/main.php:2901
5832
  msgid "Required Field"
5833
  msgstr ""
5834
 
5835
- #: app/libraries/main.php:2514 app/libraries/main.php:2544
5836
- #: app/libraries/main.php:2573 app/libraries/main.php:2603
5837
- #: app/libraries/main.php:2632 app/libraries/main.php:2661
5838
- #: app/libraries/main.php:2690 app/libraries/main.php:2719
5839
- #: app/libraries/main.php:2772 app/libraries/main.php:2816
5840
- #: app/libraries/main.php:2860 app/libraries/main.php:2907
5841
  msgid "Insert a label for this field"
5842
  msgstr ""
5843
 
5844
- #: app/libraries/main.php:2742
5845
  msgid "HTML and shortcode are allowed."
5846
  msgstr ""
5847
 
5848
- #: app/libraries/main.php:2785 app/libraries/main.php:2829
5849
- #: app/libraries/main.php:2873
5850
  msgid "Option"
5851
  msgstr ""
5852
 
5853
- #: app/libraries/main.php:2907
5854
  #, php-format
5855
  msgid "Instead of %s, the page title with a link will be show."
5856
  msgstr ""
5857
 
5858
- #: app/libraries/main.php:2909
5859
  msgid "Agreement Page"
5860
  msgstr ""
5861
 
5862
- #: app/libraries/main.php:2920
5863
  msgid "Checked by default"
5864
  msgstr ""
5865
 
5866
- #: app/libraries/main.php:2921
5867
  msgid "Unchecked by default"
5868
  msgstr ""
5869
 
5870
- #: app/libraries/main.php:2944
5871
  msgid "Insert a label for this option"
5872
  msgstr ""
5873
 
5874
- #: app/libraries/main.php:2959
5875
  msgid "Free"
5876
  msgstr ""
5877
 
5878
- #: app/libraries/main.php:3565 app/libraries/main.php:5147
5879
  msgid "M.E. Calender"
5880
  msgstr ""
5881
 
5882
- #: app/libraries/main.php:3720
5883
  #, php-format
5884
  msgid "Copy of %s"
5885
  msgstr ""
5886
 
5887
- #: app/libraries/main.php:4393
5888
  msgid "Booked an event."
5889
  msgstr ""
5890
 
5891
- #: app/libraries/main.php:4434
5892
  #, php-format
5893
  msgid "%s booked %s event."
5894
  msgstr ""
5895
 
5896
- #: app/libraries/main.php:4883
5897
  msgid "Taxonomies"
5898
  msgstr ""
5899
 
5900
- #: app/libraries/main.php:4885
5901
  msgid "Category Plural Label"
5902
  msgstr ""
5903
 
5904
- #: app/libraries/main.php:4886
5905
  msgid "Category Singular Label"
5906
  msgstr ""
5907
 
5908
- #: app/libraries/main.php:4887
5909
  msgid "Label Plural Label"
5910
  msgstr ""
5911
 
5912
- #: app/libraries/main.php:4888
5913
  msgid "Label Singular Label"
5914
  msgstr ""
5915
 
5916
- #: app/libraries/main.php:4889
5917
  msgid "Location Plural Label"
5918
  msgstr ""
5919
 
5920
- #: app/libraries/main.php:4890
5921
  msgid "Location Singular Label"
5922
  msgstr ""
5923
 
5924
- #: app/libraries/main.php:4891
5925
  msgid "Organizer Plural Label"
5926
  msgstr ""
5927
 
5928
- #: app/libraries/main.php:4892
5929
  msgid "Organizer Singular Label"
5930
  msgstr ""
5931
 
5932
- #: app/libraries/main.php:4893
5933
  msgid "Speaker Plural Label"
5934
  msgstr ""
5935
 
5936
- #: app/libraries/main.php:4894
5937
  msgid "Speaker Singular Label"
5938
  msgstr ""
5939
 
5940
- #: app/libraries/main.php:4900
5941
  msgid "Sunday abbreviation"
5942
  msgstr ""
5943
 
5944
- #: app/libraries/main.php:4901
5945
  msgid "Monday abbreviation"
5946
  msgstr ""
5947
 
5948
- #: app/libraries/main.php:4902
5949
  msgid "Tuesday abbreviation"
5950
  msgstr ""
5951
 
5952
- #: app/libraries/main.php:4903
5953
  msgid "Wednesday abbreviation"
5954
  msgstr ""
5955
 
5956
- #: app/libraries/main.php:4904
5957
  msgid "Thursday abbreviation"
5958
  msgstr ""
5959
 
5960
- #: app/libraries/main.php:4905
5961
  msgid "Friday abbreviation"
5962
  msgstr ""
5963
 
5964
- #: app/libraries/main.php:4906
5965
  msgid "Saturday abbreviation"
5966
  msgstr ""
5967
 
5968
- #: app/libraries/main.php:4910
5969
  msgid "Others"
5970
  msgstr ""
5971
 
5972
- #: app/libraries/main.php:4912
5973
  msgid "Booking Success Message"
5974
  msgstr ""
5975
 
5976
- #: app/libraries/main.php:4912
5977
  msgid ""
5978
  "Thanks for your booking. Your tickets booked, booking verification might be "
5979
  "needed, please check your email."
5980
  msgstr ""
5981
 
5982
- #: app/libraries/main.php:4913 app/widgets/single.php:131
5983
  msgid "Register Button"
5984
  msgstr ""
5985
 
5986
- #: app/libraries/main.php:4913 app/skins/available_spot/tpl.php:224
5987
  #: app/skins/carousel/render.php:158 app/skins/carousel/render.php:194
5988
  #: app/skins/grid/render.php:118 app/skins/grid/render.php:164
5989
  #: app/skins/grid/render.php:207 app/skins/grid/render.php:235
@@ -6000,11 +6034,11 @@ msgstr ""
6000
  msgid "REGISTER"
6001
  msgstr ""
6002
 
6003
- #: app/libraries/main.php:4914
6004
  msgid "View Detail Button"
6005
  msgstr ""
6006
 
6007
- #: app/libraries/main.php:4914 app/skins/carousel/render.php:158
6008
  #: app/skins/carousel/render.php:194 app/skins/grid/render.php:118
6009
  #: app/skins/grid/render.php:164 app/skins/grid/render.php:207
6010
  #: app/skins/grid/render.php:235 app/skins/list/render.php:108
@@ -6015,59 +6049,59 @@ msgstr ""
6015
  msgid "View Detail"
6016
  msgstr ""
6017
 
6018
- #: app/libraries/main.php:4915
6019
  msgid "Event Detail Button"
6020
  msgstr ""
6021
 
6022
- #: app/libraries/main.php:4915 app/skins/countdown/tpl.php:244
6023
  msgid "Event Detail"
6024
  msgstr ""
6025
 
6026
- #: app/libraries/main.php:4917
6027
  msgid "More Info Link"
6028
  msgstr ""
6029
 
6030
- #: app/libraries/main.php:4920
6031
  msgid "Ticket (Singular)"
6032
  msgstr ""
6033
 
6034
- #: app/libraries/main.php:4921
6035
  msgid "Tickets (Plural)"
6036
  msgstr ""
6037
 
6038
- #: app/libraries/main.php:5007
6039
  msgid "EventON"
6040
  msgstr ""
6041
 
6042
- #: app/libraries/main.php:5008
6043
  msgid "The Events Calendar"
6044
  msgstr ""
6045
 
6046
- #: app/libraries/main.php:5009
6047
  msgid "Events Schedule WP Plugin"
6048
  msgstr ""
6049
 
6050
- #: app/libraries/main.php:5010
6051
  msgid "Calendarize It"
6052
  msgstr ""
6053
 
6054
- #: app/libraries/main.php:5084 app/libraries/main.php:5104
6055
  msgid "Confirmed"
6056
  msgstr ""
6057
 
6058
- #: app/libraries/main.php:5085 app/libraries/main.php:5112
6059
  msgid "Rejected"
6060
  msgstr ""
6061
 
6062
- #: app/libraries/main.php:5086 app/libraries/main.php:5108
6063
  msgid "Pending"
6064
  msgstr ""
6065
 
6066
- #: app/libraries/main.php:5134
6067
  msgid "Waiting"
6068
  msgstr ""
6069
 
6070
- #: app/libraries/main.php:5339 app/libraries/render.php:382
6071
  msgid "Skin controller does not exist."
6072
  msgstr ""
6073
 
@@ -6099,23 +6133,23 @@ msgstr ""
6099
  msgid "Your event is published."
6100
  msgstr ""
6101
 
6102
- #: app/libraries/notifications.php:821
6103
  msgid "to"
6104
  msgstr ""
6105
 
6106
- #: app/libraries/notifications.php:834 app/modules/export/details.php:27
6107
  msgid "+ Add to Google Calendar"
6108
  msgstr ""
6109
 
6110
- #: app/libraries/notifications.php:835 app/modules/export/details.php:28
6111
  msgid "+ iCal export"
6112
  msgstr ""
6113
 
6114
- #: app/libraries/notifications.php:898
6115
  msgid "Yes"
6116
  msgstr ""
6117
 
6118
- #: app/libraries/notifications.php:898
6119
  msgid "No"
6120
  msgstr ""
6121
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: modern-events-calendar\n"
4
+ "POT-Creation-Date: 2019-10-30 12:41+0330\n"
5
+ "PO-Revision-Date: 2019-10-30 12:42+0330\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: en_US\n"
67
  msgstr ""
68
 
69
  #: app/features/contextual.php:62 app/features/events.php:2415
70
+ #: app/features/mec/booking.php:439 app/features/mec/support.php:29
71
  #: app/libraries/main.php:554
72
  msgid "Booking Form"
73
  msgstr ""
81
  "YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></iframe>"
82
  msgstr ""
83
 
84
+ #: app/features/contextual.php:70 app/features/mec/booking.php:557
85
  #: app/features/mec/support.php:36 app/libraries/main.php:555
86
  msgid "Payment Gateways"
87
  msgstr ""
216
  msgid "Booking"
217
  msgstr ""
218
 
219
+ #: app/features/contextual.php:318 app/features/mec/booking.php:261
220
  #: app/libraries/main.php:551
221
  msgid "Coupons"
222
  msgstr ""
292
  #: app/features/mec/meta_boxes/search_form.php:514
293
  #: app/features/mec/meta_boxes/search_form.php:575
294
  #: app/features/mec/settings.php:720 app/features/mec/single.php:204
295
+ #: app/features/search.php:67 app/libraries/main.php:4897
296
  #: app/libraries/skins.php:808 app/skins/single.php:559
297
  #: app/skins/single/default.php:185 app/skins/single/default.php:397
298
  #: app/skins/single/m1.php:170 app/skins/single/m2.php:102
302
 
303
  #: app/features/events.php:176 app/features/events.php:3212
304
  #: app/features/fes/form.php:737 app/features/mec.php:336
305
+ #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:4896
306
  msgid "Categories"
307
  msgstr ""
308
 
309
  #: app/features/events.php:186 app/features/labels.php:71
310
  #: app/features/locations.php:69 app/features/organizers.php:69
311
+ #: app/features/speakers.php:72
312
  #, php-format
313
  msgid "All %s"
314
  msgstr ""
315
 
316
  #: app/features/events.php:187 app/features/labels.php:72
317
  #: app/features/locations.php:70 app/features/organizers.php:70
318
+ #: app/features/speakers.php:73
319
  #, php-format
320
  msgid "Edit %s"
321
  msgstr ""
322
 
323
  #: app/features/events.php:188 app/features/labels.php:73
324
  #: app/features/locations.php:71 app/features/organizers.php:71
325
+ #: app/features/speakers.php:74
326
  #, php-format
327
  msgid "View %s"
328
  msgstr ""
329
 
330
  #: app/features/events.php:189 app/features/labels.php:74
331
  #: app/features/locations.php:72 app/features/organizers.php:72
332
+ #: app/features/speakers.php:75
333
  #, php-format
334
  msgid "Update %s"
335
  msgstr ""
336
 
337
  #: app/features/events.php:190 app/features/labels.php:75
338
  #: app/features/locations.php:73 app/features/organizers.php:73
339
+ #: app/features/speakers.php:76
340
  #, php-format
341
  msgid "Add New %s"
342
  msgstr ""
343
 
344
  #: app/features/events.php:191 app/features/labels.php:76
345
  #: app/features/locations.php:74 app/features/organizers.php:74
346
+ #: app/features/speakers.php:77
347
  #, php-format
348
  msgid "New %s Name"
349
  msgstr ""
350
 
351
  #: app/features/events.php:192 app/features/labels.php:77
352
  #: app/features/locations.php:75 app/features/organizers.php:75
353
+ #: app/features/speakers.php:78
354
  #, php-format
355
  msgid "Popular %s"
356
  msgstr ""
357
 
358
  #: app/features/events.php:193 app/features/labels.php:78
359
  #: app/features/locations.php:76 app/features/organizers.php:76
360
+ #: app/features/speakers.php:79
361
  #, php-format
362
  msgid "Search %s"
363
  msgstr ""
386
  #: app/features/fes.php:224 app/features/fes.php:332
387
  #: app/features/fes/form.php:669 app/features/labels.php:178
388
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
389
+ #: app/features/profile/profile.php:168 app/libraries/notifications.php:886
390
  #: app/modules/booking/steps/form.php:37
391
  msgid "Name"
392
  msgstr ""
394
  #: app/features/events.php:463 app/features/events.php:2408
395
  #: app/features/events.php:2484 app/features/fes.php:224
396
  #: app/features/fes.php:332 app/features/fes/form.php:665
397
+ #: app/features/mec/booking.php:57 app/features/mec/booking.php:490
398
  #: app/features/organizers.php:111 app/features/organizers.php:152
399
+ #: app/features/profile/profile.php:171 app/features/speakers.php:126
400
+ #: app/features/speakers.php:187 app/libraries/main.php:1472
401
+ #: app/libraries/main.php:1541 app/libraries/main.php:2603
402
+ #: app/libraries/notifications.php:887 app/modules/booking/steps/form.php:46
403
  #: app/modules/booking/steps/form.php:84 app/skins/single.php:812
404
  #: app/skins/single.php:867 app/skins/single/default.php:227
405
  #: app/skins/single/default.php:439 app/skins/single/m1.php:107
489
  #: app/features/events.php:2324 app/features/events.php:2337
490
  #: app/features/fes/form.php:631 app/features/locations.php:299
491
  #: app/features/mec/booking.php:108 app/features/mec/booking.php:158
492
+ #: app/features/mec/booking.php:171 app/features/mec/booking.php:187
493
+ #: app/features/mec/booking.php:306 app/features/mec/booking.php:335
494
+ #: app/features/mec/booking.php:383 app/features/mec/booking.php:393
495
+ #: app/features/mec/booking.php:415 app/features/mec/booking.php:425
496
+ #: app/features/mec/dashboard.php:71
497
  #: app/features/mec/meta_boxes/display_options.php:66
498
  #: app/features/mec/meta_boxes/display_options.php:79
499
  #: app/features/mec/meta_boxes/display_options.php:92
529
  #: app/features/mec/modules.php:154 app/features/mec/modules.php:312
530
  #: app/features/mec/notifications.php:54 app/features/mec/notifications.php:111
531
  #: app/features/mec/notifications.php:163
532
+ #: app/features/mec/notifications.php:223
533
+ #: app/features/mec/notifications.php:291
534
+ #: app/features/mec/notifications.php:354
535
+ #: app/features/mec/notifications.php:365
536
+ #: app/features/mec/notifications.php:427
537
+ #: app/features/mec/notifications.php:473 app/features/mec/settings.php:66
538
  #: app/features/mec/settings.php:85 app/features/mec/settings.php:112
539
  #: app/features/mec/settings.php:147 app/features/mec/settings.php:168
540
  #: app/features/mec/settings.php:188 app/features/mec/settings.php:265
753
  #: app/features/events.php:1153 app/features/events.php:3434
754
  #: app/features/events.php:3476 app/features/fes/form.php:707
755
  #: app/features/ix.php:2743 app/features/ix.php:2784
756
+ #: app/features/mec/settings.php:576 app/libraries/main.php:4929
757
  #: app/widgets/single.php:103
758
  msgid "Event Cost"
759
  msgstr ""
760
 
761
  #: app/features/events.php:1157 app/features/fes/form.php:710
762
+ #: app/libraries/main.php:4930 app/skins/single.php:582
763
  #: app/skins/single/default.php:119 app/skins/single/default.php:331
764
  #: app/skins/single/m1.php:49 app/skins/single/modern.php:199
765
  msgid "Cost"
775
 
776
  #: app/features/events.php:1189 app/features/events.php:2485
777
  #: app/features/fes.php:224 app/features/fes.php:332
778
+ #: app/features/mec/booking.php:491 app/features/profile/profile.php:53
779
+ #: app/libraries/main.php:2059 app/libraries/main.php:2661
780
  #: app/modules/booking/steps/tickets.php:22
781
  #: app/modules/next-event/details.php:90 app/skins/single.php:637
782
  #: app/skins/single/default.php:83 app/skins/single/default.php:295
821
  #: app/features/events.php:2313 app/features/events.php:3240
822
  #: app/features/events.php:3434 app/features/events.php:3476
823
  #: app/features/fes/form.php:226 app/features/ix.php:2743
824
+ #: app/features/ix.php:2784 app/features/mec/booking.php:375
825
+ #: app/features/mec/booking.php:407 app/features/mec/styling.php:115
826
  msgid "Title"
827
  msgstr ""
828
 
833
  #: app/features/events.php:2032 app/features/events.php:2059
834
  #: app/features/events.php:2158 app/features/events.php:2194
835
  #: app/features/events.php:2301 app/features/events.php:2343
836
+ #: app/features/mec/booking.php:318 app/features/mec/booking.php:347
837
+ #: app/features/mec/booking.php:398 app/features/mec/booking.php:430
838
+ #: app/libraries/main.php:2522 app/libraries/main.php:2552
839
+ #: app/libraries/main.php:2581 app/libraries/main.php:2611
840
+ #: app/libraries/main.php:2640 app/libraries/main.php:2669
841
+ #: app/libraries/main.php:2698 app/libraries/main.php:2727
842
+ #: app/libraries/main.php:2749 app/libraries/main.php:2780
843
+ #: app/libraries/main.php:2824 app/libraries/main.php:2868
844
+ #: app/libraries/main.php:2915 app/libraries/main.php:2954
845
  msgid "Remove"
846
  msgstr ""
847
 
868
  #: app/features/events.php:1336 app/features/events.php:1369
869
  #: app/features/events.php:1430 app/features/fes/form.php:831
870
  #: app/features/mec.php:344 app/features/mec/modules.php:52
871
+ #: app/features/mec/settings.php:624 app/features/speakers.php:62
872
+ #: app/libraries/main.php:559 app/libraries/main.php:4904
873
  #: app/modules/speakers/details.php:18
874
  msgid "Speakers"
875
  msgstr ""
884
  msgstr ""
885
 
886
  #: app/features/events.php:1464 app/features/events.php:1470
887
+ #: app/features/fes/form.php:686 app/libraries/main.php:4927
888
  msgid "Event Link"
889
  msgstr ""
890
 
905
  msgstr ""
906
 
907
  #: app/features/events.php:1480 app/features/events.php:1493
908
+ #: app/features/fes/form.php:691 app/libraries/main.php:4928
909
  #: app/skins/single.php:656 app/skins/single/default.php:133
910
  #: app/skins/single/default.php:345 app/skins/single/m1.php:191
911
  #: app/skins/single/m2.php:124 app/skins/single/modern.php:132
970
  msgstr ""
971
 
972
  #: app/features/events.php:1638 app/libraries/book.php:60
973
+ #: app/libraries/main.php:4932 app/modules/booking/steps/tickets.php:40
974
  msgid "Tickets"
975
  msgstr ""
976
 
1002
  #: app/features/events.php:1996 app/features/events.php:1999
1003
  #: app/features/events.php:2055 app/features/events.php:2272
1004
  #: app/features/events.php:2276 app/features/events.php:2318
1005
+ #: app/features/events.php:2321 app/features/mec/booking.php:379
1006
+ #: app/features/mec/booking.php:382 app/features/mec/booking.php:411
1007
+ #: app/features/mec/booking.php:414
1008
  msgid "Price"
1009
  msgstr ""
1010
 
1052
  msgstr ""
1053
 
1054
  #: app/features/events.php:2132 app/features/events.php:2170
1055
+ #: app/features/mec/booking.php:298 app/features/mec/booking.php:327
1056
  msgid "Fee Title"
1057
  msgstr ""
1058
 
1059
  #: app/features/events.php:2138 app/features/events.php:2142
1060
  #: app/features/events.php:2175 app/features/events.php:2178
1061
+ #: app/features/mec/booking.php:302 app/features/mec/booking.php:305
1062
+ #: app/features/mec/booking.php:331 app/features/mec/booking.php:334
1063
  msgid "Amount"
1064
  msgstr ""
1065
 
1066
  #: app/features/events.php:2143 app/features/events.php:2179
1067
+ #: app/features/mec/booking.php:306 app/features/mec/booking.php:335
1068
  msgid ""
1069
  "Fee amount, considered as fixed amount if you set the type to amount "
1070
  "otherwise considered as percentage"
1071
  msgstr ""
1072
 
1073
  #: app/features/events.php:2152 app/features/events.php:2188
1074
+ #: app/features/mec/booking.php:313 app/features/mec/booking.php:342
1075
  msgid "Percent"
1076
  msgstr ""
1077
 
1078
  #: app/features/events.php:2153 app/features/events.php:2189
1079
+ #: app/features/mec/booking.php:314 app/features/mec/booking.php:343
1080
  msgid "Amount (Per Ticket)"
1081
  msgstr ""
1082
 
1083
  #: app/features/events.php:2154 app/features/events.php:2190
1084
+ #: app/features/mec/booking.php:315 app/features/mec/booking.php:344
1085
  msgid "Amount (Per Booking)"
1086
  msgstr ""
1087
 
1090
  msgstr ""
1091
 
1092
  #: app/features/events.php:2277 app/features/events.php:2322
1093
+ #: app/features/mec/booking.php:383 app/features/mec/booking.php:415
1094
  msgid "Option Price"
1095
  msgstr ""
1096
 
1097
  #: app/features/events.php:2287 app/features/events.php:2291
1098
  #: app/features/events.php:2331 app/features/events.php:2334
1099
+ #: app/features/mec/booking.php:389 app/features/mec/booking.php:392
1100
+ #: app/features/mec/booking.php:421 app/features/mec/booking.php:424
1101
  msgid "Maximum Per Ticket"
1102
  msgstr ""
1103
 
1104
  #: app/features/events.php:2292 app/features/events.php:2335
1105
+ #: app/features/mec/booking.php:393 app/features/mec/booking.php:425
1106
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
1107
  msgstr ""
1108
 
1109
+ #: app/features/events.php:2481 app/features/mec/booking.php:487
1110
+ #: app/libraries/main.php:2544
1111
  msgid "MEC Name"
1112
  msgstr ""
1113
 
1114
+ #: app/features/events.php:2482 app/features/mec/booking.php:488
1115
+ #: app/libraries/main.php:2573
1116
  msgid "MEC Email"
1117
  msgstr ""
1118
 
1119
+ #: app/features/events.php:2483 app/features/mec/booking.php:489
1120
+ #: app/libraries/main.php:2514
1121
  msgid "Text"
1122
  msgstr ""
1123
 
1124
+ #: app/features/events.php:2486 app/features/mec/booking.php:492
1125
  #: app/features/organizers.php:103 app/features/organizers.php:148
1126
+ #: app/features/speakers.php:118 app/features/speakers.php:183
1127
+ #: app/features/speakers.php:256 app/libraries/main.php:2690
1128
  msgid "Tel"
1129
  msgstr ""
1130
 
1131
+ #: app/features/events.php:2487 app/features/mec/booking.php:493
1132
+ #: app/libraries/main.php:2632
1133
  msgid "File"
1134
  msgstr ""
1135
 
1136
+ #: app/features/events.php:2488 app/features/mec/booking.php:494
1137
+ #: app/libraries/main.php:2719
1138
  msgid "Textarea"
1139
  msgstr ""
1140
 
1141
+ #: app/features/events.php:2489 app/features/mec/booking.php:495
1142
+ #: app/libraries/main.php:2772
1143
  msgid "Checkboxes"
1144
  msgstr ""
1145
 
1146
+ #: app/features/events.php:2490 app/features/mec/booking.php:496
1147
+ #: app/libraries/main.php:2816
1148
  msgid "Radio Buttons"
1149
  msgstr ""
1150
 
1151
+ #: app/features/events.php:2491 app/features/mec/booking.php:497
1152
  #: app/features/mec/meta_boxes/search_form.php:34
1153
  #: app/features/mec/meta_boxes/search_form.php:41
1154
  #: app/features/mec/meta_boxes/search_form.php:48
1217
  #: app/features/mec/meta_boxes/search_form.php:599
1218
  #: app/features/mec/meta_boxes/search_form.php:606
1219
  #: app/features/mec/meta_boxes/search_form.php:613
1220
+ #: app/features/mec/meta_boxes/search_form.php:620 app/libraries/main.php:2860
1221
  msgid "Dropdown"
1222
  msgstr ""
1223
 
1224
+ #: app/features/events.php:2492 app/features/mec/booking.php:498
1225
+ #: app/libraries/main.php:2907
1226
  msgid "Agreement"
1227
  msgstr ""
1228
 
1229
+ #: app/features/events.php:2493 app/features/mec/booking.php:499
1230
+ #: app/libraries/main.php:2748
1231
  msgid "Paragraph"
1232
  msgstr ""
1233
 
1266
  #: app/features/mec/meta_boxes/search_form.php:521
1267
  #: app/features/mec/meta_boxes/search_form.php:582
1268
  #: app/features/mec/settings.php:726 app/features/mec/single.php:212
1269
+ #: app/features/search.php:71 app/libraries/main.php:2053
1270
+ #: app/libraries/main.php:4901 app/libraries/skins.php:834
1271
  #: app/skins/single.php:486 app/skins/single.php:907
1272
  #: app/skins/single/default.php:169 app/skins/single/default.php:381
1273
  #: app/skins/single/m1.php:155 app/skins/single/m2.php:87
1292
  #: app/features/organizers.php:58 app/features/organizers.php:204
1293
  #: app/features/organizers.php:260 app/features/organizers.php:262
1294
  #: app/features/organizers.php:271 app/features/search.php:75
1295
+ #: app/libraries/main.php:4903 app/libraries/skins.php:860
1296
  #: app/skins/single.php:795 app/skins/single/default.php:210
1297
  #: app/skins/single/default.php:422 app/skins/single/m1.php:90
1298
  #: app/skins/single/m2.php:22 app/skins/single/modern.php:31
1336
  #: app/features/fes.php:224 app/features/fes.php:332 app/features/ix.php:2743
1337
  #: app/features/ix.php:2784 app/features/labels.php:177
1338
  #: app/features/locations.php:229 app/features/organizers.php:203
1339
+ #: app/features/speakers.php:253
1340
  msgid "ID"
1341
  msgstr ""
1342
 
1386
  msgstr ""
1387
 
1388
  #: app/features/fes.php:224 app/features/fes.php:332
1389
+ #: app/features/profile/profile.php:174 app/libraries/main.php:2088
1390
+ #: app/libraries/main.php:4931
1391
  msgid "Ticket"
1392
  msgstr ""
1393
 
1394
  #: app/features/fes.php:224 app/features/fes.php:332
1395
+ #: app/libraries/main.php:2065
1396
  msgid "Transaction ID"
1397
  msgstr ""
1398
 
1476
 
1477
  #: app/features/fes/form.php:763 app/features/labels.php:61
1478
  #: app/features/labels.php:221 app/features/mec.php:337
1479
+ #: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:4898
1480
  #: app/skins/single.php:685 app/skins/single/default.php:148
1481
  #: app/skins/single/default.php:360 app/skins/single/m1.php:64
1482
  #: app/skins/single/modern.php:214
1792
  #: app/features/ix/export_g_calendar.php:147
1793
  #: app/features/ix/export_g_calendar.php:164
1794
  #: app/features/mec/notifications.php:92 app/features/mec/notifications.php:144
1795
+ #: app/features/mec/notifications.php:198
1796
+ #: app/features/mec/notifications.php:399
1797
  msgid "Add to Google Calendar"
1798
  msgstr ""
1799
 
1800
+ #: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:629
1801
+ #: app/features/mec/modules.php:392 app/features/mec/notifications.php:591
1802
  #: app/features/mec/settings.php:895 app/features/mec/single.php:269
1803
  msgid "Checking ..."
1804
  msgstr ""
1842
  msgstr ""
1843
 
1844
  #: app/features/ix/import.php:46 app/features/mec/booking.php:91
1845
+ #: app/features/mec/booking.php:264 app/features/mec/booking.php:282
1846
+ #: app/features/mec/booking.php:359
1847
  #: app/features/mec/meta_boxes/display_options.php:150
1848
  #: app/features/mec/meta_boxes/display_options.php:315
1849
  #: app/features/mec/modules.php:70 app/features/mec/modules.php:211
1853
  msgstr ""
1854
 
1855
  #: app/features/ix/import.php:46 app/features/ix/sync.php:22
1856
+ #: app/features/mec/booking.php:91 app/features/mec/booking.php:264
1857
+ #: app/features/mec/booking.php:282 app/features/mec/booking.php:359
1858
  #: app/features/mec/meta_boxes/display_options.php:150
1859
  #: app/features/mec/meta_boxes/display_options.php:315
1860
  #: app/features/mec/meta_boxes/display_options.php:330
2028
 
2029
  #: app/features/ix/sync.php:32 app/features/ix/sync.php:41
2030
  #: app/features/ix/sync.php:52 app/features/ix/sync.php:63
2031
+ #: app/features/mec/notifications.php:342
2032
  msgid "Important Note"
2033
  msgstr ""
2034
 
2150
  msgstr ""
2151
 
2152
  #: app/features/labels.php:79 app/features/locations.php:77
2153
+ #: app/features/organizers.php:77 app/features/speakers.php:80
2154
  #, php-format
2155
  msgid "← Back to %s"
2156
  msgstr ""
2196
  msgstr ""
2197
 
2198
  #: app/features/labels.php:118 app/features/labels.php:143
2199
+ #: app/libraries/main.php:5144 app/skins/agenda/render.php:41
2200
  #: app/skins/available_spot/tpl.php:42 app/skins/carousel/render.php:45
2201
  #: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:32
2202
  #: app/skins/daily_view/render.php:52 app/skins/grid/render.php:50
2214
  msgstr ""
2215
 
2216
  #: app/features/labels.php:180 app/features/locations.php:232
2217
+ #: app/features/organizers.php:206 app/features/speakers.php:257
2218
  #: app/modules/booking/steps/tickets.php:38
2219
  msgid "Count"
2220
  msgstr ""
2231
 
2232
  #: app/features/locations.php:59 app/features/mec.php:338
2233
  #: app/features/mec/dashboard.php:243 app/features/mec/meta_boxes/filter.php:96
2234
+ #: app/libraries/main.php:4900
2235
  msgid "Locations"
2236
  msgstr ""
2237
 
2264
 
2265
  #: app/features/locations.php:138 app/features/locations.php:180
2266
  #: app/features/organizers.php:127 app/features/organizers.php:160
2267
+ #: app/features/speakers.php:158 app/features/speakers.php:203
2268
  msgid "Thumbnail"
2269
  msgstr ""
2270
 
2271
  #: app/features/locations.php:143 app/features/locations.php:183
2272
  #: app/features/organizers.php:132 app/features/organizers.php:163
2273
+ #: app/features/speakers.php:163 app/features/speakers.php:206
2274
  msgid "Upload/Add image"
2275
  msgstr ""
2276
 
2278
  #: app/features/locations.php:340 app/features/locations.php:347
2279
  #: app/features/organizers.php:133 app/features/organizers.php:164
2280
  #: app/features/organizers.php:299 app/features/organizers.php:306
2281
+ #: app/features/speakers.php:164 app/features/speakers.php:207
2282
  msgid "Remove image"
2283
  msgstr ""
2284
 
2336
  msgid "Don't show map in single event page"
2337
  msgstr ""
2338
 
2339
+ #: app/features/locations.php:356 app/libraries/main.php:4934
2340
  msgid "Other Locations"
2341
  msgstr ""
2342
 
2384
 
2385
  #: app/features/mec.php:339 app/features/mec/dashboard.php:250
2386
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2387
+ #: app/libraries/main.php:4902
2388
  msgid "Organizers"
2389
  msgstr ""
2390
 
2480
  msgid "Search..."
2481
  msgstr ""
2482
 
2483
+ #: app/features/mec/booking.php:72 app/features/mec/booking.php:505
2484
+ #: app/features/mec/booking.php:585 app/features/mec/booking.php:594
2485
+ #: app/features/mec/booking.php:604 app/features/mec/booking.php:646
2486
+ #: app/features/mec/booking.php:660 app/features/mec/messages.php:15
2487
  #: app/features/mec/messages.php:51 app/features/mec/messages.php:60
2488
  #: app/features/mec/messages.php:94 app/features/mec/messages.php:103
2489
  #: app/features/mec/modules.php:25 app/features/mec/modules.php:357
2490
  #: app/features/mec/modules.php:367 app/features/mec/modules.php:409
2491
  #: app/features/mec/modules.php:423 app/features/mec/notifications.php:14
2492
+ #: app/features/mec/notifications.php:500
2493
+ #: app/features/mec/notifications.php:512
2494
+ #: app/features/mec/notifications.php:608
2495
+ #: app/features/mec/notifications.php:622 app/features/mec/settings.php:34
2496
  #: app/features/mec/settings.php:844 app/features/mec/settings.php:854
2497
  #: app/features/mec/settings.php:912 app/features/mec/settings.php:926
2498
  #: app/features/mec/single.php:17 app/features/mec/single.php:234
2582
  "disable it."
2583
  msgstr ""
2584
 
2585
+ #: app/features/mec/booking.php:165 app/features/mec/booking.php:170
2586
+ msgid "Thank You Page Time Interval"
2587
+ msgstr ""
2588
+
2589
+ #: app/features/mec/booking.php:167
2590
+ msgid "2000 mean 2 seconds"
2591
+ msgstr ""
2592
+
2593
+ #: app/features/mec/booking.php:171
2594
+ msgid ""
2595
+ "Waiting time before redirecting to thank you page. It's in miliseconds so "
2596
+ "2000 means 2 seconds."
2597
+ msgstr ""
2598
+
2599
+ #: app/features/mec/booking.php:182
2600
  msgid "Enable Express Attendees Form"
2601
  msgstr ""
2602
 
2603
+ #: app/features/mec/booking.php:186 app/modules/booking/steps/form.php:52
2604
  msgid "Attendees Form"
2605
  msgstr ""
2606
 
2607
+ #: app/features/mec/booking.php:187
2608
  msgid ""
2609
  "Users are able to apply first attendee information for other attendees in "
2610
  "the booking form."
2611
  msgstr ""
2612
 
2613
+ #: app/features/mec/booking.php:200
2614
  msgid "Enable Invoice"
2615
  msgstr ""
2616
 
2617
+ #: app/features/mec/booking.php:211
2618
  msgid "Enable Booking for Ongoing Events"
2619
  msgstr ""
2620
 
2621
+ #: app/features/mec/booking.php:216
2622
  msgid "Email verification"
2623
  msgstr ""
2624
 
2625
+ #: app/features/mec/booking.php:222
2626
  msgid "Auto verification for free bookings"
2627
  msgstr ""
2628
 
2629
+ #: app/features/mec/booking.php:231
2630
  msgid "Auto verification for paid bookings"
2631
  msgstr ""
2632
 
2633
+ #: app/features/mec/booking.php:235 app/features/mec/notifications.php:151
2634
  #: app/libraries/main.php:573
2635
  msgid "Booking Confirmation"
2636
  msgstr ""
2637
 
2638
+ #: app/features/mec/booking.php:241
2639
  msgid "Auto confirmation for free bookings"
2640
  msgstr ""
2641
 
2642
+ #: app/features/mec/booking.php:250
2643
  msgid "Auto confirmation for paid bookings"
2644
  msgstr ""
2645
 
2646
+ #: app/features/mec/booking.php:269
2647
  msgid "Enable coupons module"
2648
  msgstr ""
2649
 
2650
+ #: app/features/mec/booking.php:271
2651
  msgid ""
2652
  "After enabling and saving the settings,, you should reload the page to see a "
2653
  "new menu on the Dashboard > Booking"
2654
  msgstr ""
2655
 
2656
+ #: app/features/mec/booking.php:279 app/libraries/main.php:552
2657
  msgid "Taxes / Fees"
2658
  msgstr ""
2659
 
2660
+ #: app/features/mec/booking.php:287
2661
  msgid "Enable taxes / fees module"
2662
  msgstr ""
2663
 
2664
+ #: app/features/mec/booking.php:292
2665
  msgid "Add Fee"
2666
  msgstr ""
2667
 
2668
+ #: app/features/mec/booking.php:356 app/libraries/main.php:553
2669
  msgid "Ticket Variations & Options"
2670
  msgstr ""
2671
 
2672
+ #: app/features/mec/booking.php:364
2673
  msgid "Enable ticket options module"
2674
  msgstr ""
2675
 
2676
+ #: app/features/mec/booking.php:369
2677
  msgid "Add Variation / Option"
2678
  msgstr ""
2679
 
2680
+ #: app/features/mec/booking.php:572
2681
  msgid "Enable Organizer Payment Module"
2682
  msgstr ""
2683
 
2684
+ #: app/features/mec/booking.php:576
2685
  msgid "Organizer Payment"
2686
  msgstr ""
2687
 
2688
+ #: app/features/mec/booking.php:577
2689
  msgid ""
2690
  "By enabling this module, organizers are able to insert their own payment "
2691
  "credentials for enabled gateways per event and receive the payments directly!"
2692
  msgstr ""
2693
 
2694
+ #: app/features/mec/booking.php:624 app/features/mec/messages.php:78
2695
+ #: app/features/mec/modules.php:387 app/features/mec/notifications.php:586
2696
  #: app/features/mec/settings.php:890 app/features/mec/single.php:264
2697
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:296
2698
  msgid "Saved"
2699
  msgstr ""
2700
 
2701
+ #: app/features/mec/booking.php:625 app/features/mec/messages.php:79
2702
+ #: app/features/mec/modules.php:388 app/features/mec/notifications.php:587
2703
  #: app/features/mec/settings.php:891 app/features/mec/single.php:265
2704
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:297
2705
  msgid "Settings Saved!"
2706
  msgstr ""
2707
 
2708
+ #: app/features/mec/booking.php:627 app/features/mec/booking.php:649
2709
  #: app/features/mec/modules.php:390 app/features/mec/modules.php:412
2710
+ #: app/features/mec/notifications.php:589
2711
+ #: app/features/mec/notifications.php:611 app/features/mec/settings.php:893
2712
  #: app/features/mec/settings.php:915 app/features/mec/single.php:267
2713
+ #: app/features/mec/single.php:289 app/libraries/main.php:5143
2714
  msgid "Verified"
2715
  msgstr ""
2716
 
2717
+ #: app/features/mec/booking.php:651 app/features/mec/modules.php:414
2718
+ #: app/features/mec/notifications.php:613 app/features/mec/settings.php:917
2719
  #: app/features/mec/single.php:291
2720
  msgid "Please Refresh Page"
2721
  msgstr ""
3640
  #: app/features/mec/meta_boxes/search_form.php:535
3641
  #: app/features/mec/meta_boxes/search_form.php:596
3642
  #: app/features/mec/settings.php:739 app/features/mec/single.php:217
3643
+ #: app/features/search.php:79 app/features/speakers.php:61
3644
+ #: app/features/speakers.php:254 app/libraries/main.php:4905
3645
  #: app/libraries/skins.php:886
3646
  msgid "Speaker"
3647
  msgstr ""
3900
 
3901
  #: app/features/mec/notifications.php:45 app/features/mec/notifications.php:102
3902
  #: app/features/mec/notifications.php:154
3903
+ #: app/features/mec/notifications.php:214
3904
+ #: app/features/mec/notifications.php:282
3905
+ #: app/features/mec/notifications.php:345
3906
+ #: app/features/mec/notifications.php:418
3907
+ #: app/features/mec/notifications.php:464
3908
  msgid "Email Subject"
3909
  msgstr ""
3910
 
3913
  #: app/features/mec/notifications.php:110
3914
  #: app/features/mec/notifications.php:158
3915
  #: app/features/mec/notifications.php:162
3916
+ #: app/features/mec/notifications.php:218
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3917
  #: app/features/mec/notifications.php:222
3918
+ #: app/features/mec/notifications.php:286
3919
  #: app/features/mec/notifications.php:290
3920
+ #: app/features/mec/notifications.php:349
3921
  #: app/features/mec/notifications.php:353
3922
  #: app/features/mec/notifications.php:364
3923
+ #: app/features/mec/notifications.php:422
3924
  #: app/features/mec/notifications.php:426
3925
+ #: app/features/mec/notifications.php:468
3926
  #: app/features/mec/notifications.php:472
3927
+ msgid "Custom Recipients"
3928
+ msgstr ""
3929
+
3930
+ #: app/features/mec/notifications.php:54 app/features/mec/notifications.php:111
3931
+ #: app/features/mec/notifications.php:163
3932
+ #: app/features/mec/notifications.php:223
3933
+ #: app/features/mec/notifications.php:291
3934
+ #: app/features/mec/notifications.php:354
3935
+ #: app/features/mec/notifications.php:365
3936
+ #: app/features/mec/notifications.php:427
3937
+ #: app/features/mec/notifications.php:473
3938
  msgid "Insert comma separated emails for multiple recipients."
3939
  msgstr ""
3940
 
3941
+ #: app/features/mec/notifications.php:61 app/features/mec/notifications.php:234
3942
+ #: app/features/mec/notifications.php:298
3943
  msgid "Send the email to event organizer"
3944
  msgstr ""
3945
 
3946
  #: app/features/mec/notifications.php:64 app/features/mec/notifications.php:117
3947
  #: app/features/mec/notifications.php:169
3948
+ #: app/features/mec/notifications.php:241
3949
+ #: app/features/mec/notifications.php:301
3950
+ #: app/features/mec/notifications.php:371
3951
+ #: app/features/mec/notifications.php:433
3952
+ #: app/features/mec/notifications.php:479
3953
  msgid "Email Content"
3954
  msgstr ""
3955
 
3956
  #: app/features/mec/notifications.php:67 app/features/mec/notifications.php:120
3957
  #: app/features/mec/notifications.php:172
3958
+ #: app/features/mec/notifications.php:244
3959
+ #: app/features/mec/notifications.php:304
3960
+ #: app/features/mec/notifications.php:374
3961
+ #: app/features/mec/notifications.php:436
3962
+ #: app/features/mec/notifications.php:482
3963
  msgid "You can use following placeholders"
3964
  msgstr ""
3965
 
3966
  #: app/features/mec/notifications.php:69 app/features/mec/notifications.php:122
3967
  #: app/features/mec/notifications.php:174
 
 
 
 
 
 
 
 
3968
  #: app/features/mec/notifications.php:246
3969
  #: app/features/mec/notifications.php:306
3970
  #: app/features/mec/notifications.php:376
3971
+ msgid "First name of attendee"
3972
  msgstr ""
3973
 
3974
+ #: app/features/mec/notifications.php:70 app/features/mec/notifications.php:123
3975
+ #: app/features/mec/notifications.php:175
3976
  #: app/features/mec/notifications.php:247
3977
  #: app/features/mec/notifications.php:307
3978
  #: app/features/mec/notifications.php:377
3979
+ msgid "Last name of attendee"
3980
  msgstr ""
3981
 
3982
+ #: app/features/mec/notifications.php:71 app/features/mec/notifications.php:124
3983
+ #: app/features/mec/notifications.php:176
3984
  #: app/features/mec/notifications.php:248
3985
  #: app/features/mec/notifications.php:308
3986
  #: app/features/mec/notifications.php:378
3987
+ msgid "Email of attendee"
3988
  msgstr ""
3989
 
3990
+ #: app/features/mec/notifications.php:72 app/features/mec/notifications.php:125
3991
+ #: app/features/mec/notifications.php:177
3992
  #: app/features/mec/notifications.php:249
3993
  #: app/features/mec/notifications.php:309
3994
  #: app/features/mec/notifications.php:379
3995
+ msgid "Booked date of event"
3996
  msgstr ""
3997
 
3998
+ #: app/features/mec/notifications.php:73 app/features/mec/notifications.php:126
3999
+ #: app/features/mec/notifications.php:178
4000
  #: app/features/mec/notifications.php:250
4001
  #: app/features/mec/notifications.php:310
4002
  #: app/features/mec/notifications.php:380
4003
+ msgid "Booked time of event"
4004
  msgstr ""
4005
 
4006
+ #: app/features/mec/notifications.php:74 app/features/mec/notifications.php:127
4007
+ #: app/features/mec/notifications.php:179
4008
  #: app/features/mec/notifications.php:251
4009
  #: app/features/mec/notifications.php:311
4010
  #: app/features/mec/notifications.php:381
4011
+ msgid "Booking Price"
 
 
4012
  msgstr ""
4013
 
4014
+ #: app/features/mec/notifications.php:75 app/features/mec/notifications.php:128
4015
+ #: app/features/mec/notifications.php:180
4016
  #: app/features/mec/notifications.php:252
4017
  #: app/features/mec/notifications.php:312
4018
  #: app/features/mec/notifications.php:382
4019
  #: app/features/mec/notifications.php:442
4020
  #: app/features/mec/notifications.php:488
4021
+ msgid "Your website title"
4022
  msgstr ""
4023
 
4024
+ #: app/features/mec/notifications.php:76 app/features/mec/notifications.php:129
4025
+ #: app/features/mec/notifications.php:181
4026
  #: app/features/mec/notifications.php:253
4027
  #: app/features/mec/notifications.php:313
4028
  #: app/features/mec/notifications.php:383
4029
  #: app/features/mec/notifications.php:443
4030
  #: app/features/mec/notifications.php:489
4031
+ msgid "Your website URL"
4032
  msgstr ""
4033
 
4034
+ #: app/features/mec/notifications.php:77 app/features/mec/notifications.php:130
4035
+ #: app/features/mec/notifications.php:182
4036
  #: app/features/mec/notifications.php:254
4037
  #: app/features/mec/notifications.php:314
4038
  #: app/features/mec/notifications.php:384
4039
+ #: app/features/mec/notifications.php:444
4040
+ #: app/features/mec/notifications.php:490
4041
+ msgid "Your website description"
4042
  msgstr ""
4043
 
4044
+ #: app/features/mec/notifications.php:78 app/features/mec/notifications.php:131
4045
+ #: app/features/mec/notifications.php:183
4046
  #: app/features/mec/notifications.php:255
4047
  #: app/features/mec/notifications.php:315
4048
  #: app/features/mec/notifications.php:385
4049
+ msgid "Event title"
4050
  msgstr ""
4051
 
4052
+ #: app/features/mec/notifications.php:79 app/features/mec/notifications.php:132
4053
+ #: app/features/mec/notifications.php:184
4054
  #: app/features/mec/notifications.php:256
4055
  #: app/features/mec/notifications.php:316
4056
  #: app/features/mec/notifications.php:386
4057
+ msgid "Event link"
4058
  msgstr ""
4059
 
4060
+ #: app/features/mec/notifications.php:80 app/features/mec/notifications.php:133
4061
+ #: app/features/mec/notifications.php:185
4062
  #: app/features/mec/notifications.php:257
4063
  #: app/features/mec/notifications.php:317
4064
  #: app/features/mec/notifications.php:387
4065
+ msgid "Speaker name of booked event"
4066
  msgstr ""
4067
 
4068
+ #: app/features/mec/notifications.php:81 app/features/mec/notifications.php:134
4069
+ #: app/features/mec/notifications.php:186
4070
  #: app/features/mec/notifications.php:258
4071
  #: app/features/mec/notifications.php:318
4072
  #: app/features/mec/notifications.php:388
4073
+ msgid "Organizer name of booked event"
4074
  msgstr ""
4075
 
4076
+ #: app/features/mec/notifications.php:82 app/features/mec/notifications.php:135
4077
+ #: app/features/mec/notifications.php:187
4078
  #: app/features/mec/notifications.php:259
4079
  #: app/features/mec/notifications.php:319
4080
  #: app/features/mec/notifications.php:389
4081
+ msgid "Organizer tel of booked event"
4082
  msgstr ""
4083
 
4084
+ #: app/features/mec/notifications.php:83 app/features/mec/notifications.php:136
4085
+ #: app/features/mec/notifications.php:188
4086
  #: app/features/mec/notifications.php:260
4087
  #: app/features/mec/notifications.php:320
4088
  #: app/features/mec/notifications.php:390
4089
+ msgid "Organizer email of booked event"
4090
  msgstr ""
4091
 
4092
+ #: app/features/mec/notifications.php:84 app/features/mec/notifications.php:137
4093
+ #: app/features/mec/notifications.php:189
4094
  #: app/features/mec/notifications.php:261
4095
  #: app/features/mec/notifications.php:321
4096
  #: app/features/mec/notifications.php:391
4097
+ msgid "Location name of booked event"
4098
+ msgstr ""
4099
+
4100
+ #: app/features/mec/notifications.php:85 app/features/mec/notifications.php:138
4101
+ #: app/features/mec/notifications.php:190
4102
+ #: app/features/mec/notifications.php:262
4103
+ #: app/features/mec/notifications.php:322
4104
+ #: app/features/mec/notifications.php:392
4105
  msgid "Location address of booked event"
4106
  msgstr ""
4107
 
4108
+ #: app/features/mec/notifications.php:86 app/features/mec/notifications.php:264
4109
+ #: app/features/mec/notifications.php:324
4110
  msgid "Full Attendee info such as booking form data, name, email etc."
4111
  msgstr ""
4112
 
4113
  #: app/features/mec/notifications.php:87 app/features/mec/notifications.php:192
4114
+ #: app/features/mec/notifications.php:394
4115
  msgid "Invoice Link"
4116
  msgstr ""
4117
 
4118
  #: app/features/mec/notifications.php:88 app/features/mec/notifications.php:140
4119
  #: app/features/mec/notifications.php:193
4120
+ #: app/features/mec/notifications.php:265
4121
+ #: app/features/mec/notifications.php:325
4122
+ #: app/features/mec/notifications.php:395
4123
  msgid "Total Attendees"
4124
  msgstr ""
4125
 
4126
  #: app/features/mec/notifications.php:89 app/features/mec/notifications.php:141
4127
+ #: app/features/mec/notifications.php:195
4128
+ #: app/features/mec/notifications.php:396
4129
  msgid "Ticket name"
4130
  msgstr ""
4131
 
4132
  #: app/features/mec/notifications.php:90 app/features/mec/notifications.php:142
4133
+ #: app/features/mec/notifications.php:196
4134
+ #: app/features/mec/notifications.php:397
4135
  msgid "Ticket time"
4136
  msgstr ""
4137
 
4138
  #: app/features/mec/notifications.php:91 app/features/mec/notifications.php:143
4139
+ #: app/features/mec/notifications.php:197
4140
+ #: app/features/mec/notifications.php:398
4141
  msgid "Download ICS file"
4142
  msgstr ""
4143
 
4158
  msgstr ""
4159
 
4160
  #: app/features/mec/notifications.php:191
4161
+ #: app/features/mec/notifications.php:393
4162
  msgid "Booking cancellation link."
4163
  msgstr ""
4164
 
4165
+ #: app/features/mec/notifications.php:194
4166
+ msgid "Amount Tickets"
4167
+ msgstr ""
4168
+
4169
+ #: app/features/mec/notifications.php:204 app/libraries/main.php:574
4170
  msgid "Booking Cancellation"
4171
  msgstr ""
4172
 
4173
+ #: app/features/mec/notifications.php:208
4174
  msgid "Enable cancellation notification"
4175
  msgstr ""
4176
 
4177
+ #: app/features/mec/notifications.php:212
4178
  msgid ""
4179
  "It sends to selected recipients after booking cancellation for notifying "
4180
  "them."
4181
  msgstr ""
4182
 
4183
+ #: app/features/mec/notifications.php:230
4184
  msgid "Send the email to admin"
4185
  msgstr ""
4186
 
4187
+ #: app/features/mec/notifications.php:238
4188
  msgid "Send the email to booking user"
4189
  msgstr ""
4190
 
4191
+ #: app/features/mec/notifications.php:263
4192
+ #: app/features/mec/notifications.php:323
4193
  msgid "Admin booking management link."
4194
  msgstr ""
4195
 
4196
+ #: app/features/mec/notifications.php:272 app/libraries/main.php:576
4197
  msgid "Admin"
4198
  msgstr ""
4199
 
4200
+ #: app/features/mec/notifications.php:276
4201
  msgid "Enable admin notification"
4202
  msgstr ""
4203
 
4204
+ #: app/features/mec/notifications.php:280
4205
  msgid "It sends to admin to notify him/her that a new booking received."
4206
  msgstr ""
4207
 
4208
+ #: app/features/mec/notifications.php:332 app/libraries/main.php:575
4209
  #: app/libraries/notifications.php:478
4210
  msgid "Booking Reminder"
4211
  msgstr ""
4212
 
4213
+ #: app/features/mec/notifications.php:336
4214
  msgid "Enable booking reminder notification"
4215
  msgstr ""
4216
 
4217
+ #: app/features/mec/notifications.php:342
4218
  #, php-format
4219
  msgid ""
4220
  "Set a cronjob to call %s file once per day otherwise it won't send the "
4222
  "send the reminders multiple times."
4223
  msgstr ""
4224
 
4225
+ #: app/features/mec/notifications.php:342
4226
  msgid "only once per day"
4227
  msgstr ""
4228
 
4229
+ #: app/features/mec/notifications.php:360
4230
  msgid "Days"
4231
  msgstr ""
4232
 
4233
+ #: app/features/mec/notifications.php:408 app/features/mec/support-page.php:80
4234
  #: app/libraries/main.php:577
4235
  msgid "New Event"
4236
  msgstr ""
4237
 
4238
+ #: app/features/mec/notifications.php:412
4239
  msgid "Enable new event notification"
4240
  msgstr ""
4241
 
4242
+ #: app/features/mec/notifications.php:416
4243
  msgid ""
4244
  "It sends after adding a new event from frontend event submission or from "
4245
  "website backend."
4246
  msgstr ""
4247
 
 
 
 
 
 
4248
  #: app/features/mec/notifications.php:438
4249
  #: app/features/mec/notifications.php:484
4250
+ msgid "Title of event"
4251
  msgstr ""
4252
 
4253
  #: app/features/mec/notifications.php:439
4254
  #: app/features/mec/notifications.php:485
4255
+ msgid "Link of event"
4256
  msgstr ""
4257
 
4258
  #: app/features/mec/notifications.php:440
4259
+ #: app/features/mec/notifications.php:486
4260
+ msgid "Status of event"
4261
+ msgstr ""
4262
+
4263
+ #: app/features/mec/notifications.php:441
4264
+ #: app/features/mec/notifications.php:487 app/features/mec/settings.php:654
4265
  #: app/features/mec/settings.php:658
4266
  msgid "Event Note"
4267
  msgstr ""
4268
 
4269
+ #: app/features/mec/notifications.php:445
4270
+ #: app/features/mec/notifications.php:491
4271
  msgid "Admin events management link."
4272
  msgstr ""
4273
 
4274
+ #: app/features/mec/notifications.php:454 app/libraries/main.php:578
4275
  msgid "User Event Publishing"
4276
  msgstr ""
4277
 
4278
+ #: app/features/mec/notifications.php:458
4279
  msgid "Enable user event publishing notification"
4280
  msgstr ""
4281
 
4282
+ #: app/features/mec/notifications.php:462
4283
  msgid ""
4284
  "It sends after published a new event from frontend event submission or from "
4285
  "website backend."
4371
  msgstr ""
4372
 
4373
  #: app/features/mec/settings.php:136 app/features/mec/settings.php:146
4374
+ #: app/libraries/main.php:4909
4375
  msgid "Weekdays"
4376
  msgstr ""
4377
 
5375
  msgid "eg. https://webnus.net"
5376
  msgstr ""
5377
 
5378
+ #: app/features/organizers.php:311 app/libraries/main.php:4933
5379
  #: app/skins/single.php:845
5380
  msgid "Other Organizers"
5381
  msgstr ""
5398
  msgid "#"
5399
  msgstr ""
5400
 
5401
+ #: app/features/profile/profile.php:56 app/libraries/main.php:2929
5402
  msgid "Status"
5403
  msgstr ""
5404
 
5405
+ #: app/features/profile/profile.php:59 app/libraries/main.php:2074
5406
  msgid "Attendees"
5407
  msgstr ""
5408
 
5431
  msgid "No bookings found!"
5432
  msgstr ""
5433
 
5434
+ #: app/features/search.php:87 app/libraries/main.php:4899
5435
  msgid "label"
5436
  msgstr ""
5437
 
5464
  msgid "All of the day"
5465
  msgstr ""
5466
 
5467
+ #: app/features/speakers.php:110 app/features/speakers.php:179
5468
+ #: app/features/speakers.php:255
5469
  msgid "Job Title"
5470
  msgstr ""
5471
 
5472
+ #: app/features/speakers.php:113 app/features/speakers.php:180
5473
  msgid "Insert speaker job title."
5474
  msgstr ""
5475
 
5476
+ #: app/features/speakers.php:121 app/features/speakers.php:184
5477
  msgid "Insert speaker phone number."
5478
  msgstr ""
5479
 
5480
+ #: app/features/speakers.php:129 app/features/speakers.php:188
5481
  msgid "Insert speaker email address."
5482
  msgstr ""
5483
 
5484
+ #: app/features/speakers.php:134 app/features/speakers.php:191
5485
  msgid "Facebook Page"
5486
  msgstr ""
5487
 
5488
+ #: app/features/speakers.php:137 app/features/speakers.php:192
5489
  msgid "Insert URL of Facebook Page"
5490
  msgstr ""
5491
 
5492
+ #: app/features/speakers.php:142 app/features/speakers.php:195
5493
  msgid "Instagram"
5494
  msgstr ""
5495
 
5496
+ #: app/features/speakers.php:145 app/features/speakers.php:196
5497
  msgid "Insert URL of Instagram"
5498
  msgstr ""
5499
 
5500
+ #: app/features/speakers.php:150 app/features/speakers.php:199
5501
  msgid "Twitter Page"
5502
  msgstr ""
5503
 
5504
+ #: app/features/speakers.php:153 app/features/speakers.php:200
5505
  msgid "Insert URL of Twitter Page"
5506
  msgstr ""
5507
 
5508
+ #: app/features/speakers.php:315
5509
  msgid "Sorry, You must insert speaker name!"
5510
  msgstr ""
5511
 
5512
+ #: app/features/speakers.php:364
5513
+ msgid ""
5514
+ "Note: You can use the speakers in your event edit/add page > hourly schedule "
5515
+ "section and speaker widget section!"
5516
+ msgstr ""
5517
+
5518
  #: app/libraries/book.php:60
5519
  #, php-format
5520
  msgid "%s Price"
5521
  msgstr ""
5522
 
5523
+ #: app/libraries/book.php:561
5524
  msgid "Discount"
5525
  msgstr ""
5526
 
5527
+ #: app/libraries/book.php:651 app/modules/booking/default.php:305
5528
  #: app/modules/booking/default.php:403
5529
  msgid "Download Invoice"
5530
  msgstr ""
5655
  msgid "Slider View"
5656
  msgstr ""
5657
 
5658
+ #: app/libraries/main.php:382 app/libraries/main.php:4911
5659
  msgid "SU"
5660
  msgstr ""
5661
 
5662
+ #: app/libraries/main.php:383 app/libraries/main.php:4912
5663
  msgid "MO"
5664
  msgstr ""
5665
 
5666
+ #: app/libraries/main.php:384 app/libraries/main.php:4913
5667
  msgid "TU"
5668
  msgstr ""
5669
 
5670
+ #: app/libraries/main.php:385 app/libraries/main.php:4914
5671
  msgid "WE"
5672
  msgstr ""
5673
 
5674
+ #: app/libraries/main.php:386 app/libraries/main.php:4915
5675
  msgid "TH"
5676
  msgstr ""
5677
 
5678
+ #: app/libraries/main.php:387 app/libraries/main.php:4916
5679
  msgid "FR"
5680
  msgstr ""
5681
 
5682
+ #: app/libraries/main.php:388 app/libraries/main.php:4917
5683
  msgid "SA"
5684
  msgstr ""
5685
 
5809
  msgid "Invoice is invalid."
5810
  msgstr ""
5811
 
5812
+ #: app/libraries/main.php:2009
5813
+ msgid ""
5814
+ "Your booking still is not confirmed. You able download it after confirmation!"
5815
+ msgstr ""
5816
+
5817
+ #: app/libraries/main.php:2009
5818
+ msgid "Booking Not Confirmed."
5819
+ msgstr ""
5820
+
5821
+ #: app/libraries/main.php:2015
5822
  msgid "Cannot find the booking!"
5823
  msgstr ""
5824
 
5825
+ #: app/libraries/main.php:2015
5826
  msgid "Booking is invalid."
5827
  msgstr ""
5828
 
5829
+ #: app/libraries/main.php:2044
5830
  #, php-format
5831
  msgid "%s Invoice"
5832
  msgstr ""
5833
 
5834
+ #: app/libraries/main.php:2118
5835
  msgid "Billing"
5836
  msgstr ""
5837
 
5838
+ #: app/libraries/main.php:2129
5839
  msgid "Total"
5840
  msgstr ""
5841
 
5842
+ #: app/libraries/main.php:2186
5843
  msgid "Request is not valid."
5844
  msgstr ""
5845
 
5846
+ #: app/libraries/main.php:2186
5847
  msgid "iCal export stopped!"
5848
  msgstr ""
5849
 
5850
+ #: app/libraries/main.php:2513 app/libraries/main.php:2543
5851
+ #: app/libraries/main.php:2572 app/libraries/main.php:2602
5852
+ #: app/libraries/main.php:2631 app/libraries/main.php:2660
5853
+ #: app/libraries/main.php:2689 app/libraries/main.php:2718
5854
+ #: app/libraries/main.php:2747 app/libraries/main.php:2771
5855
+ #: app/libraries/main.php:2815 app/libraries/main.php:2859
5856
+ #: app/libraries/main.php:2906 app/libraries/main.php:2953
5857
  msgid "Sort"
5858
  msgstr ""
5859
 
5860
+ #: app/libraries/main.php:2519 app/libraries/main.php:2549
5861
+ #: app/libraries/main.php:2578 app/libraries/main.php:2608
5862
+ #: app/libraries/main.php:2637 app/libraries/main.php:2666
5863
+ #: app/libraries/main.php:2695 app/libraries/main.php:2724
5864
+ #: app/libraries/main.php:2777 app/libraries/main.php:2821
5865
+ #: app/libraries/main.php:2865 app/libraries/main.php:2912
5866
  msgid "Required Field"
5867
  msgstr ""
5868
 
5869
+ #: app/libraries/main.php:2525 app/libraries/main.php:2555
5870
+ #: app/libraries/main.php:2584 app/libraries/main.php:2614
5871
+ #: app/libraries/main.php:2643 app/libraries/main.php:2672
5872
+ #: app/libraries/main.php:2701 app/libraries/main.php:2730
5873
+ #: app/libraries/main.php:2783 app/libraries/main.php:2827
5874
+ #: app/libraries/main.php:2871 app/libraries/main.php:2918
5875
  msgid "Insert a label for this field"
5876
  msgstr ""
5877
 
5878
+ #: app/libraries/main.php:2753
5879
  msgid "HTML and shortcode are allowed."
5880
  msgstr ""
5881
 
5882
+ #: app/libraries/main.php:2796 app/libraries/main.php:2840
5883
+ #: app/libraries/main.php:2884
5884
  msgid "Option"
5885
  msgstr ""
5886
 
5887
+ #: app/libraries/main.php:2918
5888
  #, php-format
5889
  msgid "Instead of %s, the page title with a link will be show."
5890
  msgstr ""
5891
 
5892
+ #: app/libraries/main.php:2920
5893
  msgid "Agreement Page"
5894
  msgstr ""
5895
 
5896
+ #: app/libraries/main.php:2931
5897
  msgid "Checked by default"
5898
  msgstr ""
5899
 
5900
+ #: app/libraries/main.php:2932
5901
  msgid "Unchecked by default"
5902
  msgstr ""
5903
 
5904
+ #: app/libraries/main.php:2955
5905
  msgid "Insert a label for this option"
5906
  msgstr ""
5907
 
5908
+ #: app/libraries/main.php:2970
5909
  msgid "Free"
5910
  msgstr ""
5911
 
5912
+ #: app/libraries/main.php:3576 app/libraries/main.php:5158
5913
  msgid "M.E. Calender"
5914
  msgstr ""
5915
 
5916
+ #: app/libraries/main.php:3731
5917
  #, php-format
5918
  msgid "Copy of %s"
5919
  msgstr ""
5920
 
5921
+ #: app/libraries/main.php:4404
5922
  msgid "Booked an event."
5923
  msgstr ""
5924
 
5925
+ #: app/libraries/main.php:4445
5926
  #, php-format
5927
  msgid "%s booked %s event."
5928
  msgstr ""
5929
 
5930
+ #: app/libraries/main.php:4894
5931
  msgid "Taxonomies"
5932
  msgstr ""
5933
 
5934
+ #: app/libraries/main.php:4896
5935
  msgid "Category Plural Label"
5936
  msgstr ""
5937
 
5938
+ #: app/libraries/main.php:4897
5939
  msgid "Category Singular Label"
5940
  msgstr ""
5941
 
5942
+ #: app/libraries/main.php:4898
5943
  msgid "Label Plural Label"
5944
  msgstr ""
5945
 
5946
+ #: app/libraries/main.php:4899
5947
  msgid "Label Singular Label"
5948
  msgstr ""
5949
 
5950
+ #: app/libraries/main.php:4900
5951
  msgid "Location Plural Label"
5952
  msgstr ""
5953
 
5954
+ #: app/libraries/main.php:4901
5955
  msgid "Location Singular Label"
5956
  msgstr ""
5957
 
5958
+ #: app/libraries/main.php:4902
5959
  msgid "Organizer Plural Label"
5960
  msgstr ""
5961
 
5962
+ #: app/libraries/main.php:4903
5963
  msgid "Organizer Singular Label"
5964
  msgstr ""
5965
 
5966
+ #: app/libraries/main.php:4904
5967
  msgid "Speaker Plural Label"
5968
  msgstr ""
5969
 
5970
+ #: app/libraries/main.php:4905
5971
  msgid "Speaker Singular Label"
5972
  msgstr ""
5973
 
5974
+ #: app/libraries/main.php:4911
5975
  msgid "Sunday abbreviation"
5976
  msgstr ""
5977
 
5978
+ #: app/libraries/main.php:4912
5979
  msgid "Monday abbreviation"
5980
  msgstr ""
5981
 
5982
+ #: app/libraries/main.php:4913
5983
  msgid "Tuesday abbreviation"
5984
  msgstr ""
5985
 
5986
+ #: app/libraries/main.php:4914
5987
  msgid "Wednesday abbreviation"
5988
  msgstr ""
5989
 
5990
+ #: app/libraries/main.php:4915
5991
  msgid "Thursday abbreviation"
5992
  msgstr ""
5993
 
5994
+ #: app/libraries/main.php:4916
5995
  msgid "Friday abbreviation"
5996
  msgstr ""
5997
 
5998
+ #: app/libraries/main.php:4917
5999
  msgid "Saturday abbreviation"
6000
  msgstr ""
6001
 
6002
+ #: app/libraries/main.php:4921
6003
  msgid "Others"
6004
  msgstr ""
6005
 
6006
+ #: app/libraries/main.php:4923
6007
  msgid "Booking Success Message"
6008
  msgstr ""
6009
 
6010
+ #: app/libraries/main.php:4923
6011
  msgid ""
6012
  "Thanks for your booking. Your tickets booked, booking verification might be "
6013
  "needed, please check your email."
6014
  msgstr ""
6015
 
6016
+ #: app/libraries/main.php:4924 app/widgets/single.php:131
6017
  msgid "Register Button"
6018
  msgstr ""
6019
 
6020
+ #: app/libraries/main.php:4924 app/skins/available_spot/tpl.php:224
6021
  #: app/skins/carousel/render.php:158 app/skins/carousel/render.php:194
6022
  #: app/skins/grid/render.php:118 app/skins/grid/render.php:164
6023
  #: app/skins/grid/render.php:207 app/skins/grid/render.php:235
6034
  msgid "REGISTER"
6035
  msgstr ""
6036
 
6037
+ #: app/libraries/main.php:4925
6038
  msgid "View Detail Button"
6039
  msgstr ""
6040
 
6041
+ #: app/libraries/main.php:4925 app/skins/carousel/render.php:158
6042
  #: app/skins/carousel/render.php:194 app/skins/grid/render.php:118
6043
  #: app/skins/grid/render.php:164 app/skins/grid/render.php:207
6044
  #: app/skins/grid/render.php:235 app/skins/list/render.php:108
6049
  msgid "View Detail"
6050
  msgstr ""
6051
 
6052
+ #: app/libraries/main.php:4926
6053
  msgid "Event Detail Button"
6054
  msgstr ""
6055
 
6056
+ #: app/libraries/main.php:4926 app/skins/countdown/tpl.php:244
6057
  msgid "Event Detail"
6058
  msgstr ""
6059
 
6060
+ #: app/libraries/main.php:4928
6061
  msgid "More Info Link"
6062
  msgstr ""
6063
 
6064
+ #: app/libraries/main.php:4931
6065
  msgid "Ticket (Singular)"
6066
  msgstr ""
6067
 
6068
+ #: app/libraries/main.php:4932
6069
  msgid "Tickets (Plural)"
6070
  msgstr ""
6071
 
6072
+ #: app/libraries/main.php:5018
6073
  msgid "EventON"
6074
  msgstr ""
6075
 
6076
+ #: app/libraries/main.php:5019
6077
  msgid "The Events Calendar"
6078
  msgstr ""
6079
 
6080
+ #: app/libraries/main.php:5020
6081
  msgid "Events Schedule WP Plugin"
6082
  msgstr ""
6083
 
6084
+ #: app/libraries/main.php:5021
6085
  msgid "Calendarize It"
6086
  msgstr ""
6087
 
6088
+ #: app/libraries/main.php:5095 app/libraries/main.php:5115
6089
  msgid "Confirmed"
6090
  msgstr ""
6091
 
6092
+ #: app/libraries/main.php:5096 app/libraries/main.php:5123
6093
  msgid "Rejected"
6094
  msgstr ""
6095
 
6096
+ #: app/libraries/main.php:5097 app/libraries/main.php:5119
6097
  msgid "Pending"
6098
  msgstr ""
6099
 
6100
+ #: app/libraries/main.php:5145
6101
  msgid "Waiting"
6102
  msgstr ""
6103
 
6104
+ #: app/libraries/main.php:5350 app/libraries/render.php:382
6105
  msgid "Skin controller does not exist."
6106
  msgstr ""
6107
 
6133
  msgid "Your event is published."
6134
  msgstr ""
6135
 
6136
+ #: app/libraries/notifications.php:827
6137
  msgid "to"
6138
  msgstr ""
6139
 
6140
+ #: app/libraries/notifications.php:840 app/modules/export/details.php:27
6141
  msgid "+ Add to Google Calendar"
6142
  msgstr ""
6143
 
6144
+ #: app/libraries/notifications.php:841 app/modules/export/details.php:28
6145
  msgid "+ iCal export"
6146
  msgstr ""
6147
 
6148
+ #: app/libraries/notifications.php:904
6149
  msgid "Yes"
6150
  msgstr ""
6151
 
6152
+ #: app/libraries/notifications.php:904
6153
  msgid "No"
6154
  msgstr ""
6155
 
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: 2019-10-22 15:22+0330\n"
8
- "PO-Revision-Date: 2019-10-22 15:24+0330\n"
9
  "Last-Translator: \n"
10
  "Language-Team: \n"
11
  "Language: es\n"
@@ -71,7 +71,7 @@ msgid "Settings"
71
  msgstr "Ajustes"
72
 
73
  #: app/features/contextual.php:62 app/features/events.php:2415
74
- #: app/features/mec/booking.php:426 app/features/mec/support.php:29
75
  #: app/libraries/main.php:554
76
  msgid "Booking Form"
77
  msgstr "Formulario de Reservas"
@@ -91,7 +91,7 @@ msgstr ""
91
  "www.youtube.com/embed/YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></"
92
  "iframe>"
93
 
94
- #: app/features/contextual.php:70 app/features/mec/booking.php:544
95
  #: app/features/mec/support.php:36 app/libraries/main.php:555
96
  msgid "Payment Gateways"
97
  msgstr "Pasarelas de pago"
@@ -245,7 +245,7 @@ msgstr "Días excepcionales"
245
  msgid "Booking"
246
  msgstr "Reserva"
247
 
248
- #: app/features/contextual.php:318 app/features/mec/booking.php:248
249
  #: app/libraries/main.php:551
250
  msgid "Coupons"
251
  msgstr "Cupones"
@@ -321,7 +321,7 @@ msgstr "No hay eventos en la papelera"
321
  #: app/features/mec/meta_boxes/search_form.php:514
322
  #: app/features/mec/meta_boxes/search_form.php:575
323
  #: app/features/mec/settings.php:720 app/features/mec/single.php:204
324
- #: app/features/search.php:67 app/libraries/main.php:4886
325
  #: app/libraries/skins.php:808 app/skins/single.php:559
326
  #: app/skins/single/default.php:185 app/skins/single/default.php:397
327
  #: app/skins/single/m1.php:170 app/skins/single/m2.php:102
@@ -331,62 +331,62 @@ msgstr "Categoría"
331
 
332
  #: app/features/events.php:176 app/features/events.php:3212
333
  #: app/features/fes/form.php:737 app/features/mec.php:336
334
- #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:4885
335
  msgid "Categories"
336
  msgstr "Categorías"
337
 
338
  #: app/features/events.php:186 app/features/labels.php:71
339
  #: app/features/locations.php:69 app/features/organizers.php:69
340
- #: app/features/speakers.php:70
341
  #, php-format
342
  msgid "All %s"
343
  msgstr "Todos %s"
344
 
345
  #: app/features/events.php:187 app/features/labels.php:72
346
  #: app/features/locations.php:70 app/features/organizers.php:70
347
- #: app/features/speakers.php:71
348
  #, php-format
349
  msgid "Edit %s"
350
  msgstr "Editar %s"
351
 
352
  #: app/features/events.php:188 app/features/labels.php:73
353
  #: app/features/locations.php:71 app/features/organizers.php:71
354
- #: app/features/speakers.php:72
355
  #, php-format
356
  msgid "View %s"
357
  msgstr "Ver %s"
358
 
359
  #: app/features/events.php:189 app/features/labels.php:74
360
  #: app/features/locations.php:72 app/features/organizers.php:72
361
- #: app/features/speakers.php:73
362
  #, php-format
363
  msgid "Update %s"
364
  msgstr "Actualizar %s"
365
 
366
  #: app/features/events.php:190 app/features/labels.php:75
367
  #: app/features/locations.php:73 app/features/organizers.php:73
368
- #: app/features/speakers.php:74
369
  #, php-format
370
  msgid "Add New %s"
371
  msgstr "Añadir nuevo %s"
372
 
373
  #: app/features/events.php:191 app/features/labels.php:76
374
  #: app/features/locations.php:74 app/features/organizers.php:74
375
- #: app/features/speakers.php:75
376
  #, php-format
377
  msgid "New %s Name"
378
  msgstr "Nuevo %s Nombre"
379
 
380
  #: app/features/events.php:192 app/features/labels.php:77
381
  #: app/features/locations.php:75 app/features/organizers.php:75
382
- #: app/features/speakers.php:76
383
  #, php-format
384
  msgid "Popular %s"
385
  msgstr "Popular %s"
386
 
387
  #: app/features/events.php:193 app/features/labels.php:78
388
  #: app/features/locations.php:76 app/features/organizers.php:76
389
- #: app/features/speakers.php:77
390
  #, php-format
391
  msgid "Search %s"
392
  msgstr "Buscar %s"
@@ -415,7 +415,7 @@ msgstr "Datos del invitado"
415
  #: app/features/fes.php:224 app/features/fes.php:332
416
  #: app/features/fes/form.php:669 app/features/labels.php:178
417
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
418
- #: app/features/profile/profile.php:168 app/libraries/notifications.php:880
419
  #: app/modules/booking/steps/form.php:37
420
  msgid "Name"
421
  msgstr "Nombre"
@@ -423,12 +423,12 @@ msgstr "Nombre"
423
  #: app/features/events.php:463 app/features/events.php:2408
424
  #: app/features/events.php:2484 app/features/fes.php:224
425
  #: app/features/fes.php:332 app/features/fes/form.php:665
426
- #: app/features/mec/booking.php:57 app/features/mec/booking.php:477
427
  #: app/features/organizers.php:111 app/features/organizers.php:152
428
- #: app/features/profile/profile.php:171 app/features/speakers.php:124
429
- #: app/features/speakers.php:185 app/libraries/main.php:1472
430
- #: app/libraries/main.php:1541 app/libraries/main.php:2592
431
- #: app/libraries/notifications.php:881 app/modules/booking/steps/form.php:46
432
  #: app/modules/booking/steps/form.php:84 app/skins/single.php:812
433
  #: app/skins/single.php:867 app/skins/single/default.php:227
434
  #: app/skins/single/default.php:439 app/skins/single/m1.php:107
@@ -524,10 +524,11 @@ msgstr ""
524
  #: app/features/events.php:2324 app/features/events.php:2337
525
  #: app/features/fes/form.php:631 app/features/locations.php:299
526
  #: app/features/mec/booking.php:108 app/features/mec/booking.php:158
527
- #: app/features/mec/booking.php:174 app/features/mec/booking.php:293
528
- #: app/features/mec/booking.php:322 app/features/mec/booking.php:370
529
- #: app/features/mec/booking.php:380 app/features/mec/booking.php:402
530
- #: app/features/mec/booking.php:412 app/features/mec/dashboard.php:71
 
531
  #: app/features/mec/meta_boxes/display_options.php:66
532
  #: app/features/mec/meta_boxes/display_options.php:79
533
  #: app/features/mec/meta_boxes/display_options.php:92
@@ -563,12 +564,12 @@ msgstr ""
563
  #: app/features/mec/modules.php:154 app/features/mec/modules.php:312
564
  #: app/features/mec/notifications.php:54 app/features/mec/notifications.php:111
565
  #: app/features/mec/notifications.php:163
566
- #: app/features/mec/notifications.php:222
567
- #: app/features/mec/notifications.php:290
568
- #: app/features/mec/notifications.php:353
569
- #: app/features/mec/notifications.php:364
570
- #: app/features/mec/notifications.php:426
571
- #: app/features/mec/notifications.php:472 app/features/mec/settings.php:66
572
  #: app/features/mec/settings.php:85 app/features/mec/settings.php:112
573
  #: app/features/mec/settings.php:147 app/features/mec/settings.php:168
574
  #: app/features/mec/settings.php:188 app/features/mec/settings.php:265
@@ -805,13 +806,13 @@ msgstr ""
805
  #: app/features/events.php:1153 app/features/events.php:3434
806
  #: app/features/events.php:3476 app/features/fes/form.php:707
807
  #: app/features/ix.php:2743 app/features/ix.php:2784
808
- #: app/features/mec/settings.php:576 app/libraries/main.php:4918
809
  #: app/widgets/single.php:103
810
  msgid "Event Cost"
811
  msgstr "Coste del evento"
812
 
813
  #: app/features/events.php:1157 app/features/fes/form.php:710
814
- #: app/libraries/main.php:4919 app/skins/single.php:582
815
  #: app/skins/single/default.php:119 app/skins/single/default.php:331
816
  #: app/skins/single/m1.php:49 app/skins/single/modern.php:199
817
  msgid "Cost"
@@ -829,8 +830,8 @@ msgstr "Excluir ciertos días"
829
 
830
  #: app/features/events.php:1189 app/features/events.php:2485
831
  #: app/features/fes.php:224 app/features/fes.php:332
832
- #: app/features/mec/booking.php:478 app/features/profile/profile.php:53
833
- #: app/libraries/main.php:2048 app/libraries/main.php:2650
834
  #: app/modules/booking/steps/tickets.php:22
835
  #: app/modules/next-event/details.php:90 app/skins/single.php:637
836
  #: app/skins/single/default.php:83 app/skins/single/default.php:295
@@ -875,8 +876,8 @@ msgstr ""
875
  #: app/features/events.php:2313 app/features/events.php:3240
876
  #: app/features/events.php:3434 app/features/events.php:3476
877
  #: app/features/fes/form.php:226 app/features/ix.php:2743
878
- #: app/features/ix.php:2784 app/features/mec/booking.php:362
879
- #: app/features/mec/booking.php:394 app/features/mec/styling.php:115
880
  msgid "Title"
881
  msgstr "Titulo"
882
 
@@ -887,15 +888,15 @@ msgstr "Titulo"
887
  #: app/features/events.php:2032 app/features/events.php:2059
888
  #: app/features/events.php:2158 app/features/events.php:2194
889
  #: app/features/events.php:2301 app/features/events.php:2343
890
- #: app/features/mec/booking.php:305 app/features/mec/booking.php:334
891
- #: app/features/mec/booking.php:385 app/features/mec/booking.php:417
892
- #: app/libraries/main.php:2511 app/libraries/main.php:2541
893
- #: app/libraries/main.php:2570 app/libraries/main.php:2600
894
- #: app/libraries/main.php:2629 app/libraries/main.php:2658
895
- #: app/libraries/main.php:2687 app/libraries/main.php:2716
896
- #: app/libraries/main.php:2738 app/libraries/main.php:2769
897
- #: app/libraries/main.php:2813 app/libraries/main.php:2857
898
- #: app/libraries/main.php:2904 app/libraries/main.php:2943
899
  msgid "Remove"
900
  msgstr "Eliminar"
901
 
@@ -922,8 +923,8 @@ msgstr "Descripción"
922
  #: app/features/events.php:1336 app/features/events.php:1369
923
  #: app/features/events.php:1430 app/features/fes/form.php:831
924
  #: app/features/mec.php:344 app/features/mec/modules.php:52
925
- #: app/features/mec/settings.php:624 app/features/speakers.php:60
926
- #: app/libraries/main.php:559 app/libraries/main.php:4893
927
  #: app/modules/speakers/details.php:18
928
  msgid "Speakers"
929
  msgstr ""
@@ -940,7 +941,7 @@ msgid "Event Links"
940
  msgstr "Enlaces de eventos"
941
 
942
  #: app/features/events.php:1464 app/features/events.php:1470
943
- #: app/features/fes/form.php:686 app/libraries/main.php:4916
944
  msgid "Event Link"
945
  msgstr "Enlace del evento"
946
 
@@ -967,7 +968,7 @@ msgid "URL Shortener"
967
  msgstr ""
968
 
969
  #: app/features/events.php:1480 app/features/events.php:1493
970
- #: app/features/fes/form.php:691 app/libraries/main.php:4917
971
  #: app/skins/single.php:656 app/skins/single/default.php:133
972
  #: app/skins/single/default.php:345 app/skins/single/m1.php:191
973
  #: app/skins/single/m2.php:124 app/skins/single/modern.php:132
@@ -1036,7 +1037,7 @@ msgid "12"
1036
  msgstr ""
1037
 
1038
  #: app/features/events.php:1638 app/libraries/book.php:60
1039
- #: app/libraries/main.php:4921 app/modules/booking/steps/tickets.php:40
1040
  msgid "Tickets"
1041
  msgstr "Tickets"
1042
 
@@ -1072,9 +1073,9 @@ msgstr "Hora de finalización"
1072
  #: app/features/events.php:1996 app/features/events.php:1999
1073
  #: app/features/events.php:2055 app/features/events.php:2272
1074
  #: app/features/events.php:2276 app/features/events.php:2318
1075
- #: app/features/events.php:2321 app/features/mec/booking.php:366
1076
- #: app/features/mec/booking.php:369 app/features/mec/booking.php:398
1077
- #: app/features/mec/booking.php:401
1078
  msgid "Price"
1079
  msgstr "Precio"
1080
 
@@ -1122,19 +1123,19 @@ msgid "Fees"
1122
  msgstr "Tasas"
1123
 
1124
  #: app/features/events.php:2132 app/features/events.php:2170
1125
- #: app/features/mec/booking.php:285 app/features/mec/booking.php:314
1126
  msgid "Fee Title"
1127
  msgstr "Título de la cuota"
1128
 
1129
  #: app/features/events.php:2138 app/features/events.php:2142
1130
  #: app/features/events.php:2175 app/features/events.php:2178
1131
- #: app/features/mec/booking.php:289 app/features/mec/booking.php:292
1132
- #: app/features/mec/booking.php:318 app/features/mec/booking.php:321
1133
  msgid "Amount"
1134
  msgstr "Cantidad"
1135
 
1136
  #: app/features/events.php:2143 app/features/events.php:2179
1137
- #: app/features/mec/booking.php:293 app/features/mec/booking.php:322
1138
  msgid ""
1139
  "Fee amount, considered as fixed amount if you set the type to amount "
1140
  "otherwise considered as percentage"
@@ -1143,17 +1144,17 @@ msgstr ""
1143
  "cantidad, si no será considerada como porcentaje"
1144
 
1145
  #: app/features/events.php:2152 app/features/events.php:2188
1146
- #: app/features/mec/booking.php:300 app/features/mec/booking.php:329
1147
  msgid "Percent"
1148
  msgstr "Porcentaje"
1149
 
1150
  #: app/features/events.php:2153 app/features/events.php:2189
1151
- #: app/features/mec/booking.php:301 app/features/mec/booking.php:330
1152
  msgid "Amount (Per Ticket)"
1153
  msgstr "Cantidad (Por ticket)"
1154
 
1155
  #: app/features/events.php:2154 app/features/events.php:2190
1156
- #: app/features/mec/booking.php:302 app/features/mec/booking.php:331
1157
  msgid "Amount (Per Booking)"
1158
  msgstr "Cantidad (por reservas)"
1159
 
@@ -1162,69 +1163,69 @@ msgid "Ticket Variations / Options"
1162
  msgstr ""
1163
 
1164
  #: app/features/events.php:2277 app/features/events.php:2322
1165
- #: app/features/mec/booking.php:370 app/features/mec/booking.php:402
1166
  msgid "Option Price"
1167
  msgstr ""
1168
 
1169
  #: app/features/events.php:2287 app/features/events.php:2291
1170
  #: app/features/events.php:2331 app/features/events.php:2334
1171
- #: app/features/mec/booking.php:376 app/features/mec/booking.php:379
1172
- #: app/features/mec/booking.php:408 app/features/mec/booking.php:411
1173
  msgid "Maximum Per Ticket"
1174
  msgstr ""
1175
 
1176
  #: app/features/events.php:2292 app/features/events.php:2335
1177
- #: app/features/mec/booking.php:380 app/features/mec/booking.php:412
1178
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
1179
  msgstr ""
1180
 
1181
- #: app/features/events.php:2481 app/features/mec/booking.php:474
1182
- #: app/libraries/main.php:2533
1183
  #, fuzzy
1184
  #| msgid "Name"
1185
  msgid "MEC Name"
1186
  msgstr "Nombre"
1187
 
1188
- #: app/features/events.php:2482 app/features/mec/booking.php:475
1189
- #: app/libraries/main.php:2562
1190
  #, fuzzy
1191
  #| msgid "Email"
1192
  msgid "MEC Email"
1193
  msgstr "Correo electrónico"
1194
 
1195
- #: app/features/events.php:2483 app/features/mec/booking.php:476
1196
- #: app/libraries/main.php:2503
1197
  msgid "Text"
1198
  msgstr "Texto"
1199
 
1200
- #: app/features/events.php:2486 app/features/mec/booking.php:479
1201
  #: app/features/organizers.php:103 app/features/organizers.php:148
1202
- #: app/features/speakers.php:116 app/features/speakers.php:181
1203
- #: app/features/speakers.php:254 app/libraries/main.php:2679
1204
  msgid "Tel"
1205
  msgstr "Tel"
1206
 
1207
- #: app/features/events.php:2487 app/features/mec/booking.php:480
1208
- #: app/libraries/main.php:2621
1209
  msgid "File"
1210
  msgstr ""
1211
 
1212
- #: app/features/events.php:2488 app/features/mec/booking.php:481
1213
- #: app/libraries/main.php:2708
1214
  msgid "Textarea"
1215
  msgstr "Área de texto"
1216
 
1217
- #: app/features/events.php:2489 app/features/mec/booking.php:482
1218
- #: app/libraries/main.php:2761
1219
  msgid "Checkboxes"
1220
  msgstr "Checkboxes"
1221
 
1222
- #: app/features/events.php:2490 app/features/mec/booking.php:483
1223
- #: app/libraries/main.php:2805
1224
  msgid "Radio Buttons"
1225
  msgstr "Botón tipo radio"
1226
 
1227
- #: app/features/events.php:2491 app/features/mec/booking.php:484
1228
  #: app/features/mec/meta_boxes/search_form.php:34
1229
  #: app/features/mec/meta_boxes/search_form.php:41
1230
  #: app/features/mec/meta_boxes/search_form.php:48
@@ -1293,17 +1294,17 @@ msgstr "Botón tipo radio"
1293
  #: app/features/mec/meta_boxes/search_form.php:599
1294
  #: app/features/mec/meta_boxes/search_form.php:606
1295
  #: app/features/mec/meta_boxes/search_form.php:613
1296
- #: app/features/mec/meta_boxes/search_form.php:620 app/libraries/main.php:2849
1297
  msgid "Dropdown"
1298
  msgstr "Desplegable"
1299
 
1300
- #: app/features/events.php:2492 app/features/mec/booking.php:485
1301
- #: app/libraries/main.php:2896
1302
  msgid "Agreement"
1303
  msgstr "Acuerdo"
1304
 
1305
- #: app/features/events.php:2493 app/features/mec/booking.php:486
1306
- #: app/libraries/main.php:2737
1307
  msgid "Paragraph"
1308
  msgstr "Párrafo"
1309
 
@@ -1342,8 +1343,8 @@ msgstr "organizadores"
1342
  #: app/features/mec/meta_boxes/search_form.php:521
1343
  #: app/features/mec/meta_boxes/search_form.php:582
1344
  #: app/features/mec/settings.php:726 app/features/mec/single.php:212
1345
- #: app/features/search.php:71 app/libraries/main.php:2042
1346
- #: app/libraries/main.php:4890 app/libraries/skins.php:834
1347
  #: app/skins/single.php:486 app/skins/single.php:907
1348
  #: app/skins/single/default.php:169 app/skins/single/default.php:381
1349
  #: app/skins/single/m1.php:155 app/skins/single/m2.php:87
@@ -1368,7 +1369,7 @@ msgstr "Localización"
1368
  #: app/features/organizers.php:58 app/features/organizers.php:204
1369
  #: app/features/organizers.php:260 app/features/organizers.php:262
1370
  #: app/features/organizers.php:271 app/features/search.php:75
1371
- #: app/libraries/main.php:4892 app/libraries/skins.php:860
1372
  #: app/skins/single.php:795 app/skins/single/default.php:210
1373
  #: app/skins/single/default.php:422 app/skins/single/m1.php:90
1374
  #: app/skins/single/m2.php:22 app/skins/single/modern.php:31
@@ -1412,7 +1413,7 @@ msgstr "Duplicar"
1412
  #: app/features/fes.php:224 app/features/fes.php:332 app/features/ix.php:2743
1413
  #: app/features/ix.php:2784 app/features/labels.php:177
1414
  #: app/features/locations.php:229 app/features/organizers.php:203
1415
- #: app/features/speakers.php:251
1416
  msgid "ID"
1417
  msgstr "ID"
1418
 
@@ -1462,13 +1463,13 @@ msgid "The event removed!"
1462
  msgstr "¡El evento ha sido eliminado!"
1463
 
1464
  #: app/features/fes.php:224 app/features/fes.php:332
1465
- #: app/features/profile/profile.php:174 app/libraries/main.php:2077
1466
- #: app/libraries/main.php:4920
1467
  msgid "Ticket"
1468
  msgstr "Ticket"
1469
 
1470
  #: app/features/fes.php:224 app/features/fes.php:332
1471
- #: app/libraries/main.php:2054
1472
  msgid "Transaction ID"
1473
  msgstr "ID Transacción"
1474
 
@@ -1562,7 +1563,7 @@ msgstr "Eliminar imagen"
1562
 
1563
  #: app/features/fes/form.php:763 app/features/labels.php:61
1564
  #: app/features/labels.php:221 app/features/mec.php:337
1565
- #: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:4887
1566
  #: app/skins/single.php:685 app/skins/single/default.php:148
1567
  #: app/skins/single/default.php:360 app/skins/single/m1.php:64
1568
  #: app/skins/single/modern.php:214
@@ -1895,13 +1896,13 @@ msgstr "Toggle"
1895
  #: app/features/ix/export_g_calendar.php:147
1896
  #: app/features/ix/export_g_calendar.php:164
1897
  #: app/features/mec/notifications.php:92 app/features/mec/notifications.php:144
1898
- #: app/features/mec/notifications.php:197
1899
- #: app/features/mec/notifications.php:398
1900
  msgid "Add to Google Calendar"
1901
  msgstr "Añadir a Google Calendar"
1902
 
1903
- #: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:616
1904
- #: app/features/mec/modules.php:392 app/features/mec/notifications.php:590
1905
  #: app/features/mec/settings.php:895 app/features/mec/single.php:269
1906
  msgid "Checking ..."
1907
  msgstr "Verificando…"
@@ -1950,8 +1951,8 @@ msgid "ICS Feed"
1950
  msgstr "ICS Feed"
1951
 
1952
  #: app/features/ix/import.php:46 app/features/mec/booking.php:91
1953
- #: app/features/mec/booking.php:251 app/features/mec/booking.php:269
1954
- #: app/features/mec/booking.php:346
1955
  #: app/features/mec/meta_boxes/display_options.php:150
1956
  #: app/features/mec/meta_boxes/display_options.php:315
1957
  #: app/features/mec/modules.php:70 app/features/mec/modules.php:211
@@ -1961,8 +1962,8 @@ msgid "%s is required to use this feature."
1961
  msgstr "Se requiere %s para usar esta funcionalidad."
1962
 
1963
  #: app/features/ix/import.php:46 app/features/ix/sync.php:22
1964
- #: app/features/mec/booking.php:91 app/features/mec/booking.php:251
1965
- #: app/features/mec/booking.php:269 app/features/mec/booking.php:346
1966
  #: app/features/mec/meta_boxes/display_options.php:150
1967
  #: app/features/mec/meta_boxes/display_options.php:315
1968
  #: app/features/mec/meta_boxes/display_options.php:330
@@ -2148,7 +2149,7 @@ msgstr "Importación automática a Google"
2148
 
2149
  #: app/features/ix/sync.php:32 app/features/ix/sync.php:41
2150
  #: app/features/ix/sync.php:52 app/features/ix/sync.php:63
2151
- #: app/features/mec/notifications.php:341
2152
  msgid "Important Note"
2153
  msgstr "Nota importante"
2154
 
@@ -2282,7 +2283,7 @@ msgid ""
2282
  msgstr ""
2283
 
2284
  #: app/features/labels.php:79 app/features/locations.php:77
2285
- #: app/features/organizers.php:77 app/features/speakers.php:78
2286
  #, php-format
2287
  msgid "← Back to %s"
2288
  msgstr ""
@@ -2328,7 +2329,7 @@ msgid "Featured"
2328
  msgstr ""
2329
 
2330
  #: app/features/labels.php:118 app/features/labels.php:143
2331
- #: app/libraries/main.php:5133 app/skins/agenda/render.php:41
2332
  #: app/skins/available_spot/tpl.php:42 app/skins/carousel/render.php:45
2333
  #: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:32
2334
  #: app/skins/daily_view/render.php:52 app/skins/grid/render.php:50
@@ -2346,7 +2347,7 @@ msgid "You can show featured and canceled events by a different style!"
2346
  msgstr ""
2347
 
2348
  #: app/features/labels.php:180 app/features/locations.php:232
2349
- #: app/features/organizers.php:206 app/features/speakers.php:255
2350
  #: app/modules/booking/steps/tickets.php:38
2351
  msgid "Count"
2352
  msgstr "Contador"
@@ -2363,7 +2364,7 @@ msgstr "Evento %s"
2363
 
2364
  #: app/features/locations.php:59 app/features/mec.php:338
2365
  #: app/features/mec/dashboard.php:243 app/features/mec/meta_boxes/filter.php:96
2366
- #: app/libraries/main.php:4889
2367
  msgid "Locations"
2368
  msgstr "Lugar"
2369
 
@@ -2396,13 +2397,13 @@ msgstr "Geolongitud (opcional)"
2396
 
2397
  #: app/features/locations.php:138 app/features/locations.php:180
2398
  #: app/features/organizers.php:127 app/features/organizers.php:160
2399
- #: app/features/speakers.php:156 app/features/speakers.php:201
2400
  msgid "Thumbnail"
2401
  msgstr "Miniatura"
2402
 
2403
  #: app/features/locations.php:143 app/features/locations.php:183
2404
  #: app/features/organizers.php:132 app/features/organizers.php:163
2405
- #: app/features/speakers.php:161 app/features/speakers.php:204
2406
  msgid "Upload/Add image"
2407
  msgstr "Subir/Añadir imagen"
2408
 
@@ -2410,7 +2411,7 @@ msgstr "Subir/Añadir imagen"
2410
  #: app/features/locations.php:340 app/features/locations.php:347
2411
  #: app/features/organizers.php:133 app/features/organizers.php:164
2412
  #: app/features/organizers.php:299 app/features/organizers.php:306
2413
- #: app/features/speakers.php:162 app/features/speakers.php:205
2414
  msgid "Remove image"
2415
  msgstr "Eliminar imagen"
2416
 
@@ -2470,7 +2471,7 @@ msgstr "Elegir imagen"
2470
  msgid "Don't show map in single event page"
2471
  msgstr "No mostrar el mapa en la página del detalle del evento"
2472
 
2473
- #: app/features/locations.php:356 app/libraries/main.php:4923
2474
  #, fuzzy
2475
  #| msgid "Locations"
2476
  msgid "Other Locations"
@@ -2527,7 +2528,7 @@ msgstr "Soporte"
2527
 
2528
  #: app/features/mec.php:339 app/features/mec/dashboard.php:250
2529
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2530
- #: app/libraries/main.php:4891
2531
  msgid "Organizers"
2532
  msgstr "Organizadores"
2533
 
@@ -2627,19 +2628,19 @@ msgstr ""
2627
  msgid "Search..."
2628
  msgstr "Buscar %s"
2629
 
2630
- #: app/features/mec/booking.php:72 app/features/mec/booking.php:492
2631
- #: app/features/mec/booking.php:572 app/features/mec/booking.php:581
2632
- #: app/features/mec/booking.php:591 app/features/mec/booking.php:633
2633
- #: app/features/mec/booking.php:647 app/features/mec/messages.php:15
2634
  #: app/features/mec/messages.php:51 app/features/mec/messages.php:60
2635
  #: app/features/mec/messages.php:94 app/features/mec/messages.php:103
2636
  #: app/features/mec/modules.php:25 app/features/mec/modules.php:357
2637
  #: app/features/mec/modules.php:367 app/features/mec/modules.php:409
2638
  #: app/features/mec/modules.php:423 app/features/mec/notifications.php:14
2639
- #: app/features/mec/notifications.php:499
2640
- #: app/features/mec/notifications.php:511
2641
- #: app/features/mec/notifications.php:607
2642
- #: app/features/mec/notifications.php:621 app/features/mec/settings.php:34
2643
  #: app/features/mec/settings.php:844 app/features/mec/settings.php:854
2644
  #: app/features/mec/settings.php:912 app/features/mec/settings.php:926
2645
  #: app/features/mec/single.php:17 app/features/mec/single.php:234
@@ -2737,15 +2738,31 @@ msgstr ""
2737
  "Se redirecciona al usuario a esta pagina una vez que completa la reserva. "
2738
  "Déjalo vacío si lo deseas desactivado."
2739
 
2740
- #: app/features/mec/booking.php:169
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2741
  msgid "Enable Express Attendees Form"
2742
  msgstr "Habilitar formulario de asistentes exprés"
2743
 
2744
- #: app/features/mec/booking.php:173 app/modules/booking/steps/form.php:52
2745
  msgid "Attendees Form"
2746
  msgstr "Asistentes"
2747
 
2748
- #: app/features/mec/booking.php:174
2749
  msgid ""
2750
  "Users are able to apply first attendee information for other attendees in "
2751
  "the booking form."
@@ -2753,118 +2770,118 @@ msgstr ""
2753
  "Los usuarios son capaces de copiar la información del primer invitado para "
2754
  "los demás invitados en el formulario de reservas."
2755
 
2756
- #: app/features/mec/booking.php:187
2757
  #, fuzzy
2758
  #| msgid "Download Invoice"
2759
  msgid "Enable Invoice"
2760
  msgstr "Descargar factura"
2761
 
2762
- #: app/features/mec/booking.php:198
2763
  #, fuzzy
2764
  #| msgid "Enable booking notification"
2765
  msgid "Enable Booking for Ongoing Events"
2766
  msgstr "Activar notificación de reservas"
2767
 
2768
- #: app/features/mec/booking.php:203
2769
  msgid "Email verification"
2770
  msgstr "Verificación por email"
2771
 
2772
- #: app/features/mec/booking.php:209
2773
  msgid "Auto verification for free bookings"
2774
  msgstr "Auto verificación para reservas gratuitas"
2775
 
2776
- #: app/features/mec/booking.php:218
2777
  msgid "Auto verification for paid bookings"
2778
  msgstr "Auto verificación para reservas de pago"
2779
 
2780
- #: app/features/mec/booking.php:222 app/features/mec/notifications.php:151
2781
  #: app/libraries/main.php:573
2782
  msgid "Booking Confirmation"
2783
  msgstr "Confirmación de reserva"
2784
 
2785
- #: app/features/mec/booking.php:228
2786
  msgid "Auto confirmation for free bookings"
2787
  msgstr "Confirmación automática para reservas gratuitas"
2788
 
2789
- #: app/features/mec/booking.php:237
2790
  msgid "Auto confirmation for paid bookings"
2791
  msgstr "Confirmación automática para reservas pagas"
2792
 
2793
- #: app/features/mec/booking.php:256
2794
  msgid "Enable coupons module"
2795
  msgstr "Activar módulo de cupones"
2796
 
2797
- #: app/features/mec/booking.php:258
2798
  msgid ""
2799
  "After enabling and saving the settings,, you should reload the page to see a "
2800
  "new menu on the Dashboard > Booking"
2801
  msgstr ""
2802
 
2803
- #: app/features/mec/booking.php:266 app/libraries/main.php:552
2804
  msgid "Taxes / Fees"
2805
  msgstr "Impuestos/Tasas"
2806
 
2807
- #: app/features/mec/booking.php:274
2808
  msgid "Enable taxes / fees module"
2809
  msgstr "Activar módulo de Impuestos/Tasas"
2810
 
2811
- #: app/features/mec/booking.php:279
2812
  msgid "Add Fee"
2813
  msgstr "Nueva tasa"
2814
 
2815
- #: app/features/mec/booking.php:343 app/libraries/main.php:553
2816
  msgid "Ticket Variations & Options"
2817
  msgstr ""
2818
 
2819
- #: app/features/mec/booking.php:351
2820
  msgid "Enable ticket options module"
2821
  msgstr ""
2822
 
2823
- #: app/features/mec/booking.php:356
2824
  msgid "Add Variation / Option"
2825
  msgstr ""
2826
 
2827
- #: app/features/mec/booking.php:559
2828
  msgid "Enable Organizer Payment Module"
2829
  msgstr ""
2830
 
2831
- #: app/features/mec/booking.php:563
2832
  #, fuzzy
2833
  #| msgid "Organizer Tel"
2834
  msgid "Organizer Payment"
2835
  msgstr "Teléfono del Organizador"
2836
 
2837
- #: app/features/mec/booking.php:564
2838
  msgid ""
2839
  "By enabling this module, organizers are able to insert their own payment "
2840
  "credentials for enabled gateways per event and receive the payments directly!"
2841
  msgstr ""
2842
 
2843
- #: app/features/mec/booking.php:611 app/features/mec/messages.php:78
2844
- #: app/features/mec/modules.php:387 app/features/mec/notifications.php:585
2845
  #: app/features/mec/settings.php:890 app/features/mec/single.php:264
2846
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:296
2847
  msgid "Saved"
2848
  msgstr "Guardado"
2849
 
2850
- #: app/features/mec/booking.php:612 app/features/mec/messages.php:79
2851
- #: app/features/mec/modules.php:388 app/features/mec/notifications.php:586
2852
  #: app/features/mec/settings.php:891 app/features/mec/single.php:265
2853
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:297
2854
  msgid "Settings Saved!"
2855
  msgstr "¡Ajustes guardados!"
2856
 
2857
- #: app/features/mec/booking.php:614 app/features/mec/booking.php:636
2858
  #: app/features/mec/modules.php:390 app/features/mec/modules.php:412
2859
- #: app/features/mec/notifications.php:588
2860
- #: app/features/mec/notifications.php:610 app/features/mec/settings.php:893
2861
  #: app/features/mec/settings.php:915 app/features/mec/single.php:267
2862
- #: app/features/mec/single.php:289 app/libraries/main.php:5132
2863
  msgid "Verified"
2864
  msgstr "Verificado"
2865
 
2866
- #: app/features/mec/booking.php:638 app/features/mec/modules.php:414
2867
- #: app/features/mec/notifications.php:612 app/features/mec/settings.php:917
2868
  #: app/features/mec/single.php:291
2869
  msgid "Please Refresh Page"
2870
  msgstr "Por favor, actualiza la página"
@@ -3833,8 +3850,8 @@ msgstr "Desactivado"
3833
  #: app/features/mec/meta_boxes/search_form.php:535
3834
  #: app/features/mec/meta_boxes/search_form.php:596
3835
  #: app/features/mec/settings.php:739 app/features/mec/single.php:217
3836
- #: app/features/search.php:79 app/features/speakers.php:59
3837
- #: app/features/speakers.php:252 app/libraries/main.php:4894
3838
  #: app/libraries/skins.php:886
3839
  msgid "Speaker"
3840
  msgstr ""
@@ -4106,11 +4123,11 @@ msgstr "Se envía a los asistentes después de la reserva."
4106
 
4107
  #: app/features/mec/notifications.php:45 app/features/mec/notifications.php:102
4108
  #: app/features/mec/notifications.php:154
4109
- #: app/features/mec/notifications.php:213
4110
- #: app/features/mec/notifications.php:281
4111
- #: app/features/mec/notifications.php:344
4112
- #: app/features/mec/notifications.php:417
4113
- #: app/features/mec/notifications.php:463
4114
  msgid "Email Subject"
4115
  msgstr "Asunto del correo electrónico"
4116
 
@@ -4119,93 +4136,93 @@ msgstr "Asunto del correo electrónico"
4119
  #: app/features/mec/notifications.php:110
4120
  #: app/features/mec/notifications.php:158
4121
  #: app/features/mec/notifications.php:162
4122
- #: app/features/mec/notifications.php:217
4123
- #: app/features/mec/notifications.php:221
4124
- #: app/features/mec/notifications.php:285
4125
- #: app/features/mec/notifications.php:289
4126
- #: app/features/mec/notifications.php:348
4127
- #: app/features/mec/notifications.php:352
4128
- #: app/features/mec/notifications.php:363
4129
- #: app/features/mec/notifications.php:421
4130
- #: app/features/mec/notifications.php:425
4131
- #: app/features/mec/notifications.php:467
4132
- #: app/features/mec/notifications.php:471
4133
- msgid "Custom Recipients"
4134
- msgstr "Destinatarios personalizados"
4135
-
4136
- #: app/features/mec/notifications.php:54 app/features/mec/notifications.php:111
4137
- #: app/features/mec/notifications.php:163
4138
  #: app/features/mec/notifications.php:222
 
4139
  #: app/features/mec/notifications.php:290
 
4140
  #: app/features/mec/notifications.php:353
4141
  #: app/features/mec/notifications.php:364
 
4142
  #: app/features/mec/notifications.php:426
 
4143
  #: app/features/mec/notifications.php:472
 
 
 
 
 
 
 
 
 
 
 
4144
  msgid "Insert comma separated emails for multiple recipients."
4145
  msgstr "Inserta los correos separados por coma para múltiples destinatarios."
4146
 
4147
- #: app/features/mec/notifications.php:61 app/features/mec/notifications.php:233
4148
- #: app/features/mec/notifications.php:297
4149
  msgid "Send the email to event organizer"
4150
  msgstr "Enviar correo al organizador del evento"
4151
 
4152
  #: app/features/mec/notifications.php:64 app/features/mec/notifications.php:117
4153
  #: app/features/mec/notifications.php:169
4154
- #: app/features/mec/notifications.php:240
4155
- #: app/features/mec/notifications.php:300
4156
- #: app/features/mec/notifications.php:370
4157
- #: app/features/mec/notifications.php:432
4158
- #: app/features/mec/notifications.php:478
4159
  msgid "Email Content"
4160
  msgstr "Contenido del correo"
4161
 
4162
  #: app/features/mec/notifications.php:67 app/features/mec/notifications.php:120
4163
  #: app/features/mec/notifications.php:172
4164
- #: app/features/mec/notifications.php:243
4165
- #: app/features/mec/notifications.php:303
4166
- #: app/features/mec/notifications.php:373
4167
- #: app/features/mec/notifications.php:435
4168
- #: app/features/mec/notifications.php:481
4169
  msgid "You can use following placeholders"
4170
  msgstr "Puedes utilizar los siguientes marcadores de posición"
4171
 
4172
  #: app/features/mec/notifications.php:69 app/features/mec/notifications.php:122
4173
  #: app/features/mec/notifications.php:174
4174
- #: app/features/mec/notifications.php:245
4175
- #: app/features/mec/notifications.php:305
4176
- #: app/features/mec/notifications.php:375
4177
  msgid "First name of attendee"
4178
  msgstr "Nombre del asistente"
4179
 
4180
  #: app/features/mec/notifications.php:70 app/features/mec/notifications.php:123
4181
  #: app/features/mec/notifications.php:175
4182
- #: app/features/mec/notifications.php:246
4183
- #: app/features/mec/notifications.php:306
4184
- #: app/features/mec/notifications.php:376
4185
  msgid "Last name of attendee"
4186
  msgstr "Apellidos del asistente"
4187
 
4188
  #: app/features/mec/notifications.php:71 app/features/mec/notifications.php:124
4189
  #: app/features/mec/notifications.php:176
4190
- #: app/features/mec/notifications.php:247
4191
- #: app/features/mec/notifications.php:307
4192
- #: app/features/mec/notifications.php:377
4193
  msgid "Email of attendee"
4194
  msgstr "Correo electrónico del asistente"
4195
 
4196
  #: app/features/mec/notifications.php:72 app/features/mec/notifications.php:125
4197
  #: app/features/mec/notifications.php:177
4198
- #: app/features/mec/notifications.php:248
4199
- #: app/features/mec/notifications.php:308
4200
- #: app/features/mec/notifications.php:378
4201
  msgid "Booked date of event"
4202
  msgstr "Fecha de reserva del evento"
4203
 
4204
  #: app/features/mec/notifications.php:73 app/features/mec/notifications.php:126
4205
  #: app/features/mec/notifications.php:178
4206
- #: app/features/mec/notifications.php:249
4207
- #: app/features/mec/notifications.php:309
4208
- #: app/features/mec/notifications.php:379
4209
  #, fuzzy
4210
  #| msgid "Booked date of event"
4211
  msgid "Booked time of event"
@@ -4213,55 +4230,55 @@ msgstr "Fecha de reserva del evento"
4213
 
4214
  #: app/features/mec/notifications.php:74 app/features/mec/notifications.php:127
4215
  #: app/features/mec/notifications.php:179
4216
- #: app/features/mec/notifications.php:250
4217
- #: app/features/mec/notifications.php:310
4218
- #: app/features/mec/notifications.php:380
4219
  msgid "Booking Price"
4220
  msgstr "Precio de la reserva"
4221
 
4222
  #: app/features/mec/notifications.php:75 app/features/mec/notifications.php:128
4223
  #: app/features/mec/notifications.php:180
4224
- #: app/features/mec/notifications.php:251
4225
- #: app/features/mec/notifications.php:311
4226
- #: app/features/mec/notifications.php:381
4227
- #: app/features/mec/notifications.php:441
4228
- #: app/features/mec/notifications.php:487
4229
- msgid "Your website title"
4230
- msgstr "Título de tu web"
4231
-
4232
- #: app/features/mec/notifications.php:76 app/features/mec/notifications.php:129
4233
- #: app/features/mec/notifications.php:181
4234
  #: app/features/mec/notifications.php:252
4235
  #: app/features/mec/notifications.php:312
4236
  #: app/features/mec/notifications.php:382
4237
  #: app/features/mec/notifications.php:442
4238
  #: app/features/mec/notifications.php:488
4239
- msgid "Your website URL"
4240
- msgstr "URL de tu sitio web"
4241
 
4242
- #: app/features/mec/notifications.php:77 app/features/mec/notifications.php:130
4243
- #: app/features/mec/notifications.php:182
4244
  #: app/features/mec/notifications.php:253
4245
  #: app/features/mec/notifications.php:313
4246
  #: app/features/mec/notifications.php:383
4247
  #: app/features/mec/notifications.php:443
4248
  #: app/features/mec/notifications.php:489
 
 
 
 
 
 
 
 
 
 
4249
  msgid "Your website description"
4250
  msgstr "Descripción de tu web"
4251
 
4252
  #: app/features/mec/notifications.php:78 app/features/mec/notifications.php:131
4253
  #: app/features/mec/notifications.php:183
4254
- #: app/features/mec/notifications.php:254
4255
- #: app/features/mec/notifications.php:314
4256
- #: app/features/mec/notifications.php:384
4257
  msgid "Event title"
4258
  msgstr "Título del evento"
4259
 
4260
  #: app/features/mec/notifications.php:79 app/features/mec/notifications.php:132
4261
  #: app/features/mec/notifications.php:184
4262
- #: app/features/mec/notifications.php:255
4263
- #: app/features/mec/notifications.php:315
4264
- #: app/features/mec/notifications.php:385
4265
  #, fuzzy
4266
  #| msgid "Event Link"
4267
  msgid "Event link"
@@ -4269,9 +4286,9 @@ msgstr "Enlace del evento"
4269
 
4270
  #: app/features/mec/notifications.php:80 app/features/mec/notifications.php:133
4271
  #: app/features/mec/notifications.php:185
4272
- #: app/features/mec/notifications.php:256
4273
- #: app/features/mec/notifications.php:316
4274
- #: app/features/mec/notifications.php:386
4275
  #, fuzzy
4276
  #| msgid "Organizer name of booked event"
4277
  msgid "Speaker name of booked event"
@@ -4279,79 +4296,79 @@ msgstr "Nombre del organizador del evento reservado"
4279
 
4280
  #: app/features/mec/notifications.php:81 app/features/mec/notifications.php:134
4281
  #: app/features/mec/notifications.php:186
4282
- #: app/features/mec/notifications.php:257
4283
- #: app/features/mec/notifications.php:317
4284
- #: app/features/mec/notifications.php:387
4285
  msgid "Organizer name of booked event"
4286
  msgstr "Nombre del organizador del evento reservado"
4287
 
4288
  #: app/features/mec/notifications.php:82 app/features/mec/notifications.php:135
4289
  #: app/features/mec/notifications.php:187
4290
- #: app/features/mec/notifications.php:258
4291
- #: app/features/mec/notifications.php:318
4292
- #: app/features/mec/notifications.php:388
4293
  msgid "Organizer tel of booked event"
4294
  msgstr "Teléfono del organizador del evento reservado"
4295
 
4296
  #: app/features/mec/notifications.php:83 app/features/mec/notifications.php:136
4297
  #: app/features/mec/notifications.php:188
4298
- #: app/features/mec/notifications.php:259
4299
- #: app/features/mec/notifications.php:319
4300
- #: app/features/mec/notifications.php:389
4301
  msgid "Organizer email of booked event"
4302
  msgstr "Correo electrónico del organizar de un evento reservado"
4303
 
4304
  #: app/features/mec/notifications.php:84 app/features/mec/notifications.php:137
4305
  #: app/features/mec/notifications.php:189
4306
- #: app/features/mec/notifications.php:260
4307
- #: app/features/mec/notifications.php:320
4308
- #: app/features/mec/notifications.php:390
4309
  msgid "Location name of booked event"
4310
  msgstr "Nombre del lugar del organizador del evento reservado"
4311
 
4312
  #: app/features/mec/notifications.php:85 app/features/mec/notifications.php:138
4313
  #: app/features/mec/notifications.php:190
4314
- #: app/features/mec/notifications.php:261
4315
- #: app/features/mec/notifications.php:321
4316
- #: app/features/mec/notifications.php:391
4317
  msgid "Location address of booked event"
4318
  msgstr "Dirección del organizador del evento reservado"
4319
 
4320
- #: app/features/mec/notifications.php:86 app/features/mec/notifications.php:263
4321
- #: app/features/mec/notifications.php:323
4322
  msgid "Full Attendee info such as booking form data, name, email etc."
4323
  msgstr ""
4324
  "Información completa del asistente, como datos de formulario de reserva, "
4325
  "nombre, correo electrónico, etc."
4326
 
4327
  #: app/features/mec/notifications.php:87 app/features/mec/notifications.php:192
4328
- #: app/features/mec/notifications.php:393
4329
  msgid "Invoice Link"
4330
  msgstr "Enlace de factura"
4331
 
4332
  #: app/features/mec/notifications.php:88 app/features/mec/notifications.php:140
4333
  #: app/features/mec/notifications.php:193
4334
- #: app/features/mec/notifications.php:264
4335
- #: app/features/mec/notifications.php:324
4336
- #: app/features/mec/notifications.php:394
4337
  msgid "Total Attendees"
4338
  msgstr "Total asistentes"
4339
 
4340
  #: app/features/mec/notifications.php:89 app/features/mec/notifications.php:141
4341
- #: app/features/mec/notifications.php:194
4342
- #: app/features/mec/notifications.php:395
4343
  msgid "Ticket name"
4344
  msgstr "Nombre de la entrada"
4345
 
4346
  #: app/features/mec/notifications.php:90 app/features/mec/notifications.php:142
4347
- #: app/features/mec/notifications.php:195
4348
- #: app/features/mec/notifications.php:396
4349
  msgid "Ticket time"
4350
  msgstr "Hora de la entrada"
4351
 
4352
  #: app/features/mec/notifications.php:91 app/features/mec/notifications.php:143
4353
- #: app/features/mec/notifications.php:196
4354
- #: app/features/mec/notifications.php:397
4355
  msgid "Download ICS file"
4356
  msgstr "Descarga el archivo ICS"
4357
 
@@ -4375,23 +4392,29 @@ msgstr ""
4375
  "administrador."
4376
 
4377
  #: app/features/mec/notifications.php:191
4378
- #: app/features/mec/notifications.php:392
4379
  msgid "Booking cancellation link."
4380
  msgstr "Enlace de cancelación de la reserva."
4381
 
4382
- #: app/features/mec/notifications.php:203 app/libraries/main.php:574
 
 
 
 
 
 
4383
  #, fuzzy
4384
  #| msgid "Booking cancellation link."
4385
  msgid "Booking Cancellation"
4386
  msgstr "Enlace de cancelación de la reserva."
4387
 
4388
- #: app/features/mec/notifications.php:207
4389
  #, fuzzy
4390
  #| msgid "Enable new event notification"
4391
  msgid "Enable cancellation notification"
4392
  msgstr "Activa los avisos de nuevos eventos"
4393
 
4394
- #: app/features/mec/notifications.php:211
4395
  #, fuzzy
4396
  #| msgid "It sends to attendee after booking for notifying him/her."
4397
  msgid ""
@@ -4399,47 +4422,47 @@ msgid ""
4399
  "them."
4400
  msgstr "Se envía a los asistentes después de la reserva."
4401
 
4402
- #: app/features/mec/notifications.php:229
4403
  #, fuzzy
4404
  #| msgid "Send the email to event organizer"
4405
  msgid "Send the email to admin"
4406
  msgstr "Enviar correo al organizador del evento"
4407
 
4408
- #: app/features/mec/notifications.php:237
4409
  #, fuzzy
4410
  #| msgid "Send the email to event organizer"
4411
  msgid "Send the email to booking user"
4412
  msgstr "Enviar correo al organizador del evento"
4413
 
4414
- #: app/features/mec/notifications.php:262
4415
- #: app/features/mec/notifications.php:322
4416
  msgid "Admin booking management link."
4417
  msgstr "Enlace del administrador de reservas."
4418
 
4419
- #: app/features/mec/notifications.php:271 app/libraries/main.php:576
4420
  msgid "Admin"
4421
  msgstr ""
4422
 
4423
- #: app/features/mec/notifications.php:275
4424
  #, fuzzy
4425
  #| msgid "Enable booking notification"
4426
  msgid "Enable admin notification"
4427
  msgstr "Activar notificación de reservas"
4428
 
4429
- #: app/features/mec/notifications.php:279
4430
  msgid "It sends to admin to notify him/her that a new booking received."
4431
  msgstr "Se envía al administrador para notificarle una nueva reserva recibida."
4432
 
4433
- #: app/features/mec/notifications.php:331 app/libraries/main.php:575
4434
  #: app/libraries/notifications.php:478
4435
  msgid "Booking Reminder"
4436
  msgstr "Recordatorio de reserva"
4437
 
4438
- #: app/features/mec/notifications.php:335
4439
  msgid "Enable booking reminder notification"
4440
  msgstr "Activar recordatorio de reservas del evento."
4441
 
4442
- #: app/features/mec/notifications.php:341
4443
  #, php-format
4444
  msgid ""
4445
  "Set a cronjob to call %s file once per day otherwise it won't send the "
@@ -4451,24 +4474,24 @@ msgstr ""
4451
  "este archivo %s, de lo contrario, puede enviar los recordatorios varias "
4452
  "veces."
4453
 
4454
- #: app/features/mec/notifications.php:341
4455
  msgid "only once per day"
4456
  msgstr "una vez al día"
4457
 
4458
- #: app/features/mec/notifications.php:359
4459
  msgid "Days"
4460
  msgstr "Días"
4461
 
4462
- #: app/features/mec/notifications.php:407 app/features/mec/support-page.php:80
4463
  #: app/libraries/main.php:577
4464
  msgid "New Event"
4465
  msgstr "Nuevo evento"
4466
 
4467
- #: app/features/mec/notifications.php:411
4468
  msgid "Enable new event notification"
4469
  msgstr "Activa los avisos de nuevos eventos"
4470
 
4471
- #: app/features/mec/notifications.php:415
4472
  msgid ""
4473
  "It sends after adding a new event from frontend event submission or from "
4474
  "website backend."
@@ -4476,47 +4499,47 @@ msgstr ""
4476
  "Se envía después de agregar un nuevo evento de presentación de evento de "
4477
  "frontend o desde el sitio web backend."
4478
 
4479
- #: app/features/mec/notifications.php:437
4480
- #: app/features/mec/notifications.php:483
4481
  msgid "Title of event"
4482
  msgstr "Título del evento"
4483
 
4484
- #: app/features/mec/notifications.php:438
4485
- #: app/features/mec/notifications.php:484
4486
  #, fuzzy
4487
  #| msgid "Title of event"
4488
  msgid "Link of event"
4489
  msgstr "Título del evento"
4490
 
4491
- #: app/features/mec/notifications.php:439
4492
- #: app/features/mec/notifications.php:485
4493
  msgid "Status of event"
4494
  msgstr "Estado del evento"
4495
 
4496
- #: app/features/mec/notifications.php:440
4497
- #: app/features/mec/notifications.php:486 app/features/mec/settings.php:654
4498
  #: app/features/mec/settings.php:658
4499
  msgid "Event Note"
4500
  msgstr "Nota de evento"
4501
 
4502
- #: app/features/mec/notifications.php:444
4503
- #: app/features/mec/notifications.php:490
4504
  msgid "Admin events management link."
4505
  msgstr "Enlace del administrador de reservas."
4506
 
4507
- #: app/features/mec/notifications.php:453 app/libraries/main.php:578
4508
  #, fuzzy
4509
  #| msgid "The event published."
4510
  msgid "User Event Publishing"
4511
  msgstr "El evento a sido publicado."
4512
 
4513
- #: app/features/mec/notifications.php:457
4514
  #, fuzzy
4515
  #| msgid "Enable new event notification"
4516
  msgid "Enable user event publishing notification"
4517
  msgstr "Activa los avisos de nuevos eventos"
4518
 
4519
- #: app/features/mec/notifications.php:461
4520
  #, fuzzy
4521
  #| msgid ""
4522
  #| "It sends after adding a new event from frontend event submission or from "
@@ -4623,7 +4646,7 @@ msgid "You can enable/disable Schema scripts"
4623
  msgstr ""
4624
 
4625
  #: app/features/mec/settings.php:136 app/features/mec/settings.php:146
4626
- #: app/libraries/main.php:4898
4627
  msgid "Weekdays"
4628
  msgstr "Días de la semana"
4629
 
@@ -5785,7 +5808,7 @@ msgstr "ej. user@yoursite.com"
5785
  msgid "eg. https://webnus.net"
5786
  msgstr "ej. https://webnus.net"
5787
 
5788
- #: app/features/organizers.php:311 app/libraries/main.php:4922
5789
  #: app/skins/single.php:845
5790
  msgid "Other Organizers"
5791
  msgstr "En común"
@@ -5812,11 +5835,11 @@ msgstr "La reserva no puede cancelarse."
5812
  msgid "#"
5813
  msgstr ""
5814
 
5815
- #: app/features/profile/profile.php:56 app/libraries/main.php:2918
5816
  msgid "Status"
5817
  msgstr "Estado"
5818
 
5819
- #: app/features/profile/profile.php:59 app/libraries/main.php:2063
5820
  msgid "Attendees"
5821
  msgstr "Asistentes"
5822
 
@@ -5845,7 +5868,7 @@ msgstr ""
5845
  msgid "No bookings found!"
5846
  msgstr ""
5847
 
5848
- #: app/features/search.php:87 app/libraries/main.php:4888
5849
  msgid "label"
5850
  msgstr "etiqueta"
5851
 
@@ -5880,61 +5903,67 @@ msgstr ""
5880
  msgid "All of the day"
5881
  msgstr "Todo el día"
5882
 
5883
- #: app/features/speakers.php:108 app/features/speakers.php:177
5884
- #: app/features/speakers.php:253
5885
  msgid "Job Title"
5886
  msgstr ""
5887
 
5888
- #: app/features/speakers.php:111 app/features/speakers.php:178
5889
  msgid "Insert speaker job title."
5890
  msgstr ""
5891
 
5892
- #: app/features/speakers.php:119 app/features/speakers.php:182
5893
  msgid "Insert speaker phone number."
5894
  msgstr ""
5895
 
5896
- #: app/features/speakers.php:127 app/features/speakers.php:186
5897
  msgid "Insert speaker email address."
5898
  msgstr ""
5899
 
5900
- #: app/features/speakers.php:132 app/features/speakers.php:189
5901
  msgid "Facebook Page"
5902
  msgstr ""
5903
 
5904
- #: app/features/speakers.php:135 app/features/speakers.php:190
5905
  msgid "Insert URL of Facebook Page"
5906
  msgstr ""
5907
 
5908
- #: app/features/speakers.php:140 app/features/speakers.php:193
5909
  msgid "Instagram"
5910
  msgstr ""
5911
 
5912
- #: app/features/speakers.php:143 app/features/speakers.php:194
5913
  msgid "Insert URL of Instagram"
5914
  msgstr ""
5915
 
5916
- #: app/features/speakers.php:148 app/features/speakers.php:197
5917
  msgid "Twitter Page"
5918
  msgstr ""
5919
 
5920
- #: app/features/speakers.php:151 app/features/speakers.php:198
5921
  msgid "Insert URL of Twitter Page"
5922
  msgstr ""
5923
 
5924
- #: app/features/speakers.php:313
5925
  msgid "Sorry, You must insert speaker name!"
5926
  msgstr ""
5927
 
 
 
 
 
 
 
5928
  #: app/libraries/book.php:60
5929
  #, php-format
5930
  msgid "%s Price"
5931
  msgstr "%s Precio"
5932
 
5933
- #: app/libraries/book.php:553
5934
  msgid "Discount"
5935
  msgstr "Descuento"
5936
 
5937
- #: app/libraries/book.php:643 app/modules/booking/default.php:305
5938
  #: app/modules/booking/default.php:403
5939
  msgid "Download Invoice"
5940
  msgstr "Descargar factura"
@@ -6065,31 +6094,31 @@ msgstr "Vista carrusel"
6065
  msgid "Slider View"
6066
  msgstr "Vista del rotativo"
6067
 
6068
- #: app/libraries/main.php:382 app/libraries/main.php:4900
6069
  msgid "SU"
6070
  msgstr "DO"
6071
 
6072
- #: app/libraries/main.php:383 app/libraries/main.php:4901
6073
  msgid "MO"
6074
  msgstr "LU"
6075
 
6076
- #: app/libraries/main.php:384 app/libraries/main.php:4902
6077
  msgid "TU"
6078
  msgstr "MA"
6079
 
6080
- #: app/libraries/main.php:385 app/libraries/main.php:4903
6081
  msgid "WE"
6082
  msgstr "MI"
6083
 
6084
- #: app/libraries/main.php:386 app/libraries/main.php:4904
6085
  msgid "TH"
6086
  msgstr "JU"
6087
 
6088
- #: app/libraries/main.php:387 app/libraries/main.php:4905
6089
  msgid "FR"
6090
  msgstr "VI"
6091
 
6092
- #: app/libraries/main.php:388 app/libraries/main.php:4906
6093
  msgid "SA"
6094
  msgstr "SA"
6095
 
@@ -6235,198 +6264,209 @@ msgstr "¡No se pudo encontrar la reserva!"
6235
  msgid "Invoice is invalid."
6236
  msgstr "Reserva no válida."
6237
 
6238
- #: app/libraries/main.php:2004
 
 
 
 
 
 
 
 
 
 
 
6239
  msgid "Cannot find the booking!"
6240
  msgstr "¡No se pudo encontrar la reserva!"
6241
 
6242
- #: app/libraries/main.php:2004
6243
  msgid "Booking is invalid."
6244
  msgstr "Reserva no válida."
6245
 
6246
- #: app/libraries/main.php:2033
6247
  #, php-format
6248
  msgid "%s Invoice"
6249
  msgstr "%s Factura"
6250
 
6251
- #: app/libraries/main.php:2107
6252
  msgid "Billing"
6253
  msgstr "Facturación"
6254
 
6255
- #: app/libraries/main.php:2118
6256
  msgid "Total"
6257
  msgstr "Total "
6258
 
6259
- #: app/libraries/main.php:2175
6260
  msgid "Request is not valid."
6261
  msgstr "La solicitud no es válida."
6262
 
6263
- #: app/libraries/main.php:2175
6264
  msgid "iCal export stopped!"
6265
  msgstr "¡La exportación de iCal se detuvo!"
6266
 
6267
- #: app/libraries/main.php:2502 app/libraries/main.php:2532
6268
- #: app/libraries/main.php:2561 app/libraries/main.php:2591
6269
- #: app/libraries/main.php:2620 app/libraries/main.php:2649
6270
- #: app/libraries/main.php:2678 app/libraries/main.php:2707
6271
- #: app/libraries/main.php:2736 app/libraries/main.php:2760
6272
- #: app/libraries/main.php:2804 app/libraries/main.php:2848
6273
- #: app/libraries/main.php:2895 app/libraries/main.php:2942
6274
  msgid "Sort"
6275
  msgstr "Orden"
6276
 
6277
- #: app/libraries/main.php:2508 app/libraries/main.php:2538
6278
- #: app/libraries/main.php:2567 app/libraries/main.php:2597
6279
- #: app/libraries/main.php:2626 app/libraries/main.php:2655
6280
- #: app/libraries/main.php:2684 app/libraries/main.php:2713
6281
- #: app/libraries/main.php:2766 app/libraries/main.php:2810
6282
- #: app/libraries/main.php:2854 app/libraries/main.php:2901
6283
  msgid "Required Field"
6284
  msgstr "Campo obligatorio"
6285
 
6286
- #: app/libraries/main.php:2514 app/libraries/main.php:2544
6287
- #: app/libraries/main.php:2573 app/libraries/main.php:2603
6288
- #: app/libraries/main.php:2632 app/libraries/main.php:2661
6289
- #: app/libraries/main.php:2690 app/libraries/main.php:2719
6290
- #: app/libraries/main.php:2772 app/libraries/main.php:2816
6291
- #: app/libraries/main.php:2860 app/libraries/main.php:2907
6292
  msgid "Insert a label for this field"
6293
  msgstr "Introduce una etiqueta para este campo"
6294
 
6295
- #: app/libraries/main.php:2742
6296
  msgid "HTML and shortcode are allowed."
6297
  msgstr "Se permite HTML"
6298
 
6299
- #: app/libraries/main.php:2785 app/libraries/main.php:2829
6300
- #: app/libraries/main.php:2873
6301
  msgid "Option"
6302
  msgstr "Opción"
6303
 
6304
- #: app/libraries/main.php:2907
6305
  #, php-format
6306
  msgid "Instead of %s, the page title with a link will be show."
6307
  msgstr "En lugar de %s, se mostrará el título de la página con un enlace."
6308
 
6309
- #: app/libraries/main.php:2909
6310
  msgid "Agreement Page"
6311
  msgstr "Página de Acuerdo"
6312
 
6313
- #: app/libraries/main.php:2920
6314
  msgid "Checked by default"
6315
  msgstr "Marcado por defecto"
6316
 
6317
- #: app/libraries/main.php:2921
6318
  msgid "Unchecked by default"
6319
  msgstr "Sin marcar por defecto"
6320
 
6321
- #: app/libraries/main.php:2944
6322
  msgid "Insert a label for this option"
6323
  msgstr "Introduce una etiqueta para esta opción"
6324
 
6325
- #: app/libraries/main.php:2959
6326
  msgid "Free"
6327
  msgstr "Gratis"
6328
 
6329
- #: app/libraries/main.php:3565 app/libraries/main.php:5147
6330
  #, fuzzy
6331
  #| msgid "M.E. Calendar"
6332
  msgid "M.E. Calender"
6333
  msgstr "M.E. Calendario"
6334
 
6335
- #: app/libraries/main.php:3720
6336
  #, php-format
6337
  msgid "Copy of %s"
6338
  msgstr "Copia de %s"
6339
 
6340
- #: app/libraries/main.php:4393
6341
  msgid "Booked an event."
6342
  msgstr "Has reservado para un evento."
6343
 
6344
- #: app/libraries/main.php:4434
6345
  #, php-format
6346
  msgid "%s booked %s event."
6347
  msgstr "%s reservado %s evento."
6348
 
6349
- #: app/libraries/main.php:4883
6350
  msgid "Taxonomies"
6351
  msgstr "Taxonomías"
6352
 
6353
- #: app/libraries/main.php:4885
6354
  msgid "Category Plural Label"
6355
  msgstr "Categoría Etiqueta plural"
6356
 
6357
- #: app/libraries/main.php:4886
6358
  msgid "Category Singular Label"
6359
  msgstr "Categoría Etiqueta Singular"
6360
 
6361
- #: app/libraries/main.php:4887
6362
  msgid "Label Plural Label"
6363
  msgstr "Etiqueta plural"
6364
 
6365
- #: app/libraries/main.php:4888
6366
  msgid "Label Singular Label"
6367
  msgstr "Etiqueta singular de la etiqueta"
6368
 
6369
- #: app/libraries/main.php:4889
6370
  msgid "Location Plural Label"
6371
  msgstr "Ubicación Etiqueta plural"
6372
 
6373
- #: app/libraries/main.php:4890
6374
  msgid "Location Singular Label"
6375
  msgstr "Etiqueta de ubicación en singular"
6376
 
6377
- #: app/libraries/main.php:4891
6378
  msgid "Organizer Plural Label"
6379
  msgstr "Etiqueta del organizador en plural"
6380
 
6381
- #: app/libraries/main.php:4892
6382
  msgid "Organizer Singular Label"
6383
  msgstr "Etiqueta Singular del Organizador"
6384
 
6385
- #: app/libraries/main.php:4893
6386
  msgid "Speaker Plural Label"
6387
  msgstr ""
6388
 
6389
- #: app/libraries/main.php:4894
6390
  msgid "Speaker Singular Label"
6391
  msgstr ""
6392
 
6393
- #: app/libraries/main.php:4900
6394
  msgid "Sunday abbreviation"
6395
  msgstr "Abreviatura de Domingo"
6396
 
6397
- #: app/libraries/main.php:4901
6398
  msgid "Monday abbreviation"
6399
  msgstr "Abreviatura de Lunes"
6400
 
6401
- #: app/libraries/main.php:4902
6402
  msgid "Tuesday abbreviation"
6403
  msgstr "Abreviatura de Martes"
6404
 
6405
- #: app/libraries/main.php:4903
6406
  msgid "Wednesday abbreviation"
6407
  msgstr "Abreviatura de Miércoles "
6408
 
6409
- #: app/libraries/main.php:4904
6410
  msgid "Thursday abbreviation"
6411
  msgstr "Abreviatura de Jueves"
6412
 
6413
- #: app/libraries/main.php:4905
6414
  msgid "Friday abbreviation"
6415
  msgstr "Abreviatura de Viernes"
6416
 
6417
- #: app/libraries/main.php:4906
6418
  msgid "Saturday abbreviation"
6419
  msgstr "Abreviatura de Sábado "
6420
 
6421
- #: app/libraries/main.php:4910
6422
  msgid "Others"
6423
  msgstr "Otros"
6424
 
6425
- #: app/libraries/main.php:4912
6426
  msgid "Booking Success Message"
6427
  msgstr "Mensaje de reserva correcta"
6428
 
6429
- #: app/libraries/main.php:4912
6430
  msgid ""
6431
  "Thanks for your booking. Your tickets booked, booking verification might be "
6432
  "needed, please check your email."
@@ -6434,11 +6474,11 @@ msgstr ""
6434
  "Gracias por tu reserva. Tus entradas han sido reservadas, podrías necesitar "
6435
  "una verificación, por favor consulta tu correo."
6436
 
6437
- #: app/libraries/main.php:4913 app/widgets/single.php:131
6438
  msgid "Register Button"
6439
  msgstr "Botón de registro"
6440
 
6441
- #: app/libraries/main.php:4913 app/skins/available_spot/tpl.php:224
6442
  #: app/skins/carousel/render.php:158 app/skins/carousel/render.php:194
6443
  #: app/skins/grid/render.php:118 app/skins/grid/render.php:164
6444
  #: app/skins/grid/render.php:207 app/skins/grid/render.php:235
@@ -6455,11 +6495,11 @@ msgstr "Botón de registro"
6455
  msgid "REGISTER"
6456
  msgstr "REGISTRO"
6457
 
6458
- #: app/libraries/main.php:4914
6459
  msgid "View Detail Button"
6460
  msgstr "Ver detalle del botón"
6461
 
6462
- #: app/libraries/main.php:4914 app/skins/carousel/render.php:158
6463
  #: app/skins/carousel/render.php:194 app/skins/grid/render.php:118
6464
  #: app/skins/grid/render.php:164 app/skins/grid/render.php:207
6465
  #: app/skins/grid/render.php:235 app/skins/list/render.php:108
@@ -6470,59 +6510,59 @@ msgstr "Ver detalle del botón"
6470
  msgid "View Detail"
6471
  msgstr "Ver detalle"
6472
 
6473
- #: app/libraries/main.php:4915
6474
  msgid "Event Detail Button"
6475
  msgstr "Botón de detalle del evento"
6476
 
6477
- #: app/libraries/main.php:4915 app/skins/countdown/tpl.php:244
6478
  msgid "Event Detail"
6479
  msgstr "Detalle del evento"
6480
 
6481
- #: app/libraries/main.php:4917
6482
  msgid "More Info Link"
6483
  msgstr "Enlace a Más Información"
6484
 
6485
- #: app/libraries/main.php:4920
6486
  msgid "Ticket (Singular)"
6487
  msgstr "Entrada (Singular)"
6488
 
6489
- #: app/libraries/main.php:4921
6490
  msgid "Tickets (Plural)"
6491
  msgstr "Entradas (Plural)"
6492
 
6493
- #: app/libraries/main.php:5007
6494
  msgid "EventON"
6495
  msgstr "EventON"
6496
 
6497
- #: app/libraries/main.php:5008
6498
  msgid "The Events Calendar"
6499
  msgstr "The Events Calendar"
6500
 
6501
- #: app/libraries/main.php:5009
6502
  msgid "Events Schedule WP Plugin"
6503
  msgstr "Events Schedule WP Plugin"
6504
 
6505
- #: app/libraries/main.php:5010
6506
  msgid "Calendarize It"
6507
  msgstr "Ponlo al calendario"
6508
 
6509
- #: app/libraries/main.php:5084 app/libraries/main.php:5104
6510
  msgid "Confirmed"
6511
  msgstr ""
6512
 
6513
- #: app/libraries/main.php:5085 app/libraries/main.php:5112
6514
  msgid "Rejected"
6515
  msgstr ""
6516
 
6517
- #: app/libraries/main.php:5086 app/libraries/main.php:5108
6518
  msgid "Pending"
6519
  msgstr ""
6520
 
6521
- #: app/libraries/main.php:5134
6522
  msgid "Waiting"
6523
  msgstr ""
6524
 
6525
- #: app/libraries/main.php:5339 app/libraries/render.php:382
6526
  msgid "Skin controller does not exist."
6527
  msgstr "No existe skin controller."
6528
 
@@ -6558,23 +6598,23 @@ msgstr "Se ha añadido un nuevo evento."
6558
  msgid "Your event is published."
6559
  msgstr "El evento a sido publicado."
6560
 
6561
- #: app/libraries/notifications.php:821
6562
  msgid "to"
6563
  msgstr "a"
6564
 
6565
- #: app/libraries/notifications.php:834 app/modules/export/details.php:27
6566
  msgid "+ Add to Google Calendar"
6567
  msgstr "+ Añadir Google Calendar"
6568
 
6569
- #: app/libraries/notifications.php:835 app/modules/export/details.php:28
6570
  msgid "+ iCal export"
6571
  msgstr "Exportación + iCal"
6572
 
6573
- #: app/libraries/notifications.php:898
6574
  msgid "Yes"
6575
  msgstr "Sí"
6576
 
6577
- #: app/libraries/notifications.php:898
6578
  msgid "No"
6579
  msgstr "No"
6580
 
4
  msgstr ""
5
  "Project-Id-Version: Plugins - Modern Events Calendar Lite - Stable (latest "
6
  "release)\n"
7
+ "POT-Creation-Date: 2019-10-30 12:41+0330\n"
8
+ "PO-Revision-Date: 2019-10-30 12:43+0330\n"
9
  "Last-Translator: \n"
10
  "Language-Team: \n"
11
  "Language: es\n"
71
  msgstr "Ajustes"
72
 
73
  #: app/features/contextual.php:62 app/features/events.php:2415
74
+ #: app/features/mec/booking.php:439 app/features/mec/support.php:29
75
  #: app/libraries/main.php:554
76
  msgid "Booking Form"
77
  msgstr "Formulario de Reservas"
91
  "www.youtube.com/embed/YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></"
92
  "iframe>"
93
 
94
+ #: app/features/contextual.php:70 app/features/mec/booking.php:557
95
  #: app/features/mec/support.php:36 app/libraries/main.php:555
96
  msgid "Payment Gateways"
97
  msgstr "Pasarelas de pago"
245
  msgid "Booking"
246
  msgstr "Reserva"
247
 
248
+ #: app/features/contextual.php:318 app/features/mec/booking.php:261
249
  #: app/libraries/main.php:551
250
  msgid "Coupons"
251
  msgstr "Cupones"
321
  #: app/features/mec/meta_boxes/search_form.php:514
322
  #: app/features/mec/meta_boxes/search_form.php:575
323
  #: app/features/mec/settings.php:720 app/features/mec/single.php:204
324
+ #: app/features/search.php:67 app/libraries/main.php:4897
325
  #: app/libraries/skins.php:808 app/skins/single.php:559
326
  #: app/skins/single/default.php:185 app/skins/single/default.php:397
327
  #: app/skins/single/m1.php:170 app/skins/single/m2.php:102
331
 
332
  #: app/features/events.php:176 app/features/events.php:3212
333
  #: app/features/fes/form.php:737 app/features/mec.php:336
334
+ #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:4896
335
  msgid "Categories"
336
  msgstr "Categorías"
337
 
338
  #: app/features/events.php:186 app/features/labels.php:71
339
  #: app/features/locations.php:69 app/features/organizers.php:69
340
+ #: app/features/speakers.php:72
341
  #, php-format
342
  msgid "All %s"
343
  msgstr "Todos %s"
344
 
345
  #: app/features/events.php:187 app/features/labels.php:72
346
  #: app/features/locations.php:70 app/features/organizers.php:70
347
+ #: app/features/speakers.php:73
348
  #, php-format
349
  msgid "Edit %s"
350
  msgstr "Editar %s"
351
 
352
  #: app/features/events.php:188 app/features/labels.php:73
353
  #: app/features/locations.php:71 app/features/organizers.php:71
354
+ #: app/features/speakers.php:74
355
  #, php-format
356
  msgid "View %s"
357
  msgstr "Ver %s"
358
 
359
  #: app/features/events.php:189 app/features/labels.php:74
360
  #: app/features/locations.php:72 app/features/organizers.php:72
361
+ #: app/features/speakers.php:75
362
  #, php-format
363
  msgid "Update %s"
364
  msgstr "Actualizar %s"
365
 
366
  #: app/features/events.php:190 app/features/labels.php:75
367
  #: app/features/locations.php:73 app/features/organizers.php:73
368
+ #: app/features/speakers.php:76
369
  #, php-format
370
  msgid "Add New %s"
371
  msgstr "Añadir nuevo %s"
372
 
373
  #: app/features/events.php:191 app/features/labels.php:76
374
  #: app/features/locations.php:74 app/features/organizers.php:74
375
+ #: app/features/speakers.php:77
376
  #, php-format
377
  msgid "New %s Name"
378
  msgstr "Nuevo %s Nombre"
379
 
380
  #: app/features/events.php:192 app/features/labels.php:77
381
  #: app/features/locations.php:75 app/features/organizers.php:75
382
+ #: app/features/speakers.php:78
383
  #, php-format
384
  msgid "Popular %s"
385
  msgstr "Popular %s"
386
 
387
  #: app/features/events.php:193 app/features/labels.php:78
388
  #: app/features/locations.php:76 app/features/organizers.php:76
389
+ #: app/features/speakers.php:79
390
  #, php-format
391
  msgid "Search %s"
392
  msgstr "Buscar %s"
415
  #: app/features/fes.php:224 app/features/fes.php:332
416
  #: app/features/fes/form.php:669 app/features/labels.php:178
417
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
418
+ #: app/features/profile/profile.php:168 app/libraries/notifications.php:886
419
  #: app/modules/booking/steps/form.php:37
420
  msgid "Name"
421
  msgstr "Nombre"
423
  #: app/features/events.php:463 app/features/events.php:2408
424
  #: app/features/events.php:2484 app/features/fes.php:224
425
  #: app/features/fes.php:332 app/features/fes/form.php:665
426
+ #: app/features/mec/booking.php:57 app/features/mec/booking.php:490
427
  #: app/features/organizers.php:111 app/features/organizers.php:152
428
+ #: app/features/profile/profile.php:171 app/features/speakers.php:126
429
+ #: app/features/speakers.php:187 app/libraries/main.php:1472
430
+ #: app/libraries/main.php:1541 app/libraries/main.php:2603
431
+ #: app/libraries/notifications.php:887 app/modules/booking/steps/form.php:46
432
  #: app/modules/booking/steps/form.php:84 app/skins/single.php:812
433
  #: app/skins/single.php:867 app/skins/single/default.php:227
434
  #: app/skins/single/default.php:439 app/skins/single/m1.php:107
524
  #: app/features/events.php:2324 app/features/events.php:2337
525
  #: app/features/fes/form.php:631 app/features/locations.php:299
526
  #: app/features/mec/booking.php:108 app/features/mec/booking.php:158
527
+ #: app/features/mec/booking.php:171 app/features/mec/booking.php:187
528
+ #: app/features/mec/booking.php:306 app/features/mec/booking.php:335
529
+ #: app/features/mec/booking.php:383 app/features/mec/booking.php:393
530
+ #: app/features/mec/booking.php:415 app/features/mec/booking.php:425
531
+ #: app/features/mec/dashboard.php:71
532
  #: app/features/mec/meta_boxes/display_options.php:66
533
  #: app/features/mec/meta_boxes/display_options.php:79
534
  #: app/features/mec/meta_boxes/display_options.php:92
564
  #: app/features/mec/modules.php:154 app/features/mec/modules.php:312
565
  #: app/features/mec/notifications.php:54 app/features/mec/notifications.php:111
566
  #: app/features/mec/notifications.php:163
567
+ #: app/features/mec/notifications.php:223
568
+ #: app/features/mec/notifications.php:291
569
+ #: app/features/mec/notifications.php:354
570
+ #: app/features/mec/notifications.php:365
571
+ #: app/features/mec/notifications.php:427
572
+ #: app/features/mec/notifications.php:473 app/features/mec/settings.php:66
573
  #: app/features/mec/settings.php:85 app/features/mec/settings.php:112
574
  #: app/features/mec/settings.php:147 app/features/mec/settings.php:168
575
  #: app/features/mec/settings.php:188 app/features/mec/settings.php:265
806
  #: app/features/events.php:1153 app/features/events.php:3434
807
  #: app/features/events.php:3476 app/features/fes/form.php:707
808
  #: app/features/ix.php:2743 app/features/ix.php:2784
809
+ #: app/features/mec/settings.php:576 app/libraries/main.php:4929
810
  #: app/widgets/single.php:103
811
  msgid "Event Cost"
812
  msgstr "Coste del evento"
813
 
814
  #: app/features/events.php:1157 app/features/fes/form.php:710
815
+ #: app/libraries/main.php:4930 app/skins/single.php:582
816
  #: app/skins/single/default.php:119 app/skins/single/default.php:331
817
  #: app/skins/single/m1.php:49 app/skins/single/modern.php:199
818
  msgid "Cost"
830
 
831
  #: app/features/events.php:1189 app/features/events.php:2485
832
  #: app/features/fes.php:224 app/features/fes.php:332
833
+ #: app/features/mec/booking.php:491 app/features/profile/profile.php:53
834
+ #: app/libraries/main.php:2059 app/libraries/main.php:2661
835
  #: app/modules/booking/steps/tickets.php:22
836
  #: app/modules/next-event/details.php:90 app/skins/single.php:637
837
  #: app/skins/single/default.php:83 app/skins/single/default.php:295
876
  #: app/features/events.php:2313 app/features/events.php:3240
877
  #: app/features/events.php:3434 app/features/events.php:3476
878
  #: app/features/fes/form.php:226 app/features/ix.php:2743
879
+ #: app/features/ix.php:2784 app/features/mec/booking.php:375
880
+ #: app/features/mec/booking.php:407 app/features/mec/styling.php:115
881
  msgid "Title"
882
  msgstr "Titulo"
883
 
888
  #: app/features/events.php:2032 app/features/events.php:2059
889
  #: app/features/events.php:2158 app/features/events.php:2194
890
  #: app/features/events.php:2301 app/features/events.php:2343
891
+ #: app/features/mec/booking.php:318 app/features/mec/booking.php:347
892
+ #: app/features/mec/booking.php:398 app/features/mec/booking.php:430
893
+ #: app/libraries/main.php:2522 app/libraries/main.php:2552
894
+ #: app/libraries/main.php:2581 app/libraries/main.php:2611
895
+ #: app/libraries/main.php:2640 app/libraries/main.php:2669
896
+ #: app/libraries/main.php:2698 app/libraries/main.php:2727
897
+ #: app/libraries/main.php:2749 app/libraries/main.php:2780
898
+ #: app/libraries/main.php:2824 app/libraries/main.php:2868
899
+ #: app/libraries/main.php:2915 app/libraries/main.php:2954
900
  msgid "Remove"
901
  msgstr "Eliminar"
902
 
923
  #: app/features/events.php:1336 app/features/events.php:1369
924
  #: app/features/events.php:1430 app/features/fes/form.php:831
925
  #: app/features/mec.php:344 app/features/mec/modules.php:52
926
+ #: app/features/mec/settings.php:624 app/features/speakers.php:62
927
+ #: app/libraries/main.php:559 app/libraries/main.php:4904
928
  #: app/modules/speakers/details.php:18
929
  msgid "Speakers"
930
  msgstr ""
941
  msgstr "Enlaces de eventos"
942
 
943
  #: app/features/events.php:1464 app/features/events.php:1470
944
+ #: app/features/fes/form.php:686 app/libraries/main.php:4927
945
  msgid "Event Link"
946
  msgstr "Enlace del evento"
947
 
968
  msgstr ""
969
 
970
  #: app/features/events.php:1480 app/features/events.php:1493
971
+ #: app/features/fes/form.php:691 app/libraries/main.php:4928
972
  #: app/skins/single.php:656 app/skins/single/default.php:133
973
  #: app/skins/single/default.php:345 app/skins/single/m1.php:191
974
  #: app/skins/single/m2.php:124 app/skins/single/modern.php:132
1037
  msgstr ""
1038
 
1039
  #: app/features/events.php:1638 app/libraries/book.php:60
1040
+ #: app/libraries/main.php:4932 app/modules/booking/steps/tickets.php:40
1041
  msgid "Tickets"
1042
  msgstr "Tickets"
1043
 
1073
  #: app/features/events.php:1996 app/features/events.php:1999
1074
  #: app/features/events.php:2055 app/features/events.php:2272
1075
  #: app/features/events.php:2276 app/features/events.php:2318
1076
+ #: app/features/events.php:2321 app/features/mec/booking.php:379
1077
+ #: app/features/mec/booking.php:382 app/features/mec/booking.php:411
1078
+ #: app/features/mec/booking.php:414
1079
  msgid "Price"
1080
  msgstr "Precio"
1081
 
1123
  msgstr "Tasas"
1124
 
1125
  #: app/features/events.php:2132 app/features/events.php:2170
1126
+ #: app/features/mec/booking.php:298 app/features/mec/booking.php:327
1127
  msgid "Fee Title"
1128
  msgstr "Título de la cuota"
1129
 
1130
  #: app/features/events.php:2138 app/features/events.php:2142
1131
  #: app/features/events.php:2175 app/features/events.php:2178
1132
+ #: app/features/mec/booking.php:302 app/features/mec/booking.php:305
1133
+ #: app/features/mec/booking.php:331 app/features/mec/booking.php:334
1134
  msgid "Amount"
1135
  msgstr "Cantidad"
1136
 
1137
  #: app/features/events.php:2143 app/features/events.php:2179
1138
+ #: app/features/mec/booking.php:306 app/features/mec/booking.php:335
1139
  msgid ""
1140
  "Fee amount, considered as fixed amount if you set the type to amount "
1141
  "otherwise considered as percentage"
1144
  "cantidad, si no será considerada como porcentaje"
1145
 
1146
  #: app/features/events.php:2152 app/features/events.php:2188
1147
+ #: app/features/mec/booking.php:313 app/features/mec/booking.php:342
1148
  msgid "Percent"
1149
  msgstr "Porcentaje"
1150
 
1151
  #: app/features/events.php:2153 app/features/events.php:2189
1152
+ #: app/features/mec/booking.php:314 app/features/mec/booking.php:343
1153
  msgid "Amount (Per Ticket)"
1154
  msgstr "Cantidad (Por ticket)"
1155
 
1156
  #: app/features/events.php:2154 app/features/events.php:2190
1157
+ #: app/features/mec/booking.php:315 app/features/mec/booking.php:344
1158
  msgid "Amount (Per Booking)"
1159
  msgstr "Cantidad (por reservas)"
1160
 
1163
  msgstr ""
1164
 
1165
  #: app/features/events.php:2277 app/features/events.php:2322
1166
+ #: app/features/mec/booking.php:383 app/features/mec/booking.php:415
1167
  msgid "Option Price"
1168
  msgstr ""
1169
 
1170
  #: app/features/events.php:2287 app/features/events.php:2291
1171
  #: app/features/events.php:2331 app/features/events.php:2334
1172
+ #: app/features/mec/booking.php:389 app/features/mec/booking.php:392
1173
+ #: app/features/mec/booking.php:421 app/features/mec/booking.php:424
1174
  msgid "Maximum Per Ticket"
1175
  msgstr ""
1176
 
1177
  #: app/features/events.php:2292 app/features/events.php:2335
1178
+ #: app/features/mec/booking.php:393 app/features/mec/booking.php:425
1179
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
1180
  msgstr ""
1181
 
1182
+ #: app/features/events.php:2481 app/features/mec/booking.php:487
1183
+ #: app/libraries/main.php:2544
1184
  #, fuzzy
1185
  #| msgid "Name"
1186
  msgid "MEC Name"
1187
  msgstr "Nombre"
1188
 
1189
+ #: app/features/events.php:2482 app/features/mec/booking.php:488
1190
+ #: app/libraries/main.php:2573
1191
  #, fuzzy
1192
  #| msgid "Email"
1193
  msgid "MEC Email"
1194
  msgstr "Correo electrónico"
1195
 
1196
+ #: app/features/events.php:2483 app/features/mec/booking.php:489
1197
+ #: app/libraries/main.php:2514
1198
  msgid "Text"
1199
  msgstr "Texto"
1200
 
1201
+ #: app/features/events.php:2486 app/features/mec/booking.php:492
1202
  #: app/features/organizers.php:103 app/features/organizers.php:148
1203
+ #: app/features/speakers.php:118 app/features/speakers.php:183
1204
+ #: app/features/speakers.php:256 app/libraries/main.php:2690
1205
  msgid "Tel"
1206
  msgstr "Tel"
1207
 
1208
+ #: app/features/events.php:2487 app/features/mec/booking.php:493
1209
+ #: app/libraries/main.php:2632
1210
  msgid "File"
1211
  msgstr ""
1212
 
1213
+ #: app/features/events.php:2488 app/features/mec/booking.php:494
1214
+ #: app/libraries/main.php:2719
1215
  msgid "Textarea"
1216
  msgstr "Área de texto"
1217
 
1218
+ #: app/features/events.php:2489 app/features/mec/booking.php:495
1219
+ #: app/libraries/main.php:2772
1220
  msgid "Checkboxes"
1221
  msgstr "Checkboxes"
1222
 
1223
+ #: app/features/events.php:2490 app/features/mec/booking.php:496
1224
+ #: app/libraries/main.php:2816
1225
  msgid "Radio Buttons"
1226
  msgstr "Botón tipo radio"
1227
 
1228
+ #: app/features/events.php:2491 app/features/mec/booking.php:497
1229
  #: app/features/mec/meta_boxes/search_form.php:34
1230
  #: app/features/mec/meta_boxes/search_form.php:41
1231
  #: app/features/mec/meta_boxes/search_form.php:48
1294
  #: app/features/mec/meta_boxes/search_form.php:599
1295
  #: app/features/mec/meta_boxes/search_form.php:606
1296
  #: app/features/mec/meta_boxes/search_form.php:613
1297
+ #: app/features/mec/meta_boxes/search_form.php:620 app/libraries/main.php:2860
1298
  msgid "Dropdown"
1299
  msgstr "Desplegable"
1300
 
1301
+ #: app/features/events.php:2492 app/features/mec/booking.php:498
1302
+ #: app/libraries/main.php:2907
1303
  msgid "Agreement"
1304
  msgstr "Acuerdo"
1305
 
1306
+ #: app/features/events.php:2493 app/features/mec/booking.php:499
1307
+ #: app/libraries/main.php:2748
1308
  msgid "Paragraph"
1309
  msgstr "Párrafo"
1310
 
1343
  #: app/features/mec/meta_boxes/search_form.php:521
1344
  #: app/features/mec/meta_boxes/search_form.php:582
1345
  #: app/features/mec/settings.php:726 app/features/mec/single.php:212
1346
+ #: app/features/search.php:71 app/libraries/main.php:2053
1347
+ #: app/libraries/main.php:4901 app/libraries/skins.php:834
1348
  #: app/skins/single.php:486 app/skins/single.php:907
1349
  #: app/skins/single/default.php:169 app/skins/single/default.php:381
1350
  #: app/skins/single/m1.php:155 app/skins/single/m2.php:87
1369
  #: app/features/organizers.php:58 app/features/organizers.php:204
1370
  #: app/features/organizers.php:260 app/features/organizers.php:262
1371
  #: app/features/organizers.php:271 app/features/search.php:75
1372
+ #: app/libraries/main.php:4903 app/libraries/skins.php:860
1373
  #: app/skins/single.php:795 app/skins/single/default.php:210
1374
  #: app/skins/single/default.php:422 app/skins/single/m1.php:90
1375
  #: app/skins/single/m2.php:22 app/skins/single/modern.php:31
1413
  #: app/features/fes.php:224 app/features/fes.php:332 app/features/ix.php:2743
1414
  #: app/features/ix.php:2784 app/features/labels.php:177
1415
  #: app/features/locations.php:229 app/features/organizers.php:203
1416
+ #: app/features/speakers.php:253
1417
  msgid "ID"
1418
  msgstr "ID"
1419
 
1463
  msgstr "¡El evento ha sido eliminado!"
1464
 
1465
  #: app/features/fes.php:224 app/features/fes.php:332
1466
+ #: app/features/profile/profile.php:174 app/libraries/main.php:2088
1467
+ #: app/libraries/main.php:4931
1468
  msgid "Ticket"
1469
  msgstr "Ticket"
1470
 
1471
  #: app/features/fes.php:224 app/features/fes.php:332
1472
+ #: app/libraries/main.php:2065
1473
  msgid "Transaction ID"
1474
  msgstr "ID Transacción"
1475
 
1563
 
1564
  #: app/features/fes/form.php:763 app/features/labels.php:61
1565
  #: app/features/labels.php:221 app/features/mec.php:337
1566
+ #: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:4898
1567
  #: app/skins/single.php:685 app/skins/single/default.php:148
1568
  #: app/skins/single/default.php:360 app/skins/single/m1.php:64
1569
  #: app/skins/single/modern.php:214
1896
  #: app/features/ix/export_g_calendar.php:147
1897
  #: app/features/ix/export_g_calendar.php:164
1898
  #: app/features/mec/notifications.php:92 app/features/mec/notifications.php:144
1899
+ #: app/features/mec/notifications.php:198
1900
+ #: app/features/mec/notifications.php:399
1901
  msgid "Add to Google Calendar"
1902
  msgstr "Añadir a Google Calendar"
1903
 
1904
+ #: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:629
1905
+ #: app/features/mec/modules.php:392 app/features/mec/notifications.php:591
1906
  #: app/features/mec/settings.php:895 app/features/mec/single.php:269
1907
  msgid "Checking ..."
1908
  msgstr "Verificando…"
1951
  msgstr "ICS Feed"
1952
 
1953
  #: app/features/ix/import.php:46 app/features/mec/booking.php:91
1954
+ #: app/features/mec/booking.php:264 app/features/mec/booking.php:282
1955
+ #: app/features/mec/booking.php:359
1956
  #: app/features/mec/meta_boxes/display_options.php:150
1957
  #: app/features/mec/meta_boxes/display_options.php:315
1958
  #: app/features/mec/modules.php:70 app/features/mec/modules.php:211
1962
  msgstr "Se requiere %s para usar esta funcionalidad."
1963
 
1964
  #: app/features/ix/import.php:46 app/features/ix/sync.php:22
1965
+ #: app/features/mec/booking.php:91 app/features/mec/booking.php:264
1966
+ #: app/features/mec/booking.php:282 app/features/mec/booking.php:359
1967
  #: app/features/mec/meta_boxes/display_options.php:150
1968
  #: app/features/mec/meta_boxes/display_options.php:315
1969
  #: app/features/mec/meta_boxes/display_options.php:330
2149
 
2150
  #: app/features/ix/sync.php:32 app/features/ix/sync.php:41
2151
  #: app/features/ix/sync.php:52 app/features/ix/sync.php:63
2152
+ #: app/features/mec/notifications.php:342
2153
  msgid "Important Note"
2154
  msgstr "Nota importante"
2155
 
2283
  msgstr ""
2284
 
2285
  #: app/features/labels.php:79 app/features/locations.php:77
2286
+ #: app/features/organizers.php:77 app/features/speakers.php:80
2287
  #, php-format
2288
  msgid "← Back to %s"
2289
  msgstr ""
2329
  msgstr ""
2330
 
2331
  #: app/features/labels.php:118 app/features/labels.php:143
2332
+ #: app/libraries/main.php:5144 app/skins/agenda/render.php:41
2333
  #: app/skins/available_spot/tpl.php:42 app/skins/carousel/render.php:45
2334
  #: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:32
2335
  #: app/skins/daily_view/render.php:52 app/skins/grid/render.php:50
2347
  msgstr ""
2348
 
2349
  #: app/features/labels.php:180 app/features/locations.php:232
2350
+ #: app/features/organizers.php:206 app/features/speakers.php:257
2351
  #: app/modules/booking/steps/tickets.php:38
2352
  msgid "Count"
2353
  msgstr "Contador"
2364
 
2365
  #: app/features/locations.php:59 app/features/mec.php:338
2366
  #: app/features/mec/dashboard.php:243 app/features/mec/meta_boxes/filter.php:96
2367
+ #: app/libraries/main.php:4900
2368
  msgid "Locations"
2369
  msgstr "Lugar"
2370
 
2397
 
2398
  #: app/features/locations.php:138 app/features/locations.php:180
2399
  #: app/features/organizers.php:127 app/features/organizers.php:160
2400
+ #: app/features/speakers.php:158 app/features/speakers.php:203
2401
  msgid "Thumbnail"
2402
  msgstr "Miniatura"
2403
 
2404
  #: app/features/locations.php:143 app/features/locations.php:183
2405
  #: app/features/organizers.php:132 app/features/organizers.php:163
2406
+ #: app/features/speakers.php:163 app/features/speakers.php:206
2407
  msgid "Upload/Add image"
2408
  msgstr "Subir/Añadir imagen"
2409
 
2411
  #: app/features/locations.php:340 app/features/locations.php:347
2412
  #: app/features/organizers.php:133 app/features/organizers.php:164
2413
  #: app/features/organizers.php:299 app/features/organizers.php:306
2414
+ #: app/features/speakers.php:164 app/features/speakers.php:207
2415
  msgid "Remove image"
2416
  msgstr "Eliminar imagen"
2417
 
2471
  msgid "Don't show map in single event page"
2472
  msgstr "No mostrar el mapa en la página del detalle del evento"
2473
 
2474
+ #: app/features/locations.php:356 app/libraries/main.php:4934
2475
  #, fuzzy
2476
  #| msgid "Locations"
2477
  msgid "Other Locations"
2528
 
2529
  #: app/features/mec.php:339 app/features/mec/dashboard.php:250
2530
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2531
+ #: app/libraries/main.php:4902
2532
  msgid "Organizers"
2533
  msgstr "Organizadores"
2534
 
2628
  msgid "Search..."
2629
  msgstr "Buscar %s"
2630
 
2631
+ #: app/features/mec/booking.php:72 app/features/mec/booking.php:505
2632
+ #: app/features/mec/booking.php:585 app/features/mec/booking.php:594
2633
+ #: app/features/mec/booking.php:604 app/features/mec/booking.php:646
2634
+ #: app/features/mec/booking.php:660 app/features/mec/messages.php:15
2635
  #: app/features/mec/messages.php:51 app/features/mec/messages.php:60
2636
  #: app/features/mec/messages.php:94 app/features/mec/messages.php:103
2637
  #: app/features/mec/modules.php:25 app/features/mec/modules.php:357
2638
  #: app/features/mec/modules.php:367 app/features/mec/modules.php:409
2639
  #: app/features/mec/modules.php:423 app/features/mec/notifications.php:14
2640
+ #: app/features/mec/notifications.php:500
2641
+ #: app/features/mec/notifications.php:512
2642
+ #: app/features/mec/notifications.php:608
2643
+ #: app/features/mec/notifications.php:622 app/features/mec/settings.php:34
2644
  #: app/features/mec/settings.php:844 app/features/mec/settings.php:854
2645
  #: app/features/mec/settings.php:912 app/features/mec/settings.php:926
2646
  #: app/features/mec/single.php:17 app/features/mec/single.php:234
2738
  "Se redirecciona al usuario a esta pagina una vez que completa la reserva. "
2739
  "Déjalo vacío si lo deseas desactivado."
2740
 
2741
+ #: app/features/mec/booking.php:165 app/features/mec/booking.php:170
2742
+ #, fuzzy
2743
+ #| msgid "Thank You Page"
2744
+ msgid "Thank You Page Time Interval"
2745
+ msgstr "Página de agradecimiento"
2746
+
2747
+ #: app/features/mec/booking.php:167
2748
+ msgid "2000 mean 2 seconds"
2749
+ msgstr ""
2750
+
2751
+ #: app/features/mec/booking.php:171
2752
+ msgid ""
2753
+ "Waiting time before redirecting to thank you page. It's in miliseconds so "
2754
+ "2000 means 2 seconds."
2755
+ msgstr ""
2756
+
2757
+ #: app/features/mec/booking.php:182
2758
  msgid "Enable Express Attendees Form"
2759
  msgstr "Habilitar formulario de asistentes exprés"
2760
 
2761
+ #: app/features/mec/booking.php:186 app/modules/booking/steps/form.php:52
2762
  msgid "Attendees Form"
2763
  msgstr "Asistentes"
2764
 
2765
+ #: app/features/mec/booking.php:187
2766
  msgid ""
2767
  "Users are able to apply first attendee information for other attendees in "
2768
  "the booking form."
2770
  "Los usuarios son capaces de copiar la información del primer invitado para "
2771
  "los demás invitados en el formulario de reservas."
2772
 
2773
+ #: app/features/mec/booking.php:200
2774
  #, fuzzy
2775
  #| msgid "Download Invoice"
2776
  msgid "Enable Invoice"
2777
  msgstr "Descargar factura"
2778
 
2779
+ #: app/features/mec/booking.php:211
2780
  #, fuzzy
2781
  #| msgid "Enable booking notification"
2782
  msgid "Enable Booking for Ongoing Events"
2783
  msgstr "Activar notificación de reservas"
2784
 
2785
+ #: app/features/mec/booking.php:216
2786
  msgid "Email verification"
2787
  msgstr "Verificación por email"
2788
 
2789
+ #: app/features/mec/booking.php:222
2790
  msgid "Auto verification for free bookings"
2791
  msgstr "Auto verificación para reservas gratuitas"
2792
 
2793
+ #: app/features/mec/booking.php:231
2794
  msgid "Auto verification for paid bookings"
2795
  msgstr "Auto verificación para reservas de pago"
2796
 
2797
+ #: app/features/mec/booking.php:235 app/features/mec/notifications.php:151
2798
  #: app/libraries/main.php:573
2799
  msgid "Booking Confirmation"
2800
  msgstr "Confirmación de reserva"
2801
 
2802
+ #: app/features/mec/booking.php:241
2803
  msgid "Auto confirmation for free bookings"
2804
  msgstr "Confirmación automática para reservas gratuitas"
2805
 
2806
+ #: app/features/mec/booking.php:250
2807
  msgid "Auto confirmation for paid bookings"
2808
  msgstr "Confirmación automática para reservas pagas"
2809
 
2810
+ #: app/features/mec/booking.php:269
2811
  msgid "Enable coupons module"
2812
  msgstr "Activar módulo de cupones"
2813
 
2814
+ #: app/features/mec/booking.php:271
2815
  msgid ""
2816
  "After enabling and saving the settings,, you should reload the page to see a "
2817
  "new menu on the Dashboard > Booking"
2818
  msgstr ""
2819
 
2820
+ #: app/features/mec/booking.php:279 app/libraries/main.php:552
2821
  msgid "Taxes / Fees"
2822
  msgstr "Impuestos/Tasas"
2823
 
2824
+ #: app/features/mec/booking.php:287
2825
  msgid "Enable taxes / fees module"
2826
  msgstr "Activar módulo de Impuestos/Tasas"
2827
 
2828
+ #: app/features/mec/booking.php:292
2829
  msgid "Add Fee"
2830
  msgstr "Nueva tasa"
2831
 
2832
+ #: app/features/mec/booking.php:356 app/libraries/main.php:553
2833
  msgid "Ticket Variations & Options"
2834
  msgstr ""
2835
 
2836
+ #: app/features/mec/booking.php:364
2837
  msgid "Enable ticket options module"
2838
  msgstr ""
2839
 
2840
+ #: app/features/mec/booking.php:369
2841
  msgid "Add Variation / Option"
2842
  msgstr ""
2843
 
2844
+ #: app/features/mec/booking.php:572
2845
  msgid "Enable Organizer Payment Module"
2846
  msgstr ""
2847
 
2848
+ #: app/features/mec/booking.php:576
2849
  #, fuzzy
2850
  #| msgid "Organizer Tel"
2851
  msgid "Organizer Payment"
2852
  msgstr "Teléfono del Organizador"
2853
 
2854
+ #: app/features/mec/booking.php:577
2855
  msgid ""
2856
  "By enabling this module, organizers are able to insert their own payment "
2857
  "credentials for enabled gateways per event and receive the payments directly!"
2858
  msgstr ""
2859
 
2860
+ #: app/features/mec/booking.php:624 app/features/mec/messages.php:78
2861
+ #: app/features/mec/modules.php:387 app/features/mec/notifications.php:586
2862
  #: app/features/mec/settings.php:890 app/features/mec/single.php:264
2863
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:296
2864
  msgid "Saved"
2865
  msgstr "Guardado"
2866
 
2867
+ #: app/features/mec/booking.php:625 app/features/mec/messages.php:79
2868
+ #: app/features/mec/modules.php:388 app/features/mec/notifications.php:587
2869
  #: app/features/mec/settings.php:891 app/features/mec/single.php:265
2870
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:297
2871
  msgid "Settings Saved!"
2872
  msgstr "¡Ajustes guardados!"
2873
 
2874
+ #: app/features/mec/booking.php:627 app/features/mec/booking.php:649
2875
  #: app/features/mec/modules.php:390 app/features/mec/modules.php:412
2876
+ #: app/features/mec/notifications.php:589
2877
+ #: app/features/mec/notifications.php:611 app/features/mec/settings.php:893
2878
  #: app/features/mec/settings.php:915 app/features/mec/single.php:267
2879
+ #: app/features/mec/single.php:289 app/libraries/main.php:5143
2880
  msgid "Verified"
2881
  msgstr "Verificado"
2882
 
2883
+ #: app/features/mec/booking.php:651 app/features/mec/modules.php:414
2884
+ #: app/features/mec/notifications.php:613 app/features/mec/settings.php:917
2885
  #: app/features/mec/single.php:291
2886
  msgid "Please Refresh Page"
2887
  msgstr "Por favor, actualiza la página"
3850
  #: app/features/mec/meta_boxes/search_form.php:535
3851
  #: app/features/mec/meta_boxes/search_form.php:596
3852
  #: app/features/mec/settings.php:739 app/features/mec/single.php:217
3853
+ #: app/features/search.php:79 app/features/speakers.php:61
3854
+ #: app/features/speakers.php:254 app/libraries/main.php:4905
3855
  #: app/libraries/skins.php:886
3856
  msgid "Speaker"
3857
  msgstr ""
4123
 
4124
  #: app/features/mec/notifications.php:45 app/features/mec/notifications.php:102
4125
  #: app/features/mec/notifications.php:154
4126
+ #: app/features/mec/notifications.php:214
4127
+ #: app/features/mec/notifications.php:282
4128
+ #: app/features/mec/notifications.php:345
4129
+ #: app/features/mec/notifications.php:418
4130
+ #: app/features/mec/notifications.php:464
4131
  msgid "Email Subject"
4132
  msgstr "Asunto del correo electrónico"
4133
 
4136
  #: app/features/mec/notifications.php:110
4137
  #: app/features/mec/notifications.php:158
4138
  #: app/features/mec/notifications.php:162
4139
+ #: app/features/mec/notifications.php:218
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4140
  #: app/features/mec/notifications.php:222
4141
+ #: app/features/mec/notifications.php:286
4142
  #: app/features/mec/notifications.php:290
4143
+ #: app/features/mec/notifications.php:349
4144
  #: app/features/mec/notifications.php:353
4145
  #: app/features/mec/notifications.php:364
4146
+ #: app/features/mec/notifications.php:422
4147
  #: app/features/mec/notifications.php:426
4148
+ #: app/features/mec/notifications.php:468
4149
  #: app/features/mec/notifications.php:472
4150
+ msgid "Custom Recipients"
4151
+ msgstr "Destinatarios personalizados"
4152
+
4153
+ #: app/features/mec/notifications.php:54 app/features/mec/notifications.php:111
4154
+ #: app/features/mec/notifications.php:163
4155
+ #: app/features/mec/notifications.php:223
4156
+ #: app/features/mec/notifications.php:291
4157
+ #: app/features/mec/notifications.php:354
4158
+ #: app/features/mec/notifications.php:365
4159
+ #: app/features/mec/notifications.php:427
4160
+ #: app/features/mec/notifications.php:473
4161
  msgid "Insert comma separated emails for multiple recipients."
4162
  msgstr "Inserta los correos separados por coma para múltiples destinatarios."
4163
 
4164
+ #: app/features/mec/notifications.php:61 app/features/mec/notifications.php:234
4165
+ #: app/features/mec/notifications.php:298
4166
  msgid "Send the email to event organizer"
4167
  msgstr "Enviar correo al organizador del evento"
4168
 
4169
  #: app/features/mec/notifications.php:64 app/features/mec/notifications.php:117
4170
  #: app/features/mec/notifications.php:169
4171
+ #: app/features/mec/notifications.php:241
4172
+ #: app/features/mec/notifications.php:301
4173
+ #: app/features/mec/notifications.php:371
4174
+ #: app/features/mec/notifications.php:433
4175
+ #: app/features/mec/notifications.php:479
4176
  msgid "Email Content"
4177
  msgstr "Contenido del correo"
4178
 
4179
  #: app/features/mec/notifications.php:67 app/features/mec/notifications.php:120
4180
  #: app/features/mec/notifications.php:172
4181
+ #: app/features/mec/notifications.php:244
4182
+ #: app/features/mec/notifications.php:304
4183
+ #: app/features/mec/notifications.php:374
4184
+ #: app/features/mec/notifications.php:436
4185
+ #: app/features/mec/notifications.php:482
4186
  msgid "You can use following placeholders"
4187
  msgstr "Puedes utilizar los siguientes marcadores de posición"
4188
 
4189
  #: app/features/mec/notifications.php:69 app/features/mec/notifications.php:122
4190
  #: app/features/mec/notifications.php:174
4191
+ #: app/features/mec/notifications.php:246
4192
+ #: app/features/mec/notifications.php:306
4193
+ #: app/features/mec/notifications.php:376
4194
  msgid "First name of attendee"
4195
  msgstr "Nombre del asistente"
4196
 
4197
  #: app/features/mec/notifications.php:70 app/features/mec/notifications.php:123
4198
  #: app/features/mec/notifications.php:175
4199
+ #: app/features/mec/notifications.php:247
4200
+ #: app/features/mec/notifications.php:307
4201
+ #: app/features/mec/notifications.php:377
4202
  msgid "Last name of attendee"
4203
  msgstr "Apellidos del asistente"
4204
 
4205
  #: app/features/mec/notifications.php:71 app/features/mec/notifications.php:124
4206
  #: app/features/mec/notifications.php:176
4207
+ #: app/features/mec/notifications.php:248
4208
+ #: app/features/mec/notifications.php:308
4209
+ #: app/features/mec/notifications.php:378
4210
  msgid "Email of attendee"
4211
  msgstr "Correo electrónico del asistente"
4212
 
4213
  #: app/features/mec/notifications.php:72 app/features/mec/notifications.php:125
4214
  #: app/features/mec/notifications.php:177
4215
+ #: app/features/mec/notifications.php:249
4216
+ #: app/features/mec/notifications.php:309
4217
+ #: app/features/mec/notifications.php:379
4218
  msgid "Booked date of event"
4219
  msgstr "Fecha de reserva del evento"
4220
 
4221
  #: app/features/mec/notifications.php:73 app/features/mec/notifications.php:126
4222
  #: app/features/mec/notifications.php:178
4223
+ #: app/features/mec/notifications.php:250
4224
+ #: app/features/mec/notifications.php:310
4225
+ #: app/features/mec/notifications.php:380
4226
  #, fuzzy
4227
  #| msgid "Booked date of event"
4228
  msgid "Booked time of event"
4230
 
4231
  #: app/features/mec/notifications.php:74 app/features/mec/notifications.php:127
4232
  #: app/features/mec/notifications.php:179
4233
+ #: app/features/mec/notifications.php:251
4234
+ #: app/features/mec/notifications.php:311
4235
+ #: app/features/mec/notifications.php:381
4236
  msgid "Booking Price"
4237
  msgstr "Precio de la reserva"
4238
 
4239
  #: app/features/mec/notifications.php:75 app/features/mec/notifications.php:128
4240
  #: app/features/mec/notifications.php:180
 
 
 
 
 
 
 
 
 
 
4241
  #: app/features/mec/notifications.php:252
4242
  #: app/features/mec/notifications.php:312
4243
  #: app/features/mec/notifications.php:382
4244
  #: app/features/mec/notifications.php:442
4245
  #: app/features/mec/notifications.php:488
4246
+ msgid "Your website title"
4247
+ msgstr "Título de tu web"
4248
 
4249
+ #: app/features/mec/notifications.php:76 app/features/mec/notifications.php:129
4250
+ #: app/features/mec/notifications.php:181
4251
  #: app/features/mec/notifications.php:253
4252
  #: app/features/mec/notifications.php:313
4253
  #: app/features/mec/notifications.php:383
4254
  #: app/features/mec/notifications.php:443
4255
  #: app/features/mec/notifications.php:489
4256
+ msgid "Your website URL"
4257
+ msgstr "URL de tu sitio web"
4258
+
4259
+ #: app/features/mec/notifications.php:77 app/features/mec/notifications.php:130
4260
+ #: app/features/mec/notifications.php:182
4261
+ #: app/features/mec/notifications.php:254
4262
+ #: app/features/mec/notifications.php:314
4263
+ #: app/features/mec/notifications.php:384
4264
+ #: app/features/mec/notifications.php:444
4265
+ #: app/features/mec/notifications.php:490
4266
  msgid "Your website description"
4267
  msgstr "Descripción de tu web"
4268
 
4269
  #: app/features/mec/notifications.php:78 app/features/mec/notifications.php:131
4270
  #: app/features/mec/notifications.php:183
4271
+ #: app/features/mec/notifications.php:255
4272
+ #: app/features/mec/notifications.php:315
4273
+ #: app/features/mec/notifications.php:385
4274
  msgid "Event title"
4275
  msgstr "Título del evento"
4276
 
4277
  #: app/features/mec/notifications.php:79 app/features/mec/notifications.php:132
4278
  #: app/features/mec/notifications.php:184
4279
+ #: app/features/mec/notifications.php:256
4280
+ #: app/features/mec/notifications.php:316
4281
+ #: app/features/mec/notifications.php:386
4282
  #, fuzzy
4283
  #| msgid "Event Link"
4284
  msgid "Event link"
4286
 
4287
  #: app/features/mec/notifications.php:80 app/features/mec/notifications.php:133
4288
  #: app/features/mec/notifications.php:185
4289
+ #: app/features/mec/notifications.php:257
4290
+ #: app/features/mec/notifications.php:317
4291
+ #: app/features/mec/notifications.php:387
4292
  #, fuzzy
4293
  #| msgid "Organizer name of booked event"
4294
  msgid "Speaker name of booked event"
4296
 
4297
  #: app/features/mec/notifications.php:81 app/features/mec/notifications.php:134
4298
  #: app/features/mec/notifications.php:186
4299
+ #: app/features/mec/notifications.php:258
4300
+ #: app/features/mec/notifications.php:318
4301
+ #: app/features/mec/notifications.php:388
4302
  msgid "Organizer name of booked event"
4303
  msgstr "Nombre del organizador del evento reservado"
4304
 
4305
  #: app/features/mec/notifications.php:82 app/features/mec/notifications.php:135
4306
  #: app/features/mec/notifications.php:187
4307
+ #: app/features/mec/notifications.php:259
4308
+ #: app/features/mec/notifications.php:319
4309
+ #: app/features/mec/notifications.php:389
4310
  msgid "Organizer tel of booked event"
4311
  msgstr "Teléfono del organizador del evento reservado"
4312
 
4313
  #: app/features/mec/notifications.php:83 app/features/mec/notifications.php:136
4314
  #: app/features/mec/notifications.php:188
4315
+ #: app/features/mec/notifications.php:260
4316
+ #: app/features/mec/notifications.php:320
4317
+ #: app/features/mec/notifications.php:390
4318
  msgid "Organizer email of booked event"
4319
  msgstr "Correo electrónico del organizar de un evento reservado"
4320
 
4321
  #: app/features/mec/notifications.php:84 app/features/mec/notifications.php:137
4322
  #: app/features/mec/notifications.php:189
4323
+ #: app/features/mec/notifications.php:261
4324
+ #: app/features/mec/notifications.php:321
4325
+ #: app/features/mec/notifications.php:391
4326
  msgid "Location name of booked event"
4327
  msgstr "Nombre del lugar del organizador del evento reservado"
4328
 
4329
  #: app/features/mec/notifications.php:85 app/features/mec/notifications.php:138
4330
  #: app/features/mec/notifications.php:190
4331
+ #: app/features/mec/notifications.php:262
4332
+ #: app/features/mec/notifications.php:322
4333
+ #: app/features/mec/notifications.php:392
4334
  msgid "Location address of booked event"
4335
  msgstr "Dirección del organizador del evento reservado"
4336
 
4337
+ #: app/features/mec/notifications.php:86 app/features/mec/notifications.php:264
4338
+ #: app/features/mec/notifications.php:324
4339
  msgid "Full Attendee info such as booking form data, name, email etc."
4340
  msgstr ""
4341
  "Información completa del asistente, como datos de formulario de reserva, "
4342
  "nombre, correo electrónico, etc."
4343
 
4344
  #: app/features/mec/notifications.php:87 app/features/mec/notifications.php:192
4345
+ #: app/features/mec/notifications.php:394
4346
  msgid "Invoice Link"
4347
  msgstr "Enlace de factura"
4348
 
4349
  #: app/features/mec/notifications.php:88 app/features/mec/notifications.php:140
4350
  #: app/features/mec/notifications.php:193
4351
+ #: app/features/mec/notifications.php:265
4352
+ #: app/features/mec/notifications.php:325
4353
+ #: app/features/mec/notifications.php:395
4354
  msgid "Total Attendees"
4355
  msgstr "Total asistentes"
4356
 
4357
  #: app/features/mec/notifications.php:89 app/features/mec/notifications.php:141
4358
+ #: app/features/mec/notifications.php:195
4359
+ #: app/features/mec/notifications.php:396
4360
  msgid "Ticket name"
4361
  msgstr "Nombre de la entrada"
4362
 
4363
  #: app/features/mec/notifications.php:90 app/features/mec/notifications.php:142
4364
+ #: app/features/mec/notifications.php:196
4365
+ #: app/features/mec/notifications.php:397
4366
  msgid "Ticket time"
4367
  msgstr "Hora de la entrada"
4368
 
4369
  #: app/features/mec/notifications.php:91 app/features/mec/notifications.php:143
4370
+ #: app/features/mec/notifications.php:197
4371
+ #: app/features/mec/notifications.php:398
4372
  msgid "Download ICS file"
4373
  msgstr "Descarga el archivo ICS"
4374
 
4392
  "administrador."
4393
 
4394
  #: app/features/mec/notifications.php:191
4395
+ #: app/features/mec/notifications.php:393
4396
  msgid "Booking cancellation link."
4397
  msgstr "Enlace de cancelación de la reserva."
4398
 
4399
+ #: app/features/mec/notifications.php:194
4400
+ #, fuzzy
4401
+ #| msgid "Amount (Per Ticket)"
4402
+ msgid "Amount Tickets"
4403
+ msgstr "Cantidad (Por ticket)"
4404
+
4405
+ #: app/features/mec/notifications.php:204 app/libraries/main.php:574
4406
  #, fuzzy
4407
  #| msgid "Booking cancellation link."
4408
  msgid "Booking Cancellation"
4409
  msgstr "Enlace de cancelación de la reserva."
4410
 
4411
+ #: app/features/mec/notifications.php:208
4412
  #, fuzzy
4413
  #| msgid "Enable new event notification"
4414
  msgid "Enable cancellation notification"
4415
  msgstr "Activa los avisos de nuevos eventos"
4416
 
4417
+ #: app/features/mec/notifications.php:212
4418
  #, fuzzy
4419
  #| msgid "It sends to attendee after booking for notifying him/her."
4420
  msgid ""
4422
  "them."
4423
  msgstr "Se envía a los asistentes después de la reserva."
4424
 
4425
+ #: app/features/mec/notifications.php:230
4426
  #, fuzzy
4427
  #| msgid "Send the email to event organizer"
4428
  msgid "Send the email to admin"
4429
  msgstr "Enviar correo al organizador del evento"
4430
 
4431
+ #: app/features/mec/notifications.php:238
4432
  #, fuzzy
4433
  #| msgid "Send the email to event organizer"
4434
  msgid "Send the email to booking user"
4435
  msgstr "Enviar correo al organizador del evento"
4436
 
4437
+ #: app/features/mec/notifications.php:263
4438
+ #: app/features/mec/notifications.php:323
4439
  msgid "Admin booking management link."
4440
  msgstr "Enlace del administrador de reservas."
4441
 
4442
+ #: app/features/mec/notifications.php:272 app/libraries/main.php:576
4443
  msgid "Admin"
4444
  msgstr ""
4445
 
4446
+ #: app/features/mec/notifications.php:276
4447
  #, fuzzy
4448
  #| msgid "Enable booking notification"
4449
  msgid "Enable admin notification"
4450
  msgstr "Activar notificación de reservas"
4451
 
4452
+ #: app/features/mec/notifications.php:280
4453
  msgid "It sends to admin to notify him/her that a new booking received."
4454
  msgstr "Se envía al administrador para notificarle una nueva reserva recibida."
4455
 
4456
+ #: app/features/mec/notifications.php:332 app/libraries/main.php:575
4457
  #: app/libraries/notifications.php:478
4458
  msgid "Booking Reminder"
4459
  msgstr "Recordatorio de reserva"
4460
 
4461
+ #: app/features/mec/notifications.php:336
4462
  msgid "Enable booking reminder notification"
4463
  msgstr "Activar recordatorio de reservas del evento."
4464
 
4465
+ #: app/features/mec/notifications.php:342
4466
  #, php-format
4467
  msgid ""
4468
  "Set a cronjob to call %s file once per day otherwise it won't send the "
4474
  "este archivo %s, de lo contrario, puede enviar los recordatorios varias "
4475
  "veces."
4476
 
4477
+ #: app/features/mec/notifications.php:342
4478
  msgid "only once per day"
4479
  msgstr "una vez al día"
4480
 
4481
+ #: app/features/mec/notifications.php:360
4482
  msgid "Days"
4483
  msgstr "Días"
4484
 
4485
+ #: app/features/mec/notifications.php:408 app/features/mec/support-page.php:80
4486
  #: app/libraries/main.php:577
4487
  msgid "New Event"
4488
  msgstr "Nuevo evento"
4489
 
4490
+ #: app/features/mec/notifications.php:412
4491
  msgid "Enable new event notification"
4492
  msgstr "Activa los avisos de nuevos eventos"
4493
 
4494
+ #: app/features/mec/notifications.php:416
4495
  msgid ""
4496
  "It sends after adding a new event from frontend event submission or from "
4497
  "website backend."
4499
  "Se envía después de agregar un nuevo evento de presentación de evento de "
4500
  "frontend o desde el sitio web backend."
4501
 
4502
+ #: app/features/mec/notifications.php:438
4503
+ #: app/features/mec/notifications.php:484
4504
  msgid "Title of event"
4505
  msgstr "Título del evento"
4506
 
4507
+ #: app/features/mec/notifications.php:439
4508
+ #: app/features/mec/notifications.php:485
4509
  #, fuzzy
4510
  #| msgid "Title of event"
4511
  msgid "Link of event"
4512
  msgstr "Título del evento"
4513
 
4514
+ #: app/features/mec/notifications.php:440
4515
+ #: app/features/mec/notifications.php:486
4516
  msgid "Status of event"
4517
  msgstr "Estado del evento"
4518
 
4519
+ #: app/features/mec/notifications.php:441
4520
+ #: app/features/mec/notifications.php:487 app/features/mec/settings.php:654
4521
  #: app/features/mec/settings.php:658
4522
  msgid "Event Note"
4523
  msgstr "Nota de evento"
4524
 
4525
+ #: app/features/mec/notifications.php:445
4526
+ #: app/features/mec/notifications.php:491
4527
  msgid "Admin events management link."
4528
  msgstr "Enlace del administrador de reservas."
4529
 
4530
+ #: app/features/mec/notifications.php:454 app/libraries/main.php:578
4531
  #, fuzzy
4532
  #| msgid "The event published."
4533
  msgid "User Event Publishing"
4534
  msgstr "El evento a sido publicado."
4535
 
4536
+ #: app/features/mec/notifications.php:458
4537
  #, fuzzy
4538
  #| msgid "Enable new event notification"
4539
  msgid "Enable user event publishing notification"
4540
  msgstr "Activa los avisos de nuevos eventos"
4541
 
4542
+ #: app/features/mec/notifications.php:462
4543
  #, fuzzy
4544
  #| msgid ""
4545
  #| "It sends after adding a new event from frontend event submission or from "
4646
  msgstr ""
4647
 
4648
  #: app/features/mec/settings.php:136 app/features/mec/settings.php:146
4649
+ #: app/libraries/main.php:4909
4650
  msgid "Weekdays"
4651
  msgstr "Días de la semana"
4652
 
5808
  msgid "eg. https://webnus.net"
5809
  msgstr "ej. https://webnus.net"
5810
 
5811
+ #: app/features/organizers.php:311 app/libraries/main.php:4933
5812
  #: app/skins/single.php:845
5813
  msgid "Other Organizers"
5814
  msgstr "En común"
5835
  msgid "#"
5836
  msgstr ""
5837
 
5838
+ #: app/features/profile/profile.php:56 app/libraries/main.php:2929
5839
  msgid "Status"
5840
  msgstr "Estado"
5841
 
5842
+ #: app/features/profile/profile.php:59 app/libraries/main.php:2074
5843
  msgid "Attendees"
5844
  msgstr "Asistentes"
5845
 
5868
  msgid "No bookings found!"
5869
  msgstr ""
5870
 
5871
+ #: app/features/search.php:87 app/libraries/main.php:4899
5872
  msgid "label"
5873
  msgstr "etiqueta"
5874
 
5903
  msgid "All of the day"
5904
  msgstr "Todo el día"
5905
 
5906
+ #: app/features/speakers.php:110 app/features/speakers.php:179
5907
+ #: app/features/speakers.php:255
5908
  msgid "Job Title"
5909
  msgstr ""
5910
 
5911
+ #: app/features/speakers.php:113 app/features/speakers.php:180
5912
  msgid "Insert speaker job title."
5913
  msgstr ""
5914
 
5915
+ #: app/features/speakers.php:121 app/features/speakers.php:184
5916
  msgid "Insert speaker phone number."
5917
  msgstr ""
5918
 
5919
+ #: app/features/speakers.php:129 app/features/speakers.php:188
5920
  msgid "Insert speaker email address."
5921
  msgstr ""
5922
 
5923
+ #: app/features/speakers.php:134 app/features/speakers.php:191
5924
  msgid "Facebook Page"
5925
  msgstr ""
5926
 
5927
+ #: app/features/speakers.php:137 app/features/speakers.php:192
5928
  msgid "Insert URL of Facebook Page"
5929
  msgstr ""
5930
 
5931
+ #: app/features/speakers.php:142 app/features/speakers.php:195
5932
  msgid "Instagram"
5933
  msgstr ""
5934
 
5935
+ #: app/features/speakers.php:145 app/features/speakers.php:196
5936
  msgid "Insert URL of Instagram"
5937
  msgstr ""
5938
 
5939
+ #: app/features/speakers.php:150 app/features/speakers.php:199
5940
  msgid "Twitter Page"
5941
  msgstr ""
5942
 
5943
+ #: app/features/speakers.php:153 app/features/speakers.php:200
5944
  msgid "Insert URL of Twitter Page"
5945
  msgstr ""
5946
 
5947
+ #: app/features/speakers.php:315
5948
  msgid "Sorry, You must insert speaker name!"
5949
  msgstr ""
5950
 
5951
+ #: app/features/speakers.php:364
5952
+ msgid ""
5953
+ "Note: You can use the speakers in your event edit/add page > hourly schedule "
5954
+ "section and speaker widget section!"
5955
+ msgstr ""
5956
+
5957
  #: app/libraries/book.php:60
5958
  #, php-format
5959
  msgid "%s Price"
5960
  msgstr "%s Precio"
5961
 
5962
+ #: app/libraries/book.php:561
5963
  msgid "Discount"
5964
  msgstr "Descuento"
5965
 
5966
+ #: app/libraries/book.php:651 app/modules/booking/default.php:305
5967
  #: app/modules/booking/default.php:403
5968
  msgid "Download Invoice"
5969
  msgstr "Descargar factura"
6094
  msgid "Slider View"
6095
  msgstr "Vista del rotativo"
6096
 
6097
+ #: app/libraries/main.php:382 app/libraries/main.php:4911
6098
  msgid "SU"
6099
  msgstr "DO"
6100
 
6101
+ #: app/libraries/main.php:383 app/libraries/main.php:4912
6102
  msgid "MO"
6103
  msgstr "LU"
6104
 
6105
+ #: app/libraries/main.php:384 app/libraries/main.php:4913
6106
  msgid "TU"
6107
  msgstr "MA"
6108
 
6109
+ #: app/libraries/main.php:385 app/libraries/main.php:4914
6110
  msgid "WE"
6111
  msgstr "MI"
6112
 
6113
+ #: app/libraries/main.php:386 app/libraries/main.php:4915
6114
  msgid "TH"
6115
  msgstr "JU"
6116
 
6117
+ #: app/libraries/main.php:387 app/libraries/main.php:4916
6118
  msgid "FR"
6119
  msgstr "VI"
6120
 
6121
+ #: app/libraries/main.php:388 app/libraries/main.php:4917
6122
  msgid "SA"
6123
  msgstr "SA"
6124
 
6264
  msgid "Invoice is invalid."
6265
  msgstr "Reserva no válida."
6266
 
6267
+ #: app/libraries/main.php:2009
6268
+ msgid ""
6269
+ "Your booking still is not confirmed. You able download it after confirmation!"
6270
+ msgstr ""
6271
+
6272
+ #: app/libraries/main.php:2009
6273
+ #, fuzzy
6274
+ #| msgid "Booking Confirmation"
6275
+ msgid "Booking Not Confirmed."
6276
+ msgstr "Confirmación de reserva"
6277
+
6278
+ #: app/libraries/main.php:2015
6279
  msgid "Cannot find the booking!"
6280
  msgstr "¡No se pudo encontrar la reserva!"
6281
 
6282
+ #: app/libraries/main.php:2015
6283
  msgid "Booking is invalid."
6284
  msgstr "Reserva no válida."
6285
 
6286
+ #: app/libraries/main.php:2044
6287
  #, php-format
6288
  msgid "%s Invoice"
6289
  msgstr "%s Factura"
6290
 
6291
+ #: app/libraries/main.php:2118
6292
  msgid "Billing"
6293
  msgstr "Facturación"
6294
 
6295
+ #: app/libraries/main.php:2129
6296
  msgid "Total"
6297
  msgstr "Total "
6298
 
6299
+ #: app/libraries/main.php:2186
6300
  msgid "Request is not valid."
6301
  msgstr "La solicitud no es válida."
6302
 
6303
+ #: app/libraries/main.php:2186
6304
  msgid "iCal export stopped!"
6305
  msgstr "¡La exportación de iCal se detuvo!"
6306
 
6307
+ #: app/libraries/main.php:2513 app/libraries/main.php:2543
6308
+ #: app/libraries/main.php:2572 app/libraries/main.php:2602
6309
+ #: app/libraries/main.php:2631 app/libraries/main.php:2660
6310
+ #: app/libraries/main.php:2689 app/libraries/main.php:2718
6311
+ #: app/libraries/main.php:2747 app/libraries/main.php:2771
6312
+ #: app/libraries/main.php:2815 app/libraries/main.php:2859
6313
+ #: app/libraries/main.php:2906 app/libraries/main.php:2953
6314
  msgid "Sort"
6315
  msgstr "Orden"
6316
 
6317
+ #: app/libraries/main.php:2519 app/libraries/main.php:2549
6318
+ #: app/libraries/main.php:2578 app/libraries/main.php:2608
6319
+ #: app/libraries/main.php:2637 app/libraries/main.php:2666
6320
+ #: app/libraries/main.php:2695 app/libraries/main.php:2724
6321
+ #: app/libraries/main.php:2777 app/libraries/main.php:2821
6322
+ #: app/libraries/main.php:2865 app/libraries/main.php:2912
6323
  msgid "Required Field"
6324
  msgstr "Campo obligatorio"
6325
 
6326
+ #: app/libraries/main.php:2525 app/libraries/main.php:2555
6327
+ #: app/libraries/main.php:2584 app/libraries/main.php:2614
6328
+ #: app/libraries/main.php:2643 app/libraries/main.php:2672
6329
+ #: app/libraries/main.php:2701 app/libraries/main.php:2730
6330
+ #: app/libraries/main.php:2783 app/libraries/main.php:2827
6331
+ #: app/libraries/main.php:2871 app/libraries/main.php:2918
6332
  msgid "Insert a label for this field"
6333
  msgstr "Introduce una etiqueta para este campo"
6334
 
6335
+ #: app/libraries/main.php:2753
6336
  msgid "HTML and shortcode are allowed."
6337
  msgstr "Se permite HTML"
6338
 
6339
+ #: app/libraries/main.php:2796 app/libraries/main.php:2840
6340
+ #: app/libraries/main.php:2884
6341
  msgid "Option"
6342
  msgstr "Opción"
6343
 
6344
+ #: app/libraries/main.php:2918
6345
  #, php-format
6346
  msgid "Instead of %s, the page title with a link will be show."
6347
  msgstr "En lugar de %s, se mostrará el título de la página con un enlace."
6348
 
6349
+ #: app/libraries/main.php:2920
6350
  msgid "Agreement Page"
6351
  msgstr "Página de Acuerdo"
6352
 
6353
+ #: app/libraries/main.php:2931
6354
  msgid "Checked by default"
6355
  msgstr "Marcado por defecto"
6356
 
6357
+ #: app/libraries/main.php:2932
6358
  msgid "Unchecked by default"
6359
  msgstr "Sin marcar por defecto"
6360
 
6361
+ #: app/libraries/main.php:2955
6362
  msgid "Insert a label for this option"
6363
  msgstr "Introduce una etiqueta para esta opción"
6364
 
6365
+ #: app/libraries/main.php:2970
6366
  msgid "Free"
6367
  msgstr "Gratis"
6368
 
6369
+ #: app/libraries/main.php:3576 app/libraries/main.php:5158
6370
  #, fuzzy
6371
  #| msgid "M.E. Calendar"
6372
  msgid "M.E. Calender"
6373
  msgstr "M.E. Calendario"
6374
 
6375
+ #: app/libraries/main.php:3731
6376
  #, php-format
6377
  msgid "Copy of %s"
6378
  msgstr "Copia de %s"
6379
 
6380
+ #: app/libraries/main.php:4404
6381
  msgid "Booked an event."
6382
  msgstr "Has reservado para un evento."
6383
 
6384
+ #: app/libraries/main.php:4445
6385
  #, php-format
6386
  msgid "%s booked %s event."
6387
  msgstr "%s reservado %s evento."
6388
 
6389
+ #: app/libraries/main.php:4894
6390
  msgid "Taxonomies"
6391
  msgstr "Taxonomías"
6392
 
6393
+ #: app/libraries/main.php:4896
6394
  msgid "Category Plural Label"
6395
  msgstr "Categoría Etiqueta plural"
6396
 
6397
+ #: app/libraries/main.php:4897
6398
  msgid "Category Singular Label"
6399
  msgstr "Categoría Etiqueta Singular"
6400
 
6401
+ #: app/libraries/main.php:4898
6402
  msgid "Label Plural Label"
6403
  msgstr "Etiqueta plural"
6404
 
6405
+ #: app/libraries/main.php:4899
6406
  msgid "Label Singular Label"
6407
  msgstr "Etiqueta singular de la etiqueta"
6408
 
6409
+ #: app/libraries/main.php:4900
6410
  msgid "Location Plural Label"
6411
  msgstr "Ubicación Etiqueta plural"
6412
 
6413
+ #: app/libraries/main.php:4901
6414
  msgid "Location Singular Label"
6415
  msgstr "Etiqueta de ubicación en singular"
6416
 
6417
+ #: app/libraries/main.php:4902
6418
  msgid "Organizer Plural Label"
6419
  msgstr "Etiqueta del organizador en plural"
6420
 
6421
+ #: app/libraries/main.php:4903
6422
  msgid "Organizer Singular Label"
6423
  msgstr "Etiqueta Singular del Organizador"
6424
 
6425
+ #: app/libraries/main.php:4904
6426
  msgid "Speaker Plural Label"
6427
  msgstr ""
6428
 
6429
+ #: app/libraries/main.php:4905
6430
  msgid "Speaker Singular Label"
6431
  msgstr ""
6432
 
6433
+ #: app/libraries/main.php:4911
6434
  msgid "Sunday abbreviation"
6435
  msgstr "Abreviatura de Domingo"
6436
 
6437
+ #: app/libraries/main.php:4912
6438
  msgid "Monday abbreviation"
6439
  msgstr "Abreviatura de Lunes"
6440
 
6441
+ #: app/libraries/main.php:4913
6442
  msgid "Tuesday abbreviation"
6443
  msgstr "Abreviatura de Martes"
6444
 
6445
+ #: app/libraries/main.php:4914
6446
  msgid "Wednesday abbreviation"
6447
  msgstr "Abreviatura de Miércoles "
6448
 
6449
+ #: app/libraries/main.php:4915
6450
  msgid "Thursday abbreviation"
6451
  msgstr "Abreviatura de Jueves"
6452
 
6453
+ #: app/libraries/main.php:4916
6454
  msgid "Friday abbreviation"
6455
  msgstr "Abreviatura de Viernes"
6456
 
6457
+ #: app/libraries/main.php:4917
6458
  msgid "Saturday abbreviation"
6459
  msgstr "Abreviatura de Sábado "
6460
 
6461
+ #: app/libraries/main.php:4921
6462
  msgid "Others"
6463
  msgstr "Otros"
6464
 
6465
+ #: app/libraries/main.php:4923
6466
  msgid "Booking Success Message"
6467
  msgstr "Mensaje de reserva correcta"
6468
 
6469
+ #: app/libraries/main.php:4923
6470
  msgid ""
6471
  "Thanks for your booking. Your tickets booked, booking verification might be "
6472
  "needed, please check your email."
6474
  "Gracias por tu reserva. Tus entradas han sido reservadas, podrías necesitar "
6475
  "una verificación, por favor consulta tu correo."
6476
 
6477
+ #: app/libraries/main.php:4924 app/widgets/single.php:131
6478
  msgid "Register Button"
6479
  msgstr "Botón de registro"
6480
 
6481
+ #: app/libraries/main.php:4924 app/skins/available_spot/tpl.php:224
6482
  #: app/skins/carousel/render.php:158 app/skins/carousel/render.php:194
6483
  #: app/skins/grid/render.php:118 app/skins/grid/render.php:164
6484
  #: app/skins/grid/render.php:207 app/skins/grid/render.php:235
6495
  msgid "REGISTER"
6496
  msgstr "REGISTRO"
6497
 
6498
+ #: app/libraries/main.php:4925
6499
  msgid "View Detail Button"
6500
  msgstr "Ver detalle del botón"
6501
 
6502
+ #: app/libraries/main.php:4925 app/skins/carousel/render.php:158
6503
  #: app/skins/carousel/render.php:194 app/skins/grid/render.php:118
6504
  #: app/skins/grid/render.php:164 app/skins/grid/render.php:207
6505
  #: app/skins/grid/render.php:235 app/skins/list/render.php:108
6510
  msgid "View Detail"
6511
  msgstr "Ver detalle"
6512
 
6513
+ #: app/libraries/main.php:4926
6514
  msgid "Event Detail Button"
6515
  msgstr "Botón de detalle del evento"
6516
 
6517
+ #: app/libraries/main.php:4926 app/skins/countdown/tpl.php:244
6518
  msgid "Event Detail"
6519
  msgstr "Detalle del evento"
6520
 
6521
+ #: app/libraries/main.php:4928
6522
  msgid "More Info Link"
6523
  msgstr "Enlace a Más Información"
6524
 
6525
+ #: app/libraries/main.php:4931
6526
  msgid "Ticket (Singular)"
6527
  msgstr "Entrada (Singular)"
6528
 
6529
+ #: app/libraries/main.php:4932
6530
  msgid "Tickets (Plural)"
6531
  msgstr "Entradas (Plural)"
6532
 
6533
+ #: app/libraries/main.php:5018
6534
  msgid "EventON"
6535
  msgstr "EventON"
6536
 
6537
+ #: app/libraries/main.php:5019
6538
  msgid "The Events Calendar"
6539
  msgstr "The Events Calendar"
6540
 
6541
+ #: app/libraries/main.php:5020
6542
  msgid "Events Schedule WP Plugin"
6543
  msgstr "Events Schedule WP Plugin"
6544
 
6545
+ #: app/libraries/main.php:5021
6546
  msgid "Calendarize It"
6547
  msgstr "Ponlo al calendario"
6548
 
6549
+ #: app/libraries/main.php:5095 app/libraries/main.php:5115
6550
  msgid "Confirmed"
6551
  msgstr ""
6552
 
6553
+ #: app/libraries/main.php:5096 app/libraries/main.php:5123
6554
  msgid "Rejected"
6555
  msgstr ""
6556
 
6557
+ #: app/libraries/main.php:5097 app/libraries/main.php:5119
6558
  msgid "Pending"
6559
  msgstr ""
6560
 
6561
+ #: app/libraries/main.php:5145
6562
  msgid "Waiting"
6563
  msgstr ""
6564
 
6565
+ #: app/libraries/main.php:5350 app/libraries/render.php:382
6566
  msgid "Skin controller does not exist."
6567
  msgstr "No existe skin controller."
6568
 
6598
  msgid "Your event is published."
6599
  msgstr "El evento a sido publicado."
6600
 
6601
+ #: app/libraries/notifications.php:827
6602
  msgid "to"
6603
  msgstr "a"
6604
 
6605
+ #: app/libraries/notifications.php:840 app/modules/export/details.php:27
6606
  msgid "+ Add to Google Calendar"
6607
  msgstr "+ Añadir Google Calendar"
6608
 
6609
+ #: app/libraries/notifications.php:841 app/modules/export/details.php:28
6610
  msgid "+ iCal export"
6611
  msgstr "Exportación + iCal"
6612
 
6613
+ #: app/libraries/notifications.php:904
6614
  msgid "Yes"
6615
  msgstr "Sí"
6616
 
6617
+ #: app/libraries/notifications.php:904
6618
  msgid "No"
6619
  msgstr "No"
6620
 
languages/modern-events-calendar-lite-fr_FR.mo CHANGED
Binary file
languages/modern-events-calendar-lite-fr_FR.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
- "POT-Creation-Date: 2019-10-22 15:22+0330\n"
5
- "PO-Revision-Date: 2019-10-22 15:24+0330\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: fr_FR\n"
@@ -82,7 +82,7 @@ msgid "Settings"
82
  msgstr "Paramètres"
83
 
84
  #: app/features/contextual.php:62 app/features/events.php:2415
85
- #: app/features/mec/booking.php:426 app/features/mec/support.php:29
86
  #: app/libraries/main.php:554
87
  msgid "Booking Form"
88
  msgstr "Formulaire de réservation"
@@ -96,7 +96,7 @@ msgid ""
96
  "YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></iframe>"
97
  msgstr ""
98
 
99
- #: app/features/contextual.php:70 app/features/mec/booking.php:544
100
  #: app/features/mec/support.php:36 app/libraries/main.php:555
101
  msgid "Payment Gateways"
102
  msgstr "Passerelle de paiement"
@@ -231,7 +231,7 @@ msgstr "Journées Exceptionnelles"
231
  msgid "Booking"
232
  msgstr "Réservation"
233
 
234
- #: app/features/contextual.php:318 app/features/mec/booking.php:248
235
  #: app/libraries/main.php:551
236
  msgid "Coupons"
237
  msgstr "Bons de réduction"
@@ -307,7 +307,7 @@ msgstr "Aucun événement trouvé dans la corbeille !"
307
  #: app/features/mec/meta_boxes/search_form.php:514
308
  #: app/features/mec/meta_boxes/search_form.php:575
309
  #: app/features/mec/settings.php:720 app/features/mec/single.php:204
310
- #: app/features/search.php:67 app/libraries/main.php:4886
311
  #: app/libraries/skins.php:808 app/skins/single.php:559
312
  #: app/skins/single/default.php:185 app/skins/single/default.php:397
313
  #: app/skins/single/m1.php:170 app/skins/single/m2.php:102
@@ -317,62 +317,62 @@ msgstr "Catégorie"
317
 
318
  #: app/features/events.php:176 app/features/events.php:3212
319
  #: app/features/fes/form.php:737 app/features/mec.php:336
320
- #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:4885
321
  msgid "Categories"
322
  msgstr "Catégories"
323
 
324
  #: app/features/events.php:186 app/features/labels.php:71
325
  #: app/features/locations.php:69 app/features/organizers.php:69
326
- #: app/features/speakers.php:70
327
  #, php-format
328
  msgid "All %s"
329
  msgstr "Tous %s"
330
 
331
  #: app/features/events.php:187 app/features/labels.php:72
332
  #: app/features/locations.php:70 app/features/organizers.php:70
333
- #: app/features/speakers.php:71
334
  #, php-format
335
  msgid "Edit %s"
336
  msgstr "Modifier %s"
337
 
338
  #: app/features/events.php:188 app/features/labels.php:73
339
  #: app/features/locations.php:71 app/features/organizers.php:71
340
- #: app/features/speakers.php:72
341
  #, php-format
342
  msgid "View %s"
343
  msgstr "Voir %s"
344
 
345
  #: app/features/events.php:189 app/features/labels.php:74
346
  #: app/features/locations.php:72 app/features/organizers.php:72
347
- #: app/features/speakers.php:73
348
  #, php-format
349
  msgid "Update %s"
350
  msgstr "Mettre à jour %s"
351
 
352
  #: app/features/events.php:190 app/features/labels.php:75
353
  #: app/features/locations.php:73 app/features/organizers.php:73
354
- #: app/features/speakers.php:74
355
  #, php-format
356
  msgid "Add New %s"
357
  msgstr "Ajouter un nouvel %s"
358
 
359
  #: app/features/events.php:191 app/features/labels.php:76
360
  #: app/features/locations.php:74 app/features/organizers.php:74
361
- #: app/features/speakers.php:75
362
  #, php-format
363
  msgid "New %s Name"
364
  msgstr "Nouveau nom %s"
365
 
366
  #: app/features/events.php:192 app/features/labels.php:77
367
  #: app/features/locations.php:75 app/features/organizers.php:75
368
- #: app/features/speakers.php:76
369
  #, fuzzy, php-format
370
  msgid "Popular %s"
371
  msgstr "%s Populaire"
372
 
373
  #: app/features/events.php:193 app/features/labels.php:78
374
  #: app/features/locations.php:76 app/features/organizers.php:76
375
- #: app/features/speakers.php:77
376
  #, fuzzy, php-format
377
  msgid "Search %s"
378
  msgstr "Rechercher %s"
@@ -401,7 +401,7 @@ msgstr "Coordonnées de l'Invité"
401
  #: app/features/fes.php:224 app/features/fes.php:332
402
  #: app/features/fes/form.php:669 app/features/labels.php:178
403
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
404
- #: app/features/profile/profile.php:168 app/libraries/notifications.php:880
405
  #: app/modules/booking/steps/form.php:37
406
  msgid "Name"
407
  msgstr "Nom"
@@ -409,12 +409,12 @@ msgstr "Nom"
409
  #: app/features/events.php:463 app/features/events.php:2408
410
  #: app/features/events.php:2484 app/features/fes.php:224
411
  #: app/features/fes.php:332 app/features/fes/form.php:665
412
- #: app/features/mec/booking.php:57 app/features/mec/booking.php:477
413
  #: app/features/organizers.php:111 app/features/organizers.php:152
414
- #: app/features/profile/profile.php:171 app/features/speakers.php:124
415
- #: app/features/speakers.php:185 app/libraries/main.php:1472
416
- #: app/libraries/main.php:1541 app/libraries/main.php:2592
417
- #: app/libraries/notifications.php:881 app/modules/booking/steps/form.php:46
418
  #: app/modules/booking/steps/form.php:84 app/skins/single.php:812
419
  #: app/skins/single.php:867 app/skins/single/default.php:227
420
  #: app/skins/single/default.php:439 app/skins/single/m1.php:107
@@ -510,10 +510,11 @@ msgstr ""
510
  #: app/features/events.php:2324 app/features/events.php:2337
511
  #: app/features/fes/form.php:631 app/features/locations.php:299
512
  #: app/features/mec/booking.php:108 app/features/mec/booking.php:158
513
- #: app/features/mec/booking.php:174 app/features/mec/booking.php:293
514
- #: app/features/mec/booking.php:322 app/features/mec/booking.php:370
515
- #: app/features/mec/booking.php:380 app/features/mec/booking.php:402
516
- #: app/features/mec/booking.php:412 app/features/mec/dashboard.php:71
 
517
  #: app/features/mec/meta_boxes/display_options.php:66
518
  #: app/features/mec/meta_boxes/display_options.php:79
519
  #: app/features/mec/meta_boxes/display_options.php:92
@@ -549,12 +550,12 @@ msgstr ""
549
  #: app/features/mec/modules.php:154 app/features/mec/modules.php:312
550
  #: app/features/mec/notifications.php:54 app/features/mec/notifications.php:111
551
  #: app/features/mec/notifications.php:163
552
- #: app/features/mec/notifications.php:222
553
- #: app/features/mec/notifications.php:290
554
- #: app/features/mec/notifications.php:353
555
- #: app/features/mec/notifications.php:364
556
- #: app/features/mec/notifications.php:426
557
- #: app/features/mec/notifications.php:472 app/features/mec/settings.php:66
558
  #: app/features/mec/settings.php:85 app/features/mec/settings.php:112
559
  #: app/features/mec/settings.php:147 app/features/mec/settings.php:168
560
  #: app/features/mec/settings.php:188 app/features/mec/settings.php:265
@@ -792,13 +793,13 @@ msgstr ""
792
  #: app/features/events.php:1153 app/features/events.php:3434
793
  #: app/features/events.php:3476 app/features/fes/form.php:707
794
  #: app/features/ix.php:2743 app/features/ix.php:2784
795
- #: app/features/mec/settings.php:576 app/libraries/main.php:4918
796
  #: app/widgets/single.php:103
797
  msgid "Event Cost"
798
  msgstr "Tarif de l'événement"
799
 
800
  #: app/features/events.php:1157 app/features/fes/form.php:710
801
- #: app/libraries/main.php:4919 app/skins/single.php:582
802
  #: app/skins/single/default.php:119 app/skins/single/default.php:331
803
  #: app/skins/single/m1.php:49 app/skins/single/modern.php:199
804
  msgid "Cost"
@@ -816,8 +817,8 @@ msgstr "Exclure certains jours"
816
 
817
  #: app/features/events.php:1189 app/features/events.php:2485
818
  #: app/features/fes.php:224 app/features/fes.php:332
819
- #: app/features/mec/booking.php:478 app/features/profile/profile.php:53
820
- #: app/libraries/main.php:2048 app/libraries/main.php:2650
821
  #: app/modules/booking/steps/tickets.php:22
822
  #: app/modules/next-event/details.php:90 app/skins/single.php:637
823
  #: app/skins/single/default.php:83 app/skins/single/default.php:295
@@ -862,8 +863,8 @@ msgstr ""
862
  #: app/features/events.php:2313 app/features/events.php:3240
863
  #: app/features/events.php:3434 app/features/events.php:3476
864
  #: app/features/fes/form.php:226 app/features/ix.php:2743
865
- #: app/features/ix.php:2784 app/features/mec/booking.php:362
866
- #: app/features/mec/booking.php:394 app/features/mec/styling.php:115
867
  msgid "Title"
868
  msgstr "Titre"
869
 
@@ -874,15 +875,15 @@ msgstr "Titre"
874
  #: app/features/events.php:2032 app/features/events.php:2059
875
  #: app/features/events.php:2158 app/features/events.php:2194
876
  #: app/features/events.php:2301 app/features/events.php:2343
877
- #: app/features/mec/booking.php:305 app/features/mec/booking.php:334
878
- #: app/features/mec/booking.php:385 app/features/mec/booking.php:417
879
- #: app/libraries/main.php:2511 app/libraries/main.php:2541
880
- #: app/libraries/main.php:2570 app/libraries/main.php:2600
881
- #: app/libraries/main.php:2629 app/libraries/main.php:2658
882
- #: app/libraries/main.php:2687 app/libraries/main.php:2716
883
- #: app/libraries/main.php:2738 app/libraries/main.php:2769
884
- #: app/libraries/main.php:2813 app/libraries/main.php:2857
885
- #: app/libraries/main.php:2904 app/libraries/main.php:2943
886
  msgid "Remove"
887
  msgstr "Supprimer"
888
 
@@ -909,8 +910,8 @@ msgstr "Description"
909
  #: app/features/events.php:1336 app/features/events.php:1369
910
  #: app/features/events.php:1430 app/features/fes/form.php:831
911
  #: app/features/mec.php:344 app/features/mec/modules.php:52
912
- #: app/features/mec/settings.php:624 app/features/speakers.php:60
913
- #: app/libraries/main.php:559 app/libraries/main.php:4893
914
  #: app/modules/speakers/details.php:18
915
  msgid "Speakers"
916
  msgstr ""
@@ -927,7 +928,7 @@ msgid "Event Links"
927
  msgstr "Liens de l'évenements"
928
 
929
  #: app/features/events.php:1464 app/features/events.php:1470
930
- #: app/features/fes/form.php:686 app/libraries/main.php:4916
931
  msgid "Event Link"
932
  msgstr "Lien de l'événement"
933
 
@@ -952,7 +953,7 @@ msgid "URL Shortener"
952
  msgstr ""
953
 
954
  #: app/features/events.php:1480 app/features/events.php:1493
955
- #: app/features/fes/form.php:691 app/libraries/main.php:4917
956
  #: app/skins/single.php:656 app/skins/single/default.php:133
957
  #: app/skins/single/default.php:345 app/skins/single/m1.php:191
958
  #: app/skins/single/m2.php:124 app/skins/single/modern.php:132
@@ -1021,7 +1022,7 @@ msgid "12"
1021
  msgstr ""
1022
 
1023
  #: app/features/events.php:1638 app/libraries/book.php:60
1024
- #: app/libraries/main.php:4921 app/modules/booking/steps/tickets.php:40
1025
  msgid "Tickets"
1026
  msgstr "Billets"
1027
 
@@ -1053,9 +1054,9 @@ msgstr "Fin"
1053
  #: app/features/events.php:1996 app/features/events.php:1999
1054
  #: app/features/events.php:2055 app/features/events.php:2272
1055
  #: app/features/events.php:2276 app/features/events.php:2318
1056
- #: app/features/events.php:2321 app/features/mec/booking.php:366
1057
- #: app/features/mec/booking.php:369 app/features/mec/booking.php:398
1058
- #: app/features/mec/booking.php:401
1059
  msgid "Price"
1060
  msgstr "Tarif"
1061
 
@@ -1105,19 +1106,19 @@ msgid "Fees"
1105
  msgstr "Frais"
1106
 
1107
  #: app/features/events.php:2132 app/features/events.php:2170
1108
- #: app/features/mec/booking.php:285 app/features/mec/booking.php:314
1109
  msgid "Fee Title"
1110
  msgstr "Titre"
1111
 
1112
  #: app/features/events.php:2138 app/features/events.php:2142
1113
  #: app/features/events.php:2175 app/features/events.php:2178
1114
- #: app/features/mec/booking.php:289 app/features/mec/booking.php:292
1115
- #: app/features/mec/booking.php:318 app/features/mec/booking.php:321
1116
  msgid "Amount"
1117
  msgstr "Montant"
1118
 
1119
  #: app/features/events.php:2143 app/features/events.php:2179
1120
- #: app/features/mec/booking.php:293 app/features/mec/booking.php:322
1121
  msgid ""
1122
  "Fee amount, considered as fixed amount if you set the type to amount "
1123
  "otherwise considered as percentage"
@@ -1126,17 +1127,17 @@ msgstr ""
1126
  "considéré comme pourcentage à ajouter au prix"
1127
 
1128
  #: app/features/events.php:2152 app/features/events.php:2188
1129
- #: app/features/mec/booking.php:300 app/features/mec/booking.php:329
1130
  msgid "Percent"
1131
  msgstr "Pourcentage"
1132
 
1133
  #: app/features/events.php:2153 app/features/events.php:2189
1134
- #: app/features/mec/booking.php:301 app/features/mec/booking.php:330
1135
  msgid "Amount (Per Ticket)"
1136
  msgstr "Montant (par Billet)"
1137
 
1138
  #: app/features/events.php:2154 app/features/events.php:2190
1139
- #: app/features/mec/booking.php:302 app/features/mec/booking.php:331
1140
  msgid "Amount (Per Booking)"
1141
  msgstr "Montant (par réservation)"
1142
 
@@ -1145,7 +1146,7 @@ msgid "Ticket Variations / Options"
1145
  msgstr ""
1146
 
1147
  #: app/features/events.php:2277 app/features/events.php:2322
1148
- #: app/features/mec/booking.php:370 app/features/mec/booking.php:402
1149
  #, fuzzy
1150
  #| msgid "Option"
1151
  msgid "Option Price"
@@ -1153,65 +1154,65 @@ msgstr "Option"
1153
 
1154
  #: app/features/events.php:2287 app/features/events.php:2291
1155
  #: app/features/events.php:2331 app/features/events.php:2334
1156
- #: app/features/mec/booking.php:376 app/features/mec/booking.php:379
1157
- #: app/features/mec/booking.php:408 app/features/mec/booking.php:411
1158
  #, fuzzy
1159
  #| msgid "Amount (Per Ticket)"
1160
  msgid "Maximum Per Ticket"
1161
  msgstr "Montant (par Billet)"
1162
 
1163
  #: app/features/events.php:2292 app/features/events.php:2335
1164
- #: app/features/mec/booking.php:380 app/features/mec/booking.php:412
1165
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
1166
  msgstr ""
1167
 
1168
- #: app/features/events.php:2481 app/features/mec/booking.php:474
1169
- #: app/libraries/main.php:2533
1170
  #, fuzzy
1171
  #| msgid "Name"
1172
  msgid "MEC Name"
1173
  msgstr "Nom"
1174
 
1175
- #: app/features/events.php:2482 app/features/mec/booking.php:475
1176
- #: app/libraries/main.php:2562
1177
  #, fuzzy
1178
  #| msgid "Email"
1179
  msgid "MEC Email"
1180
  msgstr "Email"
1181
 
1182
- #: app/features/events.php:2483 app/features/mec/booking.php:476
1183
- #: app/libraries/main.php:2503
1184
  msgid "Text"
1185
  msgstr "Texte"
1186
 
1187
- #: app/features/events.php:2486 app/features/mec/booking.php:479
1188
  #: app/features/organizers.php:103 app/features/organizers.php:148
1189
- #: app/features/speakers.php:116 app/features/speakers.php:181
1190
- #: app/features/speakers.php:254 app/libraries/main.php:2679
1191
  msgid "Tel"
1192
  msgstr "Téléphone"
1193
 
1194
- #: app/features/events.php:2487 app/features/mec/booking.php:480
1195
- #: app/libraries/main.php:2621
1196
  msgid "File"
1197
  msgstr ""
1198
 
1199
- #: app/features/events.php:2488 app/features/mec/booking.php:481
1200
- #: app/libraries/main.php:2708
1201
  msgid "Textarea"
1202
  msgstr "Zone de texte"
1203
 
1204
- #: app/features/events.php:2489 app/features/mec/booking.php:482
1205
- #: app/libraries/main.php:2761
1206
  msgid "Checkboxes"
1207
  msgstr "Boîtes à cocher"
1208
 
1209
- #: app/features/events.php:2490 app/features/mec/booking.php:483
1210
- #: app/libraries/main.php:2805
1211
  msgid "Radio Buttons"
1212
  msgstr "Boutons Radio"
1213
 
1214
- #: app/features/events.php:2491 app/features/mec/booking.php:484
1215
  #: app/features/mec/meta_boxes/search_form.php:34
1216
  #: app/features/mec/meta_boxes/search_form.php:41
1217
  #: app/features/mec/meta_boxes/search_form.php:48
@@ -1280,17 +1281,17 @@ msgstr "Boutons Radio"
1280
  #: app/features/mec/meta_boxes/search_form.php:599
1281
  #: app/features/mec/meta_boxes/search_form.php:606
1282
  #: app/features/mec/meta_boxes/search_form.php:613
1283
- #: app/features/mec/meta_boxes/search_form.php:620 app/libraries/main.php:2849
1284
  msgid "Dropdown"
1285
  msgstr "Menu déroulant"
1286
 
1287
- #: app/features/events.php:2492 app/features/mec/booking.php:485
1288
- #: app/libraries/main.php:2896
1289
  msgid "Agreement"
1290
  msgstr ""
1291
 
1292
- #: app/features/events.php:2493 app/features/mec/booking.php:486
1293
- #: app/libraries/main.php:2737
1294
  msgid "Paragraph"
1295
  msgstr "Paragraphe"
1296
 
@@ -1329,8 +1330,8 @@ msgstr "organisateurs"
1329
  #: app/features/mec/meta_boxes/search_form.php:521
1330
  #: app/features/mec/meta_boxes/search_form.php:582
1331
  #: app/features/mec/settings.php:726 app/features/mec/single.php:212
1332
- #: app/features/search.php:71 app/libraries/main.php:2042
1333
- #: app/libraries/main.php:4890 app/libraries/skins.php:834
1334
  #: app/skins/single.php:486 app/skins/single.php:907
1335
  #: app/skins/single/default.php:169 app/skins/single/default.php:381
1336
  #: app/skins/single/m1.php:155 app/skins/single/m2.php:87
@@ -1355,7 +1356,7 @@ msgstr "Lieu"
1355
  #: app/features/organizers.php:58 app/features/organizers.php:204
1356
  #: app/features/organizers.php:260 app/features/organizers.php:262
1357
  #: app/features/organizers.php:271 app/features/search.php:75
1358
- #: app/libraries/main.php:4892 app/libraries/skins.php:860
1359
  #: app/skins/single.php:795 app/skins/single/default.php:210
1360
  #: app/skins/single/default.php:422 app/skins/single/m1.php:90
1361
  #: app/skins/single/m2.php:22 app/skins/single/modern.php:31
@@ -1399,7 +1400,7 @@ msgstr "Dupliquer"
1399
  #: app/features/fes.php:224 app/features/fes.php:332 app/features/ix.php:2743
1400
  #: app/features/ix.php:2784 app/features/labels.php:177
1401
  #: app/features/locations.php:229 app/features/organizers.php:203
1402
- #: app/features/speakers.php:251
1403
  msgid "ID"
1404
  msgstr "ID"
1405
 
@@ -1449,13 +1450,13 @@ msgid "The event removed!"
1449
  msgstr "Événement supprimé !"
1450
 
1451
  #: app/features/fes.php:224 app/features/fes.php:332
1452
- #: app/features/profile/profile.php:174 app/libraries/main.php:2077
1453
- #: app/libraries/main.php:4920
1454
  msgid "Ticket"
1455
  msgstr "Billets"
1456
 
1457
  #: app/features/fes.php:224 app/features/fes.php:332
1458
- #: app/libraries/main.php:2054
1459
  msgid "Transaction ID"
1460
  msgstr "Numéro de transaction"
1461
 
@@ -1541,7 +1542,7 @@ msgstr "Supprimer l'image"
1541
 
1542
  #: app/features/fes/form.php:763 app/features/labels.php:61
1543
  #: app/features/labels.php:221 app/features/mec.php:337
1544
- #: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:4887
1545
  #: app/skins/single.php:685 app/skins/single/default.php:148
1546
  #: app/skins/single/default.php:360 app/skins/single/m1.php:64
1547
  #: app/skins/single/modern.php:214
@@ -1885,13 +1886,13 @@ msgstr "Basculer"
1885
  #: app/features/ix/export_g_calendar.php:147
1886
  #: app/features/ix/export_g_calendar.php:164
1887
  #: app/features/mec/notifications.php:92 app/features/mec/notifications.php:144
1888
- #: app/features/mec/notifications.php:197
1889
- #: app/features/mec/notifications.php:398
1890
  msgid "Add to Google Calendar"
1891
  msgstr "Ajouter à Google Agenda"
1892
 
1893
- #: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:616
1894
- #: app/features/mec/modules.php:392 app/features/mec/notifications.php:590
1895
  #: app/features/mec/settings.php:895 app/features/mec/single.php:269
1896
  msgid "Checking ..."
1897
  msgstr "Vérification..."
@@ -1939,8 +1940,8 @@ msgid "ICS Feed"
1939
  msgstr ""
1940
 
1941
  #: app/features/ix/import.php:46 app/features/mec/booking.php:91
1942
- #: app/features/mec/booking.php:251 app/features/mec/booking.php:269
1943
- #: app/features/mec/booking.php:346
1944
  #: app/features/mec/meta_boxes/display_options.php:150
1945
  #: app/features/mec/meta_boxes/display_options.php:315
1946
  #: app/features/mec/modules.php:70 app/features/mec/modules.php:211
@@ -1950,8 +1951,8 @@ msgid "%s is required to use this feature."
1950
  msgstr ""
1951
 
1952
  #: app/features/ix/import.php:46 app/features/ix/sync.php:22
1953
- #: app/features/mec/booking.php:91 app/features/mec/booking.php:251
1954
- #: app/features/mec/booking.php:269 app/features/mec/booking.php:346
1955
  #: app/features/mec/meta_boxes/display_options.php:150
1956
  #: app/features/mec/meta_boxes/display_options.php:315
1957
  #: app/features/mec/meta_boxes/display_options.php:330
@@ -2156,7 +2157,7 @@ msgstr "Import auto depuis Google Agenda"
2156
 
2157
  #: app/features/ix/sync.php:32 app/features/ix/sync.php:41
2158
  #: app/features/ix/sync.php:52 app/features/ix/sync.php:63
2159
- #: app/features/mec/notifications.php:341
2160
  msgid "Important Note"
2161
  msgstr "Note Importante"
2162
 
@@ -2297,7 +2298,7 @@ msgid ""
2297
  msgstr ""
2298
 
2299
  #: app/features/labels.php:79 app/features/locations.php:77
2300
- #: app/features/organizers.php:77 app/features/speakers.php:78
2301
  #, php-format
2302
  msgid "← Back to %s"
2303
  msgstr ""
@@ -2345,7 +2346,7 @@ msgid "Featured"
2345
  msgstr "Image Principale"
2346
 
2347
  #: app/features/labels.php:118 app/features/labels.php:143
2348
- #: app/libraries/main.php:5133 app/skins/agenda/render.php:41
2349
  #: app/skins/available_spot/tpl.php:42 app/skins/carousel/render.php:45
2350
  #: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:32
2351
  #: app/skins/daily_view/render.php:52 app/skins/grid/render.php:50
@@ -2363,7 +2364,7 @@ msgid "You can show featured and canceled events by a different style!"
2363
  msgstr ""
2364
 
2365
  #: app/features/labels.php:180 app/features/locations.php:232
2366
- #: app/features/organizers.php:206 app/features/speakers.php:255
2367
  #: app/modules/booking/steps/tickets.php:38
2368
  msgid "Count"
2369
  msgstr "Apparition"
@@ -2380,7 +2381,7 @@ msgstr "%s événement"
2380
 
2381
  #: app/features/locations.php:59 app/features/mec.php:338
2382
  #: app/features/mec/dashboard.php:243 app/features/mec/meta_boxes/filter.php:96
2383
- #: app/libraries/main.php:4889
2384
  msgid "Locations"
2385
  msgstr "Lieux"
2386
 
@@ -2413,13 +2414,13 @@ msgstr "longitude Geo (Facultatif)"
2413
 
2414
  #: app/features/locations.php:138 app/features/locations.php:180
2415
  #: app/features/organizers.php:127 app/features/organizers.php:160
2416
- #: app/features/speakers.php:156 app/features/speakers.php:201
2417
  msgid "Thumbnail"
2418
  msgstr "Miniature"
2419
 
2420
  #: app/features/locations.php:143 app/features/locations.php:183
2421
  #: app/features/organizers.php:132 app/features/organizers.php:163
2422
- #: app/features/speakers.php:161 app/features/speakers.php:204
2423
  msgid "Upload/Add image"
2424
  msgstr "Mettre en ligne une image"
2425
 
@@ -2427,7 +2428,7 @@ msgstr "Mettre en ligne une image"
2427
  #: app/features/locations.php:340 app/features/locations.php:347
2428
  #: app/features/organizers.php:133 app/features/organizers.php:164
2429
  #: app/features/organizers.php:299 app/features/organizers.php:306
2430
- #: app/features/speakers.php:162 app/features/speakers.php:205
2431
  msgid "Remove image"
2432
  msgstr "Supprimer l'image"
2433
 
@@ -2487,7 +2488,7 @@ msgstr "Choisir une image"
2487
  msgid "Don't show map in single event page"
2488
  msgstr "Ne pas afficher de carte pour cet événement"
2489
 
2490
- #: app/features/locations.php:356 app/libraries/main.php:4923
2491
  #, fuzzy
2492
  #| msgid "Search Locations"
2493
  msgid "Other Locations"
@@ -2548,7 +2549,7 @@ msgstr "Aide"
2548
 
2549
  #: app/features/mec.php:339 app/features/mec/dashboard.php:250
2550
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2551
- #: app/libraries/main.php:4891
2552
  msgid "Organizers"
2553
  msgstr "Organisateurs"
2554
 
@@ -2647,19 +2648,19 @@ msgstr ""
2647
  msgid "Search..."
2648
  msgstr "Rechercher %s"
2649
 
2650
- #: app/features/mec/booking.php:72 app/features/mec/booking.php:492
2651
- #: app/features/mec/booking.php:572 app/features/mec/booking.php:581
2652
- #: app/features/mec/booking.php:591 app/features/mec/booking.php:633
2653
- #: app/features/mec/booking.php:647 app/features/mec/messages.php:15
2654
  #: app/features/mec/messages.php:51 app/features/mec/messages.php:60
2655
  #: app/features/mec/messages.php:94 app/features/mec/messages.php:103
2656
  #: app/features/mec/modules.php:25 app/features/mec/modules.php:357
2657
  #: app/features/mec/modules.php:367 app/features/mec/modules.php:409
2658
  #: app/features/mec/modules.php:423 app/features/mec/notifications.php:14
2659
- #: app/features/mec/notifications.php:499
2660
- #: app/features/mec/notifications.php:511
2661
- #: app/features/mec/notifications.php:607
2662
- #: app/features/mec/notifications.php:621 app/features/mec/settings.php:34
2663
  #: app/features/mec/settings.php:844 app/features/mec/settings.php:854
2664
  #: app/features/mec/settings.php:912 app/features/mec/settings.php:926
2665
  #: app/features/mec/single.php:17 app/features/mec/single.php:234
@@ -2757,136 +2758,152 @@ msgstr ""
2757
  "L'Utilisateur est redirigé vers cette page après avoir réservé. Laisser vide "
2758
  "pour désactiver."
2759
 
2760
- #: app/features/mec/booking.php:169
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2761
  msgid "Enable Express Attendees Form"
2762
  msgstr ""
2763
 
2764
- #: app/features/mec/booking.php:173 app/modules/booking/steps/form.php:52
2765
  msgid "Attendees Form"
2766
  msgstr "Formulaire de réservation"
2767
 
2768
- #: app/features/mec/booking.php:174
2769
  msgid ""
2770
  "Users are able to apply first attendee information for other attendees in "
2771
  "the booking form."
2772
  msgstr ""
2773
 
2774
- #: app/features/mec/booking.php:187
2775
  #, fuzzy
2776
  #| msgid "View Event"
2777
  msgid "Enable Invoice"
2778
  msgstr "Voir l'événement"
2779
 
2780
- #: app/features/mec/booking.php:198
2781
  #, fuzzy
2782
  #| msgid "Enable on booking form"
2783
  msgid "Enable Booking for Ongoing Events"
2784
  msgstr "Activer le formulaire de réservation"
2785
 
2786
- #: app/features/mec/booking.php:203
2787
  msgid "Email verification"
2788
  msgstr "Vérification de l’email"
2789
 
2790
- #: app/features/mec/booking.php:209
2791
  msgid "Auto verification for free bookings"
2792
  msgstr "Vérification automatique pour les réservations gratuites"
2793
 
2794
- #: app/features/mec/booking.php:218
2795
  msgid "Auto verification for paid bookings"
2796
  msgstr "Vérification automatique des réservations payées"
2797
 
2798
- #: app/features/mec/booking.php:222 app/features/mec/notifications.php:151
2799
  #: app/libraries/main.php:573
2800
  msgid "Booking Confirmation"
2801
  msgstr "Confirmation de réservation"
2802
 
2803
- #: app/features/mec/booking.php:228
2804
  msgid "Auto confirmation for free bookings"
2805
  msgstr "Confirmation automatique pour les réservations gratuites"
2806
 
2807
- #: app/features/mec/booking.php:237
2808
  msgid "Auto confirmation for paid bookings"
2809
  msgstr "Confirmation automatique pour les réservations payées"
2810
 
2811
- #: app/features/mec/booking.php:256
2812
  msgid "Enable coupons module"
2813
  msgstr "Activer module de coupons"
2814
 
2815
- #: app/features/mec/booking.php:258
2816
  msgid ""
2817
  "After enabling and saving the settings,, you should reload the page to see a "
2818
  "new menu on the Dashboard > Booking"
2819
  msgstr ""
2820
 
2821
- #: app/features/mec/booking.php:266 app/libraries/main.php:552
2822
  msgid "Taxes / Fees"
2823
  msgstr "Taxes et frais"
2824
 
2825
- #: app/features/mec/booking.php:274
2826
  msgid "Enable taxes / fees module"
2827
  msgstr "Activer le module de taxes / frais"
2828
 
2829
- #: app/features/mec/booking.php:279
2830
  msgid "Add Fee"
2831
  msgstr "Ajouter frais"
2832
 
2833
- #: app/features/mec/booking.php:343 app/libraries/main.php:553
2834
  msgid "Ticket Variations & Options"
2835
  msgstr ""
2836
 
2837
- #: app/features/mec/booking.php:351
2838
  #, fuzzy
2839
  #| msgid "Enable coupons module"
2840
  msgid "Enable ticket options module"
2841
  msgstr "Activer module de coupons"
2842
 
2843
- #: app/features/mec/booking.php:356
2844
  msgid "Add Variation / Option"
2845
  msgstr ""
2846
 
2847
- #: app/features/mec/booking.php:559
2848
  #, fuzzy
2849
  #| msgid "New Organizer Name"
2850
  msgid "Enable Organizer Payment Module"
2851
  msgstr "Nouveau nom d'organisateur"
2852
 
2853
- #: app/features/mec/booking.php:563
2854
  #, fuzzy
2855
  #| msgid "Organizer Name"
2856
  msgid "Organizer Payment"
2857
  msgstr "Nom de l'organisateur"
2858
 
2859
- #: app/features/mec/booking.php:564
2860
  msgid ""
2861
  "By enabling this module, organizers are able to insert their own payment "
2862
  "credentials for enabled gateways per event and receive the payments directly!"
2863
  msgstr ""
2864
 
2865
- #: app/features/mec/booking.php:611 app/features/mec/messages.php:78
2866
- #: app/features/mec/modules.php:387 app/features/mec/notifications.php:585
2867
  #: app/features/mec/settings.php:890 app/features/mec/single.php:264
2868
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:296
2869
  msgid "Saved"
2870
  msgstr "Sauvegardé"
2871
 
2872
- #: app/features/mec/booking.php:612 app/features/mec/messages.php:79
2873
- #: app/features/mec/modules.php:388 app/features/mec/notifications.php:586
2874
  #: app/features/mec/settings.php:891 app/features/mec/single.php:265
2875
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:297
2876
  msgid "Settings Saved!"
2877
  msgstr ""
2878
 
2879
- #: app/features/mec/booking.php:614 app/features/mec/booking.php:636
2880
  #: app/features/mec/modules.php:390 app/features/mec/modules.php:412
2881
- #: app/features/mec/notifications.php:588
2882
- #: app/features/mec/notifications.php:610 app/features/mec/settings.php:893
2883
  #: app/features/mec/settings.php:915 app/features/mec/single.php:267
2884
- #: app/features/mec/single.php:289 app/libraries/main.php:5132
2885
  msgid "Verified"
2886
  msgstr "Vérifié"
2887
 
2888
- #: app/features/mec/booking.php:638 app/features/mec/modules.php:414
2889
- #: app/features/mec/notifications.php:612 app/features/mec/settings.php:917
2890
  #: app/features/mec/single.php:291
2891
  msgid "Please Refresh Page"
2892
  msgstr "Merci de Rafraichir la Page"
@@ -3859,8 +3876,8 @@ msgstr "Désactivé"
3859
  #: app/features/mec/meta_boxes/search_form.php:535
3860
  #: app/features/mec/meta_boxes/search_form.php:596
3861
  #: app/features/mec/settings.php:739 app/features/mec/single.php:217
3862
- #: app/features/search.php:79 app/features/speakers.php:59
3863
- #: app/features/speakers.php:252 app/libraries/main.php:4894
3864
  #: app/libraries/skins.php:886
3865
  msgid "Speaker"
3866
  msgstr ""
@@ -4135,11 +4152,11 @@ msgstr ""
4135
 
4136
  #: app/features/mec/notifications.php:45 app/features/mec/notifications.php:102
4137
  #: app/features/mec/notifications.php:154
4138
- #: app/features/mec/notifications.php:213
4139
- #: app/features/mec/notifications.php:281
4140
- #: app/features/mec/notifications.php:344
4141
- #: app/features/mec/notifications.php:417
4142
- #: app/features/mec/notifications.php:463
4143
  msgid "Email Subject"
4144
  msgstr "Sujet"
4145
 
@@ -4148,94 +4165,94 @@ msgstr "Sujet"
4148
  #: app/features/mec/notifications.php:110
4149
  #: app/features/mec/notifications.php:158
4150
  #: app/features/mec/notifications.php:162
4151
- #: app/features/mec/notifications.php:217
4152
- #: app/features/mec/notifications.php:221
4153
- #: app/features/mec/notifications.php:285
4154
- #: app/features/mec/notifications.php:289
4155
- #: app/features/mec/notifications.php:348
4156
- #: app/features/mec/notifications.php:352
4157
- #: app/features/mec/notifications.php:363
4158
- #: app/features/mec/notifications.php:421
4159
- #: app/features/mec/notifications.php:425
4160
- #: app/features/mec/notifications.php:467
4161
- #: app/features/mec/notifications.php:471
4162
- msgid "Custom Recipients"
4163
- msgstr "Destinataires personnalisés"
4164
-
4165
- #: app/features/mec/notifications.php:54 app/features/mec/notifications.php:111
4166
- #: app/features/mec/notifications.php:163
4167
  #: app/features/mec/notifications.php:222
 
4168
  #: app/features/mec/notifications.php:290
 
4169
  #: app/features/mec/notifications.php:353
4170
  #: app/features/mec/notifications.php:364
 
4171
  #: app/features/mec/notifications.php:426
 
4172
  #: app/features/mec/notifications.php:472
 
 
 
 
 
 
 
 
 
 
 
4173
  msgid "Insert comma separated emails for multiple recipients."
4174
  msgstr ""
4175
  "Insérez une virgule entre chaque emails pour séparés plusieurs destinataires."
4176
 
4177
- #: app/features/mec/notifications.php:61 app/features/mec/notifications.php:233
4178
- #: app/features/mec/notifications.php:297
4179
  msgid "Send the email to event organizer"
4180
  msgstr "Envoyer l'email à l'organisateur de l'événement"
4181
 
4182
  #: app/features/mec/notifications.php:64 app/features/mec/notifications.php:117
4183
  #: app/features/mec/notifications.php:169
4184
- #: app/features/mec/notifications.php:240
4185
- #: app/features/mec/notifications.php:300
4186
- #: app/features/mec/notifications.php:370
4187
- #: app/features/mec/notifications.php:432
4188
- #: app/features/mec/notifications.php:478
4189
  msgid "Email Content"
4190
  msgstr "Contenu de l'email"
4191
 
4192
  #: app/features/mec/notifications.php:67 app/features/mec/notifications.php:120
4193
  #: app/features/mec/notifications.php:172
4194
- #: app/features/mec/notifications.php:243
4195
- #: app/features/mec/notifications.php:303
4196
- #: app/features/mec/notifications.php:373
4197
- #: app/features/mec/notifications.php:435
4198
- #: app/features/mec/notifications.php:481
4199
  msgid "You can use following placeholders"
4200
  msgstr "Vous pouvez utiliser les variables suivantes"
4201
 
4202
  #: app/features/mec/notifications.php:69 app/features/mec/notifications.php:122
4203
  #: app/features/mec/notifications.php:174
4204
- #: app/features/mec/notifications.php:245
4205
- #: app/features/mec/notifications.php:305
4206
- #: app/features/mec/notifications.php:375
4207
  msgid "First name of attendee"
4208
  msgstr "Prénom du participant"
4209
 
4210
  #: app/features/mec/notifications.php:70 app/features/mec/notifications.php:123
4211
  #: app/features/mec/notifications.php:175
4212
- #: app/features/mec/notifications.php:246
4213
- #: app/features/mec/notifications.php:306
4214
- #: app/features/mec/notifications.php:376
4215
  msgid "Last name of attendee"
4216
  msgstr "Nom du participant"
4217
 
4218
  #: app/features/mec/notifications.php:71 app/features/mec/notifications.php:124
4219
  #: app/features/mec/notifications.php:176
4220
- #: app/features/mec/notifications.php:247
4221
- #: app/features/mec/notifications.php:307
4222
- #: app/features/mec/notifications.php:377
4223
  msgid "Email of attendee"
4224
  msgstr "Email du participant"
4225
 
4226
  #: app/features/mec/notifications.php:72 app/features/mec/notifications.php:125
4227
  #: app/features/mec/notifications.php:177
4228
- #: app/features/mec/notifications.php:248
4229
- #: app/features/mec/notifications.php:308
4230
- #: app/features/mec/notifications.php:378
4231
  msgid "Booked date of event"
4232
  msgstr "Date de réservation"
4233
 
4234
  #: app/features/mec/notifications.php:73 app/features/mec/notifications.php:126
4235
  #: app/features/mec/notifications.php:178
4236
- #: app/features/mec/notifications.php:249
4237
- #: app/features/mec/notifications.php:309
4238
- #: app/features/mec/notifications.php:379
4239
  #, fuzzy
4240
  #| msgid "Booked date of event"
4241
  msgid "Booked time of event"
@@ -4243,55 +4260,55 @@ msgstr "Date de réservation"
4243
 
4244
  #: app/features/mec/notifications.php:74 app/features/mec/notifications.php:127
4245
  #: app/features/mec/notifications.php:179
4246
- #: app/features/mec/notifications.php:250
4247
- #: app/features/mec/notifications.php:310
4248
- #: app/features/mec/notifications.php:380
4249
  msgid "Booking Price"
4250
  msgstr "Prix de la réservation"
4251
 
4252
  #: app/features/mec/notifications.php:75 app/features/mec/notifications.php:128
4253
  #: app/features/mec/notifications.php:180
4254
- #: app/features/mec/notifications.php:251
4255
- #: app/features/mec/notifications.php:311
4256
- #: app/features/mec/notifications.php:381
4257
- #: app/features/mec/notifications.php:441
4258
- #: app/features/mec/notifications.php:487
4259
- msgid "Your website title"
4260
- msgstr "Titre de votre site"
4261
-
4262
- #: app/features/mec/notifications.php:76 app/features/mec/notifications.php:129
4263
- #: app/features/mec/notifications.php:181
4264
  #: app/features/mec/notifications.php:252
4265
  #: app/features/mec/notifications.php:312
4266
  #: app/features/mec/notifications.php:382
4267
  #: app/features/mec/notifications.php:442
4268
  #: app/features/mec/notifications.php:488
4269
- msgid "Your website URL"
4270
- msgstr "URL de votre site"
4271
 
4272
- #: app/features/mec/notifications.php:77 app/features/mec/notifications.php:130
4273
- #: app/features/mec/notifications.php:182
4274
  #: app/features/mec/notifications.php:253
4275
  #: app/features/mec/notifications.php:313
4276
  #: app/features/mec/notifications.php:383
4277
  #: app/features/mec/notifications.php:443
4278
  #: app/features/mec/notifications.php:489
 
 
 
 
 
 
 
 
 
 
4279
  msgid "Your website description"
4280
  msgstr "Description de votre site"
4281
 
4282
  #: app/features/mec/notifications.php:78 app/features/mec/notifications.php:131
4283
  #: app/features/mec/notifications.php:183
4284
- #: app/features/mec/notifications.php:254
4285
- #: app/features/mec/notifications.php:314
4286
- #: app/features/mec/notifications.php:384
4287
  msgid "Event title"
4288
  msgstr "Nom de l'événement"
4289
 
4290
  #: app/features/mec/notifications.php:79 app/features/mec/notifications.php:132
4291
  #: app/features/mec/notifications.php:184
4292
- #: app/features/mec/notifications.php:255
4293
- #: app/features/mec/notifications.php:315
4294
- #: app/features/mec/notifications.php:385
4295
  #, fuzzy
4296
  #| msgid "Event Link"
4297
  msgid "Event link"
@@ -4299,9 +4316,9 @@ msgstr "Lien de l'événement"
4299
 
4300
  #: app/features/mec/notifications.php:80 app/features/mec/notifications.php:133
4301
  #: app/features/mec/notifications.php:185
4302
- #: app/features/mec/notifications.php:256
4303
- #: app/features/mec/notifications.php:316
4304
- #: app/features/mec/notifications.php:386
4305
  #, fuzzy
4306
  #| msgid "Organizer name of booked event"
4307
  msgid "Speaker name of booked event"
@@ -4309,83 +4326,83 @@ msgstr "Organisateur de l'événement réservé"
4309
 
4310
  #: app/features/mec/notifications.php:81 app/features/mec/notifications.php:134
4311
  #: app/features/mec/notifications.php:186
4312
- #: app/features/mec/notifications.php:257
4313
- #: app/features/mec/notifications.php:317
4314
- #: app/features/mec/notifications.php:387
4315
  msgid "Organizer name of booked event"
4316
  msgstr "Organisateur de l'événement réservé"
4317
 
4318
  #: app/features/mec/notifications.php:82 app/features/mec/notifications.php:135
4319
  #: app/features/mec/notifications.php:187
4320
- #: app/features/mec/notifications.php:258
4321
- #: app/features/mec/notifications.php:318
4322
- #: app/features/mec/notifications.php:388
4323
  msgid "Organizer tel of booked event"
4324
  msgstr "Tel de l'organisateur de l'événement réservé"
4325
 
4326
  #: app/features/mec/notifications.php:83 app/features/mec/notifications.php:136
4327
  #: app/features/mec/notifications.php:188
4328
- #: app/features/mec/notifications.php:259
4329
- #: app/features/mec/notifications.php:319
4330
- #: app/features/mec/notifications.php:389
4331
  msgid "Organizer email of booked event"
4332
  msgstr "Email de l'organisateur de l'événement réservé"
4333
 
4334
  #: app/features/mec/notifications.php:84 app/features/mec/notifications.php:137
4335
  #: app/features/mec/notifications.php:189
4336
- #: app/features/mec/notifications.php:260
4337
- #: app/features/mec/notifications.php:320
4338
- #: app/features/mec/notifications.php:390
4339
  msgid "Location name of booked event"
4340
  msgstr "Nom du lieu de l'événement réservé"
4341
 
4342
  #: app/features/mec/notifications.php:85 app/features/mec/notifications.php:138
4343
  #: app/features/mec/notifications.php:190
4344
- #: app/features/mec/notifications.php:261
4345
- #: app/features/mec/notifications.php:321
4346
- #: app/features/mec/notifications.php:391
4347
  msgid "Location address of booked event"
4348
  msgstr "Adresse lieu de l'événement réservé"
4349
 
4350
- #: app/features/mec/notifications.php:86 app/features/mec/notifications.php:263
4351
- #: app/features/mec/notifications.php:323
4352
  msgid "Full Attendee info such as booking form data, name, email etc."
4353
  msgstr ""
4354
  "Information complète des participants tels que les données de formulaire de "
4355
  "réservation, nom, email, etc."
4356
 
4357
  #: app/features/mec/notifications.php:87 app/features/mec/notifications.php:192
4358
- #: app/features/mec/notifications.php:393
4359
  msgid "Invoice Link"
4360
  msgstr ""
4361
 
4362
  #: app/features/mec/notifications.php:88 app/features/mec/notifications.php:140
4363
  #: app/features/mec/notifications.php:193
4364
- #: app/features/mec/notifications.php:264
4365
- #: app/features/mec/notifications.php:324
4366
- #: app/features/mec/notifications.php:394
4367
  msgid "Total Attendees"
4368
  msgstr ""
4369
 
4370
  #: app/features/mec/notifications.php:89 app/features/mec/notifications.php:141
4371
- #: app/features/mec/notifications.php:194
4372
- #: app/features/mec/notifications.php:395
4373
  #, fuzzy
4374
  #| msgid "Ticket Name"
4375
  msgid "Ticket name"
4376
  msgstr "Nom du billet"
4377
 
4378
  #: app/features/mec/notifications.php:90 app/features/mec/notifications.php:142
4379
- #: app/features/mec/notifications.php:195
4380
- #: app/features/mec/notifications.php:396
4381
  #, fuzzy
4382
  #| msgid "Ticket Name"
4383
  msgid "Ticket time"
4384
  msgstr "Nom du billet"
4385
 
4386
  #: app/features/mec/notifications.php:91 app/features/mec/notifications.php:143
4387
- #: app/features/mec/notifications.php:196
4388
- #: app/features/mec/notifications.php:397
4389
  msgid "Download ICS file"
4390
  msgstr ""
4391
 
@@ -4408,23 +4425,29 @@ msgstr ""
4408
  "d'ajout d'événement."
4409
 
4410
  #: app/features/mec/notifications.php:191
4411
- #: app/features/mec/notifications.php:392
4412
  msgid "Booking cancellation link."
4413
  msgstr "Lien d'annulation de la réservation."
4414
 
4415
- #: app/features/mec/notifications.php:203 app/libraries/main.php:574
 
 
 
 
 
 
4416
  #, fuzzy
4417
  #| msgid "Booking cancellation link."
4418
  msgid "Booking Cancellation"
4419
  msgstr "Lien d'annulation de la réservation."
4420
 
4421
- #: app/features/mec/notifications.php:207
4422
  #, fuzzy
4423
  #| msgid "Enable new event notification"
4424
  msgid "Enable cancellation notification"
4425
  msgstr "Activer la notification d'ajout d'un nouvel événement"
4426
 
4427
- #: app/features/mec/notifications.php:211
4428
  #, fuzzy
4429
  #| msgid "It sends to attendee after booking for notifying him/her."
4430
  msgid ""
@@ -4433,49 +4456,49 @@ msgid ""
4433
  msgstr ""
4434
  "Elle est envoyée aux participants après leur réservation pour les avertir."
4435
 
4436
- #: app/features/mec/notifications.php:229
4437
  #, fuzzy
4438
  #| msgid "Send the email to event organizer"
4439
  msgid "Send the email to admin"
4440
  msgstr "Envoyer l'email à l'organisateur de l'événement"
4441
 
4442
- #: app/features/mec/notifications.php:237
4443
  #, fuzzy
4444
  #| msgid "Send the email to event organizer"
4445
  msgid "Send the email to booking user"
4446
  msgstr "Envoyer l'email à l'organisateur de l'événement"
4447
 
4448
- #: app/features/mec/notifications.php:262
4449
- #: app/features/mec/notifications.php:322
4450
  msgid "Admin booking management link."
4451
  msgstr "Administrateur lien de gestion des réservations."
4452
 
4453
- #: app/features/mec/notifications.php:271 app/libraries/main.php:576
4454
  msgid "Admin"
4455
  msgstr ""
4456
 
4457
- #: app/features/mec/notifications.php:275
4458
  #, fuzzy
4459
  #| msgid "Enable new event notification"
4460
  msgid "Enable admin notification"
4461
  msgstr "Activer la notification d'ajout d'un nouvel événement"
4462
 
4463
- #: app/features/mec/notifications.php:279
4464
  msgid "It sends to admin to notify him/her that a new booking received."
4465
  msgstr ""
4466
  "Il est envoyé à admin pour l'informer qu'il y a une nouvelle réservation "
4467
  "reçue."
4468
 
4469
- #: app/features/mec/notifications.php:331 app/libraries/main.php:575
4470
  #: app/libraries/notifications.php:478
4471
  msgid "Booking Reminder"
4472
  msgstr ""
4473
 
4474
- #: app/features/mec/notifications.php:335
4475
  msgid "Enable booking reminder notification"
4476
  msgstr ""
4477
 
4478
- #: app/features/mec/notifications.php:341
4479
  #, php-format
4480
  msgid ""
4481
  "Set a cronjob to call %s file once per day otherwise it won't send the "
@@ -4483,24 +4506,24 @@ msgid ""
4483
  "send the reminders multiple times."
4484
  msgstr ""
4485
 
4486
- #: app/features/mec/notifications.php:341
4487
  msgid "only once per day"
4488
  msgstr ""
4489
 
4490
- #: app/features/mec/notifications.php:359
4491
  msgid "Days"
4492
  msgstr ""
4493
 
4494
- #: app/features/mec/notifications.php:407 app/features/mec/support-page.php:80
4495
  #: app/libraries/main.php:577
4496
  msgid "New Event"
4497
  msgstr "Nouvel événement"
4498
 
4499
- #: app/features/mec/notifications.php:411
4500
  msgid "Enable new event notification"
4501
  msgstr "Activer la notification d'ajout d'un nouvel événement"
4502
 
4503
- #: app/features/mec/notifications.php:415
4504
  msgid ""
4505
  "It sends after adding a new event from frontend event submission or from "
4506
  "website backend."
@@ -4508,47 +4531,47 @@ msgstr ""
4508
  "S'envoie lorsqu'un nouvel événement est ajouté depuis le formulaire de "
4509
  "soumission ou depuis le tableau de bord du site."
4510
 
4511
- #: app/features/mec/notifications.php:437
4512
- #: app/features/mec/notifications.php:483
4513
  msgid "Title of event"
4514
  msgstr "Titre de l'événement"
4515
 
4516
- #: app/features/mec/notifications.php:438
4517
- #: app/features/mec/notifications.php:484
4518
  #, fuzzy
4519
  #| msgid "Title of event"
4520
  msgid "Link of event"
4521
  msgstr "Titre de l'événement"
4522
 
4523
- #: app/features/mec/notifications.php:439
4524
- #: app/features/mec/notifications.php:485
4525
  msgid "Status of event"
4526
  msgstr "Statut de l'événement"
4527
 
4528
- #: app/features/mec/notifications.php:440
4529
- #: app/features/mec/notifications.php:486 app/features/mec/settings.php:654
4530
  #: app/features/mec/settings.php:658
4531
  msgid "Event Note"
4532
  msgstr "Note sur l'événement"
4533
 
4534
- #: app/features/mec/notifications.php:444
4535
- #: app/features/mec/notifications.php:490
4536
  msgid "Admin events management link."
4537
  msgstr "Lien d'administration d'événements."
4538
 
4539
- #: app/features/mec/notifications.php:453 app/libraries/main.php:578
4540
  #, fuzzy
4541
  #| msgid "The event published."
4542
  msgid "User Event Publishing"
4543
  msgstr "Événement Publié."
4544
 
4545
- #: app/features/mec/notifications.php:457
4546
  #, fuzzy
4547
  #| msgid "Enable new event notification"
4548
  msgid "Enable user event publishing notification"
4549
  msgstr "Activer la notification d'ajout d'un nouvel événement"
4550
 
4551
- #: app/features/mec/notifications.php:461
4552
  #, fuzzy
4553
  #| msgid ""
4554
  #| "It sends after adding a new event from frontend event submission or from "
@@ -4655,7 +4678,7 @@ msgid "You can enable/disable Schema scripts"
4655
  msgstr ""
4656
 
4657
  #: app/features/mec/settings.php:136 app/features/mec/settings.php:146
4658
- #: app/libraries/main.php:4898
4659
  msgid "Weekdays"
4660
  msgstr "Jours de la Semaine"
4661
 
@@ -5837,7 +5860,7 @@ msgstr "ex : votre@surnom.com"
5837
  msgid "eg. https://webnus.net"
5838
  msgstr "http://webnus.biz"
5839
 
5840
- #: app/features/organizers.php:311 app/libraries/main.php:4922
5841
  #: app/skins/single.php:845
5842
  msgid "Other Organizers"
5843
  msgstr "Autres organisateurs"
@@ -5865,11 +5888,11 @@ msgstr "Votre réservation ne peut être annulée."
5865
  msgid "#"
5866
  msgstr ""
5867
 
5868
- #: app/features/profile/profile.php:56 app/libraries/main.php:2918
5869
  msgid "Status"
5870
  msgstr ""
5871
 
5872
- #: app/features/profile/profile.php:59 app/libraries/main.php:2063
5873
  msgid "Attendees"
5874
  msgstr ""
5875
 
@@ -5904,7 +5927,7 @@ msgstr "Vérification"
5904
  msgid "No bookings found!"
5905
  msgstr "Aucune réservation trouvée !"
5906
 
5907
- #: app/features/search.php:87 app/libraries/main.php:4888
5908
  msgid "label"
5909
  msgstr "texte"
5910
 
@@ -5938,77 +5961,83 @@ msgstr ""
5938
  msgid "All of the day"
5939
  msgstr "Toute la journée"
5940
 
5941
- #: app/features/speakers.php:108 app/features/speakers.php:177
5942
- #: app/features/speakers.php:253
5943
  #, fuzzy
5944
  #| msgid "Title"
5945
  msgid "Job Title"
5946
  msgstr "Titre"
5947
 
5948
- #: app/features/speakers.php:111 app/features/speakers.php:178
5949
  msgid "Insert speaker job title."
5950
  msgstr ""
5951
 
5952
- #: app/features/speakers.php:119 app/features/speakers.php:182
5953
  #, fuzzy
5954
  #| msgid "Insert organizer phone number."
5955
  msgid "Insert speaker phone number."
5956
  msgstr "Ajouter le numéro de téléphone de l'organisateur."
5957
 
5958
- #: app/features/speakers.php:127 app/features/speakers.php:186
5959
  #, fuzzy
5960
  #| msgid "Insert organizer email address."
5961
  msgid "Insert speaker email address."
5962
  msgstr "Ajouter l'email de l'organisateur."
5963
 
5964
- #: app/features/speakers.php:132 app/features/speakers.php:189
5965
  #, fuzzy
5966
  #| msgid "Facebook Page Link"
5967
  msgid "Facebook Page"
5968
  msgstr "URL Page Facebook"
5969
 
5970
- #: app/features/speakers.php:135 app/features/speakers.php:190
5971
  #, fuzzy
5972
  #| msgid "Import from Facebook Calendar"
5973
  msgid "Insert URL of Facebook Page"
5974
  msgstr "Importer depuis Calendrier Facebook"
5975
 
5976
- #: app/features/speakers.php:140 app/features/speakers.php:193
5977
  msgid "Instagram"
5978
  msgstr ""
5979
 
5980
- #: app/features/speakers.php:143 app/features/speakers.php:194
5981
  #, fuzzy
5982
  #| msgid "Insert -1 for unlimited usage"
5983
  msgid "Insert URL of Instagram"
5984
  msgstr "Entrez -1 pour un nombre illimité de participant"
5985
 
5986
- #: app/features/speakers.php:148 app/features/speakers.php:197
5987
  #, fuzzy
5988
  #| msgid "Twitter"
5989
  msgid "Twitter Page"
5990
  msgstr "Twitter"
5991
 
5992
- #: app/features/speakers.php:151 app/features/speakers.php:198
5993
  #, fuzzy
5994
  #| msgid "Insert -1 for unlimited usage"
5995
  msgid "Insert URL of Twitter Page"
5996
  msgstr "Entrez -1 pour un nombre illimité de participant"
5997
 
5998
- #: app/features/speakers.php:313
5999
  msgid "Sorry, You must insert speaker name!"
6000
  msgstr ""
6001
 
 
 
 
 
 
 
6002
  #: app/libraries/book.php:60
6003
  #, php-format
6004
  msgid "%s Price"
6005
  msgstr ""
6006
 
6007
- #: app/libraries/book.php:553
6008
  msgid "Discount"
6009
  msgstr "Réduction"
6010
 
6011
- #: app/libraries/book.php:643 app/modules/booking/default.php:305
6012
  #: app/modules/booking/default.php:403
6013
  msgid "Download Invoice"
6014
  msgstr ""
@@ -6141,31 +6170,31 @@ msgstr "Vue Caroussel"
6141
  msgid "Slider View"
6142
  msgstr "Vue sur Slider"
6143
 
6144
- #: app/libraries/main.php:382 app/libraries/main.php:4900
6145
  msgid "SU"
6146
  msgstr "DIM."
6147
 
6148
- #: app/libraries/main.php:383 app/libraries/main.php:4901
6149
  msgid "MO"
6150
  msgstr "LUN."
6151
 
6152
- #: app/libraries/main.php:384 app/libraries/main.php:4902
6153
  msgid "TU"
6154
  msgstr "MAR."
6155
 
6156
- #: app/libraries/main.php:385 app/libraries/main.php:4903
6157
  msgid "WE"
6158
  msgstr "MER."
6159
 
6160
- #: app/libraries/main.php:386 app/libraries/main.php:4904
6161
  msgid "TH"
6162
  msgstr "JEU."
6163
 
6164
- #: app/libraries/main.php:387 app/libraries/main.php:4905
6165
  msgid "FR"
6166
  msgstr "VEN."
6167
 
6168
- #: app/libraries/main.php:388 app/libraries/main.php:4906
6169
  msgid "SA"
6170
  msgstr "SAM."
6171
 
@@ -6309,204 +6338,215 @@ msgstr ""
6309
  msgid "Invoice is invalid."
6310
  msgstr "Le code de sécurité de la carte n'est pas correct."
6311
 
6312
- #: app/libraries/main.php:2004
 
 
 
 
 
 
 
 
 
 
 
6313
  msgid "Cannot find the booking!"
6314
  msgstr ""
6315
 
6316
- #: app/libraries/main.php:2004
6317
  msgid "Booking is invalid."
6318
  msgstr ""
6319
 
6320
- #: app/libraries/main.php:2033
6321
  #, php-format
6322
  msgid "%s Invoice"
6323
  msgstr ""
6324
 
6325
- #: app/libraries/main.php:2107
6326
  msgid "Billing"
6327
  msgstr ""
6328
 
6329
- #: app/libraries/main.php:2118
6330
  msgid "Total"
6331
  msgstr ""
6332
 
6333
- #: app/libraries/main.php:2175
6334
  #, fuzzy
6335
  #| msgid "Request is invalid!"
6336
  msgid "Request is not valid."
6337
  msgstr "Requête invalide !"
6338
 
6339
- #: app/libraries/main.php:2175
6340
  msgid "iCal export stopped!"
6341
  msgstr "Export vers iCal arrêté !"
6342
 
6343
- #: app/libraries/main.php:2502 app/libraries/main.php:2532
6344
- #: app/libraries/main.php:2561 app/libraries/main.php:2591
6345
- #: app/libraries/main.php:2620 app/libraries/main.php:2649
6346
- #: app/libraries/main.php:2678 app/libraries/main.php:2707
6347
- #: app/libraries/main.php:2736 app/libraries/main.php:2760
6348
- #: app/libraries/main.php:2804 app/libraries/main.php:2848
6349
- #: app/libraries/main.php:2895 app/libraries/main.php:2942
6350
  msgid "Sort"
6351
  msgstr "Trier"
6352
 
6353
- #: app/libraries/main.php:2508 app/libraries/main.php:2538
6354
- #: app/libraries/main.php:2567 app/libraries/main.php:2597
6355
- #: app/libraries/main.php:2626 app/libraries/main.php:2655
6356
- #: app/libraries/main.php:2684 app/libraries/main.php:2713
6357
- #: app/libraries/main.php:2766 app/libraries/main.php:2810
6358
- #: app/libraries/main.php:2854 app/libraries/main.php:2901
6359
  msgid "Required Field"
6360
  msgstr "Champ obligatoire"
6361
 
6362
- #: app/libraries/main.php:2514 app/libraries/main.php:2544
6363
- #: app/libraries/main.php:2573 app/libraries/main.php:2603
6364
- #: app/libraries/main.php:2632 app/libraries/main.php:2661
6365
- #: app/libraries/main.php:2690 app/libraries/main.php:2719
6366
- #: app/libraries/main.php:2772 app/libraries/main.php:2816
6367
- #: app/libraries/main.php:2860 app/libraries/main.php:2907
6368
  msgid "Insert a label for this field"
6369
  msgstr "Insérez une label pour ce champ"
6370
 
6371
- #: app/libraries/main.php:2742
6372
  msgid "HTML and shortcode are allowed."
6373
  msgstr "HTML et shortcode sont autorisés."
6374
 
6375
- #: app/libraries/main.php:2785 app/libraries/main.php:2829
6376
- #: app/libraries/main.php:2873
6377
  msgid "Option"
6378
  msgstr "Option"
6379
 
6380
- #: app/libraries/main.php:2907
6381
  #, php-format
6382
  msgid "Instead of %s, the page title with a link will be show."
6383
  msgstr ""
6384
 
6385
- #: app/libraries/main.php:2909
6386
  msgid "Agreement Page"
6387
  msgstr ""
6388
 
6389
- #: app/libraries/main.php:2920
6390
  msgid "Checked by default"
6391
  msgstr ""
6392
 
6393
- #: app/libraries/main.php:2921
6394
  msgid "Unchecked by default"
6395
  msgstr ""
6396
 
6397
- #: app/libraries/main.php:2944
6398
  msgid "Insert a label for this option"
6399
  msgstr "Insérez une étiquette pour cette option"
6400
 
6401
- #: app/libraries/main.php:2959
6402
  msgid "Free"
6403
  msgstr "Gratuite"
6404
 
6405
- #: app/libraries/main.php:3565 app/libraries/main.php:5147
6406
  #, fuzzy
6407
  #| msgid "M.E. Calendar"
6408
  msgid "M.E. Calender"
6409
  msgstr "M.E Calendrier"
6410
 
6411
- #: app/libraries/main.php:3720
6412
  #, php-format
6413
  msgid "Copy of %s"
6414
  msgstr "Copie de %s"
6415
 
6416
- #: app/libraries/main.php:4393
6417
  msgid "Booked an event."
6418
  msgstr "Réserver un Évènements"
6419
 
6420
- #: app/libraries/main.php:4434
6421
  #, php-format
6422
  msgid "%s booked %s event."
6423
  msgstr "%s réservé %s événement"
6424
 
6425
- #: app/libraries/main.php:4883
6426
  msgid "Taxonomies"
6427
  msgstr "Taxonomies"
6428
 
6429
- #: app/libraries/main.php:4885
6430
  msgid "Category Plural Label"
6431
  msgstr "Catégorie au pluriel"
6432
 
6433
- #: app/libraries/main.php:4886
6434
  msgid "Category Singular Label"
6435
  msgstr "Catégorie au singulier"
6436
 
6437
- #: app/libraries/main.php:4887
6438
  msgid "Label Plural Label"
6439
  msgstr "Étiquettes au pluriel"
6440
 
6441
- #: app/libraries/main.php:4888
6442
  msgid "Label Singular Label"
6443
  msgstr "Étiquettes au singulier"
6444
 
6445
- #: app/libraries/main.php:4889
6446
  msgid "Location Plural Label"
6447
  msgstr "Lieu au pluriel"
6448
 
6449
- #: app/libraries/main.php:4890
6450
  msgid "Location Singular Label"
6451
  msgstr "Lieu au singulier"
6452
 
6453
- #: app/libraries/main.php:4891
6454
  msgid "Organizer Plural Label"
6455
  msgstr "Organisateur au pluriel"
6456
 
6457
- #: app/libraries/main.php:4892
6458
  msgid "Organizer Singular Label"
6459
  msgstr "Organisateur au singulier"
6460
 
6461
- #: app/libraries/main.php:4893
6462
  #, fuzzy
6463
  #| msgid "Label Plural Label"
6464
  msgid "Speaker Plural Label"
6465
  msgstr "Étiquettes au pluriel"
6466
 
6467
- #: app/libraries/main.php:4894
6468
  #, fuzzy
6469
  #| msgid "Label Singular Label"
6470
  msgid "Speaker Singular Label"
6471
  msgstr "Étiquettes au singulier"
6472
 
6473
- #: app/libraries/main.php:4900
6474
  msgid "Sunday abbreviation"
6475
  msgstr "Abréviation de Dimanche"
6476
 
6477
- #: app/libraries/main.php:4901
6478
  msgid "Monday abbreviation"
6479
  msgstr "Abréviation de Lundi"
6480
 
6481
- #: app/libraries/main.php:4902
6482
  msgid "Tuesday abbreviation"
6483
  msgstr "Abréviation de Mardi"
6484
 
6485
- #: app/libraries/main.php:4903
6486
  msgid "Wednesday abbreviation"
6487
  msgstr "Abréviation de Mercredi"
6488
 
6489
- #: app/libraries/main.php:4904
6490
  msgid "Thursday abbreviation"
6491
  msgstr "Abréviation de Jeudi"
6492
 
6493
- #: app/libraries/main.php:4905
6494
  msgid "Friday abbreviation"
6495
  msgstr "Abréviation de Vendredi"
6496
 
6497
- #: app/libraries/main.php:4906
6498
  msgid "Saturday abbreviation"
6499
  msgstr "Abréviation de Samedi"
6500
 
6501
- #: app/libraries/main.php:4910
6502
  msgid "Others"
6503
  msgstr "Autres"
6504
 
6505
- #: app/libraries/main.php:4912
6506
  msgid "Booking Success Message"
6507
  msgstr "Message de succès de réservation"
6508
 
6509
- #: app/libraries/main.php:4912
6510
  msgid ""
6511
  "Thanks for your booking. Your tickets booked, booking verification might be "
6512
  "needed, please check your email."
@@ -6514,11 +6554,11 @@ msgstr ""
6514
  "Merci pour votre réservation. Vos billets sont réservés, cependant une "
6515
  "vérification peut être nécessaires, contrôlez votre boite mail."
6516
 
6517
- #: app/libraries/main.php:4913 app/widgets/single.php:131
6518
  msgid "Register Button"
6519
  msgstr "Boutons d'inscription"
6520
 
6521
- #: app/libraries/main.php:4913 app/skins/available_spot/tpl.php:224
6522
  #: app/skins/carousel/render.php:158 app/skins/carousel/render.php:194
6523
  #: app/skins/grid/render.php:118 app/skins/grid/render.php:164
6524
  #: app/skins/grid/render.php:207 app/skins/grid/render.php:235
@@ -6535,11 +6575,11 @@ msgstr "Boutons d'inscription"
6535
  msgid "REGISTER"
6536
  msgstr "S'INSCRIRE"
6537
 
6538
- #: app/libraries/main.php:4914
6539
  msgid "View Detail Button"
6540
  msgstr "Afficher le boutons de détail"
6541
 
6542
- #: app/libraries/main.php:4914 app/skins/carousel/render.php:158
6543
  #: app/skins/carousel/render.php:194 app/skins/grid/render.php:118
6544
  #: app/skins/grid/render.php:164 app/skins/grid/render.php:207
6545
  #: app/skins/grid/render.php:235 app/skins/list/render.php:108
@@ -6550,59 +6590,59 @@ msgstr "Afficher le boutons de détail"
6550
  msgid "View Detail"
6551
  msgstr "En savoir plus"
6552
 
6553
- #: app/libraries/main.php:4915
6554
  msgid "Event Detail Button"
6555
  msgstr "Bouton de détail de l'événement"
6556
 
6557
- #: app/libraries/main.php:4915 app/skins/countdown/tpl.php:244
6558
  msgid "Event Detail"
6559
  msgstr "Détails"
6560
 
6561
- #: app/libraries/main.php:4917
6562
  msgid "More Info Link"
6563
  msgstr "Plus de lien d'info"
6564
 
6565
- #: app/libraries/main.php:4920
6566
  msgid "Ticket (Singular)"
6567
  msgstr ""
6568
 
6569
- #: app/libraries/main.php:4921
6570
  msgid "Tickets (Plural)"
6571
  msgstr ""
6572
 
6573
- #: app/libraries/main.php:5007
6574
  msgid "EventON"
6575
  msgstr ""
6576
 
6577
- #: app/libraries/main.php:5008
6578
  msgid "The Events Calendar"
6579
  msgstr ""
6580
 
6581
- #: app/libraries/main.php:5009
6582
  msgid "Events Schedule WP Plugin"
6583
  msgstr ""
6584
 
6585
- #: app/libraries/main.php:5010
6586
  msgid "Calendarize It"
6587
  msgstr ""
6588
 
6589
- #: app/libraries/main.php:5084 app/libraries/main.php:5104
6590
  msgid "Confirmed"
6591
  msgstr "Confirmé"
6592
 
6593
- #: app/libraries/main.php:5085 app/libraries/main.php:5112
6594
  msgid "Rejected"
6595
  msgstr "Rejeté"
6596
 
6597
- #: app/libraries/main.php:5086 app/libraries/main.php:5108
6598
  msgid "Pending"
6599
  msgstr "En attente"
6600
 
6601
- #: app/libraries/main.php:5134
6602
  msgid "Waiting"
6603
  msgstr "En attente"
6604
 
6605
- #: app/libraries/main.php:5339 app/libraries/render.php:382
6606
  msgid "Skin controller does not exist."
6607
  msgstr "Le contrôleur de Skin n'existe pas."
6608
 
@@ -6638,23 +6678,23 @@ msgstr "Un nouvel événement est ajouté."
6638
  msgid "Your event is published."
6639
  msgstr "Événement Publié."
6640
 
6641
- #: app/libraries/notifications.php:821
6642
  msgid "to"
6643
  msgstr ""
6644
 
6645
- #: app/libraries/notifications.php:834 app/modules/export/details.php:27
6646
  msgid "+ Add to Google Calendar"
6647
  msgstr "+ Ajouter à mon Agenda Google"
6648
 
6649
- #: app/libraries/notifications.php:835 app/modules/export/details.php:28
6650
  msgid "+ iCal export"
6651
  msgstr "+ Exporter vers iCal"
6652
 
6653
- #: app/libraries/notifications.php:898
6654
  msgid "Yes"
6655
  msgstr "Oui"
6656
 
6657
- #: app/libraries/notifications.php:898
6658
  msgid "No"
6659
  msgstr "Non"
6660
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
+ "POT-Creation-Date: 2019-10-30 12:41+0330\n"
5
+ "PO-Revision-Date: 2019-10-30 12:43+0330\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: fr_FR\n"
82
  msgstr "Paramètres"
83
 
84
  #: app/features/contextual.php:62 app/features/events.php:2415
85
+ #: app/features/mec/booking.php:439 app/features/mec/support.php:29
86
  #: app/libraries/main.php:554
87
  msgid "Booking Form"
88
  msgstr "Formulaire de réservation"
96
  "YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></iframe>"
97
  msgstr ""
98
 
99
+ #: app/features/contextual.php:70 app/features/mec/booking.php:557
100
  #: app/features/mec/support.php:36 app/libraries/main.php:555
101
  msgid "Payment Gateways"
102
  msgstr "Passerelle de paiement"
231
  msgid "Booking"
232
  msgstr "Réservation"
233
 
234
+ #: app/features/contextual.php:318 app/features/mec/booking.php:261
235
  #: app/libraries/main.php:551
236
  msgid "Coupons"
237
  msgstr "Bons de réduction"
307
  #: app/features/mec/meta_boxes/search_form.php:514
308
  #: app/features/mec/meta_boxes/search_form.php:575
309
  #: app/features/mec/settings.php:720 app/features/mec/single.php:204
310
+ #: app/features/search.php:67 app/libraries/main.php:4897
311
  #: app/libraries/skins.php:808 app/skins/single.php:559
312
  #: app/skins/single/default.php:185 app/skins/single/default.php:397
313
  #: app/skins/single/m1.php:170 app/skins/single/m2.php:102
317
 
318
  #: app/features/events.php:176 app/features/events.php:3212
319
  #: app/features/fes/form.php:737 app/features/mec.php:336
320
+ #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:4896
321
  msgid "Categories"
322
  msgstr "Catégories"
323
 
324
  #: app/features/events.php:186 app/features/labels.php:71
325
  #: app/features/locations.php:69 app/features/organizers.php:69
326
+ #: app/features/speakers.php:72
327
  #, php-format
328
  msgid "All %s"
329
  msgstr "Tous %s"
330
 
331
  #: app/features/events.php:187 app/features/labels.php:72
332
  #: app/features/locations.php:70 app/features/organizers.php:70
333
+ #: app/features/speakers.php:73
334
  #, php-format
335
  msgid "Edit %s"
336
  msgstr "Modifier %s"
337
 
338
  #: app/features/events.php:188 app/features/labels.php:73
339
  #: app/features/locations.php:71 app/features/organizers.php:71
340
+ #: app/features/speakers.php:74
341
  #, php-format
342
  msgid "View %s"
343
  msgstr "Voir %s"
344
 
345
  #: app/features/events.php:189 app/features/labels.php:74
346
  #: app/features/locations.php:72 app/features/organizers.php:72
347
+ #: app/features/speakers.php:75
348
  #, php-format
349
  msgid "Update %s"
350
  msgstr "Mettre à jour %s"
351
 
352
  #: app/features/events.php:190 app/features/labels.php:75
353
  #: app/features/locations.php:73 app/features/organizers.php:73
354
+ #: app/features/speakers.php:76
355
  #, php-format
356
  msgid "Add New %s"
357
  msgstr "Ajouter un nouvel %s"
358
 
359
  #: app/features/events.php:191 app/features/labels.php:76
360
  #: app/features/locations.php:74 app/features/organizers.php:74
361
+ #: app/features/speakers.php:77
362
  #, php-format
363
  msgid "New %s Name"
364
  msgstr "Nouveau nom %s"
365
 
366
  #: app/features/events.php:192 app/features/labels.php:77
367
  #: app/features/locations.php:75 app/features/organizers.php:75
368
+ #: app/features/speakers.php:78
369
  #, fuzzy, php-format
370
  msgid "Popular %s"
371
  msgstr "%s Populaire"
372
 
373
  #: app/features/events.php:193 app/features/labels.php:78
374
  #: app/features/locations.php:76 app/features/organizers.php:76
375
+ #: app/features/speakers.php:79
376
  #, fuzzy, php-format
377
  msgid "Search %s"
378
  msgstr "Rechercher %s"
401
  #: app/features/fes.php:224 app/features/fes.php:332
402
  #: app/features/fes/form.php:669 app/features/labels.php:178
403
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
404
+ #: app/features/profile/profile.php:168 app/libraries/notifications.php:886
405
  #: app/modules/booking/steps/form.php:37
406
  msgid "Name"
407
  msgstr "Nom"
409
  #: app/features/events.php:463 app/features/events.php:2408
410
  #: app/features/events.php:2484 app/features/fes.php:224
411
  #: app/features/fes.php:332 app/features/fes/form.php:665
412
+ #: app/features/mec/booking.php:57 app/features/mec/booking.php:490
413
  #: app/features/organizers.php:111 app/features/organizers.php:152
414
+ #: app/features/profile/profile.php:171 app/features/speakers.php:126
415
+ #: app/features/speakers.php:187 app/libraries/main.php:1472
416
+ #: app/libraries/main.php:1541 app/libraries/main.php:2603
417
+ #: app/libraries/notifications.php:887 app/modules/booking/steps/form.php:46
418
  #: app/modules/booking/steps/form.php:84 app/skins/single.php:812
419
  #: app/skins/single.php:867 app/skins/single/default.php:227
420
  #: app/skins/single/default.php:439 app/skins/single/m1.php:107
510
  #: app/features/events.php:2324 app/features/events.php:2337
511
  #: app/features/fes/form.php:631 app/features/locations.php:299
512
  #: app/features/mec/booking.php:108 app/features/mec/booking.php:158
513
+ #: app/features/mec/booking.php:171 app/features/mec/booking.php:187
514
+ #: app/features/mec/booking.php:306 app/features/mec/booking.php:335
515
+ #: app/features/mec/booking.php:383 app/features/mec/booking.php:393
516
+ #: app/features/mec/booking.php:415 app/features/mec/booking.php:425
517
+ #: app/features/mec/dashboard.php:71
518
  #: app/features/mec/meta_boxes/display_options.php:66
519
  #: app/features/mec/meta_boxes/display_options.php:79
520
  #: app/features/mec/meta_boxes/display_options.php:92
550
  #: app/features/mec/modules.php:154 app/features/mec/modules.php:312
551
  #: app/features/mec/notifications.php:54 app/features/mec/notifications.php:111
552
  #: app/features/mec/notifications.php:163
553
+ #: app/features/mec/notifications.php:223
554
+ #: app/features/mec/notifications.php:291
555
+ #: app/features/mec/notifications.php:354
556
+ #: app/features/mec/notifications.php:365
557
+ #: app/features/mec/notifications.php:427
558
+ #: app/features/mec/notifications.php:473 app/features/mec/settings.php:66
559
  #: app/features/mec/settings.php:85 app/features/mec/settings.php:112
560
  #: app/features/mec/settings.php:147 app/features/mec/settings.php:168
561
  #: app/features/mec/settings.php:188 app/features/mec/settings.php:265
793
  #: app/features/events.php:1153 app/features/events.php:3434
794
  #: app/features/events.php:3476 app/features/fes/form.php:707
795
  #: app/features/ix.php:2743 app/features/ix.php:2784
796
+ #: app/features/mec/settings.php:576 app/libraries/main.php:4929
797
  #: app/widgets/single.php:103
798
  msgid "Event Cost"
799
  msgstr "Tarif de l'événement"
800
 
801
  #: app/features/events.php:1157 app/features/fes/form.php:710
802
+ #: app/libraries/main.php:4930 app/skins/single.php:582
803
  #: app/skins/single/default.php:119 app/skins/single/default.php:331
804
  #: app/skins/single/m1.php:49 app/skins/single/modern.php:199
805
  msgid "Cost"
817
 
818
  #: app/features/events.php:1189 app/features/events.php:2485
819
  #: app/features/fes.php:224 app/features/fes.php:332
820
+ #: app/features/mec/booking.php:491 app/features/profile/profile.php:53
821
+ #: app/libraries/main.php:2059 app/libraries/main.php:2661
822
  #: app/modules/booking/steps/tickets.php:22
823
  #: app/modules/next-event/details.php:90 app/skins/single.php:637
824
  #: app/skins/single/default.php:83 app/skins/single/default.php:295
863
  #: app/features/events.php:2313 app/features/events.php:3240
864
  #: app/features/events.php:3434 app/features/events.php:3476
865
  #: app/features/fes/form.php:226 app/features/ix.php:2743
866
+ #: app/features/ix.php:2784 app/features/mec/booking.php:375
867
+ #: app/features/mec/booking.php:407 app/features/mec/styling.php:115
868
  msgid "Title"
869
  msgstr "Titre"
870
 
875
  #: app/features/events.php:2032 app/features/events.php:2059
876
  #: app/features/events.php:2158 app/features/events.php:2194
877
  #: app/features/events.php:2301 app/features/events.php:2343
878
+ #: app/features/mec/booking.php:318 app/features/mec/booking.php:347
879
+ #: app/features/mec/booking.php:398 app/features/mec/booking.php:430
880
+ #: app/libraries/main.php:2522 app/libraries/main.php:2552
881
+ #: app/libraries/main.php:2581 app/libraries/main.php:2611
882
+ #: app/libraries/main.php:2640 app/libraries/main.php:2669
883
+ #: app/libraries/main.php:2698 app/libraries/main.php:2727
884
+ #: app/libraries/main.php:2749 app/libraries/main.php:2780
885
+ #: app/libraries/main.php:2824 app/libraries/main.php:2868
886
+ #: app/libraries/main.php:2915 app/libraries/main.php:2954
887
  msgid "Remove"
888
  msgstr "Supprimer"
889
 
910
  #: app/features/events.php:1336 app/features/events.php:1369
911
  #: app/features/events.php:1430 app/features/fes/form.php:831
912
  #: app/features/mec.php:344 app/features/mec/modules.php:52
913
+ #: app/features/mec/settings.php:624 app/features/speakers.php:62
914
+ #: app/libraries/main.php:559 app/libraries/main.php:4904
915
  #: app/modules/speakers/details.php:18
916
  msgid "Speakers"
917
  msgstr ""
928
  msgstr "Liens de l'évenements"
929
 
930
  #: app/features/events.php:1464 app/features/events.php:1470
931
+ #: app/features/fes/form.php:686 app/libraries/main.php:4927
932
  msgid "Event Link"
933
  msgstr "Lien de l'événement"
934
 
953
  msgstr ""
954
 
955
  #: app/features/events.php:1480 app/features/events.php:1493
956
+ #: app/features/fes/form.php:691 app/libraries/main.php:4928
957
  #: app/skins/single.php:656 app/skins/single/default.php:133
958
  #: app/skins/single/default.php:345 app/skins/single/m1.php:191
959
  #: app/skins/single/m2.php:124 app/skins/single/modern.php:132
1022
  msgstr ""
1023
 
1024
  #: app/features/events.php:1638 app/libraries/book.php:60
1025
+ #: app/libraries/main.php:4932 app/modules/booking/steps/tickets.php:40
1026
  msgid "Tickets"
1027
  msgstr "Billets"
1028
 
1054
  #: app/features/events.php:1996 app/features/events.php:1999
1055
  #: app/features/events.php:2055 app/features/events.php:2272
1056
  #: app/features/events.php:2276 app/features/events.php:2318
1057
+ #: app/features/events.php:2321 app/features/mec/booking.php:379
1058
+ #: app/features/mec/booking.php:382 app/features/mec/booking.php:411
1059
+ #: app/features/mec/booking.php:414
1060
  msgid "Price"
1061
  msgstr "Tarif"
1062
 
1106
  msgstr "Frais"
1107
 
1108
  #: app/features/events.php:2132 app/features/events.php:2170
1109
+ #: app/features/mec/booking.php:298 app/features/mec/booking.php:327
1110
  msgid "Fee Title"
1111
  msgstr "Titre"
1112
 
1113
  #: app/features/events.php:2138 app/features/events.php:2142
1114
  #: app/features/events.php:2175 app/features/events.php:2178
1115
+ #: app/features/mec/booking.php:302 app/features/mec/booking.php:305
1116
+ #: app/features/mec/booking.php:331 app/features/mec/booking.php:334
1117
  msgid "Amount"
1118
  msgstr "Montant"
1119
 
1120
  #: app/features/events.php:2143 app/features/events.php:2179
1121
+ #: app/features/mec/booking.php:306 app/features/mec/booking.php:335
1122
  msgid ""
1123
  "Fee amount, considered as fixed amount if you set the type to amount "
1124
  "otherwise considered as percentage"
1127
  "considéré comme pourcentage à ajouter au prix"
1128
 
1129
  #: app/features/events.php:2152 app/features/events.php:2188
1130
+ #: app/features/mec/booking.php:313 app/features/mec/booking.php:342
1131
  msgid "Percent"
1132
  msgstr "Pourcentage"
1133
 
1134
  #: app/features/events.php:2153 app/features/events.php:2189
1135
+ #: app/features/mec/booking.php:314 app/features/mec/booking.php:343
1136
  msgid "Amount (Per Ticket)"
1137
  msgstr "Montant (par Billet)"
1138
 
1139
  #: app/features/events.php:2154 app/features/events.php:2190
1140
+ #: app/features/mec/booking.php:315 app/features/mec/booking.php:344
1141
  msgid "Amount (Per Booking)"
1142
  msgstr "Montant (par réservation)"
1143
 
1146
  msgstr ""
1147
 
1148
  #: app/features/events.php:2277 app/features/events.php:2322
1149
+ #: app/features/mec/booking.php:383 app/features/mec/booking.php:415
1150
  #, fuzzy
1151
  #| msgid "Option"
1152
  msgid "Option Price"
1154
 
1155
  #: app/features/events.php:2287 app/features/events.php:2291
1156
  #: app/features/events.php:2331 app/features/events.php:2334
1157
+ #: app/features/mec/booking.php:389 app/features/mec/booking.php:392
1158
+ #: app/features/mec/booking.php:421 app/features/mec/booking.php:424
1159
  #, fuzzy
1160
  #| msgid "Amount (Per Ticket)"
1161
  msgid "Maximum Per Ticket"
1162
  msgstr "Montant (par Billet)"
1163
 
1164
  #: app/features/events.php:2292 app/features/events.php:2335
1165
+ #: app/features/mec/booking.php:393 app/features/mec/booking.php:425
1166
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
1167
  msgstr ""
1168
 
1169
+ #: app/features/events.php:2481 app/features/mec/booking.php:487
1170
+ #: app/libraries/main.php:2544
1171
  #, fuzzy
1172
  #| msgid "Name"
1173
  msgid "MEC Name"
1174
  msgstr "Nom"
1175
 
1176
+ #: app/features/events.php:2482 app/features/mec/booking.php:488
1177
+ #: app/libraries/main.php:2573
1178
  #, fuzzy
1179
  #| msgid "Email"
1180
  msgid "MEC Email"
1181
  msgstr "Email"
1182
 
1183
+ #: app/features/events.php:2483 app/features/mec/booking.php:489
1184
+ #: app/libraries/main.php:2514
1185
  msgid "Text"
1186
  msgstr "Texte"
1187
 
1188
+ #: app/features/events.php:2486 app/features/mec/booking.php:492
1189
  #: app/features/organizers.php:103 app/features/organizers.php:148
1190
+ #: app/features/speakers.php:118 app/features/speakers.php:183
1191
+ #: app/features/speakers.php:256 app/libraries/main.php:2690
1192
  msgid "Tel"
1193
  msgstr "Téléphone"
1194
 
1195
+ #: app/features/events.php:2487 app/features/mec/booking.php:493
1196
+ #: app/libraries/main.php:2632
1197
  msgid "File"
1198
  msgstr ""
1199
 
1200
+ #: app/features/events.php:2488 app/features/mec/booking.php:494
1201
+ #: app/libraries/main.php:2719
1202
  msgid "Textarea"
1203
  msgstr "Zone de texte"
1204
 
1205
+ #: app/features/events.php:2489 app/features/mec/booking.php:495
1206
+ #: app/libraries/main.php:2772
1207
  msgid "Checkboxes"
1208
  msgstr "Boîtes à cocher"
1209
 
1210
+ #: app/features/events.php:2490 app/features/mec/booking.php:496
1211
+ #: app/libraries/main.php:2816
1212
  msgid "Radio Buttons"
1213
  msgstr "Boutons Radio"
1214
 
1215
+ #: app/features/events.php:2491 app/features/mec/booking.php:497
1216
  #: app/features/mec/meta_boxes/search_form.php:34
1217
  #: app/features/mec/meta_boxes/search_form.php:41
1218
  #: app/features/mec/meta_boxes/search_form.php:48
1281
  #: app/features/mec/meta_boxes/search_form.php:599
1282
  #: app/features/mec/meta_boxes/search_form.php:606
1283
  #: app/features/mec/meta_boxes/search_form.php:613
1284
+ #: app/features/mec/meta_boxes/search_form.php:620 app/libraries/main.php:2860
1285
  msgid "Dropdown"
1286
  msgstr "Menu déroulant"
1287
 
1288
+ #: app/features/events.php:2492 app/features/mec/booking.php:498
1289
+ #: app/libraries/main.php:2907
1290
  msgid "Agreement"
1291
  msgstr ""
1292
 
1293
+ #: app/features/events.php:2493 app/features/mec/booking.php:499
1294
+ #: app/libraries/main.php:2748
1295
  msgid "Paragraph"
1296
  msgstr "Paragraphe"
1297
 
1330
  #: app/features/mec/meta_boxes/search_form.php:521
1331
  #: app/features/mec/meta_boxes/search_form.php:582
1332
  #: app/features/mec/settings.php:726 app/features/mec/single.php:212
1333
+ #: app/features/search.php:71 app/libraries/main.php:2053
1334
+ #: app/libraries/main.php:4901 app/libraries/skins.php:834
1335
  #: app/skins/single.php:486 app/skins/single.php:907
1336
  #: app/skins/single/default.php:169 app/skins/single/default.php:381
1337
  #: app/skins/single/m1.php:155 app/skins/single/m2.php:87
1356
  #: app/features/organizers.php:58 app/features/organizers.php:204
1357
  #: app/features/organizers.php:260 app/features/organizers.php:262
1358
  #: app/features/organizers.php:271 app/features/search.php:75
1359
+ #: app/libraries/main.php:4903 app/libraries/skins.php:860
1360
  #: app/skins/single.php:795 app/skins/single/default.php:210
1361
  #: app/skins/single/default.php:422 app/skins/single/m1.php:90
1362
  #: app/skins/single/m2.php:22 app/skins/single/modern.php:31
1400
  #: app/features/fes.php:224 app/features/fes.php:332 app/features/ix.php:2743
1401
  #: app/features/ix.php:2784 app/features/labels.php:177
1402
  #: app/features/locations.php:229 app/features/organizers.php:203
1403
+ #: app/features/speakers.php:253
1404
  msgid "ID"
1405
  msgstr "ID"
1406
 
1450
  msgstr "Événement supprimé !"
1451
 
1452
  #: app/features/fes.php:224 app/features/fes.php:332
1453
+ #: app/features/profile/profile.php:174 app/libraries/main.php:2088
1454
+ #: app/libraries/main.php:4931
1455
  msgid "Ticket"
1456
  msgstr "Billets"
1457
 
1458
  #: app/features/fes.php:224 app/features/fes.php:332
1459
+ #: app/libraries/main.php:2065
1460
  msgid "Transaction ID"
1461
  msgstr "Numéro de transaction"
1462
 
1542
 
1543
  #: app/features/fes/form.php:763 app/features/labels.php:61
1544
  #: app/features/labels.php:221 app/features/mec.php:337
1545
+ #: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:4898
1546
  #: app/skins/single.php:685 app/skins/single/default.php:148
1547
  #: app/skins/single/default.php:360 app/skins/single/m1.php:64
1548
  #: app/skins/single/modern.php:214
1886
  #: app/features/ix/export_g_calendar.php:147
1887
  #: app/features/ix/export_g_calendar.php:164
1888
  #: app/features/mec/notifications.php:92 app/features/mec/notifications.php:144
1889
+ #: app/features/mec/notifications.php:198
1890
+ #: app/features/mec/notifications.php:399
1891
  msgid "Add to Google Calendar"
1892
  msgstr "Ajouter à Google Agenda"
1893
 
1894
+ #: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:629
1895
+ #: app/features/mec/modules.php:392 app/features/mec/notifications.php:591
1896
  #: app/features/mec/settings.php:895 app/features/mec/single.php:269
1897
  msgid "Checking ..."
1898
  msgstr "Vérification..."
1940
  msgstr ""
1941
 
1942
  #: app/features/ix/import.php:46 app/features/mec/booking.php:91
1943
+ #: app/features/mec/booking.php:264 app/features/mec/booking.php:282
1944
+ #: app/features/mec/booking.php:359
1945
  #: app/features/mec/meta_boxes/display_options.php:150
1946
  #: app/features/mec/meta_boxes/display_options.php:315
1947
  #: app/features/mec/modules.php:70 app/features/mec/modules.php:211
1951
  msgstr ""
1952
 
1953
  #: app/features/ix/import.php:46 app/features/ix/sync.php:22
1954
+ #: app/features/mec/booking.php:91 app/features/mec/booking.php:264
1955
+ #: app/features/mec/booking.php:282 app/features/mec/booking.php:359
1956
  #: app/features/mec/meta_boxes/display_options.php:150
1957
  #: app/features/mec/meta_boxes/display_options.php:315
1958
  #: app/features/mec/meta_boxes/display_options.php:330
2157
 
2158
  #: app/features/ix/sync.php:32 app/features/ix/sync.php:41
2159
  #: app/features/ix/sync.php:52 app/features/ix/sync.php:63
2160
+ #: app/features/mec/notifications.php:342
2161
  msgid "Important Note"
2162
  msgstr "Note Importante"
2163
 
2298
  msgstr ""
2299
 
2300
  #: app/features/labels.php:79 app/features/locations.php:77
2301
+ #: app/features/organizers.php:77 app/features/speakers.php:80
2302
  #, php-format
2303
  msgid "← Back to %s"
2304
  msgstr ""
2346
  msgstr "Image Principale"
2347
 
2348
  #: app/features/labels.php:118 app/features/labels.php:143
2349
+ #: app/libraries/main.php:5144 app/skins/agenda/render.php:41
2350
  #: app/skins/available_spot/tpl.php:42 app/skins/carousel/render.php:45
2351
  #: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:32
2352
  #: app/skins/daily_view/render.php:52 app/skins/grid/render.php:50
2364
  msgstr ""
2365
 
2366
  #: app/features/labels.php:180 app/features/locations.php:232
2367
+ #: app/features/organizers.php:206 app/features/speakers.php:257
2368
  #: app/modules/booking/steps/tickets.php:38
2369
  msgid "Count"
2370
  msgstr "Apparition"
2381
 
2382
  #: app/features/locations.php:59 app/features/mec.php:338
2383
  #: app/features/mec/dashboard.php:243 app/features/mec/meta_boxes/filter.php:96
2384
+ #: app/libraries/main.php:4900
2385
  msgid "Locations"
2386
  msgstr "Lieux"
2387
 
2414
 
2415
  #: app/features/locations.php:138 app/features/locations.php:180
2416
  #: app/features/organizers.php:127 app/features/organizers.php:160
2417
+ #: app/features/speakers.php:158 app/features/speakers.php:203
2418
  msgid "Thumbnail"
2419
  msgstr "Miniature"
2420
 
2421
  #: app/features/locations.php:143 app/features/locations.php:183
2422
  #: app/features/organizers.php:132 app/features/organizers.php:163
2423
+ #: app/features/speakers.php:163 app/features/speakers.php:206
2424
  msgid "Upload/Add image"
2425
  msgstr "Mettre en ligne une image"
2426
 
2428
  #: app/features/locations.php:340 app/features/locations.php:347
2429
  #: app/features/organizers.php:133 app/features/organizers.php:164
2430
  #: app/features/organizers.php:299 app/features/organizers.php:306
2431
+ #: app/features/speakers.php:164 app/features/speakers.php:207
2432
  msgid "Remove image"
2433
  msgstr "Supprimer l'image"
2434
 
2488
  msgid "Don't show map in single event page"
2489
  msgstr "Ne pas afficher de carte pour cet événement"
2490
 
2491
+ #: app/features/locations.php:356 app/libraries/main.php:4934
2492
  #, fuzzy
2493
  #| msgid "Search Locations"
2494
  msgid "Other Locations"
2549
 
2550
  #: app/features/mec.php:339 app/features/mec/dashboard.php:250
2551
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2552
+ #: app/libraries/main.php:4902
2553
  msgid "Organizers"
2554
  msgstr "Organisateurs"
2555
 
2648
  msgid "Search..."
2649
  msgstr "Rechercher %s"
2650
 
2651
+ #: app/features/mec/booking.php:72 app/features/mec/booking.php:505
2652
+ #: app/features/mec/booking.php:585 app/features/mec/booking.php:594
2653
+ #: app/features/mec/booking.php:604 app/features/mec/booking.php:646
2654
+ #: app/features/mec/booking.php:660 app/features/mec/messages.php:15
2655
  #: app/features/mec/messages.php:51 app/features/mec/messages.php:60
2656
  #: app/features/mec/messages.php:94 app/features/mec/messages.php:103
2657
  #: app/features/mec/modules.php:25 app/features/mec/modules.php:357
2658
  #: app/features/mec/modules.php:367 app/features/mec/modules.php:409
2659
  #: app/features/mec/modules.php:423 app/features/mec/notifications.php:14
2660
+ #: app/features/mec/notifications.php:500
2661
+ #: app/features/mec/notifications.php:512
2662
+ #: app/features/mec/notifications.php:608
2663
+ #: app/features/mec/notifications.php:622 app/features/mec/settings.php:34
2664
  #: app/features/mec/settings.php:844 app/features/mec/settings.php:854
2665
  #: app/features/mec/settings.php:912 app/features/mec/settings.php:926
2666
  #: app/features/mec/single.php:17 app/features/mec/single.php:234
2758
  "L'Utilisateur est redirigé vers cette page après avoir réservé. Laisser vide "
2759
  "pour désactiver."
2760
 
2761
+ #: app/features/mec/booking.php:165 app/features/mec/booking.php:170
2762
+ #, fuzzy
2763
+ #| msgid "Thank You Page"
2764
+ msgid "Thank You Page Time Interval"
2765
+ msgstr "Page de Remerciement"
2766
+
2767
+ #: app/features/mec/booking.php:167
2768
+ msgid "2000 mean 2 seconds"
2769
+ msgstr ""
2770
+
2771
+ #: app/features/mec/booking.php:171
2772
+ msgid ""
2773
+ "Waiting time before redirecting to thank you page. It's in miliseconds so "
2774
+ "2000 means 2 seconds."
2775
+ msgstr ""
2776
+
2777
+ #: app/features/mec/booking.php:182
2778
  msgid "Enable Express Attendees Form"
2779
  msgstr ""
2780
 
2781
+ #: app/features/mec/booking.php:186 app/modules/booking/steps/form.php:52
2782
  msgid "Attendees Form"
2783
  msgstr "Formulaire de réservation"
2784
 
2785
+ #: app/features/mec/booking.php:187
2786
  msgid ""
2787
  "Users are able to apply first attendee information for other attendees in "
2788
  "the booking form."
2789
  msgstr ""
2790
 
2791
+ #: app/features/mec/booking.php:200
2792
  #, fuzzy
2793
  #| msgid "View Event"
2794
  msgid "Enable Invoice"
2795
  msgstr "Voir l'événement"
2796
 
2797
+ #: app/features/mec/booking.php:211
2798
  #, fuzzy
2799
  #| msgid "Enable on booking form"
2800
  msgid "Enable Booking for Ongoing Events"
2801
  msgstr "Activer le formulaire de réservation"
2802
 
2803
+ #: app/features/mec/booking.php:216
2804
  msgid "Email verification"
2805
  msgstr "Vérification de l’email"
2806
 
2807
+ #: app/features/mec/booking.php:222
2808
  msgid "Auto verification for free bookings"
2809
  msgstr "Vérification automatique pour les réservations gratuites"
2810
 
2811
+ #: app/features/mec/booking.php:231
2812
  msgid "Auto verification for paid bookings"
2813
  msgstr "Vérification automatique des réservations payées"
2814
 
2815
+ #: app/features/mec/booking.php:235 app/features/mec/notifications.php:151
2816
  #: app/libraries/main.php:573
2817
  msgid "Booking Confirmation"
2818
  msgstr "Confirmation de réservation"
2819
 
2820
+ #: app/features/mec/booking.php:241
2821
  msgid "Auto confirmation for free bookings"
2822
  msgstr "Confirmation automatique pour les réservations gratuites"
2823
 
2824
+ #: app/features/mec/booking.php:250
2825
  msgid "Auto confirmation for paid bookings"
2826
  msgstr "Confirmation automatique pour les réservations payées"
2827
 
2828
+ #: app/features/mec/booking.php:269
2829
  msgid "Enable coupons module"
2830
  msgstr "Activer module de coupons"
2831
 
2832
+ #: app/features/mec/booking.php:271
2833
  msgid ""
2834
  "After enabling and saving the settings,, you should reload the page to see a "
2835
  "new menu on the Dashboard > Booking"
2836
  msgstr ""
2837
 
2838
+ #: app/features/mec/booking.php:279 app/libraries/main.php:552
2839
  msgid "Taxes / Fees"
2840
  msgstr "Taxes et frais"
2841
 
2842
+ #: app/features/mec/booking.php:287
2843
  msgid "Enable taxes / fees module"
2844
  msgstr "Activer le module de taxes / frais"
2845
 
2846
+ #: app/features/mec/booking.php:292
2847
  msgid "Add Fee"
2848
  msgstr "Ajouter frais"
2849
 
2850
+ #: app/features/mec/booking.php:356 app/libraries/main.php:553
2851
  msgid "Ticket Variations & Options"
2852
  msgstr ""
2853
 
2854
+ #: app/features/mec/booking.php:364
2855
  #, fuzzy
2856
  #| msgid "Enable coupons module"
2857
  msgid "Enable ticket options module"
2858
  msgstr "Activer module de coupons"
2859
 
2860
+ #: app/features/mec/booking.php:369
2861
  msgid "Add Variation / Option"
2862
  msgstr ""
2863
 
2864
+ #: app/features/mec/booking.php:572
2865
  #, fuzzy
2866
  #| msgid "New Organizer Name"
2867
  msgid "Enable Organizer Payment Module"
2868
  msgstr "Nouveau nom d'organisateur"
2869
 
2870
+ #: app/features/mec/booking.php:576
2871
  #, fuzzy
2872
  #| msgid "Organizer Name"
2873
  msgid "Organizer Payment"
2874
  msgstr "Nom de l'organisateur"
2875
 
2876
+ #: app/features/mec/booking.php:577
2877
  msgid ""
2878
  "By enabling this module, organizers are able to insert their own payment "
2879
  "credentials for enabled gateways per event and receive the payments directly!"
2880
  msgstr ""
2881
 
2882
+ #: app/features/mec/booking.php:624 app/features/mec/messages.php:78
2883
+ #: app/features/mec/modules.php:387 app/features/mec/notifications.php:586
2884
  #: app/features/mec/settings.php:890 app/features/mec/single.php:264
2885
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:296
2886
  msgid "Saved"
2887
  msgstr "Sauvegardé"
2888
 
2889
+ #: app/features/mec/booking.php:625 app/features/mec/messages.php:79
2890
+ #: app/features/mec/modules.php:388 app/features/mec/notifications.php:587
2891
  #: app/features/mec/settings.php:891 app/features/mec/single.php:265
2892
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:297
2893
  msgid "Settings Saved!"
2894
  msgstr ""
2895
 
2896
+ #: app/features/mec/booking.php:627 app/features/mec/booking.php:649
2897
  #: app/features/mec/modules.php:390 app/features/mec/modules.php:412
2898
+ #: app/features/mec/notifications.php:589
2899
+ #: app/features/mec/notifications.php:611 app/features/mec/settings.php:893
2900
  #: app/features/mec/settings.php:915 app/features/mec/single.php:267
2901
+ #: app/features/mec/single.php:289 app/libraries/main.php:5143
2902
  msgid "Verified"
2903
  msgstr "Vérifié"
2904
 
2905
+ #: app/features/mec/booking.php:651 app/features/mec/modules.php:414
2906
+ #: app/features/mec/notifications.php:613 app/features/mec/settings.php:917
2907
  #: app/features/mec/single.php:291
2908
  msgid "Please Refresh Page"
2909
  msgstr "Merci de Rafraichir la Page"
3876
  #: app/features/mec/meta_boxes/search_form.php:535
3877
  #: app/features/mec/meta_boxes/search_form.php:596
3878
  #: app/features/mec/settings.php:739 app/features/mec/single.php:217
3879
+ #: app/features/search.php:79 app/features/speakers.php:61
3880
+ #: app/features/speakers.php:254 app/libraries/main.php:4905
3881
  #: app/libraries/skins.php:886
3882
  msgid "Speaker"
3883
  msgstr ""
4152
 
4153
  #: app/features/mec/notifications.php:45 app/features/mec/notifications.php:102
4154
  #: app/features/mec/notifications.php:154
4155
+ #: app/features/mec/notifications.php:214
4156
+ #: app/features/mec/notifications.php:282
4157
+ #: app/features/mec/notifications.php:345
4158
+ #: app/features/mec/notifications.php:418
4159
+ #: app/features/mec/notifications.php:464
4160
  msgid "Email Subject"
4161
  msgstr "Sujet"
4162
 
4165
  #: app/features/mec/notifications.php:110
4166
  #: app/features/mec/notifications.php:158
4167
  #: app/features/mec/notifications.php:162
4168
+ #: app/features/mec/notifications.php:218
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4169
  #: app/features/mec/notifications.php:222
4170
+ #: app/features/mec/notifications.php:286
4171
  #: app/features/mec/notifications.php:290
4172
+ #: app/features/mec/notifications.php:349
4173
  #: app/features/mec/notifications.php:353
4174
  #: app/features/mec/notifications.php:364
4175
+ #: app/features/mec/notifications.php:422
4176
  #: app/features/mec/notifications.php:426
4177
+ #: app/features/mec/notifications.php:468
4178
  #: app/features/mec/notifications.php:472
4179
+ msgid "Custom Recipients"
4180
+ msgstr "Destinataires personnalisés"
4181
+
4182
+ #: app/features/mec/notifications.php:54 app/features/mec/notifications.php:111
4183
+ #: app/features/mec/notifications.php:163
4184
+ #: app/features/mec/notifications.php:223
4185
+ #: app/features/mec/notifications.php:291
4186
+ #: app/features/mec/notifications.php:354
4187
+ #: app/features/mec/notifications.php:365
4188
+ #: app/features/mec/notifications.php:427
4189
+ #: app/features/mec/notifications.php:473
4190
  msgid "Insert comma separated emails for multiple recipients."
4191
  msgstr ""
4192
  "Insérez une virgule entre chaque emails pour séparés plusieurs destinataires."
4193
 
4194
+ #: app/features/mec/notifications.php:61 app/features/mec/notifications.php:234
4195
+ #: app/features/mec/notifications.php:298
4196
  msgid "Send the email to event organizer"
4197
  msgstr "Envoyer l'email à l'organisateur de l'événement"
4198
 
4199
  #: app/features/mec/notifications.php:64 app/features/mec/notifications.php:117
4200
  #: app/features/mec/notifications.php:169
4201
+ #: app/features/mec/notifications.php:241
4202
+ #: app/features/mec/notifications.php:301
4203
+ #: app/features/mec/notifications.php:371
4204
+ #: app/features/mec/notifications.php:433
4205
+ #: app/features/mec/notifications.php:479
4206
  msgid "Email Content"
4207
  msgstr "Contenu de l'email"
4208
 
4209
  #: app/features/mec/notifications.php:67 app/features/mec/notifications.php:120
4210
  #: app/features/mec/notifications.php:172
4211
+ #: app/features/mec/notifications.php:244
4212
+ #: app/features/mec/notifications.php:304
4213
+ #: app/features/mec/notifications.php:374
4214
+ #: app/features/mec/notifications.php:436
4215
+ #: app/features/mec/notifications.php:482
4216
  msgid "You can use following placeholders"
4217
  msgstr "Vous pouvez utiliser les variables suivantes"
4218
 
4219
  #: app/features/mec/notifications.php:69 app/features/mec/notifications.php:122
4220
  #: app/features/mec/notifications.php:174
4221
+ #: app/features/mec/notifications.php:246
4222
+ #: app/features/mec/notifications.php:306
4223
+ #: app/features/mec/notifications.php:376
4224
  msgid "First name of attendee"
4225
  msgstr "Prénom du participant"
4226
 
4227
  #: app/features/mec/notifications.php:70 app/features/mec/notifications.php:123
4228
  #: app/features/mec/notifications.php:175
4229
+ #: app/features/mec/notifications.php:247
4230
+ #: app/features/mec/notifications.php:307
4231
+ #: app/features/mec/notifications.php:377
4232
  msgid "Last name of attendee"
4233
  msgstr "Nom du participant"
4234
 
4235
  #: app/features/mec/notifications.php:71 app/features/mec/notifications.php:124
4236
  #: app/features/mec/notifications.php:176
4237
+ #: app/features/mec/notifications.php:248
4238
+ #: app/features/mec/notifications.php:308
4239
+ #: app/features/mec/notifications.php:378
4240
  msgid "Email of attendee"
4241
  msgstr "Email du participant"
4242
 
4243
  #: app/features/mec/notifications.php:72 app/features/mec/notifications.php:125
4244
  #: app/features/mec/notifications.php:177
4245
+ #: app/features/mec/notifications.php:249
4246
+ #: app/features/mec/notifications.php:309
4247
+ #: app/features/mec/notifications.php:379
4248
  msgid "Booked date of event"
4249
  msgstr "Date de réservation"
4250
 
4251
  #: app/features/mec/notifications.php:73 app/features/mec/notifications.php:126
4252
  #: app/features/mec/notifications.php:178
4253
+ #: app/features/mec/notifications.php:250
4254
+ #: app/features/mec/notifications.php:310
4255
+ #: app/features/mec/notifications.php:380
4256
  #, fuzzy
4257
  #| msgid "Booked date of event"
4258
  msgid "Booked time of event"
4260
 
4261
  #: app/features/mec/notifications.php:74 app/features/mec/notifications.php:127
4262
  #: app/features/mec/notifications.php:179
4263
+ #: app/features/mec/notifications.php:251
4264
+ #: app/features/mec/notifications.php:311
4265
+ #: app/features/mec/notifications.php:381
4266
  msgid "Booking Price"
4267
  msgstr "Prix de la réservation"
4268
 
4269
  #: app/features/mec/notifications.php:75 app/features/mec/notifications.php:128
4270
  #: app/features/mec/notifications.php:180
 
 
 
 
 
 
 
 
 
 
4271
  #: app/features/mec/notifications.php:252
4272
  #: app/features/mec/notifications.php:312
4273
  #: app/features/mec/notifications.php:382
4274
  #: app/features/mec/notifications.php:442
4275
  #: app/features/mec/notifications.php:488
4276
+ msgid "Your website title"
4277
+ msgstr "Titre de votre site"
4278
 
4279
+ #: app/features/mec/notifications.php:76 app/features/mec/notifications.php:129
4280
+ #: app/features/mec/notifications.php:181
4281
  #: app/features/mec/notifications.php:253
4282
  #: app/features/mec/notifications.php:313
4283
  #: app/features/mec/notifications.php:383
4284
  #: app/features/mec/notifications.php:443
4285
  #: app/features/mec/notifications.php:489
4286
+ msgid "Your website URL"
4287
+ msgstr "URL de votre site"
4288
+
4289
+ #: app/features/mec/notifications.php:77 app/features/mec/notifications.php:130
4290
+ #: app/features/mec/notifications.php:182
4291
+ #: app/features/mec/notifications.php:254
4292
+ #: app/features/mec/notifications.php:314
4293
+ #: app/features/mec/notifications.php:384
4294
+ #: app/features/mec/notifications.php:444
4295
+ #: app/features/mec/notifications.php:490
4296
  msgid "Your website description"
4297
  msgstr "Description de votre site"
4298
 
4299
  #: app/features/mec/notifications.php:78 app/features/mec/notifications.php:131
4300
  #: app/features/mec/notifications.php:183
4301
+ #: app/features/mec/notifications.php:255
4302
+ #: app/features/mec/notifications.php:315
4303
+ #: app/features/mec/notifications.php:385
4304
  msgid "Event title"
4305
  msgstr "Nom de l'événement"
4306
 
4307
  #: app/features/mec/notifications.php:79 app/features/mec/notifications.php:132
4308
  #: app/features/mec/notifications.php:184
4309
+ #: app/features/mec/notifications.php:256
4310
+ #: app/features/mec/notifications.php:316
4311
+ #: app/features/mec/notifications.php:386
4312
  #, fuzzy
4313
  #| msgid "Event Link"
4314
  msgid "Event link"
4316
 
4317
  #: app/features/mec/notifications.php:80 app/features/mec/notifications.php:133
4318
  #: app/features/mec/notifications.php:185
4319
+ #: app/features/mec/notifications.php:257
4320
+ #: app/features/mec/notifications.php:317
4321
+ #: app/features/mec/notifications.php:387
4322
  #, fuzzy
4323
  #| msgid "Organizer name of booked event"
4324
  msgid "Speaker name of booked event"
4326
 
4327
  #: app/features/mec/notifications.php:81 app/features/mec/notifications.php:134
4328
  #: app/features/mec/notifications.php:186
4329
+ #: app/features/mec/notifications.php:258
4330
+ #: app/features/mec/notifications.php:318
4331
+ #: app/features/mec/notifications.php:388
4332
  msgid "Organizer name of booked event"
4333
  msgstr "Organisateur de l'événement réservé"
4334
 
4335
  #: app/features/mec/notifications.php:82 app/features/mec/notifications.php:135
4336
  #: app/features/mec/notifications.php:187
4337
+ #: app/features/mec/notifications.php:259
4338
+ #: app/features/mec/notifications.php:319
4339
+ #: app/features/mec/notifications.php:389
4340
  msgid "Organizer tel of booked event"
4341
  msgstr "Tel de l'organisateur de l'événement réservé"
4342
 
4343
  #: app/features/mec/notifications.php:83 app/features/mec/notifications.php:136
4344
  #: app/features/mec/notifications.php:188
4345
+ #: app/features/mec/notifications.php:260
4346
+ #: app/features/mec/notifications.php:320
4347
+ #: app/features/mec/notifications.php:390
4348
  msgid "Organizer email of booked event"
4349
  msgstr "Email de l'organisateur de l'événement réservé"
4350
 
4351
  #: app/features/mec/notifications.php:84 app/features/mec/notifications.php:137
4352
  #: app/features/mec/notifications.php:189
4353
+ #: app/features/mec/notifications.php:261
4354
+ #: app/features/mec/notifications.php:321
4355
+ #: app/features/mec/notifications.php:391
4356
  msgid "Location name of booked event"
4357
  msgstr "Nom du lieu de l'événement réservé"
4358
 
4359
  #: app/features/mec/notifications.php:85 app/features/mec/notifications.php:138
4360
  #: app/features/mec/notifications.php:190
4361
+ #: app/features/mec/notifications.php:262
4362
+ #: app/features/mec/notifications.php:322
4363
+ #: app/features/mec/notifications.php:392
4364
  msgid "Location address of booked event"
4365
  msgstr "Adresse lieu de l'événement réservé"
4366
 
4367
+ #: app/features/mec/notifications.php:86 app/features/mec/notifications.php:264
4368
+ #: app/features/mec/notifications.php:324
4369
  msgid "Full Attendee info such as booking form data, name, email etc."
4370
  msgstr ""
4371
  "Information complète des participants tels que les données de formulaire de "
4372
  "réservation, nom, email, etc."
4373
 
4374
  #: app/features/mec/notifications.php:87 app/features/mec/notifications.php:192
4375
+ #: app/features/mec/notifications.php:394
4376
  msgid "Invoice Link"
4377
  msgstr ""
4378
 
4379
  #: app/features/mec/notifications.php:88 app/features/mec/notifications.php:140
4380
  #: app/features/mec/notifications.php:193
4381
+ #: app/features/mec/notifications.php:265
4382
+ #: app/features/mec/notifications.php:325
4383
+ #: app/features/mec/notifications.php:395
4384
  msgid "Total Attendees"
4385
  msgstr ""
4386
 
4387
  #: app/features/mec/notifications.php:89 app/features/mec/notifications.php:141
4388
+ #: app/features/mec/notifications.php:195
4389
+ #: app/features/mec/notifications.php:396
4390
  #, fuzzy
4391
  #| msgid "Ticket Name"
4392
  msgid "Ticket name"
4393
  msgstr "Nom du billet"
4394
 
4395
  #: app/features/mec/notifications.php:90 app/features/mec/notifications.php:142
4396
+ #: app/features/mec/notifications.php:196
4397
+ #: app/features/mec/notifications.php:397
4398
  #, fuzzy
4399
  #| msgid "Ticket Name"
4400
  msgid "Ticket time"
4401
  msgstr "Nom du billet"
4402
 
4403
  #: app/features/mec/notifications.php:91 app/features/mec/notifications.php:143
4404
+ #: app/features/mec/notifications.php:197
4405
+ #: app/features/mec/notifications.php:398
4406
  msgid "Download ICS file"
4407
  msgstr ""
4408
 
4425
  "d'ajout d'événement."
4426
 
4427
  #: app/features/mec/notifications.php:191
4428
+ #: app/features/mec/notifications.php:393
4429
  msgid "Booking cancellation link."
4430
  msgstr "Lien d'annulation de la réservation."
4431
 
4432
+ #: app/features/mec/notifications.php:194
4433
+ #, fuzzy
4434
+ #| msgid "Amount (Per Ticket)"
4435
+ msgid "Amount Tickets"
4436
+ msgstr "Montant (par Billet)"
4437
+
4438
+ #: app/features/mec/notifications.php:204 app/libraries/main.php:574
4439
  #, fuzzy
4440
  #| msgid "Booking cancellation link."
4441
  msgid "Booking Cancellation"
4442
  msgstr "Lien d'annulation de la réservation."
4443
 
4444
+ #: app/features/mec/notifications.php:208
4445
  #, fuzzy
4446
  #| msgid "Enable new event notification"
4447
  msgid "Enable cancellation notification"
4448
  msgstr "Activer la notification d'ajout d'un nouvel événement"
4449
 
4450
+ #: app/features/mec/notifications.php:212
4451
  #, fuzzy
4452
  #| msgid "It sends to attendee after booking for notifying him/her."
4453
  msgid ""
4456
  msgstr ""
4457
  "Elle est envoyée aux participants après leur réservation pour les avertir."
4458
 
4459
+ #: app/features/mec/notifications.php:230
4460
  #, fuzzy
4461
  #| msgid "Send the email to event organizer"
4462
  msgid "Send the email to admin"
4463
  msgstr "Envoyer l'email à l'organisateur de l'événement"
4464
 
4465
+ #: app/features/mec/notifications.php:238
4466
  #, fuzzy
4467
  #| msgid "Send the email to event organizer"
4468
  msgid "Send the email to booking user"
4469
  msgstr "Envoyer l'email à l'organisateur de l'événement"
4470
 
4471
+ #: app/features/mec/notifications.php:263
4472
+ #: app/features/mec/notifications.php:323
4473
  msgid "Admin booking management link."
4474
  msgstr "Administrateur lien de gestion des réservations."
4475
 
4476
+ #: app/features/mec/notifications.php:272 app/libraries/main.php:576
4477
  msgid "Admin"
4478
  msgstr ""
4479
 
4480
+ #: app/features/mec/notifications.php:276
4481
  #, fuzzy
4482
  #| msgid "Enable new event notification"
4483
  msgid "Enable admin notification"
4484
  msgstr "Activer la notification d'ajout d'un nouvel événement"
4485
 
4486
+ #: app/features/mec/notifications.php:280
4487
  msgid "It sends to admin to notify him/her that a new booking received."
4488
  msgstr ""
4489
  "Il est envoyé à admin pour l'informer qu'il y a une nouvelle réservation "
4490
  "reçue."
4491
 
4492
+ #: app/features/mec/notifications.php:332 app/libraries/main.php:575
4493
  #: app/libraries/notifications.php:478
4494
  msgid "Booking Reminder"
4495
  msgstr ""
4496
 
4497
+ #: app/features/mec/notifications.php:336
4498
  msgid "Enable booking reminder notification"
4499
  msgstr ""
4500
 
4501
+ #: app/features/mec/notifications.php:342
4502
  #, php-format
4503
  msgid ""
4504
  "Set a cronjob to call %s file once per day otherwise it won't send the "
4506
  "send the reminders multiple times."
4507
  msgstr ""
4508
 
4509
+ #: app/features/mec/notifications.php:342
4510
  msgid "only once per day"
4511
  msgstr ""
4512
 
4513
+ #: app/features/mec/notifications.php:360
4514
  msgid "Days"
4515
  msgstr ""
4516
 
4517
+ #: app/features/mec/notifications.php:408 app/features/mec/support-page.php:80
4518
  #: app/libraries/main.php:577
4519
  msgid "New Event"
4520
  msgstr "Nouvel événement"
4521
 
4522
+ #: app/features/mec/notifications.php:412
4523
  msgid "Enable new event notification"
4524
  msgstr "Activer la notification d'ajout d'un nouvel événement"
4525
 
4526
+ #: app/features/mec/notifications.php:416
4527
  msgid ""
4528
  "It sends after adding a new event from frontend event submission or from "
4529
  "website backend."
4531
  "S'envoie lorsqu'un nouvel événement est ajouté depuis le formulaire de "
4532
  "soumission ou depuis le tableau de bord du site."
4533
 
4534
+ #: app/features/mec/notifications.php:438
4535
+ #: app/features/mec/notifications.php:484
4536
  msgid "Title of event"
4537
  msgstr "Titre de l'événement"
4538
 
4539
+ #: app/features/mec/notifications.php:439
4540
+ #: app/features/mec/notifications.php:485
4541
  #, fuzzy
4542
  #| msgid "Title of event"
4543
  msgid "Link of event"
4544
  msgstr "Titre de l'événement"
4545
 
4546
+ #: app/features/mec/notifications.php:440
4547
+ #: app/features/mec/notifications.php:486
4548
  msgid "Status of event"
4549
  msgstr "Statut de l'événement"
4550
 
4551
+ #: app/features/mec/notifications.php:441
4552
+ #: app/features/mec/notifications.php:487 app/features/mec/settings.php:654
4553
  #: app/features/mec/settings.php:658
4554
  msgid "Event Note"
4555
  msgstr "Note sur l'événement"
4556
 
4557
+ #: app/features/mec/notifications.php:445
4558
+ #: app/features/mec/notifications.php:491
4559
  msgid "Admin events management link."
4560
  msgstr "Lien d'administration d'événements."
4561
 
4562
+ #: app/features/mec/notifications.php:454 app/libraries/main.php:578
4563
  #, fuzzy
4564
  #| msgid "The event published."
4565
  msgid "User Event Publishing"
4566
  msgstr "Événement Publié."
4567
 
4568
+ #: app/features/mec/notifications.php:458
4569
  #, fuzzy
4570
  #| msgid "Enable new event notification"
4571
  msgid "Enable user event publishing notification"
4572
  msgstr "Activer la notification d'ajout d'un nouvel événement"
4573
 
4574
+ #: app/features/mec/notifications.php:462
4575
  #, fuzzy
4576
  #| msgid ""
4577
  #| "It sends after adding a new event from frontend event submission or from "
4678
  msgstr ""
4679
 
4680
  #: app/features/mec/settings.php:136 app/features/mec/settings.php:146
4681
+ #: app/libraries/main.php:4909
4682
  msgid "Weekdays"
4683
  msgstr "Jours de la Semaine"
4684
 
5860
  msgid "eg. https://webnus.net"
5861
  msgstr "http://webnus.biz"
5862
 
5863
+ #: app/features/organizers.php:311 app/libraries/main.php:4933
5864
  #: app/skins/single.php:845
5865
  msgid "Other Organizers"
5866
  msgstr "Autres organisateurs"
5888
  msgid "#"
5889
  msgstr ""
5890
 
5891
+ #: app/features/profile/profile.php:56 app/libraries/main.php:2929
5892
  msgid "Status"
5893
  msgstr ""
5894
 
5895
+ #: app/features/profile/profile.php:59 app/libraries/main.php:2074
5896
  msgid "Attendees"
5897
  msgstr ""
5898
 
5927
  msgid "No bookings found!"
5928
  msgstr "Aucune réservation trouvée !"
5929
 
5930
+ #: app/features/search.php:87 app/libraries/main.php:4899
5931
  msgid "label"
5932
  msgstr "texte"
5933
 
5961
  msgid "All of the day"
5962
  msgstr "Toute la journée"
5963
 
5964
+ #: app/features/speakers.php:110 app/features/speakers.php:179
5965
+ #: app/features/speakers.php:255
5966
  #, fuzzy
5967
  #| msgid "Title"
5968
  msgid "Job Title"
5969
  msgstr "Titre"
5970
 
5971
+ #: app/features/speakers.php:113 app/features/speakers.php:180
5972
  msgid "Insert speaker job title."
5973
  msgstr ""
5974
 
5975
+ #: app/features/speakers.php:121 app/features/speakers.php:184
5976
  #, fuzzy
5977
  #| msgid "Insert organizer phone number."
5978
  msgid "Insert speaker phone number."
5979
  msgstr "Ajouter le numéro de téléphone de l'organisateur."
5980
 
5981
+ #: app/features/speakers.php:129 app/features/speakers.php:188
5982
  #, fuzzy
5983
  #| msgid "Insert organizer email address."
5984
  msgid "Insert speaker email address."
5985
  msgstr "Ajouter l'email de l'organisateur."
5986
 
5987
+ #: app/features/speakers.php:134 app/features/speakers.php:191
5988
  #, fuzzy
5989
  #| msgid "Facebook Page Link"
5990
  msgid "Facebook Page"
5991
  msgstr "URL Page Facebook"
5992
 
5993
+ #: app/features/speakers.php:137 app/features/speakers.php:192
5994
  #, fuzzy
5995
  #| msgid "Import from Facebook Calendar"
5996
  msgid "Insert URL of Facebook Page"
5997
  msgstr "Importer depuis Calendrier Facebook"
5998
 
5999
+ #: app/features/speakers.php:142 app/features/speakers.php:195
6000
  msgid "Instagram"
6001
  msgstr ""
6002
 
6003
+ #: app/features/speakers.php:145 app/features/speakers.php:196
6004
  #, fuzzy
6005
  #| msgid "Insert -1 for unlimited usage"
6006
  msgid "Insert URL of Instagram"
6007
  msgstr "Entrez -1 pour un nombre illimité de participant"
6008
 
6009
+ #: app/features/speakers.php:150 app/features/speakers.php:199
6010
  #, fuzzy
6011
  #| msgid "Twitter"
6012
  msgid "Twitter Page"
6013
  msgstr "Twitter"
6014
 
6015
+ #: app/features/speakers.php:153 app/features/speakers.php:200
6016
  #, fuzzy
6017
  #| msgid "Insert -1 for unlimited usage"
6018
  msgid "Insert URL of Twitter Page"
6019
  msgstr "Entrez -1 pour un nombre illimité de participant"
6020
 
6021
+ #: app/features/speakers.php:315
6022
  msgid "Sorry, You must insert speaker name!"
6023
  msgstr ""
6024
 
6025
+ #: app/features/speakers.php:364
6026
+ msgid ""
6027
+ "Note: You can use the speakers in your event edit/add page > hourly schedule "
6028
+ "section and speaker widget section!"
6029
+ msgstr ""
6030
+
6031
  #: app/libraries/book.php:60
6032
  #, php-format
6033
  msgid "%s Price"
6034
  msgstr ""
6035
 
6036
+ #: app/libraries/book.php:561
6037
  msgid "Discount"
6038
  msgstr "Réduction"
6039
 
6040
+ #: app/libraries/book.php:651 app/modules/booking/default.php:305
6041
  #: app/modules/booking/default.php:403
6042
  msgid "Download Invoice"
6043
  msgstr ""
6170
  msgid "Slider View"
6171
  msgstr "Vue sur Slider"
6172
 
6173
+ #: app/libraries/main.php:382 app/libraries/main.php:4911
6174
  msgid "SU"
6175
  msgstr "DIM."
6176
 
6177
+ #: app/libraries/main.php:383 app/libraries/main.php:4912
6178
  msgid "MO"
6179
  msgstr "LUN."
6180
 
6181
+ #: app/libraries/main.php:384 app/libraries/main.php:4913
6182
  msgid "TU"
6183
  msgstr "MAR."
6184
 
6185
+ #: app/libraries/main.php:385 app/libraries/main.php:4914
6186
  msgid "WE"
6187
  msgstr "MER."
6188
 
6189
+ #: app/libraries/main.php:386 app/libraries/main.php:4915
6190
  msgid "TH"
6191
  msgstr "JEU."
6192
 
6193
+ #: app/libraries/main.php:387 app/libraries/main.php:4916
6194
  msgid "FR"
6195
  msgstr "VEN."
6196
 
6197
+ #: app/libraries/main.php:388 app/libraries/main.php:4917
6198
  msgid "SA"
6199
  msgstr "SAM."
6200
 
6338
  msgid "Invoice is invalid."
6339
  msgstr "Le code de sécurité de la carte n'est pas correct."
6340
 
6341
+ #: app/libraries/main.php:2009
6342
+ msgid ""
6343
+ "Your booking still is not confirmed. You able download it after confirmation!"
6344
+ msgstr ""
6345
+
6346
+ #: app/libraries/main.php:2009
6347
+ #, fuzzy
6348
+ #| msgid "Booking Confirmation"
6349
+ msgid "Booking Not Confirmed."
6350
+ msgstr "Confirmation de réservation"
6351
+
6352
+ #: app/libraries/main.php:2015
6353
  msgid "Cannot find the booking!"
6354
  msgstr ""
6355
 
6356
+ #: app/libraries/main.php:2015
6357
  msgid "Booking is invalid."
6358
  msgstr ""
6359
 
6360
+ #: app/libraries/main.php:2044
6361
  #, php-format
6362
  msgid "%s Invoice"
6363
  msgstr ""
6364
 
6365
+ #: app/libraries/main.php:2118
6366
  msgid "Billing"
6367
  msgstr ""
6368
 
6369
+ #: app/libraries/main.php:2129
6370
  msgid "Total"
6371
  msgstr ""
6372
 
6373
+ #: app/libraries/main.php:2186
6374
  #, fuzzy
6375
  #| msgid "Request is invalid!"
6376
  msgid "Request is not valid."
6377
  msgstr "Requête invalide !"
6378
 
6379
+ #: app/libraries/main.php:2186
6380
  msgid "iCal export stopped!"
6381
  msgstr "Export vers iCal arrêté !"
6382
 
6383
+ #: app/libraries/main.php:2513 app/libraries/main.php:2543
6384
+ #: app/libraries/main.php:2572 app/libraries/main.php:2602
6385
+ #: app/libraries/main.php:2631 app/libraries/main.php:2660
6386
+ #: app/libraries/main.php:2689 app/libraries/main.php:2718
6387
+ #: app/libraries/main.php:2747 app/libraries/main.php:2771
6388
+ #: app/libraries/main.php:2815 app/libraries/main.php:2859
6389
+ #: app/libraries/main.php:2906 app/libraries/main.php:2953
6390
  msgid "Sort"
6391
  msgstr "Trier"
6392
 
6393
+ #: app/libraries/main.php:2519 app/libraries/main.php:2549
6394
+ #: app/libraries/main.php:2578 app/libraries/main.php:2608
6395
+ #: app/libraries/main.php:2637 app/libraries/main.php:2666
6396
+ #: app/libraries/main.php:2695 app/libraries/main.php:2724
6397
+ #: app/libraries/main.php:2777 app/libraries/main.php:2821
6398
+ #: app/libraries/main.php:2865 app/libraries/main.php:2912
6399
  msgid "Required Field"
6400
  msgstr "Champ obligatoire"
6401
 
6402
+ #: app/libraries/main.php:2525 app/libraries/main.php:2555
6403
+ #: app/libraries/main.php:2584 app/libraries/main.php:2614
6404
+ #: app/libraries/main.php:2643 app/libraries/main.php:2672
6405
+ #: app/libraries/main.php:2701 app/libraries/main.php:2730
6406
+ #: app/libraries/main.php:2783 app/libraries/main.php:2827
6407
+ #: app/libraries/main.php:2871 app/libraries/main.php:2918
6408
  msgid "Insert a label for this field"
6409
  msgstr "Insérez une label pour ce champ"
6410
 
6411
+ #: app/libraries/main.php:2753
6412
  msgid "HTML and shortcode are allowed."
6413
  msgstr "HTML et shortcode sont autorisés."
6414
 
6415
+ #: app/libraries/main.php:2796 app/libraries/main.php:2840
6416
+ #: app/libraries/main.php:2884
6417
  msgid "Option"
6418
  msgstr "Option"
6419
 
6420
+ #: app/libraries/main.php:2918
6421
  #, php-format
6422
  msgid "Instead of %s, the page title with a link will be show."
6423
  msgstr ""
6424
 
6425
+ #: app/libraries/main.php:2920
6426
  msgid "Agreement Page"
6427
  msgstr ""
6428
 
6429
+ #: app/libraries/main.php:2931
6430
  msgid "Checked by default"
6431
  msgstr ""
6432
 
6433
+ #: app/libraries/main.php:2932
6434
  msgid "Unchecked by default"
6435
  msgstr ""
6436
 
6437
+ #: app/libraries/main.php:2955
6438
  msgid "Insert a label for this option"
6439
  msgstr "Insérez une étiquette pour cette option"
6440
 
6441
+ #: app/libraries/main.php:2970
6442
  msgid "Free"
6443
  msgstr "Gratuite"
6444
 
6445
+ #: app/libraries/main.php:3576 app/libraries/main.php:5158
6446
  #, fuzzy
6447
  #| msgid "M.E. Calendar"
6448
  msgid "M.E. Calender"
6449
  msgstr "M.E Calendrier"
6450
 
6451
+ #: app/libraries/main.php:3731
6452
  #, php-format
6453
  msgid "Copy of %s"
6454
  msgstr "Copie de %s"
6455
 
6456
+ #: app/libraries/main.php:4404
6457
  msgid "Booked an event."
6458
  msgstr "Réserver un Évènements"
6459
 
6460
+ #: app/libraries/main.php:4445
6461
  #, php-format
6462
  msgid "%s booked %s event."
6463
  msgstr "%s réservé %s événement"
6464
 
6465
+ #: app/libraries/main.php:4894
6466
  msgid "Taxonomies"
6467
  msgstr "Taxonomies"
6468
 
6469
+ #: app/libraries/main.php:4896
6470
  msgid "Category Plural Label"
6471
  msgstr "Catégorie au pluriel"
6472
 
6473
+ #: app/libraries/main.php:4897
6474
  msgid "Category Singular Label"
6475
  msgstr "Catégorie au singulier"
6476
 
6477
+ #: app/libraries/main.php:4898
6478
  msgid "Label Plural Label"
6479
  msgstr "Étiquettes au pluriel"
6480
 
6481
+ #: app/libraries/main.php:4899
6482
  msgid "Label Singular Label"
6483
  msgstr "Étiquettes au singulier"
6484
 
6485
+ #: app/libraries/main.php:4900
6486
  msgid "Location Plural Label"
6487
  msgstr "Lieu au pluriel"
6488
 
6489
+ #: app/libraries/main.php:4901
6490
  msgid "Location Singular Label"
6491
  msgstr "Lieu au singulier"
6492
 
6493
+ #: app/libraries/main.php:4902
6494
  msgid "Organizer Plural Label"
6495
  msgstr "Organisateur au pluriel"
6496
 
6497
+ #: app/libraries/main.php:4903
6498
  msgid "Organizer Singular Label"
6499
  msgstr "Organisateur au singulier"
6500
 
6501
+ #: app/libraries/main.php:4904
6502
  #, fuzzy
6503
  #| msgid "Label Plural Label"
6504
  msgid "Speaker Plural Label"
6505
  msgstr "Étiquettes au pluriel"
6506
 
6507
+ #: app/libraries/main.php:4905
6508
  #, fuzzy
6509
  #| msgid "Label Singular Label"
6510
  msgid "Speaker Singular Label"
6511
  msgstr "Étiquettes au singulier"
6512
 
6513
+ #: app/libraries/main.php:4911
6514
  msgid "Sunday abbreviation"
6515
  msgstr "Abréviation de Dimanche"
6516
 
6517
+ #: app/libraries/main.php:4912
6518
  msgid "Monday abbreviation"
6519
  msgstr "Abréviation de Lundi"
6520
 
6521
+ #: app/libraries/main.php:4913
6522
  msgid "Tuesday abbreviation"
6523
  msgstr "Abréviation de Mardi"
6524
 
6525
+ #: app/libraries/main.php:4914
6526
  msgid "Wednesday abbreviation"
6527
  msgstr "Abréviation de Mercredi"
6528
 
6529
+ #: app/libraries/main.php:4915
6530
  msgid "Thursday abbreviation"
6531
  msgstr "Abréviation de Jeudi"
6532
 
6533
+ #: app/libraries/main.php:4916
6534
  msgid "Friday abbreviation"
6535
  msgstr "Abréviation de Vendredi"
6536
 
6537
+ #: app/libraries/main.php:4917
6538
  msgid "Saturday abbreviation"
6539
  msgstr "Abréviation de Samedi"
6540
 
6541
+ #: app/libraries/main.php:4921
6542
  msgid "Others"
6543
  msgstr "Autres"
6544
 
6545
+ #: app/libraries/main.php:4923
6546
  msgid "Booking Success Message"
6547
  msgstr "Message de succès de réservation"
6548
 
6549
+ #: app/libraries/main.php:4923
6550
  msgid ""
6551
  "Thanks for your booking. Your tickets booked, booking verification might be "
6552
  "needed, please check your email."
6554
  "Merci pour votre réservation. Vos billets sont réservés, cependant une "
6555
  "vérification peut être nécessaires, contrôlez votre boite mail."
6556
 
6557
+ #: app/libraries/main.php:4924 app/widgets/single.php:131
6558
  msgid "Register Button"
6559
  msgstr "Boutons d'inscription"
6560
 
6561
+ #: app/libraries/main.php:4924 app/skins/available_spot/tpl.php:224
6562
  #: app/skins/carousel/render.php:158 app/skins/carousel/render.php:194
6563
  #: app/skins/grid/render.php:118 app/skins/grid/render.php:164
6564
  #: app/skins/grid/render.php:207 app/skins/grid/render.php:235
6575
  msgid "REGISTER"
6576
  msgstr "S'INSCRIRE"
6577
 
6578
+ #: app/libraries/main.php:4925
6579
  msgid "View Detail Button"
6580
  msgstr "Afficher le boutons de détail"
6581
 
6582
+ #: app/libraries/main.php:4925 app/skins/carousel/render.php:158
6583
  #: app/skins/carousel/render.php:194 app/skins/grid/render.php:118
6584
  #: app/skins/grid/render.php:164 app/skins/grid/render.php:207
6585
  #: app/skins/grid/render.php:235 app/skins/list/render.php:108
6590
  msgid "View Detail"
6591
  msgstr "En savoir plus"
6592
 
6593
+ #: app/libraries/main.php:4926
6594
  msgid "Event Detail Button"
6595
  msgstr "Bouton de détail de l'événement"
6596
 
6597
+ #: app/libraries/main.php:4926 app/skins/countdown/tpl.php:244
6598
  msgid "Event Detail"
6599
  msgstr "Détails"
6600
 
6601
+ #: app/libraries/main.php:4928
6602
  msgid "More Info Link"
6603
  msgstr "Plus de lien d'info"
6604
 
6605
+ #: app/libraries/main.php:4931
6606
  msgid "Ticket (Singular)"
6607
  msgstr ""
6608
 
6609
+ #: app/libraries/main.php:4932
6610
  msgid "Tickets (Plural)"
6611
  msgstr ""
6612
 
6613
+ #: app/libraries/main.php:5018
6614
  msgid "EventON"
6615
  msgstr ""
6616
 
6617
+ #: app/libraries/main.php:5019
6618
  msgid "The Events Calendar"
6619
  msgstr ""
6620
 
6621
+ #: app/libraries/main.php:5020
6622
  msgid "Events Schedule WP Plugin"
6623
  msgstr ""
6624
 
6625
+ #: app/libraries/main.php:5021
6626
  msgid "Calendarize It"
6627
  msgstr ""
6628
 
6629
+ #: app/libraries/main.php:5095 app/libraries/main.php:5115
6630
  msgid "Confirmed"
6631
  msgstr "Confirmé"
6632
 
6633
+ #: app/libraries/main.php:5096 app/libraries/main.php:5123
6634
  msgid "Rejected"
6635
  msgstr "Rejeté"
6636
 
6637
+ #: app/libraries/main.php:5097 app/libraries/main.php:5119
6638
  msgid "Pending"
6639
  msgstr "En attente"
6640
 
6641
+ #: app/libraries/main.php:5145
6642
  msgid "Waiting"
6643
  msgstr "En attente"
6644
 
6645
+ #: app/libraries/main.php:5350 app/libraries/render.php:382
6646
  msgid "Skin controller does not exist."
6647
  msgstr "Le contrôleur de Skin n'existe pas."
6648
 
6678
  msgid "Your event is published."
6679
  msgstr "Événement Publié."
6680
 
6681
+ #: app/libraries/notifications.php:827
6682
  msgid "to"
6683
  msgstr ""
6684
 
6685
+ #: app/libraries/notifications.php:840 app/modules/export/details.php:27
6686
  msgid "+ Add to Google Calendar"
6687
  msgstr "+ Ajouter à mon Agenda Google"
6688
 
6689
+ #: app/libraries/notifications.php:841 app/modules/export/details.php:28
6690
  msgid "+ iCal export"
6691
  msgstr "+ Exporter vers iCal"
6692
 
6693
+ #: app/libraries/notifications.php:904
6694
  msgid "Yes"
6695
  msgstr "Oui"
6696
 
6697
+ #: app/libraries/notifications.php:904
6698
  msgid "No"
6699
  msgstr "Non"
6700
 
languages/modern-events-calendar-lite-hu_HU.mo CHANGED
Binary file
languages/modern-events-calendar-lite-hu_HU.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
- "POT-Creation-Date: 2019-10-22 15:22+0330\n"
5
- "PO-Revision-Date: 2019-10-22 15:24+0330\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: hu_HU\n"
@@ -72,7 +72,7 @@ msgid "Settings"
72
  msgstr ""
73
 
74
  #: app/features/contextual.php:62 app/features/events.php:2415
75
- #: app/features/mec/booking.php:426 app/features/mec/support.php:29
76
  #: app/libraries/main.php:554
77
  msgid "Booking Form"
78
  msgstr ""
@@ -86,7 +86,7 @@ msgid ""
86
  "YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></iframe>"
87
  msgstr ""
88
 
89
- #: app/features/contextual.php:70 app/features/mec/booking.php:544
90
  #: app/features/mec/support.php:36 app/libraries/main.php:555
91
  msgid "Payment Gateways"
92
  msgstr ""
@@ -221,7 +221,7 @@ msgstr ""
221
  msgid "Booking"
222
  msgstr ""
223
 
224
- #: app/features/contextual.php:318 app/features/mec/booking.php:248
225
  #: app/libraries/main.php:551
226
  msgid "Coupons"
227
  msgstr ""
@@ -297,7 +297,7 @@ msgstr ""
297
  #: app/features/mec/meta_boxes/search_form.php:514
298
  #: app/features/mec/meta_boxes/search_form.php:575
299
  #: app/features/mec/settings.php:720 app/features/mec/single.php:204
300
- #: app/features/search.php:67 app/libraries/main.php:4886
301
  #: app/libraries/skins.php:808 app/skins/single.php:559
302
  #: app/skins/single/default.php:185 app/skins/single/default.php:397
303
  #: app/skins/single/m1.php:170 app/skins/single/m2.php:102
@@ -307,62 +307,62 @@ msgstr "kategória"
307
 
308
  #: app/features/events.php:176 app/features/events.php:3212
309
  #: app/features/fes/form.php:737 app/features/mec.php:336
310
- #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:4885
311
  msgid "Categories"
312
  msgstr ""
313
 
314
  #: app/features/events.php:186 app/features/labels.php:71
315
  #: app/features/locations.php:69 app/features/organizers.php:69
316
- #: app/features/speakers.php:70
317
  #, php-format
318
  msgid "All %s"
319
  msgstr ""
320
 
321
  #: app/features/events.php:187 app/features/labels.php:72
322
  #: app/features/locations.php:70 app/features/organizers.php:70
323
- #: app/features/speakers.php:71
324
  #, php-format
325
  msgid "Edit %s"
326
  msgstr ""
327
 
328
  #: app/features/events.php:188 app/features/labels.php:73
329
  #: app/features/locations.php:71 app/features/organizers.php:71
330
- #: app/features/speakers.php:72
331
  #, php-format
332
  msgid "View %s"
333
  msgstr ""
334
 
335
  #: app/features/events.php:189 app/features/labels.php:74
336
  #: app/features/locations.php:72 app/features/organizers.php:72
337
- #: app/features/speakers.php:73
338
  #, php-format
339
  msgid "Update %s"
340
  msgstr ""
341
 
342
  #: app/features/events.php:190 app/features/labels.php:75
343
  #: app/features/locations.php:73 app/features/organizers.php:73
344
- #: app/features/speakers.php:74
345
  #, php-format
346
  msgid "Add New %s"
347
  msgstr ""
348
 
349
  #: app/features/events.php:191 app/features/labels.php:76
350
  #: app/features/locations.php:74 app/features/organizers.php:74
351
- #: app/features/speakers.php:75
352
  #, php-format
353
  msgid "New %s Name"
354
  msgstr ""
355
 
356
  #: app/features/events.php:192 app/features/labels.php:77
357
  #: app/features/locations.php:75 app/features/organizers.php:75
358
- #: app/features/speakers.php:76
359
  #, php-format
360
  msgid "Popular %s"
361
  msgstr ""
362
 
363
  #: app/features/events.php:193 app/features/labels.php:78
364
  #: app/features/locations.php:76 app/features/organizers.php:76
365
- #: app/features/speakers.php:77
366
  #, php-format
367
  msgid "Search %s"
368
  msgstr ""
@@ -391,7 +391,7 @@ msgstr ""
391
  #: app/features/fes.php:224 app/features/fes.php:332
392
  #: app/features/fes/form.php:669 app/features/labels.php:178
393
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
394
- #: app/features/profile/profile.php:168 app/libraries/notifications.php:880
395
  #: app/modules/booking/steps/form.php:37
396
  msgid "Name"
397
  msgstr "Név"
@@ -399,12 +399,12 @@ msgstr "Név"
399
  #: app/features/events.php:463 app/features/events.php:2408
400
  #: app/features/events.php:2484 app/features/fes.php:224
401
  #: app/features/fes.php:332 app/features/fes/form.php:665
402
- #: app/features/mec/booking.php:57 app/features/mec/booking.php:477
403
  #: app/features/organizers.php:111 app/features/organizers.php:152
404
- #: app/features/profile/profile.php:171 app/features/speakers.php:124
405
- #: app/features/speakers.php:185 app/libraries/main.php:1472
406
- #: app/libraries/main.php:1541 app/libraries/main.php:2592
407
- #: app/libraries/notifications.php:881 app/modules/booking/steps/form.php:46
408
  #: app/modules/booking/steps/form.php:84 app/skins/single.php:812
409
  #: app/skins/single.php:867 app/skins/single/default.php:227
410
  #: app/skins/single/default.php:439 app/skins/single/m1.php:107
@@ -494,10 +494,11 @@ msgstr ""
494
  #: app/features/events.php:2324 app/features/events.php:2337
495
  #: app/features/fes/form.php:631 app/features/locations.php:299
496
  #: app/features/mec/booking.php:108 app/features/mec/booking.php:158
497
- #: app/features/mec/booking.php:174 app/features/mec/booking.php:293
498
- #: app/features/mec/booking.php:322 app/features/mec/booking.php:370
499
- #: app/features/mec/booking.php:380 app/features/mec/booking.php:402
500
- #: app/features/mec/booking.php:412 app/features/mec/dashboard.php:71
 
501
  #: app/features/mec/meta_boxes/display_options.php:66
502
  #: app/features/mec/meta_boxes/display_options.php:79
503
  #: app/features/mec/meta_boxes/display_options.php:92
@@ -533,12 +534,12 @@ msgstr ""
533
  #: app/features/mec/modules.php:154 app/features/mec/modules.php:312
534
  #: app/features/mec/notifications.php:54 app/features/mec/notifications.php:111
535
  #: app/features/mec/notifications.php:163
536
- #: app/features/mec/notifications.php:222
537
- #: app/features/mec/notifications.php:290
538
- #: app/features/mec/notifications.php:353
539
- #: app/features/mec/notifications.php:364
540
- #: app/features/mec/notifications.php:426
541
- #: app/features/mec/notifications.php:472 app/features/mec/settings.php:66
542
  #: app/features/mec/settings.php:85 app/features/mec/settings.php:112
543
  #: app/features/mec/settings.php:147 app/features/mec/settings.php:168
544
  #: app/features/mec/settings.php:188 app/features/mec/settings.php:265
@@ -763,13 +764,13 @@ msgstr ""
763
  #: app/features/events.php:1153 app/features/events.php:3434
764
  #: app/features/events.php:3476 app/features/fes/form.php:707
765
  #: app/features/ix.php:2743 app/features/ix.php:2784
766
- #: app/features/mec/settings.php:576 app/libraries/main.php:4918
767
  #: app/widgets/single.php:103
768
  msgid "Event Cost"
769
  msgstr ""
770
 
771
  #: app/features/events.php:1157 app/features/fes/form.php:710
772
- #: app/libraries/main.php:4919 app/skins/single.php:582
773
  #: app/skins/single/default.php:119 app/skins/single/default.php:331
774
  #: app/skins/single/m1.php:49 app/skins/single/modern.php:199
775
  msgid "Cost"
@@ -785,8 +786,8 @@ msgstr ""
785
 
786
  #: app/features/events.php:1189 app/features/events.php:2485
787
  #: app/features/fes.php:224 app/features/fes.php:332
788
- #: app/features/mec/booking.php:478 app/features/profile/profile.php:53
789
- #: app/libraries/main.php:2048 app/libraries/main.php:2650
790
  #: app/modules/booking/steps/tickets.php:22
791
  #: app/modules/next-event/details.php:90 app/skins/single.php:637
792
  #: app/skins/single/default.php:83 app/skins/single/default.php:295
@@ -831,8 +832,8 @@ msgstr ""
831
  #: app/features/events.php:2313 app/features/events.php:3240
832
  #: app/features/events.php:3434 app/features/events.php:3476
833
  #: app/features/fes/form.php:226 app/features/ix.php:2743
834
- #: app/features/ix.php:2784 app/features/mec/booking.php:362
835
- #: app/features/mec/booking.php:394 app/features/mec/styling.php:115
836
  msgid "Title"
837
  msgstr ""
838
 
@@ -843,15 +844,15 @@ msgstr ""
843
  #: app/features/events.php:2032 app/features/events.php:2059
844
  #: app/features/events.php:2158 app/features/events.php:2194
845
  #: app/features/events.php:2301 app/features/events.php:2343
846
- #: app/features/mec/booking.php:305 app/features/mec/booking.php:334
847
- #: app/features/mec/booking.php:385 app/features/mec/booking.php:417
848
- #: app/libraries/main.php:2511 app/libraries/main.php:2541
849
- #: app/libraries/main.php:2570 app/libraries/main.php:2600
850
- #: app/libraries/main.php:2629 app/libraries/main.php:2658
851
- #: app/libraries/main.php:2687 app/libraries/main.php:2716
852
- #: app/libraries/main.php:2738 app/libraries/main.php:2769
853
- #: app/libraries/main.php:2813 app/libraries/main.php:2857
854
- #: app/libraries/main.php:2904 app/libraries/main.php:2943
855
  msgid "Remove"
856
  msgstr ""
857
 
@@ -878,8 +879,8 @@ msgstr ""
878
  #: app/features/events.php:1336 app/features/events.php:1369
879
  #: app/features/events.php:1430 app/features/fes/form.php:831
880
  #: app/features/mec.php:344 app/features/mec/modules.php:52
881
- #: app/features/mec/settings.php:624 app/features/speakers.php:60
882
- #: app/libraries/main.php:559 app/libraries/main.php:4893
883
  #: app/modules/speakers/details.php:18
884
  msgid "Speakers"
885
  msgstr ""
@@ -894,7 +895,7 @@ msgid "Event Links"
894
  msgstr ""
895
 
896
  #: app/features/events.php:1464 app/features/events.php:1470
897
- #: app/features/fes/form.php:686 app/libraries/main.php:4916
898
  msgid "Event Link"
899
  msgstr ""
900
 
@@ -915,7 +916,7 @@ msgid "URL Shortener"
915
  msgstr ""
916
 
917
  #: app/features/events.php:1480 app/features/events.php:1493
918
- #: app/features/fes/form.php:691 app/libraries/main.php:4917
919
  #: app/skins/single.php:656 app/skins/single/default.php:133
920
  #: app/skins/single/default.php:345 app/skins/single/m1.php:191
921
  #: app/skins/single/m2.php:124 app/skins/single/modern.php:132
@@ -980,7 +981,7 @@ msgid "12"
980
  msgstr ""
981
 
982
  #: app/features/events.php:1638 app/libraries/book.php:60
983
- #: app/libraries/main.php:4921 app/modules/booking/steps/tickets.php:40
984
  msgid "Tickets"
985
  msgstr ""
986
 
@@ -1012,9 +1013,9 @@ msgstr ""
1012
  #: app/features/events.php:1996 app/features/events.php:1999
1013
  #: app/features/events.php:2055 app/features/events.php:2272
1014
  #: app/features/events.php:2276 app/features/events.php:2318
1015
- #: app/features/events.php:2321 app/features/mec/booking.php:366
1016
- #: app/features/mec/booking.php:369 app/features/mec/booking.php:398
1017
- #: app/features/mec/booking.php:401
1018
  msgid "Price"
1019
  msgstr ""
1020
 
@@ -1062,36 +1063,36 @@ msgid "Fees"
1062
  msgstr ""
1063
 
1064
  #: app/features/events.php:2132 app/features/events.php:2170
1065
- #: app/features/mec/booking.php:285 app/features/mec/booking.php:314
1066
  msgid "Fee Title"
1067
  msgstr ""
1068
 
1069
  #: app/features/events.php:2138 app/features/events.php:2142
1070
  #: app/features/events.php:2175 app/features/events.php:2178
1071
- #: app/features/mec/booking.php:289 app/features/mec/booking.php:292
1072
- #: app/features/mec/booking.php:318 app/features/mec/booking.php:321
1073
  msgid "Amount"
1074
  msgstr ""
1075
 
1076
  #: app/features/events.php:2143 app/features/events.php:2179
1077
- #: app/features/mec/booking.php:293 app/features/mec/booking.php:322
1078
  msgid ""
1079
  "Fee amount, considered as fixed amount if you set the type to amount "
1080
  "otherwise considered as percentage"
1081
  msgstr ""
1082
 
1083
  #: app/features/events.php:2152 app/features/events.php:2188
1084
- #: app/features/mec/booking.php:300 app/features/mec/booking.php:329
1085
  msgid "Percent"
1086
  msgstr ""
1087
 
1088
  #: app/features/events.php:2153 app/features/events.php:2189
1089
- #: app/features/mec/booking.php:301 app/features/mec/booking.php:330
1090
  msgid "Amount (Per Ticket)"
1091
  msgstr ""
1092
 
1093
  #: app/features/events.php:2154 app/features/events.php:2190
1094
- #: app/features/mec/booking.php:302 app/features/mec/booking.php:331
1095
  msgid "Amount (Per Booking)"
1096
  msgstr ""
1097
 
@@ -1100,67 +1101,67 @@ msgid "Ticket Variations / Options"
1100
  msgstr ""
1101
 
1102
  #: app/features/events.php:2277 app/features/events.php:2322
1103
- #: app/features/mec/booking.php:370 app/features/mec/booking.php:402
1104
  msgid "Option Price"
1105
  msgstr ""
1106
 
1107
  #: app/features/events.php:2287 app/features/events.php:2291
1108
  #: app/features/events.php:2331 app/features/events.php:2334
1109
- #: app/features/mec/booking.php:376 app/features/mec/booking.php:379
1110
- #: app/features/mec/booking.php:408 app/features/mec/booking.php:411
1111
  msgid "Maximum Per Ticket"
1112
  msgstr ""
1113
 
1114
  #: app/features/events.php:2292 app/features/events.php:2335
1115
- #: app/features/mec/booking.php:380 app/features/mec/booking.php:412
1116
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
1117
  msgstr ""
1118
 
1119
- #: app/features/events.php:2481 app/features/mec/booking.php:474
1120
- #: app/libraries/main.php:2533
1121
  #, fuzzy
1122
  #| msgid "Name"
1123
  msgid "MEC Name"
1124
  msgstr "Név"
1125
 
1126
- #: app/features/events.php:2482 app/features/mec/booking.php:475
1127
- #: app/libraries/main.php:2562
1128
  msgid "MEC Email"
1129
  msgstr ""
1130
 
1131
- #: app/features/events.php:2483 app/features/mec/booking.php:476
1132
- #: app/libraries/main.php:2503
1133
  msgid "Text"
1134
  msgstr ""
1135
 
1136
- #: app/features/events.php:2486 app/features/mec/booking.php:479
1137
  #: app/features/organizers.php:103 app/features/organizers.php:148
1138
- #: app/features/speakers.php:116 app/features/speakers.php:181
1139
- #: app/features/speakers.php:254 app/libraries/main.php:2679
1140
  msgid "Tel"
1141
  msgstr ""
1142
 
1143
- #: app/features/events.php:2487 app/features/mec/booking.php:480
1144
- #: app/libraries/main.php:2621
1145
  msgid "File"
1146
  msgstr ""
1147
 
1148
- #: app/features/events.php:2488 app/features/mec/booking.php:481
1149
- #: app/libraries/main.php:2708
1150
  msgid "Textarea"
1151
  msgstr ""
1152
 
1153
- #: app/features/events.php:2489 app/features/mec/booking.php:482
1154
- #: app/libraries/main.php:2761
1155
  msgid "Checkboxes"
1156
  msgstr ""
1157
 
1158
- #: app/features/events.php:2490 app/features/mec/booking.php:483
1159
- #: app/libraries/main.php:2805
1160
  msgid "Radio Buttons"
1161
  msgstr ""
1162
 
1163
- #: app/features/events.php:2491 app/features/mec/booking.php:484
1164
  #: app/features/mec/meta_boxes/search_form.php:34
1165
  #: app/features/mec/meta_boxes/search_form.php:41
1166
  #: app/features/mec/meta_boxes/search_form.php:48
@@ -1229,17 +1230,17 @@ msgstr ""
1229
  #: app/features/mec/meta_boxes/search_form.php:599
1230
  #: app/features/mec/meta_boxes/search_form.php:606
1231
  #: app/features/mec/meta_boxes/search_form.php:613
1232
- #: app/features/mec/meta_boxes/search_form.php:620 app/libraries/main.php:2849
1233
  msgid "Dropdown"
1234
  msgstr ""
1235
 
1236
- #: app/features/events.php:2492 app/features/mec/booking.php:485
1237
- #: app/libraries/main.php:2896
1238
  msgid "Agreement"
1239
  msgstr ""
1240
 
1241
- #: app/features/events.php:2493 app/features/mec/booking.php:486
1242
- #: app/libraries/main.php:2737
1243
  msgid "Paragraph"
1244
  msgstr ""
1245
 
@@ -1278,8 +1279,8 @@ msgstr ""
1278
  #: app/features/mec/meta_boxes/search_form.php:521
1279
  #: app/features/mec/meta_boxes/search_form.php:582
1280
  #: app/features/mec/settings.php:726 app/features/mec/single.php:212
1281
- #: app/features/search.php:71 app/libraries/main.php:2042
1282
- #: app/libraries/main.php:4890 app/libraries/skins.php:834
1283
  #: app/skins/single.php:486 app/skins/single.php:907
1284
  #: app/skins/single/default.php:169 app/skins/single/default.php:381
1285
  #: app/skins/single/m1.php:155 app/skins/single/m2.php:87
@@ -1304,7 +1305,7 @@ msgstr "helyszín"
1304
  #: app/features/organizers.php:58 app/features/organizers.php:204
1305
  #: app/features/organizers.php:260 app/features/organizers.php:262
1306
  #: app/features/organizers.php:271 app/features/search.php:75
1307
- #: app/libraries/main.php:4892 app/libraries/skins.php:860
1308
  #: app/skins/single.php:795 app/skins/single/default.php:210
1309
  #: app/skins/single/default.php:422 app/skins/single/m1.php:90
1310
  #: app/skins/single/m2.php:22 app/skins/single/modern.php:31
@@ -1348,7 +1349,7 @@ msgstr ""
1348
  #: app/features/fes.php:224 app/features/fes.php:332 app/features/ix.php:2743
1349
  #: app/features/ix.php:2784 app/features/labels.php:177
1350
  #: app/features/locations.php:229 app/features/organizers.php:203
1351
- #: app/features/speakers.php:251
1352
  msgid "ID"
1353
  msgstr ""
1354
 
@@ -1398,13 +1399,13 @@ msgid "The event removed!"
1398
  msgstr ""
1399
 
1400
  #: app/features/fes.php:224 app/features/fes.php:332
1401
- #: app/features/profile/profile.php:174 app/libraries/main.php:2077
1402
- #: app/libraries/main.php:4920
1403
  msgid "Ticket"
1404
  msgstr ""
1405
 
1406
  #: app/features/fes.php:224 app/features/fes.php:332
1407
- #: app/libraries/main.php:2054
1408
  msgid "Transaction ID"
1409
  msgstr ""
1410
 
@@ -1488,7 +1489,7 @@ msgstr ""
1488
 
1489
  #: app/features/fes/form.php:763 app/features/labels.php:61
1490
  #: app/features/labels.php:221 app/features/mec.php:337
1491
- #: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:4887
1492
  #: app/skins/single.php:685 app/skins/single/default.php:148
1493
  #: app/skins/single/default.php:360 app/skins/single/m1.php:64
1494
  #: app/skins/single/modern.php:214
@@ -1806,13 +1807,13 @@ msgstr ""
1806
  #: app/features/ix/export_g_calendar.php:147
1807
  #: app/features/ix/export_g_calendar.php:164
1808
  #: app/features/mec/notifications.php:92 app/features/mec/notifications.php:144
1809
- #: app/features/mec/notifications.php:197
1810
- #: app/features/mec/notifications.php:398
1811
  msgid "Add to Google Calendar"
1812
  msgstr "Google Naptárba mentés"
1813
 
1814
- #: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:616
1815
- #: app/features/mec/modules.php:392 app/features/mec/notifications.php:590
1816
  #: app/features/mec/settings.php:895 app/features/mec/single.php:269
1817
  msgid "Checking ..."
1818
  msgstr ""
@@ -1856,8 +1857,8 @@ msgid "ICS Feed"
1856
  msgstr ""
1857
 
1858
  #: app/features/ix/import.php:46 app/features/mec/booking.php:91
1859
- #: app/features/mec/booking.php:251 app/features/mec/booking.php:269
1860
- #: app/features/mec/booking.php:346
1861
  #: app/features/mec/meta_boxes/display_options.php:150
1862
  #: app/features/mec/meta_boxes/display_options.php:315
1863
  #: app/features/mec/modules.php:70 app/features/mec/modules.php:211
@@ -1867,8 +1868,8 @@ msgid "%s is required to use this feature."
1867
  msgstr ""
1868
 
1869
  #: app/features/ix/import.php:46 app/features/ix/sync.php:22
1870
- #: app/features/mec/booking.php:91 app/features/mec/booking.php:251
1871
- #: app/features/mec/booking.php:269 app/features/mec/booking.php:346
1872
  #: app/features/mec/meta_boxes/display_options.php:150
1873
  #: app/features/mec/meta_boxes/display_options.php:315
1874
  #: app/features/mec/meta_boxes/display_options.php:330
@@ -2044,7 +2045,7 @@ msgstr ""
2044
 
2045
  #: app/features/ix/sync.php:32 app/features/ix/sync.php:41
2046
  #: app/features/ix/sync.php:52 app/features/ix/sync.php:63
2047
- #: app/features/mec/notifications.php:341
2048
  msgid "Important Note"
2049
  msgstr ""
2050
 
@@ -2168,7 +2169,7 @@ msgid ""
2168
  msgstr ""
2169
 
2170
  #: app/features/labels.php:79 app/features/locations.php:77
2171
- #: app/features/organizers.php:77 app/features/speakers.php:78
2172
  #, php-format
2173
  msgid "← Back to %s"
2174
  msgstr ""
@@ -2214,7 +2215,7 @@ msgid "Featured"
2214
  msgstr ""
2215
 
2216
  #: app/features/labels.php:118 app/features/labels.php:143
2217
- #: app/libraries/main.php:5133 app/skins/agenda/render.php:41
2218
  #: app/skins/available_spot/tpl.php:42 app/skins/carousel/render.php:45
2219
  #: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:32
2220
  #: app/skins/daily_view/render.php:52 app/skins/grid/render.php:50
@@ -2232,7 +2233,7 @@ msgid "You can show featured and canceled events by a different style!"
2232
  msgstr ""
2233
 
2234
  #: app/features/labels.php:180 app/features/locations.php:232
2235
- #: app/features/organizers.php:206 app/features/speakers.php:255
2236
  #: app/modules/booking/steps/tickets.php:38
2237
  msgid "Count"
2238
  msgstr ""
@@ -2249,7 +2250,7 @@ msgstr ""
2249
 
2250
  #: app/features/locations.php:59 app/features/mec.php:338
2251
  #: app/features/mec/dashboard.php:243 app/features/mec/meta_boxes/filter.php:96
2252
- #: app/libraries/main.php:4889
2253
  msgid "Locations"
2254
  msgstr ""
2255
 
@@ -2282,13 +2283,13 @@ msgstr ""
2282
 
2283
  #: app/features/locations.php:138 app/features/locations.php:180
2284
  #: app/features/organizers.php:127 app/features/organizers.php:160
2285
- #: app/features/speakers.php:156 app/features/speakers.php:201
2286
  msgid "Thumbnail"
2287
  msgstr ""
2288
 
2289
  #: app/features/locations.php:143 app/features/locations.php:183
2290
  #: app/features/organizers.php:132 app/features/organizers.php:163
2291
- #: app/features/speakers.php:161 app/features/speakers.php:204
2292
  msgid "Upload/Add image"
2293
  msgstr ""
2294
 
@@ -2296,7 +2297,7 @@ msgstr ""
2296
  #: app/features/locations.php:340 app/features/locations.php:347
2297
  #: app/features/organizers.php:133 app/features/organizers.php:164
2298
  #: app/features/organizers.php:299 app/features/organizers.php:306
2299
- #: app/features/speakers.php:162 app/features/speakers.php:205
2300
  msgid "Remove image"
2301
  msgstr ""
2302
 
@@ -2354,7 +2355,7 @@ msgstr ""
2354
  msgid "Don't show map in single event page"
2355
  msgstr ""
2356
 
2357
- #: app/features/locations.php:356 app/libraries/main.php:4923
2358
  #, fuzzy
2359
  #| msgid "Location"
2360
  msgid "Other Locations"
@@ -2404,7 +2405,7 @@ msgstr ""
2404
 
2405
  #: app/features/mec.php:339 app/features/mec/dashboard.php:250
2406
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2407
- #: app/libraries/main.php:4891
2408
  msgid "Organizers"
2409
  msgstr ""
2410
 
@@ -2500,19 +2501,19 @@ msgstr ""
2500
  msgid "Search..."
2501
  msgstr ""
2502
 
2503
- #: app/features/mec/booking.php:72 app/features/mec/booking.php:492
2504
- #: app/features/mec/booking.php:572 app/features/mec/booking.php:581
2505
- #: app/features/mec/booking.php:591 app/features/mec/booking.php:633
2506
- #: app/features/mec/booking.php:647 app/features/mec/messages.php:15
2507
  #: app/features/mec/messages.php:51 app/features/mec/messages.php:60
2508
  #: app/features/mec/messages.php:94 app/features/mec/messages.php:103
2509
  #: app/features/mec/modules.php:25 app/features/mec/modules.php:357
2510
  #: app/features/mec/modules.php:367 app/features/mec/modules.php:409
2511
  #: app/features/mec/modules.php:423 app/features/mec/notifications.php:14
2512
- #: app/features/mec/notifications.php:499
2513
- #: app/features/mec/notifications.php:511
2514
- #: app/features/mec/notifications.php:607
2515
- #: app/features/mec/notifications.php:621 app/features/mec/settings.php:34
2516
  #: app/features/mec/settings.php:844 app/features/mec/settings.php:854
2517
  #: app/features/mec/settings.php:912 app/features/mec/settings.php:926
2518
  #: app/features/mec/single.php:17 app/features/mec/single.php:234
@@ -2604,130 +2605,144 @@ msgid ""
2604
  "disable it."
2605
  msgstr ""
2606
 
2607
- #: app/features/mec/booking.php:169
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2608
  msgid "Enable Express Attendees Form"
2609
  msgstr ""
2610
 
2611
- #: app/features/mec/booking.php:173 app/modules/booking/steps/form.php:52
2612
  msgid "Attendees Form"
2613
  msgstr "Jelentkezési lap"
2614
 
2615
- #: app/features/mec/booking.php:174
2616
  msgid ""
2617
  "Users are able to apply first attendee information for other attendees in "
2618
  "the booking form."
2619
  msgstr ""
2620
 
2621
- #: app/features/mec/booking.php:187
2622
  #, fuzzy
2623
  #| msgid "Bookings"
2624
  msgid "Enable Invoice"
2625
  msgstr "Foglalások"
2626
 
2627
- #: app/features/mec/booking.php:198
2628
  msgid "Enable Booking for Ongoing Events"
2629
  msgstr ""
2630
 
2631
- #: app/features/mec/booking.php:203
2632
  msgid "Email verification"
2633
  msgstr ""
2634
 
2635
- #: app/features/mec/booking.php:209
2636
  msgid "Auto verification for free bookings"
2637
  msgstr ""
2638
 
2639
- #: app/features/mec/booking.php:218
2640
  msgid "Auto verification for paid bookings"
2641
  msgstr ""
2642
 
2643
- #: app/features/mec/booking.php:222 app/features/mec/notifications.php:151
2644
  #: app/libraries/main.php:573
2645
  msgid "Booking Confirmation"
2646
  msgstr ""
2647
 
2648
- #: app/features/mec/booking.php:228
2649
  msgid "Auto confirmation for free bookings"
2650
  msgstr ""
2651
 
2652
- #: app/features/mec/booking.php:237
2653
  msgid "Auto confirmation for paid bookings"
2654
  msgstr ""
2655
 
2656
- #: app/features/mec/booking.php:256
2657
  msgid "Enable coupons module"
2658
  msgstr ""
2659
 
2660
- #: app/features/mec/booking.php:258
2661
  msgid ""
2662
  "After enabling and saving the settings,, you should reload the page to see a "
2663
  "new menu on the Dashboard > Booking"
2664
  msgstr ""
2665
 
2666
- #: app/features/mec/booking.php:266 app/libraries/main.php:552
2667
  msgid "Taxes / Fees"
2668
  msgstr ""
2669
 
2670
- #: app/features/mec/booking.php:274
2671
  msgid "Enable taxes / fees module"
2672
  msgstr ""
2673
 
2674
- #: app/features/mec/booking.php:279
2675
  msgid "Add Fee"
2676
  msgstr ""
2677
 
2678
- #: app/features/mec/booking.php:343 app/libraries/main.php:553
2679
  msgid "Ticket Variations & Options"
2680
  msgstr ""
2681
 
2682
- #: app/features/mec/booking.php:351
2683
  msgid "Enable ticket options module"
2684
  msgstr ""
2685
 
2686
- #: app/features/mec/booking.php:356
2687
  msgid "Add Variation / Option"
2688
  msgstr ""
2689
 
2690
- #: app/features/mec/booking.php:559
2691
  msgid "Enable Organizer Payment Module"
2692
  msgstr ""
2693
 
2694
- #: app/features/mec/booking.php:563
2695
  #, fuzzy
2696
  #| msgid "Organizer"
2697
  msgid "Organizer Payment"
2698
  msgstr "Szervező"
2699
 
2700
- #: app/features/mec/booking.php:564
2701
  msgid ""
2702
  "By enabling this module, organizers are able to insert their own payment "
2703
  "credentials for enabled gateways per event and receive the payments directly!"
2704
  msgstr ""
2705
 
2706
- #: app/features/mec/booking.php:611 app/features/mec/messages.php:78
2707
- #: app/features/mec/modules.php:387 app/features/mec/notifications.php:585
2708
  #: app/features/mec/settings.php:890 app/features/mec/single.php:264
2709
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:296
2710
  msgid "Saved"
2711
  msgstr ""
2712
 
2713
- #: app/features/mec/booking.php:612 app/features/mec/messages.php:79
2714
- #: app/features/mec/modules.php:388 app/features/mec/notifications.php:586
2715
  #: app/features/mec/settings.php:891 app/features/mec/single.php:265
2716
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:297
2717
  msgid "Settings Saved!"
2718
  msgstr ""
2719
 
2720
- #: app/features/mec/booking.php:614 app/features/mec/booking.php:636
2721
  #: app/features/mec/modules.php:390 app/features/mec/modules.php:412
2722
- #: app/features/mec/notifications.php:588
2723
- #: app/features/mec/notifications.php:610 app/features/mec/settings.php:893
2724
  #: app/features/mec/settings.php:915 app/features/mec/single.php:267
2725
- #: app/features/mec/single.php:289 app/libraries/main.php:5132
2726
  msgid "Verified"
2727
  msgstr ""
2728
 
2729
- #: app/features/mec/booking.php:638 app/features/mec/modules.php:414
2730
- #: app/features/mec/notifications.php:612 app/features/mec/settings.php:917
2731
  #: app/features/mec/single.php:291
2732
  msgid "Please Refresh Page"
2733
  msgstr ""
@@ -3652,8 +3667,8 @@ msgstr ""
3652
  #: app/features/mec/meta_boxes/search_form.php:535
3653
  #: app/features/mec/meta_boxes/search_form.php:596
3654
  #: app/features/mec/settings.php:739 app/features/mec/single.php:217
3655
- #: app/features/search.php:79 app/features/speakers.php:59
3656
- #: app/features/speakers.php:252 app/libraries/main.php:4894
3657
  #: app/libraries/skins.php:886
3658
  msgid "Speaker"
3659
  msgstr ""
@@ -3912,11 +3927,11 @@ msgstr ""
3912
 
3913
  #: app/features/mec/notifications.php:45 app/features/mec/notifications.php:102
3914
  #: app/features/mec/notifications.php:154
3915
- #: app/features/mec/notifications.php:213
3916
- #: app/features/mec/notifications.php:281
3917
- #: app/features/mec/notifications.php:344
3918
- #: app/features/mec/notifications.php:417
3919
- #: app/features/mec/notifications.php:463
3920
  msgid "Email Subject"
3921
  msgstr ""
3922
 
@@ -3925,93 +3940,93 @@ msgstr ""
3925
  #: app/features/mec/notifications.php:110
3926
  #: app/features/mec/notifications.php:158
3927
  #: app/features/mec/notifications.php:162
3928
- #: app/features/mec/notifications.php:217
3929
- #: app/features/mec/notifications.php:221
3930
- #: app/features/mec/notifications.php:285
3931
- #: app/features/mec/notifications.php:289
3932
- #: app/features/mec/notifications.php:348
3933
- #: app/features/mec/notifications.php:352
3934
- #: app/features/mec/notifications.php:363
3935
- #: app/features/mec/notifications.php:421
3936
- #: app/features/mec/notifications.php:425
3937
- #: app/features/mec/notifications.php:467
3938
- #: app/features/mec/notifications.php:471
3939
- msgid "Custom Recipients"
3940
- msgstr ""
3941
-
3942
- #: app/features/mec/notifications.php:54 app/features/mec/notifications.php:111
3943
- #: app/features/mec/notifications.php:163
3944
  #: app/features/mec/notifications.php:222
 
3945
  #: app/features/mec/notifications.php:290
 
3946
  #: app/features/mec/notifications.php:353
3947
  #: app/features/mec/notifications.php:364
 
3948
  #: app/features/mec/notifications.php:426
 
3949
  #: app/features/mec/notifications.php:472
 
 
 
 
 
 
 
 
 
 
 
3950
  msgid "Insert comma separated emails for multiple recipients."
3951
  msgstr ""
3952
 
3953
- #: app/features/mec/notifications.php:61 app/features/mec/notifications.php:233
3954
- #: app/features/mec/notifications.php:297
3955
  msgid "Send the email to event organizer"
3956
  msgstr ""
3957
 
3958
  #: app/features/mec/notifications.php:64 app/features/mec/notifications.php:117
3959
  #: app/features/mec/notifications.php:169
3960
- #: app/features/mec/notifications.php:240
3961
- #: app/features/mec/notifications.php:300
3962
- #: app/features/mec/notifications.php:370
3963
- #: app/features/mec/notifications.php:432
3964
- #: app/features/mec/notifications.php:478
3965
  msgid "Email Content"
3966
  msgstr ""
3967
 
3968
  #: app/features/mec/notifications.php:67 app/features/mec/notifications.php:120
3969
  #: app/features/mec/notifications.php:172
3970
- #: app/features/mec/notifications.php:243
3971
- #: app/features/mec/notifications.php:303
3972
- #: app/features/mec/notifications.php:373
3973
- #: app/features/mec/notifications.php:435
3974
- #: app/features/mec/notifications.php:481
3975
  msgid "You can use following placeholders"
3976
  msgstr ""
3977
 
3978
  #: app/features/mec/notifications.php:69 app/features/mec/notifications.php:122
3979
  #: app/features/mec/notifications.php:174
3980
- #: app/features/mec/notifications.php:245
3981
- #: app/features/mec/notifications.php:305
3982
- #: app/features/mec/notifications.php:375
3983
  msgid "First name of attendee"
3984
  msgstr ""
3985
 
3986
  #: app/features/mec/notifications.php:70 app/features/mec/notifications.php:123
3987
  #: app/features/mec/notifications.php:175
3988
- #: app/features/mec/notifications.php:246
3989
- #: app/features/mec/notifications.php:306
3990
- #: app/features/mec/notifications.php:376
3991
  msgid "Last name of attendee"
3992
  msgstr ""
3993
 
3994
  #: app/features/mec/notifications.php:71 app/features/mec/notifications.php:124
3995
  #: app/features/mec/notifications.php:176
3996
- #: app/features/mec/notifications.php:247
3997
- #: app/features/mec/notifications.php:307
3998
- #: app/features/mec/notifications.php:377
3999
  msgid "Email of attendee"
4000
  msgstr "A résztvevők email címe"
4001
 
4002
  #: app/features/mec/notifications.php:72 app/features/mec/notifications.php:125
4003
  #: app/features/mec/notifications.php:177
4004
- #: app/features/mec/notifications.php:248
4005
- #: app/features/mec/notifications.php:308
4006
- #: app/features/mec/notifications.php:378
4007
  msgid "Booked date of event"
4008
  msgstr ""
4009
 
4010
  #: app/features/mec/notifications.php:73 app/features/mec/notifications.php:126
4011
  #: app/features/mec/notifications.php:178
4012
- #: app/features/mec/notifications.php:249
4013
- #: app/features/mec/notifications.php:309
4014
- #: app/features/mec/notifications.php:379
4015
  #, fuzzy
4016
  #| msgid "Book Event"
4017
  msgid "Booked time of event"
@@ -4019,143 +4034,143 @@ msgstr "Foglalás az eseményre"
4019
 
4020
  #: app/features/mec/notifications.php:74 app/features/mec/notifications.php:127
4021
  #: app/features/mec/notifications.php:179
4022
- #: app/features/mec/notifications.php:250
4023
- #: app/features/mec/notifications.php:310
4024
- #: app/features/mec/notifications.php:380
4025
- msgid "Booking Price"
4026
- msgstr ""
4027
-
4028
- #: app/features/mec/notifications.php:75 app/features/mec/notifications.php:128
4029
- #: app/features/mec/notifications.php:180
4030
  #: app/features/mec/notifications.php:251
4031
  #: app/features/mec/notifications.php:311
4032
  #: app/features/mec/notifications.php:381
4033
- #: app/features/mec/notifications.php:441
4034
- #: app/features/mec/notifications.php:487
4035
- msgid "Your website title"
4036
  msgstr ""
4037
 
4038
- #: app/features/mec/notifications.php:76 app/features/mec/notifications.php:129
4039
- #: app/features/mec/notifications.php:181
4040
  #: app/features/mec/notifications.php:252
4041
  #: app/features/mec/notifications.php:312
4042
  #: app/features/mec/notifications.php:382
4043
  #: app/features/mec/notifications.php:442
4044
  #: app/features/mec/notifications.php:488
4045
- msgid "Your website URL"
4046
  msgstr ""
4047
 
4048
- #: app/features/mec/notifications.php:77 app/features/mec/notifications.php:130
4049
- #: app/features/mec/notifications.php:182
4050
  #: app/features/mec/notifications.php:253
4051
  #: app/features/mec/notifications.php:313
4052
  #: app/features/mec/notifications.php:383
4053
  #: app/features/mec/notifications.php:443
4054
  #: app/features/mec/notifications.php:489
4055
- msgid "Your website description"
4056
  msgstr ""
4057
 
4058
- #: app/features/mec/notifications.php:78 app/features/mec/notifications.php:131
4059
- #: app/features/mec/notifications.php:183
4060
  #: app/features/mec/notifications.php:254
4061
  #: app/features/mec/notifications.php:314
4062
  #: app/features/mec/notifications.php:384
4063
- msgid "Event title"
 
 
4064
  msgstr ""
4065
 
4066
- #: app/features/mec/notifications.php:79 app/features/mec/notifications.php:132
4067
- #: app/features/mec/notifications.php:184
4068
  #: app/features/mec/notifications.php:255
4069
  #: app/features/mec/notifications.php:315
4070
  #: app/features/mec/notifications.php:385
4071
- msgid "Event link"
4072
  msgstr ""
4073
 
4074
- #: app/features/mec/notifications.php:80 app/features/mec/notifications.php:133
4075
- #: app/features/mec/notifications.php:185
4076
  #: app/features/mec/notifications.php:256
4077
  #: app/features/mec/notifications.php:316
4078
  #: app/features/mec/notifications.php:386
4079
- msgid "Speaker name of booked event"
4080
  msgstr ""
4081
 
4082
- #: app/features/mec/notifications.php:81 app/features/mec/notifications.php:134
4083
- #: app/features/mec/notifications.php:186
4084
  #: app/features/mec/notifications.php:257
4085
  #: app/features/mec/notifications.php:317
4086
  #: app/features/mec/notifications.php:387
4087
- msgid "Organizer name of booked event"
4088
  msgstr ""
4089
 
4090
- #: app/features/mec/notifications.php:82 app/features/mec/notifications.php:135
4091
- #: app/features/mec/notifications.php:187
4092
  #: app/features/mec/notifications.php:258
4093
  #: app/features/mec/notifications.php:318
4094
  #: app/features/mec/notifications.php:388
4095
- msgid "Organizer tel of booked event"
4096
  msgstr ""
4097
 
4098
- #: app/features/mec/notifications.php:83 app/features/mec/notifications.php:136
4099
- #: app/features/mec/notifications.php:188
4100
  #: app/features/mec/notifications.php:259
4101
  #: app/features/mec/notifications.php:319
4102
  #: app/features/mec/notifications.php:389
4103
- msgid "Organizer email of booked event"
4104
  msgstr ""
4105
 
4106
- #: app/features/mec/notifications.php:84 app/features/mec/notifications.php:137
4107
- #: app/features/mec/notifications.php:189
4108
  #: app/features/mec/notifications.php:260
4109
  #: app/features/mec/notifications.php:320
4110
  #: app/features/mec/notifications.php:390
4111
- msgid "Location name of booked event"
4112
  msgstr ""
4113
 
4114
- #: app/features/mec/notifications.php:85 app/features/mec/notifications.php:138
4115
- #: app/features/mec/notifications.php:190
4116
  #: app/features/mec/notifications.php:261
4117
  #: app/features/mec/notifications.php:321
4118
  #: app/features/mec/notifications.php:391
 
 
 
 
 
 
 
 
4119
  msgid "Location address of booked event"
4120
  msgstr ""
4121
 
4122
- #: app/features/mec/notifications.php:86 app/features/mec/notifications.php:263
4123
- #: app/features/mec/notifications.php:323
4124
  msgid "Full Attendee info such as booking form data, name, email etc."
4125
  msgstr ""
4126
 
4127
  #: app/features/mec/notifications.php:87 app/features/mec/notifications.php:192
4128
- #: app/features/mec/notifications.php:393
4129
  msgid "Invoice Link"
4130
  msgstr ""
4131
 
4132
  #: app/features/mec/notifications.php:88 app/features/mec/notifications.php:140
4133
  #: app/features/mec/notifications.php:193
4134
- #: app/features/mec/notifications.php:264
4135
- #: app/features/mec/notifications.php:324
4136
- #: app/features/mec/notifications.php:394
4137
  msgid "Total Attendees"
4138
  msgstr ""
4139
 
4140
  #: app/features/mec/notifications.php:89 app/features/mec/notifications.php:141
4141
- #: app/features/mec/notifications.php:194
4142
- #: app/features/mec/notifications.php:395
4143
  #, fuzzy
4144
  #| msgid "First name"
4145
  msgid "Ticket name"
4146
  msgstr "Keresztnév"
4147
 
4148
  #: app/features/mec/notifications.php:90 app/features/mec/notifications.php:142
4149
- #: app/features/mec/notifications.php:195
4150
- #: app/features/mec/notifications.php:396
4151
  #, fuzzy
4152
  #| msgid "Tickets Price"
4153
  msgid "Ticket time"
4154
  msgstr "Jegy(ek) ára"
4155
 
4156
  #: app/features/mec/notifications.php:91 app/features/mec/notifications.php:143
4157
- #: app/features/mec/notifications.php:196
4158
- #: app/features/mec/notifications.php:397
4159
  msgid "Download ICS file"
4160
  msgstr ""
4161
 
@@ -4176,59 +4191,65 @@ msgid "It sends to attendee after confirming the booking by admin."
4176
  msgstr ""
4177
 
4178
  #: app/features/mec/notifications.php:191
4179
- #: app/features/mec/notifications.php:392
4180
  msgid "Booking cancellation link."
4181
  msgstr ""
4182
 
4183
- #: app/features/mec/notifications.php:203 app/libraries/main.php:574
 
 
 
 
 
 
4184
  msgid "Booking Cancellation"
4185
  msgstr ""
4186
 
4187
- #: app/features/mec/notifications.php:207
4188
  msgid "Enable cancellation notification"
4189
  msgstr ""
4190
 
4191
- #: app/features/mec/notifications.php:211
4192
  msgid ""
4193
  "It sends to selected recipients after booking cancellation for notifying "
4194
  "them."
4195
  msgstr ""
4196
 
4197
- #: app/features/mec/notifications.php:229
4198
  msgid "Send the email to admin"
4199
  msgstr ""
4200
 
4201
- #: app/features/mec/notifications.php:237
4202
  msgid "Send the email to booking user"
4203
  msgstr ""
4204
 
4205
- #: app/features/mec/notifications.php:262
4206
- #: app/features/mec/notifications.php:322
4207
  msgid "Admin booking management link."
4208
  msgstr ""
4209
 
4210
- #: app/features/mec/notifications.php:271 app/libraries/main.php:576
4211
  msgid "Admin"
4212
  msgstr ""
4213
 
4214
- #: app/features/mec/notifications.php:275
4215
  msgid "Enable admin notification"
4216
  msgstr ""
4217
 
4218
- #: app/features/mec/notifications.php:279
4219
  msgid "It sends to admin to notify him/her that a new booking received."
4220
  msgstr ""
4221
 
4222
- #: app/features/mec/notifications.php:331 app/libraries/main.php:575
4223
  #: app/libraries/notifications.php:478
4224
  msgid "Booking Reminder"
4225
  msgstr ""
4226
 
4227
- #: app/features/mec/notifications.php:335
4228
  msgid "Enable booking reminder notification"
4229
  msgstr ""
4230
 
4231
- #: app/features/mec/notifications.php:341
4232
  #, php-format
4233
  msgid ""
4234
  "Set a cronjob to call %s file once per day otherwise it won't send the "
@@ -4236,64 +4257,64 @@ msgid ""
4236
  "send the reminders multiple times."
4237
  msgstr ""
4238
 
4239
- #: app/features/mec/notifications.php:341
4240
  msgid "only once per day"
4241
  msgstr ""
4242
 
4243
- #: app/features/mec/notifications.php:359
4244
  msgid "Days"
4245
  msgstr ""
4246
 
4247
- #: app/features/mec/notifications.php:407 app/features/mec/support-page.php:80
4248
  #: app/libraries/main.php:577
4249
  msgid "New Event"
4250
  msgstr ""
4251
 
4252
- #: app/features/mec/notifications.php:411
4253
  msgid "Enable new event notification"
4254
  msgstr ""
4255
 
4256
- #: app/features/mec/notifications.php:415
4257
  msgid ""
4258
  "It sends after adding a new event from frontend event submission or from "
4259
  "website backend."
4260
  msgstr ""
4261
 
4262
- #: app/features/mec/notifications.php:437
4263
- #: app/features/mec/notifications.php:483
4264
- msgid "Title of event"
4265
- msgstr ""
4266
-
4267
  #: app/features/mec/notifications.php:438
4268
  #: app/features/mec/notifications.php:484
4269
- msgid "Link of event"
4270
  msgstr ""
4271
 
4272
  #: app/features/mec/notifications.php:439
4273
  #: app/features/mec/notifications.php:485
4274
- msgid "Status of event"
4275
  msgstr ""
4276
 
4277
  #: app/features/mec/notifications.php:440
4278
- #: app/features/mec/notifications.php:486 app/features/mec/settings.php:654
 
 
 
 
 
4279
  #: app/features/mec/settings.php:658
4280
  msgid "Event Note"
4281
  msgstr ""
4282
 
4283
- #: app/features/mec/notifications.php:444
4284
- #: app/features/mec/notifications.php:490
4285
  msgid "Admin events management link."
4286
  msgstr ""
4287
 
4288
- #: app/features/mec/notifications.php:453 app/libraries/main.php:578
4289
  msgid "User Event Publishing"
4290
  msgstr ""
4291
 
4292
- #: app/features/mec/notifications.php:457
4293
  msgid "Enable user event publishing notification"
4294
  msgstr ""
4295
 
4296
- #: app/features/mec/notifications.php:461
4297
  msgid ""
4298
  "It sends after published a new event from frontend event submission or from "
4299
  "website backend."
@@ -4385,7 +4406,7 @@ msgid "You can enable/disable Schema scripts"
4385
  msgstr ""
4386
 
4387
  #: app/features/mec/settings.php:136 app/features/mec/settings.php:146
4388
- #: app/libraries/main.php:4898
4389
  msgid "Weekdays"
4390
  msgstr ""
4391
 
@@ -5399,7 +5420,7 @@ msgstr "például john@smith.com"
5399
  msgid "eg. https://webnus.net"
5400
  msgstr ""
5401
 
5402
- #: app/features/organizers.php:311 app/libraries/main.php:4922
5403
  #: app/skins/single.php:845
5404
  msgid "Other Organizers"
5405
  msgstr ""
@@ -5424,11 +5445,11 @@ msgstr "Foglalások"
5424
  msgid "#"
5425
  msgstr ""
5426
 
5427
- #: app/features/profile/profile.php:56 app/libraries/main.php:2918
5428
  msgid "Status"
5429
  msgstr ""
5430
 
5431
- #: app/features/profile/profile.php:59 app/libraries/main.php:2063
5432
  msgid "Attendees"
5433
  msgstr ""
5434
 
@@ -5457,7 +5478,7 @@ msgstr ""
5457
  msgid "No bookings found!"
5458
  msgstr ""
5459
 
5460
- #: app/features/search.php:87 app/libraries/main.php:4888
5461
  msgid "label"
5462
  msgstr ""
5463
 
@@ -5490,63 +5511,69 @@ msgstr ""
5490
  msgid "All of the day"
5491
  msgstr ""
5492
 
5493
- #: app/features/speakers.php:108 app/features/speakers.php:177
5494
- #: app/features/speakers.php:253
5495
  msgid "Job Title"
5496
  msgstr ""
5497
 
5498
- #: app/features/speakers.php:111 app/features/speakers.php:178
5499
  msgid "Insert speaker job title."
5500
  msgstr ""
5501
 
5502
- #: app/features/speakers.php:119 app/features/speakers.php:182
5503
  msgid "Insert speaker phone number."
5504
  msgstr ""
5505
 
5506
- #: app/features/speakers.php:127 app/features/speakers.php:186
5507
  msgid "Insert speaker email address."
5508
  msgstr ""
5509
 
5510
- #: app/features/speakers.php:132 app/features/speakers.php:189
5511
  #, fuzzy
5512
  #| msgid "Facebook Events"
5513
  msgid "Facebook Page"
5514
  msgstr "Facebook események"
5515
 
5516
- #: app/features/speakers.php:135 app/features/speakers.php:190
5517
  msgid "Insert URL of Facebook Page"
5518
  msgstr ""
5519
 
5520
- #: app/features/speakers.php:140 app/features/speakers.php:193
5521
  msgid "Instagram"
5522
  msgstr ""
5523
 
5524
- #: app/features/speakers.php:143 app/features/speakers.php:194
5525
  msgid "Insert URL of Instagram"
5526
  msgstr ""
5527
 
5528
- #: app/features/speakers.php:148 app/features/speakers.php:197
5529
  msgid "Twitter Page"
5530
  msgstr ""
5531
 
5532
- #: app/features/speakers.php:151 app/features/speakers.php:198
5533
  msgid "Insert URL of Twitter Page"
5534
  msgstr ""
5535
 
5536
- #: app/features/speakers.php:313
5537
  msgid "Sorry, You must insert speaker name!"
5538
  msgstr ""
5539
 
 
 
 
 
 
 
5540
  #: app/libraries/book.php:60
5541
  #, php-format
5542
  msgid "%s Price"
5543
  msgstr ""
5544
 
5545
- #: app/libraries/book.php:553
5546
  msgid "Discount"
5547
  msgstr ""
5548
 
5549
- #: app/libraries/book.php:643 app/modules/booking/default.php:305
5550
  #: app/modules/booking/default.php:403
5551
  msgid "Download Invoice"
5552
  msgstr ""
@@ -5677,31 +5704,31 @@ msgstr ""
5677
  msgid "Slider View"
5678
  msgstr ""
5679
 
5680
- #: app/libraries/main.php:382 app/libraries/main.php:4900
5681
  msgid "SU"
5682
  msgstr ""
5683
 
5684
- #: app/libraries/main.php:383 app/libraries/main.php:4901
5685
  msgid "MO"
5686
  msgstr ""
5687
 
5688
- #: app/libraries/main.php:384 app/libraries/main.php:4902
5689
  msgid "TU"
5690
  msgstr ""
5691
 
5692
- #: app/libraries/main.php:385 app/libraries/main.php:4903
5693
  msgid "WE"
5694
  msgstr ""
5695
 
5696
- #: app/libraries/main.php:386 app/libraries/main.php:4904
5697
  msgid "TH"
5698
  msgstr ""
5699
 
5700
- #: app/libraries/main.php:387 app/libraries/main.php:4905
5701
  msgid "FR"
5702
  msgstr ""
5703
 
5704
- #: app/libraries/main.php:388 app/libraries/main.php:4906
5705
  msgid "SA"
5706
  msgstr ""
5707
 
@@ -5833,198 +5860,207 @@ msgstr ""
5833
  msgid "Invoice is invalid."
5834
  msgstr "Fizetés érvénytelen"
5835
 
5836
- #: app/libraries/main.php:2004
 
 
 
 
 
 
 
 
 
5837
  msgid "Cannot find the booking!"
5838
  msgstr ""
5839
 
5840
- #: app/libraries/main.php:2004
5841
  msgid "Booking is invalid."
5842
  msgstr ""
5843
 
5844
- #: app/libraries/main.php:2033
5845
  #, php-format
5846
  msgid "%s Invoice"
5847
  msgstr ""
5848
 
5849
- #: app/libraries/main.php:2107
5850
  msgid "Billing"
5851
  msgstr ""
5852
 
5853
- #: app/libraries/main.php:2118
5854
  msgid "Total"
5855
  msgstr ""
5856
 
5857
- #: app/libraries/main.php:2175
5858
  #, fuzzy
5859
  #| msgid "Payment is invalid."
5860
  msgid "Request is not valid."
5861
  msgstr "Fizetés érvénytelen"
5862
 
5863
- #: app/libraries/main.php:2175
5864
  msgid "iCal export stopped!"
5865
  msgstr ""
5866
 
5867
- #: app/libraries/main.php:2502 app/libraries/main.php:2532
5868
- #: app/libraries/main.php:2561 app/libraries/main.php:2591
5869
- #: app/libraries/main.php:2620 app/libraries/main.php:2649
5870
- #: app/libraries/main.php:2678 app/libraries/main.php:2707
5871
- #: app/libraries/main.php:2736 app/libraries/main.php:2760
5872
- #: app/libraries/main.php:2804 app/libraries/main.php:2848
5873
- #: app/libraries/main.php:2895 app/libraries/main.php:2942
5874
  msgid "Sort"
5875
  msgstr ""
5876
 
5877
- #: app/libraries/main.php:2508 app/libraries/main.php:2538
5878
- #: app/libraries/main.php:2567 app/libraries/main.php:2597
5879
- #: app/libraries/main.php:2626 app/libraries/main.php:2655
5880
- #: app/libraries/main.php:2684 app/libraries/main.php:2713
5881
- #: app/libraries/main.php:2766 app/libraries/main.php:2810
5882
- #: app/libraries/main.php:2854 app/libraries/main.php:2901
5883
  msgid "Required Field"
5884
  msgstr "Töltse ki az adatokat!"
5885
 
5886
- #: app/libraries/main.php:2514 app/libraries/main.php:2544
5887
- #: app/libraries/main.php:2573 app/libraries/main.php:2603
5888
- #: app/libraries/main.php:2632 app/libraries/main.php:2661
5889
- #: app/libraries/main.php:2690 app/libraries/main.php:2719
5890
- #: app/libraries/main.php:2772 app/libraries/main.php:2816
5891
- #: app/libraries/main.php:2860 app/libraries/main.php:2907
5892
  msgid "Insert a label for this field"
5893
  msgstr ""
5894
 
5895
- #: app/libraries/main.php:2742
5896
  msgid "HTML and shortcode are allowed."
5897
  msgstr ""
5898
 
5899
- #: app/libraries/main.php:2785 app/libraries/main.php:2829
5900
- #: app/libraries/main.php:2873
5901
  msgid "Option"
5902
  msgstr ""
5903
 
5904
- #: app/libraries/main.php:2907
5905
  #, php-format
5906
  msgid "Instead of %s, the page title with a link will be show."
5907
  msgstr ""
5908
 
5909
- #: app/libraries/main.php:2909
5910
  msgid "Agreement Page"
5911
  msgstr ""
5912
 
5913
- #: app/libraries/main.php:2920
5914
  msgid "Checked by default"
5915
  msgstr ""
5916
 
5917
- #: app/libraries/main.php:2921
5918
  msgid "Unchecked by default"
5919
  msgstr ""
5920
 
5921
- #: app/libraries/main.php:2944
5922
  msgid "Insert a label for this option"
5923
  msgstr ""
5924
 
5925
- #: app/libraries/main.php:2959
5926
  msgid "Free"
5927
  msgstr "Ingyenes"
5928
 
5929
- #: app/libraries/main.php:3565 app/libraries/main.php:5147
5930
  msgid "M.E. Calender"
5931
  msgstr ""
5932
 
5933
- #: app/libraries/main.php:3720
5934
  #, php-format
5935
  msgid "Copy of %s"
5936
  msgstr ""
5937
 
5938
- #: app/libraries/main.php:4393
5939
  msgid "Booked an event."
5940
  msgstr ""
5941
 
5942
- #: app/libraries/main.php:4434
5943
  #, php-format
5944
  msgid "%s booked %s event."
5945
  msgstr ""
5946
 
5947
- #: app/libraries/main.php:4883
5948
  msgid "Taxonomies"
5949
  msgstr ""
5950
 
5951
- #: app/libraries/main.php:4885
5952
  msgid "Category Plural Label"
5953
  msgstr ""
5954
 
5955
- #: app/libraries/main.php:4886
5956
  msgid "Category Singular Label"
5957
  msgstr ""
5958
 
5959
- #: app/libraries/main.php:4887
5960
  msgid "Label Plural Label"
5961
  msgstr ""
5962
 
5963
- #: app/libraries/main.php:4888
5964
  msgid "Label Singular Label"
5965
  msgstr ""
5966
 
5967
- #: app/libraries/main.php:4889
5968
  msgid "Location Plural Label"
5969
  msgstr ""
5970
 
5971
- #: app/libraries/main.php:4890
5972
  msgid "Location Singular Label"
5973
  msgstr ""
5974
 
5975
- #: app/libraries/main.php:4891
5976
  msgid "Organizer Plural Label"
5977
  msgstr ""
5978
 
5979
- #: app/libraries/main.php:4892
5980
  msgid "Organizer Singular Label"
5981
  msgstr ""
5982
 
5983
- #: app/libraries/main.php:4893
5984
  msgid "Speaker Plural Label"
5985
  msgstr ""
5986
 
5987
- #: app/libraries/main.php:4894
5988
  msgid "Speaker Singular Label"
5989
  msgstr ""
5990
 
5991
- #: app/libraries/main.php:4900
5992
  msgid "Sunday abbreviation"
5993
  msgstr ""
5994
 
5995
- #: app/libraries/main.php:4901
5996
  msgid "Monday abbreviation"
5997
  msgstr ""
5998
 
5999
- #: app/libraries/main.php:4902
6000
  msgid "Tuesday abbreviation"
6001
  msgstr ""
6002
 
6003
- #: app/libraries/main.php:4903
6004
  msgid "Wednesday abbreviation"
6005
  msgstr ""
6006
 
6007
- #: app/libraries/main.php:4904
6008
  msgid "Thursday abbreviation"
6009
  msgstr ""
6010
 
6011
- #: app/libraries/main.php:4905
6012
  msgid "Friday abbreviation"
6013
  msgstr ""
6014
 
6015
- #: app/libraries/main.php:4906
6016
  msgid "Saturday abbreviation"
6017
  msgstr ""
6018
 
6019
- #: app/libraries/main.php:4910
6020
  msgid "Others"
6021
  msgstr ""
6022
 
6023
- #: app/libraries/main.php:4912
6024
  msgid "Booking Success Message"
6025
  msgstr ""
6026
 
6027
- #: app/libraries/main.php:4912
6028
  msgid ""
6029
  "Thanks for your booking. Your tickets booked, booking verification might be "
6030
  "needed, please check your email."
@@ -6032,11 +6068,11 @@ msgstr ""
6032
  "Köszönjük a foglalást! Kérjük ellenőrizze emailjeit, lehetséges, hogy "
6033
  "jóváhagyásra lesz szükség!"
6034
 
6035
- #: app/libraries/main.php:4913 app/widgets/single.php:131
6036
  msgid "Register Button"
6037
  msgstr ""
6038
 
6039
- #: app/libraries/main.php:4913 app/skins/available_spot/tpl.php:224
6040
  #: app/skins/carousel/render.php:158 app/skins/carousel/render.php:194
6041
  #: app/skins/grid/render.php:118 app/skins/grid/render.php:164
6042
  #: app/skins/grid/render.php:207 app/skins/grid/render.php:235
@@ -6053,11 +6089,11 @@ msgstr ""
6053
  msgid "REGISTER"
6054
  msgstr "REGISZTRÁCIÓ"
6055
 
6056
- #: app/libraries/main.php:4914
6057
  msgid "View Detail Button"
6058
  msgstr ""
6059
 
6060
- #: app/libraries/main.php:4914 app/skins/carousel/render.php:158
6061
  #: app/skins/carousel/render.php:194 app/skins/grid/render.php:118
6062
  #: app/skins/grid/render.php:164 app/skins/grid/render.php:207
6063
  #: app/skins/grid/render.php:235 app/skins/list/render.php:108
@@ -6068,59 +6104,59 @@ msgstr ""
6068
  msgid "View Detail"
6069
  msgstr ""
6070
 
6071
- #: app/libraries/main.php:4915
6072
  msgid "Event Detail Button"
6073
  msgstr ""
6074
 
6075
- #: app/libraries/main.php:4915 app/skins/countdown/tpl.php:244
6076
  msgid "Event Detail"
6077
  msgstr ""
6078
 
6079
- #: app/libraries/main.php:4917
6080
  msgid "More Info Link"
6081
  msgstr ""
6082
 
6083
- #: app/libraries/main.php:4920
6084
  msgid "Ticket (Singular)"
6085
  msgstr ""
6086
 
6087
- #: app/libraries/main.php:4921
6088
  msgid "Tickets (Plural)"
6089
  msgstr ""
6090
 
6091
- #: app/libraries/main.php:5007
6092
  msgid "EventON"
6093
  msgstr ""
6094
 
6095
- #: app/libraries/main.php:5008
6096
  msgid "The Events Calendar"
6097
  msgstr ""
6098
 
6099
- #: app/libraries/main.php:5009
6100
  msgid "Events Schedule WP Plugin"
6101
  msgstr ""
6102
 
6103
- #: app/libraries/main.php:5010
6104
  msgid "Calendarize It"
6105
  msgstr ""
6106
 
6107
- #: app/libraries/main.php:5084 app/libraries/main.php:5104
6108
  msgid "Confirmed"
6109
  msgstr ""
6110
 
6111
- #: app/libraries/main.php:5085 app/libraries/main.php:5112
6112
  msgid "Rejected"
6113
  msgstr ""
6114
 
6115
- #: app/libraries/main.php:5086 app/libraries/main.php:5108
6116
  msgid "Pending"
6117
  msgstr ""
6118
 
6119
- #: app/libraries/main.php:5134
6120
  msgid "Waiting"
6121
  msgstr ""
6122
 
6123
- #: app/libraries/main.php:5339 app/libraries/render.php:382
6124
  msgid "Skin controller does not exist."
6125
  msgstr ""
6126
 
@@ -6154,23 +6190,23 @@ msgstr ""
6154
  msgid "Your event is published."
6155
  msgstr ""
6156
 
6157
- #: app/libraries/notifications.php:821
6158
  msgid "to"
6159
  msgstr ""
6160
 
6161
- #: app/libraries/notifications.php:834 app/modules/export/details.php:27
6162
  msgid "+ Add to Google Calendar"
6163
  msgstr "+ Google Naptárba mentés"
6164
 
6165
- #: app/libraries/notifications.php:835 app/modules/export/details.php:28
6166
  msgid "+ iCal export"
6167
  msgstr "+ iCal Exportálás"
6168
 
6169
- #: app/libraries/notifications.php:898
6170
  msgid "Yes"
6171
  msgstr ""
6172
 
6173
- #: app/libraries/notifications.php:898
6174
  msgid "No"
6175
  msgstr ""
6176
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
+ "POT-Creation-Date: 2019-10-30 12:41+0330\n"
5
+ "PO-Revision-Date: 2019-10-30 12:43+0330\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: hu_HU\n"
72
  msgstr ""
73
 
74
  #: app/features/contextual.php:62 app/features/events.php:2415
75
+ #: app/features/mec/booking.php:439 app/features/mec/support.php:29
76
  #: app/libraries/main.php:554
77
  msgid "Booking Form"
78
  msgstr ""
86
  "YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></iframe>"
87
  msgstr ""
88
 
89
+ #: app/features/contextual.php:70 app/features/mec/booking.php:557
90
  #: app/features/mec/support.php:36 app/libraries/main.php:555
91
  msgid "Payment Gateways"
92
  msgstr ""
221
  msgid "Booking"
222
  msgstr ""
223
 
224
+ #: app/features/contextual.php:318 app/features/mec/booking.php:261
225
  #: app/libraries/main.php:551
226
  msgid "Coupons"
227
  msgstr ""
297
  #: app/features/mec/meta_boxes/search_form.php:514
298
  #: app/features/mec/meta_boxes/search_form.php:575
299
  #: app/features/mec/settings.php:720 app/features/mec/single.php:204
300
+ #: app/features/search.php:67 app/libraries/main.php:4897
301
  #: app/libraries/skins.php:808 app/skins/single.php:559
302
  #: app/skins/single/default.php:185 app/skins/single/default.php:397
303
  #: app/skins/single/m1.php:170 app/skins/single/m2.php:102
307
 
308
  #: app/features/events.php:176 app/features/events.php:3212
309
  #: app/features/fes/form.php:737 app/features/mec.php:336
310
+ #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:4896
311
  msgid "Categories"
312
  msgstr ""
313
 
314
  #: app/features/events.php:186 app/features/labels.php:71
315
  #: app/features/locations.php:69 app/features/organizers.php:69
316
+ #: app/features/speakers.php:72
317
  #, php-format
318
  msgid "All %s"
319
  msgstr ""
320
 
321
  #: app/features/events.php:187 app/features/labels.php:72
322
  #: app/features/locations.php:70 app/features/organizers.php:70
323
+ #: app/features/speakers.php:73
324
  #, php-format
325
  msgid "Edit %s"
326
  msgstr ""
327
 
328
  #: app/features/events.php:188 app/features/labels.php:73
329
  #: app/features/locations.php:71 app/features/organizers.php:71
330
+ #: app/features/speakers.php:74
331
  #, php-format
332
  msgid "View %s"
333
  msgstr ""
334
 
335
  #: app/features/events.php:189 app/features/labels.php:74
336
  #: app/features/locations.php:72 app/features/organizers.php:72
337
+ #: app/features/speakers.php:75
338
  #, php-format
339
  msgid "Update %s"
340
  msgstr ""
341
 
342
  #: app/features/events.php:190 app/features/labels.php:75
343
  #: app/features/locations.php:73 app/features/organizers.php:73
344
+ #: app/features/speakers.php:76
345
  #, php-format
346
  msgid "Add New %s"
347
  msgstr ""
348
 
349
  #: app/features/events.php:191 app/features/labels.php:76
350
  #: app/features/locations.php:74 app/features/organizers.php:74
351
+ #: app/features/speakers.php:77
352
  #, php-format
353
  msgid "New %s Name"
354
  msgstr ""
355
 
356
  #: app/features/events.php:192 app/features/labels.php:77
357
  #: app/features/locations.php:75 app/features/organizers.php:75
358
+ #: app/features/speakers.php:78
359
  #, php-format
360
  msgid "Popular %s"
361
  msgstr ""
362
 
363
  #: app/features/events.php:193 app/features/labels.php:78
364
  #: app/features/locations.php:76 app/features/organizers.php:76
365
+ #: app/features/speakers.php:79
366
  #, php-format
367
  msgid "Search %s"
368
  msgstr ""
391
  #: app/features/fes.php:224 app/features/fes.php:332
392
  #: app/features/fes/form.php:669 app/features/labels.php:178
393
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
394
+ #: app/features/profile/profile.php:168 app/libraries/notifications.php:886
395
  #: app/modules/booking/steps/form.php:37
396
  msgid "Name"
397
  msgstr "Név"
399
  #: app/features/events.php:463 app/features/events.php:2408
400
  #: app/features/events.php:2484 app/features/fes.php:224
401
  #: app/features/fes.php:332 app/features/fes/form.php:665
402
+ #: app/features/mec/booking.php:57 app/features/mec/booking.php:490
403
  #: app/features/organizers.php:111 app/features/organizers.php:152
404
+ #: app/features/profile/profile.php:171 app/features/speakers.php:126
405
+ #: app/features/speakers.php:187 app/libraries/main.php:1472
406
+ #: app/libraries/main.php:1541 app/libraries/main.php:2603
407
+ #: app/libraries/notifications.php:887 app/modules/booking/steps/form.php:46
408
  #: app/modules/booking/steps/form.php:84 app/skins/single.php:812
409
  #: app/skins/single.php:867 app/skins/single/default.php:227
410
  #: app/skins/single/default.php:439 app/skins/single/m1.php:107
494
  #: app/features/events.php:2324 app/features/events.php:2337
495
  #: app/features/fes/form.php:631 app/features/locations.php:299
496
  #: app/features/mec/booking.php:108 app/features/mec/booking.php:158
497
+ #: app/features/mec/booking.php:171 app/features/mec/booking.php:187
498
+ #: app/features/mec/booking.php:306 app/features/mec/booking.php:335
499
+ #: app/features/mec/booking.php:383 app/features/mec/booking.php:393
500
+ #: app/features/mec/booking.php:415 app/features/mec/booking.php:425
501
+ #: app/features/mec/dashboard.php:71
502
  #: app/features/mec/meta_boxes/display_options.php:66
503
  #: app/features/mec/meta_boxes/display_options.php:79
504
  #: app/features/mec/meta_boxes/display_options.php:92
534
  #: app/features/mec/modules.php:154 app/features/mec/modules.php:312
535
  #: app/features/mec/notifications.php:54 app/features/mec/notifications.php:111
536
  #: app/features/mec/notifications.php:163
537
+ #: app/features/mec/notifications.php:223
538
+ #: app/features/mec/notifications.php:291
539
+ #: app/features/mec/notifications.php:354
540
+ #: app/features/mec/notifications.php:365
541
+ #: app/features/mec/notifications.php:427
542
+ #: app/features/mec/notifications.php:473 app/features/mec/settings.php:66
543
  #: app/features/mec/settings.php:85 app/features/mec/settings.php:112
544
  #: app/features/mec/settings.php:147 app/features/mec/settings.php:168
545
  #: app/features/mec/settings.php:188 app/features/mec/settings.php:265
764
  #: app/features/events.php:1153 app/features/events.php:3434
765
  #: app/features/events.php:3476 app/features/fes/form.php:707
766
  #: app/features/ix.php:2743 app/features/ix.php:2784
767
+ #: app/features/mec/settings.php:576 app/libraries/main.php:4929
768
  #: app/widgets/single.php:103
769
  msgid "Event Cost"
770
  msgstr ""
771
 
772
  #: app/features/events.php:1157 app/features/fes/form.php:710
773
+ #: app/libraries/main.php:4930 app/skins/single.php:582
774
  #: app/skins/single/default.php:119 app/skins/single/default.php:331
775
  #: app/skins/single/m1.php:49 app/skins/single/modern.php:199
776
  msgid "Cost"
786
 
787
  #: app/features/events.php:1189 app/features/events.php:2485
788
  #: app/features/fes.php:224 app/features/fes.php:332
789
+ #: app/features/mec/booking.php:491 app/features/profile/profile.php:53
790
+ #: app/libraries/main.php:2059 app/libraries/main.php:2661
791
  #: app/modules/booking/steps/tickets.php:22
792
  #: app/modules/next-event/details.php:90 app/skins/single.php:637
793
  #: app/skins/single/default.php:83 app/skins/single/default.php:295
832
  #: app/features/events.php:2313 app/features/events.php:3240
833
  #: app/features/events.php:3434 app/features/events.php:3476
834
  #: app/features/fes/form.php:226 app/features/ix.php:2743
835
+ #: app/features/ix.php:2784 app/features/mec/booking.php:375
836
+ #: app/features/mec/booking.php:407 app/features/mec/styling.php:115
837
  msgid "Title"
838
  msgstr ""
839
 
844
  #: app/features/events.php:2032 app/features/events.php:2059
845
  #: app/features/events.php:2158 app/features/events.php:2194
846
  #: app/features/events.php:2301 app/features/events.php:2343
847
+ #: app/features/mec/booking.php:318 app/features/mec/booking.php:347
848
+ #: app/features/mec/booking.php:398 app/features/mec/booking.php:430
849
+ #: app/libraries/main.php:2522 app/libraries/main.php:2552
850
+ #: app/libraries/main.php:2581 app/libraries/main.php:2611
851
+ #: app/libraries/main.php:2640 app/libraries/main.php:2669
852
+ #: app/libraries/main.php:2698 app/libraries/main.php:2727
853
+ #: app/libraries/main.php:2749 app/libraries/main.php:2780
854
+ #: app/libraries/main.php:2824 app/libraries/main.php:2868
855
+ #: app/libraries/main.php:2915 app/libraries/main.php:2954
856
  msgid "Remove"
857
  msgstr ""
858
 
879
  #: app/features/events.php:1336 app/features/events.php:1369
880
  #: app/features/events.php:1430 app/features/fes/form.php:831
881
  #: app/features/mec.php:344 app/features/mec/modules.php:52
882
+ #: app/features/mec/settings.php:624 app/features/speakers.php:62
883
+ #: app/libraries/main.php:559 app/libraries/main.php:4904
884
  #: app/modules/speakers/details.php:18
885
  msgid "Speakers"
886
  msgstr ""
895
  msgstr ""
896
 
897
  #: app/features/events.php:1464 app/features/events.php:1470
898
+ #: app/features/fes/form.php:686 app/libraries/main.php:4927
899
  msgid "Event Link"
900
  msgstr ""
901
 
916
  msgstr ""
917
 
918
  #: app/features/events.php:1480 app/features/events.php:1493
919
+ #: app/features/fes/form.php:691 app/libraries/main.php:4928
920
  #: app/skins/single.php:656 app/skins/single/default.php:133
921
  #: app/skins/single/default.php:345 app/skins/single/m1.php:191
922
  #: app/skins/single/m2.php:124 app/skins/single/modern.php:132
981
  msgstr ""
982
 
983
  #: app/features/events.php:1638 app/libraries/book.php:60
984
+ #: app/libraries/main.php:4932 app/modules/booking/steps/tickets.php:40
985
  msgid "Tickets"
986
  msgstr ""
987
 
1013
  #: app/features/events.php:1996 app/features/events.php:1999
1014
  #: app/features/events.php:2055 app/features/events.php:2272
1015
  #: app/features/events.php:2276 app/features/events.php:2318
1016
+ #: app/features/events.php:2321 app/features/mec/booking.php:379
1017
+ #: app/features/mec/booking.php:382 app/features/mec/booking.php:411
1018
+ #: app/features/mec/booking.php:414
1019
  msgid "Price"
1020
  msgstr ""
1021
 
1063
  msgstr ""
1064
 
1065
  #: app/features/events.php:2132 app/features/events.php:2170
1066
+ #: app/features/mec/booking.php:298 app/features/mec/booking.php:327
1067
  msgid "Fee Title"
1068
  msgstr ""
1069
 
1070
  #: app/features/events.php:2138 app/features/events.php:2142
1071
  #: app/features/events.php:2175 app/features/events.php:2178
1072
+ #: app/features/mec/booking.php:302 app/features/mec/booking.php:305
1073
+ #: app/features/mec/booking.php:331 app/features/mec/booking.php:334
1074
  msgid "Amount"
1075
  msgstr ""
1076
 
1077
  #: app/features/events.php:2143 app/features/events.php:2179
1078
+ #: app/features/mec/booking.php:306 app/features/mec/booking.php:335
1079
  msgid ""
1080
  "Fee amount, considered as fixed amount if you set the type to amount "
1081
  "otherwise considered as percentage"
1082
  msgstr ""
1083
 
1084
  #: app/features/events.php:2152 app/features/events.php:2188
1085
+ #: app/features/mec/booking.php:313 app/features/mec/booking.php:342
1086
  msgid "Percent"
1087
  msgstr ""
1088
 
1089
  #: app/features/events.php:2153 app/features/events.php:2189
1090
+ #: app/features/mec/booking.php:314 app/features/mec/booking.php:343
1091
  msgid "Amount (Per Ticket)"
1092
  msgstr ""
1093
 
1094
  #: app/features/events.php:2154 app/features/events.php:2190
1095
+ #: app/features/mec/booking.php:315 app/features/mec/booking.php:344
1096
  msgid "Amount (Per Booking)"
1097
  msgstr ""
1098
 
1101
  msgstr ""
1102
 
1103
  #: app/features/events.php:2277 app/features/events.php:2322
1104
+ #: app/features/mec/booking.php:383 app/features/mec/booking.php:415
1105
  msgid "Option Price"
1106
  msgstr ""
1107
 
1108
  #: app/features/events.php:2287 app/features/events.php:2291
1109
  #: app/features/events.php:2331 app/features/events.php:2334
1110
+ #: app/features/mec/booking.php:389 app/features/mec/booking.php:392
1111
+ #: app/features/mec/booking.php:421 app/features/mec/booking.php:424
1112
  msgid "Maximum Per Ticket"
1113
  msgstr ""
1114
 
1115
  #: app/features/events.php:2292 app/features/events.php:2335
1116
+ #: app/features/mec/booking.php:393 app/features/mec/booking.php:425
1117
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
1118
  msgstr ""
1119
 
1120
+ #: app/features/events.php:2481 app/features/mec/booking.php:487
1121
+ #: app/libraries/main.php:2544
1122
  #, fuzzy
1123
  #| msgid "Name"
1124
  msgid "MEC Name"
1125
  msgstr "Név"
1126
 
1127
+ #: app/features/events.php:2482 app/features/mec/booking.php:488
1128
+ #: app/libraries/main.php:2573
1129
  msgid "MEC Email"
1130
  msgstr ""
1131
 
1132
+ #: app/features/events.php:2483 app/features/mec/booking.php:489
1133
+ #: app/libraries/main.php:2514
1134
  msgid "Text"
1135
  msgstr ""
1136
 
1137
+ #: app/features/events.php:2486 app/features/mec/booking.php:492
1138
  #: app/features/organizers.php:103 app/features/organizers.php:148
1139
+ #: app/features/speakers.php:118 app/features/speakers.php:183
1140
+ #: app/features/speakers.php:256 app/libraries/main.php:2690
1141
  msgid "Tel"
1142
  msgstr ""
1143
 
1144
+ #: app/features/events.php:2487 app/features/mec/booking.php:493
1145
+ #: app/libraries/main.php:2632
1146
  msgid "File"
1147
  msgstr ""
1148
 
1149
+ #: app/features/events.php:2488 app/features/mec/booking.php:494
1150
+ #: app/libraries/main.php:2719
1151
  msgid "Textarea"
1152
  msgstr ""
1153
 
1154
+ #: app/features/events.php:2489 app/features/mec/booking.php:495
1155
+ #: app/libraries/main.php:2772
1156
  msgid "Checkboxes"
1157
  msgstr ""
1158
 
1159
+ #: app/features/events.php:2490 app/features/mec/booking.php:496
1160
+ #: app/libraries/main.php:2816
1161
  msgid "Radio Buttons"
1162
  msgstr ""
1163
 
1164
+ #: app/features/events.php:2491 app/features/mec/booking.php:497
1165
  #: app/features/mec/meta_boxes/search_form.php:34
1166
  #: app/features/mec/meta_boxes/search_form.php:41
1167
  #: app/features/mec/meta_boxes/search_form.php:48
1230
  #: app/features/mec/meta_boxes/search_form.php:599
1231
  #: app/features/mec/meta_boxes/search_form.php:606
1232
  #: app/features/mec/meta_boxes/search_form.php:613
1233
+ #: app/features/mec/meta_boxes/search_form.php:620 app/libraries/main.php:2860
1234
  msgid "Dropdown"
1235
  msgstr ""
1236
 
1237
+ #: app/features/events.php:2492 app/features/mec/booking.php:498
1238
+ #: app/libraries/main.php:2907
1239
  msgid "Agreement"
1240
  msgstr ""
1241
 
1242
+ #: app/features/events.php:2493 app/features/mec/booking.php:499
1243
+ #: app/libraries/main.php:2748
1244
  msgid "Paragraph"
1245
  msgstr ""
1246
 
1279
  #: app/features/mec/meta_boxes/search_form.php:521
1280
  #: app/features/mec/meta_boxes/search_form.php:582
1281
  #: app/features/mec/settings.php:726 app/features/mec/single.php:212
1282
+ #: app/features/search.php:71 app/libraries/main.php:2053
1283
+ #: app/libraries/main.php:4901 app/libraries/skins.php:834
1284
  #: app/skins/single.php:486 app/skins/single.php:907
1285
  #: app/skins/single/default.php:169 app/skins/single/default.php:381
1286
  #: app/skins/single/m1.php:155 app/skins/single/m2.php:87
1305
  #: app/features/organizers.php:58 app/features/organizers.php:204
1306
  #: app/features/organizers.php:260 app/features/organizers.php:262
1307
  #: app/features/organizers.php:271 app/features/search.php:75
1308
+ #: app/libraries/main.php:4903 app/libraries/skins.php:860
1309
  #: app/skins/single.php:795 app/skins/single/default.php:210
1310
  #: app/skins/single/default.php:422 app/skins/single/m1.php:90
1311
  #: app/skins/single/m2.php:22 app/skins/single/modern.php:31
1349
  #: app/features/fes.php:224 app/features/fes.php:332 app/features/ix.php:2743
1350
  #: app/features/ix.php:2784 app/features/labels.php:177
1351
  #: app/features/locations.php:229 app/features/organizers.php:203
1352
+ #: app/features/speakers.php:253
1353
  msgid "ID"
1354
  msgstr ""
1355
 
1399
  msgstr ""
1400
 
1401
  #: app/features/fes.php:224 app/features/fes.php:332
1402
+ #: app/features/profile/profile.php:174 app/libraries/main.php:2088
1403
+ #: app/libraries/main.php:4931
1404
  msgid "Ticket"
1405
  msgstr ""
1406
 
1407
  #: app/features/fes.php:224 app/features/fes.php:332
1408
+ #: app/libraries/main.php:2065
1409
  msgid "Transaction ID"
1410
  msgstr ""
1411
 
1489
 
1490
  #: app/features/fes/form.php:763 app/features/labels.php:61
1491
  #: app/features/labels.php:221 app/features/mec.php:337
1492
+ #: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:4898
1493
  #: app/skins/single.php:685 app/skins/single/default.php:148
1494
  #: app/skins/single/default.php:360 app/skins/single/m1.php:64
1495
  #: app/skins/single/modern.php:214
1807
  #: app/features/ix/export_g_calendar.php:147
1808
  #: app/features/ix/export_g_calendar.php:164
1809
  #: app/features/mec/notifications.php:92 app/features/mec/notifications.php:144
1810
+ #: app/features/mec/notifications.php:198
1811
+ #: app/features/mec/notifications.php:399
1812
  msgid "Add to Google Calendar"
1813
  msgstr "Google Naptárba mentés"
1814
 
1815
+ #: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:629
1816
+ #: app/features/mec/modules.php:392 app/features/mec/notifications.php:591
1817
  #: app/features/mec/settings.php:895 app/features/mec/single.php:269
1818
  msgid "Checking ..."
1819
  msgstr ""
1857
  msgstr ""
1858
 
1859
  #: app/features/ix/import.php:46 app/features/mec/booking.php:91
1860
+ #: app/features/mec/booking.php:264 app/features/mec/booking.php:282
1861
+ #: app/features/mec/booking.php:359
1862
  #: app/features/mec/meta_boxes/display_options.php:150
1863
  #: app/features/mec/meta_boxes/display_options.php:315
1864
  #: app/features/mec/modules.php:70 app/features/mec/modules.php:211
1868
  msgstr ""
1869
 
1870
  #: app/features/ix/import.php:46 app/features/ix/sync.php:22
1871
+ #: app/features/mec/booking.php:91 app/features/mec/booking.php:264
1872
+ #: app/features/mec/booking.php:282 app/features/mec/booking.php:359
1873
  #: app/features/mec/meta_boxes/display_options.php:150
1874
  #: app/features/mec/meta_boxes/display_options.php:315
1875
  #: app/features/mec/meta_boxes/display_options.php:330
2045
 
2046
  #: app/features/ix/sync.php:32 app/features/ix/sync.php:41
2047
  #: app/features/ix/sync.php:52 app/features/ix/sync.php:63
2048
+ #: app/features/mec/notifications.php:342
2049
  msgid "Important Note"
2050
  msgstr ""
2051
 
2169
  msgstr ""
2170
 
2171
  #: app/features/labels.php:79 app/features/locations.php:77
2172
+ #: app/features/organizers.php:77 app/features/speakers.php:80
2173
  #, php-format
2174
  msgid "← Back to %s"
2175
  msgstr ""
2215
  msgstr ""
2216
 
2217
  #: app/features/labels.php:118 app/features/labels.php:143
2218
+ #: app/libraries/main.php:5144 app/skins/agenda/render.php:41
2219
  #: app/skins/available_spot/tpl.php:42 app/skins/carousel/render.php:45
2220
  #: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:32
2221
  #: app/skins/daily_view/render.php:52 app/skins/grid/render.php:50
2233
  msgstr ""
2234
 
2235
  #: app/features/labels.php:180 app/features/locations.php:232
2236
+ #: app/features/organizers.php:206 app/features/speakers.php:257
2237
  #: app/modules/booking/steps/tickets.php:38
2238
  msgid "Count"
2239
  msgstr ""
2250
 
2251
  #: app/features/locations.php:59 app/features/mec.php:338
2252
  #: app/features/mec/dashboard.php:243 app/features/mec/meta_boxes/filter.php:96
2253
+ #: app/libraries/main.php:4900
2254
  msgid "Locations"
2255
  msgstr ""
2256
 
2283
 
2284
  #: app/features/locations.php:138 app/features/locations.php:180
2285
  #: app/features/organizers.php:127 app/features/organizers.php:160
2286
+ #: app/features/speakers.php:158 app/features/speakers.php:203
2287
  msgid "Thumbnail"
2288
  msgstr ""
2289
 
2290
  #: app/features/locations.php:143 app/features/locations.php:183
2291
  #: app/features/organizers.php:132 app/features/organizers.php:163
2292
+ #: app/features/speakers.php:163 app/features/speakers.php:206
2293
  msgid "Upload/Add image"
2294
  msgstr ""
2295
 
2297
  #: app/features/locations.php:340 app/features/locations.php:347
2298
  #: app/features/organizers.php:133 app/features/organizers.php:164
2299
  #: app/features/organizers.php:299 app/features/organizers.php:306
2300
+ #: app/features/speakers.php:164 app/features/speakers.php:207
2301
  msgid "Remove image"
2302
  msgstr ""
2303
 
2355
  msgid "Don't show map in single event page"
2356
  msgstr ""
2357
 
2358
+ #: app/features/locations.php:356 app/libraries/main.php:4934
2359
  #, fuzzy
2360
  #| msgid "Location"
2361
  msgid "Other Locations"
2405
 
2406
  #: app/features/mec.php:339 app/features/mec/dashboard.php:250
2407
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2408
+ #: app/libraries/main.php:4902
2409
  msgid "Organizers"
2410
  msgstr ""
2411
 
2501
  msgid "Search..."
2502
  msgstr ""
2503
 
2504
+ #: app/features/mec/booking.php:72 app/features/mec/booking.php:505
2505
+ #: app/features/mec/booking.php:585 app/features/mec/booking.php:594
2506
+ #: app/features/mec/booking.php:604 app/features/mec/booking.php:646
2507
+ #: app/features/mec/booking.php:660 app/features/mec/messages.php:15
2508
  #: app/features/mec/messages.php:51 app/features/mec/messages.php:60
2509
  #: app/features/mec/messages.php:94 app/features/mec/messages.php:103
2510
  #: app/features/mec/modules.php:25 app/features/mec/modules.php:357
2511
  #: app/features/mec/modules.php:367 app/features/mec/modules.php:409
2512
  #: app/features/mec/modules.php:423 app/features/mec/notifications.php:14
2513
+ #: app/features/mec/notifications.php:500
2514
+ #: app/features/mec/notifications.php:512
2515
+ #: app/features/mec/notifications.php:608
2516
+ #: app/features/mec/notifications.php:622 app/features/mec/settings.php:34
2517
  #: app/features/mec/settings.php:844 app/features/mec/settings.php:854
2518
  #: app/features/mec/settings.php:912 app/features/mec/settings.php:926
2519
  #: app/features/mec/single.php:17 app/features/mec/single.php:234
2605
  "disable it."
2606
  msgstr ""
2607
 
2608
+ #: app/features/mec/booking.php:165 app/features/mec/booking.php:170
2609
+ msgid "Thank You Page Time Interval"
2610
+ msgstr ""
2611
+
2612
+ #: app/features/mec/booking.php:167
2613
+ msgid "2000 mean 2 seconds"
2614
+ msgstr ""
2615
+
2616
+ #: app/features/mec/booking.php:171
2617
+ msgid ""
2618
+ "Waiting time before redirecting to thank you page. It's in miliseconds so "
2619
+ "2000 means 2 seconds."
2620
+ msgstr ""
2621
+
2622
+ #: app/features/mec/booking.php:182
2623
  msgid "Enable Express Attendees Form"
2624
  msgstr ""
2625
 
2626
+ #: app/features/mec/booking.php:186 app/modules/booking/steps/form.php:52
2627
  msgid "Attendees Form"
2628
  msgstr "Jelentkezési lap"
2629
 
2630
+ #: app/features/mec/booking.php:187
2631
  msgid ""
2632
  "Users are able to apply first attendee information for other attendees in "
2633
  "the booking form."
2634
  msgstr ""
2635
 
2636
+ #: app/features/mec/booking.php:200
2637
  #, fuzzy
2638
  #| msgid "Bookings"
2639
  msgid "Enable Invoice"
2640
  msgstr "Foglalások"
2641
 
2642
+ #: app/features/mec/booking.php:211
2643
  msgid "Enable Booking for Ongoing Events"
2644
  msgstr ""
2645
 
2646
+ #: app/features/mec/booking.php:216
2647
  msgid "Email verification"
2648
  msgstr ""
2649
 
2650
+ #: app/features/mec/booking.php:222
2651
  msgid "Auto verification for free bookings"
2652
  msgstr ""
2653
 
2654
+ #: app/features/mec/booking.php:231
2655
  msgid "Auto verification for paid bookings"
2656
  msgstr ""
2657
 
2658
+ #: app/features/mec/booking.php:235 app/features/mec/notifications.php:151
2659
  #: app/libraries/main.php:573
2660
  msgid "Booking Confirmation"
2661
  msgstr ""
2662
 
2663
+ #: app/features/mec/booking.php:241
2664
  msgid "Auto confirmation for free bookings"
2665
  msgstr ""
2666
 
2667
+ #: app/features/mec/booking.php:250
2668
  msgid "Auto confirmation for paid bookings"
2669
  msgstr ""
2670
 
2671
+ #: app/features/mec/booking.php:269
2672
  msgid "Enable coupons module"
2673
  msgstr ""
2674
 
2675
+ #: app/features/mec/booking.php:271
2676
  msgid ""
2677
  "After enabling and saving the settings,, you should reload the page to see a "
2678
  "new menu on the Dashboard > Booking"
2679
  msgstr ""
2680
 
2681
+ #: app/features/mec/booking.php:279 app/libraries/main.php:552
2682
  msgid "Taxes / Fees"
2683
  msgstr ""
2684
 
2685
+ #: app/features/mec/booking.php:287
2686
  msgid "Enable taxes / fees module"
2687
  msgstr ""
2688
 
2689
+ #: app/features/mec/booking.php:292
2690
  msgid "Add Fee"
2691
  msgstr ""
2692
 
2693
+ #: app/features/mec/booking.php:356 app/libraries/main.php:553
2694
  msgid "Ticket Variations & Options"
2695
  msgstr ""
2696
 
2697
+ #: app/features/mec/booking.php:364
2698
  msgid "Enable ticket options module"
2699
  msgstr ""
2700
 
2701
+ #: app/features/mec/booking.php:369
2702
  msgid "Add Variation / Option"
2703
  msgstr ""
2704
 
2705
+ #: app/features/mec/booking.php:572
2706
  msgid "Enable Organizer Payment Module"
2707
  msgstr ""
2708
 
2709
+ #: app/features/mec/booking.php:576
2710
  #, fuzzy
2711
  #| msgid "Organizer"
2712
  msgid "Organizer Payment"
2713
  msgstr "Szervező"
2714
 
2715
+ #: app/features/mec/booking.php:577
2716
  msgid ""
2717
  "By enabling this module, organizers are able to insert their own payment "
2718
  "credentials for enabled gateways per event and receive the payments directly!"
2719
  msgstr ""
2720
 
2721
+ #: app/features/mec/booking.php:624 app/features/mec/messages.php:78
2722
+ #: app/features/mec/modules.php:387 app/features/mec/notifications.php:586
2723
  #: app/features/mec/settings.php:890 app/features/mec/single.php:264
2724
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:296
2725
  msgid "Saved"
2726
  msgstr ""
2727
 
2728
+ #: app/features/mec/booking.php:625 app/features/mec/messages.php:79
2729
+ #: app/features/mec/modules.php:388 app/features/mec/notifications.php:587
2730
  #: app/features/mec/settings.php:891 app/features/mec/single.php:265
2731
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:297
2732
  msgid "Settings Saved!"
2733
  msgstr ""
2734
 
2735
+ #: app/features/mec/booking.php:627 app/features/mec/booking.php:649
2736
  #: app/features/mec/modules.php:390 app/features/mec/modules.php:412
2737
+ #: app/features/mec/notifications.php:589
2738
+ #: app/features/mec/notifications.php:611 app/features/mec/settings.php:893
2739
  #: app/features/mec/settings.php:915 app/features/mec/single.php:267
2740
+ #: app/features/mec/single.php:289 app/libraries/main.php:5143
2741
  msgid "Verified"
2742
  msgstr ""
2743
 
2744
+ #: app/features/mec/booking.php:651 app/features/mec/modules.php:414
2745
+ #: app/features/mec/notifications.php:613 app/features/mec/settings.php:917
2746
  #: app/features/mec/single.php:291
2747
  msgid "Please Refresh Page"
2748
  msgstr ""
3667
  #: app/features/mec/meta_boxes/search_form.php:535
3668
  #: app/features/mec/meta_boxes/search_form.php:596
3669
  #: app/features/mec/settings.php:739 app/features/mec/single.php:217
3670
+ #: app/features/search.php:79 app/features/speakers.php:61
3671
+ #: app/features/speakers.php:254 app/libraries/main.php:4905
3672
  #: app/libraries/skins.php:886
3673
  msgid "Speaker"
3674
  msgstr ""
3927
 
3928
  #: app/features/mec/notifications.php:45 app/features/mec/notifications.php:102
3929
  #: app/features/mec/notifications.php:154
3930
+ #: app/features/mec/notifications.php:214
3931
+ #: app/features/mec/notifications.php:282
3932
+ #: app/features/mec/notifications.php:345
3933
+ #: app/features/mec/notifications.php:418
3934
+ #: app/features/mec/notifications.php:464
3935
  msgid "Email Subject"
3936
  msgstr ""
3937
 
3940
  #: app/features/mec/notifications.php:110
3941
  #: app/features/mec/notifications.php:158
3942
  #: app/features/mec/notifications.php:162
3943
+ #: app/features/mec/notifications.php:218
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3944
  #: app/features/mec/notifications.php:222
3945
+ #: app/features/mec/notifications.php:286
3946
  #: app/features/mec/notifications.php:290
3947
+ #: app/features/mec/notifications.php:349
3948
  #: app/features/mec/notifications.php:353
3949
  #: app/features/mec/notifications.php:364
3950
+ #: app/features/mec/notifications.php:422
3951
  #: app/features/mec/notifications.php:426
3952
+ #: app/features/mec/notifications.php:468
3953
  #: app/features/mec/notifications.php:472
3954
+ msgid "Custom Recipients"
3955
+ msgstr ""
3956
+
3957
+ #: app/features/mec/notifications.php:54 app/features/mec/notifications.php:111
3958
+ #: app/features/mec/notifications.php:163
3959
+ #: app/features/mec/notifications.php:223
3960
+ #: app/features/mec/notifications.php:291
3961
+ #: app/features/mec/notifications.php:354
3962
+ #: app/features/mec/notifications.php:365
3963
+ #: app/features/mec/notifications.php:427
3964
+ #: app/features/mec/notifications.php:473
3965
  msgid "Insert comma separated emails for multiple recipients."
3966
  msgstr ""
3967
 
3968
+ #: app/features/mec/notifications.php:61 app/features/mec/notifications.php:234
3969
+ #: app/features/mec/notifications.php:298
3970
  msgid "Send the email to event organizer"
3971
  msgstr ""
3972
 
3973
  #: app/features/mec/notifications.php:64 app/features/mec/notifications.php:117
3974
  #: app/features/mec/notifications.php:169
3975
+ #: app/features/mec/notifications.php:241
3976
+ #: app/features/mec/notifications.php:301
3977
+ #: app/features/mec/notifications.php:371
3978
+ #: app/features/mec/notifications.php:433
3979
+ #: app/features/mec/notifications.php:479
3980
  msgid "Email Content"
3981
  msgstr ""
3982
 
3983
  #: app/features/mec/notifications.php:67 app/features/mec/notifications.php:120
3984
  #: app/features/mec/notifications.php:172
3985
+ #: app/features/mec/notifications.php:244
3986
+ #: app/features/mec/notifications.php:304
3987
+ #: app/features/mec/notifications.php:374
3988
+ #: app/features/mec/notifications.php:436
3989
+ #: app/features/mec/notifications.php:482
3990
  msgid "You can use following placeholders"
3991
  msgstr ""
3992
 
3993
  #: app/features/mec/notifications.php:69 app/features/mec/notifications.php:122
3994
  #: app/features/mec/notifications.php:174
3995
+ #: app/features/mec/notifications.php:246
3996
+ #: app/features/mec/notifications.php:306
3997
+ #: app/features/mec/notifications.php:376
3998
  msgid "First name of attendee"
3999
  msgstr ""
4000
 
4001
  #: app/features/mec/notifications.php:70 app/features/mec/notifications.php:123
4002
  #: app/features/mec/notifications.php:175
4003
+ #: app/features/mec/notifications.php:247
4004
+ #: app/features/mec/notifications.php:307
4005
+ #: app/features/mec/notifications.php:377
4006
  msgid "Last name of attendee"
4007
  msgstr ""
4008
 
4009
  #: app/features/mec/notifications.php:71 app/features/mec/notifications.php:124
4010
  #: app/features/mec/notifications.php:176
4011
+ #: app/features/mec/notifications.php:248
4012
+ #: app/features/mec/notifications.php:308
4013
+ #: app/features/mec/notifications.php:378
4014
  msgid "Email of attendee"
4015
  msgstr "A résztvevők email címe"
4016
 
4017
  #: app/features/mec/notifications.php:72 app/features/mec/notifications.php:125
4018
  #: app/features/mec/notifications.php:177
4019
+ #: app/features/mec/notifications.php:249
4020
+ #: app/features/mec/notifications.php:309
4021
+ #: app/features/mec/notifications.php:379
4022
  msgid "Booked date of event"
4023
  msgstr ""
4024
 
4025
  #: app/features/mec/notifications.php:73 app/features/mec/notifications.php:126
4026
  #: app/features/mec/notifications.php:178
4027
+ #: app/features/mec/notifications.php:250
4028
+ #: app/features/mec/notifications.php:310
4029
+ #: app/features/mec/notifications.php:380
4030
  #, fuzzy
4031
  #| msgid "Book Event"
4032
  msgid "Booked time of event"
4034
 
4035
  #: app/features/mec/notifications.php:74 app/features/mec/notifications.php:127
4036
  #: app/features/mec/notifications.php:179
 
 
 
 
 
 
 
 
4037
  #: app/features/mec/notifications.php:251
4038
  #: app/features/mec/notifications.php:311
4039
  #: app/features/mec/notifications.php:381
4040
+ msgid "Booking Price"
 
 
4041
  msgstr ""
4042
 
4043
+ #: app/features/mec/notifications.php:75 app/features/mec/notifications.php:128
4044
+ #: app/features/mec/notifications.php:180
4045
  #: app/features/mec/notifications.php:252
4046
  #: app/features/mec/notifications.php:312
4047
  #: app/features/mec/notifications.php:382
4048
  #: app/features/mec/notifications.php:442
4049
  #: app/features/mec/notifications.php:488
4050
+ msgid "Your website title"
4051
  msgstr ""
4052
 
4053
+ #: app/features/mec/notifications.php:76 app/features/mec/notifications.php:129
4054
+ #: app/features/mec/notifications.php:181
4055
  #: app/features/mec/notifications.php:253
4056
  #: app/features/mec/notifications.php:313
4057
  #: app/features/mec/notifications.php:383
4058
  #: app/features/mec/notifications.php:443
4059
  #: app/features/mec/notifications.php:489
4060
+ msgid "Your website URL"
4061
  msgstr ""
4062
 
4063
+ #: app/features/mec/notifications.php:77 app/features/mec/notifications.php:130
4064
+ #: app/features/mec/notifications.php:182
4065
  #: app/features/mec/notifications.php:254
4066
  #: app/features/mec/notifications.php:314
4067
  #: app/features/mec/notifications.php:384
4068
+ #: app/features/mec/notifications.php:444
4069
+ #: app/features/mec/notifications.php:490
4070
+ msgid "Your website description"
4071
  msgstr ""
4072
 
4073
+ #: app/features/mec/notifications.php:78 app/features/mec/notifications.php:131
4074
+ #: app/features/mec/notifications.php:183
4075
  #: app/features/mec/notifications.php:255
4076
  #: app/features/mec/notifications.php:315
4077
  #: app/features/mec/notifications.php:385
4078
+ msgid "Event title"
4079
  msgstr ""
4080
 
4081
+ #: app/features/mec/notifications.php:79 app/features/mec/notifications.php:132
4082
+ #: app/features/mec/notifications.php:184
4083
  #: app/features/mec/notifications.php:256
4084
  #: app/features/mec/notifications.php:316
4085
  #: app/features/mec/notifications.php:386
4086
+ msgid "Event link"
4087
  msgstr ""
4088
 
4089
+ #: app/features/mec/notifications.php:80 app/features/mec/notifications.php:133
4090
+ #: app/features/mec/notifications.php:185
4091
  #: app/features/mec/notifications.php:257
4092
  #: app/features/mec/notifications.php:317
4093
  #: app/features/mec/notifications.php:387
4094
+ msgid "Speaker name of booked event"
4095
  msgstr ""
4096
 
4097
+ #: app/features/mec/notifications.php:81 app/features/mec/notifications.php:134
4098
+ #: app/features/mec/notifications.php:186
4099
  #: app/features/mec/notifications.php:258
4100
  #: app/features/mec/notifications.php:318
4101
  #: app/features/mec/notifications.php:388
4102
+ msgid "Organizer name of booked event"
4103
  msgstr ""
4104
 
4105
+ #: app/features/mec/notifications.php:82 app/features/mec/notifications.php:135
4106
+ #: app/features/mec/notifications.php:187
4107
  #: app/features/mec/notifications.php:259
4108
  #: app/features/mec/notifications.php:319
4109
  #: app/features/mec/notifications.php:389
4110
+ msgid "Organizer tel of booked event"
4111
  msgstr ""
4112
 
4113
+ #: app/features/mec/notifications.php:83 app/features/mec/notifications.php:136
4114
+ #: app/features/mec/notifications.php:188
4115
  #: app/features/mec/notifications.php:260
4116
  #: app/features/mec/notifications.php:320
4117
  #: app/features/mec/notifications.php:390
4118
+ msgid "Organizer email of booked event"
4119
  msgstr ""
4120
 
4121
+ #: app/features/mec/notifications.php:84 app/features/mec/notifications.php:137
4122
+ #: app/features/mec/notifications.php:189
4123
  #: app/features/mec/notifications.php:261
4124
  #: app/features/mec/notifications.php:321
4125
  #: app/features/mec/notifications.php:391
4126
+ msgid "Location name of booked event"
4127
+ msgstr ""
4128
+
4129
+ #: app/features/mec/notifications.php:85 app/features/mec/notifications.php:138
4130
+ #: app/features/mec/notifications.php:190
4131
+ #: app/features/mec/notifications.php:262
4132
+ #: app/features/mec/notifications.php:322
4133
+ #: app/features/mec/notifications.php:392
4134
  msgid "Location address of booked event"
4135
  msgstr ""
4136
 
4137
+ #: app/features/mec/notifications.php:86 app/features/mec/notifications.php:264
4138
+ #: app/features/mec/notifications.php:324
4139
  msgid "Full Attendee info such as booking form data, name, email etc."
4140
  msgstr ""
4141
 
4142
  #: app/features/mec/notifications.php:87 app/features/mec/notifications.php:192
4143
+ #: app/features/mec/notifications.php:394
4144
  msgid "Invoice Link"
4145
  msgstr ""
4146
 
4147
  #: app/features/mec/notifications.php:88 app/features/mec/notifications.php:140
4148
  #: app/features/mec/notifications.php:193
4149
+ #: app/features/mec/notifications.php:265
4150
+ #: app/features/mec/notifications.php:325
4151
+ #: app/features/mec/notifications.php:395
4152
  msgid "Total Attendees"
4153
  msgstr ""
4154
 
4155
  #: app/features/mec/notifications.php:89 app/features/mec/notifications.php:141
4156
+ #: app/features/mec/notifications.php:195
4157
+ #: app/features/mec/notifications.php:396
4158
  #, fuzzy
4159
  #| msgid "First name"
4160
  msgid "Ticket name"
4161
  msgstr "Keresztnév"
4162
 
4163
  #: app/features/mec/notifications.php:90 app/features/mec/notifications.php:142
4164
+ #: app/features/mec/notifications.php:196
4165
+ #: app/features/mec/notifications.php:397
4166
  #, fuzzy
4167
  #| msgid "Tickets Price"
4168
  msgid "Ticket time"
4169
  msgstr "Jegy(ek) ára"
4170
 
4171
  #: app/features/mec/notifications.php:91 app/features/mec/notifications.php:143
4172
+ #: app/features/mec/notifications.php:197
4173
+ #: app/features/mec/notifications.php:398
4174
  msgid "Download ICS file"
4175
  msgstr ""
4176
 
4191
  msgstr ""
4192
 
4193
  #: app/features/mec/notifications.php:191
4194
+ #: app/features/mec/notifications.php:393
4195
  msgid "Booking cancellation link."
4196
  msgstr ""
4197
 
4198
+ #: app/features/mec/notifications.php:194
4199
+ #, fuzzy
4200
+ #| msgid "First name"
4201
+ msgid "Amount Tickets"
4202
+ msgstr "Keresztnév"
4203
+
4204
+ #: app/features/mec/notifications.php:204 app/libraries/main.php:574
4205
  msgid "Booking Cancellation"
4206
  msgstr ""
4207
 
4208
+ #: app/features/mec/notifications.php:208
4209
  msgid "Enable cancellation notification"
4210
  msgstr ""
4211
 
4212
+ #: app/features/mec/notifications.php:212
4213
  msgid ""
4214
  "It sends to selected recipients after booking cancellation for notifying "
4215
  "them."
4216
  msgstr ""
4217
 
4218
+ #: app/features/mec/notifications.php:230
4219
  msgid "Send the email to admin"
4220
  msgstr ""
4221
 
4222
+ #: app/features/mec/notifications.php:238
4223
  msgid "Send the email to booking user"
4224
  msgstr ""
4225
 
4226
+ #: app/features/mec/notifications.php:263
4227
+ #: app/features/mec/notifications.php:323
4228
  msgid "Admin booking management link."
4229
  msgstr ""
4230
 
4231
+ #: app/features/mec/notifications.php:272 app/libraries/main.php:576
4232
  msgid "Admin"
4233
  msgstr ""
4234
 
4235
+ #: app/features/mec/notifications.php:276
4236
  msgid "Enable admin notification"
4237
  msgstr ""
4238
 
4239
+ #: app/features/mec/notifications.php:280
4240
  msgid "It sends to admin to notify him/her that a new booking received."
4241
  msgstr ""
4242
 
4243
+ #: app/features/mec/notifications.php:332 app/libraries/main.php:575
4244
  #: app/libraries/notifications.php:478
4245
  msgid "Booking Reminder"
4246
  msgstr ""
4247
 
4248
+ #: app/features/mec/notifications.php:336
4249
  msgid "Enable booking reminder notification"
4250
  msgstr ""
4251
 
4252
+ #: app/features/mec/notifications.php:342
4253
  #, php-format
4254
  msgid ""
4255
  "Set a cronjob to call %s file once per day otherwise it won't send the "
4257
  "send the reminders multiple times."
4258
  msgstr ""
4259
 
4260
+ #: app/features/mec/notifications.php:342
4261
  msgid "only once per day"
4262
  msgstr ""
4263
 
4264
+ #: app/features/mec/notifications.php:360
4265
  msgid "Days"
4266
  msgstr ""
4267
 
4268
+ #: app/features/mec/notifications.php:408 app/features/mec/support-page.php:80
4269
  #: app/libraries/main.php:577
4270
  msgid "New Event"
4271
  msgstr ""
4272
 
4273
+ #: app/features/mec/notifications.php:412
4274
  msgid "Enable new event notification"
4275
  msgstr ""
4276
 
4277
+ #: app/features/mec/notifications.php:416
4278
  msgid ""
4279
  "It sends after adding a new event from frontend event submission or from "
4280
  "website backend."
4281
  msgstr ""
4282
 
 
 
 
 
 
4283
  #: app/features/mec/notifications.php:438
4284
  #: app/features/mec/notifications.php:484
4285
+ msgid "Title of event"
4286
  msgstr ""
4287
 
4288
  #: app/features/mec/notifications.php:439
4289
  #: app/features/mec/notifications.php:485
4290
+ msgid "Link of event"
4291
  msgstr ""
4292
 
4293
  #: app/features/mec/notifications.php:440
4294
+ #: app/features/mec/notifications.php:486
4295
+ msgid "Status of event"
4296
+ msgstr ""
4297
+
4298
+ #: app/features/mec/notifications.php:441
4299
+ #: app/features/mec/notifications.php:487 app/features/mec/settings.php:654
4300
  #: app/features/mec/settings.php:658
4301
  msgid "Event Note"
4302
  msgstr ""
4303
 
4304
+ #: app/features/mec/notifications.php:445
4305
+ #: app/features/mec/notifications.php:491
4306
  msgid "Admin events management link."
4307
  msgstr ""
4308
 
4309
+ #: app/features/mec/notifications.php:454 app/libraries/main.php:578
4310
  msgid "User Event Publishing"
4311
  msgstr ""
4312
 
4313
+ #: app/features/mec/notifications.php:458
4314
  msgid "Enable user event publishing notification"
4315
  msgstr ""
4316
 
4317
+ #: app/features/mec/notifications.php:462
4318
  msgid ""
4319
  "It sends after published a new event from frontend event submission or from "
4320
  "website backend."
4406
  msgstr ""
4407
 
4408
  #: app/features/mec/settings.php:136 app/features/mec/settings.php:146
4409
+ #: app/libraries/main.php:4909
4410
  msgid "Weekdays"
4411
  msgstr ""
4412
 
5420
  msgid "eg. https://webnus.net"
5421
  msgstr ""
5422
 
5423
+ #: app/features/organizers.php:311 app/libraries/main.php:4933
5424
  #: app/skins/single.php:845
5425
  msgid "Other Organizers"
5426
  msgstr ""
5445
  msgid "#"
5446
  msgstr ""
5447
 
5448
+ #: app/features/profile/profile.php:56 app/libraries/main.php:2929
5449
  msgid "Status"
5450
  msgstr ""
5451
 
5452
+ #: app/features/profile/profile.php:59 app/libraries/main.php:2074
5453
  msgid "Attendees"
5454
  msgstr ""
5455
 
5478
  msgid "No bookings found!"
5479
  msgstr ""
5480
 
5481
+ #: app/features/search.php:87 app/libraries/main.php:4899
5482
  msgid "label"
5483
  msgstr ""
5484
 
5511
  msgid "All of the day"
5512
  msgstr ""
5513
 
5514
+ #: app/features/speakers.php:110 app/features/speakers.php:179
5515
+ #: app/features/speakers.php:255
5516
  msgid "Job Title"
5517
  msgstr ""
5518
 
5519
+ #: app/features/speakers.php:113 app/features/speakers.php:180
5520
  msgid "Insert speaker job title."
5521
  msgstr ""
5522
 
5523
+ #: app/features/speakers.php:121 app/features/speakers.php:184
5524
  msgid "Insert speaker phone number."
5525
  msgstr ""
5526
 
5527
+ #: app/features/speakers.php:129 app/features/speakers.php:188
5528
  msgid "Insert speaker email address."
5529
  msgstr ""
5530
 
5531
+ #: app/features/speakers.php:134 app/features/speakers.php:191
5532
  #, fuzzy
5533
  #| msgid "Facebook Events"
5534
  msgid "Facebook Page"
5535
  msgstr "Facebook események"
5536
 
5537
+ #: app/features/speakers.php:137 app/features/speakers.php:192
5538
  msgid "Insert URL of Facebook Page"
5539
  msgstr ""
5540
 
5541
+ #: app/features/speakers.php:142 app/features/speakers.php:195
5542
  msgid "Instagram"
5543
  msgstr ""
5544
 
5545
+ #: app/features/speakers.php:145 app/features/speakers.php:196
5546
  msgid "Insert URL of Instagram"
5547
  msgstr ""
5548
 
5549
+ #: app/features/speakers.php:150 app/features/speakers.php:199
5550
  msgid "Twitter Page"
5551
  msgstr ""
5552
 
5553
+ #: app/features/speakers.php:153 app/features/speakers.php:200
5554
  msgid "Insert URL of Twitter Page"
5555
  msgstr ""
5556
 
5557
+ #: app/features/speakers.php:315
5558
  msgid "Sorry, You must insert speaker name!"
5559
  msgstr ""
5560
 
5561
+ #: app/features/speakers.php:364
5562
+ msgid ""
5563
+ "Note: You can use the speakers in your event edit/add page > hourly schedule "
5564
+ "section and speaker widget section!"
5565
+ msgstr ""
5566
+
5567
  #: app/libraries/book.php:60
5568
  #, php-format
5569
  msgid "%s Price"
5570
  msgstr ""
5571
 
5572
+ #: app/libraries/book.php:561
5573
  msgid "Discount"
5574
  msgstr ""
5575
 
5576
+ #: app/libraries/book.php:651 app/modules/booking/default.php:305
5577
  #: app/modules/booking/default.php:403
5578
  msgid "Download Invoice"
5579
  msgstr ""
5704
  msgid "Slider View"
5705
  msgstr ""
5706
 
5707
+ #: app/libraries/main.php:382 app/libraries/main.php:4911
5708
  msgid "SU"
5709
  msgstr ""
5710
 
5711
+ #: app/libraries/main.php:383 app/libraries/main.php:4912
5712
  msgid "MO"
5713
  msgstr ""
5714
 
5715
+ #: app/libraries/main.php:384 app/libraries/main.php:4913
5716
  msgid "TU"
5717
  msgstr ""
5718
 
5719
+ #: app/libraries/main.php:385 app/libraries/main.php:4914
5720
  msgid "WE"
5721
  msgstr ""
5722
 
5723
+ #: app/libraries/main.php:386 app/libraries/main.php:4915
5724
  msgid "TH"
5725
  msgstr ""
5726
 
5727
+ #: app/libraries/main.php:387 app/libraries/main.php:4916
5728
  msgid "FR"
5729
  msgstr ""
5730
 
5731
+ #: app/libraries/main.php:388 app/libraries/main.php:4917
5732
  msgid "SA"
5733
  msgstr ""
5734
 
5860
  msgid "Invoice is invalid."
5861
  msgstr "Fizetés érvénytelen"
5862
 
5863
+ #: app/libraries/main.php:2009
5864
+ msgid ""
5865
+ "Your booking still is not confirmed. You able download it after confirmation!"
5866
+ msgstr ""
5867
+
5868
+ #: app/libraries/main.php:2009
5869
+ msgid "Booking Not Confirmed."
5870
+ msgstr ""
5871
+
5872
+ #: app/libraries/main.php:2015
5873
  msgid "Cannot find the booking!"
5874
  msgstr ""
5875
 
5876
+ #: app/libraries/main.php:2015
5877
  msgid "Booking is invalid."
5878
  msgstr ""
5879
 
5880
+ #: app/libraries/main.php:2044
5881
  #, php-format
5882
  msgid "%s Invoice"
5883
  msgstr ""
5884
 
5885
+ #: app/libraries/main.php:2118
5886
  msgid "Billing"
5887
  msgstr ""
5888
 
5889
+ #: app/libraries/main.php:2129
5890
  msgid "Total"
5891
  msgstr ""
5892
 
5893
+ #: app/libraries/main.php:2186
5894
  #, fuzzy
5895
  #| msgid "Payment is invalid."
5896
  msgid "Request is not valid."
5897
  msgstr "Fizetés érvénytelen"
5898
 
5899
+ #: app/libraries/main.php:2186
5900
  msgid "iCal export stopped!"
5901
  msgstr ""
5902
 
5903
+ #: app/libraries/main.php:2513 app/libraries/main.php:2543
5904
+ #: app/libraries/main.php:2572 app/libraries/main.php:2602
5905
+ #: app/libraries/main.php:2631 app/libraries/main.php:2660
5906
+ #: app/libraries/main.php:2689 app/libraries/main.php:2718
5907
+ #: app/libraries/main.php:2747 app/libraries/main.php:2771
5908
+ #: app/libraries/main.php:2815 app/libraries/main.php:2859
5909
+ #: app/libraries/main.php:2906 app/libraries/main.php:2953
5910
  msgid "Sort"
5911
  msgstr ""
5912
 
5913
+ #: app/libraries/main.php:2519 app/libraries/main.php:2549
5914
+ #: app/libraries/main.php:2578 app/libraries/main.php:2608
5915
+ #: app/libraries/main.php:2637 app/libraries/main.php:2666
5916
+ #: app/libraries/main.php:2695 app/libraries/main.php:2724
5917
+ #: app/libraries/main.php:2777 app/libraries/main.php:2821
5918
+ #: app/libraries/main.php:2865 app/libraries/main.php:2912
5919
  msgid "Required Field"
5920
  msgstr "Töltse ki az adatokat!"
5921
 
5922
+ #: app/libraries/main.php:2525 app/libraries/main.php:2555
5923
+ #: app/libraries/main.php:2584 app/libraries/main.php:2614
5924
+ #: app/libraries/main.php:2643 app/libraries/main.php:2672
5925
+ #: app/libraries/main.php:2701 app/libraries/main.php:2730
5926
+ #: app/libraries/main.php:2783 app/libraries/main.php:2827
5927
+ #: app/libraries/main.php:2871 app/libraries/main.php:2918
5928
  msgid "Insert a label for this field"
5929
  msgstr ""
5930
 
5931
+ #: app/libraries/main.php:2753
5932
  msgid "HTML and shortcode are allowed."
5933
  msgstr ""
5934
 
5935
+ #: app/libraries/main.php:2796 app/libraries/main.php:2840
5936
+ #: app/libraries/main.php:2884
5937
  msgid "Option"
5938
  msgstr ""
5939
 
5940
+ #: app/libraries/main.php:2918
5941
  #, php-format
5942
  msgid "Instead of %s, the page title with a link will be show."
5943
  msgstr ""
5944
 
5945
+ #: app/libraries/main.php:2920
5946
  msgid "Agreement Page"
5947
  msgstr ""
5948
 
5949
+ #: app/libraries/main.php:2931
5950
  msgid "Checked by default"
5951
  msgstr ""
5952
 
5953
+ #: app/libraries/main.php:2932
5954
  msgid "Unchecked by default"
5955
  msgstr ""
5956
 
5957
+ #: app/libraries/main.php:2955
5958
  msgid "Insert a label for this option"
5959
  msgstr ""
5960
 
5961
+ #: app/libraries/main.php:2970
5962
  msgid "Free"
5963
  msgstr "Ingyenes"
5964
 
5965
+ #: app/libraries/main.php:3576 app/libraries/main.php:5158
5966
  msgid "M.E. Calender"
5967
  msgstr ""
5968
 
5969
+ #: app/libraries/main.php:3731
5970
  #, php-format
5971
  msgid "Copy of %s"
5972
  msgstr ""
5973
 
5974
+ #: app/libraries/main.php:4404
5975
  msgid "Booked an event."
5976
  msgstr ""
5977
 
5978
+ #: app/libraries/main.php:4445
5979
  #, php-format
5980
  msgid "%s booked %s event."
5981
  msgstr ""
5982
 
5983
+ #: app/libraries/main.php:4894
5984
  msgid "Taxonomies"
5985
  msgstr ""
5986
 
5987
+ #: app/libraries/main.php:4896
5988
  msgid "Category Plural Label"
5989
  msgstr ""
5990
 
5991
+ #: app/libraries/main.php:4897
5992
  msgid "Category Singular Label"
5993
  msgstr ""
5994
 
5995
+ #: app/libraries/main.php:4898
5996
  msgid "Label Plural Label"
5997
  msgstr ""
5998
 
5999
+ #: app/libraries/main.php:4899
6000
  msgid "Label Singular Label"
6001
  msgstr ""
6002
 
6003
+ #: app/libraries/main.php:4900
6004
  msgid "Location Plural Label"
6005
  msgstr ""
6006
 
6007
+ #: app/libraries/main.php:4901
6008
  msgid "Location Singular Label"
6009
  msgstr ""
6010
 
6011
+ #: app/libraries/main.php:4902
6012
  msgid "Organizer Plural Label"
6013
  msgstr ""
6014
 
6015
+ #: app/libraries/main.php:4903
6016
  msgid "Organizer Singular Label"
6017
  msgstr ""
6018
 
6019
+ #: app/libraries/main.php:4904
6020
  msgid "Speaker Plural Label"
6021
  msgstr ""
6022
 
6023
+ #: app/libraries/main.php:4905
6024
  msgid "Speaker Singular Label"
6025
  msgstr ""
6026
 
6027
+ #: app/libraries/main.php:4911
6028
  msgid "Sunday abbreviation"
6029
  msgstr ""
6030
 
6031
+ #: app/libraries/main.php:4912
6032
  msgid "Monday abbreviation"
6033
  msgstr ""
6034
 
6035
+ #: app/libraries/main.php:4913
6036
  msgid "Tuesday abbreviation"
6037
  msgstr ""
6038
 
6039
+ #: app/libraries/main.php:4914
6040
  msgid "Wednesday abbreviation"
6041
  msgstr ""
6042
 
6043
+ #: app/libraries/main.php:4915
6044
  msgid "Thursday abbreviation"
6045
  msgstr ""
6046
 
6047
+ #: app/libraries/main.php:4916
6048
  msgid "Friday abbreviation"
6049
  msgstr ""
6050
 
6051
+ #: app/libraries/main.php:4917
6052
  msgid "Saturday abbreviation"
6053
  msgstr ""
6054
 
6055
+ #: app/libraries/main.php:4921
6056
  msgid "Others"
6057
  msgstr ""
6058
 
6059
+ #: app/libraries/main.php:4923
6060
  msgid "Booking Success Message"
6061
  msgstr ""
6062
 
6063
+ #: app/libraries/main.php:4923
6064
  msgid ""
6065
  "Thanks for your booking. Your tickets booked, booking verification might be "
6066
  "needed, please check your email."
6068
  "Köszönjük a foglalást! Kérjük ellenőrizze emailjeit, lehetséges, hogy "
6069
  "jóváhagyásra lesz szükség!"
6070
 
6071
+ #: app/libraries/main.php:4924 app/widgets/single.php:131
6072
  msgid "Register Button"
6073
  msgstr ""
6074
 
6075
+ #: app/libraries/main.php:4924 app/skins/available_spot/tpl.php:224
6076
  #: app/skins/carousel/render.php:158 app/skins/carousel/render.php:194
6077
  #: app/skins/grid/render.php:118 app/skins/grid/render.php:164
6078
  #: app/skins/grid/render.php:207 app/skins/grid/render.php:235
6089
  msgid "REGISTER"
6090
  msgstr "REGISZTRÁCIÓ"
6091
 
6092
+ #: app/libraries/main.php:4925
6093
  msgid "View Detail Button"
6094
  msgstr ""
6095
 
6096
+ #: app/libraries/main.php:4925 app/skins/carousel/render.php:158
6097
  #: app/skins/carousel/render.php:194 app/skins/grid/render.php:118
6098
  #: app/skins/grid/render.php:164 app/skins/grid/render.php:207
6099
  #: app/skins/grid/render.php:235 app/skins/list/render.php:108
6104
  msgid "View Detail"
6105
  msgstr ""
6106
 
6107
+ #: app/libraries/main.php:4926
6108
  msgid "Event Detail Button"
6109
  msgstr ""
6110
 
6111
+ #: app/libraries/main.php:4926 app/skins/countdown/tpl.php:244
6112
  msgid "Event Detail"
6113
  msgstr ""
6114
 
6115
+ #: app/libraries/main.php:4928
6116
  msgid "More Info Link"
6117
  msgstr ""
6118
 
6119
+ #: app/libraries/main.php:4931
6120
  msgid "Ticket (Singular)"
6121
  msgstr ""
6122
 
6123
+ #: app/libraries/main.php:4932
6124
  msgid "Tickets (Plural)"
6125
  msgstr ""
6126
 
6127
+ #: app/libraries/main.php:5018
6128
  msgid "EventON"
6129
  msgstr ""
6130
 
6131
+ #: app/libraries/main.php:5019
6132
  msgid "The Events Calendar"
6133
  msgstr ""
6134
 
6135
+ #: app/libraries/main.php:5020
6136
  msgid "Events Schedule WP Plugin"
6137
  msgstr ""
6138
 
6139
+ #: app/libraries/main.php:5021
6140
  msgid "Calendarize It"
6141
  msgstr ""
6142
 
6143
+ #: app/libraries/main.php:5095 app/libraries/main.php:5115
6144
  msgid "Confirmed"
6145
  msgstr ""
6146
 
6147
+ #: app/libraries/main.php:5096 app/libraries/main.php:5123
6148
  msgid "Rejected"
6149
  msgstr ""
6150
 
6151
+ #: app/libraries/main.php:5097 app/libraries/main.php:5119
6152
  msgid "Pending"
6153
  msgstr ""
6154
 
6155
+ #: app/libraries/main.php:5145
6156
  msgid "Waiting"
6157
  msgstr ""
6158
 
6159
+ #: app/libraries/main.php:5350 app/libraries/render.php:382
6160
  msgid "Skin controller does not exist."
6161
  msgstr ""
6162
 
6190
  msgid "Your event is published."
6191
  msgstr ""
6192
 
6193
+ #: app/libraries/notifications.php:827
6194
  msgid "to"
6195
  msgstr ""
6196
 
6197
+ #: app/libraries/notifications.php:840 app/modules/export/details.php:27
6198
  msgid "+ Add to Google Calendar"
6199
  msgstr "+ Google Naptárba mentés"
6200
 
6201
+ #: app/libraries/notifications.php:841 app/modules/export/details.php:28
6202
  msgid "+ iCal export"
6203
  msgstr "+ iCal Exportálás"
6204
 
6205
+ #: app/libraries/notifications.php:904
6206
  msgid "Yes"
6207
  msgstr ""
6208
 
6209
+ #: app/libraries/notifications.php:904
6210
  msgid "No"
6211
  msgstr ""
6212
 
languages/modern-events-calendar-lite-it_IT.mo CHANGED
Binary file
languages/modern-events-calendar-lite-it_IT.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
- "POT-Creation-Date: 2019-10-22 15:22+0330\n"
5
- "PO-Revision-Date: 2019-10-22 15:24+0330\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: it_IT\n"
@@ -82,7 +82,7 @@ msgid "Settings"
82
  msgstr "Impostazioni"
83
 
84
  #: app/features/contextual.php:62 app/features/events.php:2415
85
- #: app/features/mec/booking.php:426 app/features/mec/support.php:29
86
  #: app/libraries/main.php:554
87
  msgid "Booking Form"
88
  msgstr "Form Prenotazione"
@@ -96,7 +96,7 @@ msgid ""
96
  "YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></iframe>"
97
  msgstr ""
98
 
99
- #: app/features/contextual.php:70 app/features/mec/booking.php:544
100
  #: app/features/mec/support.php:36 app/libraries/main.php:555
101
  msgid "Payment Gateways"
102
  msgstr "Gateway di pagamento"
@@ -231,7 +231,7 @@ msgstr "Giorni eccezionali"
231
  msgid "Booking"
232
  msgstr "Prenotazione"
233
 
234
- #: app/features/contextual.php:318 app/features/mec/booking.php:248
235
  #: app/libraries/main.php:551
236
  msgid "Coupons"
237
  msgstr "Coupon"
@@ -307,7 +307,7 @@ msgstr "Nessun evento trovato nel cestino!"
307
  #: app/features/mec/meta_boxes/search_form.php:514
308
  #: app/features/mec/meta_boxes/search_form.php:575
309
  #: app/features/mec/settings.php:720 app/features/mec/single.php:204
310
- #: app/features/search.php:67 app/libraries/main.php:4886
311
  #: app/libraries/skins.php:808 app/skins/single.php:559
312
  #: app/skins/single/default.php:185 app/skins/single/default.php:397
313
  #: app/skins/single/m1.php:170 app/skins/single/m2.php:102
@@ -317,62 +317,62 @@ msgstr "Categoria"
317
 
318
  #: app/features/events.php:176 app/features/events.php:3212
319
  #: app/features/fes/form.php:737 app/features/mec.php:336
320
- #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:4885
321
  msgid "Categories"
322
  msgstr "Categorie"
323
 
324
  #: app/features/events.php:186 app/features/labels.php:71
325
  #: app/features/locations.php:69 app/features/organizers.php:69
326
- #: app/features/speakers.php:70
327
  #, php-format
328
  msgid "All %s"
329
  msgstr ""
330
 
331
  #: app/features/events.php:187 app/features/labels.php:72
332
  #: app/features/locations.php:70 app/features/organizers.php:70
333
- #: app/features/speakers.php:71
334
  #, php-format
335
  msgid "Edit %s"
336
  msgstr ""
337
 
338
  #: app/features/events.php:188 app/features/labels.php:73
339
  #: app/features/locations.php:71 app/features/organizers.php:71
340
- #: app/features/speakers.php:72
341
  #, php-format
342
  msgid "View %s"
343
  msgstr ""
344
 
345
  #: app/features/events.php:189 app/features/labels.php:74
346
  #: app/features/locations.php:72 app/features/organizers.php:72
347
- #: app/features/speakers.php:73
348
  #, php-format
349
  msgid "Update %s"
350
  msgstr ""
351
 
352
  #: app/features/events.php:190 app/features/labels.php:75
353
  #: app/features/locations.php:73 app/features/organizers.php:73
354
- #: app/features/speakers.php:74
355
  #, php-format
356
  msgid "Add New %s"
357
  msgstr ""
358
 
359
  #: app/features/events.php:191 app/features/labels.php:76
360
  #: app/features/locations.php:74 app/features/organizers.php:74
361
- #: app/features/speakers.php:75
362
  #, php-format
363
  msgid "New %s Name"
364
  msgstr ""
365
 
366
  #: app/features/events.php:192 app/features/labels.php:77
367
  #: app/features/locations.php:75 app/features/organizers.php:75
368
- #: app/features/speakers.php:76
369
  #, php-format
370
  msgid "Popular %s"
371
  msgstr ""
372
 
373
  #: app/features/events.php:193 app/features/labels.php:78
374
  #: app/features/locations.php:76 app/features/organizers.php:76
375
- #: app/features/speakers.php:77
376
  #, php-format
377
  msgid "Search %s"
378
  msgstr ""
@@ -401,7 +401,7 @@ msgstr "Dati dell'ospite"
401
  #: app/features/fes.php:224 app/features/fes.php:332
402
  #: app/features/fes/form.php:669 app/features/labels.php:178
403
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
404
- #: app/features/profile/profile.php:168 app/libraries/notifications.php:880
405
  #: app/modules/booking/steps/form.php:37
406
  msgid "Name"
407
  msgstr "Nome"
@@ -409,12 +409,12 @@ msgstr "Nome"
409
  #: app/features/events.php:463 app/features/events.php:2408
410
  #: app/features/events.php:2484 app/features/fes.php:224
411
  #: app/features/fes.php:332 app/features/fes/form.php:665
412
- #: app/features/mec/booking.php:57 app/features/mec/booking.php:477
413
  #: app/features/organizers.php:111 app/features/organizers.php:152
414
- #: app/features/profile/profile.php:171 app/features/speakers.php:124
415
- #: app/features/speakers.php:185 app/libraries/main.php:1472
416
- #: app/libraries/main.php:1541 app/libraries/main.php:2592
417
- #: app/libraries/notifications.php:881 app/modules/booking/steps/form.php:46
418
  #: app/modules/booking/steps/form.php:84 app/skins/single.php:812
419
  #: app/skins/single.php:867 app/skins/single/default.php:227
420
  #: app/skins/single/default.php:439 app/skins/single/m1.php:107
@@ -510,10 +510,11 @@ msgstr ""
510
  #: app/features/events.php:2324 app/features/events.php:2337
511
  #: app/features/fes/form.php:631 app/features/locations.php:299
512
  #: app/features/mec/booking.php:108 app/features/mec/booking.php:158
513
- #: app/features/mec/booking.php:174 app/features/mec/booking.php:293
514
- #: app/features/mec/booking.php:322 app/features/mec/booking.php:370
515
- #: app/features/mec/booking.php:380 app/features/mec/booking.php:402
516
- #: app/features/mec/booking.php:412 app/features/mec/dashboard.php:71
 
517
  #: app/features/mec/meta_boxes/display_options.php:66
518
  #: app/features/mec/meta_boxes/display_options.php:79
519
  #: app/features/mec/meta_boxes/display_options.php:92
@@ -549,12 +550,12 @@ msgstr ""
549
  #: app/features/mec/modules.php:154 app/features/mec/modules.php:312
550
  #: app/features/mec/notifications.php:54 app/features/mec/notifications.php:111
551
  #: app/features/mec/notifications.php:163
552
- #: app/features/mec/notifications.php:222
553
- #: app/features/mec/notifications.php:290
554
- #: app/features/mec/notifications.php:353
555
- #: app/features/mec/notifications.php:364
556
- #: app/features/mec/notifications.php:426
557
- #: app/features/mec/notifications.php:472 app/features/mec/settings.php:66
558
  #: app/features/mec/settings.php:85 app/features/mec/settings.php:112
559
  #: app/features/mec/settings.php:147 app/features/mec/settings.php:168
560
  #: app/features/mec/settings.php:188 app/features/mec/settings.php:265
@@ -791,13 +792,13 @@ msgstr ""
791
  #: app/features/events.php:1153 app/features/events.php:3434
792
  #: app/features/events.php:3476 app/features/fes/form.php:707
793
  #: app/features/ix.php:2743 app/features/ix.php:2784
794
- #: app/features/mec/settings.php:576 app/libraries/main.php:4918
795
  #: app/widgets/single.php:103
796
  msgid "Event Cost"
797
  msgstr "Costo Evento"
798
 
799
  #: app/features/events.php:1157 app/features/fes/form.php:710
800
- #: app/libraries/main.php:4919 app/skins/single.php:582
801
  #: app/skins/single/default.php:119 app/skins/single/default.php:331
802
  #: app/skins/single/m1.php:49 app/skins/single/modern.php:199
803
  msgid "Cost"
@@ -815,8 +816,8 @@ msgstr "Escludi certi giorni"
815
 
816
  #: app/features/events.php:1189 app/features/events.php:2485
817
  #: app/features/fes.php:224 app/features/fes.php:332
818
- #: app/features/mec/booking.php:478 app/features/profile/profile.php:53
819
- #: app/libraries/main.php:2048 app/libraries/main.php:2650
820
  #: app/modules/booking/steps/tickets.php:22
821
  #: app/modules/next-event/details.php:90 app/skins/single.php:637
822
  #: app/skins/single/default.php:83 app/skins/single/default.php:295
@@ -861,8 +862,8 @@ msgstr ""
861
  #: app/features/events.php:2313 app/features/events.php:3240
862
  #: app/features/events.php:3434 app/features/events.php:3476
863
  #: app/features/fes/form.php:226 app/features/ix.php:2743
864
- #: app/features/ix.php:2784 app/features/mec/booking.php:362
865
- #: app/features/mec/booking.php:394 app/features/mec/styling.php:115
866
  msgid "Title"
867
  msgstr "Titolo"
868
 
@@ -873,15 +874,15 @@ msgstr "Titolo"
873
  #: app/features/events.php:2032 app/features/events.php:2059
874
  #: app/features/events.php:2158 app/features/events.php:2194
875
  #: app/features/events.php:2301 app/features/events.php:2343
876
- #: app/features/mec/booking.php:305 app/features/mec/booking.php:334
877
- #: app/features/mec/booking.php:385 app/features/mec/booking.php:417
878
- #: app/libraries/main.php:2511 app/libraries/main.php:2541
879
- #: app/libraries/main.php:2570 app/libraries/main.php:2600
880
- #: app/libraries/main.php:2629 app/libraries/main.php:2658
881
- #: app/libraries/main.php:2687 app/libraries/main.php:2716
882
- #: app/libraries/main.php:2738 app/libraries/main.php:2769
883
- #: app/libraries/main.php:2813 app/libraries/main.php:2857
884
- #: app/libraries/main.php:2904 app/libraries/main.php:2943
885
  msgid "Remove"
886
  msgstr "Elimina"
887
 
@@ -908,8 +909,8 @@ msgstr "Descrizione"
908
  #: app/features/events.php:1336 app/features/events.php:1369
909
  #: app/features/events.php:1430 app/features/fes/form.php:831
910
  #: app/features/mec.php:344 app/features/mec/modules.php:52
911
- #: app/features/mec/settings.php:624 app/features/speakers.php:60
912
- #: app/libraries/main.php:559 app/libraries/main.php:4893
913
  #: app/modules/speakers/details.php:18
914
  msgid "Speakers"
915
  msgstr ""
@@ -926,7 +927,7 @@ msgid "Event Links"
926
  msgstr "Link dell'evento"
927
 
928
  #: app/features/events.php:1464 app/features/events.php:1470
929
- #: app/features/fes/form.php:686 app/libraries/main.php:4916
930
  msgid "Event Link"
931
  msgstr "Link dell'evento"
932
 
@@ -953,7 +954,7 @@ msgid "URL Shortener"
953
  msgstr ""
954
 
955
  #: app/features/events.php:1480 app/features/events.php:1493
956
- #: app/features/fes/form.php:691 app/libraries/main.php:4917
957
  #: app/skins/single.php:656 app/skins/single/default.php:133
958
  #: app/skins/single/default.php:345 app/skins/single/m1.php:191
959
  #: app/skins/single/m2.php:124 app/skins/single/modern.php:132
@@ -1025,7 +1026,7 @@ msgid "12"
1025
  msgstr ""
1026
 
1027
  #: app/features/events.php:1638 app/libraries/book.php:60
1028
- #: app/libraries/main.php:4921 app/modules/booking/steps/tickets.php:40
1029
  msgid "Tickets"
1030
  msgstr "Biglietto/ticket"
1031
 
@@ -1057,9 +1058,9 @@ msgstr "Ora di fine"
1057
  #: app/features/events.php:1996 app/features/events.php:1999
1058
  #: app/features/events.php:2055 app/features/events.php:2272
1059
  #: app/features/events.php:2276 app/features/events.php:2318
1060
- #: app/features/events.php:2321 app/features/mec/booking.php:366
1061
- #: app/features/mec/booking.php:369 app/features/mec/booking.php:398
1062
- #: app/features/mec/booking.php:401
1063
  msgid "Price"
1064
  msgstr "Prezzo"
1065
 
@@ -1109,19 +1110,19 @@ msgid "Fees"
1109
  msgstr "Tasse"
1110
 
1111
  #: app/features/events.php:2132 app/features/events.php:2170
1112
- #: app/features/mec/booking.php:285 app/features/mec/booking.php:314
1113
  msgid "Fee Title"
1114
  msgstr "Titolo tassa"
1115
 
1116
  #: app/features/events.php:2138 app/features/events.php:2142
1117
  #: app/features/events.php:2175 app/features/events.php:2178
1118
- #: app/features/mec/booking.php:289 app/features/mec/booking.php:292
1119
- #: app/features/mec/booking.php:318 app/features/mec/booking.php:321
1120
  msgid "Amount"
1121
  msgstr "Totale"
1122
 
1123
  #: app/features/events.php:2143 app/features/events.php:2179
1124
- #: app/features/mec/booking.php:293 app/features/mec/booking.php:322
1125
  msgid ""
1126
  "Fee amount, considered as fixed amount if you set the type to amount "
1127
  "otherwise considered as percentage"
@@ -1130,17 +1131,17 @@ msgstr ""
1130
  "a totale, altrimenti considerato come percentuale"
1131
 
1132
  #: app/features/events.php:2152 app/features/events.php:2188
1133
- #: app/features/mec/booking.php:300 app/features/mec/booking.php:329
1134
  msgid "Percent"
1135
  msgstr "Percentuale"
1136
 
1137
  #: app/features/events.php:2153 app/features/events.php:2189
1138
- #: app/features/mec/booking.php:301 app/features/mec/booking.php:330
1139
  msgid "Amount (Per Ticket)"
1140
  msgstr ""
1141
 
1142
  #: app/features/events.php:2154 app/features/events.php:2190
1143
- #: app/features/mec/booking.php:302 app/features/mec/booking.php:331
1144
  msgid "Amount (Per Booking)"
1145
  msgstr ""
1146
 
@@ -1149,7 +1150,7 @@ msgid "Ticket Variations / Options"
1149
  msgstr ""
1150
 
1151
  #: app/features/events.php:2277 app/features/events.php:2322
1152
- #: app/features/mec/booking.php:370 app/features/mec/booking.php:402
1153
  #, fuzzy
1154
  #| msgid "Option"
1155
  msgid "Option Price"
@@ -1157,65 +1158,65 @@ msgstr "Opzione"
1157
 
1158
  #: app/features/events.php:2287 app/features/events.php:2291
1159
  #: app/features/events.php:2331 app/features/events.php:2334
1160
- #: app/features/mec/booking.php:376 app/features/mec/booking.php:379
1161
- #: app/features/mec/booking.php:408 app/features/mec/booking.php:411
1162
  #, fuzzy
1163
  #| msgid "Maximum events"
1164
  msgid "Maximum Per Ticket"
1165
  msgstr "Massimo numero di eventi"
1166
 
1167
  #: app/features/events.php:2292 app/features/events.php:2335
1168
- #: app/features/mec/booking.php:380 app/features/mec/booking.php:412
1169
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
1170
  msgstr ""
1171
 
1172
- #: app/features/events.php:2481 app/features/mec/booking.php:474
1173
- #: app/libraries/main.php:2533
1174
  #, fuzzy
1175
  #| msgid "Name"
1176
  msgid "MEC Name"
1177
  msgstr "Nome"
1178
 
1179
- #: app/features/events.php:2482 app/features/mec/booking.php:475
1180
- #: app/libraries/main.php:2562
1181
  #, fuzzy
1182
  #| msgid "Email"
1183
  msgid "MEC Email"
1184
  msgstr "Email"
1185
 
1186
- #: app/features/events.php:2483 app/features/mec/booking.php:476
1187
- #: app/libraries/main.php:2503
1188
  msgid "Text"
1189
  msgstr "Testo"
1190
 
1191
- #: app/features/events.php:2486 app/features/mec/booking.php:479
1192
  #: app/features/organizers.php:103 app/features/organizers.php:148
1193
- #: app/features/speakers.php:116 app/features/speakers.php:181
1194
- #: app/features/speakers.php:254 app/libraries/main.php:2679
1195
  msgid "Tel"
1196
  msgstr "Tel"
1197
 
1198
- #: app/features/events.php:2487 app/features/mec/booking.php:480
1199
- #: app/libraries/main.php:2621
1200
  msgid "File"
1201
  msgstr ""
1202
 
1203
- #: app/features/events.php:2488 app/features/mec/booking.php:481
1204
- #: app/libraries/main.php:2708
1205
  msgid "Textarea"
1206
  msgstr "Area di testo"
1207
 
1208
- #: app/features/events.php:2489 app/features/mec/booking.php:482
1209
- #: app/libraries/main.php:2761
1210
  msgid "Checkboxes"
1211
  msgstr "Caselle di selezione"
1212
 
1213
- #: app/features/events.php:2490 app/features/mec/booking.php:483
1214
- #: app/libraries/main.php:2805
1215
  msgid "Radio Buttons"
1216
  msgstr "Opzioni di selezione"
1217
 
1218
- #: app/features/events.php:2491 app/features/mec/booking.php:484
1219
  #: app/features/mec/meta_boxes/search_form.php:34
1220
  #: app/features/mec/meta_boxes/search_form.php:41
1221
  #: app/features/mec/meta_boxes/search_form.php:48
@@ -1284,17 +1285,17 @@ msgstr "Opzioni di selezione"
1284
  #: app/features/mec/meta_boxes/search_form.php:599
1285
  #: app/features/mec/meta_boxes/search_form.php:606
1286
  #: app/features/mec/meta_boxes/search_form.php:613
1287
- #: app/features/mec/meta_boxes/search_form.php:620 app/libraries/main.php:2849
1288
  msgid "Dropdown"
1289
  msgstr "Casella di selezione"
1290
 
1291
- #: app/features/events.php:2492 app/features/mec/booking.php:485
1292
- #: app/libraries/main.php:2896
1293
  msgid "Agreement"
1294
  msgstr ""
1295
 
1296
- #: app/features/events.php:2493 app/features/mec/booking.php:486
1297
- #: app/libraries/main.php:2737
1298
  msgid "Paragraph"
1299
  msgstr "Paragrafo"
1300
 
@@ -1333,8 +1334,8 @@ msgstr ""
1333
  #: app/features/mec/meta_boxes/search_form.php:521
1334
  #: app/features/mec/meta_boxes/search_form.php:582
1335
  #: app/features/mec/settings.php:726 app/features/mec/single.php:212
1336
- #: app/features/search.php:71 app/libraries/main.php:2042
1337
- #: app/libraries/main.php:4890 app/libraries/skins.php:834
1338
  #: app/skins/single.php:486 app/skins/single.php:907
1339
  #: app/skins/single/default.php:169 app/skins/single/default.php:381
1340
  #: app/skins/single/m1.php:155 app/skins/single/m2.php:87
@@ -1359,7 +1360,7 @@ msgstr "Luogo"
1359
  #: app/features/organizers.php:58 app/features/organizers.php:204
1360
  #: app/features/organizers.php:260 app/features/organizers.php:262
1361
  #: app/features/organizers.php:271 app/features/search.php:75
1362
- #: app/libraries/main.php:4892 app/libraries/skins.php:860
1363
  #: app/skins/single.php:795 app/skins/single/default.php:210
1364
  #: app/skins/single/default.php:422 app/skins/single/m1.php:90
1365
  #: app/skins/single/m2.php:22 app/skins/single/modern.php:31
@@ -1403,7 +1404,7 @@ msgstr "Duplica"
1403
  #: app/features/fes.php:224 app/features/fes.php:332 app/features/ix.php:2743
1404
  #: app/features/ix.php:2784 app/features/labels.php:177
1405
  #: app/features/locations.php:229 app/features/organizers.php:203
1406
- #: app/features/speakers.php:251
1407
  msgid "ID"
1408
  msgstr "ID"
1409
 
@@ -1453,13 +1454,13 @@ msgid "The event removed!"
1453
  msgstr "L'evento è stato eliminato!"
1454
 
1455
  #: app/features/fes.php:224 app/features/fes.php:332
1456
- #: app/features/profile/profile.php:174 app/libraries/main.php:2077
1457
- #: app/libraries/main.php:4920
1458
  msgid "Ticket"
1459
  msgstr "Ticket"
1460
 
1461
  #: app/features/fes.php:224 app/features/fes.php:332
1462
- #: app/libraries/main.php:2054
1463
  msgid "Transaction ID"
1464
  msgstr "ID Transazione"
1465
 
@@ -1547,7 +1548,7 @@ msgstr "Rimuovi immagine"
1547
 
1548
  #: app/features/fes/form.php:763 app/features/labels.php:61
1549
  #: app/features/labels.php:221 app/features/mec.php:337
1550
- #: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:4887
1551
  #: app/skins/single.php:685 app/skins/single/default.php:148
1552
  #: app/skins/single/default.php:360 app/skins/single/m1.php:64
1553
  #: app/skins/single/modern.php:214
@@ -1893,13 +1894,13 @@ msgstr "Attiva / Disattiva"
1893
  #: app/features/ix/export_g_calendar.php:147
1894
  #: app/features/ix/export_g_calendar.php:164
1895
  #: app/features/mec/notifications.php:92 app/features/mec/notifications.php:144
1896
- #: app/features/mec/notifications.php:197
1897
- #: app/features/mec/notifications.php:398
1898
  msgid "Add to Google Calendar"
1899
  msgstr "Aggiungi al calendario Google"
1900
 
1901
- #: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:616
1902
- #: app/features/mec/modules.php:392 app/features/mec/notifications.php:590
1903
  #: app/features/mec/settings.php:895 app/features/mec/single.php:269
1904
  msgid "Checking ..."
1905
  msgstr "Sto controllando..."
@@ -1945,8 +1946,8 @@ msgid "ICS Feed"
1945
  msgstr ""
1946
 
1947
  #: app/features/ix/import.php:46 app/features/mec/booking.php:91
1948
- #: app/features/mec/booking.php:251 app/features/mec/booking.php:269
1949
- #: app/features/mec/booking.php:346
1950
  #: app/features/mec/meta_boxes/display_options.php:150
1951
  #: app/features/mec/meta_boxes/display_options.php:315
1952
  #: app/features/mec/modules.php:70 app/features/mec/modules.php:211
@@ -1956,8 +1957,8 @@ msgid "%s is required to use this feature."
1956
  msgstr ""
1957
 
1958
  #: app/features/ix/import.php:46 app/features/ix/sync.php:22
1959
- #: app/features/mec/booking.php:91 app/features/mec/booking.php:251
1960
- #: app/features/mec/booking.php:269 app/features/mec/booking.php:346
1961
  #: app/features/mec/meta_boxes/display_options.php:150
1962
  #: app/features/mec/meta_boxes/display_options.php:315
1963
  #: app/features/mec/meta_boxes/display_options.php:330
@@ -2158,7 +2159,7 @@ msgstr "Importa automaticamente da Google"
2158
 
2159
  #: app/features/ix/sync.php:32 app/features/ix/sync.php:41
2160
  #: app/features/ix/sync.php:52 app/features/ix/sync.php:63
2161
- #: app/features/mec/notifications.php:341
2162
  msgid "Important Note"
2163
  msgstr "Nota importante"
2164
 
@@ -2299,7 +2300,7 @@ msgid ""
2299
  msgstr ""
2300
 
2301
  #: app/features/labels.php:79 app/features/locations.php:77
2302
- #: app/features/organizers.php:77 app/features/speakers.php:78
2303
  #, php-format
2304
  msgid "← Back to %s"
2305
  msgstr ""
@@ -2347,7 +2348,7 @@ msgid "Featured"
2347
  msgstr "Immagine in evidenza"
2348
 
2349
  #: app/features/labels.php:118 app/features/labels.php:143
2350
- #: app/libraries/main.php:5133 app/skins/agenda/render.php:41
2351
  #: app/skins/available_spot/tpl.php:42 app/skins/carousel/render.php:45
2352
  #: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:32
2353
  #: app/skins/daily_view/render.php:52 app/skins/grid/render.php:50
@@ -2365,7 +2366,7 @@ msgid "You can show featured and canceled events by a different style!"
2365
  msgstr ""
2366
 
2367
  #: app/features/labels.php:180 app/features/locations.php:232
2368
- #: app/features/organizers.php:206 app/features/speakers.php:255
2369
  #: app/modules/booking/steps/tickets.php:38
2370
  msgid "Count"
2371
  msgstr "Numero"
@@ -2382,7 +2383,7 @@ msgstr ""
2382
 
2383
  #: app/features/locations.php:59 app/features/mec.php:338
2384
  #: app/features/mec/dashboard.php:243 app/features/mec/meta_boxes/filter.php:96
2385
- #: app/libraries/main.php:4889
2386
  msgid "Locations"
2387
  msgstr "Luoghi"
2388
 
@@ -2415,13 +2416,13 @@ msgstr "Longitudine geografica (opzionale)"
2415
 
2416
  #: app/features/locations.php:138 app/features/locations.php:180
2417
  #: app/features/organizers.php:127 app/features/organizers.php:160
2418
- #: app/features/speakers.php:156 app/features/speakers.php:201
2419
  msgid "Thumbnail"
2420
  msgstr "Anteprima"
2421
 
2422
  #: app/features/locations.php:143 app/features/locations.php:183
2423
  #: app/features/organizers.php:132 app/features/organizers.php:163
2424
- #: app/features/speakers.php:161 app/features/speakers.php:204
2425
  msgid "Upload/Add image"
2426
  msgstr "Carica/Aggiungi immagine"
2427
 
@@ -2429,7 +2430,7 @@ msgstr "Carica/Aggiungi immagine"
2429
  #: app/features/locations.php:340 app/features/locations.php:347
2430
  #: app/features/organizers.php:133 app/features/organizers.php:164
2431
  #: app/features/organizers.php:299 app/features/organizers.php:306
2432
- #: app/features/speakers.php:162 app/features/speakers.php:205
2433
  msgid "Remove image"
2434
  msgstr "Rimuovi immagine"
2435
 
@@ -2489,7 +2490,7 @@ msgstr "Seleziona immagine"
2489
  msgid "Don't show map in single event page"
2490
  msgstr "Non mostrare la mappa nella pagina dell'evento singolo"
2491
 
2492
- #: app/features/locations.php:356 app/libraries/main.php:4923
2493
  #, fuzzy
2494
  #| msgid "Search Locations"
2495
  msgid "Other Locations"
@@ -2545,7 +2546,7 @@ msgstr "Supporto"
2545
 
2546
  #: app/features/mec.php:339 app/features/mec/dashboard.php:250
2547
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2548
- #: app/libraries/main.php:4891
2549
  msgid "Organizers"
2550
  msgstr "Organizzatori"
2551
 
@@ -2645,19 +2646,19 @@ msgstr ""
2645
  msgid "Search..."
2646
  msgstr "Casella di ricerca"
2647
 
2648
- #: app/features/mec/booking.php:72 app/features/mec/booking.php:492
2649
- #: app/features/mec/booking.php:572 app/features/mec/booking.php:581
2650
- #: app/features/mec/booking.php:591 app/features/mec/booking.php:633
2651
- #: app/features/mec/booking.php:647 app/features/mec/messages.php:15
2652
  #: app/features/mec/messages.php:51 app/features/mec/messages.php:60
2653
  #: app/features/mec/messages.php:94 app/features/mec/messages.php:103
2654
  #: app/features/mec/modules.php:25 app/features/mec/modules.php:357
2655
  #: app/features/mec/modules.php:367 app/features/mec/modules.php:409
2656
  #: app/features/mec/modules.php:423 app/features/mec/notifications.php:14
2657
- #: app/features/mec/notifications.php:499
2658
- #: app/features/mec/notifications.php:511
2659
- #: app/features/mec/notifications.php:607
2660
- #: app/features/mec/notifications.php:621 app/features/mec/settings.php:34
2661
  #: app/features/mec/settings.php:844 app/features/mec/settings.php:854
2662
  #: app/features/mec/settings.php:912 app/features/mec/settings.php:926
2663
  #: app/features/mec/single.php:17 app/features/mec/single.php:234
@@ -2755,136 +2756,152 @@ msgstr ""
2755
  "Usa ridirezione a questa pagina dopo la prenotazione. Lascialo vuoto se vuoi "
2756
  "disabilitarlo."
2757
 
2758
- #: app/features/mec/booking.php:169
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2759
  msgid "Enable Express Attendees Form"
2760
  msgstr ""
2761
 
2762
- #: app/features/mec/booking.php:173 app/modules/booking/steps/form.php:52
2763
  msgid "Attendees Form"
2764
  msgstr "Form partecipanti"
2765
 
2766
- #: app/features/mec/booking.php:174
2767
  msgid ""
2768
  "Users are able to apply first attendee information for other attendees in "
2769
  "the booking form."
2770
  msgstr ""
2771
 
2772
- #: app/features/mec/booking.php:187
2773
  #, fuzzy
2774
  #| msgid "Enable booking module"
2775
  msgid "Enable Invoice"
2776
  msgstr "Attiva modulo prenotazione"
2777
 
2778
- #: app/features/mec/booking.php:198
2779
  #, fuzzy
2780
  #| msgid "Enable on booking form"
2781
  msgid "Enable Booking for Ongoing Events"
2782
  msgstr "Attiva sulla form di prenotazione"
2783
 
2784
- #: app/features/mec/booking.php:203
2785
  msgid "Email verification"
2786
  msgstr "Verifica email"
2787
 
2788
- #: app/features/mec/booking.php:209
2789
  msgid "Auto verification for free bookings"
2790
  msgstr "Verifica automatica per prenotazioni gratuite"
2791
 
2792
- #: app/features/mec/booking.php:218
2793
  msgid "Auto verification for paid bookings"
2794
  msgstr "Verifica automatica per prenotazioni a pagamento"
2795
 
2796
- #: app/features/mec/booking.php:222 app/features/mec/notifications.php:151
2797
  #: app/libraries/main.php:573
2798
  msgid "Booking Confirmation"
2799
  msgstr "Conferma Prenotazione"
2800
 
2801
- #: app/features/mec/booking.php:228
2802
  msgid "Auto confirmation for free bookings"
2803
  msgstr "Conferma automatica per prenotazioni gratuite"
2804
 
2805
- #: app/features/mec/booking.php:237
2806
  msgid "Auto confirmation for paid bookings"
2807
  msgstr "Conferma automatica per prenotazioni a pagamento"
2808
 
2809
- #: app/features/mec/booking.php:256
2810
  msgid "Enable coupons module"
2811
  msgstr "Attiva modulo coupon"
2812
 
2813
- #: app/features/mec/booking.php:258
2814
  msgid ""
2815
  "After enabling and saving the settings,, you should reload the page to see a "
2816
  "new menu on the Dashboard > Booking"
2817
  msgstr ""
2818
 
2819
- #: app/features/mec/booking.php:266 app/libraries/main.php:552
2820
  msgid "Taxes / Fees"
2821
  msgstr "Tasse"
2822
 
2823
- #: app/features/mec/booking.php:274
2824
  msgid "Enable taxes / fees module"
2825
  msgstr "Attiva modulo tasse"
2826
 
2827
- #: app/features/mec/booking.php:279
2828
  msgid "Add Fee"
2829
  msgstr "Aggiungi Tassa"
2830
 
2831
- #: app/features/mec/booking.php:343 app/libraries/main.php:553
2832
  msgid "Ticket Variations & Options"
2833
  msgstr ""
2834
 
2835
- #: app/features/mec/booking.php:351
2836
  #, fuzzy
2837
  #| msgid "Enable coupons module"
2838
  msgid "Enable ticket options module"
2839
  msgstr "Attiva modulo coupon"
2840
 
2841
- #: app/features/mec/booking.php:356
2842
  msgid "Add Variation / Option"
2843
  msgstr ""
2844
 
2845
- #: app/features/mec/booking.php:559
2846
  #, fuzzy
2847
  #| msgid "New Organizer Name"
2848
  msgid "Enable Organizer Payment Module"
2849
  msgstr "Nuovo nome Organizzatore"
2850
 
2851
- #: app/features/mec/booking.php:563
2852
  #, fuzzy
2853
  #| msgid "Organizer Name"
2854
  msgid "Organizer Payment"
2855
  msgstr "Nome Organizzatore"
2856
 
2857
- #: app/features/mec/booking.php:564
2858
  msgid ""
2859
  "By enabling this module, organizers are able to insert their own payment "
2860
  "credentials for enabled gateways per event and receive the payments directly!"
2861
  msgstr ""
2862
 
2863
- #: app/features/mec/booking.php:611 app/features/mec/messages.php:78
2864
- #: app/features/mec/modules.php:387 app/features/mec/notifications.php:585
2865
  #: app/features/mec/settings.php:890 app/features/mec/single.php:264
2866
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:296
2867
  msgid "Saved"
2868
  msgstr "Salvato"
2869
 
2870
- #: app/features/mec/booking.php:612 app/features/mec/messages.php:79
2871
- #: app/features/mec/modules.php:388 app/features/mec/notifications.php:586
2872
  #: app/features/mec/settings.php:891 app/features/mec/single.php:265
2873
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:297
2874
  msgid "Settings Saved!"
2875
  msgstr ""
2876
 
2877
- #: app/features/mec/booking.php:614 app/features/mec/booking.php:636
2878
  #: app/features/mec/modules.php:390 app/features/mec/modules.php:412
2879
- #: app/features/mec/notifications.php:588
2880
- #: app/features/mec/notifications.php:610 app/features/mec/settings.php:893
2881
  #: app/features/mec/settings.php:915 app/features/mec/single.php:267
2882
- #: app/features/mec/single.php:289 app/libraries/main.php:5132
2883
  msgid "Verified"
2884
  msgstr "Verificato"
2885
 
2886
- #: app/features/mec/booking.php:638 app/features/mec/modules.php:414
2887
- #: app/features/mec/notifications.php:612 app/features/mec/settings.php:917
2888
  #: app/features/mec/single.php:291
2889
  msgid "Please Refresh Page"
2890
  msgstr "Si prega di ricaricare la pagina"
@@ -3845,8 +3862,8 @@ msgstr "Disattivato"
3845
  #: app/features/mec/meta_boxes/search_form.php:535
3846
  #: app/features/mec/meta_boxes/search_form.php:596
3847
  #: app/features/mec/settings.php:739 app/features/mec/single.php:217
3848
- #: app/features/search.php:79 app/features/speakers.php:59
3849
- #: app/features/speakers.php:252 app/libraries/main.php:4894
3850
  #: app/libraries/skins.php:886
3851
  msgid "Speaker"
3852
  msgstr ""
@@ -4116,11 +4133,11 @@ msgstr "Invia una notifica ai partecipanti dell'avvenuta prenotazione."
4116
 
4117
  #: app/features/mec/notifications.php:45 app/features/mec/notifications.php:102
4118
  #: app/features/mec/notifications.php:154
4119
- #: app/features/mec/notifications.php:213
4120
- #: app/features/mec/notifications.php:281
4121
- #: app/features/mec/notifications.php:344
4122
- #: app/features/mec/notifications.php:417
4123
- #: app/features/mec/notifications.php:463
4124
  msgid "Email Subject"
4125
  msgstr "Oggetto Email"
4126
 
@@ -4129,93 +4146,93 @@ msgstr "Oggetto Email"
4129
  #: app/features/mec/notifications.php:110
4130
  #: app/features/mec/notifications.php:158
4131
  #: app/features/mec/notifications.php:162
4132
- #: app/features/mec/notifications.php:217
4133
- #: app/features/mec/notifications.php:221
4134
- #: app/features/mec/notifications.php:285
4135
- #: app/features/mec/notifications.php:289
4136
- #: app/features/mec/notifications.php:348
4137
- #: app/features/mec/notifications.php:352
4138
- #: app/features/mec/notifications.php:363
4139
- #: app/features/mec/notifications.php:421
4140
- #: app/features/mec/notifications.php:425
4141
- #: app/features/mec/notifications.php:467
4142
- #: app/features/mec/notifications.php:471
4143
- msgid "Custom Recipients"
4144
- msgstr "Altri destinatari"
4145
-
4146
- #: app/features/mec/notifications.php:54 app/features/mec/notifications.php:111
4147
- #: app/features/mec/notifications.php:163
4148
  #: app/features/mec/notifications.php:222
 
4149
  #: app/features/mec/notifications.php:290
 
4150
  #: app/features/mec/notifications.php:353
4151
  #: app/features/mec/notifications.php:364
 
4152
  #: app/features/mec/notifications.php:426
 
4153
  #: app/features/mec/notifications.php:472
 
 
 
 
 
 
 
 
 
 
 
4154
  msgid "Insert comma separated emails for multiple recipients."
4155
  msgstr "Puoi inserire più destinatari email separati da virgola."
4156
 
4157
- #: app/features/mec/notifications.php:61 app/features/mec/notifications.php:233
4158
- #: app/features/mec/notifications.php:297
4159
  msgid "Send the email to event organizer"
4160
  msgstr "Invia l'email all'organizzatore dell'evento"
4161
 
4162
  #: app/features/mec/notifications.php:64 app/features/mec/notifications.php:117
4163
  #: app/features/mec/notifications.php:169
4164
- #: app/features/mec/notifications.php:240
4165
- #: app/features/mec/notifications.php:300
4166
- #: app/features/mec/notifications.php:370
4167
- #: app/features/mec/notifications.php:432
4168
- #: app/features/mec/notifications.php:478
4169
  msgid "Email Content"
4170
  msgstr "Contenuto Email"
4171
 
4172
  #: app/features/mec/notifications.php:67 app/features/mec/notifications.php:120
4173
  #: app/features/mec/notifications.php:172
4174
- #: app/features/mec/notifications.php:243
4175
- #: app/features/mec/notifications.php:303
4176
- #: app/features/mec/notifications.php:373
4177
- #: app/features/mec/notifications.php:435
4178
- #: app/features/mec/notifications.php:481
4179
  msgid "You can use following placeholders"
4180
  msgstr "Puoi usare i seguenti placeholder"
4181
 
4182
  #: app/features/mec/notifications.php:69 app/features/mec/notifications.php:122
4183
  #: app/features/mec/notifications.php:174
4184
- #: app/features/mec/notifications.php:245
4185
- #: app/features/mec/notifications.php:305
4186
- #: app/features/mec/notifications.php:375
4187
  msgid "First name of attendee"
4188
  msgstr "Nome partecipante"
4189
 
4190
  #: app/features/mec/notifications.php:70 app/features/mec/notifications.php:123
4191
  #: app/features/mec/notifications.php:175
4192
- #: app/features/mec/notifications.php:246
4193
- #: app/features/mec/notifications.php:306
4194
- #: app/features/mec/notifications.php:376
4195
  msgid "Last name of attendee"
4196
  msgstr "Cognome partecipante"
4197
 
4198
  #: app/features/mec/notifications.php:71 app/features/mec/notifications.php:124
4199
  #: app/features/mec/notifications.php:176
4200
- #: app/features/mec/notifications.php:247
4201
- #: app/features/mec/notifications.php:307
4202
- #: app/features/mec/notifications.php:377
4203
  msgid "Email of attendee"
4204
  msgstr "Email partecipante"
4205
 
4206
  #: app/features/mec/notifications.php:72 app/features/mec/notifications.php:125
4207
  #: app/features/mec/notifications.php:177
4208
- #: app/features/mec/notifications.php:248
4209
- #: app/features/mec/notifications.php:308
4210
- #: app/features/mec/notifications.php:378
4211
  msgid "Booked date of event"
4212
  msgstr "Data prenotata per l'evento"
4213
 
4214
  #: app/features/mec/notifications.php:73 app/features/mec/notifications.php:126
4215
  #: app/features/mec/notifications.php:178
4216
- #: app/features/mec/notifications.php:249
4217
- #: app/features/mec/notifications.php:309
4218
- #: app/features/mec/notifications.php:379
4219
  #, fuzzy
4220
  #| msgid "Booked date of event"
4221
  msgid "Booked time of event"
@@ -4223,55 +4240,55 @@ msgstr "Data prenotata per l'evento"
4223
 
4224
  #: app/features/mec/notifications.php:74 app/features/mec/notifications.php:127
4225
  #: app/features/mec/notifications.php:179
4226
- #: app/features/mec/notifications.php:250
4227
- #: app/features/mec/notifications.php:310
4228
- #: app/features/mec/notifications.php:380
4229
  msgid "Booking Price"
4230
  msgstr ""
4231
 
4232
  #: app/features/mec/notifications.php:75 app/features/mec/notifications.php:128
4233
  #: app/features/mec/notifications.php:180
4234
- #: app/features/mec/notifications.php:251
4235
- #: app/features/mec/notifications.php:311
4236
- #: app/features/mec/notifications.php:381
4237
- #: app/features/mec/notifications.php:441
4238
- #: app/features/mec/notifications.php:487
4239
- msgid "Your website title"
4240
- msgstr "Titolo del tuo sito web"
4241
-
4242
- #: app/features/mec/notifications.php:76 app/features/mec/notifications.php:129
4243
- #: app/features/mec/notifications.php:181
4244
  #: app/features/mec/notifications.php:252
4245
  #: app/features/mec/notifications.php:312
4246
  #: app/features/mec/notifications.php:382
4247
  #: app/features/mec/notifications.php:442
4248
  #: app/features/mec/notifications.php:488
4249
- msgid "Your website URL"
4250
- msgstr "URL del tuo sito web"
4251
 
4252
- #: app/features/mec/notifications.php:77 app/features/mec/notifications.php:130
4253
- #: app/features/mec/notifications.php:182
4254
  #: app/features/mec/notifications.php:253
4255
  #: app/features/mec/notifications.php:313
4256
  #: app/features/mec/notifications.php:383
4257
  #: app/features/mec/notifications.php:443
4258
  #: app/features/mec/notifications.php:489
 
 
 
 
 
 
 
 
 
 
4259
  msgid "Your website description"
4260
  msgstr "Descrizione del tuo sito web"
4261
 
4262
  #: app/features/mec/notifications.php:78 app/features/mec/notifications.php:131
4263
  #: app/features/mec/notifications.php:183
4264
- #: app/features/mec/notifications.php:254
4265
- #: app/features/mec/notifications.php:314
4266
- #: app/features/mec/notifications.php:384
4267
  msgid "Event title"
4268
  msgstr "Titolo evento"
4269
 
4270
  #: app/features/mec/notifications.php:79 app/features/mec/notifications.php:132
4271
  #: app/features/mec/notifications.php:184
4272
- #: app/features/mec/notifications.php:255
4273
- #: app/features/mec/notifications.php:315
4274
- #: app/features/mec/notifications.php:385
4275
  #, fuzzy
4276
  #| msgid "Event Link"
4277
  msgid "Event link"
@@ -4279,9 +4296,9 @@ msgstr "Link dell'evento"
4279
 
4280
  #: app/features/mec/notifications.php:80 app/features/mec/notifications.php:133
4281
  #: app/features/mec/notifications.php:185
4282
- #: app/features/mec/notifications.php:256
4283
- #: app/features/mec/notifications.php:316
4284
- #: app/features/mec/notifications.php:386
4285
  #, fuzzy
4286
  #| msgid "Organizer name of booked event"
4287
  msgid "Speaker name of booked event"
@@ -4289,82 +4306,82 @@ msgstr "Nome dell'organizzatore che ha prenotato l'evento"
4289
 
4290
  #: app/features/mec/notifications.php:81 app/features/mec/notifications.php:134
4291
  #: app/features/mec/notifications.php:186
4292
- #: app/features/mec/notifications.php:257
4293
- #: app/features/mec/notifications.php:317
4294
- #: app/features/mec/notifications.php:387
4295
  msgid "Organizer name of booked event"
4296
  msgstr "Nome dell'organizzatore che ha prenotato l'evento"
4297
 
4298
  #: app/features/mec/notifications.php:82 app/features/mec/notifications.php:135
4299
  #: app/features/mec/notifications.php:187
4300
- #: app/features/mec/notifications.php:258
4301
- #: app/features/mec/notifications.php:318
4302
- #: app/features/mec/notifications.php:388
4303
  msgid "Organizer tel of booked event"
4304
  msgstr "Telefono dell'organizzatore che ha prenotato l'evento"
4305
 
4306
  #: app/features/mec/notifications.php:83 app/features/mec/notifications.php:136
4307
  #: app/features/mec/notifications.php:188
4308
- #: app/features/mec/notifications.php:259
4309
- #: app/features/mec/notifications.php:319
4310
- #: app/features/mec/notifications.php:389
4311
  msgid "Organizer email of booked event"
4312
  msgstr "Email dell'organizzatore che ha prenotato l'evento"
4313
 
4314
  #: app/features/mec/notifications.php:84 app/features/mec/notifications.php:137
4315
  #: app/features/mec/notifications.php:189
4316
- #: app/features/mec/notifications.php:260
4317
- #: app/features/mec/notifications.php:320
4318
- #: app/features/mec/notifications.php:390
4319
  msgid "Location name of booked event"
4320
  msgstr "Nome del luogo dell'evento prenotato"
4321
 
4322
  #: app/features/mec/notifications.php:85 app/features/mec/notifications.php:138
4323
  #: app/features/mec/notifications.php:190
4324
- #: app/features/mec/notifications.php:261
4325
- #: app/features/mec/notifications.php:321
4326
- #: app/features/mec/notifications.php:391
4327
  msgid "Location address of booked event"
4328
  msgstr "Indirizzo del luogo dell'evento prenotato"
4329
 
4330
- #: app/features/mec/notifications.php:86 app/features/mec/notifications.php:263
4331
- #: app/features/mec/notifications.php:323
4332
  msgid "Full Attendee info such as booking form data, name, email etc."
4333
  msgstr ""
4334
  "Informazioni complete partecipanti (dati di prenotazione, nome, email, etc.)."
4335
 
4336
  #: app/features/mec/notifications.php:87 app/features/mec/notifications.php:192
4337
- #: app/features/mec/notifications.php:393
4338
  msgid "Invoice Link"
4339
  msgstr ""
4340
 
4341
  #: app/features/mec/notifications.php:88 app/features/mec/notifications.php:140
4342
  #: app/features/mec/notifications.php:193
4343
- #: app/features/mec/notifications.php:264
4344
- #: app/features/mec/notifications.php:324
4345
- #: app/features/mec/notifications.php:394
4346
  msgid "Total Attendees"
4347
  msgstr ""
4348
 
4349
  #: app/features/mec/notifications.php:89 app/features/mec/notifications.php:141
4350
- #: app/features/mec/notifications.php:194
4351
- #: app/features/mec/notifications.php:395
4352
  #, fuzzy
4353
  #| msgid "Ticket Name"
4354
  msgid "Ticket name"
4355
  msgstr "Nome biglietto/ticket"
4356
 
4357
  #: app/features/mec/notifications.php:90 app/features/mec/notifications.php:142
4358
- #: app/features/mec/notifications.php:195
4359
- #: app/features/mec/notifications.php:396
4360
  #, fuzzy
4361
  #| msgid "Ticket Name"
4362
  msgid "Ticket time"
4363
  msgstr "Nome biglietto/ticket"
4364
 
4365
  #: app/features/mec/notifications.php:91 app/features/mec/notifications.php:143
4366
- #: app/features/mec/notifications.php:196
4367
- #: app/features/mec/notifications.php:397
4368
  msgid "Download ICS file"
4369
  msgstr ""
4370
 
@@ -4387,23 +4404,29 @@ msgstr ""
4387
  "dell'amministratore."
4388
 
4389
  #: app/features/mec/notifications.php:191
4390
- #: app/features/mec/notifications.php:392
4391
  msgid "Booking cancellation link."
4392
  msgstr "Link per la cancellazione della prenotazione."
4393
 
4394
- #: app/features/mec/notifications.php:203 app/libraries/main.php:574
 
 
 
 
 
 
4395
  #, fuzzy
4396
  #| msgid "Booking cancellation link."
4397
  msgid "Booking Cancellation"
4398
  msgstr "Link per la cancellazione della prenotazione."
4399
 
4400
- #: app/features/mec/notifications.php:207
4401
  #, fuzzy
4402
  #| msgid "Enable new event notification"
4403
  msgid "Enable cancellation notification"
4404
  msgstr "Attiva notifica nuovo evento"
4405
 
4406
- #: app/features/mec/notifications.php:211
4407
  #, fuzzy
4408
  #| msgid "It sends to attendee after booking for notifying him/her."
4409
  msgid ""
@@ -4411,47 +4434,47 @@ msgid ""
4411
  "them."
4412
  msgstr "Invia una notifica ai partecipanti dell'avvenuta prenotazione."
4413
 
4414
- #: app/features/mec/notifications.php:229
4415
  #, fuzzy
4416
  #| msgid "Send the email to event organizer"
4417
  msgid "Send the email to admin"
4418
  msgstr "Invia l'email all'organizzatore dell'evento"
4419
 
4420
- #: app/features/mec/notifications.php:237
4421
  #, fuzzy
4422
  #| msgid "Send the email to event organizer"
4423
  msgid "Send the email to booking user"
4424
  msgstr "Invia l'email all'organizzatore dell'evento"
4425
 
4426
- #: app/features/mec/notifications.php:262
4427
- #: app/features/mec/notifications.php:322
4428
  msgid "Admin booking management link."
4429
  msgstr "Link amministratore gestione prenotazioni."
4430
 
4431
- #: app/features/mec/notifications.php:271 app/libraries/main.php:576
4432
  msgid "Admin"
4433
  msgstr ""
4434
 
4435
- #: app/features/mec/notifications.php:275
4436
  #, fuzzy
4437
  #| msgid "Enable new event notification"
4438
  msgid "Enable admin notification"
4439
  msgstr "Attiva notifica nuovo evento"
4440
 
4441
- #: app/features/mec/notifications.php:279
4442
  msgid "It sends to admin to notify him/her that a new booking received."
4443
  msgstr "Invia notifica all'amministratore per una nuova prenotazione ricevuta."
4444
 
4445
- #: app/features/mec/notifications.php:331 app/libraries/main.php:575
4446
  #: app/libraries/notifications.php:478
4447
  msgid "Booking Reminder"
4448
  msgstr ""
4449
 
4450
- #: app/features/mec/notifications.php:335
4451
  msgid "Enable booking reminder notification"
4452
  msgstr ""
4453
 
4454
- #: app/features/mec/notifications.php:341
4455
  #, php-format
4456
  msgid ""
4457
  "Set a cronjob to call %s file once per day otherwise it won't send the "
@@ -4459,70 +4482,70 @@ msgid ""
4459
  "send the reminders multiple times."
4460
  msgstr ""
4461
 
4462
- #: app/features/mec/notifications.php:341
4463
  msgid "only once per day"
4464
  msgstr ""
4465
 
4466
- #: app/features/mec/notifications.php:359
4467
  msgid "Days"
4468
  msgstr ""
4469
 
4470
- #: app/features/mec/notifications.php:407 app/features/mec/support-page.php:80
4471
  #: app/libraries/main.php:577
4472
  msgid "New Event"
4473
  msgstr "Nuovo Evento"
4474
 
4475
- #: app/features/mec/notifications.php:411
4476
  msgid "Enable new event notification"
4477
  msgstr "Attiva notifica nuovo evento"
4478
 
4479
- #: app/features/mec/notifications.php:415
4480
  msgid ""
4481
  "It sends after adding a new event from frontend event submission or from "
4482
  "website backend."
4483
  msgstr "Invia dopo l'inserimento di un nuovo evento da frontend o da backend."
4484
 
4485
- #: app/features/mec/notifications.php:437
4486
- #: app/features/mec/notifications.php:483
4487
  msgid "Title of event"
4488
  msgstr "Titolo dell'evento"
4489
 
4490
- #: app/features/mec/notifications.php:438
4491
- #: app/features/mec/notifications.php:484
4492
  #, fuzzy
4493
  #| msgid "Title of event"
4494
  msgid "Link of event"
4495
  msgstr "Titolo dell'evento"
4496
 
4497
- #: app/features/mec/notifications.php:439
4498
- #: app/features/mec/notifications.php:485
4499
  msgid "Status of event"
4500
  msgstr "Stato dell'evento"
4501
 
4502
- #: app/features/mec/notifications.php:440
4503
- #: app/features/mec/notifications.php:486 app/features/mec/settings.php:654
4504
  #: app/features/mec/settings.php:658
4505
  msgid "Event Note"
4506
  msgstr "Note dell'evento"
4507
 
4508
- #: app/features/mec/notifications.php:444
4509
- #: app/features/mec/notifications.php:490
4510
  msgid "Admin events management link."
4511
  msgstr "Link amministratore gestione eventi."
4512
 
4513
- #: app/features/mec/notifications.php:453 app/libraries/main.php:578
4514
  #, fuzzy
4515
  #| msgid "The event published."
4516
  msgid "User Event Publishing"
4517
  msgstr "L'evento è stato pubblicato."
4518
 
4519
- #: app/features/mec/notifications.php:457
4520
  #, fuzzy
4521
  #| msgid "Enable new event notification"
4522
  msgid "Enable user event publishing notification"
4523
  msgstr "Attiva notifica nuovo evento"
4524
 
4525
- #: app/features/mec/notifications.php:461
4526
  #, fuzzy
4527
  #| msgid ""
4528
  #| "It sends after adding a new event from frontend event submission or from "
@@ -4625,7 +4648,7 @@ msgid "You can enable/disable Schema scripts"
4625
  msgstr ""
4626
 
4627
  #: app/features/mec/settings.php:136 app/features/mec/settings.php:146
4628
- #: app/libraries/main.php:4898
4629
  msgid "Weekdays"
4630
  msgstr "Settimanali"
4631
 
@@ -5790,7 +5813,7 @@ msgstr "es. mario@rossi.it"
5790
  msgid "eg. https://webnus.net"
5791
  msgstr "http://webnus.biz"
5792
 
5793
- #: app/features/organizers.php:311 app/libraries/main.php:4922
5794
  #: app/skins/single.php:845
5795
  msgid "Other Organizers"
5796
  msgstr ""
@@ -5816,11 +5839,11 @@ msgstr "La tua prenotazione non può essere cancellata."
5816
  msgid "#"
5817
  msgstr ""
5818
 
5819
- #: app/features/profile/profile.php:56 app/libraries/main.php:2918
5820
  msgid "Status"
5821
  msgstr ""
5822
 
5823
- #: app/features/profile/profile.php:59 app/libraries/main.php:2063
5824
  msgid "Attendees"
5825
  msgstr ""
5826
 
@@ -5853,7 +5876,7 @@ msgstr "Verifica"
5853
  msgid "No bookings found!"
5854
  msgstr "Nessuna prenotazione trovata!"
5855
 
5856
- #: app/features/search.php:87 app/libraries/main.php:4888
5857
  msgid "label"
5858
  msgstr ""
5859
 
@@ -5888,77 +5911,83 @@ msgstr ""
5888
  msgid "All of the day"
5889
  msgstr "Tutti del giorno"
5890
 
5891
- #: app/features/speakers.php:108 app/features/speakers.php:177
5892
- #: app/features/speakers.php:253
5893
  #, fuzzy
5894
  #| msgid "Title"
5895
  msgid "Job Title"
5896
  msgstr "Titolo"
5897
 
5898
- #: app/features/speakers.php:111 app/features/speakers.php:178
5899
  msgid "Insert speaker job title."
5900
  msgstr ""
5901
 
5902
- #: app/features/speakers.php:119 app/features/speakers.php:182
5903
  #, fuzzy
5904
  #| msgid "Insert organizer phone number."
5905
  msgid "Insert speaker phone number."
5906
  msgstr "Inserisci il numero di telefono dell'organizzatore."
5907
 
5908
- #: app/features/speakers.php:127 app/features/speakers.php:186
5909
  #, fuzzy
5910
  #| msgid "Insert organizer email address."
5911
  msgid "Insert speaker email address."
5912
  msgstr "Inserisci l'indirizzo email dell'organizzatore."
5913
 
5914
- #: app/features/speakers.php:132 app/features/speakers.php:189
5915
  #, fuzzy
5916
  #| msgid "Facebook Page Link"
5917
  msgid "Facebook Page"
5918
  msgstr "Link della pagina Facebook"
5919
 
5920
- #: app/features/speakers.php:135 app/features/speakers.php:190
5921
  #, fuzzy
5922
  #| msgid "Import from Facebook Calendar"
5923
  msgid "Insert URL of Facebook Page"
5924
  msgstr "Importa dal calendario Facebook"
5925
 
5926
- #: app/features/speakers.php:140 app/features/speakers.php:193
5927
  msgid "Instagram"
5928
  msgstr ""
5929
 
5930
- #: app/features/speakers.php:143 app/features/speakers.php:194
5931
  #, fuzzy
5932
  #| msgid "Insert -1 for unlimited usage"
5933
  msgid "Insert URL of Instagram"
5934
  msgstr "Inserire -1 per utilizzo illimitato"
5935
 
5936
- #: app/features/speakers.php:148 app/features/speakers.php:197
5937
  #, fuzzy
5938
  #| msgid "Twitter"
5939
  msgid "Twitter Page"
5940
  msgstr "Twitter"
5941
 
5942
- #: app/features/speakers.php:151 app/features/speakers.php:198
5943
  #, fuzzy
5944
  #| msgid "Insert -1 for unlimited usage"
5945
  msgid "Insert URL of Twitter Page"
5946
  msgstr "Inserire -1 per utilizzo illimitato"
5947
 
5948
- #: app/features/speakers.php:313
5949
  msgid "Sorry, You must insert speaker name!"
5950
  msgstr ""
5951
 
 
 
 
 
 
 
5952
  #: app/libraries/book.php:60
5953
  #, php-format
5954
  msgid "%s Price"
5955
  msgstr ""
5956
 
5957
- #: app/libraries/book.php:553
5958
  msgid "Discount"
5959
  msgstr "Sconto"
5960
 
5961
- #: app/libraries/book.php:643 app/modules/booking/default.php:305
5962
  #: app/modules/booking/default.php:403
5963
  msgid "Download Invoice"
5964
  msgstr ""
@@ -6089,31 +6118,31 @@ msgstr "Visualizza carosello"
6089
  msgid "Slider View"
6090
  msgstr "Visualizza slider"
6091
 
6092
- #: app/libraries/main.php:382 app/libraries/main.php:4900
6093
  msgid "SU"
6094
  msgstr "D"
6095
 
6096
- #: app/libraries/main.php:383 app/libraries/main.php:4901
6097
  msgid "MO"
6098
  msgstr "L"
6099
 
6100
- #: app/libraries/main.php:384 app/libraries/main.php:4902
6101
  msgid "TU"
6102
  msgstr "M"
6103
 
6104
- #: app/libraries/main.php:385 app/libraries/main.php:4903
6105
  msgid "WE"
6106
  msgstr "M"
6107
 
6108
- #: app/libraries/main.php:386 app/libraries/main.php:4904
6109
  msgid "TH"
6110
  msgstr "G"
6111
 
6112
- #: app/libraries/main.php:387 app/libraries/main.php:4905
6113
  msgid "FR"
6114
  msgstr "V"
6115
 
6116
- #: app/libraries/main.php:388 app/libraries/main.php:4906
6117
  msgid "SA"
6118
  msgstr "S"
6119
 
@@ -6257,204 +6286,215 @@ msgstr ""
6257
  msgid "Invoice is invalid."
6258
  msgstr "Token di sicurezza non valido."
6259
 
6260
- #: app/libraries/main.php:2004
 
 
 
 
 
 
 
 
 
 
 
6261
  msgid "Cannot find the booking!"
6262
  msgstr ""
6263
 
6264
- #: app/libraries/main.php:2004
6265
  msgid "Booking is invalid."
6266
  msgstr ""
6267
 
6268
- #: app/libraries/main.php:2033
6269
  #, php-format
6270
  msgid "%s Invoice"
6271
  msgstr ""
6272
 
6273
- #: app/libraries/main.php:2107
6274
  msgid "Billing"
6275
  msgstr ""
6276
 
6277
- #: app/libraries/main.php:2118
6278
  msgid "Total"
6279
  msgstr ""
6280
 
6281
- #: app/libraries/main.php:2175
6282
  #, fuzzy
6283
  #| msgid "Request is invalid!"
6284
  msgid "Request is not valid."
6285
  msgstr "Richiesta non valida!"
6286
 
6287
- #: app/libraries/main.php:2175
6288
  msgid "iCal export stopped!"
6289
  msgstr "esportazione iCal annullata!"
6290
 
6291
- #: app/libraries/main.php:2502 app/libraries/main.php:2532
6292
- #: app/libraries/main.php:2561 app/libraries/main.php:2591
6293
- #: app/libraries/main.php:2620 app/libraries/main.php:2649
6294
- #: app/libraries/main.php:2678 app/libraries/main.php:2707
6295
- #: app/libraries/main.php:2736 app/libraries/main.php:2760
6296
- #: app/libraries/main.php:2804 app/libraries/main.php:2848
6297
- #: app/libraries/main.php:2895 app/libraries/main.php:2942
6298
  msgid "Sort"
6299
  msgstr "Ordina"
6300
 
6301
- #: app/libraries/main.php:2508 app/libraries/main.php:2538
6302
- #: app/libraries/main.php:2567 app/libraries/main.php:2597
6303
- #: app/libraries/main.php:2626 app/libraries/main.php:2655
6304
- #: app/libraries/main.php:2684 app/libraries/main.php:2713
6305
- #: app/libraries/main.php:2766 app/libraries/main.php:2810
6306
- #: app/libraries/main.php:2854 app/libraries/main.php:2901
6307
  msgid "Required Field"
6308
  msgstr "Campo obbligatorio"
6309
 
6310
- #: app/libraries/main.php:2514 app/libraries/main.php:2544
6311
- #: app/libraries/main.php:2573 app/libraries/main.php:2603
6312
- #: app/libraries/main.php:2632 app/libraries/main.php:2661
6313
- #: app/libraries/main.php:2690 app/libraries/main.php:2719
6314
- #: app/libraries/main.php:2772 app/libraries/main.php:2816
6315
- #: app/libraries/main.php:2860 app/libraries/main.php:2907
6316
  msgid "Insert a label for this field"
6317
  msgstr "Inserisci una etichetta per questo campo"
6318
 
6319
- #: app/libraries/main.php:2742
6320
  msgid "HTML and shortcode are allowed."
6321
  msgstr "HTML e shortcode sono ammessi."
6322
 
6323
- #: app/libraries/main.php:2785 app/libraries/main.php:2829
6324
- #: app/libraries/main.php:2873
6325
  msgid "Option"
6326
  msgstr "Opzione"
6327
 
6328
- #: app/libraries/main.php:2907
6329
  #, php-format
6330
  msgid "Instead of %s, the page title with a link will be show."
6331
  msgstr ""
6332
 
6333
- #: app/libraries/main.php:2909
6334
  msgid "Agreement Page"
6335
  msgstr ""
6336
 
6337
- #: app/libraries/main.php:2920
6338
  msgid "Checked by default"
6339
  msgstr ""
6340
 
6341
- #: app/libraries/main.php:2921
6342
  msgid "Unchecked by default"
6343
  msgstr ""
6344
 
6345
- #: app/libraries/main.php:2944
6346
  msgid "Insert a label for this option"
6347
  msgstr "Inserisci una etichetta per questa opzione"
6348
 
6349
- #: app/libraries/main.php:2959
6350
  msgid "Free"
6351
  msgstr "Gratuito"
6352
 
6353
- #: app/libraries/main.php:3565 app/libraries/main.php:5147
6354
  #, fuzzy
6355
  #| msgid "M.E. Calendar"
6356
  msgid "M.E. Calender"
6357
  msgstr "Calendario"
6358
 
6359
- #: app/libraries/main.php:3720
6360
  #, php-format
6361
  msgid "Copy of %s"
6362
  msgstr "Copia di %s"
6363
 
6364
- #: app/libraries/main.php:4393
6365
  msgid "Booked an event."
6366
  msgstr "Prenotato un evento."
6367
 
6368
- #: app/libraries/main.php:4434
6369
  #, php-format
6370
  msgid "%s booked %s event."
6371
  msgstr "%s ha prenotato l'evento %s."
6372
 
6373
- #: app/libraries/main.php:4883
6374
  msgid "Taxonomies"
6375
  msgstr ""
6376
 
6377
- #: app/libraries/main.php:4885
6378
  msgid "Category Plural Label"
6379
  msgstr ""
6380
 
6381
- #: app/libraries/main.php:4886
6382
  msgid "Category Singular Label"
6383
  msgstr ""
6384
 
6385
- #: app/libraries/main.php:4887
6386
  msgid "Label Plural Label"
6387
  msgstr ""
6388
 
6389
- #: app/libraries/main.php:4888
6390
  msgid "Label Singular Label"
6391
  msgstr ""
6392
 
6393
- #: app/libraries/main.php:4889
6394
  msgid "Location Plural Label"
6395
  msgstr ""
6396
 
6397
- #: app/libraries/main.php:4890
6398
  msgid "Location Singular Label"
6399
  msgstr ""
6400
 
6401
- #: app/libraries/main.php:4891
6402
  msgid "Organizer Plural Label"
6403
  msgstr ""
6404
 
6405
- #: app/libraries/main.php:4892
6406
  msgid "Organizer Singular Label"
6407
  msgstr ""
6408
 
6409
- #: app/libraries/main.php:4893
6410
  #, fuzzy
6411
  #| msgid "Search Labels"
6412
  msgid "Speaker Plural Label"
6413
  msgstr "Cerca etichette"
6414
 
6415
- #: app/libraries/main.php:4894
6416
  #, fuzzy
6417
  #| msgid "Popular Labels"
6418
  msgid "Speaker Singular Label"
6419
  msgstr "Etichette frequenti"
6420
 
6421
- #: app/libraries/main.php:4900
6422
  msgid "Sunday abbreviation"
6423
  msgstr ""
6424
 
6425
- #: app/libraries/main.php:4901
6426
  msgid "Monday abbreviation"
6427
  msgstr ""
6428
 
6429
- #: app/libraries/main.php:4902
6430
  msgid "Tuesday abbreviation"
6431
  msgstr ""
6432
 
6433
- #: app/libraries/main.php:4903
6434
  msgid "Wednesday abbreviation"
6435
  msgstr ""
6436
 
6437
- #: app/libraries/main.php:4904
6438
  msgid "Thursday abbreviation"
6439
  msgstr ""
6440
 
6441
- #: app/libraries/main.php:4905
6442
  msgid "Friday abbreviation"
6443
  msgstr ""
6444
 
6445
- #: app/libraries/main.php:4906
6446
  msgid "Saturday abbreviation"
6447
  msgstr ""
6448
 
6449
- #: app/libraries/main.php:4910
6450
  msgid "Others"
6451
  msgstr ""
6452
 
6453
- #: app/libraries/main.php:4912
6454
  msgid "Booking Success Message"
6455
  msgstr ""
6456
 
6457
- #: app/libraries/main.php:4912
6458
  msgid ""
6459
  "Thanks for your booking. Your tickets booked, booking verification might be "
6460
  "needed, please check your email."
@@ -6463,11 +6503,11 @@ msgstr ""
6463
  "essere necessario la verifica della prenotazione, si prega di controllare la "
6464
  "posta elettronica."
6465
 
6466
- #: app/libraries/main.php:4913 app/widgets/single.php:131
6467
  msgid "Register Button"
6468
  msgstr ""
6469
 
6470
- #: app/libraries/main.php:4913 app/skins/available_spot/tpl.php:224
6471
  #: app/skins/carousel/render.php:158 app/skins/carousel/render.php:194
6472
  #: app/skins/grid/render.php:118 app/skins/grid/render.php:164
6473
  #: app/skins/grid/render.php:207 app/skins/grid/render.php:235
@@ -6484,11 +6524,11 @@ msgstr ""
6484
  msgid "REGISTER"
6485
  msgstr "REGISTRA"
6486
 
6487
- #: app/libraries/main.php:4914
6488
  msgid "View Detail Button"
6489
  msgstr ""
6490
 
6491
- #: app/libraries/main.php:4914 app/skins/carousel/render.php:158
6492
  #: app/skins/carousel/render.php:194 app/skins/grid/render.php:118
6493
  #: app/skins/grid/render.php:164 app/skins/grid/render.php:207
6494
  #: app/skins/grid/render.php:235 app/skins/list/render.php:108
@@ -6499,59 +6539,59 @@ msgstr ""
6499
  msgid "View Detail"
6500
  msgstr "Visualizza dettaglio"
6501
 
6502
- #: app/libraries/main.php:4915
6503
  msgid "Event Detail Button"
6504
  msgstr ""
6505
 
6506
- #: app/libraries/main.php:4915 app/skins/countdown/tpl.php:244
6507
  msgid "Event Detail"
6508
  msgstr "Dettaglio evento"
6509
 
6510
- #: app/libraries/main.php:4917
6511
  msgid "More Info Link"
6512
  msgstr ""
6513
 
6514
- #: app/libraries/main.php:4920
6515
  msgid "Ticket (Singular)"
6516
  msgstr ""
6517
 
6518
- #: app/libraries/main.php:4921
6519
  msgid "Tickets (Plural)"
6520
  msgstr ""
6521
 
6522
- #: app/libraries/main.php:5007
6523
  msgid "EventON"
6524
  msgstr ""
6525
 
6526
- #: app/libraries/main.php:5008
6527
  msgid "The Events Calendar"
6528
  msgstr ""
6529
 
6530
- #: app/libraries/main.php:5009
6531
  msgid "Events Schedule WP Plugin"
6532
  msgstr ""
6533
 
6534
- #: app/libraries/main.php:5010
6535
  msgid "Calendarize It"
6536
  msgstr ""
6537
 
6538
- #: app/libraries/main.php:5084 app/libraries/main.php:5104
6539
  msgid "Confirmed"
6540
  msgstr "Confermato"
6541
 
6542
- #: app/libraries/main.php:5085 app/libraries/main.php:5112
6543
  msgid "Rejected"
6544
  msgstr "Rifiutato"
6545
 
6546
- #: app/libraries/main.php:5086 app/libraries/main.php:5108
6547
  msgid "Pending"
6548
  msgstr "In attesa"
6549
 
6550
- #: app/libraries/main.php:5134
6551
  msgid "Waiting"
6552
  msgstr "In attesa"
6553
 
6554
- #: app/libraries/main.php:5339 app/libraries/render.php:382
6555
  msgid "Skin controller does not exist."
6556
  msgstr "Non esiste il controllo dello stile."
6557
 
@@ -6587,23 +6627,23 @@ msgstr "Un nuovo evento è stato aggiunto."
6587
  msgid "Your event is published."
6588
  msgstr "L'evento è stato pubblicato."
6589
 
6590
- #: app/libraries/notifications.php:821
6591
  msgid "to"
6592
  msgstr ""
6593
 
6594
- #: app/libraries/notifications.php:834 app/modules/export/details.php:27
6595
  msgid "+ Add to Google Calendar"
6596
  msgstr "+ Aggiungi a Google Calendar"
6597
 
6598
- #: app/libraries/notifications.php:835 app/modules/export/details.php:28
6599
  msgid "+ iCal export"
6600
  msgstr "+ Esporta iCal"
6601
 
6602
- #: app/libraries/notifications.php:898
6603
  msgid "Yes"
6604
  msgstr ""
6605
 
6606
- #: app/libraries/notifications.php:898
6607
  msgid "No"
6608
  msgstr ""
6609
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
+ "POT-Creation-Date: 2019-10-30 12:41+0330\n"
5
+ "PO-Revision-Date: 2019-10-30 12:43+0330\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: it_IT\n"
82
  msgstr "Impostazioni"
83
 
84
  #: app/features/contextual.php:62 app/features/events.php:2415
85
+ #: app/features/mec/booking.php:439 app/features/mec/support.php:29
86
  #: app/libraries/main.php:554
87
  msgid "Booking Form"
88
  msgstr "Form Prenotazione"
96
  "YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></iframe>"
97
  msgstr ""
98
 
99
+ #: app/features/contextual.php:70 app/features/mec/booking.php:557
100
  #: app/features/mec/support.php:36 app/libraries/main.php:555
101
  msgid "Payment Gateways"
102
  msgstr "Gateway di pagamento"
231
  msgid "Booking"
232
  msgstr "Prenotazione"
233
 
234
+ #: app/features/contextual.php:318 app/features/mec/booking.php:261
235
  #: app/libraries/main.php:551
236
  msgid "Coupons"
237
  msgstr "Coupon"
307
  #: app/features/mec/meta_boxes/search_form.php:514
308
  #: app/features/mec/meta_boxes/search_form.php:575
309
  #: app/features/mec/settings.php:720 app/features/mec/single.php:204
310
+ #: app/features/search.php:67 app/libraries/main.php:4897
311
  #: app/libraries/skins.php:808 app/skins/single.php:559
312
  #: app/skins/single/default.php:185 app/skins/single/default.php:397
313
  #: app/skins/single/m1.php:170 app/skins/single/m2.php:102
317
 
318
  #: app/features/events.php:176 app/features/events.php:3212
319
  #: app/features/fes/form.php:737 app/features/mec.php:336
320
+ #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:4896
321
  msgid "Categories"
322
  msgstr "Categorie"
323
 
324
  #: app/features/events.php:186 app/features/labels.php:71
325
  #: app/features/locations.php:69 app/features/organizers.php:69
326
+ #: app/features/speakers.php:72
327
  #, php-format
328
  msgid "All %s"
329
  msgstr ""
330
 
331
  #: app/features/events.php:187 app/features/labels.php:72
332
  #: app/features/locations.php:70 app/features/organizers.php:70
333
+ #: app/features/speakers.php:73
334
  #, php-format
335
  msgid "Edit %s"
336
  msgstr ""
337
 
338
  #: app/features/events.php:188 app/features/labels.php:73
339
  #: app/features/locations.php:71 app/features/organizers.php:71
340
+ #: app/features/speakers.php:74
341
  #, php-format
342
  msgid "View %s"
343
  msgstr ""
344
 
345
  #: app/features/events.php:189 app/features/labels.php:74
346
  #: app/features/locations.php:72 app/features/organizers.php:72
347
+ #: app/features/speakers.php:75
348
  #, php-format
349
  msgid "Update %s"
350
  msgstr ""
351
 
352
  #: app/features/events.php:190 app/features/labels.php:75
353
  #: app/features/locations.php:73 app/features/organizers.php:73
354
+ #: app/features/speakers.php:76
355
  #, php-format
356
  msgid "Add New %s"
357
  msgstr ""
358
 
359
  #: app/features/events.php:191 app/features/labels.php:76
360
  #: app/features/locations.php:74 app/features/organizers.php:74
361
+ #: app/features/speakers.php:77
362
  #, php-format
363
  msgid "New %s Name"
364
  msgstr ""
365
 
366
  #: app/features/events.php:192 app/features/labels.php:77
367
  #: app/features/locations.php:75 app/features/organizers.php:75
368
+ #: app/features/speakers.php:78
369
  #, php-format
370
  msgid "Popular %s"
371
  msgstr ""
372
 
373
  #: app/features/events.php:193 app/features/labels.php:78
374
  #: app/features/locations.php:76 app/features/organizers.php:76
375
+ #: app/features/speakers.php:79
376
  #, php-format
377
  msgid "Search %s"
378
  msgstr ""
401
  #: app/features/fes.php:224 app/features/fes.php:332
402
  #: app/features/fes/form.php:669 app/features/labels.php:178
403
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
404
+ #: app/features/profile/profile.php:168 app/libraries/notifications.php:886
405
  #: app/modules/booking/steps/form.php:37
406
  msgid "Name"
407
  msgstr "Nome"
409
  #: app/features/events.php:463 app/features/events.php:2408
410
  #: app/features/events.php:2484 app/features/fes.php:224
411
  #: app/features/fes.php:332 app/features/fes/form.php:665
412
+ #: app/features/mec/booking.php:57 app/features/mec/booking.php:490
413
  #: app/features/organizers.php:111 app/features/organizers.php:152
414
+ #: app/features/profile/profile.php:171 app/features/speakers.php:126
415
+ #: app/features/speakers.php:187 app/libraries/main.php:1472
416
+ #: app/libraries/main.php:1541 app/libraries/main.php:2603
417
+ #: app/libraries/notifications.php:887 app/modules/booking/steps/form.php:46
418
  #: app/modules/booking/steps/form.php:84 app/skins/single.php:812
419
  #: app/skins/single.php:867 app/skins/single/default.php:227
420
  #: app/skins/single/default.php:439 app/skins/single/m1.php:107
510
  #: app/features/events.php:2324 app/features/events.php:2337
511
  #: app/features/fes/form.php:631 app/features/locations.php:299
512
  #: app/features/mec/booking.php:108 app/features/mec/booking.php:158
513
+ #: app/features/mec/booking.php:171 app/features/mec/booking.php:187
514
+ #: app/features/mec/booking.php:306 app/features/mec/booking.php:335
515
+ #: app/features/mec/booking.php:383 app/features/mec/booking.php:393
516
+ #: app/features/mec/booking.php:415 app/features/mec/booking.php:425
517
+ #: app/features/mec/dashboard.php:71
518
  #: app/features/mec/meta_boxes/display_options.php:66
519
  #: app/features/mec/meta_boxes/display_options.php:79
520
  #: app/features/mec/meta_boxes/display_options.php:92
550
  #: app/features/mec/modules.php:154 app/features/mec/modules.php:312
551
  #: app/features/mec/notifications.php:54 app/features/mec/notifications.php:111
552
  #: app/features/mec/notifications.php:163
553
+ #: app/features/mec/notifications.php:223
554
+ #: app/features/mec/notifications.php:291
555
+ #: app/features/mec/notifications.php:354
556
+ #: app/features/mec/notifications.php:365
557
+ #: app/features/mec/notifications.php:427
558
+ #: app/features/mec/notifications.php:473 app/features/mec/settings.php:66
559
  #: app/features/mec/settings.php:85 app/features/mec/settings.php:112
560
  #: app/features/mec/settings.php:147 app/features/mec/settings.php:168
561
  #: app/features/mec/settings.php:188 app/features/mec/settings.php:265
792
  #: app/features/events.php:1153 app/features/events.php:3434
793
  #: app/features/events.php:3476 app/features/fes/form.php:707
794
  #: app/features/ix.php:2743 app/features/ix.php:2784
795
+ #: app/features/mec/settings.php:576 app/libraries/main.php:4929
796
  #: app/widgets/single.php:103
797
  msgid "Event Cost"
798
  msgstr "Costo Evento"
799
 
800
  #: app/features/events.php:1157 app/features/fes/form.php:710
801
+ #: app/libraries/main.php:4930 app/skins/single.php:582
802
  #: app/skins/single/default.php:119 app/skins/single/default.php:331
803
  #: app/skins/single/m1.php:49 app/skins/single/modern.php:199
804
  msgid "Cost"
816
 
817
  #: app/features/events.php:1189 app/features/events.php:2485
818
  #: app/features/fes.php:224 app/features/fes.php:332
819
+ #: app/features/mec/booking.php:491 app/features/profile/profile.php:53
820
+ #: app/libraries/main.php:2059 app/libraries/main.php:2661
821
  #: app/modules/booking/steps/tickets.php:22
822
  #: app/modules/next-event/details.php:90 app/skins/single.php:637
823
  #: app/skins/single/default.php:83 app/skins/single/default.php:295
862
  #: app/features/events.php:2313 app/features/events.php:3240
863
  #: app/features/events.php:3434 app/features/events.php:3476
864
  #: app/features/fes/form.php:226 app/features/ix.php:2743
865
+ #: app/features/ix.php:2784 app/features/mec/booking.php:375
866
+ #: app/features/mec/booking.php:407 app/features/mec/styling.php:115
867
  msgid "Title"
868
  msgstr "Titolo"
869
 
874
  #: app/features/events.php:2032 app/features/events.php:2059
875
  #: app/features/events.php:2158 app/features/events.php:2194
876
  #: app/features/events.php:2301 app/features/events.php:2343
877
+ #: app/features/mec/booking.php:318 app/features/mec/booking.php:347
878
+ #: app/features/mec/booking.php:398 app/features/mec/booking.php:430
879
+ #: app/libraries/main.php:2522 app/libraries/main.php:2552
880
+ #: app/libraries/main.php:2581 app/libraries/main.php:2611
881
+ #: app/libraries/main.php:2640 app/libraries/main.php:2669
882
+ #: app/libraries/main.php:2698 app/libraries/main.php:2727
883
+ #: app/libraries/main.php:2749 app/libraries/main.php:2780
884
+ #: app/libraries/main.php:2824 app/libraries/main.php:2868
885
+ #: app/libraries/main.php:2915 app/libraries/main.php:2954
886
  msgid "Remove"
887
  msgstr "Elimina"
888
 
909
  #: app/features/events.php:1336 app/features/events.php:1369
910
  #: app/features/events.php:1430 app/features/fes/form.php:831
911
  #: app/features/mec.php:344 app/features/mec/modules.php:52
912
+ #: app/features/mec/settings.php:624 app/features/speakers.php:62
913
+ #: app/libraries/main.php:559 app/libraries/main.php:4904
914
  #: app/modules/speakers/details.php:18
915
  msgid "Speakers"
916
  msgstr ""
927
  msgstr "Link dell'evento"
928
 
929
  #: app/features/events.php:1464 app/features/events.php:1470
930
+ #: app/features/fes/form.php:686 app/libraries/main.php:4927
931
  msgid "Event Link"
932
  msgstr "Link dell'evento"
933
 
954
  msgstr ""
955
 
956
  #: app/features/events.php:1480 app/features/events.php:1493
957
+ #: app/features/fes/form.php:691 app/libraries/main.php:4928
958
  #: app/skins/single.php:656 app/skins/single/default.php:133
959
  #: app/skins/single/default.php:345 app/skins/single/m1.php:191
960
  #: app/skins/single/m2.php:124 app/skins/single/modern.php:132
1026
  msgstr ""
1027
 
1028
  #: app/features/events.php:1638 app/libraries/book.php:60
1029
+ #: app/libraries/main.php:4932 app/modules/booking/steps/tickets.php:40
1030
  msgid "Tickets"
1031
  msgstr "Biglietto/ticket"
1032
 
1058
  #: app/features/events.php:1996 app/features/events.php:1999
1059
  #: app/features/events.php:2055 app/features/events.php:2272
1060
  #: app/features/events.php:2276 app/features/events.php:2318
1061
+ #: app/features/events.php:2321 app/features/mec/booking.php:379
1062
+ #: app/features/mec/booking.php:382 app/features/mec/booking.php:411
1063
+ #: app/features/mec/booking.php:414
1064
  msgid "Price"
1065
  msgstr "Prezzo"
1066
 
1110
  msgstr "Tasse"
1111
 
1112
  #: app/features/events.php:2132 app/features/events.php:2170
1113
+ #: app/features/mec/booking.php:298 app/features/mec/booking.php:327
1114
  msgid "Fee Title"
1115
  msgstr "Titolo tassa"
1116
 
1117
  #: app/features/events.php:2138 app/features/events.php:2142
1118
  #: app/features/events.php:2175 app/features/events.php:2178
1119
+ #: app/features/mec/booking.php:302 app/features/mec/booking.php:305
1120
+ #: app/features/mec/booking.php:331 app/features/mec/booking.php:334
1121
  msgid "Amount"
1122
  msgstr "Totale"
1123
 
1124
  #: app/features/events.php:2143 app/features/events.php:2179
1125
+ #: app/features/mec/booking.php:306 app/features/mec/booking.php:335
1126
  msgid ""
1127
  "Fee amount, considered as fixed amount if you set the type to amount "
1128
  "otherwise considered as percentage"
1131
  "a totale, altrimenti considerato come percentuale"
1132
 
1133
  #: app/features/events.php:2152 app/features/events.php:2188
1134
+ #: app/features/mec/booking.php:313 app/features/mec/booking.php:342
1135
  msgid "Percent"
1136
  msgstr "Percentuale"
1137
 
1138
  #: app/features/events.php:2153 app/features/events.php:2189
1139
+ #: app/features/mec/booking.php:314 app/features/mec/booking.php:343
1140
  msgid "Amount (Per Ticket)"
1141
  msgstr ""
1142
 
1143
  #: app/features/events.php:2154 app/features/events.php:2190
1144
+ #: app/features/mec/booking.php:315 app/features/mec/booking.php:344
1145
  msgid "Amount (Per Booking)"
1146
  msgstr ""
1147
 
1150
  msgstr ""
1151
 
1152
  #: app/features/events.php:2277 app/features/events.php:2322
1153
+ #: app/features/mec/booking.php:383 app/features/mec/booking.php:415
1154
  #, fuzzy
1155
  #| msgid "Option"
1156
  msgid "Option Price"
1158
 
1159
  #: app/features/events.php:2287 app/features/events.php:2291
1160
  #: app/features/events.php:2331 app/features/events.php:2334
1161
+ #: app/features/mec/booking.php:389 app/features/mec/booking.php:392
1162
+ #: app/features/mec/booking.php:421 app/features/mec/booking.php:424
1163
  #, fuzzy
1164
  #| msgid "Maximum events"
1165
  msgid "Maximum Per Ticket"
1166
  msgstr "Massimo numero di eventi"
1167
 
1168
  #: app/features/events.php:2292 app/features/events.php:2335
1169
+ #: app/features/mec/booking.php:393 app/features/mec/booking.php:425
1170
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
1171
  msgstr ""
1172
 
1173
+ #: app/features/events.php:2481 app/features/mec/booking.php:487
1174
+ #: app/libraries/main.php:2544
1175
  #, fuzzy
1176
  #| msgid "Name"
1177
  msgid "MEC Name"
1178
  msgstr "Nome"
1179
 
1180
+ #: app/features/events.php:2482 app/features/mec/booking.php:488
1181
+ #: app/libraries/main.php:2573
1182
  #, fuzzy
1183
  #| msgid "Email"
1184
  msgid "MEC Email"
1185
  msgstr "Email"
1186
 
1187
+ #: app/features/events.php:2483 app/features/mec/booking.php:489
1188
+ #: app/libraries/main.php:2514
1189
  msgid "Text"
1190
  msgstr "Testo"
1191
 
1192
+ #: app/features/events.php:2486 app/features/mec/booking.php:492
1193
  #: app/features/organizers.php:103 app/features/organizers.php:148
1194
+ #: app/features/speakers.php:118 app/features/speakers.php:183
1195
+ #: app/features/speakers.php:256 app/libraries/main.php:2690
1196
  msgid "Tel"
1197
  msgstr "Tel"
1198
 
1199
+ #: app/features/events.php:2487 app/features/mec/booking.php:493
1200
+ #: app/libraries/main.php:2632
1201
  msgid "File"
1202
  msgstr ""
1203
 
1204
+ #: app/features/events.php:2488 app/features/mec/booking.php:494
1205
+ #: app/libraries/main.php:2719
1206
  msgid "Textarea"
1207
  msgstr "Area di testo"
1208
 
1209
+ #: app/features/events.php:2489 app/features/mec/booking.php:495
1210
+ #: app/libraries/main.php:2772
1211
  msgid "Checkboxes"
1212
  msgstr "Caselle di selezione"
1213
 
1214
+ #: app/features/events.php:2490 app/features/mec/booking.php:496
1215
+ #: app/libraries/main.php:2816
1216
  msgid "Radio Buttons"
1217
  msgstr "Opzioni di selezione"
1218
 
1219
+ #: app/features/events.php:2491 app/features/mec/booking.php:497
1220
  #: app/features/mec/meta_boxes/search_form.php:34
1221
  #: app/features/mec/meta_boxes/search_form.php:41
1222
  #: app/features/mec/meta_boxes/search_form.php:48
1285
  #: app/features/mec/meta_boxes/search_form.php:599
1286
  #: app/features/mec/meta_boxes/search_form.php:606
1287
  #: app/features/mec/meta_boxes/search_form.php:613
1288
+ #: app/features/mec/meta_boxes/search_form.php:620 app/libraries/main.php:2860
1289
  msgid "Dropdown"
1290
  msgstr "Casella di selezione"
1291
 
1292
+ #: app/features/events.php:2492 app/features/mec/booking.php:498
1293
+ #: app/libraries/main.php:2907
1294
  msgid "Agreement"
1295
  msgstr ""
1296
 
1297
+ #: app/features/events.php:2493 app/features/mec/booking.php:499
1298
+ #: app/libraries/main.php:2748
1299
  msgid "Paragraph"
1300
  msgstr "Paragrafo"
1301
 
1334
  #: app/features/mec/meta_boxes/search_form.php:521
1335
  #: app/features/mec/meta_boxes/search_form.php:582
1336
  #: app/features/mec/settings.php:726 app/features/mec/single.php:212
1337
+ #: app/features/search.php:71 app/libraries/main.php:2053
1338
+ #: app/libraries/main.php:4901 app/libraries/skins.php:834
1339
  #: app/skins/single.php:486 app/skins/single.php:907
1340
  #: app/skins/single/default.php:169 app/skins/single/default.php:381
1341
  #: app/skins/single/m1.php:155 app/skins/single/m2.php:87
1360
  #: app/features/organizers.php:58 app/features/organizers.php:204
1361
  #: app/features/organizers.php:260 app/features/organizers.php:262
1362
  #: app/features/organizers.php:271 app/features/search.php:75
1363
+ #: app/libraries/main.php:4903 app/libraries/skins.php:860
1364
  #: app/skins/single.php:795 app/skins/single/default.php:210
1365
  #: app/skins/single/default.php:422 app/skins/single/m1.php:90
1366
  #: app/skins/single/m2.php:22 app/skins/single/modern.php:31
1404
  #: app/features/fes.php:224 app/features/fes.php:332 app/features/ix.php:2743
1405
  #: app/features/ix.php:2784 app/features/labels.php:177
1406
  #: app/features/locations.php:229 app/features/organizers.php:203
1407
+ #: app/features/speakers.php:253
1408
  msgid "ID"
1409
  msgstr "ID"
1410
 
1454
  msgstr "L'evento è stato eliminato!"
1455
 
1456
  #: app/features/fes.php:224 app/features/fes.php:332
1457
+ #: app/features/profile/profile.php:174 app/libraries/main.php:2088
1458
+ #: app/libraries/main.php:4931
1459
  msgid "Ticket"
1460
  msgstr "Ticket"
1461
 
1462
  #: app/features/fes.php:224 app/features/fes.php:332
1463
+ #: app/libraries/main.php:2065
1464
  msgid "Transaction ID"
1465
  msgstr "ID Transazione"
1466
 
1548
 
1549
  #: app/features/fes/form.php:763 app/features/labels.php:61
1550
  #: app/features/labels.php:221 app/features/mec.php:337
1551
+ #: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:4898
1552
  #: app/skins/single.php:685 app/skins/single/default.php:148
1553
  #: app/skins/single/default.php:360 app/skins/single/m1.php:64
1554
  #: app/skins/single/modern.php:214
1894
  #: app/features/ix/export_g_calendar.php:147
1895
  #: app/features/ix/export_g_calendar.php:164
1896
  #: app/features/mec/notifications.php:92 app/features/mec/notifications.php:144
1897
+ #: app/features/mec/notifications.php:198
1898
+ #: app/features/mec/notifications.php:399
1899
  msgid "Add to Google Calendar"
1900
  msgstr "Aggiungi al calendario Google"
1901
 
1902
+ #: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:629
1903
+ #: app/features/mec/modules.php:392 app/features/mec/notifications.php:591
1904
  #: app/features/mec/settings.php:895 app/features/mec/single.php:269
1905
  msgid "Checking ..."
1906
  msgstr "Sto controllando..."
1946
  msgstr ""
1947
 
1948
  #: app/features/ix/import.php:46 app/features/mec/booking.php:91
1949
+ #: app/features/mec/booking.php:264 app/features/mec/booking.php:282
1950
+ #: app/features/mec/booking.php:359
1951
  #: app/features/mec/meta_boxes/display_options.php:150
1952
  #: app/features/mec/meta_boxes/display_options.php:315
1953
  #: app/features/mec/modules.php:70 app/features/mec/modules.php:211
1957
  msgstr ""
1958
 
1959
  #: app/features/ix/import.php:46 app/features/ix/sync.php:22
1960
+ #: app/features/mec/booking.php:91 app/features/mec/booking.php:264
1961
+ #: app/features/mec/booking.php:282 app/features/mec/booking.php:359
1962
  #: app/features/mec/meta_boxes/display_options.php:150
1963
  #: app/features/mec/meta_boxes/display_options.php:315
1964
  #: app/features/mec/meta_boxes/display_options.php:330
2159
 
2160
  #: app/features/ix/sync.php:32 app/features/ix/sync.php:41
2161
  #: app/features/ix/sync.php:52 app/features/ix/sync.php:63
2162
+ #: app/features/mec/notifications.php:342
2163
  msgid "Important Note"
2164
  msgstr "Nota importante"
2165
 
2300
  msgstr ""
2301
 
2302
  #: app/features/labels.php:79 app/features/locations.php:77
2303
+ #: app/features/organizers.php:77 app/features/speakers.php:80
2304
  #, php-format
2305
  msgid "← Back to %s"
2306
  msgstr ""
2348
  msgstr "Immagine in evidenza"
2349
 
2350
  #: app/features/labels.php:118 app/features/labels.php:143
2351
+ #: app/libraries/main.php:5144 app/skins/agenda/render.php:41
2352
  #: app/skins/available_spot/tpl.php:42 app/skins/carousel/render.php:45
2353
  #: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:32
2354
  #: app/skins/daily_view/render.php:52 app/skins/grid/render.php:50
2366
  msgstr ""
2367
 
2368
  #: app/features/labels.php:180 app/features/locations.php:232
2369
+ #: app/features/organizers.php:206 app/features/speakers.php:257
2370
  #: app/modules/booking/steps/tickets.php:38
2371
  msgid "Count"
2372
  msgstr "Numero"
2383
 
2384
  #: app/features/locations.php:59 app/features/mec.php:338
2385
  #: app/features/mec/dashboard.php:243 app/features/mec/meta_boxes/filter.php:96
2386
+ #: app/libraries/main.php:4900
2387
  msgid "Locations"
2388
  msgstr "Luoghi"
2389
 
2416
 
2417
  #: app/features/locations.php:138 app/features/locations.php:180
2418
  #: app/features/organizers.php:127 app/features/organizers.php:160
2419
+ #: app/features/speakers.php:158 app/features/speakers.php:203
2420
  msgid "Thumbnail"
2421
  msgstr "Anteprima"
2422
 
2423
  #: app/features/locations.php:143 app/features/locations.php:183
2424
  #: app/features/organizers.php:132 app/features/organizers.php:163
2425
+ #: app/features/speakers.php:163 app/features/speakers.php:206
2426
  msgid "Upload/Add image"
2427
  msgstr "Carica/Aggiungi immagine"
2428
 
2430
  #: app/features/locations.php:340 app/features/locations.php:347
2431
  #: app/features/organizers.php:133 app/features/organizers.php:164
2432
  #: app/features/organizers.php:299 app/features/organizers.php:306
2433
+ #: app/features/speakers.php:164 app/features/speakers.php:207
2434
  msgid "Remove image"
2435
  msgstr "Rimuovi immagine"
2436
 
2490
  msgid "Don't show map in single event page"
2491
  msgstr "Non mostrare la mappa nella pagina dell'evento singolo"
2492
 
2493
+ #: app/features/locations.php:356 app/libraries/main.php:4934
2494
  #, fuzzy
2495
  #| msgid "Search Locations"
2496
  msgid "Other Locations"
2546
 
2547
  #: app/features/mec.php:339 app/features/mec/dashboard.php:250
2548
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2549
+ #: app/libraries/main.php:4902
2550
  msgid "Organizers"
2551
  msgstr "Organizzatori"
2552
 
2646
  msgid "Search..."
2647
  msgstr "Casella di ricerca"
2648
 
2649
+ #: app/features/mec/booking.php:72 app/features/mec/booking.php:505
2650
+ #: app/features/mec/booking.php:585 app/features/mec/booking.php:594
2651
+ #: app/features/mec/booking.php:604 app/features/mec/booking.php:646
2652
+ #: app/features/mec/booking.php:660 app/features/mec/messages.php:15
2653
  #: app/features/mec/messages.php:51 app/features/mec/messages.php:60
2654
  #: app/features/mec/messages.php:94 app/features/mec/messages.php:103
2655
  #: app/features/mec/modules.php:25 app/features/mec/modules.php:357
2656
  #: app/features/mec/modules.php:367 app/features/mec/modules.php:409
2657
  #: app/features/mec/modules.php:423 app/features/mec/notifications.php:14
2658
+ #: app/features/mec/notifications.php:500
2659
+ #: app/features/mec/notifications.php:512
2660
+ #: app/features/mec/notifications.php:608
2661
+ #: app/features/mec/notifications.php:622 app/features/mec/settings.php:34
2662
  #: app/features/mec/settings.php:844 app/features/mec/settings.php:854
2663
  #: app/features/mec/settings.php:912 app/features/mec/settings.php:926
2664
  #: app/features/mec/single.php:17 app/features/mec/single.php:234
2756
  "Usa ridirezione a questa pagina dopo la prenotazione. Lascialo vuoto se vuoi "
2757
  "disabilitarlo."
2758
 
2759
+ #: app/features/mec/booking.php:165 app/features/mec/booking.php:170
2760
+ #, fuzzy
2761
+ #| msgid "Thank You Page"
2762
+ msgid "Thank You Page Time Interval"
2763
+ msgstr "Pagina dei ringraziamenti"
2764
+
2765
+ #: app/features/mec/booking.php:167
2766
+ msgid "2000 mean 2 seconds"
2767
+ msgstr ""
2768
+
2769
+ #: app/features/mec/booking.php:171
2770
+ msgid ""
2771
+ "Waiting time before redirecting to thank you page. It's in miliseconds so "
2772
+ "2000 means 2 seconds."
2773
+ msgstr ""
2774
+
2775
+ #: app/features/mec/booking.php:182
2776
  msgid "Enable Express Attendees Form"
2777
  msgstr ""
2778
 
2779
+ #: app/features/mec/booking.php:186 app/modules/booking/steps/form.php:52
2780
  msgid "Attendees Form"
2781
  msgstr "Form partecipanti"
2782
 
2783
+ #: app/features/mec/booking.php:187
2784
  msgid ""
2785
  "Users are able to apply first attendee information for other attendees in "
2786
  "the booking form."
2787
  msgstr ""
2788
 
2789
+ #: app/features/mec/booking.php:200
2790
  #, fuzzy
2791
  #| msgid "Enable booking module"
2792
  msgid "Enable Invoice"
2793
  msgstr "Attiva modulo prenotazione"
2794
 
2795
+ #: app/features/mec/booking.php:211
2796
  #, fuzzy
2797
  #| msgid "Enable on booking form"
2798
  msgid "Enable Booking for Ongoing Events"
2799
  msgstr "Attiva sulla form di prenotazione"
2800
 
2801
+ #: app/features/mec/booking.php:216
2802
  msgid "Email verification"
2803
  msgstr "Verifica email"
2804
 
2805
+ #: app/features/mec/booking.php:222
2806
  msgid "Auto verification for free bookings"
2807
  msgstr "Verifica automatica per prenotazioni gratuite"
2808
 
2809
+ #: app/features/mec/booking.php:231
2810
  msgid "Auto verification for paid bookings"
2811
  msgstr "Verifica automatica per prenotazioni a pagamento"
2812
 
2813
+ #: app/features/mec/booking.php:235 app/features/mec/notifications.php:151
2814
  #: app/libraries/main.php:573
2815
  msgid "Booking Confirmation"
2816
  msgstr "Conferma Prenotazione"
2817
 
2818
+ #: app/features/mec/booking.php:241
2819
  msgid "Auto confirmation for free bookings"
2820
  msgstr "Conferma automatica per prenotazioni gratuite"
2821
 
2822
+ #: app/features/mec/booking.php:250
2823
  msgid "Auto confirmation for paid bookings"
2824
  msgstr "Conferma automatica per prenotazioni a pagamento"
2825
 
2826
+ #: app/features/mec/booking.php:269
2827
  msgid "Enable coupons module"
2828
  msgstr "Attiva modulo coupon"
2829
 
2830
+ #: app/features/mec/booking.php:271
2831
  msgid ""
2832
  "After enabling and saving the settings,, you should reload the page to see a "
2833
  "new menu on the Dashboard > Booking"
2834
  msgstr ""
2835
 
2836
+ #: app/features/mec/booking.php:279 app/libraries/main.php:552
2837
  msgid "Taxes / Fees"
2838
  msgstr "Tasse"
2839
 
2840
+ #: app/features/mec/booking.php:287
2841
  msgid "Enable taxes / fees module"
2842
  msgstr "Attiva modulo tasse"
2843
 
2844
+ #: app/features/mec/booking.php:292
2845
  msgid "Add Fee"
2846
  msgstr "Aggiungi Tassa"
2847
 
2848
+ #: app/features/mec/booking.php:356 app/libraries/main.php:553
2849
  msgid "Ticket Variations & Options"
2850
  msgstr ""
2851
 
2852
+ #: app/features/mec/booking.php:364
2853
  #, fuzzy
2854
  #| msgid "Enable coupons module"
2855
  msgid "Enable ticket options module"
2856
  msgstr "Attiva modulo coupon"
2857
 
2858
+ #: app/features/mec/booking.php:369
2859
  msgid "Add Variation / Option"
2860
  msgstr ""
2861
 
2862
+ #: app/features/mec/booking.php:572
2863
  #, fuzzy
2864
  #| msgid "New Organizer Name"
2865
  msgid "Enable Organizer Payment Module"
2866
  msgstr "Nuovo nome Organizzatore"
2867
 
2868
+ #: app/features/mec/booking.php:576
2869
  #, fuzzy
2870
  #| msgid "Organizer Name"
2871
  msgid "Organizer Payment"
2872
  msgstr "Nome Organizzatore"
2873
 
2874
+ #: app/features/mec/booking.php:577
2875
  msgid ""
2876
  "By enabling this module, organizers are able to insert their own payment "
2877
  "credentials for enabled gateways per event and receive the payments directly!"
2878
  msgstr ""
2879
 
2880
+ #: app/features/mec/booking.php:624 app/features/mec/messages.php:78
2881
+ #: app/features/mec/modules.php:387 app/features/mec/notifications.php:586
2882
  #: app/features/mec/settings.php:890 app/features/mec/single.php:264
2883
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:296
2884
  msgid "Saved"
2885
  msgstr "Salvato"
2886
 
2887
+ #: app/features/mec/booking.php:625 app/features/mec/messages.php:79
2888
+ #: app/features/mec/modules.php:388 app/features/mec/notifications.php:587
2889
  #: app/features/mec/settings.php:891 app/features/mec/single.php:265
2890
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:297
2891
  msgid "Settings Saved!"
2892
  msgstr ""
2893
 
2894
+ #: app/features/mec/booking.php:627 app/features/mec/booking.php:649
2895
  #: app/features/mec/modules.php:390 app/features/mec/modules.php:412
2896
+ #: app/features/mec/notifications.php:589
2897
+ #: app/features/mec/notifications.php:611 app/features/mec/settings.php:893
2898
  #: app/features/mec/settings.php:915 app/features/mec/single.php:267
2899
+ #: app/features/mec/single.php:289 app/libraries/main.php:5143
2900
  msgid "Verified"
2901
  msgstr "Verificato"
2902
 
2903
+ #: app/features/mec/booking.php:651 app/features/mec/modules.php:414
2904
+ #: app/features/mec/notifications.php:613 app/features/mec/settings.php:917
2905
  #: app/features/mec/single.php:291
2906
  msgid "Please Refresh Page"
2907
  msgstr "Si prega di ricaricare la pagina"
3862
  #: app/features/mec/meta_boxes/search_form.php:535
3863
  #: app/features/mec/meta_boxes/search_form.php:596
3864
  #: app/features/mec/settings.php:739 app/features/mec/single.php:217
3865
+ #: app/features/search.php:79 app/features/speakers.php:61
3866
+ #: app/features/speakers.php:254 app/libraries/main.php:4905
3867
  #: app/libraries/skins.php:886
3868
  msgid "Speaker"
3869
  msgstr ""
4133
 
4134
  #: app/features/mec/notifications.php:45 app/features/mec/notifications.php:102
4135
  #: app/features/mec/notifications.php:154
4136
+ #: app/features/mec/notifications.php:214
4137
+ #: app/features/mec/notifications.php:282
4138
+ #: app/features/mec/notifications.php:345
4139
+ #: app/features/mec/notifications.php:418
4140
+ #: app/features/mec/notifications.php:464
4141
  msgid "Email Subject"
4142
  msgstr "Oggetto Email"
4143
 
4146
  #: app/features/mec/notifications.php:110
4147
  #: app/features/mec/notifications.php:158
4148
  #: app/features/mec/notifications.php:162
4149
+ #: app/features/mec/notifications.php:218
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4150
  #: app/features/mec/notifications.php:222
4151
+ #: app/features/mec/notifications.php:286
4152
  #: app/features/mec/notifications.php:290
4153
+ #: app/features/mec/notifications.php:349
4154
  #: app/features/mec/notifications.php:353
4155
  #: app/features/mec/notifications.php:364
4156
+ #: app/features/mec/notifications.php:422
4157
  #: app/features/mec/notifications.php:426
4158
+ #: app/features/mec/notifications.php:468
4159
  #: app/features/mec/notifications.php:472
4160
+ msgid "Custom Recipients"
4161
+ msgstr "Altri destinatari"
4162
+
4163
+ #: app/features/mec/notifications.php:54 app/features/mec/notifications.php:111
4164
+ #: app/features/mec/notifications.php:163
4165
+ #: app/features/mec/notifications.php:223
4166
+ #: app/features/mec/notifications.php:291
4167
+ #: app/features/mec/notifications.php:354
4168
+ #: app/features/mec/notifications.php:365
4169
+ #: app/features/mec/notifications.php:427
4170
+ #: app/features/mec/notifications.php:473
4171
  msgid "Insert comma separated emails for multiple recipients."
4172
  msgstr "Puoi inserire più destinatari email separati da virgola."
4173
 
4174
+ #: app/features/mec/notifications.php:61 app/features/mec/notifications.php:234
4175
+ #: app/features/mec/notifications.php:298
4176
  msgid "Send the email to event organizer"
4177
  msgstr "Invia l'email all'organizzatore dell'evento"
4178
 
4179
  #: app/features/mec/notifications.php:64 app/features/mec/notifications.php:117
4180
  #: app/features/mec/notifications.php:169
4181
+ #: app/features/mec/notifications.php:241
4182
+ #: app/features/mec/notifications.php:301
4183
+ #: app/features/mec/notifications.php:371
4184
+ #: app/features/mec/notifications.php:433
4185
+ #: app/features/mec/notifications.php:479
4186
  msgid "Email Content"
4187
  msgstr "Contenuto Email"
4188
 
4189
  #: app/features/mec/notifications.php:67 app/features/mec/notifications.php:120
4190
  #: app/features/mec/notifications.php:172
4191
+ #: app/features/mec/notifications.php:244
4192
+ #: app/features/mec/notifications.php:304
4193
+ #: app/features/mec/notifications.php:374
4194
+ #: app/features/mec/notifications.php:436
4195
+ #: app/features/mec/notifications.php:482
4196
  msgid "You can use following placeholders"
4197
  msgstr "Puoi usare i seguenti placeholder"
4198
 
4199
  #: app/features/mec/notifications.php:69 app/features/mec/notifications.php:122
4200
  #: app/features/mec/notifications.php:174
4201
+ #: app/features/mec/notifications.php:246
4202
+ #: app/features/mec/notifications.php:306
4203
+ #: app/features/mec/notifications.php:376
4204
  msgid "First name of attendee"
4205
  msgstr "Nome partecipante"
4206
 
4207
  #: app/features/mec/notifications.php:70 app/features/mec/notifications.php:123
4208
  #: app/features/mec/notifications.php:175
4209
+ #: app/features/mec/notifications.php:247
4210
+ #: app/features/mec/notifications.php:307
4211
+ #: app/features/mec/notifications.php:377
4212
  msgid "Last name of attendee"
4213
  msgstr "Cognome partecipante"
4214
 
4215
  #: app/features/mec/notifications.php:71 app/features/mec/notifications.php:124
4216
  #: app/features/mec/notifications.php:176
4217
+ #: app/features/mec/notifications.php:248
4218
+ #: app/features/mec/notifications.php:308
4219
+ #: app/features/mec/notifications.php:378
4220
  msgid "Email of attendee"
4221
  msgstr "Email partecipante"
4222
 
4223
  #: app/features/mec/notifications.php:72 app/features/mec/notifications.php:125
4224
  #: app/features/mec/notifications.php:177
4225
+ #: app/features/mec/notifications.php:249
4226
+ #: app/features/mec/notifications.php:309
4227
+ #: app/features/mec/notifications.php:379
4228
  msgid "Booked date of event"
4229
  msgstr "Data prenotata per l'evento"
4230
 
4231
  #: app/features/mec/notifications.php:73 app/features/mec/notifications.php:126
4232
  #: app/features/mec/notifications.php:178
4233
+ #: app/features/mec/notifications.php:250
4234
+ #: app/features/mec/notifications.php:310
4235
+ #: app/features/mec/notifications.php:380
4236
  #, fuzzy
4237
  #| msgid "Booked date of event"
4238
  msgid "Booked time of event"
4240
 
4241
  #: app/features/mec/notifications.php:74 app/features/mec/notifications.php:127
4242
  #: app/features/mec/notifications.php:179
4243
+ #: app/features/mec/notifications.php:251
4244
+ #: app/features/mec/notifications.php:311
4245
+ #: app/features/mec/notifications.php:381
4246
  msgid "Booking Price"
4247
  msgstr ""
4248
 
4249
  #: app/features/mec/notifications.php:75 app/features/mec/notifications.php:128
4250
  #: app/features/mec/notifications.php:180
 
 
 
 
 
 
 
 
 
 
4251
  #: app/features/mec/notifications.php:252
4252
  #: app/features/mec/notifications.php:312
4253
  #: app/features/mec/notifications.php:382
4254
  #: app/features/mec/notifications.php:442
4255
  #: app/features/mec/notifications.php:488
4256
+ msgid "Your website title"
4257
+ msgstr "Titolo del tuo sito web"
4258
 
4259
+ #: app/features/mec/notifications.php:76 app/features/mec/notifications.php:129
4260
+ #: app/features/mec/notifications.php:181
4261
  #: app/features/mec/notifications.php:253
4262
  #: app/features/mec/notifications.php:313
4263
  #: app/features/mec/notifications.php:383
4264
  #: app/features/mec/notifications.php:443
4265
  #: app/features/mec/notifications.php:489
4266
+ msgid "Your website URL"
4267
+ msgstr "URL del tuo sito web"
4268
+
4269
+ #: app/features/mec/notifications.php:77 app/features/mec/notifications.php:130
4270
+ #: app/features/mec/notifications.php:182
4271
+ #: app/features/mec/notifications.php:254
4272
+ #: app/features/mec/notifications.php:314
4273
+ #: app/features/mec/notifications.php:384
4274
+ #: app/features/mec/notifications.php:444
4275
+ #: app/features/mec/notifications.php:490
4276
  msgid "Your website description"
4277
  msgstr "Descrizione del tuo sito web"
4278
 
4279
  #: app/features/mec/notifications.php:78 app/features/mec/notifications.php:131
4280
  #: app/features/mec/notifications.php:183
4281
+ #: app/features/mec/notifications.php:255
4282
+ #: app/features/mec/notifications.php:315
4283
+ #: app/features/mec/notifications.php:385
4284
  msgid "Event title"
4285
  msgstr "Titolo evento"
4286
 
4287
  #: app/features/mec/notifications.php:79 app/features/mec/notifications.php:132
4288
  #: app/features/mec/notifications.php:184
4289
+ #: app/features/mec/notifications.php:256
4290
+ #: app/features/mec/notifications.php:316
4291
+ #: app/features/mec/notifications.php:386
4292
  #, fuzzy
4293
  #| msgid "Event Link"
4294
  msgid "Event link"
4296
 
4297
  #: app/features/mec/notifications.php:80 app/features/mec/notifications.php:133
4298
  #: app/features/mec/notifications.php:185
4299
+ #: app/features/mec/notifications.php:257
4300
+ #: app/features/mec/notifications.php:317
4301
+ #: app/features/mec/notifications.php:387
4302
  #, fuzzy
4303
  #| msgid "Organizer name of booked event"
4304
  msgid "Speaker name of booked event"
4306
 
4307
  #: app/features/mec/notifications.php:81 app/features/mec/notifications.php:134
4308
  #: app/features/mec/notifications.php:186
4309
+ #: app/features/mec/notifications.php:258
4310
+ #: app/features/mec/notifications.php:318
4311
+ #: app/features/mec/notifications.php:388
4312
  msgid "Organizer name of booked event"
4313
  msgstr "Nome dell'organizzatore che ha prenotato l'evento"
4314
 
4315
  #: app/features/mec/notifications.php:82 app/features/mec/notifications.php:135
4316
  #: app/features/mec/notifications.php:187
4317
+ #: app/features/mec/notifications.php:259
4318
+ #: app/features/mec/notifications.php:319
4319
+ #: app/features/mec/notifications.php:389
4320
  msgid "Organizer tel of booked event"
4321
  msgstr "Telefono dell'organizzatore che ha prenotato l'evento"
4322
 
4323
  #: app/features/mec/notifications.php:83 app/features/mec/notifications.php:136
4324
  #: app/features/mec/notifications.php:188
4325
+ #: app/features/mec/notifications.php:260
4326
+ #: app/features/mec/notifications.php:320
4327
+ #: app/features/mec/notifications.php:390
4328
  msgid "Organizer email of booked event"
4329
  msgstr "Email dell'organizzatore che ha prenotato l'evento"
4330
 
4331
  #: app/features/mec/notifications.php:84 app/features/mec/notifications.php:137
4332
  #: app/features/mec/notifications.php:189
4333
+ #: app/features/mec/notifications.php:261
4334
+ #: app/features/mec/notifications.php:321
4335
+ #: app/features/mec/notifications.php:391
4336
  msgid "Location name of booked event"
4337
  msgstr "Nome del luogo dell'evento prenotato"
4338
 
4339
  #: app/features/mec/notifications.php:85 app/features/mec/notifications.php:138
4340
  #: app/features/mec/notifications.php:190
4341
+ #: app/features/mec/notifications.php:262
4342
+ #: app/features/mec/notifications.php:322
4343
+ #: app/features/mec/notifications.php:392
4344
  msgid "Location address of booked event"
4345
  msgstr "Indirizzo del luogo dell'evento prenotato"
4346
 
4347
+ #: app/features/mec/notifications.php:86 app/features/mec/notifications.php:264
4348
+ #: app/features/mec/notifications.php:324
4349
  msgid "Full Attendee info such as booking form data, name, email etc."
4350
  msgstr ""
4351
  "Informazioni complete partecipanti (dati di prenotazione, nome, email, etc.)."
4352
 
4353
  #: app/features/mec/notifications.php:87 app/features/mec/notifications.php:192
4354
+ #: app/features/mec/notifications.php:394
4355
  msgid "Invoice Link"
4356
  msgstr ""
4357
 
4358
  #: app/features/mec/notifications.php:88 app/features/mec/notifications.php:140
4359
  #: app/features/mec/notifications.php:193
4360
+ #: app/features/mec/notifications.php:265
4361
+ #: app/features/mec/notifications.php:325
4362
+ #: app/features/mec/notifications.php:395
4363
  msgid "Total Attendees"
4364
  msgstr ""
4365
 
4366
  #: app/features/mec/notifications.php:89 app/features/mec/notifications.php:141
4367
+ #: app/features/mec/notifications.php:195
4368
+ #: app/features/mec/notifications.php:396
4369
  #, fuzzy
4370
  #| msgid "Ticket Name"
4371
  msgid "Ticket name"
4372
  msgstr "Nome biglietto/ticket"
4373
 
4374
  #: app/features/mec/notifications.php:90 app/features/mec/notifications.php:142
4375
+ #: app/features/mec/notifications.php:196
4376
+ #: app/features/mec/notifications.php:397
4377
  #, fuzzy
4378
  #| msgid "Ticket Name"
4379
  msgid "Ticket time"
4380
  msgstr "Nome biglietto/ticket"
4381
 
4382
  #: app/features/mec/notifications.php:91 app/features/mec/notifications.php:143
4383
+ #: app/features/mec/notifications.php:197
4384
+ #: app/features/mec/notifications.php:398
4385
  msgid "Download ICS file"
4386
  msgstr ""
4387
 
4404
  "dell'amministratore."
4405
 
4406
  #: app/features/mec/notifications.php:191
4407
+ #: app/features/mec/notifications.php:393
4408
  msgid "Booking cancellation link."
4409
  msgstr "Link per la cancellazione della prenotazione."
4410
 
4411
+ #: app/features/mec/notifications.php:194
4412
+ #, fuzzy
4413
+ #| msgid "Tickets"
4414
+ msgid "Amount Tickets"
4415
+ msgstr "Biglietto/ticket"
4416
+
4417
+ #: app/features/mec/notifications.php:204 app/libraries/main.php:574
4418
  #, fuzzy
4419
  #| msgid "Booking cancellation link."
4420
  msgid "Booking Cancellation"
4421
  msgstr "Link per la cancellazione della prenotazione."
4422
 
4423
+ #: app/features/mec/notifications.php:208
4424
  #, fuzzy
4425
  #| msgid "Enable new event notification"
4426
  msgid "Enable cancellation notification"
4427
  msgstr "Attiva notifica nuovo evento"
4428
 
4429
+ #: app/features/mec/notifications.php:212
4430
  #, fuzzy
4431
  #| msgid "It sends to attendee after booking for notifying him/her."
4432
  msgid ""
4434
  "them."
4435
  msgstr "Invia una notifica ai partecipanti dell'avvenuta prenotazione."
4436
 
4437
+ #: app/features/mec/notifications.php:230
4438
  #, fuzzy
4439
  #| msgid "Send the email to event organizer"
4440
  msgid "Send the email to admin"
4441
  msgstr "Invia l'email all'organizzatore dell'evento"
4442
 
4443
+ #: app/features/mec/notifications.php:238
4444
  #, fuzzy
4445
  #| msgid "Send the email to event organizer"
4446
  msgid "Send the email to booking user"
4447
  msgstr "Invia l'email all'organizzatore dell'evento"
4448
 
4449
+ #: app/features/mec/notifications.php:263
4450
+ #: app/features/mec/notifications.php:323
4451
  msgid "Admin booking management link."
4452
  msgstr "Link amministratore gestione prenotazioni."
4453
 
4454
+ #: app/features/mec/notifications.php:272 app/libraries/main.php:576
4455
  msgid "Admin"
4456
  msgstr ""
4457
 
4458
+ #: app/features/mec/notifications.php:276
4459
  #, fuzzy
4460
  #| msgid "Enable new event notification"
4461
  msgid "Enable admin notification"
4462
  msgstr "Attiva notifica nuovo evento"
4463
 
4464
+ #: app/features/mec/notifications.php:280
4465
  msgid "It sends to admin to notify him/her that a new booking received."
4466
  msgstr "Invia notifica all'amministratore per una nuova prenotazione ricevuta."
4467
 
4468
+ #: app/features/mec/notifications.php:332 app/libraries/main.php:575
4469
  #: app/libraries/notifications.php:478
4470
  msgid "Booking Reminder"
4471
  msgstr ""
4472
 
4473
+ #: app/features/mec/notifications.php:336
4474
  msgid "Enable booking reminder notification"
4475
  msgstr ""
4476
 
4477
+ #: app/features/mec/notifications.php:342
4478
  #, php-format
4479
  msgid ""
4480
  "Set a cronjob to call %s file once per day otherwise it won't send the "
4482
  "send the reminders multiple times."
4483
  msgstr ""
4484
 
4485
+ #: app/features/mec/notifications.php:342
4486
  msgid "only once per day"
4487
  msgstr ""
4488
 
4489
+ #: app/features/mec/notifications.php:360
4490
  msgid "Days"
4491
  msgstr ""
4492
 
4493
+ #: app/features/mec/notifications.php:408 app/features/mec/support-page.php:80
4494
  #: app/libraries/main.php:577
4495
  msgid "New Event"
4496
  msgstr "Nuovo Evento"
4497
 
4498
+ #: app/features/mec/notifications.php:412
4499
  msgid "Enable new event notification"
4500
  msgstr "Attiva notifica nuovo evento"
4501
 
4502
+ #: app/features/mec/notifications.php:416
4503
  msgid ""
4504
  "It sends after adding a new event from frontend event submission or from "
4505
  "website backend."
4506
  msgstr "Invia dopo l'inserimento di un nuovo evento da frontend o da backend."
4507
 
4508
+ #: app/features/mec/notifications.php:438
4509
+ #: app/features/mec/notifications.php:484
4510
  msgid "Title of event"
4511
  msgstr "Titolo dell'evento"
4512
 
4513
+ #: app/features/mec/notifications.php:439
4514
+ #: app/features/mec/notifications.php:485
4515
  #, fuzzy
4516
  #| msgid "Title of event"
4517
  msgid "Link of event"
4518
  msgstr "Titolo dell'evento"
4519
 
4520
+ #: app/features/mec/notifications.php:440
4521
+ #: app/features/mec/notifications.php:486
4522
  msgid "Status of event"
4523
  msgstr "Stato dell'evento"
4524
 
4525
+ #: app/features/mec/notifications.php:441
4526
+ #: app/features/mec/notifications.php:487 app/features/mec/settings.php:654
4527
  #: app/features/mec/settings.php:658
4528
  msgid "Event Note"
4529
  msgstr "Note dell'evento"
4530
 
4531
+ #: app/features/mec/notifications.php:445
4532
+ #: app/features/mec/notifications.php:491
4533
  msgid "Admin events management link."
4534
  msgstr "Link amministratore gestione eventi."
4535
 
4536
+ #: app/features/mec/notifications.php:454 app/libraries/main.php:578
4537
  #, fuzzy
4538
  #| msgid "The event published."
4539
  msgid "User Event Publishing"
4540
  msgstr "L'evento è stato pubblicato."
4541
 
4542
+ #: app/features/mec/notifications.php:458
4543
  #, fuzzy
4544
  #| msgid "Enable new event notification"
4545
  msgid "Enable user event publishing notification"
4546
  msgstr "Attiva notifica nuovo evento"
4547
 
4548
+ #: app/features/mec/notifications.php:462
4549
  #, fuzzy
4550
  #| msgid ""
4551
  #| "It sends after adding a new event from frontend event submission or from "
4648
  msgstr ""
4649
 
4650
  #: app/features/mec/settings.php:136 app/features/mec/settings.php:146
4651
+ #: app/libraries/main.php:4909
4652
  msgid "Weekdays"
4653
  msgstr "Settimanali"
4654
 
5813
  msgid "eg. https://webnus.net"
5814
  msgstr "http://webnus.biz"
5815
 
5816
+ #: app/features/organizers.php:311 app/libraries/main.php:4933
5817
  #: app/skins/single.php:845
5818
  msgid "Other Organizers"
5819
  msgstr ""
5839
  msgid "#"
5840
  msgstr ""
5841
 
5842
+ #: app/features/profile/profile.php:56 app/libraries/main.php:2929
5843
  msgid "Status"
5844
  msgstr ""
5845
 
5846
+ #: app/features/profile/profile.php:59 app/libraries/main.php:2074
5847
  msgid "Attendees"
5848
  msgstr ""
5849
 
5876
  msgid "No bookings found!"
5877
  msgstr "Nessuna prenotazione trovata!"
5878
 
5879
+ #: app/features/search.php:87 app/libraries/main.php:4899
5880
  msgid "label"
5881
  msgstr ""
5882
 
5911
  msgid "All of the day"
5912
  msgstr "Tutti del giorno"
5913
 
5914
+ #: app/features/speakers.php:110 app/features/speakers.php:179
5915
+ #: app/features/speakers.php:255
5916
  #, fuzzy
5917
  #| msgid "Title"
5918
  msgid "Job Title"
5919
  msgstr "Titolo"
5920
 
5921
+ #: app/features/speakers.php:113 app/features/speakers.php:180
5922
  msgid "Insert speaker job title."
5923
  msgstr ""
5924
 
5925
+ #: app/features/speakers.php:121 app/features/speakers.php:184
5926
  #, fuzzy
5927
  #| msgid "Insert organizer phone number."
5928
  msgid "Insert speaker phone number."
5929
  msgstr "Inserisci il numero di telefono dell'organizzatore."
5930
 
5931
+ #: app/features/speakers.php:129 app/features/speakers.php:188
5932
  #, fuzzy
5933
  #| msgid "Insert organizer email address."
5934
  msgid "Insert speaker email address."
5935
  msgstr "Inserisci l'indirizzo email dell'organizzatore."
5936
 
5937
+ #: app/features/speakers.php:134 app/features/speakers.php:191
5938
  #, fuzzy
5939
  #| msgid "Facebook Page Link"
5940
  msgid "Facebook Page"
5941
  msgstr "Link della pagina Facebook"
5942
 
5943
+ #: app/features/speakers.php:137 app/features/speakers.php:192
5944
  #, fuzzy
5945
  #| msgid "Import from Facebook Calendar"
5946
  msgid "Insert URL of Facebook Page"
5947
  msgstr "Importa dal calendario Facebook"
5948
 
5949
+ #: app/features/speakers.php:142 app/features/speakers.php:195
5950
  msgid "Instagram"
5951
  msgstr ""
5952
 
5953
+ #: app/features/speakers.php:145 app/features/speakers.php:196
5954
  #, fuzzy
5955
  #| msgid "Insert -1 for unlimited usage"
5956
  msgid "Insert URL of Instagram"
5957
  msgstr "Inserire -1 per utilizzo illimitato"
5958
 
5959
+ #: app/features/speakers.php:150 app/features/speakers.php:199
5960
  #, fuzzy
5961
  #| msgid "Twitter"
5962
  msgid "Twitter Page"
5963
  msgstr "Twitter"
5964
 
5965
+ #: app/features/speakers.php:153 app/features/speakers.php:200
5966
  #, fuzzy
5967
  #| msgid "Insert -1 for unlimited usage"
5968
  msgid "Insert URL of Twitter Page"
5969
  msgstr "Inserire -1 per utilizzo illimitato"
5970
 
5971
+ #: app/features/speakers.php:315
5972
  msgid "Sorry, You must insert speaker name!"
5973
  msgstr ""
5974
 
5975
+ #: app/features/speakers.php:364
5976
+ msgid ""
5977
+ "Note: You can use the speakers in your event edit/add page > hourly schedule "
5978
+ "section and speaker widget section!"
5979
+ msgstr ""
5980
+
5981
  #: app/libraries/book.php:60
5982
  #, php-format
5983
  msgid "%s Price"
5984
  msgstr ""
5985
 
5986
+ #: app/libraries/book.php:561
5987
  msgid "Discount"
5988
  msgstr "Sconto"
5989
 
5990
+ #: app/libraries/book.php:651 app/modules/booking/default.php:305
5991
  #: app/modules/booking/default.php:403
5992
  msgid "Download Invoice"
5993
  msgstr ""
6118
  msgid "Slider View"
6119
  msgstr "Visualizza slider"
6120
 
6121
+ #: app/libraries/main.php:382 app/libraries/main.php:4911
6122
  msgid "SU"
6123
  msgstr "D"
6124
 
6125
+ #: app/libraries/main.php:383 app/libraries/main.php:4912
6126
  msgid "MO"
6127
  msgstr "L"
6128
 
6129
+ #: app/libraries/main.php:384 app/libraries/main.php:4913
6130
  msgid "TU"
6131
  msgstr "M"
6132
 
6133
+ #: app/libraries/main.php:385 app/libraries/main.php:4914
6134
  msgid "WE"
6135
  msgstr "M"
6136
 
6137
+ #: app/libraries/main.php:386 app/libraries/main.php:4915
6138
  msgid "TH"
6139
  msgstr "G"
6140
 
6141
+ #: app/libraries/main.php:387 app/libraries/main.php:4916
6142
  msgid "FR"
6143
  msgstr "V"
6144
 
6145
+ #: app/libraries/main.php:388 app/libraries/main.php:4917
6146
  msgid "SA"
6147
  msgstr "S"
6148
 
6286
  msgid "Invoice is invalid."
6287
  msgstr "Token di sicurezza non valido."
6288
 
6289
+ #: app/libraries/main.php:2009
6290
+ msgid ""
6291
+ "Your booking still is not confirmed. You able download it after confirmation!"
6292
+ msgstr ""
6293
+
6294
+ #: app/libraries/main.php:2009
6295
+ #, fuzzy
6296
+ #| msgid "Booking Confirmation"
6297
+ msgid "Booking Not Confirmed."
6298
+ msgstr "Conferma Prenotazione"
6299
+
6300
+ #: app/libraries/main.php:2015
6301
  msgid "Cannot find the booking!"
6302
  msgstr ""
6303
 
6304
+ #: app/libraries/main.php:2015
6305
  msgid "Booking is invalid."
6306
  msgstr ""
6307
 
6308
+ #: app/libraries/main.php:2044
6309
  #, php-format
6310
  msgid "%s Invoice"
6311
  msgstr ""
6312
 
6313
+ #: app/libraries/main.php:2118
6314
  msgid "Billing"
6315
  msgstr ""
6316
 
6317
+ #: app/libraries/main.php:2129
6318
  msgid "Total"
6319
  msgstr ""
6320
 
6321
+ #: app/libraries/main.php:2186
6322
  #, fuzzy
6323
  #| msgid "Request is invalid!"
6324
  msgid "Request is not valid."
6325
  msgstr "Richiesta non valida!"
6326
 
6327
+ #: app/libraries/main.php:2186
6328
  msgid "iCal export stopped!"
6329
  msgstr "esportazione iCal annullata!"
6330
 
6331
+ #: app/libraries/main.php:2513 app/libraries/main.php:2543
6332
+ #: app/libraries/main.php:2572 app/libraries/main.php:2602
6333
+ #: app/libraries/main.php:2631 app/libraries/main.php:2660
6334
+ #: app/libraries/main.php:2689 app/libraries/main.php:2718
6335
+ #: app/libraries/main.php:2747 app/libraries/main.php:2771
6336
+ #: app/libraries/main.php:2815 app/libraries/main.php:2859
6337
+ #: app/libraries/main.php:2906 app/libraries/main.php:2953
6338
  msgid "Sort"
6339
  msgstr "Ordina"
6340
 
6341
+ #: app/libraries/main.php:2519 app/libraries/main.php:2549
6342
+ #: app/libraries/main.php:2578 app/libraries/main.php:2608
6343
+ #: app/libraries/main.php:2637 app/libraries/main.php:2666
6344
+ #: app/libraries/main.php:2695 app/libraries/main.php:2724
6345
+ #: app/libraries/main.php:2777 app/libraries/main.php:2821
6346
+ #: app/libraries/main.php:2865 app/libraries/main.php:2912
6347
  msgid "Required Field"
6348
  msgstr "Campo obbligatorio"
6349
 
6350
+ #: app/libraries/main.php:2525 app/libraries/main.php:2555
6351
+ #: app/libraries/main.php:2584 app/libraries/main.php:2614
6352
+ #: app/libraries/main.php:2643 app/libraries/main.php:2672
6353
+ #: app/libraries/main.php:2701 app/libraries/main.php:2730
6354
+ #: app/libraries/main.php:2783 app/libraries/main.php:2827
6355
+ #: app/libraries/main.php:2871 app/libraries/main.php:2918
6356
  msgid "Insert a label for this field"
6357
  msgstr "Inserisci una etichetta per questo campo"
6358
 
6359
+ #: app/libraries/main.php:2753
6360
  msgid "HTML and shortcode are allowed."
6361
  msgstr "HTML e shortcode sono ammessi."
6362
 
6363
+ #: app/libraries/main.php:2796 app/libraries/main.php:2840
6364
+ #: app/libraries/main.php:2884
6365
  msgid "Option"
6366
  msgstr "Opzione"
6367
 
6368
+ #: app/libraries/main.php:2918
6369
  #, php-format
6370
  msgid "Instead of %s, the page title with a link will be show."
6371
  msgstr ""
6372
 
6373
+ #: app/libraries/main.php:2920
6374
  msgid "Agreement Page"
6375
  msgstr ""
6376
 
6377
+ #: app/libraries/main.php:2931
6378
  msgid "Checked by default"
6379
  msgstr ""
6380
 
6381
+ #: app/libraries/main.php:2932
6382
  msgid "Unchecked by default"
6383
  msgstr ""
6384
 
6385
+ #: app/libraries/main.php:2955
6386
  msgid "Insert a label for this option"
6387
  msgstr "Inserisci una etichetta per questa opzione"
6388
 
6389
+ #: app/libraries/main.php:2970
6390
  msgid "Free"
6391
  msgstr "Gratuito"
6392
 
6393
+ #: app/libraries/main.php:3576 app/libraries/main.php:5158
6394
  #, fuzzy
6395
  #| msgid "M.E. Calendar"
6396
  msgid "M.E. Calender"
6397
  msgstr "Calendario"
6398
 
6399
+ #: app/libraries/main.php:3731
6400
  #, php-format
6401
  msgid "Copy of %s"
6402
  msgstr "Copia di %s"
6403
 
6404
+ #: app/libraries/main.php:4404
6405
  msgid "Booked an event."
6406
  msgstr "Prenotato un evento."
6407
 
6408
+ #: app/libraries/main.php:4445
6409
  #, php-format
6410
  msgid "%s booked %s event."
6411
  msgstr "%s ha prenotato l'evento %s."
6412
 
6413
+ #: app/libraries/main.php:4894
6414
  msgid "Taxonomies"
6415
  msgstr ""
6416
 
6417
+ #: app/libraries/main.php:4896
6418
  msgid "Category Plural Label"
6419
  msgstr ""
6420
 
6421
+ #: app/libraries/main.php:4897
6422
  msgid "Category Singular Label"
6423
  msgstr ""
6424
 
6425
+ #: app/libraries/main.php:4898
6426
  msgid "Label Plural Label"
6427
  msgstr ""
6428
 
6429
+ #: app/libraries/main.php:4899
6430
  msgid "Label Singular Label"
6431
  msgstr ""
6432
 
6433
+ #: app/libraries/main.php:4900
6434
  msgid "Location Plural Label"
6435
  msgstr ""
6436
 
6437
+ #: app/libraries/main.php:4901
6438
  msgid "Location Singular Label"
6439
  msgstr ""
6440
 
6441
+ #: app/libraries/main.php:4902
6442
  msgid "Organizer Plural Label"
6443
  msgstr ""
6444
 
6445
+ #: app/libraries/main.php:4903
6446
  msgid "Organizer Singular Label"
6447
  msgstr ""
6448
 
6449
+ #: app/libraries/main.php:4904
6450
  #, fuzzy
6451
  #| msgid "Search Labels"
6452
  msgid "Speaker Plural Label"
6453
  msgstr "Cerca etichette"
6454
 
6455
+ #: app/libraries/main.php:4905
6456
  #, fuzzy
6457
  #| msgid "Popular Labels"
6458
  msgid "Speaker Singular Label"
6459
  msgstr "Etichette frequenti"
6460
 
6461
+ #: app/libraries/main.php:4911
6462
  msgid "Sunday abbreviation"
6463
  msgstr ""
6464
 
6465
+ #: app/libraries/main.php:4912
6466
  msgid "Monday abbreviation"
6467
  msgstr ""
6468
 
6469
+ #: app/libraries/main.php:4913
6470
  msgid "Tuesday abbreviation"
6471
  msgstr ""
6472
 
6473
+ #: app/libraries/main.php:4914
6474
  msgid "Wednesday abbreviation"
6475
  msgstr ""
6476
 
6477
+ #: app/libraries/main.php:4915
6478
  msgid "Thursday abbreviation"
6479
  msgstr ""
6480
 
6481
+ #: app/libraries/main.php:4916
6482
  msgid "Friday abbreviation"
6483
  msgstr ""
6484
 
6485
+ #: app/libraries/main.php:4917
6486
  msgid "Saturday abbreviation"
6487
  msgstr ""
6488
 
6489
+ #: app/libraries/main.php:4921
6490
  msgid "Others"
6491
  msgstr ""
6492
 
6493
+ #: app/libraries/main.php:4923
6494
  msgid "Booking Success Message"
6495
  msgstr ""
6496
 
6497
+ #: app/libraries/main.php:4923
6498
  msgid ""
6499
  "Thanks for your booking. Your tickets booked, booking verification might be "
6500
  "needed, please check your email."
6503
  "essere necessario la verifica della prenotazione, si prega di controllare la "
6504
  "posta elettronica."
6505
 
6506
+ #: app/libraries/main.php:4924 app/widgets/single.php:131
6507
  msgid "Register Button"
6508
  msgstr ""
6509
 
6510
+ #: app/libraries/main.php:4924 app/skins/available_spot/tpl.php:224
6511
  #: app/skins/carousel/render.php:158 app/skins/carousel/render.php:194
6512
  #: app/skins/grid/render.php:118 app/skins/grid/render.php:164
6513
  #: app/skins/grid/render.php:207 app/skins/grid/render.php:235
6524
  msgid "REGISTER"
6525
  msgstr "REGISTRA"
6526
 
6527
+ #: app/libraries/main.php:4925
6528
  msgid "View Detail Button"
6529
  msgstr ""
6530
 
6531
+ #: app/libraries/main.php:4925 app/skins/carousel/render.php:158
6532
  #: app/skins/carousel/render.php:194 app/skins/grid/render.php:118
6533
  #: app/skins/grid/render.php:164 app/skins/grid/render.php:207
6534
  #: app/skins/grid/render.php:235 app/skins/list/render.php:108
6539
  msgid "View Detail"
6540
  msgstr "Visualizza dettaglio"
6541
 
6542
+ #: app/libraries/main.php:4926
6543
  msgid "Event Detail Button"
6544
  msgstr ""
6545
 
6546
+ #: app/libraries/main.php:4926 app/skins/countdown/tpl.php:244
6547
  msgid "Event Detail"
6548
  msgstr "Dettaglio evento"
6549
 
6550
+ #: app/libraries/main.php:4928
6551
  msgid "More Info Link"
6552
  msgstr ""
6553
 
6554
+ #: app/libraries/main.php:4931
6555
  msgid "Ticket (Singular)"
6556
  msgstr ""
6557
 
6558
+ #: app/libraries/main.php:4932
6559
  msgid "Tickets (Plural)"
6560
  msgstr ""
6561
 
6562
+ #: app/libraries/main.php:5018
6563
  msgid "EventON"
6564
  msgstr ""
6565
 
6566
+ #: app/libraries/main.php:5019
6567
  msgid "The Events Calendar"
6568
  msgstr ""
6569
 
6570
+ #: app/libraries/main.php:5020
6571
  msgid "Events Schedule WP Plugin"
6572
  msgstr ""
6573
 
6574
+ #: app/libraries/main.php:5021
6575
  msgid "Calendarize It"
6576
  msgstr ""
6577
 
6578
+ #: app/libraries/main.php:5095 app/libraries/main.php:5115
6579
  msgid "Confirmed"
6580
  msgstr "Confermato"
6581
 
6582
+ #: app/libraries/main.php:5096 app/libraries/main.php:5123
6583
  msgid "Rejected"
6584
  msgstr "Rifiutato"
6585
 
6586
+ #: app/libraries/main.php:5097 app/libraries/main.php:5119
6587
  msgid "Pending"
6588
  msgstr "In attesa"
6589
 
6590
+ #: app/libraries/main.php:5145
6591
  msgid "Waiting"
6592
  msgstr "In attesa"
6593
 
6594
+ #: app/libraries/main.php:5350 app/libraries/render.php:382
6595
  msgid "Skin controller does not exist."
6596
  msgstr "Non esiste il controllo dello stile."
6597
 
6627
  msgid "Your event is published."
6628
  msgstr "L'evento è stato pubblicato."
6629
 
6630
+ #: app/libraries/notifications.php:827
6631
  msgid "to"
6632
  msgstr ""
6633
 
6634
+ #: app/libraries/notifications.php:840 app/modules/export/details.php:27
6635
  msgid "+ Add to Google Calendar"
6636
  msgstr "+ Aggiungi a Google Calendar"
6637
 
6638
+ #: app/libraries/notifications.php:841 app/modules/export/details.php:28
6639
  msgid "+ iCal export"
6640
  msgstr "+ Esporta iCal"
6641
 
6642
+ #: app/libraries/notifications.php:904
6643
  msgid "Yes"
6644
  msgstr ""
6645
 
6646
+ #: app/libraries/notifications.php:904
6647
  msgid "No"
6648
  msgstr ""
6649
 
languages/modern-events-calendar-lite-nb_NO.mo CHANGED
Binary file
languages/modern-events-calendar-lite-nb_NO.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
- "POT-Creation-Date: 2019-10-22 15:22+0330\n"
5
- "PO-Revision-Date: 2019-10-22 15:25+0330\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: nb_NO\n"
@@ -76,7 +76,7 @@ msgid "Settings"
76
  msgstr "Innstillinger"
77
 
78
  #: app/features/contextual.php:62 app/features/events.php:2415
79
- #: app/features/mec/booking.php:426 app/features/mec/support.php:29
80
  #: app/libraries/main.php:554
81
  msgid "Booking Form"
82
  msgstr "Bookingskjema"
@@ -95,7 +95,7 @@ msgstr ""
95
  "width=\"600\" height=\"300\" src=\"https://www.youtube.com/embed/"
96
  "YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></iframe>"
97
 
98
- #: app/features/contextual.php:70 app/features/mec/booking.php:544
99
  #: app/features/mec/support.php:36 app/libraries/main.php:555
100
  msgid "Payment Gateways"
101
  msgstr "Betalingsløsninger"
@@ -249,7 +249,7 @@ msgstr "Eksepsjonelle Dager"
249
  msgid "Booking"
250
  msgstr "Bestilling"
251
 
252
- #: app/features/contextual.php:318 app/features/mec/booking.php:248
253
  #: app/libraries/main.php:551
254
  msgid "Coupons"
255
  msgstr "Rabattkoder"
@@ -325,7 +325,7 @@ msgstr "Ingen arrangement funnet i søppelbøtta!"
325
  #: app/features/mec/meta_boxes/search_form.php:514
326
  #: app/features/mec/meta_boxes/search_form.php:575
327
  #: app/features/mec/settings.php:720 app/features/mec/single.php:204
328
- #: app/features/search.php:67 app/libraries/main.php:4886
329
  #: app/libraries/skins.php:808 app/skins/single.php:559
330
  #: app/skins/single/default.php:185 app/skins/single/default.php:397
331
  #: app/skins/single/m1.php:170 app/skins/single/m2.php:102
@@ -335,62 +335,62 @@ msgstr "Kategori"
335
 
336
  #: app/features/events.php:176 app/features/events.php:3212
337
  #: app/features/fes/form.php:737 app/features/mec.php:336
338
- #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:4885
339
  msgid "Categories"
340
  msgstr "Kategorier"
341
 
342
  #: app/features/events.php:186 app/features/labels.php:71
343
  #: app/features/locations.php:69 app/features/organizers.php:69
344
- #: app/features/speakers.php:70
345
  #, php-format
346
  msgid "All %s"
347
  msgstr "Alle %s"
348
 
349
  #: app/features/events.php:187 app/features/labels.php:72
350
  #: app/features/locations.php:70 app/features/organizers.php:70
351
- #: app/features/speakers.php:71
352
  #, php-format
353
  msgid "Edit %s"
354
  msgstr "Rediger %s"
355
 
356
  #: app/features/events.php:188 app/features/labels.php:73
357
  #: app/features/locations.php:71 app/features/organizers.php:71
358
- #: app/features/speakers.php:72
359
  #, php-format
360
  msgid "View %s"
361
  msgstr "Se %s"
362
 
363
  #: app/features/events.php:189 app/features/labels.php:74
364
  #: app/features/locations.php:72 app/features/organizers.php:72
365
- #: app/features/speakers.php:73
366
  #, php-format
367
  msgid "Update %s"
368
  msgstr "Oppdatere %s"
369
 
370
  #: app/features/events.php:190 app/features/labels.php:75
371
  #: app/features/locations.php:73 app/features/organizers.php:73
372
- #: app/features/speakers.php:74
373
  #, php-format
374
  msgid "Add New %s"
375
  msgstr "Legg til ny %s"
376
 
377
  #: app/features/events.php:191 app/features/labels.php:76
378
  #: app/features/locations.php:74 app/features/organizers.php:74
379
- #: app/features/speakers.php:75
380
  #, php-format
381
  msgid "New %s Name"
382
  msgstr "Ny %s navn"
383
 
384
  #: app/features/events.php:192 app/features/labels.php:77
385
  #: app/features/locations.php:75 app/features/organizers.php:75
386
- #: app/features/speakers.php:76
387
  #, php-format
388
  msgid "Popular %s"
389
  msgstr "Populære %s"
390
 
391
  #: app/features/events.php:193 app/features/labels.php:78
392
  #: app/features/locations.php:76 app/features/organizers.php:76
393
- #: app/features/speakers.php:77
394
  #, php-format
395
  msgid "Search %s"
396
  msgstr "Søk i %s"
@@ -419,7 +419,7 @@ msgstr "Gjestedata"
419
  #: app/features/fes.php:224 app/features/fes.php:332
420
  #: app/features/fes/form.php:669 app/features/labels.php:178
421
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
422
- #: app/features/profile/profile.php:168 app/libraries/notifications.php:880
423
  #: app/modules/booking/steps/form.php:37
424
  msgid "Name"
425
  msgstr "Navn"
@@ -427,12 +427,12 @@ msgstr "Navn"
427
  #: app/features/events.php:463 app/features/events.php:2408
428
  #: app/features/events.php:2484 app/features/fes.php:224
429
  #: app/features/fes.php:332 app/features/fes/form.php:665
430
- #: app/features/mec/booking.php:57 app/features/mec/booking.php:477
431
  #: app/features/organizers.php:111 app/features/organizers.php:152
432
- #: app/features/profile/profile.php:171 app/features/speakers.php:124
433
- #: app/features/speakers.php:185 app/libraries/main.php:1472
434
- #: app/libraries/main.php:1541 app/libraries/main.php:2592
435
- #: app/libraries/notifications.php:881 app/modules/booking/steps/form.php:46
436
  #: app/modules/booking/steps/form.php:84 app/skins/single.php:812
437
  #: app/skins/single.php:867 app/skins/single/default.php:227
438
  #: app/skins/single/default.php:439 app/skins/single/m1.php:107
@@ -528,10 +528,11 @@ msgstr ""
528
  #: app/features/events.php:2324 app/features/events.php:2337
529
  #: app/features/fes/form.php:631 app/features/locations.php:299
530
  #: app/features/mec/booking.php:108 app/features/mec/booking.php:158
531
- #: app/features/mec/booking.php:174 app/features/mec/booking.php:293
532
- #: app/features/mec/booking.php:322 app/features/mec/booking.php:370
533
- #: app/features/mec/booking.php:380 app/features/mec/booking.php:402
534
- #: app/features/mec/booking.php:412 app/features/mec/dashboard.php:71
 
535
  #: app/features/mec/meta_boxes/display_options.php:66
536
  #: app/features/mec/meta_boxes/display_options.php:79
537
  #: app/features/mec/meta_boxes/display_options.php:92
@@ -567,12 +568,12 @@ msgstr ""
567
  #: app/features/mec/modules.php:154 app/features/mec/modules.php:312
568
  #: app/features/mec/notifications.php:54 app/features/mec/notifications.php:111
569
  #: app/features/mec/notifications.php:163
570
- #: app/features/mec/notifications.php:222
571
- #: app/features/mec/notifications.php:290
572
- #: app/features/mec/notifications.php:353
573
- #: app/features/mec/notifications.php:364
574
- #: app/features/mec/notifications.php:426
575
- #: app/features/mec/notifications.php:472 app/features/mec/settings.php:66
576
  #: app/features/mec/settings.php:85 app/features/mec/settings.php:112
577
  #: app/features/mec/settings.php:147 app/features/mec/settings.php:168
578
  #: app/features/mec/settings.php:188 app/features/mec/settings.php:265
@@ -809,13 +810,13 @@ msgstr ""
809
  #: app/features/events.php:1153 app/features/events.php:3434
810
  #: app/features/events.php:3476 app/features/fes/form.php:707
811
  #: app/features/ix.php:2743 app/features/ix.php:2784
812
- #: app/features/mec/settings.php:576 app/libraries/main.php:4918
813
  #: app/widgets/single.php:103
814
  msgid "Event Cost"
815
  msgstr "Kostnad for arrangementet"
816
 
817
  #: app/features/events.php:1157 app/features/fes/form.php:710
818
- #: app/libraries/main.php:4919 app/skins/single.php:582
819
  #: app/skins/single/default.php:119 app/skins/single/default.php:331
820
  #: app/skins/single/m1.php:49 app/skins/single/modern.php:199
821
  msgid "Cost"
@@ -833,8 +834,8 @@ msgstr "Ekskluder bestemte dager"
833
 
834
  #: app/features/events.php:1189 app/features/events.php:2485
835
  #: app/features/fes.php:224 app/features/fes.php:332
836
- #: app/features/mec/booking.php:478 app/features/profile/profile.php:53
837
- #: app/libraries/main.php:2048 app/libraries/main.php:2650
838
  #: app/modules/booking/steps/tickets.php:22
839
  #: app/modules/next-event/details.php:90 app/skins/single.php:637
840
  #: app/skins/single/default.php:83 app/skins/single/default.php:295
@@ -881,8 +882,8 @@ msgstr "Dag %s"
881
  #: app/features/events.php:2313 app/features/events.php:3240
882
  #: app/features/events.php:3434 app/features/events.php:3476
883
  #: app/features/fes/form.php:226 app/features/ix.php:2743
884
- #: app/features/ix.php:2784 app/features/mec/booking.php:362
885
- #: app/features/mec/booking.php:394 app/features/mec/styling.php:115
886
  msgid "Title"
887
  msgstr "Tittel"
888
 
@@ -893,15 +894,15 @@ msgstr "Tittel"
893
  #: app/features/events.php:2032 app/features/events.php:2059
894
  #: app/features/events.php:2158 app/features/events.php:2194
895
  #: app/features/events.php:2301 app/features/events.php:2343
896
- #: app/features/mec/booking.php:305 app/features/mec/booking.php:334
897
- #: app/features/mec/booking.php:385 app/features/mec/booking.php:417
898
- #: app/libraries/main.php:2511 app/libraries/main.php:2541
899
- #: app/libraries/main.php:2570 app/libraries/main.php:2600
900
- #: app/libraries/main.php:2629 app/libraries/main.php:2658
901
- #: app/libraries/main.php:2687 app/libraries/main.php:2716
902
- #: app/libraries/main.php:2738 app/libraries/main.php:2769
903
- #: app/libraries/main.php:2813 app/libraries/main.php:2857
904
- #: app/libraries/main.php:2904 app/libraries/main.php:2943
905
  msgid "Remove"
906
  msgstr "Fjern"
907
 
@@ -928,8 +929,8 @@ msgstr "Beskrivelse"
928
  #: app/features/events.php:1336 app/features/events.php:1369
929
  #: app/features/events.php:1430 app/features/fes/form.php:831
930
  #: app/features/mec.php:344 app/features/mec/modules.php:52
931
- #: app/features/mec/settings.php:624 app/features/speakers.php:60
932
- #: app/libraries/main.php:559 app/libraries/main.php:4893
933
  #: app/modules/speakers/details.php:18
934
  msgid "Speakers"
935
  msgstr "Foredragsholdere"
@@ -946,7 +947,7 @@ msgid "Event Links"
946
  msgstr "Arrangemenslenker"
947
 
948
  #: app/features/events.php:1464 app/features/events.php:1470
949
- #: app/features/fes/form.php:686 app/libraries/main.php:4916
950
  msgid "Event Link"
951
  msgstr "Arrangemenslenke"
952
 
@@ -973,7 +974,7 @@ msgid "URL Shortener"
973
  msgstr ""
974
 
975
  #: app/features/events.php:1480 app/features/events.php:1493
976
- #: app/features/fes/form.php:691 app/libraries/main.php:4917
977
  #: app/skins/single.php:656 app/skins/single/default.php:133
978
  #: app/skins/single/default.php:345 app/skins/single/m1.php:191
979
  #: app/skins/single/m2.php:124 app/skins/single/modern.php:132
@@ -1044,7 +1045,7 @@ msgid "12"
1044
  msgstr ""
1045
 
1046
  #: app/features/events.php:1638 app/libraries/book.php:60
1047
- #: app/libraries/main.php:4921 app/modules/booking/steps/tickets.php:40
1048
  msgid "Tickets"
1049
  msgstr "Billetter"
1050
 
@@ -1080,9 +1081,9 @@ msgstr "Sluttidspunkt"
1080
  #: app/features/events.php:1996 app/features/events.php:1999
1081
  #: app/features/events.php:2055 app/features/events.php:2272
1082
  #: app/features/events.php:2276 app/features/events.php:2318
1083
- #: app/features/events.php:2321 app/features/mec/booking.php:366
1084
- #: app/features/mec/booking.php:369 app/features/mec/booking.php:398
1085
- #: app/features/mec/booking.php:401
1086
  msgid "Price"
1087
  msgstr "Pris"
1088
 
@@ -1130,19 +1131,19 @@ msgid "Fees"
1130
  msgstr "Avgifter"
1131
 
1132
  #: app/features/events.php:2132 app/features/events.php:2170
1133
- #: app/features/mec/booking.php:285 app/features/mec/booking.php:314
1134
  msgid "Fee Title"
1135
  msgstr "Avgiftstittel"
1136
 
1137
  #: app/features/events.php:2138 app/features/events.php:2142
1138
  #: app/features/events.php:2175 app/features/events.php:2178
1139
- #: app/features/mec/booking.php:289 app/features/mec/booking.php:292
1140
- #: app/features/mec/booking.php:318 app/features/mec/booking.php:321
1141
  msgid "Amount"
1142
  msgstr "Beløp"
1143
 
1144
  #: app/features/events.php:2143 app/features/events.php:2179
1145
- #: app/features/mec/booking.php:293 app/features/mec/booking.php:322
1146
  msgid ""
1147
  "Fee amount, considered as fixed amount if you set the type to amount "
1148
  "otherwise considered as percentage"
@@ -1151,17 +1152,17 @@ msgstr ""
1151
  "som ellers betraktet som prosentandel"
1152
 
1153
  #: app/features/events.php:2152 app/features/events.php:2188
1154
- #: app/features/mec/booking.php:300 app/features/mec/booking.php:329
1155
  msgid "Percent"
1156
  msgstr "Prosent"
1157
 
1158
  #: app/features/events.php:2153 app/features/events.php:2189
1159
- #: app/features/mec/booking.php:301 app/features/mec/booking.php:330
1160
  msgid "Amount (Per Ticket)"
1161
  msgstr "Beløp (Per Billett)"
1162
 
1163
  #: app/features/events.php:2154 app/features/events.php:2190
1164
- #: app/features/mec/booking.php:302 app/features/mec/booking.php:331
1165
  msgid "Amount (Per Booking)"
1166
  msgstr "Beløp (Per Bestilling)"
1167
 
@@ -1170,69 +1171,69 @@ msgid "Ticket Variations / Options"
1170
  msgstr "Billettvalg"
1171
 
1172
  #: app/features/events.php:2277 app/features/events.php:2322
1173
- #: app/features/mec/booking.php:370 app/features/mec/booking.php:402
1174
  msgid "Option Price"
1175
  msgstr "Prisalternativer"
1176
 
1177
  #: app/features/events.php:2287 app/features/events.php:2291
1178
  #: app/features/events.php:2331 app/features/events.php:2334
1179
- #: app/features/mec/booking.php:376 app/features/mec/booking.php:379
1180
- #: app/features/mec/booking.php:408 app/features/mec/booking.php:411
1181
  msgid "Maximum Per Ticket"
1182
  msgstr "Maks Per billett"
1183
 
1184
  #: app/features/events.php:2292 app/features/events.php:2335
1185
- #: app/features/mec/booking.php:380 app/features/mec/booking.php:412
1186
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
1187
  msgstr "Maks per billett. La det stå tomt for ubegrenset."
1188
 
1189
- #: app/features/events.php:2481 app/features/mec/booking.php:474
1190
- #: app/libraries/main.php:2533
1191
  #, fuzzy
1192
  #| msgid "Name"
1193
  msgid "MEC Name"
1194
  msgstr "Navn"
1195
 
1196
- #: app/features/events.php:2482 app/features/mec/booking.php:475
1197
- #: app/libraries/main.php:2562
1198
  #, fuzzy
1199
  #| msgid "Email"
1200
  msgid "MEC Email"
1201
  msgstr "E-post"
1202
 
1203
- #: app/features/events.php:2483 app/features/mec/booking.php:476
1204
- #: app/libraries/main.php:2503
1205
  msgid "Text"
1206
  msgstr "Tekst"
1207
 
1208
- #: app/features/events.php:2486 app/features/mec/booking.php:479
1209
  #: app/features/organizers.php:103 app/features/organizers.php:148
1210
- #: app/features/speakers.php:116 app/features/speakers.php:181
1211
- #: app/features/speakers.php:254 app/libraries/main.php:2679
1212
  msgid "Tel"
1213
  msgstr "Tlf"
1214
 
1215
- #: app/features/events.php:2487 app/features/mec/booking.php:480
1216
- #: app/libraries/main.php:2621
1217
  msgid "File"
1218
  msgstr ""
1219
 
1220
- #: app/features/events.php:2488 app/features/mec/booking.php:481
1221
- #: app/libraries/main.php:2708
1222
  msgid "Textarea"
1223
  msgstr "Tekstområde"
1224
 
1225
- #: app/features/events.php:2489 app/features/mec/booking.php:482
1226
- #: app/libraries/main.php:2761
1227
  msgid "Checkboxes"
1228
  msgstr "Avmerkingsbokser"
1229
 
1230
- #: app/features/events.php:2490 app/features/mec/booking.php:483
1231
- #: app/libraries/main.php:2805
1232
  msgid "Radio Buttons"
1233
  msgstr "Radioknapper"
1234
 
1235
- #: app/features/events.php:2491 app/features/mec/booking.php:484
1236
  #: app/features/mec/meta_boxes/search_form.php:34
1237
  #: app/features/mec/meta_boxes/search_form.php:41
1238
  #: app/features/mec/meta_boxes/search_form.php:48
@@ -1301,17 +1302,17 @@ msgstr "Radioknapper"
1301
  #: app/features/mec/meta_boxes/search_form.php:599
1302
  #: app/features/mec/meta_boxes/search_form.php:606
1303
  #: app/features/mec/meta_boxes/search_form.php:613
1304
- #: app/features/mec/meta_boxes/search_form.php:620 app/libraries/main.php:2849
1305
  msgid "Dropdown"
1306
  msgstr "Nedtrekksmeny"
1307
 
1308
- #: app/features/events.php:2492 app/features/mec/booking.php:485
1309
- #: app/libraries/main.php:2896
1310
  msgid "Agreement"
1311
  msgstr "Avtalen"
1312
 
1313
- #: app/features/events.php:2493 app/features/mec/booking.php:486
1314
- #: app/libraries/main.php:2737
1315
  msgid "Paragraph"
1316
  msgstr "Avsnitt"
1317
 
@@ -1350,8 +1351,8 @@ msgstr "arrangører"
1350
  #: app/features/mec/meta_boxes/search_form.php:521
1351
  #: app/features/mec/meta_boxes/search_form.php:582
1352
  #: app/features/mec/settings.php:726 app/features/mec/single.php:212
1353
- #: app/features/search.php:71 app/libraries/main.php:2042
1354
- #: app/libraries/main.php:4890 app/libraries/skins.php:834
1355
  #: app/skins/single.php:486 app/skins/single.php:907
1356
  #: app/skins/single/default.php:169 app/skins/single/default.php:381
1357
  #: app/skins/single/m1.php:155 app/skins/single/m2.php:87
@@ -1376,7 +1377,7 @@ msgstr "Sted"
1376
  #: app/features/organizers.php:58 app/features/organizers.php:204
1377
  #: app/features/organizers.php:260 app/features/organizers.php:262
1378
  #: app/features/organizers.php:271 app/features/search.php:75
1379
- #: app/libraries/main.php:4892 app/libraries/skins.php:860
1380
  #: app/skins/single.php:795 app/skins/single/default.php:210
1381
  #: app/skins/single/default.php:422 app/skins/single/m1.php:90
1382
  #: app/skins/single/m2.php:22 app/skins/single/modern.php:31
@@ -1420,7 +1421,7 @@ msgstr "Dupliser"
1420
  #: app/features/fes.php:224 app/features/fes.php:332 app/features/ix.php:2743
1421
  #: app/features/ix.php:2784 app/features/labels.php:177
1422
  #: app/features/locations.php:229 app/features/organizers.php:203
1423
- #: app/features/speakers.php:251
1424
  msgid "ID"
1425
  msgstr "ID"
1426
 
@@ -1470,13 +1471,13 @@ msgid "The event removed!"
1470
  msgstr "Arrangementet er fjernet"
1471
 
1472
  #: app/features/fes.php:224 app/features/fes.php:332
1473
- #: app/features/profile/profile.php:174 app/libraries/main.php:2077
1474
- #: app/libraries/main.php:4920
1475
  msgid "Ticket"
1476
  msgstr "Billett"
1477
 
1478
  #: app/features/fes.php:224 app/features/fes.php:332
1479
- #: app/libraries/main.php:2054
1480
  msgid "Transaction ID"
1481
  msgstr "Transaksjons-ID"
1482
 
@@ -1564,7 +1565,7 @@ msgstr "Fjern bilde"
1564
 
1565
  #: app/features/fes/form.php:763 app/features/labels.php:61
1566
  #: app/features/labels.php:221 app/features/mec.php:337
1567
- #: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:4887
1568
  #: app/skins/single.php:685 app/skins/single/default.php:148
1569
  #: app/skins/single/default.php:360 app/skins/single/m1.php:64
1570
  #: app/skins/single/modern.php:214
@@ -1897,13 +1898,13 @@ msgstr "Toggle"
1897
  #: app/features/ix/export_g_calendar.php:147
1898
  #: app/features/ix/export_g_calendar.php:164
1899
  #: app/features/mec/notifications.php:92 app/features/mec/notifications.php:144
1900
- #: app/features/mec/notifications.php:197
1901
- #: app/features/mec/notifications.php:398
1902
  msgid "Add to Google Calendar"
1903
  msgstr "Legg til i Google Kalender"
1904
 
1905
- #: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:616
1906
- #: app/features/mec/modules.php:392 app/features/mec/notifications.php:590
1907
  #: app/features/mec/settings.php:895 app/features/mec/single.php:269
1908
  msgid "Checking ..."
1909
  msgstr "Sjekker ..."
@@ -1952,8 +1953,8 @@ msgid "ICS Feed"
1952
  msgstr "ICS-feed"
1953
 
1954
  #: app/features/ix/import.php:46 app/features/mec/booking.php:91
1955
- #: app/features/mec/booking.php:251 app/features/mec/booking.php:269
1956
- #: app/features/mec/booking.php:346
1957
  #: app/features/mec/meta_boxes/display_options.php:150
1958
  #: app/features/mec/meta_boxes/display_options.php:315
1959
  #: app/features/mec/modules.php:70 app/features/mec/modules.php:211
@@ -1963,8 +1964,8 @@ msgid "%s is required to use this feature."
1963
  msgstr "%s er nødvendig for å bruke denne funksjonen."
1964
 
1965
  #: app/features/ix/import.php:46 app/features/ix/sync.php:22
1966
- #: app/features/mec/booking.php:91 app/features/mec/booking.php:251
1967
- #: app/features/mec/booking.php:269 app/features/mec/booking.php:346
1968
  #: app/features/mec/meta_boxes/display_options.php:150
1969
  #: app/features/mec/meta_boxes/display_options.php:315
1970
  #: app/features/mec/meta_boxes/display_options.php:330
@@ -2147,7 +2148,7 @@ msgstr "Automatisk Google Import"
2147
 
2148
  #: app/features/ix/sync.php:32 app/features/ix/sync.php:41
2149
  #: app/features/ix/sync.php:52 app/features/ix/sync.php:63
2150
- #: app/features/mec/notifications.php:341
2151
  msgid "Important Note"
2152
  msgstr "Viktig merknad"
2153
 
@@ -2289,7 +2290,7 @@ msgstr ""
2289
  "for at de er riktige."
2290
 
2291
  #: app/features/labels.php:79 app/features/locations.php:77
2292
- #: app/features/organizers.php:77 app/features/speakers.php:78
2293
  #, php-format
2294
  msgid "← Back to %s"
2295
  msgstr ""
@@ -2335,7 +2336,7 @@ msgid "Featured"
2335
  msgstr "Fremhevet"
2336
 
2337
  #: app/features/labels.php:118 app/features/labels.php:143
2338
- #: app/libraries/main.php:5133 app/skins/agenda/render.php:41
2339
  #: app/skins/available_spot/tpl.php:42 app/skins/carousel/render.php:45
2340
  #: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:32
2341
  #: app/skins/daily_view/render.php:52 app/skins/grid/render.php:50
@@ -2353,7 +2354,7 @@ msgid "You can show featured and canceled events by a different style!"
2353
  msgstr "Du kan vise utvalgte og kansellerte hendelser med en annen stil!"
2354
 
2355
  #: app/features/labels.php:180 app/features/locations.php:232
2356
- #: app/features/organizers.php:206 app/features/speakers.php:255
2357
  #: app/modules/booking/steps/tickets.php:38
2358
  msgid "Count"
2359
  msgstr "Antall"
@@ -2370,7 +2371,7 @@ msgstr "Arrangement %s"
2370
 
2371
  #: app/features/locations.php:59 app/features/mec.php:338
2372
  #: app/features/mec/dashboard.php:243 app/features/mec/meta_boxes/filter.php:96
2373
- #: app/libraries/main.php:4889
2374
  msgid "Locations"
2375
  msgstr "Steder"
2376
 
@@ -2403,13 +2404,13 @@ msgstr "Geo lengdegrad (Valgfritt)"
2403
 
2404
  #: app/features/locations.php:138 app/features/locations.php:180
2405
  #: app/features/organizers.php:127 app/features/organizers.php:160
2406
- #: app/features/speakers.php:156 app/features/speakers.php:201
2407
  msgid "Thumbnail"
2408
  msgstr "Miniatyrbilde"
2409
 
2410
  #: app/features/locations.php:143 app/features/locations.php:183
2411
  #: app/features/organizers.php:132 app/features/organizers.php:163
2412
- #: app/features/speakers.php:161 app/features/speakers.php:204
2413
  msgid "Upload/Add image"
2414
  msgstr "Last opp/Legg til bilde"
2415
 
@@ -2417,7 +2418,7 @@ msgstr "Last opp/Legg til bilde"
2417
  #: app/features/locations.php:340 app/features/locations.php:347
2418
  #: app/features/organizers.php:133 app/features/organizers.php:164
2419
  #: app/features/organizers.php:299 app/features/organizers.php:306
2420
- #: app/features/speakers.php:162 app/features/speakers.php:205
2421
  msgid "Remove image"
2422
  msgstr "Fjern bilde"
2423
 
@@ -2477,7 +2478,7 @@ msgstr "Velg bilde"
2477
  msgid "Don't show map in single event page"
2478
  msgstr "Ikke vis kart i enkelt arrangement visning"
2479
 
2480
- #: app/features/locations.php:356 app/libraries/main.php:4923
2481
  #, fuzzy
2482
  #| msgid "Locations"
2483
  msgid "Other Locations"
@@ -2535,7 +2536,7 @@ msgstr "Support"
2535
 
2536
  #: app/features/mec.php:339 app/features/mec/dashboard.php:250
2537
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2538
- #: app/libraries/main.php:4891
2539
  msgid "Organizers"
2540
  msgstr "Arrangører"
2541
 
@@ -2633,19 +2634,19 @@ msgstr ""
2633
  msgid "Search..."
2634
  msgstr "Søk..."
2635
 
2636
- #: app/features/mec/booking.php:72 app/features/mec/booking.php:492
2637
- #: app/features/mec/booking.php:572 app/features/mec/booking.php:581
2638
- #: app/features/mec/booking.php:591 app/features/mec/booking.php:633
2639
- #: app/features/mec/booking.php:647 app/features/mec/messages.php:15
2640
  #: app/features/mec/messages.php:51 app/features/mec/messages.php:60
2641
  #: app/features/mec/messages.php:94 app/features/mec/messages.php:103
2642
  #: app/features/mec/modules.php:25 app/features/mec/modules.php:357
2643
  #: app/features/mec/modules.php:367 app/features/mec/modules.php:409
2644
  #: app/features/mec/modules.php:423 app/features/mec/notifications.php:14
2645
- #: app/features/mec/notifications.php:499
2646
- #: app/features/mec/notifications.php:511
2647
- #: app/features/mec/notifications.php:607
2648
- #: app/features/mec/notifications.php:621 app/features/mec/settings.php:34
2649
  #: app/features/mec/settings.php:844 app/features/mec/settings.php:854
2650
  #: app/features/mec/settings.php:912 app/features/mec/settings.php:926
2651
  #: app/features/mec/single.php:17 app/features/mec/single.php:234
@@ -2743,15 +2744,31 @@ msgstr ""
2743
  "Bruker blir sendt til denne siden etter booking. La den være tom om du "
2744
  "ønsker å deaktivere den."
2745
 
2746
- #: app/features/mec/booking.php:169
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2747
  msgid "Enable Express Attendees Form"
2748
  msgstr "Aktiver Ekspress Deltagere Skjema"
2749
 
2750
- #: app/features/mec/booking.php:173 app/modules/booking/steps/form.php:52
2751
  msgid "Attendees Form"
2752
  msgstr "Deltagerskjema"
2753
 
2754
- #: app/features/mec/booking.php:174
2755
  msgid ""
2756
  "Users are able to apply first attendee information for other attendees in "
2757
  "the booking form."
@@ -2759,118 +2776,118 @@ msgstr ""
2759
  "Brukere kan søke førstegangsinformasjon for andre deltakere i "
2760
  "bestillingsskjemaet."
2761
 
2762
- #: app/features/mec/booking.php:187
2763
  #, fuzzy
2764
  #| msgid "Download Invoice"
2765
  msgid "Enable Invoice"
2766
  msgstr "Last ned Faktura"
2767
 
2768
- #: app/features/mec/booking.php:198
2769
  #, fuzzy
2770
  #| msgid "Enable Booking from Settings"
2771
  msgid "Enable Booking for Ongoing Events"
2772
  msgstr "Aktiver bestilling fra innstillinger"
2773
 
2774
- #: app/features/mec/booking.php:203
2775
  msgid "Email verification"
2776
  msgstr "E-postbekreftelse"
2777
 
2778
- #: app/features/mec/booking.php:209
2779
  msgid "Auto verification for free bookings"
2780
  msgstr "Automatisk godkjenning for gratis reservasjoner"
2781
 
2782
- #: app/features/mec/booking.php:218
2783
  msgid "Auto verification for paid bookings"
2784
  msgstr "Auto godkjenning for betalte bookinger"
2785
 
2786
- #: app/features/mec/booking.php:222 app/features/mec/notifications.php:151
2787
  #: app/libraries/main.php:573
2788
  msgid "Booking Confirmation"
2789
  msgstr "Bestillingsbekreftelsen"
2790
 
2791
- #: app/features/mec/booking.php:228
2792
  msgid "Auto confirmation for free bookings"
2793
  msgstr "Auto bekreftelse for gratis bookinger"
2794
 
2795
- #: app/features/mec/booking.php:237
2796
  msgid "Auto confirmation for paid bookings"
2797
  msgstr "Automatisk bekreftelse for betalt bookinger"
2798
 
2799
- #: app/features/mec/booking.php:256
2800
  msgid "Enable coupons module"
2801
  msgstr "Aktiver rabattkupong modul"
2802
 
2803
- #: app/features/mec/booking.php:258
2804
  msgid ""
2805
  "After enabling and saving the settings,, you should reload the page to see a "
2806
  "new menu on the Dashboard > Booking"
2807
  msgstr ""
2808
 
2809
- #: app/features/mec/booking.php:266 app/libraries/main.php:552
2810
  msgid "Taxes / Fees"
2811
  msgstr "Avgifter"
2812
 
2813
- #: app/features/mec/booking.php:274
2814
  msgid "Enable taxes / fees module"
2815
  msgstr "Aktive avgiftsmodul"
2816
 
2817
- #: app/features/mec/booking.php:279
2818
  msgid "Add Fee"
2819
  msgstr "Legg til gebyr"
2820
 
2821
- #: app/features/mec/booking.php:343 app/libraries/main.php:553
2822
  msgid "Ticket Variations & Options"
2823
  msgstr "billett variasjoner & alternativer"
2824
 
2825
- #: app/features/mec/booking.php:351
2826
  msgid "Enable ticket options module"
2827
  msgstr "Aktiver alternativ modul for billett"
2828
 
2829
- #: app/features/mec/booking.php:356
2830
  msgid "Add Variation / Option"
2831
  msgstr "Legg til variasjon/alternativ"
2832
 
2833
- #: app/features/mec/booking.php:559
2834
  msgid "Enable Organizer Payment Module"
2835
  msgstr ""
2836
 
2837
- #: app/features/mec/booking.php:563
2838
  #, fuzzy
2839
  #| msgid "Organizer Tel"
2840
  msgid "Organizer Payment"
2841
  msgstr "Tlf til arrangør"
2842
 
2843
- #: app/features/mec/booking.php:564
2844
  msgid ""
2845
  "By enabling this module, organizers are able to insert their own payment "
2846
  "credentials for enabled gateways per event and receive the payments directly!"
2847
  msgstr ""
2848
 
2849
- #: app/features/mec/booking.php:611 app/features/mec/messages.php:78
2850
- #: app/features/mec/modules.php:387 app/features/mec/notifications.php:585
2851
  #: app/features/mec/settings.php:890 app/features/mec/single.php:264
2852
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:296
2853
  msgid "Saved"
2854
  msgstr "Lagret"
2855
 
2856
- #: app/features/mec/booking.php:612 app/features/mec/messages.php:79
2857
- #: app/features/mec/modules.php:388 app/features/mec/notifications.php:586
2858
  #: app/features/mec/settings.php:891 app/features/mec/single.php:265
2859
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:297
2860
  msgid "Settings Saved!"
2861
  msgstr "Innstillinger Lagret!"
2862
 
2863
- #: app/features/mec/booking.php:614 app/features/mec/booking.php:636
2864
  #: app/features/mec/modules.php:390 app/features/mec/modules.php:412
2865
- #: app/features/mec/notifications.php:588
2866
- #: app/features/mec/notifications.php:610 app/features/mec/settings.php:893
2867
  #: app/features/mec/settings.php:915 app/features/mec/single.php:267
2868
- #: app/features/mec/single.php:289 app/libraries/main.php:5132
2869
  msgid "Verified"
2870
  msgstr "Verifisert"
2871
 
2872
- #: app/features/mec/booking.php:638 app/features/mec/modules.php:414
2873
- #: app/features/mec/notifications.php:612 app/features/mec/settings.php:917
2874
  #: app/features/mec/single.php:291
2875
  msgid "Please Refresh Page"
2876
  msgstr "Vennligst Oppdater Side"
@@ -3835,8 +3852,8 @@ msgstr "Deaktivert"
3835
  #: app/features/mec/meta_boxes/search_form.php:535
3836
  #: app/features/mec/meta_boxes/search_form.php:596
3837
  #: app/features/mec/settings.php:739 app/features/mec/single.php:217
3838
- #: app/features/search.php:79 app/features/speakers.php:59
3839
- #: app/features/speakers.php:252 app/libraries/main.php:4894
3840
  #: app/libraries/skins.php:886
3841
  msgid "Speaker"
3842
  msgstr "Foredragsholder"
@@ -4106,11 +4123,11 @@ msgstr "Sendes til deltager etter booking for å opplyse han/henne."
4106
 
4107
  #: app/features/mec/notifications.php:45 app/features/mec/notifications.php:102
4108
  #: app/features/mec/notifications.php:154
4109
- #: app/features/mec/notifications.php:213
4110
- #: app/features/mec/notifications.php:281
4111
- #: app/features/mec/notifications.php:344
4112
- #: app/features/mec/notifications.php:417
4113
- #: app/features/mec/notifications.php:463
4114
  msgid "Email Subject"
4115
  msgstr "E-postemne"
4116
 
@@ -4119,93 +4136,93 @@ msgstr "E-postemne"
4119
  #: app/features/mec/notifications.php:110
4120
  #: app/features/mec/notifications.php:158
4121
  #: app/features/mec/notifications.php:162
4122
- #: app/features/mec/notifications.php:217
4123
- #: app/features/mec/notifications.php:221
4124
- #: app/features/mec/notifications.php:285
4125
- #: app/features/mec/notifications.php:289
4126
- #: app/features/mec/notifications.php:348
4127
- #: app/features/mec/notifications.php:352
4128
- #: app/features/mec/notifications.php:363
4129
- #: app/features/mec/notifications.php:421
4130
- #: app/features/mec/notifications.php:425
4131
- #: app/features/mec/notifications.php:467
4132
- #: app/features/mec/notifications.php:471
4133
- msgid "Custom Recipients"
4134
- msgstr "Tilpassede Mottagere"
4135
-
4136
- #: app/features/mec/notifications.php:54 app/features/mec/notifications.php:111
4137
- #: app/features/mec/notifications.php:163
4138
  #: app/features/mec/notifications.php:222
 
4139
  #: app/features/mec/notifications.php:290
 
4140
  #: app/features/mec/notifications.php:353
4141
  #: app/features/mec/notifications.php:364
 
4142
  #: app/features/mec/notifications.php:426
 
4143
  #: app/features/mec/notifications.php:472
 
 
 
 
 
 
 
 
 
 
 
4144
  msgid "Insert comma separated emails for multiple recipients."
4145
  msgstr "Sett inn kommaseparerte eposter for flere samtidige mottagere."
4146
 
4147
- #: app/features/mec/notifications.php:61 app/features/mec/notifications.php:233
4148
- #: app/features/mec/notifications.php:297
4149
  msgid "Send the email to event organizer"
4150
  msgstr "Send epost til arrangøren"
4151
 
4152
  #: app/features/mec/notifications.php:64 app/features/mec/notifications.php:117
4153
  #: app/features/mec/notifications.php:169
4154
- #: app/features/mec/notifications.php:240
4155
- #: app/features/mec/notifications.php:300
4156
- #: app/features/mec/notifications.php:370
4157
- #: app/features/mec/notifications.php:432
4158
- #: app/features/mec/notifications.php:478
4159
  msgid "Email Content"
4160
  msgstr "E-postinnhold"
4161
 
4162
  #: app/features/mec/notifications.php:67 app/features/mec/notifications.php:120
4163
  #: app/features/mec/notifications.php:172
4164
- #: app/features/mec/notifications.php:243
4165
- #: app/features/mec/notifications.php:303
4166
- #: app/features/mec/notifications.php:373
4167
- #: app/features/mec/notifications.php:435
4168
- #: app/features/mec/notifications.php:481
4169
  msgid "You can use following placeholders"
4170
  msgstr "Du kan bruke følgende plassholdere"
4171
 
4172
  #: app/features/mec/notifications.php:69 app/features/mec/notifications.php:122
4173
  #: app/features/mec/notifications.php:174
4174
- #: app/features/mec/notifications.php:245
4175
- #: app/features/mec/notifications.php:305
4176
- #: app/features/mec/notifications.php:375
4177
  msgid "First name of attendee"
4178
  msgstr "Fornavn til deltaker"
4179
 
4180
  #: app/features/mec/notifications.php:70 app/features/mec/notifications.php:123
4181
  #: app/features/mec/notifications.php:175
4182
- #: app/features/mec/notifications.php:246
4183
- #: app/features/mec/notifications.php:306
4184
- #: app/features/mec/notifications.php:376
4185
  msgid "Last name of attendee"
4186
  msgstr "Etternavn på deltaker"
4187
 
4188
  #: app/features/mec/notifications.php:71 app/features/mec/notifications.php:124
4189
  #: app/features/mec/notifications.php:176
4190
- #: app/features/mec/notifications.php:247
4191
- #: app/features/mec/notifications.php:307
4192
- #: app/features/mec/notifications.php:377
4193
  msgid "Email of attendee"
4194
  msgstr "E-post til deltaker"
4195
 
4196
  #: app/features/mec/notifications.php:72 app/features/mec/notifications.php:125
4197
  #: app/features/mec/notifications.php:177
4198
- #: app/features/mec/notifications.php:248
4199
- #: app/features/mec/notifications.php:308
4200
- #: app/features/mec/notifications.php:378
4201
  msgid "Booked date of event"
4202
  msgstr "Booket dato for arrangement"
4203
 
4204
  #: app/features/mec/notifications.php:73 app/features/mec/notifications.php:126
4205
  #: app/features/mec/notifications.php:178
4206
- #: app/features/mec/notifications.php:249
4207
- #: app/features/mec/notifications.php:309
4208
- #: app/features/mec/notifications.php:379
4209
  #, fuzzy
4210
  #| msgid "Booked date of event"
4211
  msgid "Booked time of event"
@@ -4213,55 +4230,55 @@ msgstr "Booket dato for arrangement"
4213
 
4214
  #: app/features/mec/notifications.php:74 app/features/mec/notifications.php:127
4215
  #: app/features/mec/notifications.php:179
4216
- #: app/features/mec/notifications.php:250
4217
- #: app/features/mec/notifications.php:310
4218
- #: app/features/mec/notifications.php:380
4219
  msgid "Booking Price"
4220
  msgstr "Booking Pris"
4221
 
4222
  #: app/features/mec/notifications.php:75 app/features/mec/notifications.php:128
4223
  #: app/features/mec/notifications.php:180
4224
- #: app/features/mec/notifications.php:251
4225
- #: app/features/mec/notifications.php:311
4226
- #: app/features/mec/notifications.php:381
4227
- #: app/features/mec/notifications.php:441
4228
- #: app/features/mec/notifications.php:487
4229
- msgid "Your website title"
4230
- msgstr "Ditt nettstedstittel"
4231
-
4232
- #: app/features/mec/notifications.php:76 app/features/mec/notifications.php:129
4233
- #: app/features/mec/notifications.php:181
4234
  #: app/features/mec/notifications.php:252
4235
  #: app/features/mec/notifications.php:312
4236
  #: app/features/mec/notifications.php:382
4237
  #: app/features/mec/notifications.php:442
4238
  #: app/features/mec/notifications.php:488
4239
- msgid "Your website URL"
4240
- msgstr "Din nettstedsadresse (URL)"
4241
 
4242
- #: app/features/mec/notifications.php:77 app/features/mec/notifications.php:130
4243
- #: app/features/mec/notifications.php:182
4244
  #: app/features/mec/notifications.php:253
4245
  #: app/features/mec/notifications.php:313
4246
  #: app/features/mec/notifications.php:383
4247
  #: app/features/mec/notifications.php:443
4248
  #: app/features/mec/notifications.php:489
 
 
 
 
 
 
 
 
 
 
4249
  msgid "Your website description"
4250
  msgstr "Din nettstedsbeskrivelse"
4251
 
4252
  #: app/features/mec/notifications.php:78 app/features/mec/notifications.php:131
4253
  #: app/features/mec/notifications.php:183
4254
- #: app/features/mec/notifications.php:254
4255
- #: app/features/mec/notifications.php:314
4256
- #: app/features/mec/notifications.php:384
4257
  msgid "Event title"
4258
  msgstr "Arrangementtittel"
4259
 
4260
  #: app/features/mec/notifications.php:79 app/features/mec/notifications.php:132
4261
  #: app/features/mec/notifications.php:184
4262
- #: app/features/mec/notifications.php:255
4263
- #: app/features/mec/notifications.php:315
4264
- #: app/features/mec/notifications.php:385
4265
  #, fuzzy
4266
  #| msgid "Event Link"
4267
  msgid "Event link"
@@ -4269,9 +4286,9 @@ msgstr "Arrangemenslenke"
4269
 
4270
  #: app/features/mec/notifications.php:80 app/features/mec/notifications.php:133
4271
  #: app/features/mec/notifications.php:185
4272
- #: app/features/mec/notifications.php:256
4273
- #: app/features/mec/notifications.php:316
4274
- #: app/features/mec/notifications.php:386
4275
  #, fuzzy
4276
  #| msgid "Organizer name of booked event"
4277
  msgid "Speaker name of booked event"
@@ -4279,77 +4296,77 @@ msgstr "Arrangørnavnet av booket arrangement"
4279
 
4280
  #: app/features/mec/notifications.php:81 app/features/mec/notifications.php:134
4281
  #: app/features/mec/notifications.php:186
4282
- #: app/features/mec/notifications.php:257
4283
- #: app/features/mec/notifications.php:317
4284
- #: app/features/mec/notifications.php:387
4285
  msgid "Organizer name of booked event"
4286
  msgstr "Arrangørnavnet av booket arrangement"
4287
 
4288
  #: app/features/mec/notifications.php:82 app/features/mec/notifications.php:135
4289
  #: app/features/mec/notifications.php:187
4290
- #: app/features/mec/notifications.php:258
4291
- #: app/features/mec/notifications.php:318
4292
- #: app/features/mec/notifications.php:388
4293
  msgid "Organizer tel of booked event"
4294
  msgstr "Tlf til arrangør av booket arrangement"
4295
 
4296
  #: app/features/mec/notifications.php:83 app/features/mec/notifications.php:136
4297
  #: app/features/mec/notifications.php:188
4298
- #: app/features/mec/notifications.php:259
4299
- #: app/features/mec/notifications.php:319
4300
- #: app/features/mec/notifications.php:389
4301
  msgid "Organizer email of booked event"
4302
  msgstr "E-post til arrangør av booket arrangement"
4303
 
4304
  #: app/features/mec/notifications.php:84 app/features/mec/notifications.php:137
4305
  #: app/features/mec/notifications.php:189
4306
- #: app/features/mec/notifications.php:260
4307
- #: app/features/mec/notifications.php:320
4308
- #: app/features/mec/notifications.php:390
4309
  msgid "Location name of booked event"
4310
  msgstr "Stedsnavn til booket arrangement"
4311
 
4312
  #: app/features/mec/notifications.php:85 app/features/mec/notifications.php:138
4313
  #: app/features/mec/notifications.php:190
4314
- #: app/features/mec/notifications.php:261
4315
- #: app/features/mec/notifications.php:321
4316
- #: app/features/mec/notifications.php:391
4317
  msgid "Location address of booked event"
4318
  msgstr "Adresse til bestilt arrangement"
4319
 
4320
- #: app/features/mec/notifications.php:86 app/features/mec/notifications.php:263
4321
- #: app/features/mec/notifications.php:323
4322
  msgid "Full Attendee info such as booking form data, name, email etc."
4323
  msgstr "Full deltager info som booking skjema data, navn, epost osv."
4324
 
4325
  #: app/features/mec/notifications.php:87 app/features/mec/notifications.php:192
4326
- #: app/features/mec/notifications.php:393
4327
  msgid "Invoice Link"
4328
  msgstr "Fakturalenke"
4329
 
4330
  #: app/features/mec/notifications.php:88 app/features/mec/notifications.php:140
4331
  #: app/features/mec/notifications.php:193
4332
- #: app/features/mec/notifications.php:264
4333
- #: app/features/mec/notifications.php:324
4334
- #: app/features/mec/notifications.php:394
4335
  msgid "Total Attendees"
4336
  msgstr "Antall deltakere"
4337
 
4338
  #: app/features/mec/notifications.php:89 app/features/mec/notifications.php:141
4339
- #: app/features/mec/notifications.php:194
4340
- #: app/features/mec/notifications.php:395
4341
  msgid "Ticket name"
4342
  msgstr "Navn på billett"
4343
 
4344
  #: app/features/mec/notifications.php:90 app/features/mec/notifications.php:142
4345
- #: app/features/mec/notifications.php:195
4346
- #: app/features/mec/notifications.php:396
4347
  msgid "Ticket time"
4348
  msgstr "Billettidspunkt"
4349
 
4350
  #: app/features/mec/notifications.php:91 app/features/mec/notifications.php:143
4351
- #: app/features/mec/notifications.php:196
4352
- #: app/features/mec/notifications.php:397
4353
  msgid "Download ICS file"
4354
  msgstr "Last ned ICS-fil"
4355
 
@@ -4370,23 +4387,29 @@ msgid "It sends to attendee after confirming the booking by admin."
4370
  msgstr "Den sender til deltagere etter bekreftelse bookingen av administrator."
4371
 
4372
  #: app/features/mec/notifications.php:191
4373
- #: app/features/mec/notifications.php:392
4374
  msgid "Booking cancellation link."
4375
  msgstr "Booking avbestillingskobling."
4376
 
4377
- #: app/features/mec/notifications.php:203 app/libraries/main.php:574
 
 
 
 
 
 
4378
  #, fuzzy
4379
  #| msgid "Booking cancellation link."
4380
  msgid "Booking Cancellation"
4381
  msgstr "Booking avbestillingskobling."
4382
 
4383
- #: app/features/mec/notifications.php:207
4384
  #, fuzzy
4385
  #| msgid "Enable new event notification"
4386
  msgid "Enable cancellation notification"
4387
  msgstr "Aktiver nytt arrangement-varsel"
4388
 
4389
- #: app/features/mec/notifications.php:211
4390
  #, fuzzy
4391
  #| msgid "It sends to attendee after booking for notifying him/her."
4392
  msgid ""
@@ -4394,48 +4417,48 @@ msgid ""
4394
  "them."
4395
  msgstr "Sendes til deltager etter booking for å opplyse han/henne."
4396
 
4397
- #: app/features/mec/notifications.php:229
4398
  #, fuzzy
4399
  #| msgid "Send the email to event organizer"
4400
  msgid "Send the email to admin"
4401
  msgstr "Send epost til arrangøren"
4402
 
4403
- #: app/features/mec/notifications.php:237
4404
  #, fuzzy
4405
  #| msgid "Send the email to event organizer"
4406
  msgid "Send the email to booking user"
4407
  msgstr "Send epost til arrangøren"
4408
 
4409
- #: app/features/mec/notifications.php:262
4410
- #: app/features/mec/notifications.php:322
4411
  msgid "Admin booking management link."
4412
  msgstr "Lenke til å Administrere booking."
4413
 
4414
- #: app/features/mec/notifications.php:271 app/libraries/main.php:576
4415
  msgid "Admin"
4416
  msgstr ""
4417
 
4418
- #: app/features/mec/notifications.php:275
4419
  #, fuzzy
4420
  #| msgid "Enable booking notification"
4421
  msgid "Enable admin notification"
4422
  msgstr "Tillatt bestillingsvarsel"
4423
 
4424
- #: app/features/mec/notifications.php:279
4425
  msgid "It sends to admin to notify him/her that a new booking received."
4426
  msgstr ""
4427
  "Sender melding til admin for å gi hint til han/henne at ny booking er kommet."
4428
 
4429
- #: app/features/mec/notifications.php:331 app/libraries/main.php:575
4430
  #: app/libraries/notifications.php:478
4431
  msgid "Booking Reminder"
4432
  msgstr "Påminnelse angående din bestilling"
4433
 
4434
- #: app/features/mec/notifications.php:335
4435
  msgid "Enable booking reminder notification"
4436
  msgstr "Aktiver booking påminnelse"
4437
 
4438
- #: app/features/mec/notifications.php:341
4439
  #, php-format
4440
  msgid ""
4441
  "Set a cronjob to call %s file once per day otherwise it won't send the "
@@ -4446,24 +4469,24 @@ msgstr ""
4446
  "sende påmindelser. Vennligst noter at du burde kalle på denne filen %s eller "
4447
  "vill den sende påmindelser flere ganger."
4448
 
4449
- #: app/features/mec/notifications.php:341
4450
  msgid "only once per day"
4451
  msgstr "bare en gang per dag"
4452
 
4453
- #: app/features/mec/notifications.php:359
4454
  msgid "Days"
4455
  msgstr "Dager"
4456
 
4457
- #: app/features/mec/notifications.php:407 app/features/mec/support-page.php:80
4458
  #: app/libraries/main.php:577
4459
  msgid "New Event"
4460
  msgstr "Nytt Arrangement"
4461
 
4462
- #: app/features/mec/notifications.php:411
4463
  msgid "Enable new event notification"
4464
  msgstr "Aktiver nytt arrangement-varsel"
4465
 
4466
- #: app/features/mec/notifications.php:415
4467
  msgid ""
4468
  "It sends after adding a new event from frontend event submission or from "
4469
  "website backend."
@@ -4471,47 +4494,47 @@ msgstr ""
4471
  "Sender etter ett nytt arrangement fra event registrering eller fra "
4472
  "nettsidens bakside."
4473
 
4474
- #: app/features/mec/notifications.php:437
4475
- #: app/features/mec/notifications.php:483
4476
  msgid "Title of event"
4477
  msgstr "Tittel på arrangement"
4478
 
4479
- #: app/features/mec/notifications.php:438
4480
- #: app/features/mec/notifications.php:484
4481
  #, fuzzy
4482
  #| msgid "Title of event"
4483
  msgid "Link of event"
4484
  msgstr "Tittel på arrangement"
4485
 
4486
- #: app/features/mec/notifications.php:439
4487
- #: app/features/mec/notifications.php:485
4488
  msgid "Status of event"
4489
  msgstr "Status på arrangement"
4490
 
4491
- #: app/features/mec/notifications.php:440
4492
- #: app/features/mec/notifications.php:486 app/features/mec/settings.php:654
4493
  #: app/features/mec/settings.php:658
4494
  msgid "Event Note"
4495
  msgstr "Arrangementsnotat"
4496
 
4497
- #: app/features/mec/notifications.php:444
4498
- #: app/features/mec/notifications.php:490
4499
  msgid "Admin events management link."
4500
  msgstr "Lenge til arrangementsadministrasjon"
4501
 
4502
- #: app/features/mec/notifications.php:453 app/libraries/main.php:578
4503
  #, fuzzy
4504
  #| msgid "The event published."
4505
  msgid "User Event Publishing"
4506
  msgstr "Arrangement er publisert."
4507
 
4508
- #: app/features/mec/notifications.php:457
4509
  #, fuzzy
4510
  #| msgid "Enable new event notification"
4511
  msgid "Enable user event publishing notification"
4512
  msgstr "Aktiver nytt arrangement-varsel"
4513
 
4514
- #: app/features/mec/notifications.php:461
4515
  #, fuzzy
4516
  #| msgid ""
4517
  #| "It sends after adding a new event from frontend event submission or from "
@@ -4617,7 +4640,7 @@ msgid "You can enable/disable Schema scripts"
4617
  msgstr ""
4618
 
4619
  #: app/features/mec/settings.php:136 app/features/mec/settings.php:146
4620
- #: app/libraries/main.php:4898
4621
  msgid "Weekdays"
4622
  msgstr "Ukedager"
4623
 
@@ -5751,7 +5774,7 @@ msgstr "f.eks. Ola Nordmann"
5751
  msgid "eg. https://webnus.net"
5752
  msgstr "F.eks. https://webnus.net"
5753
 
5754
- #: app/features/organizers.php:311 app/libraries/main.php:4922
5755
  #: app/skins/single.php:845
5756
  msgid "Other Organizers"
5757
  msgstr "Andre Arrangører"
@@ -5777,11 +5800,11 @@ msgstr "Din booking ble ikke kansellert."
5777
  msgid "#"
5778
  msgstr "#"
5779
 
5780
- #: app/features/profile/profile.php:56 app/libraries/main.php:2918
5781
  msgid "Status"
5782
  msgstr "Status"
5783
 
5784
- #: app/features/profile/profile.php:59 app/libraries/main.php:2063
5785
  msgid "Attendees"
5786
  msgstr "Deltakere"
5787
 
@@ -5812,7 +5835,7 @@ msgstr "Variasjoner"
5812
  msgid "No bookings found!"
5813
  msgstr "Ingen bestillinger funnet!"
5814
 
5815
- #: app/features/search.php:87 app/libraries/main.php:4888
5816
  msgid "label"
5817
  msgstr "etikett"
5818
 
@@ -5847,63 +5870,69 @@ msgstr ""
5847
  msgid "All of the day"
5848
  msgstr "Hele dagen"
5849
 
5850
- #: app/features/speakers.php:108 app/features/speakers.php:177
5851
- #: app/features/speakers.php:253
5852
  msgid "Job Title"
5853
  msgstr "Yrkestittel"
5854
 
5855
- #: app/features/speakers.php:111 app/features/speakers.php:178
5856
  msgid "Insert speaker job title."
5857
  msgstr "Sette inn instruktørstilling."
5858
 
5859
- #: app/features/speakers.php:119 app/features/speakers.php:182
5860
  msgid "Insert speaker phone number."
5861
  msgstr "Sette inn instruktørens telefonnummer."
5862
 
5863
- #: app/features/speakers.php:127 app/features/speakers.php:186
5864
  msgid "Insert speaker email address."
5865
  msgstr "Sette inn instruktørens epost."
5866
 
5867
- #: app/features/speakers.php:132 app/features/speakers.php:189
5868
  msgid "Facebook Page"
5869
  msgstr "Facebook-side"
5870
 
5871
- #: app/features/speakers.php:135 app/features/speakers.php:190
5872
  msgid "Insert URL of Facebook Page"
5873
  msgstr "Sett inn nettadressen til Facebook-siden"
5874
 
5875
- #: app/features/speakers.php:140 app/features/speakers.php:193
5876
  msgid "Instagram"
5877
  msgstr ""
5878
 
5879
- #: app/features/speakers.php:143 app/features/speakers.php:194
5880
  #, fuzzy
5881
  #| msgid "Insert URL of Twitter Page"
5882
  msgid "Insert URL of Instagram"
5883
  msgstr "Sett inn nettadressen til Twitter-siden"
5884
 
5885
- #: app/features/speakers.php:148 app/features/speakers.php:197
5886
  msgid "Twitter Page"
5887
  msgstr "Twitter-side"
5888
 
5889
- #: app/features/speakers.php:151 app/features/speakers.php:198
5890
  msgid "Insert URL of Twitter Page"
5891
  msgstr "Sett inn nettadressen til Twitter-siden"
5892
 
5893
- #: app/features/speakers.php:313
5894
  msgid "Sorry, You must insert speaker name!"
5895
  msgstr ""
5896
 
 
 
 
 
 
 
5897
  #: app/libraries/book.php:60
5898
  #, php-format
5899
  msgid "%s Price"
5900
  msgstr "%s pris"
5901
 
5902
- #: app/libraries/book.php:553
5903
  msgid "Discount"
5904
  msgstr "Rabatt"
5905
 
5906
- #: app/libraries/book.php:643 app/modules/booking/default.php:305
5907
  #: app/modules/booking/default.php:403
5908
  msgid "Download Invoice"
5909
  msgstr "Last ned Faktura"
@@ -6034,31 +6063,31 @@ msgstr "Karusell Visning"
6034
  msgid "Slider View"
6035
  msgstr "Slider Visning"
6036
 
6037
- #: app/libraries/main.php:382 app/libraries/main.php:4900
6038
  msgid "SU"
6039
  msgstr "SØN"
6040
 
6041
- #: app/libraries/main.php:38
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
+ "POT-Creation-Date: 2019-10-30 12:41+0330\n"
5
+ "PO-Revision-Date: 2019-10-30 12:43+0330\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: nb_NO\n"
76
  msgstr "Innstillinger"
77
 
78
  #: app/features/contextual.php:62 app/features/events.php:2415
79
+ #: app/features/mec/booking.php:439 app/features/mec/support.php:29
80
  #: app/libraries/main.php:554
81
  msgid "Booking Form"
82
  msgstr "Bookingskjema"
95
  "width=\"600\" height=\"300\" src=\"https://www.youtube.com/embed/"
96
  "YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></iframe>"
97
 
98
+ #: app/features/contextual.php:70 app/features/mec/booking.php:557
99
  #: app/features/mec/support.php:36 app/libraries/main.php:555
100
  msgid "Payment Gateways"
101
  msgstr "Betalingsløsninger"
249
  msgid "Booking"
250
  msgstr "Bestilling"
251
 
252
+ #: app/features/contextual.php:318 app/features/mec/booking.php:261
253
  #: app/libraries/main.php:551
254
  msgid "Coupons"
255
  msgstr "Rabattkoder"
325
  #: app/features/mec/meta_boxes/search_form.php:514
326
  #: app/features/mec/meta_boxes/search_form.php:575
327
  #: app/features/mec/settings.php:720 app/features/mec/single.php:204
328
+ #: app/features/search.php:67 app/libraries/main.php:4897
329
  #: app/libraries/skins.php:808 app/skins/single.php:559
330
  #: app/skins/single/default.php:185 app/skins/single/default.php:397
331
  #: app/skins/single/m1.php:170 app/skins/single/m2.php:102
335
 
336
  #: app/features/events.php:176 app/features/events.php:3212
337
  #: app/features/fes/form.php:737 app/features/mec.php:336
338
+ #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:4896
339
  msgid "Categories"
340
  msgstr "Kategorier"
341
 
342
  #: app/features/events.php:186 app/features/labels.php:71
343
  #: app/features/locations.php:69 app/features/organizers.php:69
344
+ #: app/features/speakers.php:72
345
  #, php-format
346
  msgid "All %s"
347
  msgstr "Alle %s"
348
 
349
  #: app/features/events.php:187 app/features/labels.php:72
350
  #: app/features/locations.php:70 app/features/organizers.php:70
351
+ #: app/features/speakers.php:73
352
  #, php-format
353
  msgid "Edit %s"
354
  msgstr "Rediger %s"
355
 
356
  #: app/features/events.php:188 app/features/labels.php:73
357
  #: app/features/locations.php:71 app/features/organizers.php:71
358
+ #: app/features/speakers.php:74
359
  #, php-format
360
  msgid "View %s"
361
  msgstr "Se %s"
362
 
363
  #: app/features/events.php:189 app/features/labels.php:74
364
  #: app/features/locations.php:72 app/features/organizers.php:72
365
+ #: app/features/speakers.php:75
366
  #, php-format
367
  msgid "Update %s"
368
  msgstr "Oppdatere %s"
369
 
370
  #: app/features/events.php:190 app/features/labels.php:75
371
  #: app/features/locations.php:73 app/features/organizers.php:73
372
+ #: app/features/speakers.php:76
373
  #, php-format
374
  msgid "Add New %s"
375
  msgstr "Legg til ny %s"
376
 
377
  #: app/features/events.php:191 app/features/labels.php:76
378
  #: app/features/locations.php:74 app/features/organizers.php:74
379
+ #: app/features/speakers.php:77
380
  #, php-format
381
  msgid "New %s Name"
382
  msgstr "Ny %s navn"
383
 
384
  #: app/features/events.php:192 app/features/labels.php:77
385
  #: app/features/locations.php:75 app/features/organizers.php:75
386
+ #: app/features/speakers.php:78
387
  #, php-format
388
  msgid "Popular %s"
389
  msgstr "Populære %s"
390
 
391
  #: app/features/events.php:193 app/features/labels.php:78
392
  #: app/features/locations.php:76 app/features/organizers.php:76
393
+ #: app/features/speakers.php:79
394
  #, php-format
395
  msgid "Search %s"
396
  msgstr "Søk i %s"
419
  #: app/features/fes.php:224 app/features/fes.php:332
420
  #: app/features/fes/form.php:669 app/features/labels.php:178
421
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
422
+ #: app/features/profile/profile.php:168 app/libraries/notifications.php:886
423
  #: app/modules/booking/steps/form.php:37
424
  msgid "Name"
425
  msgstr "Navn"
427
  #: app/features/events.php:463 app/features/events.php:2408
428
  #: app/features/events.php:2484 app/features/fes.php:224
429
  #: app/features/fes.php:332 app/features/fes/form.php:665
430
+ #: app/features/mec/booking.php:57 app/features/mec/booking.php:490
431
  #: app/features/organizers.php:111 app/features/organizers.php:152
432
+ #: app/features/profile/profile.php:171 app/features/speakers.php:126
433
+ #: app/features/speakers.php:187 app/libraries/main.php:1472
434
+ #: app/libraries/main.php:1541 app/libraries/main.php:2603
435
+ #: app/libraries/notifications.php:887 app/modules/booking/steps/form.php:46
436
  #: app/modules/booking/steps/form.php:84 app/skins/single.php:812
437
  #: app/skins/single.php:867 app/skins/single/default.php:227
438
  #: app/skins/single/default.php:439 app/skins/single/m1.php:107
528
  #: app/features/events.php:2324 app/features/events.php:2337
529
  #: app/features/fes/form.php:631 app/features/locations.php:299
530
  #: app/features/mec/booking.php:108 app/features/mec/booking.php:158
531
+ #: app/features/mec/booking.php:171 app/features/mec/booking.php:187
532
+ #: app/features/mec/booking.php:306 app/features/mec/booking.php:335
533
+ #: app/features/mec/booking.php:383 app/features/mec/booking.php:393
534
+ #: app/features/mec/booking.php:415 app/features/mec/booking.php:425
535
+ #: app/features/mec/dashboard.php:71
536
  #: app/features/mec/meta_boxes/display_options.php:66
537
  #: app/features/mec/meta_boxes/display_options.php:79
538
  #: app/features/mec/meta_boxes/display_options.php:92
568
  #: app/features/mec/modules.php:154 app/features/mec/modules.php:312
569
  #: app/features/mec/notifications.php:54 app/features/mec/notifications.php:111
570
  #: app/features/mec/notifications.php:163
571
+ #: app/features/mec/notifications.php:223
572
+ #: app/features/mec/notifications.php:291
573
+ #: app/features/mec/notifications.php:354
574
+ #: app/features/mec/notifications.php:365
575
+ #: app/features/mec/notifications.php:427
576
+ #: app/features/mec/notifications.php:473 app/features/mec/settings.php:66
577
  #: app/features/mec/settings.php:85 app/features/mec/settings.php:112
578
  #: app/features/mec/settings.php:147 app/features/mec/settings.php:168
579
  #: app/features/mec/settings.php:188 app/features/mec/settings.php:265
810
  #: app/features/events.php:1153 app/features/events.php:3434
811
  #: app/features/events.php:3476 app/features/fes/form.php:707
812
  #: app/features/ix.php:2743 app/features/ix.php:2784
813
+ #: app/features/mec/settings.php:576 app/libraries/main.php:4929
814
  #: app/widgets/single.php:103
815
  msgid "Event Cost"
816
  msgstr "Kostnad for arrangementet"
817
 
818
  #: app/features/events.php:1157 app/features/fes/form.php:710
819
+ #: app/libraries/main.php:4930 app/skins/single.php:582
820
  #: app/skins/single/default.php:119 app/skins/single/default.php:331
821
  #: app/skins/single/m1.php:49 app/skins/single/modern.php:199
822
  msgid "Cost"
834
 
835
  #: app/features/events.php:1189 app/features/events.php:2485
836
  #: app/features/fes.php:224 app/features/fes.php:332
837
+ #: app/features/mec/booking.php:491 app/features/profile/profile.php:53
838
+ #: app/libraries/main.php:2059 app/libraries/main.php:2661
839
  #: app/modules/booking/steps/tickets.php:22
840
  #: app/modules/next-event/details.php:90 app/skins/single.php:637
841
  #: app/skins/single/default.php:83 app/skins/single/default.php:295
882
  #: app/features/events.php:2313 app/features/events.php:3240
883
  #: app/features/events.php:3434 app/features/events.php:3476
884
  #: app/features/fes/form.php:226 app/features/ix.php:2743
885
+ #: app/features/ix.php:2784 app/features/mec/booking.php:375
886
+ #: app/features/mec/booking.php:407 app/features/mec/styling.php:115
887
  msgid "Title"
888
  msgstr "Tittel"
889
 
894
  #: app/features/events.php:2032 app/features/events.php:2059
895
  #: app/features/events.php:2158 app/features/events.php:2194
896
  #: app/features/events.php:2301 app/features/events.php:2343
897
+ #: app/features/mec/booking.php:318 app/features/mec/booking.php:347
898
+ #: app/features/mec/booking.php:398 app/features/mec/booking.php:430
899
+ #: app/libraries/main.php:2522 app/libraries/main.php:2552
900
+ #: app/libraries/main.php:2581 app/libraries/main.php:2611
901
+ #: app/libraries/main.php:2640 app/libraries/main.php:2669
902
+ #: app/libraries/main.php:2698 app/libraries/main.php:2727
903
+ #: app/libraries/main.php:2749 app/libraries/main.php:2780
904
+ #: app/libraries/main.php:2824 app/libraries/main.php:2868
905
+ #: app/libraries/main.php:2915 app/libraries/main.php:2954
906
  msgid "Remove"
907
  msgstr "Fjern"
908
 
929
  #: app/features/events.php:1336 app/features/events.php:1369
930
  #: app/features/events.php:1430 app/features/fes/form.php:831
931
  #: app/features/mec.php:344 app/features/mec/modules.php:52
932
+ #: app/features/mec/settings.php:624 app/features/speakers.php:62
933
+ #: app/libraries/main.php:559 app/libraries/main.php:4904
934
  #: app/modules/speakers/details.php:18
935
  msgid "Speakers"
936
  msgstr "Foredragsholdere"
947
  msgstr "Arrangemenslenker"
948
 
949
  #: app/features/events.php:1464 app/features/events.php:1470
950
+ #: app/features/fes/form.php:686 app/libraries/main.php:4927
951
  msgid "Event Link"
952
  msgstr "Arrangemenslenke"
953
 
974
  msgstr ""
975
 
976
  #: app/features/events.php:1480 app/features/events.php:1493
977
+ #: app/features/fes/form.php:691 app/libraries/main.php:4928
978
  #: app/skins/single.php:656 app/skins/single/default.php:133
979
  #: app/skins/single/default.php:345 app/skins/single/m1.php:191
980
  #: app/skins/single/m2.php:124 app/skins/single/modern.php:132
1045
  msgstr ""
1046
 
1047
  #: app/features/events.php:1638 app/libraries/book.php:60
1048
+ #: app/libraries/main.php:4932 app/modules/booking/steps/tickets.php:40
1049
  msgid "Tickets"
1050
  msgstr "Billetter"
1051
 
1081
  #: app/features/events.php:1996 app/features/events.php:1999
1082
  #: app/features/events.php:2055 app/features/events.php:2272
1083
  #: app/features/events.php:2276 app/features/events.php:2318
1084
+ #: app/features/events.php:2321 app/features/mec/booking.php:379
1085
+ #: app/features/mec/booking.php:382 app/features/mec/booking.php:411
1086
+ #: app/features/mec/booking.php:414
1087
  msgid "Price"
1088
  msgstr "Pris"
1089
 
1131
  msgstr "Avgifter"
1132
 
1133
  #: app/features/events.php:2132 app/features/events.php:2170
1134
+ #: app/features/mec/booking.php:298 app/features/mec/booking.php:327
1135
  msgid "Fee Title"
1136
  msgstr "Avgiftstittel"
1137
 
1138
  #: app/features/events.php:2138 app/features/events.php:2142
1139
  #: app/features/events.php:2175 app/features/events.php:2178
1140
+ #: app/features/mec/booking.php:302 app/features/mec/booking.php:305
1141
+ #: app/features/mec/booking.php:331 app/features/mec/booking.php:334
1142
  msgid "Amount"
1143
  msgstr "Beløp"
1144
 
1145
  #: app/features/events.php:2143 app/features/events.php:2179
1146
+ #: app/features/mec/booking.php:306 app/features/mec/booking.php:335
1147
  msgid ""
1148
  "Fee amount, considered as fixed amount if you set the type to amount "
1149
  "otherwise considered as percentage"
1152
  "som ellers betraktet som prosentandel"
1153
 
1154
  #: app/features/events.php:2152 app/features/events.php:2188
1155
+ #: app/features/mec/booking.php:313 app/features/mec/booking.php:342
1156
  msgid "Percent"
1157
  msgstr "Prosent"
1158
 
1159
  #: app/features/events.php:2153 app/features/events.php:2189
1160
+ #: app/features/mec/booking.php:314 app/features/mec/booking.php:343
1161
  msgid "Amount (Per Ticket)"
1162
  msgstr "Beløp (Per Billett)"
1163
 
1164
  #: app/features/events.php:2154 app/features/events.php:2190
1165
+ #: app/features/mec/booking.php:315 app/features/mec/booking.php:344
1166
  msgid "Amount (Per Booking)"
1167
  msgstr "Beløp (Per Bestilling)"
1168
 
1171
  msgstr "Billettvalg"
1172
 
1173
  #: app/features/events.php:2277 app/features/events.php:2322
1174
+ #: app/features/mec/booking.php:383 app/features/mec/booking.php:415
1175
  msgid "Option Price"
1176
  msgstr "Prisalternativer"
1177
 
1178
  #: app/features/events.php:2287 app/features/events.php:2291
1179
  #: app/features/events.php:2331 app/features/events.php:2334
1180
+ #: app/features/mec/booking.php:389 app/features/mec/booking.php:392
1181
+ #: app/features/mec/booking.php:421 app/features/mec/booking.php:424
1182
  msgid "Maximum Per Ticket"
1183
  msgstr "Maks Per billett"
1184
 
1185
  #: app/features/events.php:2292 app/features/events.php:2335
1186
+ #: app/features/mec/booking.php:393 app/features/mec/booking.php:425
1187
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
1188
  msgstr "Maks per billett. La det stå tomt for ubegrenset."
1189
 
1190
+ #: app/features/events.php:2481 app/features/mec/booking.php:487
1191
+ #: app/libraries/main.php:2544
1192
  #, fuzzy
1193
  #| msgid "Name"
1194
  msgid "MEC Name"
1195
  msgstr "Navn"
1196
 
1197
+ #: app/features/events.php:2482 app/features/mec/booking.php:488
1198
+ #: app/libraries/main.php:2573
1199
  #, fuzzy
1200
  #| msgid "Email"
1201
  msgid "MEC Email"
1202
  msgstr "E-post"
1203
 
1204
+ #: app/features/events.php:2483 app/features/mec/booking.php:489
1205
+ #: app/libraries/main.php:2514
1206
  msgid "Text"
1207
  msgstr "Tekst"
1208
 
1209
+ #: app/features/events.php:2486 app/features/mec/booking.php:492
1210
  #: app/features/organizers.php:103 app/features/organizers.php:148
1211
+ #: app/features/speakers.php:118 app/features/speakers.php:183
1212
+ #: app/features/speakers.php:256 app/libraries/main.php:2690
1213
  msgid "Tel"
1214
  msgstr "Tlf"
1215
 
1216
+ #: app/features/events.php:2487 app/features/mec/booking.php:493
1217
+ #: app/libraries/main.php:2632
1218
  msgid "File"
1219
  msgstr ""
1220
 
1221
+ #: app/features/events.php:2488 app/features/mec/booking.php:494
1222
+ #: app/libraries/main.php:2719
1223
  msgid "Textarea"
1224
  msgstr "Tekstområde"
1225
 
1226
+ #: app/features/events.php:2489 app/features/mec/booking.php:495
1227
+ #: app/libraries/main.php:2772
1228
  msgid "Checkboxes"
1229
  msgstr "Avmerkingsbokser"
1230
 
1231
+ #: app/features/events.php:2490 app/features/mec/booking.php:496
1232
+ #: app/libraries/main.php:2816
1233
  msgid "Radio Buttons"
1234
  msgstr "Radioknapper"
1235
 
1236
+ #: app/features/events.php:2491 app/features/mec/booking.php:497
1237
  #: app/features/mec/meta_boxes/search_form.php:34
1238
  #: app/features/mec/meta_boxes/search_form.php:41
1239
  #: app/features/mec/meta_boxes/search_form.php:48
1302
  #: app/features/mec/meta_boxes/search_form.php:599
1303
  #: app/features/mec/meta_boxes/search_form.php:606
1304
  #: app/features/mec/meta_boxes/search_form.php:613
1305
+ #: app/features/mec/meta_boxes/search_form.php:620 app/libraries/main.php:2860
1306
  msgid "Dropdown"
1307
  msgstr "Nedtrekksmeny"
1308
 
1309
+ #: app/features/events.php:2492 app/features/mec/booking.php:498
1310
+ #: app/libraries/main.php:2907
1311
  msgid "Agreement"
1312
  msgstr "Avtalen"
1313
 
1314
+ #: app/features/events.php:2493 app/features/mec/booking.php:499
1315
+ #: app/libraries/main.php:2748
1316
  msgid "Paragraph"
1317
  msgstr "Avsnitt"
1318
 
1351
  #: app/features/mec/meta_boxes/search_form.php:521
1352
  #: app/features/mec/meta_boxes/search_form.php:582
1353
  #: app/features/mec/settings.php:726 app/features/mec/single.php:212
1354
+ #: app/features/search.php:71 app/libraries/main.php:2053
1355
+ #: app/libraries/main.php:4901 app/libraries/skins.php:834
1356
  #: app/skins/single.php:486 app/skins/single.php:907
1357
  #: app/skins/single/default.php:169 app/skins/single/default.php:381
1358
  #: app/skins/single/m1.php:155 app/skins/single/m2.php:87
1377
  #: app/features/organizers.php:58 app/features/organizers.php:204
1378
  #: app/features/organizers.php:260 app/features/organizers.php:262
1379
  #: app/features/organizers.php:271 app/features/search.php:75
1380
+ #: app/libraries/main.php:4903 app/libraries/skins.php:860
1381
  #: app/skins/single.php:795 app/skins/single/default.php:210
1382
  #: app/skins/single/default.php:422 app/skins/single/m1.php:90
1383
  #: app/skins/single/m2.php:22 app/skins/single/modern.php:31
1421
  #: app/features/fes.php:224 app/features/fes.php:332 app/features/ix.php:2743
1422
  #: app/features/ix.php:2784 app/features/labels.php:177
1423
  #: app/features/locations.php:229 app/features/organizers.php:203
1424
+ #: app/features/speakers.php:253
1425
  msgid "ID"
1426
  msgstr "ID"
1427
 
1471
  msgstr "Arrangementet er fjernet"
1472
 
1473
  #: app/features/fes.php:224 app/features/fes.php:332
1474
+ #: app/features/profile/profile.php:174 app/libraries/main.php:2088
1475
+ #: app/libraries/main.php:4931
1476
  msgid "Ticket"
1477
  msgstr "Billett"
1478
 
1479
  #: app/features/fes.php:224 app/features/fes.php:332
1480
+ #: app/libraries/main.php:2065
1481
  msgid "Transaction ID"
1482
  msgstr "Transaksjons-ID"
1483
 
1565
 
1566
  #: app/features/fes/form.php:763 app/features/labels.php:61
1567
  #: app/features/labels.php:221 app/features/mec.php:337
1568
+ #: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:4898
1569
  #: app/skins/single.php:685 app/skins/single/default.php:148
1570
  #: app/skins/single/default.php:360 app/skins/single/m1.php:64
1571
  #: app/skins/single/modern.php:214
1898
  #: app/features/ix/export_g_calendar.php:147
1899
  #: app/features/ix/export_g_calendar.php:164
1900
  #: app/features/mec/notifications.php:92 app/features/mec/notifications.php:144
1901
+ #: app/features/mec/notifications.php:198
1902
+ #: app/features/mec/notifications.php:399
1903
  msgid "Add to Google Calendar"
1904
  msgstr "Legg til i Google Kalender"
1905
 
1906
+ #: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:629
1907
+ #: app/features/mec/modules.php:392 app/features/mec/notifications.php:591
1908
  #: app/features/mec/settings.php:895 app/features/mec/single.php:269
1909
  msgid "Checking ..."
1910
  msgstr "Sjekker ..."
1953
  msgstr "ICS-feed"
1954
 
1955
  #: app/features/ix/import.php:46 app/features/mec/booking.php:91
1956
+ #: app/features/mec/booking.php:264 app/features/mec/booking.php:282
1957
+ #: app/features/mec/booking.php:359
1958
  #: app/features/mec/meta_boxes/display_options.php:150
1959
  #: app/features/mec/meta_boxes/display_options.php:315
1960
  #: app/features/mec/modules.php:70 app/features/mec/modules.php:211
1964
  msgstr "%s er nødvendig for å bruke denne funksjonen."
1965
 
1966
  #: app/features/ix/import.php:46 app/features/ix/sync.php:22
1967
+ #: app/features/mec/booking.php:91 app/features/mec/booking.php:264
1968
+ #: app/features/mec/booking.php:282 app/features/mec/booking.php:359
1969
  #: app/features/mec/meta_boxes/display_options.php:150
1970
  #: app/features/mec/meta_boxes/display_options.php:315
1971
  #: app/features/mec/meta_boxes/display_options.php:330
2148
 
2149
  #: app/features/ix/sync.php:32 app/features/ix/sync.php:41
2150
  #: app/features/ix/sync.php:52 app/features/ix/sync.php:63
2151
+ #: app/features/mec/notifications.php:342
2152
  msgid "Important Note"
2153
  msgstr "Viktig merknad"
2154
 
2290
  "for at de er riktige."
2291
 
2292
  #: app/features/labels.php:79 app/features/locations.php:77
2293
+ #: app/features/organizers.php:77 app/features/speakers.php:80
2294
  #, php-format
2295
  msgid "← Back to %s"
2296
  msgstr ""
2336
  msgstr "Fremhevet"
2337
 
2338
  #: app/features/labels.php:118 app/features/labels.php:143
2339
+ #: app/libraries/main.php:5144 app/skins/agenda/render.php:41
2340
  #: app/skins/available_spot/tpl.php:42 app/skins/carousel/render.php:45
2341
  #: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:32
2342
  #: app/skins/daily_view/render.php:52 app/skins/grid/render.php:50
2354
  msgstr "Du kan vise utvalgte og kansellerte hendelser med en annen stil!"
2355
 
2356
  #: app/features/labels.php:180 app/features/locations.php:232
2357
+ #: app/features/organizers.php:206 app/features/speakers.php:257
2358
  #: app/modules/booking/steps/tickets.php:38
2359
  msgid "Count"
2360
  msgstr "Antall"
2371
 
2372
  #: app/features/locations.php:59 app/features/mec.php:338
2373
  #: app/features/mec/dashboard.php:243 app/features/mec/meta_boxes/filter.php:96
2374
+ #: app/libraries/main.php:4900
2375
  msgid "Locations"
2376
  msgstr "Steder"
2377
 
2404
 
2405
  #: app/features/locations.php:138 app/features/locations.php:180
2406
  #: app/features/organizers.php:127 app/features/organizers.php:160
2407
+ #: app/features/speakers.php:158 app/features/speakers.php:203
2408
  msgid "Thumbnail"
2409
  msgstr "Miniatyrbilde"
2410
 
2411
  #: app/features/locations.php:143 app/features/locations.php:183
2412
  #: app/features/organizers.php:132 app/features/organizers.php:163
2413
+ #: app/features/speakers.php:163 app/features/speakers.php:206
2414
  msgid "Upload/Add image"
2415
  msgstr "Last opp/Legg til bilde"
2416
 
2418
  #: app/features/locations.php:340 app/features/locations.php:347
2419
  #: app/features/organizers.php:133 app/features/organizers.php:164
2420
  #: app/features/organizers.php:299 app/features/organizers.php:306
2421
+ #: app/features/speakers.php:164 app/features/speakers.php:207
2422
  msgid "Remove image"
2423
  msgstr "Fjern bilde"
2424
 
2478
  msgid "Don't show map in single event page"
2479
  msgstr "Ikke vis kart i enkelt arrangement visning"
2480
 
2481
+ #: app/features/locations.php:356 app/libraries/main.php:4934
2482
  #, fuzzy
2483
  #| msgid "Locations"
2484
  msgid "Other Locations"
2536
 
2537
  #: app/features/mec.php:339 app/features/mec/dashboard.php:250
2538
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2539
+ #: app/libraries/main.php:4902
2540
  msgid "Organizers"
2541
  msgstr "Arrangører"
2542
 
2634
  msgid "Search..."
2635
  msgstr "Søk..."
2636
 
2637
+ #: app/features/mec/booking.php:72 app/features/mec/booking.php:505
2638
+ #: app/features/mec/booking.php:585 app/features/mec/booking.php:594
2639
+ #: app/features/mec/booking.php:604 app/features/mec/booking.php:646
2640
+ #: app/features/mec/booking.php:660 app/features/mec/messages.php:15
2641
  #: app/features/mec/messages.php:51 app/features/mec/messages.php:60
2642
  #: app/features/mec/messages.php:94 app/features/mec/messages.php:103
2643
  #: app/features/mec/modules.php:25 app/features/mec/modules.php:357
2644
  #: app/features/mec/modules.php:367 app/features/mec/modules.php:409
2645
  #: app/features/mec/modules.php:423 app/features/mec/notifications.php:14
2646
+ #: app/features/mec/notifications.php:500
2647
+ #: app/features/mec/notifications.php:512
2648
+ #: app/features/mec/notifications.php:608
2649
+ #: app/features/mec/notifications.php:622 app/features/mec/settings.php:34
2650
  #: app/features/mec/settings.php:844 app/features/mec/settings.php:854
2651
  #: app/features/mec/settings.php:912 app/features/mec/settings.php:926
2652
  #: app/features/mec/single.php:17 app/features/mec/single.php:234
2744
  "Bruker blir sendt til denne siden etter booking. La den være tom om du "
2745
  "ønsker å deaktivere den."
2746
 
2747
+ #: app/features/mec/booking.php:165 app/features/mec/booking.php:170
2748
+ #, fuzzy
2749
+ #| msgid "Thank You Page"
2750
+ msgid "Thank You Page Time Interval"
2751
+ msgstr "Takkeside"
2752
+
2753
+ #: app/features/mec/booking.php:167
2754
+ msgid "2000 mean 2 seconds"
2755
+ msgstr ""
2756
+
2757
+ #: app/features/mec/booking.php:171
2758
+ msgid ""
2759
+ "Waiting time before redirecting to thank you page. It's in miliseconds so "
2760
+ "2000 means 2 seconds."
2761
+ msgstr ""
2762
+
2763
+ #: app/features/mec/booking.php:182
2764
  msgid "Enable Express Attendees Form"
2765
  msgstr "Aktiver Ekspress Deltagere Skjema"
2766
 
2767
+ #: app/features/mec/booking.php:186 app/modules/booking/steps/form.php:52
2768
  msgid "Attendees Form"
2769
  msgstr "Deltagerskjema"
2770
 
2771
+ #: app/features/mec/booking.php:187
2772
  msgid ""
2773
  "Users are able to apply first attendee information for other attendees in "
2774
  "the booking form."
2776
  "Brukere kan søke førstegangsinformasjon for andre deltakere i "
2777
  "bestillingsskjemaet."
2778
 
2779
+ #: app/features/mec/booking.php:200
2780
  #, fuzzy
2781
  #| msgid "Download Invoice"
2782
  msgid "Enable Invoice"
2783
  msgstr "Last ned Faktura"
2784
 
2785
+ #: app/features/mec/booking.php:211
2786
  #, fuzzy
2787
  #| msgid "Enable Booking from Settings"
2788
  msgid "Enable Booking for Ongoing Events"
2789
  msgstr "Aktiver bestilling fra innstillinger"
2790
 
2791
+ #: app/features/mec/booking.php:216
2792
  msgid "Email verification"
2793
  msgstr "E-postbekreftelse"
2794
 
2795
+ #: app/features/mec/booking.php:222
2796
  msgid "Auto verification for free bookings"
2797
  msgstr "Automatisk godkjenning for gratis reservasjoner"
2798
 
2799
+ #: app/features/mec/booking.php:231
2800
  msgid "Auto verification for paid bookings"
2801
  msgstr "Auto godkjenning for betalte bookinger"
2802
 
2803
+ #: app/features/mec/booking.php:235 app/features/mec/notifications.php:151
2804
  #: app/libraries/main.php:573
2805
  msgid "Booking Confirmation"
2806
  msgstr "Bestillingsbekreftelsen"
2807
 
2808
+ #: app/features/mec/booking.php:241
2809
  msgid "Auto confirmation for free bookings"
2810
  msgstr "Auto bekreftelse for gratis bookinger"
2811
 
2812
+ #: app/features/mec/booking.php:250
2813
  msgid "Auto confirmation for paid bookings"
2814
  msgstr "Automatisk bekreftelse for betalt bookinger"
2815
 
2816
+ #: app/features/mec/booking.php:269
2817
  msgid "Enable coupons module"
2818
  msgstr "Aktiver rabattkupong modul"
2819
 
2820
+ #: app/features/mec/booking.php:271
2821
  msgid ""
2822
  "After enabling and saving the settings,, you should reload the page to see a "
2823
  "new menu on the Dashboard > Booking"
2824
  msgstr ""
2825
 
2826
+ #: app/features/mec/booking.php:279 app/libraries/main.php:552
2827
  msgid "Taxes / Fees"
2828
  msgstr "Avgifter"
2829
 
2830
+ #: app/features/mec/booking.php:287
2831
  msgid "Enable taxes / fees module"
2832
  msgstr "Aktive avgiftsmodul"
2833
 
2834
+ #: app/features/mec/booking.php:292
2835
  msgid "Add Fee"
2836
  msgstr "Legg til gebyr"
2837
 
2838
+ #: app/features/mec/booking.php:356 app/libraries/main.php:553
2839
  msgid "Ticket Variations & Options"
2840
  msgstr "billett variasjoner & alternativer"
2841
 
2842
+ #: app/features/mec/booking.php:364
2843
  msgid "Enable ticket options module"
2844
  msgstr "Aktiver alternativ modul for billett"
2845
 
2846
+ #: app/features/mec/booking.php:369
2847
  msgid "Add Variation / Option"
2848
  msgstr "Legg til variasjon/alternativ"
2849
 
2850
+ #: app/features/mec/booking.php:572
2851
  msgid "Enable Organizer Payment Module"
2852
  msgstr ""
2853
 
2854
+ #: app/features/mec/booking.php:576
2855
  #, fuzzy
2856
  #| msgid "Organizer Tel"
2857
  msgid "Organizer Payment"
2858
  msgstr "Tlf til arrangør"
2859
 
2860
+ #: app/features/mec/booking.php:577
2861
  msgid ""
2862
  "By enabling this module, organizers are able to insert their own payment "
2863
  "credentials for enabled gateways per event and receive the payments directly!"
2864
  msgstr ""
2865
 
2866
+ #: app/features/mec/booking.php:624 app/features/mec/messages.php:78
2867
+ #: app/features/mec/modules.php:387 app/features/mec/notifications.php:586
2868
  #: app/features/mec/settings.php:890 app/features/mec/single.php:264
2869
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:296
2870
  msgid "Saved"
2871
  msgstr "Lagret"
2872
 
2873
+ #: app/features/mec/booking.php:625 app/features/mec/messages.php:79
2874
+ #: app/features/mec/modules.php:388 app/features/mec/notifications.php:587
2875
  #: app/features/mec/settings.php:891 app/features/mec/single.php:265
2876
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:297
2877
  msgid "Settings Saved!"
2878
  msgstr "Innstillinger Lagret!"
2879
 
2880
+ #: app/features/mec/booking.php:627 app/features/mec/booking.php:649
2881
  #: app/features/mec/modules.php:390 app/features/mec/modules.php:412
2882
+ #: app/features/mec/notifications.php:589
2883
+ #: app/features/mec/notifications.php:611 app/features/mec/settings.php:893
2884
  #: app/features/mec/settings.php:915 app/features/mec/single.php:267
2885
+ #: app/features/mec/single.php:289 app/libraries/main.php:5143
2886
  msgid "Verified"
2887
  msgstr "Verifisert"
2888
 
2889
+ #: app/features/mec/booking.php:651 app/features/mec/modules.php:414
2890
+ #: app/features/mec/notifications.php:613 app/features/mec/settings.php:917
2891
  #: app/features/mec/single.php:291
2892
  msgid "Please Refresh Page"
2893
  msgstr "Vennligst Oppdater Side"
3852
  #: app/features/mec/meta_boxes/search_form.php:535
3853
  #: app/features/mec/meta_boxes/search_form.php:596
3854
  #: app/features/mec/settings.php:739 app/features/mec/single.php:217
3855
+ #: app/features/search.php:79 app/features/speakers.php:61
3856
+ #: app/features/speakers.php:254 app/libraries/main.php:4905
3857
  #: app/libraries/skins.php:886
3858
  msgid "Speaker"
3859
  msgstr "Foredragsholder"
4123
 
4124
  #: app/features/mec/notifications.php:45 app/features/mec/notifications.php:102
4125
  #: app/features/mec/notifications.php:154
4126
+ #: app/features/mec/notifications.php:214
4127
+ #: app/features/mec/notifications.php:282
4128
+ #: app/features/mec/notifications.php:345
4129
+ #: app/features/mec/notifications.php:418
4130
+ #: app/features/mec/notifications.php:464
4131
  msgid "Email Subject"
4132
  msgstr "E-postemne"
4133
 
4136
  #: app/features/mec/notifications.php:110
4137
  #: app/features/mec/notifications.php:158
4138
  #: app/features/mec/notifications.php:162
4139
+ #: app/features/mec/notifications.php:218
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4140
  #: app/features/mec/notifications.php:222
4141
+ #: app/features/mec/notifications.php:286
4142
  #: app/features/mec/notifications.php:290
4143
+ #: app/features/mec/notifications.php:349
4144
  #: app/features/mec/notifications.php:353
4145
  #: app/features/mec/notifications.php:364
4146
+ #: app/features/mec/notifications.php:422
4147
  #: app/features/mec/notifications.php:426
4148
+ #: app/features/mec/notifications.php:468
4149
  #: app/features/mec/notifications.php:472
4150
+ msgid "Custom Recipients"
4151
+ msgstr "Tilpassede Mottagere"
4152
+
4153
+ #: app/features/mec/notifications.php:54 app/features/mec/notifications.php:111
4154
+ #: app/features/mec/notifications.php:163
4155
+ #: app/features/mec/notifications.php:223
4156
+ #: app/features/mec/notifications.php:291
4157
+ #: app/features/mec/notifications.php:354
4158
+ #: app/features/mec/notifications.php:365
4159
+ #: app/features/mec/notifications.php:427
4160
+ #: app/features/mec/notifications.php:473
4161
  msgid "Insert comma separated emails for multiple recipients."
4162
  msgstr "Sett inn kommaseparerte eposter for flere samtidige mottagere."
4163
 
4164
+ #: app/features/mec/notifications.php:61 app/features/mec/notifications.php:234
4165
+ #: app/features/mec/notifications.php:298
4166
  msgid "Send the email to event organizer"
4167
  msgstr "Send epost til arrangøren"
4168
 
4169
  #: app/features/mec/notifications.php:64 app/features/mec/notifications.php:117
4170
  #: app/features/mec/notifications.php:169
4171
+ #: app/features/mec/notifications.php:241
4172
+ #: app/features/mec/notifications.php:301
4173
+ #: app/features/mec/notifications.php:371
4174
+ #: app/features/mec/notifications.php:433
4175
+ #: app/features/mec/notifications.php:479
4176
  msgid "Email Content"
4177
  msgstr "E-postinnhold"
4178
 
4179
  #: app/features/mec/notifications.php:67 app/features/mec/notifications.php:120
4180
  #: app/features/mec/notifications.php:172
4181
+ #: app/features/mec/notifications.php:244
4182
+ #: app/features/mec/notifications.php:304
4183
+ #: app/features/mec/notifications.php:374
4184
+ #: app/features/mec/notifications.php:436
4185
+ #: app/features/mec/notifications.php:482
4186
  msgid "You can use following placeholders"
4187
  msgstr "Du kan bruke følgende plassholdere"
4188
 
4189
  #: app/features/mec/notifications.php:69 app/features/mec/notifications.php:122
4190
  #: app/features/mec/notifications.php:174
4191
+ #: app/features/mec/notifications.php:246
4192
+ #: app/features/mec/notifications.php:306
4193
+ #: app/features/mec/notifications.php:376
4194
  msgid "First name of attendee"
4195
  msgstr "Fornavn til deltaker"
4196
 
4197
  #: app/features/mec/notifications.php:70 app/features/mec/notifications.php:123
4198
  #: app/features/mec/notifications.php:175
4199
+ #: app/features/mec/notifications.php:247
4200
+ #: app/features/mec/notifications.php:307
4201
+ #: app/features/mec/notifications.php:377
4202
  msgid "Last name of attendee"
4203
  msgstr "Etternavn på deltaker"
4204
 
4205
  #: app/features/mec/notifications.php:71 app/features/mec/notifications.php:124
4206
  #: app/features/mec/notifications.php:176
4207
+ #: app/features/mec/notifications.php:248
4208
+ #: app/features/mec/notifications.php:308
4209
+ #: app/features/mec/notifications.php:378
4210
  msgid "Email of attendee"
4211
  msgstr "E-post til deltaker"
4212
 
4213
  #: app/features/mec/notifications.php:72 app/features/mec/notifications.php:125
4214
  #: app/features/mec/notifications.php:177
4215
+ #: app/features/mec/notifications.php:249
4216
+ #: app/features/mec/notifications.php:309
4217
+ #: app/features/mec/notifications.php:379
4218
  msgid "Booked date of event"
4219
  msgstr "Booket dato for arrangement"
4220
 
4221
  #: app/features/mec/notifications.php:73 app/features/mec/notifications.php:126
4222
  #: app/features/mec/notifications.php:178
4223
+ #: app/features/mec/notifications.php:250
4224
+ #: app/features/mec/notifications.php:310
4225
+ #: app/features/mec/notifications.php:380
4226
  #, fuzzy
4227
  #| msgid "Booked date of event"
4228
  msgid "Booked time of event"
4230
 
4231
  #: app/features/mec/notifications.php:74 app/features/mec/notifications.php:127
4232
  #: app/features/mec/notifications.php:179
4233
+ #: app/features/mec/notifications.php:251
4234
+ #: app/features/mec/notifications.php:311
4235
+ #: app/features/mec/notifications.php:381
4236
  msgid "Booking Price"
4237
  msgstr "Booking Pris"
4238
 
4239
  #: app/features/mec/notifications.php:75 app/features/mec/notifications.php:128
4240
  #: app/features/mec/notifications.php:180
 
 
 
 
 
 
 
 
 
 
4241
  #: app/features/mec/notifications.php:252
4242
  #: app/features/mec/notifications.php:312
4243
  #: app/features/mec/notifications.php:382
4244
  #: app/features/mec/notifications.php:442
4245
  #: app/features/mec/notifications.php:488
4246
+ msgid "Your website title"
4247
+ msgstr "Ditt nettstedstittel"
4248
 
4249
+ #: app/features/mec/notifications.php:76 app/features/mec/notifications.php:129
4250
+ #: app/features/mec/notifications.php:181
4251
  #: app/features/mec/notifications.php:253
4252
  #: app/features/mec/notifications.php:313
4253
  #: app/features/mec/notifications.php:383
4254
  #: app/features/mec/notifications.php:443
4255
  #: app/features/mec/notifications.php:489
4256
+ msgid "Your website URL"
4257
+ msgstr "Din nettstedsadresse (URL)"
4258
+
4259
+ #: app/features/mec/notifications.php:77 app/features/mec/notifications.php:130
4260
+ #: app/features/mec/notifications.php:182
4261
+ #: app/features/mec/notifications.php:254
4262
+ #: app/features/mec/notifications.php:314
4263
+ #: app/features/mec/notifications.php:384
4264
+ #: app/features/mec/notifications.php:444
4265
+ #: app/features/mec/notifications.php:490
4266
  msgid "Your website description"
4267
  msgstr "Din nettstedsbeskrivelse"
4268
 
4269
  #: app/features/mec/notifications.php:78 app/features/mec/notifications.php:131
4270
  #: app/features/mec/notifications.php:183
4271
+ #: app/features/mec/notifications.php:255
4272
+ #: app/features/mec/notifications.php:315
4273
+ #: app/features/mec/notifications.php:385
4274
  msgid "Event title"
4275
  msgstr "Arrangementtittel"
4276
 
4277
  #: app/features/mec/notifications.php:79 app/features/mec/notifications.php:132
4278
  #: app/features/mec/notifications.php:184
4279
+ #: app/features/mec/notifications.php:256
4280
+ #: app/features/mec/notifications.php:316
4281
+ #: app/features/mec/notifications.php:386
4282
  #, fuzzy
4283
  #| msgid "Event Link"
4284
  msgid "Event link"
4286
 
4287
  #: app/features/mec/notifications.php:80 app/features/mec/notifications.php:133
4288
  #: app/features/mec/notifications.php:185
4289
+ #: app/features/mec/notifications.php:257
4290
+ #: app/features/mec/notifications.php:317
4291
+ #: app/features/mec/notifications.php:387
4292
  #, fuzzy
4293
  #| msgid "Organizer name of booked event"
4294
  msgid "Speaker name of booked event"
4296
 
4297
  #: app/features/mec/notifications.php:81 app/features/mec/notifications.php:134
4298
  #: app/features/mec/notifications.php:186
4299
+ #: app/features/mec/notifications.php:258
4300
+ #: app/features/mec/notifications.php:318
4301
+ #: app/features/mec/notifications.php:388
4302
  msgid "Organizer name of booked event"
4303
  msgstr "Arrangørnavnet av booket arrangement"
4304
 
4305
  #: app/features/mec/notifications.php:82 app/features/mec/notifications.php:135
4306
  #: app/features/mec/notifications.php:187
4307
+ #: app/features/mec/notifications.php:259
4308
+ #: app/features/mec/notifications.php:319
4309
+ #: app/features/mec/notifications.php:389
4310
  msgid "Organizer tel of booked event"
4311
  msgstr "Tlf til arrangør av booket arrangement"
4312
 
4313
  #: app/features/mec/notifications.php:83 app/features/mec/notifications.php:136
4314
  #: app/features/mec/notifications.php:188
4315
+ #: app/features/mec/notifications.php:260
4316
+ #: app/features/mec/notifications.php:320
4317
+ #: app/features/mec/notifications.php:390
4318
  msgid "Organizer email of booked event"
4319
  msgstr "E-post til arrangør av booket arrangement"
4320
 
4321
  #: app/features/mec/notifications.php:84 app/features/mec/notifications.php:137
4322
  #: app/features/mec/notifications.php:189
4323
+ #: app/features/mec/notifications.php:261
4324
+ #: app/features/mec/notifications.php:321
4325
+ #: app/features/mec/notifications.php:391
4326
  msgid "Location name of booked event"
4327
  msgstr "Stedsnavn til booket arrangement"
4328
 
4329
  #: app/features/mec/notifications.php:85 app/features/mec/notifications.php:138
4330
  #: app/features/mec/notifications.php:190
4331
+ #: app/features/mec/notifications.php:262
4332
+ #: app/features/mec/notifications.php:322
4333
+ #: app/features/mec/notifications.php:392
4334
  msgid "Location address of booked event"
4335
  msgstr "Adresse til bestilt arrangement"
4336
 
4337
+ #: app/features/mec/notifications.php:86 app/features/mec/notifications.php:264
4338
+ #: app/features/mec/notifications.php:324
4339
  msgid "Full Attendee info such as booking form data, name, email etc."
4340
  msgstr "Full deltager info som booking skjema data, navn, epost osv."
4341
 
4342
  #: app/features/mec/notifications.php:87 app/features/mec/notifications.php:192
4343
+ #: app/features/mec/notifications.php:394
4344
  msgid "Invoice Link"
4345
  msgstr "Fakturalenke"
4346
 
4347
  #: app/features/mec/notifications.php:88 app/features/mec/notifications.php:140
4348
  #: app/features/mec/notifications.php:193
4349
+ #: app/features/mec/notifications.php:265
4350
+ #: app/features/mec/notifications.php:325
4351
+ #: app/features/mec/notifications.php:395
4352
  msgid "Total Attendees"
4353
  msgstr "Antall deltakere"
4354
 
4355
  #: app/features/mec/notifications.php:89 app/features/mec/notifications.php:141
4356
+ #: app/features/mec/notifications.php:195
4357
+ #: app/features/mec/notifications.php:396
4358
  msgid "Ticket name"
4359
  msgstr "Navn på billett"
4360
 
4361
  #: app/features/mec/notifications.php:90 app/features/mec/notifications.php:142
4362
+ #: app/features/mec/notifications.php:196
4363
+ #: app/features/mec/notifications.php:397
4364
  msgid "Ticket time"
4365
  msgstr "Billettidspunkt"
4366
 
4367
  #: app/features/mec/notifications.php:91 app/features/mec/notifications.php:143
4368
+ #: app/features/mec/notifications.php:197
4369
+ #: app/features/mec/notifications.php:398
4370
  msgid "Download ICS file"
4371
  msgstr "Last ned ICS-fil"
4372
 
4387
  msgstr "Den sender til deltagere etter bekreftelse bookingen av administrator."
4388
 
4389
  #: app/features/mec/notifications.php:191
4390
+ #: app/features/mec/notifications.php:393
4391
  msgid "Booking cancellation link."
4392
  msgstr "Booking avbestillingskobling."
4393
 
4394
+ #: app/features/mec/notifications.php:194
4395
+ #, fuzzy
4396
+ #| msgid "Amount (Per Ticket)"
4397
+ msgid "Amount Tickets"
4398
+ msgstr "Beløp (Per Billett)"
4399
+
4400
+ #: app/features/mec/notifications.php:204 app/libraries/main.php:574
4401
  #, fuzzy
4402
  #| msgid "Booking cancellation link."
4403
  msgid "Booking Cancellation"
4404
  msgstr "Booking avbestillingskobling."
4405
 
4406
+ #: app/features/mec/notifications.php:208
4407
  #, fuzzy
4408
  #| msgid "Enable new event notification"
4409
  msgid "Enable cancellation notification"
4410
  msgstr "Aktiver nytt arrangement-varsel"
4411
 
4412
+ #: app/features/mec/notifications.php:212
4413
  #, fuzzy
4414
  #| msgid "It sends to attendee after booking for notifying him/her."
4415
  msgid ""
4417
  "them."
4418
  msgstr "Sendes til deltager etter booking for å opplyse han/henne."
4419
 
4420
+ #: app/features/mec/notifications.php:230
4421
  #, fuzzy
4422
  #| msgid "Send the email to event organizer"
4423
  msgid "Send the email to admin"
4424
  msgstr "Send epost til arrangøren"
4425
 
4426
+ #: app/features/mec/notifications.php:238
4427
  #, fuzzy
4428
  #| msgid "Send the email to event organizer"
4429
  msgid "Send the email to booking user"
4430
  msgstr "Send epost til arrangøren"
4431
 
4432
+ #: app/features/mec/notifications.php:263
4433
+ #: app/features/mec/notifications.php:323
4434
  msgid "Admin booking management link."
4435
  msgstr "Lenke til å Administrere booking."
4436
 
4437
+ #: app/features/mec/notifications.php:272 app/libraries/main.php:576
4438
  msgid "Admin"
4439
  msgstr ""
4440
 
4441
+ #: app/features/mec/notifications.php:276
4442
  #, fuzzy
4443
  #| msgid "Enable booking notification"
4444
  msgid "Enable admin notification"
4445
  msgstr "Tillatt bestillingsvarsel"
4446
 
4447
+ #: app/features/mec/notifications.php:280
4448
  msgid "It sends to admin to notify him/her that a new booking received."
4449
  msgstr ""
4450
  "Sender melding til admin for å gi hint til han/henne at ny booking er kommet."
4451
 
4452
+ #: app/features/mec/notifications.php:332 app/libraries/main.php:575
4453
  #: app/libraries/notifications.php:478
4454
  msgid "Booking Reminder"
4455
  msgstr "Påminnelse angående din bestilling"
4456
 
4457
+ #: app/features/mec/notifications.php:336
4458
  msgid "Enable booking reminder notification"
4459
  msgstr "Aktiver booking påminnelse"
4460
 
4461
+ #: app/features/mec/notifications.php:342
4462
  #, php-format
4463
  msgid ""
4464
  "Set a cronjob to call %s file once per day otherwise it won't send the "
4469
  "sende påmindelser. Vennligst noter at du burde kalle på denne filen %s eller "
4470
  "vill den sende påmindelser flere ganger."
4471
 
4472
+ #: app/features/mec/notifications.php:342
4473
  msgid "only once per day"
4474
  msgstr "bare en gang per dag"
4475
 
4476
+ #: app/features/mec/notifications.php:360
4477
  msgid "Days"
4478
  msgstr "Dager"
4479
 
4480
+ #: app/features/mec/notifications.php:408 app/features/mec/support-page.php:80
4481
  #: app/libraries/main.php:577
4482
  msgid "New Event"
4483
  msgstr "Nytt Arrangement"
4484
 
4485
+ #: app/features/mec/notifications.php:412
4486
  msgid "Enable new event notification"
4487
  msgstr "Aktiver nytt arrangement-varsel"
4488
 
4489
+ #: app/features/mec/notifications.php:416
4490
  msgid ""
4491
  "It sends after adding a new event from frontend event submission or from "
4492
  "website backend."
4494
  "Sender etter ett nytt arrangement fra event registrering eller fra "
4495
  "nettsidens bakside."
4496
 
4497
+ #: app/features/mec/notifications.php:438
4498
+ #: app/features/mec/notifications.php:484
4499
  msgid "Title of event"
4500
  msgstr "Tittel på arrangement"
4501
 
4502
+ #: app/features/mec/notifications.php:439
4503
+ #: app/features/mec/notifications.php:485
4504
  #, fuzzy
4505
  #| msgid "Title of event"
4506
  msgid "Link of event"
4507
  msgstr "Tittel på arrangement"
4508
 
4509
+ #: app/features/mec/notifications.php:440
4510
+ #: app/features/mec/notifications.php:486
4511
  msgid "Status of event"
4512
  msgstr "Status på arrangement"
4513
 
4514
+ #: app/features/mec/notifications.php:441
4515
+ #: app/features/mec/notifications.php:487 app/features/mec/settings.php:654
4516
  #: app/features/mec/settings.php:658
4517
  msgid "Event Note"
4518
  msgstr "Arrangementsnotat"
4519
 
4520
+ #: app/features/mec/notifications.php:445
4521
+ #: app/features/mec/notifications.php:491
4522
  msgid "Admin events management link."
4523
  msgstr "Lenge til arrangementsadministrasjon"
4524
 
4525
+ #: app/features/mec/notifications.php:454 app/libraries/main.php:578
4526
  #, fuzzy
4527
  #| msgid "The event published."
4528
  msgid "User Event Publishing"
4529
  msgstr "Arrangement er publisert."
4530
 
4531
+ #: app/features/mec/notifications.php:458
4532
  #, fuzzy
4533
  #| msgid "Enable new event notification"
4534
  msgid "Enable user event publishing notification"
4535
  msgstr "Aktiver nytt arrangement-varsel"
4536
 
4537
+ #: app/features/mec/notifications.php:462
4538
  #, fuzzy
4539
  #| msgid ""
4540
  #| "It sends after adding a new event from frontend event submission or from "
4640
  msgstr ""
4641
 
4642
  #: app/features/mec/settings.php:136 app/features/mec/settings.php:146
4643
+ #: app/libraries/main.php:4909
4644
  msgid "Weekdays"
4645
  msgstr "Ukedager"
4646
 
5774
  msgid "eg. https://webnus.net"
5775
  msgstr "F.eks. https://webnus.net"
5776
 
5777
+ #: app/features/organizers.php:311 app/libraries/main.php:4933
5778
  #: app/skins/single.php:845
5779
  msgid "Other Organizers"
5780
  msgstr "Andre Arrangører"
5800
  msgid "#"
5801
  msgstr "#"
5802
 
5803
+ #: app/features/profile/profile.php:56 app/libraries/main.php:2929
5804
  msgid "Status"
5805
  msgstr "Status"
5806
 
5807
+ #: app/features/profile/profile.php:59 app/libraries/main.php:2074
5808
  msgid "Attendees"
5809
  msgstr "Deltakere"
5810
 
5835
  msgid "No bookings found!"
5836
  msgstr "Ingen bestillinger funnet!"
5837
 
5838
+ #: app/features/search.php:87 app/libraries/main.php:4899
5839
  msgid "label"
5840
  msgstr "etikett"
5841
 
5870
  msgid "All of the day"
5871
  msgstr "Hele dagen"
5872
 
5873
+ #: app/features/speakers.php:110 app/features/speakers.php:179
5874
+ #: app/features/speakers.php:255
5875
  msgid "Job Title"
5876
  msgstr "Yrkestittel"
5877
 
5878
+ #: app/features/speakers.php:113 app/features/speakers.php:180
5879
  msgid "Insert speaker job title."
5880
  msgstr "Sette inn instruktørstilling."
5881
 
5882
+ #: app/features/speakers.php:121 app/features/speakers.php:184
5883
  msgid "Insert speaker phone number."
5884
  msgstr "Sette inn instruktørens telefonnummer."
5885
 
5886
+ #: app/features/speakers.php:129 app/features/speakers.php:188
5887
  msgid "Insert speaker email address."
5888
  msgstr "Sette inn instruktørens epost."
5889
 
5890
+ #: app/features/speakers.php:134 app/features/speakers.php:191
5891
  msgid "Facebook Page"
5892
  msgstr "Facebook-side"
5893
 
5894
+ #: app/features/speakers.php:137 app/features/speakers.php:192
5895
  msgid "Insert URL of Facebook Page"
5896
  msgstr "Sett inn nettadressen til Facebook-siden"
5897
 
5898
+ #: app/features/speakers.php:142 app/features/speakers.php:195
5899
  msgid "Instagram"
5900
  msgstr ""
5901
 
5902
+ #: app/features/speakers.php:145 app/features/speakers.php:196
5903
  #, fuzzy
5904
  #| msgid "Insert URL of Twitter Page"
5905
  msgid "Insert URL of Instagram"
5906
  msgstr "Sett inn nettadressen til Twitter-siden"
5907
 
5908
+ #: app/features/speakers.php:150 app/features/speakers.php:199
5909
  msgid "Twitter Page"
5910
  msgstr "Twitter-side"
5911
 
5912
+ #: app/features/speakers.php:153 app/features/speakers.php:200
5913
  msgid "Insert URL of Twitter Page"
5914
  msgstr "Sett inn nettadressen til Twitter-siden"
5915
 
5916
+ #: app/features/speakers.php:315
5917
  msgid "Sorry, You must insert speaker name!"
5918
  msgstr ""
5919
 
5920
+ #: app/features/speakers.php:364
5921
+ msgid ""
5922
+ "Note: You can use the speakers in your event edit/add page > hourly schedule "
5923
+ "section and speaker widget section!"
5924
+ msgstr ""
5925
+
5926
  #: app/libraries/book.php:60
5927
  #, php-format
5928
  msgid "%s Price"
5929
  msgstr "%s pris"
5930
 
5931
+ #: app/libraries/book.php:561
5932
  msgid "Discount"
5933
  msgstr "Rabatt"
5934
 
5935
+ #: app/libraries/book.php:651 app/modules/booking/default.php:305
5936
  #: app/modules/booking/default.php:403
5937
  msgid "Download Invoice"
5938
  msgstr "Last ned Faktura"
6063
  msgid "Slider View"
6064
  msgstr "Slider Visning"
6065
 
6066
+ #: app/libraries/main.php:382 app/libraries/main.php:4911
6067
  msgid "SU"
6068
  msgstr "SØN"
6069