Modern Events Calendar Lite - Version 3.4.0

Version Description

  • Added: Profile shortcode to show user bookings details
  • Added: Import from Meetup
  • Added: Auto sync for importing meetup events
  • Added: Ability to remove hourly schedule days
  • Added: Ability to change ticket price per date periods (Pro)
  • Fixed: Issue in Meetup and Stripe API
  • Fixed: Daily view in mobile and tablet
  • Fixed: Custom color in masonry category
  • Fixed: Masonry in Elementor tab
  • Fixed: Typography issues
  • Fixed: Google reCaptcha in Frontend submission form
  • Fixed: Booking smooth scroll (Pro)
  • Fixed: Event information displaying order in single event page (default skin)
  • Fixed: Date-picker in backend
  • Fixed: Display Grid clean and Monthly View when search box is enable
  • Fixed: Load languages in Lite version
  • Fixed: Load speaker in accordion toggle view
  • Fixed: Alt tag for images in Masonry view
  • Fixed: Modal view when click on thumbnails
  • Fixed: Console error (colorBrightness when no event exists)
  • Fixed: HTML tags in paragraph field of booking form both in backend and frontend (Pro)
  • Fixed: Invalid occurrence date in single event pages
  • Fixed: Some minor issues
Download this release

Release Info

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

Code changes from version 3.3.5 to 3.4.0

Files changed (52) hide show
  1. app/api/Meetup/meetup.php +132 -0
  2. app/api/Stripe/HttpClient/CurlClient.php +0 -3
  3. app/features/events.php +142 -70
  4. app/features/fes/form.php +11 -20
  5. app/features/ix.php +400 -9
  6. app/features/ix/export.php +2 -1
  7. app/features/ix/export_g_calendar.php +3 -2
  8. app/features/ix/import.php +2 -1
  9. app/features/ix/import_f_calendar.php +3 -2
  10. app/features/ix/import_g_calendar.php +2 -1
  11. app/features/ix/import_meetup.php +103 -0
  12. app/features/ix/sync.php +12 -1
  13. app/features/ix/thirdparty.php +4 -3
  14. app/features/mec/dashboard.php +1 -1
  15. app/features/mec/dyncss.php +2 -2
  16. app/features/mec/settings.php +14 -1
  17. app/features/profile.php +87 -0
  18. app/features/profile/index.html +0 -0
  19. app/features/profile/message.php +7 -0
  20. app/features/profile/profile.php +144 -0
  21. app/libraries/book.php +59 -1
  22. app/libraries/factory.php +2 -2
  23. app/libraries/main.php +52 -6
  24. app/libraries/render.php +2 -2
  25. app/libraries/skins.php +2 -4
  26. app/modules/booking/default.php +7 -1
  27. app/modules/booking/steps/form.php +6 -3
  28. app/modules/booking/steps/tickets.php +4 -2
  29. app/skins/grid/render.php +3 -3
  30. app/skins/list/render.php +8 -3
  31. app/skins/masonry/render.php +2 -2
  32. app/skins/masonry/tpl.php +5 -3
  33. app/skins/single/default.php +11 -6
  34. app/skins/single/m1.php +3 -1
  35. app/skins/single/m2.php +10 -4
  36. app/skins/single/modern.php +3 -1
  37. app/skins/single/tpl.php +1 -1
  38. assets/css/backend.css +1 -1
  39. assets/css/backend.min.css +1 -1
  40. assets/css/frontend.css +55 -4
  41. assets/css/frontend.min.css +1 -1
  42. assets/js/events.js +40 -1
  43. assets/js/frontend.js +49 -8
  44. changelog.txt +26 -1
  45. languages/modern-events-calendar-lite-de_DE.mo +0 -0
  46. languages/modern-events-calendar-lite-de_DE.po +1133 -877
  47. languages/modern-events-calendar-lite-en_US.mo +0 -0
  48. languages/modern-events-calendar-lite-en_US.po +1002 -805
  49. languages/modern-events-calendar-lite-es_ES.mo +0 -0
  50. languages/modern-events-calendar-lite-es_ES.po +1002 -835
  51. languages/modern-events-calendar-lite-fr_FR.mo +0 -0
  52. languages/modern-events-calendar-lite-fr_FR.po +269 -224
app/api/Meetup/meetup.php ADDED
@@ -0,0 +1,132 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Meetup {
4
+ const BASE = 'https://api.meetup.com';
5
+
6
+ protected $_parameters = array(
7
+ 'sign' => 'true',
8
+ );
9
+
10
+ public function __construct(array $parameters = array()) {
11
+ $this->_parameters = array_merge($this->_parameters, $parameters);
12
+ }
13
+
14
+ public function getEvents(array $parameters = array()) {
15
+ return $this->get('/:urlname/events', $parameters);
16
+ }
17
+
18
+ public function getEvent(array $parameters = array()) {
19
+ return $this->get('/:urlname/events/:id', $parameters);
20
+ }
21
+
22
+ public function getPhotos(array $parameters = array()) {
23
+ return $this->get('/2/photos', $parameters)->results;
24
+ }
25
+
26
+ public function getDiscussionBoards(array $parameters = array()) {
27
+ return $this->get('/:urlname/boards', $parameters);
28
+ }
29
+
30
+ public function getDiscussions(array $parameters = array()) {
31
+ return $this->get('/:urlname/boards/:bid/discussions', $parameters);
32
+ }
33
+
34
+ public function getMembers(array $parameters = array()) {
35
+ return $this->get('/2/members', $parameters);
36
+ }
37
+
38
+ public function getNext($response) {
39
+ if (!isset($response) || !isset($response->meta->next))
40
+ {
41
+ throw new Exception("Invalid response object.");
42
+ }
43
+ return $this->get_url($response->meta->next);
44
+ }
45
+
46
+ public function get($path, array $parameters = array()) {
47
+ $parameters = array_merge($this->_parameters, $parameters);
48
+
49
+ if (preg_match_all('/:([a-z]+)/', $path, $matches)) {
50
+
51
+ foreach ($matches[0] as $i => $match) {
52
+
53
+ if (isset($parameters[$matches[1][$i]])) {
54
+ $path = str_replace($match, $parameters[$matches[1][$i]], $path);
55
+ unset($parameters[$matches[1][$i]]);
56
+ } else {
57
+ throw new Exception("Missing parameter '" . $matches[1][$i] . "' for path '" . $path . "'.");
58
+ }
59
+ }
60
+ }
61
+
62
+ $url = self::BASE . $path . '?' . http_build_query($parameters);
63
+
64
+ return $this->get_url($url);
65
+ }
66
+
67
+ protected function get_url($url) {
68
+
69
+ $ch = curl_init();
70
+ curl_setopt($ch, CURLOPT_URL, $url);
71
+ curl_setopt($ch, CURLOPT_HTTPHEADER, array("Accept-Charset: utf-8"));
72
+ curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
73
+ curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
74
+
75
+ $content = curl_exec($ch);
76
+
77
+ if (curl_errno($ch)) {
78
+ $error = curl_error($ch);
79
+ curl_close($ch);
80
+
81
+ throw new Exception("Failed retrieving '" . $url . "' because of ' " . $error . "'.");
82
+ }
83
+
84
+ $response = json_decode($content);
85
+ $status = curl_getinfo($ch, CURLINFO_HTTP_CODE);
86
+
87
+ curl_close($ch);
88
+
89
+ if ($status != 200) {
90
+
91
+ if (isset($response->errors[0]->message)) {
92
+ $error = $response->errors[0]->message;
93
+ } else {
94
+ $error = 'Status ' . $status;
95
+ }
96
+
97
+ throw new Exception("Failed retrieving '" . $url . "' because of ' " . $error . "'.");
98
+ }
99
+
100
+ if (isset($response) == false) {
101
+
102
+ switch (json_last_error()) {
103
+ case JSON_ERROR_NONE:
104
+ $error = 'No errors';
105
+ break;
106
+ case JSON_ERROR_DEPTH:
107
+ $error = 'Maximum stack depth exceeded';
108
+ break;
109
+ case JSON_ERROR_STATE_MISMATCH:
110
+ $error = ' Underflow or the modes mismatch';
111
+ break;
112
+ case JSON_ERROR_CTRL_CHAR:
113
+ $error = 'Unexpected control character found';
114
+ break;
115
+ case JSON_ERROR_SYNTAX:
116
+ $error = 'Syntax error, malformed JSON';
117
+ break;
118
+ case JSON_ERROR_UTF8:
119
+ $error = 'Malformed UTF-8 characters, possibly incorrectly encoded';
120
+ break;
121
+ default:
122
+ $error = 'Unknown error';
123
+ break;
124
+ }
125
+
126
+ throw new Exception("Cannot read response by '" . $url . "' because of: '" . $error . "'.");
127
+ }
128
+
129
+ return $response;
130
+ }
131
+ }
132
+
app/api/Stripe/HttpClient/CurlClient.php CHANGED
@@ -163,9 +163,6 @@ class CurlClient implements ClientInterface
163
  $opts[CURLOPT_TIMEOUT] = $this->timeout;
164
  $opts[CURLOPT_HEADERFUNCTION] = $headerCallback;
165
  $opts[CURLOPT_HTTPHEADER] = $headers;
166
- if (!Stripe::$verifySslCerts) {
167
- $opts[CURLOPT_SSL_VERIFYPEER] = false;
168
- }
169
 
170
  curl_setopt_array($curl, $opts);
171
  $rbody = curl_exec($curl);
163
  $opts[CURLOPT_TIMEOUT] = $this->timeout;
164
  $opts[CURLOPT_HEADERFUNCTION] = $headerCallback;
165
  $opts[CURLOPT_HTTPHEADER] = $headers;
 
 
 
166
 
167
  curl_setopt_array($curl, $opts);
168
  $rbody = curl_exec($curl);
app/features/events.php CHANGED
@@ -655,87 +655,93 @@ class MEC_feature_events extends MEC_base
655
  </div>
656
  <div id="mec_meta_box_hourly_schedule_days">
657
  <?php $d = 0; foreach($hourly_schedules as $day): ?>
658
- <h4><?php echo isset($day['title']) ? $day['title'] : sprintf(__('Day %s', 'modern-events-calendar-lite'), $d+1); ?></h4>
659
- <div id="mec_meta_box_hourly_schedule_form">
660
- <div class="mec-form-row">
661
- <div class="mec-col-1"><label for="mec_add_hourly_schedule_day<?php echo $d; ?>_title"><?php echo __('Title', 'modern-events-calendar-lite'); ?></label></div>
662
- <div class="mec-col-11"><input type="text" id="mec_add_hourly_schedule_day<?php echo $d; ?>_title" name="mec[hourly_schedules][<?php echo $d; ?>][title]" value="<?php echo isset($day['title']) ? $day['title'] : ''; ?>" class="widefat"></div>
663
- </div>
664
- <div class="mec-form-row">
665
- <button class="button mec-add-hourly-schedule-button" type="button" id="mec_add_hourly_schedule_button<?php echo $d; ?>" data-day="<?php echo $d; ?>"><?php _e('Add', 'modern-events-calendar-lite'); ?></button>
666
- <span class="description"><?php esc_attr_e('Add new hourly schedule row', 'modern-events-calendar-lite'); ?></span>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
667
  </div>
668
- <div id="mec_hourly_schedules<?php echo $d; ?>">
669
- <?php $i = 0; foreach($day['schedules'] as $key=>$hourly_schedule): if(!is_numeric($key)) continue; $i = max($i, $key); ?>
670
- <div class="mec-form-row mec-box" id="mec_hourly_schedule_row<?php echo $d; ?>_<?php echo $key; ?>">
671
- <input class="mec-col-1" type="text" name="mec[hourly_schedules][<?php echo $d; ?>][schedules][<?php echo $key; ?>][from]" placeholder="<?php esc_attr_e('From e.g. 8:15', 'modern-events-calendar-lite'); ?>" value="<?php echo esc_attr($hourly_schedule['from']); ?>" />
672
- <input class="mec-col-1" type="text" name="mec[hourly_schedules][<?php echo $d; ?>][schedules][<?php echo $key; ?>][to]" placeholder="<?php esc_attr_e('To e.g. 8:45', 'modern-events-calendar-lite'); ?>" value="<?php echo esc_attr($hourly_schedule['to']); ?>" />
673
- <input class="mec-col-3" type="text" name="mec[hourly_schedules][<?php echo $d; ?>][schedules][<?php echo $key; ?>][title]" placeholder="<?php esc_attr_e('Title', 'modern-events-calendar-lite'); ?>" value="<?php echo esc_attr($hourly_schedule['title']); ?>" />
674
- <input class="mec-col-6" type="text" name="mec[hourly_schedules][<?php echo $d; ?>][schedules][<?php echo $key; ?>][description]" placeholder="<?php esc_attr_e('Description', 'modern-events-calendar-lite'); ?>" value="<?php echo esc_attr($hourly_schedule['description']); ?>" />
675
- <button class="button" type="button" onclick="mec_hourly_schedule_remove(<?php echo $d; ?>, <?php echo $key; ?>)"><?php _e('Remove', 'modern-events-calendar-lite'); ?></button>
676
  <?php if($speakers_status): ?>
677
- <div class="mec-col-12 mec-hourly-schedule-form-speakers">
678
- <strong><?php echo $this->main->m('taxonomy_speakers', __('Speakers', 'modern-events-calendar-lite')); ?></strong>
679
- <?php foreach($speakers as $speaker): ?>
680
- <label><input type="checkbox" name="mec[hourly_schedules][<?php echo $d; ?>][schedules][<?php echo $key; ?>][speakers][]" value="<?php echo $speaker->term_id; ?>" <?php echo (isset($hourly_schedule['speakers']) and in_array($speaker->term_id, $hourly_schedule['speakers'])) ? 'checked="checked"' : ''; ?>><?php echo $speaker->name; ?></label>
681
- <?php endforeach; ?>
682
- </div>
683
  <?php endif; ?>
684
  </div>
685
- <?php endforeach; ?>
686
- </div>
687
- </div>
688
- <input type="hidden" id="mec_new_hourly_schedule_key<?php echo $d; ?>" value="<?php echo $i+1; ?>" />
689
- <div class="mec-util-hidden" id="mec_new_hourly_schedule_raw<?php echo $d; ?>">
690
- <div class="mec-form-row mec-box" id="mec_hourly_schedule_row<?php echo $d; ?>_:i:">
691
- <input class="mec-col-1" type="text" name="mec[hourly_schedules][<?php echo $d; ?>][schedules][:i:][from]" placeholder="<?php esc_attr_e('From e.g. 8:15', 'modern-events-calendar-lite'); ?>" />
692
- <input class="mec-col-1" type="text" name="mec[hourly_schedules][<?php echo $d; ?>][schedules][:i:][to]" placeholder="<?php esc_attr_e('To e.g. 8:45', 'modern-events-calendar-lite'); ?>" />
693
- <input class="mec-col-3" type="text" name="mec[hourly_schedules][<?php echo $d; ?>][schedules][:i:][title]" placeholder="<?php esc_attr_e('Title', 'modern-events-calendar-lite'); ?>" />
694
- <input class="mec-col-6" type="text" name="mec[hourly_schedules][<?php echo $d; ?>][schedules][:i:][description]" placeholder="<?php esc_attr_e('Description', 'modern-events-calendar-lite'); ?>" />
695
- <button class="button" type="button" onclick="mec_hourly_schedule_remove(<?php echo $d; ?>, :i:)"><?php _e('Remove', 'modern-events-calendar-lite'); ?></button>
696
- <?php if($speakers_status): ?>
697
- <div class="mec-col-12 mec-hourly-schedule-form-speakers">
698
- <strong><?php echo $this->main->m('taxonomy_speakers', __('Speakers', 'modern-events-calendar-lite')); ?></strong>
699
- <?php foreach($speakers as $speaker): ?>
700
- <label><input type="checkbox" name="mec[hourly_schedules][<?php echo $d; ?>][schedules][:i:][speakers][]" value="<?php echo $speaker->term_id; ?>"><?php echo $speaker->name; ?></label>
701
- <?php endforeach; ?>
702
- </div>
703
- <?php endif; ?>
704
  </div>
705
  </div>
706
  <?php $d++; endforeach; ?>
707
  </div>
708
  <input type="hidden" id="mec_new_hourly_schedule_day_key" value="<?php echo $d; ?>" />
709
  <div class="mec-util-hidden" id="mec_new_hourly_schedule_day_raw">
710
- <h4><?php echo __('Day :dd:', 'modern-events-calendar-lite'); ?></h4>
711
- <div id="mec_meta_box_hourly_schedule_form:d:">
712
- <div class="mec-form-row">
713
- <div class="mec-col-1"><label for="mec_add_hourly_schedule_day:d:_title"><?php echo __('Title', 'modern-events-calendar-lite'); ?></label></div>
714
- <div class="mec-col-11"><input type="text" id="mec_add_hourly_schedule_day:d:_title" name="mec[hourly_schedules][:d:][title]" value="<?php echo __('Day :dd:', 'modern-events-calendar-lite'); ?>" class="widefat"></div>
715
- </div>
716
- <div class="mec-form-row">
717
- <button class="button mec-add-hourly-schedule-button" type="button" id="mec_add_hourly_schedule_button:d:" data-day=":d:"><?php _e('Add', 'modern-events-calendar-lite'); ?></button>
718
- <span class="description"><?php esc_attr_e('Add new hourly schedule row', 'modern-events-calendar-lite'); ?></span>
719
- </div>
720
- <div id="mec_hourly_schedules:d:">
 
 
 
721
  </div>
722
- </div>
723
- <input type="hidden" id="mec_new_hourly_schedule_key:d:" value="1" />
724
- <div class="mec-util-hidden" id="mec_new_hourly_schedule_raw:d:">
725
- <div class="mec-form-row mec-box" id="mec_hourly_schedule_row:d:_:i:">
726
- <input class="mec-col-1" type="text" name="mec[hourly_schedules][:d:][schedules][:i:][from]" placeholder="<?php esc_attr_e('From e.g. 8:15', 'modern-events-calendar-lite'); ?>" />
727
- <input class="mec-col-1" type="text" name="mec[hourly_schedules][:d:][schedules][:i:][to]" placeholder="<?php esc_attr_e('To e.g. 8:45', 'modern-events-calendar-lite'); ?>" />
728
- <input class="mec-col-3" type="text" name="mec[hourly_schedules][:d:][schedules][:i:][title]" placeholder="<?php esc_attr_e('Title', 'modern-events-calendar-lite'); ?>" />
729
- <input class="mec-col-6" type="text" name="mec[hourly_schedules][:d:][schedules][:i:][description]" placeholder="<?php esc_attr_e('Description', 'modern-events-calendar-lite'); ?>" />
730
- <button class="button" type="button" onclick="mec_hourly_schedule_remove(:d:, :i:)"><?php _e('Remove', 'modern-events-calendar-lite'); ?></button>
731
- <?php if($speakers_status): ?>
732
- <div class="mec-col-12 mec-hourly-schedule-form-speakers">
733
- <strong><?php echo $this->main->m('taxonomy_speakers', __('Speakers', 'modern-events-calendar-lite')); ?></strong>
734
- <?php foreach($speakers as $speaker): ?>
735
- <label><input type="checkbox" name="mec[hourly_schedules][:d:][schedules][:i:][speakers][]" value="<?php echo $speaker->term_id; ?>"><?php echo $speaker->name; ?></label>
736
- <?php endforeach; ?>
 
737
  </div>
738
- <?php endif; ?>
739
  </div>
740
  </div>
741
  </div>
@@ -901,6 +907,39 @@ class MEC_feature_events extends MEC_base
901
  <?php _e('Unlimited', 'modern-events-calendar-lite'); ?>
902
  </label>
903
  <button class="button" type="button" onclick="mec_ticket_remove(<?php echo $key; ?>);"><?php _e('Remove', 'modern-events-calendar-lite'); ?></button>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
904
  </div>
905
  </div>
906
  <?php endforeach; ?>
@@ -970,8 +1009,28 @@ class MEC_feature_events extends MEC_base
970
  <input id="mec_tickets_unlimited_:i:" type="checkbox" value="1" name="mec[tickets][:i:][unlimited]" />
971
  <?php _e('Unlimited', 'modern-events-calendar-lite'); ?>
972
  </label>
973
- <button class="button" type="button" onclick="mec_ticket_remove(:i:);"><?php _e('Remove', 'modern-events-calendar-lite'); ?></button>
974
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
975
  </div>
976
  </div>
977
  </div>
@@ -1603,6 +1662,19 @@ class MEC_feature_events extends MEC_base
1603
 
1604
  $tickets = isset($_mec['tickets']) ? $_mec['tickets'] : array();
1605
  unset($tickets[':i:']);
 
 
 
 
 
 
 
 
 
 
 
 
 
1606
 
1607
  update_post_meta($post_id, 'mec_tickets', $tickets);
1608
 
655
  </div>
656
  <div id="mec_meta_box_hourly_schedule_days">
657
  <?php $d = 0; foreach($hourly_schedules as $day): ?>
658
+ <div id="mec_meta_box_hourly_schedule_day_<?php echo $d; ?>">
659
+ <h4><?php echo isset($day['title']) ? $day['title'] : sprintf(__('Day %s', 'modern-events-calendar-lite'), $d+1); ?></h4>
660
+ <div id="mec_meta_box_hourly_schedule_form<?php echo $d; ?>">
661
+ <div class="mec-form-row">
662
+ <div class="mec-col-1"><label for="mec_add_hourly_schedule_day<?php echo $d; ?>_title"><?php echo __('Title', 'modern-events-calendar-lite'); ?></label></div>
663
+ <div class="mec-col-10"><input type="text" id="mec_add_hourly_schedule_day<?php echo $d; ?>_title" name="mec[hourly_schedules][<?php echo $d; ?>][title]" value="<?php echo isset($day['title']) ? $day['title'] : ''; ?>" class="widefat"></div>
664
+ <div class="mec-col-1"><button class="button" type="button" onclick="mec_hourly_schedule_day_remove(<?php echo $d; ?>)"><?php echo __('Remove', 'modern-events-calendar-lite'); ?></button></div>
665
+ </div>
666
+ <div class="mec-form-row">
667
+ <button class="button mec-add-hourly-schedule-button" type="button" id="mec_add_hourly_schedule_button<?php echo $d; ?>" data-day="<?php echo $d; ?>"><?php _e('Add', 'modern-events-calendar-lite'); ?></button>
668
+ <span class="description"><?php esc_attr_e('Add new hourly schedule row', 'modern-events-calendar-lite'); ?></span>
669
+ </div>
670
+ <div id="mec_hourly_schedules<?php echo $d; ?>">
671
+ <?php $i = 0; foreach($day['schedules'] as $key=>$hourly_schedule): if(!is_numeric($key)) continue; $i = max($i, $key); ?>
672
+ <div class="mec-form-row mec-box" id="mec_hourly_schedule_row<?php echo $d; ?>_<?php echo $key; ?>">
673
+ <input class="mec-col-1" type="text" name="mec[hourly_schedules][<?php echo $d; ?>][schedules][<?php echo $key; ?>][from]" placeholder="<?php esc_attr_e('From e.g. 8:15', 'modern-events-calendar-lite'); ?>" value="<?php echo esc_attr($hourly_schedule['from']); ?>" />
674
+ <input class="mec-col-1" type="text" name="mec[hourly_schedules][<?php echo $d; ?>][schedules][<?php echo $key; ?>][to]" placeholder="<?php esc_attr_e('To e.g. 8:45', 'modern-events-calendar-lite'); ?>" value="<?php echo esc_attr($hourly_schedule['to']); ?>" />
675
+ <input class="mec-col-3" type="text" name="mec[hourly_schedules][<?php echo $d; ?>][schedules][<?php echo $key; ?>][title]" placeholder="<?php esc_attr_e('Title', 'modern-events-calendar-lite'); ?>" value="<?php echo esc_attr($hourly_schedule['title']); ?>" />
676
+ <input class="mec-col-6" type="text" name="mec[hourly_schedules][<?php echo $d; ?>][schedules][<?php echo $key; ?>][description]" placeholder="<?php esc_attr_e('Description', 'modern-events-calendar-lite'); ?>" value="<?php echo esc_attr($hourly_schedule['description']); ?>" />
677
+ <button class="button" type="button" onclick="mec_hourly_schedule_remove(<?php echo $d; ?>, <?php echo $key; ?>)"><?php _e('Remove', 'modern-events-calendar-lite'); ?></button>
678
+ <?php if($speakers_status): ?>
679
+ <div class="mec-col-12 mec-hourly-schedule-form-speakers">
680
+ <strong><?php echo $this->main->m('taxonomy_speakers', __('Speakers', 'modern-events-calendar-lite')); ?></strong>
681
+ <?php foreach($speakers as $speaker): ?>
682
+ <label><input type="checkbox" name="mec[hourly_schedules][<?php echo $d; ?>][schedules][<?php echo $key; ?>][speakers][]" value="<?php echo $speaker->term_id; ?>" <?php echo (isset($hourly_schedule['speakers']) and in_array($speaker->term_id, $hourly_schedule['speakers'])) ? 'checked="checked"' : ''; ?>><?php echo $speaker->name; ?></label>
683
+ <?php endforeach; ?>
684
+ </div>
685
+ <?php endif; ?>
686
+ </div>
687
+ <?php endforeach; ?>
688
+ </div>
689
  </div>
690
+ <input type="hidden" id="mec_new_hourly_schedule_key<?php echo $d; ?>" value="<?php echo $i+1; ?>" />
691
+ <div class="mec-util-hidden" id="mec_new_hourly_schedule_raw<?php echo $d; ?>">
692
+ <div class="mec-form-row mec-box" id="mec_hourly_schedule_row<?php echo $d; ?>_:i:">
693
+ <input class="mec-col-1" type="text" name="mec[hourly_schedules][<?php echo $d; ?>][schedules][:i:][from]" placeholder="<?php esc_attr_e('From e.g. 8:15', 'modern-events-calendar-lite'); ?>" />
694
+ <input class="mec-col-1" type="text" name="mec[hourly_schedules][<?php echo $d; ?>][schedules][:i:][to]" placeholder="<?php esc_attr_e('To e.g. 8:45', 'modern-events-calendar-lite'); ?>" />
695
+ <input class="mec-col-3" type="text" name="mec[hourly_schedules][<?php echo $d; ?>][schedules][:i:][title]" placeholder="<?php esc_attr_e('Title', 'modern-events-calendar-lite'); ?>" />
696
+ <input class="mec-col-6" type="text" name="mec[hourly_schedules][<?php echo $d; ?>][schedules][:i:][description]" placeholder="<?php esc_attr_e('Description', 'modern-events-calendar-lite'); ?>" />
697
+ <button class="button" type="button" onclick="mec_hourly_schedule_remove(<?php echo $d; ?>, :i:)"><?php _e('Remove', 'modern-events-calendar-lite'); ?></button>
698
  <?php if($speakers_status): ?>
699
+ <div class="mec-col-12 mec-hourly-schedule-form-speakers">
700
+ <strong><?php echo $this->main->m('taxonomy_speakers', __('Speakers', 'modern-events-calendar-lite')); ?></strong>
701
+ <?php foreach($speakers as $speaker): ?>
702
+ <label><input type="checkbox" name="mec[hourly_schedules][<?php echo $d; ?>][schedules][:i:][speakers][]" value="<?php echo $speaker->term_id; ?>"><?php echo $speaker->name; ?></label>
703
+ <?php endforeach; ?>
704
+ </div>
705
  <?php endif; ?>
706
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
707
  </div>
708
  </div>
709
  <?php $d++; endforeach; ?>
710
  </div>
711
  <input type="hidden" id="mec_new_hourly_schedule_day_key" value="<?php echo $d; ?>" />
712
  <div class="mec-util-hidden" id="mec_new_hourly_schedule_day_raw">
713
+ <div id="mec_meta_box_hourly_schedule_day_:d:">
714
+ <h4><?php echo __('Day :dd:', 'modern-events-calendar-lite'); ?></h4>
715
+ <div id="mec_meta_box_hourly_schedule_form:d:">
716
+ <div class="mec-form-row">
717
+ <div class="mec-col-1"><label for="mec_add_hourly_schedule_day:d:_title"><?php echo __('Title', 'modern-events-calendar-lite'); ?></label></div>
718
+ <div class="mec-col-10"><input type="text" id="mec_add_hourly_schedule_day:d:_title" name="mec[hourly_schedules][:d:][title]" value="<?php echo __('Day :dd:', 'modern-events-calendar-lite'); ?>" class="widefat"></div>
719
+ <div class="mec-col-1"><button class="button" type="button" onclick="mec_hourly_schedule_day_remove(:d:)"><?php echo __('Remove', 'modern-events-calendar-lite'); ?></button></div>
720
+ </div>
721
+ <div class="mec-form-row">
722
+ <button class="button mec-add-hourly-schedule-button" type="button" id="mec_add_hourly_schedule_button:d:" data-day=":d:"><?php _e('Add', 'modern-events-calendar-lite'); ?></button>
723
+ <span class="description"><?php esc_attr_e('Add new hourly schedule row', 'modern-events-calendar-lite'); ?></span>
724
+ </div>
725
+ <div id="mec_hourly_schedules:d:">
726
+ </div>
727
  </div>
728
+ <input type="hidden" id="mec_new_hourly_schedule_key:d:" value="1" />
729
+ <div class="mec-util-hidden" id="mec_new_hourly_schedule_raw:d:">
730
+ <div class="mec-form-row mec-box" id="mec_hourly_schedule_row:d:_:i:">
731
+ <input class="mec-col-1" type="text" name="mec[hourly_schedules][:d:][schedules][:i:][from]" placeholder="<?php esc_attr_e('From e.g. 8:15', 'modern-events-calendar-lite'); ?>" />
732
+ <input class="mec-col-1" type="text" name="mec[hourly_schedules][:d:][schedules][:i:][to]" placeholder="<?php esc_attr_e('To e.g. 8:45', 'modern-events-calendar-lite'); ?>" />
733
+ <input class="mec-col-3" type="text" name="mec[hourly_schedules][:d:][schedules][:i:][title]" placeholder="<?php esc_attr_e('Title', 'modern-events-calendar-lite'); ?>" />
734
+ <input class="mec-col-6" type="text" name="mec[hourly_schedules][:d:][schedules][:i:][description]" placeholder="<?php esc_attr_e('Description', 'modern-events-calendar-lite'); ?>" />
735
+ <button class="button" type="button" onclick="mec_hourly_schedule_remove(:d:, :i:)"><?php _e('Remove', 'modern-events-calendar-lite'); ?></button>
736
+ <?php if($speakers_status): ?>
737
+ <div class="mec-col-12 mec-hourly-schedule-form-speakers">
738
+ <strong><?php echo $this->main->m('taxonomy_speakers', __('Speakers', 'modern-events-calendar-lite')); ?></strong>
739
+ <?php foreach($speakers as $speaker): ?>
740
+ <label><input type="checkbox" name="mec[hourly_schedules][:d:][schedules][:i:][speakers][]" value="<?php echo $speaker->term_id; ?>"><?php echo $speaker->name; ?></label>
741
+ <?php endforeach; ?>
742
+ </div>
743
+ <?php endif; ?>
744
  </div>
 
745
  </div>
746
  </div>
747
  </div>
907
  <?php _e('Unlimited', 'modern-events-calendar-lite'); ?>
908
  </label>
909
  <button class="button" type="button" onclick="mec_ticket_remove(<?php echo $key; ?>);"><?php _e('Remove', 'modern-events-calendar-lite'); ?></button>
910
+ </div>
911
+ <div id="mec_price_per_dates_container">
912
+ <div class="mec-form-row">
913
+ <h4><?php _e('Price per Date', 'modern-events-calendar-lite'); ?></h4>
914
+ <button class="button mec_add_price_date_button" type="button" data-key="<?php echo $key; ?>"><?php _e('Add', 'modern-events-calendar-lite'); ?></button>
915
+ </div>
916
+ <div id="mec-ticket-price-dates-<?php echo $key; ?>">
917
+ <?php if(isset($ticket['dates']) and count($ticket['dates'])): ?>
918
+ <?php $j = 0; foreach($ticket['dates'] as $p=>$price_date): if(!is_numeric($p)) continue; $j = max($j, $p); ?>
919
+ <div id="mec_ticket_price_raw_<?php echo $key; ?>_<?php echo $p; ?>">
920
+ <div class="mec-form-row">
921
+ <input class="mec-col-3 mec_date_picker" type="text" name="mec[tickets][<?php echo $key; ?>][dates][<?php echo $p; ?>][start]" value="<?php echo isset($price_date['start']) ? $price_date['start'] : date('Y-m-d'); ?>" placeholder="<?php esc_attr_e('Start', 'modern-events-calendar-lite'); ?>" />
922
+ <input class="mec-col-3 mec_date_picker" type="text" name="mec[tickets][<?php echo $key; ?>][dates][<?php echo $p; ?>][end]" value="<?php echo isset($price_date['end']) ? $price_date['end'] : date('Y-m-d', strtotime('+10 days')); ?>" placeholder="<?php esc_attr_e('End', 'modern-events-calendar-lite'); ?>" />
923
+ <input class="mec-col-3" type="text" name="mec[tickets][<?php echo $key; ?>][dates][<?php echo $p; ?>][price]" value="<?php echo isset($price_date['price']) ? $price_date['price'] : ''; ?>" placeholder="<?php esc_attr_e('Price', 'modern-events-calendar-lite'); ?>" />
924
+ <input class="mec-col-2" type="text" name="mec[tickets][<?php echo $key; ?>][dates][<?php echo $p; ?>][label]" value="<?php echo isset($price_date['label']) ? $price_date['label'] : ''; ?>" placeholder="<?php esc_attr_e('Label', 'modern-events-calendar-lite'); ?>" />
925
+ <button class="button mec-col-1" type="button" onclick="mec_ticket_price_remove(<?php echo $key; ?>, <?php echo $p; ?>)"><?php _e('Remove', 'modern-events-calendar-lite'); ?></button>
926
+ </div>
927
+ </div>
928
+ <?php endforeach; ?>
929
+ <?php endif; ?>
930
+ </div>
931
+ <input type="hidden" id="mec_new_ticket_price_key_<?php echo $key; ?>" value="<?php echo $j+1; ?>" />
932
+ <div class="mec-util-hidden" id="mec_new_ticket_price_raw_<?php echo $key; ?>">
933
+ <div id="mec_ticket_price_raw_<?php echo $key; ?>_:j:">
934
+ <div class="mec-form-row">
935
+ <input class="mec-col-3 new_added" type="text" name="mec[tickets][<?php echo $key; ?>][dates][:j:][start]" value="<?php echo date('Y-m-d'); ?>" placeholder="<?php esc_attr_e('Start', 'modern-events-calendar-lite'); ?>" />
936
+ <input class="mec-col-3 new_added" type="text" name="mec[tickets][<?php echo $key; ?>][dates][:j:][end]" value="<?php echo date('Y-m-d', strtotime('+10 days')); ?>" placeholder="<?php esc_attr_e('End', 'modern-events-calendar-lite'); ?>" />
937
+ <input class="mec-col-3" type="text" name="mec[tickets][<?php echo $key; ?>][dates][:j:][price]" placeholder="<?php esc_attr_e('Price', 'modern-events-calendar-lite'); ?>" />
938
+ <input class="mec-col-2" type="text" name="mec[tickets][<?php echo $key; ?>][dates][:j:][label]" placeholder="<?php esc_attr_e('Label', 'modern-events-calendar-lite'); ?>" />
939
+ <button class="button mec-col-1" type="button" onclick="mec_ticket_price_remove(<?php echo $key; ?>, :j:)"><?php _e('Remove', 'modern-events-calendar-lite'); ?></button>
940
+ </div>
941
+ </div>
942
+ </div>
943
  </div>
944
  </div>
945
  <?php endforeach; ?>
1009
  <input id="mec_tickets_unlimited_:i:" type="checkbox" value="1" name="mec[tickets][:i:][unlimited]" />
1010
  <?php _e('Unlimited', 'modern-events-calendar-lite'); ?>
1011
  </label>
1012
+ <button class="button" type="button" onclick="mec_ticket_remove(:i:)"><?php _e('Remove', 'modern-events-calendar-lite'); ?></button>
1013
  </div>
1014
+ <div id="mec_price_per_dates_container_:i:">
1015
+ <div class="mec-form-row">
1016
+ <h4><?php _e('Price per Date', 'modern-events-calendar-lite'); ?></h4>
1017
+ <button class="button mec_add_price_date_button" type="button" data-key=":i:"><?php _e('Add', 'modern-events-calendar-lite'); ?></button>
1018
+ </div>
1019
+ <div id="mec-ticket-price-dates-:i:">
1020
+ </div>
1021
+ <input type="hidden" id="mec_new_ticket_price_key_:i:" value="1" />
1022
+ <div class="mec-util-hidden" id="mec_new_ticket_price_raw_:i:">
1023
+ <div id="mec_ticket_price_raw_:i:_:j:">
1024
+ <div class="mec-form-row">
1025
+ <input class="mec-col-3 new_added" type="text" name="mec[tickets][:i:][dates][:j:][start]" value="<?php echo date('Y-m-d'); ?>" placeholder="<?php esc_attr_e('Start', 'modern-events-calendar-lite'); ?>" />
1026
+ <input class="mec-col-3 new_added" type="text" name="mec[tickets][:i:][dates][:j:][end]" value="<?php echo date('Y-m-d', strtotime('+10 days')); ?>" placeholder="<?php esc_attr_e('End', 'modern-events-calendar-lite'); ?>" />
1027
+ <input class="mec-col-3" type="text" name="mec[tickets][:i:][dates][:j:][price]" placeholder="<?php esc_attr_e('Price', 'modern-events-calendar-lite'); ?>" />
1028
+ <input class="mec-col-2" type="text" name="mec[tickets][:i:][dates][:j:][label]" placeholder="<?php esc_attr_e('Label', 'modern-events-calendar-lite'); ?>" />
1029
+ <button class="button mec-col-1" type="button" onclick="mec_ticket_price_remove(:i:, :j:)"><?php _e('Remove', 'modern-events-calendar-lite'); ?></button>
1030
+ </div>
1031
+ </div>
1032
+ </div>
1033
+ </div>
1034
  </div>
1035
  </div>
1036
  </div>
1662
 
1663
  $tickets = isset($_mec['tickets']) ? $_mec['tickets'] : array();
1664
  unset($tickets[':i:']);
1665
+
1666
+ // Unset Ticket Dats
1667
+ if(count($tickets))
1668
+ {
1669
+ $new_tickets = array();
1670
+ foreach($tickets as $key=>$ticket)
1671
+ {
1672
+ unset($ticket['dates'][':j:']);
1673
+ $new_tickets[$key] = $ticket;
1674
+ }
1675
+
1676
+ $tickets = $new_tickets;
1677
+ }
1678
 
1679
  update_post_meta($post_id, 'mec_tickets', $tickets);
1680
 
app/features/fes/form.php CHANGED
@@ -18,6 +18,7 @@ jQuery(document).ready(function()
18
  jQuery("#mec_fes_form").addClass("mec-fes-loading");
19
  jQuery(".mec-fes-form-cntt").hide();
20
  jQuery(".mec-fes-form-sdbr").hide();
 
21
 
22
 
23
  // Fix WordPress editor issue
@@ -40,6 +41,7 @@ jQuery(document).ready(function()
40
  jQuery("#mec_fes_form").removeClass("mec-fes-loading");
41
  jQuery(".mec-fes-form-cntt").show();
42
  jQuery(".mec-fes-form-sdbr").show();
 
43
 
44
  if(response.success == "1")
45
  {
@@ -411,16 +413,6 @@ $this->factory->params('footer', $javascript);
411
  </div>
412
  <?php endif; ?>
413
 
414
- <div class="mec-form-row mec-fes-submit-wide">
415
- <?php if($this->main->get_recaptcha_status('fes')): ?><div class="mec-form-row mec-google-recaptcha"><div class="g-recaptcha" data-sitekey="<?php echo $this->settings['google_recaptcha_sitekey']; ?>"></div></div><?php endif; ?>
416
- <button class="mec-fes-sub-button" type="submit"><?php _e('Submit', 'modern-events-calendar-lite'); ?></button>
417
- <div class="mec-util-hidden">
418
- <input type="hidden" name="mec[post_id]" value="<?php echo $post_id; ?>" id="mec_fes_post_id" class="mec-fes-post-id" />
419
- <input type="hidden" name="action" value="mec_fes_form" />
420
- <?php wp_nonce_field('mec_fes_form'); ?>
421
- </div>
422
- </div>
423
- <div class="mec-util-hidden" id="mec_fes_form_message"></div>
424
  </div>
425
 
426
  <div class="mec-fes-form-sdbr">
@@ -620,17 +612,16 @@ $this->factory->params('footer', $javascript);
620
  </div>
621
  <?php endif; ?>
622
  <?php endif; ?>
623
-
624
- <div class="mec-form-row mec-fes-submit-mobile">
625
- <?php if($this->main->get_recaptcha_status('fes')): ?><div class="mec-form-row mec-google-recaptcha"><div class="g-recaptcha" data-sitekey="<?php echo $this->settings['google_recaptcha_sitekey']; ?>"></div></div><?php endif; ?>
626
- <button class="mec-fes-sub-button" type="submit"><?php _e('Submit', 'modern-events-calendar-lite'); ?></button>
627
- <div class="mec-util-hidden">
628
- <input type="hidden" name="mec[post_id]" value="<?php echo $post_id; ?>" id="mec_fes_post_id" class="mec-fes-post-id" />
629
- <input type="hidden" name="action" value="mec_fes_form" />
630
- <?php wp_nonce_field('mec_fes_form'); ?>
631
- </div>
632
  </div>
633
- <div class="mec-util-hidden" id="mec_fes_form_message"></div>
634
  </div>
 
635
  </form>
636
  </div>
18
  jQuery("#mec_fes_form").addClass("mec-fes-loading");
19
  jQuery(".mec-fes-form-cntt").hide();
20
  jQuery(".mec-fes-form-sdbr").hide();
21
+ jQuery(".mec-fes-submit-wide").hide();
22
 
23
 
24
  // Fix WordPress editor issue
41
  jQuery("#mec_fes_form").removeClass("mec-fes-loading");
42
  jQuery(".mec-fes-form-cntt").show();
43
  jQuery(".mec-fes-form-sdbr").show();
44
+ jQuery(".mec-fes-submit-wide").show();
45
 
46
  if(response.success == "1")
47
  {
413
  </div>
414
  <?php endif; ?>
415
 
 
 
 
 
 
 
 
 
 
 
416
  </div>
417
 
418
  <div class="mec-fes-form-sdbr">
612
  </div>
613
  <?php endif; ?>
614
  <?php endif; ?>
615
+ </div>
616
+ <div class="mec-form-row mec-fes-submit-wide">
617
+ <?php if($this->main->get_recaptcha_status('fes')): ?><div class="mec-form-row mec-google-recaptcha"><div class="g-recaptcha" data-sitekey="<?php echo $this->settings['google_recaptcha_sitekey']; ?>"></div></div><?php endif; ?>
618
+ <button class="mec-fes-sub-button" type="submit"><?php _e('Submit', 'modern-events-calendar-lite'); ?></button>
619
+ <div class="mec-util-hidden">
620
+ <input type="hidden" name="mec[post_id]" value="<?php echo $post_id; ?>" id="mec_fes_post_id" class="mec-fes-post-id" />
621
+ <input type="hidden" name="action" value="mec_fes_form" />
622
+ <?php wp_nonce_field('mec_fes_form'); ?>
 
623
  </div>
 
624
  </div>
625
+ <div class="mec-util-hidden" id="mec_fes_form_message"></div>
626
  </form>
627
  </div>
app/features/ix.php CHANGED
@@ -51,7 +51,8 @@ class MEC_feature_ix extends MEC_base
51
  // Import APIs
52
  $this->factory->action('init', array($this, 'include_google_api'));
53
  $this->factory->action('init', array($this, 'include_facebook_api'));
54
-
 
55
  // MEC IX Action
56
  $mec_ix_action = isset($_GET['mec-ix-action']) ? sanitize_text_field($_GET['mec-ix-action']) : '';
57
 
@@ -85,6 +86,17 @@ class MEC_feature_ix extends MEC_base
85
  public function include_facebook_api()
86
  {
87
  }
 
 
 
 
 
 
 
 
 
 
 
88
 
89
  /**
90
  * Add the IX menu
@@ -108,6 +120,7 @@ class MEC_feature_ix extends MEC_base
108
  elseif($tab == 'MEC-sync') $this->ix_sync();
109
  elseif($tab == 'MEC-g-calendar-export') $this->ix_g_calendar_export();
110
  elseif($tab == 'MEC-f-calendar-import') $this->ix_f_calendar_import();
 
111
  elseif($tab == 'MEC-import') $this->ix_import();
112
  elseif($tab == 'MEC-thirdparty') $this->ix_thirdparty();
113
  else $this->ix_g_calendar_import();
@@ -141,7 +154,12 @@ class MEC_feature_ix extends MEC_base
141
  if($this->action == 'save-sync-options')
142
  {
143
  // Save options
144
- $this->main->save_ix_options(array('sync_g_import'=>$this->ix['sync_g_import'], 'sync_g_export'=>$this->ix['sync_g_export'], 'sync_f_import'=>$this->ix['sync_f_import']));
 
 
 
 
 
145
  }
146
 
147
  $path = MEC::import('app.features.ix.sync', true, true);
@@ -189,7 +207,7 @@ class MEC_feature_ix extends MEC_base
189
  $uploaded = move_uploaded_file($feed_file['tmp_name'], $target_path);
190
 
191
  // Error on Upload
192
- if(!$uploaded) return array('success' => 0, 'message' => __("An error ocurred during the file upload! Please check permissions!", 'modern-events-calendar-lite'));
193
 
194
  // Import
195
  do_action('mec_import_file', $target_path);
@@ -2291,6 +2309,379 @@ class MEC_feature_ix extends MEC_base
2291
 
2292
  return array('success'=>1, 'data'=>$post_ids);
2293
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2294
 
2295
  public function export_all_events_do()
2296
  {
@@ -2611,12 +3002,12 @@ class MEC_feature_ix extends MEC_base
2611
  {
2612
  $freq = '';
2613
  $mec_days = explode(',', trim($data->mec->days, ','));
2614
-
2615
  $days = '';
2616
- foreach($mec_days as $mec_day) $days .= date('Ymd', strtotime($mec_day)).',';
2617
-
2618
  // Add RDATE
2619
- $recurrence[] = trim('RDATE;VALUE=DATE:'.trim($days, ', '), '; ');
2620
  }
2621
 
2622
  $rrule = 'RRULE:FREQ='.$freq.';'
@@ -2751,7 +3142,7 @@ class MEC_feature_ix extends MEC_base
2751
  public function f_calendar_import_start()
2752
  {
2753
  $fb_page_link = isset($this->ix['facebook_import_page_link']) ? $this->ix['facebook_import_page_link'] : NULL;
2754
- if(!trim($fb_page_link)) return array('success'=>0, 'message'=>__("Please insert your facebook page's link.", 'modern-events-calendar-lite'));
2755
 
2756
  // Save options
2757
  $this->main->save_ix_options(array('facebook_import_page_link'=>$fb_page_link));
@@ -2759,7 +3150,7 @@ class MEC_feature_ix extends MEC_base
2759
  $fb_page = $this->f_calendar_import_get_page($fb_page_link);
2760
 
2761
  $fb_page_id = isset($fb_page['id']) ? $fb_page['id'] : 0;
2762
- if(!$fb_page_id) return array('success'=>0, 'message'=>__("We couldn't recognize your Facebook page. Please check it and provide us a valid facebook page link.", 'modern-events-calendar-lite'));
2763
 
2764
  $events = array();
2765
  $next_page = 'https://graph.facebook.com/v2.8/'.$fb_page_id.'/events/?access_token='.$this->fb_access_token;
51
  // Import APIs
52
  $this->factory->action('init', array($this, 'include_google_api'));
53
  $this->factory->action('init', array($this, 'include_facebook_api'));
54
+ $this->factory->action('init', array($this, 'include_meetup_api'));
55
+
56
  // MEC IX Action
57
  $mec_ix_action = isset($_GET['mec-ix-action']) ? sanitize_text_field($_GET['mec-ix-action']) : '';
58
 
86
  public function include_facebook_api()
87
  {
88
  }
89
+
90
+ /**
91
+ * Import Meetup API libraries
92
+ * @author Webnus <info@webnus.biz>
93
+ */
94
+ public function include_meetup_api()
95
+ {
96
+ if(class_exists('Meetup')) return;
97
+
98
+ MEC::import('app.api.Meetup.meetup', false);
99
+ }
100
 
101
  /**
102
  * Add the IX menu
120
  elseif($tab == 'MEC-sync') $this->ix_sync();
121
  elseif($tab == 'MEC-g-calendar-export') $this->ix_g_calendar_export();
122
  elseif($tab == 'MEC-f-calendar-import') $this->ix_f_calendar_import();
123
+ elseif($tab == 'MEC-meetup-import') $this->ix_meetup_import();
124
  elseif($tab == 'MEC-import') $this->ix_import();
125
  elseif($tab == 'MEC-thirdparty') $this->ix_thirdparty();
126
  else $this->ix_g_calendar_import();
154
  if($this->action == 'save-sync-options')
155
  {
156
  // Save options
157
+ $this->main->save_ix_options(array(
158
+ 'sync_g_import'=>isset($this->ix['sync_g_import']) ? $this->ix['sync_g_import'] : 0,
159
+ 'sync_g_export'=>isset($this->ix['sync_g_export']) ? $this->ix['sync_g_export'] : 0,
160
+ 'sync_f_import'=>isset($this->ix['sync_f_import']) ? $this->ix['sync_f_import'] : 0,
161
+ 'sync_meetup_import'=>isset($this->ix['sync_meetup_import']) ? $this->ix['sync_meetup_import'] : 0,
162
+ ));
163
  }
164
 
165
  $path = MEC::import('app.features.ix.sync', true, true);
207
  $uploaded = move_uploaded_file($feed_file['tmp_name'], $target_path);
208
 
209
  // Error on Upload
210
+ if(!$uploaded) return array('success' => 0, 'message' => __("An error occurred during the file upload! Please check permissions!", 'modern-events-calendar-lite'));
211
 
212
  // Import
213
  do_action('mec_import_file', $target_path);
2309
 
2310
  return array('success'=>1, 'data'=>$post_ids);
2311
  }
2312
+
2313
+ /**
2314
+ * Show content of meetup import tab
2315
+ * @author Webnus <info@webnus.biz>
2316
+ * @return void
2317
+ */
2318
+ public function ix_meetup_import()
2319
+ {
2320
+ // Current Action
2321
+ $this->action = isset($_POST['mec-ix-action']) ? sanitize_text_field($_POST['mec-ix-action']) : '';
2322
+ $this->ix = isset($_POST['ix']) ? $_POST['ix'] : array();
2323
+
2324
+ $this->response = array();
2325
+ if($this->action == 'meetup-import-start') $this->response = $this->meetup_import_start();
2326
+ elseif($this->action == 'meetup-import-do') $this->response = $this->meetup_import_do();
2327
+
2328
+ $path = MEC::import('app.features.ix.import_meetup', true, true);
2329
+
2330
+ ob_start();
2331
+ include $path;
2332
+ echo $output = ob_get_clean();
2333
+ }
2334
+
2335
+ public function meetup_import_start()
2336
+ {
2337
+ $api_key = isset($this->ix['meetup_api_key']) ? $this->ix['meetup_api_key'] : NULL;
2338
+ $group_url = isset($this->ix['meetup_group_url']) ? $this->ix['meetup_group_url'] : NULL;
2339
+
2340
+ if(!trim($api_key) or !trim($group_url)) return array('success'=>0, 'error'=>__('Both of API key and Group URL are required!', 'modern-events-calendar-lite'));
2341
+
2342
+ // Save options
2343
+ $this->main->save_ix_options(array('meetup_api_key'=>$api_key, 'meetup_group_url'=>$group_url));
2344
+
2345
+ // Timezone
2346
+ $timezone = $this->main->get_timezone();
2347
+
2348
+ $data = array();
2349
+
2350
+ try
2351
+ {
2352
+ $meetup = new Meetup(array(
2353
+ 'key' => $api_key
2354
+ ));
2355
+
2356
+ $events = $meetup->getEvents(array(
2357
+ 'urlname' => $group_url,
2358
+ ));
2359
+
2360
+ $m_events = array();
2361
+ $group_name = '';
2362
+
2363
+ foreach($events as $event)
2364
+ {
2365
+ $title = $event->name;
2366
+ if(trim($title) == '') continue;
2367
+
2368
+ if(isset($event->group)) $group_name = $event->group->name;
2369
+
2370
+ $start = (int) ($event->time/1000);
2371
+ $end = (int) (($event->time+$event->duration)/1000);
2372
+
2373
+ $start_date = new DateTime(date('Y-m-d H:i:s', $start), new DateTimeZone('UTC'));
2374
+ $start_date->setTimezone(new DateTimeZone($timezone));
2375
+
2376
+ $end_date = new DateTime(date('Y-m-d H:i:s', $end), new DateTimeZone('UTC'));
2377
+ $end_date->setTimezone(new DateTimeZone($timezone));
2378
+
2379
+ $m_events[] = array('id'=>$event->id, 'title'=>$title, 'start'=>$start_date->format('Y-m-d H:i:s'), 'end'=>$end_date->format('Y-m-d H:i:s'));
2380
+ }
2381
+
2382
+ $data['title'] = $group_name;
2383
+ $data['events'] = $m_events;
2384
+ $data['count'] = count($m_events);
2385
+ }
2386
+ catch(Exception $e)
2387
+ {
2388
+ $error = $e->getMessage();
2389
+ return array('success'=>0, 'error'=>$error);
2390
+ }
2391
+
2392
+ return array('success'=>1, 'data'=>$data);
2393
+ }
2394
+
2395
+ public function meetup_import_do()
2396
+ {
2397
+ $m_events = isset($_POST['m-events']) ? $_POST['m-events'] : array();
2398
+ if(!count($m_events)) return array('success'=>0, 'error'=>__('Please select some events to import!', 'modern-events-calendar-lite'));
2399
+
2400
+ $api_key = isset($this->ix['meetup_api_key']) ? $this->ix['meetup_api_key'] : NULL;
2401
+ $group_url = isset($this->ix['meetup_group_url']) ? $this->ix['meetup_group_url'] : NULL;
2402
+
2403
+ if(!trim($api_key) or !trim($group_url)) return array('success'=>0, 'error'=>__('Both of API key and Group URL are required!', 'modern-events-calendar-lite'));
2404
+
2405
+ // Timezone
2406
+ $timezone = $this->main->get_timezone();
2407
+
2408
+ // MEC File
2409
+ $file = $this->getFile();
2410
+ $wp_upload_dir = wp_upload_dir();
2411
+
2412
+ $post_ids = array();
2413
+ foreach($m_events as $m_event)
2414
+ {
2415
+ try
2416
+ {
2417
+ $meetup = new Meetup(array(
2418
+ 'key' => $api_key
2419
+ ));
2420
+
2421
+ $event = $meetup->getEvent(array(
2422
+ 'urlname' => $group_url,
2423
+ 'id' => $m_event,
2424
+ 'fields' => 'event_hosts,featured_photo,series,short_link'
2425
+ ));
2426
+ }
2427
+ catch(Exception $e)
2428
+ {
2429
+ continue;
2430
+ }
2431
+
2432
+ // Check if Series already Imported
2433
+ $series_id = NULL;
2434
+ if(isset($event->series) and isset($event->series->id))
2435
+ {
2436
+ $series_id = $event->series->id;
2437
+
2438
+ $post_id = $this->db->select("SELECT `post_id` FROM `#__postmeta` WHERE `meta_value`='$series_id' AND `meta_key`='mec_meetup_series_id'", 'loadResult');
2439
+ if($post_id) continue;
2440
+ }
2441
+
2442
+ // Event Title and Content
2443
+ $title = $event->name;
2444
+ $description = $event->description;
2445
+ $mcal_id = $event->id;
2446
+
2447
+ // Event location
2448
+ $location = isset($event->venue) ? $event->venue : NULL;
2449
+ $location_id = 1;
2450
+
2451
+ // Import Event Locations into MEC locations
2452
+ if(isset($this->ix['import_locations']) and $this->ix['import_locations'] and $location)
2453
+ {
2454
+ $address = isset($location->address_1) ? $location->address_1 : '';
2455
+ $address .= isset($location->city) ? ', '.$location->city : '';
2456
+ $address .= isset($location->state) ? ', '.$location->state : '';
2457
+ $address .= isset($location->localized_country_name) ? ', '.$location->localized_country_name : '';
2458
+
2459
+ $location_id = $this->main->save_location(array
2460
+ (
2461
+ 'name'=>trim($location->name),
2462
+ 'latitude'=>trim($location->lat),
2463
+ 'longitude'=>trim($location->lon),
2464
+ 'address'=>$address
2465
+ ));
2466
+ }
2467
+
2468
+ // Event Organizer
2469
+ $organizers = isset($event->event_hosts) ? $event->event_hosts : NULL;
2470
+ $main_organizer_id = 1;
2471
+ $additional_organizer_ids = array();
2472
+
2473
+ // Import Event Organizer into MEC organizers
2474
+ if(isset($this->ix['import_organizers']) and $this->ix['import_organizers'] and $organizers)
2475
+ {
2476
+ $o = 1;
2477
+ foreach($organizers as $organizer)
2478
+ {
2479
+ $organizer_id = $this->main->save_organizer(array
2480
+ (
2481
+ 'name'=>$organizer->name,
2482
+ 'thumbnail'=>((isset($organizer->photo) and isset($organizer->photo->photo_link)) ? $organizer->photo->photo_link : NULL)
2483
+ ));
2484
+
2485
+ if($o == 1) $main_organizer_id = $organizer_id;
2486
+ else $additional_organizer_ids[] = $organizer_id;
2487
+
2488
+ $o++;
2489
+ }
2490
+ }
2491
+
2492
+ // Event Start Date and Time
2493
+ $start = (int) ($event->time/1000);
2494
+
2495
+ $date_start = new DateTime(date('Y-m-d H:i:s', $start), new DateTimeZone('UTC'));
2496
+ $date_start->setTimezone(new DateTimeZone($timezone));
2497
+
2498
+ $start_date = $date_start->format('Y-m-d');
2499
+ $start_hour = $date_start->format('g');
2500
+ $start_minutes = $date_start->format('i');
2501
+ $start_ampm = $date_start->format('A');
2502
+
2503
+ // Event End Date and Time
2504
+ $end = (int) (($event->time+$event->duration)/1000);
2505
+
2506
+ $date_end = new DateTime(date('Y-m-d H:i:s', $end), new DateTimeZone('UTC'));
2507
+ $date_end->setTimezone(new DateTimeZone($timezone));
2508
+
2509
+ $end_date = $date_end->format('Y-m-d');
2510
+ $end_hour = $date_end->format('g');
2511
+ $end_minutes = $date_end->format('i');
2512
+ $end_ampm = $date_end->format('A');
2513
+
2514
+ // Meetup Link
2515
+ $more_info = isset($event->link) ? $event->link : (isset($event->short_link) ? $event->short_link : '');
2516
+
2517
+ // Fee Options
2518
+ $fee = 0;
2519
+ if(isset($event->fee)) $fee = $event->fee->amount.' '.$event->fee->currency;
2520
+
2521
+ // Event Time Options
2522
+ $allday = 0;
2523
+
2524
+ // Recurring Event
2525
+ if(isset($event->series) and $event->series)
2526
+ {
2527
+ $repeat_status = 1;
2528
+
2529
+ $interval = NULL;
2530
+ $year = NULL;
2531
+ $month = NULL;
2532
+ $day = NULL;
2533
+ $week = NULL;
2534
+ $weekday = NULL;
2535
+ $weekdays = NULL;
2536
+
2537
+ if(isset($event->series->weekly))
2538
+ {
2539
+ $repeat_type = 'weekly';
2540
+ $interval = isset($event->series->weekly->interval) ? $event->series->weekly->interval*7 : 7;
2541
+ }
2542
+ elseif(isset($event->series->monthly))
2543
+ {
2544
+ $repeat_type = 'monthly';
2545
+
2546
+ $year = '*';
2547
+ $month = '*';
2548
+
2549
+ $s = $start_date;
2550
+ $e = $end_date;
2551
+
2552
+ $_days = array();
2553
+ while(strtotime($s) <= strtotime($e))
2554
+ {
2555
+ $_days[] = date('d', strtotime($s));
2556
+ $s = date('Y-m-d', strtotime('+1 Day', strtotime($s)));
2557
+ }
2558
+
2559
+ $day = ','.implode(',', array_unique($_days)).',';
2560
+
2561
+ $week = '*';
2562
+ $weekday = '*';
2563
+ }
2564
+ else $repeat_type = '';
2565
+
2566
+ // Custom Week Days
2567
+ if($repeat_type == 'weekly' and isset($event->series->weekly->days_of_week) and is_array($event->series->weekly->days_of_week) and count($event->series->weekly->days_of_week))
2568
+ {
2569
+ $weekdays = ','.trim(implode(',', $event->series->weekly->days_of_week), ', ').',';
2570
+ $interval = NULL;
2571
+
2572
+ $repeat_type = 'certain_weekdays';
2573
+ }
2574
+
2575
+ $finish = isset($event->series->end_date) ? date('Y-m-d', ($event->series->end_date/1000)) : NULL;
2576
+ }
2577
+ // Single Event
2578
+ else
2579
+ {
2580
+ $repeat_status = 0;
2581
+ $repeat_type = '';
2582
+ $interval = NULL;
2583
+ $finish = $end_date;
2584
+ $year = NULL;
2585
+ $month = NULL;
2586
+ $day = NULL;
2587
+ $week = NULL;
2588
+ $weekday = NULL;
2589
+ $weekdays = NULL;
2590
+ }
2591
+
2592
+ $args = array
2593
+ (
2594
+ 'title'=>$title,
2595
+ 'content'=>$description,
2596
+ 'location_id'=>$location_id,
2597
+ 'organizer_id'=>$main_organizer_id,
2598
+ 'date'=>array
2599
+ (
2600
+ 'start'=>array(
2601
+ 'date'=>$start_date,
2602
+ 'hour'=>$start_hour,
2603
+ 'minutes'=>$start_minutes,
2604
+ 'ampm'=>$start_ampm,
2605
+ ),
2606
+ 'end'=>array(
2607
+ 'date'=>$end_date,
2608
+ 'hour'=>$end_hour,
2609
+ 'minutes'=>$end_minutes,
2610
+ 'ampm'=>$end_ampm,
2611
+ ),
2612
+ 'repeat'=>array(),
2613
+ 'allday'=>$allday,
2614
+ 'comment'=>'',
2615
+ 'hide_time'=>0,
2616
+ 'hide_end_time'=>0,
2617
+ ),
2618
+ 'start'=>$start_date,
2619
+ 'start_time_hour'=>$start_hour,
2620
+ 'start_time_minutes'=>$start_minutes,
2621
+ 'start_time_ampm'=>$start_ampm,
2622
+ 'end'=>$end_date,
2623
+ 'end_time_hour'=>$end_hour,
2624
+ 'end_time_minutes'=>$end_minutes,
2625
+ 'end_time_ampm'=>$end_ampm,
2626
+ 'repeat_status'=>$repeat_status,
2627
+ 'repeat_type'=>$repeat_type,
2628
+ 'interval'=>$interval,
2629
+ 'finish'=>$finish,
2630
+ 'year'=>$year,
2631
+ 'month'=>$month,
2632
+ 'day'=>$day,
2633
+ 'week'=>$week,
2634
+ 'weekday'=>$weekday,
2635
+ 'weekdays'=>$weekdays,
2636
+ 'meta'=>array
2637
+ (
2638
+ 'mec_source'=>'meetup',
2639
+ 'mec_meetup_id'=>$mcal_id,
2640
+ 'mec_meetup_series_id'=>$series_id,
2641
+ 'mec_more_info'=>$more_info,
2642
+ 'mec_more_info_title'=>__('Check at Meetup', 'modern-events-calendar-lite'),
2643
+ 'mec_more_info_target'=>'_self',
2644
+ 'mec_cost'=>$fee,
2645
+ 'mec_meetup_url'=>$group_url,
2646
+ 'mec_allday'=>$allday
2647
+ )
2648
+ );
2649
+
2650
+ $post_id = $this->db->select("SELECT `post_id` FROM `#__postmeta` WHERE `meta_value`='$mcal_id' AND `meta_key`='mec_meetup_id'", 'loadResult');
2651
+
2652
+ // Insert the event into MEC
2653
+ $post_id = $this->main->save_event($args, $post_id);
2654
+ $post_ids[] = $post_id;
2655
+
2656
+ // Set location to the post
2657
+ if($location_id) wp_set_object_terms($post_id, (int) $location_id, 'mec_location');
2658
+
2659
+ // Set organizer to the post
2660
+ if($main_organizer_id) wp_set_object_terms($post_id, (int) $main_organizer_id, 'mec_organizer');
2661
+
2662
+ // Set Additional Organizers
2663
+ if(count($additional_organizer_ids))
2664
+ {
2665
+ foreach($additional_organizer_ids as $additional_organizer_id) wp_set_object_terms($post_id, (int) $additional_organizer_id, 'mec_organizer', true);
2666
+ update_post_meta($post_id, 'mec_additional_organizer_ids', $additional_organizer_ids);
2667
+ }
2668
+
2669
+ // Featured Image
2670
+ if(!has_post_thumbnail($post_id) and isset($event->featured_photo) and isset($event->featured_photo->photo_link))
2671
+ {
2672
+ $photo = $this->main->get_web_page($event->featured_photo->photo_link);
2673
+ $file_name = md5($post_id).'.'.$this->main->get_image_type_by_buffer($photo);
2674
+
2675
+ $path = rtrim($wp_upload_dir['path'], DS.' ').DS.$file_name;
2676
+ $url = rtrim($wp_upload_dir['url'], '/ ').'/'.$file_name;
2677
+
2678
+ $file->write($path, $photo);
2679
+ $this->main->set_featured_image($url, $post_id);
2680
+ }
2681
+ }
2682
+
2683
+ return array('success'=>1, 'data'=>$post_ids);
2684
+ }
2685
 
2686
  public function export_all_events_do()
2687
  {
3002
  {
3003
  $freq = '';
3004
  $mec_days = explode(',', trim($data->mec->days, ','));
3005
+
3006
  $days = '';
3007
+ foreach($mec_days as $mec_day) $days .= date('Ymd\THis\Z', strtotime($mec_day.' '.$data->time['start'])).'/'.date('Ymd\THis\Z', strtotime($mec_day.' '.$data->time['end'])).',';
3008
+
3009
  // Add RDATE
3010
+ $recurrence[] = trim('RDATE;VALUE=PERIOD:'.trim($days, ', '), '; ');
3011
  }
3012
 
3013
  $rrule = 'RRULE:FREQ='.$freq.';'
3142
  public function f_calendar_import_start()
3143
  {
3144
  $fb_page_link = isset($this->ix['facebook_import_page_link']) ? $this->ix['facebook_import_page_link'] : NULL;
3145
+ if(!trim($fb_page_link)) return array('success'=>0, 'message'=>__("Please insert your Facebook page's link.", 'modern-events-calendar-lite'));
3146
 
3147
  // Save options
3148
  $this->main->save_ix_options(array('facebook_import_page_link'=>$fb_page_link));
3150
  $fb_page = $this->f_calendar_import_get_page($fb_page_link);
3151
 
3152
  $fb_page_id = isset($fb_page['id']) ? $fb_page['id'] : 0;
3153
+ if(!$fb_page_id) return array('success'=>0, 'message'=>__("We couldn't recognize your Facebook page. Please check it and provide us a valid Facebook page link.", 'modern-events-calendar-lite'));
3154
 
3155
  $events = array();
3156
  $next_page = 'https://graph.facebook.com/v2.8/'.$fb_page_id.'/events/?access_token='.$this->fb_access_token;
app/features/ix/export.php CHANGED
@@ -10,9 +10,10 @@ $events = $this->main->get_events('-1');
10
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>" class="nav-tab"><?php echo __('Google Cal. Import', 'modern-events-calendar-lite'); ?></a>
11
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-g-calendar-export'); ?>" class="nav-tab"><?php echo __('Google Cal. Export', 'modern-events-calendar-lite'); ?></a>
12
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-f-calendar-import'); ?>" class="nav-tab"><?php echo __('Facebook Cal. Import', 'modern-events-calendar-lite'); ?></a>
 
 
13
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-export'); ?>" class="nav-tab nav-tab-active"><?php echo __('Export', 'modern-events-calendar-lite'); ?></a>
14
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-import'); ?>" class="nav-tab"><?php echo __('Import', 'modern-events-calendar-lite'); ?></a>
15
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-sync'); ?>" class="nav-tab"><?php echo __('Synchronization', 'modern-events-calendar-lite'); ?></a>
16
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-thirdparty'); ?>" class="nav-tab"><?php echo __('Third Party Plugins', 'modern-events-calendar-lite'); ?></a>
17
  </h2>
18
  <div class="mec-container">
10
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>" class="nav-tab"><?php echo __('Google Cal. Import', 'modern-events-calendar-lite'); ?></a>
11
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-g-calendar-export'); ?>" class="nav-tab"><?php echo __('Google Cal. Export', 'modern-events-calendar-lite'); ?></a>
12
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-f-calendar-import'); ?>" class="nav-tab"><?php echo __('Facebook Cal. Import', 'modern-events-calendar-lite'); ?></a>
13
+ <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-meetup-import'); ?>" class="nav-tab"><?php echo __('Meetup Import', 'modern-events-calendar-lite'); ?></a>
14
+ <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-sync'); ?>" class="nav-tab"><?php echo __('Synchronization', 'modern-events-calendar-lite'); ?></a>
15
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-export'); ?>" class="nav-tab nav-tab-active"><?php echo __('Export', 'modern-events-calendar-lite'); ?></a>
16
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-import'); ?>" class="nav-tab"><?php echo __('Import', 'modern-events-calendar-lite'); ?></a>
 
17
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-thirdparty'); ?>" class="nav-tab"><?php echo __('Third Party Plugins', 'modern-events-calendar-lite'); ?></a>
18
  </h2>
19
  <div class="mec-container">
app/features/ix/export_g_calendar.php CHANGED
@@ -14,9 +14,10 @@ if($ix_options['google_export_token']) $this->action = 'google-calendar-export-s
14
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>" class="nav-tab"><?php echo __('Google Cal. Import', 'modern-events-calendar-lite'); ?></a>
15
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-g-calendar-export'); ?>" class="nav-tab nav-tab-active"><?php echo __('Google Cal. Export', 'modern-events-calendar-lite'); ?></a>
16
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-f-calendar-import'); ?>" class="nav-tab"><?php echo __('Facebook Cal. Import', 'modern-events-calendar-lite'); ?></a>
 
 
17
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-export'); ?>" class="nav-tab"><?php echo __('Export', 'modern-events-calendar-lite'); ?></a>
18
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-import'); ?>" class="nav-tab"><?php echo __('Import', 'modern-events-calendar-lite'); ?></a>
19
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-sync'); ?>" class="nav-tab"><?php echo __('Synchronization', 'modern-events-calendar-lite'); ?></a>
20
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-thirdparty'); ?>" class="nav-tab"><?php echo __('Third Party Plugins', 'modern-events-calendar-lite'); ?></a>
21
  </h2>
22
  <div class="mec-container">
@@ -130,7 +131,7 @@ jQuery("#mec_g_calendar_export_form_do").on('submit', function(e)
130
  jQuery('#mec_ix_google_export_do_message').hide();
131
 
132
  // Add loading Class to the button
133
- jQuery("#mec_ix_google_export_do_form_button").addClass('loading').text("<?php esc_attr_e('Importing ...', 'modern-events-calendar-lite'); ?>");
134
 
135
  var options = jQuery("#mec_g_calendar_export_form_do").serialize();
136
  jQuery.ajax(
14
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>" class="nav-tab"><?php echo __('Google Cal. Import', 'modern-events-calendar-lite'); ?></a>
15
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-g-calendar-export'); ?>" class="nav-tab nav-tab-active"><?php echo __('Google Cal. Export', 'modern-events-calendar-lite'); ?></a>
16
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-f-calendar-import'); ?>" class="nav-tab"><?php echo __('Facebook Cal. Import', 'modern-events-calendar-lite'); ?></a>
17
+ <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-meetup-import'); ?>" class="nav-tab"><?php echo __('Meetup Import', 'modern-events-calendar-lite'); ?></a>
18
+ <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-sync'); ?>" class="nav-tab"><?php echo __('Synchronization', 'modern-events-calendar-lite'); ?></a>
19
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-export'); ?>" class="nav-tab"><?php echo __('Export', 'modern-events-calendar-lite'); ?></a>
20
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-import'); ?>" class="nav-tab"><?php echo __('Import', 'modern-events-calendar-lite'); ?></a>
 
21
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-thirdparty'); ?>" class="nav-tab"><?php echo __('Third Party Plugins', 'modern-events-calendar-lite'); ?></a>
22
  </h2>
23
  <div class="mec-container">
131
  jQuery('#mec_ix_google_export_do_message').hide();
132
 
133
  // Add loading Class to the button
134
+ jQuery("#mec_ix_google_export_do_form_button").addClass('loading').text("<?php esc_attr_e('Exporting ...', 'modern-events-calendar-lite'); ?>");
135
 
136
  var options = jQuery("#mec_g_calendar_export_form_do").serialize();
137
  jQuery.ajax(
app/features/ix/import.php CHANGED
@@ -10,9 +10,10 @@ $third_parties = $this->main->get_integrated_plugins_for_import();
10
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>" class="nav-tab"><?php echo __('Google Cal. Import', 'modern-events-calendar-lite'); ?></a>
11
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-g-calendar-export'); ?>" class="nav-tab"><?php echo __('Google Cal. Export', 'modern-events-calendar-lite'); ?></a>
12
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-f-calendar-import'); ?>" class="nav-tab"><?php echo __('Facebook Cal. Import', 'modern-events-calendar-lite'); ?></a>
 
 
13
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-export'); ?>" class="nav-tab"><?php echo __('Export', 'modern-events-calendar-lite'); ?></a>
14
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-import'); ?>" class="nav-tab nav-tab-active"><?php echo __('Import', 'modern-events-calendar-lite'); ?></a>
15
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-sync'); ?>" class="nav-tab"><?php echo __('Synchronization', 'modern-events-calendar-lite'); ?></a>
16
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-thirdparty'); ?>" class="nav-tab"><?php echo __('Third Party Plugins', 'modern-events-calendar-lite'); ?></a>
17
  </h2>
18
  <div class="mec-container">
10
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>" class="nav-tab"><?php echo __('Google Cal. Import', 'modern-events-calendar-lite'); ?></a>
11
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-g-calendar-export'); ?>" class="nav-tab"><?php echo __('Google Cal. Export', 'modern-events-calendar-lite'); ?></a>
12
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-f-calendar-import'); ?>" class="nav-tab"><?php echo __('Facebook Cal. Import', 'modern-events-calendar-lite'); ?></a>
13
+ <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-meetup-import'); ?>" class="nav-tab"><?php echo __('Meetup Import', 'modern-events-calendar-lite'); ?></a>
14
+ <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-sync'); ?>" class="nav-tab"><?php echo __('Synchronization', 'modern-events-calendar-lite'); ?></a>
15
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-export'); ?>" class="nav-tab"><?php echo __('Export', 'modern-events-calendar-lite'); ?></a>
16
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-import'); ?>" class="nav-tab nav-tab-active"><?php echo __('Import', 'modern-events-calendar-lite'); ?></a>
 
17
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-thirdparty'); ?>" class="nav-tab"><?php echo __('Third Party Plugins', 'modern-events-calendar-lite'); ?></a>
18
  </h2>
19
  <div class="mec-container">
app/features/ix/import_f_calendar.php CHANGED
@@ -10,9 +10,10 @@ $ix_options = $this->main->get_ix_options();
10
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>" class="nav-tab"><?php echo __('Google Cal. Import', 'modern-events-calendar-lite'); ?></a>
11
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-g-calendar-export'); ?>" class="nav-tab"><?php echo __('Google Cal. Export', 'modern-events-calendar-lite'); ?></a>
12
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-f-calendar-import'); ?>" class="nav-tab nav-tab-active"><?php echo __('Facebook Cal. Import', 'modern-events-calendar-lite'); ?></a>
 
 
13
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-export'); ?>" class="nav-tab"><?php echo __('Export', 'modern-events-calendar-lite'); ?></a>
14
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-import'); ?>" class="nav-tab"><?php echo __('Import', 'modern-events-calendar-lite'); ?></a>
15
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-sync'); ?>" class="nav-tab"><?php echo __('Synchronization', 'modern-events-calendar-lite'); ?></a>
16
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-thirdparty'); ?>" class="nav-tab"><?php echo __('Third Party Plugins', 'modern-events-calendar-lite'); ?></a>
17
  </h2>
18
  <div class="mec-container">
@@ -23,7 +24,7 @@ $ix_options = $this->main->get_ix_options();
23
  <div class="mec-facebook-import">
24
  <form id="mec_facebook_import_form" action="<?php echo $this->main->get_full_url(); ?>" method="POST">
25
  <h3><?php _e('Import from Facebook Calendar', 'modern-events-calendar-lite'); ?></h3>
26
- <p class="description"><?php _e('Import all of your facebook events into MEC.', 'modern-events-calendar-lite'); ?></p>
27
  <div class="mec-form-row">
28
  <label class="mec-col-3" for="mec_ix_facebook_import_page_link"><?php _e('Facebook Page Link', 'modern-events-calendar-lite'); ?></label>
29
  <div class="mec-col-4">
10
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>" class="nav-tab"><?php echo __('Google Cal. Import', 'modern-events-calendar-lite'); ?></a>
11
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-g-calendar-export'); ?>" class="nav-tab"><?php echo __('Google Cal. Export', 'modern-events-calendar-lite'); ?></a>
12
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-f-calendar-import'); ?>" class="nav-tab nav-tab-active"><?php echo __('Facebook Cal. Import', 'modern-events-calendar-lite'); ?></a>
13
+ <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-meetup-import'); ?>" class="nav-tab"><?php echo __('Meetup Import', 'modern-events-calendar-lite'); ?></a>
14
+ <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-sync'); ?>" class="nav-tab"><?php echo __('Synchronization', 'modern-events-calendar-lite'); ?></a>
15
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-export'); ?>" class="nav-tab"><?php echo __('Export', 'modern-events-calendar-lite'); ?></a>
16
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-import'); ?>" class="nav-tab"><?php echo __('Import', 'modern-events-calendar-lite'); ?></a>
 
17
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-thirdparty'); ?>" class="nav-tab"><?php echo __('Third Party Plugins', 'modern-events-calendar-lite'); ?></a>
18
  </h2>
19
  <div class="mec-container">
24
  <div class="mec-facebook-import">
25
  <form id="mec_facebook_import_form" action="<?php echo $this->main->get_full_url(); ?>" method="POST">
26
  <h3><?php _e('Import from Facebook Calendar', 'modern-events-calendar-lite'); ?></h3>
27
+ <p class="description"><?php _e('Import all of your Facebook events into MEC.', 'modern-events-calendar-lite'); ?></p>
28
  <div class="mec-form-row">
29
  <label class="mec-col-3" for="mec_ix_facebook_import_page_link"><?php _e('Facebook Page Link', 'modern-events-calendar-lite'); ?></label>
30
  <div class="mec-col-4">
app/features/ix/import_g_calendar.php CHANGED
@@ -10,9 +10,10 @@ $ix_options = $this->main->get_ix_options();
10
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>" class="nav-tab nav-tab-active"><?php echo __('Google Cal. Import', 'modern-events-calendar-lite'); ?></a>
11
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-g-calendar-export'); ?>" class="nav-tab"><?php echo __('Google Cal. Export', 'modern-events-calendar-lite'); ?></a>
12
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-f-calendar-import'); ?>" class="nav-tab"><?php echo __('Facebook Cal. Import', 'modern-events-calendar-lite'); ?></a>
 
 
13
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-export'); ?>" class="nav-tab"><?php echo __('Export', 'modern-events-calendar-lite'); ?></a>
14
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-import'); ?>" class="nav-tab"><?php echo __('Import', 'modern-events-calendar-lite'); ?></a>
15
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-sync'); ?>" class="nav-tab"><?php echo __('Synchronization', 'modern-events-calendar-lite'); ?></a>
16
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-thirdparty'); ?>" class="nav-tab"><?php echo __('Third Party Plugins', 'modern-events-calendar-lite'); ?></a>
17
  </h2>
18
  <div class="mec-container">
10
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>" class="nav-tab nav-tab-active"><?php echo __('Google Cal. Import', 'modern-events-calendar-lite'); ?></a>
11
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-g-calendar-export'); ?>" class="nav-tab"><?php echo __('Google Cal. Export', 'modern-events-calendar-lite'); ?></a>
12
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-f-calendar-import'); ?>" class="nav-tab"><?php echo __('Facebook Cal. Import', 'modern-events-calendar-lite'); ?></a>
13
+ <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-meetup-import'); ?>" class="nav-tab"><?php echo __('Meetup Import', 'modern-events-calendar-lite'); ?></a>
14
+ <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-sync'); ?>" class="nav-tab"><?php echo __('Synchronization', 'modern-events-calendar-lite'); ?></a>
15
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-export'); ?>" class="nav-tab"><?php echo __('Export', 'modern-events-calendar-lite'); ?></a>
16
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-import'); ?>" class="nav-tab"><?php echo __('Import', 'modern-events-calendar-lite'); ?></a>
 
17
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-thirdparty'); ?>" class="nav-tab"><?php echo __('Third Party Plugins', 'modern-events-calendar-lite'); ?></a>
18
  </h2>
19
  <div class="mec-container">
app/features/ix/import_meetup.php ADDED
@@ -0,0 +1,103 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /** no direct access **/
3
+ defined('MECEXEC') or die();
4
+
5
+ $ix_options = $this->main->get_ix_options();
6
+ ?>
7
+ <div class="wrap" id="mec-wrap">
8
+ <h1><?php _e('MEC Import / Export', 'modern-events-calendar-lite'); ?></h1>
9
+ <h2 class="nav-tab-wrapper">
10
+ <a href="<?php echo $this->main->remove_qs_var('tab'); ?>" class="nav-tab"><?php echo __('Google Cal. Import', 'modern-events-calendar-lite'); ?></a>
11
+ <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-g-calendar-export'); ?>" class="nav-tab"><?php echo __('Google Cal. Export', 'modern-events-calendar-lite'); ?></a>
12
+ <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-f-calendar-import'); ?>" class="nav-tab"><?php echo __('Facebook Cal. Import', 'modern-events-calendar-lite'); ?></a>
13
+ <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-meetup-import'); ?>" class="nav-tab nav-tab-active"><?php echo __('Meetup Import', 'modern-events-calendar-lite'); ?></a>
14
+ <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-sync'); ?>" class="nav-tab"><?php echo __('Synchronization', 'modern-events-calendar-lite'); ?></a>
15
+ <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-export'); ?>" class="nav-tab"><?php echo __('Export', 'modern-events-calendar-lite'); ?></a>
16
+ <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-import'); ?>" class="nav-tab"><?php echo __('Import', 'modern-events-calendar-lite'); ?></a>
17
+ <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-thirdparty'); ?>" class="nav-tab"><?php echo __('Third Party Plugins', 'modern-events-calendar-lite'); ?></a>
18
+ </h2>
19
+ <div class="mec-container">
20
+ <div class="import-content w-clearfix extra">
21
+ <div class="mec-meetup-import">
22
+ <form id="mec_meetup_import_form" action="<?php echo $this->main->get_full_url(); ?>" method="POST">
23
+ <h3><?php _e('Import from Meetup', 'modern-events-calendar-lite'); ?></h3>
24
+ <p class="description"><?php _e('This will import all your meetup events into MEC.', 'modern-events-calendar-lite'); ?></p>
25
+ <div class="mec-form-row">
26
+ <label class="mec-col-3" for="mec_ix_meetup_api_key"><?php _e('Meetup API Key', 'modern-events-calendar-lite'); ?></label>
27
+ <div class="mec-col-4">
28
+ <input type="text" id="mec_ix_meetup_api_key" name="ix[meetup_api_key]" value="<?php echo (isset($ix_options['meetup_api_key']) ? $ix_options['meetup_api_key'] : ''); ?>" />
29
+ </div>
30
+ </div>
31
+ <div class="mec-form-row">
32
+ <label class="mec-col-3" for="mec_ix_meetup_group_url"><?php _e('Group URL', 'modern-events-calendar-lite'); ?></label>
33
+ <div class="mec-col-4">
34
+ <input type="text" id="mec_ix_meetup_group_url" name="ix[meetup_group_url]" value="<?php echo (isset($ix_options['meetup_group_url']) ? $ix_options['meetup_group_url'] : ''); ?>" />
35
+ <p><?php echo sprintf(__('put only the slug of your group like %s in %s', 'modern-events-calendar-lite'), '<strong>your-group-slug</strong>', 'https://www.meetup.com/your-group-slug/'); ?></p>
36
+ </div>
37
+ </div>
38
+ <div class="mec-options-fields">
39
+ <input type="hidden" name="mec-ix-action" value="meetup-import-start" />
40
+ <button id="mec_ix_meetup_form_button" class="button button-primary mec-button-primary" type="submit"><?php _e('Start', 'modern-events-calendar-lite'); ?></button>
41
+ </div>
42
+ </form>
43
+ <?php if($this->action == 'meetup-import-start'): ?>
44
+ <div class="mec-ix-meetup-started">
45
+ <?php if($this->response['success'] == 0): ?>
46
+ <div class="mec-error"><?php echo $this->response['error']; ?></div>
47
+ <?php else: ?>
48
+ <form id="mec_meetup_do_form" action="<?php echo $this->main->get_full_url(); ?>" method="POST">
49
+ <div class="mec-xi-meetup-events mec-options-fields">
50
+ <h4><?php _e('Meetup Events', 'modern-events-calendar-lite'); ?></h4>
51
+ <div class="mec-success"><?php echo sprintf(__('We found %s events for %s group. Please select your desired events to import.', 'modern-events-calendar-lite'), '<strong>'.$this->response['data']['count'].'</strong>', '<strong>'.$this->response['data']['title'].'</strong>'); ?></div>
52
+ <ul class="mec-select-deselect-actions" data-for="#mec_import_meetup_events">
53
+ <li data-action="select-all"><?php _e('Select All', 'modern-events-calendar-lite'); ?></li>
54
+ <li data-action="deselect-all"><?php _e('Deselect All', 'modern-events-calendar-lite'); ?></li>
55
+ <li data-action="toggle"><?php _e('Toggle', 'modern-events-calendar-lite'); ?></li>
56
+ </ul>
57
+ <ul id="mec_import_meetup_events">
58
+ <?php foreach($this->response['data']['events'] as $event): ?>
59
+ <li>
60
+ <label>
61
+ <input type="checkbox" name="m-events[]" value="<?php echo $event['id']; ?>" checked="checked" />
62
+ <span><?php echo sprintf(__('Event Title: %s Event Date: %s - %s', 'modern-events-calendar-lite'), '<strong>'.$event['title'].'</strong>', '<strong>'.$event['start'].'</strong>', '<strong>'.$event['end'].'</strong>'); ?></span>
63
+ </label>
64
+ </li>
65
+ <?php endforeach; ?>
66
+ </ul>
67
+ </div>
68
+ <div class="mec-options-fields">
69
+ <h4><?php _e('Import Options', 'modern-events-calendar-lite'); ?></h4>
70
+ <div class="mec-form-row">
71
+ <label>
72
+ <input type="checkbox" name="ix[import_organizers]" value="1" checked="checked" />
73
+ <?php _e('Import Organizers', 'modern-events-calendar-lite'); ?>
74
+ </label>
75
+ </div>
76
+ <div class="mec-form-row">
77
+ <label>
78
+ <input type="checkbox" name="ix[import_locations]" value="1" checked="checked" />
79
+ <?php _e('Import Locations', 'modern-events-calendar-lite'); ?>
80
+ </label>
81
+ </div>
82
+ <input type="hidden" name="mec-ix-action" value="meetup-import-do" />
83
+ <input type="hidden" name="ix[meetup_api_key]" value="<?php echo (isset($this->ix['meetup_api_key']) ? $this->ix['meetup_api_key'] : ''); ?>" />
84
+ <input type="hidden" name="ix[meetup_group_url]" value="<?php echo (isset($this->ix['meetup_group_url']) ? $this->ix['meetup_group_url'] : ''); ?>" />
85
+ <button id="mec_ix_meetup_import_do_form_button" class="button button-primary mec-button-primary" type="submit"><?php _e('Import', 'modern-events-calendar-lite'); ?></button>
86
+ </div>
87
+ </form>
88
+ <?php endif; ?>
89
+ </div>
90
+ <?php elseif($this->action == 'meetup-import-do'): ?>
91
+ <div class="mec-ix-meetup-import-do">
92
+ <?php if($this->response['success'] == 0): ?>
93
+ <div class="mec-error"><?php echo $this->response['error']; ?></div>
94
+ <?php else: ?>
95
+ <div class="mec-success"><?php echo sprintf(__('%s events successfully imported to your website from meetup.', 'modern-events-calendar-lite'), '<strong>'.count($this->response['data']).'</strong>'); ?></div>
96
+ <div class="info-msg"><strong><?php _e('Attention', 'modern-events-calendar-lite'); ?>:</strong> <?php _e("Although we tried our best to make the events completely compatible with MEC but some modification might be needed. We suggest you to edit the imported listings one by one on MEC edit event page and make sure thay're correct.", 'modern-events-calendar-lite'); ?></div>
97
+ <?php endif; ?>
98
+ </div>
99
+ <?php endif; ?>
100
+ </div>
101
+ </div>
102
+ </div>
103
+ </div>
app/features/ix/sync.php CHANGED
@@ -10,9 +10,10 @@ $ix = $this->main->get_ix_options();
10
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>" class="nav-tab"><?php echo __('Google Cal. Import', 'modern-events-calendar-lite'); ?></a>
11
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-g-calendar-export'); ?>" class="nav-tab"><?php echo __('Google Cal. Export', 'modern-events-calendar-lite'); ?></a>
12
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-f-calendar-import'); ?>" class="nav-tab"><?php echo __('Facebook Cal. Import', 'modern-events-calendar-lite'); ?></a>
 
 
13
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-export'); ?>" class="nav-tab"><?php echo __('Export', 'modern-events-calendar-lite'); ?></a>
14
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-import'); ?>" class="nav-tab"><?php echo __('Import', 'modern-events-calendar-lite'); ?></a>
15
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-sync'); ?>" class="nav-tab nav-tab-active"><?php echo __('Synchronization', 'modern-events-calendar-lite'); ?></a>
16
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-thirdparty'); ?>" class="nav-tab"><?php echo __('Third Party Plugins', 'modern-events-calendar-lite'); ?></a>
17
  </h2>
18
  <div class="mec-container">
@@ -52,6 +53,16 @@ $ix = $this->main->get_ix_options();
52
  </div>
53
  <?php endif; ?>
54
 
 
 
 
 
 
 
 
 
 
 
55
  <div class="mec-options-fields">
56
  <input type="hidden" name="mec-ix-action" value="save-sync-options" />
57
  <button class="button button-primary mec-button-primary" type="submit"><?php _e('Save', 'modern-events-calendar-lite'); ?></button>
10
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>" class="nav-tab"><?php echo __('Google Cal. Import', 'modern-events-calendar-lite'); ?></a>
11
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-g-calendar-export'); ?>" class="nav-tab"><?php echo __('Google Cal. Export', 'modern-events-calendar-lite'); ?></a>
12
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-f-calendar-import'); ?>" class="nav-tab"><?php echo __('Facebook Cal. Import', 'modern-events-calendar-lite'); ?></a>
13
+ <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-meetup-import'); ?>" class="nav-tab"><?php echo __('Meetup Import', 'modern-events-calendar-lite'); ?></a>
14
+ <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-sync'); ?>" class="nav-tab nav-tab-active"><?php echo __('Synchronization', 'modern-events-calendar-lite'); ?></a>
15
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-export'); ?>" class="nav-tab"><?php echo __('Export', 'modern-events-calendar-lite'); ?></a>
16
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-import'); ?>" class="nav-tab"><?php echo __('Import', 'modern-events-calendar-lite'); ?></a>
 
17
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-thirdparty'); ?>" class="nav-tab"><?php echo __('Third Party Plugins', 'modern-events-calendar-lite'); ?></a>
18
  </h2>
19
  <div class="mec-container">
53
  </div>
54
  <?php endif; ?>
55
 
56
+ <div class="mec-form-row">
57
+ <input type="hidden" name="ix[sync_meetup_import]" value="0" />
58
+ <label class="mec-col-3" for="mec_ix_sync_meetup_import">
59
+ <input type="checkbox" id="mec_ix_sync_meetup_import" name="ix[sync_meetup_import]" value="1" <?php echo (isset($ix['sync_meetup_import']) and $ix['sync_meetup_import'] == '1') ? 'checked="checked"' : ''; ?> onchange="jQuery('#mec_sync_meetup_import_cron').toggleClass('mec-util-hidden');" />
60
+ <?php _e('Auto Meetup Import', 'modern-events-calendar-lite'); ?>
61
+ </label>
62
+ <?php $cron = MEC_ABSPATH.'app'.DS.'crons'.DS.'meetup-import.php'; ?>
63
+ <p id="mec_sync_meetup_import_cron" class="mec-col-12 <?php echo (isset($ix['sync_meetup_import']) and $ix['sync_meetup_import'] == '1') ? '' : 'mec-util-hidden'; ?>"><strong><?php _e('Important Note', 'modern-events-calendar-lite'); ?>: </strong><?php echo sprintf(__("Set a cronjob to call %s file atleast once per day otherwise it won't import any event from Meetup.", 'modern-events-calendar-lite'), '<code>'.$cron.'</code>'); ?></p>
64
+ </div>
65
+
66
  <div class="mec-options-fields">
67
  <input type="hidden" name="mec-ix-action" value="save-sync-options" />
68
  <button class="button button-primary mec-button-primary" type="submit"><?php _e('Save', 'modern-events-calendar-lite'); ?></button>
app/features/ix/thirdparty.php CHANGED
@@ -10,10 +10,11 @@ $third_parties = $this->main->get_integrated_plugins_for_import();
10
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>" class="nav-tab"><?php echo __('Google Cal. Import', 'modern-events-calendar-lite'); ?></a>
11
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-g-calendar-export'); ?>" class="nav-tab"><?php echo __('Google Cal. Export', 'modern-events-calendar-lite'); ?></a>
12
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-f-calendar-import'); ?>" class="nav-tab"><?php echo __('Facebook Cal. Import', 'modern-events-calendar-lite'); ?></a>
 
 
13
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-export'); ?>" class="nav-tab"><?php echo __('Export', 'modern-events-calendar-lite'); ?></a>
14
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-import'); ?>" class="nav-tab"><?php echo __('Import', 'modern-events-calendar-lite'); ?></a>
15
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-sync'); ?>" class="nav-tab"><?php echo __('Synchronization', 'modern-events-calendar-lite'); ?></a>
16
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-import'); ?>" class="nav-tab nav-tab-active"><?php echo __('Third Party Plugins', 'modern-events-calendar-lite'); ?></a>
17
  </h2>
18
  <div class="mec-container">
19
  <div class="import-content w-clearfix extra">
@@ -105,7 +106,7 @@ $third_parties = $this->main->get_integrated_plugins_for_import();
105
  <div class="mec-error"><?php echo $this->response['message']; ?></div>
106
  <?php else: ?>
107
  <div class="mec-success"><?php echo sprintf(__('%s events successfully imported to your website.', 'modern-events-calendar-lite'), '<strong>'.$this->response['data'].'</strong>'); ?></div>
108
- <div class="info-msg"><strong><?php _e('Attention', 'modern-events-calendar-lite'); ?>:</strong> <?php _e("Although we tried our best to make the events completely compatible with MEC but some modification might be needed. We suggest you to edit the imported listings one by one on MEC edit event page and make sure thay're correct.", 'modern-events-calendar-lite'); ?></div>
109
  <?php endif; ?>
110
  </div>
111
  <?php endif; ?>
10
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>" class="nav-tab"><?php echo __('Google Cal. Import', 'modern-events-calendar-lite'); ?></a>
11
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-g-calendar-export'); ?>" class="nav-tab"><?php echo __('Google Cal. Export', 'modern-events-calendar-lite'); ?></a>
12
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-f-calendar-import'); ?>" class="nav-tab"><?php echo __('Facebook Cal. Import', 'modern-events-calendar-lite'); ?></a>
13
+ <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-meetup-import'); ?>" class="nav-tab"><?php echo __('Meetup Import', 'modern-events-calendar-lite'); ?></a>
14
+ <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-sync'); ?>" class="nav-tab"><?php echo __('Synchronization', 'modern-events-calendar-lite'); ?></a>
15
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-export'); ?>" class="nav-tab"><?php echo __('Export', 'modern-events-calendar-lite'); ?></a>
16
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-import'); ?>" class="nav-tab"><?php echo __('Import', 'modern-events-calendar-lite'); ?></a>
17
+ <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-thirdparty'); ?>" class="nav-tab nav-tab-active"><?php echo __('Third Party Plugins', 'modern-events-calendar-lite'); ?></a>
 
18
  </h2>
19
  <div class="mec-container">
20
  <div class="import-content w-clearfix extra">
106
  <div class="mec-error"><?php echo $this->response['message']; ?></div>
107
  <?php else: ?>
108
  <div class="mec-success"><?php echo sprintf(__('%s events successfully imported to your website.', 'modern-events-calendar-lite'), '<strong>'.$this->response['data'].'</strong>'); ?></div>
109
+ <div class="info-msg"><strong><?php _e('Attention', 'modern-events-calendar-lite'); ?>:</strong> <?php _e("Although we tried our best to make the events completely compatible with MEC but some modification might be needed. We suggest you to edit the imported listings one by one on MEC edit event page and make sure they are correct.", 'modern-events-calendar-lite'); ?></div>
110
  <?php endif; ?>
111
  </div>
112
  <?php endif; ?>
app/features/mec/dashboard.php CHANGED
@@ -58,7 +58,7 @@ $box_stats = apply_filters('mec_dashboard_box_stats', true);
58
  <h1> <?php echo sprintf(__('Welcome %s', 'modern-events-calendar-lite'), $current_user->user_firstname); ?> </h1>
59
  <div class="w-welcome">
60
  <p>
61
- <?php echo sprintf(__('%s - Most Powerful & Easy to Use Events Management System', 'modern-events-calendar-lite'), '<strong>'.($this->getPRO() ? __('Modern Event Calendar', 'modern-events-calendar-lite') : __('Modern Event Calendar (Lite)', 'modern-events-calendar-lite')).'</strong>'); ?>
62
  <?php if(!$this->getPRO()): ?>
63
  <span><a href="https://wordpress.org/support/plugin/modern-events-calendar-lite/reviews/#new-post" target="_blank"><?php echo _x('Rate the plugin ★★★★★', 'plugin rate', 'modern-events-calendar-lite'); ?></a></span>
64
  <?php endif; ?>
58
  <h1> <?php echo sprintf(__('Welcome %s', 'modern-events-calendar-lite'), $current_user->user_firstname); ?> </h1>
59
  <div class="w-welcome">
60
  <p>
61
+ <?php echo sprintf(__('%s - Most Powerful & Easy to Use Events Management System', 'modern-events-calendar-lite'), '<strong>'.($this->getPRO() ? __('Modern Events Calendar', 'modern-events-calendar-lite') : __('Modern Events Calendar (Lite)', 'modern-events-calendar-lite')).'</strong>'); ?>
62
  <?php if(!$this->getPRO()): ?>
63
  <span><a href="https://wordpress.org/support/plugin/modern-events-calendar-lite/reviews/#new-post" target="_blank"><?php echo _x('Rate the plugin ★★★★★', 'plugin rate', 'modern-events-calendar-lite'); ?></a></span>
64
  <?php endif; ?>
app/features/mec/dyncss.php CHANGED
@@ -105,7 +105,7 @@ if($mec_p_fontfamily_arr): ?>
105
  if($color && $color != '#40d9f1'): ?>
106
  /* == TextColors
107
  ---------------- */
108
- .mec-wrap.colorskin-custom .mec-calendar.mec-event-calendar-classic .mec-selected-day,.mec-wrap.colorskin-custom .mec-color, .mec-wrap.colorskin-custom .mec-event-sharing-wrap .mec-event-sharing > li:hover a, .mec-wrap.colorskin-custom .mec-color-hover:hover, .mec-wrap.colorskin-custom .mec-color-before *:before ,.mec-wrap.colorskin-custom .mec-widget .mec-event-grid-classic.owl-carousel .owl-nav i,.mec-wrap.colorskin-custom .mec-event-list-classic a.magicmore:hover,.mec-wrap.colorskin-custom .mec-event-grid-simple:hover .mec-event-title,.mec-wrap.colorskin-custom .mec-single-event .mec-event-meta dd.mec-events-event-categories:before,.mec-wrap.colorskin-custom .mec-single-event-date:before,.mec-wrap.colorskin-custom .mec-single-event-time:before,.mec-wrap.colorskin-custom .mec-events-meta-group.mec-events-meta-group-venue:before,.mec-wrap.colorskin-custom .mec-calendar .mec-calendar-side .mec-previous-month i,.mec-wrap.colorskin-custom .mec-calendar .mec-calendar-side .mec-next-month,.mec-wrap.colorskin-custom .mec-calendar .mec-calendar-side .mec-previous-month:hover,.mec-wrap.colorskin-custom .mec-calendar .mec-calendar-side .mec-next-month:hover,.mec-wrap.colorskin-custom .mec-calendar.mec-event-calendar-classic dt.mec-selected-day:hover,.mec-wrap.colorskin-custom .mec-infowindow-wp h5 a:hover, .colorskin-custom .mec-events-meta-group-countdown .mec-end-counts h3,.mec-calendar .mec-calendar-side .mec-next-month i,.mec-wrap .mec-totalcal-box i,.mec-calendar .mec-event-article .mec-event-title a:hover,.mec-attendees-list-details .mec-attendee-profile-link a:hover, .mec-next-event-details li i,.mec-next-event-details a
109
  {color: <?php echo $color; ?>}
110
 
111
  /* == Backgrounds
@@ -117,7 +117,7 @@ if($color && $color != '#40d9f1'): ?>
117
 
118
  /* == BorderColors
119
  ------------------ */
120
- .mec-wrap.colorskin-custom .mec-single-event .mec-speakers-details ul li .mec-speaker-avatar a:hover img,.mec-wrap.colorskin-custom .mec-event-list-modern .mec-event-sharing > li:hover a i,.mec-wrap.colorskin-custom .mec-event-list-modern .mec-event-sharing .mec-event-share:hover .mec-event-sharing-icon,.mec-wrap.colorskin-custom .mec-event-list-standard .mec-month-divider span:before,.mec-wrap.colorskin-custom .mec-single-event .mec-social-single:before,.mec-wrap.colorskin-custom .mec-single-event .mec-frontbox-title:before,.mec-wrap.colorskin-custom .mec-calendar .mec-calendar-events-side .mec-table-side-day, .mec-wrap.colorskin-custom .mec-border-color, .mec-wrap.colorskin-custom .mec-border-color-hover:hover, .colorskin-custom .mec-single-event .mec-frontbox-title:before, .colorskin-custom .mec-single-event .mec-events-meta-group-booking form > h4:before, .mec-wrap.colorskin-custom .mec-totalcal-box .mec-totalcal-view span.mec-totalcalview-selected,.mec-wrap .mec-totalcal-box .mec-totalcal-view span.mec-totalcalview-selected,.event-carousel-type1-head .mec-event-date-carousel:after
121
  {border-color: <?php echo $color; ?>;}
122
  .mec-event-countdown-style3 .mec-event-date:after
123
  {border-bottom-color:<?php echo $color; ?>;}
105
  if($color && $color != '#40d9f1'): ?>
106
  /* == TextColors
107
  ---------------- */
108
+ .mec-wrap.colorskin-custom .mec-calendar.mec-event-calendar-classic .mec-selected-day,.mec-wrap.colorskin-custom .mec-color, .mec-wrap.colorskin-custom .mec-event-sharing-wrap .mec-event-sharing > li:hover a, .mec-wrap.colorskin-custom .mec-color-hover:hover, .mec-wrap.colorskin-custom .mec-color-before *:before ,.mec-wrap.colorskin-custom .mec-widget .mec-event-grid-classic.owl-carousel .owl-nav i,.mec-wrap.colorskin-custom .mec-event-list-classic a.magicmore:hover,.mec-wrap.colorskin-custom .mec-event-grid-simple:hover .mec-event-title,.mec-wrap.colorskin-custom .mec-single-event .mec-event-meta dd.mec-events-event-categories:before,.mec-wrap.colorskin-custom .mec-single-event-date:before,.mec-wrap.colorskin-custom .mec-single-event-time:before,.mec-wrap.colorskin-custom .mec-events-meta-group.mec-events-meta-group-venue:before,.mec-wrap.colorskin-custom .mec-calendar .mec-calendar-side .mec-previous-month i,.mec-wrap.colorskin-custom .mec-calendar .mec-calendar-side .mec-next-month,.mec-wrap.colorskin-custom .mec-calendar .mec-calendar-side .mec-previous-month:hover,.mec-wrap.colorskin-custom .mec-calendar .mec-calendar-side .mec-next-month:hover,.mec-wrap.colorskin-custom .mec-calendar.mec-event-calendar-classic dt.mec-selected-day:hover,.mec-wrap.colorskin-custom .mec-infowindow-wp h5 a:hover, .colorskin-custom .mec-events-meta-group-countdown .mec-end-counts h3,.mec-calendar .mec-calendar-side .mec-next-month i,.mec-wrap .mec-totalcal-box i,.mec-calendar .mec-event-article .mec-event-title a:hover,.mec-attendees-list-details .mec-attendee-profile-link a:hover, .mec-next-event-details li i,.mec-next-event-details a,.mec-wrap.colorskin-custom .mec-events-masonry-cats a.mec-masonry-cat-selected
109
  {color: <?php echo $color; ?>}
110
 
111
  /* == Backgrounds
117
 
118
  /* == BorderColors
119
  ------------------ */
120
+ .mec-wrap.colorskin-custom .mec-single-event .mec-speakers-details ul li .mec-speaker-avatar a:hover img,.mec-wrap.colorskin-custom .mec-event-list-modern .mec-event-sharing > li:hover a i,.mec-wrap.colorskin-custom .mec-event-list-modern .mec-event-sharing .mec-event-share:hover .mec-event-sharing-icon,.mec-wrap.colorskin-custom .mec-event-list-standard .mec-month-divider span:before,.mec-wrap.colorskin-custom .mec-single-event .mec-social-single:before,.mec-wrap.colorskin-custom .mec-single-event .mec-frontbox-title:before,.mec-wrap.colorskin-custom .mec-calendar .mec-calendar-events-side .mec-table-side-day, .mec-wrap.colorskin-custom .mec-border-color, .mec-wrap.colorskin-custom .mec-border-color-hover:hover, .colorskin-custom .mec-single-event .mec-frontbox-title:before, .colorskin-custom .mec-single-event .mec-events-meta-group-booking form > h4:before, .mec-wrap.colorskin-custom .mec-totalcal-box .mec-totalcal-view span.mec-totalcalview-selected,.mec-wrap .mec-totalcal-box .mec-totalcal-view span.mec-totalcalview-selected,.event-carousel-type1-head .mec-event-date-carousel:after,.mec-wrap.colorskin-custom .mec-events-masonry-cats a.mec-masonry-cat-selected,.mec-wrap.colorskin-custom .mec-events-masonry-cats a:hover
121
  {border-color: <?php echo $color; ?>;}
122
  .mec-event-countdown-style3 .mec-event-date:after
123
  {border-bottom-color:<?php echo $color; ?>;}
app/features/mec/settings.php CHANGED
@@ -133,6 +133,12 @@ if($this->getPRO())
133
  </a>
134
  </li>
135
 
 
 
 
 
 
 
136
  <li id="" class="pr-be-group-menu-li">
137
  <a href="#exceptional_option" id="" class="wns-be-group-tab-link-a">
138
  <span class="pr-be-group-menu-title"><?php _e('Exceptional Days', 'modern-events-calendar-lite'); ?></span>
@@ -633,7 +639,7 @@ if($this->getPRO())
633
  <div class="mec-form-row">
634
  <label>
635
  <input type="hidden" name="mec[settings][google_recaptcha_fes]" value="0" />
636
- <input value="1" type="checkbox" name="mec[settings][google_recaptcha_fes]" <?php if(isset($settings['google_recaptcha_fes']) and $settings['google_recaptcha_fes']) echo 'checked="checked"'; ?> /> <?php _e('Enable on "Frontend Event Submittion" form', 'modern-events-calendar-lite'); ?>
637
  </label>
638
  </div>
639
  <div class="mec-form-row">
@@ -953,6 +959,13 @@ if($this->getPRO())
953
  </div>
954
  </div>
955
 
 
 
 
 
 
 
 
956
  <div id="exceptional_option" class="mec-options-fields">
957
  <h4 class="mec-form-subtitle"><?php _e('Exceptional days', 'modern-events-calendar-lite'); ?></h4>
958
  <div class="mec-form-row">
133
  </a>
134
  </li>
135
 
136
+ <li id="" class="pr-be-group-menu-li">
137
+ <a href="#user_profile_options" id="" class="wns-be-group-tab-link-a">
138
+ <span class="pr-be-group-menu-title"><?php _e('User Profile', 'modern-events-calendar-lite'); ?></span>
139
+ </a>
140
+ </li>
141
+
142
  <li id="" class="pr-be-group-menu-li">
143
  <a href="#exceptional_option" id="" class="wns-be-group-tab-link-a">
144
  <span class="pr-be-group-menu-title"><?php _e('Exceptional Days', 'modern-events-calendar-lite'); ?></span>
639
  <div class="mec-form-row">
640
  <label>
641
  <input type="hidden" name="mec[settings][google_recaptcha_fes]" value="0" />
642
+ <input value="1" type="checkbox" name="mec[settings][google_recaptcha_fes]" <?php if(isset($settings['google_recaptcha_fes']) and $settings['google_recaptcha_fes']) echo 'checked="checked"'; ?> /> <?php _e('Enable on "Frontend Event Submission" form', 'modern-events-calendar-lite'); ?>
643
  </label>
644
  </div>
645
  <div class="mec-form-row">
959
  </div>
960
  </div>
961
 
962
+ <div id="user_profile_options" class="mec-options-fields">
963
+ <h4 class="mec-form-subtitle"><?php _e('User Profile', 'modern-events-calendar-lite'); ?></h4>
964
+ <div class="mec-form-row">
965
+ <p><?php echo sprintf(__('Put %s shortcode into your desired page. Then users are able to see history of their bookings.', 'modern-events-calendar-lite'), '<code>[MEC_profile]</code>'); ?></p>
966
+ </div>
967
+ </div>
968
+
969
  <div id="exceptional_option" class="mec-options-fields">
970
  <h4 class="mec-form-subtitle"><?php _e('Exceptional days', 'modern-events-calendar-lite'); ?></h4>
971
  <div class="mec-form-row">
app/features/profile.php ADDED
@@ -0,0 +1,87 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /** no direct access **/
3
+ defined('MECEXEC') or die();
4
+
5
+ /**
6
+ * Webnus MEC profile class.
7
+ * @author Webnus <info@webnus.biz>
8
+ */
9
+ class MEC_feature_profile extends MEC_base
10
+ {
11
+ /**
12
+ * @var MEC_factory
13
+ */
14
+ public $factory;
15
+
16
+ /**
17
+ * @var MEC_main
18
+ */
19
+ public $main;
20
+
21
+ /**
22
+ * @var MEC_book
23
+ */
24
+ public $book;
25
+
26
+ /**
27
+ * @var string
28
+ */
29
+ public $PT;
30
+
31
+ /**
32
+ * Constructor method
33
+ * @author Webnus <info@webnus.biz>
34
+ */
35
+ public function __construct()
36
+ {
37
+ // Import MEC Factory
38
+ $this->factory = $this->getFactory();
39
+
40
+ // Import MEC Main
41
+ $this->main = $this->getMain();
42
+
43
+ // Import MEC Book
44
+ $this->book = $this->getBook();
45
+
46
+ // Booking Post Type
47
+ $this->PT = $this->main->get_book_post_type();
48
+ }
49
+
50
+ /**
51
+ * Initialize profile feature
52
+ * @author Webnus <info@webnus.biz>
53
+ */
54
+ public function init()
55
+ {
56
+ // Profile Shortcode
57
+ $this->factory->shortcode('MEC_profile', array($this, 'profile'));
58
+ }
59
+
60
+ /**
61
+ * Show user profile
62
+ * @param array $atts
63
+ * @return string
64
+ */
65
+ public function profile($atts = array())
66
+ {
67
+ // Force to array
68
+ if(!is_array($atts)) $atts = array();
69
+
70
+ // Show login/register message if user is not logged in and guest submission is not enabled.
71
+ if(!is_user_logged_in())
72
+ {
73
+ // Show message
74
+ $message = sprintf(__('Please %s/%s in order to see your bookings / profile.', 'modern-events-calendar-lite'), '<a href="'.wp_login_url($this->main->get_full_url()).'">'.__('Login', 'modern-events-calendar-lite').'</a>', '<a href="'.wp_registration_url().'">'.__('Register', 'modern-events-calendar-lite').'</a>');
75
+
76
+ ob_start();
77
+ include MEC::import('app.features.profile.message', true, true);
78
+ return ob_get_clean();
79
+ }
80
+
81
+ $path = MEC::import('app.features.profile.profile', true, true);
82
+
83
+ ob_start();
84
+ include $path;
85
+ return ob_get_clean();
86
+ }
87
+ }
app/features/profile/index.html ADDED
File without changes
app/features/profile/message.php ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
1
+ <?php
2
+ /** no direct access **/
3
+ defined('MECEXEC') or die();
4
+ ?>
5
+ <div class="mec-profile-message">
6
+ <p><?php echo $message; ?></p>
7
+ </div>
app/features/profile/profile.php ADDED
@@ -0,0 +1,144 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /** no direct access **/
3
+ defined('MECEXEC') or die();
4
+
5
+ // MEC Render
6
+ $render = $this->getRender();
7
+
8
+ // The Query
9
+ $query = new WP_Query(array(
10
+ 'post_type'=>$this->PT,
11
+ 'author'=>get_current_user_id(),
12
+ 'posts_per_page'=>'-1',
13
+ 'post_status'=>array('pending', 'draft', 'future', 'publish'),
14
+ 'orderby'=>'post_date',
15
+ 'order'=>'DESC',
16
+ ));
17
+
18
+ $id = 1;
19
+ ?>
20
+ <div class="mec-profile">
21
+ <?php if($query->have_posts()): ?>
22
+ <table class="mec-profile-bookings">
23
+ <tr>
24
+ <td>
25
+ <?php esc_html_e('#' , 'modern-events-calendar-lite'); ?>
26
+ </td>
27
+ <td>
28
+ <?php esc_html_e('Event' , 'modern-events-calendar-lite'); ?>
29
+ </td>
30
+ <td>
31
+ <?php esc_html_e('Date' , 'modern-events-calendar-lite'); ?>
32
+ </td>
33
+ <td>
34
+ <?php esc_html_e('Status' , 'modern-events-calendar-lite'); ?>
35
+ </td>
36
+ <td>
37
+ <?php esc_html_e('Attendees' , 'modern-events-calendar-lite'); ?>
38
+ </td>
39
+ <td>
40
+ <?php esc_html_e('Invoice' , 'modern-events-calendar-lite'); ?>
41
+ </td>
42
+ </tr>
43
+ <?php while($query->have_posts()): $query->the_post(); $ID = get_the_ID(); ?>
44
+ <?php
45
+ $transaction_id = $this->book->get_transaction_id_book_id($ID);
46
+ $event_id = get_post_meta($ID, 'mec_event_id', true);
47
+ $ticket_ids = get_post_meta($ID, 'mec_ticket_id', true);
48
+
49
+ $confirmed = get_post_meta($ID, 'mec_confirmed', true);
50
+ if($confirmed == '1') $status_class = 'mec-book-confirmed';
51
+ elseif($confirmed == '-1') $status_class = 'mec-book-rejected';
52
+ else $status_class = 'mec-book-pending';
53
+ $transaction = $this->book->get_transaction($transaction_id);
54
+ $dates = isset($transaction['date']) ? explode(':', $transaction['date']) : array(date('Y-m-d'), date('Y-m-d'));
55
+ $event = $render->data($event_id);
56
+ ?>
57
+ <tr id="mec_profile_booking_<?php echo $ID; ?>">
58
+ <td>
59
+ <span class="mec-event-id"><?php echo $id; ?></span>
60
+ </td>
61
+ <td>
62
+ <span class="mec-event-title"><?php echo $event->title; ?></span>
63
+ </td>
64
+ <td>
65
+ <span class="mec-event-date">
66
+ <?php echo trim($dates[0].' '.(isset($event->time['start']) ? $event->time['start'] : '').' - '.(($dates[0] != $dates[1]) ? $dates[1].' ' : '').(isset($event->time['end']) ? $event->time['end'] : ''), '- '); ?>
67
+ </span>
68
+ </td>
69
+ <td>
70
+ <span class="mec-event-status <?php echo $status_class;?>">
71
+ <?php echo $this->main->get_confirmation_label($confirmed); ?>
72
+ </span>
73
+ </td>
74
+ <td>
75
+ <a class="mec-booking-number-of-attendees" href="#mec_profile_booking_<?php echo $ID; ?>" data-lity>
76
+ <?php echo sprintf(__('<i class="mec-sl-eye"></i> %s', 'modern-events-calendar-lite'), ((is_array($transaction) and isset($transaction['tickets'])) ? count($transaction['tickets']) : 0)); ?>
77
+ </a>
78
+ </td>
79
+ <td>
80
+ <span class="mec-profile-bookings-view-invoice"><a target="_blank" href="<?php echo $this->book->get_invoice_link($transaction_id); ?>"><i class="mec-sl-cloud-download"></i></a></span>
81
+ </td>
82
+ </tr>
83
+ <div id="mec_profile_booking_<?php echo $ID; ?>" class="mec-booking-attendees lity-hide">
84
+ <div class="mec-booking-attendees-wrapper">
85
+ <div class="mec-booking-attendees-head">
86
+ <span class="mec-booking-attendee-id">
87
+ <?php esc_html_e('#' , 'modern-events-calendar-lite'); ?>
88
+ </span>
89
+ <span class="mec-booking-attendee-name">
90
+ <?php esc_html_e('Name' , 'modern-events-calendar-lite'); ?>
91
+ </span>
92
+ <span class="mec-booking-attendee-email">
93
+ <?php esc_html_e('Email' , 'modern-events-calendar-lite'); ?>
94
+ </span>
95
+ <span class="mec-booking-attendee-ticket">
96
+ <?php esc_html_e('Ticket' , 'modern-events-calendar-lite'); ?>
97
+ </span>
98
+ <span class="mec-booking-attendee-ticket-variations">
99
+ <?php esc_html_e('Variations' , 'modern-events-calendar-lite'); ?>
100
+ </span>
101
+ </div>
102
+ <?php
103
+ // Attendees
104
+ if(isset($transaction['tickets']) and is_array($transaction['tickets']) and count($transaction['tickets']))
105
+ {
106
+ $person_id = 1;
107
+ foreach($transaction['tickets'] as $attendee)
108
+ {
109
+ echo '<div class="mec-booking-attendees-head-content">';
110
+ echo '<span class="mec-booking-attendee-id">'.$person_id.'</span>';
111
+ echo '<span class="mec-booking-attendee-name">'.$attendee['name'].'</span>';
112
+ echo '<span class="mec-booking-attendee-email">'.$attendee['email'].'</span>';
113
+ echo '<span class="mec-booking-attendee-ticket">'.((isset($event->tickets[$attendee['id']]) ? $event->tickets[$attendee['id']]['name'] : '').' '.(isset($event->tickets[$attendee['id']]) ? $event->tickets[$attendee['id']]['price_label'] : '')).'</span>';
114
+ // Ticket Variations
115
+ echo '<span class="mec-booking-attendee-ticket-variations">';
116
+ if(isset($attendee['variations']) and is_array($attendee['variations']) and count($attendee['variations']))
117
+ {
118
+ $ticket_variations = $this->main->ticket_variations($event_id);
119
+ foreach($attendee['variations'] as $variation_id=>$variation_count)
120
+ {
121
+ if(!$variation_count or ($variation_count and $variation_count < 0)) continue;
122
+
123
+ $variation_title = (isset($ticket_variations[$variation_id]) and isset($ticket_variations[$variation_id]['title'])) ? $ticket_variations[$variation_id]['title'] : '';
124
+ if(!trim($variation_title)) continue;
125
+
126
+ echo '<span class="mec-booking-attendee-ticket-variations-title">'.'+ '.$variation_title.' ('.$variation_count.')'.'</span>';
127
+ }
128
+ } else {
129
+ echo '-';
130
+ }
131
+ echo '</span>';
132
+ $person_id++;
133
+ echo '</div>';
134
+ }
135
+ }
136
+ ?>
137
+ </div>
138
+ </div>
139
+ <?php $id++; endwhile; wp_reset_postdata(); // Restore original Post Data ?>
140
+ </table>
141
+ <?php else: ?>
142
+ <p><?php echo __('No bookings found!', 'modern-events-calendar-lite'); ?></p>
143
+ <?php endif; ?>
144
+ </div>
app/libraries/book.php CHANGED
@@ -53,7 +53,7 @@ class MEC_book extends MEC_base
53
 
54
  $total_tickets_count += $count;
55
 
56
- $t_price = (isset($event_tickets[$ticket_id]) and isset($event_tickets[$ticket_id]['price'])) ? $event_tickets[$ticket_id]['price'] : 0;
57
  $total = $total+($t_price*$count);
58
  }
59
 
@@ -217,6 +217,7 @@ class MEC_book extends MEC_base
217
  update_post_meta($book_id, 'mec_event_id', $event_id);
218
  update_post_meta($book_id, 'mec_date', $transaction['date']);
219
  update_post_meta($book_id, 'mec_ticket_id', $ticket_ids);
 
220
 
221
  $price = isset($transaction['price']) ? $transaction['price'] : (isset($transaction['total']) ? $transaction['total'] : 0);
222
  update_post_meta($book_id, 'mec_price', $price);
@@ -637,4 +638,61 @@ class MEC_book extends MEC_base
637
  {
638
  return get_post_meta($book_id, 'mec_transaction_id', true);
639
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
640
  }
53
 
54
  $total_tickets_count += $count;
55
 
56
+ $t_price = (isset($event_tickets[$ticket_id]) and isset($event_tickets[$ticket_id]['price'])) ? $this->get_ticket_price($event_tickets[$ticket_id], current_time('Y-m-d')) : 0;
57
  $total = $total+($t_price*$count);
58
  }
59
 
217
  update_post_meta($book_id, 'mec_event_id', $event_id);
218
  update_post_meta($book_id, 'mec_date', $transaction['date']);
219
  update_post_meta($book_id, 'mec_ticket_id', $ticket_ids);
220
+ update_post_meta($book_id, 'mec_booking_time', current_time('Y-m-d H:i:s'));
221
 
222
  $price = isset($transaction['price']) ? $transaction['price'] : (isset($transaction['total']) ? $transaction['total'] : 0);
223
  update_post_meta($book_id, 'mec_price', $price);
638
  {
639
  return get_post_meta($book_id, 'mec_transaction_id', true);
640
  }
641
+
642
+ public function get_ticket_price_label($ticket, $date)
643
+ {
644
+ return $this->get_ticket_price_key($ticket, $date, 'price_label');
645
+ }
646
+
647
+ public function get_ticket_price($ticket, $date)
648
+ {
649
+ return $this->get_ticket_price_key($ticket, $date, 'price');
650
+ }
651
+
652
+ public function get_ticket_price_key($ticket, $date, $key)
653
+ {
654
+ $data = isset($ticket[$key]) ? $ticket[$key] : NULL;
655
+ $price_dates = (isset($ticket['dates']) and is_array($ticket['dates'])) ? $ticket['dates'] : array();
656
+
657
+ if(!count($price_dates)) return $data;
658
+
659
+ $time = strtotime($date);
660
+ foreach($price_dates as $price_date)
661
+ {
662
+ $start = $price_date['start'];
663
+ $end = $price_date['end'];
664
+
665
+ if($time >= strtotime($start) and $time <= strtotime($end))
666
+ {
667
+ if($key == 'price_label') $data = $price_date['label'];
668
+ else $data = $price_date[$key];
669
+ }
670
+ }
671
+
672
+ return $data;
673
+ }
674
+
675
+ /**
676
+ * Returns tickets prices of an event for a certain date
677
+ * @author Webnus <info@webnus.biz>
678
+ * @param int $event_id
679
+ * @param string $date
680
+ * @param string $key
681
+ * @return array
682
+ */
683
+ public function get_tickets_prices($event_id, $date, $key = 'price')
684
+ {
685
+ $prices = array();
686
+ $tickets = get_post_meta($event_id, 'mec_tickets', true);
687
+
688
+ // No Ticket Found!
689
+ if(!is_array($tickets) or (is_array($tickets) and !count($tickets))) return $prices;
690
+
691
+ foreach($tickets as $ticket_id=>$ticket)
692
+ {
693
+ $prices[$ticket_id] = $this->get_ticket_price_key($ticket, $date, $key);
694
+ }
695
+
696
+ return $prices;
697
+ }
698
  }
app/libraries/factory.php CHANGED
@@ -230,7 +230,7 @@ class MEC_factory extends MEC_base
230
  wp_enqueue_script('wp-color-picker');
231
 
232
  // Include jQuery date picker
233
- wp_enqueue_script('jquery-ui-datepicker');
234
 
235
  // Include MEC backend script file
236
  wp_enqueue_script('mec-backend-script', $this->main->asset('js/backend.js'), array('wp-color-picker', 'jquery-ui-datepicker'));
@@ -769,7 +769,7 @@ class MEC_factory extends MEC_base
769
  foreach($calendars as $calendar)
770
  {
771
  // Calendar exists
772
- if(post_exists($calendar['title'], 'modern-events-calendar-lite')) continue;
773
 
774
  $post = array('post_title'=>$calendar['title'], 'post_content'=>'MEC', 'post_type'=>'mec_calendars', 'post_status'=>'publish');
775
  $post_id = wp_insert_post($post);
230
  wp_enqueue_script('wp-color-picker');
231
 
232
  // Include jQuery date picker
233
+ //wp_enqueue_script('jquery-ui-datepicker');
234
 
235
  // Include MEC backend script file
236
  wp_enqueue_script('mec-backend-script', $this->main->asset('js/backend.js'), array('wp-color-picker', 'jquery-ui-datepicker'));
769
  foreach($calendars as $calendar)
770
  {
771
  // Calendar exists
772
+ if(post_exists($calendar['title'], 'MEC')) continue;
773
 
774
  $post = array('post_title'=>$calendar['title'], 'post_content'=>'MEC', 'post_type'=>'mec_calendars', 'post_status'=>'publish');
775
  $post_id = wp_insert_post($post);
app/libraries/main.php CHANGED
@@ -295,6 +295,8 @@ class MEC_main extends MEC_base
295
  public function get_post_content($post_id)
296
  {
297
  $post = get_post($post_id);
 
 
298
  return str_replace(']]>', ']]&gt;', apply_filters('the_content', $post->post_content));
299
  }
300
 
@@ -1554,6 +1556,14 @@ class MEC_main extends MEC_base
1554
 
1555
  $dates = isset($transaction['date']) ? explode(':', $transaction['date']) : array(date('Y-m-d'), date('Y-m-d'));
1556
 
 
 
 
 
 
 
 
 
1557
  // Include the tFPDF Class
1558
  if(!class_exists('tFPDF')) require_once MEC_ABSPATH.'app'.DS.'api'.DS.'TFPDF'.DS.'tfpdf.php';
1559
 
@@ -1608,7 +1618,7 @@ class MEC_main extends MEC_base
1608
  $pdf->Write(6, $attendee['email']);
1609
  $pdf->Ln();
1610
 
1611
- $pdf->Write(6, ((isset($event->tickets[$attendee['id']]) ? __($this->m('ticket', __('Ticket', 'modern-events-calendar-lite'))).': '.$event->tickets[$attendee['id']]['name'] : '').' '.(isset($event->tickets[$attendee['id']]) ? $event->tickets[$attendee['id']]['price_label'] : '')));
1612
 
1613
  // Ticket Variations
1614
  if(isset($attendee['variations']) and is_array($attendee['variations']) and count($attendee['variations']))
@@ -2155,7 +2165,7 @@ class MEC_main extends MEC_base
2155
  <span onclick="mec_reg_fields_remove('.$key.');" class="mec_reg_field_remove">'.__('Remove', 'modern-events-calendar-lite').'</span>
2156
  <div>
2157
  <input type="hidden" name="mec[reg_fields]['.$key.'][type]" value="p" />
2158
- <textarea name="mec[reg_fields]['.$key.'][content]">'.(isset($values['content']) ? htmlentities($values['content']) : '').'</textarea>
2159
  <p class="description">'.__('HTML and shortcode are allowed.').'</p>
2160
  </div>
2161
  </li>';
@@ -3319,10 +3329,16 @@ class MEC_main extends MEC_base
3319
 
3320
  $allday = (isset($event['allday']) ? $event['allday'] : 0);
3321
  $time_comment = (isset($event['time_comment']) ? $event['time_comment'] : '');
3322
-
 
 
3323
  $day_start_seconds = $this->time_to_seconds($this->to_24hours($start_time_hour, $start_time_ampm), $start_time_minutes);
3324
  $day_end_seconds = $this->time_to_seconds($this->to_24hours($end_time_hour, $end_time_ampm), $end_time_minutes);
3325
-
 
 
 
 
3326
  update_post_meta($post_id, 'mec_start_date', $event['start']);
3327
  update_post_meta($post_id, 'mec_start_time_hour', $start_time_hour);
3328
  update_post_meta($post_id, 'mec_start_time_minutes', $start_time_minutes);
@@ -3347,7 +3363,7 @@ class MEC_main extends MEC_base
3347
  'end'=>array('date'=>$event['end'], 'hour'=>$end_time_hour, 'minutes'=>$end_time_minutes, 'ampm'=>$end_time_ampm),
3348
  'repeat'=>((isset($event['date']) and isset($event['date']['repeat']) and is_array($event['date']['repeat'])) ? $event['date']['repeat'] : array()),
3349
  'allday'=>$allday,
3350
- 'hide_time'=>0,
3351
  'hide_end_time'=>((isset($event['date']) and isset($event['date']['hide_end_time'])) ? $event['date']['hide_end_time'] : 0),
3352
  'comment'=>$time_comment,
3353
  );
@@ -4027,7 +4043,7 @@ class MEC_main extends MEC_base
4027
  $JSON = $this->get_web_page('https://ipapi.co/'.$ip.'/json/');
4028
  $data = json_decode($JSON, true);
4029
  }
4030
-
4031
  // Second provide returns X instead of false in case of error!
4032
  return (isset($data['timezone']) and strtolower($data['timezone']) != 'x') ? $data['timezone'] : false;
4033
  }
@@ -4317,4 +4333,34 @@ class MEC_main extends MEC_base
4317
  {
4318
  return 'https://webnus.net/pricing/#plugins';
4319
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4320
  }
295
  public function get_post_content($post_id)
296
  {
297
  $post = get_post($post_id);
298
+ if(!$post) return NULL;
299
+
300
  return str_replace(']]>', ']]&gt;', apply_filters('the_content', $post->post_content));
301
  }
302
 
1556
 
1557
  $dates = isset($transaction['date']) ? explode(':', $transaction['date']) : array(date('Y-m-d'), date('Y-m-d'));
1558
 
1559
+ // Get Booking Post
1560
+ $booking = $book->get_bookings_by_transaction_id($transaction_id);
1561
+
1562
+ $booking_time = isset($booking[0]) ? get_post_meta($booking[0]->ID, 'mec_booking_time', true) : NULL;
1563
+ if(!$booking_time) $booking_time = $dates[0];
1564
+
1565
+ $booking_time = date('Y-m-d', strtotime($booking_time));
1566
+
1567
  // Include the tFPDF Class
1568
  if(!class_exists('tFPDF')) require_once MEC_ABSPATH.'app'.DS.'api'.DS.'TFPDF'.DS.'tfpdf.php';
1569
 
1618
  $pdf->Write(6, $attendee['email']);
1619
  $pdf->Ln();
1620
 
1621
+ $pdf->Write(6, ((isset($event->tickets[$attendee['id']]) ? __($this->m('ticket', __('Ticket', 'modern-events-calendar-lite'))).': '.$event->tickets[$attendee['id']]['name'] : '').' '.(isset($event->tickets[$attendee['id']]) ? $book->get_ticket_price_label($event->tickets[$attendee['id']], $booking_time) : '')));
1622
 
1623
  // Ticket Variations
1624
  if(isset($attendee['variations']) and is_array($attendee['variations']) and count($attendee['variations']))
2165
  <span onclick="mec_reg_fields_remove('.$key.');" class="mec_reg_field_remove">'.__('Remove', 'modern-events-calendar-lite').'</span>
2166
  <div>
2167
  <input type="hidden" name="mec[reg_fields]['.$key.'][type]" value="p" />
2168
+ <textarea name="mec[reg_fields]['.$key.'][content]">'.(isset($values['content']) ? htmlentities(stripslashes($values['content'])) : '').'</textarea>
2169
  <p class="description">'.__('HTML and shortcode are allowed.').'</p>
2170
  </div>
2171
  </li>';
3329
 
3330
  $allday = (isset($event['allday']) ? $event['allday'] : 0);
3331
  $time_comment = (isset($event['time_comment']) ? $event['time_comment'] : '');
3332
+ $hide_time = ((isset($event['date']) and isset($event['date']['hide_time'])) ? $event['date']['hide_time'] : 0);
3333
+ $hide_end_time = ((isset($event['date']) and isset($event['date']['hide_end_time'])) ? $event['date']['hide_end_time'] : 0);
3334
+
3335
  $day_start_seconds = $this->time_to_seconds($this->to_24hours($start_time_hour, $start_time_ampm), $start_time_minutes);
3336
  $day_end_seconds = $this->time_to_seconds($this->to_24hours($end_time_hour, $end_time_ampm), $end_time_minutes);
3337
+
3338
+ update_post_meta($post_id, 'mec_allday', $allday);
3339
+ update_post_meta($post_id, 'mec_hide_time', $hide_time);
3340
+ update_post_meta($post_id, 'mec_hide_end_time', $hide_end_time);
3341
+
3342
  update_post_meta($post_id, 'mec_start_date', $event['start']);
3343
  update_post_meta($post_id, 'mec_start_time_hour', $start_time_hour);
3344
  update_post_meta($post_id, 'mec_start_time_minutes', $start_time_minutes);
3363
  'end'=>array('date'=>$event['end'], 'hour'=>$end_time_hour, 'minutes'=>$end_time_minutes, 'ampm'=>$end_time_ampm),
3364
  'repeat'=>((isset($event['date']) and isset($event['date']['repeat']) and is_array($event['date']['repeat'])) ? $event['date']['repeat'] : array()),
3365
  'allday'=>$allday,
3366
+ 'hide_time'=>((isset($event['date']) and isset($event['date']['hide_time'])) ? $event['date']['hide_time'] : 0),
3367
  'hide_end_time'=>((isset($event['date']) and isset($event['date']['hide_end_time'])) ? $event['date']['hide_end_time'] : 0),
3368
  'comment'=>$time_comment,
3369
  );
4043
  $JSON = $this->get_web_page('https://ipapi.co/'.$ip.'/json/');
4044
  $data = json_decode($JSON, true);
4045
  }
4046
+
4047
  // Second provide returns X instead of false in case of error!
4048
  return (isset($data['timezone']) and strtolower($data['timezone']) != 'x') ? $data['timezone'] : false;
4049
  }
4333
  {
4334
  return 'https://webnus.net/pricing/#plugins';
4335
  }
4336
+
4337
+ /**
4338
+ * Get Label for booking confirmation
4339
+ * @author Webnus <info@webnus.biz>
4340
+ * @param int $confirmed
4341
+ * @return string
4342
+ */
4343
+ public function get_confirmation_label($confirmed = 1)
4344
+ {
4345
+ if($confirmed == '1') $label = __('Confirmed', 'modern-events-calendar-lite');
4346
+ elseif($confirmed == '-1') $label = __('Rejected', 'modern-events-calendar-lite');
4347
+ else $label = __('Pending', 'modern-events-calendar-lite');
4348
+
4349
+ return $label;
4350
+ }
4351
+
4352
+ /**
4353
+ * Get Label for booking verification
4354
+ * @author Webnus <info@webnus.biz>
4355
+ * @param int $verified
4356
+ * @return string
4357
+ */
4358
+ public function get_verification_label($verified = 1)
4359
+ {
4360
+ if($verified == '1') $label = __('Verified', 'modern-events-calendar-lite');
4361
+ elseif($verified == '-1') $label = __('Canceled', 'modern-events-calendar-lite');
4362
+ else $label = __('Waiting', 'modern-events-calendar-lite');
4363
+
4364
+ return $label;
4365
+ }
4366
  }
app/libraries/render.php CHANGED
@@ -406,8 +406,8 @@ class MEC_render extends MEC_base
406
  else
407
  {
408
  $data->time = array(
409
- 'start'=>$this->main->get_time($meta['mec_start_day_seconds']),
410
- 'end'=>($hide_end_time ? '' : $this->main->get_time($meta['mec_end_day_seconds']))
411
  );
412
  }
413
 
406
  else
407
  {
408
  $data->time = array(
409
+ 'start'=>(isset($meta['mec_start_day_seconds']) ? $this->main->get_time($meta['mec_start_day_seconds']) : ''),
410
+ 'end'=>($hide_end_time ? '' : (isset($meta['mec_end_day_seconds']) ? $this->main->get_time($meta['mec_end_day_seconds']) : ''))
411
  );
412
  }
413
 
app/libraries/skins.php CHANGED
@@ -647,20 +647,18 @@ class MEC_skins extends MEC_base
647
  // If no fields specified
648
  if(!count($this->sf_options)) return '';
649
 
650
- $fields = '';
651
  $first_row = 'not-started';
652
 
653
  foreach($this->sf_options as $field=>$options)
654
  {
655
  $type = isset($options['type']) ? $options['type'] : '';
656
 
657
- // Field is disabled
658
- if(!trim($type)) continue;
659
-
660
  if(in_array($field, array('category', 'location', 'organizer', 'label')) and $first_row == 'not-started')
661
  {
662
  $first_row = 'started';
663
  $fields .= '<div class="mec-dropdown-wrap">';
 
664
  }
665
 
666
  if(!in_array($field, array('category', 'location', 'organizer', 'label')) and $first_row == 'started')
647
  // If no fields specified
648
  if(!count($this->sf_options)) return '';
649
 
650
+ $fields = $end_div = '';
651
  $first_row = 'not-started';
652
 
653
  foreach($this->sf_options as $field=>$options)
654
  {
655
  $type = isset($options['type']) ? $options['type'] : '';
656
 
 
 
 
657
  if(in_array($field, array('category', 'location', 'organizer', 'label')) and $first_row == 'not-started')
658
  {
659
  $first_row = 'started';
660
  $fields .= '<div class="mec-dropdown-wrap">';
661
+ $end_div = '</div>';
662
  }
663
 
664
  if(!in_array($field, array('category', 'location', 'organizer', 'label')) and $first_row == 'started')
app/modules/booking/default.php CHANGED
@@ -58,7 +58,6 @@ function mec_get_tickets_availability'.$uniqueid.'(event_id, date)
58
 
59
  for(ticket_id in data.availability)
60
  {
61
- console.log(limit);
62
  var limit = data.availability[ticket_id];
63
 
64
  jQuery("#mec_booking'.$uniqueid.' #mec_event_ticket"+ticket_id).addClass(".mec-event-ticket"+limit);
@@ -90,6 +89,13 @@ function mec_get_tickets_availability'.$uniqueid.'(event_id, date)
90
  jQuery("#mec_booking'.$uniqueid.' #mec_event_ticket"+ticket_id+" .mec-event-ticket-available span").html(limit);
91
  }
92
  }
 
 
 
 
 
 
 
93
  },
94
  error: function(jqXHR, textStatus, errorThrown)
95
  {
58
 
59
  for(ticket_id in data.availability)
60
  {
 
61
  var limit = data.availability[ticket_id];
62
 
63
  jQuery("#mec_booking'.$uniqueid.' #mec_event_ticket"+ticket_id).addClass(".mec-event-ticket"+limit);
89
  jQuery("#mec_booking'.$uniqueid.' #mec_event_ticket"+ticket_id+" .mec-event-ticket-available span").html(limit);
90
  }
91
  }
92
+
93
+ for(ticket_id in data.prices)
94
+ {
95
+ var price_label = data.prices[ticket_id];
96
+
97
+ jQuery("#mec_booking'.$uniqueid.' #mec_event_ticket"+ticket_id+" .mec-event-ticket-price").html(price_label);
98
+ }
99
  },
100
  error: function(jqXHR, textStatus, errorThrown)
101
  {
app/modules/booking/steps/form.php CHANGED
@@ -5,6 +5,9 @@ defined('MECEXEC') or die();
5
  $event_id = $event->ID;
6
  $reg_fields = $this->main->get_reg_fields($event_id);
7
 
 
 
 
8
  $ticket_variations = $this->main->ticket_variations($event_id);
9
  $event_tickets = isset($event->data->tickets) ? $event->data->tickets : array();
10
 
@@ -18,7 +21,7 @@ $first_for_all = (!isset($this->settings['booking_first_for_all']) or (isset($th
18
  <?php $j = 0; foreach($tickets as $ticket_id=>$count): if(!$count) continue; $ticket = $event_tickets[$ticket_id]; for($i = 1; $i <= $count; $i++): $j++; ?>
19
  <li class="mec-book-ticket-container <?php echo (($j > 1 and $first_for_all) ? 'mec-util-hidden' : ''); ?>">
20
 
21
- <h4><span class="mec-ticket-name"><?php echo $ticket['name']; ?></span><span class="mec-ticket-price"><?php echo $ticket['price_label']; ?></span></h4>
22
 
23
  <div class="mec-book-field-name mec-reg-mandatory" data-ticket-id="<?php echo $j; ?>">
24
  <label for="mec_book_reg_field_name<?php echo $j; ?>"><?php _e('Name', 'modern-events-calendar-lite'); ?></label>
@@ -77,7 +80,7 @@ $first_for_all = (!isset($this->settings['booking_first_for_all']) or (isset($th
77
  </label>
78
 
79
  <?php /** Paragraph **/ elseif($reg_field['type'] == 'p'): ?>
80
- <p><?php _e($reg_field['content'], 'modern-events-calendar-lite'); ?></p>
81
 
82
  <?php endif; ?>
83
  </div>
@@ -101,7 +104,7 @@ $first_for_all = (!isset($this->settings['booking_first_for_all']) or (isset($th
101
  <label>
102
  <input type="hidden" name="book[first_for_all]" value="0" />
103
  <input type="checkbox" name="book[first_for_all]" value="1" checked="checked" id="mec_book_first_for_all<?php echo $uniqueid; ?>" onchange="mec_toggle_first_for_all<?php echo $uniqueid; ?>();" />
104
- <?php _e("Fill other attendees's information like the first form.", 'modern-events-calendar-lite'); ?>
105
  </label>
106
  </li>
107
  <?php endif; ?>
5
  $event_id = $event->ID;
6
  $reg_fields = $this->main->get_reg_fields($event_id);
7
 
8
+ $date_ex = explode(':', $date);
9
+ $occurrence = $date_ex[0];
10
+
11
  $ticket_variations = $this->main->ticket_variations($event_id);
12
  $event_tickets = isset($event->data->tickets) ? $event->data->tickets : array();
13
 
21
  <?php $j = 0; foreach($tickets as $ticket_id=>$count): if(!$count) continue; $ticket = $event_tickets[$ticket_id]; for($i = 1; $i <= $count; $i++): $j++; ?>
22
  <li class="mec-book-ticket-container <?php echo (($j > 1 and $first_for_all) ? 'mec-util-hidden' : ''); ?>">
23
 
24
+ <h4><span class="mec-ticket-name"><?php echo $ticket['name']; ?></span><span class="mec-ticket-price"><?php echo $this->book->get_ticket_price_label($ticket, current_time('Y-m-d')); ?></span></h4>
25
 
26
  <div class="mec-book-field-name mec-reg-mandatory" data-ticket-id="<?php echo $j; ?>">
27
  <label for="mec_book_reg_field_name<?php echo $j; ?>"><?php _e('Name', 'modern-events-calendar-lite'); ?></label>
80
  </label>
81
 
82
  <?php /** Paragraph **/ elseif($reg_field['type'] == 'p'): ?>
83
+ <p><?php _e(stripslashes($reg_field['content']), 'modern-events-calendar-lite'); ?></p>
84
 
85
  <?php endif; ?>
86
  </div>
104
  <label>
105
  <input type="hidden" name="book[first_for_all]" value="0" />
106
  <input type="checkbox" name="book[first_for_all]" value="1" checked="checked" id="mec_book_first_for_all<?php echo $uniqueid; ?>" onchange="mec_toggle_first_for_all<?php echo $uniqueid; ?>();" />
107
+ <?php _e("Fill other attendees information like the first form.", 'modern-events-calendar-lite'); ?>
108
  </label>
109
  </li>
110
  <?php endif; ?>
app/modules/booking/steps/tickets.php CHANGED
@@ -6,11 +6,13 @@ $event_id = $event->ID;
6
  $tickets = isset($event->data->tickets) ? $event->data->tickets : array();
7
  $dates = isset($event->dates) ? $event->dates : $event->date;
8
 
 
 
9
  $default_ticket_number = 0;
10
  if(count($tickets) == 1) $default_ticket_number = 1;
11
 
12
  $book = $this->getBook();
13
- $availability = $book->get_tickets_availability($event_id, $dates[0]['start']['date']);
14
 
15
  $date_format = (isset($settings['booking_date_format1']) and trim($settings['booking_date_format1'])) ? $settings['booking_date_format1'] : 'Y-m-d';
16
  ?>
@@ -30,7 +32,7 @@ $date_format = (isset($settings['booking_date_format1']) and trim($settings['boo
30
  <div class="mec-event-ticket mec-event-ticket<?php echo $ticket_limit; ?>" id="mec_event_ticket<?php echo $ticket_id; ?>">
31
  <div class="mec-ticket-available-spots <?php echo ($ticket_limit == '0' ? 'mec-util-hidden' : ''); ?>">
32
  <span class="mec-event-ticket-name"><?php echo (isset($ticket['name']) ? $ticket['name'] : ''); ?></span>
33
- <span class="mec-event-ticket-price"><?php echo (isset($ticket['price_label']) ? $ticket['price_label'] : ''); ?></span>
34
  <?php if(isset($ticket['description']) and trim($ticket['description'])): ?><p class="mec-event-ticket-description"><?php echo $ticket['description']; ?></p><?php endif; ?>
35
  <div>
36
  <input type="number" class="mec-book-ticket-limit" name="book[tickets][<?php echo $ticket_id; ?>]" placeholder="<?php esc_attr_e('Count', 'modern-events-calendar-lite'); ?>" value="<?php echo $default_ticket_number; ?>" min="0" max="<?php echo ($ticket_limit != '-1' ? $ticket_limit : ''); ?>" onchange="mec_check_tickets_availability<?php echo $uniqueid; ?>(<?php echo $ticket_id; ?>, this.value);" />
6
  $tickets = isset($event->data->tickets) ? $event->data->tickets : array();
7
  $dates = isset($event->dates) ? $event->dates : $event->date;
8
 
9
+ $occurrence = $dates[0]['start']['date'];
10
+
11
  $default_ticket_number = 0;
12
  if(count($tickets) == 1) $default_ticket_number = 1;
13
 
14
  $book = $this->getBook();
15
+ $availability = $book->get_tickets_availability($event_id, $occurrence);
16
 
17
  $date_format = (isset($settings['booking_date_format1']) and trim($settings['booking_date_format1'])) ? $settings['booking_date_format1'] : 'Y-m-d';
18
  ?>
32
  <div class="mec-event-ticket mec-event-ticket<?php echo $ticket_limit; ?>" id="mec_event_ticket<?php echo $ticket_id; ?>">
33
  <div class="mec-ticket-available-spots <?php echo ($ticket_limit == '0' ? 'mec-util-hidden' : ''); ?>">
34
  <span class="mec-event-ticket-name"><?php echo (isset($ticket['name']) ? $ticket['name'] : ''); ?></span>
35
+ <span class="mec-event-ticket-price"><?php echo (isset($ticket['price_label']) ? $book->get_ticket_price_label($ticket, current_time('Y-m-d')) : ''); ?></span>
36
  <?php if(isset($ticket['description']) and trim($ticket['description'])): ?><p class="mec-event-ticket-description"><?php echo $ticket['description']; ?></p><?php endif; ?>
37
  <div>
38
  <input type="number" class="mec-book-ticket-limit" name="book[tickets][<?php echo $ticket_id; ?>]" placeholder="<?php esc_attr_e('Count', 'modern-events-calendar-lite'); ?>" value="<?php echo $default_ticket_number; ?>" min="0" max="<?php echo ($ticket_limit != '-1' ? $ticket_limit : ''); ?>" onchange="mec_check_tickets_availability<?php echo $uniqueid; ?>(<?php echo $ticket_id; ?>, this.value);" />
app/skins/grid/render.php CHANGED
@@ -84,7 +84,7 @@ if($this->style == 'colorful')
84
  </ul>
85
  </div>
86
  <?php elseif($this->style == 'classic'): ?>
87
- <div class="mec-event-image"><a href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->thumbnails['medium']; ?></a></div>
88
  <div class="mec-event-content">
89
  <?php if(isset($settings['multiple_day_show_method']) && $settings['multiple_day_show_method'] == 'all_days') : ?>
90
  <div class="mec-event-date mec-bg-color"><?php echo date_i18n($this->date_format_classic_1, strtotime($event->date['start']['date'])); ?></div>
@@ -122,7 +122,7 @@ if($this->style == 'colorful')
122
  <?php endif; ?>
123
  <div class="mec-event-detail"><?php echo (isset($location['name']) ? $location['name'] : ''); ?></div>
124
  </div>
125
- <div class="mec-event-image"><a href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->thumbnails['medium']; ?></a></div>
126
  <div class="mec-event-content">
127
  <h4 class="mec-event-title"><a class="mec-color-hover" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $event_color; ?></h4>
128
  <p><?php echo (isset($location['address']) ? $location['address'] : ''); ?></p>
@@ -141,7 +141,7 @@ if($this->style == 'colorful')
141
  <?php elseif($this->style == 'novel'): ?>
142
  <div class="novel-grad-bg"></div>
143
  <div class="mec-event-content">
144
- <div class="mec-event-image"><a href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->thumbnails['thumblist']; ?></a></div>
145
  <div class="mec-event-detail-wrap">
146
  <h4 class="mec-event-title"><a class="mec-color-hover" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a></h4>
147
  <?php if(isset($settings['multiple_day_show_method']) && $settings['multiple_day_show_method'] == 'all_days') : ?>
84
  </ul>
85
  </div>
86
  <?php elseif($this->style == 'classic'): ?>
87
+ <div class="mec-event-image"><a data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->thumbnails['medium']; ?></a></div>
88
  <div class="mec-event-content">
89
  <?php if(isset($settings['multiple_day_show_method']) && $settings['multiple_day_show_method'] == 'all_days') : ?>
90
  <div class="mec-event-date mec-bg-color"><?php echo date_i18n($this->date_format_classic_1, strtotime($event->date['start']['date'])); ?></div>
122
  <?php endif; ?>
123
  <div class="mec-event-detail"><?php echo (isset($location['name']) ? $location['name'] : ''); ?></div>
124
  </div>
125
+ <div class="mec-event-image"><a data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->thumbnails['medium']; ?></a></div>
126
  <div class="mec-event-content">
127
  <h4 class="mec-event-title"><a class="mec-color-hover" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $event_color; ?></h4>
128
  <p><?php echo (isset($location['address']) ? $location['address'] : ''); ?></p>
141
  <?php elseif($this->style == 'novel'): ?>
142
  <div class="novel-grad-bg"></div>
143
  <div class="mec-event-content">
144
+ <div class="mec-event-image"><a data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->thumbnails['thumblist']; ?></a></div>
145
  <div class="mec-event-detail-wrap">
146
  <h4 class="mec-event-title"><a class="mec-color-hover" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a></h4>
147
  <?php if(isset($settings['multiple_day_show_method']) && $settings['multiple_day_show_method'] == 'all_days') : ?>
app/skins/list/render.php CHANGED
@@ -59,7 +59,7 @@ $event_colorskin = (isset($styling['mec_colorskin']) || isset($styling['color'])
59
  <a class="mec-booking-button" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo (is_array($event->data->tickets) and count($event->data->tickets)) ? $this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite')) : $this->main->m('view_detail', __('View Detail', 'modern-events-calendar-lite')); ?></a>
60
  </div>
61
  <?php elseif($this->style == 'classic'): ?>
62
- <div class="mec-event-image"><a href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->thumbnails['thumbnail']; ?></a></div>
63
  <?php if(isset($settings['multiple_day_show_method']) && $settings['multiple_day_show_method'] == 'all_days') : ?>
64
  <div class="mec-event-date mec-color"><i class="mec-sl-calendar"></i> <?php echo date_i18n($this->date_format_classic_1, strtotime($event->date['start']['date'])); ?></div>
65
  <?php else: ?>
@@ -89,7 +89,7 @@ $event_colorskin = (isset($styling['mec_colorskin']) || isset($styling['color'])
89
  ?>
90
  <div class="mec-topsec">
91
  <div class="col-md-3 mec-event-image-wrap mec-col-table-c">
92
- <div class="mec-event-image"><a href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->thumbnails['thumblist']; ?></a></div>
93
  </div>
94
  <div class="col-md-6 mec-col-table-c mec-event-content-wrap">
95
  <div class="mec-event-content">
@@ -144,7 +144,12 @@ $event_colorskin = (isset($styling['mec_colorskin']) || isset($styling['color'])
144
  <div class="mec-events-toggle">
145
  <!-- toggle item start -->
146
  <div class="mec-toggle-item">
147
- <div class="mec-toggle-item-inner" id="" tabindex="0" aria-controls="" aria-expanded="false">
 
 
 
 
 
148
  <div class="mec-toggle-item-col">
149
  <?php if(isset($settings['multiple_day_show_method']) && $settings['multiple_day_show_method'] == 'all_days') : ?>
150
  <div class="mec-event-date"><?php echo date_i18n($this->date_format_acc_1, strtotime($event->date['start']['date'])); ?></div>
59
  <a class="mec-booking-button" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo (is_array($event->data->tickets) and count($event->data->tickets)) ? $this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite')) : $this->main->m('view_detail', __('View Detail', 'modern-events-calendar-lite')); ?></a>
60
  </div>
61
  <?php elseif($this->style == 'classic'): ?>
62
+ <div class="mec-event-image"><a data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->thumbnails['thumbnail']; ?></a></div>
63
  <?php if(isset($settings['multiple_day_show_method']) && $settings['multiple_day_show_method'] == 'all_days') : ?>
64
  <div class="mec-event-date mec-color"><i class="mec-sl-calendar"></i> <?php echo date_i18n($this->date_format_classic_1, strtotime($event->date['start']['date'])); ?></div>
65
  <?php else: ?>
89
  ?>
90
  <div class="mec-topsec">
91
  <div class="col-md-3 mec-event-image-wrap mec-col-table-c">
92
+ <div class="mec-event-image"><a data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->thumbnails['thumblist']; ?></a></div>
93
  </div>
94
  <div class="col-md-6 mec-col-table-c mec-event-content-wrap">
95
  <div class="mec-event-content">
144
  <div class="mec-events-toggle">
145
  <!-- toggle item start -->
146
  <div class="mec-toggle-item">
147
+ <div class="mec-toggle-item-inner<?php if ( $this->toggle_month_divider == '1' ) echo ' mec-toogle-inner-month-divider'; ?>" id="" tabindex="0" aria-controls="" aria-expanded="false">
148
+ <?php if ( $this->toggle_month_divider == '1' ) : ?>
149
+ <div class="mec-toggle-month-inner-image">
150
+ <a href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->thumbnails['thumbnail']; ?></a>
151
+ </div>
152
+ <?php endif; ?>
153
  <div class="mec-toggle-item-col">
154
  <?php if(isset($settings['multiple_day_show_method']) && $settings['multiple_day_show_method'] == 'all_days') : ?>
155
  <div class="mec-event-date"><?php echo date_i18n($this->date_format_acc_1, strtotime($event->date['start']['date'])); ?></div>
app/skins/masonry/render.php CHANGED
@@ -39,9 +39,9 @@ $settings = $this->main->get_settings();
39
 
40
  <article data-style="<?php echo $label_style; ?>" class="mec-event-article mec-clear <?php echo $this->get_event_classes($event); ?>">
41
  <?php if(isset($event->data->featured_image) and $this->masonry_like_grid ): ?>
42
- <div class="mec-masonry-img" ><img src="<?php echo $event->data->featured_image['thumblist']; ?>"></div>
43
  <?php elseif( isset($event->data->featured_image) and isset($event->data->featured_image['full']) and trim($event->data->featured_image['full'])): ?>
44
- <div class="mec-masonry-img" ><img src="<?php echo $event->data->featured_image['full']; ?>"></div>
45
  <?php endif; ?>
46
 
47
  <div class="mec-masonry-content mec-event-grid-modern">
39
 
40
  <article data-style="<?php echo $label_style; ?>" class="mec-event-article mec-clear <?php echo $this->get_event_classes($event); ?>">
41
  <?php if(isset($event->data->featured_image) and $this->masonry_like_grid ): ?>
42
+ <div class="mec-masonry-img" ><?php echo get_the_post_thumbnail($event->data->ID , 'thumblist'); ?></div>
43
  <?php elseif( isset($event->data->featured_image) and isset($event->data->featured_image['full']) and trim($event->data->featured_image['full'])): ?>
44
+ <div class="mec-masonry-img" ><?php echo get_the_post_thumbnail($event->data->ID , 'full'); ?></div>
45
  <?php endif; ?>
46
 
47
  <div class="mec-masonry-content mec-event-grid-modern">
app/skins/masonry/tpl.php CHANGED
@@ -36,8 +36,10 @@ jQuery(document).ready(function()
36
 
37
  // Include javascript code into the footer
38
  $this->factory->params('footer', $javascript);
 
 
39
  ?>
40
- <div class="mec-wrap mec-skin-masonry-container <?php echo $this->html_class; ?>" id="mec_skin_<?php echo $this->id; ?>">
41
  <?php if(trim($this->filter_by)) echo $this->filter_by(); ?>
42
 
43
  <?php if($this->found): ?>
@@ -45,11 +47,11 @@ $this->factory->params('footer', $javascript);
45
  <?php echo $items_html; ?>
46
  </div>
47
  <div class="mec-skin-masonry-no-events-container mec-util-hidden" id="mec_skin_no_events_<?php echo $this->id; ?>">
48
- <?php _e('No event found!', 'moder-events-calendar-lite'); ?>
49
  </div>
50
  <?php else: ?>
51
  <div class="mec-skin-masonry-events-container" id="mec_skin_events_<?php echo $this->id; ?>">
52
- <?php _e('No event found!', 'moder-events-calendar-lite'); ?>
53
  </div>
54
  <?php endif; ?>
55
 
36
 
37
  // Include javascript code into the footer
38
  $this->factory->params('footer', $javascript);
39
+ $styling = $this->main->get_styling();
40
+ $event_colorskin = (isset($styling['mec_colorskin'] ) || isset($styling['color'])) ? ' colorskin-custom ' : '';
41
  ?>
42
+ <div class="mec-wrap mec-skin-masonry-container<?php echo $event_colorskin; ?><?php echo $this->html_class; ?>" id="mec_skin_<?php echo $this->id; ?>">
43
  <?php if(trim($this->filter_by)) echo $this->filter_by(); ?>
44
 
45
  <?php if($this->found): ?>
47
  <?php echo $items_html; ?>
48
  </div>
49
  <div class="mec-skin-masonry-no-events-container mec-util-hidden" id="mec_skin_no_events_<?php echo $this->id; ?>">
50
+ <?php _e('No event found!', 'modern-events-calendar-lite'); ?>
51
  </div>
52
  <?php else: ?>
53
  <div class="mec-skin-masonry-events-container" id="mec_skin_events_<?php echo $this->id; ?>">
54
+ <?php _e('No event found!', 'modern-events-calendar-lite'); ?>
55
  </div>
56
  <?php endif; ?>
57
 
app/skins/single/default.php CHANGED
@@ -10,6 +10,7 @@ defined('MECEXEC') or die();
10
  <h1 class="mec-single-title"><?php the_title(); ?></h1>
11
  <div class="mec-single-event-description mec-events-content"><?php the_content(); ?></div>
12
  </div>
 
13
 
14
  <!-- Export Module -->
15
  <?php echo $this->main->module('export.details', array('event'=>$event)); ?>
@@ -43,7 +44,7 @@ defined('MECEXEC') or die();
43
  <?php if(!is_active_sidebar('mec-single-sidebar')): ?>
44
  <div class="col-md-4">
45
 
46
- <div class="mec-event-meta mec-color-before mec-frontbox">
47
  <?php
48
  // Event Date and Time
49
  if(isset($event->data->meta['mec_date']['start']) and !empty($event->data->meta['mec_date']['start']))
@@ -213,9 +214,11 @@ defined('MECEXEC') or die();
213
 
214
  <!-- Register Booking Button -->
215
  <?php if($this->main->can_show_booking_module($event)): ?>
216
- <?php $data_lity = ''; if( isset($settings['single_booking_style']) and $settings['single_booking_style'] == 'modal' ) $data_lity = 'data-lity'; ?>
217
- <a class="mec-booking-button mec-bg-color" href="#mec-events-meta-group-booking-<?php echo $this->uniqueid; ?>" <?php echo $data_lity; ?>><?php echo esc_html($this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite'))); ?></a>
218
- <?php endif ?>
 
 
219
 
220
  </div>
221
 
@@ -246,7 +249,7 @@ defined('MECEXEC') or die();
246
  </div>
247
  <?php else: ?>
248
  <div class="col-md-4">
249
- <div class="mec-event-meta mec-color-before mec-frontbox">
250
  <?php
251
  $single = new MEC_skin_single();
252
 
@@ -420,7 +423,9 @@ defined('MECEXEC') or die();
420
  <?php if($this->main->can_show_booking_module($event) and $single->found_value('register_btn', $settings) == 'on'): ?>
421
  <?php $data_lity = ''; if( isset($settings['single_booking_style']) and $settings['single_booking_style'] == 'modal' ) $data_lity = 'data-lity'; ?>
422
  <a class="mec-booking-button mec-bg-color" href="#mec-events-meta-group-booking-<?php echo $this->uniqueid; ?>" <?php echo $data_lity; ?>><?php echo esc_html($this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite'))); ?></a>
423
- <?php endif ?>
 
 
424
  </div>
425
 
426
  <!-- Speakers Module -->
10
  <h1 class="mec-single-title"><?php the_title(); ?></h1>
11
  <div class="mec-single-event-description mec-events-content"><?php the_content(); ?></div>
12
  </div>
13
+ <div class="mec-event-info-mobile"></div>
14
 
15
  <!-- Export Module -->
16
  <?php echo $this->main->module('export.details', array('event'=>$event)); ?>
44
  <?php if(!is_active_sidebar('mec-single-sidebar')): ?>
45
  <div class="col-md-4">
46
 
47
+ <div class="mec-event-info-desktop mec-event-meta mec-color-before mec-frontbox">
48
  <?php
49
  // Event Date and Time
50
  if(isset($event->data->meta['mec_date']['start']) and !empty($event->data->meta['mec_date']['start']))
214
 
215
  <!-- Register Booking Button -->
216
  <?php if($this->main->can_show_booking_module($event)): ?>
217
+ <?php $data_lity = ''; if( isset($settings['single_booking_style']) and $settings['single_booking_style'] == 'modal' ) $data_lity = 'data-lity'; ?>
218
+ <a class="mec-booking-button mec-bg-color" href="#mec-events-meta-group-booking-<?php echo $this->uniqueid; ?>" <?php echo $data_lity; ?>><?php echo esc_html($this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite'))); ?></a>
219
+ <?php elseif(isset($event->data->meta['mec_more_info']) and trim($event->data->meta['mec_more_info']) and $event->data->meta['mec_more_info'] != 'http://'): ?>
220
+ <a class="mec-booking-button mec-bg-color" href="<?php echo $event->data->meta['mec_more_info']; ?>"><?php echo esc_html($this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite'))); ?></a>
221
+ <?php endif; ?>
222
 
223
  </div>
224
 
249
  </div>
250
  <?php else: ?>
251
  <div class="col-md-4">
252
+ <div class="mec-event-info-desktop mec-event-meta mec-color-before mec-frontbox">
253
  <?php
254
  $single = new MEC_skin_single();
255
 
423
  <?php if($this->main->can_show_booking_module($event) and $single->found_value('register_btn', $settings) == 'on'): ?>
424
  <?php $data_lity = ''; if( isset($settings['single_booking_style']) and $settings['single_booking_style'] == 'modal' ) $data_lity = 'data-lity'; ?>
425
  <a class="mec-booking-button mec-bg-color" href="#mec-events-meta-group-booking-<?php echo $this->uniqueid; ?>" <?php echo $data_lity; ?>><?php echo esc_html($this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite'))); ?></a>
426
+ <?php elseif($single->found_value('register_btn', $settings) == 'on' and isset($event->data->meta['mec_more_info']) and trim($event->data->meta['mec_more_info']) and $event->data->meta['mec_more_info'] != 'http://'): ?>
427
+ <a class="mec-booking-button mec-bg-color" href="<?php echo $event->data->meta['mec_more_info']; ?>"><?php echo esc_html($this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite'))); ?></a>
428
+ <?php endif; ?>
429
  </div>
430
 
431
  <!-- Speakers Module -->
app/skins/single/m1.php CHANGED
@@ -124,7 +124,9 @@ defined('MECEXEC') or die();
124
  <!-- Register Booking Button -->
125
  <?php if($this->main->can_show_booking_module($event)): ?>
126
  <a class="mec-booking-button mec-bg-color" href="#mec-events-meta-group-booking-<?php echo $this->uniqueid; ?>"><?php echo esc_html($this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite'))); ?></a>
127
- <?php endif ?>
 
 
128
  </div>
129
 
130
  <!-- Weather Module -->
124
  <!-- Register Booking Button -->
125
  <?php if($this->main->can_show_booking_module($event)): ?>
126
  <a class="mec-booking-button mec-bg-color" href="#mec-events-meta-group-booking-<?php echo $this->uniqueid; ?>"><?php echo esc_html($this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite'))); ?></a>
127
+ <?php elseif(isset($event->data->meta['mec_more_info']) and trim($event->data->meta['mec_more_info']) and $event->data->meta['mec_more_info'] != 'http://'): ?>
128
+ <a class="mec-booking-button mec-bg-color" href="<?php echo $event->data->meta['mec_more_info']; ?>"><?php echo esc_html($this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite'))); ?></a>
129
+ <?php endif; ?>
130
  </div>
131
 
132
  <!-- Weather Module -->
app/skins/single/m2.php CHANGED
@@ -56,7 +56,9 @@ defined('MECEXEC') or die();
56
  <!-- Register Booking Button -->
57
  <?php if($this->main->can_show_booking_module($event)): ?>
58
  <a class="mec-booking-button mec-bg-color" href="#mec-events-meta-group-booking-<?php echo $this->uniqueid; ?>"><?php echo esc_html($this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite'))); ?></a>
59
- <?php endif ?>
 
 
60
  </div>
61
 
62
  <!-- Weather Module -->
@@ -109,7 +111,8 @@ defined('MECEXEC') or die();
109
  </div>
110
  <?php
111
  }
112
- ?>
 
113
  <?php
114
  // More Info
115
  if(isset($event->data->meta['mec_more_info']) and trim($event->data->meta['mec_more_info']) and $event->data->meta['mec_more_info'] != 'http://')
@@ -125,7 +128,10 @@ defined('MECEXEC') or die();
125
  ?>
126
 
127
  </div>
128
-
 
 
 
129
  <!-- Attendees List Module -->
130
  <?php echo $this->main->module('attendees-list.details', array('event'=>$event)); ?>
131
 
@@ -146,7 +152,7 @@ defined('MECEXEC') or die();
146
  <div class="mec-events-meta-group mec-events-meta-group-gmap">
147
  <?php echo $this->main->module('googlemap.details', array('event'=>$this->events, 'auto_init'=>false, 'uniqueid'=>$this->uniqueid)); ?>
148
  </div>
149
-
150
  <!-- Export Module -->
151
  <?php echo $this->main->module('export.details', array('event'=>$event)); ?>
152
 
56
  <!-- Register Booking Button -->
57
  <?php if($this->main->can_show_booking_module($event)): ?>
58
  <a class="mec-booking-button mec-bg-color" href="#mec-events-meta-group-booking-<?php echo $this->uniqueid; ?>"><?php echo esc_html($this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite'))); ?></a>
59
+ <?php elseif(isset($event->data->meta['mec_more_info']) and trim($event->data->meta['mec_more_info']) and $event->data->meta['mec_more_info'] != 'http://'): ?>
60
+ <a class="mec-booking-button mec-bg-color" href="<?php echo $event->data->meta['mec_more_info']; ?>"><?php echo esc_html($this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite'))); ?></a>
61
+ <?php endif; ?>
62
  </div>
63
 
64
  <!-- Weather Module -->
111
  </div>
112
  <?php
113
  }
114
+ ?>
115
+
116
  <?php
117
  // More Info
118
  if(isset($event->data->meta['mec_more_info']) and trim($event->data->meta['mec_more_info']) and $event->data->meta['mec_more_info'] != 'http://')
128
  ?>
129
 
130
  </div>
131
+ <div class="mec-color-before mec-frontbox">
132
+ <!-- Speaker List Module -->
133
+ <?php echo $this->main->module('speakers.details', array('event'=>$event)); ?>
134
+ </div>
135
  <!-- Attendees List Module -->
136
  <?php echo $this->main->module('attendees-list.details', array('event'=>$event)); ?>
137
 
152
  <div class="mec-events-meta-group mec-events-meta-group-gmap">
153
  <?php echo $this->main->module('googlemap.details', array('event'=>$this->events, 'auto_init'=>false, 'uniqueid'=>$this->uniqueid)); ?>
154
  </div>
155
+
156
  <!-- Export Module -->
157
  <?php echo $this->main->module('export.details', array('event'=>$event)); ?>
158
 
app/skins/single/modern.php CHANGED
@@ -56,7 +56,9 @@ defined('MECEXEC') or die();
56
  <?php if($this->main->can_show_booking_module($event)): ?>
57
  <?php $data_lity = ''; if( isset($settings['single_booking_style']) and $settings['single_booking_style'] == 'modal' ) $data_lity = 'data-lity'; ?>
58
  <a class="mec-booking-button mec-bg-color" href="#mec-events-meta-group-booking-<?php echo $this->uniqueid; ?>" <?php echo $data_lity; ?>><?php echo esc_html($this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite'))); ?></a>
59
- <?php endif ?>
 
 
60
  </div>
61
 
62
  <!-- Speakers Module -->
56
  <?php if($this->main->can_show_booking_module($event)): ?>
57
  <?php $data_lity = ''; if( isset($settings['single_booking_style']) and $settings['single_booking_style'] == 'modal' ) $data_lity = 'data-lity'; ?>
58
  <a class="mec-booking-button mec-bg-color" href="#mec-events-meta-group-booking-<?php echo $this->uniqueid; ?>" <?php echo $data_lity; ?>><?php echo esc_html($this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite'))); ?></a>
59
+ <?php elseif(isset($event->data->meta['mec_more_info']) and trim($event->data->meta['mec_more_info']) and $event->data->meta['mec_more_info'] != 'http://'): ?>
60
+ <a class="mec-booking-button mec-bg-color" href="<?php echo $event->data->meta['mec_more_info']; ?>"><?php echo esc_html($this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite'))); ?></a>
61
+ <?php endif; ?>
62
  </div>
63
 
64
  <!-- Speakers Module -->
app/skins/single/tpl.php CHANGED
@@ -7,7 +7,7 @@ $event = $this->events[0];
7
  $event_colorskin = (isset($styling['mec_colorskin']) || isset($styling['color'])) ? 'colorskin-custom' : '';
8
  $settings = $this->main->get_settings();
9
 
10
- $occurrence = isset($_GET['occurrence']) ? sanitize_text_field($_GET['occurrence']) : '';
11
  $occurrence_end_date = trim($occurrence) ? $this->main->get_end_date_by_occurrence($event->data->ID, (isset($event->date['start']['date']) ? $event->date['start']['date'] : $occurrence)) : '';
12
 
13
  if(isset($this->layout) and trim($this->layout)) include MEC::import('app.skins.single.'.$this->layout, true, true);
7
  $event_colorskin = (isset($styling['mec_colorskin']) || isset($styling['color'])) ? 'colorskin-custom' : '';
8
  $settings = $this->main->get_settings();
9
 
10
+ $occurrence = (isset($event->date['start']['date']) ? $event->date['start']['date'] : (isset($_GET['occurrence']) ? sanitize_text_field($_GET['occurrence']) : ''));
11
  $occurrence_end_date = trim($occurrence) ? $this->main->get_end_date_by_occurrence($event->data->ID, (isset($event->date['start']['date']) ? $event->date['start']['date'] : $occurrence)) : '';
12
 
13
  if(isset($this->layout) and trim($this->layout)) include MEC::import('app.skins.single.'.$this->layout, true, true);
assets/css/backend.css CHANGED
@@ -282,7 +282,7 @@
282
  .w-box-child p{ color:#666; margin-top: 10px;}
283
  .w-box.support {background: #fff url(../img/support.png) no-repeat top right;}
284
  .w-box.support .w-box-head {width: 50%; color: #ff876c;}
285
- .w-box-content pre {text-align: left; white-space: pre-line; font-size: 13px;}
286
  .w-box.change-log .w-box-head {color: #01c6d9;}
287
 
288
  #webnus-dashboard .button { border: 0; background: transparent; box-shadow: none; color: #e74c3c; font-weight: 700; }
282
  .w-box-child p{ color:#666; margin-top: 10px;}
283
  .w-box.support {background: #fff url(../img/support.png) no-repeat top right;}
284
  .w-box.support .w-box-head {width: 50%; color: #ff876c;}
285
+ .w-box-content pre { text-align: left; background: #f5f5f5; font-size: 13px; padding: 20px 25px; height: 480px; overflow-y: scroll; }
286
  .w-box.change-log .w-box-head {color: #01c6d9;}
287
 
288
  #webnus-dashboard .button { border: 0; background: transparent; box-shadow: none; color: #e74c3c; font-weight: 700; }
assets/css/backend.min.css CHANGED
@@ -1,4 +1,4 @@
1
- #mec_location_thumbnail_img img,#mec_organizer_thumbnail_img img,#mec_thumbnail_img img{max-width:250px}.taxonomy-mec_label .column-id,.taxonomy-mec_location .column-id,.taxonomy-mec_organizer .column-id,.taxonomy-mec_speaker .column-id{width:40px}.taxonomy-mec_label .column-primary,.taxonomy-mec_location .column-primary,.taxonomy-mec_organizer .column-primary,.taxonomy-mec_speaker .column-primary{width:250px}.mec-color{margin:10px;width:14px;height:14px;display:inline-block;margin-right:6px;border-radius:20px 20px 20px 20px;vertical-align:middle}.mec-event-color-container,.mec-event-title-container{display:inline-block}.mec-available-color-row{margin-top:15px}.mec-available-color-row .mec-color{cursor:pointer}.mec-widget-container a{text-decoration:none}.mec-widget-container label{padding-right:15px}.mec-util-hidden{display:none}.button.mec-util-hidden{display:none}.wns-be-container{font-family:Oxygen,'Open Sans',sans-serif;max-width:100%;background-color:#f6f6f6;border:1px solid #c1cad2;box-shadow:0 1px 1px rgba(0,0,0,.04);margin-top:5px;margin-right:15px;overflow:hidden}.wns-be-sidebar{width:260px;float:left;position:relative;padding-top:79px}.wns-be-sidebar:before{content:"";width:261px;height:78px;display:block;position:absolute;left:0;top:0;background:#fff url(../img/webnus-logo.png) no-repeat center;border-bottom:1px solid #dedede;background-size:220px;z-index:997}.wns-be-sidebar ul.wns-be-group-menu,.wns-be-sidebar ul.wns-be-group-menu li{list-style:none;margin:0}.wns-be-sidebar .wns-be-group-menu li a{display:block;position:relative;outline:0;padding:13px 4px 13px 20px;background:#e0e0e0;background:0 0;border:none;color:#3f454a;font-size:13px;font-weight:600;text-decoration:none;-webkit-transition:none;transition:none}.wns-be-sidebar .wns-be-group-menu li a:hover{background:#fff;color:#008aff;opacity:1}.wns-be-sidebar .wns-be-group-menu>li.active>a,.wns-be-sidebar .wns-be-group-menu>li.active>a:hover{background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff}.wns-be-sidebar .wns-be-group-menu>li.active>a{box-shadow:0 2px 12px -5px #008aff}.wns-be-sidebar .wns-be-group-menu li a:first-child{border-top:none}.wns-be-main{background:#fff;margin-left:260px;border-left:1px solid #dedede;padding-bottom:84px;box-shadow:inset 0 1px 0 #fff;min-height:440px;position:relative}.wns-be-main .wns-saved-settings{margin:0;border-bottom:1px solid #dedede;background:#dff0d8;color:#468847;padding:8px 35px 8px 14px;text-shadow:0 1px 0 rgba(255,255,255,.6)}.wns-be-container .dpr-btn{display:inline-block;font-size:13px;padding:0 16px 1px;height:36px;margin-right:3px;line-height:35px;color:#555;border:1px solid #ccc;background:#f7f7f7;text-decoration:none;transition:.24s all ease;-webkit-transition:.24s all ease}.wns-be-container .dpr-btn:hover{background:#fcfcfc;border-color:#999;color:#303030}.wns-be-container .dpr-btn.dpr-save-btn{color:#fff;font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s}.wns-be-container .dpr-btn.dpr-save-btn:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5)}.wns-be-container .wns-be-group-tab h2,.wns-be-container .wns-be-group-tab h4{color:#000;margin-bottom:25px;padding:15px;background:#f5f5f5;font-size:21px;line-height:23px;letter-spacing:.4px;font-weight:700;position:relative}.wns-be-container .wns-be-group-tab h2{margin-top:10px}.wns-be-container .wns-be-group-tab h2:before,.wns-be-container .wns-be-group-tab h4:before{content:"";width:4px;height:16px;margin-right:5px;background-color:#008aff;display:block;position:absolute;left:0;top:18px}.wns-be-container .wns-be-group-tab h4:before{width:2px;top:16px}.wns-be-container .wns-be-group-tab h4{font-size:16px;font-weight:600;background:#f8f8f8;border:none;padding:12px 15px 12px 15px}.wns-be-container .wns-be-group-tab p{font-size:13px;color:#888}.wns-be-sidebar .wns-be-group-tab-link-a span{display:block}.wns-be-sidebar .wns-be-group-tab-link-a span.wns-be-group-menu-title{padding-left:24px}.wns-be-sidebar li.active ul.subsection{padding-top:8px;padding-bottom:12px;background:#fff;border-bottom:1px solid #dedede;margin:0}.wns-be-sidebar li .subsection a{background:#fff;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 46px}.wns-be-sidebar li .subsection a:hover{background:#f6f6f6;color:#222}.wns-be-sidebar .wns-be-group-menu li .subsection li.active a{color:#008aff}.wns-be-sidebar .wns-be-group-menu li .subsection li.active a:after,.wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;right:-1px;top:10px}.wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{border-right-color:#c5c5c5;right:0}.wns-be-sidebar li a i{color:#a0abb5;vertical-align:middle;font-size:16px;position:absolute;margin-top:3px}.wns-be-sidebar .wns-be-group-menu li.active>a i{color:#fff}.wns-be-sidebar .has-sub span.extra-icon{display:inline-block;float:right;padding:6px 7px 4px;margin-left:4px;margin-right:10px;font-family:sans-serif;font-size:9px;font-weight:600;line-height:9px;border-radius:10px;-moz-border-radius:10px;-webkit-border-radius:10px;border:0 solid transparent}.wns-be-sidebar .has-sub span.extra-icon i{margin-left:-3px;margin-top:2px;color:#bac6d0;font-size:10px}.wns-be-sidebar .wns-be-group-tab-link-a span.extra-icon i{right:10px;font-size:10px;margin-top:6px}.wns-be-sidebar .wns-be-group-menu li.active>a span.extra-icon i{margin-top:1px}.wns-be-container #wns-be-footer{border-top:1px solid #dedede;z-index:999;padding:25px 20px 20px;background:#fafafa!important;position:absolute;bottom:0;right:0;left:0;height:44px;text-align:right}.wns-be-container #wns-be-content{padding:5px 40px 40px}.wns-be-container #wns-be-infobar{background:#fff;border-bottom:1px solid #dedede;padding:20px;text-align:right;box-shadow:inset 0 1px 0 #fcfcfc;height:79px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.wns-be-container .notice-yellow{margin:0;border-bottom:1px solid #dedede;background-color:#fcf8e3;color:#c09853;padding:8px 35px 8px 14px;text-shadow:0 1px 0 rgba(255,255,255,.5)}.wns-be-container .notice-red,.wns-be-container .wns-be-field-errors{margin:0;border-bottom:1px solid #dedede;background-color:#f2dede;color:#b94a48;padding:8px 35px 8px 14px;text-shadow:0 1px 0 rgba(255,255,255,.5)}body.post-type-mec-events th.column-primary{width:35%}body.post-type-mec-events th.column-start_date{width:100px}body.post-type-mec-events th.column-end_date{width:100px}body.post-type-mec-events th.column-repeat{width:75px}body.post-type-mec-events th.column-author{width:150px}body.post-type-mec-books th.column-primary{width:20%}body.post-type-mec-books th.column-event{width:170px}body.post-type-mec-books th.column-bdate{width:120px}body.post-type-mec-books th.column-confirmation{width:120px}body.post-type-mec-books th.column-verification{width:120px}body.post-type-mec-books th.column-author{width:150px}.mec-meta-box-labels-container .mec-form-row{height:100px;overflow:auto}.mec-tooltip{display:inline;position:relative;margin-right:10px;cursor:help;bottom:5px;left:3px}.mec-tooltip:last-child{margin-right:0}.mec-tooltip:hover:after{background:#313130;border-radius:5px;bottom:24px;color:#fff;content:attr(title);left:-75px;padding:10px;position:absolute;z-index:98;width:240px}.mec-tooltip:hover:before{border:solid;border-color:#313130 transparent;border-width:6px 6px 0;bottom:18px;content:"";left:30%;position:absolute;z-index:99}.mec-tooltip .dashicons-before:before{font-size:24px;color:#008aff;line-height:37px}.mec-form-row .bootstrap_unvalid{display:block;border:2px solid red;position:relative;display:inline-block;border-bottom:1px dotted #000}.mec-tooltiptext{visibility:hidden;width:120px;background-color:red;color:#fff;text-align:center;border-radius:6px;padding:5px 0;position:absolute;z-index:1}.ui-datepicker{background-color:#fff;border:1px solid #66afe9;border-radius:4px;box-shadow:0 0 8px rgba(102,175,233,.6);display:none;margin-top:4px;padding:10px;width:240px}.ui-datepicker a,.ui-datepicker a:hover{text-decoration:none;cursor:pointer}.ui-datepicker a:hover,.ui-datepicker td:hover a{color:#2c6396;-webkit-transition:color .1s ease-in-out;-moz-transition:color .1s ease-in-out;-o-transition:color .1s ease-in-out;transition:color .1s ease-in-out}.ui-datepicker .ui-datepicker-header{margin-bottom:4px;text-align:center}.ui-datepicker .ui-datepicker-title{font-weight:700}.ui-datepicker .ui-datepicker-next,.ui-datepicker .ui-datepicker-prev{cursor:default;font-family:dashicons;-webkit-font-smoothing:antialiased;font-style:normal;font-weight:400;height:20px;line-height:1.4;margin-top:2px;width:20px}.ui-datepicker .ui-datepicker-prev{float:left;text-align:left}.ui-datepicker .ui-datepicker-next{float:right;text-align:center}.ui-datepicker .ui-datepicker-prev:before{content:"\f341"}.ui-datepicker .ui-datepicker-next:before{content:"\f345"}.ui-datepicker .ui-icon{display:none}.ui-datepicker .ui-datepicker-calendar{table-layout:fixed;width:100%}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker .ui-datepicker-calendar th{text-align:center;padding:4px 0}.ui-datepicker .ui-datepicker-calendar td{border-radius:4px;-webkit-transition:background-color .1s ease-in-out,color .1s ease-in-out;-moz-transition:background-color .1s ease-in-out,color .1s ease-in-out;-o-transition:background-color .1s ease-in-out,color .1s ease-in-out;transition:background-color .1s ease-in-out,color .1s ease-in-out}.ui-datepicker .ui-datepicker-calendar td:hover{background-color:#eee;cursor:pointer}.ui-datepicker .ui-datepicker-calendar td a{text-decoration:none}.ui-datepicker .ui-datepicker-current-day{background-color:#4289cc}.ui-datepicker .ui-datepicker-current-day a{color:#fff}.ui-datepicker .ui-datepicker-calendar .ui-datepicker-unselectable:hover{background-color:#fff;cursor:default}.mec-col-1,.mec-col-10,.mec-col-11,.mec-col-12,.mec-col-2,.mec-col-3,.mec-col-4,.mec-col-5,.mec-col-6,.mec-col-7,.mec-col-8,.mec-col-9{position:relative;min-height:1px;padding:0;margin:0 1% 0 0}@media (min-width:783px){.mec-col-1,.mec-col-10,.mec-col-11,.mec-col-12,.mec-col-2,.mec-col-3,.mec-col-4,.mec-col-5,.mec-col-6,.mec-col-7,.mec-col-8,.mec-col-9{float:left}.mec-col-12{width:99%}.mec-col-11{width:90.66666667%}.mec-col-10{width:82.33333333%}.mec-col-9{width:74%}.mec-col-8{width:65.66666667%}.mec-col-7{width:57.33333333%}.mec-col-6{width:49%}.mec-col-5{width:40.66666667%}.mec-col-4{width:32.33333333%}.mec-col-3{width:24%}.mec-col-2{width:15.66666667%}.mec-col-1{width:7.33333333%}}#mec_reg_form_fields{background:#eee;padding:20px}#mec_reg_form_fields li{margin:4px;border-radius:2px;padding:20px 34px 24px;background:#fff;position:relative;transition:all .3s ease}#mec_reg_form_fields li ul{padding-top:15px;padding-bottom:15px;margin:1px}#mec_reg_form_fields li ul li{padding:7px 30px 7px 46px}#mec_reg_form_fields span.mec_reg_field_type{font-size:11px;font-weight:600;color:#8a8a8a;text-transform:uppercase;letter-spacing:2px}#mec_reg_form_fields span.mec_reg_field_option_sort,#mec_reg_form_fields span.mec_reg_field_remove,#mec_reg_form_fields span.mec_reg_field_sort{font-size:0;color:#fff}#mec_reg_form_fields span.mec_reg_field_remove{position:absolute;right:0;top:0}#mec_reg_form_fields span.mec_reg_field_option_sort:before,#mec_reg_form_fields span.mec_reg_field_remove:before,#mec_reg_form_fields span.mec_reg_field_sort:before{position:absolute;left:10px;top:20px;width:80px;height:20px;display:block;cursor:move;font-family:simple-line-icons;content:"\e023";font-size:18px;color:#888}#mec_reg_form_fields span.mec_reg_field_remove:before{content:"\e082";width:20px;height:20px;left:auto;right:15px;color:#f96666;cursor:pointer}#mec_reg_form_fields span.mec_reg_field_option_sort:before{font-size:13px;left:2px;top:23px;width:14px;height:14px}#mec_reg_form_fields li ul li span.mec_reg_field_remove{right:auto;left:60px;top:2px}#mec_reg_form_fields p.mec_reg_field_options{margin:6px 0 8px}#mec_reg_form_fields input[type=number],#mec_reg_form_fields input[type=text],#mec_reg_form_fields select,#mec_reg_form_fields textarea{min-width:260px;min-height:34px;margin-bottom:7px;margin-top:7px}#mec_reg_form_fields textarea{min-height:66px}#mec_reg_form_field_types button,#mec_reg_form_fields button{position:relative;outline:0;background:#fff;border:1px solid #e2e2e2;border-radius:50px;padding:11px 21px 11px 31px;line-height:1;font-size:11px;font-weight:600;color:#444;letter-spacing:2px;height:auto;cursor:pointer;margin-top:5px;text-transform:uppercase;box-shadow:0 0 3px rgba(0,0,0,.03)}#mec_reg_form_field_types button:hover,#mec_reg_form_fields button:hover{border-color:#008aff;box-shadow:0 0 7px rgba(0,0,0,.1)}#mec_reg_form_field_types button:before,#mec_reg_form_fields button:before{position:absolute;left:12px;color:#008aff;content:"\e095";font-family:simple-line-icons;font-size:13px;display:inline-block}@media (max-width:768px){#mec_reg_form_fields input[type=number],#mec_reg_form_fields input[type=text],#mec_reg_form_fields select,#mec_reg_form_fields textarea{min-width:80px;width:100%}}.mec-form-row{margin:0 auto 10px}.mec-options-fields{padding-top:25px;overflow:hidden}.mec-form-row:after,.mec-form-row:before{content:" ";display:table}.mec-form-row:after{clear:both}.mec-form-row input[type=number],.mec-form-row input[type=text],.mec-form-row select{height:38px;box-sizing:border-box;margin-bottom:8px;padding:0 6px;box-shadow:none;border-radius:2px;box-shadow:inset 0 1px 5px rgba(0,0,0,.05)}.mec-form-row input[type=radio]{margin:5px 0}.mec-form-row select{margin-top:1px}.mec-book-status-form select{display:block;width:99%;margin-top:10px;margin-bottom:10px}.mec-form-row label{margin:10px 0}.mec-form-row input[type=checkbox]{background-color:#fafafa;border:1px solid #cacece;box-shadow:0 1px 2px rgba(0,0,0,.05),inset 0 -15px 10px -12px rgba(0,0,0,.05);padding:9px;border-radius:3px;min-width:20px;min-height:20px;display:inline-block}.mec-form-row input[type=checkbox]:checked{box-shadow:0 3px 11px -4px #008aff;border-color:#008aff;background:#fff}.mec-form-row input[type=checkbox]:checked:before{color:#008aff;width:20px;font:400 24px/1 dashicons}.mec-form-row .mec-col-4 input[type=text],.mec-form-row .mec-col-4 select{width:75%}.mec-form-row .description{display:inline-block;border-left:1px dashed #ccc;margin-left:12px;line-height:26px;padding-left:12px;color:#555}.mec-form-row .time-dv{font-size:14px;font-weight:700}.mec-meta-box-fields{margin:30px 10px}.mec-meta-box-fields>.mec-meta-box-fields{margin-left:0}.mec-meta-box-fields .mec-title{margin:5px 0}.mec-meta-box-fields h4.mec-title{margin:40px 0 16px}.mec-meta-box-fields .mec-dashicons{font-size:20px;line-height:22px;color:#008aff}.mec-form-row .mec-box,.mec-meta-box-fields .mec-box{background:#f7f7f7;padding:10px;margin:10px 0;border-radius:2px;border:1px solid #e6e6e6}.mec-form-row .mec-box{max-width:960px}.mec-form-row .mec-box .button,.mec-meta-box-fields .mec-box .button{float:right}#mec_gateways_form .mec-form-row:first-child,#mec_notifications_form_container .mec-form-row:nth-child(2){overflow:hidden}#mec_gateways_form .mec-tooltip{float:right}.mec-container{background:#fff;padding:15px}.nav-tab-active{background:#fff;border-bottom:1px solid #fff}#mec_social_networks .mec-form-row{margin-bottom:0}#mec_gateways_form h4,.mec-meta-box-fields h4,.mec-options-fields h4,h4.mec-form-subtitle{text-transform:capitalize;border-bottom:1px solid #e5e5e5;padding-bottom:6px;margin:40px 0 16px;font-size:15px;font-weight:600}#mec_gateways_form h4{margin-bottom:0}#mec_styles_form #mec_styles_CSS{height:200px;margin-bottom:5px;font-family:Consolas,Monaco,monospace;font-size:13px;width:97%;background:#f9f9f9;outline:0}#mec_calendar_filter .description,#mec_styles_form .description{max-width:500px;display:block;margin:0 0 5px 0;padding:0;border:none}.mec-sed-methods li{display:inline-block;padding:8px 12px;border:1px solid #ddd;margin:0 5px 5px 0;cursor:pointer;border-radius:3px;box-shadow:0 2px 15px -2px rgba(0,0,0,.1)}.mec-sed-methods li:hover{border-color:#008aff}.mec-sed-methods li.active{border-color:#008aff;background-color:#fff;color:#008aff;font-weight:600;cursor:default;box-shadow:0 0 8px rgba(1,138,255,.5) inset}.mec-switcher input+label{display:block;position:relative;cursor:pointer;outline:0;padding:2px;width:38px;height:22px;background-color:#ddd;border-radius:60px}.mec-switcher input:checked+label{background-color:#008aff;box-shadow:0 3px 22px -6px #008aff}.mec-switcher input:checked+label:after{margin-left:16px}#mec_gateways_form input[type=text],#mec_gateways_form select,#mec_gateways_form textarea{width:calc(100% - 30px)}#mec_gateways_form textarea{min-height:65px}#mec_gateways_form li .mec-gateway-options-form{padding:15px 20px;background-color:#f7f7f7;border-left:6px solid #e3e3e3;margin-bottom:20px}#mec_notifications_form label{display:inline-block;min-width:160px}#mec_notifications_form input[type=text],#mec_notifications_form select{min-width:300px}@media (max-width:536px){#mec_notifications_form input[type=text],#mec_notifications_form select{min-width:100%}}#mec_notifications_form .wp-editor-container{margin-bottom:45px}#mec_notifications_form ul li:last-child .wp-editor-container{margin-bottom:0}#mec_messages_form_container ul li label{display:block;font-weight:700}#mec_messages_form_container ul li input{display:block;width:100%}.mec-message-categories li.mec-acc-label{font-size:18px;font-weight:700;padding:10px;cursor:pointer;background-color:#f1f1f1;border:1px solid #ccc}.mec-message-categories ul{margin:15px 5px}.webnus-icons-list li{width:40px;display:inline-block;list-style:none;padding:0}.webnus-icons-list input{visibility:hidden;margin:0;padding:0;width:1px;height:1px;-moz-opacity:0;-khtml-opacity:0;opacity:0;cursor:pointer}.webnus-icons-list li label{color:#777;display:inline-block!important;float:none!important;width:33px!important;text-align:center;font-size:23px!important;font-weight:400!important;padding:5px 0!important;border:1px solid #eee!important}.mec-webnus-icon{float:left;margin-right:10px}.mec-webnus-icon i{font-size:24px;color:#222}.mec-accordion ul{display:none}.mec-switcher input{position:absolute;margin-left:-9999px;visibility:hidden}.mec-switcher input+label{display:block;position:relative;cursor:pointer;outline:0;padding:2px;width:50px;height:22px;background-color:#ddd;border-radius:60px}.mec-switcher input+label:after,.mec-switcher input+label:before{display:block;position:absolute;top:1px;left:1px;bottom:1px;content:""}.mec-switcher input+label:before{right:1px;background-color:#f1f1f1;border-radius:60px;transition:background .4s}.mec-switcher input+label:after{width:24px;background-color:#fff;border-radius:100%;box-shadow:0 2px 3px rgba(0,0,0,.1);transition:margin .4s}.wns-be-group-tab .mec-switcher input[value="1"]+label,.wns-be-group-tab .mec-switcher input[value="1"]+label:before{background-color:#008aff;box-shadow:0 3px 22px -7px #008aff}.wns-be-group-tab .mec-switcher input[value="1"]+label:after{margin-left:28px}.mec-switcher input:checked+label{background-color:#008aff}.mec-switcher input:checked+label:before{background-color:#008aff}.mec-switcher input:checked+label:after{margin-left:28px}.mec-switcher label{display:block}.mec-sed-methods li{display:inline-block;padding:10px;border:1px solid #ddd;margin:0 5px 5px 0;cursor:pointer}#wpwrap .mec-button-primary{border-bottom:none;letter-spacing:.5px;line-height:18px;height:46px;transition:all .5s ease;color:#fff;padding:12px 25px;display:block;text-align:center;font-size:14px;background:0 0;background-color:#008aff;text-shadow:none;border:0;box-shadow:none;display:inline-block;margin:25px 0 12px;min-width:146px}#wpwrap .mec-button-primary:hover{background-color:#41c9de}#wpwrap .mec-button-primary.loading{background-color:#73c02a}#wpwrap .mec-button-primary:before{content:"\f00c";font-family:fontawesome;margin-right:4px;font-size:16px;display:none}#wpwrap .mec-button-primary.loading:before{display:inline-block}.mec-image-select-wrap{clear:both;overflow:hidden;padding:10px 0;margin:0}.mec-image-select-wrap li{float:left;display:block;margin-right:15px;margin-bottom:15px}.mec-image-select-wrap li input{display:none}.mec-image-select-wrap li span{width:35px;height:35px;display:block;border:3px solid transparent}.mec-image-select-wrap li input:checked+span{border-color:#e3e3e3}.mec-image-select-wrap li input:checked+span:after{content:"\f00c";font-family:fontawesome;font-size:20px;display:inline-block;color:#fff;padding:8px;max-width:100%;max-height:100%}.mec-image-select-wrap .mec-colorskin-1{background-color:#008aff}.mec-image-select-wrap .mec-colorskin-2{background-color:#0093d0}.mec-image-select-wrap .mec-colorskin-3{background-color:#e53f51}.mec-image-select-wrap .mec-colorskin-4{background-color:#f1c40f}.mec-image-select-wrap .mec-colorskin-5{background-color:#e64883}.mec-image-select-wrap .mec-colorskin-6{background-color:#45ab48}.mec-image-select-wrap .mec-colorskin-7{background-color:#9661ab}.mec-image-select-wrap .mec-colorskin-8{background-color:#0aad80}.mec-image-select-wrap .mec-colorskin-9{background-color:#0ab1f0}.mec-image-select-wrap .mec-colorskin-10{background-color:#ff5a00}.mec-image-select-wrap .mec-colorskin-11{background-color:#c3512f}.mec-image-select-wrap .mec-colorskin-12{background-color:#55606e}.mec-image-select-wrap .mec-colorskin-13{background-color:#fe8178}.mec-image-select-wrap .mec-colorskin-14{background-color:#7c6853}.mec-image-select-wrap .mec-colorskin-15{background-color:#bed431}.mec-image-select-wrap .mec-colorskin-16{background-color:#2d5c88}.mec-image-select-wrap .mec-colorskin-17{background-color:#77da55}.mec-image-select-wrap .mec-colorskin-18{background-color:#2997ab}.mec-image-select-wrap .mec-colorskin-19{background-color:#734854}.mec-image-select-wrap .mec-colorskin-20{background-color:#a81010}.mec-image-select-wrap .mec-colorskin-21{background-color:#4ccfad}.mec-image-select-wrap .mec-colorskin-22{background-color:#3a609f}@media screen and (max-width:782px){.mec-form-row .description{max-width:500px;display:block;margin:0 0 5px 0;padding:0;border:none}.mec-col-1,.mec-col-10,.mec-col-11,.mec-col-12,.mec-col-2,.mec-col-3,.mec-col-4,.mec-col-5,.mec-col-6,.mec-col-7,.mec-col-8,.mec-col-9{margin-bottom:5px;display:block}.mec-form-row .mec-box .button,.mec-meta-box-fields .mec-box .button{float:left}.mec-form-row .time-dv{padding:0 4px}.mec-form-row .mec-col-4 input[type=text],.mec-form-row .mec-col-4 select{width:auto;min-width:192px}.mec-tooltip .dashicons-before:before{font-size:32px}}#frmb-0-clear-all,#frmb-0-save,#frmb-0-view-data{display:none}#mec_sn_googlecal{margin-bottom:0}#mec_fee_row1 .button{margin-right:10px}h4.mec-form-subtitle{font-size:15px;margin-top:35px}#webnus-dashboard *{box-sizing:border-box}#webnus-dashboard.about-wrap{max-width:100%}#webnus-dashboard .change-log{word-wrap:break-word}#webnus-dashboard .welcome-head img{border:none}.w-welcome{position:relative;margin-top:30px;margin-bottom:10px}.w-box{position:relative;background:#fff;padding:5px 25px;margin-top:30px}.w-theme-version{background:#008aff;text-align:center;display:block;padding:7px 0;color:#fff;font-weight:600;margin-top:10px}.w-box{padding:0;min-height:310px;box-shadow:0 1px 6px rgba(0,0,0,.039)}.w-box,.wns-be-group-tab .w-box{box-shadow:none}.w-box-head{font-weight:600;padding:20px 72px;position:relative;border-bottom:2px solid #008aff;font-size:20px}.w-box-head span{position:absolute;left:0;padding:0 25px;line-height:58px;background:#008aff;height:100%;top:0;color:#fff}.w-box-child,.w-box-content{padding:18px;line-height:24px;font-size:14px}.mec-count-child{width:50%;margin:0 auto}#webnus-dashboard .w-button a{color:#fff!important;border-radius:0;padding:10px 24px;font-size:12px;letter-spacing:1px;font-weight:600;background:#008aff;margin:10px 0;display:inline-block;text-transform:uppercase}#webnus-dashboard .w-box .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}.w-system-info{margin-bottom:7px}.w-system-info:first-child{margin-top:20px}.w-system-info>span{display:inline-block;min-width:145px;line-height:20px;font-size:13px}#webnus-dashboard .w-current{min-width:110px}#webnus-dashboard .w-min{min-width:65px}.w-icon{color:#fff;padding:3px;border-radius:4px;margin-right:10px;vertical-align:middle}.w-icon-green{background:#27ae60}.w-icon-red{background:#e74c3c}.extra .w-box-head{padding:20px;border-bottom:1px solid #ededed}.doc .w-box-head{color:#4cbf67}#webnus-dashboard .doc .w-button a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);margin:35px 0 17px;box-shadow:0 5px 10px -5px #4cbf67;background-color:#fff}#webnus-dashboard .support .w-button a{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);margin:13px 0 18px;box-shadow:0 5px 10px -5px #ff876c}.doc .w-box-content{background:url(../img/document.png) no-repeat right center}.doc .w-box-content p,.w-box.support .w-box-content p{width:54%;color:#666;margin-top:10px;max-width:380px}.w-box-child p{color:#666;margin-top:10px}.w-box.support{background:#fff url(../img/support.png) no-repeat top right}.w-box.support .w-box-head{width:50%;color:#ff876c}.w-box-content pre{text-align:left;white-space:pre-line;font-size:13px}.w-box.change-log .w-box-head{color:#01c6d9}#webnus-dashboard .button{border:0;background:0 0;box-shadow:none;color:#e74c3c;font-weight:700}.w-box .state{position:absolute;top:0;left:-100vw}#webnus-dashboard .button:hover{color:#222}.w-box .state:checked~.content{-webkit-transform:none;-ms-transform:none;transform:none}.w-box .state:checked~.backdrop{bottom:0;opacity:1;z-index:1}.w-box .lightbox{position:fixed;top:0;right:0;left:0;height:0;padding:0 20px}.w-box .lightbox .content{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;overflow:hidden;position:relative;z-index:2;max-width:500px;max-height:95vh;margin:20px auto;padding:20px;background:#fff;-webkit-transform:translateY(-200%);-ms-transform:translateY(-200%);transform:translateY(-200%);-webkit-transition:.3s -webkit-transform ease-in-out;transition:.3s transform ease-in-out;border:1px solid rgba(0,0,0,.1)}.w-box .lightbox .main{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1}.w-box .lightbox .backdrop{position:fixed;z-index:-1;top:0;right:0;bottom:100%;left:0;opacity:0;background:rgba(0,0,0,.3);-webkit-transition:.3s opacity ease-in-out;transition:.3s opacity ease-in-out}.content .main p{color:#bf3737}p.mec_dash_count{font-size:60px;font-weight:600;margin:0;color:#01c6d9}.w-col-sm-3 .w-box.doc{text-align:center;min-height:auto}.w-Knowledgebase{color:#8e5cea}.mec-view-all-articles a{margin:30px 0 17px;display:inline-block;color:#fff!important;border-radius:0;padding:10px 24px;font-size:12px;letter-spacing:1px;font-weight:600;background:#8e5cea;display:inline-block;text-transform:uppercase;transition:all .24s ease;-webkit-transition:all .24s ease}.mec-view-all-articles a:hover{background-color:#222}.w-box.upcoming-events .mec-event-article{margin-bottom:22px;border-bottom:1px solid #eee;padding-bottom:16px}.w-box.upcoming-events .mec-event-article .mec-event-date{font-size:14px;color:#666}.w-box.upcoming-events .mec-event-article .mec-event-date span{font-weight:600;margin-right:4px}.w-box.upcoming-events .mec-event-article h4.mec-event-title{margin:0;font-size:15px}.w-box.upcoming-events .mec-event-article .mec-event-detail{font-size:13px;color:#999}.w-box.upcoming-events .mec-event-article .mec-detail-button{font-size:10px;font-weight:600;letter-spacing:1px;padding:4px 12px;background:#f2f2f2;float:right}.w-box.total-bookings ul li{display:inline-block;padding:4px 12px;background:#f1f1f1;margin-right:5px;border-radius:3px}.w-box.total-bookings ul li.selected{background:#fff;border:1px solid #e9e9e9}.info-msg,.mec-error,.mec-success,.warning-msg{margin:10px 0;padding:10px;border-radius:3px 3px 3px 3px}.info-msg{color:#059;background-color:#bef}.info-msg-link{background:#fff;padding:4px 12px 6px;border-radius:3px;line-height:1;font-weight:600;color:#008aff}.mec-success{color:#270;background-color:#dff2bf}.warning-msg{color:#9f6000;background-color:#feefb3}.mec-error{color:#d8000c;background-color:#ffbaba}.mec-certain-day>div,.mec-select-deselect-actions li,.mec-xi-facebook-import-events .mec-select-deselect-actions li,.mec-xi-google-import-events .mec-select-deselect-actions li{display:inline-block;position:relative;outline:0;background:#fff;border:1px solid #e2e2e2;border-radius:50px;padding:11px 21px 11px 21px;line-height:1;font-size:11px;font-weight:600;color:#444;letter-spacing:2px;height:auto;cursor:pointer;margin-top:5px;text-transform:uppercase;box-shadow:0 0 3px rgba(0,0,0,.03)}.mec-certain-day>div:hover,.mec-select-deselect-actions li:hover,.mec-xi-facebook-import-events .mec-select-deselect-actions li:hover,.mec-xi-google-import-events .mec-select-deselect-actions li:hover{border-color:#008aff;box-shadow:0 0 7px rgba(0,0,0,.1)}.mec-not-in-days-remove{border:1px solid #f99170;border-radius:20px;padding:0 0 0 2px;color:#f99170}.mec-xi-facebook-import-events .mec-success,.mec-xi-google-import-events .mec-success{width:460px}.mec-xi-facebook-import-events .mec-select-deselect-actions li,.mec-xi-google-import-events .mec-select-deselect-actions li{display:inline-block;cursor:pointer}.lity-content>div{overflow:auto}#mec_setting_contextual li{list-style:none!important;font-size:12px;margin:0;padding:6px}.mec-bbf-field-container{margin-bottom:10px}.mec-bbf-field-container label{display:block}.kc-components ul.kc-components-list li .cpicon.mec-kingcomposer-icon,.kc-element-icon .cpicon.mec-kingcomposer-icon{background:url(../img/ico-mec-vc.png) no-repeat center center;background-size:auto;background-repeat:no-repeat}.mec-toggle-month-divider{display:none}.w-welcome p span{background:#fff;padding:4px 10px}#mec_masonry_skin_options_container .mec-form-row .description{margin-left:0;padding-left:0;border:none;margin-top:-4px}/*!
2
  * Bootstrap v3.3.7 (http://getbootstrap.com)
3
  * Copyright 2011-2016 Twitter, Inc.
4
  * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
1
+ #mec_location_thumbnail_img img,#mec_organizer_thumbnail_img img,#mec_thumbnail_img img{max-width:250px}.taxonomy-mec_label .column-id,.taxonomy-mec_location .column-id,.taxonomy-mec_organizer .column-id,.taxonomy-mec_speaker .column-id{width:40px}.taxonomy-mec_label .column-primary,.taxonomy-mec_location .column-primary,.taxonomy-mec_organizer .column-primary,.taxonomy-mec_speaker .column-primary{width:250px}.mec-color{margin:10px;width:14px;height:14px;display:inline-block;margin-right:6px;border-radius:20px 20px 20px 20px;vertical-align:middle}.mec-event-color-container,.mec-event-title-container{display:inline-block}.mec-available-color-row{margin-top:15px}.mec-available-color-row .mec-color{cursor:pointer}.mec-widget-container a{text-decoration:none}.mec-widget-container label{padding-right:15px}.mec-util-hidden{display:none}.button.mec-util-hidden{display:none}.wns-be-container{font-family:Oxygen,'Open Sans',sans-serif;max-width:100%;background-color:#f6f6f6;border:1px solid #c1cad2;box-shadow:0 1px 1px rgba(0,0,0,.04);margin-top:5px;margin-right:15px;overflow:hidden}.wns-be-sidebar{width:260px;float:left;position:relative;padding-top:79px}.wns-be-sidebar:before{content:"";width:261px;height:78px;display:block;position:absolute;left:0;top:0;background:#fff url(../img/webnus-logo.png) no-repeat center;border-bottom:1px solid #dedede;background-size:220px;z-index:997}.wns-be-sidebar ul.wns-be-group-menu,.wns-be-sidebar ul.wns-be-group-menu li{list-style:none;margin:0}.wns-be-sidebar .wns-be-group-menu li a{display:block;position:relative;outline:0;padding:13px 4px 13px 20px;background:#e0e0e0;background:0 0;border:none;color:#3f454a;font-size:13px;font-weight:600;text-decoration:none;-webkit-transition:none;transition:none}.wns-be-sidebar .wns-be-group-menu li a:hover{background:#fff;color:#008aff;opacity:1}.wns-be-sidebar .wns-be-group-menu>li.active>a,.wns-be-sidebar .wns-be-group-menu>li.active>a:hover{background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff}.wns-be-sidebar .wns-be-group-menu>li.active>a{box-shadow:0 2px 12px -5px #008aff}.wns-be-sidebar .wns-be-group-menu li a:first-child{border-top:none}.wns-be-main{background:#fff;margin-left:260px;border-left:1px solid #dedede;padding-bottom:84px;box-shadow:inset 0 1px 0 #fff;min-height:440px;position:relative}.wns-be-main .wns-saved-settings{margin:0;border-bottom:1px solid #dedede;background:#dff0d8;color:#468847;padding:8px 35px 8px 14px;text-shadow:0 1px 0 rgba(255,255,255,.6)}.wns-be-container .dpr-btn{display:inline-block;font-size:13px;padding:0 16px 1px;height:36px;margin-right:3px;line-height:35px;color:#555;border:1px solid #ccc;background:#f7f7f7;text-decoration:none;transition:.24s all ease;-webkit-transition:.24s all ease}.wns-be-container .dpr-btn:hover{background:#fcfcfc;border-color:#999;color:#303030}.wns-be-container .dpr-btn.dpr-save-btn{color:#fff;font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s}.wns-be-container .dpr-btn.dpr-save-btn:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5)}.wns-be-container .wns-be-group-tab h2,.wns-be-container .wns-be-group-tab h4{color:#000;margin-bottom:25px;padding:15px;background:#f5f5f5;font-size:21px;line-height:23px;letter-spacing:.4px;font-weight:700;position:relative}.wns-be-container .wns-be-group-tab h2{margin-top:10px}.wns-be-container .wns-be-group-tab h2:before,.wns-be-container .wns-be-group-tab h4:before{content:"";width:4px;height:16px;margin-right:5px;background-color:#008aff;display:block;position:absolute;left:0;top:18px}.wns-be-container .wns-be-group-tab h4:before{width:2px;top:16px}.wns-be-container .wns-be-group-tab h4{font-size:16px;font-weight:600;background:#f8f8f8;border:none;padding:12px 15px 12px 15px}.wns-be-container .wns-be-group-tab p{font-size:13px;color:#888}.wns-be-sidebar .wns-be-group-tab-link-a span{display:block}.wns-be-sidebar .wns-be-group-tab-link-a span.wns-be-group-menu-title{padding-left:24px}.wns-be-sidebar li.active ul.subsection{padding-top:8px;padding-bottom:12px;background:#fff;border-bottom:1px solid #dedede;margin:0}.wns-be-sidebar li .subsection a{background:#fff;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 46px}.wns-be-sidebar li .subsection a:hover{background:#f6f6f6;color:#222}.wns-be-sidebar .wns-be-group-menu li .subsection li.active a{color:#008aff}.wns-be-sidebar .wns-be-group-menu li .subsection li.active a:after,.wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;right:-1px;top:10px}.wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{border-right-color:#c5c5c5;right:0}.wns-be-sidebar li a i{color:#a0abb5;vertical-align:middle;font-size:16px;position:absolute;margin-top:3px}.wns-be-sidebar .wns-be-group-menu li.active>a i{color:#fff}.wns-be-sidebar .has-sub span.extra-icon{display:inline-block;float:right;padding:6px 7px 4px;margin-left:4px;margin-right:10px;font-family:sans-serif;font-size:9px;font-weight:600;line-height:9px;border-radius:10px;-moz-border-radius:10px;-webkit-border-radius:10px;border:0 solid transparent}.wns-be-sidebar .has-sub span.extra-icon i{margin-left:-3px;margin-top:2px;color:#bac6d0;font-size:10px}.wns-be-sidebar .wns-be-group-tab-link-a span.extra-icon i{right:10px;font-size:10px;margin-top:6px}.wns-be-sidebar .wns-be-group-menu li.active>a span.extra-icon i{margin-top:1px}.wns-be-container #wns-be-footer{border-top:1px solid #dedede;z-index:999;padding:25px 20px 20px;background:#fafafa!important;position:absolute;bottom:0;right:0;left:0;height:44px;text-align:right}.wns-be-container #wns-be-content{padding:5px 40px 40px}.wns-be-container #wns-be-infobar{background:#fff;border-bottom:1px solid #dedede;padding:20px;text-align:right;box-shadow:inset 0 1px 0 #fcfcfc;height:79px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.wns-be-container .notice-yellow{margin:0;border-bottom:1px solid #dedede;background-color:#fcf8e3;color:#c09853;padding:8px 35px 8px 14px;text-shadow:0 1px 0 rgba(255,255,255,.5)}.wns-be-container .notice-red,.wns-be-container .wns-be-field-errors{margin:0;border-bottom:1px solid #dedede;background-color:#f2dede;color:#b94a48;padding:8px 35px 8px 14px;text-shadow:0 1px 0 rgba(255,255,255,.5)}body.post-type-mec-events th.column-primary{width:35%}body.post-type-mec-events th.column-start_date{width:100px}body.post-type-mec-events th.column-end_date{width:100px}body.post-type-mec-events th.column-repeat{width:75px}body.post-type-mec-events th.column-author{width:150px}body.post-type-mec-books th.column-primary{width:20%}body.post-type-mec-books th.column-event{width:170px}body.post-type-mec-books th.column-bdate{width:120px}body.post-type-mec-books th.column-confirmation{width:120px}body.post-type-mec-books th.column-verification{width:120px}body.post-type-mec-books th.column-author{width:150px}.mec-meta-box-labels-container .mec-form-row{height:100px;overflow:auto}.mec-tooltip{display:inline;position:relative;margin-right:10px;cursor:help;bottom:5px;left:3px}.mec-tooltip:last-child{margin-right:0}.mec-tooltip:hover:after{background:#313130;border-radius:5px;bottom:24px;color:#fff;content:attr(title);left:-75px;padding:10px;position:absolute;z-index:98;width:240px}.mec-tooltip:hover:before{border:solid;border-color:#313130 transparent;border-width:6px 6px 0;bottom:18px;content:"";left:30%;position:absolute;z-index:99}.mec-tooltip .dashicons-before:before{font-size:24px;color:#008aff;line-height:37px}.mec-form-row .bootstrap_unvalid{display:block;border:2px solid red;position:relative;display:inline-block;border-bottom:1px dotted #000}.mec-tooltiptext{visibility:hidden;width:120px;background-color:red;color:#fff;text-align:center;border-radius:6px;padding:5px 0;position:absolute;z-index:1}.ui-datepicker{background-color:#fff;border:1px solid #66afe9;border-radius:4px;box-shadow:0 0 8px rgba(102,175,233,.6);display:none;margin-top:4px;padding:10px;width:240px}.ui-datepicker a,.ui-datepicker a:hover{text-decoration:none;cursor:pointer}.ui-datepicker a:hover,.ui-datepicker td:hover a{color:#2c6396;-webkit-transition:color .1s ease-in-out;-moz-transition:color .1s ease-in-out;-o-transition:color .1s ease-in-out;transition:color .1s ease-in-out}.ui-datepicker .ui-datepicker-header{margin-bottom:4px;text-align:center}.ui-datepicker .ui-datepicker-title{font-weight:700}.ui-datepicker .ui-datepicker-next,.ui-datepicker .ui-datepicker-prev{cursor:default;font-family:dashicons;-webkit-font-smoothing:antialiased;font-style:normal;font-weight:400;height:20px;line-height:1.4;margin-top:2px;width:20px}.ui-datepicker .ui-datepicker-prev{float:left;text-align:left}.ui-datepicker .ui-datepicker-next{float:right;text-align:center}.ui-datepicker .ui-datepicker-prev:before{content:"\f341"}.ui-datepicker .ui-datepicker-next:before{content:"\f345"}.ui-datepicker .ui-icon{display:none}.ui-datepicker .ui-datepicker-calendar{table-layout:fixed;width:100%}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker .ui-datepicker-calendar th{text-align:center;padding:4px 0}.ui-datepicker .ui-datepicker-calendar td{border-radius:4px;-webkit-transition:background-color .1s ease-in-out,color .1s ease-in-out;-moz-transition:background-color .1s ease-in-out,color .1s ease-in-out;-o-transition:background-color .1s ease-in-out,color .1s ease-in-out;transition:background-color .1s ease-in-out,color .1s ease-in-out}.ui-datepicker .ui-datepicker-calendar td:hover{background-color:#eee;cursor:pointer}.ui-datepicker .ui-datepicker-calendar td a{text-decoration:none}.ui-datepicker .ui-datepicker-current-day{background-color:#4289cc}.ui-datepicker .ui-datepicker-current-day a{color:#fff}.ui-datepicker .ui-datepicker-calendar .ui-datepicker-unselectable:hover{background-color:#fff;cursor:default}.mec-col-1,.mec-col-10,.mec-col-11,.mec-col-12,.mec-col-2,.mec-col-3,.mec-col-4,.mec-col-5,.mec-col-6,.mec-col-7,.mec-col-8,.mec-col-9{position:relative;min-height:1px;padding:0;margin:0 1% 0 0}@media (min-width:783px){.mec-col-1,.mec-col-10,.mec-col-11,.mec-col-12,.mec-col-2,.mec-col-3,.mec-col-4,.mec-col-5,.mec-col-6,.mec-col-7,.mec-col-8,.mec-col-9{float:left}.mec-col-12{width:99%}.mec-col-11{width:90.66666667%}.mec-col-10{width:82.33333333%}.mec-col-9{width:74%}.mec-col-8{width:65.66666667%}.mec-col-7{width:57.33333333%}.mec-col-6{width:49%}.mec-col-5{width:40.66666667%}.mec-col-4{width:32.33333333%}.mec-col-3{width:24%}.mec-col-2{width:15.66666667%}.mec-col-1{width:7.33333333%}}#mec_reg_form_fields{background:#eee;padding:20px}#mec_reg_form_fields li{margin:4px;border-radius:2px;padding:20px 34px 24px;background:#fff;position:relative;transition:all .3s ease}#mec_reg_form_fields li ul{padding-top:15px;padding-bottom:15px;margin:1px}#mec_reg_form_fields li ul li{padding:7px 30px 7px 46px}#mec_reg_form_fields span.mec_reg_field_type{font-size:11px;font-weight:600;color:#8a8a8a;text-transform:uppercase;letter-spacing:2px}#mec_reg_form_fields span.mec_reg_field_option_sort,#mec_reg_form_fields span.mec_reg_field_remove,#mec_reg_form_fields span.mec_reg_field_sort{font-size:0;color:#fff}#mec_reg_form_fields span.mec_reg_field_remove{position:absolute;right:0;top:0}#mec_reg_form_fields span.mec_reg_field_option_sort:before,#mec_reg_form_fields span.mec_reg_field_remove:before,#mec_reg_form_fields span.mec_reg_field_sort:before{position:absolute;left:10px;top:20px;width:80px;height:20px;display:block;cursor:move;font-family:simple-line-icons;content:"\e023";font-size:18px;color:#888}#mec_reg_form_fields span.mec_reg_field_remove:before{content:"\e082";width:20px;height:20px;left:auto;right:15px;color:#f96666;cursor:pointer}#mec_reg_form_fields span.mec_reg_field_option_sort:before{font-size:13px;left:2px;top:23px;width:14px;height:14px}#mec_reg_form_fields li ul li span.mec_reg_field_remove{right:auto;left:60px;top:2px}#mec_reg_form_fields p.mec_reg_field_options{margin:6px 0 8px}#mec_reg_form_fields input[type=number],#mec_reg_form_fields input[type=text],#mec_reg_form_fields select,#mec_reg_form_fields textarea{min-width:260px;min-height:34px;margin-bottom:7px;margin-top:7px}#mec_reg_form_fields textarea{min-height:66px}#mec_reg_form_field_types button,#mec_reg_form_fields button{position:relative;outline:0;background:#fff;border:1px solid #e2e2e2;border-radius:50px;padding:11px 21px 11px 31px;line-height:1;font-size:11px;font-weight:600;color:#444;letter-spacing:2px;height:auto;cursor:pointer;margin-top:5px;text-transform:uppercase;box-shadow:0 0 3px rgba(0,0,0,.03)}#mec_reg_form_field_types button:hover,#mec_reg_form_fields button:hover{border-color:#008aff;box-shadow:0 0 7px rgba(0,0,0,.1)}#mec_reg_form_field_types button:before,#mec_reg_form_fields button:before{position:absolute;left:12px;color:#008aff;content:"\e095";font-family:simple-line-icons;font-size:13px;display:inline-block}@media (max-width:768px){#mec_reg_form_fields input[type=number],#mec_reg_form_fields input[type=text],#mec_reg_form_fields select,#mec_reg_form_fields textarea{min-width:80px;width:100%}}.mec-form-row{margin:0 auto 10px}.mec-options-fields{padding-top:25px;overflow:hidden}.mec-form-row:after,.mec-form-row:before{content:" ";display:table}.mec-form-row:after{clear:both}.mec-form-row input[type=number],.mec-form-row input[type=text],.mec-form-row select{height:38px;box-sizing:border-box;margin-bottom:8px;padding:0 6px;box-shadow:none;border-radius:2px;box-shadow:inset 0 1px 5px rgba(0,0,0,.05)}.mec-form-row input[type=radio]{margin:5px 0}.mec-form-row select{margin-top:1px}.mec-book-status-form select{display:block;width:99%;margin-top:10px;margin-bottom:10px}.mec-form-row label{margin:10px 0}.mec-form-row input[type=checkbox]{background-color:#fafafa;border:1px solid #cacece;box-shadow:0 1px 2px rgba(0,0,0,.05),inset 0 -15px 10px -12px rgba(0,0,0,.05);padding:9px;border-radius:3px;min-width:20px;min-height:20px;display:inline-block}.mec-form-row input[type=checkbox]:checked{box-shadow:0 3px 11px -4px #008aff;border-color:#008aff;background:#fff}.mec-form-row input[type=checkbox]:checked:before{color:#008aff;width:20px;font:400 24px/1 dashicons}.mec-form-row .mec-col-4 input[type=text],.mec-form-row .mec-col-4 select{width:75%}.mec-form-row .description{display:inline-block;border-left:1px dashed #ccc;margin-left:12px;line-height:26px;padding-left:12px;color:#555}.mec-form-row .time-dv{font-size:14px;font-weight:700}.mec-meta-box-fields{margin:30px 10px}.mec-meta-box-fields>.mec-meta-box-fields{margin-left:0}.mec-meta-box-fields .mec-title{margin:5px 0}.mec-meta-box-fields h4.mec-title{margin:40px 0 16px}.mec-meta-box-fields .mec-dashicons{font-size:20px;line-height:22px;color:#008aff}.mec-form-row .mec-box,.mec-meta-box-fields .mec-box{background:#f7f7f7;padding:10px;margin:10px 0;border-radius:2px;border:1px solid #e6e6e6}.mec-form-row .mec-box{max-width:960px}.mec-form-row .mec-box .button,.mec-meta-box-fields .mec-box .button{float:right}#mec_gateways_form .mec-form-row:first-child,#mec_notifications_form_container .mec-form-row:nth-child(2){overflow:hidden}#mec_gateways_form .mec-tooltip{float:right}.mec-container{background:#fff;padding:15px}.nav-tab-active{background:#fff;border-bottom:1px solid #fff}#mec_social_networks .mec-form-row{margin-bottom:0}#mec_gateways_form h4,.mec-meta-box-fields h4,.mec-options-fields h4,h4.mec-form-subtitle{text-transform:capitalize;border-bottom:1px solid #e5e5e5;padding-bottom:6px;margin:40px 0 16px;font-size:15px;font-weight:600}#mec_gateways_form h4{margin-bottom:0}#mec_styles_form #mec_styles_CSS{height:200px;margin-bottom:5px;font-family:Consolas,Monaco,monospace;font-size:13px;width:97%;background:#f9f9f9;outline:0}#mec_calendar_filter .description,#mec_styles_form .description{max-width:500px;display:block;margin:0 0 5px 0;padding:0;border:none}.mec-sed-methods li{display:inline-block;padding:8px 12px;border:1px solid #ddd;margin:0 5px 5px 0;cursor:pointer;border-radius:3px;box-shadow:0 2px 15px -2px rgba(0,0,0,.1)}.mec-sed-methods li:hover{border-color:#008aff}.mec-sed-methods li.active{border-color:#008aff;background-color:#fff;color:#008aff;font-weight:600;cursor:default;box-shadow:0 0 8px rgba(1,138,255,.5) inset}.mec-switcher input+label{display:block;position:relative;cursor:pointer;outline:0;padding:2px;width:38px;height:22px;background-color:#ddd;border-radius:60px}.mec-switcher input:checked+label{background-color:#008aff;box-shadow:0 3px 22px -6px #008aff}.mec-switcher input:checked+label:after{margin-left:16px}#mec_gateways_form input[type=text],#mec_gateways_form select,#mec_gateways_form textarea{width:calc(100% - 30px)}#mec_gateways_form textarea{min-height:65px}#mec_gateways_form li .mec-gateway-options-form{padding:15px 20px;background-color:#f7f7f7;border-left:6px solid #e3e3e3;margin-bottom:20px}#mec_notifications_form label{display:inline-block;min-width:160px}#mec_notifications_form input[type=text],#mec_notifications_form select{min-width:300px}@media (max-width:536px){#mec_notifications_form input[type=text],#mec_notifications_form select{min-width:100%}}#mec_notifications_form .wp-editor-container{margin-bottom:45px}#mec_notifications_form ul li:last-child .wp-editor-container{margin-bottom:0}#mec_messages_form_container ul li label{display:block;font-weight:700}#mec_messages_form_container ul li input{display:block;width:100%}.mec-message-categories li.mec-acc-label{font-size:18px;font-weight:700;padding:10px;cursor:pointer;background-color:#f1f1f1;border:1px solid #ccc}.mec-message-categories ul{margin:15px 5px}.webnus-icons-list li{width:40px;display:inline-block;list-style:none;padding:0}.webnus-icons-list input{visibility:hidden;margin:0;padding:0;width:1px;height:1px;-moz-opacity:0;-khtml-opacity:0;opacity:0;cursor:pointer}.webnus-icons-list li label{color:#777;display:inline-block!important;float:none!important;width:33px!important;text-align:center;font-size:23px!important;font-weight:400!important;padding:5px 0!important;border:1px solid #eee!important}.mec-webnus-icon{float:left;margin-right:10px}.mec-webnus-icon i{font-size:24px;color:#222}.mec-accordion ul{display:none}.mec-switcher input{position:absolute;margin-left:-9999px;visibility:hidden}.mec-switcher input+label{display:block;position:relative;cursor:pointer;outline:0;padding:2px;width:50px;height:22px;background-color:#ddd;border-radius:60px}.mec-switcher input+label:after,.mec-switcher input+label:before{display:block;position:absolute;top:1px;left:1px;bottom:1px;content:""}.mec-switcher input+label:before{right:1px;background-color:#f1f1f1;border-radius:60px;transition:background .4s}.mec-switcher input+label:after{width:24px;background-color:#fff;border-radius:100%;box-shadow:0 2px 3px rgba(0,0,0,.1);transition:margin .4s}.wns-be-group-tab .mec-switcher input[value="1"]+label,.wns-be-group-tab .mec-switcher input[value="1"]+label:before{background-color:#008aff;box-shadow:0 3px 22px -7px #008aff}.wns-be-group-tab .mec-switcher input[value="1"]+label:after{margin-left:28px}.mec-switcher input:checked+label{background-color:#008aff}.mec-switcher input:checked+label:before{background-color:#008aff}.mec-switcher input:checked+label:after{margin-left:28px}.mec-switcher label{display:block}.mec-sed-methods li{display:inline-block;padding:10px;border:1px solid #ddd;margin:0 5px 5px 0;cursor:pointer}#wpwrap .mec-button-primary{border-bottom:none;letter-spacing:.5px;line-height:18px;height:46px;transition:all .5s ease;color:#fff;padding:12px 25px;display:block;text-align:center;font-size:14px;background:0 0;background-color:#008aff;text-shadow:none;border:0;box-shadow:none;display:inline-block;margin:25px 0 12px;min-width:146px}#wpwrap .mec-button-primary:hover{background-color:#41c9de}#wpwrap .mec-button-primary.loading{background-color:#73c02a}#wpwrap .mec-button-primary:before{content:"\f00c";font-family:fontawesome;margin-right:4px;font-size:16px;display:none}#wpwrap .mec-button-primary.loading:before{display:inline-block}.mec-image-select-wrap{clear:both;overflow:hidden;padding:10px 0;margin:0}.mec-image-select-wrap li{float:left;display:block;margin-right:15px;margin-bottom:15px}.mec-image-select-wrap li input{display:none}.mec-image-select-wrap li span{width:35px;height:35px;display:block;border:3px solid transparent}.mec-image-select-wrap li input:checked+span{border-color:#e3e3e3}.mec-image-select-wrap li input:checked+span:after{content:"\f00c";font-family:fontawesome;font-size:20px;display:inline-block;color:#fff;padding:8px;max-width:100%;max-height:100%}.mec-image-select-wrap .mec-colorskin-1{background-color:#008aff}.mec-image-select-wrap .mec-colorskin-2{background-color:#0093d0}.mec-image-select-wrap .mec-colorskin-3{background-color:#e53f51}.mec-image-select-wrap .mec-colorskin-4{background-color:#f1c40f}.mec-image-select-wrap .mec-colorskin-5{background-color:#e64883}.mec-image-select-wrap .mec-colorskin-6{background-color:#45ab48}.mec-image-select-wrap .mec-colorskin-7{background-color:#9661ab}.mec-image-select-wrap .mec-colorskin-8{background-color:#0aad80}.mec-image-select-wrap .mec-colorskin-9{background-color:#0ab1f0}.mec-image-select-wrap .mec-colorskin-10{background-color:#ff5a00}.mec-image-select-wrap .mec-colorskin-11{background-color:#c3512f}.mec-image-select-wrap .mec-colorskin-12{background-color:#55606e}.mec-image-select-wrap .mec-colorskin-13{background-color:#fe8178}.mec-image-select-wrap .mec-colorskin-14{background-color:#7c6853}.mec-image-select-wrap .mec-colorskin-15{background-color:#bed431}.mec-image-select-wrap .mec-colorskin-16{background-color:#2d5c88}.mec-image-select-wrap .mec-colorskin-17{background-color:#77da55}.mec-image-select-wrap .mec-colorskin-18{background-color:#2997ab}.mec-image-select-wrap .mec-colorskin-19{background-color:#734854}.mec-image-select-wrap .mec-colorskin-20{background-color:#a81010}.mec-image-select-wrap .mec-colorskin-21{background-color:#4ccfad}.mec-image-select-wrap .mec-colorskin-22{background-color:#3a609f}@media screen and (max-width:782px){.mec-form-row .description{max-width:500px;display:block;margin:0 0 5px 0;padding:0;border:none}.mec-col-1,.mec-col-10,.mec-col-11,.mec-col-12,.mec-col-2,.mec-col-3,.mec-col-4,.mec-col-5,.mec-col-6,.mec-col-7,.mec-col-8,.mec-col-9{margin-bottom:5px;display:block}.mec-form-row .mec-box .button,.mec-meta-box-fields .mec-box .button{float:left}.mec-form-row .time-dv{padding:0 4px}.mec-form-row .mec-col-4 input[type=text],.mec-form-row .mec-col-4 select{width:auto;min-width:192px}.mec-tooltip .dashicons-before:before{font-size:32px}}#frmb-0-clear-all,#frmb-0-save,#frmb-0-view-data{display:none}#mec_sn_googlecal{margin-bottom:0}#mec_fee_row1 .button{margin-right:10px}h4.mec-form-subtitle{font-size:15px;margin-top:35px}#webnus-dashboard *{box-sizing:border-box}#webnus-dashboard.about-wrap{max-width:100%}#webnus-dashboard .change-log{word-wrap:break-word}#webnus-dashboard .welcome-head img{border:none}.w-welcome{position:relative;margin-top:30px;margin-bottom:10px}.w-box{position:relative;background:#fff;padding:5px 25px;margin-top:30px}.w-theme-version{background:#008aff;text-align:center;display:block;padding:7px 0;color:#fff;font-weight:600;margin-top:10px}.w-box{padding:0;min-height:310px;box-shadow:0 1px 6px rgba(0,0,0,.039)}.w-box,.wns-be-group-tab .w-box{box-shadow:none}.w-box-head{font-weight:600;padding:20px 72px;position:relative;border-bottom:2px solid #008aff;font-size:20px}.w-box-head span{position:absolute;left:0;padding:0 25px;line-height:58px;background:#008aff;height:100%;top:0;color:#fff}.w-box-child,.w-box-content{padding:18px;line-height:24px;font-size:14px}.mec-count-child{width:50%;margin:0 auto}#webnus-dashboard .w-button a{color:#fff!important;border-radius:0;padding:10px 24px;font-size:12px;letter-spacing:1px;font-weight:600;background:#008aff;margin:10px 0;display:inline-block;text-transform:uppercase}#webnus-dashboard .w-box .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}.w-system-info{margin-bottom:7px}.w-system-info:first-child{margin-top:20px}.w-system-info>span{display:inline-block;min-width:145px;line-height:20px;font-size:13px}#webnus-dashboard .w-current{min-width:110px}#webnus-dashboard .w-min{min-width:65px}.w-icon{color:#fff;padding:3px;border-radius:4px;margin-right:10px;vertical-align:middle}.w-icon-green{background:#27ae60}.w-icon-red{background:#e74c3c}.extra .w-box-head{padding:20px;border-bottom:1px solid #ededed}.doc .w-box-head{color:#4cbf67}#webnus-dashboard .doc .w-button a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);margin:35px 0 17px;box-shadow:0 5px 10px -5px #4cbf67;background-color:#fff}#webnus-dashboard .support .w-button a{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);margin:13px 0 18px;box-shadow:0 5px 10px -5px #ff876c}.doc .w-box-content{background:url(../img/document.png) no-repeat right center}.doc .w-box-content p,.w-box.support .w-box-content p{width:54%;color:#666;margin-top:10px;max-width:380px}.w-box-child p{color:#666;margin-top:10px}.w-box.support{background:#fff url(../img/support.png) no-repeat top right}.w-box.support .w-box-head{width:50%;color:#ff876c}.w-box-content pre{text-align:left;background:#f5f5f5;font-size:13px;padding:20px 25px;height:480px;overflow-y:scroll}.w-box.change-log .w-box-head{color:#01c6d9}#webnus-dashboard .button{border:0;background:0 0;box-shadow:none;color:#e74c3c;font-weight:700}.w-box .state{position:absolute;top:0;left:-100vw}#webnus-dashboard .button:hover{color:#222}.w-box .state:checked~.content{-webkit-transform:none;-ms-transform:none;transform:none}.w-box .state:checked~.backdrop{bottom:0;opacity:1;z-index:1}.w-box .lightbox{position:fixed;top:0;right:0;left:0;height:0;padding:0 20px}.w-box .lightbox .content{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;overflow:hidden;position:relative;z-index:2;max-width:500px;max-height:95vh;margin:20px auto;padding:20px;background:#fff;-webkit-transform:translateY(-200%);-ms-transform:translateY(-200%);transform:translateY(-200%);-webkit-transition:.3s -webkit-transform ease-in-out;transition:.3s transform ease-in-out;border:1px solid rgba(0,0,0,.1)}.w-box .lightbox .main{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1}.w-box .lightbox .backdrop{position:fixed;z-index:-1;top:0;right:0;bottom:100%;left:0;opacity:0;background:rgba(0,0,0,.3);-webkit-transition:.3s opacity ease-in-out;transition:.3s opacity ease-in-out}.content .main p{color:#bf3737}p.mec_dash_count{font-size:60px;font-weight:600;margin:0;color:#01c6d9}.w-col-sm-3 .w-box.doc{text-align:center;min-height:auto}.w-Knowledgebase{color:#8e5cea}.mec-view-all-articles a{margin:30px 0 17px;display:inline-block;color:#fff!important;border-radius:0;padding:10px 24px;font-size:12px;letter-spacing:1px;font-weight:600;background:#8e5cea;display:inline-block;text-transform:uppercase;transition:all .24s ease;-webkit-transition:all .24s ease}.mec-view-all-articles a:hover{background-color:#222}.w-box.upcoming-events .mec-event-article{margin-bottom:22px;border-bottom:1px solid #eee;padding-bottom:16px}.w-box.upcoming-events .mec-event-article .mec-event-date{font-size:14px;color:#666}.w-box.upcoming-events .mec-event-article .mec-event-date span{font-weight:600;margin-right:4px}.w-box.upcoming-events .mec-event-article h4.mec-event-title{margin:0;font-size:15px}.w-box.upcoming-events .mec-event-article .mec-event-detail{font-size:13px;color:#999}.w-box.upcoming-events .mec-event-article .mec-detail-button{font-size:10px;font-weight:600;letter-spacing:1px;padding:4px 12px;background:#f2f2f2;float:right}.w-box.total-bookings ul li{display:inline-block;padding:4px 12px;background:#f1f1f1;margin-right:5px;border-radius:3px}.w-box.total-bookings ul li.selected{background:#fff;border:1px solid #e9e9e9}.info-msg,.mec-error,.mec-success,.warning-msg{margin:10px 0;padding:10px;border-radius:3px 3px 3px 3px}.info-msg{color:#059;background-color:#bef}.info-msg-link{background:#fff;padding:4px 12px 6px;border-radius:3px;line-height:1;font-weight:600;color:#008aff}.mec-success{color:#270;background-color:#dff2bf}.warning-msg{color:#9f6000;background-color:#feefb3}.mec-error{color:#d8000c;background-color:#ffbaba}.mec-certain-day>div,.mec-select-deselect-actions li,.mec-xi-facebook-import-events .mec-select-deselect-actions li,.mec-xi-google-import-events .mec-select-deselect-actions li{display:inline-block;position:relative;outline:0;background:#fff;border:1px solid #e2e2e2;border-radius:50px;padding:11px 21px 11px 21px;line-height:1;font-size:11px;font-weight:600;color:#444;letter-spacing:2px;height:auto;cursor:pointer;margin-top:5px;text-transform:uppercase;box-shadow:0 0 3px rgba(0,0,0,.03)}.mec-certain-day>div:hover,.mec-select-deselect-actions li:hover,.mec-xi-facebook-import-events .mec-select-deselect-actions li:hover,.mec-xi-google-import-events .mec-select-deselect-actions li:hover{border-color:#008aff;box-shadow:0 0 7px rgba(0,0,0,.1)}.mec-not-in-days-remove{border:1px solid #f99170;border-radius:20px;padding:0 0 0 2px;color:#f99170}.mec-xi-facebook-import-events .mec-success,.mec-xi-google-import-events .mec-success{width:460px}.mec-xi-facebook-import-events .mec-select-deselect-actions li,.mec-xi-google-import-events .mec-select-deselect-actions li{display:inline-block;cursor:pointer}.lity-content>div{overflow:auto}#mec_setting_contextual li{list-style:none!important;font-size:12px;margin:0;padding:6px}.mec-bbf-field-container{margin-bottom:10px}.mec-bbf-field-container label{display:block}.kc-components ul.kc-components-list li .cpicon.mec-kingcomposer-icon,.kc-element-icon .cpicon.mec-kingcomposer-icon{background:url(../img/ico-mec-vc.png) no-repeat center center;background-size:auto;background-repeat:no-repeat}.mec-toggle-month-divider{display:none}.w-welcome p span{background:#fff;padding:4px 10px}#mec_masonry_skin_options_container .mec-form-row .description{margin-left:0;padding-left:0;border:none;margin-top:-4px}/*!
2
  * Bootstrap v3.3.7 (http://getbootstrap.com)
3
  * Copyright 2011-2016 Twitter, Inc.
4
  * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
assets/css/frontend.css CHANGED
@@ -1163,7 +1163,6 @@
1163
  .mec-fes-sub-button{width: 100%;}
1164
  .mec-available-color-row span.color-selected{background-color: #fdd700; border: 3px solid #fff; box-sizing: content-box; box-shadow: 0 0 0 2px #437df9; }
1165
  .mec-fes-loading:before{content: url('../img/ajax-loader.gif'); background: transparent; border-style: none; display: block; margin-left: 47%;}
1166
- @media only screen and (max-width: 960px) {.mec-fes-submit-wide{display:none;} }
1167
 
1168
  .mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type="text"] { width: 23%; margin-right: 1.4%; }
1169
  .mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row { border-bottom: 1px solid #e8e8e8; padding-bottom: 15px; }
@@ -1192,7 +1191,7 @@
1192
  .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;}
1193
  }
1194
  @media only screen and (min-width: 768px) and (max-width: 960px) {
1195
- .mec-wrap .mec-totalcal-box .col-md-4 { position: absolute; right: 10px; top: 20px; width: initial;}
1196
  .mec-wrap .mec-totalcal-box .col-md-5 { padding-bottom: 0;}
1197
  .mec-wrap .mec-totalcal-box { padding: 37px 5px; }
1198
  }
@@ -1699,8 +1698,8 @@
1699
  /* MEC Toggle List
1700
  -------------------------------- */
1701
  .mec-events-toggle { max-width: 960px; margin-left: auto; margin-right: auto; }
1702
- .mec-events-toggle .mec-toggle-item{border:1px solid #e4e4e4;margin-bottom:15px;box-shadow:0 10px 15px #f3f3f3;cursor: pointer;}
1703
- .mec-events-toggle .mec-toggle-item-inner {position:relative;padding:30px 60px 30px 15px; background: #fff;transition:all .3s ease;}
1704
  .mec-events-toggle .mec-toggle-item-inner:hover { background: #fbfbfb;}
1705
  .mec-toggle-item-col {float: left;width: 180px;margin-top: -6px;border-right: 1px solid #e3e3e3;margin-right: 15px;}
1706
  .mec-toggle-item-col .mec-event-date {font-size: 38px;line-height: 40px;float:left;margin-right: 8px;}
@@ -1718,6 +1717,9 @@
1718
  .mec-events-toggle .mec-toggle-content h1.mec-single-title, .mec-events-toggle .mec-toggle-content .mec-single-event-bar { display: none; }
1719
  .mec-events-toggle .media-links a{ margin-bottom:0;}
1720
  .mec-events-toggle .mec-toggle-content .mec-toggle-meta{margin-bottom:14px;}
 
 
 
1721
  @media only screen and (max-width: 767px) {
1722
  .mec-toggle-item-col {float: none;width: 100%;border-right: none;margin-bottom: 5px;}
1723
  }
@@ -2156,6 +2158,20 @@
2156
  .mec-toggle-month-divider .mec-wrap .mec-month-divider:first-of-type { border-top: none; }
2157
  .mec-toggle-month-divider .mec-event-list-accordion .mec-month-divider:not(:first-of-type) ~ article { display:none; }
2158
  .mec-skin-list-events-container:not(.mec-toggle-month-divider) .mec-month-divider i { display: none;}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2159
 
2160
  /* # Featured/Canceled Label
2161
  ================================================== */
@@ -2212,6 +2228,41 @@
2212
  .mec-hourly-schedule-speaker-info { width: 90%; margin: 0 auto;}
2213
  }
2214
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2215
 
2216
  /* # Booking Modal
2217
  ================================================== */
1163
  .mec-fes-sub-button{width: 100%;}
1164
  .mec-available-color-row span.color-selected{background-color: #fdd700; border: 3px solid #fff; box-sizing: content-box; box-shadow: 0 0 0 2px #437df9; }
1165
  .mec-fes-loading:before{content: url('../img/ajax-loader.gif'); background: transparent; border-style: none; display: block; margin-left: 47%;}
 
1166
 
1167
  .mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type="text"] { width: 23%; margin-right: 1.4%; }
1168
  .mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row { border-bottom: 1px solid #e8e8e8; padding-bottom: 15px; }
1191
  .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;}
1192
  }
1193
  @media only screen and (min-width: 768px) and (max-width: 960px) {
1194
+ .mec-wrap .mec-totalcal-box .col-md-4 { position: relative; right: 10px; top: 20px; width: initial;}
1195
  .mec-wrap .mec-totalcal-box .col-md-5 { padding-bottom: 0;}
1196
  .mec-wrap .mec-totalcal-box { padding: 37px 5px; }
1197
  }
1698
  /* MEC Toggle List
1699
  -------------------------------- */
1700
  .mec-events-toggle { max-width: 960px; margin-left: auto; margin-right: auto; }
1701
+ .mec-events-toggle .mec-toggle-item{border:1px solid #e4e4e4;margin-bottom:15px;box-shadow:0 10px 15px #f3f3f3;}
1702
+ .mec-events-toggle .mec-toggle-item-inner {cursor: pointer;position:relative;padding:30px 60px 30px 15px; background: #fff;transition:all .3s ease;}
1703
  .mec-events-toggle .mec-toggle-item-inner:hover { background: #fbfbfb;}
1704
  .mec-toggle-item-col {float: left;width: 180px;margin-top: -6px;border-right: 1px solid #e3e3e3;margin-right: 15px;}
1705
  .mec-toggle-item-col .mec-event-date {font-size: 38px;line-height: 40px;float:left;margin-right: 8px;}
1717
  .mec-events-toggle .mec-toggle-content h1.mec-single-title, .mec-events-toggle .mec-toggle-content .mec-single-event-bar { display: none; }
1718
  .mec-events-toggle .media-links a{ margin-bottom:0;}
1719
  .mec-events-toggle .mec-toggle-content .mec-toggle-meta{margin-bottom:14px;}
1720
+ .mec-events-toggle #mec_speakers_details.mec-frontbox { padding: 0; margin: 0; }
1721
+ .mec-events-toggle .mec-toggle-item h3.mec-speakers { border: none; text-align: left;}
1722
+ .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: normal; padding: 0 11px 0 28px; vertical-align: middle; }
1723
  @media only screen and (max-width: 767px) {
1724
  .mec-toggle-item-col {float: none;width: 100%;border-right: none;margin-bottom: 5px;}
1725
  }
2158
  .mec-toggle-month-divider .mec-wrap .mec-month-divider:first-of-type { border-top: none; }
2159
  .mec-toggle-month-divider .mec-event-list-accordion .mec-month-divider:not(:first-of-type) ~ article { display:none; }
2160
  .mec-skin-list-events-container:not(.mec-toggle-month-divider) .mec-month-divider i { display: none;}
2161
+ .mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-month { display: inline-block; padding-top: 0; }
2162
+ .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; }
2163
+ .mec-events-toggle .mec-toogle-inner-month-divider.mec-toggle-item-inner { padding: 20px 60px 30px 15px; }
2164
+ .mec-toogle-inner-month-divider .mec-toggle-month-inner-image { float: left; clear: right; width: 100px; margin-right: 20px; margin-left: 10px; }
2165
+ .mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-detail { margin-top: -6px; }
2166
+ .mec-toogle-inner-month-divider .mec-toggle-item-col { float: none; width: 100%; margin-top: 10px; display: block; border: none; }
2167
+ .mec-events-toggle .mec-toogle-inner-month-divider .mec-toggle-title { font-size: 19px; display: block; padding-top: 10px; }
2168
+ @media only screen and (max-width: 768px) {
2169
+ .mec-events-toggle .mec-toogle-inner-month-divider .mec-toggle-title { font-size: 14px; padding-top: 0; }
2170
+ .mec-toogle-inner-month-divider .mec-toggle-item-col { margin-top: 0; }
2171
+ .mec-toogle-inner-month-divider .mec-toggle-month-inner-image { width: 70px; }
2172
+ }
2173
+
2174
+
2175
 
2176
  /* # Featured/Canceled Label
2177
  ================================================== */
2228
  .mec-hourly-schedule-speaker-info { width: 90%; margin: 0 auto;}
2229
  }
2230
 
2231
+ /* # Profile page
2232
+ ================================================== */
2233
+ .mec-profile .mec-profile-bookings { border: 2px solid #e6e6e6; text-align: center; }
2234
+ .mec-profile .mec-profile-bookings tbody tr:first-child { background: #f7f7f7; font-weight: bold; text-transform: capitalize; }
2235
+ .mec-profile .mec-profile-bookings tbody tr { border-bottom: 1px solid #e6e6e6; font-size: 14px; }
2236
+ .mec-profile .mec-profile-bookings tbody tr td { border: 1px solid #e6e6e6; padding: 10px; }
2237
+ .mec-profile .mec-profile-bookings tbody tr td:nth-child(1) { width: 4%; }
2238
+ .mec-profile .mec-profile-bookings tbody tr td:nth-child(2) { width: 37%; }
2239
+ .mec-profile .mec-profile-bookings tbody tr td:nth-child(3) { width: 24%; }
2240
+ .mec-profile .mec-profile-bookings tbody tr td:nth-child(4) { width: 15%; }
2241
+ .mec-profile .mec-profile-bookings tbody tr td:nth-child(5) { width: 10%; }
2242
+ .mec-profile .mec-profile-bookings tbody tr td:nth-child(6) { width: 10%; }
2243
+ .mec-profile .mec-event-status { padding: 5px 10px; color: #fff; border-radius: 2px; font-size: 12px; line-height: 12px; letter-spacing: 0.4px; }
2244
+ .mec-profile .mec-event-status.mec-book-confirmed { background: #50d477; }
2245
+ .mec-profile .mec-event-status.mec-book-pending { background: #fcbe69; }
2246
+ .mec-profile .mec-event-status.mec-book-rejected { background: #fe686a; }
2247
+ .mec-profile .mec-event-date { font-size: 12px; color: #888; }
2248
+ .mec-profile .mec-booking-number-of-attendees { font-size: 13px; color: #888; }
2249
+ .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; }
2250
+
2251
+ .mec-booking-attendees { background: #fff; padding: 10px; }
2252
+ .mec-booking-attendees { width: 750px; text-align: center; }
2253
+ .mec-booking-attendees-wrapper { border: 2px solid #e6e6e6; font-size: 14px; }
2254
+ .mec-booking-attendees-head { display: table; width: 100%; background: #f7f7f7; border-bottom: 1px solid #e6e6e6; font-weight: bold; }
2255
+ .mec-booking-attendees-head span,
2256
+ .mec-booking-attendees-head-content>span { vertical-align: middle; display: table-cell; padding: 7px; border-right: 1px solid #e6e6e6; }
2257
+ .mec-booking-attendees-head-content { display: table; width: 100%; border-bottom: 1px solid #e6e6e6; }
2258
+ .mec-booking-attendees-wrapper .mec-booking-attendees-head-content:last-child { border: none; }
2259
+ .mec-booking-attendees-head span:nth-child(1), .mec-booking-attendees-head-content>span:nth-child(1) { width: 4%; }
2260
+ .mec-booking-attendees-head span:nth-child(2), .mec-booking-attendees-head-content>span:nth-child(2) { width: 20%; }
2261
+ .mec-booking-attendees-head span:nth-child(3), .mec-booking-attendees-head-content>span:nth-child(3) { width: 24%; }
2262
+ .mec-booking-attendees-head span:nth-child(4), .mec-booking-attendees-head-content>span:nth-child(4) { width: 26%; }
2263
+ .mec-booking-attendees-head span:nth-child(5), .mec-booking-attendees-head-content>span:nth-child(5) { width: 26%; }
2264
+ @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; }}
2265
+
2266
 
2267
  /* # Booking Modal
2268
  ================================================== */
assets/css/frontend.min.css CHANGED
@@ -1 +1 @@
1
- .mec-wrap,.mec-wrap div{font-family:Montserrat,Helvetica,Arial,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,Helvetica,Arial,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 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 button:hover,.mec-wrap input[type=button]:hover,.mec-wrap input[type=reset]:hover,.mec-wrap input[type=submit]:hover{background:#222;color:#fff}.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-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{border:1px solid #d9d9d9}.mec-event-sharing-wrap 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-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 .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=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=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]:focus,.mec-single-event .mec-events-meta-group-booking select:focus,.mec-single-event .mec-events-meta-group-booking 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-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}.mec-single-event .mec-events-meta-group-booking input[type=checkbox]{float:left}.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}.mec-single-event .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}.mec-single-event .mec-events-meta-group-booking button[type=submit].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 dd{margin:0;padding-left:35px}.mec-single-event .mec-event-meta dd.mec-events-event-categories{min-height:35px;line-height:35px}.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{vertical-align:top;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:#8d8d8d;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-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:13px}.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}.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:auto;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:3px}.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-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:none}}.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-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}.info-msg{color:#059;background-color:#bef}.mec-success{color:#270;background-color:#dff2bf}.warning-msg{color:#9f6000;background-color:#feefb3}.mec-error{color:#d8000c;background-color:#ffbaba}.mec-fes-list ul{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{border-bottom:1px solid #eee;padding:14px 0;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-weight:600;font-size:15px}.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view{font-size:11px;padding:4px 8px;border:1px solid #e7e7e7;background:#f7f7f7;float:right;margin-left:5px}.mec-fes-list ul li .mec-fes-event-remove:hover{cursor:pointer;background:#f0b7b8;border-color:#cc4d4f}.mec-fes-list-top-actions a{font-size:11px;letter-spacing:2px;text-transform:uppercase;padding:8px 14px;border:1px solid #e3e3e3;background:#f5f5f5}.mec-fes-form-top-actions a,.mec-fes-list-top-actions a{position:relative;border:none;border-radius:0;color:#fff!important;display:inline-block;font-size:12px;letter-spacing:2px;line-height:1;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:17px 21px;background:#39c36e;-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-form .mec-form-row,.mec-fes-list .mec-form-row{margin-bottom:20px;clear:both}.mec-fes-form label{padding-right:10px;font-size:13px;display:block}.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{border-radius:0;min-width:inherit;width:auto;display:inline;background:#fcfcfc;min-height:30px;font-size:13px;border:1px solid #e0e0e0;padding:10px;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both}#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{width:100%;height:auto;color:#000;font-size:36px;font-family:Montserrat,Helvetica,Arial,sans-serif;background:0 0!important;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}@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:20px;border:1px solid #e6e6e6;margin-bottom:20px;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-fes-form .mec-meta-box-fields h4{margin:-20px;font-size:15px;font-weight:700;letter-spacing:2px;text-transform:uppercase;padding:10px 20px;background:#f5f5f5;margin-bottom:20px}.mec-fes-sub-button{width:100%}.mec-available-color-row span.color-selected{background-color:#fdd700;border:3px solid #fff;box-sizing:content-box;box-shadow:0 0 0 2px #437df9}.mec-fes-loading:before{content:url(../img/ajax-loader.gif);background:0 0;border-style:none;display:block;margin-left:47%}@media only screen and (max-width:960px){.mec-fes-submit-wide{display:none}}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text]{width:23%;margin-right:1.4%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row{border-bottom:1px solid #e8e8e8;padding-bottom:15px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row:last-of-type{border:none}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-1{width:10%}.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}@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-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)}.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:absolute;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%}}.mec-search-form{padding:20px 10px}.mec-search-form .mec-dropdown-wrap{display:table;min-height:55px;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-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)}.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}.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{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{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{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:-50px}.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}.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%}}@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}.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:700px;background:#fff;box-shadow:0 1px 55px rgba(0,0,0,.5)}.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}.mec-single-modal .flip-clock-divider .flip-clock-label{position:absolute;top:60px}.mec-single-modal .flip-clock-divider:not(:first-child){width:48px!important}.mec-single-modal .flip-clock-divider.minutes .flip-clock-label{top:150px;left:-539px}.mec-single-modal .flip-clock-divider.seconds .flip-clock-label{top:87px}.mec-single-modal .flip-clock-wrapper{left:14%}.mec-single-modal .twodaydigits>ul:nth-child(11),.mec-single-modal .twodaydigits>ul:nth-child(12),.mec-single-modal .twodaydigits>ul:nth-child(8),.mec-single-modal .twodaydigits>ul:nth-child(9){margin-top:30px!important}.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;cursor:pointer}.mec-events-toggle .mec-toggle-item-inner{position:relative;padding:30px 60px 30px 15px;background:#fff;transition:all .3s ease}.mec-events-toggle .mec-toggle-item-inner:hover{background:#fbfbfb}.mec-toggle-item-col{float:left;width:180px;margin-top:-6px;border-right:1px solid #e3e3e3;margin-right:15px}.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:inline-block}.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}@media only screen and (max-width:767px){.mec-toggle-item-col{float:none;width:100%;border-right:none;margin-bottom:5px}}.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}@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}}.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}.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}.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:10%}}@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:400 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-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}.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}}.lity-content .mec-events-meta-group-booking{max-width:520px;width:520px;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}.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}.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}.lity-content .mec-events-meta-group-booking input[type=number],.lity-content .mec-events-meta-group-booking input[type=text]{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}.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-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;width:0;height:0}.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%}}
1
+ .mec-wrap,.mec-wrap div{font-family:Montserrat,Helvetica,Arial,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,Helvetica,Arial,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 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 button:hover,.mec-wrap input[type=button]:hover,.mec-wrap input[type=reset]:hover,.mec-wrap input[type=submit]:hover{background:#222;color:#fff}.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-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{border:1px solid #d9d9d9}.mec-event-sharing-wrap 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-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 .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=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=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]:focus,.mec-single-event .mec-events-meta-group-booking select:focus,.mec-single-event .mec-events-meta-group-booking 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-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}.mec-single-event .mec-events-meta-group-booking input[type=checkbox]{float:left}.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}.mec-single-event .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}.mec-single-event .mec-events-meta-group-booking button[type=submit].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 dd{margin:0;padding-left:35px}.mec-single-event .mec-event-meta dd.mec-events-event-categories{min-height:35px;line-height:35px}.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{vertical-align:top;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:#8d8d8d;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-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:13px}.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}.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:auto;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:3px}.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-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:none}}.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-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}.info-msg{color:#059;background-color:#bef}.mec-success{color:#270;background-color:#dff2bf}.warning-msg{color:#9f6000;background-color:#feefb3}.mec-error{color:#d8000c;background-color:#ffbaba}.mec-fes-list ul{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{border-bottom:1px solid #eee;padding:14px 0;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-weight:600;font-size:15px}.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view{font-size:11px;padding:4px 8px;border:1px solid #e7e7e7;background:#f7f7f7;float:right;margin-left:5px}.mec-fes-list ul li .mec-fes-event-remove:hover{cursor:pointer;background:#f0b7b8;border-color:#cc4d4f}.mec-fes-list-top-actions a{font-size:11px;letter-spacing:2px;text-transform:uppercase;padding:8px 14px;border:1px solid #e3e3e3;background:#f5f5f5}.mec-fes-form-top-actions a,.mec-fes-list-top-actions a{position:relative;border:none;border-radius:0;color:#fff!important;display:inline-block;font-size:12px;letter-spacing:2px;line-height:1;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:17px 21px;background:#39c36e;-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-form .mec-form-row,.mec-fes-list .mec-form-row{margin-bottom:20px;clear:both}.mec-fes-form label{padding-right:10px;font-size:13px;display:block}.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{border-radius:0;min-width:inherit;width:auto;display:inline;background:#fcfcfc;min-height:30px;font-size:13px;border:1px solid #e0e0e0;padding:10px;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both}#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{width:100%;height:auto;color:#000;font-size:36px;font-family:Montserrat,Helvetica,Arial,sans-serif;background:0 0!important;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}@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:20px;border:1px solid #e6e6e6;margin-bottom:20px;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-fes-form .mec-meta-box-fields h4{margin:-20px;font-size:15px;font-weight:700;letter-spacing:2px;text-transform:uppercase;padding:10px 20px;background:#f5f5f5;margin-bottom:20px}.mec-fes-sub-button{width:100%}.mec-available-color-row span.color-selected{background-color:#fdd700;border:3px solid #fff;box-sizing:content-box;box-shadow:0 0 0 2px #437df9}.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:23%;margin-right:1.4%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row{border-bottom:1px solid #e8e8e8;padding-bottom:15px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row:last-of-type{border:none}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-1{width:10%}.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}@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-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)}.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%}}.mec-search-form{padding:20px 10px}.mec-search-form .mec-dropdown-wrap{display:table;min-height:55px;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-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)}.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}.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{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{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{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:-50px}.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}.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%}}@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}.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:700px;background:#fff;box-shadow:0 1px 55px rgba(0,0,0,.5)}.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}.mec-single-modal .flip-clock-divider .flip-clock-label{position:absolute;top:60px}.mec-single-modal .flip-clock-divider:not(:first-child){width:48px!important}.mec-single-modal .flip-clock-divider.minutes .flip-clock-label{top:150px;left:-539px}.mec-single-modal .flip-clock-divider.seconds .flip-clock-label{top:87px}.mec-single-modal .flip-clock-wrapper{left:14%}.mec-single-modal .twodaydigits>ul:nth-child(11),.mec-single-modal .twodaydigits>ul:nth-child(12),.mec-single-modal .twodaydigits>ul:nth-child(8),.mec-single-modal .twodaydigits>ul:nth-child(9){margin-top:30px!important}.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}.mec-events-toggle .mec-toggle-item-inner:hover{background:#fbfbfb}.mec-toggle-item-col{float:left;width:180px;margin-top:-6px;border-right:1px solid #e3e3e3;margin-right:15px}.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:inline-block}.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-col{float:none;width:100%;border-right:none;margin-bottom:5px}}.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}@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}}.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}.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}.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:10%}}@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:400 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}.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}.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:4%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:37%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:24%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:15%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:10%}.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-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:750px;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}.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}}.lity-content .mec-events-meta-group-booking{max-width:520px;width:520px;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}.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}.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}.lity-content .mec-events-meta-group-booking input[type=number],.lity-content .mec-events-meta-group-booking input[type=text]{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}.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-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;width:0;height:0}.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%}}
assets/js/events.js CHANGED
@@ -203,7 +203,7 @@ jQuery(document).ready(function($)
203
  });
204
 
205
  mec_location_toggle();
206
- mec_organizer_toggle()
207
 
208
  $('#mec_repeat').on('change', function()
209
  {
@@ -255,6 +255,16 @@ jQuery(document).ready(function($)
255
 
256
  $('#mec_tickets').append(html);
257
  $('#mec_new_ticket_key').val(parseInt(key)+1);
 
 
 
 
 
 
 
 
 
 
258
  });
259
 
260
  $('#mec_add_hourly_schedule_day_button').on('click', function()
@@ -392,6 +402,12 @@ function mec_hourly_schedule_remove(day, i)
392
  jQuery("#mec_hourly_schedule_row"+day+'_'+i).remove();
393
  }
394
 
 
 
 
 
 
 
395
  function mec_ticket_remove(i)
396
  {
397
  jQuery("#mec_ticket_row"+i).remove();
@@ -453,4 +469,27 @@ function mec_reg_fields_option_remove(field_key, key)
453
  function mec_reg_fields_remove(key)
454
  {
455
  jQuery("#mec_reg_fields_"+key).remove();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
456
  }
203
  });
204
 
205
  mec_location_toggle();
206
+ mec_organizer_toggle();
207
 
208
  $('#mec_repeat').on('change', function()
209
  {
255
 
256
  $('#mec_tickets').append(html);
257
  $('#mec_new_ticket_key').val(parseInt(key)+1);
258
+
259
+ $('.mec_add_price_date_button').off('click').on('click', function()
260
+ {
261
+ mec_handle_add_price_date_button(this);
262
+ });
263
+ });
264
+
265
+ $('.mec_add_price_date_button').off('click').on('click', function()
266
+ {
267
+ mec_handle_add_price_date_button(this);
268
  });
269
 
270
  $('#mec_add_hourly_schedule_day_button').on('click', function()
402
  jQuery("#mec_hourly_schedule_row"+day+'_'+i).remove();
403
  }
404
 
405
+ function mec_hourly_schedule_day_remove(day)
406
+ {
407
+ console.log('here', day);
408
+ jQuery("#mec_meta_box_hourly_schedule_day_"+day).remove();
409
+ }
410
+
411
  function mec_ticket_remove(i)
412
  {
413
  jQuery("#mec_ticket_row"+i).remove();
469
  function mec_reg_fields_remove(key)
470
  {
471
  jQuery("#mec_reg_fields_"+key).remove();
472
+ }
473
+
474
+ function mec_handle_add_price_date_button(e)
475
+ {
476
+ var key = jQuery(e).data('key');
477
+ var p = jQuery('#mec_new_ticket_price_key_'+key).val();
478
+ var html = jQuery('#mec_new_ticket_price_raw_'+key).html().replace(/:i:/g, key).replace(/:j:/g, p);
479
+
480
+ jQuery('#mec-ticket-price-dates-'+key).append(html);
481
+ jQuery('#mec_new_ticket_price_key_'+key).val(parseInt(p)+1);
482
+ jQuery('#mec-ticket-price-dates-'+key+' .new_added').datepicker(
483
+ {
484
+ changeYear: true,
485
+ changeMonth: true,
486
+ dateFormat: 'yy-mm-dd',
487
+ gotoCurrent: true,
488
+ yearRange: 'c-3:c+5',
489
+ });
490
+ }
491
+
492
+ function mec_ticket_price_remove(ticket_key, price_key)
493
+ {
494
+ jQuery("#mec_ticket_price_raw_"+ticket_key+"_"+price_key).remove();
495
  }
assets/js/frontend.js CHANGED
@@ -985,10 +985,13 @@ var mecSingleEventDisplayer = {
985
 
986
  if (settings.style == 'novel')
987
  {
988
- $('.mec-single-event-novel').colourBrightness();
989
- $('.mec-single-event-novel').each(function () {
990
- $(this).colourBrightness()
991
- });
 
 
 
992
  }
993
  }
994
 
@@ -1399,9 +1402,11 @@ var mecSingleEventDisplayer = {
1399
  var owl = $("#mec-owl-calendar-d-table-"+settings.id+"-"+month_id);
1400
  owl.owlCarousel(
1401
  {
1402
- items : 22, //22 items above 1000px browser width
1403
  responsiveClass: true,
1404
  responsive: {
 
 
 
1405
  479: {
1406
  items: 4,
1407
  },
@@ -1413,6 +1418,9 @@ var mecSingleEventDisplayer = {
1413
  },
1414
  1000: {
1415
  items: 19,
 
 
 
1416
  }
1417
  },
1418
  dots: false,
@@ -1941,7 +1949,6 @@ var mecSingleEventDisplayer = {
1941
  });
1942
  function initMasonry()
1943
  {
1944
- console.log()
1945
  var $container = $("#mec_skin_"+settings.id+" .mec-event-masonry");
1946
  var $grid = $container.isotope({
1947
  filter: '*',
@@ -1956,9 +1963,13 @@ var mecSingleEventDisplayer = {
1956
  queue: false
1957
  }
1958
  });
1959
- console.log(settings.masonry_like_grid);
1960
  if (settings.masonry_like_grid == 1) $grid.isotope({ sortBy: 'date' });
1961
 
 
 
 
 
 
1962
  $("#mec_skin_"+settings.id+" .mec-events-masonry-cats a").click(function()
1963
  {
1964
  var selector = $(this).attr('data-filter');
@@ -2161,6 +2172,16 @@ var mecSingleEventDisplayer = {
2161
  var id = $(this).data('event-id');
2162
  var occurrence = get_parameter_by_name('occurrence', href);
2163
 
 
 
 
 
 
 
 
 
 
 
2164
  mecSingleEventDisplayer.getSinglePage(id, occurrence, settings.ajax_url, settings.sed_method);
2165
  });
2166
  }
@@ -2358,6 +2379,16 @@ var mecSingleEventDisplayer = {
2358
  var id = $(this).data('event-id');
2359
  var occurrence = get_parameter_by_name('occurrence', href);
2360
 
 
 
 
 
 
 
 
 
 
 
2361
  mecSingleEventDisplayer.getSinglePage(id, occurrence, settings.ajax_url, settings.sed_method);
2362
  });
2363
  }
@@ -2981,7 +3012,7 @@ function get_parameter_by_name(name, url)
2981
  });
2982
 
2983
  // Register Booking Smooth Scroll
2984
- $('a[href="#mec-events-meta-group-booking"]').click(function()
2985
  {
2986
  if(location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname)
2987
  {
@@ -3001,5 +3032,15 @@ function get_parameter_by_name(name, url)
3001
  }
3002
  }
3003
  });
 
 
 
 
 
 
 
 
 
 
3004
  });
3005
  })(jQuery);
985
 
986
  if (settings.style == 'novel')
987
  {
988
+ if ($('.mec-single-event-novel').length > 0)
989
+ {
990
+ $('.mec-single-event-novel').colourBrightness();
991
+ $('.mec-single-event-novel').each(function () {
992
+ $(this).colourBrightness()
993
+ });
994
+ }
995
  }
996
  }
997
 
1402
  var owl = $("#mec-owl-calendar-d-table-"+settings.id+"-"+month_id);
1403
  owl.owlCarousel(
1404
  {
 
1405
  responsiveClass: true,
1406
  responsive: {
1407
+ 0: {
1408
+ items: 2,
1409
+ },
1410
  479: {
1411
  items: 4,
1412
  },
1418
  },
1419
  1000: {
1420
  items: 19,
1421
+ },
1422
+ 1200: {
1423
+ items: 22,
1424
  }
1425
  },
1426
  dots: false,
1949
  });
1950
  function initMasonry()
1951
  {
 
1952
  var $container = $("#mec_skin_"+settings.id+" .mec-event-masonry");
1953
  var $grid = $container.isotope({
1954
  filter: '*',
1963
  queue: false
1964
  }
1965
  });
 
1966
  if (settings.masonry_like_grid == 1) $grid.isotope({ sortBy: 'date' });
1967
 
1968
+ // Fix Elementor tab
1969
+ $('.elementor-tabs').find('.elementor-tab-title').click(function(){
1970
+ $grid.isotope({ sortBy: 'date' });
1971
+ });
1972
+
1973
  $("#mec_skin_"+settings.id+" .mec-events-masonry-cats a").click(function()
1974
  {
1975
  var selector = $(this).attr('data-filter');
2172
  var id = $(this).data('event-id');
2173
  var occurrence = get_parameter_by_name('occurrence', href);
2174
 
2175
+ mecSingleEventDisplayer.getSinglePage(id, occurrence, settings.ajax_url, settings.sed_method);
2176
+ });
2177
+ $("#mec_skin_"+settings.id+" .mec-event-image a img").off('click').on('click', function(e)
2178
+ {
2179
+ e.preventDefault();
2180
+ var href = $(this).parent().attr('href');
2181
+
2182
+ var id = $(this).parent().data('event-id');
2183
+ var occurrence = get_parameter_by_name('occurrence', href);
2184
+
2185
  mecSingleEventDisplayer.getSinglePage(id, occurrence, settings.ajax_url, settings.sed_method);
2186
  });
2187
  }
2379
  var id = $(this).data('event-id');
2380
  var occurrence = get_parameter_by_name('occurrence', href);
2381
 
2382
+ mecSingleEventDisplayer.getSinglePage(id, occurrence, settings.ajax_url, settings.sed_method);
2383
+ });
2384
+ $("#mec_skin_"+settings.id+" .mec-event-image a img").off('click').on('click', function(e)
2385
+ {
2386
+ e.preventDefault();
2387
+ var href = $(this).parent().attr('href');
2388
+
2389
+ var id = $(this).parent().data('event-id');
2390
+ var occurrence = get_parameter_by_name('occurrence', href);
2391
+
2392
  mecSingleEventDisplayer.getSinglePage(id, occurrence, settings.ajax_url, settings.sed_method);
2393
  });
2394
  }
3012
  });
3013
 
3014
  // Register Booking Smooth Scroll
3015
+ $('a[href^="#mec-events-meta-group-booking"]').click(function()
3016
  {
3017
  if(location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname)
3018
  {
3032
  }
3033
  }
3034
  });
3035
+
3036
+ // Load Information widget under title in mobile/tablet
3037
+ if ($('.single-mec-events .mec-single-event:not(".mec-single-modern")').length > 0) {
3038
+ var html = $('.single-mec-events .mec-event-info-desktop.mec-event-meta.mec-color-before.mec-frontbox')[0].outerHTML;
3039
+ if (Math.max(document.documentElement.clientWidth, window.innerWidth || 0) < 960) {
3040
+ $('.single-mec-events .col-md-4 .mec-event-info-desktop.mec-event-meta.mec-color-before.mec-frontbox').remove();
3041
+ $('.single-mec-events .mec-event-info-mobile').html(html)
3042
+ }
3043
+ }
3044
+
3045
  });
3046
  })(jQuery);
changelog.txt CHANGED
@@ -1,4 +1,29 @@
1
- v 3.3.58 December 2018
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  - Compatibility: WordPress v5.0
3
  - Improved: WPML Compatibility
4
  - Fixed: Stripe gateway
1
+ v 3.4.021 January 2019
2
+ - Added: Profile shortcode to show user bookings’ details
3
+ - Added: Import from Meetup
4
+ - Added: Auto sync for importing meetup events
5
+ - Added: Ability to remove hourly schedule days
6
+ - Added: Ability to change ticket price per date periods
7
+ - Fixed: Issue in Meetup and Stripe API
8
+ - Fixed: Daily view in mobile and tablet
9
+ - Fixed: Custom color in masonry category
10
+ - Fixed: Masonry in Elementor tab
11
+ - Fixed: Typography issues
12
+ - Fixed: Google reCaptcha in Frontend submission form
13
+ - Fixed: Booking smooth scroll
14
+ - Fixed: Event information displaying order in single event page (default skin)
15
+ - Fixed: Date-picker in backend
16
+ - Fixed: Display Grid clean and Monthly View when search box is enable
17
+ - Fixed: Load languages in Lite version
18
+ - Fixed: Load speaker in accordion toggle view
19
+ - Fixed: Alt tag for images in Masonry view
20
+ - Fixed: Modal view when click on thumbnails
21
+ - Fixed: Console error (colorBrightness when no event exists)
22
+ - Fixed: HTML tags in paragraph field of booking form both in backend and frontend
23
+ - Fixed: Invalid occurrence date in single event pages
24
+ - Fixed: Some minor issues
25
+
26
+ v 3.3.5 – 8 December 2018
27
  - Compatibility: WordPress v5.0
28
  - Improved: WPML Compatibility
29
  - Fixed: Stripe gateway
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: 2018-11-19 13:45+0330\n"
6
- "PO-Revision-Date: 2018-11-19 13:45+0330\n"
7
  "Last-Translator: Jogon <koenig@kafinanz.de>\n"
8
  "Language-Team: German\n"
9
  "Language: de_DE\n"
@@ -17,9 +17,9 @@ msgstr ""
17
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:23
21
- #: app/features/ix/import.php:36 app/features/ix/thirdparty.php:23
22
- #: app/widgets/MEC.php:33
23
  msgid "Modern Events Calendar"
24
  msgstr "Moderner Event Kalender "
25
 
@@ -54,24 +54,24 @@ msgstr "Allgemeine Einstellungen"
54
  msgid "Select Type"
55
  msgstr "Alles Auswählen"
56
 
57
- #: app/features/colors.php:50 app/features/fes/form.php:566
58
- #: app/features/mec/settings.php:884
59
  msgid "Event Color"
60
  msgstr "Farbe der Veranstaltung"
61
 
62
  #: app/features/contextual.php:55 app/features/mec.php:210
63
  #: app/features/mec/gateways.php:20 app/features/mec/messages.php:20
64
  #: app/features/mec/notifications.php:19 app/features/mec/regform.php:19
65
- #: app/features/mec/settings.php:35 app/features/mec/settings.php:263
66
  #: app/features/mec/styles.php:20 app/features/mec/styling.php:46
67
- #: app/features/mec/support.php:18 app/libraries/factory.php:208
68
  msgid "Settings"
69
  msgstr "Einstellungen"
70
 
71
- #: app/features/contextual.php:62 app/features/events.php:1155
72
  #: app/features/mec/gateways.php:29 app/features/mec/messages.php:29
73
  #: app/features/mec/notifications.php:28 app/features/mec/regform.php:28
74
- #: app/features/mec/regform.php:88 app/features/mec/settings.php:198
75
  #: app/features/mec/styles.php:29 app/features/mec/styling.php:55
76
  #: app/features/mec/support.php:27
77
  msgid "Booking Form"
@@ -94,7 +94,7 @@ msgstr ""
94
  #: app/features/contextual.php:70 app/features/mec/gateways.php:36
95
  #: app/features/mec/gateways.php:90 app/features/mec/messages.php:36
96
  #: app/features/mec/notifications.php:35 app/features/mec/regform.php:35
97
- #: app/features/mec/settings.php:205 app/features/mec/styles.php:36
98
  #: app/features/mec/styling.php:62 app/features/mec/support.php:34
99
  msgid "Payment Gateways"
100
  msgstr "Zahlungs-Gateways"
@@ -112,7 +112,7 @@ msgstr ""
112
  #: app/features/contextual.php:77 app/features/mec/gateways.php:45
113
  #: app/features/mec/messages.php:45 app/features/mec/notifications.php:44
114
  #: app/features/mec/notifications.php:89 app/features/mec/regform.php:43
115
- #: app/features/mec/settings.php:215 app/features/mec/styles.php:45
116
  #: app/features/mec/styling.php:71 app/features/mec/support.php:43
117
  msgid "Notifications"
118
  msgstr "Benachrichtigungen"
@@ -132,7 +132,8 @@ msgstr ""
132
  #: app/features/contextual.php:88 app/features/ix/export.php:10
133
  #: app/features/ix/export_g_calendar.php:14 app/features/ix/import.php:10
134
  #: app/features/ix/import_f_calendar.php:10
135
- #: app/features/ix/import_g_calendar.php:10 app/features/ix/sync.php:10
 
136
  #: app/features/ix/thirdparty.php:10
137
  msgid "Google Cal. Import"
138
  msgstr "Google Calender Import"
@@ -152,7 +153,8 @@ msgstr ""
152
  #: app/features/contextual.php:95 app/features/ix/export.php:11
153
  #: app/features/ix/export_g_calendar.php:15 app/features/ix/import.php:11
154
  #: app/features/ix/import_f_calendar.php:11
155
- #: app/features/ix/import_g_calendar.php:11 app/features/ix/sync.php:11
 
156
  #: app/features/ix/thirdparty.php:11
157
  msgid "Google Cal. Export"
158
  msgstr "Google Kalender Export"
@@ -172,7 +174,8 @@ msgstr ""
172
  #: app/features/contextual.php:102 app/features/ix/export.php:12
173
  #: app/features/ix/export_g_calendar.php:16 app/features/ix/import.php:12
174
  #: app/features/ix/import_f_calendar.php:12
175
- #: app/features/ix/import_g_calendar.php:12 app/features/ix/sync.php:12
 
176
  #: app/features/ix/thirdparty.php:12
177
  msgid "Facebook Cal. Import"
178
  msgstr "Facebook Kalender Import"
@@ -190,86 +193,86 @@ msgstr ""
190
  "\"0\" allowfullscreen></iframe>"
191
 
192
  #: app/features/contextual.php:117 app/features/mec/settings.php:42
193
- #: app/features/mec/settings.php:265
194
  msgid "General Options"
195
  msgstr "Allgemeine Einstellungen"
196
 
197
  #: app/features/contextual.php:139 app/features/mec/settings.php:54
198
- #: app/features/mec/settings.php:417
199
  msgid "Slugs/Permalinks"
200
  msgstr "Slug/Permalinks"
201
 
202
  #: app/features/contextual.php:152 app/features/mec/settings.php:60
203
- #: app/features/mec/settings.php:437
204
  msgid "Event Details/Single Event Page"
205
  msgstr "Event Details / Einzelveranstaltungsseite"
206
 
207
  #: app/features/contextual.php:166 app/features/mec/settings.php:66
208
- #: app/features/mec/settings.php:478
209
  msgid "Currency Options"
210
  msgstr "Währungseinstellungen"
211
 
212
  #: app/features/contextual.php:182 app/features/mec/settings.php:78
213
- #: app/features/mec/settings.php:545
214
  msgid "Google Maps Options"
215
  msgstr "Google Maps Einstellungen"
216
 
217
  #: app/features/contextual.php:244 app/features/mec/settings.php:84
218
- #: app/features/mec/settings.php:619
219
  msgid "Google Recaptcha Options"
220
  msgstr "Google Recaptcha Einstellungen"
221
 
222
  #: app/features/contextual.php:258 app/features/mec/settings.php:114
223
- #: app/features/mec/settings.php:737
224
  msgid "Countdown Options"
225
  msgstr "Countdown Einstellungsoptionen"
226
 
227
  #: app/features/contextual.php:268 app/features/mec/settings.php:120
228
- #: app/features/mec/settings.php:758
229
  msgid "Social Networks"
230
  msgstr "Soziale Netzwerke"
231
 
232
  #: app/features/contextual.php:278 app/features/mec/settings.php:126
233
- #: app/features/mec/settings.php:783
234
  msgid "Next Event Module"
235
  msgstr "Nächstes Veranstaltung Modul"
236
 
237
  #: app/features/contextual.php:286 app/features/mec/settings.php:132
238
- #: app/features/mec/settings.php:811
239
  msgid "Frontend Event Submission"
240
  msgstr "Erstellung von Veranstaltungen im Frontend"
241
 
242
  #: app/features/contextual.php:298 app/features/events.php:580
243
- #: app/features/mec/settings.php:138
244
  msgid "Exceptional Days"
245
  msgstr "Herausgenommene Tage "
246
 
247
  #: app/features/contextual.php:308 app/features/events.php:263
248
- #: app/features/mec/settings.php:150 app/features/mec/settings.php:978
249
  msgid "Booking"
250
  msgstr "Buchung / Reservierung"
251
 
252
- #: app/features/contextual.php:318 app/features/mec/settings.php:156
253
- #: app/features/mec/settings.php:1068
254
  msgid "Coupons"
255
  msgstr "Gutscheine"
256
 
257
- #: app/features/contextual.php:326 app/features/mec/settings.php:174
258
- #: app/features/mec/settings.php:1209
259
  msgid "BuddyPress Integration"
260
  msgstr "Buddy Press Integration"
261
 
262
- #: app/features/contextual.php:334 app/features/mec/settings.php:180
263
- #: app/features/mec/settings.php:1239
264
  msgid "Mailchimp Integration"
265
  msgstr "Mailchimp Integration"
266
 
267
- #: app/features/contextual.php:346 app/features/mec/settings.php:186
268
- #: app/features/mec/settings.php:1275
269
  msgid "MEC Activation"
270
  msgstr "MEC Aktivierung"
271
 
272
- #: app/features/events.php:132 app/features/ix/export.php:33
273
  #: app/features/mec/dashboard.php:92 app/skins/daily_view/tpl.php:79
274
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
275
  msgid "Events"
@@ -279,8 +282,8 @@ msgstr "Veranstaltungen"
279
  #: app/features/mec/meta_boxes/display_options.php:708
280
  #: app/features/mec/meta_boxes/display_options.php:746
281
  #: app/features/mec/meta_boxes/display_options.php:775
282
- #: app/skins/daily_view/tpl.php:80 app/skins/monthly_view/tpl.php:71
283
- #: app/skins/yearly_view/tpl.php:69
284
  msgid "Event"
285
  msgstr "Veranstaltung"
286
 
@@ -292,8 +295,8 @@ msgstr "Veranstaltung hinzufügen"
292
  msgid "Add New Event"
293
  msgstr "Neue Veranstaltung hinzufügen"
294
 
295
- #: app/features/events.php:136 app/features/ix.php:2784
296
- #: app/features/ix/thirdparty.php:41 app/skins/map/tpl.php:54
297
  msgid "No events found!"
298
  msgstr "Keine Veranstaltungen gefunden!"
299
 
@@ -324,16 +327,16 @@ msgstr "Keine Veranstaltungen im Papierkorb gefunden!"
324
  #: app/features/mec/meta_boxes/search_form.php:292
325
  #: app/features/mec/meta_boxes/search_form.php:332
326
  #: app/features/mec/meta_boxes/search_form.php:379
327
- #: app/features/mec/meta_boxes/search_form.php:426 app/libraries/main.php:4151
328
- #: app/libraries/skins.php:712 app/skins/single/default.php:155
329
- #: app/skins/single/default.php:360 app/skins/single/m1.php:167
330
- #: app/skins/single/m2.php:99 app/skins/single/modern.php:96
331
  msgid "Category"
332
  msgstr "Kategorie"
333
 
334
- #: app/features/events.php:153 app/features/fes/form.php:518
335
  #: app/features/mec.php:198 app/features/mec/meta_boxes/filter.php:70
336
- #: app/libraries/main.php:4150
337
  msgid "Categories"
338
  msgstr "Kategorien"
339
 
@@ -405,19 +408,19 @@ msgstr "Wählen Sie ein Symbol"
405
  msgid "Event Details"
406
  msgstr "Veranstaltungsdetails"
407
 
408
- #: app/features/events.php:296 app/features/events.php:1894
409
- #: app/features/events.php:1938 app/features/fes/form.php:479
410
- #: app/features/ix.php:2328 app/features/ix.php:2369
411
- #: app/features/mec/settings.php:860 app/libraries/main.php:4183
412
  #: app/widgets/single.php:103
413
  msgid "Event Cost"
414
  msgstr ""
415
  "Bruttopreis des Events in Euro, 0 für kostenlos oder z.B. 39, ohne €-Zeichen"
416
 
417
- #: app/features/events.php:299 app/features/fes/form.php:482
418
- #: app/libraries/main.php:4184 app/skins/single/default.php:90
419
- #: app/skins/single/default.php:295 app/skins/single/m1.php:49
420
- #: app/skins/single/modern.php:182
421
  msgid "Cost"
422
  msgstr " Preis"
423
 
@@ -429,35 +432,36 @@ msgstr "Zusätzliche Anmerkungen zum Event "
429
  msgid "Guest Data"
430
  msgstr "Gäste Daten"
431
 
432
- #: app/features/events.php:380 app/features/fes/form.php:441
433
  #: app/features/labels.php:177 app/features/organizers.php:268
434
- #: app/libraries/notifications.php:554 app/modules/booking/steps/form.php:24
435
- #: app/modules/booking/steps/form.php:25
436
  msgid "Name"
437
  msgstr "Name"
438
 
439
- #: app/features/events.php:381 app/features/events.php:1190
440
- #: app/features/fes/form.php:437 app/features/mec/regform.php:118
441
  #: app/features/organizers.php:110 app/features/organizers.php:150
442
- #: app/features/speakers.php:119 app/features/speakers.php:179
443
- #: app/libraries/main.php:1067 app/libraries/main.php:1132
444
- #: app/libraries/main.php:2067 app/libraries/notifications.php:555
445
- #: app/modules/booking/steps/form.php:28 app/modules/booking/steps/form.php:29
446
- #: app/skins/single.php:216 app/skins/single/default.php:197
447
- #: app/skins/single/default.php:402 app/skins/single/m1.php:107
448
- #: app/skins/single/m2.php:39 app/skins/single/modern.php:38
 
449
  msgid "Email"
450
  msgstr "Email"
451
 
452
- #: app/features/events.php:385 app/features/fes/form.php:221
453
  msgid "Date and Time"
454
  msgstr "Datum und Uhrzeit"
455
 
456
  #: app/features/events.php:389 app/features/events.php:393
457
- #: app/features/events.php:1715 app/features/events.php:1894
458
- #: app/features/events.php:1938 app/features/fes/form.php:225
459
- #: app/features/fes/form.php:229 app/features/ix.php:2328
460
- #: app/features/ix.php:2369 app/features/ix/import_g_calendar.php:37
461
  #: app/features/mec/dashboard.php:269
462
  #: app/features/mec/meta_boxes/display_options.php:42
463
  #: app/features/mec/meta_boxes/display_options.php:139
@@ -476,45 +480,45 @@ msgid "Start Date"
476
  msgstr "Start Datum"
477
 
478
  #: app/features/events.php:421 app/features/events.php:461
479
- #: app/features/events.php:860 app/features/events.php:878
480
- #: app/features/events.php:930 app/features/events.php:948
481
- #: app/features/fes/form.php:257 app/features/fes/form.php:297
482
  msgid "AM"
483
  msgstr "AM"
484
 
485
  #: app/features/events.php:422 app/features/events.php:462
486
- #: app/features/events.php:861 app/features/events.php:879
487
- #: app/features/events.php:931 app/features/events.php:949
488
- #: app/features/fes/form.php:258 app/features/fes/form.php:298
489
  msgid "PM"
490
  msgstr "PM"
491
 
492
  #: app/features/events.php:429 app/features/events.php:433
493
- #: app/features/events.php:1716 app/features/events.php:1894
494
- #: app/features/events.php:1938 app/features/fes/form.php:265
495
- #: app/features/fes/form.php:269 app/features/ix.php:2328
496
- #: app/features/ix.php:2369 app/features/ix/import_g_calendar.php:43
497
  #: app/features/mec/dashboard.php:270
498
  msgid "End Date"
499
  msgstr "Ende Datum"
500
 
501
- #: app/features/events.php:468 app/features/fes/form.php:304
502
  msgid "All Day Event"
503
  msgstr "Ganztägige Veranstaltung"
504
 
505
- #: app/features/events.php:471 app/features/fes/form.php:307
506
  msgid "Hide Event Time"
507
  msgstr "Event / Veranstaltungszeit verbergen"
508
 
509
- #: app/features/events.php:474 app/features/fes/form.php:310
510
  msgid "Hide Event End Time"
511
  msgstr "Ende-Zeit der Veranstaltung verbergen"
512
 
513
- #: app/features/events.php:478 app/features/fes/form.php:314
514
  msgid "Time Comment"
515
  msgstr "z.B. MEZ "
516
 
517
- #: app/features/events.php:479 app/features/fes/form.php:315
518
  msgid ""
519
  "It shows next to event time on calendar. You can insert Timezone etc. in "
520
  "this field."
@@ -522,138 +526,139 @@ msgstr ""
522
  "Neben der Zeit im Kalender wird diese Angabe angezeigt. In diesem Feld "
523
  "können Sie z.B. eine Zeitzone wie z.B. \"MEZ\" usw. einfügen. "
524
 
525
- #: app/features/events.php:485 app/features/fes/form.php:321
526
  msgid "Event Repeating"
527
  msgstr "Wiederholende Veranstaltung"
528
 
529
- #: app/features/events.php:489 app/features/fes/form.php:325
530
  msgid "Repeats"
531
  msgstr "Wiederholend"
532
 
533
- #: app/features/events.php:491 app/features/fes/form.php:327
534
  #: app/features/mec/dashboard.php:272 app/skins/full_calendar/tpl.php:68
535
  msgid "Daily"
536
  msgstr "Täglich"
537
 
538
- #: app/features/events.php:492 app/features/fes/form.php:328
539
  msgid "Every Weekday"
540
  msgstr "An jedem Wochentag"
541
 
542
- #: app/features/events.php:493 app/features/fes/form.php:329
543
  msgid "Every Weekend"
544
  msgstr "An jedem Wochenende"
545
 
546
- #: app/features/events.php:494 app/features/fes/form.php:330
547
  msgid "Certain Weekdays"
548
  msgstr "Bestimmte Wochentage"
549
 
550
- #: app/features/events.php:495 app/features/fes/form.php:331
551
  #: app/skins/full_calendar/tpl.php:67
552
  msgid "Weekly"
553
  msgstr "Wöchentlich"
554
 
555
- #: app/features/events.php:496 app/features/fes/form.php:332
556
  #: app/features/mec/dashboard.php:273 app/skins/full_calendar/tpl.php:66
557
  msgid "Monthly"
558
  msgstr "Monatlich"
559
 
560
- #: app/features/events.php:497 app/features/fes/form.php:333
561
  #: app/features/mec/dashboard.php:274 app/skins/full_calendar/tpl.php:65
562
  msgid "Yearly"
563
  msgstr "Jährlich"
564
 
565
- #: app/features/events.php:498 app/features/fes/form.php:334
566
  msgid "Custom Days"
567
  msgstr "Benutzerdefinierte Tage"
568
 
569
- #: app/features/events.php:502 app/features/fes/form.php:338
570
  msgid "Repeat Interval"
571
  msgstr "Wiederholungsintervall"
572
 
573
- #: app/features/events.php:503 app/features/fes/form.php:339
574
  msgid "Repeat interval"
575
  msgstr "Wiederholungsintervall"
576
 
577
- #: app/features/events.php:506 app/features/fes/form.php:342
578
  msgid "Week Days"
579
  msgstr "Wochentage"
580
 
581
- #: app/features/events.php:507 app/features/fes/form.php:343
582
- #: app/libraries/main.php:401
583
  msgid "Monday"
584
  msgstr "Montag"
585
 
586
- #: app/features/events.php:508 app/features/fes/form.php:344
587
- #: app/libraries/main.php:401
588
  msgid "Tuesday"
589
  msgstr "Dienstag"
590
 
591
- #: app/features/events.php:509 app/features/fes/form.php:345
592
- #: app/libraries/main.php:401
593
  msgid "Wednesday"
594
  msgstr "Mittwoch"
595
 
596
- #: app/features/events.php:510 app/features/fes/form.php:346
597
- #: app/libraries/main.php:401
598
  msgid "Thursday"
599
  msgstr "Donnerstag"
600
 
601
- #: app/features/events.php:511 app/features/fes/form.php:347
602
- #: app/libraries/main.php:401
603
  msgid "Friday"
604
  msgstr "Freitag"
605
 
606
- #: app/features/events.php:512 app/features/fes/form.php:348
607
- #: app/libraries/main.php:401
608
  msgid "Saturday"
609
  msgstr "Samstag"
610
 
611
- #: app/features/events.php:513 app/features/fes/form.php:349
612
- #: app/libraries/main.php:401
613
  msgid "Sunday"
614
  msgstr "Sonntag"
615
 
616
  #: app/features/events.php:518 app/features/events.php:590
617
- #: app/features/fes/form.php:354 app/libraries/main.php:1582
618
- #: app/modules/booking/steps/tickets.php:20
619
- #: app/modules/next-event/details.php:86 app/skins/single/default.php:54
620
- #: app/skins/single/default.php:259 app/skins/single/m1.php:16
621
- #: app/skins/single/modern.php:149
622
  msgid "Date"
623
  msgstr "Datum"
624
 
625
  #: app/features/events.php:519 app/features/events.php:591
626
- #: app/features/events.php:665 app/features/events.php:717
627
- #: app/features/events.php:837 app/features/events.php:1009
628
- #: app/features/events.php:1090 app/features/fes/form.php:355
 
629
  msgid "Add"
630
  msgstr "Hinzufügen"
631
 
632
- #: app/features/events.php:520 app/features/fes/form.php:356
633
  msgid "Add certain days to event occurrence dates."
634
  msgstr "Fügen Sie bestimmte Tage zu den Ereignisdaten hinzu. "
635
 
636
- #: app/features/events.php:542 app/features/fes/form.php:378
637
  msgid "Ends Repeat"
638
  msgstr "Wiederholung endet"
639
 
640
- #: app/features/events.php:546 app/features/fes/form.php:382
641
  msgid "Never"
642
  msgstr "Niemals"
643
 
644
- #: app/features/events.php:551 app/features/fes/form.php:387
645
  msgid "On"
646
  msgstr "Am"
647
 
648
- #: app/features/events.php:558 app/features/fes/form.php:394
649
  msgid "After"
650
  msgstr "Nach"
651
 
652
- #: app/features/events.php:560 app/features/fes/form.php:396
653
  msgid "Occurrences times"
654
  msgstr " mal vorkommen"
655
 
656
- #: app/features/events.php:561 app/features/fes/form.php:397
657
  msgid ""
658
  "The event will finish after certain repeats. For example if you set it to "
659
  "10, the event will finish after 10 repeats."
@@ -675,7 +680,7 @@ msgstr ""
675
  msgid "Day 1"
676
  msgstr ""
677
 
678
- #: app/features/events.php:649 app/features/mec/settings.php:914
679
  #: app/skins/single.php:246
680
  msgid "Hourly Schedule"
681
  msgstr "Stundenplan"
@@ -690,85 +695,88 @@ msgid ""
690
  "can add a different schedule for each day!"
691
  msgstr ""
692
 
693
- #: app/features/events.php:658
694
  #, php-format
695
  msgid "Day %s"
696
  msgstr ""
697
 
698
- #: app/features/events.php:661 app/features/events.php:673
699
- #: app/features/events.php:693 app/features/events.php:713
700
- #: app/features/events.php:728 app/features/events.php:1096
701
- #: app/features/events.php:1118 app/features/events.php:1712
702
- #: app/features/events.php:1894 app/features/events.php:1938
703
- #: app/features/fes/form.php:214 app/features/ix.php:2328
704
- #: app/features/ix.php:2369 app/features/mec/settings.php:1169
705
- #: app/features/mec/settings.php:1189
706
  msgid "Title"
707
  msgstr "Titel"
708
 
709
- #: app/features/events.php:666 app/features/events.php:718
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
710
  msgid "Add new hourly schedule row"
711
  msgstr "Neue Stundenplan-Zeile hinzufügen"
712
 
713
- #: app/features/events.php:671 app/features/events.php:691
714
- #: app/features/events.php:726
715
  msgid "From e.g. 8:15"
716
  msgstr "Von z.B. 08:15 Uhr"
717
 
718
- #: app/features/events.php:672 app/features/events.php:692
719
- #: app/features/events.php:727
720
  msgid "To e.g. 8:45"
721
  msgstr "bis zum Beispiel 08:45 Uhr"
722
 
723
- #: app/features/events.php:674 app/features/events.php:694
724
- #: app/features/events.php:729 app/features/events.php:884
725
- #: app/features/events.php:954
726
  msgid "Description"
727
  msgstr "Beschreibung"
728
 
729
- #: app/features/events.php:675 app/features/events.php:695
730
- #: app/features/events.php:730 app/features/events.php:903
731
- #: app/features/events.php:973 app/features/events.php:1029
732
- #: app/features/events.php:1054 app/features/events.php:1107
733
- #: app/features/events.php:1129 app/features/fes/list.php:72
734
- #: app/features/mec/settings.php:1118 app/features/mec/settings.php:1141
735
- #: app/features/mec/settings.php:1180 app/features/mec/settings.php:1200
736
- #: app/libraries/main.php:2046 app/libraries/main.php:2075
737
- #: app/libraries/main.php:2104 app/libraries/main.php:2133
738
- #: app/libraries/main.php:2155 app/libraries/main.php:2186
739
- #: app/libraries/main.php:2230 app/libraries/main.php:2274
740
- #: app/libraries/main.php:2321 app/libraries/main.php:2359
741
- msgid "Remove"
742
- msgstr "Entfernen"
743
-
744
- #: app/features/events.php:678 app/features/events.php:698
745
- #: app/features/events.php:733 app/features/fes/form.php:611
746
  #: app/features/mec.php:206 app/features/mec/settings.php:72
747
- #: app/features/mec/settings.php:908 app/features/speakers.php:57
748
- #: app/libraries/main.php:4158 app/modules/speakers/details.php:18
749
  msgid "Speakers"
750
  msgstr ""
751
 
752
- #: app/features/events.php:710 app/features/events.php:714
753
  msgid "Day :dd:"
754
  msgstr ""
755
 
756
- #: app/features/events.php:759 app/features/fes/form.php:456
757
- #: app/features/mec/settings.php:854
758
  msgid "Event Links"
759
  msgstr "Veranstaltungslinks"
760
 
761
- #: app/features/events.php:761 app/features/fes/form.php:458
762
- #: app/libraries/main.php:4181
763
  msgid "Event Link"
764
  msgstr "Veranstaltungslink"
765
 
766
- #: app/features/events.php:762 app/features/events.php:767
767
- #: app/features/fes/form.php:459 app/features/fes/form.php:464
768
  msgid "eg. http://yoursite.com/your-event"
769
  msgstr "z.B. http://ihreseite.com/ihre-veranstaltung"
770
 
771
- #: app/features/events.php:763 app/features/fes/form.php:460
772
  msgid ""
773
  "If you fill it, it will be replaced instead of default event page link. "
774
  "Insert full link including http(s)://"
@@ -777,27 +785,27 @@ msgstr ""
777
  "dieser durch einen neuen link ersetzt werden. Vollständigen Link einfügen, "
778
  "einschließlich http(s)://"
779
 
780
- #: app/features/events.php:766 app/features/fes/form.php:463
781
- #: app/libraries/main.php:4182 app/skins/single/default.php:104
782
- #: app/skins/single/default.php:309 app/skins/single/m1.php:188
783
- #: app/skins/single/m2.php:120 app/skins/single/modern.php:118
784
  #: app/widgets/single.php:107
785
  msgid "More Info"
786
  msgstr "Mehr Informationen"
787
 
788
- #: app/features/events.php:768 app/features/fes/form.php:465
789
  msgid "More Information"
790
  msgstr "z.B. Noch mehr Informationen "
791
 
792
- #: app/features/events.php:770 app/features/fes/form.php:467
793
  msgid "Current Window"
794
  msgstr "Aktuelles Fenster"
795
 
796
- #: app/features/events.php:771 app/features/fes/form.php:468
797
  msgid "New Window"
798
  msgstr "Neues Fenster"
799
 
800
- #: app/features/events.php:773 app/features/fes/form.php:470
801
  msgid ""
802
  "If you fill it, it will be shown in event details page as an optional link. "
803
  "Insert full link including http(s)://"
@@ -808,91 +816,128 @@ msgstr ""
808
  "Text angezeigt werden soll: zum Beispiel: Noch mehr Informationen oder Hier "
809
  "zur Anmeldung (z.B. bei Webinaren sinnvoll) "
810
 
811
- #: app/features/events.php:804
812
  msgid "Total booking limits"
813
  msgstr "Gesamt Verfügbare Plätze"
814
 
815
- #: app/features/events.php:809 app/features/events.php:901
816
- #: app/features/events.php:971 app/modules/booking/default.php:82
817
- #: app/modules/booking/steps/tickets.php:38 app/skins/available_spot/tpl.php:99
818
  msgid "Unlimited"
819
  msgstr "Unlimitiert"
820
 
821
- #: app/features/events.php:811
822
  msgid "100"
823
  msgstr "z.B. 100"
824
 
825
- #: app/features/events.php:829 app/libraries/book.php:60
826
- #: app/libraries/main.php:4186 app/modules/booking/steps/tickets.php:38
827
  msgid "Tickets"
828
  msgstr "Tickets"
829
 
830
- #: app/features/events.php:832
831
  msgid ""
832
  "You're translating an event so MEC will use the original event for tickets "
833
  "and booking. You can only translate the ticket name and description. Please "
834
  "define exact tickets that you defined in the original event here."
835
  msgstr ""
836
 
837
- #: app/features/events.php:843 app/features/events.php:913
838
  msgid "Ticket Name"
839
  msgstr "Ticket Name"
840
 
841
- #: app/features/events.php:847 app/features/events.php:917
842
- #: app/features/events.php:1894 app/features/events.php:1938
843
- #: app/features/ix.php:2328 app/features/ix.php:2369
844
  msgid "Start Time"
845
  msgstr "Uhrzeit des Beginns"
846
 
847
- #: app/features/events.php:865 app/features/events.php:935
848
- #: app/features/events.php:1894 app/features/events.php:1938
849
- #: app/features/ix.php:2328 app/features/ix.php:2369
850
  msgid "End Time"
851
  msgstr "Uhrzeit Ende"
852
 
853
- #: app/features/events.php:888 app/features/events.php:958
854
- #: app/features/events.php:1100 app/features/events.php:1122
855
- #: app/features/mec/settings.php:1173 app/features/mec/settings.php:1193
 
 
856
  msgid "Price"
857
  msgstr "Preis"
858
 
859
- #: app/features/events.php:889 app/features/events.php:959
860
  msgid "Insert 0 for free ticket. Only numbers please."
861
  msgstr "Bitte 0 für kostenloses Ticket eingeben. Bitte nur Zahlen eintragen"
862
 
863
- #: app/features/events.php:892 app/features/events.php:962
864
  msgid "Price Label"
865
  msgstr "Preisschild"
866
 
867
- #: app/features/events.php:893 app/features/events.php:963
868
  msgid "For showing on website. e.g. $15"
869
  msgstr "Um das auf der Webseite anzuzeigen zum Beispiel 15 €"
870
 
871
- #: app/features/events.php:897 app/features/events.php:967
872
  msgid "Available Tickets"
873
  msgstr "Verfügbare Tickets: %s "
874
 
875
- #: app/features/events.php:999
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
876
  msgid "Fees"
877
  msgstr "Gebühren"
878
 
879
- #: app/features/events.php:1004 app/features/events.php:1085
880
- #: app/features/events.php:1160
881
  msgid "Inherit from global options"
882
  msgstr "Aus den globalen Einstellungen übernehmen"
883
 
884
- #: app/features/events.php:1015 app/features/events.php:1040
885
- #: app/features/mec/settings.php:1104 app/features/mec/settings.php:1127
886
  msgid "Fee Title"
887
  msgstr "Gebühren Name"
888
 
889
- #: app/features/events.php:1019 app/features/events.php:1044
890
- #: app/features/mec/settings.php:1108 app/features/mec/settings.php:1131
891
  msgid "Amount"
892
  msgstr "Betrag"
893
 
894
- #: app/features/events.php:1020 app/features/events.php:1045
895
- #: app/features/mec/settings.php:1109 app/features/mec/settings.php:1132
896
  msgid ""
897
  "Fee amount, considered as fixed amount if you set the type to amount "
898
  "otherwise considered as percentage"
@@ -900,72 +945,72 @@ msgstr ""
900
  "Gebührenbetrag, gilt als fester Betrag, wenn Sie die Art auf Betrag setzen, "
901
  "sonst als Prozentsatz"
902
 
903
- #: app/features/events.php:1024 app/features/events.php:1049
904
- #: app/features/mec/settings.php:1113 app/features/mec/settings.php:1136
905
  msgid "Percent"
906
  msgstr "Prozent"
907
 
908
- #: app/features/events.php:1025 app/features/events.php:1050
909
- #: app/features/mec/settings.php:1114 app/features/mec/settings.php:1137
910
  msgid "Amount (Per Ticket)"
911
  msgstr "Betrag (pro Ticket)"
912
 
913
- #: app/features/events.php:1026 app/features/events.php:1051
914
- #: app/features/mec/settings.php:1115 app/features/mec/settings.php:1138
915
  msgid "Amount (Per Booking)"
916
  msgstr "Betrag (pro Buchung)"
917
 
918
- #: app/features/events.php:1080 app/features/mec/settings.php:932
919
  msgid "Ticket Variations / Options"
920
  msgstr ""
921
 
922
- #: app/features/events.php:1101 app/features/events.php:1123
923
- #: app/features/mec/settings.php:1174 app/features/mec/settings.php:1194
924
  #, fuzzy
925
  #| msgid "Option"
926
  msgid "Option Price"
927
  msgstr "Option"
928
 
929
- #: app/features/events.php:1104 app/features/events.php:1126
930
- #: app/features/mec/settings.php:1177 app/features/mec/settings.php:1197
931
  #, fuzzy
932
  #| msgid "Amount (Per Ticket)"
933
  msgid "Maximum Per Ticket"
934
  msgstr "Betrag (pro Ticket)"
935
 
936
- #: app/features/events.php:1105 app/features/events.php:1127
937
- #: app/features/mec/settings.php:1178 app/features/mec/settings.php:1198
938
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
939
  msgstr ""
940
 
941
- #: app/features/events.php:1189 app/features/mec/regform.php:117
942
- #: app/libraries/main.php:2038
943
  msgid "Text"
944
  msgstr "Text"
945
 
946
- #: app/features/events.php:1191 app/features/mec/regform.php:119
947
  #: app/features/organizers.php:102 app/features/organizers.php:146
948
  #: app/features/speakers.php:111 app/features/speakers.php:175
949
- #: app/features/speakers.php:244 app/libraries/main.php:2096
950
  msgid "Tel"
951
  msgstr "Tel"
952
 
953
- #: app/features/events.php:1192 app/features/mec/regform.php:120
954
- #: app/libraries/main.php:2125
955
  msgid "Textarea"
956
  msgstr "Textbereich"
957
 
958
- #: app/features/events.php:1193 app/features/mec/regform.php:121
959
- #: app/libraries/main.php:2178
960
  msgid "Checkboxes"
961
  msgstr "Checkboxes"
962
 
963
- #: app/features/events.php:1194 app/features/mec/regform.php:122
964
- #: app/libraries/main.php:2222
965
  msgid "Radio Buttons"
966
  msgstr "Radio Buttons"
967
 
968
- #: app/features/events.php:1195 app/features/mec/meta_boxes/search_form.php:34
969
  #: app/features/mec/meta_boxes/search_form.php:41
970
  #: app/features/mec/meta_boxes/search_form.php:48
971
  #: app/features/mec/meta_boxes/search_form.php:55
@@ -1011,41 +1056,41 @@ msgstr "Radio Buttons"
1011
  #: app/features/mec/meta_boxes/search_form.php:443
1012
  #: app/features/mec/meta_boxes/search_form.php:450
1013
  #: app/features/mec/meta_boxes/search_form.php:457
1014
- #: app/features/mec/regform.php:123 app/libraries/main.php:2266
1015
  msgid "Dropdown"
1016
  msgstr "Dropdown"
1017
 
1018
- #: app/features/events.php:1196 app/features/mec/regform.php:124
1019
- #: app/libraries/main.php:2313
1020
  msgid "Agreement"
1021
  msgstr "Zustimmung"
1022
 
1023
- #: app/features/events.php:1197 app/features/mec/regform.php:125
1024
- #: app/libraries/main.php:2154
1025
  msgid "Paragraph"
1026
  msgstr "Absatz"
1027
 
1028
- #: app/features/events.php:1658 app/features/events.php:1673
1029
- #: app/features/events.php:1687
1030
  #, php-format
1031
  msgid "Show all %s"
1032
  msgstr "Zeige alle %s"
1033
 
1034
- #: app/features/events.php:1658
1035
  msgid "labels"
1036
  msgstr "Labels + Eventstatus"
1037
 
1038
- #: app/features/events.php:1673
1039
  msgid "locations"
1040
  msgstr "Orte"
1041
 
1042
- #: app/features/events.php:1687
1043
  msgid "organizers"
1044
  msgstr "Veranstalter"
1045
 
1046
- #: app/features/events.php:1713 app/features/events.php:1894
1047
- #: app/features/events.php:1938 app/features/ix.php:2328
1048
- #: app/features/ix.php:2369 app/features/locations.php:58
1049
  #: app/features/locations.php:229 app/features/locations.php:281
1050
  #: app/features/locations.php:283 app/features/mec/dashboard.php:106
1051
  #: app/features/mec/meta_boxes/display_options.php:659
@@ -1057,17 +1102,17 @@ msgstr "Veranstalter"
1057
  #: app/features/mec/meta_boxes/search_form.php:299
1058
  #: app/features/mec/meta_boxes/search_form.php:339
1059
  #: app/features/mec/meta_boxes/search_form.php:386
1060
- #: app/features/mec/meta_boxes/search_form.php:433 app/libraries/main.php:1576
1061
- #: app/libraries/main.php:4155 app/libraries/skins.php:738
1062
- #: app/skins/single/default.php:140 app/skins/single/default.php:345
1063
- #: app/skins/single/m1.php:152 app/skins/single/m2.php:84
1064
- #: app/skins/single/modern.php:81
1065
  msgid "Location"
1066
  msgstr "Ort"
1067
 
1068
- #: app/features/events.php:1714 app/features/events.php:1894
1069
- #: app/features/events.php:1938 app/features/ix.php:2328
1070
- #: app/features/ix.php:2369 app/features/mec/dashboard.php:113
1071
  #: app/features/mec/meta_boxes/display_options.php:660
1072
  #: app/features/mec/meta_boxes/search_form.php:45
1073
  #: app/features/mec/meta_boxes/search_form.php:92
@@ -1080,63 +1125,63 @@ msgstr "Ort"
1080
  #: app/features/mec/meta_boxes/search_form.php:440
1081
  #: app/features/organizers.php:58 app/features/organizers.php:199
1082
  #: app/features/organizers.php:255 app/features/organizers.php:257
1083
- #: app/libraries/main.php:4157 app/libraries/skins.php:764
1084
- #: app/skins/single/default.php:180 app/skins/single/default.php:385
1085
  #: app/skins/single/m1.php:90 app/skins/single/m2.php:22
1086
  #: app/skins/single/modern.php:21
1087
  msgid "Organizer"
1088
  msgstr "Veranstalter"
1089
 
1090
- #: app/features/events.php:1718
1091
  msgid "Repeat"
1092
  msgstr "Wiederholen"
1093
 
1094
- #: app/features/events.php:1719
1095
  msgid "Author"
1096
  msgstr "Autor"
1097
 
1098
- #: app/features/events.php:1829 app/features/events.php:1830
1099
  msgid "iCal Export"
1100
  msgstr "ical Export"
1101
 
1102
- #: app/features/events.php:1832 app/features/events.php:1833
1103
  msgid "CSV Export"
1104
  msgstr "CSV Export"
1105
 
1106
- #: app/features/events.php:1835 app/features/events.php:1836
1107
  msgid "MS Excel Export"
1108
  msgstr "MS Excel Export"
1109
 
1110
- #: app/features/events.php:1838 app/features/events.php:1839
1111
  msgid "XML Export"
1112
  msgstr "XML Export"
1113
 
1114
- #: app/features/events.php:1841 app/features/events.php:1842
1115
  msgid "JSON Export"
1116
  msgstr "JSON Export"
1117
 
1118
- #: app/features/events.php:1844 app/features/events.php:1845
1119
  msgid "Duplicate"
1120
  msgstr "Kopie"
1121
 
1122
- #: app/features/events.php:1894 app/features/events.php:1938
1123
- #: app/features/ix.php:2328 app/features/ix.php:2369
1124
  #: app/features/labels.php:176 app/features/locations.php:228
1125
  #: app/features/organizers.php:198 app/features/speakers.php:241
1126
  msgid "ID"
1127
  msgstr "ID"
1128
 
1129
- #: app/features/events.php:1894 app/features/events.php:1938
1130
- #: app/features/ix.php:2328 app/features/ix.php:2369
1131
  msgid "Link"
1132
  msgstr "Link"
1133
 
1134
- #: app/features/events.php:1894 app/features/events.php:1938
1135
  #, php-format
1136
  msgid "%s Tel"
1137
  msgstr "%s Tel"
1138
 
1139
- #: app/features/events.php:1894 app/features/events.php:1938
1140
  #, php-format
1141
  msgid "%s Email"
1142
  msgstr "%s Email"
@@ -1146,11 +1191,11 @@ msgstr "%s Email"
1146
  msgid "Please %s/%s in order to submit new events."
1147
  msgstr "Um neue Veranstaltungen einzugeben, bitte %s/%s"
1148
 
1149
- #: app/features/fes.php:83 app/features/fes.php:161
1150
  msgid "Login"
1151
  msgstr "Login"
1152
 
1153
- #: app/features/fes.php:83 app/features/fes.php:161
1154
  msgid "Register"
1155
  msgstr "Anmelden"
1156
 
@@ -1196,56 +1241,56 @@ msgstr ""
1196
  msgid "The event published."
1197
  msgstr "Die Veranstaltung wurde veröffentlicht."
1198
 
1199
- #: app/features/fes/form.php:157
1200
  msgid "Go back to events list."
1201
  msgstr "Zurück zur Liste der Veranstaltungen"
1202
 
1203
- #: app/features/fes/form.php:407
1204
  msgid "Note to reviewer"
1205
  msgstr "Zusätzliche Anmerkungen zum Event "
1206
 
1207
- #: app/features/fes/form.php:416 app/features/fes/form.php:626
1208
- msgid "Submit"
1209
- msgstr "Buchung abschließen"
1210
-
1211
- #: app/features/fes/form.php:435
1212
  msgid "User Data"
1213
  msgstr "Benutzerdaten"
1214
 
1215
- #: app/features/fes/form.php:438
1216
  msgid "eg. yourname@gmail.com"
1217
  msgstr "z.B. IhrName@ihrewebseite.de"
1218
 
1219
- #: app/features/fes/form.php:442 app/features/organizers.php:269
1220
  msgid "eg. John Smith"
1221
  msgstr "z.B. Max Mustermann"
1222
 
1223
- #: app/features/fes/form.php:496 app/features/mec/settings.php:866
1224
  msgid "Featured Image"
1225
  msgstr "Ausgewähltes Bild"
1226
 
1227
- #: app/features/fes/form.php:501
1228
  msgid "Remove Image"
1229
  msgstr "Bild entfernen"
1230
 
1231
- #: app/features/fes/form.php:543 app/features/labels.php:61
1232
  #: app/features/labels.php:220 app/features/mec.php:199
1233
- #: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4152
1234
- #: app/skins/single/default.php:119 app/skins/single/default.php:324
1235
- #: app/skins/single/m1.php:64 app/skins/single/modern.php:197
1236
  msgid "Labels"
1237
  msgstr "Labels"
1238
 
1239
- #: app/features/fes/form.php:588 app/features/mec.php:197
1240
  #: app/features/mec/meta_boxes/filter.php:138
1241
  msgid "Tags"
1242
  msgstr "Schlagworte"
1243
 
1244
- #: app/features/fes/form.php:590
1245
  msgid "Insert your desired tags, comma separated."
1246
  msgstr ""
1247
  "Geben Sie die gewünschten Tags (Schlagworte) durch ein Komma separiert ein"
1248
 
 
 
 
 
1249
  #: app/features/fes/list.php:21
1250
  msgid "Click again to remove!"
1251
  msgstr "Zum Entfernen nochmals klicken"
@@ -1263,88 +1308,116 @@ msgstr "Anzeigen"
1263
  msgid "No events found! %s"
1264
  msgstr "Keine Veranstaltungen gefunden! %s"
1265
 
1266
- #: app/features/ix.php:95
1267
  msgid "MEC - Import / Export"
1268
  msgstr "MEC - Import / Export"
1269
 
1270
- #: app/features/ix.php:95
1271
  msgid "Import / Export"
1272
  msgstr "Import / Export"
1273
 
1274
- #: app/features/ix.php:180
1275
  msgid "Please upload the feed file."
1276
  msgstr ""
1277
 
1278
- #: app/features/ix.php:183
1279
  msgid "The file type should be XML or ICS."
1280
  msgstr ""
1281
 
1282
- #: app/features/ix.php:192
1283
- msgid "An error ocurred during the file upload! Please check permissions!"
1284
  msgstr ""
1285
 
1286
- #: app/features/ix.php:200
1287
  msgid "The events are imported successfully!"
1288
  msgstr ""
1289
 
1290
- #: app/features/ix.php:738
1291
  msgid "Third Party plugin is not installed and activated!"
1292
  msgstr "Drittanbieter-Plugin ist nicht installiert und aktiviert!"
1293
 
1294
- #: app/features/ix.php:763
1295
  msgid "Third Party plugin is invalid!"
1296
  msgstr "Drittanbieter-Plugin ist ungültig!"
1297
 
1298
- #: app/features/ix.php:1908 app/features/ix.php:1966
1299
  msgid "Both of API key and Calendar ID are required!"
1300
  msgstr "Beide, API Schlüssel und Calender ID wird benötigt"
1301
 
1302
- #: app/features/ix.php:1961 app/features/ix.php:2791
1303
  msgid "Please select some events to import!"
1304
  msgstr "Bitte wählen Sie einige Veranstaltungen aus zum importieren"
1305
 
1306
- #: app/features/ix.php:2328 app/features/ix.php:2369
 
 
 
 
 
 
 
 
 
 
1307
  msgid "Organizer Tel"
1308
  msgstr "Organisator Telefon"
1309
 
1310
- #: app/features/ix.php:2328 app/features/ix.php:2369
1311
  msgid "Organizer Email"
1312
  msgstr "Organisator Email"
1313
 
1314
- #: app/features/ix.php:2450
1315
  msgid "All of Client ID, Client Secret and Calendar ID are required!"
1316
  msgstr "Dies wird alles benötigt: Client ID, Client Secret und Calender ID!"
1317
 
1318
- #: app/features/ix.php:2473
1319
  #, php-format
1320
  msgid "All seems good! Please click %s for authenticating your app."
1321
  msgstr ""
1322
  "Alles scheint gut zu sein! Bitte klicken %s um Ihre App zu authentifizieren."
1323
 
1324
- #: app/features/ix.php:2527
1325
  msgid "All of Client App, Client Secret and Calendar ID are required!"
1326
  msgstr "Dies wird alles benötigt: Client ID, Client Secret und Calender ID!"
1327
 
1328
- #: app/features/ix.php:2722
1329
  #, php-format
1330
  msgid "%s events added to Google Calendar successfully."
1331
  msgstr "%s Events wurden erfolgreich zum Google Kalender hinzugefügt."
1332
 
1333
- #: app/features/ix.php:2723
1334
  #, php-format
1335
  msgid "%s previously added events get updated."
1336
  msgstr "%s vorherige hinzugefügte Events wurden aktualisiert."
1337
 
1338
- #: app/features/ix.php:2724
1339
  #, php-format
1340
  msgid "%s events failed to add for following reasons: %s"
1341
  msgstr "%s Events wurde aus folgenden Gründen nicht hinzugefügt: %s"
1342
 
1343
- #: app/features/ix.php:2754 app/features/ix.php:2794
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1344
  msgid "Please insert your facebook page's link."
1345
  msgstr "Bitte Ihren Facebook Seitenlink eingeben."
1346
 
1347
- #: app/features/ix.php:2762 app/features/ix.php:2799
1348
  msgid ""
1349
  "We couldn't recognize your Facebook page. Please check it and provide us a "
1350
  "valid facebook page link."
@@ -1354,151 +1427,170 @@ msgstr ""
1354
 
1355
  #: app/features/ix/export.php:8 app/features/ix/export_g_calendar.php:12
1356
  #: app/features/ix/import.php:8 app/features/ix/import_f_calendar.php:8
1357
- #: app/features/ix/import_g_calendar.php:8 app/features/ix/thirdparty.php:8
 
1358
  msgid "MEC Import / Export"
1359
  msgstr "MEC Import / Export"
1360
 
1361
  #: app/features/ix/export.php:13 app/features/ix/export_g_calendar.php:17
1362
  #: app/features/ix/import.php:13 app/features/ix/import_f_calendar.php:13
1363
- #: app/features/ix/import_g_calendar.php:13 app/features/ix/sync.php:13
 
1364
  #: app/features/ix/thirdparty.php:13
1365
- msgid "Export"
1366
- msgstr "Export"
 
 
1367
 
1368
  #: app/features/ix/export.php:14 app/features/ix/export_g_calendar.php:18
1369
  #: app/features/ix/import.php:14 app/features/ix/import_f_calendar.php:14
1370
- #: app/features/ix/import_f_calendar.php:74
1371
  #: app/features/ix/import_g_calendar.php:14
1372
- #: app/features/ix/import_g_calendar.php:102 app/features/ix/sync.php:14
1373
- #: app/features/ix/thirdparty.php:14 app/features/ix/thirdparty.php:97
1374
- msgid "Import"
1375
- msgstr "Import"
1376
 
1377
  #: app/features/ix/export.php:15 app/features/ix/export_g_calendar.php:19
1378
  #: app/features/ix/import.php:15 app/features/ix/import_f_calendar.php:15
1379
- #: app/features/ix/import_g_calendar.php:15 app/features/ix/sync.php:15
 
1380
  #: app/features/ix/thirdparty.php:15
1381
- msgid "Synchronization"
1382
- msgstr "Synchronisation"
1383
 
1384
  #: app/features/ix/export.php:16 app/features/ix/export_g_calendar.php:20
1385
  #: app/features/ix/import.php:16 app/features/ix/import_f_calendar.php:16
1386
- #: app/features/ix/import_g_calendar.php:16 app/features/ix/sync.php:16
1387
- #: app/features/ix/thirdparty.php:16 app/features/ix/thirdparty.php:20
 
 
 
 
 
 
 
 
 
 
 
 
1388
  msgid "Third Party Plugins"
1389
  msgstr "Plugins von Drittanbietern"
1390
 
1391
- #: app/features/ix/export.php:21
1392
  msgid "Export all events to file"
1393
  msgstr "Exportiert alle Events in eine Datei"
1394
 
1395
- #: app/features/ix/export.php:22
1396
  msgid ""
1397
  "This will export all of your website events' data into your desired format."
1398
  msgstr ""
1399
  "Dies wird alle Ihre Eventdaten von der Webseite in Ihr gewünschtes Format "
1400
  "exportieren."
1401
 
1402
- #: app/features/ix/export.php:24 app/features/mec/settings.php:667
1403
  msgid "iCal"
1404
  msgstr "iCal"
1405
 
1406
- #: app/features/ix/export.php:25
1407
  msgid "CSV"
1408
  msgstr "CSV"
1409
 
1410
- #: app/features/ix/export.php:26
1411
  msgid "MS Excel"
1412
  msgstr "MS Excel"
1413
 
1414
- #: app/features/ix/export.php:27
1415
  msgid "XML"
1416
  msgstr "XML"
1417
 
1418
- #: app/features/ix/export.php:28
1419
  msgid "JSON"
1420
  msgstr "JSON"
1421
 
1422
- #: app/features/ix/export.php:32
1423
  msgid "Export certain events"
1424
  msgstr "Bestimme Events exportieren"
1425
 
1426
- #: app/features/ix/export.php:33
1427
  #, php-format
1428
  msgid "For exporting filtered events, you can use bulk actions in %s page."
1429
  msgstr ""
1430
  "Für den Export gefilterter Ereignisse können Sie Bulk-Aktionen in der% s-"
1431
  "Seite verwenden."
1432
 
1433
- #: app/features/ix/export.php:36
1434
  msgid "Export certain bookings"
1435
  msgstr "Bestimmte Anmeldungen/Buchungen exportieren"
1436
 
1437
- #: app/features/ix/export.php:37
1438
  #, php-format
1439
  msgid "For exporting bookings events, you can use bulk actions in %s page."
1440
  msgstr ""
1441
  "Wir haben Events für %s Seite gefunden. Bitte wählen Sie Ihre gewünschten "
1442
  "Events zum importieren."
1443
 
1444
- #: app/features/ix/export.php:37
1445
  msgid "Bookings"
1446
  msgstr "Buchungen / Reservierungen"
1447
 
1448
- #: app/features/ix/export_g_calendar.php:25
1449
  msgid "Add events to Google Calendar"
1450
  msgstr "Events zum Google Kalender hinzufügen"
1451
 
1452
- #: app/features/ix/export_g_calendar.php:26
1453
  msgid "Add your desired website events to your Google Calendar."
1454
  msgstr ""
1455
  "Fügen Sie Ihre gewünschten Webseiten Events zu Ihrem Google Kalender hinzu."
1456
 
1457
- #: app/features/ix/export_g_calendar.php:26
1458
  #, php-format
1459
  msgid "You should set %s as redirect page in Google App Console."
1460
  msgstr "Sie sollten% s als Redirect-Seite in der Google App Console setzen."
1461
 
1462
- #: app/features/ix/export_g_calendar.php:29
1463
  msgid "App Client ID"
1464
  msgstr "App Client ID"
1465
 
1466
- #: app/features/ix/export_g_calendar.php:35
1467
  msgid "App Client Secret"
1468
  msgstr "App Client Passwort"
1469
 
1470
- #: app/features/ix/export_g_calendar.php:41
1471
- #: app/features/ix/import_g_calendar.php:31
1472
  msgid "Calendar ID"
1473
  msgstr "Kalender ID"
1474
 
1475
- #: app/features/ix/export_g_calendar.php:47
1476
- #: app/features/ix/export_g_calendar.php:102
1477
- #: app/features/ix/export_g_calendar.php:119
1478
  msgid "Authenticate"
1479
  msgstr "Authentifizierung"
1480
 
1481
- #: app/features/ix/export_g_calendar.php:56
1482
- #: app/features/ix/import_f_calendar.php:49
1483
- #: app/features/ix/import_g_calendar.php:63 app/features/ix/thirdparty.php:48
 
1484
  msgid "Select All"
1485
  msgstr "Alles Auswählen"
1486
 
1487
- #: app/features/ix/export_g_calendar.php:57
1488
- #: app/features/ix/import_f_calendar.php:50
1489
- #: app/features/ix/import_g_calendar.php:64 app/features/ix/thirdparty.php:49
 
1490
  msgid "Deselect All"
1491
  msgstr "Alle abwählen"
1492
 
1493
- #: app/features/ix/export_g_calendar.php:58
1494
- #: app/features/ix/import_f_calendar.php:51
1495
- #: app/features/ix/import_g_calendar.php:65 app/features/ix/thirdparty.php:50
 
1496
  msgid "Toggle"
1497
  msgstr "Umschalten"
1498
 
1499
- #: app/features/ix/export_g_calendar.php:71
1500
- #: app/features/ix/export_g_calendar.php:146
1501
- #: app/features/ix/export_g_calendar.php:163
1502
  #: app/features/mec/notifications.php:144
1503
  #: app/features/mec/notifications.php:185
1504
  #: app/features/mec/notifications.php:226
@@ -1506,97 +1598,96 @@ msgstr "Umschalten"
1506
  msgid "Add to Google Calendar"
1507
  msgstr "Zum Google Kalender hinzufügen"
1508
 
1509
- #: app/features/ix/export_g_calendar.php:89 app/features/mec/settings.php:1354
1510
  msgid "Checking ..."
1511
  msgstr "Überprüfung"
1512
 
1513
- #: app/features/ix/export_g_calendar.php:133
1514
- msgid "Importing ..."
 
 
1515
  msgstr "Importieren"
1516
 
1517
- #: app/features/ix/import.php:20
1518
  msgid "Import MEC XML Feed"
1519
  msgstr ""
1520
 
1521
- #: app/features/ix/import.php:23
1522
  #, php-format
1523
  msgid ""
1524
  "You can import %s events from another website to this website. You just need "
1525
  "an XML feed of the events that can be exported from source website!"
1526
  msgstr ""
1527
 
1528
- #: app/features/ix/import.php:26
1529
  msgid "XML Feed"
1530
  msgstr ""
1531
 
1532
- #: app/features/ix/import.php:28 app/features/ix/import.php:41
1533
  msgid "Upload & Import"
1534
  msgstr ""
1535
 
1536
- #: app/features/ix/import.php:32
1537
  msgid "Import .ics File"
1538
  msgstr ""
1539
 
1540
- #: app/features/ix/import.php:36
1541
  #, php-format
1542
  msgid ""
1543
  "ICS format supports by many different service providers like Facebook. Apple "
1544
  "Calendar etc. You can import your ics file into the %s using this form."
1545
  msgstr ""
1546
 
1547
- #: app/features/ix/import.php:39
1548
  msgid "ICS Feed"
1549
  msgstr ""
1550
 
1551
- #: app/features/ix/import.php:45 app/features/mec/settings.php:548
1552
- #: app/features/mec/settings.php:698 app/features/mec/settings.php:716
1553
- #: app/features/mec/settings.php:981 app/features/mec/settings.php:1071
1554
- #: app/features/mec/settings.php:1088 app/features/mec/settings.php:1153
1555
  #, php-format
1556
  msgid "%s is required to use this feature."
1557
  msgstr ""
1558
 
1559
- #: app/features/ix/import.php:45 app/features/ix/sync.php:21
1560
  #: app/features/mec/meta_boxes/display_options.php:224
1561
  #: app/features/mec/meta_boxes/display_options.php:379
1562
  #: app/features/mec/meta_boxes/display_options.php:469
1563
  #: app/features/mec/meta_boxes/display_options.php:576
1564
  #: app/features/mec/meta_boxes/display_options.php:626
1565
  #: app/features/mec/meta_boxes/display_options.php:764
1566
- #: app/features/mec/settings.php:548 app/features/mec/settings.php:698
1567
- #: app/features/mec/settings.php:716 app/features/mec/settings.php:981
1568
- #: app/features/mec/settings.php:1071 app/features/mec/settings.php:1088
1569
- #: app/features/mec/settings.php:1153 app/features/mec/settings.php:1278
1570
  #: app/libraries/skins.php:248
1571
  msgid "Pro version of Modern Events Calendar"
1572
  msgstr ""
1573
 
1574
- #: app/features/ix/import_f_calendar.php:21
1575
  msgid "The Facebook SDK requires PHP version 5.4 or higher."
1576
  msgstr "Facebook SDK benötigt PHP version 5.4. oder höher"
1577
 
1578
- #: app/features/ix/import_f_calendar.php:25
1579
  msgid "Import from Facebook Calendar"
1580
  msgstr "Vom Facebook Kalender Importieren"
1581
 
1582
- #: app/features/ix/import_f_calendar.php:26
1583
- msgid "Import all of your facebook events into MEC."
 
 
1584
  msgstr "Importiere alle Deine Facebook Events zum MEC"
1585
 
1586
- #: app/features/ix/import_f_calendar.php:28
1587
  msgid "Facebook Page Link"
1588
  msgstr "Facebook Seiten Link"
1589
 
1590
- #: app/features/ix/import_f_calendar.php:35
1591
- #: app/features/ix/import_g_calendar.php:50 app/features/ix/thirdparty.php:32
1592
- msgid "Start"
1593
- msgstr "Start"
1594
-
1595
- #: app/features/ix/import_f_calendar.php:46
1596
  msgid "Facebook Events"
1597
  msgstr "Facebook events"
1598
 
1599
- #: app/features/ix/import_f_calendar.php:47
1600
  #, php-format
1601
  msgid ""
1602
  "We found %s events for %s page. Please select your desired events to import."
@@ -1604,45 +1695,47 @@ msgstr ""
1604
  "Wir haben % s Events für % s diese Seite gefunden. Bitte wählen Sie Ihre "
1605
  "gewünschten Events zum Import aus."
1606
 
1607
- #: app/features/ix/import_f_calendar.php:58 app/features/ix/thirdparty.php:57
1608
  #, php-format
1609
  msgid "Event Title: %s"
1610
  msgstr "Event Title: %s"
1611
 
1612
- #: app/features/ix/import_f_calendar.php:65
1613
- #: app/features/ix/import_g_calendar.php:86 app/features/ix/thirdparty.php:64
 
1614
  msgid "Import Options"
1615
  msgstr "Import Optionen"
1616
 
1617
- #: app/features/ix/import_f_calendar.php:69
1618
- #: app/features/ix/import_g_calendar.php:96 app/features/ix/thirdparty.php:77
 
1619
  msgid "Import Locations"
1620
  msgstr "Orte importieren"
1621
 
1622
- #: app/features/ix/import_f_calendar.php:84
1623
  #, php-format
1624
  msgid "%s events successfully imported to your website from Facebook Calendar."
1625
  msgstr ""
1626
  "%s events wurden erfolgreich zu Ihrer Webseite vom Facebook Kaldender "
1627
  "importiert."
1628
 
1629
- #: app/features/ix/import_g_calendar.php:22
1630
  msgid "Import from Google Calendar"
1631
  msgstr "Import vom Google Kalender"
1632
 
1633
- #: app/features/ix/import_g_calendar.php:23
1634
  msgid "This will import all of your Google calendar events into MEC."
1635
  msgstr "Dies wird alle Deine Google Events zu MEC importieren"
1636
 
1637
- #: app/features/ix/import_g_calendar.php:25
1638
  msgid "Google API Key"
1639
  msgstr "Google API Key"
1640
 
1641
- #: app/features/ix/import_g_calendar.php:60
1642
  msgid "Google Calendar Events"
1643
  msgstr "Google Kalender Events"
1644
 
1645
- #: app/features/ix/import_g_calendar.php:61
1646
  #, php-format
1647
  msgid ""
1648
  "We found %s events for %s calendar. Please select your desired events to "
@@ -1651,42 +1744,110 @@ msgstr ""
1651
  "Wir haben %s events für %s Kalender gefunden. Bitte wählen Sie Ihre "
1652
  "gewünschten Events zum importieren aus."
1653
 
1654
- #: app/features/ix/import_g_calendar.php:79
 
1655
  #, php-format
1656
  msgid "Event Title: %s Event Date: %s - %s"
1657
  msgstr "Name der Veranstaltung: %s Veranstaltungsdatum: %s - %s"
1658
 
1659
- #: app/features/ix/import_g_calendar.php:90 app/features/ix/thirdparty.php:70
 
1660
  msgid "Import Organizers"
1661
  msgstr "Veranstalter importieren"
1662
 
1663
- #: app/features/ix/import_g_calendar.php:112
1664
  #, php-format
1665
  msgid "%s events successfully imported to your website from Google Calendar."
1666
  msgstr ""
1667
  "%s Events wurden erfolgreich zu Deiner Webseite vom Google Kalender "
1668
  "importiert."
1669
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1670
  #: app/features/ix/sync.php:8
1671
  msgid "Auto Synchronization"
1672
  msgstr "Auto Synchronisation"
1673
 
1674
- #: app/features/ix/sync.php:21
1675
  #: app/features/mec/meta_boxes/display_options.php:626
1676
  #, php-format
1677
  msgid "%s is required to use synchronization feature."
1678
  msgstr ""
1679
 
1680
- #: app/features/ix/sync.php:28
1681
  msgid "Auto Google Import"
1682
  msgstr "Automatischer Google Calender Import"
1683
 
1684
- #: app/features/ix/sync.php:31 app/features/ix/sync.php:40
1685
- #: app/features/ix/sync.php:51 app/features/mec/notifications.php:281
 
1686
  msgid "Important Note"
1687
  msgstr "Important Note"
1688
 
1689
- #: app/features/ix/sync.php:31
1690
  #, php-format
1691
  msgid ""
1692
  "Set a cronjob to call %s file atleast once per day otherwise it won't import "
@@ -1695,11 +1856,11 @@ msgstr ""
1695
  "Setzen Sie einen Cronjob, um % s Datei mindestens einmal pro Tag anzurufen, "
1696
  "ansonsten würden Google Kalender Ereignisse nicht importiert"
1697
 
1698
- #: app/features/ix/sync.php:37
1699
  msgid "Auto Google Export"
1700
  msgstr "Auto Google Export"
1701
 
1702
- #: app/features/ix/sync.php:40
1703
  #, php-format
1704
  msgid ""
1705
  "Set a cronjob to call %s file atleast once per day otherwise it won't export "
@@ -1708,11 +1869,11 @@ msgstr ""
1708
  "Setzen Sie einen Cronjob, um % s Datei mindestens einmal pro Tag anzurufen, "
1709
  "ansonsten würden Ihre Webseiten Events nicht zum Google Kalender exportiert. "
1710
 
1711
- #: app/features/ix/sync.php:48
1712
  msgid "Auto Facebook Import"
1713
  msgstr "Auto Facebook Kalender Import"
1714
 
1715
- #: app/features/ix/sync.php:51
1716
  #, php-format
1717
  msgid ""
1718
  "Set a cronjob to call %s file atleast once per day otherwise it won't import "
@@ -1721,81 +1882,87 @@ msgstr ""
1721
  "Setzen Sie einen Cronjob, um % s Datei mindestens einmal pro Tag anzurufen, "
1722
  "ansonsten würden keine Veranstaltungen von Facebook importiert. "
1723
 
1724
- #: app/features/ix/sync.php:57
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1725
  msgid "Save"
1726
  msgstr "Sichern"
1727
 
1728
- #: app/features/ix/thirdparty.php:23
1729
  #, php-format
1730
  msgid "You can import events from following integrated plugins to %s."
1731
  msgstr ""
1732
  "Sie können Events von folgenden integrierten Plugins in% s importieren."
1733
 
1734
- #: app/features/ix/thirdparty.php:26
1735
  msgid "Third Party"
1736
- msgstr "Dritte Seite\n"
1737
 
1738
- #: app/features/ix/thirdparty.php:45
1739
  msgid "Found Events"
1740
  msgstr "Events gefunden"
1741
 
1742
- #: app/features/ix/thirdparty.php:46
1743
  #, php-format
1744
  msgid "We found %s events. Please select your desired events to import."
1745
  msgstr ""
1746
  "Wir haben% s Events gefunden. Bitte wählen Sie Ihre gewünschten Events zum "
1747
  "Importieren aus."
1748
 
1749
- #: app/features/ix/thirdparty.php:69
1750
  msgid "Import Instructors"
1751
  msgstr "Importieren Sie Instruktoren"
1752
 
1753
- #: app/features/ix/thirdparty.php:84
1754
  msgid "Import Class Types"
1755
  msgstr "Klassentypen importieren"
1756
 
1757
- #: app/features/ix/thirdparty.php:85
1758
  msgid "Import Categories"
1759
  msgstr "Importiere Kategorien"
1760
 
1761
- #: app/features/ix/thirdparty.php:92
1762
  msgid "Import Featured Images"
1763
  msgstr "Importieren Sie ausgewählte Bilder"
1764
 
1765
- #: app/features/ix/thirdparty.php:107
1766
  #, php-format
1767
  msgid "%s events successfully imported to your website."
1768
  msgstr "% s Events wurden erfolgreich in Ihre Website importiert."
1769
 
1770
- #: app/features/ix/thirdparty.php:108
1771
- msgid "Attention"
1772
- msgstr "Achtung"
1773
-
1774
- #: app/features/ix/thirdparty.php:108
 
 
1775
  msgid ""
1776
  "Although we tried our best to make the events completely compatible with MEC "
1777
  "but some modification might be needed. We suggest you to edit the imported "
1778
- "listings one by one on MEC edit event page and make sure thay're correct."
1779
  msgstr ""
1780
  "Wir haben zwar unser Bestes gegeben, um die Events vollständig kompatibel "
1781
  "mit MEC zu machen, aber einige Änderungen sind möglicherweise erforderlich. "
1782
  "Wir empfehlen Ihnen, die importierten Einträge nacheinander auf der MEC Edit "
1783
  "Event Seite zu bearbeiten und sicherzustellen, dass sie korrekt sind."
1784
 
1785
- #: app/features/labels.php:60
1786
- #: app/features/mec/meta_boxes/display_options.php:658
1787
- #: app/features/mec/meta_boxes/search_form.php:52
1788
- #: app/features/mec/meta_boxes/search_form.php:99
1789
- #: app/features/mec/meta_boxes/search_form.php:146
1790
- #: app/features/mec/meta_boxes/search_form.php:219
1791
- #: app/features/mec/meta_boxes/search_form.php:266
1792
- #: app/features/mec/meta_boxes/search_form.php:313
1793
- #: app/features/mec/meta_boxes/search_form.php:353
1794
- #: app/features/mec/meta_boxes/search_form.php:400
1795
- #: app/features/mec/meta_boxes/search_form.php:447 app/libraries/skins.php:790
1796
- msgid "Label"
1797
- msgstr "Label"
1798
-
1799
  #: app/features/labels.php:102 app/features/labels.php:133
1800
  #: app/features/labels.php:178
1801
  msgid "Color"
@@ -1839,11 +2006,12 @@ msgid "Featured"
1839
  msgstr "Ausgewähltes Bild"
1840
 
1841
  #: app/features/labels.php:117 app/features/labels.php:142
1842
- #: app/skins/agenda/render.php:41 app/skins/available_spot/tpl.php:35
1843
- #: app/skins/carousel/render.php:33 app/skins/countdown/tpl.php:28
1844
- #: app/skins/cover/tpl.php:31 app/skins/daily_view/render.php:26
1845
- #: app/skins/grid/render.php:53 app/skins/list/render.php:39
1846
- #: app/skins/masonry/render.php:32 app/skins/monthly_view/calendar.php:84
 
1847
  #: app/skins/monthly_view/calendar_clean.php:85
1848
  #: app/skins/monthly_view/calendar_novel.php:81 app/skins/slider/render.php:52
1849
  #: app/skins/timetable/render.php:36 app/skins/timetable/render.php:99
@@ -1857,7 +2025,7 @@ msgstr ""
1857
 
1858
  #: app/features/labels.php:179 app/features/locations.php:231
1859
  #: app/features/organizers.php:201 app/features/speakers.php:245
1860
- #: app/modules/booking/steps/tickets.php:36
1861
  msgid "Count"
1862
  msgstr "Zähler"
1863
 
@@ -1872,7 +2040,7 @@ msgid "Event %s"
1872
  msgstr "Event %s"
1873
 
1874
  #: app/features/locations.php:59 app/features/mec.php:200
1875
- #: app/features/mec/meta_boxes/filter.php:87 app/libraries/main.php:4154
1876
  msgid "Locations"
1877
  msgstr "Orte"
1878
 
@@ -1946,7 +2114,7 @@ msgstr ""
1946
  "z.B. Karlsruhe Schlosshotel oder Frankfurt Allianz oder Dortmund "
1947
  "Westfalenhalle"
1948
 
1949
- #: app/features/locations.php:298 app/features/mec/settings.php:896
1950
  #: app/widgets/single.php:115
1951
  msgid "Event Location"
1952
  msgstr "Veranstaltungsort"
@@ -1980,7 +2148,7 @@ msgid "Don't show map in single event page"
1980
  msgstr "Karte in Einzelansicht nicht anzeigen"
1981
 
1982
  #: app/features/mec.php:201 app/features/mec/meta_boxes/filter.php:104
1983
- #: app/features/organizers.php:59 app/libraries/main.php:4156
1984
  msgid "Organizers"
1985
  msgstr "Veranstalter"
1986
 
@@ -2052,14 +2220,13 @@ msgid "%s - Most Powerful & Easy to Use Events Management System"
2052
  msgstr ""
2053
 
2054
  #: app/features/mec/dashboard.php:61
2055
- msgid "Modern Event Calendar"
2056
- msgstr ""
2057
-
2058
- #: app/features/mec/dashboard.php:61
2059
- msgid "Modern Event Calendar (Lite)"
2060
- msgstr ""
2061
 
2062
  #: app/features/mec/dashboard.php:63 app/libraries/factory.php:191
 
2063
  msgid "Rate the plugin ★★★★★"
2064
  msgstr ""
2065
 
@@ -2129,9 +2296,9 @@ msgstr ""
2129
  msgid "OPEN A TICKET"
2130
  msgstr "Ein Ticket eröffnen"
2131
 
2132
- #: app/features/mec/dashboard.php:160 app/features/mec/settings.php:395
2133
  msgid "Upcoming Events"
2134
- msgstr "Kommende Veranstaltungen"
2135
 
2136
  #: app/features/mec/dashboard.php:184
2137
  msgid "Popular Gateways"
@@ -2180,21 +2347,21 @@ msgstr "Änderungsprotokoll"
2180
 
2181
  #: app/features/mec/gateways.php:52 app/features/mec/messages.php:52
2182
  #: app/features/mec/notifications.php:51 app/features/mec/regform.php:50
2183
- #: app/features/mec/settings.php:222 app/features/mec/styles.php:52
2184
  #: app/features/mec/styling.php:78 app/features/mec/support.php:50
2185
  msgid "Styling Options"
2186
  msgstr "Styling-Optionen"
2187
 
2188
  #: app/features/mec/gateways.php:59 app/features/mec/messages.php:59
2189
  #: app/features/mec/notifications.php:58 app/features/mec/regform.php:57
2190
- #: app/features/mec/settings.php:229 app/features/mec/styles.php:59
2191
  #: app/features/mec/styling.php:85 app/features/mec/support.php:57
2192
  msgid "Custom CSS"
2193
  msgstr "Custom CSS"
2194
 
2195
  #: app/features/mec/gateways.php:66 app/features/mec/messages.php:66
2196
  #: app/features/mec/messages.php:90 app/features/mec/notifications.php:65
2197
- #: app/features/mec/regform.php:64 app/features/mec/settings.php:236
2198
  #: app/features/mec/styles.php:66 app/features/mec/styling.php:92
2199
  #: app/features/mec/support.php:64
2200
  msgid "Messages"
@@ -2202,7 +2369,7 @@ msgstr "Nachrichten"
2202
 
2203
  #: app/features/mec/gateways.php:73 app/features/mec/messages.php:73
2204
  #: app/features/mec/notifications.php:72 app/features/mec/regform.php:71
2205
- #: app/features/mec/settings.php:243 app/features/mec/styles.php:73
2206
  #: app/features/mec/styling.php:99 app/features/mec/support.php:71
2207
  #: app/features/mec/support.php:84
2208
  msgid "Support"
@@ -2215,9 +2382,9 @@ msgstr "Support"
2215
  #: app/features/mec/notifications.php:425
2216
  #: app/features/mec/notifications.php:433 app/features/mec/regform.php:130
2217
  #: app/features/mec/regform.php:203 app/features/mec/regform.php:211
2218
- #: app/features/mec/settings.php:251 app/features/mec/settings.php:1316
2219
- #: app/features/mec/settings.php:1324 app/features/mec/settings.php:1368
2220
- #: app/features/mec/settings.php:1381 app/features/mec/styles.php:96
2221
  #: app/features/mec/styles.php:136 app/features/mec/styles.php:144
2222
  #: app/features/mec/styling.php:262 app/features/mec/styling.php:327
2223
  #: app/features/mec/styling.php:335
@@ -2226,14 +2393,14 @@ msgstr "Änderungen sichern"
2226
 
2227
  #: app/features/mec/gateways.php:130 app/features/mec/messages.php:137
2228
  #: app/features/mec/notifications.php:413 app/features/mec/regform.php:190
2229
- #: app/features/mec/settings.php:1349 app/features/mec/styles.php:123
2230
  #: app/features/mec/styling.php:313
2231
  msgid "Saved"
2232
  msgstr "Gesichert"
2233
 
2234
  #: app/features/mec/gateways.php:131 app/features/mec/messages.php:138
2235
  #: app/features/mec/notifications.php:414 app/features/mec/regform.php:191
2236
- #: app/features/mec/settings.php:1350 app/features/mec/styles.php:124
2237
  #: app/features/mec/styling.php:314
2238
  msgid "Settings Saved!"
2239
  msgstr ""
@@ -2528,13 +2695,13 @@ msgstr "Standardansicht"
2528
 
2529
  #: app/features/mec/meta_boxes/display_options.php:297
2530
  #: app/features/mec/meta_boxes/display_options.php:313
2531
- #: app/libraries/main.php:324 app/libraries/main.php:1162
2532
  msgid "List View"
2533
  msgstr "Listenansicht"
2534
 
2535
  #: app/features/mec/meta_boxes/display_options.php:298
2536
  #: app/features/mec/meta_boxes/display_options.php:323
2537
- #: app/libraries/main.php:328 app/libraries/main.php:1156
2538
  msgid "Yearly View"
2539
  msgstr "Jahresansicht"
2540
 
@@ -2545,13 +2712,13 @@ msgstr "Monatliche Kalenderansicht"
2545
 
2546
  #: app/features/mec/meta_boxes/display_options.php:300
2547
  #: app/features/mec/meta_boxes/display_options.php:343
2548
- #: app/libraries/main.php:331 app/libraries/main.php:1158
2549
  msgid "Weekly View"
2550
  msgstr "Wochenansicht"
2551
 
2552
  #: app/features/mec/meta_boxes/display_options.php:301
2553
  #: app/features/mec/meta_boxes/display_options.php:353
2554
- #: app/libraries/main.php:330 app/libraries/main.php:1159
2555
  msgid "Daily View"
2556
  msgstr "Tagesansicht"
2557
 
@@ -2641,7 +2808,7 @@ msgstr "z.B. 24"
2641
 
2642
  #: app/features/mec/meta_boxes/display_options.php:654
2643
  msgid "Filter By"
2644
- msgstr "Filtern nach\n"
2645
 
2646
  #: app/features/mec/meta_boxes/display_options.php:665
2647
  msgid "Convert Masonry to Grid"
@@ -2865,8 +3032,8 @@ msgstr "Such Formular anzeigen"
2865
  #: app/features/mec/meta_boxes/search_form.php:449
2866
  #: app/features/mec/meta_boxes/search_form.php:456
2867
  #: app/features/mec/meta_boxes/search_form.php:463
2868
- #: app/features/mec/settings.php:309 app/features/mec/settings.php:407
2869
- #: app/features/mec/settings.php:591
2870
  msgid "Disabled"
2871
  msgstr "Deaktiviert"
2872
 
@@ -3161,7 +3328,7 @@ msgstr "Mehrere Empfänger einfügen, durch Komma getrennt."
3161
  msgid "Email/Booking verification link."
3162
  msgstr "Bestätigungslink für Email/Buchung"
3163
 
3164
- #: app/features/mec/notifications.php:189 app/features/mec/settings.php:1044
3165
  msgid "Booking Confirmation"
3166
  msgstr "Buchungsbestätigung"
3167
 
@@ -3250,7 +3417,7 @@ msgstr "Titel der Veranstaltung"
3250
  msgid "Status of event"
3251
  msgstr "Status der Veranstaltung"
3252
 
3253
- #: app/features/mec/notifications.php:355 app/features/mec/settings.php:938
3254
  msgid "Event Note"
3255
  msgstr "Veranstaltungsnotiz"
3256
 
@@ -3262,91 +3429,95 @@ msgstr "Admin-link zur Veranstaltungsverwaltung"
3262
  msgid "Archive Page Options"
3263
  msgstr ""
3264
 
3265
- #: app/features/mec/settings.php:90 app/features/mec/settings.php:656
3266
  msgid "Export Module Options"
3267
  msgstr "Optionen für Export-Module"
3268
 
3269
- #: app/features/mec/settings.php:96 app/features/mec/settings.php:683
3270
  msgid "Local Time Module"
3271
  msgstr "Lokales Zeitmodul"
3272
 
3273
- #: app/features/mec/settings.php:102 app/features/mec/settings.php:695
3274
  msgid "QR Code Module"
3275
  msgstr "QR Code Module"
3276
 
3277
- #: app/features/mec/settings.php:108 app/features/mec/settings.php:713
3278
  #: app/widgets/single.php:147
3279
  msgid "Weather Module"
3280
  msgstr "Wettermodul"
3281
 
3282
- #: app/features/mec/settings.php:144 app/features/mec/settings.php:968
 
 
 
 
3283
  msgid "Additional Organizers"
3284
  msgstr "Zusätzliche Organisatoren"
3285
 
3286
- #: app/features/mec/settings.php:162 app/features/mec/settings.php:1085
3287
  msgid "Taxes / Fees"
3288
  msgstr "Steuern/Gebühren"
3289
 
3290
- #: app/features/mec/settings.php:168 app/features/mec/settings.php:1150
3291
  msgid "Ticket Variations & Options"
3292
  msgstr ""
3293
 
3294
- #: app/features/mec/settings.php:268
3295
  msgid "Time Format"
3296
  msgstr "Zeitformat"
3297
 
3298
- #: app/features/mec/settings.php:271
3299
  msgid "12 hours format with AM/PM"
3300
  msgstr "12-Stunden-Format mit AM/FM"
3301
 
3302
- #: app/features/mec/settings.php:272
3303
  msgid "24 hours format"
3304
  msgstr "24-Stunden-Format"
3305
 
3306
- #: app/features/mec/settings.php:274 app/features/mec/settings.php:287
3307
  msgid ""
3308
  "This option is for showing start/end time of events on frontend of website."
3309
  msgstr ""
3310
  "Diese Option ist um die Start/Endezeit von Events im Frontend der Webseite "
3311
  "anzuzeigen"
3312
 
3313
- #: app/features/mec/settings.php:279
3314
  msgid "Hide Events"
3315
  msgstr "Events verbergen"
3316
 
3317
- #: app/features/mec/settings.php:282
3318
  msgid "On Event Start"
3319
  msgstr "Am Event Start"
3320
 
3321
- #: app/features/mec/settings.php:283
3322
  msgid "+1 Hour after start"
3323
  msgstr "+1 Stunde nach dem Start"
3324
 
3325
- #: app/features/mec/settings.php:284
3326
  msgid "+2 Hours after start"
3327
  msgstr "+2 Stunden nach dem Start"
3328
 
3329
- #: app/features/mec/settings.php:285
3330
  msgid "On Event End"
3331
  msgstr "Am Event Ende"
3332
 
3333
- #: app/features/mec/settings.php:293
3334
  msgid "Multiple Day Events"
3335
  msgstr "Mehrtagesveranstaltung"
3336
 
3337
- #: app/features/mec/settings.php:296
3338
  msgid "Show only first day on List/Grid/Slider skins"
3339
  msgstr "Zeige nur den ersten Tag auf Listen/Raster(Grid)/Slider skins."
3340
 
3341
- #: app/features/mec/settings.php:297
3342
  msgid "Show only first day on all skins"
3343
  msgstr "Nur den ersten Tag in allen Ansichten zeigen"
3344
 
3345
- #: app/features/mec/settings.php:298
3346
  msgid "Show all days"
3347
  msgstr "Alle Tage anzeigen"
3348
 
3349
- #: app/features/mec/settings.php:300
3350
  msgid ""
3351
  "For showing all days of multiple day events on frontend or only show the "
3352
  "first day."
@@ -3354,27 +3525,27 @@ msgstr ""
3354
  "Um alle Tage anzuzeigen bei Events über mehrere Tage im Frontend oder nur "
3355
  "den ersten Tag anzeigen"
3356
 
3357
- #: app/features/mec/settings.php:306
3358
  msgid "Remove MEC Data on Plugin Uninstall"
3359
  msgstr "Entfernen von MEC Data auf dem Plugin Deinstallierer"
3360
 
3361
- #: app/features/mec/settings.php:310
3362
  msgid "Enabled"
3363
  msgstr "Aktiviert"
3364
 
3365
- #: app/features/mec/settings.php:316
3366
  msgid "Exclude Date Suffix"
3367
  msgstr "Ausschlussdatum Suffix"
3368
 
3369
- #: app/features/mec/settings.php:319
3370
  msgid "Remove suffix from calendars"
3371
  msgstr "Suffix aus den Kalendern entfernen"
3372
 
3373
- #: app/features/mec/settings.php:326 app/libraries/main.php:4163
3374
  msgid "Weekdays"
3375
  msgstr "Wochentage"
3376
 
3377
- #: app/features/mec/settings.php:334
3378
  msgid ""
3379
  "Proceed with caution. Default is set to Monday, Tuesday, Wednesday, Thursday "
3380
  "and Friday."
@@ -3382,63 +3553,63 @@ msgstr ""
3382
  "Vorsichtig vorgehen. Standardwert ist auf Montag, Dienstag, Mittwoch, "
3383
  "Donnerstag und Freitag gesetzt."
3384
 
3385
- #: app/features/mec/settings.php:341
3386
  msgid "Weekends"
3387
  msgstr "Wochenenden"
3388
 
3389
- #: app/features/mec/settings.php:349
3390
  msgid "Proceed with caution. Default is set to Saturday and Sunday."
3391
  msgstr "Vorsichtig vorgehen. Standardwert ist auf Samstag und Sonntag gesetzt."
3392
 
3393
- #: app/features/mec/settings.php:357
3394
  msgid "Archive Pages"
3395
  msgstr ""
3396
 
3397
- #: app/features/mec/settings.php:360
3398
  msgid "Archive Page Title"
3399
  msgstr "Titel der Archivseite"
3400
 
3401
- #: app/features/mec/settings.php:363
3402
  msgid "Default value is Events"
3403
  msgstr "Der Standardwert ist Ereignisse (Events)"
3404
 
3405
- #: app/features/mec/settings.php:368
3406
  msgid "Archive Page Skin"
3407
  msgstr "Skin Seite Archiv"
3408
 
3409
- #: app/features/mec/settings.php:375
3410
  msgid "Default value is Calendar/Monthly View"
3411
  msgstr "Der Standardwert ist Kalender / Monatsansicht"
3412
 
3413
- #: app/features/mec/settings.php:380
3414
  msgid "Category Page Skin"
3415
  msgstr "Kategorie Seiten Skin"
3416
 
3417
- #: app/features/mec/settings.php:387
3418
  msgid "Default value is List View"
3419
  msgstr "Standardwert ist Listenansicht"
3420
 
3421
- #: app/features/mec/settings.php:392
3422
  msgid "Category Events Method"
3423
  msgstr ""
3424
 
3425
- #: app/features/mec/settings.php:396
3426
  msgid "Expired Events"
3427
  msgstr ""
3428
 
3429
- #: app/features/mec/settings.php:398
3430
  msgid "Default value is Upcoming Events"
3431
  msgstr ""
3432
 
3433
- #: app/features/mec/settings.php:403
3434
  msgid "Events Archive Status"
3435
  msgstr "Events Archiv Status"
3436
 
3437
- #: app/features/mec/settings.php:406
3438
  msgid "Enabled (Recommended)"
3439
  msgstr "Ist aktiviert (empfohlen)"
3440
 
3441
- #: app/features/mec/settings.php:409
3442
  msgid ""
3443
  "If you disable it, then you should create a page as archive page of MEC. "
3444
  "Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
@@ -3448,11 +3619,11 @@ msgstr ""
3448
  "erstellen. Page´s slug muss gleich sein wie \"Main Slug\" von MEC. Außerdem "
3449
  "werden alle MEC-Rewrite-Regeln deaktiviert."
3450
 
3451
- #: app/features/mec/settings.php:419
3452
  msgid "Main Slug"
3453
  msgstr "Main Slug"
3454
 
3455
- #: app/features/mec/settings.php:422
3456
  msgid ""
3457
  "Default value is events. Valid characters are lowercase a-z, - character and "
3458
  "numbers."
@@ -3460,11 +3631,11 @@ msgstr ""
3460
  "Standardwert ist Events. Gültige Zeichen sind Kleinbuchstaben a-z, - Zeichen "
3461
  "und Zahlen."
3462
 
3463
- #: app/features/mec/settings.php:426
3464
  msgid "Category Slug"
3465
  msgstr "Category Slug"
3466
 
3467
- #: app/features/mec/settings.php:429
3468
  msgid ""
3469
  "It's slug of MEC categories, you can change it to events-cat or something "
3470
  "else. Default value is mec-category. Valid characters are lowercase a-z, - "
@@ -3476,138 +3647,138 @@ msgstr ""
3476
  "für den link. Zum Beispiel example.com/events-cat oder example.com/mec-"
3477
  "category"
3478
 
3479
- #: app/features/mec/settings.php:439
3480
  msgid "Single Event Date Format"
3481
  msgstr "Einzelveranstaltung Datumformat"
3482
 
3483
- #: app/features/mec/settings.php:442 app/features/mec/settings.php:804
3484
  msgid "Default is M d Y"
3485
  msgstr "Standardwert ist M-T-J"
3486
 
3487
- #: app/features/mec/settings.php:446
3488
  msgid "Date Method"
3489
  msgstr "Datum Methode"
3490
 
3491
- #: app/features/mec/settings.php:449
3492
  msgid "Next occurrence date"
3493
  msgstr "Nächstes vorkommende Datum"
3494
 
3495
- #: app/features/mec/settings.php:450
3496
  msgid "Referred date"
3497
  msgstr "Gewünschtes Datum"
3498
 
3499
- #: app/features/mec/settings.php:452
3500
  msgid ""
3501
  "\"Referred date\" shows the event date based on referred date in event list."
3502
  msgstr ""
3503
  "\"Gewünschtes Datum\" zeigt das Ereignisdatum basierend auf dem angegebenen "
3504
  "Datum in der Eventliste an."
3505
 
3506
- #: app/features/mec/settings.php:456
3507
  msgid "Single Event Style"
3508
  msgstr "Single Event Stil"
3509
 
3510
- #: app/features/mec/settings.php:459
3511
  msgid "Default Style"
3512
  msgstr "Standardstil voreingestellt"
3513
 
3514
- #: app/features/mec/settings.php:460
3515
  msgid "Modern Style"
3516
  msgstr "Moderner Stil"
3517
 
3518
- #: app/features/mec/settings.php:462
3519
  msgid "Choose your single event style."
3520
  msgstr "Wählen Sie Ihren Single Event Stil"
3521
 
3522
- #: app/features/mec/settings.php:466
3523
  #, fuzzy
3524
  #| msgid "Booking"
3525
  msgid "Booking Style"
3526
  msgstr "Buchung / Reservierung"
3527
 
3528
- #: app/features/mec/settings.php:469 app/features/mec/settings.php:580
3529
  msgid "Default"
3530
  msgstr "Standardeinstellung"
3531
 
3532
- #: app/features/mec/settings.php:470
3533
  #, fuzzy
3534
  #| msgid "Modal 1"
3535
  msgid "Modal"
3536
  msgstr "Modal 1"
3537
 
3538
- #: app/features/mec/settings.php:472
3539
  #, fuzzy
3540
  #| msgid "Choose your single event style."
3541
  msgid "Choose your Booking style."
3542
  msgstr "Wählen Sie Ihren Single Event Stil"
3543
 
3544
- #: app/features/mec/settings.php:480
3545
  msgid "Currency"
3546
  msgstr "Währung"
3547
 
3548
- #: app/features/mec/settings.php:490
3549
  msgid "Currency Sign"
3550
  msgstr "Währungssymbol"
3551
 
3552
- #: app/features/mec/settings.php:493
3553
  msgid "Default value will be \"currency\" if you leave it empty."
3554
  msgstr "Standardwert wird \"currency\" sein wenn Sie es leer lassen"
3555
 
3556
- #: app/features/mec/settings.php:497
3557
  msgid "Currency Position"
3558
  msgstr "Position des Währungssymbols"
3559
 
3560
- #: app/features/mec/settings.php:500
3561
  msgid "Before $10"
3562
  msgstr "Vor $10"
3563
 
3564
- #: app/features/mec/settings.php:501
3565
  msgid "After 10$"
3566
  msgstr "Nach 10$"
3567
 
3568
- #: app/features/mec/settings.php:506
3569
  msgid "Thousand Separator"
3570
  msgstr "Tausendertrennzeichen"
3571
 
3572
- #: app/features/mec/settings.php:512
3573
  msgid "Decimal Separator"
3574
  msgstr "Dezimaltrennzeichen"
3575
 
3576
- #: app/features/mec/settings.php:522
3577
  msgid "No decimal"
3578
  msgstr "Keine Dezimale"
3579
 
3580
- #: app/features/mec/settings.php:531
3581
  #, fuzzy
3582
  #| msgid "No Search Options"
3583
  msgid "Speakers Options"
3584
  msgstr "Keine Suchoptionen"
3585
 
3586
- #: app/features/mec/settings.php:537
3587
  #, fuzzy
3588
  #| msgid "Enable taxes / fees module"
3589
  msgid "Enable speakers feature"
3590
  msgstr "Modul für Gebühren/Steuern aktivieren"
3591
 
3592
- #: app/features/mec/settings.php:553
3593
  msgid "Show Google Maps on event page"
3594
  msgstr "Google Maps auf der Veranstaltungsseite anzeigen"
3595
 
3596
- #: app/features/mec/settings.php:558 app/features/mec/settings.php:726
3597
- #: app/features/mec/settings.php:1248
3598
  msgid "API Key"
3599
  msgstr "API Schlüssel"
3600
 
3601
- #: app/features/mec/settings.php:561 app/features/mec/settings.php:1251
3602
- #: app/features/mec/settings.php:1258
3603
  msgid "Required!"
3604
  msgstr "Erforderlich (Pflichtfeld)"
3605
 
3606
- #: app/features/mec/settings.php:565
3607
  msgid "Zoom level"
3608
  msgstr "Zoom"
3609
 
3610
- #: app/features/mec/settings.php:572
3611
  msgid ""
3612
  "For Google Maps module in single event page. In Google Maps skin, it will "
3613
  "caculate the zoom level automatically based on event boundaries."
@@ -3616,190 +3787,192 @@ msgstr ""
3616
  "es die Zoom-Ebene automatisch kalkulieren, basierend auf den Eventort "
3617
  "Angrenzungen"
3618
 
3619
- #: app/features/mec/settings.php:576
3620
  msgid "Google Maps Style"
3621
  msgstr "Google Maps Stil"
3622
 
3623
- #: app/features/mec/settings.php:588
3624
  msgid "Direction on single event"
3625
  msgstr "Richtung auf einzelne Veranstaltung"
3626
 
3627
- #: app/features/mec/settings.php:592
3628
  msgid "Simple Method"
3629
  msgstr "Einfache Methode"
3630
 
3631
- #: app/features/mec/settings.php:593
3632
  msgid "Advanced Method"
3633
  msgstr "Fortgeschrittene Methode"
3634
 
3635
- #: app/features/mec/settings.php:598
3636
  msgid "Lightbox Date Format"
3637
  msgstr "Leuchtkasten Datumsformat"
3638
 
3639
- #: app/features/mec/settings.php:601
3640
  msgid "Default value is M d Y"
3641
  msgstr "Standardwert ist M T J"
3642
 
3643
- #: app/features/mec/settings.php:605
3644
  msgid "Google Maps API"
3645
  msgstr "Google Maps API"
3646
 
3647
- #: app/features/mec/settings.php:609
3648
  msgid "Don't load Google Maps API library"
3649
  msgstr "Google Maps API Bibliothek nicht laden"
3650
 
3651
- #: app/features/mec/settings.php:611
3652
  msgid "Check it only if another plugin/theme is loading the Google Maps API"
3653
  msgstr ""
3654
  "Checken Sie es nur wenn ein anderes plugin/Thema die Google Maps API lädt."
3655
 
3656
- #: app/features/mec/settings.php:623
3657
  msgid "Enable Google Recaptcha"
3658
  msgstr "Google Recaptcha aktivieren"
3659
 
3660
- #: app/features/mec/settings.php:630
3661
  msgid "Enable on booking form"
3662
  msgstr "Auf dem Buchungsformular aktivieren"
3663
 
3664
- #: app/features/mec/settings.php:636
3665
- msgid "Enable on \"Frontend Event Submittion\" form"
 
 
3666
  msgstr "Aktivieren auf dem \"Frontend Event Submittion\" Formular"
3667
 
3668
- #: app/features/mec/settings.php:640
3669
  msgid "Site Key"
3670
  msgstr "Site Key (Seitenschlüssel)"
3671
 
3672
- #: app/features/mec/settings.php:646
3673
  msgid "Secret Key"
3674
  msgstr "Geheimschlüssel"
3675
 
3676
- #: app/features/mec/settings.php:660
3677
  msgid ""
3678
  "Show export module (iCal export and add to Google calendars) on event page"
3679
  msgstr ""
3680
  "Exportmodule auf Veranstaltungsseite anzeigen (iCal export und hinzufügen zu "
3681
  "Google calendars)"
3682
 
3683
- #: app/features/mec/settings.php:667
3684
  msgid "Google Calendar"
3685
  msgstr "Google Calendar"
3686
 
3687
- #: app/features/mec/settings.php:687
3688
  msgid "Show event time based on local time of visitor on event page"
3689
  msgstr ""
3690
  "Zeige die Eventzeit basierend auf der Ortszeit des Besuchers auf der "
3691
  "Eventseite"
3692
 
3693
- #: app/features/mec/settings.php:703
3694
  msgid "Show QR code of event in details page and booking invoice"
3695
  msgstr ""
3696
  "Zeigen Sie QR-Code des Events in der Detailseite und in der Buchungsrechnung "
3697
  "an"
3698
 
3699
- #: app/features/mec/settings.php:721
3700
  msgid "Show weather module on event page"
3701
  msgstr "Wettermodul auf der Eventseite anzeigen"
3702
 
3703
- #: app/features/mec/settings.php:729
3704
  #, php-format
3705
  msgid "You can get a free API Key from %s"
3706
  msgstr "Sie können einen kostenlosen API-Schlüssel von% s erhalten"
3707
 
3708
- #: app/features/mec/settings.php:741
3709
  msgid "Show countdown module on event page"
3710
  msgstr "Countdownmodul auf Veranstaltungsseite anzeigen"
3711
 
3712
- #: app/features/mec/settings.php:746
3713
  msgid "Countdown Style"
3714
  msgstr "Countdown Stil"
3715
 
3716
- #: app/features/mec/settings.php:749
3717
  msgid "Plain Style"
3718
  msgstr "Einfacher schlichter Stil"
3719
 
3720
- #: app/features/mec/settings.php:750
3721
  msgid "Flip Style"
3722
  msgstr "Flip Stil"
3723
 
3724
- #: app/features/mec/settings.php:762
3725
  msgid "Show social network module"
3726
  msgstr "Modul für Soziale Netzwerke anzeigen"
3727
 
3728
- #: app/features/mec/settings.php:787
3729
  msgid "Show next event module on event page"
3730
  msgstr "Nächstes Event Modul auf der Eventseite anzeigen"
3731
 
3732
- #: app/features/mec/settings.php:792
3733
  msgid "Method"
3734
  msgstr "Methode"
3735
 
3736
- #: app/features/mec/settings.php:795
3737
  msgid "Next Occurrence of Current Event"
3738
  msgstr "Nächstes Auftreten des aktuellen Events"
3739
 
3740
- #: app/features/mec/settings.php:796
3741
  msgid "Next Occurrence of Other Events"
3742
  msgstr "Nächstes Auftreten von anderen Events."
3743
 
3744
- #: app/features/mec/settings.php:801 app/features/mec/settings.php:991
3745
  msgid "Date Format"
3746
  msgstr "Datumsformat"
3747
 
3748
- #: app/features/mec/settings.php:813
3749
  msgid "Events List Page"
3750
  msgstr "Seite Liste der Veranstaltungen"
3751
 
3752
- #: app/features/mec/settings.php:822 app/features/mec/settings.php:834
3753
  #, php-format
3754
  msgid "Put %s shortcode into the page."
3755
  msgstr "%s shortcode in die Seite einfügen"
3756
 
3757
- #: app/features/mec/settings.php:825
3758
  msgid "Add/Edit Events Page"
3759
  msgstr "Veranstaltungsseite hinzufügen/bearbeiten"
3760
 
3761
- #: app/features/mec/settings.php:839
3762
  msgid "Enable event submission by guest (Not logged-in) users"
3763
  msgstr ""
3764
  "Das Erstellen von Veranstaltungen durch Gäste (nicht angemeldete Nutzer) "
3765
  "erlauben"
3766
 
3767
- #: app/features/mec/settings.php:846
3768
  msgid "Enable mandatory email and name for guest user"
3769
  msgstr ""
3770
  "Aktivieren Sie die obligatorische E-Mail und den Namen für Gastbenutzer"
3771
 
3772
- #: app/features/mec/settings.php:850
3773
  msgid "Frontend Event Submission Sections"
3774
  msgstr "Frontend Veranstaltungen Einreichung Sektionen"
3775
 
3776
- #: app/features/mec/settings.php:872 app/widgets/single.php:119
3777
  msgid "Event Categories"
3778
  msgstr "Veranstaltungskategorien"
3779
 
3780
- #: app/features/mec/settings.php:878
3781
  msgid "Event Labels"
3782
  msgstr "Event Labels"
3783
 
3784
- #: app/features/mec/settings.php:890
3785
  msgid "Event Tags"
3786
  msgstr "Event Schlagworte"
3787
 
3788
- #: app/features/mec/settings.php:902 app/widgets/single.php:123
3789
  msgid "Event Organizer"
3790
  msgstr "Veranstaltungsmanager"
3791
 
3792
- #: app/features/mec/settings.php:920
3793
  msgid "Booking Options"
3794
  msgstr "Buchungsoptionen"
3795
 
3796
- #: app/features/mec/settings.php:926
3797
  #, fuzzy
3798
  #| msgid "Fees/Taxes Options"
3799
  msgid "Fees / Taxes Options"
3800
  msgstr "Gebühren/Steuer Optionen"
3801
 
3802
- #: app/features/mec/settings.php:940
3803
  #, php-format
3804
  msgid ""
3805
  "Users can put a note for editors while they're submitting the event. Also "
@@ -3811,35 +3984,42 @@ msgstr ""
3811
  "Eventbenachrichtigung setzen, um die Notizen der Benutzer in der E-Mail zu "
3812
  "erhalten."
3813
 
3814
- #: app/features/mec/settings.php:944
3815
  msgid "Visibility of Note"
3816
  msgstr "Sichtbarkeit der Anmerkungen zum Event "
3817
 
3818
- #: app/features/mec/settings.php:947
3819
  msgid "Always"
3820
  msgstr "Immer"
3821
 
3822
- #: app/features/mec/settings.php:948
3823
  msgid "While event is not published"
3824
  msgstr "Das Ereignis wird nicht veröffentlicht"
3825
 
3826
- #: app/features/mec/settings.php:951
3827
  msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
3828
  msgstr ""
3829
  "Die Ereignisnotiz wird im Frontend-Einreichungsformular angezeigt und das "
3830
  "Ereignis im Backend bearbeitet."
3831
 
3832
- #: app/features/mec/settings.php:957
 
 
 
 
 
 
 
3833
  msgid "Exceptional days"
3834
  msgstr "Ausgesuchte ausnehmende Tage"
3835
 
3836
- #: app/features/mec/settings.php:961
3837
  msgid "Show exceptional days option on Add/Edit events page"
3838
  msgstr ""
3839
  "Ausnehmende Tage anzeigen auf der Seite Ereignisse hinzufügen / bearbeiten "
3840
  "(Show exceptional days option on Add/Edit events page)"
3841
 
3842
- #: app/features/mec/settings.php:962
3843
  msgid ""
3844
  "Using this option you can include/exclude certain days to/from event "
3845
  "occurrence dates."
@@ -3847,7 +4027,7 @@ msgstr ""
3847
  "Mit dieser Option können Sie bestimmte Tage von vorkommenden Eventdaten ein-/"
3848
  "ausschließen."
3849
 
3850
- #: app/features/mec/settings.php:972
3851
  msgid ""
3852
  "Show additional organizers option on Add/Edit events page and single event "
3853
  "page."
@@ -3855,27 +4035,27 @@ msgstr ""
3855
  "Zeigen Sie zusätzliche Organisatoren auf der Seite Events hinzufügen / "
3856
  "bearbeiten und auf der Seite für einzelne Events an."
3857
 
3858
- #: app/features/mec/settings.php:986
3859
  msgid "Enable booking module"
3860
  msgstr "Buchungsmodul aktivieren"
3861
 
3862
- #: app/features/mec/settings.php:994
3863
  msgid "Default is Y-m-d"
3864
  msgstr "Voreinstellung ist J-M-T"
3865
 
3866
- #: app/features/mec/settings.php:998
3867
  msgid "Maximum Dates"
3868
  msgstr "Maximale Anzahl von Daten"
3869
 
3870
- #: app/features/mec/settings.php:1000
3871
  msgid "Default is 6"
3872
  msgstr "Die Voreinstellung ist 6"
3873
 
3874
- #: app/features/mec/settings.php:1004
3875
  msgid "Thank You Page"
3876
  msgstr "Danke Seite"
3877
 
3878
- #: app/features/mec/settings.php:1012
3879
  msgid ""
3880
  "User redirects to this page after booking. Leave it empty if you want to "
3881
  "disable it."
@@ -3883,11 +4063,11 @@ msgstr ""
3883
  "Benutzer werden auf diese Seite nach der Buchung weitergeleitet. Lassen Sie "
3884
  "es leer, wenn Sie es deaktivieren möchten."
3885
 
3886
- #: app/features/mec/settings.php:1020
3887
  msgid "Enable Express Attendees Form"
3888
  msgstr "Aktivieren Sie das Express-Teilnehmerformular"
3889
 
3890
- #: app/features/mec/settings.php:1022
3891
  msgid ""
3892
  "Users are able to apply first attendee information for other attendees in "
3893
  "the booking form."
@@ -3895,87 +4075,87 @@ msgstr ""
3895
  "Benutzer können erste Teilnehmerinformationen für andere Teilnehmer im "
3896
  "Buchungsformular anwenden."
3897
 
3898
- #: app/features/mec/settings.php:1025
3899
  msgid "Email verification"
3900
  msgstr "Email-Verifizierung"
3901
 
3902
- #: app/features/mec/settings.php:1031
3903
  msgid "Auto verification for free bookings"
3904
  msgstr "Automatische Verifizierung für kostenlose Buchungen"
3905
 
3906
- #: app/features/mec/settings.php:1040
3907
  msgid "Auto verification for paid bookings"
3908
  msgstr "Automatische Verifizierung für kostenpflichtige Buchungen"
3909
 
3910
- #: app/features/mec/settings.php:1050
3911
  msgid "Auto confirmation for free bookings"
3912
  msgstr "Automatische Bestätigung für kostenlose Buchungen"
3913
 
3914
- #: app/features/mec/settings.php:1059
3915
  msgid "Auto confirmation for paid bookings"
3916
  msgstr "Automatische Bestätigung für kostenpflichtige Buchungen"
3917
 
3918
- #: app/features/mec/settings.php:1076
3919
  msgid "Enable coupons module"
3920
  msgstr "Gutscheinmodul aktivieren"
3921
 
3922
- #: app/features/mec/settings.php:1093
3923
  msgid "Enable taxes / fees module"
3924
  msgstr "Modul für Gebühren/Steuern aktivieren"
3925
 
3926
- #: app/features/mec/settings.php:1098
3927
  msgid "Add Fee"
3928
  msgstr "Gebühr hinzufügen"
3929
 
3930
- #: app/features/mec/settings.php:1158
3931
  #, fuzzy
3932
  #| msgid "Enable coupons module"
3933
  msgid "Enable ticket options module"
3934
  msgstr "Gutscheinmodul aktivieren"
3935
 
3936
- #: app/features/mec/settings.php:1163
3937
  msgid "Add Variation / Option"
3938
  msgstr ""
3939
 
3940
- #: app/features/mec/settings.php:1213
3941
  msgid "Enable BuddyPress Integration"
3942
  msgstr "Buddy Press Integration deaktivieren"
3943
 
3944
- #: app/features/mec/settings.php:1220
3945
  msgid "Show \"Attendees Module\" in event details page"
3946
  msgstr "Zeigt \"Teilnehmermodul\" in Event Details Seite"
3947
 
3948
- #: app/features/mec/settings.php:1224
3949
  msgid "Attendees Limit"
3950
  msgstr "Teilnehmer Limit, maximale Anzahl"
3951
 
3952
- #: app/features/mec/settings.php:1232
3953
  msgid "Add booking activity to user profile"
3954
  msgstr "Fügt Buchungsaktivitäten dem Benutzerprofil hinzu"
3955
 
3956
- #: app/features/mec/settings.php:1243
3957
  msgid "Enable Mailchimp Integration"
3958
  msgstr "Mailchimp Integration deaktivieren"
3959
 
3960
- #: app/features/mec/settings.php:1255
3961
  msgid "List ID"
3962
  msgstr "List ID"
3963
 
3964
- #: app/features/mec/settings.php:1262
3965
  msgid "Subscription Status"
3966
  msgstr "Buchungsstatus"
3967
 
3968
- #: app/features/mec/settings.php:1265
3969
  msgid "Subscribe automatically"
3970
  msgstr "automatisch Anmelden/Abonnieren"
3971
 
3972
- #: app/features/mec/settings.php:1266
3973
  msgid "Subscribe by verification"
3974
  msgstr ""
3975
  "Anmelden/Abonnieren durch Bestätigung\n"
3976
  " "
3977
 
3978
- #: app/features/mec/settings.php:1268
3979
  msgid ""
3980
  "If you choose \"Subscribe by verification\" then an email will send to user "
3981
  "by mailchimp for subscription verification."
@@ -3983,57 +4163,61 @@ msgstr ""
3983
  "Wenn Sie \"Anmelden durch Verifizierung\" wählen, wird eine E-Mail an den "
3984
  "Benutzer per Mailchimp zur Bestätigung gesendet."
3985
 
3986
- #: app/features/mec/settings.php:1278
3987
  #, php-format
3988
  msgid "%s is required to use this section."
3989
  msgstr ""
3990
 
3991
- #: app/features/mec/settings.php:1281
3992
  msgid "Purchase Code"
3993
  msgstr "Kaufcode"
3994
 
3995
- #: app/features/mec/settings.php:1286 app/features/mec/settings.php:1352
3996
- #: app/features/mec/settings.php:1370
3997
  msgid "Verified"
3998
  msgstr "Verifiziert"
3999
 
4000
- #: app/features/mec/settings.php:1288
4001
  msgid "UnVerified"
4002
  msgstr "Unbestätigt"
4003
 
4004
- #: app/features/mec/settings.php:1290
 
 
 
 
4005
  msgid ""
4006
- "Please insert your purchase code validation. read documentation for more "
4007
  "information."
4008
  msgstr ""
4009
  "Bite geben Sie Ihre KaufCode Validierung ein. Bitte lesen Sie die "
4010
  "Dokumentation für mehr Informationen."
4011
 
4012
- #: app/features/mec/settings.php:1293
4013
  msgid "Product Name"
4014
  msgstr ""
4015
 
4016
- #: app/features/mec/settings.php:1296
4017
  msgid "1 License for MEC Plugin"
4018
  msgstr ""
4019
 
4020
- #: app/features/mec/settings.php:1297
4021
  msgid "5 License for MEC Plugin"
4022
  msgstr ""
4023
 
4024
- #: app/features/mec/settings.php:1298
4025
  msgid "10 License for MEC Plugin"
4026
  msgstr ""
4027
 
4028
- #: app/features/mec/settings.php:1305
4029
  msgid "MEC Deactivation"
4030
  msgstr "MEC Deaktivierung"
4031
 
4032
- #: app/features/mec/settings.php:1307
4033
  msgid "Deactivate"
4034
  msgstr "Deaktivieren"
4035
 
4036
- #: app/features/mec/settings.php:1309
4037
  msgid ""
4038
  "For deactivation first delete your purchase from above field then press save "
4039
  "after that click on deactivate for deactivate this purchase code from this "
@@ -4044,7 +4228,7 @@ msgstr ""
4044
  "Kaufcode aus dieser Domain zu deaktivieren, dann können Sie eine andere "
4045
  "Domain aktivieren."
4046
 
4047
- #: app/features/mec/settings.php:1372
4048
  msgid "Please Refresh Page"
4049
  msgstr "Bitte Seiten Refresh vornehmen"
4050
 
@@ -4203,10 +4387,12 @@ msgid "eg. john@smith.com"
4203
  msgstr "z.B.. max@mustermann.com"
4204
 
4205
  #: app/features/organizers.php:281
 
 
4206
  msgid "eg. https://webnus.net"
4207
- msgstr "z.B.. http://ihreseite.com/maxmustermann"
4208
 
4209
- #: app/features/organizers.php:300 app/libraries/main.php:4187
4210
  #: app/skins/single.php:194
4211
  msgid "Other Organizers"
4212
  msgstr "Andere Veranstalter"
@@ -4218,8 +4404,52 @@ msgstr ""
4218
  "Sie können zusätzliche Veranstalter zusätzlich zum Hauptorganisator "
4219
  "auswählen, wenn Sie möchten."
4220
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4221
  #: app/features/speakers.php:56 app/features/speakers.php:242
4222
- #: app/libraries/main.php:4159
4223
  msgid "Speaker"
4224
  msgstr ""
4225
 
@@ -4259,7 +4489,7 @@ msgid "Insert URL of Facebook Page"
4259
  msgstr "Vom Facebook Kalender Importieren"
4260
 
4261
  #: app/features/speakers.php:135 app/features/speakers.php:187
4262
- #: app/libraries/main.php:1063
4263
  msgid "Google+"
4264
  msgstr "Google+"
4265
 
@@ -4284,24 +4514,33 @@ msgstr "Geben Sie -1 ein für unlimitierte Verwendung"
4284
  msgid "%s Price"
4285
  msgstr "%s Preis"
4286
 
4287
- #: app/libraries/book.php:537
4288
  msgid "Discount"
4289
  msgstr "Rabatt"
4290
 
4291
- #: app/libraries/book.php:625 app/modules/booking/default.php:274
4292
- #: app/modules/booking/default.php:369
4293
  msgid "Download Invoice"
4294
- msgstr "Download Rechnung\n"
4295
 
4296
  #: app/libraries/factory.php:151
4297
  msgid "M.E. Calendar"
4298
  msgstr "M.E. Calender"
4299
 
4300
  #: app/libraries/factory.php:190
 
4301
  msgid "Upgrade to Pro Version"
4302
  msgstr ""
4303
 
 
 
 
 
 
 
 
4304
  #: app/libraries/factory.php:213
 
4305
  msgid "Upgrade"
4306
  msgstr ""
4307
 
@@ -4359,352 +4598,340 @@ msgstr ""
4359
  "Eine Vorschau kann nicht angezeit werden, da es sich um einen geschützen "
4360
  "Beitrag handelt."
4361
 
4362
- #: app/libraries/main.php:325 app/libraries/main.php:1163
4363
  msgid "Grid View"
4364
  msgstr "Rasterdarstellung"
4365
 
4366
- #: app/libraries/main.php:326 app/libraries/main.php:1164
4367
  msgid "Agenda View"
4368
  msgstr "Agendaansicht"
4369
 
4370
- #: app/libraries/main.php:327 app/libraries/main.php:1155
4371
  msgid "Full Calendar"
4372
  msgstr "Ganzer Kalender"
4373
 
4374
- #: app/libraries/main.php:329 app/libraries/main.php:1157
4375
  msgid "Calendar/Monthly View"
4376
  msgstr "Kalender-/Monatsansicht"
4377
 
4378
- #: app/libraries/main.php:332 app/libraries/main.php:1160
4379
  msgid "Timetable View"
4380
  msgstr "Stundenplan"
4381
 
4382
- #: app/libraries/main.php:333 app/libraries/main.php:1161
4383
  msgid "Masonry View"
4384
  msgstr "Kachel Ansicht"
4385
 
4386
- #: app/libraries/main.php:334 app/libraries/main.php:1165
4387
  msgid "Map View"
4388
  msgstr "Kartenansicht"
4389
 
4390
- #: app/libraries/main.php:335
4391
  msgid "Cover View"
4392
  msgstr "Deckblattansicht"
4393
 
4394
- #: app/libraries/main.php:336
4395
  msgid "Countdown View"
4396
  msgstr "Countdownansicht"
4397
 
4398
- #: app/libraries/main.php:337
4399
  msgid "Available Spot"
4400
  msgstr "Verfügbarer Spot"
4401
 
4402
- #: app/libraries/main.php:338
4403
  msgid "Carousel View"
4404
  msgstr "Karussellansicht"
4405
 
4406
- #: app/libraries/main.php:339
4407
  msgid "Slider View"
4408
  msgstr "Slideransicht"
4409
 
4410
- #: app/libraries/main.php:376 app/libraries/main.php:4165
4411
  msgid "SU"
4412
  msgstr "SO"
4413
 
4414
- #: app/libraries/main.php:377 app/libraries/main.php:4166
4415
  msgid "MO"
4416
  msgstr "MO"
4417
 
4418
- #: app/libraries/main.php:378 app/libraries/main.php:4167
4419
  msgid "TU"
4420
  msgstr "DI"
4421
 
4422
- #: app/libraries/main.php:379 app/libraries/main.php:4168
4423
  msgid "WE"
4424
  msgstr "MI"
4425
 
4426
- #: app/libraries/main.php:380 app/libraries/main.php:4169
4427
  msgid "TH"
4428
  msgstr "DO"
4429
 
4430
- #: app/libraries/main.php:381 app/libraries/main.php:4170
4431
  msgid "FR"
4432
  msgstr "FR"
4433
 
4434
- #: app/libraries/main.php:382 app/libraries/main.php:4171
4435
  msgid "SA"
4436
  msgstr "SA"
4437
 
4438
- #: app/libraries/main.php:1021
4439
  msgid "Events at this location"
4440
  msgstr "Veranstaltungen an diesem Ort "
4441
 
4442
- #: app/libraries/main.php:1021
4443
  msgid "Event at this location"
4444
  msgstr "Veranstaltung an diesem Ort "
4445
 
4446
- #: app/libraries/main.php:1062
4447
  msgid "Facebook"
4448
  msgstr "Facebook"
4449
 
4450
- #: app/libraries/main.php:1064
4451
  msgid "Twitter"
4452
  msgstr "Twitter"
4453
 
4454
- #: app/libraries/main.php:1065 app/libraries/main.php:1118
4455
  msgid "Linkedin"
4456
  msgstr "Linkedin"
4457
 
4458
- #: app/libraries/main.php:1066 app/libraries/main.php:1144
4459
  msgid "VK"
4460
  msgstr ""
4461
 
4462
- #: app/libraries/main.php:1082
4463
  msgid "Share on Facebook"
4464
  msgstr "Teilen auf Facebook"
4465
 
4466
- #: app/libraries/main.php:1094
4467
  msgid "Google Plus"
4468
  msgstr "Google Plus"
4469
 
4470
- #: app/libraries/main.php:1106
4471
  msgid "Tweet"
4472
  msgstr "Tweet"
4473
 
4474
- #: app/libraries/main.php:1500
4475
  msgid "Your booking successfully verified."
4476
  msgstr "Ihre Buchung wurde erfolgreich verifiziert."
4477
 
4478
- #: app/libraries/main.php:1501
4479
  msgid "Your booking cannot verify!"
4480
  msgstr "Ihre Buchung kann nicht verifiziert werden!"
4481
 
4482
- #: app/libraries/main.php:1513
4483
  msgid "Your booking successfully canceled."
4484
  msgstr "Ihre Buchung wurde erfolgreich storniert."
4485
 
4486
- #: app/libraries/main.php:1514
4487
  msgid "Your booking cannot be canceled."
4488
  msgstr "Ihre Buchung kann nicht storniert werden."
4489
 
4490
- #: app/libraries/main.php:1518
4491
  msgid "You canceled the payment successfully."
4492
  msgstr "Sie haben die Zahlung erfolgreich storniert."
4493
 
4494
- #: app/libraries/main.php:1522
4495
  msgid "You returned from payment gateway successfully."
4496
  msgstr "Sie sind vom Bezahlungs-Gateway erfolgreich zurückgekehrt."
4497
 
4498
- #: app/libraries/main.php:1546
4499
  msgid "Cannot find the booking!"
4500
  msgstr "Kann die Buchung nicht finden!"
4501
 
4502
- #: app/libraries/main.php:1546
4503
  msgid "Booking is invalid."
4504
  msgstr "Buchung ist ungültig."
4505
 
4506
- #: app/libraries/main.php:1567
4507
  #, php-format
4508
  msgid "%s Invoice"
4509
  msgstr "% s Rechnung"
4510
 
4511
- #: app/libraries/main.php:1588
4512
  msgid "Transaction ID"
4513
  msgstr "Transaktions-ID"
4514
 
4515
- #: app/libraries/main.php:1597
4516
- msgid "Attendees"
4517
- msgstr "Teilnehmer"
4518
-
4519
- #: app/libraries/main.php:1611 app/libraries/main.php:4185
4520
- msgid "Ticket"
4521
- msgstr "Ticket"
4522
-
4523
- #: app/libraries/main.php:1641
4524
  msgid "Billing"
4525
  msgstr "Abrechnung"
4526
 
4527
- #: app/libraries/main.php:1652
4528
  msgid "Total"
4529
  msgstr "Gesamt"
4530
 
4531
- #: app/libraries/main.php:1685
4532
  msgid "Security nonce is not valid."
4533
  msgstr "Sicherheits-Nonce ist ungültig."
4534
 
4535
- #: app/libraries/main.php:1685 app/libraries/main.php:1717
4536
  msgid "iCal export stopped!"
4537
  msgstr "iCal Export wurde unterbrochen!"
4538
 
4539
- #: app/libraries/main.php:1717
4540
  #, fuzzy
4541
  #| msgid "Request is invalid!"
4542
  msgid "Request is not valid."
4543
  msgstr "Die Anfrage ist ungültig!"
4544
 
4545
- #: app/libraries/main.php:2037 app/libraries/main.php:2066
4546
- #: app/libraries/main.php:2095 app/libraries/main.php:2124
4547
- #: app/libraries/main.php:2153 app/libraries/main.php:2177
4548
- #: app/libraries/main.php:2221 app/libraries/main.php:2265
4549
- #: app/libraries/main.php:2312 app/libraries/main.php:2358
4550
  msgid "Sort"
4551
  msgstr "Sortieren"
4552
 
4553
- #: app/libraries/main.php:2043 app/libraries/main.php:2072
4554
- #: app/libraries/main.php:2101 app/libraries/main.php:2130
4555
- #: app/libraries/main.php:2183 app/libraries/main.php:2227
4556
- #: app/libraries/main.php:2271 app/libraries/main.php:2318
4557
  msgid "Required Field"
4558
  msgstr "Pflichtfeld"
4559
 
4560
- #: app/libraries/main.php:2049 app/libraries/main.php:2078
4561
- #: app/libraries/main.php:2107 app/libraries/main.php:2136
4562
- #: app/libraries/main.php:2189 app/libraries/main.php:2233
4563
- #: app/libraries/main.php:2277 app/libraries/main.php:2324
4564
  msgid "Insert a label for this field"
4565
  msgstr "Geben Sie eine Bezeichnung (Label) für dieses Feld ein."
4566
 
4567
- #: app/libraries/main.php:2159
4568
  msgid "HTML and shortcode are allowed."
4569
  msgstr "HTML und shortcodes sind erlaubt."
4570
 
4571
- #: app/libraries/main.php:2202 app/libraries/main.php:2246
4572
- #: app/libraries/main.php:2290
4573
  msgid "Option"
4574
  msgstr "Option"
4575
 
4576
- #: app/libraries/main.php:2324
4577
  #, php-format
4578
  msgid "Instead of %s, the page title with a link will be show."
4579
  msgstr "Anstelle von %s, wird der Seitentitel mit einem Link gezeigt"
4580
 
4581
- #: app/libraries/main.php:2326
4582
  msgid "Agreement Page"
4583
  msgstr "Zustimmungsseite"
4584
 
4585
- #: app/libraries/main.php:2335
4586
- msgid "Status"
4587
- msgstr ""
4588
-
4589
- #: app/libraries/main.php:2337
4590
  msgid "Checked by default"
4591
  msgstr ""
4592
 
4593
- #: app/libraries/main.php:2338
4594
  msgid "Unchecked by default"
4595
  msgstr ""
4596
 
4597
- #: app/libraries/main.php:2360
4598
  msgid "Insert a label for this option"
4599
  msgstr "Ein neues Label für diese Option einfügen"
4600
 
4601
- #: app/libraries/main.php:2375
4602
  msgid "Free"
4603
  msgstr "kostenfrei"
4604
 
4605
- #: app/libraries/main.php:3027
4606
  #, php-format
4607
  msgid "Copy of %s"
4608
  msgstr "Kopie von %s"
4609
 
4610
- #: app/libraries/main.php:3665
4611
  msgid "Booked an event."
4612
  msgstr "Eine Veranstaltung wurde gebucht."
4613
 
4614
- #: app/libraries/main.php:3706
4615
  #, php-format
4616
  msgid "%s booked %s event."
4617
  msgstr "%s gebuchtes %s Event"
4618
 
4619
- #: app/libraries/main.php:4148
4620
  msgid "Taxonomies"
4621
  msgstr "Klassifizierung "
4622
 
4623
- #: app/libraries/main.php:4150
4624
  msgid "Category Plural Label"
4625
  msgstr "Kategorien"
4626
 
4627
- #: app/libraries/main.php:4151
4628
  msgid "Category Singular Label"
4629
  msgstr "Kategorie"
4630
 
4631
- #: app/libraries/main.php:4152
4632
  msgid "Label Plural Label"
4633
  msgstr "Labels"
4634
 
4635
- #: app/libraries/main.php:4153
4636
  msgid "Label Singular Label"
4637
  msgstr "Label"
4638
 
4639
- #: app/libraries/main.php:4153
4640
  msgid "label"
4641
  msgstr "label"
4642
 
4643
- #: app/libraries/main.php:4154
4644
  msgid "Location Plural Label"
4645
  msgstr "Veranstaltungsorte"
4646
 
4647
- #: app/libraries/main.php:4155
4648
  msgid "Location Singular Label"
4649
  msgstr "Veranstaltungsort"
4650
 
4651
- #: app/libraries/main.php:4156
4652
  msgid "Organizer Plural Label"
4653
  msgstr "Veranstalter"
4654
 
4655
- #: app/libraries/main.php:4157
4656
  msgid "Organizer Singular Label"
4657
  msgstr "Veranstalter"
4658
 
4659
- #: app/libraries/main.php:4158
4660
  #, fuzzy
4661
  #| msgid "Label Plural Label"
4662
  msgid "Speaker Plural Label"
4663
  msgstr "Labels"
4664
 
4665
- #: app/libraries/main.php:4159
4666
  #, fuzzy
4667
  #| msgid "Label Singular Label"
4668
  msgid "Speaker Singular Label"
4669
  msgstr "Label"
4670
 
4671
- #: app/libraries/main.php:4165
4672
  msgid "Sunday abbreviation"
4673
  msgstr "Sonntag Abkürzung"
4674
 
4675
- #: app/libraries/main.php:4166
4676
  msgid "Monday abbreviation"
4677
  msgstr "Montag Abkürzung"
4678
 
4679
- #: app/libraries/main.php:4167
4680
  msgid "Tuesday abbreviation"
4681
  msgstr "Dienstag Abkürzung"
4682
 
4683
- #: app/libraries/main.php:4168
4684
  msgid "Wednesday abbreviation"
4685
  msgstr "Mittwoch Abkürzung"
4686
 
4687
- #: app/libraries/main.php:4169
4688
  msgid "Thursday abbreviation"
4689
  msgstr "Donnerstag Abkürzung"
4690
 
4691
- #: app/libraries/main.php:4170
4692
  msgid "Friday abbreviation"
4693
  msgstr "Freitag Abkürzung"
4694
 
4695
- #: app/libraries/main.php:4171
4696
  msgid "Saturday abbreviation"
4697
  msgstr "Samstag Abkürzung "
4698
 
4699
- #: app/libraries/main.php:4175
4700
  msgid "Others"
4701
  msgstr "Andere"
4702
 
4703
- #: app/libraries/main.php:4177
4704
  msgid "Booking Success Message"
4705
  msgstr "Buchung erfolgreich Mitteilung"
4706
 
4707
- #: app/libraries/main.php:4177
4708
  msgid ""
4709
  "Thanks for your booking. Your tickets booked, booking verification might be "
4710
  "needed, please check your email."
@@ -4712,75 +4939,93 @@ msgstr ""
4712
  "Vielen Dank für Ihre Buchung. Für die gebuchten Tickets ist ggf. eine "
4713
  "Bestätigung durch Sie erforderlich. Bitte überprüfen Sie Ihre Emails."
4714
 
4715
- #: app/libraries/main.php:4178 app/widgets/single.php:131
4716
  msgid "Register Button"
4717
  msgstr "Register Button"
4718
 
4719
- #: app/libraries/main.php:4178 app/skins/available_spot/tpl.php:164
4720
  #: app/skins/carousel/render.php:79 app/skins/carousel/render.php:104
4721
  #: app/skins/grid/render.php:76 app/skins/grid/render.php:107
4722
  #: app/skins/grid/render.php:139 app/skins/grid/render.php:167
4723
  #: app/skins/list/render.php:59 app/skins/list/render.php:140
4724
- #: app/skins/masonry/render.php:94 app/skins/single/default.php:217
4725
- #: app/skins/single/default.php:422 app/skins/single/m1.php:126
4726
- #: app/skins/single/m2.php:58 app/skins/single/modern.php:58
4727
- #: app/skins/slider/render.php:75 app/skins/slider/render.php:96
4728
- #: app/skins/slider/render.php:116 app/skins/slider/render.php:136
4729
- #: app/skins/slider/render.php:167
 
 
4730
  msgid "REGISTER"
4731
  msgstr "ANMELDEN"
4732
 
4733
- #: app/libraries/main.php:4179
4734
  msgid "View Detail Button"
4735
  msgstr "Ansicht Detail Button"
4736
 
4737
- #: app/libraries/main.php:4179 app/skins/carousel/render.php:79
4738
  #: app/skins/carousel/render.php:104 app/skins/grid/render.php:76
4739
  #: app/skins/grid/render.php:107 app/skins/grid/render.php:139
4740
  #: app/skins/grid/render.php:167 app/skins/list/render.php:59
4741
- #: app/skins/list/render.php:140 app/skins/masonry/render.php:94
4742
  #: app/skins/slider/render.php:75 app/skins/slider/render.php:96
4743
  #: app/skins/slider/render.php:116 app/skins/slider/render.php:136
4744
  #: app/skins/slider/render.php:167
4745
  msgid "View Detail"
4746
  msgstr "Details "
4747
 
4748
- #: app/libraries/main.php:4180
4749
  msgid "Event Detail Button"
4750
  msgstr "Event Detail Button"
4751
 
4752
- #: app/libraries/main.php:4180 app/skins/countdown/tpl.php:178
4753
  msgid "Event Detail"
4754
  msgstr "Veranstaltungsdetails"
4755
 
4756
- #: app/libraries/main.php:4182
4757
  msgid "More Info Link"
4758
  msgstr "Link Mehr Informationen"
4759
 
4760
- #: app/libraries/main.php:4185
4761
  msgid "Ticket (Singular)"
4762
  msgstr "Ticket"
4763
 
4764
- #: app/libraries/main.php:4186
4765
  msgid "Tickets (Plural)"
4766
  msgstr "Tickets"
4767
 
4768
- #: app/libraries/main.php:4252
4769
  msgid "EventON"
4770
  msgstr "EventON"
4771
 
4772
- #: app/libraries/main.php:4253
4773
  msgid "The Events Calendar"
4774
  msgstr "The Events Calendar"
4775
 
4776
- #: app/libraries/main.php:4254
4777
  msgid "Events Schedule WP Plugin"
4778
  msgstr "Event Zeitplan WP-Plugin"
4779
 
4780
- #: app/libraries/main.php:4255
4781
  msgid "Calendarize It"
4782
  msgstr ""
4783
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4784
  #: app/libraries/notifications.php:61
4785
  msgid "Please verify your email."
4786
  msgstr "Bitte bestätigen Sie Ihre email."
@@ -4826,13 +5071,13 @@ msgid "Skin controller does not exist."
4826
  msgstr "Skin contoller existiert nicht."
4827
 
4828
  #: app/libraries/render.php:404 app/modules/local-time/details.php:44
4829
- #: app/modules/next-event/details.php:97 app/skins/single/default.php:72
4830
- #: app/skins/single/default.php:277 app/skins/single/m1.php:34
4831
- #: app/skins/single/modern.php:167
4832
  msgid "All of the day"
4833
  msgstr "Den ganzen Tag"
4834
 
4835
- #: app/libraries/skins.php:811
4836
  msgid "Ignore month and years"
4837
  msgstr "Monat und Jahre ignorieren"
4838
 
@@ -4865,17 +5110,19 @@ msgstr "Gutschein verwenden"
4865
  msgid "Free Booking"
4866
  msgstr "Kostenlose Buchung"
4867
 
4868
- #: app/modules/booking/steps/form.php:15
4869
  msgid "Attendees Form"
4870
  msgstr "Teilnahmeformular"
4871
 
4872
- #: app/modules/booking/steps/form.php:104
4873
- msgid "Fill other attendees's information like the first form."
 
 
4874
  msgstr ""
4875
  "Füllen Sie die Informationen anderer Teilnehmer wie das erste Formular aus."
4876
 
4877
- #: app/modules/booking/steps/form.php:117
4878
- #: app/modules/booking/steps/tickets.php:53 app/skins/countdown/tpl.php:79
4879
  #: app/skins/countdown/tpl.php:123 app/skins/countdown/tpl.php:168
4880
  msgid "Next"
4881
  msgstr "Weiter"
@@ -4884,16 +5131,16 @@ msgstr "Weiter"
4884
  msgid "Thanks for your booking."
4885
  msgstr "Vielen Dank für Ihre Buchung."
4886
 
4887
- #: app/modules/booking/steps/tickets.php:18
4888
  msgid "Book Event"
4889
  msgstr "Veranstaltung buchen"
4890
 
4891
- #: app/modules/booking/steps/tickets.php:38
4892
  #, php-format
4893
  msgid "Available %s: <span>%s</span>"
4894
  msgstr "Verfügbar %s: <span>%s</span>"
4895
 
4896
- #: app/modules/booking/steps/tickets.php:41
4897
  #, php-format
4898
  msgid "The %s ticket is sold out. You can try another ticket or another date."
4899
  msgstr ""
@@ -4951,9 +5198,9 @@ msgstr "Nächstes Event"
4951
  msgid "Go to occurrence page"
4952
  msgstr "Zum Event"
4953
 
4954
- #: app/modules/next-event/details.php:91 app/skins/single/default.php:66
4955
- #: app/skins/single/default.php:271 app/skins/single/m1.php:28
4956
- #: app/skins/single/modern.php:161
4957
  msgid "Time"
4958
  msgstr "Uhrzeit"
4959
 
@@ -4979,7 +5226,7 @@ msgstr " KPH"
4979
 
4980
  #: app/modules/weather/details.php:58
4981
  msgid "Humidity"
4982
- msgstr "Feuchtigkeit\n"
4983
 
4984
  #: app/modules/weather/details.php:58
4985
  msgid " %"
@@ -4996,8 +5243,8 @@ msgstr " KM"
4996
  #: app/skins/agenda/tpl.php:62 app/skins/agenda/tpl.php:66
4997
  #: app/skins/carousel/tpl.php:43 app/skins/grid/tpl.php:52
4998
  #: app/skins/grid/tpl.php:56 app/skins/list/tpl.php:57
4999
- #: app/skins/list/tpl.php:61 app/skins/masonry/tpl.php:48
5000
- #: app/skins/masonry/tpl.php:52 app/skins/slider/tpl.php:41
5001
  msgid "No event found!"
5002
  msgstr "Keine Veranstaltung gefunden"
5003
 
@@ -5035,7 +5282,7 @@ msgstr "Liste / Listenansicht"
5035
 
5036
  #: app/skins/masonry.php:194
5037
  msgid "All"
5038
- msgstr "Alle\n"
5039
 
5040
  #: app/skins/monthly_view/calendar.php:66
5041
  #: app/skins/monthly_view/calendar.php:104
@@ -5051,35 +5298,37 @@ msgstr "Veranstaltungen für %s"
5051
  msgid "No Events"
5052
  msgstr "Keine Veranstaltungen"
5053
 
5054
- #: app/skins/single.php:209 app/skins/single/default.php:190
5055
- #: app/skins/single/default.php:395 app/skins/single/m1.php:100
5056
  #: app/skins/single/m2.php:32 app/skins/single/modern.php:31
5057
  msgid "Phone"
5058
  msgstr "Phone"
5059
 
5060
- #: app/skins/single.php:223 app/skins/single/default.php:204
5061
- #: app/skins/single/default.php:409 app/skins/single/m1.php:114
5062
  #: app/skins/single/m2.php:46 app/skins/single/modern.php:45
5063
  msgid "Website"
5064
  msgstr "Website"
5065
 
5066
  #: app/skins/single.php:260
 
 
5067
  msgid "Speakers:"
5068
- msgstr ""
5069
 
5070
- #: app/skins/single/default.php:29 app/skins/single/m1.php:233
5071
- #: app/skins/single/m2.php:158 app/skins/single/modern.php:236
5072
  msgid "Sold out!"
5073
  msgstr "Ausverkauft!"
5074
 
5075
- #: app/skins/single/default.php:39 app/skins/single/m1.php:242
5076
- #: app/skins/single/m2.php:167 app/skins/single/modern.php:246
5077
  msgid "Tags: "
5078
  msgstr "Tags:"
5079
 
5080
- #: app/skins/single/default.php:105 app/skins/single/default.php:310
5081
- #: app/skins/single/m1.php:189 app/skins/single/m2.php:121
5082
- #: app/skins/single/modern.php:119
5083
  msgid "Read More"
5084
  msgstr "Mehr lesen"
5085
 
@@ -5126,9 +5375,9 @@ msgstr "Event Labels"
5126
 
5127
  #: app/widgets/single.php:127
5128
  #, fuzzy
5129
- #| msgid "Event Labels"
5130
  msgid "Event Speakers"
5131
- msgstr "Event Labels"
5132
 
5133
  #: app/widgets/single.php:135
5134
  #, fuzzy
@@ -5139,7 +5388,7 @@ msgstr "Teilnehmermodul"
5139
  #: app/widgets/single.php:139
5140
  #, fuzzy
5141
  #| msgid "Next Pervious Module : "
5142
- msgid "Next Pervious Module"
5143
  msgstr "Nächstes vorheriges Modul"
5144
 
5145
  #: app/widgets/single.php:143
@@ -5154,54 +5403,31 @@ msgstr "Social Modul:"
5154
  msgid "Google Map"
5155
  msgstr "Google Karte:"
5156
 
 
5157
  #, fuzzy
5158
- #~| msgid "Settings"
5159
- #~ msgctxt "plugin link"
5160
- #~ msgid "Settings"
5161
- #~ msgstr "Einstellungen"
5162
-
5163
- #, fuzzy
5164
- #~| msgid "Modern Events Calendar"
5165
- #~ msgid "modern-events-calendar-lite"
5166
- #~ msgstr "Moderner Event Kalender "
5167
 
 
5168
  #, fuzzy
5169
- #~| msgid "An awesome plugin for events calendar"
5170
- #~ msgid "http://webnus.net/plugins/modern-events-calendar/"
5171
- #~ msgstr "Ein großartiges Plugin für den Veranstaltungskalender"
5172
 
5173
- #~ msgid "An awesome plugin for events calendar"
5174
- #~ msgstr "Ein großartiges Plugin für den Veranstaltungskalender"
 
5175
 
5176
- #~ msgid "Webnus Team"
5177
- #~ msgstr "Webnus Team"
5178
-
5179
- #~ msgid "http://webnus.net"
5180
- #~ msgstr "http://webnus.net"
5181
-
5182
- #~ msgid "Local Time : "
5183
- #~ msgstr "Lokale Zeit:"
5184
-
5185
- #~ msgid "Event Cost : "
5186
- #~ msgstr "Event-Kosten:"
5187
-
5188
- #~ msgid "More Info : "
5189
- #~ msgstr "Mehr Informationen:"
5190
-
5191
- #~ msgid "Event Label : "
5192
- #~ msgstr "Event Label:"
5193
 
5194
- #~ msgid "Event Location : "
5195
- #~ msgstr "Veranstaltungsort:"
5196
-
5197
- #~ msgid "Event Categories : "
5198
- #~ msgstr "Veranstaltungskategorien"
5199
-
5200
- #~ msgid "Event Organizer : "
5201
- #~ msgstr "Veranstalter"
5202
-
5203
- #~ msgid "Register Button : "
5204
- #~ msgstr "Register Button"
5205
 
5206
  #~ msgid "Booking reminder notification is not enabled!"
5207
  #~ msgstr "Die Erinnerung für die Buchungserinnerung ist nicht aktiviert!"
@@ -5220,7 +5446,9 @@ msgstr "Google Karte:"
5220
  #~ msgid "Auto Facebook import is disabled!"
5221
  #~ msgstr "Auto Facebook-Import ist deaktiviert!"
5222
 
5223
- #~ msgid "%s facebook events imported/updated."
 
 
5224
  #~ msgstr "%s facebook events importiert / aktualisiert."
5225
 
5226
  #~ msgid "Auto Google Calendar import is disabled!"
@@ -5229,12 +5457,19 @@ msgstr "Google Karte:"
5229
  #~ msgid "%s google events imported/updated."
5230
  #~ msgstr "%s vorherige hinzugefügte Events wurden aktualisiert."
5231
 
 
 
 
 
 
 
 
 
 
 
5232
  #~ msgid "Add Booking"
5233
  #~ msgstr "Buchung hinzufügen"
5234
 
5235
- #~ msgid "No bookings found!"
5236
- #~ msgstr "Keine Buchungen gefunden"
5237
-
5238
  #~ msgid "Edit Bookings"
5239
  #~ msgstr "Buchungen ändern"
5240
 
@@ -5250,21 +5485,9 @@ msgstr "Google Karte:"
5250
  #~ msgid "Confirmation"
5251
  #~ msgstr "Bestätigung"
5252
 
5253
- #~ msgid "Pending"
5254
- #~ msgstr "Ausstehend"
5255
-
5256
- #~ msgid "Confirmed"
5257
- #~ msgstr "Bestätigt"
5258
-
5259
- #~ msgid "Rejected"
5260
- #~ msgstr "Abgelehnt"
5261
-
5262
  #~ msgid "Verification"
5263
  #~ msgstr "Verifizierung"
5264
 
5265
- #~ msgid "Waiting"
5266
- #~ msgstr "in Bearbeitung"
5267
-
5268
  #~ msgid "Here, you can %s invoice of %s transaction."
5269
  #~ msgstr "Hier können Sie% s Rechnung von% s Transaktion."
5270
 
@@ -5370,6 +5593,9 @@ msgstr "Google Karte:"
5370
  #~ msgid "Usage Limit"
5371
  #~ msgstr "Nutzungslimit"
5372
 
 
 
 
5373
  #~ msgid "Expiration Date"
5374
  #~ msgstr "Ablaufdatum"
5375
 
@@ -5397,6 +5623,9 @@ msgstr "Google Karte:"
5397
  #~ msgid "Coupon is valid and you get %s discount."
5398
  #~ msgstr "Der Gutschein ist gültig. Sie erhalten %s Rabatt"
5399
 
 
 
 
5400
  #~ msgid "Stripe"
5401
  #~ msgstr "Stripe"
5402
 
@@ -5526,6 +5755,33 @@ msgstr "Google Karte:"
5526
  #~ msgid "This booking is not free!"
5527
  #~ msgstr "Diese Buchung ist nicht kostenlos!"
5528
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5529
  #~ msgid "Attendee"
5530
  #~ msgstr "Teilnehmer"
5531
 
2
  msgstr ""
3
  "Project-Id-Version: ME Calender\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2019-01-23 12:02+0330\n"
6
+ "PO-Revision-Date: 2019-01-23 12:02+0330\n"
7
  "Last-Translator: Jogon <koenig@kafinanz.de>\n"
8
  "Language-Team: German\n"
9
  "Language: de_DE\n"
17
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:24
21
+ #: app/features/ix/import.php:37 app/features/ix/thirdparty.php:24
22
+ #: app/features/mec/dashboard.php:61 app/widgets/MEC.php:33
23
  msgid "Modern Events Calendar"
24
  msgstr "Moderner Event Kalender "
25
 
54
  msgid "Select Type"
55
  msgstr "Alles Auswählen"
56
 
57
+ #: app/features/colors.php:50 app/features/fes/form.php:558
58
+ #: app/features/mec/settings.php:890
59
  msgid "Event Color"
60
  msgstr "Farbe der Veranstaltung"
61
 
62
  #: app/features/contextual.php:55 app/features/mec.php:210
63
  #: app/features/mec/gateways.php:20 app/features/mec/messages.php:20
64
  #: app/features/mec/notifications.php:19 app/features/mec/regform.php:19
65
+ #: app/features/mec/settings.php:35 app/features/mec/settings.php:269
66
  #: app/features/mec/styles.php:20 app/features/mec/styling.php:46
67
+ #: app/features/mec/support.php:18
68
  msgid "Settings"
69
  msgstr "Einstellungen"
70
 
71
+ #: app/features/contextual.php:62 app/features/events.php:1214
72
  #: app/features/mec/gateways.php:29 app/features/mec/messages.php:29
73
  #: app/features/mec/notifications.php:28 app/features/mec/regform.php:28
74
+ #: app/features/mec/regform.php:88 app/features/mec/settings.php:204
75
  #: app/features/mec/styles.php:29 app/features/mec/styling.php:55
76
  #: app/features/mec/support.php:27
77
  msgid "Booking Form"
94
  #: app/features/contextual.php:70 app/features/mec/gateways.php:36
95
  #: app/features/mec/gateways.php:90 app/features/mec/messages.php:36
96
  #: app/features/mec/notifications.php:35 app/features/mec/regform.php:35
97
+ #: app/features/mec/settings.php:211 app/features/mec/styles.php:36
98
  #: app/features/mec/styling.php:62 app/features/mec/support.php:34
99
  msgid "Payment Gateways"
100
  msgstr "Zahlungs-Gateways"
112
  #: app/features/contextual.php:77 app/features/mec/gateways.php:45
113
  #: app/features/mec/messages.php:45 app/features/mec/notifications.php:44
114
  #: app/features/mec/notifications.php:89 app/features/mec/regform.php:43
115
+ #: app/features/mec/settings.php:221 app/features/mec/styles.php:45
116
  #: app/features/mec/styling.php:71 app/features/mec/support.php:43
117
  msgid "Notifications"
118
  msgstr "Benachrichtigungen"
132
  #: app/features/contextual.php:88 app/features/ix/export.php:10
133
  #: app/features/ix/export_g_calendar.php:14 app/features/ix/import.php:10
134
  #: app/features/ix/import_f_calendar.php:10
135
+ #: app/features/ix/import_g_calendar.php:10
136
+ #: app/features/ix/import_meetup.php:10 app/features/ix/sync.php:10
137
  #: app/features/ix/thirdparty.php:10
138
  msgid "Google Cal. Import"
139
  msgstr "Google Calender Import"
153
  #: app/features/contextual.php:95 app/features/ix/export.php:11
154
  #: app/features/ix/export_g_calendar.php:15 app/features/ix/import.php:11
155
  #: app/features/ix/import_f_calendar.php:11
156
+ #: app/features/ix/import_g_calendar.php:11
157
+ #: app/features/ix/import_meetup.php:11 app/features/ix/sync.php:11
158
  #: app/features/ix/thirdparty.php:11
159
  msgid "Google Cal. Export"
160
  msgstr "Google Kalender Export"
174
  #: app/features/contextual.php:102 app/features/ix/export.php:12
175
  #: app/features/ix/export_g_calendar.php:16 app/features/ix/import.php:12
176
  #: app/features/ix/import_f_calendar.php:12
177
+ #: app/features/ix/import_g_calendar.php:12
178
+ #: app/features/ix/import_meetup.php:12 app/features/ix/sync.php:12
179
  #: app/features/ix/thirdparty.php:12
180
  msgid "Facebook Cal. Import"
181
  msgstr "Facebook Kalender Import"
193
  "\"0\" allowfullscreen></iframe>"
194
 
195
  #: app/features/contextual.php:117 app/features/mec/settings.php:42
196
+ #: app/features/mec/settings.php:271
197
  msgid "General Options"
198
  msgstr "Allgemeine Einstellungen"
199
 
200
  #: app/features/contextual.php:139 app/features/mec/settings.php:54
201
+ #: app/features/mec/settings.php:423
202
  msgid "Slugs/Permalinks"
203
  msgstr "Slug/Permalinks"
204
 
205
  #: app/features/contextual.php:152 app/features/mec/settings.php:60
206
+ #: app/features/mec/settings.php:443
207
  msgid "Event Details/Single Event Page"
208
  msgstr "Event Details / Einzelveranstaltungsseite"
209
 
210
  #: app/features/contextual.php:166 app/features/mec/settings.php:66
211
+ #: app/features/mec/settings.php:484
212
  msgid "Currency Options"
213
  msgstr "Währungseinstellungen"
214
 
215
  #: app/features/contextual.php:182 app/features/mec/settings.php:78
216
+ #: app/features/mec/settings.php:551
217
  msgid "Google Maps Options"
218
  msgstr "Google Maps Einstellungen"
219
 
220
  #: app/features/contextual.php:244 app/features/mec/settings.php:84
221
+ #: app/features/mec/settings.php:625
222
  msgid "Google Recaptcha Options"
223
  msgstr "Google Recaptcha Einstellungen"
224
 
225
  #: app/features/contextual.php:258 app/features/mec/settings.php:114
226
+ #: app/features/mec/settings.php:743
227
  msgid "Countdown Options"
228
  msgstr "Countdown Einstellungsoptionen"
229
 
230
  #: app/features/contextual.php:268 app/features/mec/settings.php:120
231
+ #: app/features/mec/settings.php:764
232
  msgid "Social Networks"
233
  msgstr "Soziale Netzwerke"
234
 
235
  #: app/features/contextual.php:278 app/features/mec/settings.php:126
236
+ #: app/features/mec/settings.php:789
237
  msgid "Next Event Module"
238
  msgstr "Nächstes Veranstaltung Modul"
239
 
240
  #: app/features/contextual.php:286 app/features/mec/settings.php:132
241
+ #: app/features/mec/settings.php:817
242
  msgid "Frontend Event Submission"
243
  msgstr "Erstellung von Veranstaltungen im Frontend"
244
 
245
  #: app/features/contextual.php:298 app/features/events.php:580
246
+ #: app/features/mec/settings.php:144
247
  msgid "Exceptional Days"
248
  msgstr "Herausgenommene Tage "
249
 
250
  #: app/features/contextual.php:308 app/features/events.php:263
251
+ #: app/features/mec/settings.php:156 app/features/mec/settings.php:991
252
  msgid "Booking"
253
  msgstr "Buchung / Reservierung"
254
 
255
+ #: app/features/contextual.php:318 app/features/mec/settings.php:162
256
+ #: app/features/mec/settings.php:1081
257
  msgid "Coupons"
258
  msgstr "Gutscheine"
259
 
260
+ #: app/features/contextual.php:326 app/features/mec/settings.php:180
261
+ #: app/features/mec/settings.php:1222
262
  msgid "BuddyPress Integration"
263
  msgstr "Buddy Press Integration"
264
 
265
+ #: app/features/contextual.php:334 app/features/mec/settings.php:186
266
+ #: app/features/mec/settings.php:1252
267
  msgid "Mailchimp Integration"
268
  msgstr "Mailchimp Integration"
269
 
270
+ #: app/features/contextual.php:346 app/features/mec/settings.php:192
271
+ #: app/features/mec/settings.php:1288
272
  msgid "MEC Activation"
273
  msgstr "MEC Aktivierung"
274
 
275
+ #: app/features/events.php:132 app/features/ix/export.php:34
276
  #: app/features/mec/dashboard.php:92 app/skins/daily_view/tpl.php:79
277
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
278
  msgid "Events"
282
  #: app/features/mec/meta_boxes/display_options.php:708
283
  #: app/features/mec/meta_boxes/display_options.php:746
284
  #: app/features/mec/meta_boxes/display_options.php:775
285
+ #: app/features/profile/profile.php:28 app/skins/daily_view/tpl.php:80
286
+ #: app/skins/monthly_view/tpl.php:71 app/skins/yearly_view/tpl.php:69
287
  msgid "Event"
288
  msgstr "Veranstaltung"
289
 
295
  msgid "Add New Event"
296
  msgstr "Neue Veranstaltung hinzufügen"
297
 
298
+ #: app/features/events.php:136 app/features/ix.php:3175
299
+ #: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:54
300
  msgid "No events found!"
301
  msgstr "Keine Veranstaltungen gefunden!"
302
 
327
  #: app/features/mec/meta_boxes/search_form.php:292
328
  #: app/features/mec/meta_boxes/search_form.php:332
329
  #: app/features/mec/meta_boxes/search_form.php:379
330
+ #: app/features/mec/meta_boxes/search_form.php:426 app/libraries/main.php:4167
331
+ #: app/libraries/skins.php:710 app/skins/single/default.php:156
332
+ #: app/skins/single/default.php:363 app/skins/single/m1.php:169
333
+ #: app/skins/single/m2.php:101 app/skins/single/modern.php:98
334
  msgid "Category"
335
  msgstr "Kategorie"
336
 
337
+ #: app/features/events.php:153 app/features/fes/form.php:510
338
  #: app/features/mec.php:198 app/features/mec/meta_boxes/filter.php:70
339
+ #: app/libraries/main.php:4166
340
  msgid "Categories"
341
  msgstr "Kategorien"
342
 
408
  msgid "Event Details"
409
  msgstr "Veranstaltungsdetails"
410
 
411
+ #: app/features/events.php:296 app/features/events.php:1966
412
+ #: app/features/events.php:2010 app/features/fes/form.php:471
413
+ #: app/features/ix.php:2719 app/features/ix.php:2760
414
+ #: app/features/mec/settings.php:866 app/libraries/main.php:4199
415
  #: app/widgets/single.php:103
416
  msgid "Event Cost"
417
  msgstr ""
418
  "Bruttopreis des Events in Euro, 0 für kostenlos oder z.B. 39, ohne €-Zeichen"
419
 
420
+ #: app/features/events.php:299 app/features/fes/form.php:474
421
+ #: app/libraries/main.php:4200 app/skins/single/default.php:91
422
+ #: app/skins/single/default.php:298 app/skins/single/m1.php:49
423
+ #: app/skins/single/modern.php:184
424
  msgid "Cost"
425
  msgstr " Preis"
426
 
432
  msgid "Guest Data"
433
  msgstr "Gäste Daten"
434
 
435
+ #: app/features/events.php:380 app/features/fes/form.php:433
436
  #: app/features/labels.php:177 app/features/organizers.php:268
437
+ #: app/features/profile/profile.php:90 app/libraries/notifications.php:554
438
+ #: app/modules/booking/steps/form.php:27 app/modules/booking/steps/form.php:28
439
  msgid "Name"
440
  msgstr "Name"
441
 
442
+ #: app/features/events.php:381 app/features/events.php:1249
443
+ #: app/features/fes/form.php:429 app/features/mec/regform.php:118
444
  #: app/features/organizers.php:110 app/features/organizers.php:150
445
+ #: app/features/profile/profile.php:93 app/features/speakers.php:119
446
+ #: app/features/speakers.php:179 app/libraries/main.php:1069
447
+ #: app/libraries/main.php:1134 app/libraries/main.php:2077
448
+ #: app/libraries/notifications.php:555 app/modules/booking/steps/form.php:31
449
+ #: app/modules/booking/steps/form.php:32 app/skins/single.php:216
450
+ #: app/skins/single/default.php:198 app/skins/single/default.php:405
451
+ #: app/skins/single/m1.php:107 app/skins/single/m2.php:39
452
+ #: app/skins/single/modern.php:38
453
  msgid "Email"
454
  msgstr "Email"
455
 
456
+ #: app/features/events.php:385 app/features/fes/form.php:223
457
  msgid "Date and Time"
458
  msgstr "Datum und Uhrzeit"
459
 
460
  #: app/features/events.php:389 app/features/events.php:393
461
+ #: app/features/events.php:1787 app/features/events.php:1966
462
+ #: app/features/events.php:2010 app/features/fes/form.php:227
463
+ #: app/features/fes/form.php:231 app/features/ix.php:2719
464
+ #: app/features/ix.php:2760 app/features/ix/import_g_calendar.php:38
465
  #: app/features/mec/dashboard.php:269
466
  #: app/features/mec/meta_boxes/display_options.php:42
467
  #: app/features/mec/meta_boxes/display_options.php:139
480
  msgstr "Start Datum"
481
 
482
  #: app/features/events.php:421 app/features/events.php:461
483
+ #: app/features/events.php:866 app/features/events.php:884
484
+ #: app/features/events.php:969 app/features/events.php:987
485
+ #: app/features/fes/form.php:259 app/features/fes/form.php:299
486
  msgid "AM"
487
  msgstr "AM"
488
 
489
  #: app/features/events.php:422 app/features/events.php:462
490
+ #: app/features/events.php:867 app/features/events.php:885
491
+ #: app/features/events.php:970 app/features/events.php:988
492
+ #: app/features/fes/form.php:260 app/features/fes/form.php:300
493
  msgid "PM"
494
  msgstr "PM"
495
 
496
  #: app/features/events.php:429 app/features/events.php:433
497
+ #: app/features/events.php:1788 app/features/events.php:1966
498
+ #: app/features/events.php:2010 app/features/fes/form.php:267
499
+ #: app/features/fes/form.php:271 app/features/ix.php:2719
500
+ #: app/features/ix.php:2760 app/features/ix/import_g_calendar.php:44
501
  #: app/features/mec/dashboard.php:270
502
  msgid "End Date"
503
  msgstr "Ende Datum"
504
 
505
+ #: app/features/events.php:468 app/features/fes/form.php:306
506
  msgid "All Day Event"
507
  msgstr "Ganztägige Veranstaltung"
508
 
509
+ #: app/features/events.php:471 app/features/fes/form.php:309
510
  msgid "Hide Event Time"
511
  msgstr "Event / Veranstaltungszeit verbergen"
512
 
513
+ #: app/features/events.php:474 app/features/fes/form.php:312
514
  msgid "Hide Event End Time"
515
  msgstr "Ende-Zeit der Veranstaltung verbergen"
516
 
517
+ #: app/features/events.php:478 app/features/fes/form.php:316
518
  msgid "Time Comment"
519
  msgstr "z.B. MEZ "
520
 
521
+ #: app/features/events.php:479 app/features/fes/form.php:317
522
  msgid ""
523
  "It shows next to event time on calendar. You can insert Timezone etc. in "
524
  "this field."
526
  "Neben der Zeit im Kalender wird diese Angabe angezeigt. In diesem Feld "
527
  "können Sie z.B. eine Zeitzone wie z.B. \"MEZ\" usw. einfügen. "
528
 
529
+ #: app/features/events.php:485 app/features/fes/form.php:323
530
  msgid "Event Repeating"
531
  msgstr "Wiederholende Veranstaltung"
532
 
533
+ #: app/features/events.php:489 app/features/fes/form.php:327
534
  msgid "Repeats"
535
  msgstr "Wiederholend"
536
 
537
+ #: app/features/events.php:491 app/features/fes/form.php:329
538
  #: app/features/mec/dashboard.php:272 app/skins/full_calendar/tpl.php:68
539
  msgid "Daily"
540
  msgstr "Täglich"
541
 
542
+ #: app/features/events.php:492 app/features/fes/form.php:330
543
  msgid "Every Weekday"
544
  msgstr "An jedem Wochentag"
545
 
546
+ #: app/features/events.php:493 app/features/fes/form.php:331
547
  msgid "Every Weekend"
548
  msgstr "An jedem Wochenende"
549
 
550
+ #: app/features/events.php:494 app/features/fes/form.php:332
551
  msgid "Certain Weekdays"
552
  msgstr "Bestimmte Wochentage"
553
 
554
+ #: app/features/events.php:495 app/features/fes/form.php:333
555
  #: app/skins/full_calendar/tpl.php:67
556
  msgid "Weekly"
557
  msgstr "Wöchentlich"
558
 
559
+ #: app/features/events.php:496 app/features/fes/form.php:334
560
  #: app/features/mec/dashboard.php:273 app/skins/full_calendar/tpl.php:66
561
  msgid "Monthly"
562
  msgstr "Monatlich"
563
 
564
+ #: app/features/events.php:497 app/features/fes/form.php:335
565
  #: app/features/mec/dashboard.php:274 app/skins/full_calendar/tpl.php:65
566
  msgid "Yearly"
567
  msgstr "Jährlich"
568
 
569
+ #: app/features/events.php:498 app/features/fes/form.php:336
570
  msgid "Custom Days"
571
  msgstr "Benutzerdefinierte Tage"
572
 
573
+ #: app/features/events.php:502 app/features/fes/form.php:340
574
  msgid "Repeat Interval"
575
  msgstr "Wiederholungsintervall"
576
 
577
+ #: app/features/events.php:503 app/features/fes/form.php:341
578
  msgid "Repeat interval"
579
  msgstr "Wiederholungsintervall"
580
 
581
+ #: app/features/events.php:506 app/features/fes/form.php:344
582
  msgid "Week Days"
583
  msgstr "Wochentage"
584
 
585
+ #: app/features/events.php:507 app/features/fes/form.php:345
586
+ #: app/libraries/main.php:403
587
  msgid "Monday"
588
  msgstr "Montag"
589
 
590
+ #: app/features/events.php:508 app/features/fes/form.php:346
591
+ #: app/libraries/main.php:403
592
  msgid "Tuesday"
593
  msgstr "Dienstag"
594
 
595
+ #: app/features/events.php:509 app/features/fes/form.php:347
596
+ #: app/libraries/main.php:403
597
  msgid "Wednesday"
598
  msgstr "Mittwoch"
599
 
600
+ #: app/features/events.php:510 app/features/fes/form.php:348
601
+ #: app/libraries/main.php:403
602
  msgid "Thursday"
603
  msgstr "Donnerstag"
604
 
605
+ #: app/features/events.php:511 app/features/fes/form.php:349
606
+ #: app/libraries/main.php:403
607
  msgid "Friday"
608
  msgstr "Freitag"
609
 
610
+ #: app/features/events.php:512 app/features/fes/form.php:350
611
+ #: app/libraries/main.php:403
612
  msgid "Saturday"
613
  msgstr "Samstag"
614
 
615
+ #: app/features/events.php:513 app/features/fes/form.php:351
616
+ #: app/libraries/main.php:403
617
  msgid "Sunday"
618
  msgstr "Sonntag"
619
 
620
  #: app/features/events.php:518 app/features/events.php:590
621
+ #: app/features/fes/form.php:356 app/features/profile/profile.php:31
622
+ #: app/libraries/main.php:1592 app/modules/booking/steps/tickets.php:22
623
+ #: app/modules/next-event/details.php:86 app/skins/single/default.php:55
624
+ #: app/skins/single/default.php:262 app/skins/single/m1.php:16
625
+ #: app/skins/single/modern.php:151
626
  msgid "Date"
627
  msgstr "Datum"
628
 
629
  #: app/features/events.php:519 app/features/events.php:591
630
+ #: app/features/events.php:667 app/features/events.php:722
631
+ #: app/features/events.php:843 app/features/events.php:914
632
+ #: app/features/events.php:1017 app/features/events.php:1068
633
+ #: app/features/events.php:1149 app/features/fes/form.php:357
634
  msgid "Add"
635
  msgstr "Hinzufügen"
636
 
637
+ #: app/features/events.php:520 app/features/fes/form.php:358
638
  msgid "Add certain days to event occurrence dates."
639
  msgstr "Fügen Sie bestimmte Tage zu den Ereignisdaten hinzu. "
640
 
641
+ #: app/features/events.php:542 app/features/fes/form.php:380
642
  msgid "Ends Repeat"
643
  msgstr "Wiederholung endet"
644
 
645
+ #: app/features/events.php:546 app/features/fes/form.php:384
646
  msgid "Never"
647
  msgstr "Niemals"
648
 
649
+ #: app/features/events.php:551 app/features/fes/form.php:389
650
  msgid "On"
651
  msgstr "Am"
652
 
653
+ #: app/features/events.php:558 app/features/fes/form.php:396
654
  msgid "After"
655
  msgstr "Nach"
656
 
657
+ #: app/features/events.php:560 app/features/fes/form.php:398
658
  msgid "Occurrences times"
659
  msgstr " mal vorkommen"
660
 
661
+ #: app/features/events.php:561 app/features/fes/form.php:399
662
  msgid ""
663
  "The event will finish after certain repeats. For example if you set it to "
664
  "10, the event will finish after 10 repeats."
680
  msgid "Day 1"
681
  msgstr ""
682
 
683
+ #: app/features/events.php:649 app/features/mec/settings.php:920
684
  #: app/skins/single.php:246
685
  msgid "Hourly Schedule"
686
  msgstr "Stundenplan"
695
  "can add a different schedule for each day!"
696
  msgstr ""
697
 
698
+ #: app/features/events.php:659
699
  #, php-format
700
  msgid "Day %s"
701
  msgstr ""
702
 
703
+ #: app/features/events.php:662 app/features/events.php:675
704
+ #: app/features/events.php:695 app/features/events.php:717
705
+ #: app/features/events.php:733 app/features/events.php:1155
706
+ #: app/features/events.php:1177 app/features/events.php:1784
707
+ #: app/features/events.php:1966 app/features/events.php:2010
708
+ #: app/features/fes/form.php:216 app/features/ix.php:2719
709
+ #: app/features/ix.php:2760 app/features/mec/settings.php:1182
710
+ #: app/features/mec/settings.php:1202
711
  msgid "Title"
712
  msgstr "Titel"
713
 
714
+ #: app/features/events.php:664 app/features/events.php:677
715
+ #: app/features/events.php:697 app/features/events.php:719
716
+ #: app/features/events.php:735 app/features/events.php:909
717
+ #: app/features/events.php:925 app/features/events.php:939
718
+ #: app/features/events.php:1012 app/features/events.php:1029
719
+ #: app/features/events.php:1088 app/features/events.php:1113
720
+ #: app/features/events.php:1166 app/features/events.php:1188
721
+ #: app/features/fes/list.php:72 app/features/mec/settings.php:1131
722
+ #: app/features/mec/settings.php:1154 app/features/mec/settings.php:1193
723
+ #: app/features/mec/settings.php:1213 app/libraries/main.php:2056
724
+ #: app/libraries/main.php:2085 app/libraries/main.php:2114
725
+ #: app/libraries/main.php:2143 app/libraries/main.php:2165
726
+ #: app/libraries/main.php:2196 app/libraries/main.php:2240
727
+ #: app/libraries/main.php:2284 app/libraries/main.php:2331
728
+ #: app/libraries/main.php:2369
729
+ msgid "Remove"
730
+ msgstr "Entfernen"
731
+
732
+ #: app/features/events.php:668 app/features/events.php:723
733
  msgid "Add new hourly schedule row"
734
  msgstr "Neue Stundenplan-Zeile hinzufügen"
735
 
736
+ #: app/features/events.php:673 app/features/events.php:693
737
+ #: app/features/events.php:731
738
  msgid "From e.g. 8:15"
739
  msgstr "Von z.B. 08:15 Uhr"
740
 
741
+ #: app/features/events.php:674 app/features/events.php:694
742
+ #: app/features/events.php:732
743
  msgid "To e.g. 8:45"
744
  msgstr "bis zum Beispiel 08:45 Uhr"
745
 
746
+ #: app/features/events.php:676 app/features/events.php:696
747
+ #: app/features/events.php:734 app/features/events.php:890
748
+ #: app/features/events.php:993
749
  msgid "Description"
750
  msgstr "Beschreibung"
751
 
752
+ #: app/features/events.php:680 app/features/events.php:700
753
+ #: app/features/events.php:738 app/features/fes/form.php:603
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
754
  #: app/features/mec.php:206 app/features/mec/settings.php:72
755
+ #: app/features/mec/settings.php:914 app/features/speakers.php:57
756
+ #: app/libraries/main.php:4174 app/modules/speakers/details.php:18
757
  msgid "Speakers"
758
  msgstr ""
759
 
760
+ #: app/features/events.php:714 app/features/events.php:718
761
  msgid "Day :dd:"
762
  msgstr ""
763
 
764
+ #: app/features/events.php:765 app/features/fes/form.php:448
765
+ #: app/features/mec/settings.php:860
766
  msgid "Event Links"
767
  msgstr "Veranstaltungslinks"
768
 
769
+ #: app/features/events.php:767 app/features/fes/form.php:450
770
+ #: app/libraries/main.php:4197
771
  msgid "Event Link"
772
  msgstr "Veranstaltungslink"
773
 
774
+ #: app/features/events.php:768 app/features/events.php:773
775
+ #: app/features/fes/form.php:451 app/features/fes/form.php:456
776
  msgid "eg. http://yoursite.com/your-event"
777
  msgstr "z.B. http://ihreseite.com/ihre-veranstaltung"
778
 
779
+ #: app/features/events.php:769 app/features/fes/form.php:452
780
  msgid ""
781
  "If you fill it, it will be replaced instead of default event page link. "
782
  "Insert full link including http(s)://"
785
  "dieser durch einen neuen link ersetzt werden. Vollständigen Link einfügen, "
786
  "einschließlich http(s)://"
787
 
788
+ #: app/features/events.php:772 app/features/fes/form.php:455
789
+ #: app/libraries/main.php:4198 app/skins/single/default.php:105
790
+ #: app/skins/single/default.php:312 app/skins/single/m1.php:190
791
+ #: app/skins/single/m2.php:123 app/skins/single/modern.php:120
792
  #: app/widgets/single.php:107
793
  msgid "More Info"
794
  msgstr "Mehr Informationen"
795
 
796
+ #: app/features/events.php:774 app/features/fes/form.php:457
797
  msgid "More Information"
798
  msgstr "z.B. Noch mehr Informationen "
799
 
800
+ #: app/features/events.php:776 app/features/fes/form.php:459
801
  msgid "Current Window"
802
  msgstr "Aktuelles Fenster"
803
 
804
+ #: app/features/events.php:777 app/features/fes/form.php:460
805
  msgid "New Window"
806
  msgstr "Neues Fenster"
807
 
808
+ #: app/features/events.php:779 app/features/fes/form.php:462
809
  msgid ""
810
  "If you fill it, it will be shown in event details page as an optional link. "
811
  "Insert full link including http(s)://"
816
  "Text angezeigt werden soll: zum Beispiel: Noch mehr Informationen oder Hier "
817
  "zur Anmeldung (z.B. bei Webinaren sinnvoll) "
818
 
819
+ #: app/features/events.php:810
820
  msgid "Total booking limits"
821
  msgstr "Gesamt Verfügbare Plätze"
822
 
823
+ #: app/features/events.php:815 app/features/events.php:907
824
+ #: app/features/events.php:1010 app/modules/booking/default.php:81
825
+ #: app/modules/booking/steps/tickets.php:40 app/skins/available_spot/tpl.php:99
826
  msgid "Unlimited"
827
  msgstr "Unlimitiert"
828
 
829
+ #: app/features/events.php:817
830
  msgid "100"
831
  msgstr "z.B. 100"
832
 
833
+ #: app/features/events.php:835 app/libraries/book.php:60
834
+ #: app/libraries/main.php:4202 app/modules/booking/steps/tickets.php:40
835
  msgid "Tickets"
836
  msgstr "Tickets"
837
 
838
+ #: app/features/events.php:838
839
  msgid ""
840
  "You're translating an event so MEC will use the original event for tickets "
841
  "and booking. You can only translate the ticket name and description. Please "
842
  "define exact tickets that you defined in the original event here."
843
  msgstr ""
844
 
845
+ #: app/features/events.php:849 app/features/events.php:952
846
  msgid "Ticket Name"
847
  msgstr "Ticket Name"
848
 
849
+ #: app/features/events.php:853 app/features/events.php:956
850
+ #: app/features/events.php:1966 app/features/events.php:2010
851
+ #: app/features/ix.php:2719 app/features/ix.php:2760
852
  msgid "Start Time"
853
  msgstr "Uhrzeit des Beginns"
854
 
855
+ #: app/features/events.php:871 app/features/events.php:974
856
+ #: app/features/events.php:1966 app/features/events.php:2010
857
+ #: app/features/ix.php:2719 app/features/ix.php:2760
858
  msgid "End Time"
859
  msgstr "Uhrzeit Ende"
860
 
861
+ #: app/features/events.php:894 app/features/events.php:923
862
+ #: app/features/events.php:937 app/features/events.php:997
863
+ #: app/features/events.php:1027 app/features/events.php:1159
864
+ #: app/features/events.php:1181 app/features/mec/settings.php:1186
865
+ #: app/features/mec/settings.php:1206
866
  msgid "Price"
867
  msgstr "Preis"
868
 
869
+ #: app/features/events.php:895 app/features/events.php:998
870
  msgid "Insert 0 for free ticket. Only numbers please."
871
  msgstr "Bitte 0 für kostenloses Ticket eingeben. Bitte nur Zahlen eintragen"
872
 
873
+ #: app/features/events.php:898 app/features/events.php:1001
874
  msgid "Price Label"
875
  msgstr "Preisschild"
876
 
877
+ #: app/features/events.php:899 app/features/events.php:1002
878
  msgid "For showing on website. e.g. $15"
879
  msgstr "Um das auf der Webseite anzuzeigen zum Beispiel 15 €"
880
 
881
+ #: app/features/events.php:903 app/features/events.php:1006
882
  msgid "Available Tickets"
883
  msgstr "Verfügbare Tickets: %s "
884
 
885
+ #: app/features/events.php:913 app/features/events.php:1016
886
+ #, fuzzy
887
+ #| msgid "Price Label"
888
+ msgid "Price per Date"
889
+ msgstr "Preisschild"
890
+
891
+ #: app/features/events.php:921 app/features/events.php:935
892
+ #: app/features/events.php:1025 app/features/ix/import_f_calendar.php:36
893
+ #: app/features/ix/import_g_calendar.php:51
894
+ #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
895
+ msgid "Start"
896
+ msgstr "Start"
897
+
898
+ #: app/features/events.php:922 app/features/events.php:936
899
+ #: app/features/events.php:1026
900
+ #, fuzzy
901
+ #| msgid "Enabled"
902
+ msgid "End"
903
+ msgstr "Aktiviert"
904
+
905
+ #: app/features/events.php:924 app/features/events.php:938
906
+ #: app/features/events.php:1028 app/features/labels.php:60
907
+ #: app/features/mec/meta_boxes/display_options.php:658
908
+ #: app/features/mec/meta_boxes/search_form.php:52
909
+ #: app/features/mec/meta_boxes/search_form.php:99
910
+ #: app/features/mec/meta_boxes/search_form.php:146
911
+ #: app/features/mec/meta_boxes/search_form.php:219
912
+ #: app/features/mec/meta_boxes/search_form.php:266
913
+ #: app/features/mec/meta_boxes/search_form.php:313
914
+ #: app/features/mec/meta_boxes/search_form.php:353
915
+ #: app/features/mec/meta_boxes/search_form.php:400
916
+ #: app/features/mec/meta_boxes/search_form.php:447 app/libraries/skins.php:788
917
+ msgid "Label"
918
+ msgstr "Label"
919
+
920
+ #: app/features/events.php:1058
921
  msgid "Fees"
922
  msgstr "Gebühren"
923
 
924
+ #: app/features/events.php:1063 app/features/events.php:1144
925
+ #: app/features/events.php:1219
926
  msgid "Inherit from global options"
927
  msgstr "Aus den globalen Einstellungen übernehmen"
928
 
929
+ #: app/features/events.php:1074 app/features/events.php:1099
930
+ #: app/features/mec/settings.php:1117 app/features/mec/settings.php:1140
931
  msgid "Fee Title"
932
  msgstr "Gebühren Name"
933
 
934
+ #: app/features/events.php:1078 app/features/events.php:1103
935
+ #: app/features/mec/settings.php:1121 app/features/mec/settings.php:1144
936
  msgid "Amount"
937
  msgstr "Betrag"
938
 
939
+ #: app/features/events.php:1079 app/features/events.php:1104
940
+ #: app/features/mec/settings.php:1122 app/features/mec/settings.php:1145
941
  msgid ""
942
  "Fee amount, considered as fixed amount if you set the type to amount "
943
  "otherwise considered as percentage"
945
  "Gebührenbetrag, gilt als fester Betrag, wenn Sie die Art auf Betrag setzen, "
946
  "sonst als Prozentsatz"
947
 
948
+ #: app/features/events.php:1083 app/features/events.php:1108
949
+ #: app/features/mec/settings.php:1126 app/features/mec/settings.php:1149
950
  msgid "Percent"
951
  msgstr "Prozent"
952
 
953
+ #: app/features/events.php:1084 app/features/events.php:1109
954
+ #: app/features/mec/settings.php:1127 app/features/mec/settings.php:1150
955
  msgid "Amount (Per Ticket)"
956
  msgstr "Betrag (pro Ticket)"
957
 
958
+ #: app/features/events.php:1085 app/features/events.php:1110
959
+ #: app/features/mec/settings.php:1128 app/features/mec/settings.php:1151
960
  msgid "Amount (Per Booking)"
961
  msgstr "Betrag (pro Buchung)"
962
 
963
+ #: app/features/events.php:1139 app/features/mec/settings.php:938
964
  msgid "Ticket Variations / Options"
965
  msgstr ""
966
 
967
+ #: app/features/events.php:1160 app/features/events.php:1182
968
+ #: app/features/mec/settings.php:1187 app/features/mec/settings.php:1207
969
  #, fuzzy
970
  #| msgid "Option"
971
  msgid "Option Price"
972
  msgstr "Option"
973
 
974
+ #: app/features/events.php:1163 app/features/events.php:1185
975
+ #: app/features/mec/settings.php:1190 app/features/mec/settings.php:1210
976
  #, fuzzy
977
  #| msgid "Amount (Per Ticket)"
978
  msgid "Maximum Per Ticket"
979
  msgstr "Betrag (pro Ticket)"
980
 
981
+ #: app/features/events.php:1164 app/features/events.php:1186
982
+ #: app/features/mec/settings.php:1191 app/features/mec/settings.php:1211
983
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
984
  msgstr ""
985
 
986
+ #: app/features/events.php:1248 app/features/mec/regform.php:117
987
+ #: app/libraries/main.php:2048
988
  msgid "Text"
989
  msgstr "Text"
990
 
991
+ #: app/features/events.php:1250 app/features/mec/regform.php:119
992
  #: app/features/organizers.php:102 app/features/organizers.php:146
993
  #: app/features/speakers.php:111 app/features/speakers.php:175
994
+ #: app/features/speakers.php:244 app/libraries/main.php:2106
995
  msgid "Tel"
996
  msgstr "Tel"
997
 
998
+ #: app/features/events.php:1251 app/features/mec/regform.php:120
999
+ #: app/libraries/main.php:2135
1000
  msgid "Textarea"
1001
  msgstr "Textbereich"
1002
 
1003
+ #: app/features/events.php:1252 app/features/mec/regform.php:121
1004
+ #: app/libraries/main.php:2188
1005
  msgid "Checkboxes"
1006
  msgstr "Checkboxes"
1007
 
1008
+ #: app/features/events.php:1253 app/features/mec/regform.php:122
1009
+ #: app/libraries/main.php:2232
1010
  msgid "Radio Buttons"
1011
  msgstr "Radio Buttons"
1012
 
1013
+ #: app/features/events.php:1254 app/features/mec/meta_boxes/search_form.php:34
1014
  #: app/features/mec/meta_boxes/search_form.php:41
1015
  #: app/features/mec/meta_boxes/search_form.php:48
1016
  #: app/features/mec/meta_boxes/search_form.php:55
1056
  #: app/features/mec/meta_boxes/search_form.php:443
1057
  #: app/features/mec/meta_boxes/search_form.php:450
1058
  #: app/features/mec/meta_boxes/search_form.php:457
1059
+ #: app/features/mec/regform.php:123 app/libraries/main.php:2276
1060
  msgid "Dropdown"
1061
  msgstr "Dropdown"
1062
 
1063
+ #: app/features/events.php:1255 app/features/mec/regform.php:124
1064
+ #: app/libraries/main.php:2323
1065
  msgid "Agreement"
1066
  msgstr "Zustimmung"
1067
 
1068
+ #: app/features/events.php:1256 app/features/mec/regform.php:125
1069
+ #: app/libraries/main.php:2164
1070
  msgid "Paragraph"
1071
  msgstr "Absatz"
1072
 
1073
+ #: app/features/events.php:1730 app/features/events.php:1745
1074
+ #: app/features/events.php:1759
1075
  #, php-format
1076
  msgid "Show all %s"
1077
  msgstr "Zeige alle %s"
1078
 
1079
+ #: app/features/events.php:1730
1080
  msgid "labels"
1081
  msgstr "Labels + Eventstatus"
1082
 
1083
+ #: app/features/events.php:1745
1084
  msgid "locations"
1085
  msgstr "Orte"
1086
 
1087
+ #: app/features/events.php:1759
1088
  msgid "organizers"
1089
  msgstr "Veranstalter"
1090
 
1091
+ #: app/features/events.php:1785 app/features/events.php:1966
1092
+ #: app/features/events.php:2010 app/features/ix.php:2719
1093
+ #: app/features/ix.php:2760 app/features/locations.php:58
1094
  #: app/features/locations.php:229 app/features/locations.php:281
1095
  #: app/features/locations.php:283 app/features/mec/dashboard.php:106
1096
  #: app/features/mec/meta_boxes/display_options.php:659
1102
  #: app/features/mec/meta_boxes/search_form.php:299
1103
  #: app/features/mec/meta_boxes/search_form.php:339
1104
  #: app/features/mec/meta_boxes/search_form.php:386
1105
+ #: app/features/mec/meta_boxes/search_form.php:433 app/libraries/main.php:1586
1106
+ #: app/libraries/main.php:4171 app/libraries/skins.php:736
1107
+ #: app/skins/single/default.php:141 app/skins/single/default.php:348
1108
+ #: app/skins/single/m1.php:154 app/skins/single/m2.php:86
1109
+ #: app/skins/single/modern.php:83
1110
  msgid "Location"
1111
  msgstr "Ort"
1112
 
1113
+ #: app/features/events.php:1786 app/features/events.php:1966
1114
+ #: app/features/events.php:2010 app/features/ix.php:2719
1115
+ #: app/features/ix.php:2760 app/features/mec/dashboard.php:113
1116
  #: app/features/mec/meta_boxes/display_options.php:660
1117
  #: app/features/mec/meta_boxes/search_form.php:45
1118
  #: app/features/mec/meta_boxes/search_form.php:92
1125
  #: app/features/mec/meta_boxes/search_form.php:440
1126
  #: app/features/organizers.php:58 app/features/organizers.php:199
1127
  #: app/features/organizers.php:255 app/features/organizers.php:257
1128
+ #: app/libraries/main.php:4173 app/libraries/skins.php:762
1129
+ #: app/skins/single/default.php:181 app/skins/single/default.php:388
1130
  #: app/skins/single/m1.php:90 app/skins/single/m2.php:22
1131
  #: app/skins/single/modern.php:21
1132
  msgid "Organizer"
1133
  msgstr "Veranstalter"
1134
 
1135
+ #: app/features/events.php:1790
1136
  msgid "Repeat"
1137
  msgstr "Wiederholen"
1138
 
1139
+ #: app/features/events.php:1791
1140
  msgid "Author"
1141
  msgstr "Autor"
1142
 
1143
+ #: app/features/events.php:1901 app/features/events.php:1902
1144
  msgid "iCal Export"
1145
  msgstr "ical Export"
1146
 
1147
+ #: app/features/events.php:1904 app/features/events.php:1905
1148
  msgid "CSV Export"
1149
  msgstr "CSV Export"
1150
 
1151
+ #: app/features/events.php:1907 app/features/events.php:1908
1152
  msgid "MS Excel Export"
1153
  msgstr "MS Excel Export"
1154
 
1155
+ #: app/features/events.php:1910 app/features/events.php:1911
1156
  msgid "XML Export"
1157
  msgstr "XML Export"
1158
 
1159
+ #: app/features/events.php:1913 app/features/events.php:1914
1160
  msgid "JSON Export"
1161
  msgstr "JSON Export"
1162
 
1163
+ #: app/features/events.php:1916 app/features/events.php:1917
1164
  msgid "Duplicate"
1165
  msgstr "Kopie"
1166
 
1167
+ #: app/features/events.php:1966 app/features/events.php:2010
1168
+ #: app/features/ix.php:2719 app/features/ix.php:2760
1169
  #: app/features/labels.php:176 app/features/locations.php:228
1170
  #: app/features/organizers.php:198 app/features/speakers.php:241
1171
  msgid "ID"
1172
  msgstr "ID"
1173
 
1174
+ #: app/features/events.php:1966 app/features/events.php:2010
1175
+ #: app/features/ix.php:2719 app/features/ix.php:2760
1176
  msgid "Link"
1177
  msgstr "Link"
1178
 
1179
+ #: app/features/events.php:1966 app/features/events.php:2010
1180
  #, php-format
1181
  msgid "%s Tel"
1182
  msgstr "%s Tel"
1183
 
1184
+ #: app/features/events.php:1966 app/features/events.php:2010
1185
  #, php-format
1186
  msgid "%s Email"
1187
  msgstr "%s Email"
1191
  msgid "Please %s/%s in order to submit new events."
1192
  msgstr "Um neue Veranstaltungen einzugeben, bitte %s/%s"
1193
 
1194
+ #: app/features/fes.php:83 app/features/fes.php:161 app/features/profile.php:74
1195
  msgid "Login"
1196
  msgstr "Login"
1197
 
1198
+ #: app/features/fes.php:83 app/features/fes.php:161 app/features/profile.php:74
1199
  msgid "Register"
1200
  msgstr "Anmelden"
1201
 
1241
  msgid "The event published."
1242
  msgstr "Die Veranstaltung wurde veröffentlicht."
1243
 
1244
+ #: app/features/fes/form.php:159
1245
  msgid "Go back to events list."
1246
  msgstr "Zurück zur Liste der Veranstaltungen"
1247
 
1248
+ #: app/features/fes/form.php:409
1249
  msgid "Note to reviewer"
1250
  msgstr "Zusätzliche Anmerkungen zum Event "
1251
 
1252
+ #: app/features/fes/form.php:427
 
 
 
 
1253
  msgid "User Data"
1254
  msgstr "Benutzerdaten"
1255
 
1256
+ #: app/features/fes/form.php:430
1257
  msgid "eg. yourname@gmail.com"
1258
  msgstr "z.B. IhrName@ihrewebseite.de"
1259
 
1260
+ #: app/features/fes/form.php:434 app/features/organizers.php:269
1261
  msgid "eg. John Smith"
1262
  msgstr "z.B. Max Mustermann"
1263
 
1264
+ #: app/features/fes/form.php:488 app/features/mec/settings.php:872
1265
  msgid "Featured Image"
1266
  msgstr "Ausgewähltes Bild"
1267
 
1268
+ #: app/features/fes/form.php:493
1269
  msgid "Remove Image"
1270
  msgstr "Bild entfernen"
1271
 
1272
+ #: app/features/fes/form.php:535 app/features/labels.php:61
1273
  #: app/features/labels.php:220 app/features/mec.php:199
1274
+ #: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4168
1275
+ #: app/skins/single/default.php:120 app/skins/single/default.php:327
1276
+ #: app/skins/single/m1.php:64 app/skins/single/modern.php:199
1277
  msgid "Labels"
1278
  msgstr "Labels"
1279
 
1280
+ #: app/features/fes/form.php:580 app/features/mec.php:197
1281
  #: app/features/mec/meta_boxes/filter.php:138
1282
  msgid "Tags"
1283
  msgstr "Schlagworte"
1284
 
1285
+ #: app/features/fes/form.php:582
1286
  msgid "Insert your desired tags, comma separated."
1287
  msgstr ""
1288
  "Geben Sie die gewünschten Tags (Schlagworte) durch ein Komma separiert ein"
1289
 
1290
+ #: app/features/fes/form.php:618
1291
+ msgid "Submit"
1292
+ msgstr "Buchung abschließen"
1293
+
1294
  #: app/features/fes/list.php:21
1295
  msgid "Click again to remove!"
1296
  msgstr "Zum Entfernen nochmals klicken"
1308
  msgid "No events found! %s"
1309
  msgstr "Keine Veranstaltungen gefunden! %s"
1310
 
1311
+ #: app/features/ix.php:107
1312
  msgid "MEC - Import / Export"
1313
  msgstr "MEC - Import / Export"
1314
 
1315
+ #: app/features/ix.php:107
1316
  msgid "Import / Export"
1317
  msgstr "Import / Export"
1318
 
1319
+ #: app/features/ix.php:198
1320
  msgid "Please upload the feed file."
1321
  msgstr ""
1322
 
1323
+ #: app/features/ix.php:201
1324
  msgid "The file type should be XML or ICS."
1325
  msgstr ""
1326
 
1327
+ #: app/features/ix.php:210
1328
+ msgid "An error occurred during the file upload! Please check permissions!"
1329
  msgstr ""
1330
 
1331
+ #: app/features/ix.php:218
1332
  msgid "The events are imported successfully!"
1333
  msgstr ""
1334
 
1335
+ #: app/features/ix.php:756
1336
  msgid "Third Party plugin is not installed and activated!"
1337
  msgstr "Drittanbieter-Plugin ist nicht installiert und aktiviert!"
1338
 
1339
+ #: app/features/ix.php:781
1340
  msgid "Third Party plugin is invalid!"
1341
  msgstr "Drittanbieter-Plugin ist ungültig!"
1342
 
1343
+ #: app/features/ix.php:1926 app/features/ix.php:1984
1344
  msgid "Both of API key and Calendar ID are required!"
1345
  msgstr "Beide, API Schlüssel und Calender ID wird benötigt"
1346
 
1347
+ #: app/features/ix.php:1979 app/features/ix.php:2398 app/features/ix.php:3182
1348
  msgid "Please select some events to import!"
1349
  msgstr "Bitte wählen Sie einige Veranstaltungen aus zum importieren"
1350
 
1351
+ #: app/features/ix.php:2340 app/features/ix.php:2403
1352
+ #, fuzzy
1353
+ #| msgid "Both of API key and Calendar ID are required!"
1354
+ msgid "Both of API key and Group URL are required!"
1355
+ msgstr "Beide, API Schlüssel und Calender ID wird benötigt"
1356
+
1357
+ #: app/features/ix.php:2642
1358
+ msgid "Check at Meetup"
1359
+ msgstr ""
1360
+
1361
+ #: app/features/ix.php:2719 app/features/ix.php:2760
1362
  msgid "Organizer Tel"
1363
  msgstr "Organisator Telefon"
1364
 
1365
+ #: app/features/ix.php:2719 app/features/ix.php:2760
1366
  msgid "Organizer Email"
1367
  msgstr "Organisator Email"
1368
 
1369
+ #: app/features/ix.php:2841
1370
  msgid "All of Client ID, Client Secret and Calendar ID are required!"
1371
  msgstr "Dies wird alles benötigt: Client ID, Client Secret und Calender ID!"
1372
 
1373
+ #: app/features/ix.php:2864
1374
  #, php-format
1375
  msgid "All seems good! Please click %s for authenticating your app."
1376
  msgstr ""
1377
  "Alles scheint gut zu sein! Bitte klicken %s um Ihre App zu authentifizieren."
1378
 
1379
+ #: app/features/ix.php:2918
1380
  msgid "All of Client App, Client Secret and Calendar ID are required!"
1381
  msgstr "Dies wird alles benötigt: Client ID, Client Secret und Calender ID!"
1382
 
1383
+ #: app/features/ix.php:3113
1384
  #, php-format
1385
  msgid "%s events added to Google Calendar successfully."
1386
  msgstr "%s Events wurden erfolgreich zum Google Kalender hinzugefügt."
1387
 
1388
+ #: app/features/ix.php:3114
1389
  #, php-format
1390
  msgid "%s previously added events get updated."
1391
  msgstr "%s vorherige hinzugefügte Events wurden aktualisiert."
1392
 
1393
+ #: app/features/ix.php:3115
1394
  #, php-format
1395
  msgid "%s events failed to add for following reasons: %s"
1396
  msgstr "%s Events wurde aus folgenden Gründen nicht hinzugefügt: %s"
1397
 
1398
+ #: app/features/ix.php:3145
1399
+ #, fuzzy
1400
+ #| msgid "Please insert your facebook page's link."
1401
+ msgid "Please insert your Facebook page's link."
1402
+ msgstr "Bitte Ihren Facebook Seitenlink eingeben."
1403
+
1404
+ #: app/features/ix.php:3153
1405
+ #, fuzzy
1406
+ #| msgid ""
1407
+ #| "We couldn't recognize your Facebook page. Please check it and provide us "
1408
+ #| "a valid facebook page link."
1409
+ msgid ""
1410
+ "We couldn't recognize your Facebook page. Please check it and provide us a "
1411
+ "valid Facebook page link."
1412
+ msgstr ""
1413
+ "Wir konnten Ihre Facebookseite nicht erkennen. Bitte checken Sie das und "
1414
+ "stellen Sie uns einen gültigen Facebookseitenlink zur Verfügung."
1415
+
1416
+ #: app/features/ix.php:3185
1417
  msgid "Please insert your facebook page's link."
1418
  msgstr "Bitte Ihren Facebook Seitenlink eingeben."
1419
 
1420
+ #: app/features/ix.php:3190
1421
  msgid ""
1422
  "We couldn't recognize your Facebook page. Please check it and provide us a "
1423
  "valid facebook page link."
1427
 
1428
  #: app/features/ix/export.php:8 app/features/ix/export_g_calendar.php:12
1429
  #: app/features/ix/import.php:8 app/features/ix/import_f_calendar.php:8
1430
+ #: app/features/ix/import_g_calendar.php:8 app/features/ix/import_meetup.php:8
1431
+ #: app/features/ix/thirdparty.php:8
1432
  msgid "MEC Import / Export"
1433
  msgstr "MEC Import / Export"
1434
 
1435
  #: app/features/ix/export.php:13 app/features/ix/export_g_calendar.php:17
1436
  #: app/features/ix/import.php:13 app/features/ix/import_f_calendar.php:13
1437
+ #: app/features/ix/import_g_calendar.php:13
1438
+ #: app/features/ix/import_meetup.php:13 app/features/ix/sync.php:13
1439
  #: app/features/ix/thirdparty.php:13
1440
+ #, fuzzy
1441
+ #| msgid "Import"
1442
+ msgid "Meetup Import"
1443
+ msgstr "Import"
1444
 
1445
  #: app/features/ix/export.php:14 app/features/ix/export_g_calendar.php:18
1446
  #: app/features/ix/import.php:14 app/features/ix/import_f_calendar.php:14
 
1447
  #: app/features/ix/import_g_calendar.php:14
1448
+ #: app/features/ix/import_meetup.php:14 app/features/ix/sync.php:14
1449
+ #: app/features/ix/thirdparty.php:14
1450
+ msgid "Synchronization"
1451
+ msgstr "Synchronisation"
1452
 
1453
  #: app/features/ix/export.php:15 app/features/ix/export_g_calendar.php:19
1454
  #: app/features/ix/import.php:15 app/features/ix/import_f_calendar.php:15
1455
+ #: app/features/ix/import_g_calendar.php:15
1456
+ #: app/features/ix/import_meetup.php:15 app/features/ix/sync.php:15
1457
  #: app/features/ix/thirdparty.php:15
1458
+ msgid "Export"
1459
+ msgstr "Export"
1460
 
1461
  #: app/features/ix/export.php:16 app/features/ix/export_g_calendar.php:20
1462
  #: app/features/ix/import.php:16 app/features/ix/import_f_calendar.php:16
1463
+ #: app/features/ix/import_f_calendar.php:75
1464
+ #: app/features/ix/import_g_calendar.php:16
1465
+ #: app/features/ix/import_g_calendar.php:103
1466
+ #: app/features/ix/import_meetup.php:16 app/features/ix/import_meetup.php:85
1467
+ #: app/features/ix/sync.php:16 app/features/ix/thirdparty.php:16
1468
+ #: app/features/ix/thirdparty.php:98
1469
+ msgid "Import"
1470
+ msgstr "Import"
1471
+
1472
+ #: app/features/ix/export.php:17 app/features/ix/export_g_calendar.php:21
1473
+ #: app/features/ix/import.php:17 app/features/ix/import_f_calendar.php:17
1474
+ #: app/features/ix/import_g_calendar.php:17
1475
+ #: app/features/ix/import_meetup.php:17 app/features/ix/sync.php:17
1476
+ #: app/features/ix/thirdparty.php:17 app/features/ix/thirdparty.php:21
1477
  msgid "Third Party Plugins"
1478
  msgstr "Plugins von Drittanbietern"
1479
 
1480
+ #: app/features/ix/export.php:22
1481
  msgid "Export all events to file"
1482
  msgstr "Exportiert alle Events in eine Datei"
1483
 
1484
+ #: app/features/ix/export.php:23
1485
  msgid ""
1486
  "This will export all of your website events' data into your desired format."
1487
  msgstr ""
1488
  "Dies wird alle Ihre Eventdaten von der Webseite in Ihr gewünschtes Format "
1489
  "exportieren."
1490
 
1491
+ #: app/features/ix/export.php:25 app/features/mec/settings.php:673
1492
  msgid "iCal"
1493
  msgstr "iCal"
1494
 
1495
+ #: app/features/ix/export.php:26
1496
  msgid "CSV"
1497
  msgstr "CSV"
1498
 
1499
+ #: app/features/ix/export.php:27
1500
  msgid "MS Excel"
1501
  msgstr "MS Excel"
1502
 
1503
+ #: app/features/ix/export.php:28
1504
  msgid "XML"
1505
  msgstr "XML"
1506
 
1507
+ #: app/features/ix/export.php:29
1508
  msgid "JSON"
1509
  msgstr "JSON"
1510
 
1511
+ #: app/features/ix/export.php:33
1512
  msgid "Export certain events"
1513
  msgstr "Bestimme Events exportieren"
1514
 
1515
+ #: app/features/ix/export.php:34
1516
  #, php-format
1517
  msgid "For exporting filtered events, you can use bulk actions in %s page."
1518
  msgstr ""
1519
  "Für den Export gefilterter Ereignisse können Sie Bulk-Aktionen in der% s-"
1520
  "Seite verwenden."
1521
 
1522
+ #: app/features/ix/export.php:37
1523
  msgid "Export certain bookings"
1524
  msgstr "Bestimmte Anmeldungen/Buchungen exportieren"
1525
 
1526
+ #: app/features/ix/export.php:38
1527
  #, php-format
1528
  msgid "For exporting bookings events, you can use bulk actions in %s page."
1529
  msgstr ""
1530
  "Wir haben Events für %s Seite gefunden. Bitte wählen Sie Ihre gewünschten "
1531
  "Events zum importieren."
1532
 
1533
+ #: app/features/ix/export.php:38
1534
  msgid "Bookings"
1535
  msgstr "Buchungen / Reservierungen"
1536
 
1537
+ #: app/features/ix/export_g_calendar.php:26
1538
  msgid "Add events to Google Calendar"
1539
  msgstr "Events zum Google Kalender hinzufügen"
1540
 
1541
+ #: app/features/ix/export_g_calendar.php:27
1542
  msgid "Add your desired website events to your Google Calendar."
1543
  msgstr ""
1544
  "Fügen Sie Ihre gewünschten Webseiten Events zu Ihrem Google Kalender hinzu."
1545
 
1546
+ #: app/features/ix/export_g_calendar.php:27
1547
  #, php-format
1548
  msgid "You should set %s as redirect page in Google App Console."
1549
  msgstr "Sie sollten% s als Redirect-Seite in der Google App Console setzen."
1550
 
1551
+ #: app/features/ix/export_g_calendar.php:30
1552
  msgid "App Client ID"
1553
  msgstr "App Client ID"
1554
 
1555
+ #: app/features/ix/export_g_calendar.php:36
1556
  msgid "App Client Secret"
1557
  msgstr "App Client Passwort"
1558
 
1559
+ #: app/features/ix/export_g_calendar.php:42
1560
+ #: app/features/ix/import_g_calendar.php:32
1561
  msgid "Calendar ID"
1562
  msgstr "Kalender ID"
1563
 
1564
+ #: app/features/ix/export_g_calendar.php:48
1565
+ #: app/features/ix/export_g_calendar.php:103
1566
+ #: app/features/ix/export_g_calendar.php:120
1567
  msgid "Authenticate"
1568
  msgstr "Authentifizierung"
1569
 
1570
+ #: app/features/ix/export_g_calendar.php:57
1571
+ #: app/features/ix/import_f_calendar.php:50
1572
+ #: app/features/ix/import_g_calendar.php:64
1573
+ #: app/features/ix/import_meetup.php:53 app/features/ix/thirdparty.php:49
1574
  msgid "Select All"
1575
  msgstr "Alles Auswählen"
1576
 
1577
+ #: app/features/ix/export_g_calendar.php:58
1578
+ #: app/features/ix/import_f_calendar.php:51
1579
+ #: app/features/ix/import_g_calendar.php:65
1580
+ #: app/features/ix/import_meetup.php:54 app/features/ix/thirdparty.php:50
1581
  msgid "Deselect All"
1582
  msgstr "Alle abwählen"
1583
 
1584
+ #: app/features/ix/export_g_calendar.php:59
1585
+ #: app/features/ix/import_f_calendar.php:52
1586
+ #: app/features/ix/import_g_calendar.php:66
1587
+ #: app/features/ix/import_meetup.php:55 app/features/ix/thirdparty.php:51
1588
  msgid "Toggle"
1589
  msgstr "Umschalten"
1590
 
1591
+ #: app/features/ix/export_g_calendar.php:72
1592
+ #: app/features/ix/export_g_calendar.php:147
1593
+ #: app/features/ix/export_g_calendar.php:164
1594
  #: app/features/mec/notifications.php:144
1595
  #: app/features/mec/notifications.php:185
1596
  #: app/features/mec/notifications.php:226
1598
  msgid "Add to Google Calendar"
1599
  msgstr "Zum Google Kalender hinzufügen"
1600
 
1601
+ #: app/features/ix/export_g_calendar.php:90 app/features/mec/settings.php:1367
1602
  msgid "Checking ..."
1603
  msgstr "Überprüfung"
1604
 
1605
+ #: app/features/ix/export_g_calendar.php:134
1606
+ #, fuzzy
1607
+ #| msgid "Importing ..."
1608
+ msgid "Exporting ..."
1609
  msgstr "Importieren"
1610
 
1611
+ #: app/features/ix/import.php:21
1612
  msgid "Import MEC XML Feed"
1613
  msgstr ""
1614
 
1615
+ #: app/features/ix/import.php:24
1616
  #, php-format
1617
  msgid ""
1618
  "You can import %s events from another website to this website. You just need "
1619
  "an XML feed of the events that can be exported from source website!"
1620
  msgstr ""
1621
 
1622
+ #: app/features/ix/import.php:27
1623
  msgid "XML Feed"
1624
  msgstr ""
1625
 
1626
+ #: app/features/ix/import.php:29 app/features/ix/import.php:42
1627
  msgid "Upload & Import"
1628
  msgstr ""
1629
 
1630
+ #: app/features/ix/import.php:33
1631
  msgid "Import .ics File"
1632
  msgstr ""
1633
 
1634
+ #: app/features/ix/import.php:37
1635
  #, php-format
1636
  msgid ""
1637
  "ICS format supports by many different service providers like Facebook. Apple "
1638
  "Calendar etc. You can import your ics file into the %s using this form."
1639
  msgstr ""
1640
 
1641
+ #: app/features/ix/import.php:40
1642
  msgid "ICS Feed"
1643
  msgstr ""
1644
 
1645
+ #: app/features/ix/import.php:46 app/features/mec/settings.php:554
1646
+ #: app/features/mec/settings.php:704 app/features/mec/settings.php:722
1647
+ #: app/features/mec/settings.php:994 app/features/mec/settings.php:1084
1648
+ #: app/features/mec/settings.php:1101 app/features/mec/settings.php:1166
1649
  #, php-format
1650
  msgid "%s is required to use this feature."
1651
  msgstr ""
1652
 
1653
+ #: app/features/ix/import.php:46 app/features/ix/sync.php:22
1654
  #: app/features/mec/meta_boxes/display_options.php:224
1655
  #: app/features/mec/meta_boxes/display_options.php:379
1656
  #: app/features/mec/meta_boxes/display_options.php:469
1657
  #: app/features/mec/meta_boxes/display_options.php:576
1658
  #: app/features/mec/meta_boxes/display_options.php:626
1659
  #: app/features/mec/meta_boxes/display_options.php:764
1660
+ #: app/features/mec/settings.php:554 app/features/mec/settings.php:704
1661
+ #: app/features/mec/settings.php:722 app/features/mec/settings.php:994
1662
+ #: app/features/mec/settings.php:1084 app/features/mec/settings.php:1101
1663
+ #: app/features/mec/settings.php:1166 app/features/mec/settings.php:1291
1664
  #: app/libraries/skins.php:248
1665
  msgid "Pro version of Modern Events Calendar"
1666
  msgstr ""
1667
 
1668
+ #: app/features/ix/import_f_calendar.php:22
1669
  msgid "The Facebook SDK requires PHP version 5.4 or higher."
1670
  msgstr "Facebook SDK benötigt PHP version 5.4. oder höher"
1671
 
1672
+ #: app/features/ix/import_f_calendar.php:26
1673
  msgid "Import from Facebook Calendar"
1674
  msgstr "Vom Facebook Kalender Importieren"
1675
 
1676
+ #: app/features/ix/import_f_calendar.php:27
1677
+ #, fuzzy
1678
+ #| msgid "Import all of your facebook events into MEC."
1679
+ msgid "Import all of your Facebook events into MEC."
1680
  msgstr "Importiere alle Deine Facebook Events zum MEC"
1681
 
1682
+ #: app/features/ix/import_f_calendar.php:29
1683
  msgid "Facebook Page Link"
1684
  msgstr "Facebook Seiten Link"
1685
 
1686
+ #: app/features/ix/import_f_calendar.php:47
 
 
 
 
 
1687
  msgid "Facebook Events"
1688
  msgstr "Facebook events"
1689
 
1690
+ #: app/features/ix/import_f_calendar.php:48
1691
  #, php-format
1692
  msgid ""
1693
  "We found %s events for %s page. Please select your desired events to import."
1695
  "Wir haben % s Events für % s diese Seite gefunden. Bitte wählen Sie Ihre "
1696
  "gewünschten Events zum Import aus."
1697
 
1698
+ #: app/features/ix/import_f_calendar.php:59 app/features/ix/thirdparty.php:58
1699
  #, php-format
1700
  msgid "Event Title: %s"
1701
  msgstr "Event Title: %s"
1702
 
1703
+ #: app/features/ix/import_f_calendar.php:66
1704
+ #: app/features/ix/import_g_calendar.php:87
1705
+ #: app/features/ix/import_meetup.php:69 app/features/ix/thirdparty.php:65
1706
  msgid "Import Options"
1707
  msgstr "Import Optionen"
1708
 
1709
+ #: app/features/ix/import_f_calendar.php:70
1710
+ #: app/features/ix/import_g_calendar.php:97
1711
+ #: app/features/ix/import_meetup.php:79 app/features/ix/thirdparty.php:78
1712
  msgid "Import Locations"
1713
  msgstr "Orte importieren"
1714
 
1715
+ #: app/features/ix/import_f_calendar.php:85
1716
  #, php-format
1717
  msgid "%s events successfully imported to your website from Facebook Calendar."
1718
  msgstr ""
1719
  "%s events wurden erfolgreich zu Ihrer Webseite vom Facebook Kaldender "
1720
  "importiert."
1721
 
1722
+ #: app/features/ix/import_g_calendar.php:23
1723
  msgid "Import from Google Calendar"
1724
  msgstr "Import vom Google Kalender"
1725
 
1726
+ #: app/features/ix/import_g_calendar.php:24
1727
  msgid "This will import all of your Google calendar events into MEC."
1728
  msgstr "Dies wird alle Deine Google Events zu MEC importieren"
1729
 
1730
+ #: app/features/ix/import_g_calendar.php:26
1731
  msgid "Google API Key"
1732
  msgstr "Google API Key"
1733
 
1734
+ #: app/features/ix/import_g_calendar.php:61
1735
  msgid "Google Calendar Events"
1736
  msgstr "Google Kalender Events"
1737
 
1738
+ #: app/features/ix/import_g_calendar.php:62
1739
  #, php-format
1740
  msgid ""
1741
  "We found %s events for %s calendar. Please select your desired events to "
1744
  "Wir haben %s events für %s Kalender gefunden. Bitte wählen Sie Ihre "
1745
  "gewünschten Events zum importieren aus."
1746
 
1747
+ #: app/features/ix/import_g_calendar.php:80
1748
+ #: app/features/ix/import_meetup.php:62
1749
  #, php-format
1750
  msgid "Event Title: %s Event Date: %s - %s"
1751
  msgstr "Name der Veranstaltung: %s Veranstaltungsdatum: %s - %s"
1752
 
1753
+ #: app/features/ix/import_g_calendar.php:91
1754
+ #: app/features/ix/import_meetup.php:73 app/features/ix/thirdparty.php:71
1755
  msgid "Import Organizers"
1756
  msgstr "Veranstalter importieren"
1757
 
1758
+ #: app/features/ix/import_g_calendar.php:113
1759
  #, php-format
1760
  msgid "%s events successfully imported to your website from Google Calendar."
1761
  msgstr ""
1762
  "%s Events wurden erfolgreich zu Deiner Webseite vom Google Kalender "
1763
  "importiert."
1764
 
1765
+ #: app/features/ix/import_meetup.php:23
1766
+ #, fuzzy
1767
+ #| msgid "Import from Google Calendar"
1768
+ msgid "Import from Meetup"
1769
+ msgstr "Import vom Google Kalender"
1770
+
1771
+ #: app/features/ix/import_meetup.php:24
1772
+ #, fuzzy
1773
+ #| msgid "This will import all of your Google calendar events into MEC."
1774
+ msgid "This will import all your meetup events into MEC."
1775
+ msgstr "Dies wird alle Deine Google Events zu MEC importieren"
1776
+
1777
+ #: app/features/ix/import_meetup.php:26
1778
+ #, fuzzy
1779
+ #| msgid "API Key"
1780
+ msgid "Meetup API Key"
1781
+ msgstr "API Schlüssel"
1782
+
1783
+ #: app/features/ix/import_meetup.php:32
1784
+ msgid "Group URL"
1785
+ msgstr ""
1786
+
1787
+ #: app/features/ix/import_meetup.php:35
1788
+ #, php-format
1789
+ msgid "put only the slug of your group like %s in %s"
1790
+ msgstr ""
1791
+
1792
+ #: app/features/ix/import_meetup.php:50
1793
+ #, fuzzy
1794
+ #| msgid "Next Event"
1795
+ msgid "Meetup Events"
1796
+ msgstr "Nächstes Event"
1797
+
1798
+ #: app/features/ix/import_meetup.php:51
1799
+ #, fuzzy, php-format
1800
+ #| msgid ""
1801
+ #| "We found %s events for %s page. Please select your desired events to "
1802
+ #| "import."
1803
+ msgid ""
1804
+ "We found %s events for %s group. Please select your desired events to import."
1805
+ msgstr ""
1806
+ "Wir haben % s Events für % s diese Seite gefunden. Bitte wählen Sie Ihre "
1807
+ "gewünschten Events zum Import aus."
1808
+
1809
+ #: app/features/ix/import_meetup.php:95
1810
+ #, fuzzy, php-format
1811
+ #| msgid "%s events successfully imported to your website."
1812
+ msgid "%s events successfully imported to your website from meetup."
1813
+ msgstr "% s Events wurden erfolgreich in Ihre Website importiert."
1814
+
1815
+ #: app/features/ix/import_meetup.php:96 app/features/ix/thirdparty.php:109
1816
+ msgid "Attention"
1817
+ msgstr "Achtung"
1818
+
1819
+ #: app/features/ix/import_meetup.php:96
1820
+ msgid ""
1821
+ "Although we tried our best to make the events completely compatible with MEC "
1822
+ "but some modification might be needed. We suggest you to edit the imported "
1823
+ "listings one by one on MEC edit event page and make sure thay're correct."
1824
+ msgstr ""
1825
+ "Wir haben zwar unser Bestes gegeben, um die Events vollständig kompatibel "
1826
+ "mit MEC zu machen, aber einige Änderungen sind möglicherweise erforderlich. "
1827
+ "Wir empfehlen Ihnen, die importierten Einträge nacheinander auf der MEC Edit "
1828
+ "Event Seite zu bearbeiten und sicherzustellen, dass sie korrekt sind."
1829
+
1830
  #: app/features/ix/sync.php:8
1831
  msgid "Auto Synchronization"
1832
  msgstr "Auto Synchronisation"
1833
 
1834
+ #: app/features/ix/sync.php:22
1835
  #: app/features/mec/meta_boxes/display_options.php:626
1836
  #, php-format
1837
  msgid "%s is required to use synchronization feature."
1838
  msgstr ""
1839
 
1840
+ #: app/features/ix/sync.php:29
1841
  msgid "Auto Google Import"
1842
  msgstr "Automatischer Google Calender Import"
1843
 
1844
+ #: app/features/ix/sync.php:32 app/features/ix/sync.php:41
1845
+ #: app/features/ix/sync.php:52 app/features/ix/sync.php:63
1846
+ #: app/features/mec/notifications.php:281
1847
  msgid "Important Note"
1848
  msgstr "Important Note"
1849
 
1850
+ #: app/features/ix/sync.php:32
1851
  #, php-format
1852
  msgid ""
1853
  "Set a cronjob to call %s file atleast once per day otherwise it won't import "
1856
  "Setzen Sie einen Cronjob, um % s Datei mindestens einmal pro Tag anzurufen, "
1857
  "ansonsten würden Google Kalender Ereignisse nicht importiert"
1858
 
1859
+ #: app/features/ix/sync.php:38
1860
  msgid "Auto Google Export"
1861
  msgstr "Auto Google Export"
1862
 
1863
+ #: app/features/ix/sync.php:41
1864
  #, php-format
1865
  msgid ""
1866
  "Set a cronjob to call %s file atleast once per day otherwise it won't export "
1869
  "Setzen Sie einen Cronjob, um % s Datei mindestens einmal pro Tag anzurufen, "
1870
  "ansonsten würden Ihre Webseiten Events nicht zum Google Kalender exportiert. "
1871
 
1872
+ #: app/features/ix/sync.php:49
1873
  msgid "Auto Facebook Import"
1874
  msgstr "Auto Facebook Kalender Import"
1875
 
1876
+ #: app/features/ix/sync.php:52
1877
  #, php-format
1878
  msgid ""
1879
  "Set a cronjob to call %s file atleast once per day otherwise it won't import "
1882
  "Setzen Sie einen Cronjob, um % s Datei mindestens einmal pro Tag anzurufen, "
1883
  "ansonsten würden keine Veranstaltungen von Facebook importiert. "
1884
 
1885
+ #: app/features/ix/sync.php:60
1886
+ #, fuzzy
1887
+ #| msgid "Auto Google Import"
1888
+ msgid "Auto Meetup Import"
1889
+ msgstr "Automatischer Google Calender Import"
1890
+
1891
+ #: app/features/ix/sync.php:63
1892
+ #, fuzzy, php-format
1893
+ #| msgid ""
1894
+ #| "Set a cronjob to call %s file atleast once per day otherwise it won't "
1895
+ #| "import any event from Facebook."
1896
+ msgid ""
1897
+ "Set a cronjob to call %s file atleast once per day otherwise it won't import "
1898
+ "any event from Meetup."
1899
+ msgstr ""
1900
+ "Setzen Sie einen Cronjob, um % s Datei mindestens einmal pro Tag anzurufen, "
1901
+ "ansonsten würden keine Veranstaltungen von Facebook importiert. "
1902
+
1903
+ #: app/features/ix/sync.php:68
1904
  msgid "Save"
1905
  msgstr "Sichern"
1906
 
1907
+ #: app/features/ix/thirdparty.php:24
1908
  #, php-format
1909
  msgid "You can import events from following integrated plugins to %s."
1910
  msgstr ""
1911
  "Sie können Events von folgenden integrierten Plugins in% s importieren."
1912
 
1913
+ #: app/features/ix/thirdparty.php:27
1914
  msgid "Third Party"
1915
+ msgstr "Dritte Seite"
1916
 
1917
+ #: app/features/ix/thirdparty.php:46
1918
  msgid "Found Events"
1919
  msgstr "Events gefunden"
1920
 
1921
+ #: app/features/ix/thirdparty.php:47
1922
  #, php-format
1923
  msgid "We found %s events. Please select your desired events to import."
1924
  msgstr ""
1925
  "Wir haben% s Events gefunden. Bitte wählen Sie Ihre gewünschten Events zum "
1926
  "Importieren aus."
1927
 
1928
+ #: app/features/ix/thirdparty.php:70
1929
  msgid "Import Instructors"
1930
  msgstr "Importieren Sie Instruktoren"
1931
 
1932
+ #: app/features/ix/thirdparty.php:85
1933
  msgid "Import Class Types"
1934
  msgstr "Klassentypen importieren"
1935
 
1936
+ #: app/features/ix/thirdparty.php:86
1937
  msgid "Import Categories"
1938
  msgstr "Importiere Kategorien"
1939
 
1940
+ #: app/features/ix/thirdparty.php:93
1941
  msgid "Import Featured Images"
1942
  msgstr "Importieren Sie ausgewählte Bilder"
1943
 
1944
+ #: app/features/ix/thirdparty.php:108
1945
  #, php-format
1946
  msgid "%s events successfully imported to your website."
1947
  msgstr "% s Events wurden erfolgreich in Ihre Website importiert."
1948
 
1949
+ #: app/features/ix/thirdparty.php:109
1950
+ #, fuzzy
1951
+ #| msgid ""
1952
+ #| "Although we tried our best to make the events completely compatible with "
1953
+ #| "MEC but some modification might be needed. We suggest you to edit the "
1954
+ #| "imported listings one by one on MEC edit event page and make sure thay're "
1955
+ #| "correct."
1956
  msgid ""
1957
  "Although we tried our best to make the events completely compatible with MEC "
1958
  "but some modification might be needed. We suggest you to edit the imported "
1959
+ "listings one by one on MEC edit event page and make sure they are correct."
1960
  msgstr ""
1961
  "Wir haben zwar unser Bestes gegeben, um die Events vollständig kompatibel "
1962
  "mit MEC zu machen, aber einige Änderungen sind möglicherweise erforderlich. "
1963
  "Wir empfehlen Ihnen, die importierten Einträge nacheinander auf der MEC Edit "
1964
  "Event Seite zu bearbeiten und sicherzustellen, dass sie korrekt sind."
1965
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1966
  #: app/features/labels.php:102 app/features/labels.php:133
1967
  #: app/features/labels.php:178
1968
  msgid "Color"
2006
  msgstr "Ausgewähltes Bild"
2007
 
2008
  #: app/features/labels.php:117 app/features/labels.php:142
2009
+ #: app/libraries/main.php:4361 app/skins/agenda/render.php:41
2010
+ #: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:33
2011
+ #: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:31
2012
+ #: app/skins/daily_view/render.php:26 app/skins/grid/render.php:53
2013
+ #: app/skins/list/render.php:39 app/skins/masonry/render.php:32
2014
+ #: app/skins/monthly_view/calendar.php:84
2015
  #: app/skins/monthly_view/calendar_clean.php:85
2016
  #: app/skins/monthly_view/calendar_novel.php:81 app/skins/slider/render.php:52
2017
  #: app/skins/timetable/render.php:36 app/skins/timetable/render.php:99
2025
 
2026
  #: app/features/labels.php:179 app/features/locations.php:231
2027
  #: app/features/organizers.php:201 app/features/speakers.php:245
2028
+ #: app/modules/booking/steps/tickets.php:38
2029
  msgid "Count"
2030
  msgstr "Zähler"
2031
 
2040
  msgstr "Event %s"
2041
 
2042
  #: app/features/locations.php:59 app/features/mec.php:200
2043
+ #: app/features/mec/meta_boxes/filter.php:87 app/libraries/main.php:4170
2044
  msgid "Locations"
2045
  msgstr "Orte"
2046
 
2114
  "z.B. Karlsruhe Schlosshotel oder Frankfurt Allianz oder Dortmund "
2115
  "Westfalenhalle"
2116
 
2117
+ #: app/features/locations.php:298 app/features/mec/settings.php:902
2118
  #: app/widgets/single.php:115
2119
  msgid "Event Location"
2120
  msgstr "Veranstaltungsort"
2148
  msgstr "Karte in Einzelansicht nicht anzeigen"
2149
 
2150
  #: app/features/mec.php:201 app/features/mec/meta_boxes/filter.php:104
2151
+ #: app/features/organizers.php:59 app/libraries/main.php:4172
2152
  msgid "Organizers"
2153
  msgstr "Veranstalter"
2154
 
2220
  msgstr ""
2221
 
2222
  #: app/features/mec/dashboard.php:61
2223
+ #, fuzzy
2224
+ #| msgid "Modern Events Calendar"
2225
+ msgid "Modern Events Calendar (Lite)"
2226
+ msgstr "Moderner Event Kalender "
 
 
2227
 
2228
  #: app/features/mec/dashboard.php:63 app/libraries/factory.php:191
2229
+ msgctxt "plugin rate"
2230
  msgid "Rate the plugin ★★★★★"
2231
  msgstr ""
2232
 
2296
  msgid "OPEN A TICKET"
2297
  msgstr "Ein Ticket eröffnen"
2298
 
2299
+ #: app/features/mec/dashboard.php:160 app/features/mec/settings.php:401
2300
  msgid "Upcoming Events"
2301
+ msgstr "Bevorstehende Events"
2302
 
2303
  #: app/features/mec/dashboard.php:184
2304
  msgid "Popular Gateways"
2347
 
2348
  #: app/features/mec/gateways.php:52 app/features/mec/messages.php:52
2349
  #: app/features/mec/notifications.php:51 app/features/mec/regform.php:50
2350
+ #: app/features/mec/settings.php:228 app/features/mec/styles.php:52
2351
  #: app/features/mec/styling.php:78 app/features/mec/support.php:50
2352
  msgid "Styling Options"
2353
  msgstr "Styling-Optionen"
2354
 
2355
  #: app/features/mec/gateways.php:59 app/features/mec/messages.php:59
2356
  #: app/features/mec/notifications.php:58 app/features/mec/regform.php:57
2357
+ #: app/features/mec/settings.php:235 app/features/mec/styles.php:59
2358
  #: app/features/mec/styling.php:85 app/features/mec/support.php:57
2359
  msgid "Custom CSS"
2360
  msgstr "Custom CSS"
2361
 
2362
  #: app/features/mec/gateways.php:66 app/features/mec/messages.php:66
2363
  #: app/features/mec/messages.php:90 app/features/mec/notifications.php:65
2364
+ #: app/features/mec/regform.php:64 app/features/mec/settings.php:242
2365
  #: app/features/mec/styles.php:66 app/features/mec/styling.php:92
2366
  #: app/features/mec/support.php:64
2367
  msgid "Messages"
2369
 
2370
  #: app/features/mec/gateways.php:73 app/features/mec/messages.php:73
2371
  #: app/features/mec/notifications.php:72 app/features/mec/regform.php:71
2372
+ #: app/features/mec/settings.php:249 app/features/mec/styles.php:73
2373
  #: app/features/mec/styling.php:99 app/features/mec/support.php:71
2374
  #: app/features/mec/support.php:84
2375
  msgid "Support"
2382
  #: app/features/mec/notifications.php:425
2383
  #: app/features/mec/notifications.php:433 app/features/mec/regform.php:130
2384
  #: app/features/mec/regform.php:203 app/features/mec/regform.php:211
2385
+ #: app/features/mec/settings.php:257 app/features/mec/settings.php:1329
2386
+ #: app/features/mec/settings.php:1337 app/features/mec/settings.php:1381
2387
+ #: app/features/mec/settings.php:1394 app/features/mec/styles.php:96
2388
  #: app/features/mec/styles.php:136 app/features/mec/styles.php:144
2389
  #: app/features/mec/styling.php:262 app/features/mec/styling.php:327
2390
  #: app/features/mec/styling.php:335
2393
 
2394
  #: app/features/mec/gateways.php:130 app/features/mec/messages.php:137
2395
  #: app/features/mec/notifications.php:413 app/features/mec/regform.php:190
2396
+ #: app/features/mec/settings.php:1362 app/features/mec/styles.php:123
2397
  #: app/features/mec/styling.php:313
2398
  msgid "Saved"
2399
  msgstr "Gesichert"
2400
 
2401
  #: app/features/mec/gateways.php:131 app/features/mec/messages.php:138
2402
  #: app/features/mec/notifications.php:414 app/features/mec/regform.php:191
2403
+ #: app/features/mec/settings.php:1363 app/features/mec/styles.php:124
2404
  #: app/features/mec/styling.php:314
2405
  msgid "Settings Saved!"
2406
  msgstr ""
2695
 
2696
  #: app/features/mec/meta_boxes/display_options.php:297
2697
  #: app/features/mec/meta_boxes/display_options.php:313
2698
+ #: app/libraries/main.php:326 app/libraries/main.php:1164
2699
  msgid "List View"
2700
  msgstr "Listenansicht"
2701
 
2702
  #: app/features/mec/meta_boxes/display_options.php:298
2703
  #: app/features/mec/meta_boxes/display_options.php:323
2704
+ #: app/libraries/main.php:330 app/libraries/main.php:1158
2705
  msgid "Yearly View"
2706
  msgstr "Jahresansicht"
2707
 
2712
 
2713
  #: app/features/mec/meta_boxes/display_options.php:300
2714
  #: app/features/mec/meta_boxes/display_options.php:343
2715
+ #: app/libraries/main.php:333 app/libraries/main.php:1160
2716
  msgid "Weekly View"
2717
  msgstr "Wochenansicht"
2718
 
2719
  #: app/features/mec/meta_boxes/display_options.php:301
2720
  #: app/features/mec/meta_boxes/display_options.php:353
2721
+ #: app/libraries/main.php:332 app/libraries/main.php:1161
2722
  msgid "Daily View"
2723
  msgstr "Tagesansicht"
2724
 
2808
 
2809
  #: app/features/mec/meta_boxes/display_options.php:654
2810
  msgid "Filter By"
2811
+ msgstr "Filtern nach"
2812
 
2813
  #: app/features/mec/meta_boxes/display_options.php:665
2814
  msgid "Convert Masonry to Grid"
3032
  #: app/features/mec/meta_boxes/search_form.php:449
3033
  #: app/features/mec/meta_boxes/search_form.php:456
3034
  #: app/features/mec/meta_boxes/search_form.php:463
3035
+ #: app/features/mec/settings.php:315 app/features/mec/settings.php:413
3036
+ #: app/features/mec/settings.php:597
3037
  msgid "Disabled"
3038
  msgstr "Deaktiviert"
3039
 
3328
  msgid "Email/Booking verification link."
3329
  msgstr "Bestätigungslink für Email/Buchung"
3330
 
3331
+ #: app/features/mec/notifications.php:189 app/features/mec/settings.php:1057
3332
  msgid "Booking Confirmation"
3333
  msgstr "Buchungsbestätigung"
3334
 
3417
  msgid "Status of event"
3418
  msgstr "Status der Veranstaltung"
3419
 
3420
+ #: app/features/mec/notifications.php:355 app/features/mec/settings.php:944
3421
  msgid "Event Note"
3422
  msgstr "Veranstaltungsnotiz"
3423
 
3429
  msgid "Archive Page Options"
3430
  msgstr ""
3431
 
3432
+ #: app/features/mec/settings.php:90 app/features/mec/settings.php:662
3433
  msgid "Export Module Options"
3434
  msgstr "Optionen für Export-Module"
3435
 
3436
+ #: app/features/mec/settings.php:96 app/features/mec/settings.php:689
3437
  msgid "Local Time Module"
3438
  msgstr "Lokales Zeitmodul"
3439
 
3440
+ #: app/features/mec/settings.php:102 app/features/mec/settings.php:701
3441
  msgid "QR Code Module"
3442
  msgstr "QR Code Module"
3443
 
3444
+ #: app/features/mec/settings.php:108 app/features/mec/settings.php:719
3445
  #: app/widgets/single.php:147
3446
  msgid "Weather Module"
3447
  msgstr "Wettermodul"
3448
 
3449
+ #: app/features/mec/settings.php:138 app/features/mec/settings.php:963
3450
+ msgid "User Profile"
3451
+ msgstr ""
3452
+
3453
+ #: app/features/mec/settings.php:150 app/features/mec/settings.php:981
3454
  msgid "Additional Organizers"
3455
  msgstr "Zusätzliche Organisatoren"
3456
 
3457
+ #: app/features/mec/settings.php:168 app/features/mec/settings.php:1098
3458
  msgid "Taxes / Fees"
3459
  msgstr "Steuern/Gebühren"
3460
 
3461
+ #: app/features/mec/settings.php:174 app/features/mec/settings.php:1163
3462
  msgid "Ticket Variations & Options"
3463
  msgstr ""
3464
 
3465
+ #: app/features/mec/settings.php:274
3466
  msgid "Time Format"
3467
  msgstr "Zeitformat"
3468
 
3469
+ #: app/features/mec/settings.php:277
3470
  msgid "12 hours format with AM/PM"
3471
  msgstr "12-Stunden-Format mit AM/FM"
3472
 
3473
+ #: app/features/mec/settings.php:278
3474
  msgid "24 hours format"
3475
  msgstr "24-Stunden-Format"
3476
 
3477
+ #: app/features/mec/settings.php:280 app/features/mec/settings.php:293
3478
  msgid ""
3479
  "This option is for showing start/end time of events on frontend of website."
3480
  msgstr ""
3481
  "Diese Option ist um die Start/Endezeit von Events im Frontend der Webseite "
3482
  "anzuzeigen"
3483
 
3484
+ #: app/features/mec/settings.php:285
3485
  msgid "Hide Events"
3486
  msgstr "Events verbergen"
3487
 
3488
+ #: app/features/mec/settings.php:288
3489
  msgid "On Event Start"
3490
  msgstr "Am Event Start"
3491
 
3492
+ #: app/features/mec/settings.php:289
3493
  msgid "+1 Hour after start"
3494
  msgstr "+1 Stunde nach dem Start"
3495
 
3496
+ #: app/features/mec/settings.php:290
3497
  msgid "+2 Hours after start"
3498
  msgstr "+2 Stunden nach dem Start"
3499
 
3500
+ #: app/features/mec/settings.php:291
3501
  msgid "On Event End"
3502
  msgstr "Am Event Ende"
3503
 
3504
+ #: app/features/mec/settings.php:299
3505
  msgid "Multiple Day Events"
3506
  msgstr "Mehrtagesveranstaltung"
3507
 
3508
+ #: app/features/mec/settings.php:302
3509
  msgid "Show only first day on List/Grid/Slider skins"
3510
  msgstr "Zeige nur den ersten Tag auf Listen/Raster(Grid)/Slider skins."
3511
 
3512
+ #: app/features/mec/settings.php:303
3513
  msgid "Show only first day on all skins"
3514
  msgstr "Nur den ersten Tag in allen Ansichten zeigen"
3515
 
3516
+ #: app/features/mec/settings.php:304
3517
  msgid "Show all days"
3518
  msgstr "Alle Tage anzeigen"
3519
 
3520
+ #: app/features/mec/settings.php:306
3521
  msgid ""
3522
  "For showing all days of multiple day events on frontend or only show the "
3523
  "first day."
3525
  "Um alle Tage anzuzeigen bei Events über mehrere Tage im Frontend oder nur "
3526
  "den ersten Tag anzeigen"
3527
 
3528
+ #: app/features/mec/settings.php:312
3529
  msgid "Remove MEC Data on Plugin Uninstall"
3530
  msgstr "Entfernen von MEC Data auf dem Plugin Deinstallierer"
3531
 
3532
+ #: app/features/mec/settings.php:316
3533
  msgid "Enabled"
3534
  msgstr "Aktiviert"
3535
 
3536
+ #: app/features/mec/settings.php:322
3537
  msgid "Exclude Date Suffix"
3538
  msgstr "Ausschlussdatum Suffix"
3539
 
3540
+ #: app/features/mec/settings.php:325
3541
  msgid "Remove suffix from calendars"
3542
  msgstr "Suffix aus den Kalendern entfernen"
3543
 
3544
+ #: app/features/mec/settings.php:332 app/libraries/main.php:4179
3545
  msgid "Weekdays"
3546
  msgstr "Wochentage"
3547
 
3548
+ #: app/features/mec/settings.php:340
3549
  msgid ""
3550
  "Proceed with caution. Default is set to Monday, Tuesday, Wednesday, Thursday "
3551
  "and Friday."
3553
  "Vorsichtig vorgehen. Standardwert ist auf Montag, Dienstag, Mittwoch, "
3554
  "Donnerstag und Freitag gesetzt."
3555
 
3556
+ #: app/features/mec/settings.php:347
3557
  msgid "Weekends"
3558
  msgstr "Wochenenden"
3559
 
3560
+ #: app/features/mec/settings.php:355
3561
  msgid "Proceed with caution. Default is set to Saturday and Sunday."
3562
  msgstr "Vorsichtig vorgehen. Standardwert ist auf Samstag und Sonntag gesetzt."
3563
 
3564
+ #: app/features/mec/settings.php:363
3565
  msgid "Archive Pages"
3566
  msgstr ""
3567
 
3568
+ #: app/features/mec/settings.php:366
3569
  msgid "Archive Page Title"
3570
  msgstr "Titel der Archivseite"
3571
 
3572
+ #: app/features/mec/settings.php:369
3573
  msgid "Default value is Events"
3574
  msgstr "Der Standardwert ist Ereignisse (Events)"
3575
 
3576
+ #: app/features/mec/settings.php:374
3577
  msgid "Archive Page Skin"
3578
  msgstr "Skin Seite Archiv"
3579
 
3580
+ #: app/features/mec/settings.php:381
3581
  msgid "Default value is Calendar/Monthly View"
3582
  msgstr "Der Standardwert ist Kalender / Monatsansicht"
3583
 
3584
+ #: app/features/mec/settings.php:386
3585
  msgid "Category Page Skin"
3586
  msgstr "Kategorie Seiten Skin"
3587
 
3588
+ #: app/features/mec/settings.php:393
3589
  msgid "Default value is List View"
3590
  msgstr "Standardwert ist Listenansicht"
3591
 
3592
+ #: app/features/mec/settings.php:398
3593
  msgid "Category Events Method"
3594
  msgstr ""
3595
 
3596
+ #: app/features/mec/settings.php:402
3597
  msgid "Expired Events"
3598
  msgstr ""
3599
 
3600
+ #: app/features/mec/settings.php:404
3601
  msgid "Default value is Upcoming Events"
3602
  msgstr ""
3603
 
3604
+ #: app/features/mec/settings.php:409
3605
  msgid "Events Archive Status"
3606
  msgstr "Events Archiv Status"
3607
 
3608
+ #: app/features/mec/settings.php:412
3609
  msgid "Enabled (Recommended)"
3610
  msgstr "Ist aktiviert (empfohlen)"
3611
 
3612
+ #: app/features/mec/settings.php:415
3613
  msgid ""
3614
  "If you disable it, then you should create a page as archive page of MEC. "
3615
  "Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
3619
  "erstellen. Page´s slug muss gleich sein wie \"Main Slug\" von MEC. Außerdem "
3620
  "werden alle MEC-Rewrite-Regeln deaktiviert."
3621
 
3622
+ #: app/features/mec/settings.php:425
3623
  msgid "Main Slug"
3624
  msgstr "Main Slug"
3625
 
3626
+ #: app/features/mec/settings.php:428
3627
  msgid ""
3628
  "Default value is events. Valid characters are lowercase a-z, - character and "
3629
  "numbers."
3631
  "Standardwert ist Events. Gültige Zeichen sind Kleinbuchstaben a-z, - Zeichen "
3632
  "und Zahlen."
3633
 
3634
+ #: app/features/mec/settings.php:432
3635
  msgid "Category Slug"
3636
  msgstr "Category Slug"
3637
 
3638
+ #: app/features/mec/settings.php:435
3639
  msgid ""
3640
  "It's slug of MEC categories, you can change it to events-cat or something "
3641
  "else. Default value is mec-category. Valid characters are lowercase a-z, - "
3647
  "für den link. Zum Beispiel example.com/events-cat oder example.com/mec-"
3648
  "category"
3649
 
3650
+ #: app/features/mec/settings.php:445
3651
  msgid "Single Event Date Format"
3652
  msgstr "Einzelveranstaltung Datumformat"
3653
 
3654
+ #: app/features/mec/settings.php:448 app/features/mec/settings.php:810
3655
  msgid "Default is M d Y"
3656
  msgstr "Standardwert ist M-T-J"
3657
 
3658
+ #: app/features/mec/settings.php:452
3659
  msgid "Date Method"
3660
  msgstr "Datum Methode"
3661
 
3662
+ #: app/features/mec/settings.php:455
3663
  msgid "Next occurrence date"
3664
  msgstr "Nächstes vorkommende Datum"
3665
 
3666
+ #: app/features/mec/settings.php:456
3667
  msgid "Referred date"
3668
  msgstr "Gewünschtes Datum"
3669
 
3670
+ #: app/features/mec/settings.php:458
3671
  msgid ""
3672
  "\"Referred date\" shows the event date based on referred date in event list."
3673
  msgstr ""
3674
  "\"Gewünschtes Datum\" zeigt das Ereignisdatum basierend auf dem angegebenen "
3675
  "Datum in der Eventliste an."
3676
 
3677
+ #: app/features/mec/settings.php:462
3678
  msgid "Single Event Style"
3679
  msgstr "Single Event Stil"
3680
 
3681
+ #: app/features/mec/settings.php:465
3682
  msgid "Default Style"
3683
  msgstr "Standardstil voreingestellt"
3684
 
3685
+ #: app/features/mec/settings.php:466
3686
  msgid "Modern Style"
3687
  msgstr "Moderner Stil"
3688
 
3689
+ #: app/features/mec/settings.php:468
3690
  msgid "Choose your single event style."
3691
  msgstr "Wählen Sie Ihren Single Event Stil"
3692
 
3693
+ #: app/features/mec/settings.php:472
3694
  #, fuzzy
3695
  #| msgid "Booking"
3696
  msgid "Booking Style"
3697
  msgstr "Buchung / Reservierung"
3698
 
3699
+ #: app/features/mec/settings.php:475 app/features/mec/settings.php:586
3700
  msgid "Default"
3701
  msgstr "Standardeinstellung"
3702
 
3703
+ #: app/features/mec/settings.php:476
3704
  #, fuzzy
3705
  #| msgid "Modal 1"
3706
  msgid "Modal"
3707
  msgstr "Modal 1"
3708
 
3709
+ #: app/features/mec/settings.php:478
3710
  #, fuzzy
3711
  #| msgid "Choose your single event style."
3712
  msgid "Choose your Booking style."
3713
  msgstr "Wählen Sie Ihren Single Event Stil"
3714
 
3715
+ #: app/features/mec/settings.php:486
3716
  msgid "Currency"
3717
  msgstr "Währung"
3718
 
3719
+ #: app/features/mec/settings.php:496
3720
  msgid "Currency Sign"
3721
  msgstr "Währungssymbol"
3722
 
3723
+ #: app/features/mec/settings.php:499
3724
  msgid "Default value will be \"currency\" if you leave it empty."
3725
  msgstr "Standardwert wird \"currency\" sein wenn Sie es leer lassen"
3726
 
3727
+ #: app/features/mec/settings.php:503
3728
  msgid "Currency Position"
3729
  msgstr "Position des Währungssymbols"
3730
 
3731
+ #: app/features/mec/settings.php:506
3732
  msgid "Before $10"
3733
  msgstr "Vor $10"
3734
 
3735
+ #: app/features/mec/settings.php:507
3736
  msgid "After 10$"
3737
  msgstr "Nach 10$"
3738
 
3739
+ #: app/features/mec/settings.php:512
3740
  msgid "Thousand Separator"
3741
  msgstr "Tausendertrennzeichen"
3742
 
3743
+ #: app/features/mec/settings.php:518
3744
  msgid "Decimal Separator"
3745
  msgstr "Dezimaltrennzeichen"
3746
 
3747
+ #: app/features/mec/settings.php:528
3748
  msgid "No decimal"
3749
  msgstr "Keine Dezimale"
3750
 
3751
+ #: app/features/mec/settings.php:537
3752
  #, fuzzy
3753
  #| msgid "No Search Options"
3754
  msgid "Speakers Options"
3755
  msgstr "Keine Suchoptionen"
3756
 
3757
+ #: app/features/mec/settings.php:543
3758
  #, fuzzy
3759
  #| msgid "Enable taxes / fees module"
3760
  msgid "Enable speakers feature"
3761
  msgstr "Modul für Gebühren/Steuern aktivieren"
3762
 
3763
+ #: app/features/mec/settings.php:559
3764
  msgid "Show Google Maps on event page"
3765
  msgstr "Google Maps auf der Veranstaltungsseite anzeigen"
3766
 
3767
+ #: app/features/mec/settings.php:564 app/features/mec/settings.php:732
3768
+ #: app/features/mec/settings.php:1261
3769
  msgid "API Key"
3770
  msgstr "API Schlüssel"
3771
 
3772
+ #: app/features/mec/settings.php:567 app/features/mec/settings.php:1264
3773
+ #: app/features/mec/settings.php:1271
3774
  msgid "Required!"
3775
  msgstr "Erforderlich (Pflichtfeld)"
3776
 
3777
+ #: app/features/mec/settings.php:571
3778
  msgid "Zoom level"
3779
  msgstr "Zoom"
3780
 
3781
+ #: app/features/mec/settings.php:578
3782
  msgid ""
3783
  "For Google Maps module in single event page. In Google Maps skin, it will "
3784
  "caculate the zoom level automatically based on event boundaries."
3787
  "es die Zoom-Ebene automatisch kalkulieren, basierend auf den Eventort "
3788
  "Angrenzungen"
3789
 
3790
+ #: app/features/mec/settings.php:582
3791
  msgid "Google Maps Style"
3792
  msgstr "Google Maps Stil"
3793
 
3794
+ #: app/features/mec/settings.php:594
3795
  msgid "Direction on single event"
3796
  msgstr "Richtung auf einzelne Veranstaltung"
3797
 
3798
+ #: app/features/mec/settings.php:598
3799
  msgid "Simple Method"
3800
  msgstr "Einfache Methode"
3801
 
3802
+ #: app/features/mec/settings.php:599
3803
  msgid "Advanced Method"
3804
  msgstr "Fortgeschrittene Methode"
3805
 
3806
+ #: app/features/mec/settings.php:604
3807
  msgid "Lightbox Date Format"
3808
  msgstr "Leuchtkasten Datumsformat"
3809
 
3810
+ #: app/features/mec/settings.php:607
3811
  msgid "Default value is M d Y"
3812
  msgstr "Standardwert ist M T J"
3813
 
3814
+ #: app/features/mec/settings.php:611
3815
  msgid "Google Maps API"
3816
  msgstr "Google Maps API"
3817
 
3818
+ #: app/features/mec/settings.php:615
3819
  msgid "Don't load Google Maps API library"
3820
  msgstr "Google Maps API Bibliothek nicht laden"
3821
 
3822
+ #: app/features/mec/settings.php:617
3823
  msgid "Check it only if another plugin/theme is loading the Google Maps API"
3824
  msgstr ""
3825
  "Checken Sie es nur wenn ein anderes plugin/Thema die Google Maps API lädt."
3826
 
3827
+ #: app/features/mec/settings.php:629
3828
  msgid "Enable Google Recaptcha"
3829
  msgstr "Google Recaptcha aktivieren"
3830
 
3831
+ #: app/features/mec/settings.php:636
3832
  msgid "Enable on booking form"
3833
  msgstr "Auf dem Buchungsformular aktivieren"
3834
 
3835
+ #: app/features/mec/settings.php:642
3836
+ #, fuzzy
3837
+ #| msgid "Enable on \"Frontend Event Submittion\" form"
3838
+ msgid "Enable on \"Frontend Event Submission\" form"
3839
  msgstr "Aktivieren auf dem \"Frontend Event Submittion\" Formular"
3840
 
3841
+ #: app/features/mec/settings.php:646
3842
  msgid "Site Key"
3843
  msgstr "Site Key (Seitenschlüssel)"
3844
 
3845
+ #: app/features/mec/settings.php:652
3846
  msgid "Secret Key"
3847
  msgstr "Geheimschlüssel"
3848
 
3849
+ #: app/features/mec/settings.php:666
3850
  msgid ""
3851
  "Show export module (iCal export and add to Google calendars) on event page"
3852
  msgstr ""
3853
  "Exportmodule auf Veranstaltungsseite anzeigen (iCal export und hinzufügen zu "
3854
  "Google calendars)"
3855
 
3856
+ #: app/features/mec/settings.php:673
3857
  msgid "Google Calendar"
3858
  msgstr "Google Calendar"
3859
 
3860
+ #: app/features/mec/settings.php:693
3861
  msgid "Show event time based on local time of visitor on event page"
3862
  msgstr ""
3863
  "Zeige die Eventzeit basierend auf der Ortszeit des Besuchers auf der "
3864
  "Eventseite"
3865
 
3866
+ #: app/features/mec/settings.php:709
3867
  msgid "Show QR code of event in details page and booking invoice"
3868
  msgstr ""
3869
  "Zeigen Sie QR-Code des Events in der Detailseite und in der Buchungsrechnung "
3870
  "an"
3871
 
3872
+ #: app/features/mec/settings.php:727
3873
  msgid "Show weather module on event page"
3874
  msgstr "Wettermodul auf der Eventseite anzeigen"
3875
 
3876
+ #: app/features/mec/settings.php:735
3877
  #, php-format
3878
  msgid "You can get a free API Key from %s"
3879
  msgstr "Sie können einen kostenlosen API-Schlüssel von% s erhalten"
3880
 
3881
+ #: app/features/mec/settings.php:747
3882
  msgid "Show countdown module on event page"
3883
  msgstr "Countdownmodul auf Veranstaltungsseite anzeigen"
3884
 
3885
+ #: app/features/mec/settings.php:752
3886
  msgid "Countdown Style"
3887
  msgstr "Countdown Stil"
3888
 
3889
+ #: app/features/mec/settings.php:755
3890
  msgid "Plain Style"
3891
  msgstr "Einfacher schlichter Stil"
3892
 
3893
+ #: app/features/mec/settings.php:756
3894
  msgid "Flip Style"
3895
  msgstr "Flip Stil"
3896
 
3897
+ #: app/features/mec/settings.php:768
3898
  msgid "Show social network module"
3899
  msgstr "Modul für Soziale Netzwerke anzeigen"
3900
 
3901
+ #: app/features/mec/settings.php:793
3902
  msgid "Show next event module on event page"
3903
  msgstr "Nächstes Event Modul auf der Eventseite anzeigen"
3904
 
3905
+ #: app/features/mec/settings.php:798
3906
  msgid "Method"
3907
  msgstr "Methode"
3908
 
3909
+ #: app/features/mec/settings.php:801
3910
  msgid "Next Occurrence of Current Event"
3911
  msgstr "Nächstes Auftreten des aktuellen Events"
3912
 
3913
+ #: app/features/mec/settings.php:802
3914
  msgid "Next Occurrence of Other Events"
3915
  msgstr "Nächstes Auftreten von anderen Events."
3916
 
3917
+ #: app/features/mec/settings.php:807 app/features/mec/settings.php:1004
3918
  msgid "Date Format"
3919
  msgstr "Datumsformat"
3920
 
3921
+ #: app/features/mec/settings.php:819
3922
  msgid "Events List Page"
3923
  msgstr "Seite Liste der Veranstaltungen"
3924
 
3925
+ #: app/features/mec/settings.php:828 app/features/mec/settings.php:840
3926
  #, php-format
3927
  msgid "Put %s shortcode into the page."
3928
  msgstr "%s shortcode in die Seite einfügen"
3929
 
3930
+ #: app/features/mec/settings.php:831
3931
  msgid "Add/Edit Events Page"
3932
  msgstr "Veranstaltungsseite hinzufügen/bearbeiten"
3933
 
3934
+ #: app/features/mec/settings.php:845
3935
  msgid "Enable event submission by guest (Not logged-in) users"
3936
  msgstr ""
3937
  "Das Erstellen von Veranstaltungen durch Gäste (nicht angemeldete Nutzer) "
3938
  "erlauben"
3939
 
3940
+ #: app/features/mec/settings.php:852
3941
  msgid "Enable mandatory email and name for guest user"
3942
  msgstr ""
3943
  "Aktivieren Sie die obligatorische E-Mail und den Namen für Gastbenutzer"
3944
 
3945
+ #: app/features/mec/settings.php:856
3946
  msgid "Frontend Event Submission Sections"
3947
  msgstr "Frontend Veranstaltungen Einreichung Sektionen"
3948
 
3949
+ #: app/features/mec/settings.php:878 app/widgets/single.php:119
3950
  msgid "Event Categories"
3951
  msgstr "Veranstaltungskategorien"
3952
 
3953
+ #: app/features/mec/settings.php:884
3954
  msgid "Event Labels"
3955
  msgstr "Event Labels"
3956
 
3957
+ #: app/features/mec/settings.php:896
3958
  msgid "Event Tags"
3959
  msgstr "Event Schlagworte"
3960
 
3961
+ #: app/features/mec/settings.php:908 app/widgets/single.php:123
3962
  msgid "Event Organizer"
3963
  msgstr "Veranstaltungsmanager"
3964
 
3965
+ #: app/features/mec/settings.php:926
3966
  msgid "Booking Options"
3967
  msgstr "Buchungsoptionen"
3968
 
3969
+ #: app/features/mec/settings.php:932
3970
  #, fuzzy
3971
  #| msgid "Fees/Taxes Options"
3972
  msgid "Fees / Taxes Options"
3973
  msgstr "Gebühren/Steuer Optionen"
3974
 
3975
+ #: app/features/mec/settings.php:946
3976
  #, php-format
3977
  msgid ""
3978
  "Users can put a note for editors while they're submitting the event. Also "
3984
  "Eventbenachrichtigung setzen, um die Notizen der Benutzer in der E-Mail zu "
3985
  "erhalten."
3986
 
3987
+ #: app/features/mec/settings.php:950
3988
  msgid "Visibility of Note"
3989
  msgstr "Sichtbarkeit der Anmerkungen zum Event "
3990
 
3991
+ #: app/features/mec/settings.php:953
3992
  msgid "Always"
3993
  msgstr "Immer"
3994
 
3995
+ #: app/features/mec/settings.php:954
3996
  msgid "While event is not published"
3997
  msgstr "Das Ereignis wird nicht veröffentlicht"
3998
 
3999
+ #: app/features/mec/settings.php:957
4000
  msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
4001
  msgstr ""
4002
  "Die Ereignisnotiz wird im Frontend-Einreichungsformular angezeigt und das "
4003
  "Ereignis im Backend bearbeitet."
4004
 
4005
+ #: app/features/mec/settings.php:965
4006
+ #, php-format
4007
+ msgid ""
4008
+ "Put %s shortcode into your desired page. Then users are able to see history "
4009
+ "of their bookings."
4010
+ msgstr ""
4011
+
4012
+ #: app/features/mec/settings.php:970
4013
  msgid "Exceptional days"
4014
  msgstr "Ausgesuchte ausnehmende Tage"
4015
 
4016
+ #: app/features/mec/settings.php:974
4017
  msgid "Show exceptional days option on Add/Edit events page"
4018
  msgstr ""
4019
  "Ausnehmende Tage anzeigen auf der Seite Ereignisse hinzufügen / bearbeiten "
4020
  "(Show exceptional days option on Add/Edit events page)"
4021
 
4022
+ #: app/features/mec/settings.php:975
4023
  msgid ""
4024
  "Using this option you can include/exclude certain days to/from event "
4025
  "occurrence dates."
4027
  "Mit dieser Option können Sie bestimmte Tage von vorkommenden Eventdaten ein-/"
4028
  "ausschließen."
4029
 
4030
+ #: app/features/mec/settings.php:985
4031
  msgid ""
4032
  "Show additional organizers option on Add/Edit events page and single event "
4033
  "page."
4035
  "Zeigen Sie zusätzliche Organisatoren auf der Seite Events hinzufügen / "
4036
  "bearbeiten und auf der Seite für einzelne Events an."
4037
 
4038
+ #: app/features/mec/settings.php:999
4039
  msgid "Enable booking module"
4040
  msgstr "Buchungsmodul aktivieren"
4041
 
4042
+ #: app/features/mec/settings.php:1007
4043
  msgid "Default is Y-m-d"
4044
  msgstr "Voreinstellung ist J-M-T"
4045
 
4046
+ #: app/features/mec/settings.php:1011
4047
  msgid "Maximum Dates"
4048
  msgstr "Maximale Anzahl von Daten"
4049
 
4050
+ #: app/features/mec/settings.php:1013
4051
  msgid "Default is 6"
4052
  msgstr "Die Voreinstellung ist 6"
4053
 
4054
+ #: app/features/mec/settings.php:1017
4055
  msgid "Thank You Page"
4056
  msgstr "Danke Seite"
4057
 
4058
+ #: app/features/mec/settings.php:1025
4059
  msgid ""
4060
  "User redirects to this page after booking. Leave it empty if you want to "
4061
  "disable it."
4063
  "Benutzer werden auf diese Seite nach der Buchung weitergeleitet. Lassen Sie "
4064
  "es leer, wenn Sie es deaktivieren möchten."
4065
 
4066
+ #: app/features/mec/settings.php:1033
4067
  msgid "Enable Express Attendees Form"
4068
  msgstr "Aktivieren Sie das Express-Teilnehmerformular"
4069
 
4070
+ #: app/features/mec/settings.php:1035
4071
  msgid ""
4072
  "Users are able to apply first attendee information for other attendees in "
4073
  "the booking form."
4075
  "Benutzer können erste Teilnehmerinformationen für andere Teilnehmer im "
4076
  "Buchungsformular anwenden."
4077
 
4078
+ #: app/features/mec/settings.php:1038
4079
  msgid "Email verification"
4080
  msgstr "Email-Verifizierung"
4081
 
4082
+ #: app/features/mec/settings.php:1044
4083
  msgid "Auto verification for free bookings"
4084
  msgstr "Automatische Verifizierung für kostenlose Buchungen"
4085
 
4086
+ #: app/features/mec/settings.php:1053
4087
  msgid "Auto verification for paid bookings"
4088
  msgstr "Automatische Verifizierung für kostenpflichtige Buchungen"
4089
 
4090
+ #: app/features/mec/settings.php:1063
4091
  msgid "Auto confirmation for free bookings"
4092
  msgstr "Automatische Bestätigung für kostenlose Buchungen"
4093
 
4094
+ #: app/features/mec/settings.php:1072
4095
  msgid "Auto confirmation for paid bookings"
4096
  msgstr "Automatische Bestätigung für kostenpflichtige Buchungen"
4097
 
4098
+ #: app/features/mec/settings.php:1089
4099
  msgid "Enable coupons module"
4100
  msgstr "Gutscheinmodul aktivieren"
4101
 
4102
+ #: app/features/mec/settings.php:1106
4103
  msgid "Enable taxes / fees module"
4104
  msgstr "Modul für Gebühren/Steuern aktivieren"
4105
 
4106
+ #: app/features/mec/settings.php:1111
4107
  msgid "Add Fee"
4108
  msgstr "Gebühr hinzufügen"
4109
 
4110
+ #: app/features/mec/settings.php:1171
4111
  #, fuzzy
4112
  #| msgid "Enable coupons module"
4113
  msgid "Enable ticket options module"
4114
  msgstr "Gutscheinmodul aktivieren"
4115
 
4116
+ #: app/features/mec/settings.php:1176
4117
  msgid "Add Variation / Option"
4118
  msgstr ""
4119
 
4120
+ #: app/features/mec/settings.php:1226
4121
  msgid "Enable BuddyPress Integration"
4122
  msgstr "Buddy Press Integration deaktivieren"
4123
 
4124
+ #: app/features/mec/settings.php:1233
4125
  msgid "Show \"Attendees Module\" in event details page"
4126
  msgstr "Zeigt \"Teilnehmermodul\" in Event Details Seite"
4127
 
4128
+ #: app/features/mec/settings.php:1237
4129
  msgid "Attendees Limit"
4130
  msgstr "Teilnehmer Limit, maximale Anzahl"
4131
 
4132
+ #: app/features/mec/settings.php:1245
4133
  msgid "Add booking activity to user profile"
4134
  msgstr "Fügt Buchungsaktivitäten dem Benutzerprofil hinzu"
4135
 
4136
+ #: app/features/mec/settings.php:1256
4137
  msgid "Enable Mailchimp Integration"
4138
  msgstr "Mailchimp Integration deaktivieren"
4139
 
4140
+ #: app/features/mec/settings.php:1268
4141
  msgid "List ID"
4142
  msgstr "List ID"
4143
 
4144
+ #: app/features/mec/settings.php:1275
4145
  msgid "Subscription Status"
4146
  msgstr "Buchungsstatus"
4147
 
4148
+ #: app/features/mec/settings.php:1278
4149
  msgid "Subscribe automatically"
4150
  msgstr "automatisch Anmelden/Abonnieren"
4151
 
4152
+ #: app/features/mec/settings.php:1279
4153
  msgid "Subscribe by verification"
4154
  msgstr ""
4155
  "Anmelden/Abonnieren durch Bestätigung\n"
4156
  " "
4157
 
4158
+ #: app/features/mec/settings.php:1281
4159
  msgid ""
4160
  "If you choose \"Subscribe by verification\" then an email will send to user "
4161
  "by mailchimp for subscription verification."
4163
  "Wenn Sie \"Anmelden durch Verifizierung\" wählen, wird eine E-Mail an den "
4164
  "Benutzer per Mailchimp zur Bestätigung gesendet."
4165
 
4166
+ #: app/features/mec/settings.php:1291
4167
  #, php-format
4168
  msgid "%s is required to use this section."
4169
  msgstr ""
4170
 
4171
+ #: app/features/mec/settings.php:1294
4172
  msgid "Purchase Code"
4173
  msgstr "Kaufcode"
4174
 
4175
+ #: app/features/mec/settings.php:1299 app/features/mec/settings.php:1365
4176
+ #: app/features/mec/settings.php:1383 app/libraries/main.php:4360
4177
  msgid "Verified"
4178
  msgstr "Verifiziert"
4179
 
4180
+ #: app/features/mec/settings.php:1301
4181
  msgid "UnVerified"
4182
  msgstr "Unbestätigt"
4183
 
4184
+ #: app/features/mec/settings.php:1303
4185
+ #, fuzzy
4186
+ #| msgid ""
4187
+ #| "Please insert your purchase code validation. read documentation for more "
4188
+ #| "information."
4189
  msgid ""
4190
+ "Please insert your purchase code validation. Read documentation for more "
4191
  "information."
4192
  msgstr ""
4193
  "Bite geben Sie Ihre KaufCode Validierung ein. Bitte lesen Sie die "
4194
  "Dokumentation für mehr Informationen."
4195
 
4196
+ #: app/features/mec/settings.php:1306
4197
  msgid "Product Name"
4198
  msgstr ""
4199
 
4200
+ #: app/features/mec/settings.php:1309
4201
  msgid "1 License for MEC Plugin"
4202
  msgstr ""
4203
 
4204
+ #: app/features/mec/settings.php:1310
4205
  msgid "5 License for MEC Plugin"
4206
  msgstr ""
4207
 
4208
+ #: app/features/mec/settings.php:1311
4209
  msgid "10 License for MEC Plugin"
4210
  msgstr ""
4211
 
4212
+ #: app/features/mec/settings.php:1318
4213
  msgid "MEC Deactivation"
4214
  msgstr "MEC Deaktivierung"
4215
 
4216
+ #: app/features/mec/settings.php:1320
4217
  msgid "Deactivate"
4218
  msgstr "Deaktivieren"
4219
 
4220
+ #: app/features/mec/settings.php:1322
4221
  msgid ""
4222
  "For deactivation first delete your purchase from above field then press save "
4223
  "after that click on deactivate for deactivate this purchase code from this "
4228
  "Kaufcode aus dieser Domain zu deaktivieren, dann können Sie eine andere "
4229
  "Domain aktivieren."
4230
 
4231
+ #: app/features/mec/settings.php:1385
4232
  msgid "Please Refresh Page"
4233
  msgstr "Bitte Seiten Refresh vornehmen"
4234
 
4387
  msgstr "z.B.. max@mustermann.com"
4388
 
4389
  #: app/features/organizers.php:281
4390
+ #, fuzzy
4391
+ #| msgid "http://webnus.net"
4392
  msgid "eg. https://webnus.net"
4393
+ msgstr "http://webnus.net"
4394
 
4395
+ #: app/features/organizers.php:300 app/libraries/main.php:4203
4396
  #: app/skins/single.php:194
4397
  msgid "Other Organizers"
4398
  msgstr "Andere Veranstalter"
4404
  "Sie können zusätzliche Veranstalter zusätzlich zum Hauptorganisator "
4405
  "auswählen, wenn Sie möchten."
4406
 
4407
+ #: app/features/profile.php:74
4408
+ #, fuzzy, php-format
4409
+ #| msgid "Please %s/%s in order to submit new events."
4410
+ msgid "Please %s/%s in order to see your bookings / profile."
4411
+ msgstr "Um neue Veranstaltungen einzugeben, bitte %s/%s"
4412
+
4413
+ #: app/features/profile/profile.php:25 app/features/profile/profile.php:87
4414
+ msgid "#"
4415
+ msgstr ""
4416
+
4417
+ #: app/features/profile/profile.php:34 app/libraries/main.php:2345
4418
+ msgid "Status"
4419
+ msgstr ""
4420
+
4421
+ #: app/features/profile/profile.php:37 app/libraries/main.php:1607
4422
+ msgid "Attendees"
4423
+ msgstr "Teilnehmer"
4424
+
4425
+ #: app/features/profile/profile.php:40
4426
+ #, fuzzy
4427
+ #| msgid "%s Invoice"
4428
+ msgid "Invoice"
4429
+ msgstr "% s Rechnung"
4430
+
4431
+ #: app/features/profile/profile.php:76
4432
+ #, php-format
4433
+ msgid "<i class=\"mec-sl-eye\"></i> %s"
4434
+ msgstr ""
4435
+
4436
+ #: app/features/profile/profile.php:96 app/libraries/main.php:1621
4437
+ #: app/libraries/main.php:4201
4438
+ msgid "Ticket"
4439
+ msgstr "Ticket"
4440
+
4441
+ #: app/features/profile/profile.php:99
4442
+ #, fuzzy
4443
+ #| msgid "Verification"
4444
+ msgid "Variations"
4445
+ msgstr "Verifizierung"
4446
+
4447
+ #: app/features/profile/profile.php:142
4448
+ msgid "No bookings found!"
4449
+ msgstr "Keine Buchungen gefunden"
4450
+
4451
  #: app/features/speakers.php:56 app/features/speakers.php:242
4452
+ #: app/libraries/main.php:4175
4453
  msgid "Speaker"
4454
  msgstr ""
4455
 
4489
  msgstr "Vom Facebook Kalender Importieren"
4490
 
4491
  #: app/features/speakers.php:135 app/features/speakers.php:187
4492
+ #: app/libraries/main.php:1065
4493
  msgid "Google+"
4494
  msgstr "Google+"
4495
 
4514
  msgid "%s Price"
4515
  msgstr "%s Preis"
4516
 
4517
+ #: app/libraries/book.php:538
4518
  msgid "Discount"
4519
  msgstr "Rabatt"
4520
 
4521
+ #: app/libraries/book.php:626 app/modules/booking/default.php:280
4522
+ #: app/modules/booking/default.php:375
4523
  msgid "Download Invoice"
4524
+ msgstr "Download Rechnung"
4525
 
4526
  #: app/libraries/factory.php:151
4527
  msgid "M.E. Calendar"
4528
  msgstr "M.E. Calender"
4529
 
4530
  #: app/libraries/factory.php:190
4531
+ msgctxt "plugin link"
4532
  msgid "Upgrade to Pro Version"
4533
  msgstr ""
4534
 
4535
+ #: app/libraries/factory.php:208
4536
+ #, fuzzy
4537
+ #| msgid "Settings"
4538
+ msgctxt "plugin link"
4539
+ msgid "Settings"
4540
+ msgstr "Einstellungen"
4541
+
4542
  #: app/libraries/factory.php:213
4543
+ msgctxt "plugin link"
4544
  msgid "Upgrade"
4545
  msgstr ""
4546
 
4598
  "Eine Vorschau kann nicht angezeit werden, da es sich um einen geschützen "
4599
  "Beitrag handelt."
4600
 
4601
+ #: app/libraries/main.php:327 app/libraries/main.php:1165
4602
  msgid "Grid View"
4603
  msgstr "Rasterdarstellung"
4604
 
4605
+ #: app/libraries/main.php:328 app/libraries/main.php:1166
4606
  msgid "Agenda View"
4607
  msgstr "Agendaansicht"
4608
 
4609
+ #: app/libraries/main.php:329 app/libraries/main.php:1157
4610
  msgid "Full Calendar"
4611
  msgstr "Ganzer Kalender"
4612
 
4613
+ #: app/libraries/main.php:331 app/libraries/main.php:1159
4614
  msgid "Calendar/Monthly View"
4615
  msgstr "Kalender-/Monatsansicht"
4616
 
4617
+ #: app/libraries/main.php:334 app/libraries/main.php:1162
4618
  msgid "Timetable View"
4619
  msgstr "Stundenplan"
4620
 
4621
+ #: app/libraries/main.php:335 app/libraries/main.php:1163
4622
  msgid "Masonry View"
4623
  msgstr "Kachel Ansicht"
4624
 
4625
+ #: app/libraries/main.php:336 app/libraries/main.php:1167
4626
  msgid "Map View"
4627
  msgstr "Kartenansicht"
4628
 
4629
+ #: app/libraries/main.php:337
4630
  msgid "Cover View"
4631
  msgstr "Deckblattansicht"
4632
 
4633
+ #: app/libraries/main.php:338
4634
  msgid "Countdown View"
4635
  msgstr "Countdownansicht"
4636
 
4637
+ #: app/libraries/main.php:339
4638
  msgid "Available Spot"
4639
  msgstr "Verfügbarer Spot"
4640
 
4641
+ #: app/libraries/main.php:340
4642
  msgid "Carousel View"
4643
  msgstr "Karussellansicht"
4644
 
4645
+ #: app/libraries/main.php:341
4646
  msgid "Slider View"
4647
  msgstr "Slideransicht"
4648
 
4649
+ #: app/libraries/main.php:378 app/libraries/main.php:4181
4650
  msgid "SU"
4651
  msgstr "SO"
4652
 
4653
+ #: app/libraries/main.php:379 app/libraries/main.php:4182
4654
  msgid "MO"
4655
  msgstr "MO"
4656
 
4657
+ #: app/libraries/main.php:380 app/libraries/main.php:4183
4658
  msgid "TU"
4659
  msgstr "DI"
4660
 
4661
+ #: app/libraries/main.php:381 app/libraries/main.php:4184
4662
  msgid "WE"
4663
  msgstr "MI"
4664
 
4665
+ #: app/libraries/main.php:382 app/libraries/main.php:4185
4666
  msgid "TH"
4667
  msgstr "DO"
4668
 
4669
+ #: app/libraries/main.php:383 app/libraries/main.php:4186
4670
  msgid "FR"
4671
  msgstr "FR"
4672
 
4673
+ #: app/libraries/main.php:384 app/libraries/main.php:4187
4674
  msgid "SA"
4675
  msgstr "SA"
4676
 
4677
+ #: app/libraries/main.php:1023
4678
  msgid "Events at this location"
4679
  msgstr "Veranstaltungen an diesem Ort "
4680
 
4681
+ #: app/libraries/main.php:1023
4682
  msgid "Event at this location"
4683
  msgstr "Veranstaltung an diesem Ort "
4684
 
4685
+ #: app/libraries/main.php:1064
4686
  msgid "Facebook"
4687
  msgstr "Facebook"
4688
 
4689
+ #: app/libraries/main.php:1066
4690
  msgid "Twitter"
4691
  msgstr "Twitter"
4692
 
4693
+ #: app/libraries/main.php:1067 app/libraries/main.php:1120
4694
  msgid "Linkedin"
4695
  msgstr "Linkedin"
4696
 
4697
+ #: app/libraries/main.php:1068 app/libraries/main.php:1146
4698
  msgid "VK"
4699
  msgstr ""
4700
 
4701
+ #: app/libraries/main.php:1084
4702
  msgid "Share on Facebook"
4703
  msgstr "Teilen auf Facebook"
4704
 
4705
+ #: app/libraries/main.php:1096
4706
  msgid "Google Plus"
4707
  msgstr "Google Plus"
4708
 
4709
+ #: app/libraries/main.php:1108
4710
  msgid "Tweet"
4711
  msgstr "Tweet"
4712
 
4713
+ #: app/libraries/main.php:1502
4714
  msgid "Your booking successfully verified."
4715
  msgstr "Ihre Buchung wurde erfolgreich verifiziert."
4716
 
4717
+ #: app/libraries/main.php:1503
4718
  msgid "Your booking cannot verify!"
4719
  msgstr "Ihre Buchung kann nicht verifiziert werden!"
4720
 
4721
+ #: app/libraries/main.php:1515
4722
  msgid "Your booking successfully canceled."
4723
  msgstr "Ihre Buchung wurde erfolgreich storniert."
4724
 
4725
+ #: app/libraries/main.php:1516
4726
  msgid "Your booking cannot be canceled."
4727
  msgstr "Ihre Buchung kann nicht storniert werden."
4728
 
4729
+ #: app/libraries/main.php:1520
4730
  msgid "You canceled the payment successfully."
4731
  msgstr "Sie haben die Zahlung erfolgreich storniert."
4732
 
4733
+ #: app/libraries/main.php:1524
4734
  msgid "You returned from payment gateway successfully."
4735
  msgstr "Sie sind vom Bezahlungs-Gateway erfolgreich zurückgekehrt."
4736
 
4737
+ #: app/libraries/main.php:1548
4738
  msgid "Cannot find the booking!"
4739
  msgstr "Kann die Buchung nicht finden!"
4740
 
4741
+ #: app/libraries/main.php:1548
4742
  msgid "Booking is invalid."
4743
  msgstr "Buchung ist ungültig."
4744
 
4745
+ #: app/libraries/main.php:1577
4746
  #, php-format
4747
  msgid "%s Invoice"
4748
  msgstr "% s Rechnung"
4749
 
4750
+ #: app/libraries/main.php:1598
4751
  msgid "Transaction ID"
4752
  msgstr "Transaktions-ID"
4753
 
4754
+ #: app/libraries/main.php:1651
 
 
 
 
 
 
 
 
4755
  msgid "Billing"
4756
  msgstr "Abrechnung"
4757
 
4758
+ #: app/libraries/main.php:1662
4759
  msgid "Total"
4760
  msgstr "Gesamt"
4761
 
4762
+ #: app/libraries/main.php:1695
4763
  msgid "Security nonce is not valid."
4764
  msgstr "Sicherheits-Nonce ist ungültig."
4765
 
4766
+ #: app/libraries/main.php:1695 app/libraries/main.php:1727
4767
  msgid "iCal export stopped!"
4768
  msgstr "iCal Export wurde unterbrochen!"
4769
 
4770
+ #: app/libraries/main.php:1727
4771
  #, fuzzy
4772
  #| msgid "Request is invalid!"
4773
  msgid "Request is not valid."
4774
  msgstr "Die Anfrage ist ungültig!"
4775
 
4776
+ #: app/libraries/main.php:2047 app/libraries/main.php:2076
4777
+ #: app/libraries/main.php:2105 app/libraries/main.php:2134
4778
+ #: app/libraries/main.php:2163 app/libraries/main.php:2187
4779
+ #: app/libraries/main.php:2231 app/libraries/main.php:2275
4780
+ #: app/libraries/main.php:2322 app/libraries/main.php:2368
4781
  msgid "Sort"
4782
  msgstr "Sortieren"
4783
 
4784
+ #: app/libraries/main.php:2053 app/libraries/main.php:2082
4785
+ #: app/libraries/main.php:2111 app/libraries/main.php:2140
4786
+ #: app/libraries/main.php:2193 app/libraries/main.php:2237
4787
+ #: app/libraries/main.php:2281 app/libraries/main.php:2328
4788
  msgid "Required Field"
4789
  msgstr "Pflichtfeld"
4790
 
4791
+ #: app/libraries/main.php:2059 app/libraries/main.php:2088
4792
+ #: app/libraries/main.php:2117 app/libraries/main.php:2146
4793
+ #: app/libraries/main.php:2199 app/libraries/main.php:2243
4794
+ #: app/libraries/main.php:2287 app/libraries/main.php:2334
4795
  msgid "Insert a label for this field"
4796
  msgstr "Geben Sie eine Bezeichnung (Label) für dieses Feld ein."
4797
 
4798
+ #: app/libraries/main.php:2169
4799
  msgid "HTML and shortcode are allowed."
4800
  msgstr "HTML und shortcodes sind erlaubt."
4801
 
4802
+ #: app/libraries/main.php:2212 app/libraries/main.php:2256
4803
+ #: app/libraries/main.php:2300
4804
  msgid "Option"
4805
  msgstr "Option"
4806
 
4807
+ #: app/libraries/main.php:2334
4808
  #, php-format
4809
  msgid "Instead of %s, the page title with a link will be show."
4810
  msgstr "Anstelle von %s, wird der Seitentitel mit einem Link gezeigt"
4811
 
4812
+ #: app/libraries/main.php:2336
4813
  msgid "Agreement Page"
4814
  msgstr "Zustimmungsseite"
4815
 
4816
+ #: app/libraries/main.php:2347
 
 
 
 
4817
  msgid "Checked by default"
4818
  msgstr ""
4819
 
4820
+ #: app/libraries/main.php:2348
4821
  msgid "Unchecked by default"
4822
  msgstr ""
4823
 
4824
+ #: app/libraries/main.php:2370
4825
  msgid "Insert a label for this option"
4826
  msgstr "Ein neues Label für diese Option einfügen"
4827
 
4828
+ #: app/libraries/main.php:2385
4829
  msgid "Free"
4830
  msgstr "kostenfrei"
4831
 
4832
+ #: app/libraries/main.php:3037
4833
  #, php-format
4834
  msgid "Copy of %s"
4835
  msgstr "Kopie von %s"
4836
 
4837
+ #: app/libraries/main.php:3681
4838
  msgid "Booked an event."
4839
  msgstr "Eine Veranstaltung wurde gebucht."
4840
 
4841
+ #: app/libraries/main.php:3722
4842
  #, php-format
4843
  msgid "%s booked %s event."
4844
  msgstr "%s gebuchtes %s Event"
4845
 
4846
+ #: app/libraries/main.php:4164
4847
  msgid "Taxonomies"
4848
  msgstr "Klassifizierung "
4849
 
4850
+ #: app/libraries/main.php:4166
4851
  msgid "Category Plural Label"
4852
  msgstr "Kategorien"
4853
 
4854
+ #: app/libraries/main.php:4167
4855
  msgid "Category Singular Label"
4856
  msgstr "Kategorie"
4857
 
4858
+ #: app/libraries/main.php:4168
4859
  msgid "Label Plural Label"
4860
  msgstr "Labels"
4861
 
4862
+ #: app/libraries/main.php:4169
4863
  msgid "Label Singular Label"
4864
  msgstr "Label"
4865
 
4866
+ #: app/libraries/main.php:4169
4867
  msgid "label"
4868
  msgstr "label"
4869
 
4870
+ #: app/libraries/main.php:4170
4871
  msgid "Location Plural Label"
4872
  msgstr "Veranstaltungsorte"
4873
 
4874
+ #: app/libraries/main.php:4171
4875
  msgid "Location Singular Label"
4876
  msgstr "Veranstaltungsort"
4877
 
4878
+ #: app/libraries/main.php:4172
4879
  msgid "Organizer Plural Label"
4880
  msgstr "Veranstalter"
4881
 
4882
+ #: app/libraries/main.php:4173
4883
  msgid "Organizer Singular Label"
4884
  msgstr "Veranstalter"
4885
 
4886
+ #: app/libraries/main.php:4174
4887
  #, fuzzy
4888
  #| msgid "Label Plural Label"
4889
  msgid "Speaker Plural Label"
4890
  msgstr "Labels"
4891
 
4892
+ #: app/libraries/main.php:4175
4893
  #, fuzzy
4894
  #| msgid "Label Singular Label"
4895
  msgid "Speaker Singular Label"
4896
  msgstr "Label"
4897
 
4898
+ #: app/libraries/main.php:4181
4899
  msgid "Sunday abbreviation"
4900
  msgstr "Sonntag Abkürzung"
4901
 
4902
+ #: app/libraries/main.php:4182
4903
  msgid "Monday abbreviation"
4904
  msgstr "Montag Abkürzung"
4905
 
4906
+ #: app/libraries/main.php:4183
4907
  msgid "Tuesday abbreviation"
4908
  msgstr "Dienstag Abkürzung"
4909
 
4910
+ #: app/libraries/main.php:4184
4911
  msgid "Wednesday abbreviation"
4912
  msgstr "Mittwoch Abkürzung"
4913
 
4914
+ #: app/libraries/main.php:4185
4915
  msgid "Thursday abbreviation"
4916
  msgstr "Donnerstag Abkürzung"
4917
 
4918
+ #: app/libraries/main.php:4186
4919
  msgid "Friday abbreviation"
4920
  msgstr "Freitag Abkürzung"
4921
 
4922
+ #: app/libraries/main.php:4187
4923
  msgid "Saturday abbreviation"
4924
  msgstr "Samstag Abkürzung "
4925
 
4926
+ #: app/libraries/main.php:4191
4927
  msgid "Others"
4928
  msgstr "Andere"
4929
 
4930
+ #: app/libraries/main.php:4193
4931
  msgid "Booking Success Message"
4932
  msgstr "Buchung erfolgreich Mitteilung"
4933
 
4934
+ #: app/libraries/main.php:4193
4935
  msgid ""
4936
  "Thanks for your booking. Your tickets booked, booking verification might be "
4937
  "needed, please check your email."
4939
  "Vielen Dank für Ihre Buchung. Für die gebuchten Tickets ist ggf. eine "
4940
  "Bestätigung durch Sie erforderlich. Bitte überprüfen Sie Ihre Emails."
4941
 
4942
+ #: app/libraries/main.php:4194 app/widgets/single.php:131
4943
  msgid "Register Button"
4944
  msgstr "Register Button"
4945
 
4946
+ #: app/libraries/main.php:4194 app/skins/available_spot/tpl.php:164
4947
  #: app/skins/carousel/render.php:79 app/skins/carousel/render.php:104
4948
  #: app/skins/grid/render.php:76 app/skins/grid/render.php:107
4949
  #: app/skins/grid/render.php:139 app/skins/grid/render.php:167
4950
  #: app/skins/list/render.php:59 app/skins/list/render.php:140
4951
+ #: app/skins/masonry/render.php:93 app/skins/single/default.php:218
4952
+ #: app/skins/single/default.php:220 app/skins/single/default.php:425
4953
+ #: app/skins/single/default.php:427 app/skins/single/m1.php:126
4954
+ #: app/skins/single/m1.php:128 app/skins/single/m2.php:58
4955
+ #: app/skins/single/m2.php:60 app/skins/single/modern.php:58
4956
+ #: app/skins/single/modern.php:60 app/skins/slider/render.php:75
4957
+ #: app/skins/slider/render.php:96 app/skins/slider/render.php:116
4958
+ #: app/skins/slider/render.php:136 app/skins/slider/render.php:167
4959
  msgid "REGISTER"
4960
  msgstr "ANMELDEN"
4961
 
4962
+ #: app/libraries/main.php:4195
4963
  msgid "View Detail Button"
4964
  msgstr "Ansicht Detail Button"
4965
 
4966
+ #: app/libraries/main.php:4195 app/skins/carousel/render.php:79
4967
  #: app/skins/carousel/render.php:104 app/skins/grid/render.php:76
4968
  #: app/skins/grid/render.php:107 app/skins/grid/render.php:139
4969
  #: app/skins/grid/render.php:167 app/skins/list/render.php:59
4970
+ #: app/skins/list/render.php:140 app/skins/masonry/render.php:93
4971
  #: app/skins/slider/render.php:75 app/skins/slider/render.php:96
4972
  #: app/skins/slider/render.php:116 app/skins/slider/render.php:136
4973
  #: app/skins/slider/render.php:167
4974
  msgid "View Detail"
4975
  msgstr "Details "
4976
 
4977
+ #: app/libraries/main.php:4196
4978
  msgid "Event Detail Button"
4979
  msgstr "Event Detail Button"
4980
 
4981
+ #: app/libraries/main.php:4196 app/skins/countdown/tpl.php:178
4982
  msgid "Event Detail"
4983
  msgstr "Veranstaltungsdetails"
4984
 
4985
+ #: app/libraries/main.php:4198
4986
  msgid "More Info Link"
4987
  msgstr "Link Mehr Informationen"
4988
 
4989
+ #: app/libraries/main.php:4201
4990
  msgid "Ticket (Singular)"
4991
  msgstr "Ticket"
4992
 
4993
+ #: app/libraries/main.php:4202
4994
  msgid "Tickets (Plural)"
4995
  msgstr "Tickets"
4996
 
4997
+ #: app/libraries/main.php:4268
4998
  msgid "EventON"
4999
  msgstr "EventON"
5000
 
5001
+ #: app/libraries/main.php:4269
5002
  msgid "The Events Calendar"
5003
  msgstr "The Events Calendar"
5004
 
5005
+ #: app/libraries/main.php:4270
5006
  msgid "Events Schedule WP Plugin"
5007
  msgstr "Event Zeitplan WP-Plugin"
5008
 
5009
+ #: app/libraries/main.php:4271
5010
  msgid "Calendarize It"
5011
  msgstr ""
5012
 
5013
+ #: app/libraries/main.php:4345
5014
+ msgid "Confirmed"
5015
+ msgstr "Bestätigt"
5016
+
5017
+ #: app/libraries/main.php:4346
5018
+ msgid "Rejected"
5019
+ msgstr "Abgelehnt"
5020
+
5021
+ #: app/libraries/main.php:4347
5022
+ msgid "Pending"
5023
+ msgstr "Ausstehend"
5024
+
5025
+ #: app/libraries/main.php:4362
5026
+ msgid "Waiting"
5027
+ msgstr "in Bearbeitung"
5028
+
5029
  #: app/libraries/notifications.php:61
5030
  msgid "Please verify your email."
5031
  msgstr "Bitte bestätigen Sie Ihre email."
5071
  msgstr "Skin contoller existiert nicht."
5072
 
5073
  #: app/libraries/render.php:404 app/modules/local-time/details.php:44
5074
+ #: app/modules/next-event/details.php:97 app/skins/single/default.php:73
5075
+ #: app/skins/single/default.php:280 app/skins/single/m1.php:34
5076
+ #: app/skins/single/modern.php:169
5077
  msgid "All of the day"
5078
  msgstr "Den ganzen Tag"
5079
 
5080
+ #: app/libraries/skins.php:809
5081
  msgid "Ignore month and years"
5082
  msgstr "Monat und Jahre ignorieren"
5083
 
5110
  msgid "Free Booking"
5111
  msgstr "Kostenlose Buchung"
5112
 
5113
+ #: app/modules/booking/steps/form.php:18
5114
  msgid "Attendees Form"
5115
  msgstr "Teilnahmeformular"
5116
 
5117
+ #: app/modules/booking/steps/form.php:107
5118
+ #, fuzzy
5119
+ #| msgid "Fill other attendees's information like the first form."
5120
+ msgid "Fill other attendees information like the first form."
5121
  msgstr ""
5122
  "Füllen Sie die Informationen anderer Teilnehmer wie das erste Formular aus."
5123
 
5124
+ #: app/modules/booking/steps/form.php:120
5125
+ #: app/modules/booking/steps/tickets.php:55 app/skins/countdown/tpl.php:79
5126
  #: app/skins/countdown/tpl.php:123 app/skins/countdown/tpl.php:168
5127
  msgid "Next"
5128
  msgstr "Weiter"
5131
  msgid "Thanks for your booking."
5132
  msgstr "Vielen Dank für Ihre Buchung."
5133
 
5134
+ #: app/modules/booking/steps/tickets.php:20
5135
  msgid "Book Event"
5136
  msgstr "Veranstaltung buchen"
5137
 
5138
+ #: app/modules/booking/steps/tickets.php:40
5139
  #, php-format
5140
  msgid "Available %s: <span>%s</span>"
5141
  msgstr "Verfügbar %s: <span>%s</span>"
5142
 
5143
+ #: app/modules/booking/steps/tickets.php:43
5144
  #, php-format
5145
  msgid "The %s ticket is sold out. You can try another ticket or another date."
5146
  msgstr ""
5198
  msgid "Go to occurrence page"
5199
  msgstr "Zum Event"
5200
 
5201
+ #: app/modules/next-event/details.php:91 app/skins/single/default.php:67
5202
+ #: app/skins/single/default.php:274 app/skins/single/m1.php:28
5203
+ #: app/skins/single/modern.php:163
5204
  msgid "Time"
5205
  msgstr "Uhrzeit"
5206
 
5226
 
5227
  #: app/modules/weather/details.php:58
5228
  msgid "Humidity"
5229
+ msgstr "Feuchtigkeit"
5230
 
5231
  #: app/modules/weather/details.php:58
5232
  msgid " %"
5243
  #: app/skins/agenda/tpl.php:62 app/skins/agenda/tpl.php:66
5244
  #: app/skins/carousel/tpl.php:43 app/skins/grid/tpl.php:52
5245
  #: app/skins/grid/tpl.php:56 app/skins/list/tpl.php:57
5246
+ #: app/skins/list/tpl.php:61 app/skins/masonry/tpl.php:50
5247
+ #: app/skins/masonry/tpl.php:54 app/skins/slider/tpl.php:41
5248
  msgid "No event found!"
5249
  msgstr "Keine Veranstaltung gefunden"
5250
 
5282
 
5283
  #: app/skins/masonry.php:194
5284
  msgid "All"
5285
+ msgstr "Alle"
5286
 
5287
  #: app/skins/monthly_view/calendar.php:66
5288
  #: app/skins/monthly_view/calendar.php:104
5298
  msgid "No Events"
5299
  msgstr "Keine Veranstaltungen"
5300
 
5301
+ #: app/skins/single.php:209 app/skins/single/default.php:191
5302
+ #: app/skins/single/default.php:398 app/skins/single/m1.php:100
5303
  #: app/skins/single/m2.php:32 app/skins/single/modern.php:31
5304
  msgid "Phone"
5305
  msgstr "Phone"
5306
 
5307
+ #: app/skins/single.php:223 app/skins/single/default.php:205
5308
+ #: app/skins/single/default.php:412 app/skins/single/m1.php:114
5309
  #: app/skins/single/m2.php:46 app/skins/single/modern.php:45
5310
  msgid "Website"
5311
  msgstr "Website"
5312
 
5313
  #: app/skins/single.php:260
5314
+ #, fuzzy
5315
+ #| msgid "No Search Options"
5316
  msgid "Speakers:"
5317
+ msgstr "Keine Suchoptionen"
5318
 
5319
+ #: app/skins/single/default.php:30 app/skins/single/m1.php:235
5320
+ #: app/skins/single/m2.php:164 app/skins/single/modern.php:238
5321
  msgid "Sold out!"
5322
  msgstr "Ausverkauft!"
5323
 
5324
+ #: app/skins/single/default.php:40 app/skins/single/m1.php:244
5325
+ #: app/skins/single/m2.php:173 app/skins/single/modern.php:248
5326
  msgid "Tags: "
5327
  msgstr "Tags:"
5328
 
5329
+ #: app/skins/single/default.php:106 app/skins/single/default.php:313
5330
+ #: app/skins/single/m1.php:191 app/skins/single/m2.php:124
5331
+ #: app/skins/single/modern.php:121
5332
  msgid "Read More"
5333
  msgstr "Mehr lesen"
5334
 
5375
 
5376
  #: app/widgets/single.php:127
5377
  #, fuzzy
5378
+ #| msgid "No Search Options"
5379
  msgid "Event Speakers"
5380
+ msgstr "Keine Suchoptionen"
5381
 
5382
  #: app/widgets/single.php:135
5383
  #, fuzzy
5388
  #: app/widgets/single.php:139
5389
  #, fuzzy
5390
  #| msgid "Next Pervious Module : "
5391
+ msgid "Next Previous Module"
5392
  msgstr "Nächstes vorheriges Modul"
5393
 
5394
  #: app/widgets/single.php:143
5403
  msgid "Google Map"
5404
  msgstr "Google Karte:"
5405
 
5406
+ #. Plugin Name of the plugin/theme
5407
  #, fuzzy
5408
+ #| msgid "Modern Events Calendar"
5409
+ msgid "Modern Events Calendar Lite"
5410
+ msgstr "Moderner Event Kalender "
 
 
 
 
 
 
5411
 
5412
+ #. Plugin URI of the plugin/theme
5413
  #, fuzzy
5414
+ #| msgid "An awesome plugin for events calendar"
5415
+ msgid "http://webnus.net/modern-events-calendar/"
5416
+ msgstr "Ein großartiges Plugin für den Veranstaltungskalender"
5417
 
5418
+ #. Description of the plugin/theme
5419
+ msgid "An awesome plugin for events calendar"
5420
+ msgstr "Ein großartiges Plugin für den Veranstaltungskalender"
5421
 
5422
+ #. Author of the plugin/theme
5423
+ msgid "Webnus Team"
5424
+ msgstr "Webnus Team"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5425
 
5426
+ #. Author URI of the plugin/theme
5427
+ #, fuzzy
5428
+ #| msgid "http://webnus.net"
5429
+ msgid "http://webnus.net"
5430
+ msgstr "http://webnus.net"
 
 
 
 
 
 
5431
 
5432
  #~ msgid "Booking reminder notification is not enabled!"
5433
  #~ msgstr "Die Erinnerung für die Buchungserinnerung ist nicht aktiviert!"
5446
  #~ msgid "Auto Facebook import is disabled!"
5447
  #~ msgstr "Auto Facebook-Import ist deaktiviert!"
5448
 
5449
+ #, fuzzy
5450
+ #~| msgid "%s facebook events imported/updated."
5451
+ #~ msgid "%s Facebook events imported/updated."
5452
  #~ msgstr "%s facebook events importiert / aktualisiert."
5453
 
5454
  #~ msgid "Auto Google Calendar import is disabled!"
5457
  #~ msgid "%s google events imported/updated."
5458
  #~ msgstr "%s vorherige hinzugefügte Events wurden aktualisiert."
5459
 
5460
+ #, fuzzy
5461
+ #~| msgid "Auto Facebook import is disabled!"
5462
+ #~ msgid "Auto Meetup import is disabled!"
5463
+ #~ msgstr "Auto Facebook-Import ist deaktiviert!"
5464
+
5465
+ #, fuzzy
5466
+ #~| msgid "%s google events imported/updated."
5467
+ #~ msgid "%s meetup events imported/updated."
5468
+ #~ msgstr "%s vorherige hinzugefügte Events wurden aktualisiert."
5469
+
5470
  #~ msgid "Add Booking"
5471
  #~ msgstr "Buchung hinzufügen"
5472
 
 
 
 
5473
  #~ msgid "Edit Bookings"
5474
  #~ msgstr "Buchungen ändern"
5475
 
5485
  #~ msgid "Confirmation"
5486
  #~ msgstr "Bestätigung"
5487
 
 
 
 
 
 
 
 
 
 
5488
  #~ msgid "Verification"
5489
  #~ msgstr "Verifizierung"
5490
 
 
 
 
5491
  #~ msgid "Here, you can %s invoice of %s transaction."
5492
  #~ msgstr "Hier können Sie% s Rechnung von% s Transaktion."
5493
 
5593
  #~ msgid "Usage Limit"
5594
  #~ msgstr "Nutzungslimit"
5595
 
5596
+ #~ msgid "Insert -1 for unlimited usage"
5597
+ #~ msgstr "Geben Sie -1 ein für unlimitierte Verwendung"
5598
+
5599
  #~ msgid "Expiration Date"
5600
  #~ msgstr "Ablaufdatum"
5601
 
5623
  #~ msgid "Coupon is valid and you get %s discount."
5624
  #~ msgstr "Der Gutschein ist gültig. Sie erhalten %s Rabatt"
5625
 
5626
+ #~ msgid "Request is invalid!"
5627
+ #~ msgstr "Die Anfrage ist ungültig!"
5628
+
5629
  #~ msgid "Stripe"
5630
  #~ msgstr "Stripe"
5631
 
5755
  #~ msgid "This booking is not free!"
5756
  #~ msgstr "Diese Buchung ist nicht kostenlos!"
5757
 
5758
+ #~ msgid "Local Time : "
5759
+ #~ msgstr "Lokale Zeit:"
5760
+
5761
+ #~ msgid "Event Cost : "
5762
+ #~ msgstr "Event-Kosten:"
5763
+
5764
+ #~ msgid "More Info : "
5765
+ #~ msgstr "Mehr Informationen:"
5766
+
5767
+ #~ msgid "Event Label : "
5768
+ #~ msgstr "Event Label:"
5769
+
5770
+ #~ msgid "Event Location : "
5771
+ #~ msgstr "Veranstaltungsort:"
5772
+
5773
+ #~ msgid "Event Categories : "
5774
+ #~ msgstr "Veranstaltungskategorien"
5775
+
5776
+ #~ msgid "Event Organizer : "
5777
+ #~ msgstr "Veranstalter"
5778
+
5779
+ #~ msgid "Register Button : "
5780
+ #~ msgstr "Register Button"
5781
+
5782
+ #~ msgid "eg. http://yoursite.com/john-smith/"
5783
+ #~ msgstr "z.B.. http://ihreseite.com/maxmustermann"
5784
+
5785
  #~ msgid "Attendee"
5786
  #~ msgstr "Teilnehmer"
5787
 
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: 2018-11-19 13:45+0330\n"
5
- "PO-Revision-Date: 2018-11-19 13:45+0330\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: en_US\n"
@@ -15,9 +15,9 @@ msgstr ""
15
  "X-Poedit-Basepath: ..\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:23
19
- #: app/features/ix/import.php:36 app/features/ix/thirdparty.php:23
20
- #: app/widgets/MEC.php:33
21
  msgid "Modern Events Calendar"
22
  msgstr ""
23
 
@@ -46,24 +46,24 @@ msgstr ""
46
  msgid "Select Type"
47
  msgstr ""
48
 
49
- #: app/features/colors.php:50 app/features/fes/form.php:566
50
- #: app/features/mec/settings.php:884
51
  msgid "Event Color"
52
  msgstr ""
53
 
54
  #: app/features/contextual.php:55 app/features/mec.php:210
55
  #: app/features/mec/gateways.php:20 app/features/mec/messages.php:20
56
  #: app/features/mec/notifications.php:19 app/features/mec/regform.php:19
57
- #: app/features/mec/settings.php:35 app/features/mec/settings.php:263
58
  #: app/features/mec/styles.php:20 app/features/mec/styling.php:46
59
- #: app/features/mec/support.php:18 app/libraries/factory.php:208
60
  msgid "Settings"
61
  msgstr ""
62
 
63
- #: app/features/contextual.php:62 app/features/events.php:1155
64
  #: app/features/mec/gateways.php:29 app/features/mec/messages.php:29
65
  #: app/features/mec/notifications.php:28 app/features/mec/regform.php:28
66
- #: app/features/mec/regform.php:88 app/features/mec/settings.php:198
67
  #: app/features/mec/styles.php:29 app/features/mec/styling.php:55
68
  #: app/features/mec/support.php:27
69
  msgid "Booking Form"
@@ -81,7 +81,7 @@ msgstr ""
81
  #: app/features/contextual.php:70 app/features/mec/gateways.php:36
82
  #: app/features/mec/gateways.php:90 app/features/mec/messages.php:36
83
  #: app/features/mec/notifications.php:35 app/features/mec/regform.php:35
84
- #: app/features/mec/settings.php:205 app/features/mec/styles.php:36
85
  #: app/features/mec/styling.php:62 app/features/mec/support.php:34
86
  msgid "Payment Gateways"
87
  msgstr ""
@@ -96,7 +96,7 @@ msgstr ""
96
  #: app/features/contextual.php:77 app/features/mec/gateways.php:45
97
  #: app/features/mec/messages.php:45 app/features/mec/notifications.php:44
98
  #: app/features/mec/notifications.php:89 app/features/mec/regform.php:43
99
- #: app/features/mec/settings.php:215 app/features/mec/styles.php:45
100
  #: app/features/mec/styling.php:71 app/features/mec/support.php:43
101
  msgid "Notifications"
102
  msgstr ""
@@ -112,7 +112,8 @@ msgstr ""
112
  #: app/features/contextual.php:88 app/features/ix/export.php:10
113
  #: app/features/ix/export_g_calendar.php:14 app/features/ix/import.php:10
114
  #: app/features/ix/import_f_calendar.php:10
115
- #: app/features/ix/import_g_calendar.php:10 app/features/ix/sync.php:10
 
116
  #: app/features/ix/thirdparty.php:10
117
  msgid "Google Cal. Import"
118
  msgstr ""
@@ -128,7 +129,8 @@ msgstr ""
128
  #: app/features/contextual.php:95 app/features/ix/export.php:11
129
  #: app/features/ix/export_g_calendar.php:15 app/features/ix/import.php:11
130
  #: app/features/ix/import_f_calendar.php:11
131
- #: app/features/ix/import_g_calendar.php:11 app/features/ix/sync.php:11
 
132
  #: app/features/ix/thirdparty.php:11
133
  msgid "Google Cal. Export"
134
  msgstr ""
@@ -144,7 +146,8 @@ msgstr ""
144
  #: app/features/contextual.php:102 app/features/ix/export.php:12
145
  #: app/features/ix/export_g_calendar.php:16 app/features/ix/import.php:12
146
  #: app/features/ix/import_f_calendar.php:12
147
- #: app/features/ix/import_g_calendar.php:12 app/features/ix/sync.php:12
 
148
  #: app/features/ix/thirdparty.php:12
149
  msgid "Facebook Cal. Import"
150
  msgstr ""
@@ -158,86 +161,86 @@ msgid ""
158
  msgstr ""
159
 
160
  #: app/features/contextual.php:117 app/features/mec/settings.php:42
161
- #: app/features/mec/settings.php:265
162
  msgid "General Options"
163
  msgstr ""
164
 
165
  #: app/features/contextual.php:139 app/features/mec/settings.php:54
166
- #: app/features/mec/settings.php:417
167
  msgid "Slugs/Permalinks"
168
  msgstr ""
169
 
170
  #: app/features/contextual.php:152 app/features/mec/settings.php:60
171
- #: app/features/mec/settings.php:437
172
  msgid "Event Details/Single Event Page"
173
  msgstr ""
174
 
175
  #: app/features/contextual.php:166 app/features/mec/settings.php:66
176
- #: app/features/mec/settings.php:478
177
  msgid "Currency Options"
178
  msgstr ""
179
 
180
  #: app/features/contextual.php:182 app/features/mec/settings.php:78
181
- #: app/features/mec/settings.php:545
182
  msgid "Google Maps Options"
183
  msgstr ""
184
 
185
  #: app/features/contextual.php:244 app/features/mec/settings.php:84
186
- #: app/features/mec/settings.php:619
187
  msgid "Google Recaptcha Options"
188
  msgstr ""
189
 
190
  #: app/features/contextual.php:258 app/features/mec/settings.php:114
191
- #: app/features/mec/settings.php:737
192
  msgid "Countdown Options"
193
  msgstr ""
194
 
195
  #: app/features/contextual.php:268 app/features/mec/settings.php:120
196
- #: app/features/mec/settings.php:758
197
  msgid "Social Networks"
198
  msgstr ""
199
 
200
  #: app/features/contextual.php:278 app/features/mec/settings.php:126
201
- #: app/features/mec/settings.php:783
202
  msgid "Next Event Module"
203
  msgstr ""
204
 
205
  #: app/features/contextual.php:286 app/features/mec/settings.php:132
206
- #: app/features/mec/settings.php:811
207
  msgid "Frontend Event Submission"
208
  msgstr ""
209
 
210
  #: app/features/contextual.php:298 app/features/events.php:580
211
- #: app/features/mec/settings.php:138
212
  msgid "Exceptional Days"
213
  msgstr ""
214
 
215
  #: app/features/contextual.php:308 app/features/events.php:263
216
- #: app/features/mec/settings.php:150 app/features/mec/settings.php:978
217
  msgid "Booking"
218
  msgstr ""
219
 
220
- #: app/features/contextual.php:318 app/features/mec/settings.php:156
221
- #: app/features/mec/settings.php:1068
222
  msgid "Coupons"
223
  msgstr ""
224
 
225
- #: app/features/contextual.php:326 app/features/mec/settings.php:174
226
- #: app/features/mec/settings.php:1209
227
  msgid "BuddyPress Integration"
228
  msgstr ""
229
 
230
- #: app/features/contextual.php:334 app/features/mec/settings.php:180
231
- #: app/features/mec/settings.php:1239
232
  msgid "Mailchimp Integration"
233
  msgstr ""
234
 
235
- #: app/features/contextual.php:346 app/features/mec/settings.php:186
236
- #: app/features/mec/settings.php:1275
237
  msgid "MEC Activation"
238
  msgstr ""
239
 
240
- #: app/features/events.php:132 app/features/ix/export.php:33
241
  #: app/features/mec/dashboard.php:92 app/skins/daily_view/tpl.php:79
242
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
243
  msgid "Events"
@@ -247,8 +250,8 @@ msgstr ""
247
  #: app/features/mec/meta_boxes/display_options.php:708
248
  #: app/features/mec/meta_boxes/display_options.php:746
249
  #: app/features/mec/meta_boxes/display_options.php:775
250
- #: app/skins/daily_view/tpl.php:80 app/skins/monthly_view/tpl.php:71
251
- #: app/skins/yearly_view/tpl.php:69
252
  msgid "Event"
253
  msgstr ""
254
 
@@ -260,8 +263,8 @@ msgstr ""
260
  msgid "Add New Event"
261
  msgstr ""
262
 
263
- #: app/features/events.php:136 app/features/ix.php:2784
264
- #: app/features/ix/thirdparty.php:41 app/skins/map/tpl.php:54
265
  msgid "No events found!"
266
  msgstr ""
267
 
@@ -292,16 +295,16 @@ msgstr ""
292
  #: app/features/mec/meta_boxes/search_form.php:292
293
  #: app/features/mec/meta_boxes/search_form.php:332
294
  #: app/features/mec/meta_boxes/search_form.php:379
295
- #: app/features/mec/meta_boxes/search_form.php:426 app/libraries/main.php:4151
296
- #: app/libraries/skins.php:712 app/skins/single/default.php:155
297
- #: app/skins/single/default.php:360 app/skins/single/m1.php:167
298
- #: app/skins/single/m2.php:99 app/skins/single/modern.php:96
299
  msgid "Category"
300
  msgstr ""
301
 
302
- #: app/features/events.php:153 app/features/fes/form.php:518
303
  #: app/features/mec.php:198 app/features/mec/meta_boxes/filter.php:70
304
- #: app/libraries/main.php:4150
305
  msgid "Categories"
306
  msgstr ""
307
 
@@ -373,18 +376,18 @@ msgstr ""
373
  msgid "Event Details"
374
  msgstr ""
375
 
376
- #: app/features/events.php:296 app/features/events.php:1894
377
- #: app/features/events.php:1938 app/features/fes/form.php:479
378
- #: app/features/ix.php:2328 app/features/ix.php:2369
379
- #: app/features/mec/settings.php:860 app/libraries/main.php:4183
380
  #: app/widgets/single.php:103
381
  msgid "Event Cost"
382
  msgstr ""
383
 
384
- #: app/features/events.php:299 app/features/fes/form.php:482
385
- #: app/libraries/main.php:4184 app/skins/single/default.php:90
386
- #: app/skins/single/default.php:295 app/skins/single/m1.php:49
387
- #: app/skins/single/modern.php:182
388
  msgid "Cost"
389
  msgstr ""
390
 
@@ -396,35 +399,36 @@ msgstr ""
396
  msgid "Guest Data"
397
  msgstr ""
398
 
399
- #: app/features/events.php:380 app/features/fes/form.php:441
400
  #: app/features/labels.php:177 app/features/organizers.php:268
401
- #: app/libraries/notifications.php:554 app/modules/booking/steps/form.php:24
402
- #: app/modules/booking/steps/form.php:25
403
  msgid "Name"
404
  msgstr ""
405
 
406
- #: app/features/events.php:381 app/features/events.php:1190
407
- #: app/features/fes/form.php:437 app/features/mec/regform.php:118
408
  #: app/features/organizers.php:110 app/features/organizers.php:150
409
- #: app/features/speakers.php:119 app/features/speakers.php:179
410
- #: app/libraries/main.php:1067 app/libraries/main.php:1132
411
- #: app/libraries/main.php:2067 app/libraries/notifications.php:555
412
- #: app/modules/booking/steps/form.php:28 app/modules/booking/steps/form.php:29
413
- #: app/skins/single.php:216 app/skins/single/default.php:197
414
- #: app/skins/single/default.php:402 app/skins/single/m1.php:107
415
- #: app/skins/single/m2.php:39 app/skins/single/modern.php:38
 
416
  msgid "Email"
417
  msgstr ""
418
 
419
- #: app/features/events.php:385 app/features/fes/form.php:221
420
  msgid "Date and Time"
421
  msgstr ""
422
 
423
  #: app/features/events.php:389 app/features/events.php:393
424
- #: app/features/events.php:1715 app/features/events.php:1894
425
- #: app/features/events.php:1938 app/features/fes/form.php:225
426
- #: app/features/fes/form.php:229 app/features/ix.php:2328
427
- #: app/features/ix.php:2369 app/features/ix/import_g_calendar.php:37
428
  #: app/features/mec/dashboard.php:269
429
  #: app/features/mec/meta_boxes/display_options.php:42
430
  #: app/features/mec/meta_boxes/display_options.php:139
@@ -443,182 +447,183 @@ msgid "Start Date"
443
  msgstr ""
444
 
445
  #: app/features/events.php:421 app/features/events.php:461
446
- #: app/features/events.php:860 app/features/events.php:878
447
- #: app/features/events.php:930 app/features/events.php:948
448
- #: app/features/fes/form.php:257 app/features/fes/form.php:297
449
  msgid "AM"
450
  msgstr ""
451
 
452
  #: app/features/events.php:422 app/features/events.php:462
453
- #: app/features/events.php:861 app/features/events.php:879
454
- #: app/features/events.php:931 app/features/events.php:949
455
- #: app/features/fes/form.php:258 app/features/fes/form.php:298
456
  msgid "PM"
457
  msgstr ""
458
 
459
  #: app/features/events.php:429 app/features/events.php:433
460
- #: app/features/events.php:1716 app/features/events.php:1894
461
- #: app/features/events.php:1938 app/features/fes/form.php:265
462
- #: app/features/fes/form.php:269 app/features/ix.php:2328
463
- #: app/features/ix.php:2369 app/features/ix/import_g_calendar.php:43
464
  #: app/features/mec/dashboard.php:270
465
  msgid "End Date"
466
  msgstr ""
467
 
468
- #: app/features/events.php:468 app/features/fes/form.php:304
469
  msgid "All Day Event"
470
  msgstr ""
471
 
472
- #: app/features/events.php:471 app/features/fes/form.php:307
473
  msgid "Hide Event Time"
474
  msgstr ""
475
 
476
- #: app/features/events.php:474 app/features/fes/form.php:310
477
  msgid "Hide Event End Time"
478
  msgstr ""
479
 
480
- #: app/features/events.php:478 app/features/fes/form.php:314
481
  msgid "Time Comment"
482
  msgstr ""
483
 
484
- #: app/features/events.php:479 app/features/fes/form.php:315
485
  msgid ""
486
  "It shows next to event time on calendar. You can insert Timezone etc. in "
487
  "this field."
488
  msgstr ""
489
 
490
- #: app/features/events.php:485 app/features/fes/form.php:321
491
  msgid "Event Repeating"
492
  msgstr ""
493
 
494
- #: app/features/events.php:489 app/features/fes/form.php:325
495
  msgid "Repeats"
496
  msgstr ""
497
 
498
- #: app/features/events.php:491 app/features/fes/form.php:327
499
  #: app/features/mec/dashboard.php:272 app/skins/full_calendar/tpl.php:68
500
  msgid "Daily"
501
  msgstr ""
502
 
503
- #: app/features/events.php:492 app/features/fes/form.php:328
504
  msgid "Every Weekday"
505
  msgstr ""
506
 
507
- #: app/features/events.php:493 app/features/fes/form.php:329
508
  msgid "Every Weekend"
509
  msgstr ""
510
 
511
- #: app/features/events.php:494 app/features/fes/form.php:330
512
  msgid "Certain Weekdays"
513
  msgstr ""
514
 
515
- #: app/features/events.php:495 app/features/fes/form.php:331
516
  #: app/skins/full_calendar/tpl.php:67
517
  msgid "Weekly"
518
  msgstr ""
519
 
520
- #: app/features/events.php:496 app/features/fes/form.php:332
521
  #: app/features/mec/dashboard.php:273 app/skins/full_calendar/tpl.php:66
522
  msgid "Monthly"
523
  msgstr ""
524
 
525
- #: app/features/events.php:497 app/features/fes/form.php:333
526
  #: app/features/mec/dashboard.php:274 app/skins/full_calendar/tpl.php:65
527
  msgid "Yearly"
528
  msgstr ""
529
 
530
- #: app/features/events.php:498 app/features/fes/form.php:334
531
  msgid "Custom Days"
532
  msgstr ""
533
 
534
- #: app/features/events.php:502 app/features/fes/form.php:338
535
  msgid "Repeat Interval"
536
  msgstr ""
537
 
538
- #: app/features/events.php:503 app/features/fes/form.php:339
539
  msgid "Repeat interval"
540
  msgstr ""
541
 
542
- #: app/features/events.php:506 app/features/fes/form.php:342
543
  msgid "Week Days"
544
  msgstr ""
545
 
546
- #: app/features/events.php:507 app/features/fes/form.php:343
547
- #: app/libraries/main.php:401
548
  msgid "Monday"
549
  msgstr ""
550
 
551
- #: app/features/events.php:508 app/features/fes/form.php:344
552
- #: app/libraries/main.php:401
553
  msgid "Tuesday"
554
  msgstr ""
555
 
556
- #: app/features/events.php:509 app/features/fes/form.php:345
557
- #: app/libraries/main.php:401
558
  msgid "Wednesday"
559
  msgstr ""
560
 
561
- #: app/features/events.php:510 app/features/fes/form.php:346
562
- #: app/libraries/main.php:401
563
  msgid "Thursday"
564
  msgstr ""
565
 
566
- #: app/features/events.php:511 app/features/fes/form.php:347
567
- #: app/libraries/main.php:401
568
  msgid "Friday"
569
  msgstr ""
570
 
571
- #: app/features/events.php:512 app/features/fes/form.php:348
572
- #: app/libraries/main.php:401
573
  msgid "Saturday"
574
  msgstr ""
575
 
576
- #: app/features/events.php:513 app/features/fes/form.php:349
577
- #: app/libraries/main.php:401
578
  msgid "Sunday"
579
  msgstr ""
580
 
581
  #: app/features/events.php:518 app/features/events.php:590
582
- #: app/features/fes/form.php:354 app/libraries/main.php:1582
583
- #: app/modules/booking/steps/tickets.php:20
584
- #: app/modules/next-event/details.php:86 app/skins/single/default.php:54
585
- #: app/skins/single/default.php:259 app/skins/single/m1.php:16
586
- #: app/skins/single/modern.php:149
587
  msgid "Date"
588
  msgstr ""
589
 
590
  #: app/features/events.php:519 app/features/events.php:591
591
- #: app/features/events.php:665 app/features/events.php:717
592
- #: app/features/events.php:837 app/features/events.php:1009
593
- #: app/features/events.php:1090 app/features/fes/form.php:355
 
594
  msgid "Add"
595
  msgstr ""
596
 
597
- #: app/features/events.php:520 app/features/fes/form.php:356
598
  msgid "Add certain days to event occurrence dates."
599
  msgstr ""
600
 
601
- #: app/features/events.php:542 app/features/fes/form.php:378
602
  msgid "Ends Repeat"
603
  msgstr ""
604
 
605
- #: app/features/events.php:546 app/features/fes/form.php:382
606
  msgid "Never"
607
  msgstr ""
608
 
609
- #: app/features/events.php:551 app/features/fes/form.php:387
610
  msgid "On"
611
  msgstr ""
612
 
613
- #: app/features/events.php:558 app/features/fes/form.php:394
614
  msgid "After"
615
  msgstr ""
616
 
617
- #: app/features/events.php:560 app/features/fes/form.php:396
618
  msgid "Occurrences times"
619
  msgstr ""
620
 
621
- #: app/features/events.php:561 app/features/fes/form.php:397
622
  msgid ""
623
  "The event will finish after certain repeats. For example if you set it to "
624
  "10, the event will finish after 10 repeats."
@@ -636,7 +641,7 @@ msgstr ""
636
  msgid "Day 1"
637
  msgstr ""
638
 
639
- #: app/features/events.php:649 app/features/mec/settings.php:914
640
  #: app/skins/single.php:246
641
  msgid "Hourly Schedule"
642
  msgstr ""
@@ -651,268 +656,304 @@ msgid ""
651
  "can add a different schedule for each day!"
652
  msgstr ""
653
 
654
- #: app/features/events.php:658
655
  #, php-format
656
  msgid "Day %s"
657
  msgstr ""
658
 
659
- #: app/features/events.php:661 app/features/events.php:673
660
- #: app/features/events.php:693 app/features/events.php:713
661
- #: app/features/events.php:728 app/features/events.php:1096
662
- #: app/features/events.php:1118 app/features/events.php:1712
663
- #: app/features/events.php:1894 app/features/events.php:1938
664
- #: app/features/fes/form.php:214 app/features/ix.php:2328
665
- #: app/features/ix.php:2369 app/features/mec/settings.php:1169
666
- #: app/features/mec/settings.php:1189
667
  msgid "Title"
668
  msgstr ""
669
 
670
- #: app/features/events.php:666 app/features/events.php:718
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
671
  msgid "Add new hourly schedule row"
672
  msgstr ""
673
 
674
- #: app/features/events.php:671 app/features/events.php:691
675
- #: app/features/events.php:726
676
  msgid "From e.g. 8:15"
677
  msgstr ""
678
 
679
- #: app/features/events.php:672 app/features/events.php:692
680
- #: app/features/events.php:727
681
  msgid "To e.g. 8:45"
682
  msgstr ""
683
 
684
- #: app/features/events.php:674 app/features/events.php:694
685
- #: app/features/events.php:729 app/features/events.php:884
686
- #: app/features/events.php:954
687
  msgid "Description"
688
  msgstr ""
689
 
690
- #: app/features/events.php:675 app/features/events.php:695
691
- #: app/features/events.php:730 app/features/events.php:903
692
- #: app/features/events.php:973 app/features/events.php:1029
693
- #: app/features/events.php:1054 app/features/events.php:1107
694
- #: app/features/events.php:1129 app/features/fes/list.php:72
695
- #: app/features/mec/settings.php:1118 app/features/mec/settings.php:1141
696
- #: app/features/mec/settings.php:1180 app/features/mec/settings.php:1200
697
- #: app/libraries/main.php:2046 app/libraries/main.php:2075
698
- #: app/libraries/main.php:2104 app/libraries/main.php:2133
699
- #: app/libraries/main.php:2155 app/libraries/main.php:2186
700
- #: app/libraries/main.php:2230 app/libraries/main.php:2274
701
- #: app/libraries/main.php:2321 app/libraries/main.php:2359
702
- msgid "Remove"
703
- msgstr ""
704
-
705
- #: app/features/events.php:678 app/features/events.php:698
706
- #: app/features/events.php:733 app/features/fes/form.php:611
707
  #: app/features/mec.php:206 app/features/mec/settings.php:72
708
- #: app/features/mec/settings.php:908 app/features/speakers.php:57
709
- #: app/libraries/main.php:4158 app/modules/speakers/details.php:18
710
  msgid "Speakers"
711
  msgstr ""
712
 
713
- #: app/features/events.php:710 app/features/events.php:714
714
  msgid "Day :dd:"
715
  msgstr ""
716
 
717
- #: app/features/events.php:759 app/features/fes/form.php:456
718
- #: app/features/mec/settings.php:854
719
  msgid "Event Links"
720
  msgstr ""
721
 
722
- #: app/features/events.php:761 app/features/fes/form.php:458
723
- #: app/libraries/main.php:4181
724
  msgid "Event Link"
725
  msgstr ""
726
 
727
- #: app/features/events.php:762 app/features/events.php:767
728
- #: app/features/fes/form.php:459 app/features/fes/form.php:464
729
  msgid "eg. http://yoursite.com/your-event"
730
  msgstr ""
731
 
732
- #: app/features/events.php:763 app/features/fes/form.php:460
733
  msgid ""
734
  "If you fill it, it will be replaced instead of default event page link. "
735
  "Insert full link including http(s)://"
736
  msgstr ""
737
 
738
- #: app/features/events.php:766 app/features/fes/form.php:463
739
- #: app/libraries/main.php:4182 app/skins/single/default.php:104
740
- #: app/skins/single/default.php:309 app/skins/single/m1.php:188
741
- #: app/skins/single/m2.php:120 app/skins/single/modern.php:118
742
  #: app/widgets/single.php:107
743
  msgid "More Info"
744
  msgstr ""
745
 
746
- #: app/features/events.php:768 app/features/fes/form.php:465
747
  msgid "More Information"
748
  msgstr ""
749
 
750
- #: app/features/events.php:770 app/features/fes/form.php:467
751
  msgid "Current Window"
752
  msgstr ""
753
 
754
- #: app/features/events.php:771 app/features/fes/form.php:468
755
  msgid "New Window"
756
  msgstr ""
757
 
758
- #: app/features/events.php:773 app/features/fes/form.php:470
759
  msgid ""
760
  "If you fill it, it will be shown in event details page as an optional link. "
761
  "Insert full link including http(s)://"
762
  msgstr ""
763
 
764
- #: app/features/events.php:804
765
  msgid "Total booking limits"
766
  msgstr ""
767
 
768
- #: app/features/events.php:809 app/features/events.php:901
769
- #: app/features/events.php:971 app/modules/booking/default.php:82
770
- #: app/modules/booking/steps/tickets.php:38 app/skins/available_spot/tpl.php:99
771
  msgid "Unlimited"
772
  msgstr ""
773
 
774
- #: app/features/events.php:811
775
  msgid "100"
776
  msgstr ""
777
 
778
- #: app/features/events.php:829 app/libraries/book.php:60
779
- #: app/libraries/main.php:4186 app/modules/booking/steps/tickets.php:38
780
  msgid "Tickets"
781
  msgstr ""
782
 
783
- #: app/features/events.php:832
784
  msgid ""
785
  "You're translating an event so MEC will use the original event for tickets "
786
  "and booking. You can only translate the ticket name and description. Please "
787
  "define exact tickets that you defined in the original event here."
788
  msgstr ""
789
 
790
- #: app/features/events.php:843 app/features/events.php:913
791
  msgid "Ticket Name"
792
  msgstr ""
793
 
794
- #: app/features/events.php:847 app/features/events.php:917
795
- #: app/features/events.php:1894 app/features/events.php:1938
796
- #: app/features/ix.php:2328 app/features/ix.php:2369
797
  msgid "Start Time"
798
  msgstr ""
799
 
800
- #: app/features/events.php:865 app/features/events.php:935
801
- #: app/features/events.php:1894 app/features/events.php:1938
802
- #: app/features/ix.php:2328 app/features/ix.php:2369
803
  msgid "End Time"
804
  msgstr ""
805
 
806
- #: app/features/events.php:888 app/features/events.php:958
807
- #: app/features/events.php:1100 app/features/events.php:1122
808
- #: app/features/mec/settings.php:1173 app/features/mec/settings.php:1193
 
 
809
  msgid "Price"
810
  msgstr ""
811
 
812
- #: app/features/events.php:889 app/features/events.php:959
813
  msgid "Insert 0 for free ticket. Only numbers please."
814
  msgstr ""
815
 
816
- #: app/features/events.php:892 app/features/events.php:962
817
  msgid "Price Label"
818
  msgstr ""
819
 
820
- #: app/features/events.php:893 app/features/events.php:963
821
  msgid "For showing on website. e.g. $15"
822
  msgstr ""
823
 
824
- #: app/features/events.php:897 app/features/events.php:967
825
  msgid "Available Tickets"
826
  msgstr ""
827
 
828
- #: app/features/events.php:999
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
829
  msgid "Fees"
830
  msgstr ""
831
 
832
- #: app/features/events.php:1004 app/features/events.php:1085
833
- #: app/features/events.php:1160
834
  msgid "Inherit from global options"
835
  msgstr ""
836
 
837
- #: app/features/events.php:1015 app/features/events.php:1040
838
- #: app/features/mec/settings.php:1104 app/features/mec/settings.php:1127
839
  msgid "Fee Title"
840
  msgstr ""
841
 
842
- #: app/features/events.php:1019 app/features/events.php:1044
843
- #: app/features/mec/settings.php:1108 app/features/mec/settings.php:1131
844
  msgid "Amount"
845
  msgstr ""
846
 
847
- #: app/features/events.php:1020 app/features/events.php:1045
848
- #: app/features/mec/settings.php:1109 app/features/mec/settings.php:1132
849
  msgid ""
850
  "Fee amount, considered as fixed amount if you set the type to amount "
851
  "otherwise considered as percentage"
852
  msgstr ""
853
 
854
- #: app/features/events.php:1024 app/features/events.php:1049
855
- #: app/features/mec/settings.php:1113 app/features/mec/settings.php:1136
856
  msgid "Percent"
857
  msgstr ""
858
 
859
- #: app/features/events.php:1025 app/features/events.php:1050
860
- #: app/features/mec/settings.php:1114 app/features/mec/settings.php:1137
861
  msgid "Amount (Per Ticket)"
862
  msgstr ""
863
 
864
- #: app/features/events.php:1026 app/features/events.php:1051
865
- #: app/features/mec/settings.php:1115 app/features/mec/settings.php:1138
866
  msgid "Amount (Per Booking)"
867
  msgstr ""
868
 
869
- #: app/features/events.php:1080 app/features/mec/settings.php:932
870
  msgid "Ticket Variations / Options"
871
  msgstr ""
872
 
873
- #: app/features/events.php:1101 app/features/events.php:1123
874
- #: app/features/mec/settings.php:1174 app/features/mec/settings.php:1194
875
  msgid "Option Price"
876
  msgstr ""
877
 
878
- #: app/features/events.php:1104 app/features/events.php:1126
879
- #: app/features/mec/settings.php:1177 app/features/mec/settings.php:1197
880
  msgid "Maximum Per Ticket"
881
  msgstr ""
882
 
883
- #: app/features/events.php:1105 app/features/events.php:1127
884
- #: app/features/mec/settings.php:1178 app/features/mec/settings.php:1198
885
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
886
  msgstr ""
887
 
888
- #: app/features/events.php:1189 app/features/mec/regform.php:117
889
- #: app/libraries/main.php:2038
890
  msgid "Text"
891
  msgstr ""
892
 
893
- #: app/features/events.php:1191 app/features/mec/regform.php:119
894
  #: app/features/organizers.php:102 app/features/organizers.php:146
895
  #: app/features/speakers.php:111 app/features/speakers.php:175
896
- #: app/features/speakers.php:244 app/libraries/main.php:2096
897
  msgid "Tel"
898
  msgstr ""
899
 
900
- #: app/features/events.php:1192 app/features/mec/regform.php:120
901
- #: app/libraries/main.php:2125
902
  msgid "Textarea"
903
  msgstr ""
904
 
905
- #: app/features/events.php:1193 app/features/mec/regform.php:121
906
- #: app/libraries/main.php:2178
907
  msgid "Checkboxes"
908
  msgstr ""
909
 
910
- #: app/features/events.php:1194 app/features/mec/regform.php:122
911
- #: app/libraries/main.php:2222
912
  msgid "Radio Buttons"
913
  msgstr ""
914
 
915
- #: app/features/events.php:1195 app/features/mec/meta_boxes/search_form.php:34
916
  #: app/features/mec/meta_boxes/search_form.php:41
917
  #: app/features/mec/meta_boxes/search_form.php:48
918
  #: app/features/mec/meta_boxes/search_form.php:55
@@ -958,41 +999,41 @@ msgstr ""
958
  #: app/features/mec/meta_boxes/search_form.php:443
959
  #: app/features/mec/meta_boxes/search_form.php:450
960
  #: app/features/mec/meta_boxes/search_form.php:457
961
- #: app/features/mec/regform.php:123 app/libraries/main.php:2266
962
  msgid "Dropdown"
963
  msgstr ""
964
 
965
- #: app/features/events.php:1196 app/features/mec/regform.php:124
966
- #: app/libraries/main.php:2313
967
  msgid "Agreement"
968
  msgstr ""
969
 
970
- #: app/features/events.php:1197 app/features/mec/regform.php:125
971
- #: app/libraries/main.php:2154
972
  msgid "Paragraph"
973
  msgstr ""
974
 
975
- #: app/features/events.php:1658 app/features/events.php:1673
976
- #: app/features/events.php:1687
977
  #, php-format
978
  msgid "Show all %s"
979
  msgstr ""
980
 
981
- #: app/features/events.php:1658
982
  msgid "labels"
983
  msgstr ""
984
 
985
- #: app/features/events.php:1673
986
  msgid "locations"
987
  msgstr ""
988
 
989
- #: app/features/events.php:1687
990
  msgid "organizers"
991
  msgstr ""
992
 
993
- #: app/features/events.php:1713 app/features/events.php:1894
994
- #: app/features/events.php:1938 app/features/ix.php:2328
995
- #: app/features/ix.php:2369 app/features/locations.php:58
996
  #: app/features/locations.php:229 app/features/locations.php:281
997
  #: app/features/locations.php:283 app/features/mec/dashboard.php:106
998
  #: app/features/mec/meta_boxes/display_options.php:659
@@ -1004,17 +1045,17 @@ msgstr ""
1004
  #: app/features/mec/meta_boxes/search_form.php:299
1005
  #: app/features/mec/meta_boxes/search_form.php:339
1006
  #: app/features/mec/meta_boxes/search_form.php:386
1007
- #: app/features/mec/meta_boxes/search_form.php:433 app/libraries/main.php:1576
1008
- #: app/libraries/main.php:4155 app/libraries/skins.php:738
1009
- #: app/skins/single/default.php:140 app/skins/single/default.php:345
1010
- #: app/skins/single/m1.php:152 app/skins/single/m2.php:84
1011
- #: app/skins/single/modern.php:81
1012
  msgid "Location"
1013
  msgstr ""
1014
 
1015
- #: app/features/events.php:1714 app/features/events.php:1894
1016
- #: app/features/events.php:1938 app/features/ix.php:2328
1017
- #: app/features/ix.php:2369 app/features/mec/dashboard.php:113
1018
  #: app/features/mec/meta_boxes/display_options.php:660
1019
  #: app/features/mec/meta_boxes/search_form.php:45
1020
  #: app/features/mec/meta_boxes/search_form.php:92
@@ -1027,63 +1068,63 @@ msgstr ""
1027
  #: app/features/mec/meta_boxes/search_form.php:440
1028
  #: app/features/organizers.php:58 app/features/organizers.php:199
1029
  #: app/features/organizers.php:255 app/features/organizers.php:257
1030
- #: app/libraries/main.php:4157 app/libraries/skins.php:764
1031
- #: app/skins/single/default.php:180 app/skins/single/default.php:385
1032
  #: app/skins/single/m1.php:90 app/skins/single/m2.php:22
1033
  #: app/skins/single/modern.php:21
1034
  msgid "Organizer"
1035
  msgstr ""
1036
 
1037
- #: app/features/events.php:1718
1038
  msgid "Repeat"
1039
  msgstr ""
1040
 
1041
- #: app/features/events.php:1719
1042
  msgid "Author"
1043
  msgstr ""
1044
 
1045
- #: app/features/events.php:1829 app/features/events.php:1830
1046
  msgid "iCal Export"
1047
  msgstr ""
1048
 
1049
- #: app/features/events.php:1832 app/features/events.php:1833
1050
  msgid "CSV Export"
1051
  msgstr ""
1052
 
1053
- #: app/features/events.php:1835 app/features/events.php:1836
1054
  msgid "MS Excel Export"
1055
  msgstr ""
1056
 
1057
- #: app/features/events.php:1838 app/features/events.php:1839
1058
  msgid "XML Export"
1059
  msgstr ""
1060
 
1061
- #: app/features/events.php:1841 app/features/events.php:1842
1062
  msgid "JSON Export"
1063
  msgstr ""
1064
 
1065
- #: app/features/events.php:1844 app/features/events.php:1845
1066
  msgid "Duplicate"
1067
  msgstr ""
1068
 
1069
- #: app/features/events.php:1894 app/features/events.php:1938
1070
- #: app/features/ix.php:2328 app/features/ix.php:2369
1071
  #: app/features/labels.php:176 app/features/locations.php:228
1072
  #: app/features/organizers.php:198 app/features/speakers.php:241
1073
  msgid "ID"
1074
  msgstr ""
1075
 
1076
- #: app/features/events.php:1894 app/features/events.php:1938
1077
- #: app/features/ix.php:2328 app/features/ix.php:2369
1078
  msgid "Link"
1079
  msgstr ""
1080
 
1081
- #: app/features/events.php:1894 app/features/events.php:1938
1082
  #, php-format
1083
  msgid "%s Tel"
1084
  msgstr ""
1085
 
1086
- #: app/features/events.php:1894 app/features/events.php:1938
1087
  #, php-format
1088
  msgid "%s Email"
1089
  msgstr ""
@@ -1093,11 +1134,11 @@ msgstr ""
1093
  msgid "Please %s/%s in order to submit new events."
1094
  msgstr ""
1095
 
1096
- #: app/features/fes.php:83 app/features/fes.php:161
1097
  msgid "Login"
1098
  msgstr ""
1099
 
1100
- #: app/features/fes.php:83 app/features/fes.php:161
1101
  msgid "Register"
1102
  msgstr ""
1103
 
@@ -1138,55 +1179,55 @@ msgstr ""
1138
  msgid "The event published."
1139
  msgstr ""
1140
 
1141
- #: app/features/fes/form.php:157
1142
  msgid "Go back to events list."
1143
  msgstr ""
1144
 
1145
- #: app/features/fes/form.php:407
1146
  msgid "Note to reviewer"
1147
  msgstr ""
1148
 
1149
- #: app/features/fes/form.php:416 app/features/fes/form.php:626
1150
- msgid "Submit"
1151
- msgstr ""
1152
-
1153
- #: app/features/fes/form.php:435
1154
  msgid "User Data"
1155
  msgstr ""
1156
 
1157
- #: app/features/fes/form.php:438
1158
  msgid "eg. yourname@gmail.com"
1159
  msgstr ""
1160
 
1161
- #: app/features/fes/form.php:442 app/features/organizers.php:269
1162
  msgid "eg. John Smith"
1163
  msgstr ""
1164
 
1165
- #: app/features/fes/form.php:496 app/features/mec/settings.php:866
1166
  msgid "Featured Image"
1167
  msgstr ""
1168
 
1169
- #: app/features/fes/form.php:501
1170
  msgid "Remove Image"
1171
  msgstr ""
1172
 
1173
- #: app/features/fes/form.php:543 app/features/labels.php:61
1174
  #: app/features/labels.php:220 app/features/mec.php:199
1175
- #: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4152
1176
- #: app/skins/single/default.php:119 app/skins/single/default.php:324
1177
- #: app/skins/single/m1.php:64 app/skins/single/modern.php:197
1178
  msgid "Labels"
1179
  msgstr ""
1180
 
1181
- #: app/features/fes/form.php:588 app/features/mec.php:197
1182
  #: app/features/mec/meta_boxes/filter.php:138
1183
  msgid "Tags"
1184
  msgstr ""
1185
 
1186
- #: app/features/fes/form.php:590
1187
  msgid "Insert your desired tags, comma separated."
1188
  msgstr ""
1189
 
 
 
 
 
1190
  #: app/features/fes/list.php:21
1191
  msgid "Click again to remove!"
1192
  msgstr ""
@@ -1204,87 +1245,105 @@ msgstr ""
1204
  msgid "No events found! %s"
1205
  msgstr ""
1206
 
1207
- #: app/features/ix.php:95
1208
  msgid "MEC - Import / Export"
1209
  msgstr ""
1210
 
1211
- #: app/features/ix.php:95
1212
  msgid "Import / Export"
1213
  msgstr ""
1214
 
1215
- #: app/features/ix.php:180
1216
  msgid "Please upload the feed file."
1217
  msgstr ""
1218
 
1219
- #: app/features/ix.php:183
1220
  msgid "The file type should be XML or ICS."
1221
  msgstr ""
1222
 
1223
- #: app/features/ix.php:192
1224
- msgid "An error ocurred during the file upload! Please check permissions!"
1225
  msgstr ""
1226
 
1227
- #: app/features/ix.php:200
1228
  msgid "The events are imported successfully!"
1229
  msgstr ""
1230
 
1231
- #: app/features/ix.php:738
1232
  msgid "Third Party plugin is not installed and activated!"
1233
  msgstr ""
1234
 
1235
- #: app/features/ix.php:763
1236
  msgid "Third Party plugin is invalid!"
1237
  msgstr ""
1238
 
1239
- #: app/features/ix.php:1908 app/features/ix.php:1966
1240
  msgid "Both of API key and Calendar ID are required!"
1241
  msgstr ""
1242
 
1243
- #: app/features/ix.php:1961 app/features/ix.php:2791
1244
  msgid "Please select some events to import!"
1245
  msgstr ""
1246
 
1247
- #: app/features/ix.php:2328 app/features/ix.php:2369
 
 
 
 
 
 
 
 
1248
  msgid "Organizer Tel"
1249
  msgstr ""
1250
 
1251
- #: app/features/ix.php:2328 app/features/ix.php:2369
1252
  msgid "Organizer Email"
1253
  msgstr ""
1254
 
1255
- #: app/features/ix.php:2450
1256
  msgid "All of Client ID, Client Secret and Calendar ID are required!"
1257
  msgstr ""
1258
 
1259
- #: app/features/ix.php:2473
1260
  #, php-format
1261
  msgid "All seems good! Please click %s for authenticating your app."
1262
  msgstr ""
1263
 
1264
- #: app/features/ix.php:2527
1265
  msgid "All of Client App, Client Secret and Calendar ID are required!"
1266
  msgstr ""
1267
 
1268
- #: app/features/ix.php:2722
1269
  #, php-format
1270
  msgid "%s events added to Google Calendar successfully."
1271
  msgstr ""
1272
 
1273
- #: app/features/ix.php:2723
1274
  #, php-format
1275
  msgid "%s previously added events get updated."
1276
  msgstr ""
1277
 
1278
- #: app/features/ix.php:2724
1279
  #, php-format
1280
  msgid "%s events failed to add for following reasons: %s"
1281
  msgstr ""
1282
 
1283
- #: app/features/ix.php:2754 app/features/ix.php:2794
 
 
 
 
 
 
 
 
 
 
1284
  msgid "Please insert your facebook page's link."
1285
  msgstr ""
1286
 
1287
- #: app/features/ix.php:2762 app/features/ix.php:2799
1288
  msgid ""
1289
  "We couldn't recognize your Facebook page. Please check it and provide us a "
1290
  "valid facebook page link."
@@ -1292,144 +1351,161 @@ msgstr ""
1292
 
1293
  #: app/features/ix/export.php:8 app/features/ix/export_g_calendar.php:12
1294
  #: app/features/ix/import.php:8 app/features/ix/import_f_calendar.php:8
1295
- #: app/features/ix/import_g_calendar.php:8 app/features/ix/thirdparty.php:8
 
1296
  msgid "MEC Import / Export"
1297
  msgstr ""
1298
 
1299
  #: app/features/ix/export.php:13 app/features/ix/export_g_calendar.php:17
1300
  #: app/features/ix/import.php:13 app/features/ix/import_f_calendar.php:13
1301
- #: app/features/ix/import_g_calendar.php:13 app/features/ix/sync.php:13
 
1302
  #: app/features/ix/thirdparty.php:13
1303
- msgid "Export"
1304
  msgstr ""
1305
 
1306
  #: app/features/ix/export.php:14 app/features/ix/export_g_calendar.php:18
1307
  #: app/features/ix/import.php:14 app/features/ix/import_f_calendar.php:14
1308
- #: app/features/ix/import_f_calendar.php:74
1309
  #: app/features/ix/import_g_calendar.php:14
1310
- #: app/features/ix/import_g_calendar.php:102 app/features/ix/sync.php:14
1311
- #: app/features/ix/thirdparty.php:14 app/features/ix/thirdparty.php:97
1312
- msgid "Import"
1313
  msgstr ""
1314
 
1315
  #: app/features/ix/export.php:15 app/features/ix/export_g_calendar.php:19
1316
  #: app/features/ix/import.php:15 app/features/ix/import_f_calendar.php:15
1317
- #: app/features/ix/import_g_calendar.php:15 app/features/ix/sync.php:15
 
1318
  #: app/features/ix/thirdparty.php:15
1319
- msgid "Synchronization"
1320
  msgstr ""
1321
 
1322
  #: app/features/ix/export.php:16 app/features/ix/export_g_calendar.php:20
1323
  #: app/features/ix/import.php:16 app/features/ix/import_f_calendar.php:16
1324
- #: app/features/ix/import_g_calendar.php:16 app/features/ix/sync.php:16
1325
- #: app/features/ix/thirdparty.php:16 app/features/ix/thirdparty.php:20
 
 
 
 
 
 
 
 
 
 
 
 
1326
  msgid "Third Party Plugins"
1327
  msgstr ""
1328
 
1329
- #: app/features/ix/export.php:21
1330
  msgid "Export all events to file"
1331
  msgstr ""
1332
 
1333
- #: app/features/ix/export.php:22
1334
  msgid ""
1335
  "This will export all of your website events' data into your desired format."
1336
  msgstr ""
1337
 
1338
- #: app/features/ix/export.php:24 app/features/mec/settings.php:667
1339
  msgid "iCal"
1340
  msgstr ""
1341
 
1342
- #: app/features/ix/export.php:25
1343
  msgid "CSV"
1344
  msgstr ""
1345
 
1346
- #: app/features/ix/export.php:26
1347
  msgid "MS Excel"
1348
  msgstr ""
1349
 
1350
- #: app/features/ix/export.php:27
1351
  msgid "XML"
1352
  msgstr ""
1353
 
1354
- #: app/features/ix/export.php:28
1355
  msgid "JSON"
1356
  msgstr ""
1357
 
1358
- #: app/features/ix/export.php:32
1359
  msgid "Export certain events"
1360
  msgstr ""
1361
 
1362
- #: app/features/ix/export.php:33
1363
  #, php-format
1364
  msgid "For exporting filtered events, you can use bulk actions in %s page."
1365
  msgstr ""
1366
 
1367
- #: app/features/ix/export.php:36
1368
  msgid "Export certain bookings"
1369
  msgstr ""
1370
 
1371
- #: app/features/ix/export.php:37
1372
  #, php-format
1373
  msgid "For exporting bookings events, you can use bulk actions in %s page."
1374
  msgstr ""
1375
 
1376
- #: app/features/ix/export.php:37
1377
  msgid "Bookings"
1378
  msgstr ""
1379
 
1380
- #: app/features/ix/export_g_calendar.php:25
1381
  msgid "Add events to Google Calendar"
1382
  msgstr ""
1383
 
1384
- #: app/features/ix/export_g_calendar.php:26
1385
  msgid "Add your desired website events to your Google Calendar."
1386
  msgstr ""
1387
 
1388
- #: app/features/ix/export_g_calendar.php:26
1389
  #, php-format
1390
  msgid "You should set %s as redirect page in Google App Console."
1391
  msgstr ""
1392
 
1393
- #: app/features/ix/export_g_calendar.php:29
1394
  msgid "App Client ID"
1395
  msgstr ""
1396
 
1397
- #: app/features/ix/export_g_calendar.php:35
1398
  msgid "App Client Secret"
1399
  msgstr ""
1400
 
1401
- #: app/features/ix/export_g_calendar.php:41
1402
- #: app/features/ix/import_g_calendar.php:31
1403
  msgid "Calendar ID"
1404
  msgstr ""
1405
 
1406
- #: app/features/ix/export_g_calendar.php:47
1407
- #: app/features/ix/export_g_calendar.php:102
1408
- #: app/features/ix/export_g_calendar.php:119
1409
  msgid "Authenticate"
1410
  msgstr ""
1411
 
1412
- #: app/features/ix/export_g_calendar.php:56
1413
- #: app/features/ix/import_f_calendar.php:49
1414
- #: app/features/ix/import_g_calendar.php:63 app/features/ix/thirdparty.php:48
1415
- msgid "Select All"
1416
- msgstr ""
1417
-
1418
  #: app/features/ix/export_g_calendar.php:57
1419
  #: app/features/ix/import_f_calendar.php:50
1420
- #: app/features/ix/import_g_calendar.php:64 app/features/ix/thirdparty.php:49
1421
- msgid "Deselect All"
 
1422
  msgstr ""
1423
 
1424
  #: app/features/ix/export_g_calendar.php:58
1425
  #: app/features/ix/import_f_calendar.php:51
1426
- #: app/features/ix/import_g_calendar.php:65 app/features/ix/thirdparty.php:50
 
 
 
 
 
 
 
 
1427
  msgid "Toggle"
1428
  msgstr ""
1429
 
1430
- #: app/features/ix/export_g_calendar.php:71
1431
- #: app/features/ix/export_g_calendar.php:146
1432
- #: app/features/ix/export_g_calendar.php:163
1433
  #: app/features/mec/notifications.php:144
1434
  #: app/features/mec/notifications.php:185
1435
  #: app/features/mec/notifications.php:226
@@ -1437,273 +1513,313 @@ msgstr ""
1437
  msgid "Add to Google Calendar"
1438
  msgstr ""
1439
 
1440
- #: app/features/ix/export_g_calendar.php:89 app/features/mec/settings.php:1354
1441
  msgid "Checking ..."
1442
  msgstr ""
1443
 
1444
- #: app/features/ix/export_g_calendar.php:133
1445
- msgid "Importing ..."
1446
  msgstr ""
1447
 
1448
- #: app/features/ix/import.php:20
1449
  msgid "Import MEC XML Feed"
1450
  msgstr ""
1451
 
1452
- #: app/features/ix/import.php:23
1453
  #, php-format
1454
  msgid ""
1455
  "You can import %s events from another website to this website. You just need "
1456
  "an XML feed of the events that can be exported from source website!"
1457
  msgstr ""
1458
 
1459
- #: app/features/ix/import.php:26
1460
  msgid "XML Feed"
1461
  msgstr ""
1462
 
1463
- #: app/features/ix/import.php:28 app/features/ix/import.php:41
1464
  msgid "Upload & Import"
1465
  msgstr ""
1466
 
1467
- #: app/features/ix/import.php:32
1468
  msgid "Import .ics File"
1469
  msgstr ""
1470
 
1471
- #: app/features/ix/import.php:36
1472
  #, php-format
1473
  msgid ""
1474
  "ICS format supports by many different service providers like Facebook. Apple "
1475
  "Calendar etc. You can import your ics file into the %s using this form."
1476
  msgstr ""
1477
 
1478
- #: app/features/ix/import.php:39
1479
  msgid "ICS Feed"
1480
  msgstr ""
1481
 
1482
- #: app/features/ix/import.php:45 app/features/mec/settings.php:548
1483
- #: app/features/mec/settings.php:698 app/features/mec/settings.php:716
1484
- #: app/features/mec/settings.php:981 app/features/mec/settings.php:1071
1485
- #: app/features/mec/settings.php:1088 app/features/mec/settings.php:1153
1486
  #, php-format
1487
  msgid "%s is required to use this feature."
1488
  msgstr ""
1489
 
1490
- #: app/features/ix/import.php:45 app/features/ix/sync.php:21
1491
  #: app/features/mec/meta_boxes/display_options.php:224
1492
  #: app/features/mec/meta_boxes/display_options.php:379
1493
  #: app/features/mec/meta_boxes/display_options.php:469
1494
  #: app/features/mec/meta_boxes/display_options.php:576
1495
  #: app/features/mec/meta_boxes/display_options.php:626
1496
  #: app/features/mec/meta_boxes/display_options.php:764
1497
- #: app/features/mec/settings.php:548 app/features/mec/settings.php:698
1498
- #: app/features/mec/settings.php:716 app/features/mec/settings.php:981
1499
- #: app/features/mec/settings.php:1071 app/features/mec/settings.php:1088
1500
- #: app/features/mec/settings.php:1153 app/features/mec/settings.php:1278
1501
  #: app/libraries/skins.php:248
1502
  msgid "Pro version of Modern Events Calendar"
1503
  msgstr ""
1504
 
1505
- #: app/features/ix/import_f_calendar.php:21
1506
  msgid "The Facebook SDK requires PHP version 5.4 or higher."
1507
  msgstr ""
1508
 
1509
- #: app/features/ix/import_f_calendar.php:25
1510
  msgid "Import from Facebook Calendar"
1511
  msgstr ""
1512
 
1513
- #: app/features/ix/import_f_calendar.php:26
1514
- msgid "Import all of your facebook events into MEC."
1515
  msgstr ""
1516
 
1517
- #: app/features/ix/import_f_calendar.php:28
1518
  msgid "Facebook Page Link"
1519
  msgstr ""
1520
 
1521
- #: app/features/ix/import_f_calendar.php:35
1522
- #: app/features/ix/import_g_calendar.php:50 app/features/ix/thirdparty.php:32
1523
- msgid "Start"
1524
- msgstr ""
1525
-
1526
- #: app/features/ix/import_f_calendar.php:46
1527
  msgid "Facebook Events"
1528
  msgstr ""
1529
 
1530
- #: app/features/ix/import_f_calendar.php:47
1531
  #, php-format
1532
  msgid ""
1533
  "We found %s events for %s page. Please select your desired events to import."
1534
  msgstr ""
1535
 
1536
- #: app/features/ix/import_f_calendar.php:58 app/features/ix/thirdparty.php:57
1537
  #, php-format
1538
  msgid "Event Title: %s"
1539
  msgstr ""
1540
 
1541
- #: app/features/ix/import_f_calendar.php:65
1542
- #: app/features/ix/import_g_calendar.php:86 app/features/ix/thirdparty.php:64
 
1543
  msgid "Import Options"
1544
  msgstr ""
1545
 
1546
- #: app/features/ix/import_f_calendar.php:69
1547
- #: app/features/ix/import_g_calendar.php:96 app/features/ix/thirdparty.php:77
 
1548
  msgid "Import Locations"
1549
  msgstr ""
1550
 
1551
- #: app/features/ix/import_f_calendar.php:84
1552
  #, php-format
1553
  msgid "%s events successfully imported to your website from Facebook Calendar."
1554
  msgstr ""
1555
 
1556
- #: app/features/ix/import_g_calendar.php:22
1557
  msgid "Import from Google Calendar"
1558
  msgstr ""
1559
 
1560
- #: app/features/ix/import_g_calendar.php:23
1561
  msgid "This will import all of your Google calendar events into MEC."
1562
  msgstr ""
1563
 
1564
- #: app/features/ix/import_g_calendar.php:25
1565
  msgid "Google API Key"
1566
  msgstr ""
1567
 
1568
- #: app/features/ix/import_g_calendar.php:60
1569
  msgid "Google Calendar Events"
1570
  msgstr ""
1571
 
1572
- #: app/features/ix/import_g_calendar.php:61
1573
  #, php-format
1574
  msgid ""
1575
  "We found %s events for %s calendar. Please select your desired events to "
1576
  "import."
1577
  msgstr ""
1578
 
1579
- #: app/features/ix/import_g_calendar.php:79
 
1580
  #, php-format
1581
  msgid "Event Title: %s Event Date: %s - %s"
1582
  msgstr ""
1583
 
1584
- #: app/features/ix/import_g_calendar.php:90 app/features/ix/thirdparty.php:70
 
1585
  msgid "Import Organizers"
1586
  msgstr ""
1587
 
1588
- #: app/features/ix/import_g_calendar.php:112
1589
  #, php-format
1590
  msgid "%s events successfully imported to your website from Google Calendar."
1591
  msgstr ""
1592
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1593
  #: app/features/ix/sync.php:8
1594
  msgid "Auto Synchronization"
1595
  msgstr ""
1596
 
1597
- #: app/features/ix/sync.php:21
1598
  #: app/features/mec/meta_boxes/display_options.php:626
1599
  #, php-format
1600
  msgid "%s is required to use synchronization feature."
1601
  msgstr ""
1602
 
1603
- #: app/features/ix/sync.php:28
1604
  msgid "Auto Google Import"
1605
  msgstr ""
1606
 
1607
- #: app/features/ix/sync.php:31 app/features/ix/sync.php:40
1608
- #: app/features/ix/sync.php:51 app/features/mec/notifications.php:281
 
1609
  msgid "Important Note"
1610
  msgstr ""
1611
 
1612
- #: app/features/ix/sync.php:31
1613
  #, php-format
1614
  msgid ""
1615
  "Set a cronjob to call %s file atleast once per day otherwise it won't import "
1616
  "Google Calendar events."
1617
  msgstr ""
1618
 
1619
- #: app/features/ix/sync.php:37
1620
  msgid "Auto Google Export"
1621
  msgstr ""
1622
 
1623
- #: app/features/ix/sync.php:40
1624
  #, php-format
1625
  msgid ""
1626
  "Set a cronjob to call %s file atleast once per day otherwise it won't export "
1627
  "your website events into Google Calendar."
1628
  msgstr ""
1629
 
1630
- #: app/features/ix/sync.php:48
1631
  msgid "Auto Facebook Import"
1632
  msgstr ""
1633
 
1634
- #: app/features/ix/sync.php:51
1635
  #, php-format
1636
  msgid ""
1637
  "Set a cronjob to call %s file atleast once per day otherwise it won't import "
1638
  "any event from Facebook."
1639
  msgstr ""
1640
 
1641
- #: app/features/ix/sync.php:57
 
 
 
 
 
 
 
 
 
 
 
1642
  msgid "Save"
1643
  msgstr ""
1644
 
1645
- #: app/features/ix/thirdparty.php:23
1646
  #, php-format
1647
  msgid "You can import events from following integrated plugins to %s."
1648
  msgstr ""
1649
 
1650
- #: app/features/ix/thirdparty.php:26
1651
  msgid "Third Party"
1652
  msgstr ""
1653
 
1654
- #: app/features/ix/thirdparty.php:45
1655
  msgid "Found Events"
1656
  msgstr ""
1657
 
1658
- #: app/features/ix/thirdparty.php:46
1659
  #, php-format
1660
  msgid "We found %s events. Please select your desired events to import."
1661
  msgstr ""
1662
 
1663
- #: app/features/ix/thirdparty.php:69
1664
  msgid "Import Instructors"
1665
  msgstr ""
1666
 
1667
- #: app/features/ix/thirdparty.php:84
1668
  msgid "Import Class Types"
1669
  msgstr ""
1670
 
1671
- #: app/features/ix/thirdparty.php:85
1672
  msgid "Import Categories"
1673
  msgstr ""
1674
 
1675
- #: app/features/ix/thirdparty.php:92
1676
  msgid "Import Featured Images"
1677
  msgstr ""
1678
 
1679
- #: app/features/ix/thirdparty.php:107
1680
  #, php-format
1681
  msgid "%s events successfully imported to your website."
1682
  msgstr ""
1683
 
1684
- #: app/features/ix/thirdparty.php:108
1685
- msgid "Attention"
1686
- msgstr ""
1687
-
1688
- #: app/features/ix/thirdparty.php:108
1689
  msgid ""
1690
  "Although we tried our best to make the events completely compatible with MEC "
1691
  "but some modification might be needed. We suggest you to edit the imported "
1692
- "listings one by one on MEC edit event page and make sure thay're correct."
1693
- msgstr ""
1694
-
1695
- #: app/features/labels.php:60
1696
- #: app/features/mec/meta_boxes/display_options.php:658
1697
- #: app/features/mec/meta_boxes/search_form.php:52
1698
- #: app/features/mec/meta_boxes/search_form.php:99
1699
- #: app/features/mec/meta_boxes/search_form.php:146
1700
- #: app/features/mec/meta_boxes/search_form.php:219
1701
- #: app/features/mec/meta_boxes/search_form.php:266
1702
- #: app/features/mec/meta_boxes/search_form.php:313
1703
- #: app/features/mec/meta_boxes/search_form.php:353
1704
- #: app/features/mec/meta_boxes/search_form.php:400
1705
- #: app/features/mec/meta_boxes/search_form.php:447 app/libraries/skins.php:790
1706
- msgid "Label"
1707
  msgstr ""
1708
 
1709
  #: app/features/labels.php:102 app/features/labels.php:133
@@ -1747,11 +1863,12 @@ msgid "Featured"
1747
  msgstr ""
1748
 
1749
  #: app/features/labels.php:117 app/features/labels.php:142
1750
- #: app/skins/agenda/render.php:41 app/skins/available_spot/tpl.php:35
1751
- #: app/skins/carousel/render.php:33 app/skins/countdown/tpl.php:28
1752
- #: app/skins/cover/tpl.php:31 app/skins/daily_view/render.php:26
1753
- #: app/skins/grid/render.php:53 app/skins/list/render.php:39
1754
- #: app/skins/masonry/render.php:32 app/skins/monthly_view/calendar.php:84
 
1755
  #: app/skins/monthly_view/calendar_clean.php:85
1756
  #: app/skins/monthly_view/calendar_novel.php:81 app/skins/slider/render.php:52
1757
  #: app/skins/timetable/render.php:36 app/skins/timetable/render.php:99
@@ -1765,7 +1882,7 @@ msgstr ""
1765
 
1766
  #: app/features/labels.php:179 app/features/locations.php:231
1767
  #: app/features/organizers.php:201 app/features/speakers.php:245
1768
- #: app/modules/booking/steps/tickets.php:36
1769
  msgid "Count"
1770
  msgstr ""
1771
 
@@ -1780,7 +1897,7 @@ msgid "Event %s"
1780
  msgstr ""
1781
 
1782
  #: app/features/locations.php:59 app/features/mec.php:200
1783
- #: app/features/mec/meta_boxes/filter.php:87 app/libraries/main.php:4154
1784
  msgid "Locations"
1785
  msgstr ""
1786
 
@@ -1851,7 +1968,7 @@ msgstr ""
1851
  msgid "eg. City Hall"
1852
  msgstr ""
1853
 
1854
- #: app/features/locations.php:298 app/features/mec/settings.php:896
1855
  #: app/widgets/single.php:115
1856
  msgid "Event Location"
1857
  msgstr ""
@@ -1875,7 +1992,7 @@ msgid "Don't show map in single event page"
1875
  msgstr ""
1876
 
1877
  #: app/features/mec.php:201 app/features/mec/meta_boxes/filter.php:104
1878
- #: app/features/organizers.php:59 app/libraries/main.php:4156
1879
  msgid "Organizers"
1880
  msgstr ""
1881
 
@@ -1947,14 +2064,11 @@ msgid "%s - Most Powerful & Easy to Use Events Management System"
1947
  msgstr ""
1948
 
1949
  #: app/features/mec/dashboard.php:61
1950
- msgid "Modern Event Calendar"
1951
- msgstr ""
1952
-
1953
- #: app/features/mec/dashboard.php:61
1954
- msgid "Modern Event Calendar (Lite)"
1955
  msgstr ""
1956
 
1957
  #: app/features/mec/dashboard.php:63 app/libraries/factory.php:191
 
1958
  msgid "Rate the plugin ★★★★★"
1959
  msgstr ""
1960
 
@@ -2018,7 +2132,7 @@ msgstr ""
2018
  msgid "OPEN A TICKET"
2019
  msgstr ""
2020
 
2021
- #: app/features/mec/dashboard.php:160 app/features/mec/settings.php:395
2022
  msgid "Upcoming Events"
2023
  msgstr ""
2024
 
@@ -2069,21 +2183,21 @@ msgstr ""
2069
 
2070
  #: app/features/mec/gateways.php:52 app/features/mec/messages.php:52
2071
  #: app/features/mec/notifications.php:51 app/features/mec/regform.php:50
2072
- #: app/features/mec/settings.php:222 app/features/mec/styles.php:52
2073
  #: app/features/mec/styling.php:78 app/features/mec/support.php:50
2074
  msgid "Styling Options"
2075
  msgstr ""
2076
 
2077
  #: app/features/mec/gateways.php:59 app/features/mec/messages.php:59
2078
  #: app/features/mec/notifications.php:58 app/features/mec/regform.php:57
2079
- #: app/features/mec/settings.php:229 app/features/mec/styles.php:59
2080
  #: app/features/mec/styling.php:85 app/features/mec/support.php:57
2081
  msgid "Custom CSS"
2082
  msgstr ""
2083
 
2084
  #: app/features/mec/gateways.php:66 app/features/mec/messages.php:66
2085
  #: app/features/mec/messages.php:90 app/features/mec/notifications.php:65
2086
- #: app/features/mec/regform.php:64 app/features/mec/settings.php:236
2087
  #: app/features/mec/styles.php:66 app/features/mec/styling.php:92
2088
  #: app/features/mec/support.php:64
2089
  msgid "Messages"
@@ -2091,7 +2205,7 @@ msgstr ""
2091
 
2092
  #: app/features/mec/gateways.php:73 app/features/mec/messages.php:73
2093
  #: app/features/mec/notifications.php:72 app/features/mec/regform.php:71
2094
- #: app/features/mec/settings.php:243 app/features/mec/styles.php:73
2095
  #: app/features/mec/styling.php:99 app/features/mec/support.php:71
2096
  #: app/features/mec/support.php:84
2097
  msgid "Support"
@@ -2104,9 +2218,9 @@ msgstr ""
2104
  #: app/features/mec/notifications.php:425
2105
  #: app/features/mec/notifications.php:433 app/features/mec/regform.php:130
2106
  #: app/features/mec/regform.php:203 app/features/mec/regform.php:211
2107
- #: app/features/mec/settings.php:251 app/features/mec/settings.php:1316
2108
- #: app/features/mec/settings.php:1324 app/features/mec/settings.php:1368
2109
- #: app/features/mec/settings.php:1381 app/features/mec/styles.php:96
2110
  #: app/features/mec/styles.php:136 app/features/mec/styles.php:144
2111
  #: app/features/mec/styling.php:262 app/features/mec/styling.php:327
2112
  #: app/features/mec/styling.php:335
@@ -2115,14 +2229,14 @@ msgstr ""
2115
 
2116
  #: app/features/mec/gateways.php:130 app/features/mec/messages.php:137
2117
  #: app/features/mec/notifications.php:413 app/features/mec/regform.php:190
2118
- #: app/features/mec/settings.php:1349 app/features/mec/styles.php:123
2119
  #: app/features/mec/styling.php:313
2120
  msgid "Saved"
2121
  msgstr ""
2122
 
2123
  #: app/features/mec/gateways.php:131 app/features/mec/messages.php:138
2124
  #: app/features/mec/notifications.php:414 app/features/mec/regform.php:191
2125
- #: app/features/mec/settings.php:1350 app/features/mec/styles.php:124
2126
  #: app/features/mec/styling.php:314
2127
  msgid "Settings Saved!"
2128
  msgstr ""
@@ -2410,13 +2524,13 @@ msgstr ""
2410
 
2411
  #: app/features/mec/meta_boxes/display_options.php:297
2412
  #: app/features/mec/meta_boxes/display_options.php:313
2413
- #: app/libraries/main.php:324 app/libraries/main.php:1162
2414
  msgid "List View"
2415
  msgstr ""
2416
 
2417
  #: app/features/mec/meta_boxes/display_options.php:298
2418
  #: app/features/mec/meta_boxes/display_options.php:323
2419
- #: app/libraries/main.php:328 app/libraries/main.php:1156
2420
  msgid "Yearly View"
2421
  msgstr ""
2422
 
@@ -2427,13 +2541,13 @@ msgstr ""
2427
 
2428
  #: app/features/mec/meta_boxes/display_options.php:300
2429
  #: app/features/mec/meta_boxes/display_options.php:343
2430
- #: app/libraries/main.php:331 app/libraries/main.php:1158
2431
  msgid "Weekly View"
2432
  msgstr ""
2433
 
2434
  #: app/features/mec/meta_boxes/display_options.php:301
2435
  #: app/features/mec/meta_boxes/display_options.php:353
2436
- #: app/libraries/main.php:330 app/libraries/main.php:1159
2437
  msgid "Daily View"
2438
  msgstr ""
2439
 
@@ -2737,8 +2851,8 @@ msgstr ""
2737
  #: app/features/mec/meta_boxes/search_form.php:449
2738
  #: app/features/mec/meta_boxes/search_form.php:456
2739
  #: app/features/mec/meta_boxes/search_form.php:463
2740
- #: app/features/mec/settings.php:309 app/features/mec/settings.php:407
2741
- #: app/features/mec/settings.php:591
2742
  msgid "Disabled"
2743
  msgstr ""
2744
 
@@ -3021,7 +3135,7 @@ msgstr ""
3021
  msgid "Email/Booking verification link."
3022
  msgstr ""
3023
 
3024
- #: app/features/mec/notifications.php:189 app/features/mec/settings.php:1044
3025
  msgid "Booking Confirmation"
3026
  msgstr ""
3027
 
@@ -3098,7 +3212,7 @@ msgstr ""
3098
  msgid "Status of event"
3099
  msgstr ""
3100
 
3101
- #: app/features/mec/notifications.php:355 app/features/mec/settings.php:938
3102
  msgid "Event Note"
3103
  msgstr ""
3104
 
@@ -3110,501 +3224,505 @@ msgstr ""
3110
  msgid "Archive Page Options"
3111
  msgstr ""
3112
 
3113
- #: app/features/mec/settings.php:90 app/features/mec/settings.php:656
3114
  msgid "Export Module Options"
3115
  msgstr ""
3116
 
3117
- #: app/features/mec/settings.php:96 app/features/mec/settings.php:683
3118
  msgid "Local Time Module"
3119
  msgstr ""
3120
 
3121
- #: app/features/mec/settings.php:102 app/features/mec/settings.php:695
3122
  msgid "QR Code Module"
3123
  msgstr ""
3124
 
3125
- #: app/features/mec/settings.php:108 app/features/mec/settings.php:713
3126
  #: app/widgets/single.php:147
3127
  msgid "Weather Module"
3128
  msgstr ""
3129
 
3130
- #: app/features/mec/settings.php:144 app/features/mec/settings.php:968
 
 
 
 
3131
  msgid "Additional Organizers"
3132
  msgstr ""
3133
 
3134
- #: app/features/mec/settings.php:162 app/features/mec/settings.php:1085
3135
  msgid "Taxes / Fees"
3136
  msgstr ""
3137
 
3138
- #: app/features/mec/settings.php:168 app/features/mec/settings.php:1150
3139
  msgid "Ticket Variations & Options"
3140
  msgstr ""
3141
 
3142
- #: app/features/mec/settings.php:268
3143
  msgid "Time Format"
3144
  msgstr ""
3145
 
3146
- #: app/features/mec/settings.php:271
3147
  msgid "12 hours format with AM/PM"
3148
  msgstr ""
3149
 
3150
- #: app/features/mec/settings.php:272
3151
  msgid "24 hours format"
3152
  msgstr ""
3153
 
3154
- #: app/features/mec/settings.php:274 app/features/mec/settings.php:287
3155
  msgid ""
3156
  "This option is for showing start/end time of events on frontend of website."
3157
  msgstr ""
3158
 
3159
- #: app/features/mec/settings.php:279
3160
  msgid "Hide Events"
3161
  msgstr ""
3162
 
3163
- #: app/features/mec/settings.php:282
3164
  msgid "On Event Start"
3165
  msgstr ""
3166
 
3167
- #: app/features/mec/settings.php:283
3168
  msgid "+1 Hour after start"
3169
  msgstr ""
3170
 
3171
- #: app/features/mec/settings.php:284
3172
  msgid "+2 Hours after start"
3173
  msgstr ""
3174
 
3175
- #: app/features/mec/settings.php:285
3176
  msgid "On Event End"
3177
  msgstr ""
3178
 
3179
- #: app/features/mec/settings.php:293
3180
  msgid "Multiple Day Events"
3181
  msgstr ""
3182
 
3183
- #: app/features/mec/settings.php:296
3184
  msgid "Show only first day on List/Grid/Slider skins"
3185
  msgstr ""
3186
 
3187
- #: app/features/mec/settings.php:297
3188
  msgid "Show only first day on all skins"
3189
  msgstr ""
3190
 
3191
- #: app/features/mec/settings.php:298
3192
  msgid "Show all days"
3193
  msgstr ""
3194
 
3195
- #: app/features/mec/settings.php:300
3196
  msgid ""
3197
  "For showing all days of multiple day events on frontend or only show the "
3198
  "first day."
3199
  msgstr ""
3200
 
3201
- #: app/features/mec/settings.php:306
3202
  msgid "Remove MEC Data on Plugin Uninstall"
3203
  msgstr ""
3204
 
3205
- #: app/features/mec/settings.php:310
3206
  msgid "Enabled"
3207
  msgstr ""
3208
 
3209
- #: app/features/mec/settings.php:316
3210
  msgid "Exclude Date Suffix"
3211
  msgstr ""
3212
 
3213
- #: app/features/mec/settings.php:319
3214
  msgid "Remove suffix from calendars"
3215
  msgstr ""
3216
 
3217
- #: app/features/mec/settings.php:326 app/libraries/main.php:4163
3218
  msgid "Weekdays"
3219
  msgstr ""
3220
 
3221
- #: app/features/mec/settings.php:334
3222
  msgid ""
3223
  "Proceed with caution. Default is set to Monday, Tuesday, Wednesday, Thursday "
3224
  "and Friday."
3225
  msgstr ""
3226
 
3227
- #: app/features/mec/settings.php:341
3228
  msgid "Weekends"
3229
  msgstr ""
3230
 
3231
- #: app/features/mec/settings.php:349
3232
  msgid "Proceed with caution. Default is set to Saturday and Sunday."
3233
  msgstr ""
3234
 
3235
- #: app/features/mec/settings.php:357
3236
  msgid "Archive Pages"
3237
  msgstr ""
3238
 
3239
- #: app/features/mec/settings.php:360
3240
  msgid "Archive Page Title"
3241
  msgstr ""
3242
 
3243
- #: app/features/mec/settings.php:363
3244
  msgid "Default value is Events"
3245
  msgstr ""
3246
 
3247
- #: app/features/mec/settings.php:368
3248
  msgid "Archive Page Skin"
3249
  msgstr ""
3250
 
3251
- #: app/features/mec/settings.php:375
3252
  msgid "Default value is Calendar/Monthly View"
3253
  msgstr ""
3254
 
3255
- #: app/features/mec/settings.php:380
3256
  msgid "Category Page Skin"
3257
  msgstr ""
3258
 
3259
- #: app/features/mec/settings.php:387
3260
  msgid "Default value is List View"
3261
  msgstr ""
3262
 
3263
- #: app/features/mec/settings.php:392
3264
  msgid "Category Events Method"
3265
  msgstr ""
3266
 
3267
- #: app/features/mec/settings.php:396
3268
  msgid "Expired Events"
3269
  msgstr ""
3270
 
3271
- #: app/features/mec/settings.php:398
3272
  msgid "Default value is Upcoming Events"
3273
  msgstr ""
3274
 
3275
- #: app/features/mec/settings.php:403
3276
  msgid "Events Archive Status"
3277
  msgstr ""
3278
 
3279
- #: app/features/mec/settings.php:406
3280
  msgid "Enabled (Recommended)"
3281
  msgstr ""
3282
 
3283
- #: app/features/mec/settings.php:409
3284
  msgid ""
3285
  "If you disable it, then you should create a page as archive page of MEC. "
3286
  "Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
3287
  "MEC rewrite rules."
3288
  msgstr ""
3289
 
3290
- #: app/features/mec/settings.php:419
3291
  msgid "Main Slug"
3292
  msgstr ""
3293
 
3294
- #: app/features/mec/settings.php:422
3295
  msgid ""
3296
  "Default value is events. Valid characters are lowercase a-z, - character and "
3297
  "numbers."
3298
  msgstr ""
3299
 
3300
- #: app/features/mec/settings.php:426
3301
  msgid "Category Slug"
3302
  msgstr ""
3303
 
3304
- #: app/features/mec/settings.php:429
3305
  msgid ""
3306
  "It's slug of MEC categories, you can change it to events-cat or something "
3307
  "else. Default value is mec-category. Valid characters are lowercase a-z, - "
3308
  "character and numbers."
3309
  msgstr ""
3310
 
3311
- #: app/features/mec/settings.php:439
3312
  msgid "Single Event Date Format"
3313
  msgstr ""
3314
 
3315
- #: app/features/mec/settings.php:442 app/features/mec/settings.php:804
3316
  msgid "Default is M d Y"
3317
  msgstr ""
3318
 
3319
- #: app/features/mec/settings.php:446
3320
  msgid "Date Method"
3321
  msgstr ""
3322
 
3323
- #: app/features/mec/settings.php:449
3324
  msgid "Next occurrence date"
3325
  msgstr ""
3326
 
3327
- #: app/features/mec/settings.php:450
3328
  msgid "Referred date"
3329
  msgstr ""
3330
 
3331
- #: app/features/mec/settings.php:452
3332
  msgid ""
3333
  "\"Referred date\" shows the event date based on referred date in event list."
3334
  msgstr ""
3335
 
3336
- #: app/features/mec/settings.php:456
3337
  msgid "Single Event Style"
3338
  msgstr ""
3339
 
3340
- #: app/features/mec/settings.php:459
3341
  msgid "Default Style"
3342
  msgstr ""
3343
 
3344
- #: app/features/mec/settings.php:460
3345
  msgid "Modern Style"
3346
  msgstr ""
3347
 
3348
- #: app/features/mec/settings.php:462
3349
  msgid "Choose your single event style."
3350
  msgstr ""
3351
 
3352
- #: app/features/mec/settings.php:466
3353
  msgid "Booking Style"
3354
  msgstr ""
3355
 
3356
- #: app/features/mec/settings.php:469 app/features/mec/settings.php:580
3357
  msgid "Default"
3358
  msgstr ""
3359
 
3360
- #: app/features/mec/settings.php:470
3361
  msgid "Modal"
3362
  msgstr ""
3363
 
3364
- #: app/features/mec/settings.php:472
3365
  msgid "Choose your Booking style."
3366
  msgstr ""
3367
 
3368
- #: app/features/mec/settings.php:480
3369
  msgid "Currency"
3370
  msgstr ""
3371
 
3372
- #: app/features/mec/settings.php:490
3373
  msgid "Currency Sign"
3374
  msgstr ""
3375
 
3376
- #: app/features/mec/settings.php:493
3377
  msgid "Default value will be \"currency\" if you leave it empty."
3378
  msgstr ""
3379
 
3380
- #: app/features/mec/settings.php:497
3381
  msgid "Currency Position"
3382
  msgstr ""
3383
 
3384
- #: app/features/mec/settings.php:500
3385
  msgid "Before $10"
3386
  msgstr ""
3387
 
3388
- #: app/features/mec/settings.php:501
3389
  msgid "After 10$"
3390
  msgstr ""
3391
 
3392
- #: app/features/mec/settings.php:506
3393
  msgid "Thousand Separator"
3394
  msgstr ""
3395
 
3396
- #: app/features/mec/settings.php:512
3397
  msgid "Decimal Separator"
3398
  msgstr ""
3399
 
3400
- #: app/features/mec/settings.php:522
3401
  msgid "No decimal"
3402
  msgstr ""
3403
 
3404
- #: app/features/mec/settings.php:531
3405
  msgid "Speakers Options"
3406
  msgstr ""
3407
 
3408
- #: app/features/mec/settings.php:537
3409
  msgid "Enable speakers feature"
3410
  msgstr ""
3411
 
3412
- #: app/features/mec/settings.php:553
3413
  msgid "Show Google Maps on event page"
3414
  msgstr ""
3415
 
3416
- #: app/features/mec/settings.php:558 app/features/mec/settings.php:726
3417
- #: app/features/mec/settings.php:1248
3418
  msgid "API Key"
3419
  msgstr ""
3420
 
3421
- #: app/features/mec/settings.php:561 app/features/mec/settings.php:1251
3422
- #: app/features/mec/settings.php:1258
3423
  msgid "Required!"
3424
  msgstr ""
3425
 
3426
- #: app/features/mec/settings.php:565
3427
  msgid "Zoom level"
3428
  msgstr ""
3429
 
3430
- #: app/features/mec/settings.php:572
3431
  msgid ""
3432
  "For Google Maps module in single event page. In Google Maps skin, it will "
3433
  "caculate the zoom level automatically based on event boundaries."
3434
  msgstr ""
3435
 
3436
- #: app/features/mec/settings.php:576
3437
  msgid "Google Maps Style"
3438
  msgstr ""
3439
 
3440
- #: app/features/mec/settings.php:588
3441
  msgid "Direction on single event"
3442
  msgstr ""
3443
 
3444
- #: app/features/mec/settings.php:592
3445
  msgid "Simple Method"
3446
  msgstr ""
3447
 
3448
- #: app/features/mec/settings.php:593
3449
  msgid "Advanced Method"
3450
  msgstr ""
3451
 
3452
- #: app/features/mec/settings.php:598
3453
  msgid "Lightbox Date Format"
3454
  msgstr ""
3455
 
3456
- #: app/features/mec/settings.php:601
3457
  msgid "Default value is M d Y"
3458
  msgstr ""
3459
 
3460
- #: app/features/mec/settings.php:605
3461
  msgid "Google Maps API"
3462
  msgstr ""
3463
 
3464
- #: app/features/mec/settings.php:609
3465
  msgid "Don't load Google Maps API library"
3466
  msgstr ""
3467
 
3468
- #: app/features/mec/settings.php:611
3469
  msgid "Check it only if another plugin/theme is loading the Google Maps API"
3470
  msgstr ""
3471
 
3472
- #: app/features/mec/settings.php:623
3473
  msgid "Enable Google Recaptcha"
3474
  msgstr ""
3475
 
3476
- #: app/features/mec/settings.php:630
3477
  msgid "Enable on booking form"
3478
  msgstr ""
3479
 
3480
- #: app/features/mec/settings.php:636
3481
- msgid "Enable on \"Frontend Event Submittion\" form"
3482
  msgstr ""
3483
 
3484
- #: app/features/mec/settings.php:640
3485
  msgid "Site Key"
3486
  msgstr ""
3487
 
3488
- #: app/features/mec/settings.php:646
3489
  msgid "Secret Key"
3490
  msgstr ""
3491
 
3492
- #: app/features/mec/settings.php:660
3493
  msgid ""
3494
  "Show export module (iCal export and add to Google calendars) on event page"
3495
  msgstr ""
3496
 
3497
- #: app/features/mec/settings.php:667
3498
  msgid "Google Calendar"
3499
  msgstr ""
3500
 
3501
- #: app/features/mec/settings.php:687
3502
  msgid "Show event time based on local time of visitor on event page"
3503
  msgstr ""
3504
 
3505
- #: app/features/mec/settings.php:703
3506
  msgid "Show QR code of event in details page and booking invoice"
3507
  msgstr ""
3508
 
3509
- #: app/features/mec/settings.php:721
3510
  msgid "Show weather module on event page"
3511
  msgstr ""
3512
 
3513
- #: app/features/mec/settings.php:729
3514
  #, php-format
3515
  msgid "You can get a free API Key from %s"
3516
  msgstr ""
3517
 
3518
- #: app/features/mec/settings.php:741
3519
  msgid "Show countdown module on event page"
3520
  msgstr ""
3521
 
3522
- #: app/features/mec/settings.php:746
3523
  msgid "Countdown Style"
3524
  msgstr ""
3525
 
3526
- #: app/features/mec/settings.php:749
3527
  msgid "Plain Style"
3528
  msgstr ""
3529
 
3530
- #: app/features/mec/settings.php:750
3531
  msgid "Flip Style"
3532
  msgstr ""
3533
 
3534
- #: app/features/mec/settings.php:762
3535
  msgid "Show social network module"
3536
  msgstr ""
3537
 
3538
- #: app/features/mec/settings.php:787
3539
  msgid "Show next event module on event page"
3540
  msgstr ""
3541
 
3542
- #: app/features/mec/settings.php:792
3543
  msgid "Method"
3544
  msgstr ""
3545
 
3546
- #: app/features/mec/settings.php:795
3547
  msgid "Next Occurrence of Current Event"
3548
  msgstr ""
3549
 
3550
- #: app/features/mec/settings.php:796
3551
  msgid "Next Occurrence of Other Events"
3552
  msgstr ""
3553
 
3554
- #: app/features/mec/settings.php:801 app/features/mec/settings.php:991
3555
  msgid "Date Format"
3556
  msgstr ""
3557
 
3558
- #: app/features/mec/settings.php:813
3559
  msgid "Events List Page"
3560
  msgstr ""
3561
 
3562
- #: app/features/mec/settings.php:822 app/features/mec/settings.php:834
3563
  #, php-format
3564
  msgid "Put %s shortcode into the page."
3565
  msgstr ""
3566
 
3567
- #: app/features/mec/settings.php:825
3568
  msgid "Add/Edit Events Page"
3569
  msgstr ""
3570
 
3571
- #: app/features/mec/settings.php:839
3572
  msgid "Enable event submission by guest (Not logged-in) users"
3573
  msgstr ""
3574
 
3575
- #: app/features/mec/settings.php:846
3576
  msgid "Enable mandatory email and name for guest user"
3577
  msgstr ""
3578
 
3579
- #: app/features/mec/settings.php:850
3580
  msgid "Frontend Event Submission Sections"
3581
  msgstr ""
3582
 
3583
- #: app/features/mec/settings.php:872 app/widgets/single.php:119
3584
  msgid "Event Categories"
3585
  msgstr ""
3586
 
3587
- #: app/features/mec/settings.php:878
3588
  msgid "Event Labels"
3589
  msgstr ""
3590
 
3591
- #: app/features/mec/settings.php:890
3592
  msgid "Event Tags"
3593
  msgstr ""
3594
 
3595
- #: app/features/mec/settings.php:902 app/widgets/single.php:123
3596
  msgid "Event Organizer"
3597
  msgstr ""
3598
 
3599
- #: app/features/mec/settings.php:920
3600
  msgid "Booking Options"
3601
  msgstr ""
3602
 
3603
- #: app/features/mec/settings.php:926
3604
  msgid "Fees / Taxes Options"
3605
  msgstr ""
3606
 
3607
- #: app/features/mec/settings.php:940
3608
  #, php-format
3609
  msgid ""
3610
  "Users can put a note for editors while they're submitting the event. Also "
@@ -3612,216 +3730,223 @@ msgid ""
3612
  "users' note in email."
3613
  msgstr ""
3614
 
3615
- #: app/features/mec/settings.php:944
3616
  msgid "Visibility of Note"
3617
  msgstr ""
3618
 
3619
- #: app/features/mec/settings.php:947
3620
  msgid "Always"
3621
  msgstr ""
3622
 
3623
- #: app/features/mec/settings.php:948
3624
  msgid "While event is not published"
3625
  msgstr ""
3626
 
3627
- #: app/features/mec/settings.php:951
3628
  msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
3629
  msgstr ""
3630
 
3631
- #: app/features/mec/settings.php:957
 
 
 
 
 
 
 
3632
  msgid "Exceptional days"
3633
  msgstr ""
3634
 
3635
- #: app/features/mec/settings.php:961
3636
  msgid "Show exceptional days option on Add/Edit events page"
3637
  msgstr ""
3638
 
3639
- #: app/features/mec/settings.php:962
3640
  msgid ""
3641
  "Using this option you can include/exclude certain days to/from event "
3642
  "occurrence dates."
3643
  msgstr ""
3644
 
3645
- #: app/features/mec/settings.php:972
3646
  msgid ""
3647
  "Show additional organizers option on Add/Edit events page and single event "
3648
  "page."
3649
  msgstr ""
3650
 
3651
- #: app/features/mec/settings.php:986
3652
  msgid "Enable booking module"
3653
  msgstr ""
3654
 
3655
- #: app/features/mec/settings.php:994
3656
  msgid "Default is Y-m-d"
3657
  msgstr ""
3658
 
3659
- #: app/features/mec/settings.php:998
3660
  msgid "Maximum Dates"
3661
  msgstr ""
3662
 
3663
- #: app/features/mec/settings.php:1000
3664
  msgid "Default is 6"
3665
  msgstr ""
3666
 
3667
- #: app/features/mec/settings.php:1004
3668
  msgid "Thank You Page"
3669
  msgstr ""
3670
 
3671
- #: app/features/mec/settings.php:1012
3672
  msgid ""
3673
  "User redirects to this page after booking. Leave it empty if you want to "
3674
  "disable it."
3675
  msgstr ""
3676
 
3677
- #: app/features/mec/settings.php:1020
3678
  msgid "Enable Express Attendees Form"
3679
  msgstr ""
3680
 
3681
- #: app/features/mec/settings.php:1022
3682
  msgid ""
3683
  "Users are able to apply first attendee information for other attendees in "
3684
  "the booking form."
3685
  msgstr ""
3686
 
3687
- #: app/features/mec/settings.php:1025
3688
  msgid "Email verification"
3689
  msgstr ""
3690
 
3691
- #: app/features/mec/settings.php:1031
3692
  msgid "Auto verification for free bookings"
3693
  msgstr ""
3694
 
3695
- #: app/features/mec/settings.php:1040
3696
  msgid "Auto verification for paid bookings"
3697
  msgstr ""
3698
 
3699
- #: app/features/mec/settings.php:1050
3700
  msgid "Auto confirmation for free bookings"
3701
  msgstr ""
3702
 
3703
- #: app/features/mec/settings.php:1059
3704
  msgid "Auto confirmation for paid bookings"
3705
  msgstr ""
3706
 
3707
- #: app/features/mec/settings.php:1076
3708
  msgid "Enable coupons module"
3709
  msgstr ""
3710
 
3711
- #: app/features/mec/settings.php:1093
3712
  msgid "Enable taxes / fees module"
3713
  msgstr ""
3714
 
3715
- #: app/features/mec/settings.php:1098
3716
  msgid "Add Fee"
3717
  msgstr ""
3718
 
3719
- #: app/features/mec/settings.php:1158
3720
  msgid "Enable ticket options module"
3721
  msgstr ""
3722
 
3723
- #: app/features/mec/settings.php:1163
3724
  msgid "Add Variation / Option"
3725
  msgstr ""
3726
 
3727
- #: app/features/mec/settings.php:1213
3728
  msgid "Enable BuddyPress Integration"
3729
  msgstr ""
3730
 
3731
- #: app/features/mec/settings.php:1220
3732
  msgid "Show \"Attendees Module\" in event details page"
3733
  msgstr ""
3734
 
3735
- #: app/features/mec/settings.php:1224
3736
  msgid "Attendees Limit"
3737
  msgstr ""
3738
 
3739
- #: app/features/mec/settings.php:1232
3740
  msgid "Add booking activity to user profile"
3741
  msgstr ""
3742
 
3743
- #: app/features/mec/settings.php:1243
3744
  msgid "Enable Mailchimp Integration"
3745
  msgstr ""
3746
 
3747
- #: app/features/mec/settings.php:1255
3748
  msgid "List ID"
3749
  msgstr ""
3750
 
3751
- #: app/features/mec/settings.php:1262
3752
  msgid "Subscription Status"
3753
  msgstr ""
3754
 
3755
- #: app/features/mec/settings.php:1265
3756
  msgid "Subscribe automatically"
3757
  msgstr ""
3758
 
3759
- #: app/features/mec/settings.php:1266
3760
  msgid "Subscribe by verification"
3761
  msgstr ""
3762
 
3763
- #: app/features/mec/settings.php:1268
3764
  msgid ""
3765
  "If you choose \"Subscribe by verification\" then an email will send to user "
3766
  "by mailchimp for subscription verification."
3767
  msgstr ""
3768
 
3769
- #: app/features/mec/settings.php:1278
3770
  #, php-format
3771
  msgid "%s is required to use this section."
3772
  msgstr ""
3773
 
3774
- #: app/features/mec/settings.php:1281
3775
  msgid "Purchase Code"
3776
  msgstr ""
3777
 
3778
- #: app/features/mec/settings.php:1286 app/features/mec/settings.php:1352
3779
- #: app/features/mec/settings.php:1370
3780
  msgid "Verified"
3781
  msgstr ""
3782
 
3783
- #: app/features/mec/settings.php:1288
3784
  msgid "UnVerified"
3785
  msgstr ""
3786
 
3787
- #: app/features/mec/settings.php:1290
3788
  msgid ""
3789
- "Please insert your purchase code validation. read documentation for more "
3790
  "information."
3791
  msgstr ""
3792
 
3793
- #: app/features/mec/settings.php:1293
3794
  msgid "Product Name"
3795
  msgstr ""
3796
 
3797
- #: app/features/mec/settings.php:1296
3798
  msgid "1 License for MEC Plugin"
3799
  msgstr ""
3800
 
3801
- #: app/features/mec/settings.php:1297
3802
  msgid "5 License for MEC Plugin"
3803
  msgstr ""
3804
 
3805
- #: app/features/mec/settings.php:1298
3806
  msgid "10 License for MEC Plugin"
3807
  msgstr ""
3808
 
3809
- #: app/features/mec/settings.php:1305
3810
  msgid "MEC Deactivation"
3811
  msgstr ""
3812
 
3813
- #: app/features/mec/settings.php:1307
3814
  msgid "Deactivate"
3815
  msgstr ""
3816
 
3817
- #: app/features/mec/settings.php:1309
3818
  msgid ""
3819
  "For deactivation first delete your purchase from above field then press save "
3820
  "after that click on deactivate for deactivate this purchase code from this "
3821
  "domain then you can activate another domain."
3822
  msgstr ""
3823
 
3824
- #: app/features/mec/settings.php:1372
3825
  msgid "Please Refresh Page"
3826
  msgstr ""
3827
 
@@ -3974,7 +4099,7 @@ msgstr ""
3974
  msgid "eg. https://webnus.net"
3975
  msgstr ""
3976
 
3977
- #: app/features/organizers.php:300 app/libraries/main.php:4187
3978
  #: app/skins/single.php:194
3979
  msgid "Other Organizers"
3980
  msgstr ""
@@ -3984,8 +4109,47 @@ msgid ""
3984
  "You can select extra organizers in addition to main organizer if you like."
3985
  msgstr ""
3986
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3987
  #: app/features/speakers.php:56 app/features/speakers.php:242
3988
- #: app/libraries/main.php:4159
3989
  msgid "Speaker"
3990
  msgstr ""
3991
 
@@ -4015,7 +4179,7 @@ msgid "Insert URL of Facebook Page"
4015
  msgstr ""
4016
 
4017
  #: app/features/speakers.php:135 app/features/speakers.php:187
4018
- #: app/libraries/main.php:1063
4019
  msgid "Google+"
4020
  msgstr ""
4021
 
@@ -4036,12 +4200,12 @@ msgstr ""
4036
  msgid "%s Price"
4037
  msgstr ""
4038
 
4039
- #: app/libraries/book.php:537
4040
  msgid "Discount"
4041
  msgstr ""
4042
 
4043
- #: app/libraries/book.php:625 app/modules/booking/default.php:274
4044
- #: app/modules/booking/default.php:369
4045
  msgid "Download Invoice"
4046
  msgstr ""
4047
 
@@ -4050,10 +4214,17 @@ msgid "M.E. Calendar"
4050
  msgstr ""
4051
 
4052
  #: app/libraries/factory.php:190
 
4053
  msgid "Upgrade to Pro Version"
4054
  msgstr ""
4055
 
 
 
 
 
 
4056
  #: app/libraries/factory.php:213
 
4057
  msgid "Upgrade"
4058
  msgstr ""
4059
 
@@ -4109,420 +4280,426 @@ msgstr ""
4109
  msgid "There is no excerpt because this is a protected post."
4110
  msgstr ""
4111
 
4112
- #: app/libraries/main.php:325 app/libraries/main.php:1163
4113
  msgid "Grid View"
4114
  msgstr ""
4115
 
4116
- #: app/libraries/main.php:326 app/libraries/main.php:1164
4117
  msgid "Agenda View"
4118
  msgstr ""
4119
 
4120
- #: app/libraries/main.php:327 app/libraries/main.php:1155
4121
  msgid "Full Calendar"
4122
  msgstr ""
4123
 
4124
- #: app/libraries/main.php:329 app/libraries/main.php:1157
4125
  msgid "Calendar/Monthly View"
4126
  msgstr ""
4127
 
4128
- #: app/libraries/main.php:332 app/libraries/main.php:1160
4129
  msgid "Timetable View"
4130
  msgstr ""
4131
 
4132
- #: app/libraries/main.php:333 app/libraries/main.php:1161
4133
  msgid "Masonry View"
4134
  msgstr ""
4135
 
4136
- #: app/libraries/main.php:334 app/libraries/main.php:1165
4137
  msgid "Map View"
4138
  msgstr ""
4139
 
4140
- #: app/libraries/main.php:335
4141
  msgid "Cover View"
4142
  msgstr ""
4143
 
4144
- #: app/libraries/main.php:336
4145
  msgid "Countdown View"
4146
  msgstr ""
4147
 
4148
- #: app/libraries/main.php:337
4149
  msgid "Available Spot"
4150
  msgstr ""
4151
 
4152
- #: app/libraries/main.php:338
4153
  msgid "Carousel View"
4154
  msgstr ""
4155
 
4156
- #: app/libraries/main.php:339
4157
  msgid "Slider View"
4158
  msgstr ""
4159
 
4160
- #: app/libraries/main.php:376 app/libraries/main.php:4165
4161
  msgid "SU"
4162
  msgstr ""
4163
 
4164
- #: app/libraries/main.php:377 app/libraries/main.php:4166
4165
  msgid "MO"
4166
  msgstr ""
4167
 
4168
- #: app/libraries/main.php:378 app/libraries/main.php:4167
4169
  msgid "TU"
4170
  msgstr ""
4171
 
4172
- #: app/libraries/main.php:379 app/libraries/main.php:4168
4173
  msgid "WE"
4174
  msgstr ""
4175
 
4176
- #: app/libraries/main.php:380 app/libraries/main.php:4169
4177
  msgid "TH"
4178
  msgstr ""
4179
 
4180
- #: app/libraries/main.php:381 app/libraries/main.php:4170
4181
  msgid "FR"
4182
  msgstr ""
4183
 
4184
- #: app/libraries/main.php:382 app/libraries/main.php:4171
4185
  msgid "SA"
4186
  msgstr ""
4187
 
4188
- #: app/libraries/main.php:1021
4189
  msgid "Events at this location"
4190
  msgstr ""
4191
 
4192
- #: app/libraries/main.php:1021
4193
  msgid "Event at this location"
4194
  msgstr ""
4195
 
4196
- #: app/libraries/main.php:1062
4197
  msgid "Facebook"
4198
  msgstr ""
4199
 
4200
- #: app/libraries/main.php:1064
4201
  msgid "Twitter"
4202
  msgstr ""
4203
 
4204
- #: app/libraries/main.php:1065 app/libraries/main.php:1118
4205
  msgid "Linkedin"
4206
  msgstr ""
4207
 
4208
- #: app/libraries/main.php:1066 app/libraries/main.php:1144
4209
  msgid "VK"
4210
  msgstr ""
4211
 
4212
- #: app/libraries/main.php:1082
4213
  msgid "Share on Facebook"
4214
  msgstr ""
4215
 
4216
- #: app/libraries/main.php:1094
4217
  msgid "Google Plus"
4218
  msgstr ""
4219
 
4220
- #: app/libraries/main.php:1106
4221
  msgid "Tweet"
4222
  msgstr ""
4223
 
4224
- #: app/libraries/main.php:1500
4225
  msgid "Your booking successfully verified."
4226
  msgstr ""
4227
 
4228
- #: app/libraries/main.php:1501
4229
  msgid "Your booking cannot verify!"
4230
  msgstr ""
4231
 
4232
- #: app/libraries/main.php:1513
4233
  msgid "Your booking successfully canceled."
4234
  msgstr ""
4235
 
4236
- #: app/libraries/main.php:1514
4237
  msgid "Your booking cannot be canceled."
4238
  msgstr ""
4239
 
4240
- #: app/libraries/main.php:1518
4241
  msgid "You canceled the payment successfully."
4242
  msgstr ""
4243
 
4244
- #: app/libraries/main.php:1522
4245
  msgid "You returned from payment gateway successfully."
4246
  msgstr ""
4247
 
4248
- #: app/libraries/main.php:1546
4249
  msgid "Cannot find the booking!"
4250
  msgstr ""
4251
 
4252
- #: app/libraries/main.php:1546
4253
  msgid "Booking is invalid."
4254
  msgstr ""
4255
 
4256
- #: app/libraries/main.php:1567
4257
  #, php-format
4258
  msgid "%s Invoice"
4259
  msgstr ""
4260
 
4261
- #: app/libraries/main.php:1588
4262
  msgid "Transaction ID"
4263
  msgstr ""
4264
 
4265
- #: app/libraries/main.php:1597
4266
- msgid "Attendees"
4267
- msgstr ""
4268
-
4269
- #: app/libraries/main.php:1611 app/libraries/main.php:4185
4270
- msgid "Ticket"
4271
- msgstr ""
4272
-
4273
- #: app/libraries/main.php:1641
4274
  msgid "Billing"
4275
  msgstr ""
4276
 
4277
- #: app/libraries/main.php:1652
4278
  msgid "Total"
4279
  msgstr ""
4280
 
4281
- #: app/libraries/main.php:1685
4282
  msgid "Security nonce is not valid."
4283
  msgstr ""
4284
 
4285
- #: app/libraries/main.php:1685 app/libraries/main.php:1717
4286
  msgid "iCal export stopped!"
4287
  msgstr ""
4288
 
4289
- #: app/libraries/main.php:1717
4290
  msgid "Request is not valid."
4291
  msgstr ""
4292
 
4293
- #: app/libraries/main.php:2037 app/libraries/main.php:2066
4294
- #: app/libraries/main.php:2095 app/libraries/main.php:2124
4295
- #: app/libraries/main.php:2153 app/libraries/main.php:2177
4296
- #: app/libraries/main.php:2221 app/libraries/main.php:2265
4297
- #: app/libraries/main.php:2312 app/libraries/main.php:2358
4298
  msgid "Sort"
4299
  msgstr ""
4300
 
4301
- #: app/libraries/main.php:2043 app/libraries/main.php:2072
4302
- #: app/libraries/main.php:2101 app/libraries/main.php:2130
4303
- #: app/libraries/main.php:2183 app/libraries/main.php:2227
4304
- #: app/libraries/main.php:2271 app/libraries/main.php:2318
4305
  msgid "Required Field"
4306
  msgstr ""
4307
 
4308
- #: app/libraries/main.php:2049 app/libraries/main.php:2078
4309
- #: app/libraries/main.php:2107 app/libraries/main.php:2136
4310
- #: app/libraries/main.php:2189 app/libraries/main.php:2233
4311
- #: app/libraries/main.php:2277 app/libraries/main.php:2324
4312
  msgid "Insert a label for this field"
4313
  msgstr ""
4314
 
4315
- #: app/libraries/main.php:2159
4316
  msgid "HTML and shortcode are allowed."
4317
  msgstr ""
4318
 
4319
- #: app/libraries/main.php:2202 app/libraries/main.php:2246
4320
- #: app/libraries/main.php:2290
4321
  msgid "Option"
4322
  msgstr ""
4323
 
4324
- #: app/libraries/main.php:2324
4325
  #, php-format
4326
  msgid "Instead of %s, the page title with a link will be show."
4327
  msgstr ""
4328
 
4329
- #: app/libraries/main.php:2326
4330
  msgid "Agreement Page"
4331
  msgstr ""
4332
 
4333
- #: app/libraries/main.php:2335
4334
- msgid "Status"
4335
- msgstr ""
4336
-
4337
- #: app/libraries/main.php:2337
4338
  msgid "Checked by default"
4339
  msgstr ""
4340
 
4341
- #: app/libraries/main.php:2338
4342
  msgid "Unchecked by default"
4343
  msgstr ""
4344
 
4345
- #: app/libraries/main.php:2360
4346
  msgid "Insert a label for this option"
4347
  msgstr ""
4348
 
4349
- #: app/libraries/main.php:2375
4350
  msgid "Free"
4351
  msgstr ""
4352
 
4353
- #: app/libraries/main.php:3027
4354
  #, php-format
4355
  msgid "Copy of %s"
4356
  msgstr ""
4357
 
4358
- #: app/libraries/main.php:3665
4359
  msgid "Booked an event."
4360
  msgstr ""
4361
 
4362
- #: app/libraries/main.php:3706
4363
  #, php-format
4364
  msgid "%s booked %s event."
4365
  msgstr ""
4366
 
4367
- #: app/libraries/main.php:4148
4368
  msgid "Taxonomies"
4369
  msgstr ""
4370
 
4371
- #: app/libraries/main.php:4150
4372
  msgid "Category Plural Label"
4373
  msgstr ""
4374
 
4375
- #: app/libraries/main.php:4151
4376
  msgid "Category Singular Label"
4377
  msgstr ""
4378
 
4379
- #: app/libraries/main.php:4152
4380
  msgid "Label Plural Label"
4381
  msgstr ""
4382
 
4383
- #: app/libraries/main.php:4153
4384
  msgid "Label Singular Label"
4385
  msgstr ""
4386
 
4387
- #: app/libraries/main.php:4153
4388
  msgid "label"
4389
  msgstr ""
4390
 
4391
- #: app/libraries/main.php:4154
4392
  msgid "Location Plural Label"
4393
  msgstr ""
4394
 
4395
- #: app/libraries/main.php:4155
4396
  msgid "Location Singular Label"
4397
  msgstr ""
4398
 
4399
- #: app/libraries/main.php:4156
4400
  msgid "Organizer Plural Label"
4401
  msgstr ""
4402
 
4403
- #: app/libraries/main.php:4157
4404
  msgid "Organizer Singular Label"
4405
  msgstr ""
4406
 
4407
- #: app/libraries/main.php:4158
4408
  msgid "Speaker Plural Label"
4409
  msgstr ""
4410
 
4411
- #: app/libraries/main.php:4159
4412
  msgid "Speaker Singular Label"
4413
  msgstr ""
4414
 
4415
- #: app/libraries/main.php:4165
4416
  msgid "Sunday abbreviation"
4417
  msgstr ""
4418
 
4419
- #: app/libraries/main.php:4166
4420
  msgid "Monday abbreviation"
4421
  msgstr ""
4422
 
4423
- #: app/libraries/main.php:4167
4424
  msgid "Tuesday abbreviation"
4425
  msgstr ""
4426
 
4427
- #: app/libraries/main.php:4168
4428
  msgid "Wednesday abbreviation"
4429
  msgstr ""
4430
 
4431
- #: app/libraries/main.php:4169
4432
  msgid "Thursday abbreviation"
4433
  msgstr ""
4434
 
4435
- #: app/libraries/main.php:4170
4436
  msgid "Friday abbreviation"
4437
  msgstr ""
4438
 
4439
- #: app/libraries/main.php:4171
4440
  msgid "Saturday abbreviation"
4441
  msgstr ""
4442
 
4443
- #: app/libraries/main.php:4175
4444
  msgid "Others"
4445
  msgstr ""
4446
 
4447
- #: app/libraries/main.php:4177
4448
  msgid "Booking Success Message"
4449
  msgstr ""
4450
 
4451
- #: app/libraries/main.php:4177
4452
  msgid ""
4453
  "Thanks for your booking. Your tickets booked, booking verification might be "
4454
  "needed, please check your email."
4455
  msgstr ""
4456
 
4457
- #: app/libraries/main.php:4178 app/widgets/single.php:131
4458
  msgid "Register Button"
4459
  msgstr ""
4460
 
4461
- #: app/libraries/main.php:4178 app/skins/available_spot/tpl.php:164
4462
  #: app/skins/carousel/render.php:79 app/skins/carousel/render.php:104
4463
  #: app/skins/grid/render.php:76 app/skins/grid/render.php:107
4464
  #: app/skins/grid/render.php:139 app/skins/grid/render.php:167
4465
  #: app/skins/list/render.php:59 app/skins/list/render.php:140
4466
- #: app/skins/masonry/render.php:94 app/skins/single/default.php:217
4467
- #: app/skins/single/default.php:422 app/skins/single/m1.php:126
4468
- #: app/skins/single/m2.php:58 app/skins/single/modern.php:58
4469
- #: app/skins/slider/render.php:75 app/skins/slider/render.php:96
4470
- #: app/skins/slider/render.php:116 app/skins/slider/render.php:136
4471
- #: app/skins/slider/render.php:167
 
 
4472
  msgid "REGISTER"
4473
  msgstr ""
4474
 
4475
- #: app/libraries/main.php:4179
4476
  msgid "View Detail Button"
4477
  msgstr ""
4478
 
4479
- #: app/libraries/main.php:4179 app/skins/carousel/render.php:79
4480
  #: app/skins/carousel/render.php:104 app/skins/grid/render.php:76
4481
  #: app/skins/grid/render.php:107 app/skins/grid/render.php:139
4482
  #: app/skins/grid/render.php:167 app/skins/list/render.php:59
4483
- #: app/skins/list/render.php:140 app/skins/masonry/render.php:94
4484
  #: app/skins/slider/render.php:75 app/skins/slider/render.php:96
4485
  #: app/skins/slider/render.php:116 app/skins/slider/render.php:136
4486
  #: app/skins/slider/render.php:167
4487
  msgid "View Detail"
4488
  msgstr ""
4489
 
4490
- #: app/libraries/main.php:4180
4491
  msgid "Event Detail Button"
4492
  msgstr ""
4493
 
4494
- #: app/libraries/main.php:4180 app/skins/countdown/tpl.php:178
4495
  msgid "Event Detail"
4496
  msgstr ""
4497
 
4498
- #: app/libraries/main.php:4182
4499
  msgid "More Info Link"
4500
  msgstr ""
4501
 
4502
- #: app/libraries/main.php:4185
4503
  msgid "Ticket (Singular)"
4504
  msgstr ""
4505
 
4506
- #: app/libraries/main.php:4186
4507
  msgid "Tickets (Plural)"
4508
  msgstr ""
4509
 
4510
- #: app/libraries/main.php:4252
4511
  msgid "EventON"
4512
  msgstr ""
4513
 
4514
- #: app/libraries/main.php:4253
4515
  msgid "The Events Calendar"
4516
  msgstr ""
4517
 
4518
- #: app/libraries/main.php:4254
4519
  msgid "Events Schedule WP Plugin"
4520
  msgstr ""
4521
 
4522
- #: app/libraries/main.php:4255
4523
  msgid "Calendarize It"
4524
  msgstr ""
4525
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4526
  #: app/libraries/notifications.php:61
4527
  msgid "Please verify your email."
4528
  msgstr ""
@@ -4568,13 +4745,13 @@ msgid "Skin controller does not exist."
4568
  msgstr ""
4569
 
4570
  #: app/libraries/render.php:404 app/modules/local-time/details.php:44
4571
- #: app/modules/next-event/details.php:97 app/skins/single/default.php:72
4572
- #: app/skins/single/default.php:277 app/skins/single/m1.php:34
4573
- #: app/skins/single/modern.php:167
4574
  msgid "All of the day"
4575
  msgstr ""
4576
 
4577
- #: app/libraries/skins.php:811
4578
  msgid "Ignore month and years"
4579
  msgstr ""
4580
 
@@ -4607,16 +4784,16 @@ msgstr ""
4607
  msgid "Free Booking"
4608
  msgstr ""
4609
 
4610
- #: app/modules/booking/steps/form.php:15
4611
  msgid "Attendees Form"
4612
  msgstr ""
4613
 
4614
- #: app/modules/booking/steps/form.php:104
4615
- msgid "Fill other attendees's information like the first form."
4616
  msgstr ""
4617
 
4618
- #: app/modules/booking/steps/form.php:117
4619
- #: app/modules/booking/steps/tickets.php:53 app/skins/countdown/tpl.php:79
4620
  #: app/skins/countdown/tpl.php:123 app/skins/countdown/tpl.php:168
4621
  msgid "Next"
4622
  msgstr ""
@@ -4625,16 +4802,16 @@ msgstr ""
4625
  msgid "Thanks for your booking."
4626
  msgstr ""
4627
 
4628
- #: app/modules/booking/steps/tickets.php:18
4629
  msgid "Book Event"
4630
  msgstr ""
4631
 
4632
- #: app/modules/booking/steps/tickets.php:38
4633
  #, php-format
4634
  msgid "Available %s: <span>%s</span>"
4635
  msgstr ""
4636
 
4637
- #: app/modules/booking/steps/tickets.php:41
4638
  #, php-format
4639
  msgid "The %s ticket is sold out. You can try another ticket or another date."
4640
  msgstr ""
@@ -4690,9 +4867,9 @@ msgstr ""
4690
  msgid "Go to occurrence page"
4691
  msgstr ""
4692
 
4693
- #: app/modules/next-event/details.php:91 app/skins/single/default.php:66
4694
- #: app/skins/single/default.php:271 app/skins/single/m1.php:28
4695
- #: app/skins/single/modern.php:161
4696
  msgid "Time"
4697
  msgstr ""
4698
 
@@ -4735,8 +4912,8 @@ msgstr ""
4735
  #: app/skins/agenda/tpl.php:62 app/skins/agenda/tpl.php:66
4736
  #: app/skins/carousel/tpl.php:43 app/skins/grid/tpl.php:52
4737
  #: app/skins/grid/tpl.php:56 app/skins/list/tpl.php:57
4738
- #: app/skins/list/tpl.php:61 app/skins/masonry/tpl.php:48
4739
- #: app/skins/masonry/tpl.php:52 app/skins/slider/tpl.php:41
4740
  msgid "No event found!"
4741
  msgstr ""
4742
 
@@ -4790,14 +4967,14 @@ msgstr ""
4790
  msgid "No Events"
4791
  msgstr ""
4792
 
4793
- #: app/skins/single.php:209 app/skins/single/default.php:190
4794
- #: app/skins/single/default.php:395 app/skins/single/m1.php:100
4795
  #: app/skins/single/m2.php:32 app/skins/single/modern.php:31
4796
  msgid "Phone"
4797
  msgstr ""
4798
 
4799
- #: app/skins/single.php:223 app/skins/single/default.php:204
4800
- #: app/skins/single/default.php:409 app/skins/single/m1.php:114
4801
  #: app/skins/single/m2.php:46 app/skins/single/modern.php:45
4802
  msgid "Website"
4803
  msgstr ""
@@ -4806,19 +4983,19 @@ msgstr ""
4806
  msgid "Speakers:"
4807
  msgstr ""
4808
 
4809
- #: app/skins/single/default.php:29 app/skins/single/m1.php:233
4810
- #: app/skins/single/m2.php:158 app/skins/single/modern.php:236
4811
  msgid "Sold out!"
4812
  msgstr ""
4813
 
4814
- #: app/skins/single/default.php:39 app/skins/single/m1.php:242
4815
- #: app/skins/single/m2.php:167 app/skins/single/modern.php:246
4816
  msgid "Tags: "
4817
  msgstr ""
4818
 
4819
- #: app/skins/single/default.php:105 app/skins/single/default.php:310
4820
- #: app/skins/single/m1.php:189 app/skins/single/m2.php:121
4821
- #: app/skins/single/modern.php:119
4822
  msgid "Read More"
4823
  msgstr ""
4824
 
@@ -4868,7 +5045,7 @@ msgid "Attendees Module"
4868
  msgstr ""
4869
 
4870
  #: app/widgets/single.php:139
4871
- msgid "Next Pervious Module"
4872
  msgstr ""
4873
 
4874
  #: app/widgets/single.php:143
@@ -4878,3 +5055,23 @@ msgstr ""
4878
  #: app/widgets/single.php:151
4879
  msgid "Google Map"
4880
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: modern-events-calendar\n"
4
+ "POT-Creation-Date: 2019-01-23 12:02+0330\n"
5
+ "PO-Revision-Date: 2019-01-23 12:02+0330\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: en_US\n"
15
  "X-Poedit-Basepath: ..\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:24
19
+ #: app/features/ix/import.php:37 app/features/ix/thirdparty.php:24
20
+ #: app/features/mec/dashboard.php:61 app/widgets/MEC.php:33
21
  msgid "Modern Events Calendar"
22
  msgstr ""
23
 
46
  msgid "Select Type"
47
  msgstr ""
48
 
49
+ #: app/features/colors.php:50 app/features/fes/form.php:558
50
+ #: app/features/mec/settings.php:890
51
  msgid "Event Color"
52
  msgstr ""
53
 
54
  #: app/features/contextual.php:55 app/features/mec.php:210
55
  #: app/features/mec/gateways.php:20 app/features/mec/messages.php:20
56
  #: app/features/mec/notifications.php:19 app/features/mec/regform.php:19
57
+ #: app/features/mec/settings.php:35 app/features/mec/settings.php:269
58
  #: app/features/mec/styles.php:20 app/features/mec/styling.php:46
59
+ #: app/features/mec/support.php:18
60
  msgid "Settings"
61
  msgstr ""
62
 
63
+ #: app/features/contextual.php:62 app/features/events.php:1214
64
  #: app/features/mec/gateways.php:29 app/features/mec/messages.php:29
65
  #: app/features/mec/notifications.php:28 app/features/mec/regform.php:28
66
+ #: app/features/mec/regform.php:88 app/features/mec/settings.php:204
67
  #: app/features/mec/styles.php:29 app/features/mec/styling.php:55
68
  #: app/features/mec/support.php:27
69
  msgid "Booking Form"
81
  #: app/features/contextual.php:70 app/features/mec/gateways.php:36
82
  #: app/features/mec/gateways.php:90 app/features/mec/messages.php:36
83
  #: app/features/mec/notifications.php:35 app/features/mec/regform.php:35
84
+ #: app/features/mec/settings.php:211 app/features/mec/styles.php:36
85
  #: app/features/mec/styling.php:62 app/features/mec/support.php:34
86
  msgid "Payment Gateways"
87
  msgstr ""
96
  #: app/features/contextual.php:77 app/features/mec/gateways.php:45
97
  #: app/features/mec/messages.php:45 app/features/mec/notifications.php:44
98
  #: app/features/mec/notifications.php:89 app/features/mec/regform.php:43
99
+ #: app/features/mec/settings.php:221 app/features/mec/styles.php:45
100
  #: app/features/mec/styling.php:71 app/features/mec/support.php:43
101
  msgid "Notifications"
102
  msgstr ""
112
  #: app/features/contextual.php:88 app/features/ix/export.php:10
113
  #: app/features/ix/export_g_calendar.php:14 app/features/ix/import.php:10
114
  #: app/features/ix/import_f_calendar.php:10
115
+ #: app/features/ix/import_g_calendar.php:10
116
+ #: app/features/ix/import_meetup.php:10 app/features/ix/sync.php:10
117
  #: app/features/ix/thirdparty.php:10
118
  msgid "Google Cal. Import"
119
  msgstr ""
129
  #: app/features/contextual.php:95 app/features/ix/export.php:11
130
  #: app/features/ix/export_g_calendar.php:15 app/features/ix/import.php:11
131
  #: app/features/ix/import_f_calendar.php:11
132
+ #: app/features/ix/import_g_calendar.php:11
133
+ #: app/features/ix/import_meetup.php:11 app/features/ix/sync.php:11
134
  #: app/features/ix/thirdparty.php:11
135
  msgid "Google Cal. Export"
136
  msgstr ""
146
  #: app/features/contextual.php:102 app/features/ix/export.php:12
147
  #: app/features/ix/export_g_calendar.php:16 app/features/ix/import.php:12
148
  #: app/features/ix/import_f_calendar.php:12
149
+ #: app/features/ix/import_g_calendar.php:12
150
+ #: app/features/ix/import_meetup.php:12 app/features/ix/sync.php:12
151
  #: app/features/ix/thirdparty.php:12
152
  msgid "Facebook Cal. Import"
153
  msgstr ""
161
  msgstr ""
162
 
163
  #: app/features/contextual.php:117 app/features/mec/settings.php:42
164
+ #: app/features/mec/settings.php:271
165
  msgid "General Options"
166
  msgstr ""
167
 
168
  #: app/features/contextual.php:139 app/features/mec/settings.php:54
169
+ #: app/features/mec/settings.php:423
170
  msgid "Slugs/Permalinks"
171
  msgstr ""
172
 
173
  #: app/features/contextual.php:152 app/features/mec/settings.php:60
174
+ #: app/features/mec/settings.php:443
175
  msgid "Event Details/Single Event Page"
176
  msgstr ""
177
 
178
  #: app/features/contextual.php:166 app/features/mec/settings.php:66
179
+ #: app/features/mec/settings.php:484
180
  msgid "Currency Options"
181
  msgstr ""
182
 
183
  #: app/features/contextual.php:182 app/features/mec/settings.php:78
184
+ #: app/features/mec/settings.php:551
185
  msgid "Google Maps Options"
186
  msgstr ""
187
 
188
  #: app/features/contextual.php:244 app/features/mec/settings.php:84
189
+ #: app/features/mec/settings.php:625
190
  msgid "Google Recaptcha Options"
191
  msgstr ""
192
 
193
  #: app/features/contextual.php:258 app/features/mec/settings.php:114
194
+ #: app/features/mec/settings.php:743
195
  msgid "Countdown Options"
196
  msgstr ""
197
 
198
  #: app/features/contextual.php:268 app/features/mec/settings.php:120
199
+ #: app/features/mec/settings.php:764
200
  msgid "Social Networks"
201
  msgstr ""
202
 
203
  #: app/features/contextual.php:278 app/features/mec/settings.php:126
204
+ #: app/features/mec/settings.php:789
205
  msgid "Next Event Module"
206
  msgstr ""
207
 
208
  #: app/features/contextual.php:286 app/features/mec/settings.php:132
209
+ #: app/features/mec/settings.php:817
210
  msgid "Frontend Event Submission"
211
  msgstr ""
212
 
213
  #: app/features/contextual.php:298 app/features/events.php:580
214
+ #: app/features/mec/settings.php:144
215
  msgid "Exceptional Days"
216
  msgstr ""
217
 
218
  #: app/features/contextual.php:308 app/features/events.php:263
219
+ #: app/features/mec/settings.php:156 app/features/mec/settings.php:991
220
  msgid "Booking"
221
  msgstr ""
222
 
223
+ #: app/features/contextual.php:318 app/features/mec/settings.php:162
224
+ #: app/features/mec/settings.php:1081
225
  msgid "Coupons"
226
  msgstr ""
227
 
228
+ #: app/features/contextual.php:326 app/features/mec/settings.php:180
229
+ #: app/features/mec/settings.php:1222
230
  msgid "BuddyPress Integration"
231
  msgstr ""
232
 
233
+ #: app/features/contextual.php:334 app/features/mec/settings.php:186
234
+ #: app/features/mec/settings.php:1252
235
  msgid "Mailchimp Integration"
236
  msgstr ""
237
 
238
+ #: app/features/contextual.php:346 app/features/mec/settings.php:192
239
+ #: app/features/mec/settings.php:1288
240
  msgid "MEC Activation"
241
  msgstr ""
242
 
243
+ #: app/features/events.php:132 app/features/ix/export.php:34
244
  #: app/features/mec/dashboard.php:92 app/skins/daily_view/tpl.php:79
245
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
246
  msgid "Events"
250
  #: app/features/mec/meta_boxes/display_options.php:708
251
  #: app/features/mec/meta_boxes/display_options.php:746
252
  #: app/features/mec/meta_boxes/display_options.php:775
253
+ #: app/features/profile/profile.php:28 app/skins/daily_view/tpl.php:80
254
+ #: app/skins/monthly_view/tpl.php:71 app/skins/yearly_view/tpl.php:69
255
  msgid "Event"
256
  msgstr ""
257
 
263
  msgid "Add New Event"
264
  msgstr ""
265
 
266
+ #: app/features/events.php:136 app/features/ix.php:3175
267
+ #: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:54
268
  msgid "No events found!"
269
  msgstr ""
270
 
295
  #: app/features/mec/meta_boxes/search_form.php:292
296
  #: app/features/mec/meta_boxes/search_form.php:332
297
  #: app/features/mec/meta_boxes/search_form.php:379
298
+ #: app/features/mec/meta_boxes/search_form.php:426 app/libraries/main.php:4167
299
+ #: app/libraries/skins.php:710 app/skins/single/default.php:156
300
+ #: app/skins/single/default.php:363 app/skins/single/m1.php:169
301
+ #: app/skins/single/m2.php:101 app/skins/single/modern.php:98
302
  msgid "Category"
303
  msgstr ""
304
 
305
+ #: app/features/events.php:153 app/features/fes/form.php:510
306
  #: app/features/mec.php:198 app/features/mec/meta_boxes/filter.php:70
307
+ #: app/libraries/main.php:4166
308
  msgid "Categories"
309
  msgstr ""
310
 
376
  msgid "Event Details"
377
  msgstr ""
378
 
379
+ #: app/features/events.php:296 app/features/events.php:1966
380
+ #: app/features/events.php:2010 app/features/fes/form.php:471
381
+ #: app/features/ix.php:2719 app/features/ix.php:2760
382
+ #: app/features/mec/settings.php:866 app/libraries/main.php:4199
383
  #: app/widgets/single.php:103
384
  msgid "Event Cost"
385
  msgstr ""
386
 
387
+ #: app/features/events.php:299 app/features/fes/form.php:474
388
+ #: app/libraries/main.php:4200 app/skins/single/default.php:91
389
+ #: app/skins/single/default.php:298 app/skins/single/m1.php:49
390
+ #: app/skins/single/modern.php:184
391
  msgid "Cost"
392
  msgstr ""
393
 
399
  msgid "Guest Data"
400
  msgstr ""
401
 
402
+ #: app/features/events.php:380 app/features/fes/form.php:433
403
  #: app/features/labels.php:177 app/features/organizers.php:268
404
+ #: app/features/profile/profile.php:90 app/libraries/notifications.php:554
405
+ #: app/modules/booking/steps/form.php:27 app/modules/booking/steps/form.php:28
406
  msgid "Name"
407
  msgstr ""
408
 
409
+ #: app/features/events.php:381 app/features/events.php:1249
410
+ #: app/features/fes/form.php:429 app/features/mec/regform.php:118
411
  #: app/features/organizers.php:110 app/features/organizers.php:150
412
+ #: app/features/profile/profile.php:93 app/features/speakers.php:119
413
+ #: app/features/speakers.php:179 app/libraries/main.php:1069
414
+ #: app/libraries/main.php:1134 app/libraries/main.php:2077
415
+ #: app/libraries/notifications.php:555 app/modules/booking/steps/form.php:31
416
+ #: app/modules/booking/steps/form.php:32 app/skins/single.php:216
417
+ #: app/skins/single/default.php:198 app/skins/single/default.php:405
418
+ #: app/skins/single/m1.php:107 app/skins/single/m2.php:39
419
+ #: app/skins/single/modern.php:38
420
  msgid "Email"
421
  msgstr ""
422
 
423
+ #: app/features/events.php:385 app/features/fes/form.php:223
424
  msgid "Date and Time"
425
  msgstr ""
426
 
427
  #: app/features/events.php:389 app/features/events.php:393
428
+ #: app/features/events.php:1787 app/features/events.php:1966
429
+ #: app/features/events.php:2010 app/features/fes/form.php:227
430
+ #: app/features/fes/form.php:231 app/features/ix.php:2719
431
+ #: app/features/ix.php:2760 app/features/ix/import_g_calendar.php:38
432
  #: app/features/mec/dashboard.php:269
433
  #: app/features/mec/meta_boxes/display_options.php:42
434
  #: app/features/mec/meta_boxes/display_options.php:139
447
  msgstr ""
448
 
449
  #: app/features/events.php:421 app/features/events.php:461
450
+ #: app/features/events.php:866 app/features/events.php:884
451
+ #: app/features/events.php:969 app/features/events.php:987
452
+ #: app/features/fes/form.php:259 app/features/fes/form.php:299
453
  msgid "AM"
454
  msgstr ""
455
 
456
  #: app/features/events.php:422 app/features/events.php:462
457
+ #: app/features/events.php:867 app/features/events.php:885
458
+ #: app/features/events.php:970 app/features/events.php:988
459
+ #: app/features/fes/form.php:260 app/features/fes/form.php:300
460
  msgid "PM"
461
  msgstr ""
462
 
463
  #: app/features/events.php:429 app/features/events.php:433
464
+ #: app/features/events.php:1788 app/features/events.php:1966
465
+ #: app/features/events.php:2010 app/features/fes/form.php:267
466
+ #: app/features/fes/form.php:271 app/features/ix.php:2719
467
+ #: app/features/ix.php:2760 app/features/ix/import_g_calendar.php:44
468
  #: app/features/mec/dashboard.php:270
469
  msgid "End Date"
470
  msgstr ""
471
 
472
+ #: app/features/events.php:468 app/features/fes/form.php:306
473
  msgid "All Day Event"
474
  msgstr ""
475
 
476
+ #: app/features/events.php:471 app/features/fes/form.php:309
477
  msgid "Hide Event Time"
478
  msgstr ""
479
 
480
+ #: app/features/events.php:474 app/features/fes/form.php:312
481
  msgid "Hide Event End Time"
482
  msgstr ""
483
 
484
+ #: app/features/events.php:478 app/features/fes/form.php:316
485
  msgid "Time Comment"
486
  msgstr ""
487
 
488
+ #: app/features/events.php:479 app/features/fes/form.php:317
489
  msgid ""
490
  "It shows next to event time on calendar. You can insert Timezone etc. in "
491
  "this field."
492
  msgstr ""
493
 
494
+ #: app/features/events.php:485 app/features/fes/form.php:323
495
  msgid "Event Repeating"
496
  msgstr ""
497
 
498
+ #: app/features/events.php:489 app/features/fes/form.php:327
499
  msgid "Repeats"
500
  msgstr ""
501
 
502
+ #: app/features/events.php:491 app/features/fes/form.php:329
503
  #: app/features/mec/dashboard.php:272 app/skins/full_calendar/tpl.php:68
504
  msgid "Daily"
505
  msgstr ""
506
 
507
+ #: app/features/events.php:492 app/features/fes/form.php:330
508
  msgid "Every Weekday"
509
  msgstr ""
510
 
511
+ #: app/features/events.php:493 app/features/fes/form.php:331
512
  msgid "Every Weekend"
513
  msgstr ""
514
 
515
+ #: app/features/events.php:494 app/features/fes/form.php:332
516
  msgid "Certain Weekdays"
517
  msgstr ""
518
 
519
+ #: app/features/events.php:495 app/features/fes/form.php:333
520
  #: app/skins/full_calendar/tpl.php:67
521
  msgid "Weekly"
522
  msgstr ""
523
 
524
+ #: app/features/events.php:496 app/features/fes/form.php:334
525
  #: app/features/mec/dashboard.php:273 app/skins/full_calendar/tpl.php:66
526
  msgid "Monthly"
527
  msgstr ""
528
 
529
+ #: app/features/events.php:497 app/features/fes/form.php:335
530
  #: app/features/mec/dashboard.php:274 app/skins/full_calendar/tpl.php:65
531
  msgid "Yearly"
532
  msgstr ""
533
 
534
+ #: app/features/events.php:498 app/features/fes/form.php:336
535
  msgid "Custom Days"
536
  msgstr ""
537
 
538
+ #: app/features/events.php:502 app/features/fes/form.php:340
539
  msgid "Repeat Interval"
540
  msgstr ""
541
 
542
+ #: app/features/events.php:503 app/features/fes/form.php:341
543
  msgid "Repeat interval"
544
  msgstr ""
545
 
546
+ #: app/features/events.php:506 app/features/fes/form.php:344
547
  msgid "Week Days"
548
  msgstr ""
549
 
550
+ #: app/features/events.php:507 app/features/fes/form.php:345
551
+ #: app/libraries/main.php:403
552
  msgid "Monday"
553
  msgstr ""
554
 
555
+ #: app/features/events.php:508 app/features/fes/form.php:346
556
+ #: app/libraries/main.php:403
557
  msgid "Tuesday"
558
  msgstr ""
559
 
560
+ #: app/features/events.php:509 app/features/fes/form.php:347
561
+ #: app/libraries/main.php:403
562
  msgid "Wednesday"
563
  msgstr ""
564
 
565
+ #: app/features/events.php:510 app/features/fes/form.php:348
566
+ #: app/libraries/main.php:403
567
  msgid "Thursday"
568
  msgstr ""
569
 
570
+ #: app/features/events.php:511 app/features/fes/form.php:349
571
+ #: app/libraries/main.php:403
572
  msgid "Friday"
573
  msgstr ""
574
 
575
+ #: app/features/events.php:512 app/features/fes/form.php:350
576
+ #: app/libraries/main.php:403
577
  msgid "Saturday"
578
  msgstr ""
579
 
580
+ #: app/features/events.php:513 app/features/fes/form.php:351
581
+ #: app/libraries/main.php:403
582
  msgid "Sunday"
583
  msgstr ""
584
 
585
  #: app/features/events.php:518 app/features/events.php:590
586
+ #: app/features/fes/form.php:356 app/features/profile/profile.php:31
587
+ #: app/libraries/main.php:1592 app/modules/booking/steps/tickets.php:22
588
+ #: app/modules/next-event/details.php:86 app/skins/single/default.php:55
589
+ #: app/skins/single/default.php:262 app/skins/single/m1.php:16
590
+ #: app/skins/single/modern.php:151
591
  msgid "Date"
592
  msgstr ""
593
 
594
  #: app/features/events.php:519 app/features/events.php:591
595
+ #: app/features/events.php:667 app/features/events.php:722
596
+ #: app/features/events.php:843 app/features/events.php:914
597
+ #: app/features/events.php:1017 app/features/events.php:1068
598
+ #: app/features/events.php:1149 app/features/fes/form.php:357
599
  msgid "Add"
600
  msgstr ""
601
 
602
+ #: app/features/events.php:520 app/features/fes/form.php:358
603
  msgid "Add certain days to event occurrence dates."
604
  msgstr ""
605
 
606
+ #: app/features/events.php:542 app/features/fes/form.php:380
607
  msgid "Ends Repeat"
608
  msgstr ""
609
 
610
+ #: app/features/events.php:546 app/features/fes/form.php:384
611
  msgid "Never"
612
  msgstr ""
613
 
614
+ #: app/features/events.php:551 app/features/fes/form.php:389
615
  msgid "On"
616
  msgstr ""
617
 
618
+ #: app/features/events.php:558 app/features/fes/form.php:396
619
  msgid "After"
620
  msgstr ""
621
 
622
+ #: app/features/events.php:560 app/features/fes/form.php:398
623
  msgid "Occurrences times"
624
  msgstr ""
625
 
626
+ #: app/features/events.php:561 app/features/fes/form.php:399
627
  msgid ""
628
  "The event will finish after certain repeats. For example if you set it to "
629
  "10, the event will finish after 10 repeats."
641
  msgid "Day 1"
642
  msgstr ""
643
 
644
+ #: app/features/events.php:649 app/features/mec/settings.php:920
645
  #: app/skins/single.php:246
646
  msgid "Hourly Schedule"
647
  msgstr ""
656
  "can add a different schedule for each day!"
657
  msgstr ""
658
 
659
+ #: app/features/events.php:659
660
  #, php-format
661
  msgid "Day %s"
662
  msgstr ""
663
 
664
+ #: app/features/events.php:662 app/features/events.php:675
665
+ #: app/features/events.php:695 app/features/events.php:717
666
+ #: app/features/events.php:733 app/features/events.php:1155
667
+ #: app/features/events.php:1177 app/features/events.php:1784
668
+ #: app/features/events.php:1966 app/features/events.php:2010
669
+ #: app/features/fes/form.php:216 app/features/ix.php:2719
670
+ #: app/features/ix.php:2760 app/features/mec/settings.php:1182
671
+ #: app/features/mec/settings.php:1202
672
  msgid "Title"
673
  msgstr ""
674
 
675
+ #: app/features/events.php:664 app/features/events.php:677
676
+ #: app/features/events.php:697 app/features/events.php:719
677
+ #: app/features/events.php:735 app/features/events.php:909
678
+ #: app/features/events.php:925 app/features/events.php:939
679
+ #: app/features/events.php:1012 app/features/events.php:1029
680
+ #: app/features/events.php:1088 app/features/events.php:1113
681
+ #: app/features/events.php:1166 app/features/events.php:1188
682
+ #: app/features/fes/list.php:72 app/features/mec/settings.php:1131
683
+ #: app/features/mec/settings.php:1154 app/features/mec/settings.php:1193
684
+ #: app/features/mec/settings.php:1213 app/libraries/main.php:2056
685
+ #: app/libraries/main.php:2085 app/libraries/main.php:2114
686
+ #: app/libraries/main.php:2143 app/libraries/main.php:2165
687
+ #: app/libraries/main.php:2196 app/libraries/main.php:2240
688
+ #: app/libraries/main.php:2284 app/libraries/main.php:2331
689
+ #: app/libraries/main.php:2369
690
+ msgid "Remove"
691
+ msgstr ""
692
+
693
+ #: app/features/events.php:668 app/features/events.php:723
694
  msgid "Add new hourly schedule row"
695
  msgstr ""
696
 
697
+ #: app/features/events.php:673 app/features/events.php:693
698
+ #: app/features/events.php:731
699
  msgid "From e.g. 8:15"
700
  msgstr ""
701
 
702
+ #: app/features/events.php:674 app/features/events.php:694
703
+ #: app/features/events.php:732
704
  msgid "To e.g. 8:45"
705
  msgstr ""
706
 
707
+ #: app/features/events.php:676 app/features/events.php:696
708
+ #: app/features/events.php:734 app/features/events.php:890
709
+ #: app/features/events.php:993
710
  msgid "Description"
711
  msgstr ""
712
 
713
+ #: app/features/events.php:680 app/features/events.php:700
714
+ #: app/features/events.php:738 app/features/fes/form.php:603
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
715
  #: app/features/mec.php:206 app/features/mec/settings.php:72
716
+ #: app/features/mec/settings.php:914 app/features/speakers.php:57
717
+ #: app/libraries/main.php:4174 app/modules/speakers/details.php:18
718
  msgid "Speakers"
719
  msgstr ""
720
 
721
+ #: app/features/events.php:714 app/features/events.php:718
722
  msgid "Day :dd:"
723
  msgstr ""
724
 
725
+ #: app/features/events.php:765 app/features/fes/form.php:448
726
+ #: app/features/mec/settings.php:860
727
  msgid "Event Links"
728
  msgstr ""
729
 
730
+ #: app/features/events.php:767 app/features/fes/form.php:450
731
+ #: app/libraries/main.php:4197
732
  msgid "Event Link"
733
  msgstr ""
734
 
735
+ #: app/features/events.php:768 app/features/events.php:773
736
+ #: app/features/fes/form.php:451 app/features/fes/form.php:456
737
  msgid "eg. http://yoursite.com/your-event"
738
  msgstr ""
739
 
740
+ #: app/features/events.php:769 app/features/fes/form.php:452
741
  msgid ""
742
  "If you fill it, it will be replaced instead of default event page link. "
743
  "Insert full link including http(s)://"
744
  msgstr ""
745
 
746
+ #: app/features/events.php:772 app/features/fes/form.php:455
747
+ #: app/libraries/main.php:4198 app/skins/single/default.php:105
748
+ #: app/skins/single/default.php:312 app/skins/single/m1.php:190
749
+ #: app/skins/single/m2.php:123 app/skins/single/modern.php:120
750
  #: app/widgets/single.php:107
751
  msgid "More Info"
752
  msgstr ""
753
 
754
+ #: app/features/events.php:774 app/features/fes/form.php:457
755
  msgid "More Information"
756
  msgstr ""
757
 
758
+ #: app/features/events.php:776 app/features/fes/form.php:459
759
  msgid "Current Window"
760
  msgstr ""
761
 
762
+ #: app/features/events.php:777 app/features/fes/form.php:460
763
  msgid "New Window"
764
  msgstr ""
765
 
766
+ #: app/features/events.php:779 app/features/fes/form.php:462
767
  msgid ""
768
  "If you fill it, it will be shown in event details page as an optional link. "
769
  "Insert full link including http(s)://"
770
  msgstr ""
771
 
772
+ #: app/features/events.php:810
773
  msgid "Total booking limits"
774
  msgstr ""
775
 
776
+ #: app/features/events.php:815 app/features/events.php:907
777
+ #: app/features/events.php:1010 app/modules/booking/default.php:81
778
+ #: app/modules/booking/steps/tickets.php:40 app/skins/available_spot/tpl.php:99
779
  msgid "Unlimited"
780
  msgstr ""
781
 
782
+ #: app/features/events.php:817
783
  msgid "100"
784
  msgstr ""
785
 
786
+ #: app/features/events.php:835 app/libraries/book.php:60
787
+ #: app/libraries/main.php:4202 app/modules/booking/steps/tickets.php:40
788
  msgid "Tickets"
789
  msgstr ""
790
 
791
+ #: app/features/events.php:838
792
  msgid ""
793
  "You're translating an event so MEC will use the original event for tickets "
794
  "and booking. You can only translate the ticket name and description. Please "
795
  "define exact tickets that you defined in the original event here."
796
  msgstr ""
797
 
798
+ #: app/features/events.php:849 app/features/events.php:952
799
  msgid "Ticket Name"
800
  msgstr ""
801
 
802
+ #: app/features/events.php:853 app/features/events.php:956
803
+ #: app/features/events.php:1966 app/features/events.php:2010
804
+ #: app/features/ix.php:2719 app/features/ix.php:2760
805
  msgid "Start Time"
806
  msgstr ""
807
 
808
+ #: app/features/events.php:871 app/features/events.php:974
809
+ #: app/features/events.php:1966 app/features/events.php:2010
810
+ #: app/features/ix.php:2719 app/features/ix.php:2760
811
  msgid "End Time"
812
  msgstr ""
813
 
814
+ #: app/features/events.php:894 app/features/events.php:923
815
+ #: app/features/events.php:937 app/features/events.php:997
816
+ #: app/features/events.php:1027 app/features/events.php:1159
817
+ #: app/features/events.php:1181 app/features/mec/settings.php:1186
818
+ #: app/features/mec/settings.php:1206
819
  msgid "Price"
820
  msgstr ""
821
 
822
+ #: app/features/events.php:895 app/features/events.php:998
823
  msgid "Insert 0 for free ticket. Only numbers please."
824
  msgstr ""
825
 
826
+ #: app/features/events.php:898 app/features/events.php:1001
827
  msgid "Price Label"
828
  msgstr ""
829
 
830
+ #: app/features/events.php:899 app/features/events.php:1002
831
  msgid "For showing on website. e.g. $15"
832
  msgstr ""
833
 
834
+ #: app/features/events.php:903 app/features/events.php:1006
835
  msgid "Available Tickets"
836
  msgstr ""
837
 
838
+ #: app/features/events.php:913 app/features/events.php:1016
839
+ msgid "Price per Date"
840
+ msgstr ""
841
+
842
+ #: app/features/events.php:921 app/features/events.php:935
843
+ #: app/features/events.php:1025 app/features/ix/import_f_calendar.php:36
844
+ #: app/features/ix/import_g_calendar.php:51
845
+ #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
846
+ msgid "Start"
847
+ msgstr ""
848
+
849
+ #: app/features/events.php:922 app/features/events.php:936
850
+ #: app/features/events.php:1026
851
+ msgid "End"
852
+ msgstr ""
853
+
854
+ #: app/features/events.php:924 app/features/events.php:938
855
+ #: app/features/events.php:1028 app/features/labels.php:60
856
+ #: app/features/mec/meta_boxes/display_options.php:658
857
+ #: app/features/mec/meta_boxes/search_form.php:52
858
+ #: app/features/mec/meta_boxes/search_form.php:99
859
+ #: app/features/mec/meta_boxes/search_form.php:146
860
+ #: app/features/mec/meta_boxes/search_form.php:219
861
+ #: app/features/mec/meta_boxes/search_form.php:266
862
+ #: app/features/mec/meta_boxes/search_form.php:313
863
+ #: app/features/mec/meta_boxes/search_form.php:353
864
+ #: app/features/mec/meta_boxes/search_form.php:400
865
+ #: app/features/mec/meta_boxes/search_form.php:447 app/libraries/skins.php:788
866
+ msgid "Label"
867
+ msgstr ""
868
+
869
+ #: app/features/events.php:1058
870
  msgid "Fees"
871
  msgstr ""
872
 
873
+ #: app/features/events.php:1063 app/features/events.php:1144
874
+ #: app/features/events.php:1219
875
  msgid "Inherit from global options"
876
  msgstr ""
877
 
878
+ #: app/features/events.php:1074 app/features/events.php:1099
879
+ #: app/features/mec/settings.php:1117 app/features/mec/settings.php:1140
880
  msgid "Fee Title"
881
  msgstr ""
882
 
883
+ #: app/features/events.php:1078 app/features/events.php:1103
884
+ #: app/features/mec/settings.php:1121 app/features/mec/settings.php:1144
885
  msgid "Amount"
886
  msgstr ""
887
 
888
+ #: app/features/events.php:1079 app/features/events.php:1104
889
+ #: app/features/mec/settings.php:1122 app/features/mec/settings.php:1145
890
  msgid ""
891
  "Fee amount, considered as fixed amount if you set the type to amount "
892
  "otherwise considered as percentage"
893
  msgstr ""
894
 
895
+ #: app/features/events.php:1083 app/features/events.php:1108
896
+ #: app/features/mec/settings.php:1126 app/features/mec/settings.php:1149
897
  msgid "Percent"
898
  msgstr ""
899
 
900
+ #: app/features/events.php:1084 app/features/events.php:1109
901
+ #: app/features/mec/settings.php:1127 app/features/mec/settings.php:1150
902
  msgid "Amount (Per Ticket)"
903
  msgstr ""
904
 
905
+ #: app/features/events.php:1085 app/features/events.php:1110
906
+ #: app/features/mec/settings.php:1128 app/features/mec/settings.php:1151
907
  msgid "Amount (Per Booking)"
908
  msgstr ""
909
 
910
+ #: app/features/events.php:1139 app/features/mec/settings.php:938
911
  msgid "Ticket Variations / Options"
912
  msgstr ""
913
 
914
+ #: app/features/events.php:1160 app/features/events.php:1182
915
+ #: app/features/mec/settings.php:1187 app/features/mec/settings.php:1207
916
  msgid "Option Price"
917
  msgstr ""
918
 
919
+ #: app/features/events.php:1163 app/features/events.php:1185
920
+ #: app/features/mec/settings.php:1190 app/features/mec/settings.php:1210
921
  msgid "Maximum Per Ticket"
922
  msgstr ""
923
 
924
+ #: app/features/events.php:1164 app/features/events.php:1186
925
+ #: app/features/mec/settings.php:1191 app/features/mec/settings.php:1211
926
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
927
  msgstr ""
928
 
929
+ #: app/features/events.php:1248 app/features/mec/regform.php:117
930
+ #: app/libraries/main.php:2048
931
  msgid "Text"
932
  msgstr ""
933
 
934
+ #: app/features/events.php:1250 app/features/mec/regform.php:119
935
  #: app/features/organizers.php:102 app/features/organizers.php:146
936
  #: app/features/speakers.php:111 app/features/speakers.php:175
937
+ #: app/features/speakers.php:244 app/libraries/main.php:2106
938
  msgid "Tel"
939
  msgstr ""
940
 
941
+ #: app/features/events.php:1251 app/features/mec/regform.php:120
942
+ #: app/libraries/main.php:2135
943
  msgid "Textarea"
944
  msgstr ""
945
 
946
+ #: app/features/events.php:1252 app/features/mec/regform.php:121
947
+ #: app/libraries/main.php:2188
948
  msgid "Checkboxes"
949
  msgstr ""
950
 
951
+ #: app/features/events.php:1253 app/features/mec/regform.php:122
952
+ #: app/libraries/main.php:2232
953
  msgid "Radio Buttons"
954
  msgstr ""
955
 
956
+ #: app/features/events.php:1254 app/features/mec/meta_boxes/search_form.php:34
957
  #: app/features/mec/meta_boxes/search_form.php:41
958
  #: app/features/mec/meta_boxes/search_form.php:48
959
  #: app/features/mec/meta_boxes/search_form.php:55
999
  #: app/features/mec/meta_boxes/search_form.php:443
1000
  #: app/features/mec/meta_boxes/search_form.php:450
1001
  #: app/features/mec/meta_boxes/search_form.php:457
1002
+ #: app/features/mec/regform.php:123 app/libraries/main.php:2276
1003
  msgid "Dropdown"
1004
  msgstr ""
1005
 
1006
+ #: app/features/events.php:1255 app/features/mec/regform.php:124
1007
+ #: app/libraries/main.php:2323
1008
  msgid "Agreement"
1009
  msgstr ""
1010
 
1011
+ #: app/features/events.php:1256 app/features/mec/regform.php:125
1012
+ #: app/libraries/main.php:2164
1013
  msgid "Paragraph"
1014
  msgstr ""
1015
 
1016
+ #: app/features/events.php:1730 app/features/events.php:1745
1017
+ #: app/features/events.php:1759
1018
  #, php-format
1019
  msgid "Show all %s"
1020
  msgstr ""
1021
 
1022
+ #: app/features/events.php:1730
1023
  msgid "labels"
1024
  msgstr ""
1025
 
1026
+ #: app/features/events.php:1745
1027
  msgid "locations"
1028
  msgstr ""
1029
 
1030
+ #: app/features/events.php:1759
1031
  msgid "organizers"
1032
  msgstr ""
1033
 
1034
+ #: app/features/events.php:1785 app/features/events.php:1966
1035
+ #: app/features/events.php:2010 app/features/ix.php:2719
1036
+ #: app/features/ix.php:2760 app/features/locations.php:58
1037
  #: app/features/locations.php:229 app/features/locations.php:281
1038
  #: app/features/locations.php:283 app/features/mec/dashboard.php:106
1039
  #: app/features/mec/meta_boxes/display_options.php:659
1045
  #: app/features/mec/meta_boxes/search_form.php:299
1046
  #: app/features/mec/meta_boxes/search_form.php:339
1047
  #: app/features/mec/meta_boxes/search_form.php:386
1048
+ #: app/features/mec/meta_boxes/search_form.php:433 app/libraries/main.php:1586
1049
+ #: app/libraries/main.php:4171 app/libraries/skins.php:736
1050
+ #: app/skins/single/default.php:141 app/skins/single/default.php:348
1051
+ #: app/skins/single/m1.php:154 app/skins/single/m2.php:86
1052
+ #: app/skins/single/modern.php:83
1053
  msgid "Location"
1054
  msgstr ""
1055
 
1056
+ #: app/features/events.php:1786 app/features/events.php:1966
1057
+ #: app/features/events.php:2010 app/features/ix.php:2719
1058
+ #: app/features/ix.php:2760 app/features/mec/dashboard.php:113
1059
  #: app/features/mec/meta_boxes/display_options.php:660
1060
  #: app/features/mec/meta_boxes/search_form.php:45
1061
  #: app/features/mec/meta_boxes/search_form.php:92
1068
  #: app/features/mec/meta_boxes/search_form.php:440
1069
  #: app/features/organizers.php:58 app/features/organizers.php:199
1070
  #: app/features/organizers.php:255 app/features/organizers.php:257
1071
+ #: app/libraries/main.php:4173 app/libraries/skins.php:762
1072
+ #: app/skins/single/default.php:181 app/skins/single/default.php:388
1073
  #: app/skins/single/m1.php:90 app/skins/single/m2.php:22
1074
  #: app/skins/single/modern.php:21
1075
  msgid "Organizer"
1076
  msgstr ""
1077
 
1078
+ #: app/features/events.php:1790
1079
  msgid "Repeat"
1080
  msgstr ""
1081
 
1082
+ #: app/features/events.php:1791
1083
  msgid "Author"
1084
  msgstr ""
1085
 
1086
+ #: app/features/events.php:1901 app/features/events.php:1902
1087
  msgid "iCal Export"
1088
  msgstr ""
1089
 
1090
+ #: app/features/events.php:1904 app/features/events.php:1905
1091
  msgid "CSV Export"
1092
  msgstr ""
1093
 
1094
+ #: app/features/events.php:1907 app/features/events.php:1908
1095
  msgid "MS Excel Export"
1096
  msgstr ""
1097
 
1098
+ #: app/features/events.php:1910 app/features/events.php:1911
1099
  msgid "XML Export"
1100
  msgstr ""
1101
 
1102
+ #: app/features/events.php:1913 app/features/events.php:1914
1103
  msgid "JSON Export"
1104
  msgstr ""
1105
 
1106
+ #: app/features/events.php:1916 app/features/events.php:1917
1107
  msgid "Duplicate"
1108
  msgstr ""
1109
 
1110
+ #: app/features/events.php:1966 app/features/events.php:2010
1111
+ #: app/features/ix.php:2719 app/features/ix.php:2760
1112
  #: app/features/labels.php:176 app/features/locations.php:228
1113
  #: app/features/organizers.php:198 app/features/speakers.php:241
1114
  msgid "ID"
1115
  msgstr ""
1116
 
1117
+ #: app/features/events.php:1966 app/features/events.php:2010
1118
+ #: app/features/ix.php:2719 app/features/ix.php:2760
1119
  msgid "Link"
1120
  msgstr ""
1121
 
1122
+ #: app/features/events.php:1966 app/features/events.php:2010
1123
  #, php-format
1124
  msgid "%s Tel"
1125
  msgstr ""
1126
 
1127
+ #: app/features/events.php:1966 app/features/events.php:2010
1128
  #, php-format
1129
  msgid "%s Email"
1130
  msgstr ""
1134
  msgid "Please %s/%s in order to submit new events."
1135
  msgstr ""
1136
 
1137
+ #: app/features/fes.php:83 app/features/fes.php:161 app/features/profile.php:74
1138
  msgid "Login"
1139
  msgstr ""
1140
 
1141
+ #: app/features/fes.php:83 app/features/fes.php:161 app/features/profile.php:74
1142
  msgid "Register"
1143
  msgstr ""
1144
 
1179
  msgid "The event published."
1180
  msgstr ""
1181
 
1182
+ #: app/features/fes/form.php:159
1183
  msgid "Go back to events list."
1184
  msgstr ""
1185
 
1186
+ #: app/features/fes/form.php:409
1187
  msgid "Note to reviewer"
1188
  msgstr ""
1189
 
1190
+ #: app/features/fes/form.php:427
 
 
 
 
1191
  msgid "User Data"
1192
  msgstr ""
1193
 
1194
+ #: app/features/fes/form.php:430
1195
  msgid "eg. yourname@gmail.com"
1196
  msgstr ""
1197
 
1198
+ #: app/features/fes/form.php:434 app/features/organizers.php:269
1199
  msgid "eg. John Smith"
1200
  msgstr ""
1201
 
1202
+ #: app/features/fes/form.php:488 app/features/mec/settings.php:872
1203
  msgid "Featured Image"
1204
  msgstr ""
1205
 
1206
+ #: app/features/fes/form.php:493
1207
  msgid "Remove Image"
1208
  msgstr ""
1209
 
1210
+ #: app/features/fes/form.php:535 app/features/labels.php:61
1211
  #: app/features/labels.php:220 app/features/mec.php:199
1212
+ #: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4168
1213
+ #: app/skins/single/default.php:120 app/skins/single/default.php:327
1214
+ #: app/skins/single/m1.php:64 app/skins/single/modern.php:199
1215
  msgid "Labels"
1216
  msgstr ""
1217
 
1218
+ #: app/features/fes/form.php:580 app/features/mec.php:197
1219
  #: app/features/mec/meta_boxes/filter.php:138
1220
  msgid "Tags"
1221
  msgstr ""
1222
 
1223
+ #: app/features/fes/form.php:582
1224
  msgid "Insert your desired tags, comma separated."
1225
  msgstr ""
1226
 
1227
+ #: app/features/fes/form.php:618
1228
+ msgid "Submit"
1229
+ msgstr ""
1230
+
1231
  #: app/features/fes/list.php:21
1232
  msgid "Click again to remove!"
1233
  msgstr ""
1245
  msgid "No events found! %s"
1246
  msgstr ""
1247
 
1248
+ #: app/features/ix.php:107
1249
  msgid "MEC - Import / Export"
1250
  msgstr ""
1251
 
1252
+ #: app/features/ix.php:107
1253
  msgid "Import / Export"
1254
  msgstr ""
1255
 
1256
+ #: app/features/ix.php:198
1257
  msgid "Please upload the feed file."
1258
  msgstr ""
1259
 
1260
+ #: app/features/ix.php:201
1261
  msgid "The file type should be XML or ICS."
1262
  msgstr ""
1263
 
1264
+ #: app/features/ix.php:210
1265
+ msgid "An error occurred during the file upload! Please check permissions!"
1266
  msgstr ""
1267
 
1268
+ #: app/features/ix.php:218
1269
  msgid "The events are imported successfully!"
1270
  msgstr ""
1271
 
1272
+ #: app/features/ix.php:756
1273
  msgid "Third Party plugin is not installed and activated!"
1274
  msgstr ""
1275
 
1276
+ #: app/features/ix.php:781
1277
  msgid "Third Party plugin is invalid!"
1278
  msgstr ""
1279
 
1280
+ #: app/features/ix.php:1926 app/features/ix.php:1984
1281
  msgid "Both of API key and Calendar ID are required!"
1282
  msgstr ""
1283
 
1284
+ #: app/features/ix.php:1979 app/features/ix.php:2398 app/features/ix.php:3182
1285
  msgid "Please select some events to import!"
1286
  msgstr ""
1287
 
1288
+ #: app/features/ix.php:2340 app/features/ix.php:2403
1289
+ msgid "Both of API key and Group URL are required!"
1290
+ msgstr ""
1291
+
1292
+ #: app/features/ix.php:2642
1293
+ msgid "Check at Meetup"
1294
+ msgstr ""
1295
+
1296
+ #: app/features/ix.php:2719 app/features/ix.php:2760
1297
  msgid "Organizer Tel"
1298
  msgstr ""
1299
 
1300
+ #: app/features/ix.php:2719 app/features/ix.php:2760
1301
  msgid "Organizer Email"
1302
  msgstr ""
1303
 
1304
+ #: app/features/ix.php:2841
1305
  msgid "All of Client ID, Client Secret and Calendar ID are required!"
1306
  msgstr ""
1307
 
1308
+ #: app/features/ix.php:2864
1309
  #, php-format
1310
  msgid "All seems good! Please click %s for authenticating your app."
1311
  msgstr ""
1312
 
1313
+ #: app/features/ix.php:2918
1314
  msgid "All of Client App, Client Secret and Calendar ID are required!"
1315
  msgstr ""
1316
 
1317
+ #: app/features/ix.php:3113
1318
  #, php-format
1319
  msgid "%s events added to Google Calendar successfully."
1320
  msgstr ""
1321
 
1322
+ #: app/features/ix.php:3114
1323
  #, php-format
1324
  msgid "%s previously added events get updated."
1325
  msgstr ""
1326
 
1327
+ #: app/features/ix.php:3115
1328
  #, php-format
1329
  msgid "%s events failed to add for following reasons: %s"
1330
  msgstr ""
1331
 
1332
+ #: app/features/ix.php:3145
1333
+ msgid "Please insert your Facebook page's link."
1334
+ msgstr ""
1335
+
1336
+ #: app/features/ix.php:3153
1337
+ msgid ""
1338
+ "We couldn't recognize your Facebook page. Please check it and provide us a "
1339
+ "valid Facebook page link."
1340
+ msgstr ""
1341
+
1342
+ #: app/features/ix.php:3185
1343
  msgid "Please insert your facebook page's link."
1344
  msgstr ""
1345
 
1346
+ #: app/features/ix.php:3190
1347
  msgid ""
1348
  "We couldn't recognize your Facebook page. Please check it and provide us a "
1349
  "valid facebook page link."
1351
 
1352
  #: app/features/ix/export.php:8 app/features/ix/export_g_calendar.php:12
1353
  #: app/features/ix/import.php:8 app/features/ix/import_f_calendar.php:8
1354
+ #: app/features/ix/import_g_calendar.php:8 app/features/ix/import_meetup.php:8
1355
+ #: app/features/ix/thirdparty.php:8
1356
  msgid "MEC Import / Export"
1357
  msgstr ""
1358
 
1359
  #: app/features/ix/export.php:13 app/features/ix/export_g_calendar.php:17
1360
  #: app/features/ix/import.php:13 app/features/ix/import_f_calendar.php:13
1361
+ #: app/features/ix/import_g_calendar.php:13
1362
+ #: app/features/ix/import_meetup.php:13 app/features/ix/sync.php:13
1363
  #: app/features/ix/thirdparty.php:13
1364
+ msgid "Meetup Import"
1365
  msgstr ""
1366
 
1367
  #: app/features/ix/export.php:14 app/features/ix/export_g_calendar.php:18
1368
  #: app/features/ix/import.php:14 app/features/ix/import_f_calendar.php:14
 
1369
  #: app/features/ix/import_g_calendar.php:14
1370
+ #: app/features/ix/import_meetup.php:14 app/features/ix/sync.php:14
1371
+ #: app/features/ix/thirdparty.php:14
1372
+ msgid "Synchronization"
1373
  msgstr ""
1374
 
1375
  #: app/features/ix/export.php:15 app/features/ix/export_g_calendar.php:19
1376
  #: app/features/ix/import.php:15 app/features/ix/import_f_calendar.php:15
1377
+ #: app/features/ix/import_g_calendar.php:15
1378
+ #: app/features/ix/import_meetup.php:15 app/features/ix/sync.php:15
1379
  #: app/features/ix/thirdparty.php:15
1380
+ msgid "Export"
1381
  msgstr ""
1382
 
1383
  #: app/features/ix/export.php:16 app/features/ix/export_g_calendar.php:20
1384
  #: app/features/ix/import.php:16 app/features/ix/import_f_calendar.php:16
1385
+ #: app/features/ix/import_f_calendar.php:75
1386
+ #: app/features/ix/import_g_calendar.php:16
1387
+ #: app/features/ix/import_g_calendar.php:103
1388
+ #: app/features/ix/import_meetup.php:16 app/features/ix/import_meetup.php:85
1389
+ #: app/features/ix/sync.php:16 app/features/ix/thirdparty.php:16
1390
+ #: app/features/ix/thirdparty.php:98
1391
+ msgid "Import"
1392
+ msgstr ""
1393
+
1394
+ #: app/features/ix/export.php:17 app/features/ix/export_g_calendar.php:21
1395
+ #: app/features/ix/import.php:17 app/features/ix/import_f_calendar.php:17
1396
+ #: app/features/ix/import_g_calendar.php:17
1397
+ #: app/features/ix/import_meetup.php:17 app/features/ix/sync.php:17
1398
+ #: app/features/ix/thirdparty.php:17 app/features/ix/thirdparty.php:21
1399
  msgid "Third Party Plugins"
1400
  msgstr ""
1401
 
1402
+ #: app/features/ix/export.php:22
1403
  msgid "Export all events to file"
1404
  msgstr ""
1405
 
1406
+ #: app/features/ix/export.php:23
1407
  msgid ""
1408
  "This will export all of your website events' data into your desired format."
1409
  msgstr ""
1410
 
1411
+ #: app/features/ix/export.php:25 app/features/mec/settings.php:673
1412
  msgid "iCal"
1413
  msgstr ""
1414
 
1415
+ #: app/features/ix/export.php:26
1416
  msgid "CSV"
1417
  msgstr ""
1418
 
1419
+ #: app/features/ix/export.php:27
1420
  msgid "MS Excel"
1421
  msgstr ""
1422
 
1423
+ #: app/features/ix/export.php:28
1424
  msgid "XML"
1425
  msgstr ""
1426
 
1427
+ #: app/features/ix/export.php:29
1428
  msgid "JSON"
1429
  msgstr ""
1430
 
1431
+ #: app/features/ix/export.php:33
1432
  msgid "Export certain events"
1433
  msgstr ""
1434
 
1435
+ #: app/features/ix/export.php:34
1436
  #, php-format
1437
  msgid "For exporting filtered events, you can use bulk actions in %s page."
1438
  msgstr ""
1439
 
1440
+ #: app/features/ix/export.php:37
1441
  msgid "Export certain bookings"
1442
  msgstr ""
1443
 
1444
+ #: app/features/ix/export.php:38
1445
  #, php-format
1446
  msgid "For exporting bookings events, you can use bulk actions in %s page."
1447
  msgstr ""
1448
 
1449
+ #: app/features/ix/export.php:38
1450
  msgid "Bookings"
1451
  msgstr ""
1452
 
1453
+ #: app/features/ix/export_g_calendar.php:26
1454
  msgid "Add events to Google Calendar"
1455
  msgstr ""
1456
 
1457
+ #: app/features/ix/export_g_calendar.php:27
1458
  msgid "Add your desired website events to your Google Calendar."
1459
  msgstr ""
1460
 
1461
+ #: app/features/ix/export_g_calendar.php:27
1462
  #, php-format
1463
  msgid "You should set %s as redirect page in Google App Console."
1464
  msgstr ""
1465
 
1466
+ #: app/features/ix/export_g_calendar.php:30
1467
  msgid "App Client ID"
1468
  msgstr ""
1469
 
1470
+ #: app/features/ix/export_g_calendar.php:36
1471
  msgid "App Client Secret"
1472
  msgstr ""
1473
 
1474
+ #: app/features/ix/export_g_calendar.php:42
1475
+ #: app/features/ix/import_g_calendar.php:32
1476
  msgid "Calendar ID"
1477
  msgstr ""
1478
 
1479
+ #: app/features/ix/export_g_calendar.php:48
1480
+ #: app/features/ix/export_g_calendar.php:103
1481
+ #: app/features/ix/export_g_calendar.php:120
1482
  msgid "Authenticate"
1483
  msgstr ""
1484
 
 
 
 
 
 
 
1485
  #: app/features/ix/export_g_calendar.php:57
1486
  #: app/features/ix/import_f_calendar.php:50
1487
+ #: app/features/ix/import_g_calendar.php:64
1488
+ #: app/features/ix/import_meetup.php:53 app/features/ix/thirdparty.php:49
1489
+ msgid "Select All"
1490
  msgstr ""
1491
 
1492
  #: app/features/ix/export_g_calendar.php:58
1493
  #: app/features/ix/import_f_calendar.php:51
1494
+ #: app/features/ix/import_g_calendar.php:65
1495
+ #: app/features/ix/import_meetup.php:54 app/features/ix/thirdparty.php:50
1496
+ msgid "Deselect All"
1497
+ msgstr ""
1498
+
1499
+ #: app/features/ix/export_g_calendar.php:59
1500
+ #: app/features/ix/import_f_calendar.php:52
1501
+ #: app/features/ix/import_g_calendar.php:66
1502
+ #: app/features/ix/import_meetup.php:55 app/features/ix/thirdparty.php:51
1503
  msgid "Toggle"
1504
  msgstr ""
1505
 
1506
+ #: app/features/ix/export_g_calendar.php:72
1507
+ #: app/features/ix/export_g_calendar.php:147
1508
+ #: app/features/ix/export_g_calendar.php:164
1509
  #: app/features/mec/notifications.php:144
1510
  #: app/features/mec/notifications.php:185
1511
  #: app/features/mec/notifications.php:226
1513
  msgid "Add to Google Calendar"
1514
  msgstr ""
1515
 
1516
+ #: app/features/ix/export_g_calendar.php:90 app/features/mec/settings.php:1367
1517
  msgid "Checking ..."
1518
  msgstr ""
1519
 
1520
+ #: app/features/ix/export_g_calendar.php:134
1521
+ msgid "Exporting ..."
1522
  msgstr ""
1523
 
1524
+ #: app/features/ix/import.php:21
1525
  msgid "Import MEC XML Feed"
1526
  msgstr ""
1527
 
1528
+ #: app/features/ix/import.php:24
1529
  #, php-format
1530
  msgid ""
1531
  "You can import %s events from another website to this website. You just need "
1532
  "an XML feed of the events that can be exported from source website!"
1533
  msgstr ""
1534
 
1535
+ #: app/features/ix/import.php:27
1536
  msgid "XML Feed"
1537
  msgstr ""
1538
 
1539
+ #: app/features/ix/import.php:29 app/features/ix/import.php:42
1540
  msgid "Upload & Import"
1541
  msgstr ""
1542
 
1543
+ #: app/features/ix/import.php:33
1544
  msgid "Import .ics File"
1545
  msgstr ""
1546
 
1547
+ #: app/features/ix/import.php:37
1548
  #, php-format
1549
  msgid ""
1550
  "ICS format supports by many different service providers like Facebook. Apple "
1551
  "Calendar etc. You can import your ics file into the %s using this form."
1552
  msgstr ""
1553
 
1554
+ #: app/features/ix/import.php:40
1555
  msgid "ICS Feed"
1556
  msgstr ""
1557
 
1558
+ #: app/features/ix/import.php:46 app/features/mec/settings.php:554
1559
+ #: app/features/mec/settings.php:704 app/features/mec/settings.php:722
1560
+ #: app/features/mec/settings.php:994 app/features/mec/settings.php:1084
1561
+ #: app/features/mec/settings.php:1101 app/features/mec/settings.php:1166
1562
  #, php-format
1563
  msgid "%s is required to use this feature."
1564
  msgstr ""
1565
 
1566
+ #: app/features/ix/import.php:46 app/features/ix/sync.php:22
1567
  #: app/features/mec/meta_boxes/display_options.php:224
1568
  #: app/features/mec/meta_boxes/display_options.php:379
1569
  #: app/features/mec/meta_boxes/display_options.php:469
1570
  #: app/features/mec/meta_boxes/display_options.php:576
1571
  #: app/features/mec/meta_boxes/display_options.php:626
1572
  #: app/features/mec/meta_boxes/display_options.php:764
1573
+ #: app/features/mec/settings.php:554 app/features/mec/settings.php:704
1574
+ #: app/features/mec/settings.php:722 app/features/mec/settings.php:994
1575
+ #: app/features/mec/settings.php:1084 app/features/mec/settings.php:1101
1576
+ #: app/features/mec/settings.php:1166 app/features/mec/settings.php:1291
1577
  #: app/libraries/skins.php:248
1578
  msgid "Pro version of Modern Events Calendar"
1579
  msgstr ""
1580
 
1581
+ #: app/features/ix/import_f_calendar.php:22
1582
  msgid "The Facebook SDK requires PHP version 5.4 or higher."
1583
  msgstr ""
1584
 
1585
+ #: app/features/ix/import_f_calendar.php:26
1586
  msgid "Import from Facebook Calendar"
1587
  msgstr ""
1588
 
1589
+ #: app/features/ix/import_f_calendar.php:27
1590
+ msgid "Import all of your Facebook events into MEC."
1591
  msgstr ""
1592
 
1593
+ #: app/features/ix/import_f_calendar.php:29
1594
  msgid "Facebook Page Link"
1595
  msgstr ""
1596
 
1597
+ #: app/features/ix/import_f_calendar.php:47
 
 
 
 
 
1598
  msgid "Facebook Events"
1599
  msgstr ""
1600
 
1601
+ #: app/features/ix/import_f_calendar.php:48
1602
  #, php-format
1603
  msgid ""
1604
  "We found %s events for %s page. Please select your desired events to import."
1605
  msgstr ""
1606
 
1607
+ #: app/features/ix/import_f_calendar.php:59 app/features/ix/thirdparty.php:58
1608
  #, php-format
1609
  msgid "Event Title: %s"
1610
  msgstr ""
1611
 
1612
+ #: app/features/ix/import_f_calendar.php:66
1613
+ #: app/features/ix/import_g_calendar.php:87
1614
+ #: app/features/ix/import_meetup.php:69 app/features/ix/thirdparty.php:65
1615
  msgid "Import Options"
1616
  msgstr ""
1617
 
1618
+ #: app/features/ix/import_f_calendar.php:70
1619
+ #: app/features/ix/import_g_calendar.php:97
1620
+ #: app/features/ix/import_meetup.php:79 app/features/ix/thirdparty.php:78
1621
  msgid "Import Locations"
1622
  msgstr ""
1623
 
1624
+ #: app/features/ix/import_f_calendar.php:85
1625
  #, php-format
1626
  msgid "%s events successfully imported to your website from Facebook Calendar."
1627
  msgstr ""
1628
 
1629
+ #: app/features/ix/import_g_calendar.php:23
1630
  msgid "Import from Google Calendar"
1631
  msgstr ""
1632
 
1633
+ #: app/features/ix/import_g_calendar.php:24
1634
  msgid "This will import all of your Google calendar events into MEC."
1635
  msgstr ""
1636
 
1637
+ #: app/features/ix/import_g_calendar.php:26
1638
  msgid "Google API Key"
1639
  msgstr ""
1640
 
1641
+ #: app/features/ix/import_g_calendar.php:61
1642
  msgid "Google Calendar Events"
1643
  msgstr ""
1644
 
1645
+ #: app/features/ix/import_g_calendar.php:62
1646
  #, php-format
1647
  msgid ""
1648
  "We found %s events for %s calendar. Please select your desired events to "
1649
  "import."
1650
  msgstr ""
1651
 
1652
+ #: app/features/ix/import_g_calendar.php:80
1653
+ #: app/features/ix/import_meetup.php:62
1654
  #, php-format
1655
  msgid "Event Title: %s Event Date: %s - %s"
1656
  msgstr ""
1657
 
1658
+ #: app/features/ix/import_g_calendar.php:91
1659
+ #: app/features/ix/import_meetup.php:73 app/features/ix/thirdparty.php:71
1660
  msgid "Import Organizers"
1661
  msgstr ""
1662
 
1663
+ #: app/features/ix/import_g_calendar.php:113
1664
  #, php-format
1665
  msgid "%s events successfully imported to your website from Google Calendar."
1666
  msgstr ""
1667
 
1668
+ #: app/features/ix/import_meetup.php:23
1669
+ msgid "Import from Meetup"
1670
+ msgstr ""
1671
+
1672
+ #: app/features/ix/import_meetup.php:24
1673
+ msgid "This will import all your meetup events into MEC."
1674
+ msgstr ""
1675
+
1676
+ #: app/features/ix/import_meetup.php:26
1677
+ msgid "Meetup API Key"
1678
+ msgstr ""
1679
+
1680
+ #: app/features/ix/import_meetup.php:32
1681
+ msgid "Group URL"
1682
+ msgstr ""
1683
+
1684
+ #: app/features/ix/import_meetup.php:35
1685
+ #, php-format
1686
+ msgid "put only the slug of your group like %s in %s"
1687
+ msgstr ""
1688
+
1689
+ #: app/features/ix/import_meetup.php:50
1690
+ msgid "Meetup Events"
1691
+ msgstr ""
1692
+
1693
+ #: app/features/ix/import_meetup.php:51
1694
+ #, php-format
1695
+ msgid ""
1696
+ "We found %s events for %s group. Please select your desired events to import."
1697
+ msgstr ""
1698
+
1699
+ #: app/features/ix/import_meetup.php:95
1700
+ #, php-format
1701
+ msgid "%s events successfully imported to your website from meetup."
1702
+ msgstr ""
1703
+
1704
+ #: app/features/ix/import_meetup.php:96 app/features/ix/thirdparty.php:109
1705
+ msgid "Attention"
1706
+ msgstr ""
1707
+
1708
+ #: app/features/ix/import_meetup.php:96
1709
+ msgid ""
1710
+ "Although we tried our best to make the events completely compatible with MEC "
1711
+ "but some modification might be needed. We suggest you to edit the imported "
1712
+ "listings one by one on MEC edit event page and make sure thay're correct."
1713
+ msgstr ""
1714
+
1715
  #: app/features/ix/sync.php:8
1716
  msgid "Auto Synchronization"
1717
  msgstr ""
1718
 
1719
+ #: app/features/ix/sync.php:22
1720
  #: app/features/mec/meta_boxes/display_options.php:626
1721
  #, php-format
1722
  msgid "%s is required to use synchronization feature."
1723
  msgstr ""
1724
 
1725
+ #: app/features/ix/sync.php:29
1726
  msgid "Auto Google Import"
1727
  msgstr ""
1728
 
1729
+ #: app/features/ix/sync.php:32 app/features/ix/sync.php:41
1730
+ #: app/features/ix/sync.php:52 app/features/ix/sync.php:63
1731
+ #: app/features/mec/notifications.php:281
1732
  msgid "Important Note"
1733
  msgstr ""
1734
 
1735
+ #: app/features/ix/sync.php:32
1736
  #, php-format
1737
  msgid ""
1738
  "Set a cronjob to call %s file atleast once per day otherwise it won't import "
1739
  "Google Calendar events."
1740
  msgstr ""
1741
 
1742
+ #: app/features/ix/sync.php:38
1743
  msgid "Auto Google Export"
1744
  msgstr ""
1745
 
1746
+ #: app/features/ix/sync.php:41
1747
  #, php-format
1748
  msgid ""
1749
  "Set a cronjob to call %s file atleast once per day otherwise it won't export "
1750
  "your website events into Google Calendar."
1751
  msgstr ""
1752
 
1753
+ #: app/features/ix/sync.php:49
1754
  msgid "Auto Facebook Import"
1755
  msgstr ""
1756
 
1757
+ #: app/features/ix/sync.php:52
1758
  #, php-format
1759
  msgid ""
1760
  "Set a cronjob to call %s file atleast once per day otherwise it won't import "
1761
  "any event from Facebook."
1762
  msgstr ""
1763
 
1764
+ #: app/features/ix/sync.php:60
1765
+ msgid "Auto Meetup Import"
1766
+ msgstr ""
1767
+
1768
+ #: app/features/ix/sync.php:63
1769
+ #, php-format
1770
+ msgid ""
1771
+ "Set a cronjob to call %s file atleast once per day otherwise it won't import "
1772
+ "any event from Meetup."
1773
+ msgstr ""
1774
+
1775
+ #: app/features/ix/sync.php:68
1776
  msgid "Save"
1777
  msgstr ""
1778
 
1779
+ #: app/features/ix/thirdparty.php:24
1780
  #, php-format
1781
  msgid "You can import events from following integrated plugins to %s."
1782
  msgstr ""
1783
 
1784
+ #: app/features/ix/thirdparty.php:27
1785
  msgid "Third Party"
1786
  msgstr ""
1787
 
1788
+ #: app/features/ix/thirdparty.php:46
1789
  msgid "Found Events"
1790
  msgstr ""
1791
 
1792
+ #: app/features/ix/thirdparty.php:47
1793
  #, php-format
1794
  msgid "We found %s events. Please select your desired events to import."
1795
  msgstr ""
1796
 
1797
+ #: app/features/ix/thirdparty.php:70
1798
  msgid "Import Instructors"
1799
  msgstr ""
1800
 
1801
+ #: app/features/ix/thirdparty.php:85
1802
  msgid "Import Class Types"
1803
  msgstr ""
1804
 
1805
+ #: app/features/ix/thirdparty.php:86
1806
  msgid "Import Categories"
1807
  msgstr ""
1808
 
1809
+ #: app/features/ix/thirdparty.php:93
1810
  msgid "Import Featured Images"
1811
  msgstr ""
1812
 
1813
+ #: app/features/ix/thirdparty.php:108
1814
  #, php-format
1815
  msgid "%s events successfully imported to your website."
1816
  msgstr ""
1817
 
1818
+ #: app/features/ix/thirdparty.php:109
 
 
 
 
1819
  msgid ""
1820
  "Although we tried our best to make the events completely compatible with MEC "
1821
  "but some modification might be needed. We suggest you to edit the imported "
1822
+ "listings one by one on MEC edit event page and make sure they are correct."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1823
  msgstr ""
1824
 
1825
  #: app/features/labels.php:102 app/features/labels.php:133
1863
  msgstr ""
1864
 
1865
  #: app/features/labels.php:117 app/features/labels.php:142
1866
+ #: app/libraries/main.php:4361 app/skins/agenda/render.php:41
1867
+ #: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:33
1868
+ #: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:31
1869
+ #: app/skins/daily_view/render.php:26 app/skins/grid/render.php:53
1870
+ #: app/skins/list/render.php:39 app/skins/masonry/render.php:32
1871
+ #: app/skins/monthly_view/calendar.php:84
1872
  #: app/skins/monthly_view/calendar_clean.php:85
1873
  #: app/skins/monthly_view/calendar_novel.php:81 app/skins/slider/render.php:52
1874
  #: app/skins/timetable/render.php:36 app/skins/timetable/render.php:99
1882
 
1883
  #: app/features/labels.php:179 app/features/locations.php:231
1884
  #: app/features/organizers.php:201 app/features/speakers.php:245
1885
+ #: app/modules/booking/steps/tickets.php:38
1886
  msgid "Count"
1887
  msgstr ""
1888
 
1897
  msgstr ""
1898
 
1899
  #: app/features/locations.php:59 app/features/mec.php:200
1900
+ #: app/features/mec/meta_boxes/filter.php:87 app/libraries/main.php:4170
1901
  msgid "Locations"
1902
  msgstr ""
1903
 
1968
  msgid "eg. City Hall"
1969
  msgstr ""
1970
 
1971
+ #: app/features/locations.php:298 app/features/mec/settings.php:902
1972
  #: app/widgets/single.php:115
1973
  msgid "Event Location"
1974
  msgstr ""
1992
  msgstr ""
1993
 
1994
  #: app/features/mec.php:201 app/features/mec/meta_boxes/filter.php:104
1995
+ #: app/features/organizers.php:59 app/libraries/main.php:4172
1996
  msgid "Organizers"
1997
  msgstr ""
1998
 
2064
  msgstr ""
2065
 
2066
  #: app/features/mec/dashboard.php:61
2067
+ msgid "Modern Events Calendar (Lite)"
 
 
 
 
2068
  msgstr ""
2069
 
2070
  #: app/features/mec/dashboard.php:63 app/libraries/factory.php:191
2071
+ msgctxt "plugin rate"
2072
  msgid "Rate the plugin ★★★★★"
2073
  msgstr ""
2074
 
2132
  msgid "OPEN A TICKET"
2133
  msgstr ""
2134
 
2135
+ #: app/features/mec/dashboard.php:160 app/features/mec/settings.php:401
2136
  msgid "Upcoming Events"
2137
  msgstr ""
2138
 
2183
 
2184
  #: app/features/mec/gateways.php:52 app/features/mec/messages.php:52
2185
  #: app/features/mec/notifications.php:51 app/features/mec/regform.php:50
2186
+ #: app/features/mec/settings.php:228 app/features/mec/styles.php:52
2187
  #: app/features/mec/styling.php:78 app/features/mec/support.php:50
2188
  msgid "Styling Options"
2189
  msgstr ""
2190
 
2191
  #: app/features/mec/gateways.php:59 app/features/mec/messages.php:59
2192
  #: app/features/mec/notifications.php:58 app/features/mec/regform.php:57
2193
+ #: app/features/mec/settings.php:235 app/features/mec/styles.php:59
2194
  #: app/features/mec/styling.php:85 app/features/mec/support.php:57
2195
  msgid "Custom CSS"
2196
  msgstr ""
2197
 
2198
  #: app/features/mec/gateways.php:66 app/features/mec/messages.php:66
2199
  #: app/features/mec/messages.php:90 app/features/mec/notifications.php:65
2200
+ #: app/features/mec/regform.php:64 app/features/mec/settings.php:242
2201
  #: app/features/mec/styles.php:66 app/features/mec/styling.php:92
2202
  #: app/features/mec/support.php:64
2203
  msgid "Messages"
2205
 
2206
  #: app/features/mec/gateways.php:73 app/features/mec/messages.php:73
2207
  #: app/features/mec/notifications.php:72 app/features/mec/regform.php:71
2208
+ #: app/features/mec/settings.php:249 app/features/mec/styles.php:73
2209
  #: app/features/mec/styling.php:99 app/features/mec/support.php:71
2210
  #: app/features/mec/support.php:84
2211
  msgid "Support"
2218
  #: app/features/mec/notifications.php:425
2219
  #: app/features/mec/notifications.php:433 app/features/mec/regform.php:130
2220
  #: app/features/mec/regform.php:203 app/features/mec/regform.php:211
2221
+ #: app/features/mec/settings.php:257 app/features/mec/settings.php:1329
2222
+ #: app/features/mec/settings.php:1337 app/features/mec/settings.php:1381
2223
+ #: app/features/mec/settings.php:1394 app/features/mec/styles.php:96
2224
  #: app/features/mec/styles.php:136 app/features/mec/styles.php:144
2225
  #: app/features/mec/styling.php:262 app/features/mec/styling.php:327
2226
  #: app/features/mec/styling.php:335
2229
 
2230
  #: app/features/mec/gateways.php:130 app/features/mec/messages.php:137
2231
  #: app/features/mec/notifications.php:413 app/features/mec/regform.php:190
2232
+ #: app/features/mec/settings.php:1362 app/features/mec/styles.php:123
2233
  #: app/features/mec/styling.php:313
2234
  msgid "Saved"
2235
  msgstr ""
2236
 
2237
  #: app/features/mec/gateways.php:131 app/features/mec/messages.php:138
2238
  #: app/features/mec/notifications.php:414 app/features/mec/regform.php:191
2239
+ #: app/features/mec/settings.php:1363 app/features/mec/styles.php:124
2240
  #: app/features/mec/styling.php:314
2241
  msgid "Settings Saved!"
2242
  msgstr ""
2524
 
2525
  #: app/features/mec/meta_boxes/display_options.php:297
2526
  #: app/features/mec/meta_boxes/display_options.php:313
2527
+ #: app/libraries/main.php:326 app/libraries/main.php:1164
2528
  msgid "List View"
2529
  msgstr ""
2530
 
2531
  #: app/features/mec/meta_boxes/display_options.php:298
2532
  #: app/features/mec/meta_boxes/display_options.php:323
2533
+ #: app/libraries/main.php:330 app/libraries/main.php:1158
2534
  msgid "Yearly View"
2535
  msgstr ""
2536
 
2541
 
2542
  #: app/features/mec/meta_boxes/display_options.php:300
2543
  #: app/features/mec/meta_boxes/display_options.php:343
2544
+ #: app/libraries/main.php:333 app/libraries/main.php:1160
2545
  msgid "Weekly View"
2546
  msgstr ""
2547
 
2548
  #: app/features/mec/meta_boxes/display_options.php:301
2549
  #: app/features/mec/meta_boxes/display_options.php:353
2550
+ #: app/libraries/main.php:332 app/libraries/main.php:1161
2551
  msgid "Daily View"
2552
  msgstr ""
2553
 
2851
  #: app/features/mec/meta_boxes/search_form.php:449
2852
  #: app/features/mec/meta_boxes/search_form.php:456
2853
  #: app/features/mec/meta_boxes/search_form.php:463
2854
+ #: app/features/mec/settings.php:315 app/features/mec/settings.php:413
2855
+ #: app/features/mec/settings.php:597
2856
  msgid "Disabled"
2857
  msgstr ""
2858
 
3135
  msgid "Email/Booking verification link."
3136
  msgstr ""
3137
 
3138
+ #: app/features/mec/notifications.php:189 app/features/mec/settings.php:1057
3139
  msgid "Booking Confirmation"
3140
  msgstr ""
3141
 
3212
  msgid "Status of event"
3213
  msgstr ""
3214
 
3215
+ #: app/features/mec/notifications.php:355 app/features/mec/settings.php:944
3216
  msgid "Event Note"
3217
  msgstr ""
3218
 
3224
  msgid "Archive Page Options"
3225
  msgstr ""
3226
 
3227
+ #: app/features/mec/settings.php:90 app/features/mec/settings.php:662
3228
  msgid "Export Module Options"
3229
  msgstr ""
3230
 
3231
+ #: app/features/mec/settings.php:96 app/features/mec/settings.php:689
3232
  msgid "Local Time Module"
3233
  msgstr ""
3234
 
3235
+ #: app/features/mec/settings.php:102 app/features/mec/settings.php:701
3236
  msgid "QR Code Module"
3237
  msgstr ""
3238
 
3239
+ #: app/features/mec/settings.php:108 app/features/mec/settings.php:719
3240
  #: app/widgets/single.php:147
3241
  msgid "Weather Module"
3242
  msgstr ""
3243
 
3244
+ #: app/features/mec/settings.php:138 app/features/mec/settings.php:963
3245
+ msgid "User Profile"
3246
+ msgstr ""
3247
+
3248
+ #: app/features/mec/settings.php:150 app/features/mec/settings.php:981
3249
  msgid "Additional Organizers"
3250
  msgstr ""
3251
 
3252
+ #: app/features/mec/settings.php:168 app/features/mec/settings.php:1098
3253
  msgid "Taxes / Fees"
3254
  msgstr ""
3255
 
3256
+ #: app/features/mec/settings.php:174 app/features/mec/settings.php:1163
3257
  msgid "Ticket Variations & Options"
3258
  msgstr ""
3259
 
3260
+ #: app/features/mec/settings.php:274
3261
  msgid "Time Format"
3262
  msgstr ""
3263
 
3264
+ #: app/features/mec/settings.php:277
3265
  msgid "12 hours format with AM/PM"
3266
  msgstr ""
3267
 
3268
+ #: app/features/mec/settings.php:278
3269
  msgid "24 hours format"
3270
  msgstr ""
3271
 
3272
+ #: app/features/mec/settings.php:280 app/features/mec/settings.php:293
3273
  msgid ""
3274
  "This option is for showing start/end time of events on frontend of website."
3275
  msgstr ""
3276
 
3277
+ #: app/features/mec/settings.php:285
3278
  msgid "Hide Events"
3279
  msgstr ""
3280
 
3281
+ #: app/features/mec/settings.php:288
3282
  msgid "On Event Start"
3283
  msgstr ""
3284
 
3285
+ #: app/features/mec/settings.php:289
3286
  msgid "+1 Hour after start"
3287
  msgstr ""
3288
 
3289
+ #: app/features/mec/settings.php:290
3290
  msgid "+2 Hours after start"
3291
  msgstr ""
3292
 
3293
+ #: app/features/mec/settings.php:291
3294
  msgid "On Event End"
3295
  msgstr ""
3296
 
3297
+ #: app/features/mec/settings.php:299
3298
  msgid "Multiple Day Events"
3299
  msgstr ""
3300
 
3301
+ #: app/features/mec/settings.php:302
3302
  msgid "Show only first day on List/Grid/Slider skins"
3303
  msgstr ""
3304
 
3305
+ #: app/features/mec/settings.php:303
3306
  msgid "Show only first day on all skins"
3307
  msgstr ""
3308
 
3309
+ #: app/features/mec/settings.php:304
3310
  msgid "Show all days"
3311
  msgstr ""
3312
 
3313
+ #: app/features/mec/settings.php:306
3314
  msgid ""
3315
  "For showing all days of multiple day events on frontend or only show the "
3316
  "first day."
3317
  msgstr ""
3318
 
3319
+ #: app/features/mec/settings.php:312
3320
  msgid "Remove MEC Data on Plugin Uninstall"
3321
  msgstr ""
3322
 
3323
+ #: app/features/mec/settings.php:316
3324
  msgid "Enabled"
3325
  msgstr ""
3326
 
3327
+ #: app/features/mec/settings.php:322
3328
  msgid "Exclude Date Suffix"
3329
  msgstr ""
3330
 
3331
+ #: app/features/mec/settings.php:325
3332
  msgid "Remove suffix from calendars"
3333
  msgstr ""
3334
 
3335
+ #: app/features/mec/settings.php:332 app/libraries/main.php:4179
3336
  msgid "Weekdays"
3337
  msgstr ""
3338
 
3339
+ #: app/features/mec/settings.php:340
3340
  msgid ""
3341
  "Proceed with caution. Default is set to Monday, Tuesday, Wednesday, Thursday "
3342
  "and Friday."
3343
  msgstr ""
3344
 
3345
+ #: app/features/mec/settings.php:347
3346
  msgid "Weekends"
3347
  msgstr ""
3348
 
3349
+ #: app/features/mec/settings.php:355
3350
  msgid "Proceed with caution. Default is set to Saturday and Sunday."
3351
  msgstr ""
3352
 
3353
+ #: app/features/mec/settings.php:363
3354
  msgid "Archive Pages"
3355
  msgstr ""
3356
 
3357
+ #: app/features/mec/settings.php:366
3358
  msgid "Archive Page Title"
3359
  msgstr ""
3360
 
3361
+ #: app/features/mec/settings.php:369
3362
  msgid "Default value is Events"
3363
  msgstr ""
3364
 
3365
+ #: app/features/mec/settings.php:374
3366
  msgid "Archive Page Skin"
3367
  msgstr ""
3368
 
3369
+ #: app/features/mec/settings.php:381
3370
  msgid "Default value is Calendar/Monthly View"
3371
  msgstr ""
3372
 
3373
+ #: app/features/mec/settings.php:386
3374
  msgid "Category Page Skin"
3375
  msgstr ""
3376
 
3377
+ #: app/features/mec/settings.php:393
3378
  msgid "Default value is List View"
3379
  msgstr ""
3380
 
3381
+ #: app/features/mec/settings.php:398
3382
  msgid "Category Events Method"
3383
  msgstr ""
3384
 
3385
+ #: app/features/mec/settings.php:402
3386
  msgid "Expired Events"
3387
  msgstr ""
3388
 
3389
+ #: app/features/mec/settings.php:404
3390
  msgid "Default value is Upcoming Events"
3391
  msgstr ""
3392
 
3393
+ #: app/features/mec/settings.php:409
3394
  msgid "Events Archive Status"
3395
  msgstr ""
3396
 
3397
+ #: app/features/mec/settings.php:412
3398
  msgid "Enabled (Recommended)"
3399
  msgstr ""
3400
 
3401
+ #: app/features/mec/settings.php:415
3402
  msgid ""
3403
  "If you disable it, then you should create a page as archive page of MEC. "
3404
  "Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
3405
  "MEC rewrite rules."
3406
  msgstr ""
3407
 
3408
+ #: app/features/mec/settings.php:425
3409
  msgid "Main Slug"
3410
  msgstr ""
3411
 
3412
+ #: app/features/mec/settings.php:428
3413
  msgid ""
3414
  "Default value is events. Valid characters are lowercase a-z, - character and "
3415
  "numbers."
3416
  msgstr ""
3417
 
3418
+ #: app/features/mec/settings.php:432
3419
  msgid "Category Slug"
3420
  msgstr ""
3421
 
3422
+ #: app/features/mec/settings.php:435
3423
  msgid ""
3424
  "It's slug of MEC categories, you can change it to events-cat or something "
3425
  "else. Default value is mec-category. Valid characters are lowercase a-z, - "
3426
  "character and numbers."
3427
  msgstr ""
3428
 
3429
+ #: app/features/mec/settings.php:445
3430
  msgid "Single Event Date Format"
3431
  msgstr ""
3432
 
3433
+ #: app/features/mec/settings.php:448 app/features/mec/settings.php:810
3434
  msgid "Default is M d Y"
3435
  msgstr ""
3436
 
3437
+ #: app/features/mec/settings.php:452
3438
  msgid "Date Method"
3439
  msgstr ""
3440
 
3441
+ #: app/features/mec/settings.php:455
3442
  msgid "Next occurrence date"
3443
  msgstr ""
3444
 
3445
+ #: app/features/mec/settings.php:456
3446
  msgid "Referred date"
3447
  msgstr ""
3448
 
3449
+ #: app/features/mec/settings.php:458
3450
  msgid ""
3451
  "\"Referred date\" shows the event date based on referred date in event list."
3452
  msgstr ""
3453
 
3454
+ #: app/features/mec/settings.php:462
3455
  msgid "Single Event Style"
3456
  msgstr ""
3457
 
3458
+ #: app/features/mec/settings.php:465
3459
  msgid "Default Style"
3460
  msgstr ""
3461
 
3462
+ #: app/features/mec/settings.php:466
3463
  msgid "Modern Style"
3464
  msgstr ""
3465
 
3466
+ #: app/features/mec/settings.php:468
3467
  msgid "Choose your single event style."
3468
  msgstr ""
3469
 
3470
+ #: app/features/mec/settings.php:472
3471
  msgid "Booking Style"
3472
  msgstr ""
3473
 
3474
+ #: app/features/mec/settings.php:475 app/features/mec/settings.php:586
3475
  msgid "Default"
3476
  msgstr ""
3477
 
3478
+ #: app/features/mec/settings.php:476
3479
  msgid "Modal"
3480
  msgstr ""
3481
 
3482
+ #: app/features/mec/settings.php:478
3483
  msgid "Choose your Booking style."
3484
  msgstr ""
3485
 
3486
+ #: app/features/mec/settings.php:486
3487
  msgid "Currency"
3488
  msgstr ""
3489
 
3490
+ #: app/features/mec/settings.php:496
3491
  msgid "Currency Sign"
3492
  msgstr ""
3493
 
3494
+ #: app/features/mec/settings.php:499
3495
  msgid "Default value will be \"currency\" if you leave it empty."
3496
  msgstr ""
3497
 
3498
+ #: app/features/mec/settings.php:503
3499
  msgid "Currency Position"
3500
  msgstr ""
3501
 
3502
+ #: app/features/mec/settings.php:506
3503
  msgid "Before $10"
3504
  msgstr ""
3505
 
3506
+ #: app/features/mec/settings.php:507
3507
  msgid "After 10$"
3508
  msgstr ""
3509
 
3510
+ #: app/features/mec/settings.php:512
3511
  msgid "Thousand Separator"
3512
  msgstr ""
3513
 
3514
+ #: app/features/mec/settings.php:518
3515
  msgid "Decimal Separator"
3516
  msgstr ""
3517
 
3518
+ #: app/features/mec/settings.php:528
3519
  msgid "No decimal"
3520
  msgstr ""
3521
 
3522
+ #: app/features/mec/settings.php:537
3523
  msgid "Speakers Options"
3524
  msgstr ""
3525
 
3526
+ #: app/features/mec/settings.php:543
3527
  msgid "Enable speakers feature"
3528
  msgstr ""
3529
 
3530
+ #: app/features/mec/settings.php:559
3531
  msgid "Show Google Maps on event page"
3532
  msgstr ""
3533
 
3534
+ #: app/features/mec/settings.php:564 app/features/mec/settings.php:732
3535
+ #: app/features/mec/settings.php:1261
3536
  msgid "API Key"
3537
  msgstr ""
3538
 
3539
+ #: app/features/mec/settings.php:567 app/features/mec/settings.php:1264
3540
+ #: app/features/mec/settings.php:1271
3541
  msgid "Required!"
3542
  msgstr ""
3543
 
3544
+ #: app/features/mec/settings.php:571
3545
  msgid "Zoom level"
3546
  msgstr ""
3547
 
3548
+ #: app/features/mec/settings.php:578
3549
  msgid ""
3550
  "For Google Maps module in single event page. In Google Maps skin, it will "
3551
  "caculate the zoom level automatically based on event boundaries."
3552
  msgstr ""
3553
 
3554
+ #: app/features/mec/settings.php:582
3555
  msgid "Google Maps Style"
3556
  msgstr ""
3557
 
3558
+ #: app/features/mec/settings.php:594
3559
  msgid "Direction on single event"
3560
  msgstr ""
3561
 
3562
+ #: app/features/mec/settings.php:598
3563
  msgid "Simple Method"
3564
  msgstr ""
3565
 
3566
+ #: app/features/mec/settings.php:599
3567
  msgid "Advanced Method"
3568
  msgstr ""
3569
 
3570
+ #: app/features/mec/settings.php:604
3571
  msgid "Lightbox Date Format"
3572
  msgstr ""
3573
 
3574
+ #: app/features/mec/settings.php:607
3575
  msgid "Default value is M d Y"
3576
  msgstr ""
3577
 
3578
+ #: app/features/mec/settings.php:611
3579
  msgid "Google Maps API"
3580
  msgstr ""
3581
 
3582
+ #: app/features/mec/settings.php:615
3583
  msgid "Don't load Google Maps API library"
3584
  msgstr ""
3585
 
3586
+ #: app/features/mec/settings.php:617
3587
  msgid "Check it only if another plugin/theme is loading the Google Maps API"
3588
  msgstr ""
3589
 
3590
+ #: app/features/mec/settings.php:629
3591
  msgid "Enable Google Recaptcha"
3592
  msgstr ""
3593
 
3594
+ #: app/features/mec/settings.php:636
3595
  msgid "Enable on booking form"
3596
  msgstr ""
3597
 
3598
+ #: app/features/mec/settings.php:642
3599
+ msgid "Enable on \"Frontend Event Submission\" form"
3600
  msgstr ""
3601
 
3602
+ #: app/features/mec/settings.php:646
3603
  msgid "Site Key"
3604
  msgstr ""
3605
 
3606
+ #: app/features/mec/settings.php:652
3607
  msgid "Secret Key"
3608
  msgstr ""
3609
 
3610
+ #: app/features/mec/settings.php:666
3611
  msgid ""
3612
  "Show export module (iCal export and add to Google calendars) on event page"
3613
  msgstr ""
3614
 
3615
+ #: app/features/mec/settings.php:673
3616
  msgid "Google Calendar"
3617
  msgstr ""
3618
 
3619
+ #: app/features/mec/settings.php:693
3620
  msgid "Show event time based on local time of visitor on event page"
3621
  msgstr ""
3622
 
3623
+ #: app/features/mec/settings.php:709
3624
  msgid "Show QR code of event in details page and booking invoice"
3625
  msgstr ""
3626
 
3627
+ #: app/features/mec/settings.php:727
3628
  msgid "Show weather module on event page"
3629
  msgstr ""
3630
 
3631
+ #: app/features/mec/settings.php:735
3632
  #, php-format
3633
  msgid "You can get a free API Key from %s"
3634
  msgstr ""
3635
 
3636
+ #: app/features/mec/settings.php:747
3637
  msgid "Show countdown module on event page"
3638
  msgstr ""
3639
 
3640
+ #: app/features/mec/settings.php:752
3641
  msgid "Countdown Style"
3642
  msgstr ""
3643
 
3644
+ #: app/features/mec/settings.php:755
3645
  msgid "Plain Style"
3646
  msgstr ""
3647
 
3648
+ #: app/features/mec/settings.php:756
3649
  msgid "Flip Style"
3650
  msgstr ""
3651
 
3652
+ #: app/features/mec/settings.php:768
3653
  msgid "Show social network module"
3654
  msgstr ""
3655
 
3656
+ #: app/features/mec/settings.php:793
3657
  msgid "Show next event module on event page"
3658
  msgstr ""
3659
 
3660
+ #: app/features/mec/settings.php:798
3661
  msgid "Method"
3662
  msgstr ""
3663
 
3664
+ #: app/features/mec/settings.php:801
3665
  msgid "Next Occurrence of Current Event"
3666
  msgstr ""
3667
 
3668
+ #: app/features/mec/settings.php:802
3669
  msgid "Next Occurrence of Other Events"
3670
  msgstr ""
3671
 
3672
+ #: app/features/mec/settings.php:807 app/features/mec/settings.php:1004
3673
  msgid "Date Format"
3674
  msgstr ""
3675
 
3676
+ #: app/features/mec/settings.php:819
3677
  msgid "Events List Page"
3678
  msgstr ""
3679
 
3680
+ #: app/features/mec/settings.php:828 app/features/mec/settings.php:840
3681
  #, php-format
3682
  msgid "Put %s shortcode into the page."
3683
  msgstr ""
3684
 
3685
+ #: app/features/mec/settings.php:831
3686
  msgid "Add/Edit Events Page"
3687
  msgstr ""
3688
 
3689
+ #: app/features/mec/settings.php:845
3690
  msgid "Enable event submission by guest (Not logged-in) users"
3691
  msgstr ""
3692
 
3693
+ #: app/features/mec/settings.php:852
3694
  msgid "Enable mandatory email and name for guest user"
3695
  msgstr ""
3696
 
3697
+ #: app/features/mec/settings.php:856
3698
  msgid "Frontend Event Submission Sections"
3699
  msgstr ""
3700
 
3701
+ #: app/features/mec/settings.php:878 app/widgets/single.php:119
3702
  msgid "Event Categories"
3703
  msgstr ""
3704
 
3705
+ #: app/features/mec/settings.php:884
3706
  msgid "Event Labels"
3707
  msgstr ""
3708
 
3709
+ #: app/features/mec/settings.php:896
3710
  msgid "Event Tags"
3711
  msgstr ""
3712
 
3713
+ #: app/features/mec/settings.php:908 app/widgets/single.php:123
3714
  msgid "Event Organizer"
3715
  msgstr ""
3716
 
3717
+ #: app/features/mec/settings.php:926
3718
  msgid "Booking Options"
3719
  msgstr ""
3720
 
3721
+ #: app/features/mec/settings.php:932
3722
  msgid "Fees / Taxes Options"
3723
  msgstr ""
3724
 
3725
+ #: app/features/mec/settings.php:946
3726
  #, php-format
3727
  msgid ""
3728
  "Users can put a note for editors while they're submitting the event. Also "
3730
  "users' note in email."
3731
  msgstr ""
3732
 
3733
+ #: app/features/mec/settings.php:950
3734
  msgid "Visibility of Note"
3735
  msgstr ""
3736
 
3737
+ #: app/features/mec/settings.php:953
3738
  msgid "Always"
3739
  msgstr ""
3740
 
3741
+ #: app/features/mec/settings.php:954
3742
  msgid "While event is not published"
3743
  msgstr ""
3744
 
3745
+ #: app/features/mec/settings.php:957
3746
  msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
3747
  msgstr ""
3748
 
3749
+ #: app/features/mec/settings.php:965
3750
+ #, php-format
3751
+ msgid ""
3752
+ "Put %s shortcode into your desired page. Then users are able to see history "
3753
+ "of their bookings."
3754
+ msgstr ""
3755
+
3756
+ #: app/features/mec/settings.php:970
3757
  msgid "Exceptional days"
3758
  msgstr ""
3759
 
3760
+ #: app/features/mec/settings.php:974
3761
  msgid "Show exceptional days option on Add/Edit events page"
3762
  msgstr ""
3763
 
3764
+ #: app/features/mec/settings.php:975
3765
  msgid ""
3766
  "Using this option you can include/exclude certain days to/from event "
3767
  "occurrence dates."
3768
  msgstr ""
3769
 
3770
+ #: app/features/mec/settings.php:985
3771
  msgid ""
3772
  "Show additional organizers option on Add/Edit events page and single event "
3773
  "page."
3774
  msgstr ""
3775
 
3776
+ #: app/features/mec/settings.php:999
3777
  msgid "Enable booking module"
3778
  msgstr ""
3779
 
3780
+ #: app/features/mec/settings.php:1007
3781
  msgid "Default is Y-m-d"
3782
  msgstr ""
3783
 
3784
+ #: app/features/mec/settings.php:1011
3785
  msgid "Maximum Dates"
3786
  msgstr ""
3787
 
3788
+ #: app/features/mec/settings.php:1013
3789
  msgid "Default is 6"
3790
  msgstr ""
3791
 
3792
+ #: app/features/mec/settings.php:1017
3793
  msgid "Thank You Page"
3794
  msgstr ""
3795
 
3796
+ #: app/features/mec/settings.php:1025
3797
  msgid ""
3798
  "User redirects to this page after booking. Leave it empty if you want to "
3799
  "disable it."
3800
  msgstr ""
3801
 
3802
+ #: app/features/mec/settings.php:1033
3803
  msgid "Enable Express Attendees Form"
3804
  msgstr ""
3805
 
3806
+ #: app/features/mec/settings.php:1035
3807
  msgid ""
3808
  "Users are able to apply first attendee information for other attendees in "
3809
  "the booking form."
3810
  msgstr ""
3811
 
3812
+ #: app/features/mec/settings.php:1038
3813
  msgid "Email verification"
3814
  msgstr ""
3815
 
3816
+ #: app/features/mec/settings.php:1044
3817
  msgid "Auto verification for free bookings"
3818
  msgstr ""
3819
 
3820
+ #: app/features/mec/settings.php:1053
3821
  msgid "Auto verification for paid bookings"
3822
  msgstr ""
3823
 
3824
+ #: app/features/mec/settings.php:1063
3825
  msgid "Auto confirmation for free bookings"
3826
  msgstr ""
3827
 
3828
+ #: app/features/mec/settings.php:1072
3829
  msgid "Auto confirmation for paid bookings"
3830
  msgstr ""
3831
 
3832
+ #: app/features/mec/settings.php:1089
3833
  msgid "Enable coupons module"
3834
  msgstr ""
3835
 
3836
+ #: app/features/mec/settings.php:1106
3837
  msgid "Enable taxes / fees module"
3838
  msgstr ""
3839
 
3840
+ #: app/features/mec/settings.php:1111
3841
  msgid "Add Fee"
3842
  msgstr ""
3843
 
3844
+ #: app/features/mec/settings.php:1171
3845
  msgid "Enable ticket options module"
3846
  msgstr ""
3847
 
3848
+ #: app/features/mec/settings.php:1176
3849
  msgid "Add Variation / Option"
3850
  msgstr ""
3851
 
3852
+ #: app/features/mec/settings.php:1226
3853
  msgid "Enable BuddyPress Integration"
3854
  msgstr ""
3855
 
3856
+ #: app/features/mec/settings.php:1233
3857
  msgid "Show \"Attendees Module\" in event details page"
3858
  msgstr ""
3859
 
3860
+ #: app/features/mec/settings.php:1237
3861
  msgid "Attendees Limit"
3862
  msgstr ""
3863
 
3864
+ #: app/features/mec/settings.php:1245
3865
  msgid "Add booking activity to user profile"
3866
  msgstr ""
3867
 
3868
+ #: app/features/mec/settings.php:1256
3869
  msgid "Enable Mailchimp Integration"
3870
  msgstr ""
3871
 
3872
+ #: app/features/mec/settings.php:1268
3873
  msgid "List ID"
3874
  msgstr ""
3875
 
3876
+ #: app/features/mec/settings.php:1275
3877
  msgid "Subscription Status"
3878
  msgstr ""
3879
 
3880
+ #: app/features/mec/settings.php:1278
3881
  msgid "Subscribe automatically"
3882
  msgstr ""
3883
 
3884
+ #: app/features/mec/settings.php:1279
3885
  msgid "Subscribe by verification"
3886
  msgstr ""
3887
 
3888
+ #: app/features/mec/settings.php:1281
3889
  msgid ""
3890
  "If you choose \"Subscribe by verification\" then an email will send to user "
3891
  "by mailchimp for subscription verification."
3892
  msgstr ""
3893
 
3894
+ #: app/features/mec/settings.php:1291
3895
  #, php-format
3896
  msgid "%s is required to use this section."
3897
  msgstr ""
3898
 
3899
+ #: app/features/mec/settings.php:1294
3900
  msgid "Purchase Code"
3901
  msgstr ""
3902
 
3903
+ #: app/features/mec/settings.php:1299 app/features/mec/settings.php:1365
3904
+ #: app/features/mec/settings.php:1383 app/libraries/main.php:4360
3905
  msgid "Verified"
3906
  msgstr ""
3907
 
3908
+ #: app/features/mec/settings.php:1301
3909
  msgid "UnVerified"
3910
  msgstr ""
3911
 
3912
+ #: app/features/mec/settings.php:1303
3913
  msgid ""
3914
+ "Please insert your purchase code validation. Read documentation for more "
3915
  "information."
3916
  msgstr ""
3917
 
3918
+ #: app/features/mec/settings.php:1306
3919
  msgid "Product Name"
3920
  msgstr ""
3921
 
3922
+ #: app/features/mec/settings.php:1309
3923
  msgid "1 License for MEC Plugin"
3924
  msgstr ""
3925
 
3926
+ #: app/features/mec/settings.php:1310
3927
  msgid "5 License for MEC Plugin"
3928
  msgstr ""
3929
 
3930
+ #: app/features/mec/settings.php:1311
3931
  msgid "10 License for MEC Plugin"
3932
  msgstr ""
3933
 
3934
+ #: app/features/mec/settings.php:1318
3935
  msgid "MEC Deactivation"
3936
  msgstr ""
3937
 
3938
+ #: app/features/mec/settings.php:1320
3939
  msgid "Deactivate"
3940
  msgstr ""
3941
 
3942
+ #: app/features/mec/settings.php:1322
3943
  msgid ""
3944
  "For deactivation first delete your purchase from above field then press save "
3945
  "after that click on deactivate for deactivate this purchase code from this "
3946
  "domain then you can activate another domain."
3947
  msgstr ""
3948
 
3949
+ #: app/features/mec/settings.php:1385
3950
  msgid "Please Refresh Page"
3951
  msgstr ""
3952
 
4099
  msgid "eg. https://webnus.net"
4100
  msgstr ""
4101
 
4102
+ #: app/features/organizers.php:300 app/libraries/main.php:4203
4103
  #: app/skins/single.php:194
4104
  msgid "Other Organizers"
4105
  msgstr ""
4109
  "You can select extra organizers in addition to main organizer if you like."
4110
  msgstr ""
4111
 
4112
+ #: app/features/profile.php:74
4113
+ #, php-format
4114
+ msgid "Please %s/%s in order to see your bookings / profile."
4115
+ msgstr ""
4116
+
4117
+ #: app/features/profile/profile.php:25 app/features/profile/profile.php:87
4118
+ msgid "#"
4119
+ msgstr ""
4120
+
4121
+ #: app/features/profile/profile.php:34 app/libraries/main.php:2345
4122
+ msgid "Status"
4123
+ msgstr ""
4124
+
4125
+ #: app/features/profile/profile.php:37 app/libraries/main.php:1607
4126
+ msgid "Attendees"
4127
+ msgstr ""
4128
+
4129
+ #: app/features/profile/profile.php:40
4130
+ msgid "Invoice"
4131
+ msgstr ""
4132
+
4133
+ #: app/features/profile/profile.php:76
4134
+ #, php-format
4135
+ msgid "<i class=\"mec-sl-eye\"></i> %s"
4136
+ msgstr ""
4137
+
4138
+ #: app/features/profile/profile.php:96 app/libraries/main.php:1621
4139
+ #: app/libraries/main.php:4201
4140
+ msgid "Ticket"
4141
+ msgstr ""
4142
+
4143
+ #: app/features/profile/profile.php:99
4144
+ msgid "Variations"
4145
+ msgstr ""
4146
+
4147
+ #: app/features/profile/profile.php:142
4148
+ msgid "No bookings found!"
4149
+ msgstr ""
4150
+
4151
  #: app/features/speakers.php:56 app/features/speakers.php:242
4152
+ #: app/libraries/main.php:4175
4153
  msgid "Speaker"
4154
  msgstr ""
4155
 
4179
  msgstr ""
4180
 
4181
  #: app/features/speakers.php:135 app/features/speakers.php:187
4182
+ #: app/libraries/main.php:1065
4183
  msgid "Google+"
4184
  msgstr ""
4185
 
4200
  msgid "%s Price"
4201
  msgstr ""
4202
 
4203
+ #: app/libraries/book.php:538
4204
  msgid "Discount"
4205
  msgstr ""
4206
 
4207
+ #: app/libraries/book.php:626 app/modules/booking/default.php:280
4208
+ #: app/modules/booking/default.php:375
4209
  msgid "Download Invoice"
4210
  msgstr ""
4211
 
4214
  msgstr ""
4215
 
4216
  #: app/libraries/factory.php:190
4217
+ msgctxt "plugin link"
4218
  msgid "Upgrade to Pro Version"
4219
  msgstr ""
4220
 
4221
+ #: app/libraries/factory.php:208
4222
+ msgctxt "plugin link"
4223
+ msgid "Settings"
4224
+ msgstr ""
4225
+
4226
  #: app/libraries/factory.php:213
4227
+ msgctxt "plugin link"
4228
  msgid "Upgrade"
4229
  msgstr ""
4230
 
4280
  msgid "There is no excerpt because this is a protected post."
4281
  msgstr ""
4282
 
4283
+ #: app/libraries/main.php:327 app/libraries/main.php:1165
4284
  msgid "Grid View"
4285
  msgstr ""
4286
 
4287
+ #: app/libraries/main.php:328 app/libraries/main.php:1166
4288
  msgid "Agenda View"
4289
  msgstr ""
4290
 
4291
+ #: app/libraries/main.php:329 app/libraries/main.php:1157
4292
  msgid "Full Calendar"
4293
  msgstr ""
4294
 
4295
+ #: app/libraries/main.php:331 app/libraries/main.php:1159
4296
  msgid "Calendar/Monthly View"
4297
  msgstr ""
4298
 
4299
+ #: app/libraries/main.php:334 app/libraries/main.php:1162
4300
  msgid "Timetable View"
4301
  msgstr ""
4302
 
4303
+ #: app/libraries/main.php:335 app/libraries/main.php:1163
4304
  msgid "Masonry View"
4305
  msgstr ""
4306
 
4307
+ #: app/libraries/main.php:336 app/libraries/main.php:1167
4308
  msgid "Map View"
4309
  msgstr ""
4310
 
4311
+ #: app/libraries/main.php:337
4312
  msgid "Cover View"
4313
  msgstr ""
4314
 
4315
+ #: app/libraries/main.php:338
4316
  msgid "Countdown View"
4317
  msgstr ""
4318
 
4319
+ #: app/libraries/main.php:339
4320
  msgid "Available Spot"
4321
  msgstr ""
4322
 
4323
+ #: app/libraries/main.php:340
4324
  msgid "Carousel View"
4325
  msgstr ""
4326
 
4327
+ #: app/libraries/main.php:341
4328
  msgid "Slider View"
4329
  msgstr ""
4330
 
4331
+ #: app/libraries/main.php:378 app/libraries/main.php:4181
4332
  msgid "SU"
4333
  msgstr ""
4334
 
4335
+ #: app/libraries/main.php:379 app/libraries/main.php:4182
4336
  msgid "MO"
4337
  msgstr ""
4338
 
4339
+ #: app/libraries/main.php:380 app/libraries/main.php:4183
4340
  msgid "TU"
4341
  msgstr ""
4342
 
4343
+ #: app/libraries/main.php:381 app/libraries/main.php:4184
4344
  msgid "WE"
4345
  msgstr ""
4346
 
4347
+ #: app/libraries/main.php:382 app/libraries/main.php:4185
4348
  msgid "TH"
4349
  msgstr ""
4350
 
4351
+ #: app/libraries/main.php:383 app/libraries/main.php:4186
4352
  msgid "FR"
4353
  msgstr ""
4354
 
4355
+ #: app/libraries/main.php:384 app/libraries/main.php:4187
4356
  msgid "SA"
4357
  msgstr ""
4358
 
4359
+ #: app/libraries/main.php:1023
4360
  msgid "Events at this location"
4361
  msgstr ""
4362
 
4363
+ #: app/libraries/main.php:1023
4364
  msgid "Event at this location"
4365
  msgstr ""
4366
 
4367
+ #: app/libraries/main.php:1064
4368
  msgid "Facebook"
4369
  msgstr ""
4370
 
4371
+ #: app/libraries/main.php:1066
4372
  msgid "Twitter"
4373
  msgstr ""
4374
 
4375
+ #: app/libraries/main.php:1067 app/libraries/main.php:1120
4376
  msgid "Linkedin"
4377
  msgstr ""
4378
 
4379
+ #: app/libraries/main.php:1068 app/libraries/main.php:1146
4380
  msgid "VK"
4381
  msgstr ""
4382
 
4383
+ #: app/libraries/main.php:1084
4384
  msgid "Share on Facebook"
4385
  msgstr ""
4386
 
4387
+ #: app/libraries/main.php:1096
4388
  msgid "Google Plus"
4389
  msgstr ""
4390
 
4391
+ #: app/libraries/main.php:1108
4392
  msgid "Tweet"
4393
  msgstr ""
4394
 
4395
+ #: app/libraries/main.php:1502
4396
  msgid "Your booking successfully verified."
4397
  msgstr ""
4398
 
4399
+ #: app/libraries/main.php:1503
4400
  msgid "Your booking cannot verify!"
4401
  msgstr ""
4402
 
4403
+ #: app/libraries/main.php:1515
4404
  msgid "Your booking successfully canceled."
4405
  msgstr ""
4406
 
4407
+ #: app/libraries/main.php:1516
4408
  msgid "Your booking cannot be canceled."
4409
  msgstr ""
4410
 
4411
+ #: app/libraries/main.php:1520
4412
  msgid "You canceled the payment successfully."
4413
  msgstr ""
4414
 
4415
+ #: app/libraries/main.php:1524
4416
  msgid "You returned from payment gateway successfully."
4417
  msgstr ""
4418
 
4419
+ #: app/libraries/main.php:1548
4420
  msgid "Cannot find the booking!"
4421
  msgstr ""
4422
 
4423
+ #: app/libraries/main.php:1548
4424
  msgid "Booking is invalid."
4425
  msgstr ""
4426
 
4427
+ #: app/libraries/main.php:1577
4428
  #, php-format
4429
  msgid "%s Invoice"
4430
  msgstr ""
4431
 
4432
+ #: app/libraries/main.php:1598
4433
  msgid "Transaction ID"
4434
  msgstr ""
4435
 
4436
+ #: app/libraries/main.php:1651
 
 
 
 
 
 
 
 
4437
  msgid "Billing"
4438
  msgstr ""
4439
 
4440
+ #: app/libraries/main.php:1662
4441
  msgid "Total"
4442
  msgstr ""
4443
 
4444
+ #: app/libraries/main.php:1695
4445
  msgid "Security nonce is not valid."
4446
  msgstr ""
4447
 
4448
+ #: app/libraries/main.php:1695 app/libraries/main.php:1727
4449
  msgid "iCal export stopped!"
4450
  msgstr ""
4451
 
4452
+ #: app/libraries/main.php:1727
4453
  msgid "Request is not valid."
4454
  msgstr ""
4455
 
4456
+ #: app/libraries/main.php:2047 app/libraries/main.php:2076
4457
+ #: app/libraries/main.php:2105 app/libraries/main.php:2134
4458
+ #: app/libraries/main.php:2163 app/libraries/main.php:2187
4459
+ #: app/libraries/main.php:2231 app/libraries/main.php:2275
4460
+ #: app/libraries/main.php:2322 app/libraries/main.php:2368
4461
  msgid "Sort"
4462
  msgstr ""
4463
 
4464
+ #: app/libraries/main.php:2053 app/libraries/main.php:2082
4465
+ #: app/libraries/main.php:2111 app/libraries/main.php:2140
4466
+ #: app/libraries/main.php:2193 app/libraries/main.php:2237
4467
+ #: app/libraries/main.php:2281 app/libraries/main.php:2328
4468
  msgid "Required Field"
4469
  msgstr ""
4470
 
4471
+ #: app/libraries/main.php:2059 app/libraries/main.php:2088
4472
+ #: app/libraries/main.php:2117 app/libraries/main.php:2146
4473
+ #: app/libraries/main.php:2199 app/libraries/main.php:2243
4474
+ #: app/libraries/main.php:2287 app/libraries/main.php:2334
4475
  msgid "Insert a label for this field"
4476
  msgstr ""
4477
 
4478
+ #: app/libraries/main.php:2169
4479
  msgid "HTML and shortcode are allowed."
4480
  msgstr ""
4481
 
4482
+ #: app/libraries/main.php:2212 app/libraries/main.php:2256
4483
+ #: app/libraries/main.php:2300
4484
  msgid "Option"
4485
  msgstr ""
4486
 
4487
+ #: app/libraries/main.php:2334
4488
  #, php-format
4489
  msgid "Instead of %s, the page title with a link will be show."
4490
  msgstr ""
4491
 
4492
+ #: app/libraries/main.php:2336
4493
  msgid "Agreement Page"
4494
  msgstr ""
4495
 
4496
+ #: app/libraries/main.php:2347
 
 
 
 
4497
  msgid "Checked by default"
4498
  msgstr ""
4499
 
4500
+ #: app/libraries/main.php:2348
4501
  msgid "Unchecked by default"
4502
  msgstr ""
4503
 
4504
+ #: app/libraries/main.php:2370
4505
  msgid "Insert a label for this option"
4506
  msgstr ""
4507
 
4508
+ #: app/libraries/main.php:2385
4509
  msgid "Free"
4510
  msgstr ""
4511
 
4512
+ #: app/libraries/main.php:3037
4513
  #, php-format
4514
  msgid "Copy of %s"
4515
  msgstr ""
4516
 
4517
+ #: app/libraries/main.php:3681
4518
  msgid "Booked an event."
4519
  msgstr ""
4520
 
4521
+ #: app/libraries/main.php:3722
4522
  #, php-format
4523
  msgid "%s booked %s event."
4524
  msgstr ""
4525
 
4526
+ #: app/libraries/main.php:4164
4527
  msgid "Taxonomies"
4528
  msgstr ""
4529
 
4530
+ #: app/libraries/main.php:4166
4531
  msgid "Category Plural Label"
4532
  msgstr ""
4533
 
4534
+ #: app/libraries/main.php:4167
4535
  msgid "Category Singular Label"
4536
  msgstr ""
4537
 
4538
+ #: app/libraries/main.php:4168
4539
  msgid "Label Plural Label"
4540
  msgstr ""
4541
 
4542
+ #: app/libraries/main.php:4169
4543
  msgid "Label Singular Label"
4544
  msgstr ""
4545
 
4546
+ #: app/libraries/main.php:4169
4547
  msgid "label"
4548
  msgstr ""
4549
 
4550
+ #: app/libraries/main.php:4170
4551
  msgid "Location Plural Label"
4552
  msgstr ""
4553
 
4554
+ #: app/libraries/main.php:4171
4555
  msgid "Location Singular Label"
4556
  msgstr ""
4557
 
4558
+ #: app/libraries/main.php:4172
4559
  msgid "Organizer Plural Label"
4560
  msgstr ""
4561
 
4562
+ #: app/libraries/main.php:4173
4563
  msgid "Organizer Singular Label"
4564
  msgstr ""
4565
 
4566
+ #: app/libraries/main.php:4174
4567
  msgid "Speaker Plural Label"
4568
  msgstr ""
4569
 
4570
+ #: app/libraries/main.php:4175
4571
  msgid "Speaker Singular Label"
4572
  msgstr ""
4573
 
4574
+ #: app/libraries/main.php:4181
4575
  msgid "Sunday abbreviation"
4576
  msgstr ""
4577
 
4578
+ #: app/libraries/main.php:4182
4579
  msgid "Monday abbreviation"
4580
  msgstr ""
4581
 
4582
+ #: app/libraries/main.php:4183
4583
  msgid "Tuesday abbreviation"
4584
  msgstr ""
4585
 
4586
+ #: app/libraries/main.php:4184
4587
  msgid "Wednesday abbreviation"
4588
  msgstr ""
4589
 
4590
+ #: app/libraries/main.php:4185
4591
  msgid "Thursday abbreviation"
4592
  msgstr ""
4593
 
4594
+ #: app/libraries/main.php:4186
4595
  msgid "Friday abbreviation"
4596
  msgstr ""
4597
 
4598
+ #: app/libraries/main.php:4187
4599
  msgid "Saturday abbreviation"
4600
  msgstr ""
4601
 
4602
+ #: app/libraries/main.php:4191
4603
  msgid "Others"
4604
  msgstr ""
4605
 
4606
+ #: app/libraries/main.php:4193
4607
  msgid "Booking Success Message"
4608
  msgstr ""
4609
 
4610
+ #: app/libraries/main.php:4193
4611
  msgid ""
4612
  "Thanks for your booking. Your tickets booked, booking verification might be "
4613
  "needed, please check your email."
4614
  msgstr ""
4615
 
4616
+ #: app/libraries/main.php:4194 app/widgets/single.php:131
4617
  msgid "Register Button"
4618
  msgstr ""
4619
 
4620
+ #: app/libraries/main.php:4194 app/skins/available_spot/tpl.php:164
4621
  #: app/skins/carousel/render.php:79 app/skins/carousel/render.php:104
4622
  #: app/skins/grid/render.php:76 app/skins/grid/render.php:107
4623
  #: app/skins/grid/render.php:139 app/skins/grid/render.php:167
4624
  #: app/skins/list/render.php:59 app/skins/list/render.php:140
4625
+ #: app/skins/masonry/render.php:93 app/skins/single/default.php:218
4626
+ #: app/skins/single/default.php:220 app/skins/single/default.php:425
4627
+ #: app/skins/single/default.php:427 app/skins/single/m1.php:126
4628
+ #: app/skins/single/m1.php:128 app/skins/single/m2.php:58
4629
+ #: app/skins/single/m2.php:60 app/skins/single/modern.php:58
4630
+ #: app/skins/single/modern.php:60 app/skins/slider/render.php:75
4631
+ #: app/skins/slider/render.php:96 app/skins/slider/render.php:116
4632
+ #: app/skins/slider/render.php:136 app/skins/slider/render.php:167
4633
  msgid "REGISTER"
4634
  msgstr ""
4635
 
4636
+ #: app/libraries/main.php:4195
4637
  msgid "View Detail Button"
4638
  msgstr ""
4639
 
4640
+ #: app/libraries/main.php:4195 app/skins/carousel/render.php:79
4641
  #: app/skins/carousel/render.php:104 app/skins/grid/render.php:76
4642
  #: app/skins/grid/render.php:107 app/skins/grid/render.php:139
4643
  #: app/skins/grid/render.php:167 app/skins/list/render.php:59
4644
+ #: app/skins/list/render.php:140 app/skins/masonry/render.php:93
4645
  #: app/skins/slider/render.php:75 app/skins/slider/render.php:96
4646
  #: app/skins/slider/render.php:116 app/skins/slider/render.php:136
4647
  #: app/skins/slider/render.php:167
4648
  msgid "View Detail"
4649
  msgstr ""
4650
 
4651
+ #: app/libraries/main.php:4196
4652
  msgid "Event Detail Button"
4653
  msgstr ""
4654
 
4655
+ #: app/libraries/main.php:4196 app/skins/countdown/tpl.php:178
4656
  msgid "Event Detail"
4657
  msgstr ""
4658
 
4659
+ #: app/libraries/main.php:4198
4660
  msgid "More Info Link"
4661
  msgstr ""
4662
 
4663
+ #: app/libraries/main.php:4201
4664
  msgid "Ticket (Singular)"
4665
  msgstr ""
4666
 
4667
+ #: app/libraries/main.php:4202
4668
  msgid "Tickets (Plural)"
4669
  msgstr ""
4670
 
4671
+ #: app/libraries/main.php:4268
4672
  msgid "EventON"
4673
  msgstr ""
4674
 
4675
+ #: app/libraries/main.php:4269
4676
  msgid "The Events Calendar"
4677
  msgstr ""
4678
 
4679
+ #: app/libraries/main.php:4270
4680
  msgid "Events Schedule WP Plugin"
4681
  msgstr ""
4682
 
4683
+ #: app/libraries/main.php:4271
4684
  msgid "Calendarize It"
4685
  msgstr ""
4686
 
4687
+ #: app/libraries/main.php:4345
4688
+ msgid "Confirmed"
4689
+ msgstr ""
4690
+
4691
+ #: app/libraries/main.php:4346
4692
+ msgid "Rejected"
4693
+ msgstr ""
4694
+
4695
+ #: app/libraries/main.php:4347
4696
+ msgid "Pending"
4697
+ msgstr ""
4698
+
4699
+ #: app/libraries/main.php:4362
4700
+ msgid "Waiting"
4701
+ msgstr ""
4702
+
4703
  #: app/libraries/notifications.php:61
4704
  msgid "Please verify your email."
4705
  msgstr ""
4745
  msgstr ""
4746
 
4747
  #: app/libraries/render.php:404 app/modules/local-time/details.php:44
4748
+ #: app/modules/next-event/details.php:97 app/skins/single/default.php:73
4749
+ #: app/skins/single/default.php:280 app/skins/single/m1.php:34
4750
+ #: app/skins/single/modern.php:169
4751
  msgid "All of the day"
4752
  msgstr ""
4753
 
4754
+ #: app/libraries/skins.php:809
4755
  msgid "Ignore month and years"
4756
  msgstr ""
4757
 
4784
  msgid "Free Booking"
4785
  msgstr ""
4786
 
4787
+ #: app/modules/booking/steps/form.php:18
4788
  msgid "Attendees Form"
4789
  msgstr ""
4790
 
4791
+ #: app/modules/booking/steps/form.php:107
4792
+ msgid "Fill other attendees information like the first form."
4793
  msgstr ""
4794
 
4795
+ #: app/modules/booking/steps/form.php:120
4796
+ #: app/modules/booking/steps/tickets.php:55 app/skins/countdown/tpl.php:79
4797
  #: app/skins/countdown/tpl.php:123 app/skins/countdown/tpl.php:168
4798
  msgid "Next"
4799
  msgstr ""
4802
  msgid "Thanks for your booking."
4803
  msgstr ""
4804
 
4805
+ #: app/modules/booking/steps/tickets.php:20
4806
  msgid "Book Event"
4807
  msgstr ""
4808
 
4809
+ #: app/modules/booking/steps/tickets.php:40
4810
  #, php-format
4811
  msgid "Available %s: <span>%s</span>"
4812
  msgstr ""
4813
 
4814
+ #: app/modules/booking/steps/tickets.php:43
4815
  #, php-format
4816
  msgid "The %s ticket is sold out. You can try another ticket or another date."
4817
  msgstr ""
4867
  msgid "Go to occurrence page"
4868
  msgstr ""
4869
 
4870
+ #: app/modules/next-event/details.php:91 app/skins/single/default.php:67
4871
+ #: app/skins/single/default.php:274 app/skins/single/m1.php:28
4872
+ #: app/skins/single/modern.php:163
4873
  msgid "Time"
4874
  msgstr ""
4875
 
4912
  #: app/skins/agenda/tpl.php:62 app/skins/agenda/tpl.php:66
4913
  #: app/skins/carousel/tpl.php:43 app/skins/grid/tpl.php:52
4914
  #: app/skins/grid/tpl.php:56 app/skins/list/tpl.php:57
4915
+ #: app/skins/list/tpl.php:61 app/skins/masonry/tpl.php:50
4916
+ #: app/skins/masonry/tpl.php:54 app/skins/slider/tpl.php:41
4917
  msgid "No event found!"
4918
  msgstr ""
4919
 
4967
  msgid "No Events"
4968
  msgstr ""
4969
 
4970
+ #: app/skins/single.php:209 app/skins/single/default.php:191
4971
+ #: app/skins/single/default.php:398 app/skins/single/m1.php:100
4972
  #: app/skins/single/m2.php:32 app/skins/single/modern.php:31
4973
  msgid "Phone"
4974
  msgstr ""
4975
 
4976
+ #: app/skins/single.php:223 app/skins/single/default.php:205
4977
+ #: app/skins/single/default.php:412 app/skins/single/m1.php:114
4978
  #: app/skins/single/m2.php:46 app/skins/single/modern.php:45
4979
  msgid "Website"
4980
  msgstr ""
4983
  msgid "Speakers:"
4984
  msgstr ""
4985
 
4986
+ #: app/skins/single/default.php:30 app/skins/single/m1.php:235
4987
+ #: app/skins/single/m2.php:164 app/skins/single/modern.php:238
4988
  msgid "Sold out!"
4989
  msgstr ""
4990
 
4991
+ #: app/skins/single/default.php:40 app/skins/single/m1.php:244
4992
+ #: app/skins/single/m2.php:173 app/skins/single/modern.php:248
4993
  msgid "Tags: "
4994
  msgstr ""
4995
 
4996
+ #: app/skins/single/default.php:106 app/skins/single/default.php:313
4997
+ #: app/skins/single/m1.php:191 app/skins/single/m2.php:124
4998
+ #: app/skins/single/modern.php:121
4999
  msgid "Read More"
5000
  msgstr ""
5001
 
5045
  msgstr ""
5046
 
5047
  #: app/widgets/single.php:139
5048
+ msgid "Next Previous Module"
5049
  msgstr ""
5050
 
5051
  #: app/widgets/single.php:143
5055
  #: app/widgets/single.php:151
5056
  msgid "Google Map"
5057
  msgstr ""
5058
+
5059
+ #. Plugin Name of the plugin/theme
5060
+ msgid "Modern Events Calendar Lite"
5061
+ msgstr ""
5062
+
5063
+ #. Plugin URI of the plugin/theme
5064
+ msgid "http://webnus.net/modern-events-calendar/"
5065
+ msgstr ""
5066
+
5067
+ #. Description of the plugin/theme
5068
+ msgid "An awesome plugin for events calendar"
5069
+ msgstr ""
5070
+
5071
+ #. Author of the plugin/theme
5072
+ msgid "Webnus Team"
5073
+ msgstr ""
5074
+
5075
+ #. Author URI of the plugin/theme
5076
+ msgid "http://webnus.net"
5077
+ msgstr ""
languages/modern-events-calendar-lite-es_ES.mo CHANGED
Binary file
languages/modern-events-calendar-lite-es_ES.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
- "POT-Creation-Date: 2018-11-19 13:45+0330\n"
5
- "PO-Revision-Date: 2018-11-19 13:45+0330\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: es_ES\n"
@@ -12,7 +12,7 @@ msgstr ""
12
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
13
  "X-Generator: Poedit 2.0.1\n"
14
  "X-Poedit-Basepath: ..\n"
15
- "X-Poedit-WPHeader: modern-events-calendar-lite.php\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
18
  "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
@@ -20,9 +20,9 @@ msgstr ""
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
 
23
- #: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:23
24
- #: app/features/ix/import.php:36 app/features/ix/thirdparty.php:23
25
- #: app/widgets/MEC.php:33
26
  msgid "Modern Events Calendar"
27
  msgstr "Calendario moderno"
28
 
@@ -58,24 +58,24 @@ msgstr "Opciones generales"
58
  msgid "Select Type"
59
  msgstr "Selección"
60
 
61
- #: app/features/colors.php:50 app/features/fes/form.php:566
62
- #: app/features/mec/settings.php:884
63
  msgid "Event Color"
64
  msgstr "Color del evento"
65
 
66
  #: app/features/contextual.php:55 app/features/mec.php:210
67
  #: app/features/mec/gateways.php:20 app/features/mec/messages.php:20
68
  #: app/features/mec/notifications.php:19 app/features/mec/regform.php:19
69
- #: app/features/mec/settings.php:35 app/features/mec/settings.php:263
70
  #: app/features/mec/styles.php:20 app/features/mec/styling.php:46
71
  #: app/features/mec/support.php:18
72
  msgid "Settings"
73
  msgstr "Ajustes"
74
 
75
- #: app/features/contextual.php:62 app/features/events.php:1155
76
  #: app/features/mec/gateways.php:29 app/features/mec/messages.php:29
77
  #: app/features/mec/notifications.php:28 app/features/mec/regform.php:28
78
- #: app/features/mec/regform.php:88 app/features/mec/settings.php:198
79
  #: app/features/mec/styles.php:29 app/features/mec/styling.php:55
80
  #: app/features/mec/support.php:27
81
  #, fuzzy
@@ -94,7 +94,7 @@ msgstr ""
94
  #: app/features/contextual.php:70 app/features/mec/gateways.php:36
95
  #: app/features/mec/gateways.php:90 app/features/mec/messages.php:36
96
  #: app/features/mec/notifications.php:35 app/features/mec/regform.php:35
97
- #: app/features/mec/settings.php:205 app/features/mec/styles.php:36
98
  #: app/features/mec/styling.php:62 app/features/mec/support.php:34
99
  msgid "Payment Gateways"
100
  msgstr "Entradas de pago"
@@ -109,7 +109,7 @@ msgstr ""
109
  #: app/features/contextual.php:77 app/features/mec/gateways.php:45
110
  #: app/features/mec/messages.php:45 app/features/mec/notifications.php:44
111
  #: app/features/mec/notifications.php:89 app/features/mec/regform.php:43
112
- #: app/features/mec/settings.php:215 app/features/mec/styles.php:45
113
  #: app/features/mec/styling.php:71 app/features/mec/support.php:43
114
  msgid "Notifications"
115
  msgstr "Notificaciones"
@@ -125,7 +125,8 @@ msgstr ""
125
  #: app/features/contextual.php:88 app/features/ix/export.php:10
126
  #: app/features/ix/export_g_calendar.php:14 app/features/ix/import.php:10
127
  #: app/features/ix/import_f_calendar.php:10
128
- #: app/features/ix/import_g_calendar.php:10 app/features/ix/sync.php:10
 
129
  #: app/features/ix/thirdparty.php:10
130
  msgid "Google Cal. Import"
131
  msgstr ""
@@ -141,7 +142,8 @@ msgstr ""
141
  #: app/features/contextual.php:95 app/features/ix/export.php:11
142
  #: app/features/ix/export_g_calendar.php:15 app/features/ix/import.php:11
143
  #: app/features/ix/import_f_calendar.php:11
144
- #: app/features/ix/import_g_calendar.php:11 app/features/ix/sync.php:11
 
145
  #: app/features/ix/thirdparty.php:11
146
  msgid "Google Cal. Export"
147
  msgstr ""
@@ -157,7 +159,8 @@ msgstr ""
157
  #: app/features/contextual.php:102 app/features/ix/export.php:12
158
  #: app/features/ix/export_g_calendar.php:16 app/features/ix/import.php:12
159
  #: app/features/ix/import_f_calendar.php:12
160
- #: app/features/ix/import_g_calendar.php:12 app/features/ix/sync.php:12
 
161
  #: app/features/ix/thirdparty.php:12
162
  msgid "Facebook Cal. Import"
163
  msgstr ""
@@ -171,89 +174,89 @@ msgid ""
171
  msgstr ""
172
 
173
  #: app/features/contextual.php:117 app/features/mec/settings.php:42
174
- #: app/features/mec/settings.php:265
175
  msgid "General Options"
176
  msgstr "Opciones generales"
177
 
178
  #: app/features/contextual.php:139 app/features/mec/settings.php:54
179
- #: app/features/mec/settings.php:417
180
  msgid "Slugs/Permalinks"
181
  msgstr ""
182
 
183
  #: app/features/contextual.php:152 app/features/mec/settings.php:60
184
- #: app/features/mec/settings.php:437
185
  msgid "Event Details/Single Event Page"
186
  msgstr ""
187
 
188
  #: app/features/contextual.php:166 app/features/mec/settings.php:66
189
- #: app/features/mec/settings.php:478
190
  msgid "Currency Options"
191
  msgstr "Opciones de moneda"
192
 
193
  #: app/features/contextual.php:182 app/features/mec/settings.php:78
194
- #: app/features/mec/settings.php:545
195
  msgid "Google Maps Options"
196
  msgstr "Opciones de Google Maps"
197
 
198
  #: app/features/contextual.php:244 app/features/mec/settings.php:84
199
- #: app/features/mec/settings.php:619
200
  #, fuzzy
201
  msgid "Google Recaptcha Options"
202
  msgstr "Opciones de Google Maps"
203
 
204
  #: app/features/contextual.php:258 app/features/mec/settings.php:114
205
- #: app/features/mec/settings.php:737
206
  msgid "Countdown Options"
207
  msgstr "Opciones de cuenta atrás"
208
 
209
  #: app/features/contextual.php:268 app/features/mec/settings.php:120
210
- #: app/features/mec/settings.php:758
211
  msgid "Social Networks"
212
  msgstr "Redes Sociales"
213
 
214
  #: app/features/contextual.php:278 app/features/mec/settings.php:126
215
- #: app/features/mec/settings.php:783
216
  msgid "Next Event Module"
217
  msgstr ""
218
 
219
  #: app/features/contextual.php:286 app/features/mec/settings.php:132
220
- #: app/features/mec/settings.php:811
221
  msgid "Frontend Event Submission"
222
  msgstr ""
223
 
224
  #: app/features/contextual.php:298 app/features/events.php:580
225
- #: app/features/mec/settings.php:138
226
  #, fuzzy
227
  msgid "Exceptional Days"
228
  msgstr "Día de expiración"
229
 
230
  #: app/features/contextual.php:308 app/features/events.php:263
231
- #: app/features/mec/settings.php:150 app/features/mec/settings.php:978
232
  msgid "Booking"
233
  msgstr "Reserva"
234
 
235
- #: app/features/contextual.php:318 app/features/mec/settings.php:156
236
- #: app/features/mec/settings.php:1068
237
  msgid "Coupons"
238
  msgstr "Cupones"
239
 
240
- #: app/features/contextual.php:326 app/features/mec/settings.php:174
241
- #: app/features/mec/settings.php:1209
242
  msgid "BuddyPress Integration"
243
  msgstr ""
244
 
245
- #: app/features/contextual.php:334 app/features/mec/settings.php:180
246
- #: app/features/mec/settings.php:1239
247
  msgid "Mailchimp Integration"
248
  msgstr ""
249
 
250
- #: app/features/contextual.php:346 app/features/mec/settings.php:186
251
- #: app/features/mec/settings.php:1275
252
  #, fuzzy
253
  msgid "MEC Activation"
254
  msgstr "Lugar"
255
 
256
- #: app/features/events.php:132 app/features/ix/export.php:33
257
  #: app/features/mec/dashboard.php:92 app/skins/daily_view/tpl.php:79
258
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
259
  msgid "Events"
@@ -263,8 +266,8 @@ msgstr "Eventos"
263
  #: app/features/mec/meta_boxes/display_options.php:708
264
  #: app/features/mec/meta_boxes/display_options.php:746
265
  #: app/features/mec/meta_boxes/display_options.php:775
266
- #: app/skins/daily_view/tpl.php:80 app/skins/monthly_view/tpl.php:71
267
- #: app/skins/yearly_view/tpl.php:69
268
  msgid "Event"
269
  msgstr "Evento"
270
 
@@ -276,8 +279,8 @@ msgstr "Nuevo evento"
276
  msgid "Add New Event"
277
  msgstr "Añadir nuevo evento"
278
 
279
- #: app/features/events.php:136 app/features/ix.php:2784
280
- #: app/features/ix/thirdparty.php:41 app/skins/map/tpl.php:54
281
  msgid "No events found!"
282
  msgstr "No hay eventos"
283
 
@@ -308,16 +311,16 @@ msgstr "No hay eventos en la papelera"
308
  #: app/features/mec/meta_boxes/search_form.php:292
309
  #: app/features/mec/meta_boxes/search_form.php:332
310
  #: app/features/mec/meta_boxes/search_form.php:379
311
- #: app/features/mec/meta_boxes/search_form.php:426 app/libraries/main.php:4151
312
- #: app/libraries/skins.php:712 app/skins/single/default.php:155
313
- #: app/skins/single/default.php:360 app/skins/single/m1.php:167
314
- #: app/skins/single/m2.php:99 app/skins/single/modern.php:96
315
  msgid "Category"
316
  msgstr "Categoría"
317
 
318
- #: app/features/events.php:153 app/features/fes/form.php:518
319
  #: app/features/mec.php:198 app/features/mec/meta_boxes/filter.php:70
320
- #: app/libraries/main.php:4150
321
  msgid "Categories"
322
  msgstr "Categorías"
323
 
@@ -389,18 +392,18 @@ msgstr ""
389
  msgid "Event Details"
390
  msgstr "Detalle de evento"
391
 
392
- #: app/features/events.php:296 app/features/events.php:1894
393
- #: app/features/events.php:1938 app/features/fes/form.php:479
394
- #: app/features/ix.php:2328 app/features/ix.php:2369
395
- #: app/features/mec/settings.php:860 app/libraries/main.php:4183
396
  #: app/widgets/single.php:103
397
  msgid "Event Cost"
398
  msgstr "Coste del evento"
399
 
400
- #: app/features/events.php:299 app/features/fes/form.php:482
401
- #: app/libraries/main.php:4184 app/skins/single/default.php:90
402
- #: app/skins/single/default.php:295 app/skins/single/m1.php:49
403
- #: app/skins/single/modern.php:182
404
  msgid "Cost"
405
  msgstr "Coste"
406
 
@@ -412,35 +415,36 @@ msgstr ""
412
  msgid "Guest Data"
413
  msgstr ""
414
 
415
- #: app/features/events.php:380 app/features/fes/form.php:441
416
  #: app/features/labels.php:177 app/features/organizers.php:268
417
- #: app/libraries/notifications.php:554 app/modules/booking/steps/form.php:24
418
- #: app/modules/booking/steps/form.php:25
419
  msgid "Name"
420
  msgstr "Nombre"
421
 
422
- #: app/features/events.php:381 app/features/events.php:1190
423
- #: app/features/fes/form.php:437 app/features/mec/regform.php:118
424
  #: app/features/organizers.php:110 app/features/organizers.php:150
425
- #: app/features/speakers.php:119 app/features/speakers.php:179
426
- #: app/libraries/main.php:1067 app/libraries/main.php:1132
427
- #: app/libraries/main.php:2067 app/libraries/notifications.php:555
428
- #: app/modules/booking/steps/form.php:28 app/modules/booking/steps/form.php:29
429
- #: app/skins/single.php:216 app/skins/single/default.php:197
430
- #: app/skins/single/default.php:402 app/skins/single/m1.php:107
431
- #: app/skins/single/m2.php:39 app/skins/single/modern.php:38
 
432
  msgid "Email"
433
  msgstr "Email"
434
 
435
- #: app/features/events.php:385 app/features/fes/form.php:221
436
  msgid "Date and Time"
437
  msgstr "Día y hora"
438
 
439
  #: app/features/events.php:389 app/features/events.php:393
440
- #: app/features/events.php:1715 app/features/events.php:1894
441
- #: app/features/events.php:1938 app/features/fes/form.php:225
442
- #: app/features/fes/form.php:229 app/features/ix.php:2328
443
- #: app/features/ix.php:2369 app/features/ix/import_g_calendar.php:37
444
  #: app/features/mec/dashboard.php:269
445
  #: app/features/mec/meta_boxes/display_options.php:42
446
  #: app/features/mec/meta_boxes/display_options.php:139
@@ -459,46 +463,46 @@ msgid "Start Date"
459
  msgstr "Día de inicio"
460
 
461
  #: app/features/events.php:421 app/features/events.php:461
462
- #: app/features/events.php:860 app/features/events.php:878
463
- #: app/features/events.php:930 app/features/events.php:948
464
- #: app/features/fes/form.php:257 app/features/fes/form.php:297
465
  msgid "AM"
466
  msgstr "AM"
467
 
468
  #: app/features/events.php:422 app/features/events.php:462
469
- #: app/features/events.php:861 app/features/events.php:879
470
- #: app/features/events.php:931 app/features/events.php:949
471
- #: app/features/fes/form.php:258 app/features/fes/form.php:298
472
  msgid "PM"
473
  msgstr "PM"
474
 
475
  #: app/features/events.php:429 app/features/events.php:433
476
- #: app/features/events.php:1716 app/features/events.php:1894
477
- #: app/features/events.php:1938 app/features/fes/form.php:265
478
- #: app/features/fes/form.php:269 app/features/ix.php:2328
479
- #: app/features/ix.php:2369 app/features/ix/import_g_calendar.php:43
480
  #: app/features/mec/dashboard.php:270
481
  msgid "End Date"
482
  msgstr "Día final"
483
 
484
- #: app/features/events.php:468 app/features/fes/form.php:304
485
  msgid "All Day Event"
486
  msgstr "Todos los eventos de hoy"
487
 
488
- #: app/features/events.php:471 app/features/fes/form.php:307
489
  msgid "Hide Event Time"
490
  msgstr "Ocultar hora del evento"
491
 
492
- #: app/features/events.php:474 app/features/fes/form.php:310
493
  #, fuzzy
494
  msgid "Hide Event End Time"
495
  msgstr "Ocultar hora del evento"
496
 
497
- #: app/features/events.php:478 app/features/fes/form.php:314
498
  msgid "Time Comment"
499
  msgstr "Tiempo para comentar"
500
 
501
- #: app/features/events.php:479 app/features/fes/form.php:315
502
  msgid ""
503
  "It shows next to event time on calendar. You can insert Timezone etc. in "
504
  "this field."
@@ -506,141 +510,142 @@ msgstr ""
506
  "Se muestra al lado de la hora del evento en el calendario. Puede insertar "
507
  "Zona horaria, etc. en este campo."
508
 
509
- #: app/features/events.php:485 app/features/fes/form.php:321
510
  msgid "Event Repeating"
511
  msgstr "Repetir el evento"
512
 
513
- #: app/features/events.php:489 app/features/fes/form.php:325
514
  msgid "Repeats"
515
  msgstr "Repeticiones"
516
 
517
- #: app/features/events.php:491 app/features/fes/form.php:327
518
  #: app/features/mec/dashboard.php:272 app/skins/full_calendar/tpl.php:68
519
  msgid "Daily"
520
  msgstr "Diariamente"
521
 
522
- #: app/features/events.php:492 app/features/fes/form.php:328
523
  msgid "Every Weekday"
524
  msgstr "Cada día de la semana"
525
 
526
- #: app/features/events.php:493 app/features/fes/form.php:329
527
  msgid "Every Weekend"
528
  msgstr "Cada fin de semana"
529
 
530
- #: app/features/events.php:494 app/features/fes/form.php:330
531
  #, fuzzy
532
  msgid "Certain Weekdays"
533
  msgstr "Cada día de la semana"
534
 
535
- #: app/features/events.php:495 app/features/fes/form.php:331
536
  #: app/skins/full_calendar/tpl.php:67
537
  msgid "Weekly"
538
  msgstr "Semanal"
539
 
540
- #: app/features/events.php:496 app/features/fes/form.php:332
541
  #: app/features/mec/dashboard.php:273 app/skins/full_calendar/tpl.php:66
542
  msgid "Monthly"
543
  msgstr "Mensual"
544
 
545
- #: app/features/events.php:497 app/features/fes/form.php:333
546
  #: app/features/mec/dashboard.php:274 app/skins/full_calendar/tpl.php:65
547
  msgid "Yearly"
548
  msgstr "Anual"
549
 
550
- #: app/features/events.php:498 app/features/fes/form.php:334
551
  #, fuzzy
552
  msgid "Custom Days"
553
  msgstr "Custom Css"
554
 
555
- #: app/features/events.php:502 app/features/fes/form.php:338
556
  msgid "Repeat Interval"
557
  msgstr "Intervalo de repetición"
558
 
559
- #: app/features/events.php:503 app/features/fes/form.php:339
560
  msgid "Repeat interval"
561
  msgstr "Intervalo de repetición"
562
 
563
- #: app/features/events.php:506 app/features/fes/form.php:342
564
  #, fuzzy
565
  msgid "Week Days"
566
  msgstr "Semana %s"
567
 
568
- #: app/features/events.php:507 app/features/fes/form.php:343
569
- #: app/libraries/main.php:401
570
  msgid "Monday"
571
  msgstr ""
572
 
573
- #: app/features/events.php:508 app/features/fes/form.php:344
574
- #: app/libraries/main.php:401
575
  msgid "Tuesday"
576
  msgstr ""
577
 
578
- #: app/features/events.php:509 app/features/fes/form.php:345
579
- #: app/libraries/main.php:401
580
  msgid "Wednesday"
581
  msgstr ""
582
 
583
- #: app/features/events.php:510 app/features/fes/form.php:346
584
- #: app/libraries/main.php:401
585
  msgid "Thursday"
586
  msgstr ""
587
 
588
- #: app/features/events.php:511 app/features/fes/form.php:347
589
- #: app/libraries/main.php:401
590
  msgid "Friday"
591
  msgstr ""
592
 
593
- #: app/features/events.php:512 app/features/fes/form.php:348
594
- #: app/libraries/main.php:401
595
  msgid "Saturday"
596
  msgstr ""
597
 
598
- #: app/features/events.php:513 app/features/fes/form.php:349
599
- #: app/libraries/main.php:401
600
  msgid "Sunday"
601
  msgstr ""
602
 
603
  #: app/features/events.php:518 app/features/events.php:590
604
- #: app/features/fes/form.php:354 app/libraries/main.php:1582
605
- #: app/modules/booking/steps/tickets.php:20
606
- #: app/modules/next-event/details.php:86 app/skins/single/default.php:54
607
- #: app/skins/single/default.php:259 app/skins/single/m1.php:16
608
- #: app/skins/single/modern.php:149
609
  msgid "Date"
610
  msgstr "Fecha"
611
 
612
  #: app/features/events.php:519 app/features/events.php:591
613
- #: app/features/events.php:665 app/features/events.php:717
614
- #: app/features/events.php:837 app/features/events.php:1009
615
- #: app/features/events.php:1090 app/features/fes/form.php:355
 
616
  msgid "Add"
617
  msgstr "Añadir"
618
 
619
- #: app/features/events.php:520 app/features/fes/form.php:356
620
  msgid "Add certain days to event occurrence dates."
621
  msgstr ""
622
 
623
- #: app/features/events.php:542 app/features/fes/form.php:378
624
  msgid "Ends Repeat"
625
  msgstr "Repetir finalización"
626
 
627
- #: app/features/events.php:546 app/features/fes/form.php:382
628
  msgid "Never"
629
  msgstr "Nunca"
630
 
631
- #: app/features/events.php:551 app/features/fes/form.php:387
632
  msgid "On"
633
  msgstr "On"
634
 
635
- #: app/features/events.php:558 app/features/fes/form.php:394
636
  msgid "After"
637
  msgstr "Después"
638
 
639
- #: app/features/events.php:560 app/features/fes/form.php:396
640
  msgid "Occurrences times"
641
  msgstr "Tiempo del evento"
642
 
643
- #: app/features/events.php:561 app/features/fes/form.php:397
644
  msgid ""
645
  "The event will finish after certain repeats. For example if you set it to "
646
  "10, the event will finish after 10 repeats."
@@ -661,7 +666,7 @@ msgstr ""
661
  msgid "Day 1"
662
  msgstr ""
663
 
664
- #: app/features/events.php:649 app/features/mec/settings.php:914
665
  #: app/skins/single.php:246
666
  msgid "Hourly Schedule"
667
  msgstr "Programación horaria"
@@ -676,206 +681,244 @@ msgid ""
676
  "can add a different schedule for each day!"
677
  msgstr ""
678
 
679
- #: app/features/events.php:658
680
  #, php-format
681
  msgid "Day %s"
682
  msgstr ""
683
 
684
- #: app/features/events.php:661 app/features/events.php:673
685
- #: app/features/events.php:693 app/features/events.php:713
686
- #: app/features/events.php:728 app/features/events.php:1096
687
- #: app/features/events.php:1118 app/features/events.php:1712
688
- #: app/features/events.php:1894 app/features/events.php:1938
689
- #: app/features/fes/form.php:214 app/features/ix.php:2328
690
- #: app/features/ix.php:2369 app/features/mec/settings.php:1169
691
- #: app/features/mec/settings.php:1189
692
  msgid "Title"
693
  msgstr "Titulo"
694
 
695
- #: app/features/events.php:666 app/features/events.php:718
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
696
  msgid "Add new hourly schedule row"
697
  msgstr "Añadir nueva línea programa horario"
698
 
699
- #: app/features/events.php:671 app/features/events.php:691
700
- #: app/features/events.php:726
701
  msgid "From e.g. 8:15"
702
  msgstr "Desde 8:15"
703
 
704
- #: app/features/events.php:672 app/features/events.php:692
705
- #: app/features/events.php:727
706
  msgid "To e.g. 8:45"
707
  msgstr "a 8:45"
708
 
709
- #: app/features/events.php:674 app/features/events.php:694
710
- #: app/features/events.php:729 app/features/events.php:884
711
- #: app/features/events.php:954
712
  msgid "Description"
713
  msgstr "Descripción"
714
 
715
- #: app/features/events.php:675 app/features/events.php:695
716
- #: app/features/events.php:730 app/features/events.php:903
717
- #: app/features/events.php:973 app/features/events.php:1029
718
- #: app/features/events.php:1054 app/features/events.php:1107
719
- #: app/features/events.php:1129 app/features/fes/list.php:72
720
- #: app/features/mec/settings.php:1118 app/features/mec/settings.php:1141
721
- #: app/features/mec/settings.php:1180 app/features/mec/settings.php:1200
722
- #: app/libraries/main.php:2046 app/libraries/main.php:2075
723
- #: app/libraries/main.php:2104 app/libraries/main.php:2133
724
- #: app/libraries/main.php:2155 app/libraries/main.php:2186
725
- #: app/libraries/main.php:2230 app/libraries/main.php:2274
726
- #: app/libraries/main.php:2321 app/libraries/main.php:2359
727
- msgid "Remove"
728
- msgstr "Eliminar"
729
-
730
- #: app/features/events.php:678 app/features/events.php:698
731
- #: app/features/events.php:733 app/features/fes/form.php:611
732
  #: app/features/mec.php:206 app/features/mec/settings.php:72
733
- #: app/features/mec/settings.php:908 app/features/speakers.php:57
734
- #: app/libraries/main.php:4158 app/modules/speakers/details.php:18
735
  msgid "Speakers"
736
  msgstr ""
737
 
738
- #: app/features/events.php:710 app/features/events.php:714
739
  msgid "Day :dd:"
740
  msgstr ""
741
 
742
- #: app/features/events.php:759 app/features/fes/form.php:456
743
- #: app/features/mec/settings.php:854
744
  #, fuzzy
745
  msgid "Event Links"
746
  msgstr "Lugar del evento"
747
 
748
- #: app/features/events.php:761 app/features/fes/form.php:458
749
- #: app/libraries/main.php:4181
750
  #, fuzzy
751
  msgid "Event Link"
752
  msgstr "Lugar del evento"
753
 
754
- #: app/features/events.php:762 app/features/events.php:767
755
- #: app/features/fes/form.php:459 app/features/fes/form.php:464
756
  msgid "eg. http://yoursite.com/your-event"
757
  msgstr "ej. http://yoursite.com/tu-evento"
758
 
759
- #: app/features/events.php:763 app/features/fes/form.php:460
760
  #, fuzzy
761
  msgid ""
762
  "If you fill it, it will be replaced instead of default event page link. "
763
  "Insert full link including http(s)://"
764
  msgstr "Insertar vínculo completo incluyendo http(s)://"
765
 
766
- #: app/features/events.php:766 app/features/fes/form.php:463
767
- #: app/libraries/main.php:4182 app/skins/single/default.php:104
768
- #: app/skins/single/default.php:309 app/skins/single/m1.php:188
769
- #: app/skins/single/m2.php:120 app/skins/single/modern.php:118
770
  #: app/widgets/single.php:107
771
  msgid "More Info"
772
  msgstr ""
773
 
774
- #: app/features/events.php:768 app/features/fes/form.php:465
775
  #, fuzzy
776
  msgid "More Information"
777
  msgstr "Confirmar"
778
 
779
- #: app/features/events.php:770 app/features/fes/form.php:467
780
  msgid "Current Window"
781
  msgstr ""
782
 
783
- #: app/features/events.php:771 app/features/fes/form.php:468
784
  msgid "New Window"
785
  msgstr ""
786
 
787
- #: app/features/events.php:773 app/features/fes/form.php:470
788
  #, fuzzy
789
  msgid ""
790
  "If you fill it, it will be shown in event details page as an optional link. "
791
  "Insert full link including http(s)://"
792
  msgstr "Insertar vínculo completo incluyendo http(s)://"
793
 
794
- #: app/features/events.php:804
795
  msgid "Total booking limits"
796
  msgstr "Límite total de booking"
797
 
798
- #: app/features/events.php:809 app/features/events.php:901
799
- #: app/features/events.php:971 app/modules/booking/default.php:82
800
- #: app/modules/booking/steps/tickets.php:38 app/skins/available_spot/tpl.php:99
801
  msgid "Unlimited"
802
  msgstr "Ilimitado"
803
 
804
- #: app/features/events.php:811
805
  msgid "100"
806
  msgstr "100"
807
 
808
- #: app/features/events.php:829 app/libraries/book.php:60
809
- #: app/libraries/main.php:4186 app/modules/booking/steps/tickets.php:38
810
  msgid "Tickets"
811
  msgstr "Tickets"
812
 
813
- #: app/features/events.php:832
814
  msgid ""
815
  "You're translating an event so MEC will use the original event for tickets "
816
  "and booking. You can only translate the ticket name and description. Please "
817
  "define exact tickets that you defined in the original event here."
818
  msgstr ""
819
 
820
- #: app/features/events.php:843 app/features/events.php:913
821
  msgid "Ticket Name"
822
  msgstr "Nombre del ticket"
823
 
824
- #: app/features/events.php:847 app/features/events.php:917
825
- #: app/features/events.php:1894 app/features/events.php:1938
826
- #: app/features/ix.php:2328 app/features/ix.php:2369
827
  msgid "Start Time"
828
  msgstr ""
829
 
830
- #: app/features/events.php:865 app/features/events.php:935
831
- #: app/features/events.php:1894 app/features/events.php:1938
832
- #: app/features/ix.php:2328 app/features/ix.php:2369
833
  msgid "End Time"
834
  msgstr ""
835
 
836
- #: app/features/events.php:888 app/features/events.php:958
837
- #: app/features/events.php:1100 app/features/events.php:1122
838
- #: app/features/mec/settings.php:1173 app/features/mec/settings.php:1193
 
 
839
  msgid "Price"
840
  msgstr "Precio"
841
 
842
- #: app/features/events.php:889 app/features/events.php:959
843
  msgid "Insert 0 for free ticket. Only numbers please."
844
  msgstr "Introduzca un 0 para ticket gratuito. Usar únicamente números."
845
 
846
- #: app/features/events.php:892 app/features/events.php:962
847
  msgid "Price Label"
848
  msgstr "Etiqueta de precio"
849
 
850
- #: app/features/events.php:893 app/features/events.php:963
851
  msgid "For showing on website. e.g. $15"
852
  msgstr "Para mostrar en la web. Ej. 15€"
853
 
854
- #: app/features/events.php:897 app/features/events.php:967
855
  msgid "Available Tickets"
856
  msgstr "Tickets disponibles"
857
 
858
- #: app/features/events.php:999
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
859
  msgid "Fees"
860
  msgstr "Tasas"
861
 
862
- #: app/features/events.php:1004 app/features/events.php:1085
863
- #: app/features/events.php:1160
864
  msgid "Inherit from global options"
865
  msgstr "Heredar opciones globales"
866
 
867
- #: app/features/events.php:1015 app/features/events.php:1040
868
- #: app/features/mec/settings.php:1104 app/features/mec/settings.php:1127
869
  msgid "Fee Title"
870
  msgstr "Tarifa título"
871
 
872
- #: app/features/events.php:1019 app/features/events.php:1044
873
- #: app/features/mec/settings.php:1108 app/features/mec/settings.php:1131
874
  msgid "Amount"
875
  msgstr "Cantidad"
876
 
877
- #: app/features/events.php:1020 app/features/events.php:1045
878
- #: app/features/mec/settings.php:1109 app/features/mec/settings.php:1132
879
  msgid ""
880
  "Fee amount, considered as fixed amount if you set the type to amount "
881
  "otherwise considered as percentage"
@@ -883,72 +926,72 @@ msgstr ""
883
  "Importe de la cuota, considerado como cantidad fija si se establece el tipo "
884
  "de cantidad considerada de otra manera como porcentaje."
885
 
886
- #: app/features/events.php:1024 app/features/events.php:1049
887
- #: app/features/mec/settings.php:1113 app/features/mec/settings.php:1136
888
  msgid "Percent"
889
  msgstr "Porcentaje"
890
 
891
- #: app/features/events.php:1025 app/features/events.php:1050
892
- #: app/features/mec/settings.php:1114 app/features/mec/settings.php:1137
893
  msgid "Amount (Per Ticket)"
894
  msgstr ""
895
 
896
- #: app/features/events.php:1026 app/features/events.php:1051
897
- #: app/features/mec/settings.php:1115 app/features/mec/settings.php:1138
898
  msgid "Amount (Per Booking)"
899
  msgstr ""
900
 
901
- #: app/features/events.php:1080 app/features/mec/settings.php:932
902
  msgid "Ticket Variations / Options"
903
  msgstr ""
904
 
905
- #: app/features/events.php:1101 app/features/events.php:1123
906
- #: app/features/mec/settings.php:1174 app/features/mec/settings.php:1194
907
  #, fuzzy
908
  #| msgid "Option"
909
  msgid "Option Price"
910
  msgstr "Opción"
911
 
912
- #: app/features/events.php:1104 app/features/events.php:1126
913
- #: app/features/mec/settings.php:1177 app/features/mec/settings.php:1197
914
  #, fuzzy
915
  #| msgid "Maximum events"
916
  msgid "Maximum Per Ticket"
917
  msgstr "Máximo de eventos"
918
 
919
- #: app/features/events.php:1105 app/features/events.php:1127
920
- #: app/features/mec/settings.php:1178 app/features/mec/settings.php:1198
921
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
922
  msgstr ""
923
 
924
- #: app/features/events.php:1189 app/features/mec/regform.php:117
925
- #: app/libraries/main.php:2038
926
  msgid "Text"
927
  msgstr "Texto"
928
 
929
- #: app/features/events.php:1191 app/features/mec/regform.php:119
930
  #: app/features/organizers.php:102 app/features/organizers.php:146
931
  #: app/features/speakers.php:111 app/features/speakers.php:175
932
- #: app/features/speakers.php:244 app/libraries/main.php:2096
933
  msgid "Tel"
934
  msgstr "Tel"
935
 
936
- #: app/features/events.php:1192 app/features/mec/regform.php:120
937
- #: app/libraries/main.php:2125
938
  msgid "Textarea"
939
  msgstr "Área de texto"
940
 
941
- #: app/features/events.php:1193 app/features/mec/regform.php:121
942
- #: app/libraries/main.php:2178
943
  msgid "Checkboxes"
944
  msgstr "Checkboxes"
945
 
946
- #: app/features/events.php:1194 app/features/mec/regform.php:122
947
- #: app/libraries/main.php:2222
948
  msgid "Radio Buttons"
949
  msgstr "Botón tipo radio"
950
 
951
- #: app/features/events.php:1195 app/features/mec/meta_boxes/search_form.php:34
952
  #: app/features/mec/meta_boxes/search_form.php:41
953
  #: app/features/mec/meta_boxes/search_form.php:48
954
  #: app/features/mec/meta_boxes/search_form.php:55
@@ -994,41 +1037,41 @@ msgstr "Botón tipo radio"
994
  #: app/features/mec/meta_boxes/search_form.php:443
995
  #: app/features/mec/meta_boxes/search_form.php:450
996
  #: app/features/mec/meta_boxes/search_form.php:457
997
- #: app/features/mec/regform.php:123 app/libraries/main.php:2266
998
  msgid "Dropdown"
999
  msgstr "Desplegable"
1000
 
1001
- #: app/features/events.php:1196 app/features/mec/regform.php:124
1002
- #: app/libraries/main.php:2313
1003
  msgid "Agreement"
1004
  msgstr ""
1005
 
1006
- #: app/features/events.php:1197 app/features/mec/regform.php:125
1007
- #: app/libraries/main.php:2154
1008
  msgid "Paragraph"
1009
  msgstr "Párrafo"
1010
 
1011
- #: app/features/events.php:1658 app/features/events.php:1673
1012
- #: app/features/events.php:1687
1013
  #, php-format
1014
  msgid "Show all %s"
1015
  msgstr ""
1016
 
1017
- #: app/features/events.php:1658
1018
  msgid "labels"
1019
  msgstr "etiquetas"
1020
 
1021
- #: app/features/events.php:1673
1022
  msgid "locations"
1023
  msgstr ""
1024
 
1025
- #: app/features/events.php:1687
1026
  msgid "organizers"
1027
  msgstr ""
1028
 
1029
- #: app/features/events.php:1713 app/features/events.php:1894
1030
- #: app/features/events.php:1938 app/features/ix.php:2328
1031
- #: app/features/ix.php:2369 app/features/locations.php:58
1032
  #: app/features/locations.php:229 app/features/locations.php:281
1033
  #: app/features/locations.php:283 app/features/mec/dashboard.php:106
1034
  #: app/features/mec/meta_boxes/display_options.php:659
@@ -1040,17 +1083,17 @@ msgstr ""
1040
  #: app/features/mec/meta_boxes/search_form.php:299
1041
  #: app/features/mec/meta_boxes/search_form.php:339
1042
  #: app/features/mec/meta_boxes/search_form.php:386
1043
- #: app/features/mec/meta_boxes/search_form.php:433 app/libraries/main.php:1576
1044
- #: app/libraries/main.php:4155 app/libraries/skins.php:738
1045
- #: app/skins/single/default.php:140 app/skins/single/default.php:345
1046
- #: app/skins/single/m1.php:152 app/skins/single/m2.php:84
1047
- #: app/skins/single/modern.php:81
1048
  msgid "Location"
1049
  msgstr "Localización"
1050
 
1051
- #: app/features/events.php:1714 app/features/events.php:1894
1052
- #: app/features/events.php:1938 app/features/ix.php:2328
1053
- #: app/features/ix.php:2369 app/features/mec/dashboard.php:113
1054
  #: app/features/mec/meta_boxes/display_options.php:660
1055
  #: app/features/mec/meta_boxes/search_form.php:45
1056
  #: app/features/mec/meta_boxes/search_form.php:92
@@ -1063,63 +1106,63 @@ msgstr "Localización"
1063
  #: app/features/mec/meta_boxes/search_form.php:440
1064
  #: app/features/organizers.php:58 app/features/organizers.php:199
1065
  #: app/features/organizers.php:255 app/features/organizers.php:257
1066
- #: app/libraries/main.php:4157 app/libraries/skins.php:764
1067
- #: app/skins/single/default.php:180 app/skins/single/default.php:385
1068
  #: app/skins/single/m1.php:90 app/skins/single/m2.php:22
1069
  #: app/skins/single/modern.php:21
1070
  msgid "Organizer"
1071
  msgstr "Organizador"
1072
 
1073
- #: app/features/events.php:1718
1074
  msgid "Repeat"
1075
  msgstr "Repetir"
1076
 
1077
- #: app/features/events.php:1719
1078
  msgid "Author"
1079
  msgstr "Autor"
1080
 
1081
- #: app/features/events.php:1829 app/features/events.php:1830
1082
  msgid "iCal Export"
1083
  msgstr "Exportar iCal"
1084
 
1085
- #: app/features/events.php:1832 app/features/events.php:1833
1086
  msgid "CSV Export"
1087
  msgstr "Exportar CSV"
1088
 
1089
- #: app/features/events.php:1835 app/features/events.php:1836
1090
  msgid "MS Excel Export"
1091
  msgstr "Exportar Excel"
1092
 
1093
- #: app/features/events.php:1838 app/features/events.php:1839
1094
  msgid "XML Export"
1095
  msgstr ""
1096
 
1097
- #: app/features/events.php:1841 app/features/events.php:1842
1098
  msgid "JSON Export"
1099
  msgstr ""
1100
 
1101
- #: app/features/events.php:1844 app/features/events.php:1845
1102
  msgid "Duplicate"
1103
  msgstr ""
1104
 
1105
- #: app/features/events.php:1894 app/features/events.php:1938
1106
- #: app/features/ix.php:2328 app/features/ix.php:2369
1107
  #: app/features/labels.php:176 app/features/locations.php:228
1108
  #: app/features/organizers.php:198 app/features/speakers.php:241
1109
  msgid "ID"
1110
  msgstr "ID"
1111
 
1112
- #: app/features/events.php:1894 app/features/events.php:1938
1113
- #: app/features/ix.php:2328 app/features/ix.php:2369
1114
  msgid "Link"
1115
  msgstr ""
1116
 
1117
- #: app/features/events.php:1894 app/features/events.php:1938
1118
  #, php-format
1119
  msgid "%s Tel"
1120
  msgstr ""
1121
 
1122
- #: app/features/events.php:1894 app/features/events.php:1938
1123
  #, php-format
1124
  msgid "%s Email"
1125
  msgstr ""
@@ -1129,11 +1172,11 @@ msgstr ""
1129
  msgid "Please %s/%s in order to submit new events."
1130
  msgstr ""
1131
 
1132
- #: app/features/fes.php:83 app/features/fes.php:161
1133
  msgid "Login"
1134
  msgstr ""
1135
 
1136
- #: app/features/fes.php:83 app/features/fes.php:161
1137
  msgid "Register"
1138
  msgstr ""
1139
 
@@ -1175,58 +1218,58 @@ msgstr ""
1175
  msgid "The event published."
1176
  msgstr ""
1177
 
1178
- #: app/features/fes/form.php:157
1179
  msgid "Go back to events list."
1180
  msgstr ""
1181
 
1182
- #: app/features/fes/form.php:407
1183
  msgid "Note to reviewer"
1184
  msgstr ""
1185
 
1186
- #: app/features/fes/form.php:416 app/features/fes/form.php:626
1187
- msgid "Submit"
1188
- msgstr "Enviar"
1189
-
1190
- #: app/features/fes/form.php:435
1191
  msgid "User Data"
1192
  msgstr ""
1193
 
1194
- #: app/features/fes/form.php:438
1195
  msgid "eg. yourname@gmail.com"
1196
  msgstr ""
1197
 
1198
- #: app/features/fes/form.php:442 app/features/organizers.php:269
1199
  msgid "eg. John Smith"
1200
  msgstr "ej. John Smith"
1201
 
1202
- #: app/features/fes/form.php:496 app/features/mec/settings.php:866
1203
  #, fuzzy
1204
  msgid "Featured Image"
1205
  msgstr "evento destacado"
1206
 
1207
- #: app/features/fes/form.php:501
1208
  #, fuzzy
1209
  msgid "Remove Image"
1210
  msgstr "Eliminar imagen"
1211
 
1212
- #: app/features/fes/form.php:543 app/features/labels.php:61
1213
  #: app/features/labels.php:220 app/features/mec.php:199
1214
- #: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4152
1215
- #: app/skins/single/default.php:119 app/skins/single/default.php:324
1216
- #: app/skins/single/m1.php:64 app/skins/single/modern.php:197
1217
  msgid "Labels"
1218
  msgstr "Etiquetas"
1219
 
1220
- #: app/features/fes/form.php:588 app/features/mec.php:197
1221
  #: app/features/mec/meta_boxes/filter.php:138
1222
  msgid "Tags"
1223
  msgstr "Tags"
1224
 
1225
- #: app/features/fes/form.php:590
1226
  #, fuzzy
1227
  msgid "Insert your desired tags, comma separated."
1228
  msgstr "Insertar sus etiquetas deseadas separados por comas."
1229
 
 
 
 
 
1230
  #: app/features/fes/list.php:21
1231
  msgid "Click again to remove!"
1232
  msgstr ""
@@ -1246,87 +1289,105 @@ msgstr "Ver mapa"
1246
  msgid "No events found! %s"
1247
  msgstr "No hay eventos"
1248
 
1249
- #: app/features/ix.php:95
1250
  msgid "MEC - Import / Export"
1251
  msgstr ""
1252
 
1253
- #: app/features/ix.php:95
1254
  msgid "Import / Export"
1255
  msgstr ""
1256
 
1257
- #: app/features/ix.php:180
1258
  msgid "Please upload the feed file."
1259
  msgstr ""
1260
 
1261
- #: app/features/ix.php:183
1262
  msgid "The file type should be XML or ICS."
1263
  msgstr ""
1264
 
1265
- #: app/features/ix.php:192
1266
- msgid "An error ocurred during the file upload! Please check permissions!"
1267
  msgstr ""
1268
 
1269
- #: app/features/ix.php:200
1270
  msgid "The events are imported successfully!"
1271
  msgstr ""
1272
 
1273
- #: app/features/ix.php:738
1274
  msgid "Third Party plugin is not installed and activated!"
1275
  msgstr ""
1276
 
1277
- #: app/features/ix.php:763
1278
  msgid "Third Party plugin is invalid!"
1279
  msgstr ""
1280
 
1281
- #: app/features/ix.php:1908 app/features/ix.php:1966
1282
  msgid "Both of API key and Calendar ID are required!"
1283
  msgstr ""
1284
 
1285
- #: app/features/ix.php:1961 app/features/ix.php:2791
1286
  msgid "Please select some events to import!"
1287
  msgstr ""
1288
 
1289
- #: app/features/ix.php:2328 app/features/ix.php:2369
 
 
 
 
 
 
 
 
1290
  msgid "Organizer Tel"
1291
  msgstr ""
1292
 
1293
- #: app/features/ix.php:2328 app/features/ix.php:2369
1294
  msgid "Organizer Email"
1295
  msgstr ""
1296
 
1297
- #: app/features/ix.php:2450
1298
  msgid "All of Client ID, Client Secret and Calendar ID are required!"
1299
  msgstr ""
1300
 
1301
- #: app/features/ix.php:2473
1302
  #, php-format
1303
  msgid "All seems good! Please click %s for authenticating your app."
1304
  msgstr ""
1305
 
1306
- #: app/features/ix.php:2527
1307
  msgid "All of Client App, Client Secret and Calendar ID are required!"
1308
  msgstr ""
1309
 
1310
- #: app/features/ix.php:2722
1311
  #, php-format
1312
  msgid "%s events added to Google Calendar successfully."
1313
  msgstr ""
1314
 
1315
- #: app/features/ix.php:2723
1316
  #, php-format
1317
  msgid "%s previously added events get updated."
1318
  msgstr ""
1319
 
1320
- #: app/features/ix.php:2724
1321
  #, php-format
1322
  msgid "%s events failed to add for following reasons: %s"
1323
  msgstr ""
1324
 
1325
- #: app/features/ix.php:2754 app/features/ix.php:2794
 
 
 
 
 
 
 
 
 
 
1326
  msgid "Please insert your facebook page's link."
1327
  msgstr ""
1328
 
1329
- #: app/features/ix.php:2762 app/features/ix.php:2799
1330
  msgid ""
1331
  "We couldn't recognize your Facebook page. Please check it and provide us a "
1332
  "valid facebook page link."
@@ -1334,144 +1395,163 @@ msgstr ""
1334
 
1335
  #: app/features/ix/export.php:8 app/features/ix/export_g_calendar.php:12
1336
  #: app/features/ix/import.php:8 app/features/ix/import_f_calendar.php:8
1337
- #: app/features/ix/import_g_calendar.php:8 app/features/ix/thirdparty.php:8
 
1338
  msgid "MEC Import / Export"
1339
  msgstr ""
1340
 
1341
  #: app/features/ix/export.php:13 app/features/ix/export_g_calendar.php:17
1342
  #: app/features/ix/import.php:13 app/features/ix/import_f_calendar.php:13
1343
- #: app/features/ix/import_g_calendar.php:13 app/features/ix/sync.php:13
 
1344
  #: app/features/ix/thirdparty.php:13
1345
- msgid "Export"
1346
- msgstr ""
 
 
1347
 
1348
  #: app/features/ix/export.php:14 app/features/ix/export_g_calendar.php:18
1349
  #: app/features/ix/import.php:14 app/features/ix/import_f_calendar.php:14
1350
- #: app/features/ix/import_f_calendar.php:74
1351
  #: app/features/ix/import_g_calendar.php:14
1352
- #: app/features/ix/import_g_calendar.php:102 app/features/ix/sync.php:14
1353
- #: app/features/ix/thirdparty.php:14 app/features/ix/thirdparty.php:97
1354
- msgid "Import"
1355
  msgstr ""
1356
 
1357
  #: app/features/ix/export.php:15 app/features/ix/export_g_calendar.php:19
1358
  #: app/features/ix/import.php:15 app/features/ix/import_f_calendar.php:15
1359
- #: app/features/ix/import_g_calendar.php:15 app/features/ix/sync.php:15
 
1360
  #: app/features/ix/thirdparty.php:15
1361
- msgid "Synchronization"
1362
  msgstr ""
1363
 
1364
  #: app/features/ix/export.php:16 app/features/ix/export_g_calendar.php:20
1365
  #: app/features/ix/import.php:16 app/features/ix/import_f_calendar.php:16
1366
- #: app/features/ix/import_g_calendar.php:16 app/features/ix/sync.php:16
1367
- #: app/features/ix/thirdparty.php:16 app/features/ix/thirdparty.php:20
 
 
 
 
 
 
 
 
 
 
 
 
1368
  msgid "Third Party Plugins"
1369
  msgstr ""
1370
 
1371
- #: app/features/ix/export.php:21
1372
  msgid "Export all events to file"
1373
  msgstr ""
1374
 
1375
- #: app/features/ix/export.php:22
1376
  msgid ""
1377
  "This will export all of your website events' data into your desired format."
1378
  msgstr ""
1379
 
1380
- #: app/features/ix/export.php:24 app/features/mec/settings.php:667
1381
  msgid "iCal"
1382
  msgstr "iCal"
1383
 
1384
- #: app/features/ix/export.php:25
1385
  msgid "CSV"
1386
  msgstr ""
1387
 
1388
- #: app/features/ix/export.php:26
1389
  msgid "MS Excel"
1390
  msgstr ""
1391
 
1392
- #: app/features/ix/export.php:27
1393
  msgid "XML"
1394
  msgstr ""
1395
 
1396
- #: app/features/ix/export.php:28
1397
  msgid "JSON"
1398
  msgstr ""
1399
 
1400
- #: app/features/ix/export.php:32
1401
  msgid "Export certain events"
1402
  msgstr ""
1403
 
1404
- #: app/features/ix/export.php:33
1405
  #, php-format
1406
  msgid "For exporting filtered events, you can use bulk actions in %s page."
1407
  msgstr ""
1408
 
1409
- #: app/features/ix/export.php:36
1410
  msgid "Export certain bookings"
1411
  msgstr ""
1412
 
1413
- #: app/features/ix/export.php:37
1414
  #, php-format
1415
  msgid "For exporting bookings events, you can use bulk actions in %s page."
1416
  msgstr ""
1417
 
1418
- #: app/features/ix/export.php:37
1419
  msgid "Bookings"
1420
  msgstr "Reservas"
1421
 
1422
- #: app/features/ix/export_g_calendar.php:25
1423
  msgid "Add events to Google Calendar"
1424
  msgstr ""
1425
 
1426
- #: app/features/ix/export_g_calendar.php:26
1427
  msgid "Add your desired website events to your Google Calendar."
1428
  msgstr ""
1429
 
1430
- #: app/features/ix/export_g_calendar.php:26
1431
  #, php-format
1432
  msgid "You should set %s as redirect page in Google App Console."
1433
  msgstr ""
1434
 
1435
- #: app/features/ix/export_g_calendar.php:29
1436
  msgid "App Client ID"
1437
  msgstr ""
1438
 
1439
- #: app/features/ix/export_g_calendar.php:35
1440
  msgid "App Client Secret"
1441
  msgstr ""
1442
 
1443
- #: app/features/ix/export_g_calendar.php:41
1444
- #: app/features/ix/import_g_calendar.php:31
1445
  msgid "Calendar ID"
1446
  msgstr ""
1447
 
1448
- #: app/features/ix/export_g_calendar.php:47
1449
- #: app/features/ix/export_g_calendar.php:102
1450
- #: app/features/ix/export_g_calendar.php:119
1451
  msgid "Authenticate"
1452
  msgstr ""
1453
 
1454
- #: app/features/ix/export_g_calendar.php:56
1455
- #: app/features/ix/import_f_calendar.php:49
1456
- #: app/features/ix/import_g_calendar.php:63 app/features/ix/thirdparty.php:48
1457
- msgid "Select All"
1458
- msgstr ""
1459
-
1460
  #: app/features/ix/export_g_calendar.php:57
1461
  #: app/features/ix/import_f_calendar.php:50
1462
- #: app/features/ix/import_g_calendar.php:64 app/features/ix/thirdparty.php:49
1463
- msgid "Deselect All"
 
1464
  msgstr ""
1465
 
1466
  #: app/features/ix/export_g_calendar.php:58
1467
  #: app/features/ix/import_f_calendar.php:51
1468
- #: app/features/ix/import_g_calendar.php:65 app/features/ix/thirdparty.php:50
 
 
 
 
 
 
 
 
1469
  msgid "Toggle"
1470
  msgstr "Toggle"
1471
 
1472
- #: app/features/ix/export_g_calendar.php:71
1473
- #: app/features/ix/export_g_calendar.php:146
1474
- #: app/features/ix/export_g_calendar.php:163
1475
  #: app/features/mec/notifications.php:144
1476
  #: app/features/mec/notifications.php:185
1477
  #: app/features/mec/notifications.php:226
@@ -1479,275 +1559,319 @@ msgstr "Toggle"
1479
  msgid "Add to Google Calendar"
1480
  msgstr ""
1481
 
1482
- #: app/features/ix/export_g_calendar.php:89 app/features/mec/settings.php:1354
1483
  msgid "Checking ..."
1484
  msgstr ""
1485
 
1486
- #: app/features/ix/export_g_calendar.php:133
1487
- msgid "Importing ..."
1488
  msgstr ""
1489
 
1490
- #: app/features/ix/import.php:20
1491
  msgid "Import MEC XML Feed"
1492
  msgstr ""
1493
 
1494
- #: app/features/ix/import.php:23
1495
  #, php-format
1496
  msgid ""
1497
  "You can import %s events from another website to this website. You just need "
1498
  "an XML feed of the events that can be exported from source website!"
1499
  msgstr ""
1500
 
1501
- #: app/features/ix/import.php:26
1502
  msgid "XML Feed"
1503
  msgstr ""
1504
 
1505
- #: app/features/ix/import.php:28 app/features/ix/import.php:41
1506
  msgid "Upload & Import"
1507
  msgstr ""
1508
 
1509
- #: app/features/ix/import.php:32
1510
  msgid "Import .ics File"
1511
  msgstr ""
1512
 
1513
- #: app/features/ix/import.php:36
1514
  #, php-format
1515
  msgid ""
1516
  "ICS format supports by many different service providers like Facebook. Apple "
1517
  "Calendar etc. You can import your ics file into the %s using this form."
1518
  msgstr ""
1519
 
1520
- #: app/features/ix/import.php:39
1521
  msgid "ICS Feed"
1522
  msgstr ""
1523
 
1524
- #: app/features/ix/import.php:45 app/features/mec/settings.php:548
1525
- #: app/features/mec/settings.php:698 app/features/mec/settings.php:716
1526
- #: app/features/mec/settings.php:981 app/features/mec/settings.php:1071
1527
- #: app/features/mec/settings.php:1088 app/features/mec/settings.php:1153
1528
  #, php-format
1529
  msgid "%s is required to use this feature."
1530
  msgstr ""
1531
 
1532
- #: app/features/ix/import.php:45 app/features/ix/sync.php:21
1533
  #: app/features/mec/meta_boxes/display_options.php:224
1534
  #: app/features/mec/meta_boxes/display_options.php:379
1535
  #: app/features/mec/meta_boxes/display_options.php:469
1536
  #: app/features/mec/meta_boxes/display_options.php:576
1537
  #: app/features/mec/meta_boxes/display_options.php:626
1538
  #: app/features/mec/meta_boxes/display_options.php:764
1539
- #: app/features/mec/settings.php:548 app/features/mec/settings.php:698
1540
- #: app/features/mec/settings.php:716 app/features/mec/settings.php:981
1541
- #: app/features/mec/settings.php:1071 app/features/mec/settings.php:1088
1542
- #: app/features/mec/settings.php:1153 app/features/mec/settings.php:1278
1543
  #: app/libraries/skins.php:248
1544
  msgid "Pro version of Modern Events Calendar"
1545
  msgstr ""
1546
 
1547
- #: app/features/ix/import_f_calendar.php:21
1548
  msgid "The Facebook SDK requires PHP version 5.4 or higher."
1549
  msgstr ""
1550
 
1551
- #: app/features/ix/import_f_calendar.php:25
1552
  msgid "Import from Facebook Calendar"
1553
  msgstr ""
1554
 
1555
- #: app/features/ix/import_f_calendar.php:26
1556
- msgid "Import all of your facebook events into MEC."
1557
  msgstr ""
1558
 
1559
- #: app/features/ix/import_f_calendar.php:28
1560
  msgid "Facebook Page Link"
1561
  msgstr ""
1562
 
1563
- #: app/features/ix/import_f_calendar.php:35
1564
- #: app/features/ix/import_g_calendar.php:50 app/features/ix/thirdparty.php:32
1565
- msgid "Start"
1566
- msgstr ""
1567
-
1568
- #: app/features/ix/import_f_calendar.php:46
1569
  msgid "Facebook Events"
1570
  msgstr ""
1571
 
1572
- #: app/features/ix/import_f_calendar.php:47
1573
  #, php-format
1574
  msgid ""
1575
  "We found %s events for %s page. Please select your desired events to import."
1576
  msgstr ""
1577
 
1578
- #: app/features/ix/import_f_calendar.php:58 app/features/ix/thirdparty.php:57
1579
  #, php-format
1580
  msgid "Event Title: %s"
1581
  msgstr ""
1582
 
1583
- #: app/features/ix/import_f_calendar.php:65
1584
- #: app/features/ix/import_g_calendar.php:86 app/features/ix/thirdparty.php:64
 
1585
  msgid "Import Options"
1586
  msgstr ""
1587
 
1588
- #: app/features/ix/import_f_calendar.php:69
1589
- #: app/features/ix/import_g_calendar.php:96 app/features/ix/thirdparty.php:77
 
1590
  msgid "Import Locations"
1591
  msgstr ""
1592
 
1593
- #: app/features/ix/import_f_calendar.php:84
1594
  #, php-format
1595
  msgid "%s events successfully imported to your website from Facebook Calendar."
1596
  msgstr ""
1597
 
1598
- #: app/features/ix/import_g_calendar.php:22
1599
  msgid "Import from Google Calendar"
1600
  msgstr ""
1601
 
1602
- #: app/features/ix/import_g_calendar.php:23
1603
  msgid "This will import all of your Google calendar events into MEC."
1604
  msgstr ""
1605
 
1606
- #: app/features/ix/import_g_calendar.php:25
1607
  msgid "Google API Key"
1608
  msgstr ""
1609
 
1610
- #: app/features/ix/import_g_calendar.php:60
1611
  msgid "Google Calendar Events"
1612
  msgstr ""
1613
 
1614
- #: app/features/ix/import_g_calendar.php:61
1615
  #, php-format
1616
  msgid ""
1617
  "We found %s events for %s calendar. Please select your desired events to "
1618
  "import."
1619
  msgstr ""
1620
 
1621
- #: app/features/ix/import_g_calendar.php:79
 
1622
  #, php-format
1623
  msgid "Event Title: %s Event Date: %s - %s"
1624
  msgstr ""
1625
 
1626
- #: app/features/ix/import_g_calendar.php:90 app/features/ix/thirdparty.php:70
 
1627
  msgid "Import Organizers"
1628
  msgstr ""
1629
 
1630
- #: app/features/ix/import_g_calendar.php:112
1631
  #, php-format
1632
  msgid "%s events successfully imported to your website from Google Calendar."
1633
  msgstr ""
1634
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1635
  #: app/features/ix/sync.php:8
1636
  msgid "Auto Synchronization"
1637
  msgstr ""
1638
 
1639
- #: app/features/ix/sync.php:21
1640
  #: app/features/mec/meta_boxes/display_options.php:626
1641
  #, php-format
1642
  msgid "%s is required to use synchronization feature."
1643
  msgstr ""
1644
 
1645
- #: app/features/ix/sync.php:28
1646
  msgid "Auto Google Import"
1647
  msgstr ""
1648
 
1649
- #: app/features/ix/sync.php:31 app/features/ix/sync.php:40
1650
- #: app/features/ix/sync.php:51 app/features/mec/notifications.php:281
 
1651
  msgid "Important Note"
1652
  msgstr ""
1653
 
1654
- #: app/features/ix/sync.php:31
1655
  #, php-format
1656
  msgid ""
1657
  "Set a cronjob to call %s file atleast once per day otherwise it won't import "
1658
  "Google Calendar events."
1659
  msgstr ""
1660
 
1661
- #: app/features/ix/sync.php:37
1662
  msgid "Auto Google Export"
1663
  msgstr ""
1664
 
1665
- #: app/features/ix/sync.php:40
1666
  #, php-format
1667
  msgid ""
1668
  "Set a cronjob to call %s file atleast once per day otherwise it won't export "
1669
  "your website events into Google Calendar."
1670
  msgstr ""
1671
 
1672
- #: app/features/ix/sync.php:48
1673
  msgid "Auto Facebook Import"
1674
  msgstr ""
1675
 
1676
- #: app/features/ix/sync.php:51
1677
  #, php-format
1678
  msgid ""
1679
  "Set a cronjob to call %s file atleast once per day otherwise it won't import "
1680
  "any event from Facebook."
1681
  msgstr ""
1682
 
1683
- #: app/features/ix/sync.php:57
 
 
 
 
 
 
 
 
 
 
 
1684
  msgid "Save"
1685
  msgstr ""
1686
 
1687
- #: app/features/ix/thirdparty.php:23
1688
  #, php-format
1689
  msgid "You can import events from following integrated plugins to %s."
1690
  msgstr ""
1691
 
1692
- #: app/features/ix/thirdparty.php:26
1693
  msgid "Third Party"
1694
  msgstr ""
1695
 
1696
- #: app/features/ix/thirdparty.php:45
1697
  msgid "Found Events"
1698
  msgstr ""
1699
 
1700
- #: app/features/ix/thirdparty.php:46
1701
  #, php-format
1702
  msgid "We found %s events. Please select your desired events to import."
1703
  msgstr ""
1704
 
1705
- #: app/features/ix/thirdparty.php:69
1706
  msgid "Import Instructors"
1707
  msgstr ""
1708
 
1709
- #: app/features/ix/thirdparty.php:84
1710
  msgid "Import Class Types"
1711
  msgstr ""
1712
 
1713
- #: app/features/ix/thirdparty.php:85
1714
  msgid "Import Categories"
1715
  msgstr ""
1716
 
1717
- #: app/features/ix/thirdparty.php:92
1718
  msgid "Import Featured Images"
1719
  msgstr ""
1720
 
1721
- #: app/features/ix/thirdparty.php:107
1722
  #, php-format
1723
  msgid "%s events successfully imported to your website."
1724
  msgstr ""
1725
 
1726
- #: app/features/ix/thirdparty.php:108
1727
- msgid "Attention"
1728
- msgstr ""
1729
-
1730
- #: app/features/ix/thirdparty.php:108
1731
  msgid ""
1732
  "Although we tried our best to make the events completely compatible with MEC "
1733
  "but some modification might be needed. We suggest you to edit the imported "
1734
- "listings one by one on MEC edit event page and make sure thay're correct."
1735
  msgstr ""
1736
 
1737
- #: app/features/labels.php:60
1738
- #: app/features/mec/meta_boxes/display_options.php:658
1739
- #: app/features/mec/meta_boxes/search_form.php:52
1740
- #: app/features/mec/meta_boxes/search_form.php:99
1741
- #: app/features/mec/meta_boxes/search_form.php:146
1742
- #: app/features/mec/meta_boxes/search_form.php:219
1743
- #: app/features/mec/meta_boxes/search_form.php:266
1744
- #: app/features/mec/meta_boxes/search_form.php:313
1745
- #: app/features/mec/meta_boxes/search_form.php:353
1746
- #: app/features/mec/meta_boxes/search_form.php:400
1747
- #: app/features/mec/meta_boxes/search_form.php:447 app/libraries/skins.php:790
1748
- msgid "Label"
1749
- msgstr "Etiqueta"
1750
-
1751
  #: app/features/labels.php:102 app/features/labels.php:133
1752
  #: app/features/labels.php:178
1753
  msgid "Color"
@@ -1790,11 +1914,12 @@ msgid "Featured"
1790
  msgstr "evento destacado"
1791
 
1792
  #: app/features/labels.php:117 app/features/labels.php:142
1793
- #: app/skins/agenda/render.php:41 app/skins/available_spot/tpl.php:35
1794
- #: app/skins/carousel/render.php:33 app/skins/countdown/tpl.php:28
1795
- #: app/skins/cover/tpl.php:31 app/skins/daily_view/render.php:26
1796
- #: app/skins/grid/render.php:53 app/skins/list/render.php:39
1797
- #: app/skins/masonry/render.php:32 app/skins/monthly_view/calendar.php:84
 
1798
  #: app/skins/monthly_view/calendar_clean.php:85
1799
  #: app/skins/monthly_view/calendar_novel.php:81 app/skins/slider/render.php:52
1800
  #: app/skins/timetable/render.php:36 app/skins/timetable/render.php:99
@@ -1808,7 +1933,7 @@ msgstr ""
1808
 
1809
  #: app/features/labels.php:179 app/features/locations.php:231
1810
  #: app/features/organizers.php:201 app/features/speakers.php:245
1811
- #: app/modules/booking/steps/tickets.php:36
1812
  msgid "Count"
1813
  msgstr "Contador"
1814
 
@@ -1823,7 +1948,7 @@ msgid "Event %s"
1823
  msgstr ""
1824
 
1825
  #: app/features/locations.php:59 app/features/mec.php:200
1826
- #: app/features/mec/meta_boxes/filter.php:87 app/libraries/main.php:4154
1827
  msgid "Locations"
1828
  msgstr "Lugar"
1829
 
@@ -1894,7 +2019,7 @@ msgstr "Nombre del lugar"
1894
  msgid "eg. City Hall"
1895
  msgstr "ej. Almería"
1896
 
1897
- #: app/features/locations.php:298 app/features/mec/settings.php:896
1898
  #: app/widgets/single.php:115
1899
  msgid "Event Location"
1900
  msgstr "Lugar del evento"
@@ -1920,7 +2045,7 @@ msgid "Don't show map in single event page"
1920
  msgstr "No mostrar el mapa en la página del detalle del evento"
1921
 
1922
  #: app/features/mec.php:201 app/features/mec/meta_boxes/filter.php:104
1923
- #: app/features/organizers.php:59 app/libraries/main.php:4156
1924
  msgid "Organizers"
1925
  msgstr "Organizadores"
1926
 
@@ -1993,12 +2118,10 @@ msgid "%s - Most Powerful & Easy to Use Events Management System"
1993
  msgstr ""
1994
 
1995
  #: app/features/mec/dashboard.php:61
1996
- msgid "Modern Event Calendar"
1997
- msgstr ""
1998
-
1999
- #: app/features/mec/dashboard.php:61
2000
- msgid "Modern Event Calendar (Lite)"
2001
- msgstr ""
2002
 
2003
  #: app/features/mec/dashboard.php:63 app/libraries/factory.php:191
2004
  msgctxt "plugin rate"
@@ -2068,7 +2191,7 @@ msgstr ""
2068
  msgid "OPEN A TICKET"
2069
  msgstr "ABRIR UN TICKET"
2070
 
2071
- #: app/features/mec/dashboard.php:160 app/features/mec/settings.php:395
2072
  msgid "Upcoming Events"
2073
  msgstr ""
2074
 
@@ -2119,21 +2242,21 @@ msgstr "Log"
2119
 
2120
  #: app/features/mec/gateways.php:52 app/features/mec/messages.php:52
2121
  #: app/features/mec/notifications.php:51 app/features/mec/regform.php:50
2122
- #: app/features/mec/settings.php:222 app/features/mec/styles.php:52
2123
  #: app/features/mec/styling.php:78 app/features/mec/support.php:50
2124
  msgid "Styling Options"
2125
  msgstr "Opciones visuales"
2126
 
2127
  #: app/features/mec/gateways.php:59 app/features/mec/messages.php:59
2128
  #: app/features/mec/notifications.php:58 app/features/mec/regform.php:57
2129
- #: app/features/mec/settings.php:229 app/features/mec/styles.php:59
2130
  #: app/features/mec/styling.php:85 app/features/mec/support.php:57
2131
  msgid "Custom CSS"
2132
  msgstr "CSS Custom"
2133
 
2134
  #: app/features/mec/gateways.php:66 app/features/mec/messages.php:66
2135
  #: app/features/mec/messages.php:90 app/features/mec/notifications.php:65
2136
- #: app/features/mec/regform.php:64 app/features/mec/settings.php:236
2137
  #: app/features/mec/styles.php:66 app/features/mec/styling.php:92
2138
  #: app/features/mec/support.php:64
2139
  msgid "Messages"
@@ -2141,7 +2264,7 @@ msgstr ""
2141
 
2142
  #: app/features/mec/gateways.php:73 app/features/mec/messages.php:73
2143
  #: app/features/mec/notifications.php:72 app/features/mec/regform.php:71
2144
- #: app/features/mec/settings.php:243 app/features/mec/styles.php:73
2145
  #: app/features/mec/styling.php:99 app/features/mec/support.php:71
2146
  #: app/features/mec/support.php:84
2147
  msgid "Support"
@@ -2154,9 +2277,9 @@ msgstr "Soporte"
2154
  #: app/features/mec/notifications.php:425
2155
  #: app/features/mec/notifications.php:433 app/features/mec/regform.php:130
2156
  #: app/features/mec/regform.php:203 app/features/mec/regform.php:211
2157
- #: app/features/mec/settings.php:251 app/features/mec/settings.php:1316
2158
- #: app/features/mec/settings.php:1324 app/features/mec/settings.php:1368
2159
- #: app/features/mec/settings.php:1381 app/features/mec/styles.php:96
2160
  #: app/features/mec/styles.php:136 app/features/mec/styles.php:144
2161
  #: app/features/mec/styling.php:262 app/features/mec/styling.php:327
2162
  #: app/features/mec/styling.php:335
@@ -2165,14 +2288,14 @@ msgstr "Guardar Cambios"
2165
 
2166
  #: app/features/mec/gateways.php:130 app/features/mec/messages.php:137
2167
  #: app/features/mec/notifications.php:413 app/features/mec/regform.php:190
2168
- #: app/features/mec/settings.php:1349 app/features/mec/styles.php:123
2169
  #: app/features/mec/styling.php:313
2170
  msgid "Saved"
2171
  msgstr ""
2172
 
2173
  #: app/features/mec/gateways.php:131 app/features/mec/messages.php:138
2174
  #: app/features/mec/notifications.php:414 app/features/mec/regform.php:191
2175
- #: app/features/mec/settings.php:1350 app/features/mec/styles.php:124
2176
  #: app/features/mec/styling.php:314
2177
  msgid "Settings Saved!"
2178
  msgstr ""
@@ -2470,13 +2593,13 @@ msgstr "Default"
2470
 
2471
  #: app/features/mec/meta_boxes/display_options.php:297
2472
  #: app/features/mec/meta_boxes/display_options.php:313
2473
- #: app/libraries/main.php:324 app/libraries/main.php:1162
2474
  msgid "List View"
2475
  msgstr "Ver lista"
2476
 
2477
  #: app/features/mec/meta_boxes/display_options.php:298
2478
  #: app/features/mec/meta_boxes/display_options.php:323
2479
- #: app/libraries/main.php:328 app/libraries/main.php:1156
2480
  msgid "Yearly View"
2481
  msgstr ""
2482
 
@@ -2488,13 +2611,13 @@ msgstr "Ver Calendario/Mes"
2488
 
2489
  #: app/features/mec/meta_boxes/display_options.php:300
2490
  #: app/features/mec/meta_boxes/display_options.php:343
2491
- #: app/libraries/main.php:331 app/libraries/main.php:1158
2492
  msgid "Weekly View"
2493
  msgstr "Ver semana"
2494
 
2495
  #: app/features/mec/meta_boxes/display_options.php:301
2496
  #: app/features/mec/meta_boxes/display_options.php:353
2497
- #: app/libraries/main.php:330 app/libraries/main.php:1159
2498
  msgid "Daily View"
2499
  msgstr "Ver día"
2500
 
@@ -2809,8 +2932,8 @@ msgstr ""
2809
  #: app/features/mec/meta_boxes/search_form.php:449
2810
  #: app/features/mec/meta_boxes/search_form.php:456
2811
  #: app/features/mec/meta_boxes/search_form.php:463
2812
- #: app/features/mec/settings.php:309 app/features/mec/settings.php:407
2813
- #: app/features/mec/settings.php:591
2814
  msgid "Disabled"
2815
  msgstr "Desactivado"
2816
 
@@ -3102,7 +3225,7 @@ msgstr "Insertar varios destinatarios, separados por comas."
3102
  msgid "Email/Booking verification link."
3103
  msgstr "Email/Reserva enlace de verificación."
3104
 
3105
- #: app/features/mec/notifications.php:189 app/features/mec/settings.php:1044
3106
  msgid "Booking Confirmation"
3107
  msgstr "Confirmación de reserva"
3108
 
@@ -3185,7 +3308,7 @@ msgstr "Fecha de reserva del evento"
3185
  msgid "Status of event"
3186
  msgstr "Inicio del siguiente mes"
3187
 
3188
- #: app/features/mec/notifications.php:355 app/features/mec/settings.php:938
3189
  msgid "Event Note"
3190
  msgstr ""
3191
 
@@ -3198,526 +3321,530 @@ msgstr "Enlace del administrador de reservas."
3198
  msgid "Archive Page Options"
3199
  msgstr ""
3200
 
3201
- #: app/features/mec/settings.php:90 app/features/mec/settings.php:656
3202
  msgid "Export Module Options"
3203
  msgstr "Exportar módulo de opciones"
3204
 
3205
- #: app/features/mec/settings.php:96 app/features/mec/settings.php:683
3206
  msgid "Local Time Module"
3207
  msgstr ""
3208
 
3209
- #: app/features/mec/settings.php:102 app/features/mec/settings.php:695
3210
  msgid "QR Code Module"
3211
  msgstr ""
3212
 
3213
- #: app/features/mec/settings.php:108 app/features/mec/settings.php:713
3214
  #: app/widgets/single.php:147
3215
  msgid "Weather Module"
3216
  msgstr ""
3217
 
3218
- #: app/features/mec/settings.php:144 app/features/mec/settings.php:968
 
 
 
 
3219
  #, fuzzy
3220
  msgid "Additional Organizers"
3221
  msgstr "Todos los organizadores"
3222
 
3223
- #: app/features/mec/settings.php:162 app/features/mec/settings.php:1085
3224
  msgid "Taxes / Fees"
3225
  msgstr "Impuestos/Tasas"
3226
 
3227
- #: app/features/mec/settings.php:168 app/features/mec/settings.php:1150
3228
  msgid "Ticket Variations & Options"
3229
  msgstr ""
3230
 
3231
- #: app/features/mec/settings.php:268
3232
  #, fuzzy
3233
  msgid "Time Format"
3234
  msgstr "Tiempo para comentar"
3235
 
3236
- #: app/features/mec/settings.php:271
3237
  msgid "12 hours format with AM/PM"
3238
  msgstr ""
3239
 
3240
- #: app/features/mec/settings.php:272
3241
  msgid "24 hours format"
3242
  msgstr ""
3243
 
3244
- #: app/features/mec/settings.php:274 app/features/mec/settings.php:287
3245
  msgid ""
3246
  "This option is for showing start/end time of events on frontend of website."
3247
  msgstr ""
3248
 
3249
- #: app/features/mec/settings.php:279
3250
  msgid "Hide Events"
3251
  msgstr ""
3252
 
3253
- #: app/features/mec/settings.php:282
3254
  msgid "On Event Start"
3255
  msgstr ""
3256
 
3257
- #: app/features/mec/settings.php:283
3258
  msgid "+1 Hour after start"
3259
  msgstr ""
3260
 
3261
- #: app/features/mec/settings.php:284
3262
  msgid "+2 Hours after start"
3263
  msgstr ""
3264
 
3265
- #: app/features/mec/settings.php:285
3266
  msgid "On Event End"
3267
  msgstr ""
3268
 
3269
- #: app/features/mec/settings.php:293
3270
  #, fuzzy
3271
  msgid "Multiple Day Events"
3272
  msgstr "Todos los eventos de hoy"
3273
 
3274
- #: app/features/mec/settings.php:296
3275
  msgid "Show only first day on List/Grid/Slider skins"
3276
  msgstr ""
3277
 
3278
- #: app/features/mec/settings.php:297
3279
  msgid "Show only first day on all skins"
3280
  msgstr ""
3281
 
3282
- #: app/features/mec/settings.php:298
3283
  #, fuzzy
3284
  msgid "Show all days"
3285
  msgstr "Mostrar todas las etiquetas"
3286
 
3287
- #: app/features/mec/settings.php:300
3288
  msgid ""
3289
  "For showing all days of multiple day events on frontend or only show the "
3290
  "first day."
3291
  msgstr ""
3292
 
3293
- #: app/features/mec/settings.php:306
3294
  msgid "Remove MEC Data on Plugin Uninstall"
3295
  msgstr ""
3296
 
3297
- #: app/features/mec/settings.php:310
3298
  msgid "Enabled"
3299
  msgstr ""
3300
 
3301
- #: app/features/mec/settings.php:316
3302
  msgid "Exclude Date Suffix"
3303
  msgstr ""
3304
 
3305
- #: app/features/mec/settings.php:319
3306
  msgid "Remove suffix from calendars"
3307
  msgstr ""
3308
 
3309
- #: app/features/mec/settings.php:326 app/libraries/main.php:4163
3310
  msgid "Weekdays"
3311
  msgstr ""
3312
 
3313
- #: app/features/mec/settings.php:334
3314
  msgid ""
3315
  "Proceed with caution. Default is set to Monday, Tuesday, Wednesday, Thursday "
3316
  "and Friday."
3317
  msgstr ""
3318
 
3319
- #: app/features/mec/settings.php:341
3320
  msgid "Weekends"
3321
  msgstr ""
3322
 
3323
- #: app/features/mec/settings.php:349
3324
  msgid "Proceed with caution. Default is set to Saturday and Sunday."
3325
  msgstr ""
3326
 
3327
- #: app/features/mec/settings.php:357
3328
  msgid "Archive Pages"
3329
  msgstr ""
3330
 
3331
- #: app/features/mec/settings.php:360
3332
  msgid "Archive Page Title"
3333
  msgstr "Título de la página de archivo"
3334
 
3335
- #: app/features/mec/settings.php:363
3336
  msgid "Default value is Events"
3337
  msgstr "Valor por defecto del evento"
3338
 
3339
- #: app/features/mec/settings.php:368
3340
  msgid "Archive Page Skin"
3341
  msgstr "Tema de la página de archivo"
3342
 
3343
- #: app/features/mec/settings.php:375
3344
  msgid "Default value is Calendar/Monthly View"
3345
  msgstr "El valor por defecto es la vista Calendar/Monthly"
3346
 
3347
- #: app/features/mec/settings.php:380
3348
  #, fuzzy
3349
  msgid "Category Page Skin"
3350
  msgstr "Categoría"
3351
 
3352
- #: app/features/mec/settings.php:387
3353
  #, fuzzy
3354
  msgid "Default value is List View"
3355
  msgstr "Valor por defecto del evento"
3356
 
3357
- #: app/features/mec/settings.php:392
3358
  msgid "Category Events Method"
3359
  msgstr ""
3360
 
3361
- #: app/features/mec/settings.php:396
3362
  msgid "Expired Events"
3363
  msgstr ""
3364
 
3365
- #: app/features/mec/settings.php:398
3366
  msgid "Default value is Upcoming Events"
3367
  msgstr ""
3368
 
3369
- #: app/features/mec/settings.php:403
3370
  msgid "Events Archive Status"
3371
  msgstr ""
3372
 
3373
- #: app/features/mec/settings.php:406
3374
  msgid "Enabled (Recommended)"
3375
  msgstr ""
3376
 
3377
- #: app/features/mec/settings.php:409
3378
  msgid ""
3379
  "If you disable it, then you should create a page as archive page of MEC. "
3380
  "Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
3381
  "MEC rewrite rules."
3382
  msgstr ""
3383
 
3384
- #: app/features/mec/settings.php:419
3385
  msgid "Main Slug"
3386
  msgstr "Menu slug"
3387
 
3388
- #: app/features/mec/settings.php:422
3389
  msgid ""
3390
  "Default value is events. Valid characters are lowercase a-z, - character and "
3391
  "numbers."
3392
  msgstr ""
3393
 
3394
- #: app/features/mec/settings.php:426
3395
  #, fuzzy
3396
  msgid "Category Slug"
3397
  msgstr "Categoría"
3398
 
3399
- #: app/features/mec/settings.php:429
3400
  msgid ""
3401
  "It's slug of MEC categories, you can change it to events-cat or something "
3402
  "else. Default value is mec-category. Valid characters are lowercase a-z, - "
3403
  "character and numbers."
3404
  msgstr ""
3405
 
3406
- #: app/features/mec/settings.php:439
3407
  msgid "Single Event Date Format"
3408
  msgstr ""
3409
 
3410
- #: app/features/mec/settings.php:442 app/features/mec/settings.php:804
3411
  #, fuzzy
3412
  msgid "Default is M d Y"
3413
  msgstr "Default"
3414
 
3415
- #: app/features/mec/settings.php:446
3416
  msgid "Date Method"
3417
  msgstr ""
3418
 
3419
- #: app/features/mec/settings.php:449
3420
  msgid "Next occurrence date"
3421
  msgstr ""
3422
 
3423
- #: app/features/mec/settings.php:450
3424
  msgid "Referred date"
3425
  msgstr ""
3426
 
3427
- #: app/features/mec/settings.php:452
3428
  msgid ""
3429
  "\"Referred date\" shows the event date based on referred date in event list."
3430
  msgstr ""
3431
 
3432
- #: app/features/mec/settings.php:456
3433
  msgid "Single Event Style"
3434
  msgstr ""
3435
 
3436
- #: app/features/mec/settings.php:459
3437
  msgid "Default Style"
3438
  msgstr ""
3439
 
3440
- #: app/features/mec/settings.php:460
3441
  msgid "Modern Style"
3442
  msgstr ""
3443
 
3444
- #: app/features/mec/settings.php:462
3445
  msgid "Choose your single event style."
3446
  msgstr ""
3447
 
3448
- #: app/features/mec/settings.php:466
3449
  #, fuzzy
3450
  #| msgid "Booking"
3451
  msgid "Booking Style"
3452
  msgstr "Reserva"
3453
 
3454
- #: app/features/mec/settings.php:469 app/features/mec/settings.php:580
3455
  msgid "Default"
3456
  msgstr "Default"
3457
 
3458
- #: app/features/mec/settings.php:470
3459
  msgid "Modal"
3460
  msgstr ""
3461
 
3462
- #: app/features/mec/settings.php:472
3463
  #, fuzzy
3464
  msgid "Choose your Booking style."
3465
  msgstr "Gracias por su reserva."
3466
 
3467
- #: app/features/mec/settings.php:480
3468
  msgid "Currency"
3469
  msgstr "Moneda corriente"
3470
 
3471
- #: app/features/mec/settings.php:490
3472
  msgid "Currency Sign"
3473
  msgstr "Tipo de moneda"
3474
 
3475
- #: app/features/mec/settings.php:493
3476
  msgid "Default value will be \"currency\" if you leave it empty."
3477
  msgstr ""
3478
 
3479
- #: app/features/mec/settings.php:497
3480
  #, fuzzy
3481
  msgid "Currency Position"
3482
  msgstr "Opciones de moneda"
3483
 
3484
- #: app/features/mec/settings.php:500
3485
  msgid "Before $10"
3486
  msgstr "Menos de 10€"
3487
 
3488
- #: app/features/mec/settings.php:501
3489
  msgid "After 10$"
3490
  msgstr "Más de 10€"
3491
 
3492
- #: app/features/mec/settings.php:506
3493
  msgid "Thousand Separator"
3494
  msgstr "Separador de miles"
3495
 
3496
- #: app/features/mec/settings.php:512
3497
  msgid "Decimal Separator"
3498
  msgstr "Separador de decimales"
3499
 
3500
- #: app/features/mec/settings.php:522
3501
  msgid "No decimal"
3502
  msgstr "No decimal"
3503
 
3504
- #: app/features/mec/settings.php:531
3505
  #, fuzzy
3506
  msgid "Speakers Options"
3507
  msgstr "Buscar lugares"
3508
 
3509
- #: app/features/mec/settings.php:537
3510
  #, fuzzy
3511
  #| msgid "Enable taxes / fees module"
3512
  msgid "Enable speakers feature"
3513
  msgstr "Activar módulo de Impuestos/Tasas"
3514
 
3515
- #: app/features/mec/settings.php:553
3516
  msgid "Show Google Maps on event page"
3517
  msgstr "Ver eventos en Google Maps"
3518
 
3519
- #: app/features/mec/settings.php:558 app/features/mec/settings.php:726
3520
- #: app/features/mec/settings.php:1248
3521
  msgid "API Key"
3522
  msgstr "API Key"
3523
 
3524
- #: app/features/mec/settings.php:561 app/features/mec/settings.php:1251
3525
- #: app/features/mec/settings.php:1258
3526
  msgid "Required!"
3527
  msgstr "Obligatorio!"
3528
 
3529
- #: app/features/mec/settings.php:565
3530
  msgid "Zoom level"
3531
  msgstr "Nivel de zoom"
3532
 
3533
- #: app/features/mec/settings.php:572
3534
  msgid ""
3535
  "For Google Maps module in single event page. In Google Maps skin, it will "
3536
  "caculate the zoom level automatically based on event boundaries."
3537
  msgstr ""
3538
 
3539
- #: app/features/mec/settings.php:576
3540
  msgid "Google Maps Style"
3541
  msgstr "Estilo de Google Maps"
3542
 
3543
- #: app/features/mec/settings.php:588
3544
  msgid "Direction on single event"
3545
  msgstr "Dirección en la página del evento"
3546
 
3547
- #: app/features/mec/settings.php:592
3548
  msgid "Simple Method"
3549
  msgstr "Método simple"
3550
 
3551
- #: app/features/mec/settings.php:593
3552
  msgid "Advanced Method"
3553
  msgstr "Método avanzado"
3554
 
3555
- #: app/features/mec/settings.php:598
3556
  msgid "Lightbox Date Format"
3557
  msgstr ""
3558
 
3559
- #: app/features/mec/settings.php:601
3560
  #, fuzzy
3561
  msgid "Default value is M d Y"
3562
  msgstr "Valor por defecto del evento"
3563
 
3564
- #: app/features/mec/settings.php:605
3565
  #, fuzzy
3566
  msgid "Google Maps API"
3567
  msgstr "Estilo de Google Maps"
3568
 
3569
- #: app/features/mec/settings.php:609
3570
  msgid "Don't load Google Maps API library"
3571
  msgstr ""
3572
 
3573
- #: app/features/mec/settings.php:611
3574
  msgid "Check it only if another plugin/theme is loading the Google Maps API"
3575
  msgstr ""
3576
 
3577
- #: app/features/mec/settings.php:623
3578
  msgid "Enable Google Recaptcha"
3579
  msgstr ""
3580
 
3581
- #: app/features/mec/settings.php:630
3582
  #, fuzzy
3583
  msgid "Enable on booking form"
3584
  msgstr "Activar módulo de reservas"
3585
 
3586
- #: app/features/mec/settings.php:636
3587
- msgid "Enable on \"Frontend Event Submittion\" form"
3588
  msgstr ""
3589
 
3590
- #: app/features/mec/settings.php:640
3591
  msgid "Site Key"
3592
  msgstr ""
3593
 
3594
- #: app/features/mec/settings.php:646
3595
  msgid "Secret Key"
3596
  msgstr ""
3597
 
3598
- #: app/features/mec/settings.php:660
3599
  msgid ""
3600
  "Show export module (iCal export and add to Google calendars) on event page"
3601
  msgstr "Ver modulo exportado (iCal y Google Calendars) en la página del evento"
3602
 
3603
- #: app/features/mec/settings.php:667
3604
  msgid "Google Calendar"
3605
  msgstr "Google Calendar"
3606
 
3607
- #: app/features/mec/settings.php:687
3608
  msgid "Show event time based on local time of visitor on event page"
3609
  msgstr ""
3610
 
3611
- #: app/features/mec/settings.php:703
3612
  msgid "Show QR code of event in details page and booking invoice"
3613
  msgstr ""
3614
 
3615
- #: app/features/mec/settings.php:721
3616
  msgid "Show weather module on event page"
3617
  msgstr ""
3618
 
3619
- #: app/features/mec/settings.php:729
3620
  #, php-format
3621
  msgid "You can get a free API Key from %s"
3622
  msgstr ""
3623
 
3624
- #: app/features/mec/settings.php:741
3625
  msgid "Show countdown module on event page"
3626
  msgstr "Mostrar módulo de cuenta atrás en la página del evento"
3627
 
3628
- #: app/features/mec/settings.php:746
3629
  msgid "Countdown Style"
3630
  msgstr ""
3631
 
3632
- #: app/features/mec/settings.php:749
3633
  msgid "Plain Style"
3634
  msgstr ""
3635
 
3636
- #: app/features/mec/settings.php:750
3637
  msgid "Flip Style"
3638
  msgstr ""
3639
 
3640
- #: app/features/mec/settings.php:762
3641
  msgid "Show social network module"
3642
  msgstr "Ver módulo de redes sociales"
3643
 
3644
- #: app/features/mec/settings.php:787
3645
  msgid "Show next event module on event page"
3646
  msgstr ""
3647
 
3648
- #: app/features/mec/settings.php:792
3649
  msgid "Method"
3650
  msgstr ""
3651
 
3652
- #: app/features/mec/settings.php:795
3653
  msgid "Next Occurrence of Current Event"
3654
  msgstr ""
3655
 
3656
- #: app/features/mec/settings.php:796
3657
  msgid "Next Occurrence of Other Events"
3658
  msgstr ""
3659
 
3660
- #: app/features/mec/settings.php:801 app/features/mec/settings.php:991
3661
  #, fuzzy
3662
  msgid "Date Format"
3663
  msgstr "Tiempo para comentar"
3664
 
3665
- #: app/features/mec/settings.php:813
3666
  #, fuzzy
3667
  msgid "Events List Page"
3668
  msgstr "Título del evento"
3669
 
3670
- #: app/features/mec/settings.php:822 app/features/mec/settings.php:834
3671
  #, php-format
3672
  msgid "Put %s shortcode into the page."
3673
  msgstr ""
3674
 
3675
- #: app/features/mec/settings.php:825
3676
  #, fuzzy
3677
  msgid "Add/Edit Events Page"
3678
  msgstr "Editar eventos"
3679
 
3680
- #: app/features/mec/settings.php:839
3681
  msgid "Enable event submission by guest (Not logged-in) users"
3682
  msgstr ""
3683
 
3684
- #: app/features/mec/settings.php:846
3685
  msgid "Enable mandatory email and name for guest user"
3686
  msgstr ""
3687
 
3688
- #: app/features/mec/settings.php:850
3689
  msgid "Frontend Event Submission Sections"
3690
  msgstr ""
3691
 
3692
- #: app/features/mec/settings.php:872 app/widgets/single.php:119
3693
  #, fuzzy
3694
  msgid "Event Categories"
3695
  msgstr "Categorías"
3696
 
3697
- #: app/features/mec/settings.php:878
3698
  msgid "Event Labels"
3699
  msgstr "Etiqueta de evento"
3700
 
3701
- #: app/features/mec/settings.php:890
3702
  #, fuzzy
3703
  msgid "Event Tags"
3704
  msgstr "Eventos"
3705
 
3706
- #: app/features/mec/settings.php:902 app/widgets/single.php:123
3707
  msgid "Event Organizer"
3708
  msgstr "Organizador de eventos"
3709
 
3710
- #: app/features/mec/settings.php:920
3711
  #, fuzzy
3712
  msgid "Booking Options"
3713
  msgstr "Opciones visuales"
3714
 
3715
- #: app/features/mec/settings.php:926
3716
  #, fuzzy
3717
  msgid "Fees / Taxes Options"
3718
  msgstr "Opciones generales"
3719
 
3720
- #: app/features/mec/settings.php:940
3721
  #, php-format
3722
  msgid ""
3723
  "Users can put a note for editors while they're submitting the event. Also "
@@ -3725,227 +3852,234 @@ msgid ""
3725
  "users' note in email."
3726
  msgstr ""
3727
 
3728
- #: app/features/mec/settings.php:944
3729
  msgid "Visibility of Note"
3730
  msgstr ""
3731
 
3732
- #: app/features/mec/settings.php:947
3733
  msgid "Always"
3734
  msgstr ""
3735
 
3736
- #: app/features/mec/settings.php:948
3737
  msgid "While event is not published"
3738
  msgstr ""
3739
 
3740
- #: app/features/mec/settings.php:951
3741
  msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
3742
  msgstr ""
3743
 
3744
- #: app/features/mec/settings.php:957
 
 
 
 
 
 
 
3745
  msgid "Exceptional days"
3746
  msgstr ""
3747
 
3748
- #: app/features/mec/settings.php:961
3749
  msgid "Show exceptional days option on Add/Edit events page"
3750
  msgstr ""
3751
 
3752
- #: app/features/mec/settings.php:962
3753
  msgid ""
3754
  "Using this option you can include/exclude certain days to/from event "
3755
  "occurrence dates."
3756
  msgstr ""
3757
 
3758
- #: app/features/mec/settings.php:972
3759
  msgid ""
3760
  "Show additional organizers option on Add/Edit events page and single event "
3761
  "page."
3762
  msgstr ""
3763
 
3764
- #: app/features/mec/settings.php:986
3765
  msgid "Enable booking module"
3766
  msgstr "Activar módulo de reservas"
3767
 
3768
- #: app/features/mec/settings.php:994
3769
  #, fuzzy
3770
  msgid "Default is Y-m-d"
3771
  msgstr "Default"
3772
 
3773
- #: app/features/mec/settings.php:998
3774
  #, fuzzy
3775
  msgid "Maximum Dates"
3776
  msgstr "Máximo de eventos"
3777
 
3778
- #: app/features/mec/settings.php:1000
3779
  #, fuzzy
3780
  msgid "Default is 6"
3781
  msgstr "Default"
3782
 
3783
- #: app/features/mec/settings.php:1004
3784
  msgid "Thank You Page"
3785
  msgstr ""
3786
 
3787
- #: app/features/mec/settings.php:1012
3788
  msgid ""
3789
  "User redirects to this page after booking. Leave it empty if you want to "
3790
  "disable it."
3791
  msgstr ""
3792
 
3793
- #: app/features/mec/settings.php:1020
3794
  msgid "Enable Express Attendees Form"
3795
  msgstr ""
3796
 
3797
- #: app/features/mec/settings.php:1022
3798
  msgid ""
3799
  "Users are able to apply first attendee information for other attendees in "
3800
  "the booking form."
3801
  msgstr ""
3802
 
3803
- #: app/features/mec/settings.php:1025
3804
  #, fuzzy
3805
  msgid "Email verification"
3806
  msgstr "Verificar"
3807
 
3808
- #: app/features/mec/settings.php:1031
3809
  msgid "Auto verification for free bookings"
3810
  msgstr "Auto verificación para reservas gratuitas"
3811
 
3812
- #: app/features/mec/settings.php:1040
3813
  msgid "Auto verification for paid bookings"
3814
  msgstr "Auto verificación para reservas de pago"
3815
 
3816
- #: app/features/mec/settings.php:1050
3817
  #, fuzzy
3818
  msgid "Auto confirmation for free bookings"
3819
  msgstr "Auto verificación para reservas gratuitas"
3820
 
3821
- #: app/features/mec/settings.php:1059
3822
  #, fuzzy
3823
  msgid "Auto confirmation for paid bookings"
3824
  msgstr "Auto verificación para reservas de pago"
3825
 
3826
- #: app/features/mec/settings.php:1076
3827
  msgid "Enable coupons module"
3828
  msgstr "Activar módulo de cupones"
3829
 
3830
- #: app/features/mec/settings.php:1093
3831
  msgid "Enable taxes / fees module"
3832
  msgstr "Activar módulo de Impuestos/Tasas"
3833
 
3834
- #: app/features/mec/settings.php:1098
3835
  msgid "Add Fee"
3836
  msgstr "Nueva tasa"
3837
 
3838
- #: app/features/mec/settings.php:1158
3839
  #, fuzzy
3840
  #| msgid "Enable coupons module"
3841
  msgid "Enable ticket options module"
3842
  msgstr "Activar módulo de cupones"
3843
 
3844
- #: app/features/mec/settings.php:1163
3845
  #, fuzzy
3846
  #| msgid "Add Option"
3847
  msgid "Add Variation / Option"
3848
  msgstr "Nueva opción"
3849
 
3850
- #: app/features/mec/settings.php:1213
3851
  msgid "Enable BuddyPress Integration"
3852
  msgstr ""
3853
 
3854
- #: app/features/mec/settings.php:1220
3855
  msgid "Show \"Attendees Module\" in event details page"
3856
  msgstr ""
3857
 
3858
- #: app/features/mec/settings.php:1224
3859
  msgid "Attendees Limit"
3860
  msgstr ""
3861
 
3862
- #: app/features/mec/settings.php:1232
3863
  msgid "Add booking activity to user profile"
3864
  msgstr ""
3865
 
3866
- #: app/features/mec/settings.php:1243
3867
  msgid "Enable Mailchimp Integration"
3868
  msgstr ""
3869
 
3870
- #: app/features/mec/settings.php:1255
3871
  msgid "List ID"
3872
  msgstr ""
3873
 
3874
- #: app/features/mec/settings.php:1262
3875
  msgid "Subscription Status"
3876
  msgstr ""
3877
 
3878
- #: app/features/mec/settings.php:1265
3879
  msgid "Subscribe automatically"
3880
  msgstr ""
3881
 
3882
- #: app/features/mec/settings.php:1266
3883
  msgid "Subscribe by verification"
3884
  msgstr ""
3885
 
3886
- #: app/features/mec/settings.php:1268
3887
  msgid ""
3888
  "If you choose \"Subscribe by verification\" then an email will send to user "
3889
  "by mailchimp for subscription verification."
3890
  msgstr ""
3891
 
3892
- #: app/features/mec/settings.php:1278
3893
  #, php-format
3894
  msgid "%s is required to use this section."
3895
  msgstr ""
3896
 
3897
- #: app/features/mec/settings.php:1281
3898
  msgid "Purchase Code"
3899
  msgstr ""
3900
 
3901
- #: app/features/mec/settings.php:1286 app/features/mec/settings.php:1352
3902
- #: app/features/mec/settings.php:1370
3903
  msgid "Verified"
3904
  msgstr "Verificado"
3905
 
3906
- #: app/features/mec/settings.php:1288
3907
  #, fuzzy
3908
  msgid "UnVerified"
3909
  msgstr "Verificado"
3910
 
3911
- #: app/features/mec/settings.php:1290
3912
  msgid ""
3913
- "Please insert your purchase code validation. read documentation for more "
3914
  "information."
3915
  msgstr ""
3916
 
3917
- #: app/features/mec/settings.php:1293
3918
  msgid "Product Name"
3919
  msgstr ""
3920
 
3921
- #: app/features/mec/settings.php:1296
3922
  msgid "1 License for MEC Plugin"
3923
  msgstr ""
3924
 
3925
- #: app/features/mec/settings.php:1297
3926
  msgid "5 License for MEC Plugin"
3927
  msgstr ""
3928
 
3929
- #: app/features/mec/settings.php:1298
3930
  msgid "10 License for MEC Plugin"
3931
  msgstr ""
3932
 
3933
- #: app/features/mec/settings.php:1305
3934
  msgid "MEC Deactivation"
3935
  msgstr ""
3936
 
3937
- #: app/features/mec/settings.php:1307
3938
  msgid "Deactivate"
3939
  msgstr ""
3940
 
3941
- #: app/features/mec/settings.php:1309
3942
  msgid ""
3943
  "For deactivation first delete your purchase from above field then press save "
3944
  "after that click on deactivate for deactivate this purchase code from this "
3945
  "domain then you can activate another domain."
3946
  msgstr ""
3947
 
3948
- #: app/features/mec/settings.php:1372
3949
  msgid "Please Refresh Page"
3950
  msgstr ""
3951
 
@@ -4100,9 +4234,9 @@ msgstr "ej. user@yoursite.com"
4100
 
4101
  #: app/features/organizers.php:281
4102
  msgid "eg. https://webnus.net"
4103
- msgstr "ej. https://webnus.net"
4104
 
4105
- #: app/features/organizers.php:300 app/libraries/main.php:4187
4106
  #: app/skins/single.php:194
4107
  msgid "Other Organizers"
4108
  msgstr ""
@@ -4112,8 +4246,49 @@ msgid ""
4112
  "You can select extra organizers in addition to main organizer if you like."
4113
  msgstr ""
4114
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4115
  #: app/features/speakers.php:56 app/features/speakers.php:242
4116
- #: app/libraries/main.php:4159
4117
  msgid "Speaker"
4118
  msgstr ""
4119
 
@@ -4151,7 +4326,7 @@ msgid "Insert URL of Facebook Page"
4151
  msgstr ""
4152
 
4153
  #: app/features/speakers.php:135 app/features/speakers.php:187
4154
- #: app/libraries/main.php:1063
4155
  msgid "Google+"
4156
  msgstr "Google+"
4157
 
@@ -4176,12 +4351,12 @@ msgstr "Introduce -1 para uso ilimitado"
4176
  msgid "%s Price"
4177
  msgstr ""
4178
 
4179
- #: app/libraries/book.php:537
4180
  msgid "Discount"
4181
  msgstr "Descuento"
4182
 
4183
- #: app/libraries/book.php:625 app/modules/booking/default.php:274
4184
- #: app/modules/booking/default.php:369
4185
  msgid "Download Invoice"
4186
  msgstr ""
4187
 
@@ -4258,430 +4433,436 @@ msgstr ""
4258
  msgid "There is no excerpt because this is a protected post."
4259
  msgstr "No hay extracto porque es una entrada protegida."
4260
 
4261
- #: app/libraries/main.php:325 app/libraries/main.php:1163
4262
  msgid "Grid View"
4263
  msgstr "Ver cuadrícula"
4264
 
4265
- #: app/libraries/main.php:326 app/libraries/main.php:1164
4266
  msgid "Agenda View"
4267
  msgstr ""
4268
 
4269
- #: app/libraries/main.php:327 app/libraries/main.php:1155
4270
  #, fuzzy
4271
  msgid "Full Calendar"
4272
  msgstr "Calendario"
4273
 
4274
- #: app/libraries/main.php:329 app/libraries/main.php:1157
4275
  msgid "Calendar/Monthly View"
4276
  msgstr "Ver Calendario/Mes"
4277
 
4278
- #: app/libraries/main.php:332 app/libraries/main.php:1160
4279
  msgid "Timetable View"
4280
  msgstr ""
4281
 
4282
- #: app/libraries/main.php:333 app/libraries/main.php:1161
4283
  msgid "Masonry View"
4284
  msgstr ""
4285
 
4286
- #: app/libraries/main.php:334 app/libraries/main.php:1165
4287
  msgid "Map View"
4288
  msgstr "Ver mapa"
4289
 
4290
- #: app/libraries/main.php:335
4291
  msgid "Cover View"
4292
  msgstr "Ver portada"
4293
 
4294
- #: app/libraries/main.php:336
4295
  #, fuzzy
4296
  msgid "Countdown View"
4297
  msgstr "Opciones de cuenta atrás"
4298
 
4299
- #: app/libraries/main.php:337
4300
  msgid "Available Spot"
4301
  msgstr ""
4302
 
4303
- #: app/libraries/main.php:338
4304
  #, fuzzy
4305
  msgid "Carousel View"
4306
  msgstr "Ver portada"
4307
 
4308
- #: app/libraries/main.php:339
4309
  msgid "Slider View"
4310
  msgstr ""
4311
 
4312
- #: app/libraries/main.php:376 app/libraries/main.php:4165
4313
  msgid "SU"
4314
  msgstr ""
4315
 
4316
- #: app/libraries/main.php:377 app/libraries/main.php:4166
4317
  msgid "MO"
4318
  msgstr ""
4319
 
4320
- #: app/libraries/main.php:378 app/libraries/main.php:4167
4321
  msgid "TU"
4322
  msgstr ""
4323
 
4324
- #: app/libraries/main.php:379 app/libraries/main.php:4168
4325
  msgid "WE"
4326
  msgstr ""
4327
 
4328
- #: app/libraries/main.php:380 app/libraries/main.php:4169
4329
  msgid "TH"
4330
  msgstr ""
4331
 
4332
- #: app/libraries/main.php:381 app/libraries/main.php:4170
4333
  msgid "FR"
4334
  msgstr ""
4335
 
4336
- #: app/libraries/main.php:382 app/libraries/main.php:4171
4337
  msgid "SA"
4338
  msgstr ""
4339
 
4340
- #: app/libraries/main.php:1021
4341
  msgid "Events at this location"
4342
  msgstr ""
4343
 
4344
- #: app/libraries/main.php:1021
4345
  msgid "Event at this location"
4346
  msgstr ""
4347
 
4348
- #: app/libraries/main.php:1062
4349
  msgid "Facebook"
4350
  msgstr "Facebook"
4351
 
4352
- #: app/libraries/main.php:1064
4353
  msgid "Twitter"
4354
  msgstr "Twitter"
4355
 
4356
- #: app/libraries/main.php:1065 app/libraries/main.php:1118
4357
  msgid "Linkedin"
4358
  msgstr "LinkedIn"
4359
 
4360
- #: app/libraries/main.php:1066 app/libraries/main.php:1144
4361
  msgid "VK"
4362
  msgstr ""
4363
 
4364
- #: app/libraries/main.php:1082
4365
  msgid "Share on Facebook"
4366
  msgstr "Compartir en Facebook"
4367
 
4368
- #: app/libraries/main.php:1094
4369
  msgid "Google Plus"
4370
  msgstr "Google Plus"
4371
 
4372
- #: app/libraries/main.php:1106
4373
  msgid "Tweet"
4374
  msgstr "Tweet"
4375
 
4376
- #: app/libraries/main.php:1500
4377
  msgid "Your booking successfully verified."
4378
  msgstr "Su reserva verificada correctamente."
4379
 
4380
- #: app/libraries/main.php:1501
4381
  msgid "Your booking cannot verify!"
4382
  msgstr "Su reserva no se puede verificar!"
4383
 
4384
- #: app/libraries/main.php:1513
4385
  msgid "Your booking successfully canceled."
4386
  msgstr "Su reserva se ha cancelado correctamente."
4387
 
4388
- #: app/libraries/main.php:1514
4389
  msgid "Your booking cannot be canceled."
4390
  msgstr "La reserva no puede cancelarse."
4391
 
4392
- #: app/libraries/main.php:1518
4393
  msgid "You canceled the payment successfully."
4394
  msgstr "Has cancelado el pago correctamente."
4395
 
4396
- #: app/libraries/main.php:1522
4397
  msgid "You returned from payment gateway successfully."
4398
  msgstr "Has vuelto correctamente de tu pasarela de pago."
4399
 
4400
- #: app/libraries/main.php:1546
4401
  msgid "Cannot find the booking!"
4402
  msgstr ""
4403
 
4404
- #: app/libraries/main.php:1546
4405
  msgid "Booking is invalid."
4406
  msgstr ""
4407
 
4408
- #: app/libraries/main.php:1567
4409
  #, php-format
4410
  msgid "%s Invoice"
4411
  msgstr ""
4412
 
4413
- #: app/libraries/main.php:1588
4414
  msgid "Transaction ID"
4415
  msgstr "ID Transacción"
4416
 
4417
- #: app/libraries/main.php:1597
4418
- msgid "Attendees"
4419
- msgstr ""
4420
-
4421
- #: app/libraries/main.php:1611 app/libraries/main.php:4185
4422
- msgid "Ticket"
4423
- msgstr "Ticket"
4424
-
4425
- #: app/libraries/main.php:1641
4426
  msgid "Billing"
4427
  msgstr ""
4428
 
4429
- #: app/libraries/main.php:1652
4430
  msgid "Total"
4431
  msgstr ""
4432
 
4433
- #: app/libraries/main.php:1685
4434
  msgid "Security nonce is not valid."
4435
  msgstr "La seguridad no es válida."
4436
 
4437
- #: app/libraries/main.php:1685 app/libraries/main.php:1717
4438
  msgid "iCal export stopped!"
4439
  msgstr "La exportación de iCal se detuvo!"
4440
 
4441
- #: app/libraries/main.php:1717
4442
  #, fuzzy
4443
  #| msgid "Request is invalid!"
4444
  msgid "Request is not valid."
4445
  msgstr "Solicitud no válida!"
4446
 
4447
- #: app/libraries/main.php:2037 app/libraries/main.php:2066
4448
- #: app/libraries/main.php:2095 app/libraries/main.php:2124
4449
- #: app/libraries/main.php:2153 app/libraries/main.php:2177
4450
- #: app/libraries/main.php:2221 app/libraries/main.php:2265
4451
- #: app/libraries/main.php:2312 app/libraries/main.php:2358
4452
  msgid "Sort"
4453
  msgstr "Orden"
4454
 
4455
- #: app/libraries/main.php:2043 app/libraries/main.php:2072
4456
- #: app/libraries/main.php:2101 app/libraries/main.php:2130
4457
- #: app/libraries/main.php:2183 app/libraries/main.php:2227
4458
- #: app/libraries/main.php:2271 app/libraries/main.php:2318
4459
  msgid "Required Field"
4460
  msgstr "Campo obligatorio"
4461
 
4462
- #: app/libraries/main.php:2049 app/libraries/main.php:2078
4463
- #: app/libraries/main.php:2107 app/libraries/main.php:2136
4464
- #: app/libraries/main.php:2189 app/libraries/main.php:2233
4465
- #: app/libraries/main.php:2277 app/libraries/main.php:2324
4466
  msgid "Insert a label for this field"
4467
  msgstr "Introduzca una etiqueta para este campo"
4468
 
4469
- #: app/libraries/main.php:2159
4470
  msgid "HTML and shortcode are allowed."
4471
  msgstr "Se permite HTML"
4472
 
4473
- #: app/libraries/main.php:2202 app/libraries/main.php:2246
4474
- #: app/libraries/main.php:2290
4475
  msgid "Option"
4476
  msgstr "Opción"
4477
 
4478
- #: app/libraries/main.php:2324
4479
  #, php-format
4480
  msgid "Instead of %s, the page title with a link will be show."
4481
  msgstr ""
4482
 
4483
- #: app/libraries/main.php:2326
4484
  msgid "Agreement Page"
4485
  msgstr ""
4486
 
4487
- #: app/libraries/main.php:2335
4488
- msgid "Status"
4489
- msgstr ""
4490
-
4491
- #: app/libraries/main.php:2337
4492
  msgid "Checked by default"
4493
  msgstr ""
4494
 
4495
- #: app/libraries/main.php:2338
4496
  msgid "Unchecked by default"
4497
  msgstr ""
4498
 
4499
- #: app/libraries/main.php:2360
4500
  msgid "Insert a label for this option"
4501
  msgstr "Introduce una etiqueta para esta opción"
4502
 
4503
- #: app/libraries/main.php:2375
4504
  msgid "Free"
4505
  msgstr "Gratis"
4506
 
4507
- #: app/libraries/main.php:3027
4508
  #, php-format
4509
  msgid "Copy of %s"
4510
  msgstr ""
4511
 
4512
- #: app/libraries/main.php:3665
4513
  msgid "Booked an event."
4514
  msgstr ""
4515
 
4516
- #: app/libraries/main.php:3706
4517
  #, php-format
4518
  msgid "%s booked %s event."
4519
  msgstr ""
4520
 
4521
- #: app/libraries/main.php:4148
4522
  msgid "Taxonomies"
4523
  msgstr ""
4524
 
4525
- #: app/libraries/main.php:4150
4526
  msgid "Category Plural Label"
4527
  msgstr ""
4528
 
4529
- #: app/libraries/main.php:4151
4530
  msgid "Category Singular Label"
4531
  msgstr ""
4532
 
4533
- #: app/libraries/main.php:4152
4534
  msgid "Label Plural Label"
4535
  msgstr ""
4536
 
4537
- #: app/libraries/main.php:4153
4538
  msgid "Label Singular Label"
4539
  msgstr ""
4540
 
4541
- #: app/libraries/main.php:4153
4542
  msgid "label"
4543
  msgstr ""
4544
 
4545
- #: app/libraries/main.php:4154
4546
  msgid "Location Plural Label"
4547
  msgstr ""
4548
 
4549
- #: app/libraries/main.php:4155
4550
  msgid "Location Singular Label"
4551
  msgstr ""
4552
 
4553
- #: app/libraries/main.php:4156
4554
  msgid "Organizer Plural Label"
4555
  msgstr ""
4556
 
4557
- #: app/libraries/main.php:4157
4558
  msgid "Organizer Singular Label"
4559
  msgstr ""
4560
 
4561
- #: app/libraries/main.php:4158
4562
  #, fuzzy
4563
  #| msgid "Search Labels"
4564
  msgid "Speaker Plural Label"
4565
  msgstr "Buscar etiquetas"
4566
 
4567
- #: app/libraries/main.php:4159
4568
  #, fuzzy
4569
  #| msgid "Popular Labels"
4570
  msgid "Speaker Singular Label"
4571
  msgstr "Etiquetas populares"
4572
 
4573
- #: app/libraries/main.php:4165
4574
  msgid "Sunday abbreviation"
4575
  msgstr ""
4576
 
4577
- #: app/libraries/main.php:4166
4578
  msgid "Monday abbreviation"
4579
  msgstr ""
4580
 
4581
- #: app/libraries/main.php:4167
4582
  msgid "Tuesday abbreviation"
4583
  msgstr ""
4584
 
4585
- #: app/libraries/main.php:4168
4586
  msgid "Wednesday abbreviation"
4587
  msgstr ""
4588
 
4589
- #: app/libraries/main.php:4169
4590
  msgid "Thursday abbreviation"
4591
  msgstr ""
4592
 
4593
- #: app/libraries/main.php:4170
4594
  msgid "Friday abbreviation"
4595
  msgstr ""
4596
 
4597
- #: app/libraries/main.php:4171
4598
  msgid "Saturday abbreviation"
4599
  msgstr ""
4600
 
4601
- #: app/libraries/main.php:4175
4602
  msgid "Others"
4603
  msgstr ""
4604
 
4605
- #: app/libraries/main.php:4177
4606
  msgid "Booking Success Message"
4607
  msgstr ""
4608
 
4609
- #: app/libraries/main.php:4177
4610
  msgid ""
4611
  "Thanks for your booking. Your tickets booked, booking verification might be "
4612
  "needed, please check your email."
4613
  msgstr "Gracias por su reserva. Revise su correo electrónico."
4614
 
4615
- #: app/libraries/main.php:4178 app/widgets/single.php:131
4616
  msgid "Register Button"
4617
  msgstr ""
4618
 
4619
- #: app/libraries/main.php:4178 app/skins/available_spot/tpl.php:164
4620
  #: app/skins/carousel/render.php:79 app/skins/carousel/render.php:104
4621
  #: app/skins/grid/render.php:76 app/skins/grid/render.php:107
4622
  #: app/skins/grid/render.php:139 app/skins/grid/render.php:167
4623
  #: app/skins/list/render.php:59 app/skins/list/render.php:140
4624
- #: app/skins/masonry/render.php:94 app/skins/single/default.php:217
4625
- #: app/skins/single/default.php:422 app/skins/single/m1.php:126
4626
- #: app/skins/single/m2.php:58 app/skins/single/modern.php:58
4627
- #: app/skins/slider/render.php:75 app/skins/slider/render.php:96
4628
- #: app/skins/slider/render.php:116 app/skins/slider/render.php:136
4629
- #: app/skins/slider/render.php:167
 
 
4630
  msgid "REGISTER"
4631
  msgstr "REGISTRAR"
4632
 
4633
- #: app/libraries/main.php:4179
4634
  msgid "View Detail Button"
4635
  msgstr ""
4636
 
4637
- #: app/libraries/main.php:4179 app/skins/carousel/render.php:79
4638
  #: app/skins/carousel/render.php:104 app/skins/grid/render.php:76
4639
  #: app/skins/grid/render.php:107 app/skins/grid/render.php:139
4640
  #: app/skins/grid/render.php:167 app/skins/list/render.php:59
4641
- #: app/skins/list/render.php:140 app/skins/masonry/render.php:94
4642
  #: app/skins/slider/render.php:75 app/skins/slider/render.php:96
4643
  #: app/skins/slider/render.php:116 app/skins/slider/render.php:136
4644
  #: app/skins/slider/render.php:167
4645
  msgid "View Detail"
4646
  msgstr "Ver detalle"
4647
 
4648
- #: app/libraries/main.php:4180
4649
  msgid "Event Detail Button"
4650
  msgstr ""
4651
 
4652
- #: app/libraries/main.php:4180 app/skins/countdown/tpl.php:178
4653
  #, fuzzy
4654
  msgid "Event Detail"
4655
  msgstr "Detalle de evento"
4656
 
4657
- #: app/libraries/main.php:4182
4658
  msgid "More Info Link"
4659
  msgstr ""
4660
 
4661
- #: app/libraries/main.php:4185
4662
  msgid "Ticket (Singular)"
4663
  msgstr ""
4664
 
4665
- #: app/libraries/main.php:4186
4666
  msgid "Tickets (Plural)"
4667
  msgstr ""
4668
 
4669
- #: app/libraries/main.php:4252
4670
  msgid "EventON"
4671
  msgstr ""
4672
 
4673
- #: app/libraries/main.php:4253
4674
  msgid "The Events Calendar"
4675
  msgstr ""
4676
 
4677
- #: app/libraries/main.php:4254
4678
  msgid "Events Schedule WP Plugin"
4679
  msgstr ""
4680
 
4681
- #: app/libraries/main.php:4255
4682
  msgid "Calendarize It"
4683
  msgstr ""
4684
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4685
  #: app/libraries/notifications.php:61
4686
  msgid "Please verify your email."
4687
  msgstr "Por favor comprueba tu email"
@@ -4727,13 +4908,13 @@ msgid "Skin controller does not exist."
4727
  msgstr "No existe skin controller."
4728
 
4729
  #: app/libraries/render.php:404 app/modules/local-time/details.php:44
4730
- #: app/modules/next-event/details.php:97 app/skins/single/default.php:72
4731
- #: app/skins/single/default.php:277 app/skins/single/m1.php:34
4732
- #: app/skins/single/modern.php:167
4733
  msgid "All of the day"
4734
  msgstr "Todos del día"
4735
 
4736
- #: app/libraries/skins.php:811
4737
  msgid "Ignore month and years"
4738
  msgstr ""
4739
 
@@ -4766,16 +4947,16 @@ msgstr "Aplicar cupón"
4766
  msgid "Free Booking"
4767
  msgstr ""
4768
 
4769
- #: app/modules/booking/steps/form.php:15
4770
  msgid "Attendees Form"
4771
  msgstr "Asistentes"
4772
 
4773
- #: app/modules/booking/steps/form.php:104
4774
- msgid "Fill other attendees's information like the first form."
4775
  msgstr ""
4776
 
4777
- #: app/modules/booking/steps/form.php:117
4778
- #: app/modules/booking/steps/tickets.php:53 app/skins/countdown/tpl.php:79
4779
  #: app/skins/countdown/tpl.php:123 app/skins/countdown/tpl.php:168
4780
  msgid "Next"
4781
  msgstr "Siguiente"
@@ -4785,16 +4966,16 @@ msgstr "Siguiente"
4785
  msgid "Thanks for your booking."
4786
  msgstr "Gracias por su reserva."
4787
 
4788
- #: app/modules/booking/steps/tickets.php:18
4789
  msgid "Book Event"
4790
  msgstr "Reserva del evento"
4791
 
4792
- #: app/modules/booking/steps/tickets.php:38
4793
  #, php-format
4794
  msgid "Available %s: <span>%s</span>"
4795
  msgstr ""
4796
 
4797
- #: app/modules/booking/steps/tickets.php:41
4798
  #, php-format
4799
  msgid "The %s ticket is sold out. You can try another ticket or another date."
4800
  msgstr ""
@@ -4850,9 +5031,9 @@ msgstr ""
4850
  msgid "Go to occurrence page"
4851
  msgstr ""
4852
 
4853
- #: app/modules/next-event/details.php:91 app/skins/single/default.php:66
4854
- #: app/skins/single/default.php:271 app/skins/single/m1.php:28
4855
- #: app/skins/single/modern.php:161
4856
  msgid "Time"
4857
  msgstr "Horario"
4858
 
@@ -4895,8 +5076,8 @@ msgstr ""
4895
  #: app/skins/agenda/tpl.php:62 app/skins/agenda/tpl.php:66
4896
  #: app/skins/carousel/tpl.php:43 app/skins/grid/tpl.php:52
4897
  #: app/skins/grid/tpl.php:56 app/skins/list/tpl.php:57
4898
- #: app/skins/list/tpl.php:61 app/skins/masonry/tpl.php:48
4899
- #: app/skins/masonry/tpl.php:52 app/skins/slider/tpl.php:41
4900
  msgid "No event found!"
4901
  msgstr "No hay eventos!"
4902
 
@@ -4951,35 +5132,36 @@ msgstr "Eventos %s"
4951
  msgid "No Events"
4952
  msgstr "Sin eventos"
4953
 
4954
- #: app/skins/single.php:209 app/skins/single/default.php:190
4955
- #: app/skins/single/default.php:395 app/skins/single/m1.php:100
4956
  #: app/skins/single/m2.php:32 app/skins/single/modern.php:31
4957
  msgid "Phone"
4958
  msgstr "Teléfono"
4959
 
4960
- #: app/skins/single.php:223 app/skins/single/default.php:204
4961
- #: app/skins/single/default.php:409 app/skins/single/m1.php:114
4962
  #: app/skins/single/m2.php:46 app/skins/single/modern.php:45
4963
  msgid "Website"
4964
  msgstr "Web"
4965
 
4966
  #: app/skins/single.php:260
 
4967
  msgid "Speakers:"
4968
- msgstr ""
4969
 
4970
- #: app/skins/single/default.php:29 app/skins/single/m1.php:233
4971
- #: app/skins/single/m2.php:158 app/skins/single/modern.php:236
4972
  msgid "Sold out!"
4973
  msgstr ""
4974
 
4975
- #: app/skins/single/default.php:39 app/skins/single/m1.php:242
4976
- #: app/skins/single/m2.php:167 app/skins/single/modern.php:246
4977
  msgid "Tags: "
4978
  msgstr "Tags:"
4979
 
4980
- #: app/skins/single/default.php:105 app/skins/single/default.php:310
4981
- #: app/skins/single/m1.php:189 app/skins/single/m2.php:121
4982
- #: app/skins/single/modern.php:119
4983
  #, fuzzy
4984
  msgid "Read More"
4985
  msgstr "Cargar más"
@@ -5027,9 +5209,8 @@ msgstr "Etiqueta de evento"
5027
 
5028
  #: app/widgets/single.php:127
5029
  #, fuzzy
5030
- #| msgid "Event Labels"
5031
  msgid "Event Speakers"
5032
- msgstr "Etiqueta de evento"
5033
 
5034
  #: app/widgets/single.php:135
5035
  #, fuzzy
@@ -5040,7 +5221,7 @@ msgstr "Asistentes"
5040
  #: app/widgets/single.php:139
5041
  #, fuzzy
5042
  #| msgid "Next/Previous Buttons"
5043
- msgid "Next Pervious Module"
5044
  msgstr "Botones Siguiente/Anterior"
5045
 
5046
  #: app/widgets/single.php:143
@@ -5061,7 +5242,7 @@ msgid "Modern Events Calendar Lite"
5061
  msgstr "Calendario moderno"
5062
 
5063
  #. Plugin URI of the plugin/theme
5064
- msgid "http://webnus.net/plugins/modern-events-calendar/"
5065
  msgstr ""
5066
 
5067
  #. Description of the plugin/theme
@@ -5076,17 +5257,9 @@ msgstr ""
5076
  msgid "http://webnus.net"
5077
  msgstr ""
5078
 
5079
- #, fuzzy
5080
- #~| msgid "Modern Events Calendar"
5081
- #~ msgid "modern-events-calendar-lite"
5082
- #~ msgstr "Calendario moderno"
5083
-
5084
  #~ msgid "Add Booking"
5085
  #~ msgstr "Nueva reserva"
5086
 
5087
- #~ msgid "No bookings found!"
5088
- #~ msgstr "No hay reservas"
5089
-
5090
  #~ msgid "Edit Bookings"
5091
  #~ msgstr "Editar reserva"
5092
 
@@ -5099,21 +5272,9 @@ msgstr ""
5099
  #~ msgid "Confirmation"
5100
  #~ msgstr "Confirmar"
5101
 
5102
- #~ msgid "Pending"
5103
- #~ msgstr "Pendiente"
5104
-
5105
- #~ msgid "Confirmed"
5106
- #~ msgstr "Confirmado"
5107
-
5108
- #~ msgid "Rejected"
5109
- #~ msgstr "Rechazado"
5110
-
5111
  #~ msgid "Verification"
5112
  #~ msgstr "Verificar"
5113
 
5114
- #~ msgid "Waiting"
5115
- #~ msgstr "Esperando"
5116
-
5117
  #~ msgid "Payment"
5118
  #~ msgstr "Pago"
5119
 
@@ -5181,6 +5342,9 @@ msgstr ""
5181
  #~ msgid "Usage Limit"
5182
  #~ msgstr "Límite de uso"
5183
 
 
 
 
5184
  #~ msgid "Expiration Date"
5185
  #~ msgstr "Día de expiración"
5186
 
@@ -5196,6 +5360,9 @@ msgstr ""
5196
  #~ msgid "Coupon is valid and you get %s discount."
5197
  #~ msgstr "El cupón es correcto y se aplica un %s de descuento."
5198
 
 
 
 
5199
  #~ msgid "There is no attendee for booking!"
5200
  #~ msgstr "No hay sistema de booking!"
5201
 
@@ -5281,6 +5448,9 @@ msgstr ""
5281
  #~ msgid "Payment is invalid."
5282
  #~ msgstr "El pago no es válido."
5283
 
 
 
 
5284
  #~ msgid "Attendee"
5285
  #~ msgstr "Asistente"
5286
 
@@ -5549,9 +5719,6 @@ msgstr ""
5549
  #~ msgid "Text Field"
5550
  #~ msgstr "Campo de texto"
5551
 
5552
- #~ msgid " Events"
5553
- #~ msgstr "Eventos"
5554
-
5555
  #~ msgid " Calender"
5556
  #~ msgstr "Calendario"
5557
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
+ "POT-Creation-Date: 2019-01-23 12:02+0330\n"
5
+ "PO-Revision-Date: 2019-01-23 12:02+0330\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: es_ES\n"
12
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
13
  "X-Generator: Poedit 2.0.1\n"
14
  "X-Poedit-Basepath: ..\n"
15
+ "X-Poedit-WPHeader: mec.php\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
18
  "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
 
23
+ #: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:24
24
+ #: app/features/ix/import.php:37 app/features/ix/thirdparty.php:24
25
+ #: app/features/mec/dashboard.php:61 app/widgets/MEC.php:33
26
  msgid "Modern Events Calendar"
27
  msgstr "Calendario moderno"
28
 
58
  msgid "Select Type"
59
  msgstr "Selección"
60
 
61
+ #: app/features/colors.php:50 app/features/fes/form.php:558
62
+ #: app/features/mec/settings.php:890
63
  msgid "Event Color"
64
  msgstr "Color del evento"
65
 
66
  #: app/features/contextual.php:55 app/features/mec.php:210
67
  #: app/features/mec/gateways.php:20 app/features/mec/messages.php:20
68
  #: app/features/mec/notifications.php:19 app/features/mec/regform.php:19
69
+ #: app/features/mec/settings.php:35 app/features/mec/settings.php:269
70
  #: app/features/mec/styles.php:20 app/features/mec/styling.php:46
71
  #: app/features/mec/support.php:18
72
  msgid "Settings"
73
  msgstr "Ajustes"
74
 
75
+ #: app/features/contextual.php:62 app/features/events.php:1214
76
  #: app/features/mec/gateways.php:29 app/features/mec/messages.php:29
77
  #: app/features/mec/notifications.php:28 app/features/mec/regform.php:28
78
+ #: app/features/mec/regform.php:88 app/features/mec/settings.php:204
79
  #: app/features/mec/styles.php:29 app/features/mec/styling.php:55
80
  #: app/features/mec/support.php:27
81
  #, fuzzy
94
  #: app/features/contextual.php:70 app/features/mec/gateways.php:36
95
  #: app/features/mec/gateways.php:90 app/features/mec/messages.php:36
96
  #: app/features/mec/notifications.php:35 app/features/mec/regform.php:35
97
+ #: app/features/mec/settings.php:211 app/features/mec/styles.php:36
98
  #: app/features/mec/styling.php:62 app/features/mec/support.php:34
99
  msgid "Payment Gateways"
100
  msgstr "Entradas de pago"
109
  #: app/features/contextual.php:77 app/features/mec/gateways.php:45
110
  #: app/features/mec/messages.php:45 app/features/mec/notifications.php:44
111
  #: app/features/mec/notifications.php:89 app/features/mec/regform.php:43
112
+ #: app/features/mec/settings.php:221 app/features/mec/styles.php:45
113
  #: app/features/mec/styling.php:71 app/features/mec/support.php:43
114
  msgid "Notifications"
115
  msgstr "Notificaciones"
125
  #: app/features/contextual.php:88 app/features/ix/export.php:10
126
  #: app/features/ix/export_g_calendar.php:14 app/features/ix/import.php:10
127
  #: app/features/ix/import_f_calendar.php:10
128
+ #: app/features/ix/import_g_calendar.php:10
129
+ #: app/features/ix/import_meetup.php:10 app/features/ix/sync.php:10
130
  #: app/features/ix/thirdparty.php:10
131
  msgid "Google Cal. Import"
132
  msgstr ""
142
  #: app/features/contextual.php:95 app/features/ix/export.php:11
143
  #: app/features/ix/export_g_calendar.php:15 app/features/ix/import.php:11
144
  #: app/features/ix/import_f_calendar.php:11
145
+ #: app/features/ix/import_g_calendar.php:11
146
+ #: app/features/ix/import_meetup.php:11 app/features/ix/sync.php:11
147
  #: app/features/ix/thirdparty.php:11
148
  msgid "Google Cal. Export"
149
  msgstr ""
159
  #: app/features/contextual.php:102 app/features/ix/export.php:12
160
  #: app/features/ix/export_g_calendar.php:16 app/features/ix/import.php:12
161
  #: app/features/ix/import_f_calendar.php:12
162
+ #: app/features/ix/import_g_calendar.php:12
163
+ #: app/features/ix/import_meetup.php:12 app/features/ix/sync.php:12
164
  #: app/features/ix/thirdparty.php:12
165
  msgid "Facebook Cal. Import"
166
  msgstr ""
174
  msgstr ""
175
 
176
  #: app/features/contextual.php:117 app/features/mec/settings.php:42
177
+ #: app/features/mec/settings.php:271
178
  msgid "General Options"
179
  msgstr "Opciones generales"
180
 
181
  #: app/features/contextual.php:139 app/features/mec/settings.php:54
182
+ #: app/features/mec/settings.php:423
183
  msgid "Slugs/Permalinks"
184
  msgstr ""
185
 
186
  #: app/features/contextual.php:152 app/features/mec/settings.php:60
187
+ #: app/features/mec/settings.php:443
188
  msgid "Event Details/Single Event Page"
189
  msgstr ""
190
 
191
  #: app/features/contextual.php:166 app/features/mec/settings.php:66
192
+ #: app/features/mec/settings.php:484
193
  msgid "Currency Options"
194
  msgstr "Opciones de moneda"
195
 
196
  #: app/features/contextual.php:182 app/features/mec/settings.php:78
197
+ #: app/features/mec/settings.php:551
198
  msgid "Google Maps Options"
199
  msgstr "Opciones de Google Maps"
200
 
201
  #: app/features/contextual.php:244 app/features/mec/settings.php:84
202
+ #: app/features/mec/settings.php:625
203
  #, fuzzy
204
  msgid "Google Recaptcha Options"
205
  msgstr "Opciones de Google Maps"
206
 
207
  #: app/features/contextual.php:258 app/features/mec/settings.php:114
208
+ #: app/features/mec/settings.php:743
209
  msgid "Countdown Options"
210
  msgstr "Opciones de cuenta atrás"
211
 
212
  #: app/features/contextual.php:268 app/features/mec/settings.php:120
213
+ #: app/features/mec/settings.php:764
214
  msgid "Social Networks"
215
  msgstr "Redes Sociales"
216
 
217
  #: app/features/contextual.php:278 app/features/mec/settings.php:126
218
+ #: app/features/mec/settings.php:789
219
  msgid "Next Event Module"
220
  msgstr ""
221
 
222
  #: app/features/contextual.php:286 app/features/mec/settings.php:132
223
+ #: app/features/mec/settings.php:817
224
  msgid "Frontend Event Submission"
225
  msgstr ""
226
 
227
  #: app/features/contextual.php:298 app/features/events.php:580
228
+ #: app/features/mec/settings.php:144
229
  #, fuzzy
230
  msgid "Exceptional Days"
231
  msgstr "Día de expiración"
232
 
233
  #: app/features/contextual.php:308 app/features/events.php:263
234
+ #: app/features/mec/settings.php:156 app/features/mec/settings.php:991
235
  msgid "Booking"
236
  msgstr "Reserva"
237
 
238
+ #: app/features/contextual.php:318 app/features/mec/settings.php:162
239
+ #: app/features/mec/settings.php:1081
240
  msgid "Coupons"
241
  msgstr "Cupones"
242
 
243
+ #: app/features/contextual.php:326 app/features/mec/settings.php:180
244
+ #: app/features/mec/settings.php:1222
245
  msgid "BuddyPress Integration"
246
  msgstr ""
247
 
248
+ #: app/features/contextual.php:334 app/features/mec/settings.php:186
249
+ #: app/features/mec/settings.php:1252
250
  msgid "Mailchimp Integration"
251
  msgstr ""
252
 
253
+ #: app/features/contextual.php:346 app/features/mec/settings.php:192
254
+ #: app/features/mec/settings.php:1288
255
  #, fuzzy
256
  msgid "MEC Activation"
257
  msgstr "Lugar"
258
 
259
+ #: app/features/events.php:132 app/features/ix/export.php:34
260
  #: app/features/mec/dashboard.php:92 app/skins/daily_view/tpl.php:79
261
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
262
  msgid "Events"
266
  #: app/features/mec/meta_boxes/display_options.php:708
267
  #: app/features/mec/meta_boxes/display_options.php:746
268
  #: app/features/mec/meta_boxes/display_options.php:775
269
+ #: app/features/profile/profile.php:28 app/skins/daily_view/tpl.php:80
270
+ #: app/skins/monthly_view/tpl.php:71 app/skins/yearly_view/tpl.php:69
271
  msgid "Event"
272
  msgstr "Evento"
273
 
279
  msgid "Add New Event"
280
  msgstr "Añadir nuevo evento"
281
 
282
+ #: app/features/events.php:136 app/features/ix.php:3175
283
+ #: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:54
284
  msgid "No events found!"
285
  msgstr "No hay eventos"
286
 
311
  #: app/features/mec/meta_boxes/search_form.php:292
312
  #: app/features/mec/meta_boxes/search_form.php:332
313
  #: app/features/mec/meta_boxes/search_form.php:379
314
+ #: app/features/mec/meta_boxes/search_form.php:426 app/libraries/main.php:4167
315
+ #: app/libraries/skins.php:710 app/skins/single/default.php:156
316
+ #: app/skins/single/default.php:363 app/skins/single/m1.php:169
317
+ #: app/skins/single/m2.php:101 app/skins/single/modern.php:98
318
  msgid "Category"
319
  msgstr "Categoría"
320
 
321
+ #: app/features/events.php:153 app/features/fes/form.php:510
322
  #: app/features/mec.php:198 app/features/mec/meta_boxes/filter.php:70
323
+ #: app/libraries/main.php:4166
324
  msgid "Categories"
325
  msgstr "Categorías"
326
 
392
  msgid "Event Details"
393
  msgstr "Detalle de evento"
394
 
395
+ #: app/features/events.php:296 app/features/events.php:1966
396
+ #: app/features/events.php:2010 app/features/fes/form.php:471
397
+ #: app/features/ix.php:2719 app/features/ix.php:2760
398
+ #: app/features/mec/settings.php:866 app/libraries/main.php:4199
399
  #: app/widgets/single.php:103
400
  msgid "Event Cost"
401
  msgstr "Coste del evento"
402
 
403
+ #: app/features/events.php:299 app/features/fes/form.php:474
404
+ #: app/libraries/main.php:4200 app/skins/single/default.php:91
405
+ #: app/skins/single/default.php:298 app/skins/single/m1.php:49
406
+ #: app/skins/single/modern.php:184
407
  msgid "Cost"
408
  msgstr "Coste"
409
 
415
  msgid "Guest Data"
416
  msgstr ""
417
 
418
+ #: app/features/events.php:380 app/features/fes/form.php:433
419
  #: app/features/labels.php:177 app/features/organizers.php:268
420
+ #: app/features/profile/profile.php:90 app/libraries/notifications.php:554
421
+ #: app/modules/booking/steps/form.php:27 app/modules/booking/steps/form.php:28
422
  msgid "Name"
423
  msgstr "Nombre"
424
 
425
+ #: app/features/events.php:381 app/features/events.php:1249
426
+ #: app/features/fes/form.php:429 app/features/mec/regform.php:118
427
  #: app/features/organizers.php:110 app/features/organizers.php:150
428
+ #: app/features/profile/profile.php:93 app/features/speakers.php:119
429
+ #: app/features/speakers.php:179 app/libraries/main.php:1069
430
+ #: app/libraries/main.php:1134 app/libraries/main.php:2077
431
+ #: app/libraries/notifications.php:555 app/modules/booking/steps/form.php:31
432
+ #: app/modules/booking/steps/form.php:32 app/skins/single.php:216
433
+ #: app/skins/single/default.php:198 app/skins/single/default.php:405
434
+ #: app/skins/single/m1.php:107 app/skins/single/m2.php:39
435
+ #: app/skins/single/modern.php:38
436
  msgid "Email"
437
  msgstr "Email"
438
 
439
+ #: app/features/events.php:385 app/features/fes/form.php:223
440
  msgid "Date and Time"
441
  msgstr "Día y hora"
442
 
443
  #: app/features/events.php:389 app/features/events.php:393
444
+ #: app/features/events.php:1787 app/features/events.php:1966
445
+ #: app/features/events.php:2010 app/features/fes/form.php:227
446
+ #: app/features/fes/form.php:231 app/features/ix.php:2719
447
+ #: app/features/ix.php:2760 app/features/ix/import_g_calendar.php:38
448
  #: app/features/mec/dashboard.php:269
449
  #: app/features/mec/meta_boxes/display_options.php:42
450
  #: app/features/mec/meta_boxes/display_options.php:139
463
  msgstr "Día de inicio"
464
 
465
  #: app/features/events.php:421 app/features/events.php:461
466
+ #: app/features/events.php:866 app/features/events.php:884
467
+ #: app/features/events.php:969 app/features/events.php:987
468
+ #: app/features/fes/form.php:259 app/features/fes/form.php:299
469
  msgid "AM"
470
  msgstr "AM"
471
 
472
  #: app/features/events.php:422 app/features/events.php:462
473
+ #: app/features/events.php:867 app/features/events.php:885
474
+ #: app/features/events.php:970 app/features/events.php:988
475
+ #: app/features/fes/form.php:260 app/features/fes/form.php:300
476
  msgid "PM"
477
  msgstr "PM"
478
 
479
  #: app/features/events.php:429 app/features/events.php:433
480
+ #: app/features/events.php:1788 app/features/events.php:1966
481
+ #: app/features/events.php:2010 app/features/fes/form.php:267
482
+ #: app/features/fes/form.php:271 app/features/ix.php:2719
483
+ #: app/features/ix.php:2760 app/features/ix/import_g_calendar.php:44
484
  #: app/features/mec/dashboard.php:270
485
  msgid "End Date"
486
  msgstr "Día final"
487
 
488
+ #: app/features/events.php:468 app/features/fes/form.php:306
489
  msgid "All Day Event"
490
  msgstr "Todos los eventos de hoy"
491
 
492
+ #: app/features/events.php:471 app/features/fes/form.php:309
493
  msgid "Hide Event Time"
494
  msgstr "Ocultar hora del evento"
495
 
496
+ #: app/features/events.php:474 app/features/fes/form.php:312
497
  #, fuzzy
498
  msgid "Hide Event End Time"
499
  msgstr "Ocultar hora del evento"
500
 
501
+ #: app/features/events.php:478 app/features/fes/form.php:316
502
  msgid "Time Comment"
503
  msgstr "Tiempo para comentar"
504
 
505
+ #: app/features/events.php:479 app/features/fes/form.php:317
506
  msgid ""
507
  "It shows next to event time on calendar. You can insert Timezone etc. in "
508
  "this field."
510
  "Se muestra al lado de la hora del evento en el calendario. Puede insertar "
511
  "Zona horaria, etc. en este campo."
512
 
513
+ #: app/features/events.php:485 app/features/fes/form.php:323
514
  msgid "Event Repeating"
515
  msgstr "Repetir el evento"
516
 
517
+ #: app/features/events.php:489 app/features/fes/form.php:327
518
  msgid "Repeats"
519
  msgstr "Repeticiones"
520
 
521
+ #: app/features/events.php:491 app/features/fes/form.php:329
522
  #: app/features/mec/dashboard.php:272 app/skins/full_calendar/tpl.php:68
523
  msgid "Daily"
524
  msgstr "Diariamente"
525
 
526
+ #: app/features/events.php:492 app/features/fes/form.php:330
527
  msgid "Every Weekday"
528
  msgstr "Cada día de la semana"
529
 
530
+ #: app/features/events.php:493 app/features/fes/form.php:331
531
  msgid "Every Weekend"
532
  msgstr "Cada fin de semana"
533
 
534
+ #: app/features/events.php:494 app/features/fes/form.php:332
535
  #, fuzzy
536
  msgid "Certain Weekdays"
537
  msgstr "Cada día de la semana"
538
 
539
+ #: app/features/events.php:495 app/features/fes/form.php:333
540
  #: app/skins/full_calendar/tpl.php:67
541
  msgid "Weekly"
542
  msgstr "Semanal"
543
 
544
+ #: app/features/events.php:496 app/features/fes/form.php:334
545
  #: app/features/mec/dashboard.php:273 app/skins/full_calendar/tpl.php:66
546
  msgid "Monthly"
547
  msgstr "Mensual"
548
 
549
+ #: app/features/events.php:497 app/features/fes/form.php:335
550
  #: app/features/mec/dashboard.php:274 app/skins/full_calendar/tpl.php:65
551
  msgid "Yearly"
552
  msgstr "Anual"
553
 
554
+ #: app/features/events.php:498 app/features/fes/form.php:336
555
  #, fuzzy
556
  msgid "Custom Days"
557
  msgstr "Custom Css"
558
 
559
+ #: app/features/events.php:502 app/features/fes/form.php:340
560
  msgid "Repeat Interval"
561
  msgstr "Intervalo de repetición"
562
 
563
+ #: app/features/events.php:503 app/features/fes/form.php:341
564
  msgid "Repeat interval"
565
  msgstr "Intervalo de repetición"
566
 
567
+ #: app/features/events.php:506 app/features/fes/form.php:344
568
  #, fuzzy
569
  msgid "Week Days"
570
  msgstr "Semana %s"
571
 
572
+ #: app/features/events.php:507 app/features/fes/form.php:345
573
+ #: app/libraries/main.php:403
574
  msgid "Monday"
575
  msgstr ""
576
 
577
+ #: app/features/events.php:508 app/features/fes/form.php:346
578
+ #: app/libraries/main.php:403
579
  msgid "Tuesday"
580
  msgstr ""
581
 
582
+ #: app/features/events.php:509 app/features/fes/form.php:347
583
+ #: app/libraries/main.php:403
584
  msgid "Wednesday"
585
  msgstr ""
586
 
587
+ #: app/features/events.php:510 app/features/fes/form.php:348
588
+ #: app/libraries/main.php:403
589
  msgid "Thursday"
590
  msgstr ""
591
 
592
+ #: app/features/events.php:511 app/features/fes/form.php:349
593
+ #: app/libraries/main.php:403
594
  msgid "Friday"
595
  msgstr ""
596
 
597
+ #: app/features/events.php:512 app/features/fes/form.php:350
598
+ #: app/libraries/main.php:403
599
  msgid "Saturday"
600
  msgstr ""
601
 
602
+ #: app/features/events.php:513 app/features/fes/form.php:351
603
+ #: app/libraries/main.php:403
604
  msgid "Sunday"
605
  msgstr ""
606
 
607
  #: app/features/events.php:518 app/features/events.php:590
608
+ #: app/features/fes/form.php:356 app/features/profile/profile.php:31
609
+ #: app/libraries/main.php:1592 app/modules/booking/steps/tickets.php:22
610
+ #: app/modules/next-event/details.php:86 app/skins/single/default.php:55
611
+ #: app/skins/single/default.php:262 app/skins/single/m1.php:16
612
+ #: app/skins/single/modern.php:151
613
  msgid "Date"
614
  msgstr "Fecha"
615
 
616
  #: app/features/events.php:519 app/features/events.php:591
617
+ #: app/features/events.php:667 app/features/events.php:722
618
+ #: app/features/events.php:843 app/features/events.php:914
619
+ #: app/features/events.php:1017 app/features/events.php:1068
620
+ #: app/features/events.php:1149 app/features/fes/form.php:357
621
  msgid "Add"
622
  msgstr "Añadir"
623
 
624
+ #: app/features/events.php:520 app/features/fes/form.php:358
625
  msgid "Add certain days to event occurrence dates."
626
  msgstr ""
627
 
628
+ #: app/features/events.php:542 app/features/fes/form.php:380
629
  msgid "Ends Repeat"
630
  msgstr "Repetir finalización"
631
 
632
+ #: app/features/events.php:546 app/features/fes/form.php:384
633
  msgid "Never"
634
  msgstr "Nunca"
635
 
636
+ #: app/features/events.php:551 app/features/fes/form.php:389
637
  msgid "On"
638
  msgstr "On"
639
 
640
+ #: app/features/events.php:558 app/features/fes/form.php:396
641
  msgid "After"
642
  msgstr "Después"
643
 
644
+ #: app/features/events.php:560 app/features/fes/form.php:398
645
  msgid "Occurrences times"
646
  msgstr "Tiempo del evento"
647
 
648
+ #: app/features/events.php:561 app/features/fes/form.php:399
649
  msgid ""
650
  "The event will finish after certain repeats. For example if you set it to "
651
  "10, the event will finish after 10 repeats."
666
  msgid "Day 1"
667
  msgstr ""
668
 
669
+ #: app/features/events.php:649 app/features/mec/settings.php:920
670
  #: app/skins/single.php:246
671
  msgid "Hourly Schedule"
672
  msgstr "Programación horaria"
681
  "can add a different schedule for each day!"
682
  msgstr ""
683
 
684
+ #: app/features/events.php:659
685
  #, php-format
686
  msgid "Day %s"
687
  msgstr ""
688
 
689
+ #: app/features/events.php:662 app/features/events.php:675
690
+ #: app/features/events.php:695 app/features/events.php:717
691
+ #: app/features/events.php:733 app/features/events.php:1155
692
+ #: app/features/events.php:1177 app/features/events.php:1784
693
+ #: app/features/events.php:1966 app/features/events.php:2010
694
+ #: app/features/fes/form.php:216 app/features/ix.php:2719
695
+ #: app/features/ix.php:2760 app/features/mec/settings.php:1182
696
+ #: app/features/mec/settings.php:1202
697
  msgid "Title"
698
  msgstr "Titulo"
699
 
700
+ #: app/features/events.php:664 app/features/events.php:677
701
+ #: app/features/events.php:697 app/features/events.php:719
702
+ #: app/features/events.php:735 app/features/events.php:909
703
+ #: app/features/events.php:925 app/features/events.php:939
704
+ #: app/features/events.php:1012 app/features/events.php:1029
705
+ #: app/features/events.php:1088 app/features/events.php:1113
706
+ #: app/features/events.php:1166 app/features/events.php:1188
707
+ #: app/features/fes/list.php:72 app/features/mec/settings.php:1131
708
+ #: app/features/mec/settings.php:1154 app/features/mec/settings.php:1193
709
+ #: app/features/mec/settings.php:1213 app/libraries/main.php:2056
710
+ #: app/libraries/main.php:2085 app/libraries/main.php:2114
711
+ #: app/libraries/main.php:2143 app/libraries/main.php:2165
712
+ #: app/libraries/main.php:2196 app/libraries/main.php:2240
713
+ #: app/libraries/main.php:2284 app/libraries/main.php:2331
714
+ #: app/libraries/main.php:2369
715
+ msgid "Remove"
716
+ msgstr "Eliminar"
717
+
718
+ #: app/features/events.php:668 app/features/events.php:723
719
  msgid "Add new hourly schedule row"
720
  msgstr "Añadir nueva línea programa horario"
721
 
722
+ #: app/features/events.php:673 app/features/events.php:693
723
+ #: app/features/events.php:731
724
  msgid "From e.g. 8:15"
725
  msgstr "Desde 8:15"
726
 
727
+ #: app/features/events.php:674 app/features/events.php:694
728
+ #: app/features/events.php:732
729
  msgid "To e.g. 8:45"
730
  msgstr "a 8:45"
731
 
732
+ #: app/features/events.php:676 app/features/events.php:696
733
+ #: app/features/events.php:734 app/features/events.php:890
734
+ #: app/features/events.php:993
735
  msgid "Description"
736
  msgstr "Descripción"
737
 
738
+ #: app/features/events.php:680 app/features/events.php:700
739
+ #: app/features/events.php:738 app/features/fes/form.php:603
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
740
  #: app/features/mec.php:206 app/features/mec/settings.php:72
741
+ #: app/features/mec/settings.php:914 app/features/speakers.php:57
742
+ #: app/libraries/main.php:4174 app/modules/speakers/details.php:18
743
  msgid "Speakers"
744
  msgstr ""
745
 
746
+ #: app/features/events.php:714 app/features/events.php:718
747
  msgid "Day :dd:"
748
  msgstr ""
749
 
750
+ #: app/features/events.php:765 app/features/fes/form.php:448
751
+ #: app/features/mec/settings.php:860
752
  #, fuzzy
753
  msgid "Event Links"
754
  msgstr "Lugar del evento"
755
 
756
+ #: app/features/events.php:767 app/features/fes/form.php:450
757
+ #: app/libraries/main.php:4197
758
  #, fuzzy
759
  msgid "Event Link"
760
  msgstr "Lugar del evento"
761
 
762
+ #: app/features/events.php:768 app/features/events.php:773
763
+ #: app/features/fes/form.php:451 app/features/fes/form.php:456
764
  msgid "eg. http://yoursite.com/your-event"
765
  msgstr "ej. http://yoursite.com/tu-evento"
766
 
767
+ #: app/features/events.php:769 app/features/fes/form.php:452
768
  #, fuzzy
769
  msgid ""
770
  "If you fill it, it will be replaced instead of default event page link. "
771
  "Insert full link including http(s)://"
772
  msgstr "Insertar vínculo completo incluyendo http(s)://"
773
 
774
+ #: app/features/events.php:772 app/features/fes/form.php:455
775
+ #: app/libraries/main.php:4198 app/skins/single/default.php:105
776
+ #: app/skins/single/default.php:312 app/skins/single/m1.php:190
777
+ #: app/skins/single/m2.php:123 app/skins/single/modern.php:120
778
  #: app/widgets/single.php:107
779
  msgid "More Info"
780
  msgstr ""
781
 
782
+ #: app/features/events.php:774 app/features/fes/form.php:457
783
  #, fuzzy
784
  msgid "More Information"
785
  msgstr "Confirmar"
786
 
787
+ #: app/features/events.php:776 app/features/fes/form.php:459
788
  msgid "Current Window"
789
  msgstr ""
790
 
791
+ #: app/features/events.php:777 app/features/fes/form.php:460
792
  msgid "New Window"
793
  msgstr ""
794
 
795
+ #: app/features/events.php:779 app/features/fes/form.php:462
796
  #, fuzzy
797
  msgid ""
798
  "If you fill it, it will be shown in event details page as an optional link. "
799
  "Insert full link including http(s)://"
800
  msgstr "Insertar vínculo completo incluyendo http(s)://"
801
 
802
+ #: app/features/events.php:810
803
  msgid "Total booking limits"
804
  msgstr "Límite total de booking"
805
 
806
+ #: app/features/events.php:815 app/features/events.php:907
807
+ #: app/features/events.php:1010 app/modules/booking/default.php:81
808
+ #: app/modules/booking/steps/tickets.php:40 app/skins/available_spot/tpl.php:99
809
  msgid "Unlimited"
810
  msgstr "Ilimitado"
811
 
812
+ #: app/features/events.php:817
813
  msgid "100"
814
  msgstr "100"
815
 
816
+ #: app/features/events.php:835 app/libraries/book.php:60
817
+ #: app/libraries/main.php:4202 app/modules/booking/steps/tickets.php:40
818
  msgid "Tickets"
819
  msgstr "Tickets"
820
 
821
+ #: app/features/events.php:838
822
  msgid ""
823
  "You're translating an event so MEC will use the original event for tickets "
824
  "and booking. You can only translate the ticket name and description. Please "
825
  "define exact tickets that you defined in the original event here."
826
  msgstr ""
827
 
828
+ #: app/features/events.php:849 app/features/events.php:952
829
  msgid "Ticket Name"
830
  msgstr "Nombre del ticket"
831
 
832
+ #: app/features/events.php:853 app/features/events.php:956
833
+ #: app/features/events.php:1966 app/features/events.php:2010
834
+ #: app/features/ix.php:2719 app/features/ix.php:2760
835
  msgid "Start Time"
836
  msgstr ""
837
 
838
+ #: app/features/events.php:871 app/features/events.php:974
839
+ #: app/features/events.php:1966 app/features/events.php:2010
840
+ #: app/features/ix.php:2719 app/features/ix.php:2760
841
  msgid "End Time"
842
  msgstr ""
843
 
844
+ #: app/features/events.php:894 app/features/events.php:923
845
+ #: app/features/events.php:937 app/features/events.php:997
846
+ #: app/features/events.php:1027 app/features/events.php:1159
847
+ #: app/features/events.php:1181 app/features/mec/settings.php:1186
848
+ #: app/features/mec/settings.php:1206
849
  msgid "Price"
850
  msgstr "Precio"
851
 
852
+ #: app/features/events.php:895 app/features/events.php:998
853
  msgid "Insert 0 for free ticket. Only numbers please."
854
  msgstr "Introduzca un 0 para ticket gratuito. Usar únicamente números."
855
 
856
+ #: app/features/events.php:898 app/features/events.php:1001
857
  msgid "Price Label"
858
  msgstr "Etiqueta de precio"
859
 
860
+ #: app/features/events.php:899 app/features/events.php:1002
861
  msgid "For showing on website. e.g. $15"
862
  msgstr "Para mostrar en la web. Ej. 15€"
863
 
864
+ #: app/features/events.php:903 app/features/events.php:1006
865
  msgid "Available Tickets"
866
  msgstr "Tickets disponibles"
867
 
868
+ #: app/features/events.php:913 app/features/events.php:1016
869
+ #, fuzzy
870
+ #| msgid "Price Label"
871
+ msgid "Price per Date"
872
+ msgstr "Etiqueta de precio"
873
+
874
+ #: app/features/events.php:921 app/features/events.php:935
875
+ #: app/features/events.php:1025 app/features/ix/import_f_calendar.php:36
876
+ #: app/features/ix/import_g_calendar.php:51
877
+ #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
878
+ msgid "Start"
879
+ msgstr ""
880
+
881
+ #: app/features/events.php:922 app/features/events.php:936
882
+ #: app/features/events.php:1026
883
+ msgid "End"
884
+ msgstr ""
885
+
886
+ #: app/features/events.php:924 app/features/events.php:938
887
+ #: app/features/events.php:1028 app/features/labels.php:60
888
+ #: app/features/mec/meta_boxes/display_options.php:658
889
+ #: app/features/mec/meta_boxes/search_form.php:52
890
+ #: app/features/mec/meta_boxes/search_form.php:99
891
+ #: app/features/mec/meta_boxes/search_form.php:146
892
+ #: app/features/mec/meta_boxes/search_form.php:219
893
+ #: app/features/mec/meta_boxes/search_form.php:266
894
+ #: app/features/mec/meta_boxes/search_form.php:313
895
+ #: app/features/mec/meta_boxes/search_form.php:353
896
+ #: app/features/mec/meta_boxes/search_form.php:400
897
+ #: app/features/mec/meta_boxes/search_form.php:447 app/libraries/skins.php:788
898
+ msgid "Label"
899
+ msgstr "Etiqueta"
900
+
901
+ #: app/features/events.php:1058
902
  msgid "Fees"
903
  msgstr "Tasas"
904
 
905
+ #: app/features/events.php:1063 app/features/events.php:1144
906
+ #: app/features/events.php:1219
907
  msgid "Inherit from global options"
908
  msgstr "Heredar opciones globales"
909
 
910
+ #: app/features/events.php:1074 app/features/events.php:1099
911
+ #: app/features/mec/settings.php:1117 app/features/mec/settings.php:1140
912
  msgid "Fee Title"
913
  msgstr "Tarifa título"
914
 
915
+ #: app/features/events.php:1078 app/features/events.php:1103
916
+ #: app/features/mec/settings.php:1121 app/features/mec/settings.php:1144
917
  msgid "Amount"
918
  msgstr "Cantidad"
919
 
920
+ #: app/features/events.php:1079 app/features/events.php:1104
921
+ #: app/features/mec/settings.php:1122 app/features/mec/settings.php:1145
922
  msgid ""
923
  "Fee amount, considered as fixed amount if you set the type to amount "
924
  "otherwise considered as percentage"
926
  "Importe de la cuota, considerado como cantidad fija si se establece el tipo "
927
  "de cantidad considerada de otra manera como porcentaje."
928
 
929
+ #: app/features/events.php:1083 app/features/events.php:1108
930
+ #: app/features/mec/settings.php:1126 app/features/mec/settings.php:1149
931
  msgid "Percent"
932
  msgstr "Porcentaje"
933
 
934
+ #: app/features/events.php:1084 app/features/events.php:1109
935
+ #: app/features/mec/settings.php:1127 app/features/mec/settings.php:1150
936
  msgid "Amount (Per Ticket)"
937
  msgstr ""
938
 
939
+ #: app/features/events.php:1085 app/features/events.php:1110
940
+ #: app/features/mec/settings.php:1128 app/features/mec/settings.php:1151
941
  msgid "Amount (Per Booking)"
942
  msgstr ""
943
 
944
+ #: app/features/events.php:1139 app/features/mec/settings.php:938
945
  msgid "Ticket Variations / Options"
946
  msgstr ""
947
 
948
+ #: app/features/events.php:1160 app/features/events.php:1182
949
+ #: app/features/mec/settings.php:1187 app/features/mec/settings.php:1207
950
  #, fuzzy
951
  #| msgid "Option"
952
  msgid "Option Price"
953
  msgstr "Opción"
954
 
955
+ #: app/features/events.php:1163 app/features/events.php:1185
956
+ #: app/features/mec/settings.php:1190 app/features/mec/settings.php:1210
957
  #, fuzzy
958
  #| msgid "Maximum events"
959
  msgid "Maximum Per Ticket"
960
  msgstr "Máximo de eventos"
961
 
962
+ #: app/features/events.php:1164 app/features/events.php:1186
963
+ #: app/features/mec/settings.php:1191 app/features/mec/settings.php:1211
964
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
965
  msgstr ""
966
 
967
+ #: app/features/events.php:1248 app/features/mec/regform.php:117
968
+ #: app/libraries/main.php:2048
969
  msgid "Text"
970
  msgstr "Texto"
971
 
972
+ #: app/features/events.php:1250 app/features/mec/regform.php:119
973
  #: app/features/organizers.php:102 app/features/organizers.php:146
974
  #: app/features/speakers.php:111 app/features/speakers.php:175
975
+ #: app/features/speakers.php:244 app/libraries/main.php:2106
976
  msgid "Tel"
977
  msgstr "Tel"
978
 
979
+ #: app/features/events.php:1251 app/features/mec/regform.php:120
980
+ #: app/libraries/main.php:2135
981
  msgid "Textarea"
982
  msgstr "Área de texto"
983
 
984
+ #: app/features/events.php:1252 app/features/mec/regform.php:121
985
+ #: app/libraries/main.php:2188
986
  msgid "Checkboxes"
987
  msgstr "Checkboxes"
988
 
989
+ #: app/features/events.php:1253 app/features/mec/regform.php:122
990
+ #: app/libraries/main.php:2232
991
  msgid "Radio Buttons"
992
  msgstr "Botón tipo radio"
993
 
994
+ #: app/features/events.php:1254 app/features/mec/meta_boxes/search_form.php:34
995
  #: app/features/mec/meta_boxes/search_form.php:41
996
  #: app/features/mec/meta_boxes/search_form.php:48
997
  #: app/features/mec/meta_boxes/search_form.php:55
1037
  #: app/features/mec/meta_boxes/search_form.php:443
1038
  #: app/features/mec/meta_boxes/search_form.php:450
1039
  #: app/features/mec/meta_boxes/search_form.php:457
1040
+ #: app/features/mec/regform.php:123 app/libraries/main.php:2276
1041
  msgid "Dropdown"
1042
  msgstr "Desplegable"
1043
 
1044
+ #: app/features/events.php:1255 app/features/mec/regform.php:124
1045
+ #: app/libraries/main.php:2323
1046
  msgid "Agreement"
1047
  msgstr ""
1048
 
1049
+ #: app/features/events.php:1256 app/features/mec/regform.php:125
1050
+ #: app/libraries/main.php:2164
1051
  msgid "Paragraph"
1052
  msgstr "Párrafo"
1053
 
1054
+ #: app/features/events.php:1730 app/features/events.php:1745
1055
+ #: app/features/events.php:1759
1056
  #, php-format
1057
  msgid "Show all %s"
1058
  msgstr ""
1059
 
1060
+ #: app/features/events.php:1730
1061
  msgid "labels"
1062
  msgstr "etiquetas"
1063
 
1064
+ #: app/features/events.php:1745
1065
  msgid "locations"
1066
  msgstr ""
1067
 
1068
+ #: app/features/events.php:1759
1069
  msgid "organizers"
1070
  msgstr ""
1071
 
1072
+ #: app/features/events.php:1785 app/features/events.php:1966
1073
+ #: app/features/events.php:2010 app/features/ix.php:2719
1074
+ #: app/features/ix.php:2760 app/features/locations.php:58
1075
  #: app/features/locations.php:229 app/features/locations.php:281
1076
  #: app/features/locations.php:283 app/features/mec/dashboard.php:106
1077
  #: app/features/mec/meta_boxes/display_options.php:659
1083
  #: app/features/mec/meta_boxes/search_form.php:299
1084
  #: app/features/mec/meta_boxes/search_form.php:339
1085
  #: app/features/mec/meta_boxes/search_form.php:386
1086
+ #: app/features/mec/meta_boxes/search_form.php:433 app/libraries/main.php:1586
1087
+ #: app/libraries/main.php:4171 app/libraries/skins.php:736
1088
+ #: app/skins/single/default.php:141 app/skins/single/default.php:348
1089
+ #: app/skins/single/m1.php:154 app/skins/single/m2.php:86
1090
+ #: app/skins/single/modern.php:83
1091
  msgid "Location"
1092
  msgstr "Localización"
1093
 
1094
+ #: app/features/events.php:1786 app/features/events.php:1966
1095
+ #: app/features/events.php:2010 app/features/ix.php:2719
1096
+ #: app/features/ix.php:2760 app/features/mec/dashboard.php:113
1097
  #: app/features/mec/meta_boxes/display_options.php:660
1098
  #: app/features/mec/meta_boxes/search_form.php:45
1099
  #: app/features/mec/meta_boxes/search_form.php:92
1106
  #: app/features/mec/meta_boxes/search_form.php:440
1107
  #: app/features/organizers.php:58 app/features/organizers.php:199
1108
  #: app/features/organizers.php:255 app/features/organizers.php:257
1109
+ #: app/libraries/main.php:4173 app/libraries/skins.php:762
1110
+ #: app/skins/single/default.php:181 app/skins/single/default.php:388
1111
  #: app/skins/single/m1.php:90 app/skins/single/m2.php:22
1112
  #: app/skins/single/modern.php:21
1113
  msgid "Organizer"
1114
  msgstr "Organizador"
1115
 
1116
+ #: app/features/events.php:1790
1117
  msgid "Repeat"
1118
  msgstr "Repetir"
1119
 
1120
+ #: app/features/events.php:1791
1121
  msgid "Author"
1122
  msgstr "Autor"
1123
 
1124
+ #: app/features/events.php:1901 app/features/events.php:1902
1125
  msgid "iCal Export"
1126
  msgstr "Exportar iCal"
1127
 
1128
+ #: app/features/events.php:1904 app/features/events.php:1905
1129
  msgid "CSV Export"
1130
  msgstr "Exportar CSV"
1131
 
1132
+ #: app/features/events.php:1907 app/features/events.php:1908
1133
  msgid "MS Excel Export"
1134
  msgstr "Exportar Excel"
1135
 
1136
+ #: app/features/events.php:1910 app/features/events.php:1911
1137
  msgid "XML Export"
1138
  msgstr ""
1139
 
1140
+ #: app/features/events.php:1913 app/features/events.php:1914
1141
  msgid "JSON Export"
1142
  msgstr ""
1143
 
1144
+ #: app/features/events.php:1916 app/features/events.php:1917
1145
  msgid "Duplicate"
1146
  msgstr ""
1147
 
1148
+ #: app/features/events.php:1966 app/features/events.php:2010
1149
+ #: app/features/ix.php:2719 app/features/ix.php:2760
1150
  #: app/features/labels.php:176 app/features/locations.php:228
1151
  #: app/features/organizers.php:198 app/features/speakers.php:241
1152
  msgid "ID"
1153
  msgstr "ID"
1154
 
1155
+ #: app/features/events.php:1966 app/features/events.php:2010
1156
+ #: app/features/ix.php:2719 app/features/ix.php:2760
1157
  msgid "Link"
1158
  msgstr ""
1159
 
1160
+ #: app/features/events.php:1966 app/features/events.php:2010
1161
  #, php-format
1162
  msgid "%s Tel"
1163
  msgstr ""
1164
 
1165
+ #: app/features/events.php:1966 app/features/events.php:2010
1166
  #, php-format
1167
  msgid "%s Email"
1168
  msgstr ""
1172
  msgid "Please %s/%s in order to submit new events."
1173
  msgstr ""
1174
 
1175
+ #: app/features/fes.php:83 app/features/fes.php:161 app/features/profile.php:74
1176
  msgid "Login"
1177
  msgstr ""
1178
 
1179
+ #: app/features/fes.php:83 app/features/fes.php:161 app/features/profile.php:74
1180
  msgid "Register"
1181
  msgstr ""
1182
 
1218
  msgid "The event published."
1219
  msgstr ""
1220
 
1221
+ #: app/features/fes/form.php:159
1222
  msgid "Go back to events list."
1223
  msgstr ""
1224
 
1225
+ #: app/features/fes/form.php:409
1226
  msgid "Note to reviewer"
1227
  msgstr ""
1228
 
1229
+ #: app/features/fes/form.php:427
 
 
 
 
1230
  msgid "User Data"
1231
  msgstr ""
1232
 
1233
+ #: app/features/fes/form.php:430
1234
  msgid "eg. yourname@gmail.com"
1235
  msgstr ""
1236
 
1237
+ #: app/features/fes/form.php:434 app/features/organizers.php:269
1238
  msgid "eg. John Smith"
1239
  msgstr "ej. John Smith"
1240
 
1241
+ #: app/features/fes/form.php:488 app/features/mec/settings.php:872
1242
  #, fuzzy
1243
  msgid "Featured Image"
1244
  msgstr "evento destacado"
1245
 
1246
+ #: app/features/fes/form.php:493
1247
  #, fuzzy
1248
  msgid "Remove Image"
1249
  msgstr "Eliminar imagen"
1250
 
1251
+ #: app/features/fes/form.php:535 app/features/labels.php:61
1252
  #: app/features/labels.php:220 app/features/mec.php:199
1253
+ #: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4168
1254
+ #: app/skins/single/default.php:120 app/skins/single/default.php:327
1255
+ #: app/skins/single/m1.php:64 app/skins/single/modern.php:199
1256
  msgid "Labels"
1257
  msgstr "Etiquetas"
1258
 
1259
+ #: app/features/fes/form.php:580 app/features/mec.php:197
1260
  #: app/features/mec/meta_boxes/filter.php:138
1261
  msgid "Tags"
1262
  msgstr "Tags"
1263
 
1264
+ #: app/features/fes/form.php:582
1265
  #, fuzzy
1266
  msgid "Insert your desired tags, comma separated."
1267
  msgstr "Insertar sus etiquetas deseadas separados por comas."
1268
 
1269
+ #: app/features/fes/form.php:618
1270
+ msgid "Submit"
1271
+ msgstr "Enviar"
1272
+
1273
  #: app/features/fes/list.php:21
1274
  msgid "Click again to remove!"
1275
  msgstr ""
1289
  msgid "No events found! %s"
1290
  msgstr "No hay eventos"
1291
 
1292
+ #: app/features/ix.php:107
1293
  msgid "MEC - Import / Export"
1294
  msgstr ""
1295
 
1296
+ #: app/features/ix.php:107
1297
  msgid "Import / Export"
1298
  msgstr ""
1299
 
1300
+ #: app/features/ix.php:198
1301
  msgid "Please upload the feed file."
1302
  msgstr ""
1303
 
1304
+ #: app/features/ix.php:201
1305
  msgid "The file type should be XML or ICS."
1306
  msgstr ""
1307
 
1308
+ #: app/features/ix.php:210
1309
+ msgid "An error occurred during the file upload! Please check permissions!"
1310
  msgstr ""
1311
 
1312
+ #: app/features/ix.php:218
1313
  msgid "The events are imported successfully!"
1314
  msgstr ""
1315
 
1316
+ #: app/features/ix.php:756
1317
  msgid "Third Party plugin is not installed and activated!"
1318
  msgstr ""
1319
 
1320
+ #: app/features/ix.php:781
1321
  msgid "Third Party plugin is invalid!"
1322
  msgstr ""
1323
 
1324
+ #: app/features/ix.php:1926 app/features/ix.php:1984
1325
  msgid "Both of API key and Calendar ID are required!"
1326
  msgstr ""
1327
 
1328
+ #: app/features/ix.php:1979 app/features/ix.php:2398 app/features/ix.php:3182
1329
  msgid "Please select some events to import!"
1330
  msgstr ""
1331
 
1332
+ #: app/features/ix.php:2340 app/features/ix.php:2403
1333
+ msgid "Both of API key and Group URL are required!"
1334
+ msgstr ""
1335
+
1336
+ #: app/features/ix.php:2642
1337
+ msgid "Check at Meetup"
1338
+ msgstr ""
1339
+
1340
+ #: app/features/ix.php:2719 app/features/ix.php:2760
1341
  msgid "Organizer Tel"
1342
  msgstr ""
1343
 
1344
+ #: app/features/ix.php:2719 app/features/ix.php:2760
1345
  msgid "Organizer Email"
1346
  msgstr ""
1347
 
1348
+ #: app/features/ix.php:2841
1349
  msgid "All of Client ID, Client Secret and Calendar ID are required!"
1350
  msgstr ""
1351
 
1352
+ #: app/features/ix.php:2864
1353
  #, php-format
1354
  msgid "All seems good! Please click %s for authenticating your app."
1355
  msgstr ""
1356
 
1357
+ #: app/features/ix.php:2918
1358
  msgid "All of Client App, Client Secret and Calendar ID are required!"
1359
  msgstr ""
1360
 
1361
+ #: app/features/ix.php:3113
1362
  #, php-format
1363
  msgid "%s events added to Google Calendar successfully."
1364
  msgstr ""
1365
 
1366
+ #: app/features/ix.php:3114
1367
  #, php-format
1368
  msgid "%s previously added events get updated."
1369
  msgstr ""
1370
 
1371
+ #: app/features/ix.php:3115
1372
  #, php-format
1373
  msgid "%s events failed to add for following reasons: %s"
1374
  msgstr ""
1375
 
1376
+ #: app/features/ix.php:3145
1377
+ msgid "Please insert your Facebook page's link."
1378
+ msgstr ""
1379
+
1380
+ #: app/features/ix.php:3153
1381
+ msgid ""
1382
+ "We couldn't recognize your Facebook page. Please check it and provide us a "
1383
+ "valid Facebook page link."
1384
+ msgstr ""
1385
+
1386
+ #: app/features/ix.php:3185
1387
  msgid "Please insert your facebook page's link."
1388
  msgstr ""
1389
 
1390
+ #: app/features/ix.php:3190
1391
  msgid ""
1392
  "We couldn't recognize your Facebook page. Please check it and provide us a "
1393
  "valid facebook page link."
1395
 
1396
  #: app/features/ix/export.php:8 app/features/ix/export_g_calendar.php:12
1397
  #: app/features/ix/import.php:8 app/features/ix/import_f_calendar.php:8
1398
+ #: app/features/ix/import_g_calendar.php:8 app/features/ix/import_meetup.php:8
1399
+ #: app/features/ix/thirdparty.php:8
1400
  msgid "MEC Import / Export"
1401
  msgstr ""
1402
 
1403
  #: app/features/ix/export.php:13 app/features/ix/export_g_calendar.php:17
1404
  #: app/features/ix/import.php:13 app/features/ix/import_f_calendar.php:13
1405
+ #: app/features/ix/import_g_calendar.php:13
1406
+ #: app/features/ix/import_meetup.php:13 app/features/ix/sync.php:13
1407
  #: app/features/ix/thirdparty.php:13
1408
+ #, fuzzy
1409
+ #| msgid "Support"
1410
+ msgid "Meetup Import"
1411
+ msgstr "Soporte"
1412
 
1413
  #: app/features/ix/export.php:14 app/features/ix/export_g_calendar.php:18
1414
  #: app/features/ix/import.php:14 app/features/ix/import_f_calendar.php:14
 
1415
  #: app/features/ix/import_g_calendar.php:14
1416
+ #: app/features/ix/import_meetup.php:14 app/features/ix/sync.php:14
1417
+ #: app/features/ix/thirdparty.php:14
1418
+ msgid "Synchronization"
1419
  msgstr ""
1420
 
1421
  #: app/features/ix/export.php:15 app/features/ix/export_g_calendar.php:19
1422
  #: app/features/ix/import.php:15 app/features/ix/import_f_calendar.php:15
1423
+ #: app/features/ix/import_g_calendar.php:15
1424
+ #: app/features/ix/import_meetup.php:15 app/features/ix/sync.php:15
1425
  #: app/features/ix/thirdparty.php:15
1426
+ msgid "Export"
1427
  msgstr ""
1428
 
1429
  #: app/features/ix/export.php:16 app/features/ix/export_g_calendar.php:20
1430
  #: app/features/ix/import.php:16 app/features/ix/import_f_calendar.php:16
1431
+ #: app/features/ix/import_f_calendar.php:75
1432
+ #: app/features/ix/import_g_calendar.php:16
1433
+ #: app/features/ix/import_g_calendar.php:103
1434
+ #: app/features/ix/import_meetup.php:16 app/features/ix/import_meetup.php:85
1435
+ #: app/features/ix/sync.php:16 app/features/ix/thirdparty.php:16
1436
+ #: app/features/ix/thirdparty.php:98
1437
+ msgid "Import"
1438
+ msgstr ""
1439
+
1440
+ #: app/features/ix/export.php:17 app/features/ix/export_g_calendar.php:21
1441
+ #: app/features/ix/import.php:17 app/features/ix/import_f_calendar.php:17
1442
+ #: app/features/ix/import_g_calendar.php:17
1443
+ #: app/features/ix/import_meetup.php:17 app/features/ix/sync.php:17
1444
+ #: app/features/ix/thirdparty.php:17 app/features/ix/thirdparty.php:21
1445
  msgid "Third Party Plugins"
1446
  msgstr ""
1447
 
1448
+ #: app/features/ix/export.php:22
1449
  msgid "Export all events to file"
1450
  msgstr ""
1451
 
1452
+ #: app/features/ix/export.php:23
1453
  msgid ""
1454
  "This will export all of your website events' data into your desired format."
1455
  msgstr ""
1456
 
1457
+ #: app/features/ix/export.php:25 app/features/mec/settings.php:673
1458
  msgid "iCal"
1459
  msgstr "iCal"
1460
 
1461
+ #: app/features/ix/export.php:26
1462
  msgid "CSV"
1463
  msgstr ""
1464
 
1465
+ #: app/features/ix/export.php:27
1466
  msgid "MS Excel"
1467
  msgstr ""
1468
 
1469
+ #: app/features/ix/export.php:28
1470
  msgid "XML"
1471
  msgstr ""
1472
 
1473
+ #: app/features/ix/export.php:29
1474
  msgid "JSON"
1475
  msgstr ""
1476
 
1477
+ #: app/features/ix/export.php:33
1478
  msgid "Export certain events"
1479
  msgstr ""
1480
 
1481
+ #: app/features/ix/export.php:34
1482
  #, php-format
1483
  msgid "For exporting filtered events, you can use bulk actions in %s page."
1484
  msgstr ""
1485
 
1486
+ #: app/features/ix/export.php:37
1487
  msgid "Export certain bookings"
1488
  msgstr ""
1489
 
1490
+ #: app/features/ix/export.php:38
1491
  #, php-format
1492
  msgid "For exporting bookings events, you can use bulk actions in %s page."
1493
  msgstr ""
1494
 
1495
+ #: app/features/ix/export.php:38
1496
  msgid "Bookings"
1497
  msgstr "Reservas"
1498
 
1499
+ #: app/features/ix/export_g_calendar.php:26
1500
  msgid "Add events to Google Calendar"
1501
  msgstr ""
1502
 
1503
+ #: app/features/ix/export_g_calendar.php:27
1504
  msgid "Add your desired website events to your Google Calendar."
1505
  msgstr ""
1506
 
1507
+ #: app/features/ix/export_g_calendar.php:27
1508
  #, php-format
1509
  msgid "You should set %s as redirect page in Google App Console."
1510
  msgstr ""
1511
 
1512
+ #: app/features/ix/export_g_calendar.php:30
1513
  msgid "App Client ID"
1514
  msgstr ""
1515
 
1516
+ #: app/features/ix/export_g_calendar.php:36
1517
  msgid "App Client Secret"
1518
  msgstr ""
1519
 
1520
+ #: app/features/ix/export_g_calendar.php:42
1521
+ #: app/features/ix/import_g_calendar.php:32
1522
  msgid "Calendar ID"
1523
  msgstr ""
1524
 
1525
+ #: app/features/ix/export_g_calendar.php:48
1526
+ #: app/features/ix/export_g_calendar.php:103
1527
+ #: app/features/ix/export_g_calendar.php:120
1528
  msgid "Authenticate"
1529
  msgstr ""
1530
 
 
 
 
 
 
 
1531
  #: app/features/ix/export_g_calendar.php:57
1532
  #: app/features/ix/import_f_calendar.php:50
1533
+ #: app/features/ix/import_g_calendar.php:64
1534
+ #: app/features/ix/import_meetup.php:53 app/features/ix/thirdparty.php:49
1535
+ msgid "Select All"
1536
  msgstr ""
1537
 
1538
  #: app/features/ix/export_g_calendar.php:58
1539
  #: app/features/ix/import_f_calendar.php:51
1540
+ #: app/features/ix/import_g_calendar.php:65
1541
+ #: app/features/ix/import_meetup.php:54 app/features/ix/thirdparty.php:50
1542
+ msgid "Deselect All"
1543
+ msgstr ""
1544
+
1545
+ #: app/features/ix/export_g_calendar.php:59
1546
+ #: app/features/ix/import_f_calendar.php:52
1547
+ #: app/features/ix/import_g_calendar.php:66
1548
+ #: app/features/ix/import_meetup.php:55 app/features/ix/thirdparty.php:51
1549
  msgid "Toggle"
1550
  msgstr "Toggle"
1551
 
1552
+ #: app/features/ix/export_g_calendar.php:72
1553
+ #: app/features/ix/export_g_calendar.php:147
1554
+ #: app/features/ix/export_g_calendar.php:164
1555
  #: app/features/mec/notifications.php:144
1556
  #: app/features/mec/notifications.php:185
1557
  #: app/features/mec/notifications.php:226
1559
  msgid "Add to Google Calendar"
1560
  msgstr ""
1561
 
1562
+ #: app/features/ix/export_g_calendar.php:90 app/features/mec/settings.php:1367
1563
  msgid "Checking ..."
1564
  msgstr ""
1565
 
1566
+ #: app/features/ix/export_g_calendar.php:134
1567
+ msgid "Exporting ..."
1568
  msgstr ""
1569
 
1570
+ #: app/features/ix/import.php:21
1571
  msgid "Import MEC XML Feed"
1572
  msgstr ""
1573
 
1574
+ #: app/features/ix/import.php:24
1575
  #, php-format
1576
  msgid ""
1577
  "You can import %s events from another website to this website. You just need "
1578
  "an XML feed of the events that can be exported from source website!"
1579
  msgstr ""
1580
 
1581
+ #: app/features/ix/import.php:27
1582
  msgid "XML Feed"
1583
  msgstr ""
1584
 
1585
+ #: app/features/ix/import.php:29 app/features/ix/import.php:42
1586
  msgid "Upload & Import"
1587
  msgstr ""
1588
 
1589
+ #: app/features/ix/import.php:33
1590
  msgid "Import .ics File"
1591
  msgstr ""
1592
 
1593
+ #: app/features/ix/import.php:37
1594
  #, php-format
1595
  msgid ""
1596
  "ICS format supports by many different service providers like Facebook. Apple "
1597
  "Calendar etc. You can import your ics file into the %s using this form."
1598
  msgstr ""
1599
 
1600
+ #: app/features/ix/import.php:40
1601
  msgid "ICS Feed"
1602
  msgstr ""
1603
 
1604
+ #: app/features/ix/import.php:46 app/features/mec/settings.php:554
1605
+ #: app/features/mec/settings.php:704 app/features/mec/settings.php:722
1606
+ #: app/features/mec/settings.php:994 app/features/mec/settings.php:1084
1607
+ #: app/features/mec/settings.php:1101 app/features/mec/settings.php:1166
1608
  #, php-format
1609
  msgid "%s is required to use this feature."
1610
  msgstr ""
1611
 
1612
+ #: app/features/ix/import.php:46 app/features/ix/sync.php:22
1613
  #: app/features/mec/meta_boxes/display_options.php:224
1614
  #: app/features/mec/meta_boxes/display_options.php:379
1615
  #: app/features/mec/meta_boxes/display_options.php:469
1616
  #: app/features/mec/meta_boxes/display_options.php:576
1617
  #: app/features/mec/meta_boxes/display_options.php:626
1618
  #: app/features/mec/meta_boxes/display_options.php:764
1619
+ #: app/features/mec/settings.php:554 app/features/mec/settings.php:704
1620
+ #: app/features/mec/settings.php:722 app/features/mec/settings.php:994
1621
+ #: app/features/mec/settings.php:1084 app/features/mec/settings.php:1101
1622
+ #: app/features/mec/settings.php:1166 app/features/mec/settings.php:1291
1623
  #: app/libraries/skins.php:248
1624
  msgid "Pro version of Modern Events Calendar"
1625
  msgstr ""
1626
 
1627
+ #: app/features/ix/import_f_calendar.php:22
1628
  msgid "The Facebook SDK requires PHP version 5.4 or higher."
1629
  msgstr ""
1630
 
1631
+ #: app/features/ix/import_f_calendar.php:26
1632
  msgid "Import from Facebook Calendar"
1633
  msgstr ""
1634
 
1635
+ #: app/features/ix/import_f_calendar.php:27
1636
+ msgid "Import all of your Facebook events into MEC."
1637
  msgstr ""
1638
 
1639
+ #: app/features/ix/import_f_calendar.php:29
1640
  msgid "Facebook Page Link"
1641
  msgstr ""
1642
 
1643
+ #: app/features/ix/import_f_calendar.php:47
 
 
 
 
 
1644
  msgid "Facebook Events"
1645
  msgstr ""
1646
 
1647
+ #: app/features/ix/import_f_calendar.php:48
1648
  #, php-format
1649
  msgid ""
1650
  "We found %s events for %s page. Please select your desired events to import."
1651
  msgstr ""
1652
 
1653
+ #: app/features/ix/import_f_calendar.php:59 app/features/ix/thirdparty.php:58
1654
  #, php-format
1655
  msgid "Event Title: %s"
1656
  msgstr ""
1657
 
1658
+ #: app/features/ix/import_f_calendar.php:66
1659
+ #: app/features/ix/import_g_calendar.php:87
1660
+ #: app/features/ix/import_meetup.php:69 app/features/ix/thirdparty.php:65
1661
  msgid "Import Options"
1662
  msgstr ""
1663
 
1664
+ #: app/features/ix/import_f_calendar.php:70
1665
+ #: app/features/ix/import_g_calendar.php:97
1666
+ #: app/features/ix/import_meetup.php:79 app/features/ix/thirdparty.php:78
1667
  msgid "Import Locations"
1668
  msgstr ""
1669
 
1670
+ #: app/features/ix/import_f_calendar.php:85
1671
  #, php-format
1672
  msgid "%s events successfully imported to your website from Facebook Calendar."
1673
  msgstr ""
1674
 
1675
+ #: app/features/ix/import_g_calendar.php:23
1676
  msgid "Import from Google Calendar"
1677
  msgstr ""
1678
 
1679
+ #: app/features/ix/import_g_calendar.php:24
1680
  msgid "This will import all of your Google calendar events into MEC."
1681
  msgstr ""
1682
 
1683
+ #: app/features/ix/import_g_calendar.php:26
1684
  msgid "Google API Key"
1685
  msgstr ""
1686
 
1687
+ #: app/features/ix/import_g_calendar.php:61
1688
  msgid "Google Calendar Events"
1689
  msgstr ""
1690
 
1691
+ #: app/features/ix/import_g_calendar.php:62
1692
  #, php-format
1693
  msgid ""
1694
  "We found %s events for %s calendar. Please select your desired events to "
1695
  "import."
1696
  msgstr ""
1697
 
1698
+ #: app/features/ix/import_g_calendar.php:80
1699
+ #: app/features/ix/import_meetup.php:62
1700
  #, php-format
1701
  msgid "Event Title: %s Event Date: %s - %s"
1702
  msgstr ""
1703
 
1704
+ #: app/features/ix/import_g_calendar.php:91
1705
+ #: app/features/ix/import_meetup.php:73 app/features/ix/thirdparty.php:71
1706
  msgid "Import Organizers"
1707
  msgstr ""
1708
 
1709
+ #: app/features/ix/import_g_calendar.php:113
1710
  #, php-format
1711
  msgid "%s events successfully imported to your website from Google Calendar."
1712
  msgstr ""
1713
 
1714
+ #: app/features/ix/import_meetup.php:23
1715
+ msgid "Import from Meetup"
1716
+ msgstr ""
1717
+
1718
+ #: app/features/ix/import_meetup.php:24
1719
+ msgid "This will import all your meetup events into MEC."
1720
+ msgstr ""
1721
+
1722
+ #: app/features/ix/import_meetup.php:26
1723
+ #, fuzzy
1724
+ #| msgid "API Key"
1725
+ msgid "Meetup API Key"
1726
+ msgstr "API Key"
1727
+
1728
+ #: app/features/ix/import_meetup.php:32
1729
+ msgid "Group URL"
1730
+ msgstr ""
1731
+
1732
+ #: app/features/ix/import_meetup.php:35
1733
+ #, php-format
1734
+ msgid "put only the slug of your group like %s in %s"
1735
+ msgstr ""
1736
+
1737
+ #: app/features/ix/import_meetup.php:50
1738
+ #, fuzzy
1739
+ #| msgid " Events"
1740
+ msgid "Meetup Events"
1741
+ msgstr "Eventos"
1742
+
1743
+ #: app/features/ix/import_meetup.php:51
1744
+ #, php-format
1745
+ msgid ""
1746
+ "We found %s events for %s group. Please select your desired events to import."
1747
+ msgstr ""
1748
+
1749
+ #: app/features/ix/import_meetup.php:95
1750
+ #, php-format
1751
+ msgid "%s events successfully imported to your website from meetup."
1752
+ msgstr ""
1753
+
1754
+ #: app/features/ix/import_meetup.php:96 app/features/ix/thirdparty.php:109
1755
+ msgid "Attention"
1756
+ msgstr ""
1757
+
1758
+ #: app/features/ix/import_meetup.php:96
1759
+ msgid ""
1760
+ "Although we tried our best to make the events completely compatible with MEC "
1761
+ "but some modification might be needed. We suggest you to edit the imported "
1762
+ "listings one by one on MEC edit event page and make sure thay're correct."
1763
+ msgstr ""
1764
+
1765
  #: app/features/ix/sync.php:8
1766
  msgid "Auto Synchronization"
1767
  msgstr ""
1768
 
1769
+ #: app/features/ix/sync.php:22
1770
  #: app/features/mec/meta_boxes/display_options.php:626
1771
  #, php-format
1772
  msgid "%s is required to use synchronization feature."
1773
  msgstr ""
1774
 
1775
+ #: app/features/ix/sync.php:29
1776
  msgid "Auto Google Import"
1777
  msgstr ""
1778
 
1779
+ #: app/features/ix/sync.php:32 app/features/ix/sync.php:41
1780
+ #: app/features/ix/sync.php:52 app/features/ix/sync.php:63
1781
+ #: app/features/mec/notifications.php:281
1782
  msgid "Important Note"
1783
  msgstr ""
1784
 
1785
+ #: app/features/ix/sync.php:32
1786
  #, php-format
1787
  msgid ""
1788
  "Set a cronjob to call %s file atleast once per day otherwise it won't import "
1789
  "Google Calendar events."
1790
  msgstr ""
1791
 
1792
+ #: app/features/ix/sync.php:38
1793
  msgid "Auto Google Export"
1794
  msgstr ""
1795
 
1796
+ #: app/features/ix/sync.php:41
1797
  #, php-format
1798
  msgid ""
1799
  "Set a cronjob to call %s file atleast once per day otherwise it won't export "
1800
  "your website events into Google Calendar."
1801
  msgstr ""
1802
 
1803
+ #: app/features/ix/sync.php:49
1804
  msgid "Auto Facebook Import"
1805
  msgstr ""
1806
 
1807
+ #: app/features/ix/sync.php:52
1808
  #, php-format
1809
  msgid ""
1810
  "Set a cronjob to call %s file atleast once per day otherwise it won't import "
1811
  "any event from Facebook."
1812
  msgstr ""
1813
 
1814
+ #: app/features/ix/sync.php:60
1815
+ msgid "Auto Meetup Import"
1816
+ msgstr ""
1817
+
1818
+ #: app/features/ix/sync.php:63
1819
+ #, php-format
1820
+ msgid ""
1821
+ "Set a cronjob to call %s file atleast once per day otherwise it won't import "
1822
+ "any event from Meetup."
1823
+ msgstr ""
1824
+
1825
+ #: app/features/ix/sync.php:68
1826
  msgid "Save"
1827
  msgstr ""
1828
 
1829
+ #: app/features/ix/thirdparty.php:24
1830
  #, php-format
1831
  msgid "You can import events from following integrated plugins to %s."
1832
  msgstr ""
1833
 
1834
+ #: app/features/ix/thirdparty.php:27
1835
  msgid "Third Party"
1836
  msgstr ""
1837
 
1838
+ #: app/features/ix/thirdparty.php:46
1839
  msgid "Found Events"
1840
  msgstr ""
1841
 
1842
+ #: app/features/ix/thirdparty.php:47
1843
  #, php-format
1844
  msgid "We found %s events. Please select your desired events to import."
1845
  msgstr ""
1846
 
1847
+ #: app/features/ix/thirdparty.php:70
1848
  msgid "Import Instructors"
1849
  msgstr ""
1850
 
1851
+ #: app/features/ix/thirdparty.php:85
1852
  msgid "Import Class Types"
1853
  msgstr ""
1854
 
1855
+ #: app/features/ix/thirdparty.php:86
1856
  msgid "Import Categories"
1857
  msgstr ""
1858
 
1859
+ #: app/features/ix/thirdparty.php:93
1860
  msgid "Import Featured Images"
1861
  msgstr ""
1862
 
1863
+ #: app/features/ix/thirdparty.php:108
1864
  #, php-format
1865
  msgid "%s events successfully imported to your website."
1866
  msgstr ""
1867
 
1868
+ #: app/features/ix/thirdparty.php:109
 
 
 
 
1869
  msgid ""
1870
  "Although we tried our best to make the events completely compatible with MEC "
1871
  "but some modification might be needed. We suggest you to edit the imported "
1872
+ "listings one by one on MEC edit event page and make sure they are correct."
1873
  msgstr ""
1874
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1875
  #: app/features/labels.php:102 app/features/labels.php:133
1876
  #: app/features/labels.php:178
1877
  msgid "Color"
1914
  msgstr "evento destacado"
1915
 
1916
  #: app/features/labels.php:117 app/features/labels.php:142
1917
+ #: app/libraries/main.php:4361 app/skins/agenda/render.php:41
1918
+ #: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:33
1919
+ #: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:31
1920
+ #: app/skins/daily_view/render.php:26 app/skins/grid/render.php:53
1921
+ #: app/skins/list/render.php:39 app/skins/masonry/render.php:32
1922
+ #: app/skins/monthly_view/calendar.php:84
1923
  #: app/skins/monthly_view/calendar_clean.php:85
1924
  #: app/skins/monthly_view/calendar_novel.php:81 app/skins/slider/render.php:52
1925
  #: app/skins/timetable/render.php:36 app/skins/timetable/render.php:99
1933
 
1934
  #: app/features/labels.php:179 app/features/locations.php:231
1935
  #: app/features/organizers.php:201 app/features/speakers.php:245
1936
+ #: app/modules/booking/steps/tickets.php:38
1937
  msgid "Count"
1938
  msgstr "Contador"
1939
 
1948
  msgstr ""
1949
 
1950
  #: app/features/locations.php:59 app/features/mec.php:200
1951
+ #: app/features/mec/meta_boxes/filter.php:87 app/libraries/main.php:4170
1952
  msgid "Locations"
1953
  msgstr "Lugar"
1954
 
2019
  msgid "eg. City Hall"
2020
  msgstr "ej. Almería"
2021
 
2022
+ #: app/features/locations.php:298 app/features/mec/settings.php:902
2023
  #: app/widgets/single.php:115
2024
  msgid "Event Location"
2025
  msgstr "Lugar del evento"
2045
  msgstr "No mostrar el mapa en la página del detalle del evento"
2046
 
2047
  #: app/features/mec.php:201 app/features/mec/meta_boxes/filter.php:104
2048
+ #: app/features/organizers.php:59 app/libraries/main.php:4172
2049
  msgid "Organizers"
2050
  msgstr "Organizadores"
2051
 
2118
  msgstr ""
2119
 
2120
  #: app/features/mec/dashboard.php:61
2121
+ #, fuzzy
2122
+ #| msgid "Modern Events Calendar"
2123
+ msgid "Modern Events Calendar (Lite)"
2124
+ msgstr "Calendario moderno"
 
 
2125
 
2126
  #: app/features/mec/dashboard.php:63 app/libraries/factory.php:191
2127
  msgctxt "plugin rate"
2191
  msgid "OPEN A TICKET"
2192
  msgstr "ABRIR UN TICKET"
2193
 
2194
+ #: app/features/mec/dashboard.php:160 app/features/mec/settings.php:401
2195
  msgid "Upcoming Events"
2196
  msgstr ""
2197
 
2242
 
2243
  #: app/features/mec/gateways.php:52 app/features/mec/messages.php:52
2244
  #: app/features/mec/notifications.php:51 app/features/mec/regform.php:50
2245
+ #: app/features/mec/settings.php:228 app/features/mec/styles.php:52
2246
  #: app/features/mec/styling.php:78 app/features/mec/support.php:50
2247
  msgid "Styling Options"
2248
  msgstr "Opciones visuales"
2249
 
2250
  #: app/features/mec/gateways.php:59 app/features/mec/messages.php:59
2251
  #: app/features/mec/notifications.php:58 app/features/mec/regform.php:57
2252
+ #: app/features/mec/settings.php:235 app/features/mec/styles.php:59
2253
  #: app/features/mec/styling.php:85 app/features/mec/support.php:57
2254
  msgid "Custom CSS"
2255
  msgstr "CSS Custom"
2256
 
2257
  #: app/features/mec/gateways.php:66 app/features/mec/messages.php:66
2258
  #: app/features/mec/messages.php:90 app/features/mec/notifications.php:65
2259
+ #: app/features/mec/regform.php:64 app/features/mec/settings.php:242
2260
  #: app/features/mec/styles.php:66 app/features/mec/styling.php:92
2261
  #: app/features/mec/support.php:64
2262
  msgid "Messages"
2264
 
2265
  #: app/features/mec/gateways.php:73 app/features/mec/messages.php:73
2266
  #: app/features/mec/notifications.php:72 app/features/mec/regform.php:71
2267
+ #: app/features/mec/settings.php:249 app/features/mec/styles.php:73
2268
  #: app/features/mec/styling.php:99 app/features/mec/support.php:71
2269
  #: app/features/mec/support.php:84
2270
  msgid "Support"
2277
  #: app/features/mec/notifications.php:425
2278
  #: app/features/mec/notifications.php:433 app/features/mec/regform.php:130
2279
  #: app/features/mec/regform.php:203 app/features/mec/regform.php:211
2280
+ #: app/features/mec/settings.php:257 app/features/mec/settings.php:1329
2281
+ #: app/features/mec/settings.php:1337 app/features/mec/settings.php:1381
2282
+ #: app/features/mec/settings.php:1394 app/features/mec/styles.php:96
2283
  #: app/features/mec/styles.php:136 app/features/mec/styles.php:144
2284
  #: app/features/mec/styling.php:262 app/features/mec/styling.php:327
2285
  #: app/features/mec/styling.php:335
2288
 
2289
  #: app/features/mec/gateways.php:130 app/features/mec/messages.php:137
2290
  #: app/features/mec/notifications.php:413 app/features/mec/regform.php:190
2291
+ #: app/features/mec/settings.php:1362 app/features/mec/styles.php:123
2292
  #: app/features/mec/styling.php:313
2293
  msgid "Saved"
2294
  msgstr ""
2295
 
2296
  #: app/features/mec/gateways.php:131 app/features/mec/messages.php:138
2297
  #: app/features/mec/notifications.php:414 app/features/mec/regform.php:191
2298
+ #: app/features/mec/settings.php:1363 app/features/mec/styles.php:124
2299
  #: app/features/mec/styling.php:314
2300
  msgid "Settings Saved!"
2301
  msgstr ""
2593
 
2594
  #: app/features/mec/meta_boxes/display_options.php:297
2595
  #: app/features/mec/meta_boxes/display_options.php:313
2596
+ #: app/libraries/main.php:326 app/libraries/main.php:1164
2597
  msgid "List View"
2598
  msgstr "Ver lista"
2599
 
2600
  #: app/features/mec/meta_boxes/display_options.php:298
2601
  #: app/features/mec/meta_boxes/display_options.php:323
2602
+ #: app/libraries/main.php:330 app/libraries/main.php:1158
2603
  msgid "Yearly View"
2604
  msgstr ""
2605
 
2611
 
2612
  #: app/features/mec/meta_boxes/display_options.php:300
2613
  #: app/features/mec/meta_boxes/display_options.php:343
2614
+ #: app/libraries/main.php:333 app/libraries/main.php:1160
2615
  msgid "Weekly View"
2616
  msgstr "Ver semana"
2617
 
2618
  #: app/features/mec/meta_boxes/display_options.php:301
2619
  #: app/features/mec/meta_boxes/display_options.php:353
2620
+ #: app/libraries/main.php:332 app/libraries/main.php:1161
2621
  msgid "Daily View"
2622
  msgstr "Ver día"
2623
 
2932
  #: app/features/mec/meta_boxes/search_form.php:449
2933
  #: app/features/mec/meta_boxes/search_form.php:456
2934
  #: app/features/mec/meta_boxes/search_form.php:463
2935
+ #: app/features/mec/settings.php:315 app/features/mec/settings.php:413
2936
+ #: app/features/mec/settings.php:597
2937
  msgid "Disabled"
2938
  msgstr "Desactivado"
2939
 
3225
  msgid "Email/Booking verification link."
3226
  msgstr "Email/Reserva enlace de verificación."
3227
 
3228
+ #: app/features/mec/notifications.php:189 app/features/mec/settings.php:1057
3229
  msgid "Booking Confirmation"
3230
  msgstr "Confirmación de reserva"
3231
 
3308
  msgid "Status of event"
3309
  msgstr "Inicio del siguiente mes"
3310
 
3311
+ #: app/features/mec/notifications.php:355 app/features/mec/settings.php:944
3312
  msgid "Event Note"
3313
  msgstr ""
3314
 
3321
  msgid "Archive Page Options"
3322
  msgstr ""
3323
 
3324
+ #: app/features/mec/settings.php:90 app/features/mec/settings.php:662
3325
  msgid "Export Module Options"
3326
  msgstr "Exportar módulo de opciones"
3327
 
3328
+ #: app/features/mec/settings.php:96 app/features/mec/settings.php:689
3329
  msgid "Local Time Module"
3330
  msgstr ""
3331
 
3332
+ #: app/features/mec/settings.php:102 app/features/mec/settings.php:701
3333
  msgid "QR Code Module"
3334
  msgstr ""
3335
 
3336
+ #: app/features/mec/settings.php:108 app/features/mec/settings.php:719
3337
  #: app/widgets/single.php:147
3338
  msgid "Weather Module"
3339
  msgstr ""
3340
 
3341
+ #: app/features/mec/settings.php:138 app/features/mec/settings.php:963
3342
+ msgid "User Profile"
3343
+ msgstr ""
3344
+
3345
+ #: app/features/mec/settings.php:150 app/features/mec/settings.php:981
3346
  #, fuzzy
3347
  msgid "Additional Organizers"
3348
  msgstr "Todos los organizadores"
3349
 
3350
+ #: app/features/mec/settings.php:168 app/features/mec/settings.php:1098
3351
  msgid "Taxes / Fees"
3352
  msgstr "Impuestos/Tasas"
3353
 
3354
+ #: app/features/mec/settings.php:174 app/features/mec/settings.php:1163
3355
  msgid "Ticket Variations & Options"
3356
  msgstr ""
3357
 
3358
+ #: app/features/mec/settings.php:274
3359
  #, fuzzy
3360
  msgid "Time Format"
3361
  msgstr "Tiempo para comentar"
3362
 
3363
+ #: app/features/mec/settings.php:277
3364
  msgid "12 hours format with AM/PM"
3365
  msgstr ""
3366
 
3367
+ #: app/features/mec/settings.php:278
3368
  msgid "24 hours format"
3369
  msgstr ""
3370
 
3371
+ #: app/features/mec/settings.php:280 app/features/mec/settings.php:293
3372
  msgid ""
3373
  "This option is for showing start/end time of events on frontend of website."
3374
  msgstr ""
3375
 
3376
+ #: app/features/mec/settings.php:285
3377
  msgid "Hide Events"
3378
  msgstr ""
3379
 
3380
+ #: app/features/mec/settings.php:288
3381
  msgid "On Event Start"
3382
  msgstr ""
3383
 
3384
+ #: app/features/mec/settings.php:289
3385
  msgid "+1 Hour after start"
3386
  msgstr ""
3387
 
3388
+ #: app/features/mec/settings.php:290
3389
  msgid "+2 Hours after start"
3390
  msgstr ""
3391
 
3392
+ #: app/features/mec/settings.php:291
3393
  msgid "On Event End"
3394
  msgstr ""
3395
 
3396
+ #: app/features/mec/settings.php:299
3397
  #, fuzzy
3398
  msgid "Multiple Day Events"
3399
  msgstr "Todos los eventos de hoy"
3400
 
3401
+ #: app/features/mec/settings.php:302
3402
  msgid "Show only first day on List/Grid/Slider skins"
3403
  msgstr ""
3404
 
3405
+ #: app/features/mec/settings.php:303
3406
  msgid "Show only first day on all skins"
3407
  msgstr ""
3408
 
3409
+ #: app/features/mec/settings.php:304
3410
  #, fuzzy
3411
  msgid "Show all days"
3412
  msgstr "Mostrar todas las etiquetas"
3413
 
3414
+ #: app/features/mec/settings.php:306
3415
  msgid ""
3416
  "For showing all days of multiple day events on frontend or only show the "
3417
  "first day."
3418
  msgstr ""
3419
 
3420
+ #: app/features/mec/settings.php:312
3421
  msgid "Remove MEC Data on Plugin Uninstall"
3422
  msgstr ""
3423
 
3424
+ #: app/features/mec/settings.php:316
3425
  msgid "Enabled"
3426
  msgstr ""
3427
 
3428
+ #: app/features/mec/settings.php:322
3429
  msgid "Exclude Date Suffix"
3430
  msgstr ""
3431
 
3432
+ #: app/features/mec/settings.php:325
3433
  msgid "Remove suffix from calendars"
3434
  msgstr ""
3435
 
3436
+ #: app/features/mec/settings.php:332 app/libraries/main.php:4179
3437
  msgid "Weekdays"
3438
  msgstr ""
3439
 
3440
+ #: app/features/mec/settings.php:340
3441
  msgid ""
3442
  "Proceed with caution. Default is set to Monday, Tuesday, Wednesday, Thursday "
3443
  "and Friday."
3444
  msgstr ""
3445
 
3446
+ #: app/features/mec/settings.php:347
3447
  msgid "Weekends"
3448
  msgstr ""
3449
 
3450
+ #: app/features/mec/settings.php:355
3451
  msgid "Proceed with caution. Default is set to Saturday and Sunday."
3452
  msgstr ""
3453
 
3454
+ #: app/features/mec/settings.php:363
3455
  msgid "Archive Pages"
3456
  msgstr ""
3457
 
3458
+ #: app/features/mec/settings.php:366
3459
  msgid "Archive Page Title"
3460
  msgstr "Título de la página de archivo"
3461
 
3462
+ #: app/features/mec/settings.php:369
3463
  msgid "Default value is Events"
3464
  msgstr "Valor por defecto del evento"
3465
 
3466
+ #: app/features/mec/settings.php:374
3467
  msgid "Archive Page Skin"
3468
  msgstr "Tema de la página de archivo"
3469
 
3470
+ #: app/features/mec/settings.php:381
3471
  msgid "Default value is Calendar/Monthly View"
3472
  msgstr "El valor por defecto es la vista Calendar/Monthly"
3473
 
3474
+ #: app/features/mec/settings.php:386
3475
  #, fuzzy
3476
  msgid "Category Page Skin"
3477
  msgstr "Categoría"
3478
 
3479
+ #: app/features/mec/settings.php:393
3480
  #, fuzzy
3481
  msgid "Default value is List View"
3482
  msgstr "Valor por defecto del evento"
3483
 
3484
+ #: app/features/mec/settings.php:398
3485
  msgid "Category Events Method"
3486
  msgstr ""
3487
 
3488
+ #: app/features/mec/settings.php:402
3489
  msgid "Expired Events"
3490
  msgstr ""
3491
 
3492
+ #: app/features/mec/settings.php:404
3493
  msgid "Default value is Upcoming Events"
3494
  msgstr ""
3495
 
3496
+ #: app/features/mec/settings.php:409
3497
  msgid "Events Archive Status"
3498
  msgstr ""
3499
 
3500
+ #: app/features/mec/settings.php:412
3501
  msgid "Enabled (Recommended)"
3502
  msgstr ""
3503
 
3504
+ #: app/features/mec/settings.php:415
3505
  msgid ""
3506
  "If you disable it, then you should create a page as archive page of MEC. "
3507
  "Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
3508
  "MEC rewrite rules."
3509
  msgstr ""
3510
 
3511
+ #: app/features/mec/settings.php:425
3512
  msgid "Main Slug"
3513
  msgstr "Menu slug"
3514
 
3515
+ #: app/features/mec/settings.php:428
3516
  msgid ""
3517
  "Default value is events. Valid characters are lowercase a-z, - character and "
3518
  "numbers."
3519
  msgstr ""
3520
 
3521
+ #: app/features/mec/settings.php:432
3522
  #, fuzzy
3523
  msgid "Category Slug"
3524
  msgstr "Categoría"
3525
 
3526
+ #: app/features/mec/settings.php:435
3527
  msgid ""
3528
  "It's slug of MEC categories, you can change it to events-cat or something "
3529
  "else. Default value is mec-category. Valid characters are lowercase a-z, - "
3530
  "character and numbers."
3531
  msgstr ""
3532
 
3533
+ #: app/features/mec/settings.php:445
3534
  msgid "Single Event Date Format"
3535
  msgstr ""
3536
 
3537
+ #: app/features/mec/settings.php:448 app/features/mec/settings.php:810
3538
  #, fuzzy
3539
  msgid "Default is M d Y"
3540
  msgstr "Default"
3541
 
3542
+ #: app/features/mec/settings.php:452
3543
  msgid "Date Method"
3544
  msgstr ""
3545
 
3546
+ #: app/features/mec/settings.php:455
3547
  msgid "Next occurrence date"
3548
  msgstr ""
3549
 
3550
+ #: app/features/mec/settings.php:456
3551
  msgid "Referred date"
3552
  msgstr ""
3553
 
3554
+ #: app/features/mec/settings.php:458
3555
  msgid ""
3556
  "\"Referred date\" shows the event date based on referred date in event list."
3557
  msgstr ""
3558
 
3559
+ #: app/features/mec/settings.php:462
3560
  msgid "Single Event Style"
3561
  msgstr ""
3562
 
3563
+ #: app/features/mec/settings.php:465
3564
  msgid "Default Style"
3565
  msgstr ""
3566
 
3567
+ #: app/features/mec/settings.php:466
3568
  msgid "Modern Style"
3569
  msgstr ""
3570
 
3571
+ #: app/features/mec/settings.php:468
3572
  msgid "Choose your single event style."
3573
  msgstr ""
3574
 
3575
+ #: app/features/mec/settings.php:472
3576
  #, fuzzy
3577
  #| msgid "Booking"
3578
  msgid "Booking Style"
3579
  msgstr "Reserva"
3580
 
3581
+ #: app/features/mec/settings.php:475 app/features/mec/settings.php:586
3582
  msgid "Default"
3583
  msgstr "Default"
3584
 
3585
+ #: app/features/mec/settings.php:476
3586
  msgid "Modal"
3587
  msgstr ""
3588
 
3589
+ #: app/features/mec/settings.php:478
3590
  #, fuzzy
3591
  msgid "Choose your Booking style."
3592
  msgstr "Gracias por su reserva."
3593
 
3594
+ #: app/features/mec/settings.php:486
3595
  msgid "Currency"
3596
  msgstr "Moneda corriente"
3597
 
3598
+ #: app/features/mec/settings.php:496
3599
  msgid "Currency Sign"
3600
  msgstr "Tipo de moneda"
3601
 
3602
+ #: app/features/mec/settings.php:499
3603
  msgid "Default value will be \"currency\" if you leave it empty."
3604
  msgstr ""
3605
 
3606
+ #: app/features/mec/settings.php:503
3607
  #, fuzzy
3608
  msgid "Currency Position"
3609
  msgstr "Opciones de moneda"
3610
 
3611
+ #: app/features/mec/settings.php:506
3612
  msgid "Before $10"
3613
  msgstr "Menos de 10€"
3614
 
3615
+ #: app/features/mec/settings.php:507
3616
  msgid "After 10$"
3617
  msgstr "Más de 10€"
3618
 
3619
+ #: app/features/mec/settings.php:512
3620
  msgid "Thousand Separator"
3621
  msgstr "Separador de miles"
3622
 
3623
+ #: app/features/mec/settings.php:518
3624
  msgid "Decimal Separator"
3625
  msgstr "Separador de decimales"
3626
 
3627
+ #: app/features/mec/settings.php:528
3628
  msgid "No decimal"
3629
  msgstr "No decimal"
3630
 
3631
+ #: app/features/mec/settings.php:537
3632
  #, fuzzy
3633
  msgid "Speakers Options"
3634
  msgstr "Buscar lugares"
3635
 
3636
+ #: app/features/mec/settings.php:543
3637
  #, fuzzy
3638
  #| msgid "Enable taxes / fees module"
3639
  msgid "Enable speakers feature"
3640
  msgstr "Activar módulo de Impuestos/Tasas"
3641
 
3642
+ #: app/features/mec/settings.php:559
3643
  msgid "Show Google Maps on event page"
3644
  msgstr "Ver eventos en Google Maps"
3645
 
3646
+ #: app/features/mec/settings.php:564 app/features/mec/settings.php:732
3647
+ #: app/features/mec/settings.php:1261
3648
  msgid "API Key"
3649
  msgstr "API Key"
3650
 
3651
+ #: app/features/mec/settings.php:567 app/features/mec/settings.php:1264
3652
+ #: app/features/mec/settings.php:1271
3653
  msgid "Required!"
3654
  msgstr "Obligatorio!"
3655
 
3656
+ #: app/features/mec/settings.php:571
3657
  msgid "Zoom level"
3658
  msgstr "Nivel de zoom"
3659
 
3660
+ #: app/features/mec/settings.php:578
3661
  msgid ""
3662
  "For Google Maps module in single event page. In Google Maps skin, it will "
3663
  "caculate the zoom level automatically based on event boundaries."
3664
  msgstr ""
3665
 
3666
+ #: app/features/mec/settings.php:582
3667
  msgid "Google Maps Style"
3668
  msgstr "Estilo de Google Maps"
3669
 
3670
+ #: app/features/mec/settings.php:594
3671
  msgid "Direction on single event"
3672
  msgstr "Dirección en la página del evento"
3673
 
3674
+ #: app/features/mec/settings.php:598
3675
  msgid "Simple Method"
3676
  msgstr "Método simple"
3677
 
3678
+ #: app/features/mec/settings.php:599
3679
  msgid "Advanced Method"
3680
  msgstr "Método avanzado"
3681
 
3682
+ #: app/features/mec/settings.php:604
3683
  msgid "Lightbox Date Format"
3684
  msgstr ""
3685
 
3686
+ #: app/features/mec/settings.php:607
3687
  #, fuzzy
3688
  msgid "Default value is M d Y"
3689
  msgstr "Valor por defecto del evento"
3690
 
3691
+ #: app/features/mec/settings.php:611
3692
  #, fuzzy
3693
  msgid "Google Maps API"
3694
  msgstr "Estilo de Google Maps"
3695
 
3696
+ #: app/features/mec/settings.php:615
3697
  msgid "Don't load Google Maps API library"
3698
  msgstr ""
3699
 
3700
+ #: app/features/mec/settings.php:617
3701
  msgid "Check it only if another plugin/theme is loading the Google Maps API"
3702
  msgstr ""
3703
 
3704
+ #: app/features/mec/settings.php:629
3705
  msgid "Enable Google Recaptcha"
3706
  msgstr ""
3707
 
3708
+ #: app/features/mec/settings.php:636
3709
  #, fuzzy
3710
  msgid "Enable on booking form"
3711
  msgstr "Activar módulo de reservas"
3712
 
3713
+ #: app/features/mec/settings.php:642
3714
+ msgid "Enable on \"Frontend Event Submission\" form"
3715
  msgstr ""
3716
 
3717
+ #: app/features/mec/settings.php:646
3718
  msgid "Site Key"
3719
  msgstr ""
3720
 
3721
+ #: app/features/mec/settings.php:652
3722
  msgid "Secret Key"
3723
  msgstr ""
3724
 
3725
+ #: app/features/mec/settings.php:666
3726
  msgid ""
3727
  "Show export module (iCal export and add to Google calendars) on event page"
3728
  msgstr "Ver modulo exportado (iCal y Google Calendars) en la página del evento"
3729
 
3730
+ #: app/features/mec/settings.php:673
3731
  msgid "Google Calendar"
3732
  msgstr "Google Calendar"
3733
 
3734
+ #: app/features/mec/settings.php:693
3735
  msgid "Show event time based on local time of visitor on event page"
3736
  msgstr ""
3737
 
3738
+ #: app/features/mec/settings.php:709
3739
  msgid "Show QR code of event in details page and booking invoice"
3740
  msgstr ""
3741
 
3742
+ #: app/features/mec/settings.php:727
3743
  msgid "Show weather module on event page"
3744
  msgstr ""
3745
 
3746
+ #: app/features/mec/settings.php:735
3747
  #, php-format
3748
  msgid "You can get a free API Key from %s"
3749
  msgstr ""
3750
 
3751
+ #: app/features/mec/settings.php:747
3752
  msgid "Show countdown module on event page"
3753
  msgstr "Mostrar módulo de cuenta atrás en la página del evento"
3754
 
3755
+ #: app/features/mec/settings.php:752
3756
  msgid "Countdown Style"
3757
  msgstr ""
3758
 
3759
+ #: app/features/mec/settings.php:755
3760
  msgid "Plain Style"
3761
  msgstr ""
3762
 
3763
+ #: app/features/mec/settings.php:756
3764
  msgid "Flip Style"
3765
  msgstr ""
3766
 
3767
+ #: app/features/mec/settings.php:768
3768
  msgid "Show social network module"
3769
  msgstr "Ver módulo de redes sociales"
3770
 
3771
+ #: app/features/mec/settings.php:793
3772
  msgid "Show next event module on event page"
3773
  msgstr ""
3774
 
3775
+ #: app/features/mec/settings.php:798
3776
  msgid "Method"
3777
  msgstr ""
3778
 
3779
+ #: app/features/mec/settings.php:801
3780
  msgid "Next Occurrence of Current Event"
3781
  msgstr ""
3782
 
3783
+ #: app/features/mec/settings.php:802
3784
  msgid "Next Occurrence of Other Events"
3785
  msgstr ""
3786
 
3787
+ #: app/features/mec/settings.php:807 app/features/mec/settings.php:1004
3788
  #, fuzzy
3789
  msgid "Date Format"
3790
  msgstr "Tiempo para comentar"
3791
 
3792
+ #: app/features/mec/settings.php:819
3793
  #, fuzzy
3794
  msgid "Events List Page"
3795
  msgstr "Título del evento"
3796
 
3797
+ #: app/features/mec/settings.php:828 app/features/mec/settings.php:840
3798
  #, php-format
3799
  msgid "Put %s shortcode into the page."
3800
  msgstr ""
3801
 
3802
+ #: app/features/mec/settings.php:831
3803
  #, fuzzy
3804
  msgid "Add/Edit Events Page"
3805
  msgstr "Editar eventos"
3806
 
3807
+ #: app/features/mec/settings.php:845
3808
  msgid "Enable event submission by guest (Not logged-in) users"
3809
  msgstr ""
3810
 
3811
+ #: app/features/mec/settings.php:852
3812
  msgid "Enable mandatory email and name for guest user"
3813
  msgstr ""
3814
 
3815
+ #: app/features/mec/settings.php:856
3816
  msgid "Frontend Event Submission Sections"
3817
  msgstr ""
3818
 
3819
+ #: app/features/mec/settings.php:878 app/widgets/single.php:119
3820
  #, fuzzy
3821
  msgid "Event Categories"
3822
  msgstr "Categorías"
3823
 
3824
+ #: app/features/mec/settings.php:884
3825
  msgid "Event Labels"
3826
  msgstr "Etiqueta de evento"
3827
 
3828
+ #: app/features/mec/settings.php:896
3829
  #, fuzzy
3830
  msgid "Event Tags"
3831
  msgstr "Eventos"
3832
 
3833
+ #: app/features/mec/settings.php:908 app/widgets/single.php:123
3834
  msgid "Event Organizer"
3835
  msgstr "Organizador de eventos"
3836
 
3837
+ #: app/features/mec/settings.php:926
3838
  #, fuzzy
3839
  msgid "Booking Options"
3840
  msgstr "Opciones visuales"
3841
 
3842
+ #: app/features/mec/settings.php:932
3843
  #, fuzzy
3844
  msgid "Fees / Taxes Options"
3845
  msgstr "Opciones generales"
3846
 
3847
+ #: app/features/mec/settings.php:946
3848
  #, php-format
3849
  msgid ""
3850
  "Users can put a note for editors while they're submitting the event. Also "
3852
  "users' note in email."
3853
  msgstr ""
3854
 
3855
+ #: app/features/mec/settings.php:950
3856
  msgid "Visibility of Note"
3857
  msgstr ""
3858
 
3859
+ #: app/features/mec/settings.php:953
3860
  msgid "Always"
3861
  msgstr ""
3862
 
3863
+ #: app/features/mec/settings.php:954
3864
  msgid "While event is not published"
3865
  msgstr ""
3866
 
3867
+ #: app/features/mec/settings.php:957
3868
  msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
3869
  msgstr ""
3870
 
3871
+ #: app/features/mec/settings.php:965
3872
+ #, php-format
3873
+ msgid ""
3874
+ "Put %s shortcode into your desired page. Then users are able to see history "
3875
+ "of their bookings."
3876
+ msgstr ""
3877
+
3878
+ #: app/features/mec/settings.php:970
3879
  msgid "Exceptional days"
3880
  msgstr ""
3881
 
3882
+ #: app/features/mec/settings.php:974
3883
  msgid "Show exceptional days option on Add/Edit events page"
3884
  msgstr ""
3885
 
3886
+ #: app/features/mec/settings.php:975
3887
  msgid ""
3888
  "Using this option you can include/exclude certain days to/from event "
3889
  "occurrence dates."
3890
  msgstr ""
3891
 
3892
+ #: app/features/mec/settings.php:985
3893
  msgid ""
3894
  "Show additional organizers option on Add/Edit events page and single event "
3895
  "page."
3896
  msgstr ""
3897
 
3898
+ #: app/features/mec/settings.php:999
3899
  msgid "Enable booking module"
3900
  msgstr "Activar módulo de reservas"
3901
 
3902
+ #: app/features/mec/settings.php:1007
3903
  #, fuzzy
3904
  msgid "Default is Y-m-d"
3905
  msgstr "Default"
3906
 
3907
+ #: app/features/mec/settings.php:1011
3908
  #, fuzzy
3909
  msgid "Maximum Dates"
3910
  msgstr "Máximo de eventos"
3911
 
3912
+ #: app/features/mec/settings.php:1013
3913
  #, fuzzy
3914
  msgid "Default is 6"
3915
  msgstr "Default"
3916
 
3917
+ #: app/features/mec/settings.php:1017
3918
  msgid "Thank You Page"
3919
  msgstr ""
3920
 
3921
+ #: app/features/mec/settings.php:1025
3922
  msgid ""
3923
  "User redirects to this page after booking. Leave it empty if you want to "
3924
  "disable it."
3925
  msgstr ""
3926
 
3927
+ #: app/features/mec/settings.php:1033
3928
  msgid "Enable Express Attendees Form"
3929
  msgstr ""
3930
 
3931
+ #: app/features/mec/settings.php:1035
3932
  msgid ""
3933
  "Users are able to apply first attendee information for other attendees in "
3934
  "the booking form."
3935
  msgstr ""
3936
 
3937
+ #: app/features/mec/settings.php:1038
3938
  #, fuzzy
3939
  msgid "Email verification"
3940
  msgstr "Verificar"
3941
 
3942
+ #: app/features/mec/settings.php:1044
3943
  msgid "Auto verification for free bookings"
3944
  msgstr "Auto verificación para reservas gratuitas"
3945
 
3946
+ #: app/features/mec/settings.php:1053
3947
  msgid "Auto verification for paid bookings"
3948
  msgstr "Auto verificación para reservas de pago"
3949
 
3950
+ #: app/features/mec/settings.php:1063
3951
  #, fuzzy
3952
  msgid "Auto confirmation for free bookings"
3953
  msgstr "Auto verificación para reservas gratuitas"
3954
 
3955
+ #: app/features/mec/settings.php:1072
3956
  #, fuzzy
3957
  msgid "Auto confirmation for paid bookings"
3958
  msgstr "Auto verificación para reservas de pago"
3959
 
3960
+ #: app/features/mec/settings.php:1089
3961
  msgid "Enable coupons module"
3962
  msgstr "Activar módulo de cupones"
3963
 
3964
+ #: app/features/mec/settings.php:1106
3965
  msgid "Enable taxes / fees module"
3966
  msgstr "Activar módulo de Impuestos/Tasas"
3967
 
3968
+ #: app/features/mec/settings.php:1111
3969
  msgid "Add Fee"
3970
  msgstr "Nueva tasa"
3971
 
3972
+ #: app/features/mec/settings.php:1171
3973
  #, fuzzy
3974
  #| msgid "Enable coupons module"
3975
  msgid "Enable ticket options module"
3976
  msgstr "Activar módulo de cupones"
3977
 
3978
+ #: app/features/mec/settings.php:1176
3979
  #, fuzzy
3980
  #| msgid "Add Option"
3981
  msgid "Add Variation / Option"
3982
  msgstr "Nueva opción"
3983
 
3984
+ #: app/features/mec/settings.php:1226
3985
  msgid "Enable BuddyPress Integration"
3986
  msgstr ""
3987
 
3988
+ #: app/features/mec/settings.php:1233
3989
  msgid "Show \"Attendees Module\" in event details page"
3990
  msgstr ""
3991
 
3992
+ #: app/features/mec/settings.php:1237
3993
  msgid "Attendees Limit"
3994
  msgstr ""
3995
 
3996
+ #: app/features/mec/settings.php:1245
3997
  msgid "Add booking activity to user profile"
3998
  msgstr ""
3999
 
4000
+ #: app/features/mec/settings.php:1256
4001
  msgid "Enable Mailchimp Integration"
4002
  msgstr ""
4003
 
4004
+ #: app/features/mec/settings.php:1268
4005
  msgid "List ID"
4006
  msgstr ""
4007
 
4008
+ #: app/features/mec/settings.php:1275
4009
  msgid "Subscription Status"
4010
  msgstr ""
4011
 
4012
+ #: app/features/mec/settings.php:1278
4013
  msgid "Subscribe automatically"
4014
  msgstr ""
4015
 
4016
+ #: app/features/mec/settings.php:1279
4017
  msgid "Subscribe by verification"
4018
  msgstr ""
4019
 
4020
+ #: app/features/mec/settings.php:1281
4021
  msgid ""
4022
  "If you choose \"Subscribe by verification\" then an email will send to user "
4023
  "by mailchimp for subscription verification."
4024
  msgstr ""
4025
 
4026
+ #: app/features/mec/settings.php:1291
4027
  #, php-format
4028
  msgid "%s is required to use this section."
4029
  msgstr ""
4030
 
4031
+ #: app/features/mec/settings.php:1294
4032
  msgid "Purchase Code"
4033
  msgstr ""
4034
 
4035
+ #: app/features/mec/settings.php:1299 app/features/mec/settings.php:1365
4036
+ #: app/features/mec/settings.php:1383 app/libraries/main.php:4360
4037
  msgid "Verified"
4038
  msgstr "Verificado"
4039
 
4040
+ #: app/features/mec/settings.php:1301
4041
  #, fuzzy
4042
  msgid "UnVerified"
4043
  msgstr "Verificado"
4044
 
4045
+ #: app/features/mec/settings.php:1303
4046
  msgid ""
4047
+ "Please insert your purchase code validation. Read documentation for more "
4048
  "information."
4049
  msgstr ""
4050
 
4051
+ #: app/features/mec/settings.php:1306
4052
  msgid "Product Name"
4053
  msgstr ""
4054
 
4055
+ #: app/features/mec/settings.php:1309
4056
  msgid "1 License for MEC Plugin"
4057
  msgstr ""
4058
 
4059
+ #: app/features/mec/settings.php:1310
4060
  msgid "5 License for MEC Plugin"
4061
  msgstr ""
4062
 
4063
+ #: app/features/mec/settings.php:1311
4064
  msgid "10 License for MEC Plugin"
4065
  msgstr ""
4066
 
4067
+ #: app/features/mec/settings.php:1318
4068
  msgid "MEC Deactivation"
4069
  msgstr ""
4070
 
4071
+ #: app/features/mec/settings.php:1320
4072
  msgid "Deactivate"
4073
  msgstr ""
4074
 
4075
+ #: app/features/mec/settings.php:1322
4076
  msgid ""
4077
  "For deactivation first delete your purchase from above field then press save "
4078
  "after that click on deactivate for deactivate this purchase code from this "
4079
  "domain then you can activate another domain."
4080
  msgstr ""
4081
 
4082
+ #: app/features/mec/settings.php:1385
4083
  msgid "Please Refresh Page"
4084
  msgstr ""
4085
 
4234
 
4235
  #: app/features/organizers.php:281
4236
  msgid "eg. https://webnus.net"
4237
+ msgstr ""
4238
 
4239
+ #: app/features/organizers.php:300 app/libraries/main.php:4203
4240
  #: app/skins/single.php:194
4241
  msgid "Other Organizers"
4242
  msgstr ""
4246
  "You can select extra organizers in addition to main organizer if you like."
4247
  msgstr ""
4248
 
4249
+ #: app/features/profile.php:74
4250
+ #, php-format
4251
+ msgid "Please %s/%s in order to see your bookings / profile."
4252
+ msgstr ""
4253
+
4254
+ #: app/features/profile/profile.php:25 app/features/profile/profile.php:87
4255
+ msgid "#"
4256
+ msgstr ""
4257
+
4258
+ #: app/features/profile/profile.php:34 app/libraries/main.php:2345
4259
+ msgid "Status"
4260
+ msgstr ""
4261
+
4262
+ #: app/features/profile/profile.php:37 app/libraries/main.php:1607
4263
+ msgid "Attendees"
4264
+ msgstr ""
4265
+
4266
+ #: app/features/profile/profile.php:40
4267
+ msgid "Invoice"
4268
+ msgstr ""
4269
+
4270
+ #: app/features/profile/profile.php:76
4271
+ #, php-format
4272
+ msgid "<i class=\"mec-sl-eye\"></i> %s"
4273
+ msgstr ""
4274
+
4275
+ #: app/features/profile/profile.php:96 app/libraries/main.php:1621
4276
+ #: app/libraries/main.php:4201
4277
+ msgid "Ticket"
4278
+ msgstr "Ticket"
4279
+
4280
+ #: app/features/profile/profile.php:99
4281
+ #, fuzzy
4282
+ #| msgid "Verification"
4283
+ msgid "Variations"
4284
+ msgstr "Verificar"
4285
+
4286
+ #: app/features/profile/profile.php:142
4287
+ msgid "No bookings found!"
4288
+ msgstr "No hay reservas"
4289
+
4290
  #: app/features/speakers.php:56 app/features/speakers.php:242
4291
+ #: app/libraries/main.php:4175
4292
  msgid "Speaker"
4293
  msgstr ""
4294
 
4326
  msgstr ""
4327
 
4328
  #: app/features/speakers.php:135 app/features/speakers.php:187
4329
+ #: app/libraries/main.php:1065
4330
  msgid "Google+"
4331
  msgstr "Google+"
4332
 
4351
  msgid "%s Price"
4352
  msgstr ""
4353
 
4354
+ #: app/libraries/book.php:538
4355
  msgid "Discount"
4356
  msgstr "Descuento"
4357
 
4358
+ #: app/libraries/book.php:626 app/modules/booking/default.php:280
4359
+ #: app/modules/booking/default.php:375
4360
  msgid "Download Invoice"
4361
  msgstr ""
4362
 
4433
  msgid "There is no excerpt because this is a protected post."
4434
  msgstr "No hay extracto porque es una entrada protegida."
4435
 
4436
+ #: app/libraries/main.php:327 app/libraries/main.php:1165
4437
  msgid "Grid View"
4438
  msgstr "Ver cuadrícula"
4439
 
4440
+ #: app/libraries/main.php:328 app/libraries/main.php:1166
4441
  msgid "Agenda View"
4442
  msgstr ""
4443
 
4444
+ #: app/libraries/main.php:329 app/libraries/main.php:1157
4445
  #, fuzzy
4446
  msgid "Full Calendar"
4447
  msgstr "Calendario"
4448
 
4449
+ #: app/libraries/main.php:331 app/libraries/main.php:1159
4450
  msgid "Calendar/Monthly View"
4451
  msgstr "Ver Calendario/Mes"
4452
 
4453
+ #: app/libraries/main.php:334 app/libraries/main.php:1162
4454
  msgid "Timetable View"
4455
  msgstr ""
4456
 
4457
+ #: app/libraries/main.php:335 app/libraries/main.php:1163
4458
  msgid "Masonry View"
4459
  msgstr ""
4460
 
4461
+ #: app/libraries/main.php:336 app/libraries/main.php:1167
4462
  msgid "Map View"
4463
  msgstr "Ver mapa"
4464
 
4465
+ #: app/libraries/main.php:337
4466
  msgid "Cover View"
4467
  msgstr "Ver portada"
4468
 
4469
+ #: app/libraries/main.php:338
4470
  #, fuzzy
4471
  msgid "Countdown View"
4472
  msgstr "Opciones de cuenta atrás"
4473
 
4474
+ #: app/libraries/main.php:339
4475
  msgid "Available Spot"
4476
  msgstr ""
4477
 
4478
+ #: app/libraries/main.php:340
4479
  #, fuzzy
4480
  msgid "Carousel View"
4481
  msgstr "Ver portada"
4482
 
4483
+ #: app/libraries/main.php:341
4484
  msgid "Slider View"
4485
  msgstr ""
4486
 
4487
+ #: app/libraries/main.php:378 app/libraries/main.php:4181
4488
  msgid "SU"
4489
  msgstr ""
4490
 
4491
+ #: app/libraries/main.php:379 app/libraries/main.php:4182
4492
  msgid "MO"
4493
  msgstr ""
4494
 
4495
+ #: app/libraries/main.php:380 app/libraries/main.php:4183
4496
  msgid "TU"
4497
  msgstr ""
4498
 
4499
+ #: app/libraries/main.php:381 app/libraries/main.php:4184
4500
  msgid "WE"
4501
  msgstr ""
4502
 
4503
+ #: app/libraries/main.php:382 app/libraries/main.php:4185
4504
  msgid "TH"
4505
  msgstr ""
4506
 
4507
+ #: app/libraries/main.php:383 app/libraries/main.php:4186
4508
  msgid "FR"
4509
  msgstr ""
4510
 
4511
+ #: app/libraries/main.php:384 app/libraries/main.php:4187
4512
  msgid "SA"
4513
  msgstr ""
4514
 
4515
+ #: app/libraries/main.php:1023
4516
  msgid "Events at this location"
4517
  msgstr ""
4518
 
4519
+ #: app/libraries/main.php:1023
4520
  msgid "Event at this location"
4521
  msgstr ""
4522
 
4523
+ #: app/libraries/main.php:1064
4524
  msgid "Facebook"
4525
  msgstr "Facebook"
4526
 
4527
+ #: app/libraries/main.php:1066
4528
  msgid "Twitter"
4529
  msgstr "Twitter"
4530
 
4531
+ #: app/libraries/main.php:1067 app/libraries/main.php:1120
4532
  msgid "Linkedin"
4533
  msgstr "LinkedIn"
4534
 
4535
+ #: app/libraries/main.php:1068 app/libraries/main.php:1146
4536
  msgid "VK"
4537
  msgstr ""
4538
 
4539
+ #: app/libraries/main.php:1084
4540
  msgid "Share on Facebook"
4541
  msgstr "Compartir en Facebook"
4542
 
4543
+ #: app/libraries/main.php:1096
4544
  msgid "Google Plus"
4545
  msgstr "Google Plus"
4546
 
4547
+ #: app/libraries/main.php:1108
4548
  msgid "Tweet"
4549
  msgstr "Tweet"
4550
 
4551
+ #: app/libraries/main.php:1502
4552
  msgid "Your booking successfully verified."
4553
  msgstr "Su reserva verificada correctamente."
4554
 
4555
+ #: app/libraries/main.php:1503
4556
  msgid "Your booking cannot verify!"
4557
  msgstr "Su reserva no se puede verificar!"
4558
 
4559
+ #: app/libraries/main.php:1515
4560
  msgid "Your booking successfully canceled."
4561
  msgstr "Su reserva se ha cancelado correctamente."
4562
 
4563
+ #: app/libraries/main.php:1516
4564
  msgid "Your booking cannot be canceled."
4565
  msgstr "La reserva no puede cancelarse."
4566
 
4567
+ #: app/libraries/main.php:1520
4568
  msgid "You canceled the payment successfully."
4569
  msgstr "Has cancelado el pago correctamente."
4570
 
4571
+ #: app/libraries/main.php:1524
4572
  msgid "You returned from payment gateway successfully."
4573
  msgstr "Has vuelto correctamente de tu pasarela de pago."
4574
 
4575
+ #: app/libraries/main.php:1548
4576
  msgid "Cannot find the booking!"
4577
  msgstr ""
4578
 
4579
+ #: app/libraries/main.php:1548
4580
  msgid "Booking is invalid."
4581
  msgstr ""
4582
 
4583
+ #: app/libraries/main.php:1577
4584
  #, php-format
4585
  msgid "%s Invoice"
4586
  msgstr ""
4587
 
4588
+ #: app/libraries/main.php:1598
4589
  msgid "Transaction ID"
4590
  msgstr "ID Transacción"
4591
 
4592
+ #: app/libraries/main.php:1651
 
 
 
 
 
 
 
 
4593
  msgid "Billing"
4594
  msgstr ""
4595
 
4596
+ #: app/libraries/main.php:1662
4597
  msgid "Total"
4598
  msgstr ""
4599
 
4600
+ #: app/libraries/main.php:1695
4601
  msgid "Security nonce is not valid."
4602
  msgstr "La seguridad no es válida."
4603
 
4604
+ #: app/libraries/main.php:1695 app/libraries/main.php:1727
4605
  msgid "iCal export stopped!"
4606
  msgstr "La exportación de iCal se detuvo!"
4607
 
4608
+ #: app/libraries/main.php:1727
4609
  #, fuzzy
4610
  #| msgid "Request is invalid!"
4611
  msgid "Request is not valid."
4612
  msgstr "Solicitud no válida!"
4613
 
4614
+ #: app/libraries/main.php:2047 app/libraries/main.php:2076
4615
+ #: app/libraries/main.php:2105 app/libraries/main.php:2134
4616
+ #: app/libraries/main.php:2163 app/libraries/main.php:2187
4617
+ #: app/libraries/main.php:2231 app/libraries/main.php:2275
4618
+ #: app/libraries/main.php:2322 app/libraries/main.php:2368
4619
  msgid "Sort"
4620
  msgstr "Orden"
4621
 
4622
+ #: app/libraries/main.php:2053 app/libraries/main.php:2082
4623
+ #: app/libraries/main.php:2111 app/libraries/main.php:2140
4624
+ #: app/libraries/main.php:2193 app/libraries/main.php:2237
4625
+ #: app/libraries/main.php:2281 app/libraries/main.php:2328
4626
  msgid "Required Field"
4627
  msgstr "Campo obligatorio"
4628
 
4629
+ #: app/libraries/main.php:2059 app/libraries/main.php:2088
4630
+ #: app/libraries/main.php:2117 app/libraries/main.php:2146
4631
+ #: app/libraries/main.php:2199 app/libraries/main.php:2243
4632
+ #: app/libraries/main.php:2287 app/libraries/main.php:2334
4633
  msgid "Insert a label for this field"
4634
  msgstr "Introduzca una etiqueta para este campo"
4635
 
4636
+ #: app/libraries/main.php:2169
4637
  msgid "HTML and shortcode are allowed."
4638
  msgstr "Se permite HTML"
4639
 
4640
+ #: app/libraries/main.php:2212 app/libraries/main.php:2256
4641
+ #: app/libraries/main.php:2300
4642
  msgid "Option"
4643
  msgstr "Opción"
4644
 
4645
+ #: app/libraries/main.php:2334
4646
  #, php-format
4647
  msgid "Instead of %s, the page title with a link will be show."
4648
  msgstr ""
4649
 
4650
+ #: app/libraries/main.php:2336
4651
  msgid "Agreement Page"
4652
  msgstr ""
4653
 
4654
+ #: app/libraries/main.php:2347
 
 
 
 
4655
  msgid "Checked by default"
4656
  msgstr ""
4657
 
4658
+ #: app/libraries/main.php:2348
4659
  msgid "Unchecked by default"
4660
  msgstr ""
4661
 
4662
+ #: app/libraries/main.php:2370
4663
  msgid "Insert a label for this option"
4664
  msgstr "Introduce una etiqueta para esta opción"
4665
 
4666
+ #: app/libraries/main.php:2385
4667
  msgid "Free"
4668
  msgstr "Gratis"
4669
 
4670
+ #: app/libraries/main.php:3037
4671
  #, php-format
4672
  msgid "Copy of %s"
4673
  msgstr ""
4674
 
4675
+ #: app/libraries/main.php:3681
4676
  msgid "Booked an event."
4677
  msgstr ""
4678
 
4679
+ #: app/libraries/main.php:3722
4680
  #, php-format
4681
  msgid "%s booked %s event."
4682
  msgstr ""
4683
 
4684
+ #: app/libraries/main.php:4164
4685
  msgid "Taxonomies"
4686
  msgstr ""
4687
 
4688
+ #: app/libraries/main.php:4166
4689
  msgid "Category Plural Label"
4690
  msgstr ""
4691
 
4692
+ #: app/libraries/main.php:4167
4693
  msgid "Category Singular Label"
4694
  msgstr ""
4695
 
4696
+ #: app/libraries/main.php:4168
4697
  msgid "Label Plural Label"
4698
  msgstr ""
4699
 
4700
+ #: app/libraries/main.php:4169
4701
  msgid "Label Singular Label"
4702
  msgstr ""
4703
 
4704
+ #: app/libraries/main.php:4169
4705
  msgid "label"
4706
  msgstr ""
4707
 
4708
+ #: app/libraries/main.php:4170
4709
  msgid "Location Plural Label"
4710
  msgstr ""
4711
 
4712
+ #: app/libraries/main.php:4171
4713
  msgid "Location Singular Label"
4714
  msgstr ""
4715
 
4716
+ #: app/libraries/main.php:4172
4717
  msgid "Organizer Plural Label"
4718
  msgstr ""
4719
 
4720
+ #: app/libraries/main.php:4173
4721
  msgid "Organizer Singular Label"
4722
  msgstr ""
4723
 
4724
+ #: app/libraries/main.php:4174
4725
  #, fuzzy
4726
  #| msgid "Search Labels"
4727
  msgid "Speaker Plural Label"
4728
  msgstr "Buscar etiquetas"
4729
 
4730
+ #: app/libraries/main.php:4175
4731
  #, fuzzy
4732
  #| msgid "Popular Labels"
4733
  msgid "Speaker Singular Label"
4734
  msgstr "Etiquetas populares"
4735
 
4736
+ #: app/libraries/main.php:4181
4737
  msgid "Sunday abbreviation"
4738
  msgstr ""
4739
 
4740
+ #: app/libraries/main.php:4182
4741
  msgid "Monday abbreviation"
4742
  msgstr ""
4743
 
4744
+ #: app/libraries/main.php:4183
4745
  msgid "Tuesday abbreviation"
4746
  msgstr ""
4747
 
4748
+ #: app/libraries/main.php:4184
4749
  msgid "Wednesday abbreviation"
4750
  msgstr ""
4751
 
4752
+ #: app/libraries/main.php:4185
4753
  msgid "Thursday abbreviation"
4754
  msgstr ""
4755
 
4756
+ #: app/libraries/main.php:4186
4757
  msgid "Friday abbreviation"
4758
  msgstr ""
4759
 
4760
+ #: app/libraries/main.php:4187
4761
  msgid "Saturday abbreviation"
4762
  msgstr ""
4763
 
4764
+ #: app/libraries/main.php:4191
4765
  msgid "Others"
4766
  msgstr ""
4767
 
4768
+ #: app/libraries/main.php:4193
4769
  msgid "Booking Success Message"
4770
  msgstr ""
4771
 
4772
+ #: app/libraries/main.php:4193
4773
  msgid ""
4774
  "Thanks for your booking. Your tickets booked, booking verification might be "
4775
  "needed, please check your email."
4776
  msgstr "Gracias por su reserva. Revise su correo electrónico."
4777
 
4778
+ #: app/libraries/main.php:4194 app/widgets/single.php:131
4779
  msgid "Register Button"
4780
  msgstr ""
4781
 
4782
+ #: app/libraries/main.php:4194 app/skins/available_spot/tpl.php:164
4783
  #: app/skins/carousel/render.php:79 app/skins/carousel/render.php:104
4784
  #: app/skins/grid/render.php:76 app/skins/grid/render.php:107
4785
  #: app/skins/grid/render.php:139 app/skins/grid/render.php:167
4786
  #: app/skins/list/render.php:59 app/skins/list/render.php:140
4787
+ #: app/skins/masonry/render.php:93 app/skins/single/default.php:218
4788
+ #: app/skins/single/default.php:220 app/skins/single/default.php:425
4789
+ #: app/skins/single/default.php:427 app/skins/single/m1.php:126
4790
+ #: app/skins/single/m1.php:128 app/skins/single/m2.php:58
4791
+ #: app/skins/single/m2.php:60 app/skins/single/modern.php:58
4792
+ #: app/skins/single/modern.php:60 app/skins/slider/render.php:75
4793
+ #: app/skins/slider/render.php:96 app/skins/slider/render.php:116
4794
+ #: app/skins/slider/render.php:136 app/skins/slider/render.php:167
4795
  msgid "REGISTER"
4796
  msgstr "REGISTRAR"
4797
 
4798
+ #: app/libraries/main.php:4195
4799
  msgid "View Detail Button"
4800
  msgstr ""
4801
 
4802
+ #: app/libraries/main.php:4195 app/skins/carousel/render.php:79
4803
  #: app/skins/carousel/render.php:104 app/skins/grid/render.php:76
4804
  #: app/skins/grid/render.php:107 app/skins/grid/render.php:139
4805
  #: app/skins/grid/render.php:167 app/skins/list/render.php:59
4806
+ #: app/skins/list/render.php:140 app/skins/masonry/render.php:93
4807
  #: app/skins/slider/render.php:75 app/skins/slider/render.php:96
4808
  #: app/skins/slider/render.php:116 app/skins/slider/render.php:136
4809
  #: app/skins/slider/render.php:167
4810
  msgid "View Detail"
4811
  msgstr "Ver detalle"
4812
 
4813
+ #: app/libraries/main.php:4196
4814
  msgid "Event Detail Button"
4815
  msgstr ""
4816
 
4817
+ #: app/libraries/main.php:4196 app/skins/countdown/tpl.php:178
4818
  #, fuzzy
4819
  msgid "Event Detail"
4820
  msgstr "Detalle de evento"
4821
 
4822
+ #: app/libraries/main.php:4198
4823
  msgid "More Info Link"
4824
  msgstr ""
4825
 
4826
+ #: app/libraries/main.php:4201
4827
  msgid "Ticket (Singular)"
4828
  msgstr ""
4829
 
4830
+ #: app/libraries/main.php:4202
4831
  msgid "Tickets (Plural)"
4832
  msgstr ""
4833
 
4834
+ #: app/libraries/main.php:4268
4835
  msgid "EventON"
4836
  msgstr ""
4837
 
4838
+ #: app/libraries/main.php:4269
4839
  msgid "The Events Calendar"
4840
  msgstr ""
4841
 
4842
+ #: app/libraries/main.php:4270
4843
  msgid "Events Schedule WP Plugin"
4844
  msgstr ""
4845
 
4846
+ #: app/libraries/main.php:4271
4847
  msgid "Calendarize It"
4848
  msgstr ""
4849
 
4850
+ #: app/libraries/main.php:4345
4851
+ msgid "Confirmed"
4852
+ msgstr "Confirmado"
4853
+
4854
+ #: app/libraries/main.php:4346
4855
+ msgid "Rejected"
4856
+ msgstr "Rechazado"
4857
+
4858
+ #: app/libraries/main.php:4347
4859
+ msgid "Pending"
4860
+ msgstr "Pendiente"
4861
+
4862
+ #: app/libraries/main.php:4362
4863
+ msgid "Waiting"
4864
+ msgstr "Esperando"
4865
+
4866
  #: app/libraries/notifications.php:61
4867
  msgid "Please verify your email."
4868
  msgstr "Por favor comprueba tu email"
4908
  msgstr "No existe skin controller."
4909
 
4910
  #: app/libraries/render.php:404 app/modules/local-time/details.php:44
4911
+ #: app/modules/next-event/details.php:97 app/skins/single/default.php:73
4912
+ #: app/skins/single/default.php:280 app/skins/single/m1.php:34
4913
+ #: app/skins/single/modern.php:169
4914
  msgid "All of the day"
4915
  msgstr "Todos del día"
4916
 
4917
+ #: app/libraries/skins.php:809
4918
  msgid "Ignore month and years"
4919
  msgstr ""
4920
 
4947
  msgid "Free Booking"
4948
  msgstr ""
4949
 
4950
+ #: app/modules/booking/steps/form.php:18
4951
  msgid "Attendees Form"
4952
  msgstr "Asistentes"
4953
 
4954
+ #: app/modules/booking/steps/form.php:107
4955
+ msgid "Fill other attendees information like the first form."
4956
  msgstr ""
4957
 
4958
+ #: app/modules/booking/steps/form.php:120
4959
+ #: app/modules/booking/steps/tickets.php:55 app/skins/countdown/tpl.php:79
4960
  #: app/skins/countdown/tpl.php:123 app/skins/countdown/tpl.php:168
4961
  msgid "Next"
4962
  msgstr "Siguiente"
4966
  msgid "Thanks for your booking."
4967
  msgstr "Gracias por su reserva."
4968
 
4969
+ #: app/modules/booking/steps/tickets.php:20
4970
  msgid "Book Event"
4971
  msgstr "Reserva del evento"
4972
 
4973
+ #: app/modules/booking/steps/tickets.php:40
4974
  #, php-format
4975
  msgid "Available %s: <span>%s</span>"
4976
  msgstr ""
4977
 
4978
+ #: app/modules/booking/steps/tickets.php:43
4979
  #, php-format
4980
  msgid "The %s ticket is sold out. You can try another ticket or another date."
4981
  msgstr ""
5031
  msgid "Go to occurrence page"
5032
  msgstr ""
5033
 
5034
+ #: app/modules/next-event/details.php:91 app/skins/single/default.php:67
5035
+ #: app/skins/single/default.php:274 app/skins/single/m1.php:28
5036
+ #: app/skins/single/modern.php:163
5037
  msgid "Time"
5038
  msgstr "Horario"
5039
 
5076
  #: app/skins/agenda/tpl.php:62 app/skins/agenda/tpl.php:66
5077
  #: app/skins/carousel/tpl.php:43 app/skins/grid/tpl.php:52
5078
  #: app/skins/grid/tpl.php:56 app/skins/list/tpl.php:57
5079
+ #: app/skins/list/tpl.php:61 app/skins/masonry/tpl.php:50
5080
+ #: app/skins/masonry/tpl.php:54 app/skins/slider/tpl.php:41
5081
  msgid "No event found!"
5082
  msgstr "No hay eventos!"
5083
 
5132
  msgid "No Events"
5133
  msgstr "Sin eventos"
5134
 
5135
+ #: app/skins/single.php:209 app/skins/single/default.php:191
5136
+ #: app/skins/single/default.php:398 app/skins/single/m1.php:100
5137
  #: app/skins/single/m2.php:32 app/skins/single/modern.php:31
5138
  msgid "Phone"
5139
  msgstr "Teléfono"
5140
 
5141
+ #: app/skins/single.php:223 app/skins/single/default.php:205
5142
+ #: app/skins/single/default.php:412 app/skins/single/m1.php:114
5143
  #: app/skins/single/m2.php:46 app/skins/single/modern.php:45
5144
  msgid "Website"
5145
  msgstr "Web"
5146
 
5147
  #: app/skins/single.php:260
5148
+ #, fuzzy
5149
  msgid "Speakers:"
5150
+ msgstr "Buscar lugares"
5151
 
5152
+ #: app/skins/single/default.php:30 app/skins/single/m1.php:235
5153
+ #: app/skins/single/m2.php:164 app/skins/single/modern.php:238
5154
  msgid "Sold out!"
5155
  msgstr ""
5156
 
5157
+ #: app/skins/single/default.php:40 app/skins/single/m1.php:244
5158
+ #: app/skins/single/m2.php:173 app/skins/single/modern.php:248
5159
  msgid "Tags: "
5160
  msgstr "Tags:"
5161
 
5162
+ #: app/skins/single/default.php:106 app/skins/single/default.php:313
5163
+ #: app/skins/single/m1.php:191 app/skins/single/m2.php:124
5164
+ #: app/skins/single/modern.php:121
5165
  #, fuzzy
5166
  msgid "Read More"
5167
  msgstr "Cargar más"
5209
 
5210
  #: app/widgets/single.php:127
5211
  #, fuzzy
 
5212
  msgid "Event Speakers"
5213
+ msgstr "Buscar lugares"
5214
 
5215
  #: app/widgets/single.php:135
5216
  #, fuzzy
5221
  #: app/widgets/single.php:139
5222
  #, fuzzy
5223
  #| msgid "Next/Previous Buttons"
5224
+ msgid "Next Previous Module"
5225
  msgstr "Botones Siguiente/Anterior"
5226
 
5227
  #: app/widgets/single.php:143
5242
  msgstr "Calendario moderno"
5243
 
5244
  #. Plugin URI of the plugin/theme
5245
+ msgid "http://webnus.net/modern-events-calendar/"
5246
  msgstr ""
5247
 
5248
  #. Description of the plugin/theme
5257
  msgid "http://webnus.net"
5258
  msgstr ""
5259
 
 
 
 
 
 
5260
  #~ msgid "Add Booking"
5261
  #~ msgstr "Nueva reserva"
5262
 
 
 
 
5263
  #~ msgid "Edit Bookings"
5264
  #~ msgstr "Editar reserva"
5265
 
5272
  #~ msgid "Confirmation"
5273
  #~ msgstr "Confirmar"
5274
 
 
 
 
 
 
 
 
 
 
5275
  #~ msgid "Verification"
5276
  #~ msgstr "Verificar"
5277
 
 
 
 
5278
  #~ msgid "Payment"
5279
  #~ msgstr "Pago"
5280
 
5342
  #~ msgid "Usage Limit"
5343
  #~ msgstr "Límite de uso"
5344
 
5345
+ #~ msgid "Insert -1 for unlimited usage"
5346
+ #~ msgstr "Introduce -1 para uso ilimitado"
5347
+
5348
  #~ msgid "Expiration Date"
5349
  #~ msgstr "Día de expiración"
5350
 
5360
  #~ msgid "Coupon is valid and you get %s discount."
5361
  #~ msgstr "El cupón es correcto y se aplica un %s de descuento."
5362
 
5363
+ #~ msgid "Request is invalid!"
5364
+ #~ msgstr "Solicitud no válida!"
5365
+
5366
  #~ msgid "There is no attendee for booking!"
5367
  #~ msgstr "No hay sistema de booking!"
5368
 
5448
  #~ msgid "Payment is invalid."
5449
  #~ msgstr "El pago no es válido."
5450
 
5451
+ #~ msgid "eg. http://yoursite.com/john-smith/"
5452
+ #~ msgstr "ej. http://yoursite.com/john-smith/"
5453
+
5454
  #~ msgid "Attendee"
5455
  #~ msgstr "Asistente"
5456
 
5719
  #~ msgid "Text Field"
5720
  #~ msgstr "Campo de texto"
5721
 
 
 
 
5722
  #~ msgid " Calender"
5723
  #~ msgstr "Calendario"
5724
 
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: 2018-11-19 13:45+0330\n"
5
- "PO-Revision-Date: 2018-11-19 13:45+0330\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: fr_FR\n"
@@ -12,7 +12,7 @@ msgstr ""
12
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
13
  "X-Generator: Poedit 2.0.1\n"
14
  "X-Poedit-Basepath: ..\n"
15
- "X-Poedit-WPHeader: modern-events-calendar-lite.php\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
18
  "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
@@ -20,9 +20,9 @@ msgstr ""
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
 
23
- #: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:23
24
- #: app/features/ix/import.php:36 app/features/ix/thirdparty.php:23
25
- #: app/widgets/MEC.php:33
26
  msgid "Modern Events Calendar"
27
  msgstr "Modern Events Calendar"
28
 
@@ -57,24 +57,24 @@ msgstr "Options générales"
57
  msgid "Select Type"
58
  msgstr "Tout sélectionner"
59
 
60
- #: app/features/colors.php:50 app/features/fes/form.php:566
61
- #: app/features/mec/settings.php:884
62
  msgid "Event Color"
63
  msgstr "Couleur de l'événement"
64
 
65
  #: app/features/contextual.php:55 app/features/mec.php:210
66
  #: app/features/mec/gateways.php:20 app/features/mec/messages.php:20
67
  #: app/features/mec/notifications.php:19 app/features/mec/regform.php:19
68
- #: app/features/mec/settings.php:35 app/features/mec/settings.php:263
69
  #: app/features/mec/styles.php:20 app/features/mec/styling.php:46
70
  #: app/features/mec/support.php:18
71
  msgid "Settings"
72
  msgstr "Paramètres"
73
 
74
- #: app/features/contextual.php:62 app/features/events.php:1155
75
  #: app/features/mec/gateways.php:29 app/features/mec/messages.php:29
76
  #: app/features/mec/notifications.php:28 app/features/mec/regform.php:28
77
- #: app/features/mec/regform.php:88 app/features/mec/settings.php:198
78
  #: app/features/mec/styles.php:29 app/features/mec/styling.php:55
79
  #: app/features/mec/support.php:27
80
  msgid "Booking Form"
@@ -92,7 +92,7 @@ msgstr ""
92
  #: app/features/contextual.php:70 app/features/mec/gateways.php:36
93
  #: app/features/mec/gateways.php:90 app/features/mec/messages.php:36
94
  #: app/features/mec/notifications.php:35 app/features/mec/regform.php:35
95
- #: app/features/mec/settings.php:205 app/features/mec/styles.php:36
96
  #: app/features/mec/styling.php:62 app/features/mec/support.php:34
97
  msgid "Payment Gateways"
98
  msgstr "Passerelle de paiement"
@@ -107,7 +107,7 @@ msgstr ""
107
  #: app/features/contextual.php:77 app/features/mec/gateways.php:45
108
  #: app/features/mec/messages.php:45 app/features/mec/notifications.php:44
109
  #: app/features/mec/notifications.php:89 app/features/mec/regform.php:43
110
- #: app/features/mec/settings.php:215 app/features/mec/styles.php:45
111
  #: app/features/mec/styling.php:71 app/features/mec/support.php:43
112
  msgid "Notifications"
113
  msgstr "Notifications"
@@ -123,7 +123,8 @@ msgstr ""
123
  #: app/features/contextual.php:88 app/features/ix/export.php:10
124
  #: app/features/ix/export_g_calendar.php:14 app/features/ix/import.php:10
125
  #: app/features/ix/import_f_calendar.php:10
126
- #: app/features/ix/import_g_calendar.php:10 app/features/ix/sync.php:10
 
127
  #: app/features/ix/thirdparty.php:10
128
  msgid "Google Cal. Import"
129
  msgstr "Google Agenda Import"
@@ -139,7 +140,8 @@ msgstr ""
139
  #: app/features/contextual.php:95 app/features/ix/export.php:11
140
  #: app/features/ix/export_g_calendar.php:15 app/features/ix/import.php:11
141
  #: app/features/ix/import_f_calendar.php:11
142
- #: app/features/ix/import_g_calendar.php:11 app/features/ix/sync.php:11
 
143
  #: app/features/ix/thirdparty.php:11
144
  msgid "Google Cal. Export"
145
  msgstr "Google Agenda Export"
@@ -155,7 +157,8 @@ msgstr ""
155
  #: app/features/contextual.php:102 app/features/ix/export.php:12
156
  #: app/features/ix/export_g_calendar.php:16 app/features/ix/import.php:12
157
  #: app/features/ix/import_f_calendar.php:12
158
- #: app/features/ix/import_g_calendar.php:12 app/features/ix/sync.php:12
 
159
  #: app/features/ix/thirdparty.php:12
160
  msgid "Facebook Cal. Import"
161
  msgstr "Facebook Cal. Import"
@@ -169,86 +172,86 @@ msgid ""
169
  msgstr ""
170
 
171
  #: app/features/contextual.php:117 app/features/mec/settings.php:42
172
- #: app/features/mec/settings.php:265
173
  msgid "General Options"
174
  msgstr "Options générales"
175
 
176
  #: app/features/contextual.php:139 app/features/mec/settings.php:54
177
- #: app/features/mec/settings.php:417
178
  msgid "Slugs/Permalinks"
179
  msgstr "Permaliens/Ancres"
180
 
181
  #: app/features/contextual.php:152 app/features/mec/settings.php:60
182
- #: app/features/mec/settings.php:437
183
  msgid "Event Details/Single Event Page"
184
  msgstr "Détail de l'événement/Page de l'événement"
185
 
186
  #: app/features/contextual.php:166 app/features/mec/settings.php:66
187
- #: app/features/mec/settings.php:478
188
  msgid "Currency Options"
189
  msgstr "Options de devise"
190
 
191
  #: app/features/contextual.php:182 app/features/mec/settings.php:78
192
- #: app/features/mec/settings.php:545
193
  msgid "Google Maps Options"
194
  msgstr "Option du plugin Google Maps"
195
 
196
  #: app/features/contextual.php:244 app/features/mec/settings.php:84
197
- #: app/features/mec/settings.php:619
198
  msgid "Google Recaptcha Options"
199
  msgstr "Options de Google reCAPTCHA"
200
 
201
  #: app/features/contextual.php:258 app/features/mec/settings.php:114
202
- #: app/features/mec/settings.php:737
203
  msgid "Countdown Options"
204
  msgstr "Options du Compte à Rebours"
205
 
206
  #: app/features/contextual.php:268 app/features/mec/settings.php:120
207
- #: app/features/mec/settings.php:758
208
  msgid "Social Networks"
209
  msgstr "Réseaux Sociaux"
210
 
211
  #: app/features/contextual.php:278 app/features/mec/settings.php:126
212
- #: app/features/mec/settings.php:783
213
  msgid "Next Event Module"
214
  msgstr "Module événement suivant"
215
 
216
  #: app/features/contextual.php:286 app/features/mec/settings.php:132
217
- #: app/features/mec/settings.php:811
218
  msgid "Frontend Event Submission"
219
  msgstr "Réglages du formulaire de création d’événements"
220
 
221
  #: app/features/contextual.php:298 app/features/events.php:580
222
- #: app/features/mec/settings.php:138
223
  msgid "Exceptional Days"
224
  msgstr "Journées Exceptionnelles"
225
 
226
  #: app/features/contextual.php:308 app/features/events.php:263
227
- #: app/features/mec/settings.php:150 app/features/mec/settings.php:978
228
  msgid "Booking"
229
  msgstr "Réservation"
230
 
231
- #: app/features/contextual.php:318 app/features/mec/settings.php:156
232
- #: app/features/mec/settings.php:1068
233
  msgid "Coupons"
234
  msgstr "Bons de réduction"
235
 
236
- #: app/features/contextual.php:326 app/features/mec/settings.php:174
237
- #: app/features/mec/settings.php:1209
238
  msgid "BuddyPress Integration"
239
  msgstr "Intégration BuddyPress"
240
 
241
- #: app/features/contextual.php:334 app/features/mec/settings.php:180
242
- #: app/features/mec/settings.php:1239
243
  msgid "Mailchimp Integration"
244
  msgstr "Intégration de Mailchimp"
245
 
246
- #: app/features/contextual.php:346 app/features/mec/settings.php:186
247
- #: app/features/mec/settings.php:1275
248
  msgid "MEC Activation"
249
  msgstr "Activation de l'extension"
250
 
251
- #: app/features/events.php:132 app/features/ix/export.php:33
252
  #: app/features/mec/dashboard.php:92 app/skins/daily_view/tpl.php:79
253
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
254
  msgid "Events"
@@ -258,8 +261,8 @@ msgstr "Évenements"
258
  #: app/features/mec/meta_boxes/display_options.php:708
259
  #: app/features/mec/meta_boxes/display_options.php:746
260
  #: app/features/mec/meta_boxes/display_options.php:775
261
- #: app/skins/daily_view/tpl.php:80 app/skins/monthly_view/tpl.php:71
262
- #: app/skins/yearly_view/tpl.php:69
263
  msgid "Event"
264
  msgstr "Événement"
265
 
@@ -271,8 +274,8 @@ msgstr "Ajouter un événement"
271
  msgid "Add New Event"
272
  msgstr "Ajouter un nouvel événement"
273
 
274
- #: app/features/events.php:136 app/features/ix.php:2784
275
- #: app/features/ix/thirdparty.php:41 app/skins/map/tpl.php:54
276
  msgid "No events found!"
277
  msgstr "Aucun événement trouvé !"
278
 
@@ -303,16 +306,16 @@ msgstr "Aucun événement trouvé dans la corbeille !"
303
  #: app/features/mec/meta_boxes/search_form.php:292
304
  #: app/features/mec/meta_boxes/search_form.php:332
305
  #: app/features/mec/meta_boxes/search_form.php:379
306
- #: app/features/mec/meta_boxes/search_form.php:426 app/libraries/main.php:4151
307
- #: app/libraries/skins.php:712 app/skins/single/default.php:155
308
- #: app/skins/single/default.php:360 app/skins/single/m1.php:167
309
- #: app/skins/single/m2.php:99 app/skins/single/modern.php:96
310
  msgid "Category"
311
  msgstr "Catégorie"
312
 
313
- #: app/features/events.php:153 app/features/fes/form.php:518
314
  #: app/features/mec.php:198 app/features/mec/meta_boxes/filter.php:70
315
- #: app/libraries/main.php:4150
316
  msgid "Categories"
317
  msgstr "Catégories"
318
 
@@ -384,18 +387,18 @@ msgstr ""
384
  msgid "Event Details"
385
  msgstr "Détails"
386
 
387
- #: app/features/events.php:296 app/features/events.php:1894
388
- #: app/features/events.php:1938 app/features/fes/form.php:479
389
- #: app/features/ix.php:2328 app/features/ix.php:2369
390
- #: app/features/mec/settings.php:860 app/libraries/main.php:4183
391
  #: app/widgets/single.php:103
392
  msgid "Event Cost"
393
  msgstr "Tarif de l'événement"
394
 
395
- #: app/features/events.php:299 app/features/fes/form.php:482
396
- #: app/libraries/main.php:4184 app/skins/single/default.php:90
397
- #: app/skins/single/default.php:295 app/skins/single/m1.php:49
398
- #: app/skins/single/modern.php:182
399
  msgid "Cost"
400
  msgstr "Tarif"
401
 
@@ -407,35 +410,36 @@ msgstr "Note pour l'administrateur"
407
  msgid "Guest Data"
408
  msgstr "Coordonnées de l'Invité"
409
 
410
- #: app/features/events.php:380 app/features/fes/form.php:441
411
  #: app/features/labels.php:177 app/features/organizers.php:268
412
- #: app/libraries/notifications.php:554 app/modules/booking/steps/form.php:24
413
- #: app/modules/booking/steps/form.php:25
414
  msgid "Name"
415
  msgstr "Nom"
416
 
417
- #: app/features/events.php:381 app/features/events.php:1190
418
- #: app/features/fes/form.php:437 app/features/mec/regform.php:118
419
  #: app/features/organizers.php:110 app/features/organizers.php:150
420
- #: app/features/speakers.php:119 app/features/speakers.php:179
421
- #: app/libraries/main.php:1067 app/libraries/main.php:1132
422
- #: app/libraries/main.php:2067 app/libraries/notifications.php:555
423
- #: app/modules/booking/steps/form.php:28 app/modules/booking/steps/form.php:29
424
- #: app/skins/single.php:216 app/skins/single/default.php:197
425
- #: app/skins/single/default.php:402 app/skins/single/m1.php:107
426
- #: app/skins/single/m2.php:39 app/skins/single/modern.php:38
 
427
  msgid "Email"
428
  msgstr "Email"
429
 
430
- #: app/features/events.php:385 app/features/fes/form.php:221
431
  msgid "Date and Time"
432
  msgstr "Date et heure"
433
 
434
  #: app/features/events.php:389 app/features/events.php:393
435
- #: app/features/events.php:1715 app/features/events.php:1894
436
- #: app/features/events.php:1938 app/features/fes/form.php:225
437
- #: app/features/fes/form.php:229 app/features/ix.php:2328
438
- #: app/features/ix.php:2369 app/features/ix/import_g_calendar.php:37
439
  #: app/features/mec/dashboard.php:269
440
  #: app/features/mec/meta_boxes/display_options.php:42
441
  #: app/features/mec/meta_boxes/display_options.php:139
@@ -454,45 +458,45 @@ msgid "Start Date"
454
  msgstr "Date de début"
455
 
456
  #: app/features/events.php:421 app/features/events.php:461
457
- #: app/features/events.php:860 app/features/events.php:878
458
- #: app/features/events.php:930 app/features/events.php:948
459
- #: app/features/fes/form.php:257 app/features/fes/form.php:297
460
  msgid "AM"
461
  msgstr "du matin"
462
 
463
  #: app/features/events.php:422 app/features/events.php:462
464
- #: app/features/events.php:861 app/features/events.php:879
465
- #: app/features/events.php:931 app/features/events.php:949
466
- #: app/features/fes/form.php:258 app/features/fes/form.php:298
467
  msgid "PM"
468
  msgstr "de l'après midi"
469
 
470
  #: app/features/events.php:429 app/features/events.php:433
471
- #: app/features/events.php:1716 app/features/events.php:1894
472
- #: app/features/events.php:1938 app/features/fes/form.php:265
473
- #: app/features/fes/form.php:269 app/features/ix.php:2328
474
- #: app/features/ix.php:2369 app/features/ix/import_g_calendar.php:43
475
  #: app/features/mec/dashboard.php:270
476
  msgid "End Date"
477
  msgstr "Date de fin"
478
 
479
- #: app/features/events.php:468 app/features/fes/form.php:304
480
  msgid "All Day Event"
481
  msgstr "Ne pas renseigner d'horaires"
482
 
483
- #: app/features/events.php:471 app/features/fes/form.php:307
484
  msgid "Hide Event Time"
485
  msgstr "Masquer l'heure de début"
486
 
487
- #: app/features/events.php:474 app/features/fes/form.php:310
488
  msgid "Hide Event End Time"
489
  msgstr "Masquer l'heure de fin"
490
 
491
- #: app/features/events.php:478 app/features/fes/form.php:314
492
  msgid "Time Comment"
493
  msgstr "Commentaire sur l'horaire"
494
 
495
- #: app/features/events.php:479 app/features/fes/form.php:315
496
  msgid ""
497
  "It shows next to event time on calendar. You can insert Timezone etc. in "
498
  "this field."
@@ -500,138 +504,139 @@ msgstr ""
500
  "Ce commentaire s'affiche à droite de l'heure de l'événement. Vous pouvez "
501
  "insérer y insérer un fuseau horaire etc ..."
502
 
503
- #: app/features/events.php:485 app/features/fes/form.php:321
504
  msgid "Event Repeating"
505
  msgstr "Événement récurrent"
506
 
507
- #: app/features/events.php:489 app/features/fes/form.php:325
508
  msgid "Repeats"
509
  msgstr "Récurrence"
510
 
511
- #: app/features/events.php:491 app/features/fes/form.php:327
512
  #: app/features/mec/dashboard.php:272 app/skins/full_calendar/tpl.php:68
513
  msgid "Daily"
514
  msgstr "Quotidienne"
515
 
516
- #: app/features/events.php:492 app/features/fes/form.php:328
517
  msgid "Every Weekday"
518
  msgstr "Tous les jours de la semaine"
519
 
520
- #: app/features/events.php:493 app/features/fes/form.php:329
521
  msgid "Every Weekend"
522
  msgstr "Tous les week-ends"
523
 
524
- #: app/features/events.php:494 app/features/fes/form.php:330
525
  msgid "Certain Weekdays"
526
  msgstr "Certains jours de la semaine"
527
 
528
- #: app/features/events.php:495 app/features/fes/form.php:331
529
  #: app/skins/full_calendar/tpl.php:67
530
  msgid "Weekly"
531
  msgstr "Hebdomadaire"
532
 
533
- #: app/features/events.php:496 app/features/fes/form.php:332
534
  #: app/features/mec/dashboard.php:273 app/skins/full_calendar/tpl.php:66
535
  msgid "Monthly"
536
  msgstr "Mensuelle"
537
 
538
- #: app/features/events.php:497 app/features/fes/form.php:333
539
  #: app/features/mec/dashboard.php:274 app/skins/full_calendar/tpl.php:65
540
  msgid "Yearly"
541
  msgstr "Annuelle"
542
 
543
- #: app/features/events.php:498 app/features/fes/form.php:334
544
  msgid "Custom Days"
545
  msgstr "Choisir les dates"
546
 
547
- #: app/features/events.php:502 app/features/fes/form.php:338
548
  msgid "Repeat Interval"
549
  msgstr "Interval de répétition"
550
 
551
- #: app/features/events.php:503 app/features/fes/form.php:339
552
  msgid "Repeat interval"
553
  msgstr "Interval de répétition"
554
 
555
- #: app/features/events.php:506 app/features/fes/form.php:342
556
  msgid "Week Days"
557
  msgstr "Jours de la semaine"
558
 
559
- #: app/features/events.php:507 app/features/fes/form.php:343
560
- #: app/libraries/main.php:401
561
  msgid "Monday"
562
  msgstr "Lundi"
563
 
564
- #: app/features/events.php:508 app/features/fes/form.php:344
565
- #: app/libraries/main.php:401
566
  msgid "Tuesday"
567
  msgstr "Mardi"
568
 
569
- #: app/features/events.php:509 app/features/fes/form.php:345
570
- #: app/libraries/main.php:401
571
  msgid "Wednesday"
572
  msgstr "Mercredi"
573
 
574
- #: app/features/events.php:510 app/features/fes/form.php:346
575
- #: app/libraries/main.php:401
576
  msgid "Thursday"
577
  msgstr "Jeudi"
578
 
579
- #: app/features/events.php:511 app/features/fes/form.php:347
580
- #: app/libraries/main.php:401
581
  msgid "Friday"
582
  msgstr "Vendredi"
583
 
584
- #: app/features/events.php:512 app/features/fes/form.php:348
585
- #: app/libraries/main.php:401
586
  msgid "Saturday"
587
  msgstr "Samedi"
588
 
589
- #: app/features/events.php:513 app/features/fes/form.php:349
590
- #: app/libraries/main.php:401
591
  msgid "Sunday"
592
  msgstr "Dimanche"
593
 
594
  #: app/features/events.php:518 app/features/events.php:590
595
- #: app/features/fes/form.php:354 app/libraries/main.php:1582
596
- #: app/modules/booking/steps/tickets.php:20
597
- #: app/modules/next-event/details.php:86 app/skins/single/default.php:54
598
- #: app/skins/single/default.php:259 app/skins/single/m1.php:16
599
- #: app/skins/single/modern.php:149
600
  msgid "Date"
601
  msgstr "Date"
602
 
603
  #: app/features/events.php:519 app/features/events.php:591
604
- #: app/features/events.php:665 app/features/events.php:717
605
- #: app/features/events.php:837 app/features/events.php:1009
606
- #: app/features/events.php:1090 app/features/fes/form.php:355
 
607
  msgid "Add"
608
  msgstr "Ajouter"
609
 
610
- #: app/features/events.php:520 app/features/fes/form.php:356
611
  msgid "Add certain days to event occurrence dates."
612
  msgstr "Ajoute la date sélectionnée aux dates d'affichage de l'événement ."
613
 
614
- #: app/features/events.php:542 app/features/fes/form.php:378
615
  msgid "Ends Repeat"
616
  msgstr "Fin de l'événement"
617
 
618
- #: app/features/events.php:546 app/features/fes/form.php:382
619
  msgid "Never"
620
  msgstr "Jamais"
621
 
622
- #: app/features/events.php:551 app/features/fes/form.php:387
623
  msgid "On"
624
  msgstr "Date de fin"
625
 
626
- #: app/features/events.php:558 app/features/fes/form.php:394
627
  msgid "After"
628
  msgstr "Après X répétitions"
629
 
630
- #: app/features/events.php:560 app/features/fes/form.php:396
631
  msgid "Occurrences times"
632
  msgstr "Nombre de répétition de l'événement"
633
 
634
- #: app/features/events.php:561 app/features/fes/form.php:397
635
  msgid ""
636
  "The event will finish after certain repeats. For example if you set it to "
637
  "10, the event will finish after 10 repeats."
@@ -652,7 +657,7 @@ msgstr "Exclure certains jours des dates de l'événement ."
652
  msgid "Day 1"
653
  msgstr ""
654
 
655
- #: app/features/events.php:649 app/features/mec/settings.php:914
656
  #: app/skins/single.php:246
657
  msgid "Hourly Schedule"
658
  msgstr "Programme"
@@ -667,201 +672,241 @@ msgid ""
667
  "can add a different schedule for each day!"
668
  msgstr ""
669
 
670
- #: app/features/events.php:658
671
  #, php-format
672
  msgid "Day %s"
673
  msgstr ""
674
 
675
- #: app/features/events.php:661 app/features/events.php:673
676
- #: app/features/events.php:693 app/features/events.php:713
677
- #: app/features/events.php:728 app/features/events.php:1096
678
- #: app/features/events.php:1118 app/features/events.php:1712
679
- #: app/features/events.php:1894 app/features/events.php:1938
680
- #: app/features/fes/form.php:214 app/features/ix.php:2328
681
- #: app/features/ix.php:2369 app/features/mec/settings.php:1169
682
- #: app/features/mec/settings.php:1189
683
  msgid "Title"
684
  msgstr "Titre"
685
 
686
- #: app/features/events.php:666 app/features/events.php:718
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
687
  msgid "Add new hourly schedule row"
688
  msgstr "Ajouter un programme"
689
 
690
- #: app/features/events.php:671 app/features/events.php:691
691
- #: app/features/events.php:726
692
  msgid "From e.g. 8:15"
693
  msgstr "Par exemple 08:15"
694
 
695
- #: app/features/events.php:672 app/features/events.php:692
696
- #: app/features/events.php:727
697
  msgid "To e.g. 8:45"
698
  msgstr "Ex : 8:45"
699
 
700
- #: app/features/events.php:674 app/features/events.php:694
701
- #: app/features/events.php:729 app/features/events.php:884
702
- #: app/features/events.php:954
703
  msgid "Description"
704
  msgstr "Description"
705
 
706
- #: app/features/events.php:675 app/features/events.php:695
707
- #: app/features/events.php:730 app/features/events.php:903
708
- #: app/features/events.php:973 app/features/events.php:1029
709
- #: app/features/events.php:1054 app/features/events.php:1107
710
- #: app/features/events.php:1129 app/features/fes/list.php:72
711
- #: app/features/mec/settings.php:1118 app/features/mec/settings.php:1141
712
- #: app/features/mec/settings.php:1180 app/features/mec/settings.php:1200
713
- #: app/libraries/main.php:2046 app/libraries/main.php:2075
714
- #: app/libraries/main.php:2104 app/libraries/main.php:2133
715
- #: app/libraries/main.php:2155 app/libraries/main.php:2186
716
- #: app/libraries/main.php:2230 app/libraries/main.php:2274
717
- #: app/libraries/main.php:2321 app/libraries/main.php:2359
718
- msgid "Remove"
719
- msgstr "Supprimer"
720
-
721
- #: app/features/events.php:678 app/features/events.php:698
722
- #: app/features/events.php:733 app/features/fes/form.php:611
723
  #: app/features/mec.php:206 app/features/mec/settings.php:72
724
- #: app/features/mec/settings.php:908 app/features/speakers.php:57
725
- #: app/libraries/main.php:4158 app/modules/speakers/details.php:18
726
  msgid "Speakers"
727
  msgstr ""
728
 
729
- #: app/features/events.php:710 app/features/events.php:714
730
  msgid "Day :dd:"
731
  msgstr ""
732
 
733
- #: app/features/events.php:759 app/features/fes/form.php:456
734
- #: app/features/mec/settings.php:854
735
  msgid "Event Links"
736
  msgstr "Liens de l'évenements"
737
 
738
- #: app/features/events.php:761 app/features/fes/form.php:458
739
- #: app/libraries/main.php:4181
740
  msgid "Event Link"
741
  msgstr "Lien de l'événement"
742
 
743
- #: app/features/events.php:762 app/features/events.php:767
744
- #: app/features/fes/form.php:459 app/features/fes/form.php:464
745
  msgid "eg. http://yoursite.com/your-event"
746
  msgstr "ex : http://www.votre-site.fr"
747
 
748
- #: app/features/events.php:763 app/features/fes/form.php:460
749
  msgid ""
750
  "If you fill it, it will be replaced instead of default event page link. "
751
  "Insert full link including http(s)://"
752
  msgstr "Lien principal. Affiché sur la page de l'événement"
753
 
754
- #: app/features/events.php:766 app/features/fes/form.php:463
755
- #: app/libraries/main.php:4182 app/skins/single/default.php:104
756
- #: app/skins/single/default.php:309 app/skins/single/m1.php:188
757
- #: app/skins/single/m2.php:120 app/skins/single/modern.php:118
758
  #: app/widgets/single.php:107
759
  msgid "More Info"
760
  msgstr "Plus d'Infos"
761
 
762
- #: app/features/events.php:768 app/features/fes/form.php:465
763
  msgid "More Information"
764
  msgstr "Plus d'Informations"
765
 
766
- #: app/features/events.php:770 app/features/fes/form.php:467
767
  msgid "Current Window"
768
  msgstr "Ouvrir dans l'onglet actuel"
769
 
770
- #: app/features/events.php:771 app/features/fes/form.php:468
771
  msgid "New Window"
772
  msgstr "Ouvrir dans un nouvel onglet"
773
 
774
- #: app/features/events.php:773 app/features/fes/form.php:470
775
  msgid ""
776
  "If you fill it, it will be shown in event details page as an optional link. "
777
  "Insert full link including http(s)://"
778
  msgstr "Lien Optionnel. Affiché sur la page de Détails"
779
 
780
- #: app/features/events.php:804
781
  msgid "Total booking limits"
782
  msgstr "Nombre limite de réservation"
783
 
784
- #: app/features/events.php:809 app/features/events.php:901
785
- #: app/features/events.php:971 app/modules/booking/default.php:82
786
- #: app/modules/booking/steps/tickets.php:38 app/skins/available_spot/tpl.php:99
787
  msgid "Unlimited"
788
  msgstr "Illimité"
789
 
790
- #: app/features/events.php:811
791
  msgid "100"
792
  msgstr "100"
793
 
794
- #: app/features/events.php:829 app/libraries/book.php:60
795
- #: app/libraries/main.php:4186 app/modules/booking/steps/tickets.php:38
796
  msgid "Tickets"
797
  msgstr "Billets"
798
 
799
- #: app/features/events.php:832
800
  msgid ""
801
  "You're translating an event so MEC will use the original event for tickets "
802
  "and booking. You can only translate the ticket name and description. Please "
803
  "define exact tickets that you defined in the original event here."
804
  msgstr ""
805
 
806
- #: app/features/events.php:843 app/features/events.php:913
807
  msgid "Ticket Name"
808
  msgstr "Nom du billet"
809
 
810
- #: app/features/events.php:847 app/features/events.php:917
811
- #: app/features/events.php:1894 app/features/events.php:1938
812
- #: app/features/ix.php:2328 app/features/ix.php:2369
813
  msgid "Start Time"
814
  msgstr "Début"
815
 
816
- #: app/features/events.php:865 app/features/events.php:935
817
- #: app/features/events.php:1894 app/features/events.php:1938
818
- #: app/features/ix.php:2328 app/features/ix.php:2369
819
  msgid "End Time"
820
  msgstr "Fin"
821
 
822
- #: app/features/events.php:888 app/features/events.php:958
823
- #: app/features/events.php:1100 app/features/events.php:1122
824
- #: app/features/mec/settings.php:1173 app/features/mec/settings.php:1193
 
 
825
  msgid "Price"
826
  msgstr "Tarif"
827
 
828
- #: app/features/events.php:889 app/features/events.php:959
829
  msgid "Insert 0 for free ticket. Only numbers please."
830
  msgstr "0 = Participation Gratuite. Seulement un numéro SVP."
831
 
832
- #: app/features/events.php:892 app/features/events.php:962
833
  msgid "Price Label"
834
  msgstr "Libellé du prix"
835
 
836
- #: app/features/events.php:893 app/features/events.php:963
837
  msgid "For showing on website. e.g. $15"
838
  msgstr "Pour affichage sur le site Web. Par exemple 15 €"
839
 
840
- #: app/features/events.php:897 app/features/events.php:967
841
  msgid "Available Tickets"
842
  msgstr "Place(s) disponible(s)"
843
 
844
- #: app/features/events.php:999
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
845
  msgid "Fees"
846
  msgstr "Frais"
847
 
848
- #: app/features/events.php:1004 app/features/events.php:1085
849
- #: app/features/events.php:1160
850
  msgid "Inherit from global options"
851
  msgstr "Hériter des options globales"
852
 
853
- #: app/features/events.php:1015 app/features/events.php:1040
854
- #: app/features/mec/settings.php:1104 app/features/mec/settings.php:1127
855
  msgid "Fee Title"
856
  msgstr "Titre"
857
 
858
- #: app/features/events.php:1019 app/features/events.php:1044
859
- #: app/features/mec/settings.php:1108 app/features/mec/settings.php:1131
860
  msgid "Amount"
861
  msgstr "Montant"
862
 
863
- #: app/features/events.php:1020 app/features/events.php:1045
864
- #: app/features/mec/settings.php:1109 app/features/mec/settings.php:1132
865
  msgid ""
866
  "Fee amount, considered as fixed amount if you set the type to amount "
867
  "otherwise considered as percentage"
@@ -869,72 +914,72 @@ msgstr ""
869
  "Considéré comme montant fixe si vous définissez le type de montant. Sinon "
870
  "considéré comme pourcentage à ajouter au prix"
871
 
872
- #: app/features/events.php:1024 app/features/events.php:1049
873
- #: app/features/mec/settings.php:1113 app/features/mec/settings.php:1136
874
  msgid "Percent"
875
  msgstr "Pourcentage"
876
 
877
- #: app/features/events.php:1025 app/features/events.php:1050
878
- #: app/features/mec/settings.php:1114 app/features/mec/settings.php:1137
879
  msgid "Amount (Per Ticket)"
880
  msgstr "Montant (par Billet)"
881
 
882
- #: app/features/events.php:1026 app/features/events.php:1051
883
- #: app/features/mec/settings.php:1115 app/features/mec/settings.php:1138
884
  msgid "Amount (Per Booking)"
885
  msgstr "Montant (par réservation)"
886
 
887
- #: app/features/events.php:1080 app/features/mec/settings.php:932
888
  msgid "Ticket Variations / Options"
889
  msgstr ""
890
 
891
- #: app/features/events.php:1101 app/features/events.php:1123
892
- #: app/features/mec/settings.php:1174 app/features/mec/settings.php:1194
893
  #, fuzzy
894
  #| msgid "Option"
895
  msgid "Option Price"
896
  msgstr "Option"
897
 
898
- #: app/features/events.php:1104 app/features/events.php:1126
899
- #: app/features/mec/settings.php:1177 app/features/mec/settings.php:1197
900
  #, fuzzy
901
  #| msgid "Amount (Per Ticket)"
902
  msgid "Maximum Per
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
+ "POT-Creation-Date: 2019-01-23 12:02+0330\n"
5
+ "PO-Revision-Date: 2019-01-23 12:02+0330\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: fr_FR\n"
12
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
13
  "X-Generator: Poedit 2.0.1\n"
14
  "X-Poedit-Basepath: ..\n"
15
+ "X-Poedit-WPHeader: mec.php\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
18
  "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
 
23
+ #: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:24
24
+ #: app/features/ix/import.php:37 app/features/ix/thirdparty.php:24
25
+ #: app/features/mec/dashboard.php:61 app/widgets/MEC.php:33
26
  msgid "Modern Events Calendar"
27
  msgstr "Modern Events Calendar"
28
 
57
  msgid "Select Type"
58
  msgstr "Tout sélectionner"
59
 
60
+ #: app/features/colors.php:50 app/features/fes/form.php:558
61
+ #: app/features/mec/settings.php:890
62
  msgid "Event Color"
63
  msgstr "Couleur de l'événement"
64
 
65
  #: app/features/contextual.php:55 app/features/mec.php:210
66
  #: app/features/mec/gateways.php:20 app/features/mec/messages.php:20
67
  #: app/features/mec/notifications.php:19 app/features/mec/regform.php:19
68
+ #: app/features/mec/settings.php:35 app/features/mec/settings.php:269
69
  #: app/features/mec/styles.php:20 app/features/mec/styling.php:46
70
  #: app/features/mec/support.php:18
71
  msgid "Settings"
72
  msgstr "Paramètres"
73
 
74
+ #: app/features/contextual.php:62 app/features/events.php:1214
75
  #: app/features/mec/gateways.php:29 app/features/mec/messages.php:29
76
  #: app/features/mec/notifications.php:28 app/features/mec/regform.php:28
77
+ #: app/features/mec/regform.php:88 app/features/mec/settings.php:204
78
  #: app/features/mec/styles.php:29 app/features/mec/styling.php:55
79
  #: app/features/mec/support.php:27
80
  msgid "Booking Form"
92
  #: app/features/contextual.php:70 app/features/mec/gateways.php:36
93
  #: app/features/mec/gateways.php:90 app/features/mec/messages.php:36
94
  #: app/features/mec/notifications.php:35 app/features/mec/regform.php:35
95
+ #: app/features/mec/settings.php:211 app/features/mec/styles.php:36
96
  #: app/features/mec/styling.php:62 app/features/mec/support.php:34
97
  msgid "Payment Gateways"
98
  msgstr "Passerelle de paiement"
107
  #: app/features/contextual.php:77 app/features/mec/gateways.php:45
108
  #: app/features/mec/messages.php:45 app/features/mec/notifications.php:44
109
  #: app/features/mec/notifications.php:89 app/features/mec/regform.php:43
110
+ #: app/features/mec/settings.php:221 app/features/mec/styles.php:45
111
  #: app/features/mec/styling.php:71 app/features/mec/support.php:43
112
  msgid "Notifications"
113
  msgstr "Notifications"
123
  #: app/features/contextual.php:88 app/features/ix/export.php:10
124
  #: app/features/ix/export_g_calendar.php:14 app/features/ix/import.php:10
125
  #: app/features/ix/import_f_calendar.php:10
126
+ #: app/features/ix/import_g_calendar.php:10
127
+ #: app/features/ix/import_meetup.php:10 app/features/ix/sync.php:10
128
  #: app/features/ix/thirdparty.php:10
129
  msgid "Google Cal. Import"
130
  msgstr "Google Agenda Import"
140
  #: app/features/contextual.php:95 app/features/ix/export.php:11
141
  #: app/features/ix/export_g_calendar.php:15 app/features/ix/import.php:11
142
  #: app/features/ix/import_f_calendar.php:11
143
+ #: app/features/ix/import_g_calendar.php:11
144
+ #: app/features/ix/import_meetup.php:11 app/features/ix/sync.php:11
145
  #: app/features/ix/thirdparty.php:11
146
  msgid "Google Cal. Export"
147
  msgstr "Google Agenda Export"
157
  #: app/features/contextual.php:102 app/features/ix/export.php:12
158
  #: app/features/ix/export_g_calendar.php:16 app/features/ix/import.php:12
159
  #: app/features/ix/import_f_calendar.php:12
160
+ #: app/features/ix/import_g_calendar.php:12
161
+ #: app/features/ix/import_meetup.php:12 app/features/ix/sync.php:12
162
  #: app/features/ix/thirdparty.php:12
163
  msgid "Facebook Cal. Import"
164
  msgstr "Facebook Cal. Import"
172
  msgstr ""
173
 
174
  #: app/features/contextual.php:117 app/features/mec/settings.php:42
175
+ #: app/features/mec/settings.php:271
176
  msgid "General Options"
177
  msgstr "Options générales"
178
 
179
  #: app/features/contextual.php:139 app/features/mec/settings.php:54
180
+ #: app/features/mec/settings.php:423
181
  msgid "Slugs/Permalinks"
182
  msgstr "Permaliens/Ancres"
183
 
184
  #: app/features/contextual.php:152 app/features/mec/settings.php:60
185
+ #: app/features/mec/settings.php:443
186
  msgid "Event Details/Single Event Page"
187
  msgstr "Détail de l'événement/Page de l'événement"
188
 
189
  #: app/features/contextual.php:166 app/features/mec/settings.php:66
190
+ #: app/features/mec/settings.php:484
191
  msgid "Currency Options"
192
  msgstr "Options de devise"
193
 
194
  #: app/features/contextual.php:182 app/features/mec/settings.php:78
195
+ #: app/features/mec/settings.php:551
196
  msgid "Google Maps Options"
197
  msgstr "Option du plugin Google Maps"
198
 
199
  #: app/features/contextual.php:244 app/features/mec/settings.php:84
200
+ #: app/features/mec/settings.php:625
201
  msgid "Google Recaptcha Options"
202
  msgstr "Options de Google reCAPTCHA"
203
 
204
  #: app/features/contextual.php:258 app/features/mec/settings.php:114
205
+ #: app/features/mec/settings.php:743
206
  msgid "Countdown Options"
207
  msgstr "Options du Compte à Rebours"
208
 
209
  #: app/features/contextual.php:268 app/features/mec/settings.php:120
210
+ #: app/features/mec/settings.php:764
211
  msgid "Social Networks"
212
  msgstr "Réseaux Sociaux"
213
 
214
  #: app/features/contextual.php:278 app/features/mec/settings.php:126
215
+ #: app/features/mec/settings.php:789
216
  msgid "Next Event Module"
217
  msgstr "Module événement suivant"
218
 
219
  #: app/features/contextual.php:286 app/features/mec/settings.php:132
220
+ #: app/features/mec/settings.php:817
221
  msgid "Frontend Event Submission"
222
  msgstr "Réglages du formulaire de création d’événements"
223
 
224
  #: app/features/contextual.php:298 app/features/events.php:580
225
+ #: app/features/mec/settings.php:144
226
  msgid "Exceptional Days"
227
  msgstr "Journées Exceptionnelles"
228
 
229
  #: app/features/contextual.php:308 app/features/events.php:263
230
+ #: app/features/mec/settings.php:156 app/features/mec/settings.php:991
231
  msgid "Booking"
232
  msgstr "Réservation"
233
 
234
+ #: app/features/contextual.php:318 app/features/mec/settings.php:162
235
+ #: app/features/mec/settings.php:1081
236
  msgid "Coupons"
237
  msgstr "Bons de réduction"
238
 
239
+ #: app/features/contextual.php:326 app/features/mec/settings.php:180
240
+ #: app/features/mec/settings.php:1222
241
  msgid "BuddyPress Integration"
242
  msgstr "Intégration BuddyPress"
243
 
244
+ #: app/features/contextual.php:334 app/features/mec/settings.php:186
245
+ #: app/features/mec/settings.php:1252
246
  msgid "Mailchimp Integration"
247
  msgstr "Intégration de Mailchimp"
248
 
249
+ #: app/features/contextual.php:346 app/features/mec/settings.php:192
250
+ #: app/features/mec/settings.php:1288
251
  msgid "MEC Activation"
252
  msgstr "Activation de l'extension"
253
 
254
+ #: app/features/events.php:132 app/features/ix/export.php:34
255
  #: app/features/mec/dashboard.php:92 app/skins/daily_view/tpl.php:79
256
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
257
  msgid "Events"
261
  #: app/features/mec/meta_boxes/display_options.php:708
262
  #: app/features/mec/meta_boxes/display_options.php:746
263
  #: app/features/mec/meta_boxes/display_options.php:775
264
+ #: app/features/profile/profile.php:28 app/skins/daily_view/tpl.php:80
265
+ #: app/skins/monthly_view/tpl.php:71 app/skins/yearly_view/tpl.php:69
266
  msgid "Event"
267
  msgstr "Événement"
268
 
274
  msgid "Add New Event"
275
  msgstr "Ajouter un nouvel événement"
276
 
277
+ #: app/features/events.php:136 app/features/ix.php:3175
278
+ #: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:54
279
  msgid "No events found!"
280
  msgstr "Aucun événement trouvé !"
281
 
306
  #: app/features/mec/meta_boxes/search_form.php:292
307
  #: app/features/mec/meta_boxes/search_form.php:332
308
  #: app/features/mec/meta_boxes/search_form.php:379
309
+ #: app/features/mec/meta_boxes/search_form.php:426 app/libraries/main.php:4167
310
+ #: app/libraries/skins.php:710 app/skins/single/default.php:156
311
+ #: app/skins/single/default.php:363 app/skins/single/m1.php:169
312
+ #: app/skins/single/m2.php:101 app/skins/single/modern.php:98
313
  msgid "Category"
314
  msgstr "Catégorie"
315
 
316
+ #: app/features/events.php:153 app/features/fes/form.php:510
317
  #: app/features/mec.php:198 app/features/mec/meta_boxes/filter.php:70
318
+ #: app/libraries/main.php:4166
319
  msgid "Categories"
320
  msgstr "Catégories"
321
 
387
  msgid "Event Details"
388
  msgstr "Détails"
389
 
390
+ #: app/features/events.php:296 app/features/events.php:1966
391
+ #: app/features/events.php:2010 app/features/fes/form.php:471
392
+ #: app/features/ix.php:2719 app/features/ix.php:2760
393
+ #: app/features/mec/settings.php:866 app/libraries/main.php:4199
394
  #: app/widgets/single.php:103
395
  msgid "Event Cost"
396
  msgstr "Tarif de l'événement"
397
 
398
+ #: app/features/events.php:299 app/features/fes/form.php:474
399
+ #: app/libraries/main.php:4200 app/skins/single/default.php:91
400
+ #: app/skins/single/default.php:298 app/skins/single/m1.php:49
401
+ #: app/skins/single/modern.php:184
402
  msgid "Cost"
403
  msgstr "Tarif"
404
 
410
  msgid "Guest Data"
411
  msgstr "Coordonnées de l'Invité"
412
 
413
+ #: app/features/events.php:380 app/features/fes/form.php:433
414
  #: app/features/labels.php:177 app/features/organizers.php:268
415
+ #: app/features/profile/profile.php:90 app/libraries/notifications.php:554
416
+ #: app/modules/booking/steps/form.php:27 app/modules/booking/steps/form.php:28
417
  msgid "Name"
418
  msgstr "Nom"
419
 
420
+ #: app/features/events.php:381 app/features/events.php:1249
421
+ #: app/features/fes/form.php:429 app/features/mec/regform.php:118
422
  #: app/features/organizers.php:110 app/features/organizers.php:150
423
+ #: app/features/profile/profile.php:93 app/features/speakers.php:119
424
+ #: app/features/speakers.php:179 app/libraries/main.php:1069
425
+ #: app/libraries/main.php:1134 app/libraries/main.php:2077
426
+ #: app/libraries/notifications.php:555 app/modules/booking/steps/form.php:31
427
+ #: app/modules/booking/steps/form.php:32 app/skins/single.php:216
428
+ #: app/skins/single/default.php:198 app/skins/single/default.php:405
429
+ #: app/skins/single/m1.php:107 app/skins/single/m2.php:39
430
+ #: app/skins/single/modern.php:38
431
  msgid "Email"
432
  msgstr "Email"
433
 
434
+ #: app/features/events.php:385 app/features/fes/form.php:223
435
  msgid "Date and Time"
436
  msgstr "Date et heure"
437
 
438
  #: app/features/events.php:389 app/features/events.php:393
439
+ #: app/features/events.php:1787 app/features/events.php:1966
440
+ #: app/features/events.php:2010 app/features/fes/form.php:227
441
+ #: app/features/fes/form.php:231 app/features/ix.php:2719
442
+ #: app/features/ix.php:2760 app/features/ix/import_g_calendar.php:38
443
  #: app/features/mec/dashboard.php:269
444
  #: app/features/mec/meta_boxes/display_options.php:42
445
  #: app/features/mec/meta_boxes/display_options.php:139
458
  msgstr "Date de début"
459
 
460
  #: app/features/events.php:421 app/features/events.php:461
461
+ #: app/features/events.php:866 app/features/events.php:884
462
+ #: app/features/events.php:969 app/features/events.php:987
463
+ #: app/features/fes/form.php:259 app/features/fes/form.php:299
464
  msgid "AM"
465
  msgstr "du matin"
466
 
467
  #: app/features/events.php:422 app/features/events.php:462
468
+ #: app/features/events.php:867 app/features/events.php:885
469
+ #: app/features/events.php:970 app/features/events.php:988
470
+ #: app/features/fes/form.php:260 app/features/fes/form.php:300
471
  msgid "PM"
472
  msgstr "de l'après midi"
473
 
474
  #: app/features/events.php:429 app/features/events.php:433
475
+ #: app/features/events.php:1788 app/features/events.php:1966
476
+ #: app/features/events.php:2010 app/features/fes/form.php:267
477
+ #: app/features/fes/form.php:271 app/features/ix.php:2719
478
+ #: app/features/ix.php:2760 app/features/ix/import_g_calendar.php:44
479
  #: app/features/mec/dashboard.php:270
480
  msgid "End Date"
481
  msgstr "Date de fin"
482
 
483
+ #: app/features/events.php:468 app/features/fes/form.php:306
484
  msgid "All Day Event"
485
  msgstr "Ne pas renseigner d'horaires"
486
 
487
+ #: app/features/events.php:471 app/features/fes/form.php:309
488
  msgid "Hide Event Time"
489
  msgstr "Masquer l'heure de début"
490
 
491
+ #: app/features/events.php:474 app/features/fes/form.php:312
492
  msgid "Hide Event End Time"
493
  msgstr "Masquer l'heure de fin"
494
 
495
+ #: app/features/events.php:478 app/features/fes/form.php:316
496
  msgid "Time Comment"
497
  msgstr "Commentaire sur l'horaire"
498
 
499
+ #: app/features/events.php:479 app/features/fes/form.php:317
500
  msgid ""
501
  "It shows next to event time on calendar. You can insert Timezone etc. in "
502
  "this field."
504
  "Ce commentaire s'affiche à droite de l'heure de l'événement. Vous pouvez "
505
  "insérer y insérer un fuseau horaire etc ..."
506
 
507
+ #: app/features/events.php:485 app/features/fes/form.php:323
508
  msgid "Event Repeating"
509
  msgstr "Événement récurrent"
510
 
511
+ #: app/features/events.php:489 app/features/fes/form.php:327
512
  msgid "Repeats"
513
  msgstr "Récurrence"
514
 
515
+ #: app/features/events.php:491 app/features/fes/form.php:329
516
  #: app/features/mec/dashboard.php:272 app/skins/full_calendar/tpl.php:68
517
  msgid "Daily"
518
  msgstr "Quotidienne"
519
 
520
+ #: app/features/events.php:492 app/features/fes/form.php:330
521
  msgid "Every Weekday"
522
  msgstr "Tous les jours de la semaine"
523
 
524
+ #: app/features/events.php:493 app/features/fes/form.php:331
525
  msgid "Every Weekend"
526
  msgstr "Tous les week-ends"
527
 
528
+ #: app/features/events.php:494 app/features/fes/form.php:332
529
  msgid "Certain Weekdays"
530
  msgstr "Certains jours de la semaine"
531
 
532
+ #: app/features/events.php:495 app/features/fes/form.php:333
533
  #: app/skins/full_calendar/tpl.php:67
534
  msgid "Weekly"
535
  msgstr "Hebdomadaire"
536
 
537
+ #: app/features/events.php:496 app/features/fes/form.php:334
538
  #: app/features/mec/dashboard.php:273 app/skins/full_calendar/tpl.php:66
539
  msgid "Monthly"
540
  msgstr "Mensuelle"
541
 
542
+ #: app/features/events.php:497 app/features/fes/form.php:335
543
  #: app/features/mec/dashboard.php:274 app/skins/full_calendar/tpl.php:65
544
  msgid "Yearly"
545
  msgstr "Annuelle"
546
 
547
+ #: app/features/events.php:498 app/features/fes/form.php:336
548
  msgid "Custom Days"
549
  msgstr "Choisir les dates"
550
 
551
+ #: app/features/events.php:502 app/features/fes/form.php:340
552
  msgid "Repeat Interval"
553
  msgstr "Interval de répétition"
554
 
555
+ #: app/features/events.php:503 app/features/fes/form.php:341
556
  msgid "Repeat interval"
557
  msgstr "Interval de répétition"
558
 
559
+ #: app/features/events.php:506 app/features/fes/form.php:344
560
  msgid "Week Days"
561
  msgstr "Jours de la semaine"
562
 
563
+ #: app/features/events.php:507 app/features/fes/form.php:345
564
+ #: app/libraries/main.php:403
565
  msgid "Monday"
566
  msgstr "Lundi"
567
 
568
+ #: app/features/events.php:508 app/features/fes/form.php:346
569
+ #: app/libraries/main.php:403
570
  msgid "Tuesday"
571
  msgstr "Mardi"
572
 
573
+ #: app/features/events.php:509 app/features/fes/form.php:347
574
+ #: app/libraries/main.php:403
575
  msgid "Wednesday"
576
  msgstr "Mercredi"
577
 
578
+ #: app/features/events.php:510 app/features/fes/form.php:348
579
+ #: app/libraries/main.php:403
580
  msgid "Thursday"
581
  msgstr "Jeudi"
582
 
583
+ #: app/features/events.php:511 app/features/fes/form.php:349
584
+ #: app/libraries/main.php:403
585
  msgid "Friday"
586
  msgstr "Vendredi"
587
 
588
+ #: app/features/events.php:512 app/features/fes/form.php:350
589
+ #: app/libraries/main.php:403
590
  msgid "Saturday"
591
  msgstr "Samedi"
592
 
593
+ #: app/features/events.php:513 app/features/fes/form.php:351
594
+ #: app/libraries/main.php:403
595
  msgid "Sunday"
596
  msgstr "Dimanche"
597
 
598
  #: app/features/events.php:518 app/features/events.php:590
599
+ #: app/features/fes/form.php:356 app/features/profile/profile.php:31
600
+ #: app/libraries/main.php:1592 app/modules/booking/steps/tickets.php:22
601
+ #: app/modules/next-event/details.php:86 app/skins/single/default.php:55
602
+ #: app/skins/single/default.php:262 app/skins/single/m1.php:16
603
+ #: app/skins/single/modern.php:151
604
  msgid "Date"
605
  msgstr "Date"
606
 
607
  #: app/features/events.php:519 app/features/events.php:591
608
+ #: app/features/events.php:667 app/features/events.php:722
609
+ #: app/features/events.php:843 app/features/events.php:914
610
+ #: app/features/events.php:1017 app/features/events.php:1068
611
+ #: app/features/events.php:1149 app/features/fes/form.php:357
612
  msgid "Add"
613
  msgstr "Ajouter"
614
 
615
+ #: app/features/events.php:520 app/features/fes/form.php:358
616
  msgid "Add certain days to event occurrence dates."
617
  msgstr "Ajoute la date sélectionnée aux dates d'affichage de l'événement ."
618
 
619
+ #: app/features/events.php:542 app/features/fes/form.php:380
620
  msgid "Ends Repeat"
621
  msgstr "Fin de l'événement"
622
 
623
+ #: app/features/events.php:546 app/features/fes/form.php:384
624
  msgid "Never"
625
  msgstr "Jamais"
626
 
627
+ #: app/features/events.php:551 app/features/fes/form.php:389
628
  msgid "On"
629
  msgstr "Date de fin"
630
 
631
+ #: app/features/events.php:558 app/features/fes/form.php:396
632
  msgid "After"
633
  msgstr "Après X répétitions"
634
 
635
+ #: app/features/events.php:560 app/features/fes/form.php:398
636
  msgid "Occurrences times"
637
  msgstr "Nombre de répétition de l'événement"
638
 
639
+ #: app/features/events.php:561 app/features/fes/form.php:399
640
  msgid ""
641
  "The event will finish after certain repeats. For example if you set it to "
642
  "10, the event will finish after 10 repeats."
657
  msgid "Day 1"
658
  msgstr ""
659
 
660
+ #: app/features/events.php:649 app/features/mec/settings.php:920
661
  #: app/skins/single.php:246
662
  msgid "Hourly Schedule"
663
  msgstr "Programme"
672
  "can add a different schedule for each day!"
673
  msgstr ""
674
 
675
+ #: app/features/events.php:659
676
  #, php-format
677
  msgid "Day %s"
678
  msgstr ""
679
 
680
+ #: app/features/events.php:662 app/features/events.php:675
681
+ #: app/features/events.php:695 app/features/events.php:717
682
+ #: app/features/events.php:733 app/features/events.php:1155
683
+ #: app/features/events.php:1177 app/features/events.php:1784
684
+ #: app/features/events.php:1966 app/features/events.php:2010
685
+ #: app/features/fes/form.php:216 app/features/ix.php:2719
686
+ #: app/features/ix.php:2760 app/features/mec/settings.php:1182
687
+ #: app/features/mec/settings.php:1202
688
  msgid "Title"
689
  msgstr "Titre"
690
 
691
+ #: app/features/events.php:664 app/features/events.php:677
692
+ #: app/features/events.php:697 app/features/events.php:719
693
+ #: app/features/events.php:735 app/features/events.php:909
694
+ #: app/features/events.php:925 app/features/events.php:939
695
+ #: app/features/events.php:1012 app/features/events.php:1029
696
+ #: app/features/events.php:1088 app/features/events.php:1113
697
+ #: app/features/events.php:1166 app/features/events.php:1188
698
+ #: app/features/fes/list.php:72 app/features/mec/settings.php:1131
699
+ #: app/features/mec/settings.php:1154 app/features/mec/settings.php:1193
700
+ #: app/features/mec/settings.php:1213 app/libraries/main.php:2056
701
+ #: app/libraries/main.php:2085 app/libraries/main.php:2114
702
+ #: app/libraries/main.php:2143 app/libraries/main.php:2165
703
+ #: app/libraries/main.php:2196 app/libraries/main.php:2240
704
+ #: app/libraries/main.php:2284 app/libraries/main.php:2331
705
+ #: app/libraries/main.php:2369
706
+ msgid "Remove"
707
+ msgstr "Supprimer"
708
+
709
+ #: app/features/events.php:668 app/features/events.php:723
710
  msgid "Add new hourly schedule row"
711
  msgstr "Ajouter un programme"
712
 
713
+ #: app/features/events.php:673 app/features/events.php:693
714
+ #: app/features/events.php:731
715
  msgid "From e.g. 8:15"
716
  msgstr "Par exemple 08:15"
717
 
718
+ #: app/features/events.php:674 app/features/events.php:694
719
+ #: app/features/events.php:732
720
  msgid "To e.g. 8:45"
721
  msgstr "Ex : 8:45"
722
 
723
+ #: app/features/events.php:676 app/features/events.php:696
724
+ #: app/features/events.php:734 app/features/events.php:890
725
+ #: app/features/events.php:993
726
  msgid "Description"
727
  msgstr "Description"
728
 
729
+ #: app/features/events.php:680 app/features/events.php:700
730
+ #: app/features/events.php:738 app/features/fes/form.php:603
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
731
  #: app/features/mec.php:206 app/features/mec/settings.php:72
732
+ #: app/features/mec/settings.php:914 app/features/speakers.php:57
733
+ #: app/libraries/main.php:4174 app/modules/speakers/details.php:18
734
  msgid "Speakers"
735
  msgstr ""
736
 
737
+ #: app/features/events.php:714 app/features/events.php:718
738
  msgid "Day :dd:"
739
  msgstr ""
740
 
741
+ #: app/features/events.php:765 app/features/fes/form.php:448
742
+ #: app/features/mec/settings.php:860
743
  msgid "Event Links"
744
  msgstr "Liens de l'évenements"
745
 
746
+ #: app/features/events.php:767 app/features/fes/form.php:450
747
+ #: app/libraries/main.php:4197
748
  msgid "Event Link"
749
  msgstr "Lien de l'événement"
750
 
751
+ #: app/features/events.php:768 app/features/events.php:773
752
+ #: app/features/fes/form.php:451 app/features/fes/form.php:456
753
  msgid "eg. http://yoursite.com/your-event"
754
  msgstr "ex : http://www.votre-site.fr"
755
 
756
+ #: app/features/events.php:769 app/features/fes/form.php:452
757
  msgid ""
758
  "If you fill it, it will be replaced instead of default event page link. "
759
  "Insert full link including http(s)://"
760
  msgstr "Lien principal. Affiché sur la page de l'événement"
761
 
762
+ #: app/features/events.php:772 app/features/fes/form.php:455
763
+ #: app/libraries/main.php:4198 app/skins/single/default.php:105
764
+ #: app/skins/single/default.php:312 app/skins/single/m1.php:190
765
+ #: app/skins/single/m2.php:123 app/skins/single/modern.php:120
766
  #: app/widgets/single.php:107
767
  msgid "More Info"
768
  msgstr "Plus d'Infos"
769
 
770
+ #: app/features/events.php:774 app/features/fes/form.php:457
771
  msgid "More Information"
772
  msgstr "Plus d'Informations"
773
 
774
+ #: app/features/events.php:776 app/features/fes/form.php:459
775
  msgid "Current Window"
776
  msgstr "Ouvrir dans l'onglet actuel"
777
 
778
+ #: app/features/events.php:777 app/features/fes/form.php:460
779
  msgid "New Window"
780
  msgstr "Ouvrir dans un nouvel onglet"
781
 
782
+ #: app/features/events.php:779 app/features/fes/form.php:462
783
  msgid ""
784
  "If you fill it, it will be shown in event details page as an optional link. "
785
  "Insert full link including http(s)://"
786
  msgstr "Lien Optionnel. Affiché sur la page de Détails"
787
 
788
+ #: app/features/events.php:810
789
  msgid "Total booking limits"
790
  msgstr "Nombre limite de réservation"
791
 
792
+ #: app/features/events.php:815 app/features/events.php:907
793
+ #: app/features/events.php:1010 app/modules/booking/default.php:81
794
+ #: app/modules/booking/steps/tickets.php:40 app/skins/available_spot/tpl.php:99
795
  msgid "Unlimited"
796
  msgstr "Illimité"
797
 
798
+ #: app/features/events.php:817
799
  msgid "100"
800
  msgstr "100"
801
 
802
+ #: app/features/events.php:835 app/libraries/book.php:60
803
+ #: app/libraries/main.php:4202 app/modules/booking/steps/tickets.php:40
804
  msgid "Tickets"
805
  msgstr "Billets"
806
 
807
+ #: app/features/events.php:838
808
  msgid ""
809
  "You're translating an event so MEC will use the original event for tickets "
810
  "and booking. You can only translate the ticket name and description. Please "
811
  "define exact tickets that you defined in the original event here."
812
  msgstr ""
813
 
814
+ #: app/features/events.php:849 app/features/events.php:952
815
  msgid "Ticket Name"
816
  msgstr "Nom du billet"
817
 
818
+ #: app/features/events.php:853 app/features/events.php:956
819
+ #: app/features/events.php:1966 app/features/events.php:2010
820
+ #: app/features/ix.php:2719 app/features/ix.php:2760
821
  msgid "Start Time"
822
  msgstr "Début"
823
 
824
+ #: app/features/events.php:871 app/features/events.php:974
825
+ #: app/features/events.php:1966 app/features/events.php:2010
826
+ #: app/features/ix.php:2719 app/features/ix.php:2760
827
  msgid "End Time"
828
  msgstr "Fin"
829
 
830
+ #: app/features/events.php:894 app/features/events.php:923
831
+ #: app/features/events.php:937 app/features/events.php:997
832
+ #: app/features/events.php:1027 app/features/events.php:1159
833
+ #: app/features/events.php:1181 app/features/mec/settings.php:1186
834
+ #: app/features/mec/settings.php:1206
835
  msgid "Price"
836
  msgstr "Tarif"
837
 
838
+ #: app/features/events.php:895 app/features/events.php:998
839
  msgid "Insert 0 for free ticket. Only numbers please."
840
  msgstr "0 = Participation Gratuite. Seulement un numéro SVP."
841
 
842
+ #: app/features/events.php:898 app/features/events.php:1001
843
  msgid "Price Label"
844
  msgstr "Libellé du prix"
845
 
846
+ #: app/features/events.php:899 app/features/events.php:1002
847
  msgid "For showing on website. e.g. $15"
848
  msgstr "Pour affichage sur le site Web. Par exemple 15 €"
849
 
850
+ #: app/features/events.php:903 app/features/events.php:1006
851
  msgid "Available Tickets"
852
  msgstr "Place(s) disponible(s)"
853
 
854
+ #: app/features/events.php:913 app/features/events.php:1016
855
+ #, fuzzy
856
+ #| msgid "Price Label"
857
+ msgid "Price per Date"
858
+ msgstr "Libellé du prix"
859
+
860
+ #: app/features/events.php:921 app/features/events.php:935
861
+ #: app/features/events.php:1025 app/features/ix/import_f_calendar.php:36
862
+ #: app/features/ix/import_g_calendar.php:51
863
+ #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
864
+ msgid "Start"
865
+ msgstr "Démarrer"
866
+
867
+ #: app/features/events.php:922 app/features/events.php:936
868
+ #: app/features/events.php:1026
869
+ #, fuzzy
870
+ #| msgid "Enabled"
871
+ msgid "End"
872
+ msgstr "Activé"
873
+
874
+ #: app/features/events.php:924 app/features/events.php:938
875
+ #: app/features/events.php:1028 app/features/labels.php:60
876
+ #: app/features/mec/meta_boxes/display_options.php:658
877
+ #: app/features/mec/meta_boxes/search_form.php:52
878
+ #: app/features/mec/meta_boxes/search_form.php:99
879
+ #: app/features/mec/meta_boxes/search_form.php:146
880
+ #: app/features/mec/meta_boxes/search_form.php:219
881
+ #: app/features/mec/meta_boxes/search_form.php:266
882
+ #: app/features/mec/meta_boxes/search_form.php:313
883
+ #: app/features/mec/meta_boxes/search_form.php:353
884
+ #: app/features/mec/meta_boxes/search_form.php:400
885
+ #: app/features/mec/meta_boxes/search_form.php:447 app/libraries/skins.php:788
886
+ msgid "Label"
887
+ msgstr "Label"
888
+
889
+ #: app/features/events.php:1058
890
  msgid "Fees"
891
  msgstr "Frais"
892
 
893
+ #: app/features/events.php:1063 app/features/events.php:1144
894
+ #: app/features/events.php:1219
895
  msgid "Inherit from global options"
896
  msgstr "Hériter des options globales"
897
 
898
+ #: app/features/events.php:1074 app/features/events.php:1099
899
+ #: app/features/mec/settings.php:1117 app/features/mec/settings.php:1140
900
  msgid "Fee Title"
901
  msgstr "Titre"
902
 
903
+ #: app/features/events.php:1078 app/features/events.php:1103
904
+ #: app/features/mec/settings.php:1121 app/features/mec/settings.php:1144
905
  msgid "Amount"
906
  msgstr "Montant"
907
 
908
+ #: app/features/events.php:1079 app/features/events.php:1104
909
+ #: app/features/mec/settings.php:1122 app/features/mec/settings.php:1145
910
  msgid ""
911
  "Fee amount, considered as fixed amount if you set the type to amount "
912
  "otherwise considered as percentage"
914
  "Considéré comme montant fixe si vous définissez le type de montant. Sinon "
915
  "considéré comme pourcentage à ajouter au prix"
916
 
917
+ #: app/features/events.php:1083 app/features/events.php:1108
918
+ #: app/features/mec/settings.php:1126 app/features/mec/settings.php:1149
919
  msgid "Percent"
920
  msgstr "Pourcentage"
921
 
922
+ #: app/features/events.php:1084 app/features/events.php:1109
923
+ #: app/features/mec/settings.php:1127 app/features/mec/settings.php:1150
924
  msgid "Amount (Per Ticket)"
925
  msgstr "Montant (par Billet)"
926
 
927
+ #: app/features/events.php:1085 app/features/events.php:1110
928
+ #: app/features/mec/settings.php:1128 app/features/mec/settings.php:1151
929
  msgid "Amount (Per Booking)"
930
  msgstr "Montant (par réservation)"
931
 
932
+ #: app/features/events.php:1139 app/features/mec/settings.php:938
933
  msgid "Ticket Variations / Options"
934
  msgstr ""
935
 
936
+ #: app/features/events.php:1160 app/features/events.php:1182
937
+ #: app/features/mec/settings.php:1187 app/features/mec/settings.php:1207
938
  #, fuzzy
939
  #| msgid "Option"
940
  msgid "Option Price"
941
  msgstr "Option"
942
 
943
+ #: app/features/events.php:1163 app/features/events.php:1185
944
+ #: app/features/mec/settings.php:1190 app/features/mec/settings.php:1210
945
  #, fuzzy
946
  #| msgid "Amount (Per Ticket)"
947
  msgid "Maximum Per