Version Description
- Added: Limit option to full calendar skin in order to show more than 12 events per day
- Added: Recurring rule to the ICS export on event details page
- Added: End repeat option for advanced repeat type
- Fixed: Attendee module on showing count of tickets
- Fixed: "Invalid Request" notification in Booking form
- Fixed: Frontend submission advance repeating style
- Fixed: RTL settings
- Fixed: Addon notifications style
- Fixed: Countdown mobile/tablet style
Download this release
Release Info
Developer | webnus |
Plugin | Modern Events Calendar Lite |
Version | 4.3.6 |
Comparing to | |
See all releases |
Code changes from version 4.3.5 to 4.3.6
- app/features/contextual.php +16 -16
- app/features/events.php +83 -59
- app/features/fes.php +27 -0
- app/features/fes/form.php +31 -30
- app/features/ix.php +1 -84
- app/features/labels.php +1 -0
- app/features/mec/meta_boxes/display_options.php +4 -0
- app/features/mec/regform.php +31 -31
- app/features/mec/styling.php +9 -9
- app/features/mec/support-page.php +3 -3
- app/libraries/book.php +9 -11
- app/libraries/main.php +119 -3
- app/libraries/notifications.php +2 -1
- app/libraries/render.php +9 -3
- app/modules/attendees-list/details.php +6 -4
- app/modules/booking/default.php +7 -0
- app/modules/booking/steps/form.php +2 -2
- app/modules/weather/details.php +4 -4
- app/skins/agenda/render.php +2 -2
- app/skins/available_spot/tpl.php +2 -2
- app/skins/countdown/tpl.php +2 -2
- app/skins/cover/tpl.php +2 -2
- app/skins/daily_view/render.php +2 -2
- app/skins/full_calendar.php +5 -0
- app/skins/grid/render.php +3 -3
- app/skins/monthly_view/calendar.php +2 -2
- app/skins/monthly_view/calendar_clean.php +2 -2
- app/skins/single.php +1 -1
- app/skins/timetable/render.php +4 -4
- app/skins/weekly_view/render.php +2 -2
- app/skins/yearly_view/render.php +2 -2
- assets/css/backend.css +164 -1
- assets/css/backend.min.css +1 -1
- assets/css/frontend.css +113 -42
- assets/css/frontend.min.css +1 -1
- assets/js/events.js +1 -1
- assets/js/frontend.js +64 -60
- changelog.txt +13 -2
- languages/modern-events-calendar-lite-de_DE.mo +0 -0
- languages/modern-events-calendar-lite-de_DE.po +1088 -1088
- languages/modern-events-calendar-lite-en_US.mo +0 -0
- languages/modern-events-calendar-lite-en_US.po +1045 -1045
- languages/modern-events-calendar-lite-es_ES.mo +0 -0
- languages/modern-events-calendar-lite-es_ES.po +666 -681
app/features/contextual.php
CHANGED
@@ -114,7 +114,7 @@ class MEC_feature_contextual extends MEC_base
|
|
114 |
?>
|
115 |
<div class="mec-form-row" id="mec_setting_contextual">
|
116 |
<ul class="mec-accordion mec-message-categories" id="mec_message_categories_wp">
|
117 |
-
<li class="mec-acc-label" data-key="genral_setting" data-status="close"><?php _e('General Options',
|
118 |
<ul id="mec-acc-genral_setting" style="display: none;">
|
119 |
<h2 class="dark-text">GENERAL OPTIONS<hr></h2>
|
120 |
<ol class="list-w">
|
@@ -136,7 +136,7 @@ class MEC_feature_contextual extends MEC_base
|
|
136 |
</ul>
|
137 |
|
138 |
<ul class="mec-accordion mec-message-categories" id="mec_message_categories_wp">
|
139 |
-
<li class="mec-acc-label" data-key="slugs" data-status="close"><?php _e('Slugs/Permalinks',
|
140 |
<ul id="mec-acc-slugs" style="display: none;">
|
141 |
<h2 class="dark-text">SLUG OPTIONS<hr></h2>
|
142 |
<strong>Setup slug of category and main events slug.</strong>
|
@@ -149,7 +149,7 @@ class MEC_feature_contextual extends MEC_base
|
|
149 |
</ul>
|
150 |
|
151 |
<ul class="mec-accordion mec-message-categories" id="mec_message_categories_wp">
|
152 |
-
<li class="mec-acc-label" data-key="event_detail" data-status="close"><?php _e('Event Details/Single Event Page',
|
153 |
<ul id="mec-acc-event_detail" style="display: none;">
|
154 |
<h2 class="dark-text">Event Details/Single Event Page<hr></h2>
|
155 |
<ol class="list-w">
|
@@ -163,7 +163,7 @@ class MEC_feature_contextual extends MEC_base
|
|
163 |
</ul>
|
164 |
|
165 |
<ul class="mec-accordion mec-message-categories" id="mec_message_categories_wp">
|
166 |
-
<li class="mec-acc-label" data-key="currency" data-status="close"><?php _e('Currency Options',
|
167 |
<ul id="mec-acc-currency" style="display: none;">
|
168 |
<h2 class="dark-text">CURRENCY OPTIONS <hr></h2>
|
169 |
<strong>Setup your event calendar currency option.</strong>
|
@@ -179,7 +179,7 @@ class MEC_feature_contextual extends MEC_base
|
|
179 |
</ul>
|
180 |
|
181 |
<ul class="mec-accordion mec-message-categories" id="mec_message_categories_wp">
|
182 |
-
<li class="mec-acc-label" data-key="g_map" data-status="close"><?php _e('Google Maps Options',
|
183 |
<ul id="mec-acc-g_map" style="display: none;">
|
184 |
<h2 class="dark-text">GOOGLE MAPS OPTIONS<hr></h2>
|
185 |
<p><strong>Modern Event Calendar is Google map integrated for feature access, modern view calendar needs api key from Google to contract with Google and fetch your requested map. For activation, check the "Show Google Maps On Event Page".</strong>
|
@@ -241,7 +241,7 @@ class MEC_feature_contextual extends MEC_base
|
|
241 |
</ul>
|
242 |
|
243 |
<ul class="mec-accordion mec-message-categories" id="mec_message_categories_wp">
|
244 |
-
<li class="mec-acc-label" data-key="g_recaptcha" data-status="close"><?php _e('Google Recaptcha Options',
|
245 |
<ul id="mec-acc-g_recaptcha" style="display: none;">
|
246 |
<h2 class="dark-text">GOOGLE RECAPTCHA OPTIONS<hr></h2>
|
247 |
<strong>Easily setup your captcha and security on mec by google captcha.</strong>
|
@@ -255,7 +255,7 @@ class MEC_feature_contextual extends MEC_base
|
|
255 |
</ul>
|
256 |
|
257 |
<ul class="mec-accordion mec-message-categories" id="mec_message_categories_wp">
|
258 |
-
<li class="mec-acc-label" data-key="countdown" data-status="close"><?php _e('Countdown Options',
|
259 |
<ul id="mec-acc-countdown" style="display: none;">
|
260 |
<h2 class="dark-text">COUNTDOWN OPTIONS<hr></h2>
|
261 |
<strong>1- Shows Event Countdown in event single.</strong><br />
|
@@ -265,7 +265,7 @@ class MEC_feature_contextual extends MEC_base
|
|
265 |
</ul>
|
266 |
|
267 |
<ul class="mec-accordion mec-message-categories" id="mec_message_categories_wp">
|
268 |
-
<li class="mec-acc-label" data-key="social" data-status="close"><?php _e('Social Networks',
|
269 |
<ul id="mec-acc-social" style="display: none;">
|
270 |
<h2 class="dark-text">Social Networks <hr></h2>
|
271 |
<strong>Show social networks in event single. (For better displaying in grid view, you should just select 3 of them)</strong>
|
@@ -275,7 +275,7 @@ class MEC_feature_contextual extends MEC_base
|
|
275 |
</ul>
|
276 |
|
277 |
<ul class="mec-accordion mec-message-categories" id="mec_message_categories_wp">
|
278 |
-
<li class="mec-acc-label" data-key="next_event" data-status="close"><?php _e('Next Event Module',
|
279 |
<ul id="mec-acc-next_event" style="display: none;">
|
280 |
<h2 class="dark-text">Next Event Module<hr></h2>
|
281 |
<iframe width="600" height="420" src="https://www.youtube.com/embed/2CsOdgkBIms" frameborder="0" allowfullscreen></iframe>
|
@@ -283,7 +283,7 @@ class MEC_feature_contextual extends MEC_base
|
|
283 |
</ul>
|
284 |
|
285 |
<ul class="mec-accordion mec-message-categories" id="mec_message_categories_wp">
|
286 |
-
<li class="mec-acc-label" data-key="fes" data-status="close"><?php _e('Frontend Event Submission',
|
287 |
<ul id="mec-acc-fes" style="display: none;">
|
288 |
<h2 class="dark-text">Front Event Submission<hr></h2>
|
289 |
<ol class="list-w">
|
@@ -295,7 +295,7 @@ class MEC_feature_contextual extends MEC_base
|
|
295 |
</ul>
|
296 |
|
297 |
<ul class="mec-accordion mec-message-categories" id="mec_message_categories_wp">
|
298 |
-
<li class="mec-acc-label" data-key="exceptional" data-status="close"><?php _e('Exceptional Days',
|
299 |
<ul id="mec-acc-exceptional" style="display: none;">
|
300 |
<h2 class="dark-text">Exceptional Days<hr></h2>
|
301 |
<strong>Show exceptional days option on Add/Edit events page</strong>
|
@@ -305,7 +305,7 @@ class MEC_feature_contextual extends MEC_base
|
|
305 |
</ul>
|
306 |
|
307 |
<ul class="mec-accordion mec-message-categories" id="mec_message_categories_wp">
|
308 |
-
<li class="mec-acc-label" data-key="booking" data-status="close"><?php _e('Booking',
|
309 |
<ul id="mec-acc-booking" style="display: none;">
|
310 |
<h2 class="dark-text">Booking<hr></h2>
|
311 |
<strong>By enabling booking module service, Modern Event calendar will be able to handle ticket service with registration form you can easily build up your own form to get information you need before processing payment.</strong>
|
@@ -315,7 +315,7 @@ class MEC_feature_contextual extends MEC_base
|
|
315 |
</ul>
|
316 |
|
317 |
<ul class="mec-accordion mec-message-categories" id="mec_message_categories_wp">
|
318 |
-
<li class="mec-acc-label" data-key="coupon" data-status="close"><?php _e('Coupons',
|
319 |
<ul id="mec-acc-coupon" style="display: none;">
|
320 |
<h2 class="dark-text">Coupons<hr></h2>
|
321 |
<strong>When you enable the option Coupons in Dashboard > Booking, an option would be added ‘Coupons’ which you can add coupons<br />Show coupons in event single.</strong>
|
@@ -323,7 +323,7 @@ class MEC_feature_contextual extends MEC_base
|
|
323 |
</ul>
|
324 |
|
325 |
<ul class="mec-accordion mec-message-categories" id="mec_message_categories_wp">
|
326 |
-
<li class="mec-acc-label" data-key="buddy" data-status="close"><?php _e('BuddyPress Integration',
|
327 |
<ul id="mec-acc-buddy" style="display: none;">
|
328 |
<h2 class="dark-text">Buddypress<hr></h2>
|
329 |
<iframe width="600" height="300" src="https://www.youtube.com/embed/ZNZOSgXO16o" frameborder="0" allowfullscreen></iframe>
|
@@ -331,7 +331,7 @@ class MEC_feature_contextual extends MEC_base
|
|
331 |
</ul>
|
332 |
|
333 |
<ul class="mec-accordion mec-message-categories" id="mec_message_categories_wp">
|
334 |
-
<li class="mec-acc-label" data-key="mailchimp" data-status="close"><?php _e('Mailchimp Integration',
|
335 |
<ul id="mec-acc-mailchimp" style="display: none;">
|
336 |
<h2 class="dark-text">Mailchimp Integration<hr></h2>
|
337 |
<strong>API Key : Mailchimp account > Extras > API Key > Copy APIKey</strong>
|
@@ -343,7 +343,7 @@ class MEC_feature_contextual extends MEC_base
|
|
343 |
</ul>
|
344 |
|
345 |
<ul class="mec-accordion mec-message-categories" id="mec_message_categories_wp">
|
346 |
-
<li class="mec-acc-label" data-key="activation" data-status="close"><?php _e('MEC Activation',
|
347 |
<ul id="mec-acc-activation" style="display: none;">
|
348 |
<h2 class="dark-text">How to Activate Plugin<hr></h2>
|
349 |
<p>To activate the M.E.Calendar, you should enter the exact purchase code without using any space in <strong>M.E.Calendar > Setting > Settings (bottom of the page)</strong>, then Save Changes. By refreshing the page, your purchase code would be verified. </p>
|
114 |
?>
|
115 |
<div class="mec-form-row" id="mec_setting_contextual">
|
116 |
<ul class="mec-accordion mec-message-categories" id="mec_message_categories_wp">
|
117 |
+
<li class="mec-acc-label" data-key="genral_setting" data-status="close"><?php _e('General Options','modern-events-calendar-lite'); ?></li>
|
118 |
<ul id="mec-acc-genral_setting" style="display: none;">
|
119 |
<h2 class="dark-text">GENERAL OPTIONS<hr></h2>
|
120 |
<ol class="list-w">
|
136 |
</ul>
|
137 |
|
138 |
<ul class="mec-accordion mec-message-categories" id="mec_message_categories_wp">
|
139 |
+
<li class="mec-acc-label" data-key="slugs" data-status="close"><?php _e('Slugs/Permalinks','modern-events-calendar-lite'); ?></li>
|
140 |
<ul id="mec-acc-slugs" style="display: none;">
|
141 |
<h2 class="dark-text">SLUG OPTIONS<hr></h2>
|
142 |
<strong>Setup slug of category and main events slug.</strong>
|
149 |
</ul>
|
150 |
|
151 |
<ul class="mec-accordion mec-message-categories" id="mec_message_categories_wp">
|
152 |
+
<li class="mec-acc-label" data-key="event_detail" data-status="close"><?php _e('Event Details/Single Event Page','modern-events-calendar-lite'); ?></li>
|
153 |
<ul id="mec-acc-event_detail" style="display: none;">
|
154 |
<h2 class="dark-text">Event Details/Single Event Page<hr></h2>
|
155 |
<ol class="list-w">
|
163 |
</ul>
|
164 |
|
165 |
<ul class="mec-accordion mec-message-categories" id="mec_message_categories_wp">
|
166 |
+
<li class="mec-acc-label" data-key="currency" data-status="close"><?php _e('Currency Options','modern-events-calendar-lite'); ?></li>
|
167 |
<ul id="mec-acc-currency" style="display: none;">
|
168 |
<h2 class="dark-text">CURRENCY OPTIONS <hr></h2>
|
169 |
<strong>Setup your event calendar currency option.</strong>
|
179 |
</ul>
|
180 |
|
181 |
<ul class="mec-accordion mec-message-categories" id="mec_message_categories_wp">
|
182 |
+
<li class="mec-acc-label" data-key="g_map" data-status="close"><?php _e('Google Maps Options','modern-events-calendar-lite'); ?></li>
|
183 |
<ul id="mec-acc-g_map" style="display: none;">
|
184 |
<h2 class="dark-text">GOOGLE MAPS OPTIONS<hr></h2>
|
185 |
<p><strong>Modern Event Calendar is Google map integrated for feature access, modern view calendar needs api key from Google to contract with Google and fetch your requested map. For activation, check the "Show Google Maps On Event Page".</strong>
|
241 |
</ul>
|
242 |
|
243 |
<ul class="mec-accordion mec-message-categories" id="mec_message_categories_wp">
|
244 |
+
<li class="mec-acc-label" data-key="g_recaptcha" data-status="close"><?php _e('Google Recaptcha Options','modern-events-calendar-lite'); ?></li>
|
245 |
<ul id="mec-acc-g_recaptcha" style="display: none;">
|
246 |
<h2 class="dark-text">GOOGLE RECAPTCHA OPTIONS<hr></h2>
|
247 |
<strong>Easily setup your captcha and security on mec by google captcha.</strong>
|
255 |
</ul>
|
256 |
|
257 |
<ul class="mec-accordion mec-message-categories" id="mec_message_categories_wp">
|
258 |
+
<li class="mec-acc-label" data-key="countdown" data-status="close"><?php _e('Countdown Options','modern-events-calendar-lite'); ?></li>
|
259 |
<ul id="mec-acc-countdown" style="display: none;">
|
260 |
<h2 class="dark-text">COUNTDOWN OPTIONS<hr></h2>
|
261 |
<strong>1- Shows Event Countdown in event single.</strong><br />
|
265 |
</ul>
|
266 |
|
267 |
<ul class="mec-accordion mec-message-categories" id="mec_message_categories_wp">
|
268 |
+
<li class="mec-acc-label" data-key="social" data-status="close"><?php _e('Social Networks','modern-events-calendar-lite'); ?></li>
|
269 |
<ul id="mec-acc-social" style="display: none;">
|
270 |
<h2 class="dark-text">Social Networks <hr></h2>
|
271 |
<strong>Show social networks in event single. (For better displaying in grid view, you should just select 3 of them)</strong>
|
275 |
</ul>
|
276 |
|
277 |
<ul class="mec-accordion mec-message-categories" id="mec_message_categories_wp">
|
278 |
+
<li class="mec-acc-label" data-key="next_event" data-status="close"><?php _e('Next Event Module','modern-events-calendar-lite'); ?></li>
|
279 |
<ul id="mec-acc-next_event" style="display: none;">
|
280 |
<h2 class="dark-text">Next Event Module<hr></h2>
|
281 |
<iframe width="600" height="420" src="https://www.youtube.com/embed/2CsOdgkBIms" frameborder="0" allowfullscreen></iframe>
|
283 |
</ul>
|
284 |
|
285 |
<ul class="mec-accordion mec-message-categories" id="mec_message_categories_wp">
|
286 |
+
<li class="mec-acc-label" data-key="fes" data-status="close"><?php _e('Frontend Event Submission','modern-events-calendar-lite'); ?></li>
|
287 |
<ul id="mec-acc-fes" style="display: none;">
|
288 |
<h2 class="dark-text">Front Event Submission<hr></h2>
|
289 |
<ol class="list-w">
|
295 |
</ul>
|
296 |
|
297 |
<ul class="mec-accordion mec-message-categories" id="mec_message_categories_wp">
|
298 |
+
<li class="mec-acc-label" data-key="exceptional" data-status="close"><?php _e('Exceptional Days','modern-events-calendar-lite'); ?></li>
|
299 |
<ul id="mec-acc-exceptional" style="display: none;">
|
300 |
<h2 class="dark-text">Exceptional Days<hr></h2>
|
301 |
<strong>Show exceptional days option on Add/Edit events page</strong>
|
305 |
</ul>
|
306 |
|
307 |
<ul class="mec-accordion mec-message-categories" id="mec_message_categories_wp">
|
308 |
+
<li class="mec-acc-label" data-key="booking" data-status="close"><?php _e('Booking','modern-events-calendar-lite'); ?></li>
|
309 |
<ul id="mec-acc-booking" style="display: none;">
|
310 |
<h2 class="dark-text">Booking<hr></h2>
|
311 |
<strong>By enabling booking module service, Modern Event calendar will be able to handle ticket service with registration form you can easily build up your own form to get information you need before processing payment.</strong>
|
315 |
</ul>
|
316 |
|
317 |
<ul class="mec-accordion mec-message-categories" id="mec_message_categories_wp">
|
318 |
+
<li class="mec-acc-label" data-key="coupon" data-status="close"><?php _e('Coupons','modern-events-calendar-lite'); ?></li>
|
319 |
<ul id="mec-acc-coupon" style="display: none;">
|
320 |
<h2 class="dark-text">Coupons<hr></h2>
|
321 |
<strong>When you enable the option Coupons in Dashboard > Booking, an option would be added ‘Coupons’ which you can add coupons<br />Show coupons in event single.</strong>
|
323 |
</ul>
|
324 |
|
325 |
<ul class="mec-accordion mec-message-categories" id="mec_message_categories_wp">
|
326 |
+
<li class="mec-acc-label" data-key="buddy" data-status="close"><?php _e('BuddyPress Integration','modern-events-calendar-lite'); ?></li>
|
327 |
<ul id="mec-acc-buddy" style="display: none;">
|
328 |
<h2 class="dark-text">Buddypress<hr></h2>
|
329 |
<iframe width="600" height="300" src="https://www.youtube.com/embed/ZNZOSgXO16o" frameborder="0" allowfullscreen></iframe>
|
331 |
</ul>
|
332 |
|
333 |
<ul class="mec-accordion mec-message-categories" id="mec_message_categories_wp">
|
334 |
+
<li class="mec-acc-label" data-key="mailchimp" data-status="close"><?php _e('Mailchimp Integration','modern-events-calendar-lite'); ?></li>
|
335 |
<ul id="mec-acc-mailchimp" style="display: none;">
|
336 |
<h2 class="dark-text">Mailchimp Integration<hr></h2>
|
337 |
<strong>API Key : Mailchimp account > Extras > API Key > Copy APIKey</strong>
|
343 |
</ul>
|
344 |
|
345 |
<ul class="mec-accordion mec-message-categories" id="mec_message_categories_wp">
|
346 |
+
<li class="mec-acc-label" data-key="activation" data-status="close"><?php _e('MEC Activation','modern-events-calendar-lite'); ?></li>
|
347 |
<ul id="mec-acc-activation" style="display: none;">
|
348 |
<h2 class="dark-text">How to Activate Plugin<hr></h2>
|
349 |
<p>To activate the M.E.Calendar, you should enter the exact purchase code without using any space in <strong>M.E.Calendar > Setting > Settings (bottom of the page)</strong>, then Save Changes. By refreshing the page, your purchase code would be verified. </p>
|
app/features/events.php
CHANGED
@@ -822,65 +822,6 @@ class MEC_feature_events extends MEC_base
|
|
822 |
</div>
|
823 |
</div>
|
824 |
</div>
|
825 |
-
<div id="mec_end_wrapper">
|
826 |
-
<div class="mec-form-row">
|
827 |
-
<label for="mec_repeat_ends_never"><h4
|
828 |
-
class="mec-title"><?php _e('Ends Repeat', 'modern-events-calendar-lite'); ?></h4></label>
|
829 |
-
</div>
|
830 |
-
<div class="mec-form-row">
|
831 |
-
<input
|
832 |
-
<?php
|
833 |
-
if ($mec_repeat_end == 'never') {
|
834 |
-
echo 'checked="checked"';
|
835 |
-
}
|
836 |
-
?>
|
837 |
-
type="radio" value="never" name="mec[date][repeat][end]"
|
838 |
-
id="mec_repeat_ends_never"/>
|
839 |
-
<label for="mec_repeat_ends_never"><?php _e('Never', 'modern-events-calendar-lite'); ?></label>
|
840 |
-
</div>
|
841 |
-
<div class="mec-form-row">
|
842 |
-
<div class="mec-col-3">
|
843 |
-
<input
|
844 |
-
<?php
|
845 |
-
if ($mec_repeat_end == 'date') {
|
846 |
-
echo 'checked="checked"';
|
847 |
-
}
|
848 |
-
?>
|
849 |
-
type="radio" value="date" name="mec[date][repeat][end]"
|
850 |
-
id="mec_repeat_ends_date"/>
|
851 |
-
<label for="mec_repeat_ends_date"><?php _e('On', 'modern-events-calendar-lite'); ?></label>
|
852 |
-
</div>
|
853 |
-
<input class="mec-col-2" type="text" name="mec[date][repeat][end_at_date]"
|
854 |
-
id="mec_date_repeat_end_at_date"
|
855 |
-
value="<?php echo esc_attr($repeat_end_at_date); ?>"/>
|
856 |
-
</div>
|
857 |
-
<div class="mec-form-row">
|
858 |
-
<div class="mec-col-3">
|
859 |
-
<input
|
860 |
-
<?php
|
861 |
-
if ($mec_repeat_end == 'occurrences') {
|
862 |
-
echo 'checked="checked"';
|
863 |
-
}
|
864 |
-
?>
|
865 |
-
type="radio" value="occurrences" name="mec[date][repeat][end]"
|
866 |
-
id="mec_repeat_ends_occurrences"/>
|
867 |
-
<label for="mec_repeat_ends_occurrences"><?php _e('After', 'modern-events-calendar-lite'); ?></label>
|
868 |
-
</div>
|
869 |
-
<input class="mec-col-2" type="text" name="mec[date][repeat][end_at_occurrences]"
|
870 |
-
id="mec_date_repeat_end_at_occurrences"
|
871 |
-
placeholder="<?php _e('Occurrences times', 'modern-events-calendar-lite'); ?>"
|
872 |
-
value="<?php echo esc_attr(($repeat_end_at_occurrences + 1)); ?>"/>
|
873 |
-
<span class="mec-tooltip">
|
874 |
-
<div class="box top">
|
875 |
-
<h5 class="title"><?php _e('Occurrences times', 'modern-events-calendar-lite'); ?></h5>
|
876 |
-
<div class="content"><p><?php esc_attr_e('The event will finish after certain repeats. For example if you set it to 10, the event will finish after 10 repeats.', 'modern-events-calendar-lite'); ?>
|
877 |
-
<a href="https://webnus.net/dox/modern-events-calendar/date-and-time/"
|
878 |
-
target="_blank"><?php _e('Read More', 'modern-events-calendar-lite'); ?></a></p></div>
|
879 |
-
</div>
|
880 |
-
<i title="" class="dashicons-before dashicons-editor-help"></i>
|
881 |
-
</span>
|
882 |
-
</div>
|
883 |
-
</div>
|
884 |
<div id="mec-advanced-wraper">
|
885 |
<div class="mec-form-row">
|
886 |
<ul>
|
@@ -1097,6 +1038,65 @@ class MEC_feature_events extends MEC_base
|
|
1097 |
id="mec_date_repeat_advanced" value="<?php echo esc_attr($advanced_str); ?>"/>
|
1098 |
</div>
|
1099 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1100 |
</div>
|
1101 |
</div>
|
1102 |
</div>
|
@@ -2695,6 +2695,30 @@ class MEC_feature_events extends MEC_base
|
|
2695 |
|
2696 |
$week = '*';
|
2697 |
$weekday = '*';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2698 |
}
|
2699 |
|
2700 |
$in_days_arr = (isset($_mec['in_days']) and is_array($_mec['in_days']) and count($_mec['in_days'])) ? array_unique($_mec['in_days']) : array();
|
822 |
</div>
|
823 |
</div>
|
824 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
825 |
<div id="mec-advanced-wraper">
|
826 |
<div class="mec-form-row">
|
827 |
<ul>
|
1038 |
id="mec_date_repeat_advanced" value="<?php echo esc_attr($advanced_str); ?>"/>
|
1039 |
</div>
|
1040 |
</div>
|
1041 |
+
<div id="mec_end_wrapper">
|
1042 |
+
<div class="mec-form-row">
|
1043 |
+
<label for="mec_repeat_ends_never"><h4
|
1044 |
+
class="mec-title"><?php _e('Ends Repeat', 'modern-events-calendar-lite'); ?></h4></label>
|
1045 |
+
</div>
|
1046 |
+
<div class="mec-form-row">
|
1047 |
+
<input
|
1048 |
+
<?php
|
1049 |
+
if ($mec_repeat_end == 'never') {
|
1050 |
+
echo 'checked="checked"';
|
1051 |
+
}
|
1052 |
+
?>
|
1053 |
+
type="radio" value="never" name="mec[date][repeat][end]"
|
1054 |
+
id="mec_repeat_ends_never"/>
|
1055 |
+
<label for="mec_repeat_ends_never"><?php _e('Never', 'modern-events-calendar-lite'); ?></label>
|
1056 |
+
</div>
|
1057 |
+
<div class="mec-form-row">
|
1058 |
+
<div class="mec-col-3">
|
1059 |
+
<input
|
1060 |
+
<?php
|
1061 |
+
if ($mec_repeat_end == 'date') {
|
1062 |
+
echo 'checked="checked"';
|
1063 |
+
}
|
1064 |
+
?>
|
1065 |
+
type="radio" value="date" name="mec[date][repeat][end]"
|
1066 |
+
id="mec_repeat_ends_date"/>
|
1067 |
+
<label for="mec_repeat_ends_date"><?php _e('On', 'modern-events-calendar-lite'); ?></label>
|
1068 |
+
</div>
|
1069 |
+
<input class="mec-col-2" type="text" name="mec[date][repeat][end_at_date]"
|
1070 |
+
id="mec_date_repeat_end_at_date" autocomplete="off"
|
1071 |
+
value="<?php echo esc_attr($repeat_end_at_date); ?>"/>
|
1072 |
+
</div>
|
1073 |
+
<div class="mec-form-row">
|
1074 |
+
<div class="mec-col-3">
|
1075 |
+
<input
|
1076 |
+
<?php
|
1077 |
+
if ($mec_repeat_end == 'occurrences') {
|
1078 |
+
echo 'checked="checked"';
|
1079 |
+
}
|
1080 |
+
?>
|
1081 |
+
type="radio" value="occurrences" name="mec[date][repeat][end]"
|
1082 |
+
id="mec_repeat_ends_occurrences"/>
|
1083 |
+
<label for="mec_repeat_ends_occurrences"><?php _e('After', 'modern-events-calendar-lite'); ?></label>
|
1084 |
+
</div>
|
1085 |
+
<input class="mec-col-2" type="text" name="mec[date][repeat][end_at_occurrences]"
|
1086 |
+
id="mec_date_repeat_end_at_occurrences" autocomplete="off"
|
1087 |
+
placeholder="<?php _e('Occurrences times', 'modern-events-calendar-lite'); ?>"
|
1088 |
+
value="<?php echo esc_attr(($repeat_end_at_occurrences + 1)); ?>"/>
|
1089 |
+
<span class="mec-tooltip">
|
1090 |
+
<div class="box top">
|
1091 |
+
<h5 class="title"><?php _e('Occurrences times', 'modern-events-calendar-lite'); ?></h5>
|
1092 |
+
<div class="content"><p><?php esc_attr_e('The event will finish after certain repeats. For example if you set it to 10, the event will finish after 10 repeats.', 'modern-events-calendar-lite'); ?>
|
1093 |
+
<a href="https://webnus.net/dox/modern-events-calendar/date-and-time/"
|
1094 |
+
target="_blank"><?php _e('Read More', 'modern-events-calendar-lite'); ?></a></p></div>
|
1095 |
+
</div>
|
1096 |
+
<i title="" class="dashicons-before dashicons-editor-help"></i>
|
1097 |
+
</span>
|
1098 |
+
</div>
|
1099 |
+
</div>
|
1100 |
</div>
|
1101 |
</div>
|
1102 |
</div>
|
2695 |
|
2696 |
$week = '*';
|
2697 |
$weekday = '*';
|
2698 |
+
} elseif ($repeat_type == "advanced") {
|
2699 |
+
$last = (isset($advanced) and count($advanced)) ? end($advanced) : null;
|
2700 |
+
if($last)
|
2701 |
+
{
|
2702 |
+
$tday = date('Y-m-d');
|
2703 |
+
|
2704 |
+
// Generate last month used occurrences value for example if occurrences equals 5 and current month equals 5 then results equals 10
|
2705 |
+
$last_month = date('Y-m-d', strtotime('+' . ($repeat_end_at_occurrences + 1) . 'month', strtotime('first day of last month')));
|
2706 |
+
|
2707 |
+
// Find end finish date
|
2708 |
+
$last_date = date('Y-m-d', strtotime("last day of {$last_month}"));
|
2709 |
+
$event_start = strtotime(sprintf('%02d', $start_time_hour).':'.sprintf('%02d', $start_time_minutes).' '.$start_time_ampm);
|
2710 |
+
|
2711 |
+
if($this->main->is_past($last_date, $tday) or $last_date == $tday and strtotime(date( 'h:i a', current_time( 'timestamp', 0 ))) > $event_start)
|
2712 |
+
{
|
2713 |
+
$last_month = date('Y-m-d', strtotime('+' . ($repeat_end_at_occurrences + 1) . 'month', strtotime('first day of this month')));
|
2714 |
+
$last_date = date('Y-m-d', strtotime("last day of {$last_month}"));
|
2715 |
+
}
|
2716 |
+
|
2717 |
+
// Calc date diff between $end_date and $last_date
|
2718 |
+
$period_date = $this->main->date_diff($end_date, $last_date);
|
2719 |
+
|
2720 |
+
$plus_date = '+' . $period_date->days . ' Days';
|
2721 |
+
}
|
2722 |
}
|
2723 |
|
2724 |
$in_days_arr = (isset($_mec['in_days']) and is_array($_mec['in_days']) and count($_mec['in_days'])) ? array_unique($_mec['in_days']) : array();
|
app/features/fes.php
CHANGED
@@ -300,6 +300,7 @@ class MEC_feature_fes extends MEC_base
|
|
300 |
foreach($post_labels as $post_label=>$value) $labels[] = (int) $post_label;
|
301 |
|
302 |
wp_set_post_terms($post_id, $labels, 'mec_label');
|
|
|
303 |
|
304 |
// Color
|
305 |
$color = isset($mec['color']) ? sanitize_text_field(trim($mec['color'], '# ')) : '';
|
@@ -680,6 +681,32 @@ class MEC_feature_fes extends MEC_base
|
|
680 |
$week = '*';
|
681 |
$weekday = '*';
|
682 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
683 |
|
684 |
// "In Days" and "Not In Days"
|
685 |
$in_days_arr = (isset($mec['in_days']) and is_array($mec['in_days']) and count($mec['in_days'])) ? array_unique($mec['in_days']) : array();
|
300 |
foreach($post_labels as $post_label=>$value) $labels[] = (int) $post_label;
|
301 |
|
302 |
wp_set_post_terms($post_id, $labels, 'mec_label');
|
303 |
+
do_action('mec_label_change_to_radio' , $labels, $post_labels,$post_id);
|
304 |
|
305 |
// Color
|
306 |
$color = isset($mec['color']) ? sanitize_text_field(trim($mec['color'], '# ')) : '';
|
681 |
$week = '*';
|
682 |
$weekday = '*';
|
683 |
}
|
684 |
+
elseif($repeat_type == "advanced")
|
685 |
+
{
|
686 |
+
$last = (isset($advanced) and count($advanced)) ? end($advanced) : null;
|
687 |
+
if($last)
|
688 |
+
{
|
689 |
+
$tday = date('Y-m-d');
|
690 |
+
|
691 |
+
// Generate last month used occurrences value for example if occurrences equals 5 and current month equals 5 then results equals 10
|
692 |
+
$last_month = date('Y-m-d', strtotime('+' . ($repeat_end_at_occurrences + 1) . 'month', strtotime('first day of last month')));
|
693 |
+
|
694 |
+
// Find end finish date
|
695 |
+
$last_date = date('Y-m-d', strtotime("last day of {$last_month}"));
|
696 |
+
$event_start = strtotime(sprintf('%02d', $start_time_hour).':'.sprintf('%02d', $start_time_minutes).' '.$start_time_ampm);
|
697 |
+
|
698 |
+
if($this->main->is_past($last_date, $tday) or $last_date == $tday and strtotime(date( 'h:i a', current_time( 'timestamp', 0 ))) > $event_start)
|
699 |
+
{
|
700 |
+
$last_month = date('Y-m-d', strtotime('+' . ($repeat_end_at_occurrences + 1) . 'month', strtotime('first day of this month')));
|
701 |
+
$last_date = date('Y-m-d', strtotime("last day of {$last_month}"));
|
702 |
+
}
|
703 |
+
|
704 |
+
// Calc date diff between $end_date and $last_date
|
705 |
+
$period_date = $this->main->date_diff($end_date, $last_date);
|
706 |
+
|
707 |
+
$plus_date = '+' . $period_date->days . ' Days';
|
708 |
+
}
|
709 |
+
}
|
710 |
|
711 |
// "In Days" and "Not In Days"
|
712 |
$in_days_arr = (isset($mec['in_days']) and is_array($mec['in_days']) and count($mec['in_days'])) ? array_unique($mec['in_days']) : array();
|
app/features/fes/form.php
CHANGED
@@ -387,36 +387,6 @@ $this->factory->params('footer', $javascript);
|
|
387 |
</div>
|
388 |
</div>
|
389 |
</div>
|
390 |
-
<div id="mec_end_wrapper">
|
391 |
-
<div class="mec-form-row">
|
392 |
-
<label for="mec_repeat_ends_never"><h5 class="mec-title"><?php _e('Ends Repeat', 'modern-events-calendar-lite'); ?></h5></label>
|
393 |
-
</div>
|
394 |
-
<div class="mec-form-row">
|
395 |
-
<input <?php if($mec_repeat_end == 'never') echo 'checked="checked"'; ?> type="radio" value="never" name="mec[date][repeat][end]" id="mec_repeat_ends_never" />
|
396 |
-
<label for="mec_repeat_ends_never"><?php _e('Never', 'modern-events-calendar-lite'); ?></label>
|
397 |
-
</div>
|
398 |
-
<div class="mec-form-row">
|
399 |
-
<div class="mec-col-3">
|
400 |
-
<input <?php if($mec_repeat_end == 'date') echo 'checked="checked"'; ?> type="radio" value="date" name="mec[date][repeat][end]" id="mec_repeat_ends_date" />
|
401 |
-
<label for="mec_repeat_ends_date"><?php _e('On', 'modern-events-calendar-lite'); ?></label>
|
402 |
-
</div>
|
403 |
-
<input class="mec-col-2" type="text" name="mec[date][repeat][end_at_date]" id="mec_date_repeat_end_at_date" value="<?php echo esc_attr($repeat_end_at_date); ?>" />
|
404 |
-
</div>
|
405 |
-
<div class="mec-form-row">
|
406 |
-
<div class="mec-col-3">
|
407 |
-
<input <?php if($mec_repeat_end == 'occurrences') echo 'checked="checked"'; ?> type="radio" value="occurrences" name="mec[date][repeat][end]" id="mec_repeat_ends_occurrences" />
|
408 |
-
<label for="mec_repeat_ends_occurrences"><?php _e('After', 'modern-events-calendar-lite'); ?></label>
|
409 |
-
</div>
|
410 |
-
<input class="mec-col-2" type="text" name="mec[date][repeat][end_at_occurrences]" id="mec_date_repeat_end_at_occurrences" placeholder="<?php _e('Occurrences times', 'modern-events-calendar-lite'); ?>" value="<?php echo esc_attr(($repeat_end_at_occurrences+1)); ?>" />
|
411 |
-
<span class="mec-tooltip">
|
412 |
-
<div class="box">
|
413 |
-
<h5 class="title"><?php _e('Occurrences times', 'modern-events-calendar-lite'); ?></h5>
|
414 |
-
<div class="content"><p><?php esc_attr_e('The event will finish after certain repeats. For example if you set it to 10, the event will finish after 10 repeats.', 'modern-events-calendar-lite'); ?><a href="https://webnus.net/dox/modern-events-calendar/event-detailssingle-event-page/" target="_blank"><?php _e('Read More', 'modern-events-calendar-lite'); ?></a></p></div>
|
415 |
-
</div>
|
416 |
-
<i title="" class="dashicons-before dashicons-editor-help"></i>
|
417 |
-
</span>
|
418 |
-
</div>
|
419 |
-
</div>
|
420 |
<div id="mec-advanced-wraper">
|
421 |
<div class="mec-form-row">
|
422 |
<ul>
|
@@ -633,6 +603,36 @@ $this->factory->params('footer', $javascript);
|
|
633 |
id="mec_date_repeat_advanced" value="<?php echo esc_attr($advanced_str); ?>" />
|
634 |
</div>
|
635 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
636 |
</div>
|
637 |
</div>
|
638 |
</div>
|
@@ -772,6 +772,7 @@ $this->factory->params('footer', $javascript);
|
|
772 |
<?php foreach($label_terms as $label_term): ?>
|
773 |
<label for="mec_fes_labels<?php echo $label_term->term_id; ?>">
|
774 |
<input type="checkbox" name="mec[labels][<?php echo $label_term->term_id; ?>]" id="mec_fes_labels<?php echo $label_term->term_id; ?>" value="1" <?php echo (in_array($label_term->term_id, $labels) ? 'checked="checked"' : ''); ?> />
|
|
|
775 |
<?php echo $label_term->name; ?>
|
776 |
</label>
|
777 |
<?php endforeach; ?>
|
387 |
</div>
|
388 |
</div>
|
389 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
390 |
<div id="mec-advanced-wraper">
|
391 |
<div class="mec-form-row">
|
392 |
<ul>
|
603 |
id="mec_date_repeat_advanced" value="<?php echo esc_attr($advanced_str); ?>" />
|
604 |
</div>
|
605 |
</div>
|
606 |
+
<div id="mec_end_wrapper">
|
607 |
+
<div class="mec-form-row">
|
608 |
+
<label for="mec_repeat_ends_never"><h5 class="mec-title"><?php _e('Ends Repeat', 'modern-events-calendar-lite'); ?></h5></label>
|
609 |
+
</div>
|
610 |
+
<div class="mec-form-row">
|
611 |
+
<input <?php if($mec_repeat_end == 'never') echo 'checked="checked"'; ?> type="radio" value="never" name="mec[date][repeat][end]" id="mec_repeat_ends_never" />
|
612 |
+
<label for="mec_repeat_ends_never"><?php _e('Never', 'modern-events-calendar-lite'); ?></label>
|
613 |
+
</div>
|
614 |
+
<div class="mec-form-row">
|
615 |
+
<div class="mec-col-3">
|
616 |
+
<input <?php if($mec_repeat_end == 'date') echo 'checked="checked"'; ?> type="radio" value="date" name="mec[date][repeat][end]" id="mec_repeat_ends_date" />
|
617 |
+
<label for="mec_repeat_ends_date"><?php _e('On', 'modern-events-calendar-lite'); ?></label>
|
618 |
+
</div>
|
619 |
+
<input class="mec-col-2" type="text" name="mec[date][repeat][end_at_date]" id="mec_date_repeat_end_at_date" autocomplete="off" value="<?php echo esc_attr($repeat_end_at_date); ?>" />
|
620 |
+
</div>
|
621 |
+
<div class="mec-form-row">
|
622 |
+
<div class="mec-col-3">
|
623 |
+
<input <?php if($mec_repeat_end == 'occurrences') echo 'checked="checked"'; ?> type="radio" value="occurrences" name="mec[date][repeat][end]" id="mec_repeat_ends_occurrences" />
|
624 |
+
<label for="mec_repeat_ends_occurrences"><?php _e('After', 'modern-events-calendar-lite'); ?></label>
|
625 |
+
</div>
|
626 |
+
<input class="mec-col-2" type="text" name="mec[date][repeat][end_at_occurrences]" id="mec_date_repeat_end_at_occurrences" autocomplete="off" placeholder="<?php _e('Occurrences times', 'modern-events-calendar-lite'); ?>" value="<?php echo esc_attr(($repeat_end_at_occurrences+1)); ?>" />
|
627 |
+
<span class="mec-tooltip">
|
628 |
+
<div class="box">
|
629 |
+
<h5 class="title"><?php _e('Occurrences times', 'modern-events-calendar-lite'); ?></h5>
|
630 |
+
<div class="content"><p><?php esc_attr_e('The event will finish after certain repeats. For example if you set it to 10, the event will finish after 10 repeats.', 'modern-events-calendar-lite'); ?><a href="https://webnus.net/dox/modern-events-calendar/event-detailssingle-event-page/" target="_blank"><?php _e('Read More', 'modern-events-calendar-lite'); ?></a></p></div>
|
631 |
+
</div>
|
632 |
+
<i title="" class="dashicons-before dashicons-editor-help"></i>
|
633 |
+
</span>
|
634 |
+
</div>
|
635 |
+
</div>
|
636 |
</div>
|
637 |
</div>
|
638 |
</div>
|
772 |
<?php foreach($label_terms as $label_term): ?>
|
773 |
<label for="mec_fes_labels<?php echo $label_term->term_id; ?>">
|
774 |
<input type="checkbox" name="mec[labels][<?php echo $label_term->term_id; ?>]" id="mec_fes_labels<?php echo $label_term->term_id; ?>" value="1" <?php echo (in_array($label_term->term_id, $labels) ? 'checked="checked"' : ''); ?> />
|
775 |
+
<?php do_action('mec_label_to_checkbox_frontend', $label_term, $labels ) ?>
|
776 |
<?php echo $label_term->name; ?>
|
777 |
</label>
|
778 |
<?php endforeach; ?>
|
app/features/ix.php
CHANGED
@@ -2970,91 +2970,8 @@ class MEC_feature_ix extends MEC_base
|
|
2970 |
|
2971 |
$location = isset($data->locations[$data->meta['mec_location_id']]) ? $data->locations[$data->meta['mec_location_id']] : array();
|
2972 |
$organizer = isset($data->organizers[$data->meta['mec_organizer_id']]) ? $data->organizers[$data->meta['mec_organizer_id']] : array();
|
2973 |
-
|
2974 |
-
$recurrence = array();
|
2975 |
-
if(isset($data->mec->repeat) and $data->mec->repeat)
|
2976 |
-
{
|
2977 |
-
$finish = ($data->mec->end != '0000-00-00' ? date('Ymd\THis\Z', strtotime($data->mec->end.' '.$data->time['end'])) : '');
|
2978 |
-
$freq = '';
|
2979 |
-
$interval = '1';
|
2980 |
-
$byday = '';
|
2981 |
-
$wkst = '';
|
2982 |
-
|
2983 |
-
$repeat_type = $data->meta['mec_repeat_type'];
|
2984 |
-
$week_day_mapping = array('1'=>'MO', '2'=>'TU', '3'=>'WE', '4'=>'TH', '5'=>'FR', '6'=>'SA', '7'=>'SU');
|
2985 |
-
|
2986 |
-
if($repeat_type == 'daily')
|
2987 |
-
{
|
2988 |
-
$freq = 'DAILY';
|
2989 |
-
$interval = $data->mec->rinterval;
|
2990 |
-
}
|
2991 |
-
elseif($repeat_type == 'weekly')
|
2992 |
-
{
|
2993 |
-
$freq = 'WEEKLY';
|
2994 |
-
$interval = ($data->mec->rinterval/7);
|
2995 |
-
}
|
2996 |
-
elseif($repeat_type == 'monthly') $freq = 'MONTHLY';
|
2997 |
-
elseif($repeat_type == 'yearly') $freq = 'YEARLY';
|
2998 |
-
elseif($repeat_type == 'weekday')
|
2999 |
-
{
|
3000 |
-
$mec_weekdays = explode(',', trim($data->mec->weekdays, ','));
|
3001 |
-
foreach($mec_weekdays as $mec_weekday) $byday .= $week_day_mapping[$mec_weekday].',';
|
3002 |
-
|
3003 |
-
$byday = trim($byday, ', ');
|
3004 |
-
$freq = 'WEEKLY';
|
3005 |
-
}
|
3006 |
-
elseif($repeat_type == 'weekend')
|
3007 |
-
{
|
3008 |
-
$mec_weekdays = explode(',', trim($data->mec->weekdays, ','));
|
3009 |
-
foreach($mec_weekdays as $mec_weekday) $byday .= $week_day_mapping[$mec_weekday].',';
|
3010 |
-
|
3011 |
-
$byday = trim($byday, ', ');
|
3012 |
-
$freq = 'WEEKLY';
|
3013 |
-
}
|
3014 |
-
elseif($repeat_type == 'certain_weekdays')
|
3015 |
-
{
|
3016 |
-
$mec_weekdays = explode(',', trim($data->mec->weekdays, ','));
|
3017 |
-
foreach($mec_weekdays as $mec_weekday) $byday .= $week_day_mapping[$mec_weekday].',';
|
3018 |
-
|
3019 |
-
$byday = trim($byday, ', ');
|
3020 |
-
$freq = 'WEEKLY';
|
3021 |
-
}
|
3022 |
-
elseif($repeat_type == 'custom_days')
|
3023 |
-
{
|
3024 |
-
$freq = '';
|
3025 |
-
$mec_periods = explode(',', trim($data->mec->days, ','));
|
3026 |
-
|
3027 |
-
$days = '';
|
3028 |
-
foreach($mec_periods as $mec_period)
|
3029 |
-
{
|
3030 |
-
$mec_days = explode(':', trim($mec_period, ': '));
|
3031 |
-
$days .= date('Ymd\THis', strtotime($mec_days[0].' '.$data->time['start'])).$gmt_offset.'/'.date('Ymd\THis', strtotime($mec_days[1].' '.$data->time['end'])).$gmt_offset.',';
|
3032 |
-
}
|
3033 |
|
3034 |
-
|
3035 |
-
$recurrence[] = trim('RDATE;VALUE=PERIOD:'.trim($days, ', '), '; ');
|
3036 |
-
}
|
3037 |
-
|
3038 |
-
$rrule = 'RRULE:FREQ='.$freq.';'
|
3039 |
-
.($interval > 1 ? 'INTERVAL='.$interval.';' : '')
|
3040 |
-
.(($finish != '0000-00-00' and $finish != '') ? 'UNTIL='.$finish.';' : '')
|
3041 |
-
.($wkst != '' ? 'WKST='.$wkst.';' : '')
|
3042 |
-
.($byday != '' ? 'BYDAY='.$byday.';' : '');
|
3043 |
-
|
3044 |
-
// Add RRULE
|
3045 |
-
if(trim($freq)) $recurrence[] = trim($rrule, '; ');
|
3046 |
-
|
3047 |
-
if(trim($data->mec->not_in_days))
|
3048 |
-
{
|
3049 |
-
$mec_not_in_days = explode(',', trim($data->mec->not_in_days, ','));
|
3050 |
-
|
3051 |
-
$not_in_days = '';
|
3052 |
-
foreach($mec_not_in_days as $mec_not_in_day) $not_in_days .= date('Ymd\THis', strtotime($mec_not_in_day.' '.$data->time['start'])).',';
|
3053 |
-
|
3054 |
-
// Add EXDATE
|
3055 |
-
$recurrence[] = trim('EXDATE;TZID='.$timezone.':'.trim($not_in_days, ', '), '; ');
|
3056 |
-
}
|
3057 |
-
}
|
3058 |
|
3059 |
$event = new Google_Service_Calendar_Event(array
|
3060 |
(
|
2970 |
|
2971 |
$location = isset($data->locations[$data->meta['mec_location_id']]) ? $data->locations[$data->meta['mec_location_id']] : array();
|
2972 |
$organizer = isset($data->organizers[$data->meta['mec_organizer_id']]) ? $data->organizers[$data->meta['mec_organizer_id']] : array();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2973 |
|
2974 |
+
$recurrence = $this->main->get_ical_rrules($data);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2975 |
|
2976 |
$event = new Google_Service_Calendar_Event(array
|
2977 |
(
|
app/features/labels.php
CHANGED
@@ -235,6 +235,7 @@ class MEC_feature_labels extends MEC_base
|
|
235 |
<?php foreach($labels as $label): ?>
|
236 |
<div class="mec-label-row">
|
237 |
<input <?php if(in_array($label->term_id, $terms)) echo 'checked="checked"'; ?> name="mec[labels][]" type="checkbox" value="<?php echo $label->term_id; ?>" id="mec_label<?php echo $label->term_id; ?>" />
|
|
|
238 |
<label for="mec_label<?php echo $label->term_id; ?>"><?php echo $label->name; ?></label>
|
239 |
<span class="mec-color" style="background-color: <?php echo get_term_meta($label->term_id, 'color', true); ?>"></span>
|
240 |
</div>
|
235 |
<?php foreach($labels as $label): ?>
|
236 |
<div class="mec-label-row">
|
237 |
<input <?php if(in_array($label->term_id, $terms)) echo 'checked="checked"'; ?> name="mec[labels][]" type="checkbox" value="<?php echo $label->term_id; ?>" id="mec_label<?php echo $label->term_id; ?>" />
|
238 |
+
<?php do_action('mec_label_to_checkbox_backend',$label, $terms ); ?>
|
239 |
<label for="mec_label<?php echo $label->term_id; ?>"><?php echo $label->name; ?></label>
|
240 |
<span class="mec-color" style="background-color: <?php echo get_term_meta($label->term_id, 'color', true); ?>"></span>
|
241 |
</div>
|
app/features/mec/meta_boxes/display_options.php
CHANGED
@@ -387,6 +387,10 @@ $events = $this->main->get_events();
|
|
387 |
<option value="simple" <?php echo (isset($sk_options_full_calendar['monthly_style']) and $sk_options_full_calendar['monthly_style'] == 'simple') ? 'selected="selected"' : ''; ?>><?php _e('Simple', 'modern-events-calendar-lite'); ?></option>
|
388 |
</select>
|
389 |
</div>
|
|
|
|
|
|
|
|
|
390 |
<div class="mec-form-row mec-switcher">
|
391 |
<div class="mec-col-4">
|
392 |
<label for="mec_skin_full_calendar_list"><?php _e('List View', 'modern-events-calendar-lite'); ?></label>
|
387 |
<option value="simple" <?php echo (isset($sk_options_full_calendar['monthly_style']) and $sk_options_full_calendar['monthly_style'] == 'simple') ? 'selected="selected"' : ''; ?>><?php _e('Simple', 'modern-events-calendar-lite'); ?></option>
|
388 |
</select>
|
389 |
</div>
|
390 |
+
<div class="mec-form-row">
|
391 |
+
<label class="mec-col-4" for="mec_skin_full_calendar_limit">Events per day</label>
|
392 |
+
<input class="mec-col-4" type="number" name="mec[sk-options][full_calendar][limit]" id="mec_skin_full_calendar_limit" placeholder="eg. 6" value="<?php if(isset($sk_options_full_calendar['limit'])) esc_attr_e($sk_options_full_calendar['limit'], 'modern-events-calendar-lite'); ?>">
|
393 |
+
</div>
|
394 |
<div class="mec-form-row mec-switcher">
|
395 |
<div class="mec-col-4">
|
396 |
<label for="mec_skin_full_calendar_list"><?php _e('List View', 'modern-events-calendar-lite'); ?></label>
|
app/features/mec/regform.php
CHANGED
@@ -24,7 +24,7 @@ if ( ! $mec_name ) {
|
|
24 |
[
|
25 |
'mandatory' => '0',
|
26 |
'type' => 'name',
|
27 |
-
'label' => esc_html__( 'Name', 'modern-events-calendar-lite'),
|
28 |
]
|
29 |
);
|
30 |
}
|
@@ -35,7 +35,7 @@ if ( ! $mec_email ) {
|
|
35 |
[
|
36 |
'mandatory' => '0',
|
37 |
'type' => 'mec_email',
|
38 |
-
'label' => esc_html__( 'Email', 'modern-events-calendar-lite'),
|
39 |
]
|
40 |
);
|
41 |
}
|
@@ -44,7 +44,7 @@ if ( ! $mec_email ) {
|
|
44 |
<div class="wns-be-container wns-be-container-sticky">
|
45 |
|
46 |
<div id="wns-be-infobar">
|
47 |
-
<a href="" id="" class="dpr-btn dpr-save-btn"><?php _e( 'Save Changes', 'modern-events-calendar-lite'); ?></a>
|
48 |
</div>
|
49 |
|
50 |
<div class="wns-be-sidebar">
|
@@ -57,7 +57,7 @@ if ( ! $mec_email ) {
|
|
57 |
<i class="sl-arrow-down"></i>
|
58 |
</span>
|
59 |
<i class="mec-sl-settings"></i>
|
60 |
-
<span class="wns-be-group-menu-title"><?php _e( 'Settings', 'modern-events-calendar-lite'); ?></span>
|
61 |
</a>
|
62 |
<ul id="" class="submneu-hover">
|
63 |
<li class="submenu-item">
|
@@ -143,14 +143,14 @@ if ( ! $mec_email ) {
|
|
143 |
<li class="wns-be-group-menu-li active">
|
144 |
<a href="<?php echo $this->main->add_qs_var( 'tab', 'MEC-reg-form' ); ?>" id="" class="wns-be-group-tab-link-a">
|
145 |
<i class="mec-sl-layers"></i>
|
146 |
-
<span class="wns-be-group-menu-title"><?php _e( 'Booking Form', 'modern-events-calendar-lite'); ?></span>
|
147 |
</a>
|
148 |
</li>
|
149 |
|
150 |
<li class="wns-be-group-menu-li">
|
151 |
<a href="<?php echo $this->main->add_qs_var( 'tab', 'MEC-gateways' ); ?>" id="" class="wns-be-group-tab-link-a">
|
152 |
<i class="mec-sl-wallet"></i>
|
153 |
-
<span class="wns-be-group-menu-title"><?php _e( 'Payment Gateways', 'modern-events-calendar-lite'); ?></span>
|
154 |
</a>
|
155 |
</li>
|
156 |
<?php endif; ?>
|
@@ -158,7 +158,7 @@ if ( ! $mec_email ) {
|
|
158 |
<li class="wns-be-group-menu-li">
|
159 |
<a href="<?php echo $this->main->add_qs_var( 'tab', 'MEC-notifications' ); ?>" id="" class="wns-be-group-tab-link-a">
|
160 |
<i class="mec-sl-envelope"></i>
|
161 |
-
<span class="wns-be-group-menu-title"><?php _e( 'Notifications', 'modern-events-calendar-lite'); ?></span>
|
162 |
</a>
|
163 |
<ul id="" class="submneu-hover">
|
164 |
<li class="submenu-item">
|
@@ -178,28 +178,28 @@ if ( ! $mec_email ) {
|
|
178 |
<li class="wns-be-group-menu-li">
|
179 |
<a href="<?php echo $this->main->add_qs_var( 'tab', 'MEC-styling' ); ?>" id="" class="wns-be-group-tab-link-a">
|
180 |
<i class="mec-sl-equalizer"></i>
|
181 |
-
<span class="wns-be-group-menu-title"><?php _e( 'Styling Options', 'modern-events-calendar-lite'); ?></span>
|
182 |
</a>
|
183 |
</li>
|
184 |
|
185 |
<li class="wns-be-group-menu-li">
|
186 |
<a href="<?php echo $this->main->add_qs_var( 'tab', 'MEC-customcss' ); ?>" id="" class="wns-be-group-tab-link-a">
|
187 |
<i class="mec-sl-wrench"></i>
|
188 |
-
<span class="wns-be-group-menu-title"><?php _e( 'Custom CSS', 'modern-events-calendar-lite'); ?></span>
|
189 |
</a>
|
190 |
</li>
|
191 |
|
192 |
<li class="wns-be-group-menu-li">
|
193 |
<a href="<?php echo $this->main->add_qs_var( 'tab', 'MEC-messages' ); ?>" id="" class="wns-be-group-tab-link-a">
|
194 |
<i class="mec-sl-bubble"></i>
|
195 |
-
<span class="wns-be-group-menu-title"><?php _e( 'Messages', 'modern-events-calendar-lite'); ?></span>
|
196 |
</a>
|
197 |
</li>
|
198 |
|
199 |
<li class="wns-be-group-menu-li">
|
200 |
<a href="<?php echo $this->main->add_qs_var( 'tab', 'MEC-ie' ); ?>" id="" class="wns-be-group-tab-link-a">
|
201 |
<i class="mec-sl-refresh"></i>
|
202 |
-
<span class="wns-be-group-menu-title"><?php _e( 'Import / Export', 'modern-events-calendar-lite'); ?></span>
|
203 |
</a>
|
204 |
</li>
|
205 |
|
@@ -212,7 +212,7 @@ if ( ! $mec_email ) {
|
|
212 |
|
213 |
<div id="wns-be-content">
|
214 |
<div class="wns-be-group-tab">
|
215 |
-
<h2><?php _e( 'Booking Form', 'modern-events-calendar-lite'); ?></h2>
|
216 |
<div class="mec-container">
|
217 |
<?php do_action( 'before_mec_reg_fields_form' ); ?>
|
218 |
<form id="mec_reg_fields_form">
|
@@ -261,25 +261,25 @@ if ( ! $mec_email ) {
|
|
261 |
?>
|
262 |
</ul>
|
263 |
<div id="mec_reg_form_field_types">
|
264 |
-
<button type="button" class="button red" data-type="name"><?php _e( 'MEC Name', 'modern-events-calendar-lite'); ?></button>
|
265 |
-
<button type="button" class="button red" data-type="mec_email"><?php _e( 'MEC Email', 'modern-events-calendar-lite'); ?></button>
|
266 |
-
<button type="button" class="button" data-type="text"><?php _e( 'Text', 'modern-events-calendar-lite'); ?></button>
|
267 |
-
<button type="button" class="button" data-type="email"><?php _e( 'Email', 'modern-events-calendar-lite'); ?></button>
|
268 |
-
<button type="button" class="button" data-type="date"><?php _e( 'Date', 'modern-events-calendar-lite'); ?></button>
|
269 |
-
<button type="button" class="button" data-type="tel"><?php _e( 'Tel', 'modern-events-calendar-lite'); ?></button>
|
270 |
-
<button type="button" class="button" data-type="file"><?php _e( 'File', 'modern-events-calendar-lite'); ?></button>
|
271 |
-
<button type="button" class="button" data-type="textarea"><?php _e( 'Textarea', 'modern-events-calendar-lite'); ?></button>
|
272 |
-
<button type="button" class="button" data-type="checkbox"><?php _e( 'Checkboxes', 'modern-events-calendar-lite'); ?></button>
|
273 |
-
<button type="button" class="button" data-type="radio"><?php _e( 'Radio Buttons', 'modern-events-calendar-lite'); ?></button>
|
274 |
-
<button type="button" class="button" data-type="select"><?php _e( 'Dropdown', 'modern-events-calendar-lite'); ?></button>
|
275 |
-
<button type="button" class="button" data-type="agreement"><?php _e( 'Agreement', 'modern-events-calendar-lite'); ?></button>
|
276 |
-
<button type="button" class="button" data-type="p"><?php _e( 'Paragraph', 'modern-events-calendar-lite'); ?></button>
|
277 |
</div>
|
278 |
<?php do_action( 'mec_reg_fields_form_end' ); ?>
|
279 |
</div>
|
280 |
<div class="mec-form-row">
|
281 |
<?php wp_nonce_field( 'mec_options_form' ); ?>
|
282 |
-
<button style="display: none;" id="mec_reg_fields_form_button" class="button button-primary mec-button-primary" type="submit"><?php _e( 'Save Changes', 'modern-events-calendar-lite'); ?></button>
|
283 |
</div>
|
284 |
</form>
|
285 |
<?php do_action( 'after_mec_reg_fields_form' ); ?>
|
@@ -334,7 +334,7 @@ if ( ! $mec_email ) {
|
|
334 |
</div>
|
335 |
|
336 |
<div id="wns-be-footer">
|
337 |
-
<a href="" id="" class="dpr-btn dpr-save-btn"><?php _e( 'Save Changes', 'modern-events-calendar-lite'); ?></a>
|
338 |
</div>
|
339 |
|
340 |
</div>
|
@@ -354,8 +354,8 @@ jQuery("#mec_reg_fields_form").on('submit', function(event)
|
|
354 |
event.preventDefault();
|
355 |
|
356 |
// Add loading Class to the button
|
357 |
-
jQuery(".dpr-save-btn").addClass('loading').text("<?php echo esc_js( esc_attr__( 'Saved', 'modern-events-calendar-lite') ); ?>");
|
358 |
-
jQuery('<div class="wns-saved-settings"><?php echo esc_js( esc_attr__( 'Settings Saved!', 'modern-events-calendar-lite') ); ?></div>').insertBefore('#wns-be-content');
|
359 |
|
360 |
var fields = jQuery("#mec_reg_fields_form").serialize();
|
361 |
jQuery.ajax(
|
@@ -370,7 +370,7 @@ jQuery("#mec_reg_fields_form").on('submit', function(event)
|
|
370 |
{
|
371 |
// Remove the loading Class to the button
|
372 |
setTimeout(function(){
|
373 |
-
jQuery(".dpr-save-btn").removeClass('loading').text("<?php echo esc_js( esc_attr__( 'Save Changes', 'modern-events-calendar-lite') ); ?>");
|
374 |
jQuery('.wns-saved-settings').remove();
|
375 |
jQuery('.mec-loarder-wrap').remove();
|
376 |
}, 1000);
|
@@ -379,7 +379,7 @@ jQuery("#mec_reg_fields_form").on('submit', function(event)
|
|
379 |
{
|
380 |
// Remove the loading Class to the button
|
381 |
setTimeout(function(){
|
382 |
-
jQuery(".dpr-save-btn").removeClass('loading').text("<?php echo esc_js( esc_attr__( 'Save Changes', 'modern-events-calendar-lite') ); ?>");
|
383 |
jQuery('.wns-saved-settings').remove();
|
384 |
jQuery('.mec-loarder-wrap').remove();
|
385 |
}, 1000);
|
24 |
[
|
25 |
'mandatory' => '0',
|
26 |
'type' => 'name',
|
27 |
+
'label' => esc_html__( 'Name', 'modern-events-calendar-lite' ),
|
28 |
]
|
29 |
);
|
30 |
}
|
35 |
[
|
36 |
'mandatory' => '0',
|
37 |
'type' => 'mec_email',
|
38 |
+
'label' => esc_html__( 'Email', 'modern-events-calendar-lite' ),
|
39 |
]
|
40 |
);
|
41 |
}
|
44 |
<div class="wns-be-container wns-be-container-sticky">
|
45 |
|
46 |
<div id="wns-be-infobar">
|
47 |
+
<a href="" id="" class="dpr-btn dpr-save-btn"><?php _e( 'Save Changes', 'modern-events-calendar-lite' ); ?></a>
|
48 |
</div>
|
49 |
|
50 |
<div class="wns-be-sidebar">
|
57 |
<i class="sl-arrow-down"></i>
|
58 |
</span>
|
59 |
<i class="mec-sl-settings"></i>
|
60 |
+
<span class="wns-be-group-menu-title"><?php _e( 'Settings', 'modern-events-calendar-lite' ); ?></span>
|
61 |
</a>
|
62 |
<ul id="" class="submneu-hover">
|
63 |
<li class="submenu-item">
|
143 |
<li class="wns-be-group-menu-li active">
|
144 |
<a href="<?php echo $this->main->add_qs_var( 'tab', 'MEC-reg-form' ); ?>" id="" class="wns-be-group-tab-link-a">
|
145 |
<i class="mec-sl-layers"></i>
|
146 |
+
<span class="wns-be-group-menu-title"><?php _e( 'Booking Form', 'modern-events-calendar-lite' ); ?></span>
|
147 |
</a>
|
148 |
</li>
|
149 |
|
150 |
<li class="wns-be-group-menu-li">
|
151 |
<a href="<?php echo $this->main->add_qs_var( 'tab', 'MEC-gateways' ); ?>" id="" class="wns-be-group-tab-link-a">
|
152 |
<i class="mec-sl-wallet"></i>
|
153 |
+
<span class="wns-be-group-menu-title"><?php _e( 'Payment Gateways', 'modern-events-calendar-lite' ); ?></span>
|
154 |
</a>
|
155 |
</li>
|
156 |
<?php endif; ?>
|
158 |
<li class="wns-be-group-menu-li">
|
159 |
<a href="<?php echo $this->main->add_qs_var( 'tab', 'MEC-notifications' ); ?>" id="" class="wns-be-group-tab-link-a">
|
160 |
<i class="mec-sl-envelope"></i>
|
161 |
+
<span class="wns-be-group-menu-title"><?php _e( 'Notifications', 'modern-events-calendar-lite' ); ?></span>
|
162 |
</a>
|
163 |
<ul id="" class="submneu-hover">
|
164 |
<li class="submenu-item">
|
178 |
<li class="wns-be-group-menu-li">
|
179 |
<a href="<?php echo $this->main->add_qs_var( 'tab', 'MEC-styling' ); ?>" id="" class="wns-be-group-tab-link-a">
|
180 |
<i class="mec-sl-equalizer"></i>
|
181 |
+
<span class="wns-be-group-menu-title"><?php _e( 'Styling Options', 'modern-events-calendar-lite' ); ?></span>
|
182 |
</a>
|
183 |
</li>
|
184 |
|
185 |
<li class="wns-be-group-menu-li">
|
186 |
<a href="<?php echo $this->main->add_qs_var( 'tab', 'MEC-customcss' ); ?>" id="" class="wns-be-group-tab-link-a">
|
187 |
<i class="mec-sl-wrench"></i>
|
188 |
+
<span class="wns-be-group-menu-title"><?php _e( 'Custom CSS', 'modern-events-calendar-lite' ); ?></span>
|
189 |
</a>
|
190 |
</li>
|
191 |
|
192 |
<li class="wns-be-group-menu-li">
|
193 |
<a href="<?php echo $this->main->add_qs_var( 'tab', 'MEC-messages' ); ?>" id="" class="wns-be-group-tab-link-a">
|
194 |
<i class="mec-sl-bubble"></i>
|
195 |
+
<span class="wns-be-group-menu-title"><?php _e( 'Messages', 'modern-events-calendar-lite' ); ?></span>
|
196 |
</a>
|
197 |
</li>
|
198 |
|
199 |
<li class="wns-be-group-menu-li">
|
200 |
<a href="<?php echo $this->main->add_qs_var( 'tab', 'MEC-ie' ); ?>" id="" class="wns-be-group-tab-link-a">
|
201 |
<i class="mec-sl-refresh"></i>
|
202 |
+
<span class="wns-be-group-menu-title"><?php _e( 'Import / Export', 'modern-events-calendar-lite' ); ?></span>
|
203 |
</a>
|
204 |
</li>
|
205 |
|
212 |
|
213 |
<div id="wns-be-content">
|
214 |
<div class="wns-be-group-tab">
|
215 |
+
<h2><?php _e( 'Booking Form', 'modern-events-calendar-lite' ); ?></h2>
|
216 |
<div class="mec-container">
|
217 |
<?php do_action( 'before_mec_reg_fields_form' ); ?>
|
218 |
<form id="mec_reg_fields_form">
|
261 |
?>
|
262 |
</ul>
|
263 |
<div id="mec_reg_form_field_types">
|
264 |
+
<button type="button" class="button red" data-type="name"><?php _e( 'MEC Name', 'modern-events-calendar-lite' ); ?></button>
|
265 |
+
<button type="button" class="button red" data-type="mec_email"><?php _e( 'MEC Email', 'modern-events-calendar-lite' ); ?></button>
|
266 |
+
<button type="button" class="button" data-type="text"><?php _e( 'Text', 'modern-events-calendar-lite' ); ?></button>
|
267 |
+
<button type="button" class="button" data-type="email"><?php _e( 'Email', 'modern-events-calendar-lite' ); ?></button>
|
268 |
+
<button type="button" class="button" data-type="date"><?php _e( 'Date', 'modern-events-calendar-lite' ); ?></button>
|
269 |
+
<button type="button" class="button" data-type="tel"><?php _e( 'Tel', 'modern-events-calendar-lite' ); ?></button>
|
270 |
+
<button type="button" class="button" data-type="file"><?php _e( 'File', 'modern-events-calendar-lite' ); ?></button>
|
271 |
+
<button type="button" class="button" data-type="textarea"><?php _e( 'Textarea', 'modern-events-calendar-lite' ); ?></button>
|
272 |
+
<button type="button" class="button" data-type="checkbox"><?php _e( 'Checkboxes', 'modern-events-calendar-lite' ); ?></button>
|
273 |
+
<button type="button" class="button" data-type="radio"><?php _e( 'Radio Buttons', 'modern-events-calendar-lite' ); ?></button>
|
274 |
+
<button type="button" class="button" data-type="select"><?php _e( 'Dropdown', 'modern-events-calendar-lite' ); ?></button>
|
275 |
+
<button type="button" class="button" data-type="agreement"><?php _e( 'Agreement', 'modern-events-calendar-lite' ); ?></button>
|
276 |
+
<button type="button" class="button" data-type="p"><?php _e( 'Paragraph', 'modern-events-calendar-lite' ); ?></button>
|
277 |
</div>
|
278 |
<?php do_action( 'mec_reg_fields_form_end' ); ?>
|
279 |
</div>
|
280 |
<div class="mec-form-row">
|
281 |
<?php wp_nonce_field( 'mec_options_form' ); ?>
|
282 |
+
<button style="display: none;" id="mec_reg_fields_form_button" class="button button-primary mec-button-primary" type="submit"><?php _e( 'Save Changes', 'modern-events-calendar-lite' ); ?></button>
|
283 |
</div>
|
284 |
</form>
|
285 |
<?php do_action( 'after_mec_reg_fields_form' ); ?>
|
334 |
</div>
|
335 |
|
336 |
<div id="wns-be-footer">
|
337 |
+
<a href="" id="" class="dpr-btn dpr-save-btn"><?php _e( 'Save Changes', 'modern-events-calendar-lite' ); ?></a>
|
338 |
</div>
|
339 |
|
340 |
</div>
|
354 |
event.preventDefault();
|
355 |
|
356 |
// Add loading Class to the button
|
357 |
+
jQuery(".dpr-save-btn").addClass('loading').text("<?php echo esc_js( esc_attr__( 'Saved', 'modern-events-calendar-lite' ) ); ?>");
|
358 |
+
jQuery('<div class="wns-saved-settings"><?php echo esc_js( esc_attr__( 'Settings Saved!', 'modern-events-calendar-lite' ) ); ?></div>').insertBefore('#wns-be-content');
|
359 |
|
360 |
var fields = jQuery("#mec_reg_fields_form").serialize();
|
361 |
jQuery.ajax(
|
370 |
{
|
371 |
// Remove the loading Class to the button
|
372 |
setTimeout(function(){
|
373 |
+
jQuery(".dpr-save-btn").removeClass('loading').text("<?php echo esc_js( esc_attr__( 'Save Changes', 'modern-events-calendar-lite' ) ); ?>");
|
374 |
jQuery('.wns-saved-settings').remove();
|
375 |
jQuery('.mec-loarder-wrap').remove();
|
376 |
}, 1000);
|
379 |
{
|
380 |
// Remove the loading Class to the button
|
381 |
setTimeout(function(){
|
382 |
+
jQuery(".dpr-save-btn").removeClass('loading').text("<?php echo esc_js( esc_attr__( 'Save Changes', 'modern-events-calendar-lite' ) ); ?>");
|
383 |
jQuery('.wns-saved-settings').remove();
|
384 |
jQuery('.mec-loarder-wrap').remove();
|
385 |
}, 1000);
|
app/features/mec/styling.php
CHANGED
@@ -205,10 +205,10 @@ if(is_array($fonts))
|
|
205 |
<form id="mec_styling_form">
|
206 |
|
207 |
<!-- Colorskin -->
|
208 |
-
<h4 class="mec-form-subtitle"><?php esc_html_e('Color Skin', 'modern-events-calendar-lite'); ?></h4>
|
209 |
<div class="mec-form-row">
|
210 |
<div class="mec-col-3">
|
211 |
-
<p><?php esc_html_e('Predefined Color Skin', 'modern-events-calendar-lite'); ?></p>
|
212 |
</div>
|
213 |
<div class="mec-col-6">
|
214 |
<ul class="mec-image-select-wrap">
|
@@ -251,7 +251,7 @@ if(is_array($fonts))
|
|
251 |
</div>
|
252 |
<div class="mec-form-row">
|
253 |
<div class="mec-col-3">
|
254 |
-
<p><?php esc_html_e('Custom Color Skin', 'modern-events-calendar-lite'); ?></p>
|
255 |
</div>
|
256 |
<div class="mec-col-6">
|
257 |
<input type="text" class="wp-color-picker-field" id="mec_settings_color" name="mec[styling][color]" value="<?php echo (isset($styling['color']) ? $styling['color'] : ''); ?>" data-default-color="" />
|
@@ -262,10 +262,10 @@ if(is_array($fonts))
|
|
262 |
</div>
|
263 |
|
264 |
<!-- Advanced Options -->
|
265 |
-
<h4 class="mec-form-subtitle"><?php esc_html_e('Advanced Color Options (shortcodes)', 'modern-events-calendar-lite'); ?></h4>
|
266 |
<div class="mec-form-row">
|
267 |
<div class="mec-col-3">
|
268 |
-
<p><?php esc_html_e('Title', 'modern-events-calendar-lite'); ?></p>
|
269 |
</div>
|
270 |
<div class="mec-col-6">
|
271 |
<input type="text" class="wp-color-picker-field" id="mec_settings_title_color" name="mec[styling][title_color]" value="<?php echo (isset($styling['title_color']) ? $styling['title_color'] : ''); ?>" data-default-color="" />
|
@@ -274,7 +274,7 @@ if(is_array($fonts))
|
|
274 |
|
275 |
<div class="mec-form-row">
|
276 |
<div class="mec-col-3">
|
277 |
-
<p><?php esc_html_e('Title Hover', 'modern-events-calendar-lite'); ?></p>
|
278 |
</div>
|
279 |
<div class="mec-col-6">
|
280 |
<input type="text" class="wp-color-picker-field" id="mec_settings_title_color_hover" name="mec[styling][title_color_hover]" value="<?php echo (isset($styling['title_color_hover']) ? $styling['title_color_hover'] : ''); ?>" data-default-color="" />
|
@@ -283,7 +283,7 @@ if(is_array($fonts))
|
|
283 |
|
284 |
<div class="mec-form-row">
|
285 |
<div class="mec-col-3">
|
286 |
-
<p><?php esc_html_e('Content', 'modern-events-calendar-lite'); ?></p>
|
287 |
</div>
|
288 |
<div class="mec-col-6">
|
289 |
<input type="text" class="wp-color-picker-field" id="mec_settings_content_color" name="mec[styling][content_color]" value="<?php echo (isset($styling['content_color']) ? $styling['content_color'] : ''); ?>" data-default-color="" />
|
@@ -291,7 +291,7 @@ if(is_array($fonts))
|
|
291 |
</div>
|
292 |
|
293 |
<!-- Typography -->
|
294 |
-
<h4 class="mec-form-subtitle"><?php esc_html_e('Typography', 'modern-events-calendar-lite'); ?></h4>
|
295 |
<div class="mec-form-row">
|
296 |
<label class="mec-col-3" for="mec_h_fontfamily"><?php _e('Heading (Events Title) Font Family', 'modern-events-calendar-lite'); ?></label>
|
297 |
<div class="mec-col-4">
|
@@ -362,7 +362,7 @@ if(is_array($fonts))
|
|
362 |
</div>
|
363 |
|
364 |
<!-- Container Width -->
|
365 |
-
<h4 class="mec-form-subtitle"><?php esc_html_e('Container Width', 'modern-events-calendar-lite'); ?></h4>
|
366 |
<div class="mec-form-row">
|
367 |
<label class="mec-col-3" for="mec_styling_container_normal_width"><?php _e('Desktop Normal Screens', 'modern-events-calendar-lite'); ?></label>
|
368 |
<div class="mec-col-4">
|
205 |
<form id="mec_styling_form">
|
206 |
|
207 |
<!-- Colorskin -->
|
208 |
+
<h4 class="mec-form-subtitle"><?php esc_html_e('Color Skin', 'modern-events-calendar-lite' ); ?></h4>
|
209 |
<div class="mec-form-row">
|
210 |
<div class="mec-col-3">
|
211 |
+
<p><?php esc_html_e('Predefined Color Skin', 'modern-events-calendar-lite' ); ?></p>
|
212 |
</div>
|
213 |
<div class="mec-col-6">
|
214 |
<ul class="mec-image-select-wrap">
|
251 |
</div>
|
252 |
<div class="mec-form-row">
|
253 |
<div class="mec-col-3">
|
254 |
+
<p><?php esc_html_e('Custom Color Skin', 'modern-events-calendar-lite' ); ?></p>
|
255 |
</div>
|
256 |
<div class="mec-col-6">
|
257 |
<input type="text" class="wp-color-picker-field" id="mec_settings_color" name="mec[styling][color]" value="<?php echo (isset($styling['color']) ? $styling['color'] : ''); ?>" data-default-color="" />
|
262 |
</div>
|
263 |
|
264 |
<!-- Advanced Options -->
|
265 |
+
<h4 class="mec-form-subtitle"><?php esc_html_e('Advanced Color Options (shortcodes)', 'modern-events-calendar-lite' ); ?></h4>
|
266 |
<div class="mec-form-row">
|
267 |
<div class="mec-col-3">
|
268 |
+
<p><?php esc_html_e('Title', 'modern-events-calendar-lite' ); ?></p>
|
269 |
</div>
|
270 |
<div class="mec-col-6">
|
271 |
<input type="text" class="wp-color-picker-field" id="mec_settings_title_color" name="mec[styling][title_color]" value="<?php echo (isset($styling['title_color']) ? $styling['title_color'] : ''); ?>" data-default-color="" />
|
274 |
|
275 |
<div class="mec-form-row">
|
276 |
<div class="mec-col-3">
|
277 |
+
<p><?php esc_html_e('Title Hover', 'modern-events-calendar-lite' ); ?></p>
|
278 |
</div>
|
279 |
<div class="mec-col-6">
|
280 |
<input type="text" class="wp-color-picker-field" id="mec_settings_title_color_hover" name="mec[styling][title_color_hover]" value="<?php echo (isset($styling['title_color_hover']) ? $styling['title_color_hover'] : ''); ?>" data-default-color="" />
|
283 |
|
284 |
<div class="mec-form-row">
|
285 |
<div class="mec-col-3">
|
286 |
+
<p><?php esc_html_e('Content', 'modern-events-calendar-lite' ); ?></p>
|
287 |
</div>
|
288 |
<div class="mec-col-6">
|
289 |
<input type="text" class="wp-color-picker-field" id="mec_settings_content_color" name="mec[styling][content_color]" value="<?php echo (isset($styling['content_color']) ? $styling['content_color'] : ''); ?>" data-default-color="" />
|
291 |
</div>
|
292 |
|
293 |
<!-- Typography -->
|
294 |
+
<h4 class="mec-form-subtitle"><?php esc_html_e('Typography', 'modern-events-calendar-lite' ); ?></h4>
|
295 |
<div class="mec-form-row">
|
296 |
<label class="mec-col-3" for="mec_h_fontfamily"><?php _e('Heading (Events Title) Font Family', 'modern-events-calendar-lite'); ?></label>
|
297 |
<div class="mec-col-4">
|
362 |
</div>
|
363 |
|
364 |
<!-- Container Width -->
|
365 |
+
<h4 class="mec-form-subtitle"><?php esc_html_e('Container Width', 'modern-events-calendar-lite' ); ?></h4>
|
366 |
<div class="mec-form-row">
|
367 |
<label class="mec-col-3" for="mec_styling_container_normal_width"><?php _e('Desktop Normal Screens', 'modern-events-calendar-lite'); ?></label>
|
368 |
<div class="mec-col-4">
|
app/features/mec/support-page.php
CHANGED
@@ -211,10 +211,10 @@ wp_enqueue_script('mec-lity-script', $this->main->asset('packages/lity/lity.min.
|
|
211 |
</div>
|
212 |
|
213 |
<div class="mec-faq-accordion-trigger"><a href=""><?php echo esc_html__('Can I have more than one calendar in one website?', 'modern-events-calendar-lite'); ?></a></div>
|
214 |
-
<div class="mec-faq-accordion-content"><?php esc_html_e( 'Unfortunately, MEC does not support more than 1 calendar in a single website, however, it will be added in its upcoming updates.' , 'modern-events-calendar-lite'); ?></div>
|
215 |
|
216 |
<div class="mec-faq-accordion-trigger"><a href=""><?php echo esc_html__('Can I import/export from/to MEC?', 'modern-events-calendar-lite'); ?></a></div>
|
217 |
-
<div class="mec-faq-accordion-content"><?php esc_html_e( 'Yes, you can get an XML export from MEC data or import the file you\'ve exported to MEC. Also, if you are using one of the following plugins (The event calendar, calendarize it, EventOn, Events Schedule WP Plugin), then you can easily transfer your events to MEC.', 'modern-events-calendar-lite'); ?></div>
|
218 |
</div>
|
219 |
</div>
|
220 |
</div>
|
@@ -246,7 +246,7 @@ wp_enqueue_script('mec-lity-script', $this->main->asset('packages/lity/lity.min.
|
|
246 |
<div class="w-box support-page mec-ticksy">
|
247 |
<div class="w-box-content">
|
248 |
<p><?php esc_html_e('Webnus is an elite and trusted author with a high percentage of satisfied users. If you have any issues please don\'t hesitate to contact us, we will reply as soon as possible.' , 'modern-events-calendar-lite'); ?></p>
|
249 |
-
<a href="https://webnus.ticksy.com/" target="_blank"><?php esc_html_e('Go to support forum',
|
250 |
</div>
|
251 |
</div>
|
252 |
</div>
|
211 |
</div>
|
212 |
|
213 |
<div class="mec-faq-accordion-trigger"><a href=""><?php echo esc_html__('Can I have more than one calendar in one website?', 'modern-events-calendar-lite'); ?></a></div>
|
214 |
+
<div class="mec-faq-accordion-content"><?php esc_html_e( 'Unfortunately, MEC does not support more than 1 calendar in a single website, however, it will be added in its upcoming updates.' , 'modern-events-calendar-lite' ); ?></div>
|
215 |
|
216 |
<div class="mec-faq-accordion-trigger"><a href=""><?php echo esc_html__('Can I import/export from/to MEC?', 'modern-events-calendar-lite'); ?></a></div>
|
217 |
+
<div class="mec-faq-accordion-content"><?php esc_html_e( 'Yes, you can get an XML export from MEC data or import the file you\'ve exported to MEC. Also, if you are using one of the following plugins (The event calendar, calendarize it, EventOn, Events Schedule WP Plugin), then you can easily transfer your events to MEC.', 'modern-events-calendar-lite' ); ?></div>
|
218 |
</div>
|
219 |
</div>
|
220 |
</div>
|
246 |
<div class="w-box support-page mec-ticksy">
|
247 |
<div class="w-box-content">
|
248 |
<p><?php esc_html_e('Webnus is an elite and trusted author with a high percentage of satisfied users. If you have any issues please don\'t hesitate to contact us, we will reply as soon as possible.' , 'modern-events-calendar-lite'); ?></p>
|
249 |
+
<a href="https://webnus.ticksy.com/" target="_blank"><?php esc_html_e('Go to support forum','modern-events-calendar-lite'); ?></a>
|
250 |
</div>
|
251 |
</div>
|
252 |
</div>
|
app/libraries/book.php
CHANGED
@@ -631,20 +631,18 @@ class MEC_book extends MEC_base
|
|
631 |
$attendees = get_post_meta($book_id, 'mec_attendees', true);
|
632 |
$count = 0;
|
633 |
|
634 |
-
if(is_array($attendees))
|
635 |
-
|
636 |
-
|
637 |
-
|
638 |
-
|
639 |
-
|
640 |
-
|
641 |
-
|
642 |
-
$count++;
|
643 |
-
}
|
644 |
}
|
645 |
}
|
|
|
646 |
return $count;
|
647 |
-
// return 1;
|
648 |
}
|
649 |
|
650 |
public function get_transaction_id_book_id($book_id)
|
631 |
$attendees = get_post_meta($book_id, 'mec_attendees', true);
|
632 |
$count = 0;
|
633 |
|
634 |
+
if(is_array($attendees))
|
635 |
+
{
|
636 |
+
foreach($attendees as $key => $attendee)
|
637 |
+
{
|
638 |
+
if($key === 'attachments') continue;
|
639 |
+
|
640 |
+
if(!isset($attendee[0]['MEC_TYPE_OF_DATA'])) $count++;
|
641 |
+
elseif($attendee[0]['MEC_TYPE_OF_DATA'] != 'attachment') $count++;
|
|
|
|
|
642 |
}
|
643 |
}
|
644 |
+
|
645 |
return $count;
|
|
|
646 |
}
|
647 |
|
648 |
public function get_transaction_id_book_id($book_id)
|
app/libraries/main.php
CHANGED
@@ -536,7 +536,6 @@ class MEC_main extends MEC_base
|
|
536 |
{
|
537 |
$get_n_option = get_option('mec_addons_notification_option');
|
538 |
if ( $get_n_option == 'open' ) return;
|
539 |
-
$update_n_option = update_option('mec_addons_notification_option', 'open');
|
540 |
return '
|
541 |
<div class="w-row mec-addons-notification-wrap">
|
542 |
<div class="w-col-sm-12">
|
@@ -1804,7 +1803,7 @@ class MEC_main extends MEC_base
|
|
1804 |
$events = $this->ical_single($id, $occurrence);
|
1805 |
$ical_calendar = $this->ical_calendar($events);
|
1806 |
|
1807 |
-
header('Content-type: application/force-download; charset=utf-8');
|
1808 |
header('Content-Disposition: attachment; filename="mec-event-'.$id.'.ics"');
|
1809 |
|
1810 |
echo $ical_calendar;
|
@@ -1903,11 +1902,19 @@ class MEC_main extends MEC_base
|
|
1903 |
$stamp = strtotime($event->post->post_date);
|
1904 |
$modified = strtotime($event->post->post_modified);
|
1905 |
|
|
|
|
|
1906 |
$ical = "BEGIN:VEVENT".PHP_EOL;
|
1907 |
$ical .= "UID:MEC-".md5($event_id)."@".$this->get_domain().PHP_EOL;
|
1908 |
$ical .= "DTSTART:".gmdate('Ymd\\THi00\\Z', ($start_time - $gmt_offset_seconds)).PHP_EOL;
|
1909 |
$ical .= "DTEND:".gmdate('Ymd\\THi00\\Z', ($end_time - $gmt_offset_seconds)).PHP_EOL;
|
1910 |
$ical .= "DTSTAMP:".gmdate('Ymd\\THi00\\Z', ($stamp - $gmt_offset_seconds)).PHP_EOL;
|
|
|
|
|
|
|
|
|
|
|
|
|
1911 |
$ical .= "CREATED:".date('Ymd', $stamp).PHP_EOL;
|
1912 |
$ical .= "LAST-MODIFIED:".date('Ymd', $modified).PHP_EOL;
|
1913 |
$ical .= "SUMMARY:".html_entity_decode($event->title, ENT_NOQUOTES, 'UTF-8').PHP_EOL;
|
@@ -4733,7 +4740,7 @@ class MEC_main extends MEC_base
|
|
4733 |
* @param $day
|
4734 |
* @return string|boolean
|
4735 |
*/
|
4736 |
-
function advanced_repeating_sort_day($start_of_week = 1, $day = 1)
|
4737 |
{
|
4738 |
if(func_num_args() < 2) return false;
|
4739 |
|
@@ -4748,4 +4755,113 @@ class MEC_main extends MEC_base
|
|
4748 |
|
4749 |
return $merge[$day];
|
4750 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4751 |
}
|
536 |
{
|
537 |
$get_n_option = get_option('mec_addons_notification_option');
|
538 |
if ( $get_n_option == 'open' ) return;
|
|
|
539 |
return '
|
540 |
<div class="w-row mec-addons-notification-wrap">
|
541 |
<div class="w-col-sm-12">
|
1803 |
$events = $this->ical_single($id, $occurrence);
|
1804 |
$ical_calendar = $this->ical_calendar($events);
|
1805 |
|
1806 |
+
header('Content-type: application/force-download; charset=utf-8');
|
1807 |
header('Content-Disposition: attachment; filename="mec-event-'.$id.'.ics"');
|
1808 |
|
1809 |
echo $ical_calendar;
|
1902 |
$stamp = strtotime($event->post->post_date);
|
1903 |
$modified = strtotime($event->post->post_modified);
|
1904 |
|
1905 |
+
$rrules = $this->get_ical_rrules($event);
|
1906 |
+
|
1907 |
$ical = "BEGIN:VEVENT".PHP_EOL;
|
1908 |
$ical .= "UID:MEC-".md5($event_id)."@".$this->get_domain().PHP_EOL;
|
1909 |
$ical .= "DTSTART:".gmdate('Ymd\\THi00\\Z', ($start_time - $gmt_offset_seconds)).PHP_EOL;
|
1910 |
$ical .= "DTEND:".gmdate('Ymd\\THi00\\Z', ($end_time - $gmt_offset_seconds)).PHP_EOL;
|
1911 |
$ical .= "DTSTAMP:".gmdate('Ymd\\THi00\\Z', ($stamp - $gmt_offset_seconds)).PHP_EOL;
|
1912 |
+
|
1913 |
+
if(is_array($rrules) and count($rrules))
|
1914 |
+
{
|
1915 |
+
foreach($rrules as $rrule) $ical .= $rrule.PHP_EOL;
|
1916 |
+
}
|
1917 |
+
|
1918 |
$ical .= "CREATED:".date('Ymd', $stamp).PHP_EOL;
|
1919 |
$ical .= "LAST-MODIFIED:".date('Ymd', $modified).PHP_EOL;
|
1920 |
$ical .= "SUMMARY:".html_entity_decode($event->title, ENT_NOQUOTES, 'UTF-8').PHP_EOL;
|
4740 |
* @param $day
|
4741 |
* @return string|boolean
|
4742 |
*/
|
4743 |
+
public function advanced_repeating_sort_day($start_of_week = 1, $day = 1)
|
4744 |
{
|
4745 |
if(func_num_args() < 2) return false;
|
4746 |
|
4755 |
|
4756 |
return $merge[$day];
|
4757 |
}
|
4758 |
+
|
4759 |
+
public function get_ical_rrules($event)
|
4760 |
+
{
|
4761 |
+
$recurrence = array();
|
4762 |
+
if(isset($event->mec->repeat) and $event->mec->repeat)
|
4763 |
+
{
|
4764 |
+
$gmt_offset = $this->get_gmt_offset();
|
4765 |
+
$finish = ($event->mec->end != '0000-00-00' ? date('Ymd\THis\Z', strtotime($event->mec->end.' '.$event->time['end'])) : '');
|
4766 |
+
$freq = '';
|
4767 |
+
$interval = '1';
|
4768 |
+
$bysetpos = '';
|
4769 |
+
$byday = '';
|
4770 |
+
$wkst = '';
|
4771 |
+
|
4772 |
+
$repeat_type = $event->meta['mec_repeat_type'];
|
4773 |
+
$week_day_mapping = array('1'=>'MO', '2'=>'TU', '3'=>'WE', '4'=>'TH', '5'=>'FR', '6'=>'SA', '7'=>'SU');
|
4774 |
+
|
4775 |
+
if($repeat_type == 'daily')
|
4776 |
+
{
|
4777 |
+
$freq = 'DAILY';
|
4778 |
+
$interval = $event->mec->rinterval;
|
4779 |
+
}
|
4780 |
+
elseif($repeat_type == 'weekly')
|
4781 |
+
{
|
4782 |
+
$freq = 'WEEKLY';
|
4783 |
+
$interval = ($event->mec->rinterval/7);
|
4784 |
+
}
|
4785 |
+
elseif($repeat_type == 'monthly') $freq = 'MONTHLY';
|
4786 |
+
elseif($repeat_type == 'yearly') $freq = 'YEARLY';
|
4787 |
+
elseif($repeat_type == 'weekday')
|
4788 |
+
{
|
4789 |
+
$mec_weekdays = explode(',', trim($event->mec->weekdays, ','));
|
4790 |
+
foreach($mec_weekdays as $mec_weekday) $byday .= $week_day_mapping[$mec_weekday].',';
|
4791 |
+
|
4792 |
+
$byday = trim($byday, ', ');
|
4793 |
+
$freq = 'WEEKLY';
|
4794 |
+
}
|
4795 |
+
elseif($repeat_type == 'weekend')
|
4796 |
+
{
|
4797 |
+
$mec_weekdays = explode(',', trim($event->mec->weekdays, ','));
|
4798 |
+
foreach($mec_weekdays as $mec_weekday) $byday .= $week_day_mapping[$mec_weekday].',';
|
4799 |
+
|
4800 |
+
$byday = trim($byday, ', ');
|
4801 |
+
$freq = 'WEEKLY';
|
4802 |
+
}
|
4803 |
+
elseif($repeat_type == 'certain_weekdays')
|
4804 |
+
{
|
4805 |
+
$mec_weekdays = explode(',', trim($event->mec->weekdays, ','));
|
4806 |
+
foreach($mec_weekdays as $mec_weekday) $byday .= $week_day_mapping[$mec_weekday].',';
|
4807 |
+
|
4808 |
+
$byday = trim($byday, ', ');
|
4809 |
+
$freq = 'WEEKLY';
|
4810 |
+
}
|
4811 |
+
elseif($repeat_type == 'advanced')
|
4812 |
+
{
|
4813 |
+
$advanced_days = is_array($event->meta['mec_advanced_days']) ? $event->meta['mec_advanced_days'] : array();
|
4814 |
+
|
4815 |
+
$first_rule = isset($advanced_days[0]) ? $advanced_days[0] : NULL;
|
4816 |
+
$ex = explode('.', $first_rule);
|
4817 |
+
|
4818 |
+
$bysetpos = isset($ex[1]) ? $ex[1] : NULL;
|
4819 |
+
$byday_mapping = array('MON'=>'MO', 'TUE'=>'TU', 'WED'=>'WE', 'THU'=>'TH', 'FRI'=>'FR', 'SAT'=>'SA', 'SUN'=>'SU');
|
4820 |
+
$byday = $byday_mapping[strtoupper($ex[0])];
|
4821 |
+
|
4822 |
+
$freq = 'MONTHLY';
|
4823 |
+
}
|
4824 |
+
elseif($repeat_type == 'custom_days')
|
4825 |
+
{
|
4826 |
+
$freq = '';
|
4827 |
+
$mec_periods = explode(',', trim($event->mec->days, ','));
|
4828 |
+
|
4829 |
+
$days = '';
|
4830 |
+
foreach($mec_periods as $mec_period)
|
4831 |
+
{
|
4832 |
+
$mec_days = explode(':', trim($mec_period, ': '));
|
4833 |
+
$days .= date('Ymd\THis', strtotime($mec_days[0].' '.$event->time['start'])).$gmt_offset.'/'.date('Ymd\THis', strtotime($mec_days[1].' '.$event->time['end'])).$gmt_offset.',';
|
4834 |
+
}
|
4835 |
+
|
4836 |
+
// Add RDATE
|
4837 |
+
$recurrence[] = trim('RDATE;VALUE=PERIOD:'.trim($days, ', '), '; ');
|
4838 |
+
}
|
4839 |
+
|
4840 |
+
// Add RRULE
|
4841 |
+
if(trim($freq))
|
4842 |
+
{
|
4843 |
+
$rrule = 'RRULE:FREQ='.$freq.';'
|
4844 |
+
.($interval > 1 ? 'INTERVAL='.$interval.';' : '')
|
4845 |
+
.(($finish != '0000-00-00' and $finish != '') ? 'UNTIL='.$finish.';' : '')
|
4846 |
+
.($wkst != '' ? 'WKST='.$wkst.';' : '')
|
4847 |
+
.($bysetpos != '' ? 'BYSETPOS='.$bysetpos.';' : '')
|
4848 |
+
.($byday != '' ? 'BYDAY='.$byday.';' : '');
|
4849 |
+
|
4850 |
+
$recurrence[] = trim($rrule, '; ');
|
4851 |
+
}
|
4852 |
+
|
4853 |
+
if(trim($event->mec->not_in_days))
|
4854 |
+
{
|
4855 |
+
$mec_not_in_days = explode(',', trim($event->mec->not_in_days, ','));
|
4856 |
+
|
4857 |
+
$not_in_days = '';
|
4858 |
+
foreach($mec_not_in_days as $mec_not_in_day) $not_in_days .= date('Ymd', strtotime($mec_not_in_day)).',';
|
4859 |
+
|
4860 |
+
// Add EXDATE
|
4861 |
+
$recurrence[] = trim('EXDATE;VALUE=DATE:'.trim($not_in_days, ', '), '; ');
|
4862 |
+
}
|
4863 |
+
}
|
4864 |
+
|
4865 |
+
return $recurrence;
|
4866 |
+
}
|
4867 |
}
|
app/libraries/notifications.php
CHANGED
@@ -565,8 +565,9 @@ class MEC_notifications extends MEC_base
|
|
565 |
$message = str_replace('%%event_organizer_name%%', (isset($organizer->name) ? $organizer->name : ''), $message);
|
566 |
$message = str_replace('%%event_organizer_tel%%', get_term_meta($organizer_id, 'tel', true), $message);
|
567 |
$message = str_replace('%%event_organizer_email%%', get_term_meta($organizer_id, 'email', true), $message);
|
|
|
568 |
foreach ($speaker_id as $speaker) {
|
569 |
-
$speaker_name[] = $speaker->name;
|
570 |
}
|
571 |
$message = str_replace('%%event_speaker_name%%', (isset($speaker_name) ? implode(', ', $speaker_name): ''), $message);
|
572 |
$message = str_replace('%%event_location_name%%', (isset($location->name) ? $location->name : ''), $message);
|
565 |
$message = str_replace('%%event_organizer_name%%', (isset($organizer->name) ? $organizer->name : ''), $message);
|
566 |
$message = str_replace('%%event_organizer_tel%%', get_term_meta($organizer_id, 'tel', true), $message);
|
567 |
$message = str_replace('%%event_organizer_email%%', get_term_meta($organizer_id, 'email', true), $message);
|
568 |
+
$speaker_name = array();
|
569 |
foreach ($speaker_id as $speaker) {
|
570 |
+
$speaker_name[] = isset($speaker->name) ? $speaker->name : null;
|
571 |
}
|
572 |
$message = str_replace('%%event_speaker_name%%', (isset($speaker_name) ? implode(', ', $speaker_name): ''), $message);
|
573 |
$message = str_replace('%%event_location_name%%', (isset($location->name) ? $location->name : ''), $message);
|
app/libraries/render.php
CHANGED
@@ -857,11 +857,11 @@ class MEC_render extends MEC_base
|
|
857 |
$i++;
|
858 |
}
|
859 |
|
860 |
-
while($i
|
861 |
{
|
862 |
foreach($advanced_days as $day)
|
863 |
{
|
864 |
-
if($i
|
865 |
|
866 |
// Explode $day value for example (Sun.1) to Sun and 1
|
867 |
$d = explode('.', $day);
|
@@ -875,9 +875,12 @@ class MEC_render extends MEC_base
|
|
875 |
// Generate start date for example "first Sun of next month"
|
876 |
$start = date('Y-m-d', strtotime("{$levels[$index]} {$d[0]} of next month", strtotime(date($date))));
|
877 |
$end = date('Y-m-d', strtotime("+{$event_period_days} Days", strtotime($start)));
|
|
|
|
|
|
|
878 |
|
879 |
// Jump to next level if start date is past
|
880 |
-
if($this->main->is_past($start, $today) or in_array($start, $exceptional_days)) continue;
|
881 |
|
882 |
// Add dates
|
883 |
$dates[] = array(
|
@@ -891,6 +894,9 @@ class MEC_render extends MEC_base
|
|
891 |
$i++;
|
892 |
}
|
893 |
|
|
|
|
|
|
|
894 |
// Change month and years for next resualts
|
895 |
if(intval($month) == 12)
|
896 |
{
|
857 |
$i++;
|
858 |
}
|
859 |
|
860 |
+
while($i < $maximum)
|
861 |
{
|
862 |
foreach($advanced_days as $day)
|
863 |
{
|
864 |
+
if($i >= $maximum) break;
|
865 |
|
866 |
// Explode $day value for example (Sun.1) to Sun and 1
|
867 |
$d = explode('.', $day);
|
875 |
// Generate start date for example "first Sun of next month"
|
876 |
$start = date('Y-m-d', strtotime("{$levels[$index]} {$d[0]} of next month", strtotime(date($date))));
|
877 |
$end = date('Y-m-d', strtotime("+{$event_period_days} Days", strtotime($start)));
|
878 |
+
|
879 |
+
// When ends repeat date set
|
880 |
+
if($this->main->is_past($finish_date['date'], $start)) continue;
|
881 |
|
882 |
// Jump to next level if start date is past
|
883 |
+
if( $this->main->is_past($start, $today) or in_array($start, $exceptional_days) ) continue;
|
884 |
|
885 |
// Add dates
|
886 |
$dates[] = array(
|
894 |
$i++;
|
895 |
}
|
896 |
|
897 |
+
// When ends repeat date set
|
898 |
+
if($this->main->is_past($finish_date['date'], $start)) break;
|
899 |
+
|
900 |
// Change month and years for next resualts
|
901 |
if(intval($month) == 12)
|
902 |
{
|
app/modules/attendees-list/details.php
CHANGED
@@ -20,14 +20,16 @@ $start_date = (isset($date['start']) and isset($date['start']['date'])) ? $date[
|
|
20 |
$limit = isset($settings['bp_attendees_module_limit']) ? $settings['bp_attendees_module_limit'] : 20;
|
21 |
$bookings = $this->get_bookings($event->data->ID, $start_date, $limit);
|
22 |
|
|
|
|
|
|
|
23 |
// Start Date belongs to future but booking module cannot show so return without any output
|
24 |
if(!$this->can_show_booking_module($event) and strtotime($start_date) > time()) return;
|
25 |
|
26 |
$attendees = array();
|
27 |
foreach($bookings as $booking)
|
28 |
{
|
29 |
-
|
30 |
-
else $attendees[$booking->post_author]++;
|
31 |
}
|
32 |
?>
|
33 |
<div class="mec-attendees-list-details mec-frontbox" id="mec_attendees_list_details">
|
@@ -36,7 +38,7 @@ foreach($bookings as $booking)
|
|
36 |
<p><?php _e('No attendee found! Be the first one to book!', 'modern-events-calendar-lite'); ?></p>
|
37 |
<?php else: ?>
|
38 |
<ul>
|
39 |
-
<?php do_action('mec_attendeed_hook', $attendees); foreach($attendees as $attendee_id=>$
|
40 |
<li>
|
41 |
<div class="mec-attendee-avatar">
|
42 |
<a href="<?php echo bp_core_get_user_domain($attendee_id); ?>" title="<?php echo bp_core_get_user_displayname($attendee_id); ?>">
|
@@ -51,7 +53,7 @@ foreach($bookings as $booking)
|
|
51 |
if(!$name) $name = $user->display_name;
|
52 |
?>
|
53 |
<div class="mec-attendee-profile-link">
|
54 |
-
<?php echo '<a href="'.$link.'">'.$name.'</a>'.(
|
55 |
</div>
|
56 |
</li>
|
57 |
<?php endforeach; ?>
|
20 |
$limit = isset($settings['bp_attendees_module_limit']) ? $settings['bp_attendees_module_limit'] : 20;
|
21 |
$bookings = $this->get_bookings($event->data->ID, $start_date, $limit);
|
22 |
|
23 |
+
// Book Library
|
24 |
+
$book = $this->getBook();
|
25 |
+
|
26 |
// Start Date belongs to future but booking module cannot show so return without any output
|
27 |
if(!$this->can_show_booking_module($event) and strtotime($start_date) > time()) return;
|
28 |
|
29 |
$attendees = array();
|
30 |
foreach($bookings as $booking)
|
31 |
{
|
32 |
+
$attendees[$booking->post_author] = $booking->ID;
|
|
|
33 |
}
|
34 |
?>
|
35 |
<div class="mec-attendees-list-details mec-frontbox" id="mec_attendees_list_details">
|
38 |
<p><?php _e('No attendee found! Be the first one to book!', 'modern-events-calendar-lite'); ?></p>
|
39 |
<?php else: ?>
|
40 |
<ul>
|
41 |
+
<?php do_action('mec_attendeed_hook', $attendees); foreach($attendees as $attendee_id=>$booking_id): ?>
|
42 |
<li>
|
43 |
<div class="mec-attendee-avatar">
|
44 |
<a href="<?php echo bp_core_get_user_domain($attendee_id); ?>" title="<?php echo bp_core_get_user_displayname($attendee_id); ?>">
|
53 |
if(!$name) $name = $user->display_name;
|
54 |
?>
|
55 |
<div class="mec-attendee-profile-link">
|
56 |
+
<?php echo '<a href="'.$link.'">'.$name.'</a>'.(' <span>'.sprintf(__('%s tickets', 'modern-events-calendar-lite'), $book->get_total_attendees($booking_id)).'</span>'); ?>
|
57 |
</div>
|
58 |
</li>
|
59 |
<?php endforeach; ?>
|
app/modules/booking/default.php
CHANGED
@@ -41,6 +41,10 @@ function mec_get_tickets_availability'.$uniqueid.'(event_id, date)
|
|
41 |
// Abort previous request
|
42 |
if(mec_tickets_availability_ajax'.$uniqueid.') mec_tickets_availability_ajax'.$uniqueid.'.abort();
|
43 |
|
|
|
|
|
|
|
|
|
44 |
mec_tickets_availability_ajax'.$uniqueid.' = jQuery.ajax(
|
45 |
{
|
46 |
type: "GET",
|
@@ -96,6 +100,9 @@ function mec_get_tickets_availability'.$uniqueid.'(event_id, date)
|
|
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 |
{
|
41 |
// Abort previous request
|
42 |
if(mec_tickets_availability_ajax'.$uniqueid.') mec_tickets_availability_ajax'.$uniqueid.'.abort();
|
43 |
|
44 |
+
//Start Preloader
|
45 |
+
jQuery(".mec-event-tickets-list").addClass("mec-cover-loader");
|
46 |
+
jQuery(".mec-event-tickets-list").append( "<div class=\"mec-loader\"></div>" );
|
47 |
+
|
48 |
mec_tickets_availability_ajax'.$uniqueid.' = jQuery.ajax(
|
49 |
{
|
50 |
type: "GET",
|
100 |
|
101 |
jQuery("#mec_booking'.$uniqueid.' #mec_event_ticket"+ticket_id+" .mec-event-ticket-price").html(price_label);
|
102 |
}
|
103 |
+
// Remove Preloader
|
104 |
+
jQuery(".mec-loader").remove();
|
105 |
+
jQuery(".mec-event-tickets-list").removeClass("mec-cover-loader");
|
106 |
},
|
107 |
error: function(jqXHR, textStatus, errorThrown)
|
108 |
{
|
app/modules/booking/steps/form.php
CHANGED
@@ -32,7 +32,7 @@ if ( ! $mec_name ) {
|
|
32 |
$reg_fields[] = [
|
33 |
'mandatory' => '0',
|
34 |
'type' => 'name',
|
35 |
-
'label' => esc_html__( 'Name', 'modern-events-calendar-lite'),
|
36 |
];
|
37 |
}
|
38 |
|
@@ -40,7 +40,7 @@ if ( ! $mec_email ) {
|
|
40 |
$reg_fields[] = [
|
41 |
'mandatory' => '0',
|
42 |
'type' => 'mec_email',
|
43 |
-
'label' => esc_html__( 'Email', 'modern-events-calendar-lite'),
|
44 |
];
|
45 |
}
|
46 |
?>
|
32 |
$reg_fields[] = [
|
33 |
'mandatory' => '0',
|
34 |
'type' => 'name',
|
35 |
+
'label' => esc_html__( 'Name', 'modern-events-calendar-lite' ),
|
36 |
];
|
37 |
}
|
38 |
|
40 |
$reg_fields[] = [
|
41 |
'mandatory' => '0',
|
42 |
'type' => 'mec_email',
|
43 |
+
'label' => esc_html__( 'Email', 'modern-events-calendar-lite' ),
|
44 |
];
|
45 |
}
|
46 |
?>
|
app/modules/weather/details.php
CHANGED
@@ -45,21 +45,21 @@ if(!is_array($weather) or (is_array($weather) and !count($weather))) return;
|
|
45 |
<div class="mec-weather-summary">
|
46 |
<div class="mec-weather-summary-report"><?php echo $weather['summary']; ?></div>
|
47 |
<?php if(isset($weather['temperature'])): ?>
|
48 |
-
<div class="mec-weather-summary-temp"><?php echo round( $weather['temperature']);?> <var><?php _e( ' °C', 'modern-events-calendar-lite'); ?></var></div>
|
49 |
<?php endif; ?>
|
50 |
</div>
|
51 |
<div class="mec-weather-extras">
|
52 |
|
53 |
<?php if(isset($weather['windSpeed'])): ?>
|
54 |
-
<div class="mec-weather-wind"><span><?php _e('Wind', 'modern-events-calendar-lite'); ?>:</span> <?php echo round($weather['windSpeed']); ?><var><?php _e(' KPH',
|
55 |
<?php endif; ?>
|
56 |
|
57 |
<?php if(isset($weather['humidity'])): ?>
|
58 |
-
<div class="mec-weather-humidity"><span><?php _e('Humidity', 'modern-events-calendar-lite'); ?>:</span> <?php echo round($weather['humidity']); ?><var><?php _e(' %',
|
59 |
<?php endif; ?>
|
60 |
|
61 |
<?php if(isset($weather['visibility'])): ?>
|
62 |
-
<div class="mec-weather-visibility"><span><?php _e('Visibility', 'modern-events-calendar-lite'); ?>:</span> <?php echo round($weather['visibility']); ?><var><?php _e(' KM',
|
63 |
<?php endif; ?>
|
64 |
|
65 |
</div>
|
45 |
<div class="mec-weather-summary">
|
46 |
<div class="mec-weather-summary-report"><?php echo $weather['summary']; ?></div>
|
47 |
<?php if(isset($weather['temperature'])): ?>
|
48 |
+
<div class="mec-weather-summary-temp"><?php echo round( $weather['temperature']);?> <var><?php _e( ' °C', 'modern-events-calendar-lite' ); ?></var></div>
|
49 |
<?php endif; ?>
|
50 |
</div>
|
51 |
<div class="mec-weather-extras">
|
52 |
|
53 |
<?php if(isset($weather['windSpeed'])): ?>
|
54 |
+
<div class="mec-weather-wind"><span><?php _e('Wind', 'modern-events-calendar-lite'); ?>:</span> <?php echo round($weather['windSpeed']); ?><var><?php _e(' KPH','modern-events-calendar-lite'); ?></var></div>
|
55 |
<?php endif; ?>
|
56 |
|
57 |
<?php if(isset($weather['humidity'])): ?>
|
58 |
+
<div class="mec-weather-humidity"><span><?php _e('Humidity', 'modern-events-calendar-lite'); ?>:</span> <?php echo round($weather['humidity']); ?><var><?php _e(' %','modern-events-calendar-lite'); ?></var></div>
|
59 |
<?php endif; ?>
|
60 |
|
61 |
<?php if(isset($weather['visibility'])): ?>
|
62 |
+
<div class="mec-weather-visibility"><span><?php _e('Visibility', 'modern-events-calendar-lite'); ?>:</span> <?php echo round($weather['visibility']); ?><var><?php _e(' KM','modern-events-calendar-lite'); ?></var></div>
|
63 |
<?php endif; ?>
|
64 |
|
65 |
</div>
|
app/skins/agenda/render.php
CHANGED
@@ -34,11 +34,11 @@ $settings = $this->main->get_settings();
|
|
34 |
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
35 |
if ( $label['style'] == 'mec-label-featured' )
|
36 |
{
|
37 |
-
$label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite');
|
38 |
}
|
39 |
elseif ( $label['style'] == 'mec-label-canceled' )
|
40 |
{
|
41 |
-
$label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite');
|
42 |
}
|
43 |
}
|
44 |
endif;
|
34 |
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
35 |
if ( $label['style'] == 'mec-label-featured' )
|
36 |
{
|
37 |
+
$label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite' );
|
38 |
}
|
39 |
elseif ( $label['style'] == 'mec-label-canceled' )
|
40 |
{
|
41 |
+
$label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite' );
|
42 |
}
|
43 |
}
|
44 |
endif;
|
app/skins/available_spot/tpl.php
CHANGED
@@ -28,11 +28,11 @@ foreach( $event->data->labels as $label)
|
|
28 |
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
29 |
if ( $label['style'] == 'mec-label-featured' )
|
30 |
{
|
31 |
-
$label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite');
|
32 |
}
|
33 |
elseif ( $label['style'] == 'mec-label-canceled' )
|
34 |
{
|
35 |
-
$label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite');
|
36 |
}
|
37 |
}
|
38 |
endif;
|
28 |
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
29 |
if ( $label['style'] == 'mec-label-featured' )
|
30 |
{
|
31 |
+
$label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite' );
|
32 |
}
|
33 |
elseif ( $label['style'] == 'mec-label-canceled' )
|
34 |
{
|
35 |
+
$label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite' );
|
36 |
}
|
37 |
}
|
38 |
endif;
|
app/skins/countdown/tpl.php
CHANGED
@@ -21,11 +21,11 @@ foreach( $event->data->labels as $label)
|
|
21 |
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
22 |
if ( $label['style'] == 'mec-label-featured' )
|
23 |
{
|
24 |
-
$label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite');
|
25 |
}
|
26 |
elseif ( $label['style'] == 'mec-label-canceled' )
|
27 |
{
|
28 |
-
$label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite');
|
29 |
}
|
30 |
}
|
31 |
endif;
|
21 |
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
22 |
if ( $label['style'] == 'mec-label-featured' )
|
23 |
{
|
24 |
+
$label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite' );
|
25 |
}
|
26 |
elseif ( $label['style'] == 'mec-label-canceled' )
|
27 |
{
|
28 |
+
$label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite' );
|
29 |
}
|
30 |
}
|
31 |
endif;
|
app/skins/cover/tpl.php
CHANGED
@@ -25,11 +25,11 @@ foreach( $event->data->labels as $label)
|
|
25 |
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
26 |
if ( $label['style'] == 'mec-label-featured' )
|
27 |
{
|
28 |
-
$label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite');
|
29 |
}
|
30 |
elseif ( $label['style'] == 'mec-label-canceled' )
|
31 |
{
|
32 |
-
$label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite');
|
33 |
}
|
34 |
}
|
35 |
endif;
|
25 |
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
26 |
if ( $label['style'] == 'mec-label-featured' )
|
27 |
{
|
28 |
+
$label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite' );
|
29 |
}
|
30 |
elseif ( $label['style'] == 'mec-label-canceled' )
|
31 |
{
|
32 |
+
$label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite' );
|
33 |
}
|
34 |
}
|
35 |
endif;
|
app/skins/daily_view/render.php
CHANGED
@@ -20,11 +20,11 @@ $settings = $this->main->get_settings();
|
|
20 |
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
21 |
if ( $label['style'] == 'mec-label-featured' )
|
22 |
{
|
23 |
-
$label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite');
|
24 |
}
|
25 |
elseif ( $label['style'] == 'mec-label-canceled' )
|
26 |
{
|
27 |
-
$label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite');
|
28 |
}
|
29 |
}
|
30 |
endif;
|
20 |
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
21 |
if ( $label['style'] == 'mec-label-featured' )
|
22 |
{
|
23 |
+
$label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite' );
|
24 |
}
|
25 |
elseif ( $label['style'] == 'mec-label-canceled' )
|
26 |
{
|
27 |
+
$label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite' );
|
28 |
}
|
29 |
}
|
30 |
endif;
|
app/skins/full_calendar.php
CHANGED
@@ -150,6 +150,7 @@ class MEC_skin_full_calendar extends MEC_skins
|
|
150 |
$atts['sk-options']['yearly_view']['style'] = 'modern';
|
151 |
$atts['sk-options']['yearly_view']['sed_method'] = isset($this->skin_options['sed_method']) ? $this->skin_options['sed_method'] : '0';
|
152 |
$atts['sk-options']['yearly_view']['image_popup'] = isset($this->skin_options['image_popup']) ? $this->skin_options['image_popup'] : '0';
|
|
|
153 |
$atts['sf_status'] = false;
|
154 |
|
155 |
$output = $this->render->vyear($atts);
|
@@ -164,6 +165,7 @@ class MEC_skin_full_calendar extends MEC_skins
|
|
164 |
$atts['sk-options']['monthly_view']['style'] = $this->monthly_style;
|
165 |
$atts['sk-options']['monthly_view']['sed_method'] = isset($this->skin_options['sed_method']) ? $this->skin_options['sed_method'] : '0';
|
166 |
$atts['sk-options']['monthly_view']['image_popup'] = isset($this->skin_options['image_popup']) ? $this->skin_options['image_popup'] : '0';
|
|
|
167 |
$atts['sf_status'] = false;
|
168 |
|
169 |
$output = $this->render->vmonth($atts);
|
@@ -177,6 +179,7 @@ class MEC_skin_full_calendar extends MEC_skins
|
|
177 |
$atts['sk-options']['weekly_view']['start_date'] = isset($this->skin_options['start_date']) ? $this->skin_options['start_date'] : '';
|
178 |
$atts['sk-options']['weekly_view']['sed_method'] = isset($this->skin_options['sed_method']) ? $this->skin_options['sed_method'] : '0';
|
179 |
$atts['sk-options']['weekly_view']['image_popup'] = isset($this->skin_options['image_popup']) ? $this->skin_options['image_popup'] : '0';
|
|
|
180 |
$atts['sf_status'] = false;
|
181 |
|
182 |
$output = $this->render->vweek($atts);
|
@@ -190,6 +193,7 @@ class MEC_skin_full_calendar extends MEC_skins
|
|
190 |
$atts['sk-options']['daily_view']['start_date'] = isset($this->skin_options['start_date']) ? $this->skin_options['start_date'] : '';
|
191 |
$atts['sk-options']['daily_view']['sed_method'] = isset($this->skin_options['sed_method']) ? $this->skin_options['sed_method'] : '0';
|
192 |
$atts['sk-options']['daily_view']['image_popup'] = isset($this->skin_options['image_popup']) ? $this->skin_options['image_popup'] : '0';
|
|
|
193 |
$atts['sf_status'] = false;
|
194 |
|
195 |
$output = $this->render->vday($atts);
|
@@ -206,6 +210,7 @@ class MEC_skin_full_calendar extends MEC_skins
|
|
206 |
$atts['sk-options']['list']['sed_method'] = isset($this->skin_options['sed_method']) ? $this->skin_options['sed_method'] : '0';
|
207 |
$atts['sk-options']['list']['image_popup'] = isset($this->skin_options['image_popup']) ? $this->skin_options['image_popup'] : '0';
|
208 |
$atts['sk-options']['list']['display_price'] = isset($this->skin_options['display_price']) ? $this->skin_options['display_price'] : 0;
|
|
|
209 |
$atts['sf_status'] = false;
|
210 |
|
211 |
$output = $this->render->vlist($atts);
|
150 |
$atts['sk-options']['yearly_view']['style'] = 'modern';
|
151 |
$atts['sk-options']['yearly_view']['sed_method'] = isset($this->skin_options['sed_method']) ? $this->skin_options['sed_method'] : '0';
|
152 |
$atts['sk-options']['yearly_view']['image_popup'] = isset($this->skin_options['image_popup']) ? $this->skin_options['image_popup'] : '0';
|
153 |
+
$atts['sk-options']['yearly_view']['limit'] = isset($this->skin_options['limit']) ? $this->skin_options['limit'] : 12;
|
154 |
$atts['sf_status'] = false;
|
155 |
|
156 |
$output = $this->render->vyear($atts);
|
165 |
$atts['sk-options']['monthly_view']['style'] = $this->monthly_style;
|
166 |
$atts['sk-options']['monthly_view']['sed_method'] = isset($this->skin_options['sed_method']) ? $this->skin_options['sed_method'] : '0';
|
167 |
$atts['sk-options']['monthly_view']['image_popup'] = isset($this->skin_options['image_popup']) ? $this->skin_options['image_popup'] : '0';
|
168 |
+
$atts['sk-options']['monthly_view']['limit'] = isset($this->skin_options['limit']) ? $this->skin_options['limit'] : 12;
|
169 |
$atts['sf_status'] = false;
|
170 |
|
171 |
$output = $this->render->vmonth($atts);
|
179 |
$atts['sk-options']['weekly_view']['start_date'] = isset($this->skin_options['start_date']) ? $this->skin_options['start_date'] : '';
|
180 |
$atts['sk-options']['weekly_view']['sed_method'] = isset($this->skin_options['sed_method']) ? $this->skin_options['sed_method'] : '0';
|
181 |
$atts['sk-options']['weekly_view']['image_popup'] = isset($this->skin_options['image_popup']) ? $this->skin_options['image_popup'] : '0';
|
182 |
+
$atts['sk-options']['weekly_view']['limit'] = isset($this->skin_options['limit']) ? $this->skin_options['limit'] : 12;
|
183 |
$atts['sf_status'] = false;
|
184 |
|
185 |
$output = $this->render->vweek($atts);
|
193 |
$atts['sk-options']['daily_view']['start_date'] = isset($this->skin_options['start_date']) ? $this->skin_options['start_date'] : '';
|
194 |
$atts['sk-options']['daily_view']['sed_method'] = isset($this->skin_options['sed_method']) ? $this->skin_options['sed_method'] : '0';
|
195 |
$atts['sk-options']['daily_view']['image_popup'] = isset($this->skin_options['image_popup']) ? $this->skin_options['image_popup'] : '0';
|
196 |
+
$atts['sk-options']['daily_view']['limit'] = isset($this->skin_options['limit']) ? $this->skin_options['limit'] : 12;
|
197 |
$atts['sf_status'] = false;
|
198 |
|
199 |
$output = $this->render->vday($atts);
|
210 |
$atts['sk-options']['list']['sed_method'] = isset($this->skin_options['sed_method']) ? $this->skin_options['sed_method'] : '0';
|
211 |
$atts['sk-options']['list']['image_popup'] = isset($this->skin_options['image_popup']) ? $this->skin_options['image_popup'] : '0';
|
212 |
$atts['sk-options']['list']['display_price'] = isset($this->skin_options['display_price']) ? $this->skin_options['display_price'] : 0;
|
213 |
+
$atts['sk-options']['list']['limit'] = isset($this->skin_options['limit']) ? $this->skin_options['limit'] : 12;
|
214 |
$atts['sf_status'] = false;
|
215 |
|
216 |
$output = $this->render->vlist($atts);
|
app/skins/grid/render.php
CHANGED
@@ -46,11 +46,11 @@ if($this->style == 'colorful')
|
|
46 |
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
47 |
if ( $label['style'] == 'mec-label-featured' )
|
48 |
{
|
49 |
-
$label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite');
|
50 |
}
|
51 |
elseif ( $label['style'] == 'mec-label-canceled' )
|
52 |
{
|
53 |
-
$label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite');
|
54 |
}
|
55 |
}
|
56 |
endif;
|
@@ -179,7 +179,7 @@ if($this->style == 'colorful')
|
|
179 |
<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>
|
180 |
<div class="mec-event-content">
|
181 |
<?php do_action('display_mec_tai' , $event ); ?>
|
182 |
-
<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>
|
183 |
<p><?php echo (isset($location['address']) ? $location['address'] : ''); ?></p>
|
184 |
</div>
|
185 |
<div class="mec-event-footer mec-color">
|
46 |
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
47 |
if ( $label['style'] == 'mec-label-featured' )
|
48 |
{
|
49 |
+
$label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite' );
|
50 |
}
|
51 |
elseif ( $label['style'] == 'mec-label-canceled' )
|
52 |
{
|
53 |
+
$label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite' );
|
54 |
}
|
55 |
}
|
56 |
endif;
|
179 |
<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>
|
180 |
<div class="mec-event-content">
|
181 |
<?php do_action('display_mec_tai' , $event ); ?>
|
182 |
+
<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; ?><?php do_action('mec_clean_custom_head' , $event ); ?></h4>
|
183 |
<p><?php echo (isset($location['address']) ? $location['address'] : ''); ?></p>
|
184 |
</div>
|
185 |
<div class="mec-event-footer mec-color">
|
app/skins/monthly_view/calendar.php
CHANGED
@@ -79,11 +79,11 @@ elseif($week_start == 5) // Friday
|
|
79 |
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
80 |
if ( $label['style'] == 'mec-label-featured' )
|
81 |
{
|
82 |
-
$label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite');
|
83 |
}
|
84 |
elseif ( $label['style'] == 'mec-label-canceled' )
|
85 |
{
|
86 |
-
$label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite');
|
87 |
}
|
88 |
}
|
89 |
endif;
|
79 |
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
80 |
if ( $label['style'] == 'mec-label-featured' )
|
81 |
{
|
82 |
+
$label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite' );
|
83 |
}
|
84 |
elseif ( $label['style'] == 'mec-label-canceled' )
|
85 |
{
|
86 |
+
$label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite' );
|
87 |
}
|
88 |
}
|
89 |
endif;
|
app/skins/monthly_view/calendar_clean.php
CHANGED
@@ -78,11 +78,11 @@ elseif($week_start == 5) // Friday
|
|
78 |
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
79 |
if ( $label['style'] == 'mec-label-featured' )
|
80 |
{
|
81 |
-
$label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite');
|
82 |
}
|
83 |
elseif ( $label['style'] == 'mec-label-canceled' )
|
84 |
{
|
85 |
-
$label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite');
|
86 |
}
|
87 |
}
|
88 |
endif;
|
78 |
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
79 |
if ( $label['style'] == 'mec-label-featured' )
|
80 |
{
|
81 |
+
$label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite' );
|
82 |
}
|
83 |
elseif ( $label['style'] == 'mec-label-canceled' )
|
84 |
{
|
85 |
+
$label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite' );
|
86 |
}
|
87 |
}
|
88 |
endif;
|
app/skins/single.php
CHANGED
@@ -774,7 +774,7 @@ class MEC_skin_single extends MEC_skins
|
|
774 |
$speakers = array();
|
775 |
?>
|
776 |
<div class="mec-event-schedule mec-frontbox">
|
777 |
-
<h3 class="mec-schedule-head mec-frontbox-title"><?php _e('Hourly Schedule',
|
778 |
<?php foreach($event->data->hourly_schedules as $day): ?>
|
779 |
<?php if(count($event->data->hourly_schedules) >= 1 and isset($day['title'])): ?>
|
780 |
<h4 class="mec-schedule-part"><?php echo $day['title']; ?></h4>
|
774 |
$speakers = array();
|
775 |
?>
|
776 |
<div class="mec-event-schedule mec-frontbox">
|
777 |
+
<h3 class="mec-schedule-head mec-frontbox-title"><?php _e('Hourly Schedule','modern-events-calendar-lite'); ?></h3>
|
778 |
<?php foreach($event->data->hourly_schedules as $day): ?>
|
779 |
<?php if(count($event->data->hourly_schedules) >= 1 and isset($day['title'])): ?>
|
780 |
<h4 class="mec-schedule-part"><?php echo $day['title']; ?></h4>
|
app/skins/timetable/render.php
CHANGED
@@ -30,11 +30,11 @@ $settings = $this->main->get_settings();
|
|
30 |
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
31 |
if ( $label['style'] == 'mec-label-featured' )
|
32 |
{
|
33 |
-
$label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite');
|
34 |
}
|
35 |
elseif ( $label['style'] == 'mec-label-canceled' )
|
36 |
{
|
37 |
-
$label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite');
|
38 |
}
|
39 |
}
|
40 |
endif;
|
@@ -133,8 +133,8 @@ $settings = $this->main->get_settings();
|
|
133 |
{
|
134 |
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
135 |
|
136 |
-
if($label['style'] == 'mec-label-featured') $label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite');
|
137 |
-
elseif($label['style'] == 'mec-label-canceled') $label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite');
|
138 |
}
|
139 |
}
|
140 |
?>
|
30 |
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
31 |
if ( $label['style'] == 'mec-label-featured' )
|
32 |
{
|
33 |
+
$label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite' );
|
34 |
}
|
35 |
elseif ( $label['style'] == 'mec-label-canceled' )
|
36 |
{
|
37 |
+
$label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite' );
|
38 |
}
|
39 |
}
|
40 |
endif;
|
133 |
{
|
134 |
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
135 |
|
136 |
+
if($label['style'] == 'mec-label-featured') $label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite' );
|
137 |
+
elseif($label['style'] == 'mec-label-canceled') $label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite' );
|
138 |
}
|
139 |
}
|
140 |
?>
|
app/skins/weekly_view/render.php
CHANGED
@@ -28,11 +28,11 @@ $settings = $this->main->get_settings();
|
|
28 |
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
29 |
if ( $label['style'] == 'mec-label-featured' )
|
30 |
{
|
31 |
-
$label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite');
|
32 |
}
|
33 |
elseif ( $label['style'] == 'mec-label-canceled' )
|
34 |
{
|
35 |
-
$label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite');
|
36 |
}
|
37 |
}
|
38 |
endif;
|
28 |
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
29 |
if ( $label['style'] == 'mec-label-featured' )
|
30 |
{
|
31 |
+
$label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite' );
|
32 |
}
|
33 |
elseif ( $label['style'] == 'mec-label-canceled' )
|
34 |
{
|
35 |
+
$label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite' );
|
36 |
}
|
37 |
}
|
38 |
endif;
|
app/skins/yearly_view/render.php
CHANGED
@@ -45,11 +45,11 @@ $settings = $this->main->get_settings();
|
|
45 |
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
46 |
if ( $label['style'] == 'mec-label-featured' )
|
47 |
{
|
48 |
-
$label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite');
|
49 |
}
|
50 |
elseif ( $label['style'] == 'mec-label-canceled' )
|
51 |
{
|
52 |
-
$label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite');
|
53 |
}
|
54 |
}
|
55 |
endif;
|
45 |
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
46 |
if ( $label['style'] == 'mec-label-featured' )
|
47 |
{
|
48 |
+
$label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite' );
|
49 |
}
|
50 |
elseif ( $label['style'] == 'mec-label-canceled' )
|
51 |
{
|
52 |
+
$label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite' );
|
53 |
}
|
54 |
}
|
55 |
endif;
|
assets/css/backend.css
CHANGED
@@ -4427,6 +4427,169 @@ form#mec_reg_fields_form label {
|
|
4427 |
|
4428 |
.wns-be-container.mec-addons-notification-set-box {
|
4429 |
margin-right: 15px;
|
4430 |
-
margin-top:
|
4431 |
margin-bottom: 27px
|
4432 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4427 |
|
4428 |
.wns-be-container.mec-addons-notification-set-box {
|
4429 |
margin-right: 15px;
|
4430 |
+
margin-top: 50px;
|
4431 |
margin-bottom: 27px
|
4432 |
}
|
4433 |
+
|
4434 |
+
@media(max-width: 1200px) {
|
4435 |
+
.mec-addons-notification-box-image, .mec-addons-notification-box-content {
|
4436 |
+
width: 100%;
|
4437 |
+
display: block;
|
4438 |
+
}
|
4439 |
+
|
4440 |
+
.mec-addons-notification-box-image {
|
4441 |
+
text-align: center;
|
4442 |
+
}
|
4443 |
+
}
|
4444 |
+
|
4445 |
+
@media(max-width: 768px) {
|
4446 |
+
.mec-addons-notification-box-image img {
|
4447 |
+
width: 100%;
|
4448 |
+
height: auto;
|
4449 |
+
}
|
4450 |
+
}
|
4451 |
+
|
4452 |
+
/* RTL Dashboard Settings */
|
4453 |
+
|
4454 |
+
body.rtl .wns-be-sidebar {
|
4455 |
+
width: 260px;
|
4456 |
+
float: right;
|
4457 |
+
position: relative;
|
4458 |
+
}
|
4459 |
+
|
4460 |
+
body.rtl .wns-be-main {
|
4461 |
+
margin-left: 0;
|
4462 |
+
border-left: 0;
|
4463 |
+
margin-right: 260px;
|
4464 |
+
border-right: 1px solid #dedede;
|
4465 |
+
}
|
4466 |
+
|
4467 |
+
body.rtl .w-box.mec-activation .LicenseField {
|
4468 |
+
direction: rtl;
|
4469 |
+
}
|
4470 |
+
|
4471 |
+
body.rtl .w-box.mec-activation input[name=MECPurchaseCode] {
|
4472 |
+
text-align: right;
|
4473 |
+
padding-right: 20px;
|
4474 |
+
}
|
4475 |
+
|
4476 |
+
body.rtl #MECActivation .MECPurchaseStatus,
|
4477 |
+
body.rtl .addon-activation-form .MECPurchaseStatus {
|
4478 |
+
right: auto;
|
4479 |
+
left: -51px;
|
4480 |
+
}
|
4481 |
+
|
4482 |
+
body.rtl #webnus-dashboard .w-box.mec-activation input[type=submit] {
|
4483 |
+
right: auto;
|
4484 |
+
left: 5px;
|
4485 |
+
}
|
4486 |
+
|
4487 |
+
body.rtl .wns-be-sidebar .wns-be-group-menu li a {
|
4488 |
+
padding: 13px 20px 13px 4px;
|
4489 |
+
}
|
4490 |
+
|
4491 |
+
body.rtl .wns-be-sidebar .wns-be-group-tab-link-a span.wns-be-group-menu-title {
|
4492 |
+
padding-left: 0;
|
4493 |
+
padding-right: 24px;
|
4494 |
+
}
|
4495 |
+
|
4496 |
+
body.rtl .wns-be-sidebar .has-sub span.extra-icon {
|
4497 |
+
float: left;
|
4498 |
+
}
|
4499 |
+
|
4500 |
+
body.rtl .wns-be-sidebar .wns-be-group-tab-link-a span.extra-icon i {
|
4501 |
+
right: auto;
|
4502 |
+
left: 10px;
|
4503 |
+
}
|
4504 |
+
|
4505 |
+
body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:after,
|
4506 |
+
body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before {
|
4507 |
+
position: absolute;
|
4508 |
+
z-index: 999;
|
4509 |
+
content: " ";
|
4510 |
+
height: 0;
|
4511 |
+
width: 0;
|
4512 |
+
border: 7px solid transparent;
|
4513 |
+
border-right-color: transparent;
|
4514 |
+
border-left-color: #fff;
|
4515 |
+
right: auto;
|
4516 |
+
left: -1px;
|
4517 |
+
top: 10px;
|
4518 |
+
}
|
4519 |
+
|
4520 |
+
body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before {
|
4521 |
+
border-right-color: transparent;
|
4522 |
+
border-left-color: #c5c5c5;
|
4523 |
+
right: auto;
|
4524 |
+
left: 0;
|
4525 |
+
}
|
4526 |
+
|
4527 |
+
body.rtl .mec-col-1, body.rtl .mec-col-10, body.rtl .mec-col-11, body.rtl .mec-col-12,
|
4528 |
+
body.rtl .mec-col-2, body.rtl .mec-col-3, body.rtl .mec-col-4, body.rtl .mec-col-5,
|
4529 |
+
body.rtl .mec-col-6, body.rtl .mec-col-7, body.rtl .mec-col-8, body.rtl .mec-col-9 {
|
4530 |
+
float: right;
|
4531 |
+
margin: 0 1% 0 0;
|
4532 |
+
}
|
4533 |
+
|
4534 |
+
body.rtl .wns-be-sidebar li .submneu-hover {
|
4535 |
+
right: auto;
|
4536 |
+
left: -222px;
|
4537 |
+
}
|
4538 |
+
|
4539 |
+
body.rtl .wns-be-sidebar li .submneu-hover:after {
|
4540 |
+
position: absolute;
|
4541 |
+
z-index: 999;
|
4542 |
+
content: " ";
|
4543 |
+
height: 0;
|
4544 |
+
width: 0;
|
4545 |
+
border: 7px solid transparent;
|
4546 |
+
border-right-color: #fff;
|
4547 |
+
left: auto;
|
4548 |
+
right: -1px;
|
4549 |
+
top: 14px;
|
4550 |
+
}
|
4551 |
+
|
4552 |
+
body.rtl #mec_styles_form #mec_styles_CSS {
|
4553 |
+
direction: ltr;
|
4554 |
+
}
|
4555 |
+
|
4556 |
+
body.rtl .w-box.mec-activation {
|
4557 |
+
-moz-transform: scaleY(-1);
|
4558 |
+
-o-transform: scaleY(-1);
|
4559 |
+
-webkit-transform: scaleY(-1);
|
4560 |
+
transform: scaleX(-1);
|
4561 |
+
}
|
4562 |
+
|
4563 |
+
body.rtl .w-box.mec-activation .w-box-content,
|
4564 |
+
body.rtl .w-box.mec-activation .w-box-head {
|
4565 |
+
-moz-transform: scaleY(-1);
|
4566 |
+
-o-transform: scaleY(-1);
|
4567 |
+
-webkit-transform: scaleY(-1);
|
4568 |
+
transform: scaleX(-1);
|
4569 |
+
display: block;
|
4570 |
+
}
|
4571 |
+
|
4572 |
+
body.rtl .w-box.mec-activation .w-box-head {
|
4573 |
+
width: 100%;
|
4574 |
+
}
|
4575 |
+
|
4576 |
+
body.rtl .wns-be-container #wns-be-infobar:before {
|
4577 |
+
left: auto;
|
4578 |
+
right: 0;
|
4579 |
+
}
|
4580 |
+
|
4581 |
+
body.rtl .wns-be-container .dpr-btn.dpr-save-btn {
|
4582 |
+
float: left;
|
4583 |
+
}
|
4584 |
+
|
4585 |
+
body.rtl .wns-be-container .wns-be-group-tab h2:before,
|
4586 |
+
body.rtl .wns-be-container .wns-be-group-tab h4:before {
|
4587 |
+
left: auto;
|
4588 |
+
right: 0;
|
4589 |
+
margin-right: 0;
|
4590 |
+
margin-left: 5px;
|
4591 |
+
}
|
4592 |
+
|
4593 |
+
body.rtl #mec_gateways_form .mec-tooltip {
|
4594 |
+
float: left;
|
4595 |
+
}
|
assets/css/backend.min.css
CHANGED
@@ -2,4 +2,4 @@
|
|
2 |
* Bootstrap v3.3.7 (http://getbootstrap.com)
|
3 |
* Copyright 2011-2016 Twitter, Inc.
|
4 |
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
5 |
-
*/#webnus-dashboard button,#webnus-dashboard input,#webnus-dashboard select,#webnus-dashboard textarea{font-family:inherit;font-size:inherit;line-height:inherit}#webnus-dashboard a{color:#337ab7;text-decoration:none}#webnus-dashboard a:focus,#webnus-dashboard a:hover{color:#23527c}#webnus-dashboard a:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}#webnus-dashboard figure{margin:0}#webnus-dashboard img{vertical-align:middle}.w-img-responsive{display:block;max-width:100%;height:auto}.w-img-rounded{border-radius:6px}.w-img-thumbnail{padding:4px;line-height:1w-42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all 0w-2s ease-in-out;-o-transition:all 0w-2s ease-in-out;transition:all 0w-2s ease-in-out;display:inline-block;max-width:100%;height:auto}.w-img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.w-sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.w-sr-only-focusable:active,.w-sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.w-container,.w-container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}[role=button]{cursor:pointer}@media (min-width:768px){.w-container{width:750px}}@media (min-width:992px){.w-container{width:970px}}@media (min-width:1200px){.w-container{width:1170px}}.w-row{margin-left:-15px;margin-right:-15px}.w-col-lg-1,.w-col-lg-10,.w-col-lg-11,.w-col-lg-12,.w-col-lg-2,.w-col-lg-3,.w-col-lg-4,.w-col-lg-5,.w-col-lg-6,.w-col-lg-7,.w-col-lg-8,.w-col-lg-9,.w-col-md-1,.w-col-md-10,.w-col-md-11,.w-col-md-12,.w-col-md-2,.w-col-md-3,.w-col-md-4,.w-col-md-5,.w-col-md-6,.w-col-md-7,.w-col-md-8,.w-col-md-9,.w-col-sm-1,.w-col-sm-10,.w-col-sm-11,.w-col-sm-12,.w-col-sm-2,.w-col-sm-3,.w-col-sm-4,.w-col-sm-5,.w-col-sm-6,.w-col-sm-7,.w-col-sm-8,.w-col-sm-9,.w-col-xs-1,.w-col-xs-10,.w-col-xs-11,.w-col-xs-12,.w-col-xs-2,.w-col-xs-3,.w-col-xs-4,.w-col-xs-5,.w-col-xs-6,.w-col-xs-7,.w-col-xs-8,.w-col-xs-9{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.w-col-xs-1,.w-col-xs-10,.w-col-xs-11,.w-col-xs-12,.w-col-xs-2,.w-col-xs-3,.w-col-xs-4,.w-col-xs-5,.w-col-xs-6,.w-col-xs-7,.w-col-xs-8,.w-col-xs-9{float:left}.w-col-xs-12{width:100%}.w-col-xs-11{width:91.66666667%}.w-col-xs-10{width:83.33333333%}.w-col-xs-9{width:75%}.w-col-xs-8{width:66.66666667%}.w-col-xs-7{width:58.33333333%}.w-col-xs-6{width:50%}.w-col-xs-5{width:41.66666667%}.w-col-xs-4{width:33.33333333%}.w-col-xs-3{width:25%}.w-col-xs-2{width:16.66666667%}.w-col-xs-1{width:8w-33333333%}.w-col-xs-pull-12{right:100%}.w-col-xs-pull-11{right:91.66666667%}.w-col-xs-pull-10{right:83.33333333%}.w-col-xs-pull-9{right:75%}.w-col-xs-pull-8{right:66.66666667%}.w-col-xs-pull-7{right:58.33333333%}.w-col-xs-pull-6{right:50%}.w-col-xs-pull-5{right:41.66666667%}.w-col-xs-pull-4{right:33.33333333%}.w-col-xs-pull-3{right:25%}.w-col-xs-pull-2{right:16.66666667%}.w-col-xs-pull-1{right:8w-33333333%}.w-col-xs-pull-0{right:auto}.w-col-xs-push-12{left:100%}.w-col-xs-push-11{left:91.66666667%}.w-col-xs-push-10{left:83.33333333%}.w-col-xs-push-9{left:75%}.w-col-xs-push-8{left:66.66666667%}.w-col-xs-push-7{left:58.33333333%}.w-col-xs-push-6{left:50%}.w-col-xs-push-5{left:41.66666667%}.w-col-xs-push-4{left:33.33333333%}.w-col-xs-push-3{left:25%}.w-col-xs-push-2{left:16.66666667%}.w-col-xs-push-1{left:8w-33333333%}.w-col-xs-push-0{left:auto}.w-col-xs-offset-12{margin-left:100%}.w-col-xs-offset-11{margin-left:91.66666667%}.w-col-xs-offset-10{margin-left:83.33333333%}.w-col-xs-offset-9{margin-left:75%}.w-col-xs-offset-8{margin-left:66.66666667%}.w-col-xs-offset-7{margin-left:58.33333333%}.w-col-xs-offset-6{margin-left:50%}.w-col-xs-offset-5{margin-left:41.66666667%}.w-col-xs-offset-4{margin-left:33.33333333%}.w-col-xs-offset-3{margin-left:25%}.w-col-xs-offset-2{margin-left:16.66666667%}.w-col-xs-offset-1{margin-left:8w-33333333%}.w-col-xs-offset-0{margin-left:0}@media (min-width:768px){.w-col-sm-1,.w-col-sm-10,.w-col-sm-11,.w-col-sm-12,.w-col-sm-2,.w-col-sm-3,.w-col-sm-4,.w-col-sm-5,.w-col-sm-6,.w-col-sm-7,.w-col-sm-8,.w-col-sm-9{float:left}.w-col-sm-12{width:100%}.w-col-sm-11{width:91.66666667%}.w-col-sm-10{width:83.33333333%}.w-col-sm-9{width:75%}.w-col-sm-8{width:66.66666667%}.w-col-sm-7{width:58.33333333%}.w-col-sm-6{width:50%}.w-col-sm-5{width:41.66666667%}.w-col-sm-4{width:33.33333333%}.w-col-sm-3{width:25%}.w-col-sm-2{width:16.66666667%}.w-col-sm-1{width:8w-33333333%}.w-col-sm-pull-12{right:100%}.w-col-sm-pull-11{right:91.66666667%}.w-col-sm-pull-10{right:83.33333333%}.w-col-sm-pull-9{right:75%}.w-col-sm-pull-8{right:66.66666667%}.w-col-sm-pull-7{right:58.33333333%}.w-col-sm-pull-6{right:50%}.w-col-sm-pull-5{right:41.66666667%}.w-col-sm-pull-4{right:33.33333333%}.w-col-sm-pull-3{right:25%}.w-col-sm-pull-2{right:16.66666667%}.w-col-sm-pull-1{right:8w-33333333%}.w-col-sm-pull-0{right:auto}.w-col-sm-push-12{left:100%}.w-col-sm-push-11{left:91.66666667%}.w-col-sm-push-10{left:83.33333333%}.w-col-sm-push-9{left:75%}.w-col-sm-push-8{left:66.66666667%}.w-col-sm-push-7{left:58.33333333%}.w-col-sm-push-6{left:50%}.w-col-sm-push-5{left:41.66666667%}.w-col-sm-push-4{left:33.33333333%}.w-col-sm-push-3{left:25%}.w-col-sm-push-2{left:16.66666667%}.w-col-sm-push-1{left:8w-33333333%}.w-col-sm-push-0{left:auto}.w-col-sm-offset-12{margin-left:100%}.w-col-sm-offset-11{margin-left:91.66666667%}.w-col-sm-offset-10{margin-left:83.33333333%}.w-col-sm-offset-9{margin-left:75%}.w-col-sm-offset-8{margin-left:66.66666667%}.w-col-sm-offset-7{margin-left:58.33333333%}.w-col-sm-offset-6{margin-left:50%}.w-col-sm-offset-5{margin-left:41.66666667%}.w-col-sm-offset-4{margin-left:33.33333333%}.w-col-sm-offset-3{margin-left:25%}.w-col-sm-offset-2{margin-left:16.66666667%}.w-col-sm-offset-1{margin-left:8w-33333333%}.w-col-sm-offset-0{margin-left:0}}@media (min-width:992px){.w-col-md-1,.w-col-md-10,.w-col-md-11,.w-col-md-12,.w-col-md-2,.w-col-md-3,.w-col-md-4,.w-col-md-5,.w-col-md-6,.w-col-md-7,.w-col-md-8,.w-col-md-9{float:left}.w-col-md-12{width:100%}.w-col-md-11{width:91.66666667%}.w-col-md-10{width:83.33333333%}.w-col-md-9{width:75%}.w-col-md-8{width:66.66666667%}.w-col-md-7{width:58.33333333%}.w-col-md-6{width:50%}.w-col-md-5{width:41.66666667%}.w-col-md-4{width:33.33333333%}.w-col-md-3{width:25%}.w-col-md-2{width:16.66666667%}.w-col-md-1{width:8w-33333333%}.w-col-md-pull-12{right:100%}.w-col-md-pull-11{right:91.66666667%}.w-col-md-pull-10{right:83.33333333%}.w-col-md-pull-9{right:75%}.w-col-md-pull-8{right:66.66666667%}.w-col-md-pull-7{right:58.33333333%}.w-col-md-pull-6{right:50%}.w-col-md-pull-5{right:41.66666667%}.w-col-md-pull-4{right:33.33333333%}.w-col-md-pull-3{right:25%}.w-col-md-pull-2{right:16.66666667%}.w-col-md-pull-1{right:8w-33333333%}.w-col-md-pull-0{right:auto}.w-col-md-push-12{left:100%}.w-col-md-push-11{left:91.66666667%}.w-col-md-push-10{left:83.33333333%}.w-col-md-push-9{left:75%}.w-col-md-push-8{left:66.66666667%}.w-col-md-push-7{left:58.33333333%}.w-col-md-push-6{left:50%}.w-col-md-push-5{left:41.66666667%}.w-col-md-push-4{left:33.33333333%}.w-col-md-push-3{left:25%}.w-col-md-push-2{left:16.66666667%}.w-col-md-push-1{left:8w-33333333%}.w-col-md-push-0{left:auto}.w-col-md-offset-12{margin-left:100%}.w-col-md-offset-11{margin-left:91.66666667%}.w-col-md-offset-10{margin-left:83.33333333%}.w-col-md-offset-9{margin-left:75%}.w-col-md-offset-8{margin-left:66.66666667%}.w-col-md-offset-7{margin-left:58.33333333%}.w-col-md-offset-6{margin-left:50%}.w-col-md-offset-5{margin-left:41.66666667%}.w-col-md-offset-4{margin-left:33.33333333%}.w-col-md-offset-3{margin-left:25%}.w-col-md-offset-2{margin-left:16.66666667%}.w-col-md-offset-1{margin-left:8w-33333333%}.w-col-md-offset-0{margin-left:0}}@media (min-width:1200px){.w-col-lg-1,.w-col-lg-10,.w-col-lg-11,.w-col-lg-12,.w-col-lg-2,.w-col-lg-3,.w-col-lg-4,.w-col-lg-5,.w-col-lg-6,.w-col-lg-7,.w-col-lg-8,.w-col-lg-9{float:left}.w-col-lg-12{width:100%}.w-col-lg-11{width:91.66666667%}.w-col-lg-10{width:83.33333333%}.w-col-lg-9{width:75%}.w-col-lg-8{width:66.66666667%}.w-col-lg-7{width:58.33333333%}.w-col-lg-6{width:50%}.w-col-lg-5{width:41.66666667%}.w-col-lg-4{width:33.33333333%}.w-col-lg-3{width:25%}.w-col-lg-2{width:16.66666667%}.w-col-lg-1{width:8w-33333333%}.w-col-lg-pull-12{right:100%}.w-col-lg-pull-11{right:91.66666667%}.w-col-lg-pull-10{right:83.33333333%}.w-col-lg-pull-9{right:75%}.w-col-lg-pull-8{right:66.66666667%}.w-col-lg-pull-7{right:58.33333333%}.w-col-lg-pull-6{right:50%}.w-col-lg-pull-5{right:41.66666667%}.w-col-lg-pull-4{right:33.33333333%}.w-col-lg-pull-3{right:25%}.w-col-lg-pull-2{right:16.66666667%}.w-col-lg-pull-1{right:8w-33333333%}.w-col-lg-pull-0{right:auto}.w-col-lg-push-12{left:100%}.w-col-lg-push-11{left:91.66666667%}.w-col-lg-push-10{left:83.33333333%}.w-col-lg-push-9{left:75%}.w-col-lg-push-8{left:66.66666667%}.w-col-lg-push-7{left:58.33333333%}.w-col-lg-push-6{left:50%}.w-col-lg-push-5{left:41.66666667%}.w-col-lg-push-4{left:33.33333333%}.w-col-lg-push-3{left:25%}.w-col-lg-push-2{left:16.66666667%}.w-col-lg-push-1{left:8w-33333333%}.w-col-lg-push-0{left:auto}.w-col-lg-offset-12{margin-left:100%}.w-col-lg-offset-11{margin-left:91.66666667%}.w-col-lg-offset-10{margin-left:83.33333333%}.w-col-lg-offset-9{margin-left:75%}.w-col-lg-offset-8{margin-left:66.66666667%}.w-col-lg-offset-7{margin-left:58.33333333%}.w-col-lg-offset-6{margin-left:50%}.w-col-lg-offset-5{margin-left:41.66666667%}.w-col-lg-offset-4{margin-left:33.33333333%}.w-col-lg-offset-3{margin-left:25%}.w-col-lg-offset-2{margin-left:16.66666667%}.w-col-lg-offset-1{margin-left:8w-33333333%}.w-col-lg-offset-0{margin-left:0}}.w-clearfix:after,.w-clearfix:before,.w-container-fluid:after,.w-container-fluid:before,.w-container:after,.w-container:before,.w-row:after,.w-row:before{content:" ";display:table}.w-clearfix:after,.w-container-fluid:after,.w-container:after,.w-row:after{clear:both}.w-center-block{display:block;margin-left:auto;margin-right:auto}.w-pull-right{float:right!important}.w-pull-left{float:left!important}.w-hide{display:none!important}.w-show{display:block!important}.w-invisible{visibility:hidden}.w-text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.w-hidden{display:none!important}.w-affix{position:fixed}.mec-image-popup-wrap{display:none}#wns-be-infobar.sticky{position:fixed;top:32px;background:#fff;z-index:9999;width:82%}.wns-be-main .wns-saved-settings.sticky{position:fixed;width:62.5%;top:111px;z-index:999999999999999999}#mec-search-settings{border-radius:2px;min-height:32px;box-shadow:0 3px 14px -5px rgba(0,0,0,.2),inset 0 1px 2px rgba(0,0,0,.07);padding:9px 10px 11px;margin-right:6px;color:#7c7772;font-size:12px;width:200px}#mec-search-settings::-webkit-input-placeholder{color:#7c7772}#mec-search-settings::-moz-placeholder{color:#7c7772}#mec-search-settings:-ms-input-placeholder{color:#7c7772}#mec-search-settings:-moz-placeholder{color:#7c7772}.mec-export-settings,.mec-import-settings{font-weight:700;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:8px 32px;height:36px;letter-spacing:.2px;line-height:36px;font-size:13px;color:#fff;text-decoration:none;display:inline-block}.mec-export-settings:hover,.mec-import-settings:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5);color:#fff}textarea.mec-import-settings-content{display:block;width:100%;min-height:120px;margin-bottom:25px;padding:10px 15px}.mec-import-options-notification{display:inline-block}.mec-import-options-notification .mec-message-import-error,.mec-import-options-notification .mec-message-import-success{display:inline-block;padding:15px 12px;margin-left:12px;opacity:0;visibility:hidden;font-weight:700}.mec-import-options-notification .mec-message-import-success{opacity:1;visibility:visible;border:2px solid green}.mec-import-options-notification .mec-message-import-error{opacity:1;visibility:visible;border:2px solid #e62117}.mec-export-settings:focus,.mec-import-settings:focus{color:#fff}.mec-import-settings-wrap{position:relative}.mec-loarder-wrap{position:absolute;top:0;bottom:0;left:0;right:0;background:rgba(202,202,202,.7);z-index:9999}.mec-loarder-wrap.mec-settings-loader{top:34px}.mec-loarder{position:absolute;width:64px;height:64px;top:calc(50% - 32px);left:calc(50% - 36px)}.mec-loarder div{display:inline-block;position:absolute;left:6px;width:4px;background:#fff;animation:mec-loarder 1.2s cubic-bezier(0,.5,.5,1) infinite}.mec-loarder div:nth-child(1){left:27px;animation-delay:-.24s;background:#0075ff}.mec-loarder div:nth-child(2){left:36px;animation-delay:-.12s;background:#028bff}.mec-loarder div:nth-child(3){left:45px;animation-delay:0;background:#32a0ff}@keyframes mec-loarder{0%{top:6px;height:51px}100%,50%{top:19px;height:26px}}.w-box.support-page.searchbox{background:#008aff;background:linear-gradient(180deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff;min-height:260px;text-align:center;border-radius:2px}#webnus-dashboard .search-form input{background:rgba(255,255,255,.2);border:none;width:50%;outline:0;color:rgba(255,255,255,.7);font-size:18px;border-radius:4px 0 0 4px;box-shadow:0 1px 2px 0 rgba(0,0,0,.03);-webkit-transition:background .4s,box-shadow .2s;transition:background .4s,box-shadow .2s;padding:20px 32px;margin:0}#webnus-dashboard .search-form button{background:rgba(255,255,255,.2);border:none;padding:20px 32px;margin-left:-2px;color:#fff;border-radius:0 4px 4px 0;font-size:18px;cursor:pointer;-webkit-transition:background .4s,box-shadow .2s;transition:background .4s,box-shadow .2s}#webnus-dashboard .search-form button:hover{background:#fff;color:#3a3c4c}.w-box.support-page.searchbox p{font-size:30px}.search-form input::-webkit-input-placeholder{color:rgba(255,255,255,.7)}.search-form input::-moz-placeholder{color:rgba(255,255,255,.7)}.search-form input:-ms-input-placeholder{color:rgba(255,255,255,.7)}.search-form input:-moz-placeholder{color:rgba(255,255,255,.7)}#webnus-dashboard .search-form input:active,#webnus-dashboard .search-form input:focus{box-shadow:0 10px 20px rgba(0,0,0,.14);background:#fff;color:#3a3c4c}#webnus-dashboard .search-form input:active::-webkit-input-placeholder,#webnus-dashboard .search-form input:focus::-webkit-input-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active::-moz-placeholder,#webnus-dashboard .search-form input:focus::-moz-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active:-ms-input-placeholder,#webnus-dashboard .search-form input:focus:-ms-input-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active:-moz-placeholder,#webnus-dashboard .search-form input:focus:-moz-placeholder{color:#3a3c4c}#webnus-dashboard .w-box.support-page.mec-ticksy{text-align:center;min-height:260px}#webnus-dashboard .w-box.support-page.mec-ticksy p{font-size:20px;width:70%;margin:0 auto;margin-bottom:40px;margin-top:40px}#webnus-dashboard .w-box.support-page.mec-ticksy a{color:#fff;font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:12px 20px;cursor:pointer;margin-bottom:40px;display:inline-block}#webnus-dashboard .w-box.support-page.mec-ticksy a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5)}.mec-faq-accordion>.mec-faq-accordion-content{display:none}#webnus-dashboard .mec-faq-accordion-trigger a{font-size:16px;padding:12px;background:#f1f1f1;display:block;color:#222;line-height:17px;outline:0}.mec-faq-accordion-trigger{margin-bottom:5px;position:relative}#webnus-dashboard .mec-faq-accordion-trigger a:after{font-family:simple-line-icons;content:"\e095";position:absolute;right:12px;font-weight:700}.mec-faq-accordion-content{padding:5px 14px 25px}#webnus-dashboard .mec-faq-accordion-trigger a.active:after{content:"\e082"}#webnus-dashboard .support-page-links a{background-color:#fff;color:#fff;border-radius:2px;padding:13px 24px;font-size:12px;letter-spacing:1px;font-weight:600;text-transform:uppercase}#webnus-dashboard .support-page-links a:hover,#webnus-dashboard .w-box.support-page.videobox .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}#webnus-dashboard .support-page-links{display:inline-block;margin:12px 4px 16px 0}.support-page-links.link-to-doc a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.support-page-links.link-to-videos a{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);box-shadow:0 5px 10px -5px #ff876c}.support-page-links.link-to-articles a{background:#b092e6;background:linear-gradient(95deg,#b092e6 0,#9b70e8 50%,#8e5cea 100%);box-shadow:0 5px 10px -5px #b092e6}.w-box.support-page.articles-box .w-box-content a{display:block;padding:6px 0}#webnus-dashboard .w-box.support-page.videobox .w-button a{color:#fff;font-size:10px;padding:5px 15px;min-height:10px;font-weight:500;border-radius:22px;box-shadow:0 3px 10px -4px #ff5a35;text-shadow:none;background:#ff5a35;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);border:none;transition:.24s}.w-box.support-page.articles-box,.w-box.support-page.faq-box{min-height:500px}.w-box.support-page.videobox{border-radius:2px;min-height:282px;box-shadow:0 1px 6px rgba(0,0,0,.039)!important}#webnus-dashboard .w-box.support-page.videobox .w-button a i{margin-right:6px}.support-page .w-box-content ul{margin-top:5px;padding-left:5px}.support-page .w-box-content ul li{font-size:13px}.support-page .w-box-content ul li i{font-size:17px;vertical-align:text-bottom;margin-right:7px;color:#999}.w-box.mec-activation{background:#fff url(../img/dp-dsb-support.jpg) no-repeat top right}.w-box.mec-activation .w-box-head{color:#40d8f0;width:75%}.w-box.mec-activation .w-box-content{padding:10px 30px}.w-box.mec-activation input[type=radio]{display:none}.w-box.mec-activation input[type=radio]+label{color:#000;font-size:13px;line-height:14px!important;color:#7b7b7b}.w-box.mec-activation input[type=radio].checked+label{color:#40d8f0}.w-box.mec-activation input[type=radio]+label span{display:inline-block;margin:-2px 6px 0 0;vertical-align:middle;cursor:pointer;height:14px;width:14px;text-align:center;background-color:#fff;border:1px solid #d4d4d4;border-radius:100%;box-shadow:0 2px 16px -2px rgba(0,0,0,.2);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;position:relative}.w-box.mec-activation input[type=radio].checked+label span{background-color:#40d8f0;border-color:#40d8f0;box-shadow:0 2px 14px -3px #40d8f0}.w-box.mec-activation input[type=radio].checked+label span:after{content:'';display:block;position:absolute;top:4px;left:4px;width:4px;height:4px;background:#fff;border-radius:100%}.w-box.mec-activation .LicenseType label{padding-right:20px;font-weight:500}.w-box.mec-activation .LicenseField{display:inline-block;position:relative;margin-top:20px}.w-box.mec-activation input[name=MECPurchaseCode]{box-shadow:inset 0 1px 2px rgba(0,0,0,.07);min-width:220px;background:#f4f4f4;border:none;border-radius:33px;width:500px;min-height:50px;margin:0;padding-left:20px;text-align:left}#webnus-dashboard .w-box.mec-activation input[type=submit]{height:40px;line-height:40px;font-weight:600;border:none;cursor:pointer;padding:0 30px;border-radius:33px;color:#fff;letter-spacing:1px;text-transform:uppercase;font-size:12px;background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67;transition:all .28s ease;position:absolute;right:5px;top:4px;font-size:12px}#webnus-dashboard .w-box.mec-activation input[type=submit]:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5)}#MECActivation .MECPurchaseStatus,.addon-activation-form .MECPurchaseStatus{display:inline-block;width:40px;height:40px;text-align:center;padding-top:9px;color:#fff;font-weight:700;font-size:18px;border-radius:50%;padding-top:8px;position:absolute;right:-51px;top:calc(50% - 20px)}.MECPurchaseStatus:after,.MECPurchaseStatus:before{position:absolute;border-radius:50px;background:#fff;content:'';transform:rotate(45deg)}.MECPurchaseStatus.PurchaseError:before{width:22px;height:4px;right:9px;top:18px;transform:rotate(45deg)}.MECPurchaseStatus.PurchaseError:after{width:22px;height:4px;right:9px;top:18px;transform:rotate(-45deg)}.MECPurchaseStatus.PurchaseSuccess:before{width:13px;height:4px;right:19px;top:21px;transform:rotate(45deg)}.MECPurchaseStatus.PurchaseSuccess:after{width:22px;height:4px;right:5px;top:18px;transform:rotate(-45deg)}#MECActivation .MECPurchaseStatus.PurchaseError,.addon-activation-form .MECPurchaseStatus.PurchaseError{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);box-shadow:0 5px 10px -5px #ff876c}#MECActivation .MECPurchaseStatus.PurchaseSuccess,.addon-activation-form .MECPurchaseStatus.PurchaseSuccess{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.wna-spinner-wrap{position:absolute;background:#000;width:509px;height:64px;top:-8px;border-radius:50px;z-index:999;background-color:#fff;opacity:.9}.wna-spinner{width:40px;height:40px;position:relative;margin:6px auto}.wna-spinner .double-bounce1,.wna-spinner .double-bounce2{width:100%;height:100%;border-radius:50%;background-color:#40d8f0;opacity:.6;position:absolute;top:0;left:0;-webkit-animation:sk-bounce 2s infinite ease-in-out;animation:sk-bounce 2s infinite ease-in-out}.wna-spinner .double-bounce2{-webkit-animation-delay:-1s;animation-delay:-1s}#MECActivation .MECLicenseMessage,.addon-activation-form .MECLicenseMessage{margin-top:24px;color:#f64;max-width:570px}.box-addon-activation-toggle-content,.box-addon-activation-toggle-head{display:none}.addon-activation-form h3{font-size:15px;font-weight:400;margin:34px 0 -7px}.box-addon-activation-toggle-head{line-height:1.5;font-size:16px;margin-top:20px;cursor:pointer}.box-addon-activation-toggle-head i{margin-right:7px;cursor:pointer;font-weight:700}#mec-advanced-wraper div:first-child>ul{display:block;margin:5px 0;padding:5px 0;width:390px;border:1px solid #e1e2e3;border-radius:2px;box-shadow:0 1px 3px rgba(0,0,0,.05)}#mec-advanced-wraper div:first-child>ul span{display:none}#mec-advanced-wraper div:first-child>ul *{display:inline-block;background:#fff;font-size:12px;color:#717273;text-align:center}#mec-advanced-wraper div:first-child>ul>li{width:60px;font-weight:700;margin:0 10px 0 0;padding:4px 0;border-right:1px solid #e1e2e3}#mec-advanced-wraper div:first-child>ul>ul>li{margin:0;padding:2px 10px;cursor:pointer;border-radius:2px;transition:all .18s ease}#mec-advanced-wraper div:first-child>ul>ul>li:hover,.mec-active{background:#008aff!important;color:#fff!important}@-webkit-keyframes sk-bounce{0%,100%{-webkit-transform:scale(0)}50%{-webkit-transform:scale(1)}}@keyframes sk-bounce{0%,100%{transform:scale(0);-webkit-transform:scale(0)}50%{transform:scale(1);-webkit-transform:scale(1)}}.w-col-sm-3 .w-box.addon{min-height:auto;box-shadow:0 3px 16px -5px rgba(0,0,0,.1);border-radius:2px}.w-box-child.mec-addon-box{padding:20px 20px}.mec-addon-box-head{border-bottom:1px solid #e8e8e8;padding-bottom:5px;margin-bottom:14px;position:relative}.mec-addon-box-version{position:relative;background:#eaeaea;border-radius:1px;padding:0 8px;color:#5a5a5a;font-size:11px;letter-spacing:.2px;line-height:21px;display:inline-block;margin:3px 0}.mec-addon-box-title{font-weight:700;font-size:18px;line-height:25px}.mec-addon-box-title a span{color:#444;font-size:15px}.mec-addon-box-content p{color:#777;font-size:13px}.mec-addon-box-mec-version{background:#f3f3f3;padding:10px;font-size:13px}#webnus-dashboard .addons-page-links{display:inline-block;margin:12px 4px 16px 0}#webnus-dashboard .addons-page-links a{background-color:#fff;color:#fff;border-radius:2px;padding:13px 24px;font-size:12px;letter-spacing:1px;font-weight:600;text-transform:uppercase}.addons-page-links.link-to-purchase a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.addons-page-links.link-to-install-addons a{background:#b092e6;background:linear-gradient(95deg,#b092e6 0,#9b70e8 50%,#8e5cea 100%);box-shadow:0 5px 10px -5px #b092e6}#webnus-dashboard .addons-page-links a:hover,#webnus-dashboard .w-box.addons-page.videobox .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}.mec-addon-box-footer{margin-top:25px}#webnus-dashboard .mec-addon-box-footer a{font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:7px 19px;margin-top:10px;display:inline-block;letter-spacing:.2px;color:#fff;width:100%;text-align:center}#webnus-dashboard .mec-addon-box-footer a.mec-addon-box-intro{box-shadow:0 3px 10px -4px #ff5a35;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%)}#webnus-dashboard .mec-addon-box-footer a:hover{background:#222!important;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%)!important;box-shadow:0 5px 23px -7px rgba(0,0,0,.5)!important;cursor:pointer!important}#webnus-dashboard .mec-addon-box-footer a i{margin-right:6px;color:#fff}@media(max-width:1366px){.wns-be-container #wns-be-content{padding:5px 15px 0}.mec-form-row .mec-col-8 label{font-size:10px}#webnus-dashboard .mec-tooltip .box p,.mec-tooltip .box p{font-size:10px}}@media (max-width:780px){.wns-be-container #wns-be-content{padding:10px 0}.wns-be-container .mec-form-row .mec-col-8 label{width:50%;display:block}.wns-be-container .mec-form-row input[type=checkbox]{width:14px;height:14px}.wns-be-container .wns-be-sidebar li .subsection a{padding-left:30px}.wns-be-container .wns-be-sidebar{width:200px}.wns-be-container .wns-be-main{margin-left:200px}.wns-be-container .mec-tooltip .box{min-width:235px!important}.wns-be-container .mec-tooltip .box p{font-size:12px!important}#wns-be-infobar.sticky{position:unset}}@media (max-width:480px){.wns-be-container .wns-be-sidebar{width:100%;position:unset;float:none}.wns-be-container .wns-be-main{margin-left:0;width:100%;position:unset}.wns-be-container{margin-top:50px}.wns-be-container #wns-be-infobar:before{width:100%}.wns-be-container #wns-be-infobar{height:150px}#mec-search-settings{margin-top:80px;width:181px}}.addons-page-error,.addons-page-notice{display:block;margin-top:15px;margin-bottom:0;background:#fff;border-left:4px solid #00a0d2;box-shadow:0 1px 1px 0 rgba(0,0,0,.1);padding:1px 12px}.addons-page-error p,.addons-page-notice p{margin:.5em 0;padding:2px;font-size:13px}.addons-page-error{border-left-color:#dc3232}.mec-addon-box-comingsoon{background:#eaeaea;padding:8px 11px;color:#5a5a5a;font-size:14px;font-weight:500;text-align:center}.mec-addons .w-row .w-col-sm-3:nth-child(4n+1){clear:left}@media (min-width:960px){#webnus-dashboard .mec-addon-box-footer .w-button{text-align:right}}@media (min-width:1401px){.mec-addon-box-title a span{font-size:17px}}.mec-pro-notice{margin-top:24px;line-height:30px}.mec-pro-notice .info-msg{padding:20px 30px 27px;margin-bottom:0}.mec-intro-section .w-box-content{text-align:center}.mec-intro-section .w-box-content.mec-intro-section-welcome{max-width:600px;margin:0 auto}.mec-intro-section .w-box-content.mec-intro-section-welcome h3{font-size:27px}a.mec-intro-section-link-tag.button.button-hero{margin:0 10px 40px}a.mec-intro-section-link-tag.button.button-primary.button-hero{color:#fff!important}a.mec-intro-section-link-tag.button.button-secondary.button-hero{color:#000!important}.mec-intro-section-ifarme iframe{border:1px solid #e7e7e7;border-radius:3px;padding:10px;box-shadow:0 3px 10px -6px rgba(0,0,0,.2)}.w-box-content.mec-intro-section-welcome p{margin-bottom:0}.mec-tooltip a:focus{box-shadow:none}#mec_booking_form .mec-options-fields,#mec_modules_form .mec-options-fields,#mec_settings_form .mec-options-fields,#mec_single_form .mec-options-fields{padding-bottom:150px!important}#mec_taxes_fees_container_toggle{margin-bottom:60px}#mec_taxes_fees_container_toggle{margin-bottom:60px}.wns-be-sidebar li{position:relative}.wns-be-sidebar li .submneu-hover{position:absolute;top:-1px;right:-222px;width:220px;z-index:9;background:#fff;border:1px;border-style:solid;border-color:#dedede;margin:0;overflow:visible;opacity:0;visibility:hidden;transition:all .23s ease;padding-top:8px;padding-bottom:12px}.wns-be-sidebar li:hover{background:#fff}.wns-be-sidebar li:hover .submneu-hover{opacity:1;visibility:visible}.wns-be-sidebar li .submneu-hover a{background:#fff;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 26px}.wns-be-sidebar li .submneu-hover a:hover{background:#f6f6f6;color:#222}.wns-be-sidebar li .submneu-hover:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-15px;top:14px;border-right-color:#c5c5c5;right:0}.wns-be-sidebar li .submneu-hover:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-14px;top:14px}.wns-be-sidebar li a:focus,.wns-be-sidebar li:focus{outline:-webkit-focus-ring-color auto 0;border:0;box-shadow:none}@media (max-width:480px){.wns-be-sidebar li .submneu-hover{width:175px;right:0}.wns-be-sidebar li .submneu-hover a{font-size:11px;padding:5px 5px 5px 20px}}.mec-tooltip:hover:after,.mec-tooltip:hover:before{display:none}.mec-tooltip{display:inline-flex;bottom:7px}.mec-tooltip .box{min-width:300px;max-width:600px;display:inline-block;left:26px;top:50%;transform:translateY(-50%);padding:0;margin-top:8px;background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.3;position:absolute;z-index:9999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s}#webnus-dashboard .mec-tooltip .box p,.mec-tooltip .box p{color:#fff;font-size:14px;line-height:1.3;margin:0}.mec-tooltip:hover .box{visibility:visible;opacity:1}.mec-tooltip:hover .box{padding:20px;border-radius:8px}.mec-tooltip .box h5{color:#fff;font-size:17px;font-weight:600;margin:-30px -20px;padding:20px 0;text-align:center;margin-bottom:10px;background:#3a3f44;border-bottom:1px solid #32363a;border-radius:6px 6px 0 0;z-index:9999}#webnus-dashboard .mec-tooltip .box p a,.mec-tooltip .box p a{color:#40d9f1;margin-top:10px;margin-left:0;font-weight:400;position:relative;text-decoration:none;display:block;width:max-content}.mec-tooltip .box a:hover{color:#f90}.mec-tooltip .box:after{display:block;position:absolute!important;top:100%!important;right:50%!important;margin-top:-6px!important;margin-right:-6px!important;width:12px!important;height:24px!important;overflow:hidden!important;transform:rotate(-90deg)!important}.mec-tooltip .box:before{display:block;content:''!important;position:absolute!important;width:12px;height:12px;left:-10px!important;top:50%!important;transform:translate(50%,-50%) rotate(-45deg)!important;background-color:#535a61!important;box-shadow:0 8px 9px -4px #535a61!important;z-index:0!important}.mec-tooltip .box.top{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-tooltip .box.top:after{top:50%!important;right:100%!important}.mec-tooltip .box.top:before{left:50%!important;top:100%!important}.mec-tooltip .box.bottom{left:50%;top:auto;bottom:0;transform:translate(-50%,100%);margin-bottom:-20px;margin-left:-10px}.mec-tooltip .box.bottom:after{top:0!important;right:50%!important;background-color:#3a3f44!important}.mec-tooltip .box.bottom:before{left:50%!important;top:-7px!important;transform:translateX(-50%);background-color:#3a3f44!important}.mec-tooltip .box.left{left:auto;right:26px;top:50%;transform:translateY(-50%)}.mec-tooltip .box.left:before{right:0!important;left:auto!important;top:50%!important}form#mec_reg_fields_form input[type=radio]:before{content:"";display:inline-block;background:#fff;border-radius:18px;width:14px;height:14px;margin:-1px 0 0 -2px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32)}form#mec_reg_fields_form input[type=radio]:checked:before{border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff;width:4px;height:4px}form#mec_reg_fields_form input[type=radio]{min-height:0;margin-right:6px}form#mec_reg_fields_form label{margin-right:20px}@media(min-width:1200px) and (max-width:1366px){.mec-tooltip .box.left{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-tooltip .box.left:after{top:50%!important;right:100%!important}.mec-tooltip .box.left:before{left:50%!important;top:100%!important}.mec-tooltip .box{min-width:225px}.mec-tooltip .box h5{font-size:15px}.mec-tooltip .box .content{font-size:12px}}@media(max-width:1366px){.wns-be-container .wns-be-group-tab p{margin-top:0}}.mec-addons-notification-box-wrap .w-col-sm-12{padding:0}.mec-addons-notification-box-wrap img{width:auto}.mec-addons-notification-box-image{width:555px;display:inline-block;vertical-align:top}.mec-addons-notification-box-content{width:calc(100% - 559px);display:inline-block}.mec-addons-notification-box-content p{margin-top:1%;line-height:1.5;font-size:16px}.mec-addons-notification-box-content .w-box-content{padding-top:0;padding-bottom:0}.mec-addons-notification-box-content ol{font-size:16px}.mec-addons-notification-box-content a{background:#38d5ed;color:#fff!important;padding:10px 26px;margin-top:5px;display:inline-block;border-radius:3px;text-transform:capitalize;font-size:16px;letter-spacing:.4px;transition:all .1s ease;font-weight:600;text-decoration:none}.mec-addons-notification-box-content a:hover{background:#000}.w-clearfix.w-box.mec-addons-notification-box-wrap span{right:0;left:unset;cursor:pointer;background:#fff;padding:0 16px}.w-clearfix.w-box.mec-addons-notification-box-wrap span i{font-size:28px;vertical-align:sub;color:#f2113e}.wns-be-container .mec-addons-notification-wrap{padding:0;margin:0}.wns-be-container .mec-addons-notification-wrap .w-col-sm-12{padding:0}.wns-be-container .w-box{margin-top:0}.wns-be-container.mec-addons-notification-set-box{margin-right:15px;margin-top:40px;margin-bottom:27px}
|
2 |
* Bootstrap v3.3.7 (http://getbootstrap.com)
|
3 |
* Copyright 2011-2016 Twitter, Inc.
|
4 |
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
5 |
+
*/#webnus-dashboard button,#webnus-dashboard input,#webnus-dashboard select,#webnus-dashboard textarea{font-family:inherit;font-size:inherit;line-height:inherit}#webnus-dashboard a{color:#337ab7;text-decoration:none}#webnus-dashboard a:focus,#webnus-dashboard a:hover{color:#23527c}#webnus-dashboard a:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}#webnus-dashboard figure{margin:0}#webnus-dashboard img{vertical-align:middle}.w-img-responsive{display:block;max-width:100%;height:auto}.w-img-rounded{border-radius:6px}.w-img-thumbnail{padding:4px;line-height:1w-42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all 0w-2s ease-in-out;-o-transition:all 0w-2s ease-in-out;transition:all 0w-2s ease-in-out;display:inline-block;max-width:100%;height:auto}.w-img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.w-sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.w-sr-only-focusable:active,.w-sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.w-container,.w-container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}[role=button]{cursor:pointer}@media (min-width:768px){.w-container{width:750px}}@media (min-width:992px){.w-container{width:970px}}@media (min-width:1200px){.w-container{width:1170px}}.w-row{margin-left:-15px;margin-right:-15px}.w-col-lg-1,.w-col-lg-10,.w-col-lg-11,.w-col-lg-12,.w-col-lg-2,.w-col-lg-3,.w-col-lg-4,.w-col-lg-5,.w-col-lg-6,.w-col-lg-7,.w-col-lg-8,.w-col-lg-9,.w-col-md-1,.w-col-md-10,.w-col-md-11,.w-col-md-12,.w-col-md-2,.w-col-md-3,.w-col-md-4,.w-col-md-5,.w-col-md-6,.w-col-md-7,.w-col-md-8,.w-col-md-9,.w-col-sm-1,.w-col-sm-10,.w-col-sm-11,.w-col-sm-12,.w-col-sm-2,.w-col-sm-3,.w-col-sm-4,.w-col-sm-5,.w-col-sm-6,.w-col-sm-7,.w-col-sm-8,.w-col-sm-9,.w-col-xs-1,.w-col-xs-10,.w-col-xs-11,.w-col-xs-12,.w-col-xs-2,.w-col-xs-3,.w-col-xs-4,.w-col-xs-5,.w-col-xs-6,.w-col-xs-7,.w-col-xs-8,.w-col-xs-9{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.w-col-xs-1,.w-col-xs-10,.w-col-xs-11,.w-col-xs-12,.w-col-xs-2,.w-col-xs-3,.w-col-xs-4,.w-col-xs-5,.w-col-xs-6,.w-col-xs-7,.w-col-xs-8,.w-col-xs-9{float:left}.w-col-xs-12{width:100%}.w-col-xs-11{width:91.66666667%}.w-col-xs-10{width:83.33333333%}.w-col-xs-9{width:75%}.w-col-xs-8{width:66.66666667%}.w-col-xs-7{width:58.33333333%}.w-col-xs-6{width:50%}.w-col-xs-5{width:41.66666667%}.w-col-xs-4{width:33.33333333%}.w-col-xs-3{width:25%}.w-col-xs-2{width:16.66666667%}.w-col-xs-1{width:8w-33333333%}.w-col-xs-pull-12{right:100%}.w-col-xs-pull-11{right:91.66666667%}.w-col-xs-pull-10{right:83.33333333%}.w-col-xs-pull-9{right:75%}.w-col-xs-pull-8{right:66.66666667%}.w-col-xs-pull-7{right:58.33333333%}.w-col-xs-pull-6{right:50%}.w-col-xs-pull-5{right:41.66666667%}.w-col-xs-pull-4{right:33.33333333%}.w-col-xs-pull-3{right:25%}.w-col-xs-pull-2{right:16.66666667%}.w-col-xs-pull-1{right:8w-33333333%}.w-col-xs-pull-0{right:auto}.w-col-xs-push-12{left:100%}.w-col-xs-push-11{left:91.66666667%}.w-col-xs-push-10{left:83.33333333%}.w-col-xs-push-9{left:75%}.w-col-xs-push-8{left:66.66666667%}.w-col-xs-push-7{left:58.33333333%}.w-col-xs-push-6{left:50%}.w-col-xs-push-5{left:41.66666667%}.w-col-xs-push-4{left:33.33333333%}.w-col-xs-push-3{left:25%}.w-col-xs-push-2{left:16.66666667%}.w-col-xs-push-1{left:8w-33333333%}.w-col-xs-push-0{left:auto}.w-col-xs-offset-12{margin-left:100%}.w-col-xs-offset-11{margin-left:91.66666667%}.w-col-xs-offset-10{margin-left:83.33333333%}.w-col-xs-offset-9{margin-left:75%}.w-col-xs-offset-8{margin-left:66.66666667%}.w-col-xs-offset-7{margin-left:58.33333333%}.w-col-xs-offset-6{margin-left:50%}.w-col-xs-offset-5{margin-left:41.66666667%}.w-col-xs-offset-4{margin-left:33.33333333%}.w-col-xs-offset-3{margin-left:25%}.w-col-xs-offset-2{margin-left:16.66666667%}.w-col-xs-offset-1{margin-left:8w-33333333%}.w-col-xs-offset-0{margin-left:0}@media (min-width:768px){.w-col-sm-1,.w-col-sm-10,.w-col-sm-11,.w-col-sm-12,.w-col-sm-2,.w-col-sm-3,.w-col-sm-4,.w-col-sm-5,.w-col-sm-6,.w-col-sm-7,.w-col-sm-8,.w-col-sm-9{float:left}.w-col-sm-12{width:100%}.w-col-sm-11{width:91.66666667%}.w-col-sm-10{width:83.33333333%}.w-col-sm-9{width:75%}.w-col-sm-8{width:66.66666667%}.w-col-sm-7{width:58.33333333%}.w-col-sm-6{width:50%}.w-col-sm-5{width:41.66666667%}.w-col-sm-4{width:33.33333333%}.w-col-sm-3{width:25%}.w-col-sm-2{width:16.66666667%}.w-col-sm-1{width:8w-33333333%}.w-col-sm-pull-12{right:100%}.w-col-sm-pull-11{right:91.66666667%}.w-col-sm-pull-10{right:83.33333333%}.w-col-sm-pull-9{right:75%}.w-col-sm-pull-8{right:66.66666667%}.w-col-sm-pull-7{right:58.33333333%}.w-col-sm-pull-6{right:50%}.w-col-sm-pull-5{right:41.66666667%}.w-col-sm-pull-4{right:33.33333333%}.w-col-sm-pull-3{right:25%}.w-col-sm-pull-2{right:16.66666667%}.w-col-sm-pull-1{right:8w-33333333%}.w-col-sm-pull-0{right:auto}.w-col-sm-push-12{left:100%}.w-col-sm-push-11{left:91.66666667%}.w-col-sm-push-10{left:83.33333333%}.w-col-sm-push-9{left:75%}.w-col-sm-push-8{left:66.66666667%}.w-col-sm-push-7{left:58.33333333%}.w-col-sm-push-6{left:50%}.w-col-sm-push-5{left:41.66666667%}.w-col-sm-push-4{left:33.33333333%}.w-col-sm-push-3{left:25%}.w-col-sm-push-2{left:16.66666667%}.w-col-sm-push-1{left:8w-33333333%}.w-col-sm-push-0{left:auto}.w-col-sm-offset-12{margin-left:100%}.w-col-sm-offset-11{margin-left:91.66666667%}.w-col-sm-offset-10{margin-left:83.33333333%}.w-col-sm-offset-9{margin-left:75%}.w-col-sm-offset-8{margin-left:66.66666667%}.w-col-sm-offset-7{margin-left:58.33333333%}.w-col-sm-offset-6{margin-left:50%}.w-col-sm-offset-5{margin-left:41.66666667%}.w-col-sm-offset-4{margin-left:33.33333333%}.w-col-sm-offset-3{margin-left:25%}.w-col-sm-offset-2{margin-left:16.66666667%}.w-col-sm-offset-1{margin-left:8w-33333333%}.w-col-sm-offset-0{margin-left:0}}@media (min-width:992px){.w-col-md-1,.w-col-md-10,.w-col-md-11,.w-col-md-12,.w-col-md-2,.w-col-md-3,.w-col-md-4,.w-col-md-5,.w-col-md-6,.w-col-md-7,.w-col-md-8,.w-col-md-9{float:left}.w-col-md-12{width:100%}.w-col-md-11{width:91.66666667%}.w-col-md-10{width:83.33333333%}.w-col-md-9{width:75%}.w-col-md-8{width:66.66666667%}.w-col-md-7{width:58.33333333%}.w-col-md-6{width:50%}.w-col-md-5{width:41.66666667%}.w-col-md-4{width:33.33333333%}.w-col-md-3{width:25%}.w-col-md-2{width:16.66666667%}.w-col-md-1{width:8w-33333333%}.w-col-md-pull-12{right:100%}.w-col-md-pull-11{right:91.66666667%}.w-col-md-pull-10{right:83.33333333%}.w-col-md-pull-9{right:75%}.w-col-md-pull-8{right:66.66666667%}.w-col-md-pull-7{right:58.33333333%}.w-col-md-pull-6{right:50%}.w-col-md-pull-5{right:41.66666667%}.w-col-md-pull-4{right:33.33333333%}.w-col-md-pull-3{right:25%}.w-col-md-pull-2{right:16.66666667%}.w-col-md-pull-1{right:8w-33333333%}.w-col-md-pull-0{right:auto}.w-col-md-push-12{left:100%}.w-col-md-push-11{left:91.66666667%}.w-col-md-push-10{left:83.33333333%}.w-col-md-push-9{left:75%}.w-col-md-push-8{left:66.66666667%}.w-col-md-push-7{left:58.33333333%}.w-col-md-push-6{left:50%}.w-col-md-push-5{left:41.66666667%}.w-col-md-push-4{left:33.33333333%}.w-col-md-push-3{left:25%}.w-col-md-push-2{left:16.66666667%}.w-col-md-push-1{left:8w-33333333%}.w-col-md-push-0{left:auto}.w-col-md-offset-12{margin-left:100%}.w-col-md-offset-11{margin-left:91.66666667%}.w-col-md-offset-10{margin-left:83.33333333%}.w-col-md-offset-9{margin-left:75%}.w-col-md-offset-8{margin-left:66.66666667%}.w-col-md-offset-7{margin-left:58.33333333%}.w-col-md-offset-6{margin-left:50%}.w-col-md-offset-5{margin-left:41.66666667%}.w-col-md-offset-4{margin-left:33.33333333%}.w-col-md-offset-3{margin-left:25%}.w-col-md-offset-2{margin-left:16.66666667%}.w-col-md-offset-1{margin-left:8w-33333333%}.w-col-md-offset-0{margin-left:0}}@media (min-width:1200px){.w-col-lg-1,.w-col-lg-10,.w-col-lg-11,.w-col-lg-12,.w-col-lg-2,.w-col-lg-3,.w-col-lg-4,.w-col-lg-5,.w-col-lg-6,.w-col-lg-7,.w-col-lg-8,.w-col-lg-9{float:left}.w-col-lg-12{width:100%}.w-col-lg-11{width:91.66666667%}.w-col-lg-10{width:83.33333333%}.w-col-lg-9{width:75%}.w-col-lg-8{width:66.66666667%}.w-col-lg-7{width:58.33333333%}.w-col-lg-6{width:50%}.w-col-lg-5{width:41.66666667%}.w-col-lg-4{width:33.33333333%}.w-col-lg-3{width:25%}.w-col-lg-2{width:16.66666667%}.w-col-lg-1{width:8w-33333333%}.w-col-lg-pull-12{right:100%}.w-col-lg-pull-11{right:91.66666667%}.w-col-lg-pull-10{right:83.33333333%}.w-col-lg-pull-9{right:75%}.w-col-lg-pull-8{right:66.66666667%}.w-col-lg-pull-7{right:58.33333333%}.w-col-lg-pull-6{right:50%}.w-col-lg-pull-5{right:41.66666667%}.w-col-lg-pull-4{right:33.33333333%}.w-col-lg-pull-3{right:25%}.w-col-lg-pull-2{right:16.66666667%}.w-col-lg-pull-1{right:8w-33333333%}.w-col-lg-pull-0{right:auto}.w-col-lg-push-12{left:100%}.w-col-lg-push-11{left:91.66666667%}.w-col-lg-push-10{left:83.33333333%}.w-col-lg-push-9{left:75%}.w-col-lg-push-8{left:66.66666667%}.w-col-lg-push-7{left:58.33333333%}.w-col-lg-push-6{left:50%}.w-col-lg-push-5{left:41.66666667%}.w-col-lg-push-4{left:33.33333333%}.w-col-lg-push-3{left:25%}.w-col-lg-push-2{left:16.66666667%}.w-col-lg-push-1{left:8w-33333333%}.w-col-lg-push-0{left:auto}.w-col-lg-offset-12{margin-left:100%}.w-col-lg-offset-11{margin-left:91.66666667%}.w-col-lg-offset-10{margin-left:83.33333333%}.w-col-lg-offset-9{margin-left:75%}.w-col-lg-offset-8{margin-left:66.66666667%}.w-col-lg-offset-7{margin-left:58.33333333%}.w-col-lg-offset-6{margin-left:50%}.w-col-lg-offset-5{margin-left:41.66666667%}.w-col-lg-offset-4{margin-left:33.33333333%}.w-col-lg-offset-3{margin-left:25%}.w-col-lg-offset-2{margin-left:16.66666667%}.w-col-lg-offset-1{margin-left:8w-33333333%}.w-col-lg-offset-0{margin-left:0}}.w-clearfix:after,.w-clearfix:before,.w-container-fluid:after,.w-container-fluid:before,.w-container:after,.w-container:before,.w-row:after,.w-row:before{content:" ";display:table}.w-clearfix:after,.w-container-fluid:after,.w-container:after,.w-row:after{clear:both}.w-center-block{display:block;margin-left:auto;margin-right:auto}.w-pull-right{float:right!important}.w-pull-left{float:left!important}.w-hide{display:none!important}.w-show{display:block!important}.w-invisible{visibility:hidden}.w-text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.w-hidden{display:none!important}.w-affix{position:fixed}.mec-image-popup-wrap{display:none}#wns-be-infobar.sticky{position:fixed;top:32px;background:#fff;z-index:9999;width:82%}.wns-be-main .wns-saved-settings.sticky{position:fixed;width:62.5%;top:111px;z-index:999999999999999999}#mec-search-settings{border-radius:2px;min-height:32px;box-shadow:0 3px 14px -5px rgba(0,0,0,.2),inset 0 1px 2px rgba(0,0,0,.07);padding:9px 10px 11px;margin-right:6px;color:#7c7772;font-size:12px;width:200px}#mec-search-settings::-webkit-input-placeholder{color:#7c7772}#mec-search-settings::-moz-placeholder{color:#7c7772}#mec-search-settings:-ms-input-placeholder{color:#7c7772}#mec-search-settings:-moz-placeholder{color:#7c7772}.mec-export-settings,.mec-import-settings{font-weight:700;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:8px 32px;height:36px;letter-spacing:.2px;line-height:36px;font-size:13px;color:#fff;text-decoration:none;display:inline-block}.mec-export-settings:hover,.mec-import-settings:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5);color:#fff}textarea.mec-import-settings-content{display:block;width:100%;min-height:120px;margin-bottom:25px;padding:10px 15px}.mec-import-options-notification{display:inline-block}.mec-import-options-notification .mec-message-import-error,.mec-import-options-notification .mec-message-import-success{display:inline-block;padding:15px 12px;margin-left:12px;opacity:0;visibility:hidden;font-weight:700}.mec-import-options-notification .mec-message-import-success{opacity:1;visibility:visible;border:2px solid green}.mec-import-options-notification .mec-message-import-error{opacity:1;visibility:visible;border:2px solid #e62117}.mec-export-settings:focus,.mec-import-settings:focus{color:#fff}.mec-import-settings-wrap{position:relative}.mec-loarder-wrap{position:absolute;top:0;bottom:0;left:0;right:0;background:rgba(202,202,202,.7);z-index:9999}.mec-loarder-wrap.mec-settings-loader{top:34px}.mec-loarder{position:absolute;width:64px;height:64px;top:calc(50% - 32px);left:calc(50% - 36px)}.mec-loarder div{display:inline-block;position:absolute;left:6px;width:4px;background:#fff;animation:mec-loarder 1.2s cubic-bezier(0,.5,.5,1) infinite}.mec-loarder div:nth-child(1){left:27px;animation-delay:-.24s;background:#0075ff}.mec-loarder div:nth-child(2){left:36px;animation-delay:-.12s;background:#028bff}.mec-loarder div:nth-child(3){left:45px;animation-delay:0;background:#32a0ff}@keyframes mec-loarder{0%{top:6px;height:51px}100%,50%{top:19px;height:26px}}.w-box.support-page.searchbox{background:#008aff;background:linear-gradient(180deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff;min-height:260px;text-align:center;border-radius:2px}#webnus-dashboard .search-form input{background:rgba(255,255,255,.2);border:none;width:50%;outline:0;color:rgba(255,255,255,.7);font-size:18px;border-radius:4px 0 0 4px;box-shadow:0 1px 2px 0 rgba(0,0,0,.03);-webkit-transition:background .4s,box-shadow .2s;transition:background .4s,box-shadow .2s;padding:20px 32px;margin:0}#webnus-dashboard .search-form button{background:rgba(255,255,255,.2);border:none;padding:20px 32px;margin-left:-2px;color:#fff;border-radius:0 4px 4px 0;font-size:18px;cursor:pointer;-webkit-transition:background .4s,box-shadow .2s;transition:background .4s,box-shadow .2s}#webnus-dashboard .search-form button:hover{background:#fff;color:#3a3c4c}.w-box.support-page.searchbox p{font-size:30px}.search-form input::-webkit-input-placeholder{color:rgba(255,255,255,.7)}.search-form input::-moz-placeholder{color:rgba(255,255,255,.7)}.search-form input:-ms-input-placeholder{color:rgba(255,255,255,.7)}.search-form input:-moz-placeholder{color:rgba(255,255,255,.7)}#webnus-dashboard .search-form input:active,#webnus-dashboard .search-form input:focus{box-shadow:0 10px 20px rgba(0,0,0,.14);background:#fff;color:#3a3c4c}#webnus-dashboard .search-form input:active::-webkit-input-placeholder,#webnus-dashboard .search-form input:focus::-webkit-input-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active::-moz-placeholder,#webnus-dashboard .search-form input:focus::-moz-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active:-ms-input-placeholder,#webnus-dashboard .search-form input:focus:-ms-input-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active:-moz-placeholder,#webnus-dashboard .search-form input:focus:-moz-placeholder{color:#3a3c4c}#webnus-dashboard .w-box.support-page.mec-ticksy{text-align:center;min-height:260px}#webnus-dashboard .w-box.support-page.mec-ticksy p{font-size:20px;width:70%;margin:0 auto;margin-bottom:40px;margin-top:40px}#webnus-dashboard .w-box.support-page.mec-ticksy a{color:#fff;font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:12px 20px;cursor:pointer;margin-bottom:40px;display:inline-block}#webnus-dashboard .w-box.support-page.mec-ticksy a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5)}.mec-faq-accordion>.mec-faq-accordion-content{display:none}#webnus-dashboard .mec-faq-accordion-trigger a{font-size:16px;padding:12px;background:#f1f1f1;display:block;color:#222;line-height:17px;outline:0}.mec-faq-accordion-trigger{margin-bottom:5px;position:relative}#webnus-dashboard .mec-faq-accordion-trigger a:after{font-family:simple-line-icons;content:"\e095";position:absolute;right:12px;font-weight:700}.mec-faq-accordion-content{padding:5px 14px 25px}#webnus-dashboard .mec-faq-accordion-trigger a.active:after{content:"\e082"}#webnus-dashboard .support-page-links a{background-color:#fff;color:#fff;border-radius:2px;padding:13px 24px;font-size:12px;letter-spacing:1px;font-weight:600;text-transform:uppercase}#webnus-dashboard .support-page-links a:hover,#webnus-dashboard .w-box.support-page.videobox .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}#webnus-dashboard .support-page-links{display:inline-block;margin:12px 4px 16px 0}.support-page-links.link-to-doc a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.support-page-links.link-to-videos a{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);box-shadow:0 5px 10px -5px #ff876c}.support-page-links.link-to-articles a{background:#b092e6;background:linear-gradient(95deg,#b092e6 0,#9b70e8 50%,#8e5cea 100%);box-shadow:0 5px 10px -5px #b092e6}.w-box.support-page.articles-box .w-box-content a{display:block;padding:6px 0}#webnus-dashboard .w-box.support-page.videobox .w-button a{color:#fff;font-size:10px;padding:5px 15px;min-height:10px;font-weight:500;border-radius:22px;box-shadow:0 3px 10px -4px #ff5a35;text-shadow:none;background:#ff5a35;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);border:none;transition:.24s}.w-box.support-page.articles-box,.w-box.support-page.faq-box{min-height:500px}.w-box.support-page.videobox{border-radius:2px;min-height:282px;box-shadow:0 1px 6px rgba(0,0,0,.039)!important}#webnus-dashboard .w-box.support-page.videobox .w-button a i{margin-right:6px}.support-page .w-box-content ul{margin-top:5px;padding-left:5px}.support-page .w-box-content ul li{font-size:13px}.support-page .w-box-content ul li i{font-size:17px;vertical-align:text-bottom;margin-right:7px;color:#999}.w-box.mec-activation{background:#fff url(../img/dp-dsb-support.jpg) no-repeat top right}.w-box.mec-activation .w-box-head{color:#40d8f0;width:75%}.w-box.mec-activation .w-box-content{padding:10px 30px}.w-box.mec-activation input[type=radio]{display:none}.w-box.mec-activation input[type=radio]+label{color:#000;font-size:13px;line-height:14px!important;color:#7b7b7b}.w-box.mec-activation input[type=radio].checked+label{color:#40d8f0}.w-box.mec-activation input[type=radio]+label span{display:inline-block;margin:-2px 6px 0 0;vertical-align:middle;cursor:pointer;height:14px;width:14px;text-align:center;background-color:#fff;border:1px solid #d4d4d4;border-radius:100%;box-shadow:0 2px 16px -2px rgba(0,0,0,.2);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;position:relative}.w-box.mec-activation input[type=radio].checked+label span{background-color:#40d8f0;border-color:#40d8f0;box-shadow:0 2px 14px -3px #40d8f0}.w-box.mec-activation input[type=radio].checked+label span:after{content:'';display:block;position:absolute;top:4px;left:4px;width:4px;height:4px;background:#fff;border-radius:100%}.w-box.mec-activation .LicenseType label{padding-right:20px;font-weight:500}.w-box.mec-activation .LicenseField{display:inline-block;position:relative;margin-top:20px}.w-box.mec-activation input[name=MECPurchaseCode]{box-shadow:inset 0 1px 2px rgba(0,0,0,.07);min-width:220px;background:#f4f4f4;border:none;border-radius:33px;width:500px;min-height:50px;margin:0;padding-left:20px;text-align:left}#webnus-dashboard .w-box.mec-activation input[type=submit]{height:40px;line-height:40px;font-weight:600;border:none;cursor:pointer;padding:0 30px;border-radius:33px;color:#fff;letter-spacing:1px;text-transform:uppercase;font-size:12px;background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67;transition:all .28s ease;position:absolute;right:5px;top:4px;font-size:12px}#webnus-dashboard .w-box.mec-activation input[type=submit]:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5)}#MECActivation .MECPurchaseStatus,.addon-activation-form .MECPurchaseStatus{display:inline-block;width:40px;height:40px;text-align:center;padding-top:9px;color:#fff;font-weight:700;font-size:18px;border-radius:50%;padding-top:8px;position:absolute;right:-51px;top:calc(50% - 20px)}.MECPurchaseStatus:after,.MECPurchaseStatus:before{position:absolute;border-radius:50px;background:#fff;content:'';transform:rotate(45deg)}.MECPurchaseStatus.PurchaseError:before{width:22px;height:4px;right:9px;top:18px;transform:rotate(45deg)}.MECPurchaseStatus.PurchaseError:after{width:22px;height:4px;right:9px;top:18px;transform:rotate(-45deg)}.MECPurchaseStatus.PurchaseSuccess:before{width:13px;height:4px;right:19px;top:21px;transform:rotate(45deg)}.MECPurchaseStatus.PurchaseSuccess:after{width:22px;height:4px;right:5px;top:18px;transform:rotate(-45deg)}#MECActivation .MECPurchaseStatus.PurchaseError,.addon-activation-form .MECPurchaseStatus.PurchaseError{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);box-shadow:0 5px 10px -5px #ff876c}#MECActivation .MECPurchaseStatus.PurchaseSuccess,.addon-activation-form .MECPurchaseStatus.PurchaseSuccess{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.wna-spinner-wrap{position:absolute;background:#000;width:509px;height:64px;top:-8px;border-radius:50px;z-index:999;background-color:#fff;opacity:.9}.wna-spinner{width:40px;height:40px;position:relative;margin:6px auto}.wna-spinner .double-bounce1,.wna-spinner .double-bounce2{width:100%;height:100%;border-radius:50%;background-color:#40d8f0;opacity:.6;position:absolute;top:0;left:0;-webkit-animation:sk-bounce 2s infinite ease-in-out;animation:sk-bounce 2s infinite ease-in-out}.wna-spinner .double-bounce2{-webkit-animation-delay:-1s;animation-delay:-1s}#MECActivation .MECLicenseMessage,.addon-activation-form .MECLicenseMessage{margin-top:24px;color:#f64;max-width:570px}.box-addon-activation-toggle-content,.box-addon-activation-toggle-head{display:none}.addon-activation-form h3{font-size:15px;font-weight:400;margin:34px 0 -7px}.box-addon-activation-toggle-head{line-height:1.5;font-size:16px;margin-top:20px;cursor:pointer}.box-addon-activation-toggle-head i{margin-right:7px;cursor:pointer;font-weight:700}#mec-advanced-wraper div:first-child>ul{display:block;margin:5px 0;padding:5px 0;width:390px;border:1px solid #e1e2e3;border-radius:2px;box-shadow:0 1px 3px rgba(0,0,0,.05)}#mec-advanced-wraper div:first-child>ul span{display:none}#mec-advanced-wraper div:first-child>ul *{display:inline-block;background:#fff;font-size:12px;color:#717273;text-align:center}#mec-advanced-wraper div:first-child>ul>li{width:60px;font-weight:700;margin:0 10px 0 0;padding:4px 0;border-right:1px solid #e1e2e3}#mec-advanced-wraper div:first-child>ul>ul>li{margin:0;padding:2px 10px;cursor:pointer;border-radius:2px;transition:all .18s ease}#mec-advanced-wraper div:first-child>ul>ul>li:hover,.mec-active{background:#008aff!important;color:#fff!important}@-webkit-keyframes sk-bounce{0%,100%{-webkit-transform:scale(0)}50%{-webkit-transform:scale(1)}}@keyframes sk-bounce{0%,100%{transform:scale(0);-webkit-transform:scale(0)}50%{transform:scale(1);-webkit-transform:scale(1)}}.w-col-sm-3 .w-box.addon{min-height:auto;box-shadow:0 3px 16px -5px rgba(0,0,0,.1);border-radius:2px}.w-box-child.mec-addon-box{padding:20px 20px}.mec-addon-box-head{border-bottom:1px solid #e8e8e8;padding-bottom:5px;margin-bottom:14px;position:relative}.mec-addon-box-version{position:relative;background:#eaeaea;border-radius:1px;padding:0 8px;color:#5a5a5a;font-size:11px;letter-spacing:.2px;line-height:21px;display:inline-block;margin:3px 0}.mec-addon-box-title{font-weight:700;font-size:18px;line-height:25px}.mec-addon-box-title a span{color:#444;font-size:15px}.mec-addon-box-content p{color:#777;font-size:13px}.mec-addon-box-mec-version{background:#f3f3f3;padding:10px;font-size:13px}#webnus-dashboard .addons-page-links{display:inline-block;margin:12px 4px 16px 0}#webnus-dashboard .addons-page-links a{background-color:#fff;color:#fff;border-radius:2px;padding:13px 24px;font-size:12px;letter-spacing:1px;font-weight:600;text-transform:uppercase}.addons-page-links.link-to-purchase a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.addons-page-links.link-to-install-addons a{background:#b092e6;background:linear-gradient(95deg,#b092e6 0,#9b70e8 50%,#8e5cea 100%);box-shadow:0 5px 10px -5px #b092e6}#webnus-dashboard .addons-page-links a:hover,#webnus-dashboard .w-box.addons-page.videobox .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}.mec-addon-box-footer{margin-top:25px}#webnus-dashboard .mec-addon-box-footer a{font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:7px 19px;margin-top:10px;display:inline-block;letter-spacing:.2px;color:#fff;width:100%;text-align:center}#webnus-dashboard .mec-addon-box-footer a.mec-addon-box-intro{box-shadow:0 3px 10px -4px #ff5a35;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%)}#webnus-dashboard .mec-addon-box-footer a:hover{background:#222!important;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%)!important;box-shadow:0 5px 23px -7px rgba(0,0,0,.5)!important;cursor:pointer!important}#webnus-dashboard .mec-addon-box-footer a i{margin-right:6px;color:#fff}@media(max-width:1366px){.wns-be-container #wns-be-content{padding:5px 15px 0}.mec-form-row .mec-col-8 label{font-size:10px}#webnus-dashboard .mec-tooltip .box p,.mec-tooltip .box p{font-size:10px}}@media (max-width:780px){.wns-be-container #wns-be-content{padding:10px 0}.wns-be-container .mec-form-row .mec-col-8 label{width:50%;display:block}.wns-be-container .mec-form-row input[type=checkbox]{width:14px;height:14px}.wns-be-container .wns-be-sidebar li .subsection a{padding-left:30px}.wns-be-container .wns-be-sidebar{width:200px}.wns-be-container .wns-be-main{margin-left:200px}.wns-be-container .mec-tooltip .box{min-width:235px!important}.wns-be-container .mec-tooltip .box p{font-size:12px!important}#wns-be-infobar.sticky{position:unset}}@media (max-width:480px){.wns-be-container .wns-be-sidebar{width:100%;position:unset;float:none}.wns-be-container .wns-be-main{margin-left:0;width:100%;position:unset}.wns-be-container{margin-top:50px}.wns-be-container #wns-be-infobar:before{width:100%}.wns-be-container #wns-be-infobar{height:150px}#mec-search-settings{margin-top:80px;width:181px}}.addons-page-error,.addons-page-notice{display:block;margin-top:15px;margin-bottom:0;background:#fff;border-left:4px solid #00a0d2;box-shadow:0 1px 1px 0 rgba(0,0,0,.1);padding:1px 12px}.addons-page-error p,.addons-page-notice p{margin:.5em 0;padding:2px;font-size:13px}.addons-page-error{border-left-color:#dc3232}.mec-addon-box-comingsoon{background:#eaeaea;padding:8px 11px;color:#5a5a5a;font-size:14px;font-weight:500;text-align:center}.mec-addons .w-row .w-col-sm-3:nth-child(4n+1){clear:left}@media (min-width:960px){#webnus-dashboard .mec-addon-box-footer .w-button{text-align:right}}@media (min-width:1401px){.mec-addon-box-title a span{font-size:17px}}.mec-pro-notice{margin-top:24px;line-height:30px}.mec-pro-notice .info-msg{padding:20px 30px 27px;margin-bottom:0}.mec-intro-section .w-box-content{text-align:center}.mec-intro-section .w-box-content.mec-intro-section-welcome{max-width:600px;margin:0 auto}.mec-intro-section .w-box-content.mec-intro-section-welcome h3{font-size:27px}a.mec-intro-section-link-tag.button.button-hero{margin:0 10px 40px}a.mec-intro-section-link-tag.button.button-primary.button-hero{color:#fff!important}a.mec-intro-section-link-tag.button.button-secondary.button-hero{color:#000!important}.mec-intro-section-ifarme iframe{border:1px solid #e7e7e7;border-radius:3px;padding:10px;box-shadow:0 3px 10px -6px rgba(0,0,0,.2)}.w-box-content.mec-intro-section-welcome p{margin-bottom:0}.mec-tooltip a:focus{box-shadow:none}#mec_booking_form .mec-options-fields,#mec_modules_form .mec-options-fields,#mec_settings_form .mec-options-fields,#mec_single_form .mec-options-fields{padding-bottom:150px!important}#mec_taxes_fees_container_toggle{margin-bottom:60px}#mec_taxes_fees_container_toggle{margin-bottom:60px}.wns-be-sidebar li{position:relative}.wns-be-sidebar li .submneu-hover{position:absolute;top:-1px;right:-222px;width:220px;z-index:9;background:#fff;border:1px;border-style:solid;border-color:#dedede;margin:0;overflow:visible;opacity:0;visibility:hidden;transition:all .23s ease;padding-top:8px;padding-bottom:12px}.wns-be-sidebar li:hover{background:#fff}.wns-be-sidebar li:hover .submneu-hover{opacity:1;visibility:visible}.wns-be-sidebar li .submneu-hover a{background:#fff;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 26px}.wns-be-sidebar li .submneu-hover a:hover{background:#f6f6f6;color:#222}.wns-be-sidebar li .submneu-hover:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-15px;top:14px;border-right-color:#c5c5c5;right:0}.wns-be-sidebar li .submneu-hover:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-14px;top:14px}.wns-be-sidebar li a:focus,.wns-be-sidebar li:focus{outline:-webkit-focus-ring-color auto 0;border:0;box-shadow:none}@media (max-width:480px){.wns-be-sidebar li .submneu-hover{width:175px;right:0}.wns-be-sidebar li .submneu-hover a{font-size:11px;padding:5px 5px 5px 20px}}.mec-tooltip:hover:after,.mec-tooltip:hover:before{display:none}.mec-tooltip{display:inline-flex;bottom:7px}.mec-tooltip .box{min-width:300px;max-width:600px;display:inline-block;left:26px;top:50%;transform:translateY(-50%);padding:0;margin-top:8px;background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.3;position:absolute;z-index:9999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s}#webnus-dashboard .mec-tooltip .box p,.mec-tooltip .box p{color:#fff;font-size:14px;line-height:1.3;margin:0}.mec-tooltip:hover .box{visibility:visible;opacity:1}.mec-tooltip:hover .box{padding:20px;border-radius:8px}.mec-tooltip .box h5{color:#fff;font-size:17px;font-weight:600;margin:-30px -20px;padding:20px 0;text-align:center;margin-bottom:10px;background:#3a3f44;border-bottom:1px solid #32363a;border-radius:6px 6px 0 0;z-index:9999}#webnus-dashboard .mec-tooltip .box p a,.mec-tooltip .box p a{color:#40d9f1;margin-top:10px;margin-left:0;font-weight:400;position:relative;text-decoration:none;display:block;width:max-content}.mec-tooltip .box a:hover{color:#f90}.mec-tooltip .box:after{display:block;position:absolute!important;top:100%!important;right:50%!important;margin-top:-6px!important;margin-right:-6px!important;width:12px!important;height:24px!important;overflow:hidden!important;transform:rotate(-90deg)!important}.mec-tooltip .box:before{display:block;content:''!important;position:absolute!important;width:12px;height:12px;left:-10px!important;top:50%!important;transform:translate(50%,-50%) rotate(-45deg)!important;background-color:#535a61!important;box-shadow:0 8px 9px -4px #535a61!important;z-index:0!important}.mec-tooltip .box.top{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-tooltip .box.top:after{top:50%!important;right:100%!important}.mec-tooltip .box.top:before{left:50%!important;top:100%!important}.mec-tooltip .box.bottom{left:50%;top:auto;bottom:0;transform:translate(-50%,100%);margin-bottom:-20px;margin-left:-10px}.mec-tooltip .box.bottom:after{top:0!important;right:50%!important;background-color:#3a3f44!important}.mec-tooltip .box.bottom:before{left:50%!important;top:-7px!important;transform:translateX(-50%);background-color:#3a3f44!important}.mec-tooltip .box.left{left:auto;right:26px;top:50%;transform:translateY(-50%)}.mec-tooltip .box.left:before{right:0!important;left:auto!important;top:50%!important}form#mec_reg_fields_form input[type=radio]:before{content:"";display:inline-block;background:#fff;border-radius:18px;width:14px;height:14px;margin:-1px 0 0 -2px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32)}form#mec_reg_fields_form input[type=radio]:checked:before{border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff;width:4px;height:4px}form#mec_reg_fields_form input[type=radio]{min-height:0;margin-right:6px}form#mec_reg_fields_form label{margin-right:20px}@media(min-width:1200px) and (max-width:1366px){.mec-tooltip .box.left{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-tooltip .box.left:after{top:50%!important;right:100%!important}.mec-tooltip .box.left:before{left:50%!important;top:100%!important}.mec-tooltip .box{min-width:225px}.mec-tooltip .box h5{font-size:15px}.mec-tooltip .box .content{font-size:12px}}@media(max-width:1366px){.wns-be-container .wns-be-group-tab p{margin-top:0}}.mec-addons-notification-box-wrap .w-col-sm-12{padding:0}.mec-addons-notification-box-wrap img{width:auto}.mec-addons-notification-box-image{width:555px;display:inline-block;vertical-align:top}.mec-addons-notification-box-content{width:calc(100% - 559px);display:inline-block}.mec-addons-notification-box-content p{margin-top:1%;line-height:1.5;font-size:16px}.mec-addons-notification-box-content .w-box-content{padding-top:0;padding-bottom:0}.mec-addons-notification-box-content ol{font-size:16px}.mec-addons-notification-box-content a{background:#38d5ed;color:#fff!important;padding:10px 26px;margin-top:5px;display:inline-block;border-radius:3px;text-transform:capitalize;font-size:16px;letter-spacing:.4px;transition:all .1s ease;font-weight:600;text-decoration:none}.mec-addons-notification-box-content a:hover{background:#000}.w-clearfix.w-box.mec-addons-notification-box-wrap span{right:0;left:unset;cursor:pointer;background:#fff;padding:0 16px}.w-clearfix.w-box.mec-addons-notification-box-wrap span i{font-size:28px;vertical-align:sub;color:#f2113e}.wns-be-container .mec-addons-notification-wrap{padding:0;margin:0}.wns-be-container .mec-addons-notification-wrap .w-col-sm-12{padding:0}.wns-be-container .w-box{margin-top:0}.wns-be-container.mec-addons-notification-set-box{margin-right:15px;margin-top:50px;margin-bottom:27px}@media(max-width:1200px){.mec-addons-notification-box-content,.mec-addons-notification-box-image{width:100%;display:block}.mec-addons-notification-box-image{text-align:center}}@media(max-width:768px){.mec-addons-notification-box-image img{width:100%;height:auto}}body.rtl .wns-be-sidebar{width:260px;float:right;position:relative}body.rtl .wns-be-main{margin-left:0;border-left:0;margin-right:260px;border-right:1px solid #dedede}body.rtl .w-box.mec-activation .LicenseField{direction:rtl}body.rtl .w-box.mec-activation input[name=MECPurchaseCode]{text-align:right;padding-right:20px}body.rtl #MECActivation .MECPurchaseStatus,body.rtl .addon-activation-form .MECPurchaseStatus{right:auto;left:-51px}body.rtl #webnus-dashboard .w-box.mec-activation input[type=submit]{right:auto;left:5px}body.rtl .wns-be-sidebar .wns-be-group-menu li a{padding:13px 20px 13px 4px}body.rtl .wns-be-sidebar .wns-be-group-tab-link-a span.wns-be-group-menu-title{padding-left:0;padding-right:24px}body.rtl .wns-be-sidebar .has-sub span.extra-icon{float:left}body.rtl .wns-be-sidebar .wns-be-group-tab-link-a span.extra-icon i{right:auto;left:10px}body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:after,body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:transparent;border-left-color:#fff;right:auto;left:-1px;top:10px}body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{border-right-color:transparent;border-left-color:#c5c5c5;right:auto;left:0}body.rtl .mec-col-1,body.rtl .mec-col-10,body.rtl .mec-col-11,body.rtl .mec-col-12,body.rtl .mec-col-2,body.rtl .mec-col-3,body.rtl .mec-col-4,body.rtl .mec-col-5,body.rtl .mec-col-6,body.rtl .mec-col-7,body.rtl .mec-col-8,body.rtl .mec-col-9{float:right;margin:0 1% 0 0}body.rtl .wns-be-sidebar li .submneu-hover{right:auto;left:-222px}body.rtl .wns-be-sidebar li .submneu-hover:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:auto;right:-1px;top:14px}body.rtl #mec_styles_form #mec_styles_CSS{direction:ltr}body.rtl .w-box.mec-activation{-moz-transform:scaleY(-1);-o-transform:scaleY(-1);-webkit-transform:scaleY(-1);transform:scaleX(-1)}body.rtl .w-box.mec-activation .w-box-content,body.rtl .w-box.mec-activation .w-box-head{-moz-transform:scaleY(-1);-o-transform:scaleY(-1);-webkit-transform:scaleY(-1);transform:scaleX(-1);display:block}body.rtl .w-box.mec-activation .w-box-head{width:100%}body.rtl .wns-be-container #wns-be-infobar:before{left:auto;right:0}body.rtl .wns-be-container .dpr-btn.dpr-save-btn{float:left}body.rtl .wns-be-container .wns-be-group-tab h2:before,body.rtl .wns-be-container .wns-be-group-tab h4:before{left:auto;right:0;margin-right:0;margin-left:5px}body.rtl #mec_gateways_form .mec-tooltip{float:left}
|
assets/css/frontend.css
CHANGED
@@ -6945,7 +6945,9 @@ li.mec-no-event-found .mec-event-title {
|
|
6945 |
bottom: -24px;
|
6946 |
margin-left: -11px;
|
6947 |
left: 50%;
|
6948 |
-
|
|
|
|
|
6949 |
}
|
6950 |
|
6951 |
@media (max-width: 480px) {
|
@@ -11286,6 +11288,76 @@ ul.mec-weekly-view-dates-events article:before,
|
|
11286 |
}
|
11287 |
}
|
11288 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11289 |
|
11290 |
/* Bootstrap v3.0.3 * * Copyright 2013 Twitter, Inc * Licensed under the Apache License v2.0 * http://www.apache.org/licenses/LICENSE-2.0 * * Designed and built with all the love in the world @twitter by @mdo and @fat. */
|
11291 |
.mec-wrap * {
|
@@ -11847,50 +11919,49 @@ ul.mec-weekly-view-dates-events article:before,
|
|
11847 |
margin-bottom: 0;
|
11848 |
}
|
11849 |
|
11850 |
-
|
11851 |
-
#mec-advanced-wraper div:first-child > ul
|
11852 |
-
{
|
11853 |
-
display: block;
|
11854 |
-
margin: 0;
|
11855 |
-
border-bottom: 2px solid #0dbdd4;
|
11856 |
-
width: 390px;
|
11857 |
-
background: #13cbe8;
|
11858 |
-
}
|
11859 |
|
11860 |
-
|
11861 |
-
|
11862 |
-
|
11863 |
-
|
|
|
|
|
|
|
|
|
|
|
11864 |
|
11865 |
-
|
11866 |
-
|
11867 |
-
|
11868 |
-
background: #13cbe8;
|
11869 |
-
font-style: italic;
|
11870 |
-
color: #fff;
|
11871 |
-
text-align: center;
|
11872 |
-
}
|
11873 |
|
11874 |
-
|
11875 |
-
|
11876 |
-
|
11877 |
-
|
11878 |
-
|
11879 |
-
|
11880 |
-
|
11881 |
-
}
|
11882 |
|
11883 |
-
|
11884 |
-
|
11885 |
-
|
11886 |
-
|
11887 |
-
|
11888 |
-
|
11889 |
-
|
11890 |
-
}
|
11891 |
|
11892 |
-
|
11893 |
-
|
11894 |
-
|
11895 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11896 |
/* --------------------- */
|
6945 |
bottom: -24px;
|
6946 |
margin-left: -11px;
|
6947 |
left: 50%;
|
6948 |
+
transform: rotate(90deg);
|
6949 |
+
}
|
6950 |
+
|
6951 |
}
|
6952 |
|
6953 |
@media (max-width: 480px) {
|
11288 |
}
|
11289 |
}
|
11290 |
|
11291 |
+
/* Booking Cover Overley */
|
11292 |
+
.mec-events-meta-group-booking {
|
11293 |
+
position: relative;
|
11294 |
+
}
|
11295 |
+
|
11296 |
+
.mec-cover-loader:after {
|
11297 |
+
content: '';
|
11298 |
+
position: absolute;
|
11299 |
+
top: 0;
|
11300 |
+
right: 0;
|
11301 |
+
left: 0;
|
11302 |
+
bottom: 0;
|
11303 |
+
background: rgba(255, 255, 255, 0.5);
|
11304 |
+
z-index: 99999;
|
11305 |
+
}
|
11306 |
+
|
11307 |
+
.mec-loader {
|
11308 |
+
background: rgba(0, 0, 0, 0);
|
11309 |
+
position: absolute;
|
11310 |
+
top: 50%;
|
11311 |
+
left: 50%;
|
11312 |
+
transform: translate(-50%, -50%);
|
11313 |
+
z-index: 9;
|
11314 |
+
}
|
11315 |
+
|
11316 |
+
.mec-loader, .mec-loader:after {
|
11317 |
+
border-radius: 50%;
|
11318 |
+
width: 5em;
|
11319 |
+
height: 5em;
|
11320 |
+
z-index: 999999999999;
|
11321 |
+
}
|
11322 |
+
|
11323 |
+
.mec-loader {
|
11324 |
+
font-size: 10px;
|
11325 |
+
text-indent: -9999em;
|
11326 |
+
border-top: 0.5em solid rgba(0, 0, 0, 0.2);
|
11327 |
+
border-right: 0.5em solid rgba(0, 0, 0, 0.2);
|
11328 |
+
border-bottom: 0.5em solid rgba(0, 0, 0, 0.2);
|
11329 |
+
border-left: 0.5em solid #ffffff;
|
11330 |
+
-webkit-transform: translateZ(0);
|
11331 |
+
-ms-transform: translateZ(0);
|
11332 |
+
transform: translateZ(0);
|
11333 |
+
-webkit-animation: mecloader 1.1s infinite linear;
|
11334 |
+
animation: mecloader 1.1s infinite linear;
|
11335 |
+
}
|
11336 |
+
|
11337 |
+
@-webkit-keyframes mecloader {
|
11338 |
+
0% {
|
11339 |
+
-webkit-transform: rotate(0deg);
|
11340 |
+
transform: rotate(0deg);
|
11341 |
+
}
|
11342 |
+
|
11343 |
+
100% {
|
11344 |
+
-webkit-transform: rotate(360deg);
|
11345 |
+
transform: rotate(360deg);
|
11346 |
+
}
|
11347 |
+
}
|
11348 |
+
|
11349 |
+
@keyframes mecloader {
|
11350 |
+
0% {
|
11351 |
+
-webkit-transform: rotate(0deg);
|
11352 |
+
transform: rotate(0deg);
|
11353 |
+
}
|
11354 |
+
|
11355 |
+
100% {
|
11356 |
+
-webkit-transform: rotate(360deg);
|
11357 |
+
transform: rotate(360deg);
|
11358 |
+
}
|
11359 |
+
}
|
11360 |
+
|
11361 |
|
11362 |
/* Bootstrap v3.0.3 * * Copyright 2013 Twitter, Inc * Licensed under the Apache License v2.0 * http://www.apache.org/licenses/LICENSE-2.0 * * Designed and built with all the love in the world @twitter by @mdo and @fat. */
|
11363 |
.mec-wrap * {
|
11919 |
margin-bottom: 0;
|
11920 |
}
|
11921 |
|
11922 |
+
/* Advanced Repeating */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11923 |
|
11924 |
+
#mec-advanced-wraper div:first-child>ul {
|
11925 |
+
display: block;
|
11926 |
+
margin: 5px 0;
|
11927 |
+
padding: 5px 0;
|
11928 |
+
width: 430px;
|
11929 |
+
border: 1px solid #e1e2e3;
|
11930 |
+
border-radius: 2px;
|
11931 |
+
box-shadow: 0 1px 3px rgba(0,0,0,.05);
|
11932 |
+
}
|
11933 |
|
11934 |
+
#mec-advanced-wraper div:first-child>ul span {
|
11935 |
+
display: none
|
11936 |
+
}
|
|
|
|
|
|
|
|
|
|
|
11937 |
|
11938 |
+
#mec-advanced-wraper div:first-child>ul * {
|
11939 |
+
display: inline-block;
|
11940 |
+
background: #fff;
|
11941 |
+
font-size: 12px;
|
11942 |
+
color: #717273;
|
11943 |
+
text-align: center
|
11944 |
+
}
|
|
|
11945 |
|
11946 |
+
#mec-advanced-wraper div:first-child>ul>li {
|
11947 |
+
width: 60px;
|
11948 |
+
font-weight: 700;
|
11949 |
+
margin: 0 10px 0 0;
|
11950 |
+
padding: 4px 0;
|
11951 |
+
border-right: 1px solid #e1e2e3
|
11952 |
+
}
|
|
|
11953 |
|
11954 |
+
#mec-advanced-wraper div:first-child>ul>ul>li {
|
11955 |
+
margin: 0;
|
11956 |
+
padding: 2px 10px;
|
11957 |
+
cursor: pointer;
|
11958 |
+
border-radius: 2px;
|
11959 |
+
transition: all .18s ease
|
11960 |
+
}
|
11961 |
+
|
11962 |
+
#mec-advanced-wraper div:first-child>ul>ul>li:hover,.mec-active {
|
11963 |
+
background: #008aff!important;
|
11964 |
+
color: #fff!important
|
11965 |
+
}
|
11966 |
+
|
11967 |
/* --------------------- */
|
assets/css/frontend.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.lity-container,.mec-wrap,.mec-wrap div:not([class^=elementor-]){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 a.button:not(.owl-dot),.mec-wrap button:not(.owl-dot),.mec-wrap input[type=button],.mec-wrap input[type=reset],.mec-wrap input[type=submit]{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease}.mec-wrap .button:hover,.mec-wrap a.button:hover,.mec-wrap button:hover,.mec-wrap input[type=button]:hover,.mec-wrap input[type=reset]:hover,.mec-wrap input[type=submit]:hover{background:#222;color:#fff}.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,.mec-event-sharing-wrap:hover li ul li a{border:none;color:#767676}.mec-event-sharing-wrap li i{width:36px;height:36px;display:table-cell;vertical-align:middle}.mec-event-sharing-wrap .mec-event-sharing li a{display:block}.mec-event-sharing-wrap .mec-event-sharing li:hover a{color:#40d9f1}.mec-event-sharing .mec-event-share:hover .event-sharing-icon{background:#40d9f1;border-width:0 1px 0;cursor:pointer}.mec-event-sharing .mec-event-map{border-width:1px 0 1px}.mec-event-footer .mec-booking-button{box-shadow:none;transition:all .21s ease;font-size:11px;font-weight:500;letter-spacing:1px;text-transform:uppercase;background:#fff;color:#767676;border:1px solid #e8e8e8;position:absolute;top:20px;right:15px;padding:0 16px;line-height:37px;height:38px}.mec-event-footer .mec-booking-button:hover{background:#191919;color:#fff;border-color:#191919}@media only screen and (max-width:960px){.mec-event-grid-classic{margin-bottom:30px}}.mec-widget .mec-event-grid-classic.mec-owl-carousel{padding:36px 0 16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav{margin:5px 0;width:100%;position:absolute;top:15px;padding:0}.mec-skin-grid-container.mec-widget{padding-top:18px}.mec-widget .mec-event-grid-classic.mec-owl-carousel{padding:20px 0 16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav{margin:0;width:100%;position:absolute;top:0;padding:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav div{position:absolute;background:#fff;line-height:0;width:34px;height:26px;padding:6px;text-align:center;margin-top:-17px;border-radius:3px;border:1px solid #e2e2e2;text-align:center;box-shadow:0 2px 0 0 rgba(0,0,0,.028);transition:all .33s ease}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav .owl-next{right:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav .owl-prev{left:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-sharing{display:none}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-footer{text-align:center}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-footer .mec-booking-button{position:static;padding:11px 16px}.widget .mec-event-footer ul.mec-event-sharing-wrap li a.mec-event-share-icon{padding:0}@media screen and (min-width:56.875em){.mec-widget .mec-month-container dl{margin-bottom:0}}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-footer{text-align:right}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-sharing-wrap{left:5px;padding-left:5px}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-sharing-wrap .mec-event-sharing{left:0}.mec-widget .mec-event-sharing-wrap .mec-event-sharing{position:absolute;top:auto;bottom:52px;margin:0;margin-top:0;border-radius:5px}.mec-widget .mec-event-sharing-wrap .mec-event-sharing:after{top:auto;bottom:-17px;border-color:#fff transparent transparent transparent}.mec-widget .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-18px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-grid-clean{margin-bottom:10px;max-width:none}.mec-event-grid-clean .mec-event-article{margin-bottom:30px;position:relative;border:1px solid #e2e2e2;text-align:center;padding:15px 15px 0;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-clean .mec-event-content{background:#fff;color:#767676;padding:25px 16px 0;text-align:left}.mec-event-grid-clean .mec-event-title{color:#202020;margin:0 0 10px 0;font-weight:700;font-size:21px;text-transform:capitalize}.mec-event-grid-clean .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-clean .mec-event-date{font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:1px;background-color:#40d9f1;color:#fff;padding:3px 0;margin:0;text-align:center}.mec-event-grid-clean .mec-event-content p{font-size:15px;color:#9a9a9a;line-height:1.54}.mec-event-grid-clean img{margin-bottom:0;width:100%}.mec-event-grid-clean .event-grid-t2-head{margin-bottom:10px;color:#fff;padding:9px 14px 6px;text-align:left}.mec-event-grid-clean .event-grid-t2-head .mec-event-date{font-size:50px;line-height:50px;float:left;margin-right:11px}.mec-event-grid-clean .event-grid-t2-head .mec-event-month{text-transform:uppercase;font-size:17px;line-height:20px;padding-top:4px}.mec-event-grid-clean .event-grid-t2-head .mec-event-detail{font-size:12px}.mec-event-grid-clean .mec-event-sharing-wrap{left:0}.mec-event-grid-clean .mec-event-footer{position:relative;border-top:2px solid;padding:20px 0;margin:0 14px;text-align:left;background:0 0}.mec-event-grid-clean .mec-event-footer .mec-booking-button{right:0}.mec-event-grid-clean .row{margin-bottom:30px}.mec-event-grid-modern{margin-bottom:10px;max-width:none}.mec-event-grid-modern .mec-event-article{position:relative;border:1px solid #e2e2e2;text-align:center;margin-bottom:30px;padding:45px 15px 10px;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-modern .mec-event-content{background:#fff;color:#767676;padding:35px 15px 10px;text-align:left}.mec-event-grid-modern .mec-event-title{color:#202020;margin:0 0 10px 0;font-weight:700;font-size:24px;text-transform:none;letter-spacing:-1px}.mec-event-grid-modern .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-modern .mec-event-content p{font-size:15px;color:#9a9a9a;line-height:1.54}.mec-event-grid-modern img{margin-bottom:0;width:100%}.mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:9px 14px 6px;text-align:left}.mec-event-grid-modern .event-grid-modern-head .mec-event-date{font-size:50px;line-height:50px;float:left;margin-right:11px}.mec-event-grid-modern .event-grid-modern-head .mec-event-month{text-transform:uppercase;font-size:17px;line-height:20px;padding-top:4px}.mec-event-grid-modern .event-grid-modern-head .mec-event-detail{font-size:12px}.mec-event-grid-modern .event-grid-modern-head .mec-event-day{margin-top:9px;color:silver;font-family:Roboto,sans-serif;font-size:35px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.mec-event-grid-modern .mec-event-footer{position:relative;height:90px;padding:20px 0;border:none;margin:0 14px;text-align:left;background:0 0}.mec-event-grid-modern .mec-event-footer .mec-booking-button{right:auto;left:0}.mec-event-grid-modern .mec-event-sharing-wrap{left:auto;right:0}.mec-event-grid-modern .mec-event-sharing{left:auto;right:-6px}.mec-event-grid-modern .mec-event-sharing-wrap li{border-radius:55px}.mec-event-grid-modern .row{margin-bottom:0}@media only screen and (max-width:479px){.mec-event-grid-modern .mec-event-article{padding-bottom:30px}.mec-event-grid-modern .mec-event-sharing{top:60px;left:0;right:auto}.mec-event-grid-modern .mec-event-footer .mec-booking-button{top:0}}.mec-event-grid-colorful .mec-event-article{min-height:400px;border:none;box-shadow:none;background:#40d9f1;padding-top:25px;margin:0;color:#fff}.mec-event-grid-colorful .mec-event-content{background:0 0}.mec-event-grid-colorful .event-grid-modern-head,.mec-event-grid-colorful .event-grid-modern-head .mec-event-date,.mec-event-grid-colorful .event-grid-modern-head .mec-event-day,.mec-event-grid-colorful .mec-event-content p,.mec-event-grid-colorful .mec-event-sharing-wrap>li>a,.mec-event-grid-colorful .mec-event-title a{color:#fff}.mec-event-grid-colorful .mec-event-footer .mec-booking-button{border:none}.mec-event-grid-colorful .mec-event-sharing-wrap>li{border-color:#fff}.mec-event-grid-colorful .mec-event-sharing-wrap:hover>li{background:#333;border-color:#333}.mec-event-grid-colorful .mec-event-title a.mec-color-hover:hover{color:#fff;text-decoration:underline}.mec-event-grid-colorful .mec-event-title .event-color{display:none}.mec-event-grid-colorful div[class^=col-md-]{padding:0 1px 1px 0;margin:0}@media only screen and (min-width:768px){.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-day{font-size:26px}.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-month{font-size:15px}.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-date{font-size:50px}.mec-wrap.mec-sm959.mec-event-grid-colorful .mec-event-title{font-size:21px}.mec-wrap.mec-sm959.mec-event-grid-colorful .mec-event-content p{font-size:13px}}@media only screen and (min-width:768px) and (max-width:1200px){.mec-wrap.mec-sm959.mec-event-grid-colorful div[class^=col-md-]{width:50%}}.mec-event-list-minimal .mec-event-article{border-bottom:1px solid #efefef;padding:24px 0 16px}.mec-event-list-minimal .mec-wrap .col-md-9{padding:0}.mec-event-list-minimal .mec-event-date{position:relative;float:left;margin-right:30px;color:#fff;width:52px;padding:6px 4px 3px;text-align:center;text-transform:uppercase;border-radius:3px}.mec-event-list-minimal .mec-event-date span{display:block;font-size:24px;font-weight:700;text-align:center;margin-bottom:4px}.mec-event-list-minimal .mec-event-date:after{display:block;content:"";position:absolute;width:50px;left:1px;top:1px;height:30px;background:rgba(255,255,255,.1);box-shadow:0 4px 4px rgba(0,0,0,.02)}.mec-event-list-minimal .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;font-size:18px;text-transform:uppercase;letter-spacing:0;padding-top:5px}.mec-event-list-minimal .mec-event-detail{font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;font-family:Roboto,sans-serif}.mec-event-list-minimal .btn-wrapper{text-align:right;padding-right:0;padding-top:6px}.mec-event-list-minimal .btn-wrapper .mec-detail-button{border-bottom:0;margin-bottom:14px;margin-right:0;box-shadow:none}.mec-event-list-minimal a.mec-detail-button{text-align:center;display:inline-block;background:#ededed;color:#191919;padding:12px;border-radius:2px;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:2px;transition:all .24s ease}.mec-event-list-minimal a.mec-detail-button:hover{background:#292929;color:#fff}.vc_col-sm-4 .mec-event-list-minimal .mec-event-date,.vc_col-sm-6 .mec-event-list-minimal .mec-event-date{margin-right:12px}.vc_col-sm-4 .mec-event-list-minimal .mec-event-title,.vc_col-sm-6 .mec-event-list-minimal .mec-event-title{font-size:15px;letter-spacing:2px}@media only screen and (min-width:480px) and (max-width:767px){.mec-event-list-minimal .btn-wrapper{padding-left:0}.mec-event-list-minimal .mec-event-date{margin-right:10px}}@media only screen and (max-width:767px){.mec-event-list-minimal .btn-wrapper .mec-detail-button{display:block;text-align:center;margin:0;margin-top:16px;padding:8px}.mec-event-list-minimal .btn-wrapper{margin:12px 0}}@media only screen and (max-width:479px){.mec-event-list-minimal .mec-event-date{float:none;width:100%;margin-bottom:8px}.mec-event-list-minimal .mec-event-date span{display:inline;padding-right:25px;margin-right:7px;font-size:inherit}.mec-event-list-minimal .mec-event-date:after{width:45%;box-shadow:4px 0 4px rgba(0,0,0,.02)}.mec-event-list-minimal .btn-wrapper{text-align:center;padding-left:0}.mec-event-list-minimal{text-align:center}.mec-event-list-minimal .mec-event-detail{margin-bottom:10px}}.mec-wrap .mec-event-list-modern .mec-event-title{margin-top:0;margin-bottom:10px}.mec-event-list-modern .mec-event-article{border-bottom:1px solid #efefef;padding:30px 0 10px}.mec-event-list-modern .mec-event-article:last-child{border-bottom:none}.mec-event-list-modern .mec-event-title a{color:#191919;transition:all .24s ease;box-shadow:none}.mec-event-list-modern .mec-event-date{text-transform:uppercase;padding:10px 0}.mec-event-list-modern .mec-event-date .event-d{font-size:48px;display:table-cell;padding:10px 0 0}.mec-event-list-modern .mec-event-date .event-f{font-size:13px;display:table-cell;vertical-align:middle;padding-left:7px;font-weight:500;letter-spacing:3px;color:#777}.mec-event-list-modern .mec-event-detail{font-weight:300;color:#8a8a8a}.mec-event-list-modern .mec-event-date .event-da{margin-top:9px;color:silver;font-family:Roboto,sans-serif;font-size:28px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.mec-event-list-modern .mec-btn-wrapper .mec-booking-button{border-radius:1px;letter-spacing:2px;border:1px solid #e6e6e6;color:#333;background-color:#fff;padding:13px 20px;font-weight:700;font-size:11px;box-shadow:0 2px 0 0 rgba(0,0,0,.016);transition:all .28s ease}.mec-event-list-modern .mec-btn-wrapper .mec-booking-button:hover{border-color:#222;background:#222;color:#fff}.mec-event-list-modern .mec-event-title{font-weight:700;font-size:20px;text-transform:uppercase;letter-spacing:1px}.mec-event-list-modern .mec-event-detail{color:#9a9a9a;font-size:15px;font-weight:300;line-height:25px;font-family:Roboto,sans-serif}.mec-event-list-modern .mec-btn-wrapper{text-align:right;padding:10px 0;text-transform:uppercase}.mec-event-list-modern .mec-event-sharing{position:relative;margin:10px 0}.mec-event-list-modern .mec-event-sharing>li{display:inline-block;border:none;border-radius:50%;margin-right:3px}.mec-event-list-modern .mec-event-sharing>li:hover{display:inline-block}.mec-event-list-modern .mec-event-sharing>li:hover a i{color:#fff;background:#40d9f1;border-color:#40d9f1}.mec-event-list-modern .mec-event-sharing>li i{width:36px;display:inline-block;line-height:35px;color:#767676;text-align:center;border-radius:50%;border:1px solid #ddd;font-size:14px}.mec-event-list-modern .mec-event-sharing .mec-event-share:hover .mec-event-sharing-icon{background:#40d9f1;border-color:#40d9f1;cursor:pointer;border-radius:50%}.mec-event-list-modern .mec-event-sharing li:hover a i{background:#40d9f1}@media only screen and (min-width:768px){.mec-event-list-modern .mec-event-article{position:relative;min-height:160px;overflow:hidden}.mec-event-list-modern .col-md-2.col-sm-2{width:210px;position:absolute;left:0;top:20px}.mec-event-list-modern .col-md-4.col-sm-4.mec-btn-wrapper{width:180px;padding:0;position:absolute;right:0;top:30%}.mec-event-list-modern .col-md-6.col-sm-6{width:100%;padding-left:225px;padding-right:195px}}@media only screen and (max-width:767px){.mec-event-list-modern .mec-btn-wrapper .mec-booking-button{letter-spacing:1px;border:1px solid #e1e1e1;padding:8px 16px}.mec-event-list-modern .mec-btn-wrapper{padding:0 0 12px}.mec-event-list-modern .mec-event-sharing{margin-bottom:0}}.mec-event-grid-minimal .mec-event-article{margin:15px 0;min-height:80px;display:table}.mec-event-grid-minimal .event-detail-wrap{display:table-cell;vertical-align:middle}.mec-event-grid-minimal .mec-event-date{width:70px;float:left;margin-right:20px;padding:12px 16px 10px;text-align:center;text-transform:uppercase;border-radius:4px;border:1px solid #e6e6e6;transition:all .37s ease-in-out;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-minimal .mec-event-date span{display:block;font-size:24px;font-weight:700;text-align:center;margin-bottom:4px;color:#2a2a2a;transition:color .3s ease}.mec-event-grid-minimal .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;line-height:21px;font-size:16px;text-transform:uppercase;transition:color .3s ease}.mec-event-grid-minimal .mec-event-title a{color:#191919;transition:color .3s ease}.mec-event-grid-minimal .mec-event-detail{font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;font-family:Roboto,sans-serif}.mec-event-grid-minimal .mec-event-date:hover{color:#fff}.mec-event-grid-minimal .mec-event-date:hover span{color:#fff}.mec-event-list-classic .mec-event-article{padding:12px 0;margin-bottom:20px}.mec-event-list-classic .mec-event-image{float:left;width:86px;margin-right:20px}.mec-event-list-classic .mec-event-date{font-weight:400;font-size:13px;letter-spacing:0;line-height:18px}.mec-event-list-classic .mec-event-date span{font-weight:500;margin-bottom:6px}.mec-event-list-classic .mec-event-title{font-size:15px;margin:10px 0 12px;font-weight:700;text-transform:uppercase}.mec-event-list-classic .mec-event-title a{color:#494949;transition:color .3s ease}.mec-event-list-classic .mec-event-detail{color:#777;font-weight:400;line-height:12px;font-size:12px;overflow:hidden}.mec-event-list-classic a.magicmore{padding:10px 16px;color:#fff;background:#222;letter-spacing:2px;font-size:11px}.mec-event-list-classic a.magicmore:after{content:"";display:none}.mec-event-list-classic a.magicmore:hover{color:#40d9f1}.mec-event-grid-simple .mec-event-article{position:relative;margin-bottom:30px}.mec-event-grid-simple .mec-event-article:after{border-right:1px solid #e6e6e6;height:60px;position:absolute;top:50%;margin-top:-30px;right:-1px}.mec-event-grid-simple .row div:last-child .mec-event-article:after{border:none}.mec-event-grid-simple .row{margin:15px 0 30px;text-align:center}.mec-event-grid-simple .mec-event-date{padding:0;margin:0;text-transform:capitalize;font-size:12px;font-weight:700}.mec-event-grid-simple .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;line-height:21px;font-size:15px;padding-top:5px;text-transform:uppercase;transition:color .37s ease}.mec-event-grid-simple .mec-event-title a{color:#494949;transition:color .3s ease}.mec-event-grid-simple .mec-event-detail{font-family:Roboto,sans-serif;font-weight:400;line-height:1;letter-spacing:0;font-size:13px;color:#777}.mec-event-grid-simple:hover .mec-event-title{color:#40d9f1}.mec-event-grid-simple:hover .mec-event-date{background:0 0}.event-last:after{display:none}@media only screen and (max-width:767px){.mec-event-grid-simple .mec-event-article{padding-bottom:20px;margin-bottom:20px;border-bottom:1px solid #eee}.mec-event-grid-simple .mec-event-article:after{border:none}}.mec-event-grid-novel .mec-event-article{position:relative;margin-bottom:30px;padding:60px 5% 60px 7%;border:1px solid rgba(255,255,255,.12);border-radius:10px;background-color:#0050fd;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease;z-index:1}.mec-event-grid-novel .mec-event-article .novel-grad-bg{position:absolute;top:0;left:0;width:100%;height:100%;border-radius:10px;opacity:0;z-index:-1;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease}.mec-event-grid-novel .mec-event-article:hover{-webkit-box-shadow:0 13px 36px 0 rgba(0,0,0,.23);box-shadow:0 13px 36px 0 rgba(0,0,0,.23);border-color:transparent}.mec-event-grid-novel .mec-event-article:hover .novel-grad-bg{background-image:-webkit-gradient(linear,left top,right top,from(#262e32),to(#0e1015));background-image:-webkit-linear-gradient(left,#262e32 0,#0e1015 100%);background-image:-o-linear-gradient(left,#262e32 0,#0e1015 100%);background-image:linear-gradient(90deg,#262e32 0,#0e1015 100%);opacity:1}.mec-event-grid-novel .mec-event-image{float:left;width:150px;height:150px}.mec-event-grid-novel .mec-event-image img{width:150px;height:150px;border-radius:50%}.mec-event-grid-novel .mec-event-detail-wrap{margin-left:200px}.mec-event-grid-novel .mec-event-content h4{position:relative;margin-bottom:10px;display:inline-block}.mec-event-grid-novel .mec-event-content h4 a{font-size:24px;line-height:35px;color:#fafcff}.mec-event-grid-novel .mec-event-content h4::before{content:'';position:absolute;top:8px;left:-30px;width:17px;height:17px;background:#5cd0ed;opacity:.4;border-radius:50%}.mec-event-grid-novel .mec-event-content h4::after{content:'';position:absolute;top:12px;left:-26px;width:9px;height:9px;background:#5cd0ed;border-radius:50%}.mec-event-grid-novel .mec-event-address,.mec-event-grid-novel .mec-event-detail,.mec-event-grid-novel .mec-event-month{position:relative;padding-left:35px;font-size:15px;line-height:30px;color:rgba(255,255,255,.4)}.mec-event-grid-novel .mec-event-address::before,.mec-event-grid-novel .mec-event-detail::before,.mec-event-grid-novel .mec-event-month::before{position:absolute;top:6px;left:6px;font-size:17px;font-family:simple-line-icons;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1}.mec-event-grid-novel .mec-event-month::before{content:"\e075"}.mec-event-grid-novel .mec-event-detail::before{content:"\e081"}.mec-event-grid-novel .mec-event-address::before{content:"\e096"}.mec-event-grid-novel .mec-event-footer{clear:both;padding:20px 0;border-top:none;background:0 0}.mec-event-grid-novel .mec-event-footer .mec-booking-button{right:auto;left:0;height:42px;width:148px;padding:0 20px;font-size:14px;font-weight:400;line-height:42px;text-align:center;color:#fff;background:0 0;border-color:rgba(255,255,255,.1);border-radius:50px}.mec-event-grid-novel .mec-event-footer .mec-booking-button:hover{background-color:rgba(255,255,255,.1)}.mec-event-grid-novel .mec-event-sharing-wrap{left:175px;cursor:pointer}.mec-event-grid-novel .mec-event-sharing-wrap>li{border-color:rgba(255,255,255,.1);border-radius:50%}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing{top:-5px;left:0;padding:5px 10px 2px 50px;min-width:150px;width:inherit;height:37px;background-color:rgba(255,255,255,.1);-webkit-box-shadow:none;box-shadow:none;border:none;border-radius:50px}.mec-event-grid-novel .mec-event-sharing-wrap:hover>li{background-color:rgba(255,255,255,.1)}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing::after,.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing::before{display:none}.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon,.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon a,.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li i{display:inline}.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon a{padding:0 10px}.mec-event-grid-novel .mec-event-sharing-wrap>li a{color:#fff}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li a{color:rgba(255,255,255,.4)}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li a:hover{color:rgba(255,255,255,1)}@media only screen and (max-width:1200px){.mec-event-grid-novel .row .col-md-6.col-sm-6{width:100%;float:none}.mec-event-grid-novel .mec-event-image{float:none;margin-top:-20px;margin-bottom:20px}.mec-event-grid-novel .mec-event-detail-wrap{margin-left:20px}.mec-event-grid-novel .mec-event-footer{margin-top:30px}}@media only screen and (max-width:767px){.mec-event-grid-novel .mec-event-footer{margin-top:0;padding-top:30px;margin-bottom:24px}.mec-event-grid-novel .mec-event-footer .mec-booking-button{display:block;position:relative}.mec-event-grid-novel .mec-event-sharing-wrap{left:0;bottom:-55px}.mec-event-grid-novel .mec-event-content h4 a{font-size:20px;line-height:1.3}}.mec-event-cover-modern{position:relative}.mec-event-cover-modern .mec-event-cover-a{background:0 0;position:absolute;color:#fff;bottom:0;left:0;text-decoration:none}.mec-event-cover-modern .mec-event-cover-a .mec-event-overlay{transition:all .5s;opacity:.8;width:100%;height:100%;position:absolute}.mec-event-cover-modern .mec-event-cover-a:hover .mec-event-overlay{opacity:1}.mec-event-cover-modern .mec-event-detail{padding:40px;position:relative}.mec-event-cover-modern .mec-event-cover-a:hover .mec-event-tag{color:#333;transition:all .5s}.mec-event-cover-modern .mec-event-cover-a .mec-event-title:hover{text-decoration:underline}.mec-event-cover-modern .mec-event-tag{background:#fff;display:inline-block;padding:5px 9px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:24px}.mec-event-cover-modern .mec-event-date{text-transform:uppercase;font-size:17px;font-weight:300}.mec-event-cover-modern .mec-event-title{color:#fff;text-transform:uppercase;font-size:40px;font-weight:700;margin:6px 0}.mec-event-cover-modern .mec-event-place{font-weight:400;font-size:18px;font-family:Roboto,sans-serif}@media only screen and (max-width:767px){.mec-event-cover-modern .mec-event-cover-a{width:100%}}.mec-event-cover-classic{position:relative;overflow:hidden;background:#fff;padding:6px;border:1px solid #e8e8e8}.mec-event-cover-classic .mec-event-overlay{position:absolute;left:6px;right:6px;bottom:6px;top:6px;width:auto;height:auto;background-color:rgba(36,36,36,.4);transition:all .33s ease-in-out}.mec-event-cover-classic:hover .mec-event-overlay{background-color:rgba(36,36,36,.6)}.mec-event-cover-classic .mec-event-content{font-size:15px;color:#fff;position:absolute;bottom:0;padding:50px 35px;transition:all .33s ease-in-out}.mec-event-cover-classic .mec-event-date{font-size:14px;text-transform:uppercase;font-weight:400;line-height:1.6}.mec-event-cover-classic .mec-event-date span{display:block;font-weight:700;font-size:16px}.mec-event-cover-classic .mec-event-title{color:#fff;margin:20px 0 38px;font-size:24px;font-weight:700;text-transform:uppercase;font-style:normal}.mec-event-cover-classic .mec-btn-wrapper{text-align:left}.mec-event-cover-classic .mec-event-icon{font-size:18px;float:left;margin-right:14px;color:#fff;padding:13px}.mec-event-cover-classic .mec-event-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:12px 20px;letter-spacing:3px;font-size:12px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none}.mec-event-cover-classic .mec-event-button:hover{color:#191919;background-color:#fff;border-color:#fff;border-radius:1px}.mec-event-cover-classic .mec-event-image img{min-width:100%}@media only screen and (max-width:960px){.mec-event-cover-classic .mec-event-content{padding:20px}.mec-event-cover-classic .mec-event-button{font-size:11px;padding:7px 10px;letter-spacing:1px}.mec-event-cover-classic .mec-event-title{font-size:19px;margin:15px 0 25px}.mec-event-cover-classic .mec-event-date{font-size:12px}}@media only screen and (max-width:767px){.mec-event-cover-classic{margin-bottom:30px}}@media only screen and (max-width:479px){.mec-event-cover-classic .mec-event-content{padding:15px;font-size:15px}.mec-event-cover-classic .mec-event-title{font-size:15px;margin:10px 0}.mec-event-cover-classic .mec-event-button{font-size:10px;padding:6px;letter-spacing:1px}.mec-event-cover-classic .mec-event-icon{padding:10px}}.mec-load-more-wrap{text-align:center;display:block;width:100%;padding-top:20px;text-align:center;position:relative}.mec-load-more-button{box-shadow:none;transition:all .21s ease;font-size:12px;font-weight:500;letter-spacing:1px;text-transform:uppercase;background:#fff;color:#767676;border:2px solid #e8e8e8;border-radius:50px;padding:0 28px;margin-bottom:20px;cursor:pointer;line-height:40px;font-family:Montserrat,Helvetica,Arial,sans-serif;height:42px;display:inline-block}.mec-load-more-button:hover{background:#191919;color:#fff;border-color:#191919}.mec-load-more-loading{content:url(../img/ajax-loader.gif);cursor:wait;background:0 0;border-style:none}.mec-load-more-loading:hover{background:0 0}.mec-modal-preloader,.mec-month-navigator-loading{width:100%;height:100%;background:no-repeat rgba(255,255,255,.88) url(../img/ajax-loader.gif) center;border-style:none;position:fixed;left:0;right:0;bottom:0;top:0;z-index:9}.mec-event-calendar-classic .mec-calendar-side .mec-calendar-table{min-height:1024px}.mec-calendar-side .mec-calendar-table{min-height:450px}.mec-skin-weekly-view-events-container.mec-month-navigator-loading{margin-top:0}.mec-calendar.mec-event-calendar-classic .mec-calendar-side{display:block}.mec-skin-daily-view-events-container.mec-month-navigator-loading{margin-top:0}@media only screen and (min-width:961px){.mec-wrap.mec-sm959 .mec-calendar-side .mec-calendar-table{min-height:1px}}@media only screen and (max-width:479px){.mec-calendar-side .mec-calendar-table{min-height:1px}}.mec-event-cover-clean{position:relative;border:1px solid #e6e6e6;padding:8px}.mec-event-cover-clean .mec-event-overlay{height:100%;background-color:rgba(36,36,36,.4);position:absolute;width:100%;left:0;border:8px solid #fff;top:0;transition:all .5s ease-in-out}.mec-event-cover-clean .mec-event-content{color:#fff;position:absolute;bottom:20px;padding:40px 60px;transition:all .5s ease-in-out}.mec-event-cover-clean .mec-event-title{color:#fff;font-weight:700;margin:46px 0 19px;font-size:29px;text-transform:uppercase;text-shadow:0 0 1px rgba(0,0,0,.5)}.mec-event-cover-clean .mec-event-title a{color:#fff;transition:all .5s;text-decoration:none;outline:0;border:none;box-shadow:none}.mec-event-cover-clean .mec-event-title a:hover{text-decoration:underline}.mec-event-cover-clean .mec-event-date{position:absolute;top:-20px;right:60px;color:#fff;width:60px;padding:14px 10px;z-index:1}.mec-event-cover-clean .mec-event-date div{text-align:center;text-transform:uppercase;letter-spacing:1px;line-height:16px}.mec-event-cover-clean .mec-event-date .dday{padding-bottom:15px;border-bottom:1px solid rgba(255,255,255,.5);margin-bottom:13px;font-size:24px}.mec-event-cover-clean .mec-event-date .dmonth{letter-spacing:2px}.mec-event-cover-clean .mec-event-place{font-size:18px;font-family:Roboto,sans-serif}.mec-event-cover-clean .mec-event-image img{width:100%}@media only screen and (max-width:768px){.mec-event-cover-clean .mec-event-content{padding:20px;bottom:5px}.mec-event-cover-clean .mec-event-title{font-size:23px}.mec-event-cover-clean .mec-event-date{right:20px;padding:10px;width:50px}}@media only screen and (max-width:479px){.mec-event-cover-clean .mec-event-content{padding:10px}.mec-event-cover-clean .mec-event-title{font-size:19px;padding-right:25px}.mec-event-cover-clean .mec-event-date{right:-20px;top:-10px}.mec-event-cover-clean .mec-event-detail{font-size:12px}}.mec-month-divider{text-align:center;margin:60px 0 40px 0}.widget .mec-month-divider{margin:10px 0}.mec-month-divider span{text-transform:uppercase;font-size:22px;font-weight:700;padding-bottom:5px;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative}.mec-month-divider span:before{border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-30px;left:50%;width:60px}.widget .mec-month-divider span{font-size:13px}.mec-event-list-standard .mec-events-pagination{margin-top:60px;border-top:4px solid #ebebeb;min-height:80px;padding-top:20px}.mec-event-list-standard .mec-events-pagination .mec-events-pag-previous{float:left;margin-left:0}.mec-event-list-standard .mec-events-pagination .mec-events-pag-next{float:right;margin-right:0}.mec-event-list-standard .mec-event-article{position:relative;display:block;margin-bottom:25px;border:1px solid #e9e9e9;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-list-standard .mec-topsec{display:table;width:100%}.mec-event-list-standard .col-md-3.mec-event-image-wrap{padding-left:0}.mec-event-list-standard .mec-event-content{padding-top:15px;padding-right:30px}.mec-event-list-standard .mec-event-title{font-size:29px;font-weight:700;letter-spacing:-1px;margin:0 0 10px}.mec-event-list-standard .mec-event-title a{color:#292929;transition:color .3s ease}.mec-event-list-standard .mec-col-table-c{display:table-cell;height:100%;vertical-align:middle;float:none!important}.mec-event-list-standard .mec-col-table-c.mec-event-meta-wrap{padding-top:15px}.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{vertical-align:top}.mec-topsec .mec-event-image{line-height:1px}.mec-event-list-standard .mec-event-meta-wrap{border-left:1px solid #eee}.mec-event-list-standard .mec-time-details{text-transform:uppercase;font-size:11px;font-weight:300;padding-top:0;text-align:left;padding-left:30px}.mec-event-list-standard .mec-event-meta .mec-event-address{font-style:normal;letter-spacing:0;font-size:13px;color:#8a8a8a}.mec-event-list-standard .mec-event-meta span.mec-event-d,.mec-event-list-standard .mec-event-meta span.mec-event-m{font-size:17px;font-weight:700;padding-right:6px;color:#444;text-transform:uppercase}.mec-event-list-standard .mec-date-details,.mec-event-list-standard .mec-time-details,.mec-event-list-standard .mec-venue-details{position:relative;padding-left:28px;margin-bottom:10px}.mec-event-list-standard .mec-date-details:before,.mec-event-list-standard .mec-time-details:before,.mec-event-list-standard .mec-venue-details:before{content:"\f041";font-family:fontawesome;position:absolute;left:6px;font-size:15px}.mec-event-list-standard .mec-date-details:before{content:"\f073"}.mec-event-list-standard .mec-time-details:before{content:"\f017"}.mec-event-list-minimal .mec-event-title a{color:#292929;transition:color .3s ease}.mec-event-meta-wrap .mec-price-details{margin-bottom:10px}.mec-price-details i{margin-right:5px;vertical-align:text-top}.mec-event-meta-wrap .mec-event-meta .mec-price-details i:before{font-size:15px}@media only screen and (max-width:960px){.mec-event-list-standard .mec-topsec{display:block}.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{display:block;width:40%}.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap{display:block;min-height:230px}.mec-event-list-standard .mec-event-meta-wrap{display:block;border-left:none;border-top:1px solid #eee;width:100%;float:none;padding-top:20px}}@media only screen and (min-width:480px) and (max-width:960px){.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap,.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{display:table-cell}}@media only screen and (max-width:479px){.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap,.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap img{float:none;width:100%;padding:0}.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap{padding:10px 10px 10px 30px}}.mec-wrap .mec-events-cal-links{margin-bottom:0}.mec-single-event #mec-wrap{padding:0;margin-top:35px}.mec-wrap .mec-single-title{margin-top:0;margin-bottom:30px;font-weight:700;font-size:33px}.mec-single-event .mec-event-content{padding:40px 0 30px;margin-bottom:10px}.mec-single-event .mec-events-meta-group-booking,.mec-single-event .mec-frontbox{margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-wrap #main-content{overflow:hidden;padding-top:35px}.mec-single-event .mec-map-get-direction-address-cnt{position:relative}.mec-single-event .mec-map-get-direction-address-cnt input.mec-map-get-direction-address{width:100%;height:46px;padding:13px 10px;margin-bottom:0;background:#fcfcfc;border:1px solid #e0e0e0;border-radius:0;box-shadow:inset 0 2px 5px rgba(0,0,0,.081)}.mec-single-event .mec-map-get-direction-address-cnt input.mec-map-get-direction-address:focus{color:#444;background:#fff;border-color:#b0b0b0;box-shadow:0 0 3px rgba(0,0,0,.2)}.mec-single-event .mec-map-get-direction-btn-cnt input{width:100%}.mec-single-event .mec-map-get-direction-reset{position:absolute;z-index:2;top:5px;right:10px;font-size:11px;cursor:pointer}.mec-events-meta-group-tags{margin-top:20px}.mec-events-meta-group-tags a{display:inline-block;color:#444;font-size:11px;text-transform:uppercase;letter-spacing:1.5px;font-weight:500;padding:3px 7px;border:1px solid #ddd;border-radius:2px;background:#fff;margin:1px 3px}.mec-events-meta-group-tags a:hover{text-decoration:underline;background:#f9f9f9}.mec-local-time-details li{list-style:none}.mec-single-event:not(.mec-single-modern) .mec-local-time-details{background:#f7f7f7;padding:12px 14px 8px;margin-bottom:12px;vertical-align:baseline;position:relative;border:none}.mec-single-event:not(.mec-single-modern) .mec-local-time-details ul{margin:0;padding-left:35px}.mec-single-event:not(.mec-single-modern) .mec-local-time-details h3{border:none;padding-left:15px}.mec-single-event:not(.mec-single-modern) .mec-local-time-details h3:before{display:none}.mec-single-event.mec-single-modern i.mec-sl-speedometer{display:none}.mec-single-event .mec-events-meta-group-booking{padding-bottom:30px}.mec-single-event .mec-events-meta-group-booking ul{list-style:none;margin-left:0;padding-left:0}.mec-single-event .mec-events-meta-group-booking ul li{padding:0;list-style:none;margin-top:40px}.mec-single-event .mec-events-meta-group-booking h4{margin-bottom:20px;font-size:23px;font-weight:700}.mec-single-event .mec-events-meta-group-booking li h4{font-size:19px}.mec-single-event .mec-events-meta-group-booking button,.mec-single-event .mec-events-meta-group-booking input{border-radius:0;margin-bottom:6px}.mec-single-event .mec-events-meta-group-booking button{min-width:170px;margin-top:5px}.mec-single-event .mec-events-meta-group-booking button{margin-left:15px}.mec-single-event .mec-book-form-coupon button{margin-left:0}.mec-single-event .mec-book-form-gateway-checkout button{margin-left:0}.mec-single-event .mec-book-first,.mec-single-event .mec-event-tickets-list{padding-left:15px;padding-right:15px}.mec-single-event label.mec-fill-attendees{margin-left:15px!important}.mec-single-event .mec-events-meta-group-booking .mec-event-ticket-available{display:block;margin-bottom:20px;margin-top:-17px;font-size:11px;color:#8a8a8a}.mec-single-event .mec-events-meta-group-booking .mec-book-price-total{display:inline-block;margin-bottom:10px;font-size:26px;color:#39c36e;font-weight:700;padding:10px 0}.mec-single-event .mec-events-meta-group-booking form{margin:0}.mec-single-event .mec-events-meta-group-booking h5 span,.mec-single-event .mec-events-meta-group-booking label{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:3px 0;display:block;clear:none;padding:5px 1em 3px 0}.mec-single-event .mec-events-meta-group-booking h5 span{display:inline-block}.mec-single-event .mec-events-meta-group-booking h5 span.mec-ticket-variation-name{padding-right:5px;text-transform:capitalize}.mec-single-event .mec-events-meta-group-booking input::-webkit-input-placeholder{color:#aaa}.mec-single-event .mec-events-meta-group-booking input:-moz-placeholder{color:#aaa}.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking input[type=email],.mec-single-event .mec-events-meta-group-booking input[type=number],.mec-single-event .mec-events-meta-group-booking input[type=password],.mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-single-event .mec-events-meta-group-booking input[type=text],.mec-single-event .mec-events-meta-group-booking select,.mec-single-event .mec-events-meta-group-booking textarea{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:330px;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both}.wbmec-mandatory{padding-left:5px;font-size:14px}.mec-single-event .mec-events-meta-group-booking .mec-red-notification input,.mec-single-event .mec-events-meta-group-booking .mec-red-notification select,.mec-single-event .mec-events-meta-group-booking .mec-red-notification textarea{border:1px solid #ff3c3c}.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=checkbox],.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=radio]{outline:1px solid #ff3c3c}@media only screen and (max-width:479px){.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking input[type=email],.mec-single-event .mec-events-meta-group-booking input[type=number],.mec-single-event .mec-events-meta-group-booking input[type=password],.mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-single-event .mec-events-meta-group-booking input[type=text],.mec-single-event .mec-events-meta-group-booking select,.mec-single-event .mec-events-meta-group-booking textarea{width:100%}}.mec-single-event .mec-events-meta-group-booking input[type=email]:focus,.mec-single-event .mec-events-meta-group-booking input[type=number]:focus,.mec-single-event .mec-events-meta-group-booking input[type=password]:focus,.mec-single-event .mec-events-meta-group-booking input[type=tel]:focus,.mec-single-event .mec-events-meta-group-booking input[type=text]:.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking select:focus,.mec-single-event .mec-events-meta-group-booking textarea:focus,focus{border:1px solid #aaa;color:#444;background:#fff;-moz-box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);box-shadow:0 0 3px rgba(0,0,0,.2);outline:0}.mec-single-event .mec-events-meta-group-booking input[type=checkbox],.mec-single-event .mec-events-meta-group-booking input[type=radio]{margin-right:6px;margin-top:5px;min-height:20px;clear:none;margin:0 0 0 2px}.lity-container .mec-events-meta-group-booking input[type=radio]:before,.mec-single-event .mec-events-meta-group-booking input[type=radio]:before{content:"";display:inline-block;background:#fff;border-radius:18px;width:18px;height:18px;margin:-1px 0 0 -3px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32)}.lity-container .mec-events-meta-group-booking input[type=radio]:checked:before,.mec-single-event .mec-events-meta-group-booking input[type=radio]:checked:before{border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff}.lity-container .mec-events-meta-group-booking input[type=radio],.mec-single-event .mec-events-meta-group-booking input[type=radio]{min-height:0;margin:0;margin-right:6px}.mec-single-event .mec-events-meta-group-booking input[type=checkbox]{float:left}.lity-container .mec-events-meta-group-booking .mec_book_first_for_all,.mec-single-event .mec-events-meta-group-booking .mec_book_first_for_all{display:none}.mec-events-meta-group-booking ul.mec-book-price-details{list-style:none;border:1px solid #eee;padding:0;overflow:hidden}.mec-events-meta-group-booking ul.mec-book-price-details li{font-size:15px;color:#a9a9a9;list-style:none;padding:13px 18px;margin:0;float:left;border-right:1px solid #eee}.mec-events-meta-group-booking ul.mec-book-price-details li:last-child{border-right:none}.mec-events-meta-group-booking ul.mec-book-price-details li span.mec-book-price-detail-amount{font-weight:700;font-size:21px;color:#222}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label{height:14px;width:14px;background-color:transparent;border:1px solid #d4d4d4;position:relative;display:inline-block;-moz-transition:border-color ease .2s;-o-transition:border-color ease .2s;-webkit-transition:border-color ease .2s;transition:border-color ease .2s;cursor:pointer;box-shadow:0 2px 16px -2px rgba(0,0,0,.2);vertical-align:middle;margin-right:3px;margin-top:-2px}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label{border-color:#008aff;box-shadow:0 2px 14px -3px #008aff}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:after,.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:before,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:after,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:before{position:absolute;height:0;width:1px;background-color:#008aff;display:inline-block;-moz-transform-origin:left top;-ms-transform-origin:left top;-o-transform-origin:left top;-webkit-transform-origin:left top;transform-origin:left top;content:'';-webkit-transition:opacity ease .5;-moz-transition:opacity ease .5;transition:opacity ease .5}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:before,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:before{top:8px;left:7px;box-shadow:0 0 0 2px #fff;-moz-transform:rotate(-145deg);-ms-transform:rotate(-145deg);-o-transform:rotate(-145deg);-webkit-transform:rotate(-145deg);transform:rotate(-145deg)}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::before,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::before{height:12px;-moz-animation:dothatopcheck .16s ease 0s forwards;-o-animation:dothatopcheck .16s ease 0s forwards;-webkit-animation:dothatopcheck .16s ease 0s forwards;animation:dothatopcheck .16s ease 0s forwards}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:after,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:after{top:6px;left:3px;-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::after,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::after{-moz-animation:dothabottomcheck 80ms ease 0s forwards;-o-animation:dothabottomcheck 80ms ease 0s forwards;-webkit-animation:dothabottomcheck 80ms ease 0s forwards;animation:dothabottomcheck 80ms ease 0s forwards;height:4px}.mec-single-event .mec-events-meta-group-booking button[type=submit]:after,.mec-single-event a.button:after{display:none;font-family:simple-line-icons;content:"\e098";margin-left:4px;-webkit-animation:rotating 1.2s linear infinite;-moz-animation:rotating 1.2s linear infinite;-ms-animation:rotating 1.2s linear infinite;-o-animation:rotating 1.2s linear infinite;animation:rotating 1.2s linear infinite}.mec-single-event .mec-events-meta-group-booking button[type=submit].loading:after,.mec-single-event a.button.loading:after{display:inline-block}.mec-single-event .mec-event-export-module{display:block}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul{display:table;width:100%}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li{display:table-cell}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li:last-child{text-align:right}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a:hover{color:#fff}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul{padding-left:0;margin:15px 5px}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting{padding-left:0;margin:0}.mec-ticket-price{margin-left:10px;font-size:13px;font-weight:300}.mec-book-reg-field-checkbox label,.mec-book-reg-field-radio label{line-height:1.36}.mec-book-reg-field-checkbox input[type=checkbox],.mec-book-reg-field-radio input[type=radio]{float:left;margin-right:5px!important}.mec-ticket-available-spots .mec-event-ticket-description,.mec-ticket-available-spots .mec-event-ticket-price{font-size:11px}.mec-book-ticket-container .mec-reg-mandatory:nth-child(2) label:after,.mec-book-ticket-container .mec-reg-mandatory:nth-child(3) label:after,.mec-book-ticket-container .wbmec-mandatory{content:"";color:red;width:50px;height:50px;font-size:14px;padding-left:5px}@media only screen and (max-width:767px){.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li{width:100%;min-height:40px;margin-bottom:15px;text-align:center;float:none;display:block}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a{width:100%;padding-left:0;padding-right:0;text-align:center;display:block;font-size:12px}}.mec-single-event .mec-events-meta-group{margin-bottom:0}@media only screen and (max-width:767px){.mec-single-event .mec-events-meta-group-booking{margin-bottom:30px}}.mec-single-event .mec-event-meta dt,.mec-single-event .mec-event-meta h3{text-transform:uppercase;font-size:16px;font-weight:700;padding-bottom:5px;display:inline;color:#000;padding-left:10px}.mec-single-event .mec-event-meta h6{text-transform:uppercase;font-size:13px;padding-bottom:5px;display:inline;color:#222;padding-left:0}.mec-single-event .mec-event-meta .mec-events-event-categories a,.mec-single-event .mec-event-meta dd{font-size:14px;color:#8d8d8d}.mec-single-event .mec-event-meta .mec-location dd.author{color:#3c3b3b}.mec-single-event .mec-event-meta dd{margin:0;padding-left:35px}.mec-single-event .mec-event-meta dd.mec-events-event-categories{min-height:35px;line-height:35px}.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:#a9a9a9;margin-bottom:3px}.mec-single-event .mec-event-meta .mec-events-meta-group-venue .author{margin-bottom:0;color:#8d8d8d;font-size:13px}.mec-single-event .mec-events-event-image{margin-bottom:0}.mec-single-event h2.mec-single-event-title{margin-bottom:30px;font-weight:700;font-size:33px}.mec-single-event .mec-booking-button{border-bottom:none;letter-spacing:.5px;line-height:48px;height:76px;transition:all .5s ease;color:#fff;padding:16px;display:block;text-align:center;font-size:16px}.mec-single-event .mec-booking-button:hover{background-color:#101010!important}.mec-single-event .mec-event-tags a{display:inline-block;color:#444;font-size:11px;text-transform:uppercase;letter-spacing:1.5px;font-weight:500;padding:3px 7px;border:1px solid #ddd;border-radius:2px;background:#fff;margin:1px 3px}.mec-single-event .mec-event-tags:before{font-size:24px;color:#303030;margin-right:5px;content:"\f02c";font-family:fontawesome}.mec-single-event .mec-event-tags{padding-top:13px}.mec-single-event .mec-event-sharing{margin:30px 0 10px}.mec-region.mec-events-abbr,.mec-single-event .mec-street-address{font-style:normal;font-size:13px}.mec-events-meta-group.mec-events-meta-group-venue:before,.mec-single-event-date:before,.mec-single-event-time:before{color:#40d9f1}.mec-single-event .mec-event-social{text-align:center}.mec-single-event .mec-event-social h3{text-transform:uppercase;font-size:15px;font-weight:700;padding-bottom:5px;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative}.mec-single-event .mec-social-single:before{padding:13px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:39px}.mec-single-event .mec-event-social .event-sharing{margin-top:30px}.mec-single-event .mec-event-social ul{list-style:none;margin-left:0}.mec-single-event .mec-event-social li.mec-event-social-icon{display:inline-block}.mec-single-event .mec-event-social li.mec-event-social-icon a{display:inline-block;color:#fff;width:40px;height:40px;padding:9px;font-size:16px;margin-right:5px}.mec-single-event .mec-event-social a.facebook{background:#3b5996}.mec-single-event .mec-event-social a.facebook:hover{background:#28385c}.mec-single-event .mec-event-social a.twitter{background:#00acee}.mec-single-event .mec-event-social a.twitter:hover{background:#0087bd}.mec-single-event .mec-event-social a.vimeo{background:#0dadd6}.mec-single-event .mec-event-social a.vimeo:hover{background:#0a85a3}.mec-single-event .mec-event-social a.dribble{background:#d53e68}.mec-single-event .mec-event-social a.dribble:hover{background:#bf4c78}.mec-single-event .mec-event-social a.youtube{background:#cb322c}.mec-single-event .mec-event-social a.youtube:hover{background:#992622}.mec-single-event .mec-event-social a.pinterest{background:#cb2027}.mec-single-event .mec-event-social a.pinterest:hover{background:#99181d}.mec-single-event .mec-event-social a.google{background:#c3391c}.mec-single-event .mec-event-social a.google:hover{background:#99181f}.mec-single-event .mec-event-social a.linkedin{background:#0073b2}.mec-single-event .mec-event-social a.linkedin:hover{background:#005380}.mec-single-event .mec-event-social a.email{background:#ff5d5e}.mec-single-event .mec-event-social a.email:hover{background:#cc4949}.mec-single-event .mec-event-social a.vk{background:#5b88bd}.mec-single-event .mec-event-social a.vk:hover{background:#3d608a}.mec-single-event .mec-event-social a.rss{background:#f29a1d}.mec-single-event .mec-event-social a.rss:hover{background:#cc7400}.mec-single-event .mec-event-social a.instagram{background:#457399}.mec-single-event .mec-event-social a.instagram:hover{background:#2e4d66}.mec-single-event .mec-event-social a.other-social{background:#ff5d5e}.mec-single-event .mec-event-social a.other-social:hover{background:#cc4949}.mec-single-event .mec-event-social{text-align:center}.mec-single-event .mec-events-meta-group-booking form>h4,.mec-single-event .mec-frontbox-title{text-transform:uppercase;font-size:15px;font-weight:700;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative;text-align:center}.mec-single-event .mec-events-meta-group-booking form>h4:before,.mec-single-event .mec-frontbox-title:before{padding:1px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-35px;left:50%}.mec-event-meta i:before{font-size:20px;vertical-align:middle}.mec-event-meta .mec-single-event-additional-organizers i:before,.mec-event-meta .mec-single-event-organizer i:before{font-size:14px;vertical-align:baseline}#mec-wrap .mec-events-day-time-slot .mec-events-content{float:left;width:33%;padding:0 15px}#mec-wrap .mec-events-day-time-slot .mec-events-event-image{padding-left:0}#mec-events-content .mec-events-abbr{color:#8d8d8d;font-size:14px}.mec-single-event .mec-events-content{margin-bottom:30px}.mec-single-event .mec-organizer-url a{word-wrap:break-word}.mec-single-event #headline{margin:0 0 10px}.mec-single-event #headline h2{padding:0}.mec-single-event .mec-events-meta-group.mec-events-meta-group-gmap .mec-events-venue-map{margin-top:0;padding:8px;border:1px solid #e5e5e5;border-radius:7px}#mec-events-gmap-0{height:325px!important}.mec-events-list .mec-events-day-time-slot .mec-events-event-meta{width:33%;float:left;padding:40px;height:auto;margin:0}.mec-events-day-time-slot .mec-events-content.description.entry-summary{font-size:15px;font-weight:300;color:#8d8d8d}.mec-events-day-time-slot .type-mec_events h2{font-size:28px;padding-bottom:20px}.mec-events-day .mec-events-day-time-slot .type-mec_events{margin:0}.mec-events-day .mec-events-day-time-slot h5{background-color:#8d8d8d}.mec-single-event .mec-event-meta .mec-single-event-additional-organizers .mec-events-single-section-title,.mec-single-event .mec-event-meta .mec-single-event-organizer .mec-events-single-section-title,.mec-single-event .mec-events-meta-date h3{padding-left:0;margin:10px;display:inline-block}.mec-single-event .mec-events-meta-date h3{width:100%}.mec-single-event .mec-events-event-image{border:0}.mec-single-event .mec-events-venue-map{padding:0}.mec-event-cost,.mec-event-more-info,.mec-event-website,.mec-events-meta-date,.mec-single-event-additional-organizers,.mec-single-event-category,.mec-single-event-date,.mec-single-event-label,.mec-single-event-location,.mec-single-event-organizer,.mec-single-event-time{background:#f7f7f7;padding:12px 14px 8px;margin-bottom:12px;vertical-align:baseline;position:relative}.mec-single-event .mec-events-meta-date dd,.mec-single-event .mec-single-event-additional-organizers dd,.mec-single-event .mec-single-event-organizer dd{padding-left:0;margin-bottom:10px}.mec-single-event .mec-events-meta-date dd span,.mec-single-event .mec-single-event-additional-organizers dd span,.mec-single-event .mec-single-event-organizer dd span{display:block;padding-left:12px;color:#8d8d8d}.mec-single-event .mec-events-meta-date i,.mec-single-event .mec-single-event-additional-organizers i,.mec-single-event .mec-single-event-organizer i{margin-right:10px;margin-left:12px}.mec-events-meta-group.mec-events-meta-group-venue dl{margin-bottom:0}address.mec-events-address{line-height:19px;font-style:normal;font-size:12px}.mec-single-event .mec-event-content dt{margin-top:5px}.mec-single-event .mec-single-event-additional-organizers .mec-single-event-additional-organizer{margin-bottom:15px;padding-bottom:5px;border-bottom:1px solid #e4e4e4}.mec-single-event .mec-single-event-additional-organizers .mec-single-event-additional-organizer:last-child{margin-bottom:0;padding-bottom:0;border:none}.mec-event-schedule-content{border-left:4px solid #f0f0f0;padding-top:10px;margin-top:30px;margin-left:25px;margin-bottom:20px;color:#8a8a8a}.mec-event-schedule-content dl{padding-left:24px;font-size:12px;position:relative;margin-bottom:35px}.mec-event-schedule-content dl:before{content:'';display:block;position:absolute;left:0;top:4px;width:20px;height:0;border-top:4px solid #f0f0f0}.mec-event-schedule-content dl dt{margin:0 0 10px;line-height:1.16}.mec-event-schedule-content dl dt.mec-schedule-title{font-size:13px;color:#5a5a5a;font-weight:700}.mec-event-schedule-content dl dt.mec-schedule-description{font-weight:300}.mec-event-schedule-content .mec-schedule-speakers{background:#f7f7f7;padding:10px}.mec-wrap .mec-event-schedule-content h6{font-size:13px;color:#5a5a5a;font-weight:700;display:inline-block}.mec-wrap .mec-event-schedule-content a{font-weight:400;color:#5a5a5a;transition:all .1s ease}.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:0}.mec-calendar .mec-event-article.mec-single-event-novel h4{margin:0;font-size:10px;line-height:18px}.mec-calendar.mec-event-container-novel dl dt{padding:3px}.mec-calendar.mec-event-calendar-classic .mec-calendar-novel-selected-day{display:inline-block;padding:4px;margin-left:1px}.mec-calendar.mec-event-calendar-classic .mec-selected-day .mec-calendar-novel-selected-day{color:#fff}.mec-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-selected-day,.mec-calendar.mec-event-calendar-classic.mec-event-container-novel dt.mec-selected-day:hover{border-bottom:1px solid #eaeaea}.mec-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-calendar-side .mec-calendar-table{min-height:auto}.mec-single-event-novel.light h4{color:#000!important}.mec-single-event-novel.dark h4{color:#fff!important}@media only screen and (max-width:768px){.mec-calendar .mec-event-article.mec-single-event-novel{padding:0;min-height:5px}.mec-calendar .mec-event-article.mec-single-event-novel h4{display:block;font-size:9px}}.mec-event-container-simple .event-single-content-simple{display:none}.mec-event-container-simple .mec-monthly-tooltip h4{font-size:16px;margin:0}.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple{border-bottom:1px solid #e2e2e2;padding:14px 0;display:block}.mec-wrap.colorskin-custom .mec-calendar.mec-event-container-simple .mec-selected-day:hover{background:#f4f4f4}.mec-event-container-simple .mec-calendar-day .mec-monthly-tooltip.event-single-link-simple:last-of-type{border:none}.mec-tooltip-event-title{font-size:16px;font-weight:700;color:#000;margin-bottom:2px}.mec-tooltip-event-time{font-size:12px;color:#888;margin-bottom:8px;margin-top:5px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-content{padding:17px}.mec-tooltip-event-content{clear:both}.mec-tooltip-event-featured{float:left;margin-right:13px;margin-bottom:1px}.mec-tooltip-event-featured img{max-width:120px}.mec-tooltip-event-desc{font-size:14px;color:#444;line-height:18px}.mec-tooltip-event-desc p{font-size:13px;line-height:1.4;margin-bottom:10px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-box{border-radius:3px!important;border:1px solid #e2e3e4!important;background:#fff!important;box-shadow:0 -1px 30px -2px rgba(0,0,0,.15)!important}.tooltipster-sidetip .tooltipster-arrow{overflow:visible!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-border{border-width:12px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-right .tooltipster-arrow-border{border-right-color:#e2e3e4!important}.tooltipster-sidetip .tooltipster-arrow-border{left:-12px!important;z-index:9999999999!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-background{display:block!important}.tooltipster-sidetip .tooltipster-arrow-background{border-width:11px!important;z-index:99999999999!important}.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background{left:-9px!important;top:1px!important;border-right-color:#fff!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background{border-top-color:#fff!important;left:0!important;top:-1px!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border{left:-1px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-top .tooltipster-arrow-border{border-top-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{left:-1px!important;top:-11px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{border-bottom-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background{top:-9px!important;border-bottom-color:#fff!important}.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background{border-left-color:#fff!important;left:-2px!important;top:0!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-left .tooltipster-arrow-border{border-left-color:#e2e3e4!important;left:-1px!important;top:-1px!important}@media (max-width:780px){.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple h4{word-break:break-all;font-size:13px}}@media (max-width:320px){.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple h4{font-size:10px}}.mec-calendar.mec-calendar-daily .mec-calendar-day-events .mec-event-article{padding-left:15px;padding-right:15px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month{text-align:center;background-color:#fff;border-bottom:2px solid #f4f4f4;position:relative}.mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{color:#444;font-size:18px;line-height:1.2;padding:15px 0 11px;margin:0;font-weight:700;letter-spacing:1px;text-transform:uppercase;border-bottom:1px solid #e6e6e6}.mec-calendar.mec-calendar-daily .mec-calendar-d-top{text-align:center;padding:10px 0;position:relative;background-color:#fafafa}.mec-calendar.mec-calendar-daily .mec-next-month,.mec-calendar.mec-calendar-daily .mec-previous-month{position:absolute;top:50%;left:50%;margin-top:-25px;min-width:50px;height:50px;line-height:50px;text-align:center;background:#fff;border:1px solid #e2e2e2;border-radius:50px;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month i,.mec-calendar.mec-calendar-daily .mec-previous-month i{font-size:14px;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month:hover,.mec-calendar.mec-calendar-daily .mec-previous-month:hover{border-color:#d0d0d0;color:#444;box-shadow:0 2px 5px 0 rgba(0,0,0,.075)}.mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-150px}.mec-calendar.mec-calendar-daily .mec-next-month{margin-left:100px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-next-month,.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-previous-month{min-height:28px;height:28px;line-height:28px;width:28px;margin-top:-14px;border-radius:3px}.mec-calendar.mec-calendar-daily .mec-calendar-d-top h2,.mec-calendar.mec-calendar-daily .mec-calendar-d-top h3{margin-top:9px;color:#b9b9b9;font-family:Roboto,sans-serif;font-size:30px;font-weight:100;text-transform:uppercase;margin-bottom:12px;line-height:1}.mec-calendar.mec-calendar-daily .mec-calendar-d-top h2{font-size:81px;color:#444;margin-bottom:10px;line-height:1.1}.mec-calendar.mec-calendar-daily .mec-calendar-d-table{overflow:hidden;background:#fff;min-height:60px;border-top:1px solid #e6e6e6;border-bottom:2px solid #f3f3f3;padding:0 50px;position:relative}@media only screen and (min-width:479px){.mec-calendar.mec-calendar-daily .mec-calendar-d-table{padding:0 55px}}.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl{width:1310px;display:block}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl{display:none}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl.mec-weekly-view-week-active{display:block}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt{display:block;background:#fff;width:42px;height:60px;line-height:60px;text-align:center;float:left;border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6;border-radius:0}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day:hover,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt:hover{background:#fafafa;box-shadow:0 2px 5px 0 rgba(0,0,0,.065) inset;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day{cursor:default;background:#fff;color:#c1c1c1;line-height:59px;text-align:center;border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-has-event{cursor:pointer;font-weight:700;color:#4a4a4a}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-daily-view-day-active,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt.mec-table-d-current{font-size:18px;font-weight:700;background:#fafafa;color:#40d9f1}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next,.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-prev{float:none;font-size:14px;width:55px;position:absolute;top:0;left:0;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next{left:auto;right:0;border-left:1px solid #e6e6e6;border-right:none}.mec-calendar.mec-calendar-daily .mec-today-container .mec-today-count{font-size:12px;color:#888;text-align:center}@media only screen and (max-width:479px){.mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-130px}.mec-calendar.mec-calendar-daily .mec-next-month{margin-left:80px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{font-size:14px;letter-spacing:0}}.widget .mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{font-size:14px;letter-spacing:0}.widget .mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-130px}.widget .mec-calendar.mec-calendar-daily .mec-next-month{margin-left:80px}.mec-util-hidden{display:none}.mec-daily-view-date-events,.mec-weekly-view-date-events{list-style:none;margin:0}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table{padding:0}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl{width:calc(100% - 1px)}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt{width:14.286%;height:70px;line-height:normal;cursor:default}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:hover{background:#fff;cursor:default}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:last-child{border-right:none}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:12px;font-weight:700;text-transform:uppercase;display:block;margin:15px 0 6px}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table a.mec-table-d-next,.mec-calendar.mec-calendar-weekly .mec-calendar-d-table a.mec-table-d-prev{display:none}ul.mec-weekly-view-dates-events,ul.mec-weekly-view-dates-events li{padding:0;margin:0;line-height:initial}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:64px;height:64px;margin-right:10px;font-size:11px;text-transform:uppercase;float:left;text-align:center;padding-top:2px}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:40px;line-height:30px;font-weight:700;display:block;margin-bottom:6px;letter-spacing:1px}.mec-calendar.mec-calendar-weekly .mec-calendar-a-month .mec-previous-month{margin-left:0;left:12px}.mec-calendar.mec-calendar-weekly .mec-calendar-a-month .mec-next-month{margin-left:0;left:auto;right:12px}@media only screen and (max-width:479px){.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:9px;letter-spacing:0}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:100%;height:36px;margin-bottom:12px;line-height:1;font-size:10px;margin-right:5px;text-align:left}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:18px;margin-bottom:5px}}.widget .mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:9px;letter-spacing:0}.widget .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:100%;height:36px;margin-bottom:12px;line-height:1;font-size:10px;margin-right:5px;text-align:left}.widget .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:18px;margin-bottom:5px}.mec-week-events-container .mec-weekly-view-dates-events li.mec-no-event-found{list-style:none!important}li.mec-no-event-found .mec-event-title{text-align:center}.mec-widget .mec-calendar{max-width:100%}.mec-widget .mec-calendar dl dt,.mec-wrap.mec-sm959.mec-widget .mec-calendar.mec-event-calendar-classic dl dt{height:40px}.mec-widget .mec-calendar .mec-calendar-events-sec{padding:10px}.mec-widget .mec-calendar .mec-calendar-header h2{font-size:13px;margin-top:8px}.mec-widget .mec-calendar .mec-event-list-classic .mec-event-image{margin-right:12px}.mec-widget .mec-calendar .mec-has-event:after{width:4px;height:4px}.mec-widget .mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-title{font-size:14px}.mec-widget .mec-calendar .mec-event-article .mec-event-image{margin-right:11px}.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-header{margin-bottom:20px}.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{font-size:0;padding:4px 0;text-align:center;min-width:33px}.mec-widget .mec-event-calendar-classic .mec-calendar-side .mec-calendar-table{min-height:200px}.mec-widget .mec-event-list-classic{margin-bottom:8px;padding:8px 0}.mec-widget .mec-event-list-classic .mec-event-article{margin-bottom:0;padding:10px 0;position:relative;min-height:86px;padding-left:80px}.mec-widget .mec-event-list-classic .mec-event-date{font-size:10px;line-height:14px;text-transform:uppercase}.mec-widget .mec-event-list-classic .mec-event-title{font-size:13px}.mec-widget .mec-event-list-classic .mec-event-detail{font-size:11px}.mec-widget .mec-event-list-classic .mec-event-image{width:68px;position:absolute;left:0}.mec-event-list-classic .mec-event-image img{width:100%}.mec-widget .mec-event-list-classic .mec-event-detail{overflow:visible}.event-color{width:14px;display:inline-block;height:14px;margin-left:5px;border-radius:50%}.mec-map-lightbox-wp{width:580px;padding:15px 15px 0;background-color:#fff}.mec-map-view-event-detail.mec-event-detail{width:580px;background-color:#e9e9e9;padding:8px 15px}.mec-map-lightbox-wp.mec-event-list-classic .mec-event-article{padding:0 0 15px;margin:0}.mec-map-lightbox-wp.mec-event-list-classic .mec-event-image{width:70px;margin-right:15px}.mec-marker-infowindow-wp{padding:10px}.mec-marker-infowindow-wp .mec-marker-infowindow-count{width:60px;height:60px;display:block;text-align:center;line-height:60px;border:1px solid #40d9f1;border-radius:50%;font-size:32px;color:#40d9f1;float:left;margin-right:11px}.mec-marker-infowindow-wp .mec-marker-infowindow-content{overflow:hidden;padding-top:6px}.mec-marker-infowindow-wp .mec-marker-infowindow-content span{display:block;color:#222}.mec-marker-infowindow-wp .mec-marker-infowindow-content span:first-child{font-size:15px;font-weight:700}.mec-marker-wrap{display:inline-block;width:35px;height:35px;margin:15px 0 0 4px;border-radius:50% 50% 50% 0;background:#00cae9;animation-name:mec-map-bounce;animation-fill-mode:both;animation-duration:1s;border:3px solid #fff;cursor:pointer}.mec-marker-wrap .mec-marker{margin-top:5px;display:block;-webkit-transform:rotate(45deg);transform:rotate(45deg);text-align:center;color:#fff;font-size:17px}.mec-marker-wrap .mec-marker-pulse-wrap{-webkit-transform:rotate(45deg);transform:rotate(45deg);display:inline-block;margin-left:-11px;margin-top:0}.mec-marker-wrap .mec-marker-pulse{display:inline-block;background:#c5c5c5;border-radius:50%;height:14px;width:14px;-webkit-transform:rotateX(55deg);transform:rotateX(55deg);z-index:-2}.mec-marker-wrap .mec-marker-pulse:after{content:"";border-radius:50%;height:40px;width:40px;position:absolute;margin:-13px 0 0 -13px;animation:pulsate 1s ease-out;animation-iteration-count:infinite;opacity:0;box-shadow:0 0 1px 2px #00cae9;animation-delay:1.1s}@keyframes pulsate{0%{transform:scale(.1,.1);opacity:0}50%{opacity:1}100%{transform:scale(1.2,1.2);opacity:0}}@keyframes mec-map-bounce{0%{opacity:0;transform:translateY(-2000px) rotate(-45deg)}60%{opacity:1;transform:translateY(30px) rotate(-45deg)}80%{transform:translateY(-10px) rotate(-45deg)}100%{transform:translateY(0) rotate(-45deg)}}.mec-single-event{margin-top:10px}.mec-single-event .mec-events-meta-group-countdown{color:#c9c9c9;text-align:center;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-events-meta-group-countdown .countdown-w{text-align:center;font-size:36px;margin:0 auto;padding:40px 0 0;position:relative;display:table;table-layout:fixed}.mec-events-meta-group-countdown .countdown-w .icon-w{font-size:24px}.mec-events-meta-group-countdown .countdown-w .label-w{font-size:15px;font-weight:300;letter-spacing:1px;text-transform:uppercase;position:relative}.mec-events-meta-group-countdown .countdown-w .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px;width:190px;font-size:72px;transition:all .3s ease-in-out;line-height:1.2}.mec-events-meta-group-countdown .countdown-w .block-w.done-w{border:0 none}.mec-events-meta-group-countdown .countdown-w span{padding:24px 0 20px}.mec-events-meta-group-countdown .countdown-w .div-d{display:none}.mec-events-meta-group-countdown .countdown-w .countdown-message{display:none}.mec-events-meta-group-countdown .countdown-w .block-w i{display:none}#countdown{list-style:none;margin-bottom:0;margin-top:0;margin-left:0;padding-left:0}.mec-events-meta-group-countdown .mec-end-counts h3{display:inherit;text-align:center;font-size:16px;right:50%}.mec-countdown-details .countdown-w .clockdiv li p{margin-top:23px}@media (min-width:481px) and (max-width:768px){.mec-events-meta-group-countdown .countdown-w{padding:0}.mec-events-meta-group-countdown .countdown-w .label-w{font-size:12px;letter-spacing:0}.mec-events-meta-group-countdown .countdown-w span{font-size:34px}}@media (min-width:320px) and (max-width:480px){.mec-events-meta-group-countdown .countdown-w .label-w{font-size:10px}.mec-events-meta-group-countdown .countdown-w span{font-size:28px}.mec-countdown-details .countdown-w .clockdiv li p{margin-top:16px}}@media (max-width:320px){.mec-events-meta-group-countdown .countdown-w .label-w{font-size:9px;letter-spacing:0}.mec-events-meta-group-countdown .countdown-w span{font-size:22px}}.info-msg,.mec-error,.mec-success,.warning-msg{margin:10px 0;padding:10px;border-radius:3px 3px 3px 3px;font-size:13px}.info-msg{color:#059;background-color:#bef}.mec-success{color:#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 .mec-event-status{color:#fff!important;border-color:transparent!important}.mec-fes-form .mec-book-confirmed,.mec-fes-list .mec-book-confirmed{background:#50d477!important}.mec-fes-form .mec-book-pending,.mec-fes-list .mec-book-pending{background:#fcbe69!important}.mec-fes-form .mec-book-rejected,.mec-fes-list .mec-book-rejected{background:#fe686a!important}.mec-fes-form .mec-book-other,.mec-fes-list .mec-book-other{background:#40d9f1!important}.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view{font-size:11px;padding: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 .post-status{float:right!important;margin:0 5px;color:#fff;padding:0 10px;border-radius:12px;font-style:italic;font-size:18px}.mec-fes-form input[type=email],.mec-fes-form input[type=number],.mec-fes-form input[type=password],.mec-fes-form input[type=tel],.mec-fes-form input[type=text],.mec-fes-form select,.mec-fes-form textarea{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);min-height:78px}.mec-wrap .mec-totalcal-box i{float:left;margin:0;width:36px;height:36px;background:#fff;border:1px solid #efefef;text-align:center;padding:10px 0;font-size:15px;color:#888}.mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-wrap .mec-totalcal-box input,.mec-wrap .mec-totalcal-box select{width:auto;min-height:36px;height:36px;line-height:36px;background:#fff;font-size:13px;color:#777;border:1px solid #efefef;margin:0 0 0 -1px;float:left;padding:0 5px;font-family:Roboto,Helvetica,Arial,sans-serif}.mec-wrap .mec-totalcal-box input[type=submit]{cursor:pointer;padding:0 16px;text-transform:uppercase;font-size:11px;font-family:Montserrat,Helvetica,Arial,sans-serif;transition:all .21s ease}.mec-wrap .mec-totalcal-box input[type=submit]:hover{background:#222;color:#fff}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{display:inline-block;text-transform:uppercase;font-family:Montserrat,Helvetica,Arial,sans-serif;font-size:11px;padding:0 12px;cursor:pointer}.mec-wrap .mec-totalcal-box .mec-totalcal-view span:hover{color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view span.mec-totalcalview-selected{color:#fff;background:#40d9f1;border-color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view{text-align:right;float:right}.mec-wrap .mec-totalcal-box input[type=search]{width:calc(100% - 36px)}@media only screen and (min-width:961px) and (max-width:1200px){.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-3,.mec-wrap .mec-totalcal-box .col-md-4,.mec-wrap .mec-totalcal-box .col-md-5{width:100%;float:none;padding-bottom:20px;clear:both;overflow:hidden}}@media only screen and (min-width:768px) and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-4{position:relative;right:10px;top:20px;width:initial}.mec-wrap .mec-totalcal-box .col-md-5{padding-bottom:0}.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:767px){.mec-wrap .mec-totalcal-box .mec-totalcal-view{float:none}.mec-wrap .mec-totalcal-box .col-md-4{padding-bottom:0}}@media only screen and (max-width:479px){.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 8px;font-size:10px}.mec-wrap .mec-totalcal-box input[type=submit]{padding:0 10px;font-size:10px}}@media only screen and (min-width:961px){.mec-wrap .mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5,.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-3{width:100%;float:none;padding-bottom:20px;clear:both;overflow:hidden}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-4{position:absolute;right:10px;top:20px;width:initial}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5{padding-bottom:0;width:100%}}@media (min-width:961px) and (max-width:1200px){.mec-full-calendar-wrap .mec-totalcal-box{padding:20px 20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:50%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{padding-bottom:20px!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select{min-width:calc(100% - 36px)}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select{min-width:calc(30% - 10px)}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3:last-child select{min-width:calc(50% - 19px)}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view{margin-right:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:10px;text-align:center}}@media (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box{padding:20px 20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:50%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{padding-bottom:10px!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select{min-width:calc(100% - 36px);margin-bottom:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view{margin-right:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:10px;text-align:center}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:100%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:absolute;top:20px}}@media (min-width:780px) and (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:absolute;top:20px}}@media(max-width:780px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select{width:calc(50% - 18px)!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:unset;padding-right:0}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:20%;text-align:center;font-size:10px}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 7px;margin-top:20px}}@media(max-width:480px){.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:20%;text-align:center;font-size:10px}}.mec-search-form{padding:20px 10px}.mec-search-form .mec-dropdown-wrap{display:table;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-full-calendar-wrap .mec-search-form .mec-date-search,.mec-full-calendar-wrap .mec-search-form .mec-text-input-search{width:100%}.mec-full-calendar-wrap .mec-search-form .col-md-3,.mec-full-calendar-wrap .mec-search-form .col-md-5,.mec-full-calendar-wrap .mec-search-form .col-md-6,.mec-full-calendar-wrap .mec-search-form .col-md-8{padding:0}.mec-widget .mec-search-form .mec-date-search,.mec-widget .mec-search-form .mec-text-input-search{width:100%}.mec-widget .mec-search-form .mec-text-input-search{margin-top:10px}.mec-search-form .mec-date-search{clear:left}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:table-cell;float:none}.mec-widget .mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block}.mec-wrap .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select{width:calc(100% - 36px)}.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,.mec-wrap .mec-event-carousel-type4 .owl-next,.mec-wrap .mec-event-carousel-type4 .owl-prev{transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:47%;background-color:transparent!important}.mec-event-carousel-type2 .owl-next{right:-60px}.mec-event-carousel-type2 .owl-prev{left:-60px}.mec-event-carousel-type2 .owl-next i,.mec-event-carousel-type2 .owl-prev i,.mec-event-carousel-type3 .owl-next i,.mec-event-carousel-type3 .owl-prev i,.mec-event-carousel-type4 .owl-next i,.mec-event-carousel-type4 .owl-prev i{font-size:40px;color:#282828}.mec-event-carousel-type2 .owl-next i:hover,.mec-event-carousel-type2 .owl-prev i:hover,.mec-event-carousel-type3 .owl-next i:hover,.mec-event-carousel-type3 .owl-prev i:hover{color:#000;cursor:pointer}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}@media only screen and (min-width:320px) and (max-width:768px){.mec-event-carousel-type2 .owl-next,.mec-event-carousel-type2 .owl-prev,.mec-event-carousel-type3 .owl-next,.mec-event-carousel-type3 .owl-prev,.mec-event-carousel-type4 .owl-next,.mec-event-carousel-type4 .owl-prev{position:initial;top:100%}}.mec-event-carousel-type3 .mec-event-article{margin:0 10px}.event-carousel-type3-head .mec-event-image,.event-carousel-type3-head .mec-event-image img{width:100%;height:auto}.event-carousel-type3-head .mec-event-footer-carousel-type3{background:#fff;display:inline-block;width:calc(100% - 40px);margin-top:-74px;position:relative;margin-left:20px;margin-right:20px;margin-bottom:6px;padding:8% 11%;box-shadow:0 2px 10px -2px rgba(0,0,0,.2)}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button{border:1px solid #e4e4e4;text-transform:uppercase;float:right;padding:7px 23px 7px;font-size:12px;color:#707070;font-weight:500}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button:hover{color:#fff}.mec-event-footer-carousel-type3 span{font-size:15px;color:#9a9a9a;font-weight:300;display:block;margin-top:30px}.mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:29px;font-weight:700}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:26px;font-weight:700;color:#1c1d21;margin-top:15px;letter-spacing:-1px}.mec-event-footer-carousel-type3 .mec-event-carousel-title a{color:inherit}.event-carousel-type3-head .mec-event-footer-carousel-type3 p{font-size:16px;font-weight:300;color:#444!important;margin-bottom:36px}.mec-event-carousel-type3 .owl-next{right:-70px}.mec-event-carousel-type3 .owl-prev{left:-70px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap{left:11%}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}.event-carousel-type3-head .mec-end-date-label{display:inline;margin-left:2px}.event-carousel-type4-head.clearfix{position:relative;overflow:hidden;background:#fff}.event-carousel-type4-head .mec-event-overlay{position:absolute;left:0;right:0;bottom:0;top:0;width:auto;height:auto;background-color:rgba(36,36,36,.4);transition:all .33s ease-in-out}.mec-event-hover-carousel-type4{font-size:15px;color:#fff;position:absolute;bottom:0;padding:50px 35px;transition:all .33s ease-in-out;opacity:0;visibility:hidden}.mec-event-carousel-type4 .mec-event-article{margin:0 10px}.mec-event-carousel-type4 .mec-event-article:hover .mec-event-hover-carousel-type4{opacity:1;visibility:visible}.mec-event-hover-carousel-type4 .mec-event-icon{font-size:18px;float:left;margin-right:14px;color:#fff;padding:13px}.mec-event-hover-carousel-type4 .mec-event-date{font-size:11px;text-transform:uppercase;font-weight:400;line-height:1.6}.mec-event-hover-carousel-type4 .mec-event-date span{display:block;font-weight:700;font-size:14px}.mec-event-hover-carousel-type4 .mec-event-title{color:#fff;margin:20px 0 38px;font-size:16px;font-weight:700;text-transform:uppercase;font-style:normal}.mec-event-hover-carousel-type4 .mec-btn-wrapper{text-align:left}.mec-event-hover-carousel-type4 .mec-event-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:10px 14px;letter-spacing:1.5px;font-size:11px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none}.mec-event-hover-carousel-type4 .mec-event-button:hover{color:#191919;background-color:#fff;border-color:#fff;border-radius:1px}.mec-event-carousel-type4 .owl-next{right:-70px}.mec-event-carousel-type4 .owl-prev{left:-70px}.mec-carousel-type4-head{margin-bottom:25px}.mec-carousel-type4-head-title{padding:0 11px;text-align:left;font-weight:700;font-size:20px;color:#000}.mec-carousel-type4-head-link{text-align:right;padding:0 11px}.mec-carousel-type4-head-link a{background:#222;color:#fff;padding:10px 38px;transition:all .3s ease}.mec-carousel-type4-head-link a:hover,.mec-carousel-type4-head-link a:visited{color:#fff}@media (max-width:960px){.mec-event-carousel-type4 .owl-stage{left:-50px}}.mec-wrap .mec-event-countdown-style1{color:#fff;padding:0!important;display:table;background:#437df9}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1{z-index:5;padding:50px 1% 50px 4%;display:table-cell;float:none;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2{background-color:rgba(0,0,0,.05);height:100%;padding-top:0;display:table-cell;float:none;position:relative;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{background-color:#f8f8f8;display:table-cell;float:none;text-align:center;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style1 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{content:"";position:absolute;display:inline-block;z-index:1;top:50%;margin-top:-11px;right:-24px;width:0;border-width:12px;border-style:solid;border-color:transparent transparent transparent #4077ed}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style1 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto}.mec-event-countdown-style1 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style1 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (min-width:1200px){.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%}}@media (max-width:960px){.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%}}@media (max-width:480px){.mec-event-countdown-style1 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{padding:10px 5px;min-width:50px;margin:3px 1px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:8px}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{display:inline}}.mec-wrap .mec-event-countdown-style2{color:#fff;padding:30px 0;background:#437df9;max-width:600px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part3{width:100%;float:none;vertical-align:middle;padding:50px 10% 50px 10%}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2{padding-top:12%;padding-bottom:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style2 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date-place{text-align:left;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 8px}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#222;background:#fff;transition:all .24s ease}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button:hover{background:#222;color:#fff}.mec-event-countdown-style2 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0}.mec-event-countdown-style2 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style2 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (max-width:767px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:80px;padding:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:26px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:11px}}@media only screen and (max-width:479px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:40px;padding:15px 10px;margin:2px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:20px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:9px}}@media (max-width:380px){.mec-event-countdown-style2 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{padding:10px 4px;margin:4px 1px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:7px}}.mec-wrap .mec-event-countdown-style3{color:#fff;padding:0;background:#282828;display:table;width:100%}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1{width:68%;padding:50px 1% 50px 4%;vertical-align:middle;display:table-cell;position:relative}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:32%;display:table-cell;position:relative;padding-bottom:0;padding-top:0}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 img{width:100%;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{font-weight:300;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{color:#fff;font-size:36px;letter-spacing:-2px;font-weight:700;line-height:1;margin-top:-10px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style3 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style3 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto;position:absolute;top:40px;right:20px}.mec-event-countdown-style3 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style3 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:11px;color:#888;margin:8px 0 0;line-height:1}.mec-event-countdown-style3 .mec-event-date{width:176px;height:96px;background:#40d9f1;color:#fff;font-size:13px;position:absolute;left:-27px;top:146px}.mec-event-countdown-style3 .mec-event-date:after{content:"";position:absolute;display:inline-block;z-index:1;bottom:-18px;left:8px;width:0;border-width:19px;border-style:solid;border-color:transparent transparent #40d9f1 transparent;transform:rotate(45deg)}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:50px;position:absolute;top:36px;left:12px;letter-spacing:-3px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:80px;top:26px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:80px;top:45px}.mec-event-countdown-style3 .mec-event-countdown-part-details{padding-top:35px;margin-bottom:50px;min-height:100px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-title{font-size:17px;color:#fff;line-height:1.4;padding-right:20px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link{color:#fff;font-size:12px;position:relative;padding-left:22px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link:before{content:"";display:inline-block;width:18px;border-top:1px solid #fff;position:absolute;left:0;top:8px}.mec-event-countdown-style3 .mec-event-title-link{position:absolute;left:190px;top:152px}.event-carousel-type1-head .mec-event-date-carousel:before,.mec-event-countdown-style3 .mec-event-date:before{content:'';position:absolute;left:0;bottom:0;z-index:2;width:100%;height:96px;background:0 0;display:inline-block;box-shadow:0 5px 5px rgba(0,0,0,.12)}@media only screen and (min-width:960px){.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown li{padding:10px}.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:31px}}@media (max-width:959px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:100%;display:block}.mec-event-countdown-style3 .mec-event-title-link{top:190px}.mec-event-countdown-style3 .mec-event-countdown{top:96px}.mec-event-countdown-style3 .mec-event-date{left:0;top:190px}.mec-event-countdown-style3 .mec-event-date:after{display:none}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{display:inline}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:150px}}@media (max-width:767px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:26px;letter-spacing:-1px}.mec-event-countdown-style3 .mec-event-title-link{left:130px}.mec-event-countdown-style3 .mec-event-date{width:120px;font-size:10px;height:63px}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:36px;top:20px;left:4px;letter-spacing:-2px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:52px;top:12px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:52px;top:28px}}@media (max-width:380px){.mec-event-countdown-style3 .mec-event-title-link{left:10px;top:260px}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:300px}.mec-event-countdown-style3 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:10px 5px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:8px}}.mec-slider-t1-wrap{width:100%;padding:60px 90px;background:#f7f7f7;min-height:560px;position:relative}.mec-slider-t1{height:500px;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t1 .mec-event-article{position:relative;height:500px}.mec-slider-t1 .mec-slider-t1-img{position:relative;background-size:cover!important;background-position:center!important;width:50%;height:100%;float:right;margin:0;overflow:hidden}.mec-slider-t1 .mec-slider-t1-content{width:50%;float:left;height:100%;background:#fff;padding:6%}.mec-slider-t1-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t1-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:54px;height:54px;line-height:48px;border-radius:0;text-align:center;background:#fff;box-shadow:0 2px 11px 0 rgba(0,0,0,.045);transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-27px;cursor:pointer}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 29px 0 rgba(0,0,0,.095)}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:12px;color:#282828;transition:all .21s ease}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{font-size:13px;color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t1{margin:0 auto;max-width:900px}}@media only screen and (max-width:960px){.mec-slider-t1 .mec-slider-t1-content,.mec-slider-t1 .mec-slider-t1-img{width:100%;float:none}.mec-slider-t1 .mec-slider-t1-img{height:300px}.mec-slider-t1,.mec-slider-t1 .mec-event-article{height:auto}}@media only screen and (max-width:768px){.mec-slider-t1-wrap{padding:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:10px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}}@media only screen and (max-width:479px){.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t2-wrap{width:100%;padding:0;background:#fff;min-height:600px;position:relative}.mec-slider-t2 .mec-event-article{height:600px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t2 .mec-slider-t2-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:70%;height:100%;margin:0;overflow:hidden}.mec-slider-t2 .mec-slider-t2-content{width:50%;position:absolute;right:0;top:60px;bottom:60px;padding:5%}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern *{color:#fff}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-content,.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t2-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:84px;cursor:pointer}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}.mec-wrap.colorskin-custom .mec-slider-t2 .mec-event-article .mec-event-date.mec-color{color:#fff}@media only screen and (min-width:961px){.mec-slider-t2{margin:0 auto;max-width:1200px}}@media only screen and (max-width:960px){.mec-slider-t2 .mec-slider-t2-content,.mec-slider-t2 .mec-slider-t2-img{width:100%;float:none;position:static}.mec-slider-t2 .mec-slider-t2-img{height:300px}.mec-slider-t2 .mec-event-article{height:auto}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px}}@media only screen and (max-width:479px){.mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:22px}}.mec-slider-t3-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t3 .mec-event-article{height:700px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t3 .mec-slider-t3-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;opacity:.68;z-index:1}.mec-slider-t3 .mec-slider-t3-content{width:50%;height:auto;vertical-align:middle;display:table;position:absolute;left:0;top:0;bottom:0;padding:0 2% 0 7%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t3 .mec-slider-t3-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-content,.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-slider-t3-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t3-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{border-color:#40d9f1}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-22px;cursor:pointer}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next{right:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:50px;font-weight:300}.mec-slider-t3-content.mec-event-grid-modern .mec-event-description{font-size:19px}}@media only screen and (max-width:767px){.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}}@media only screen and (max-width:479px){.mec-slider-t3 .mec-slider-t3-content{width:100%}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t4-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t4 .mec-event-article{height:700px;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t4 .mec-slider-t4-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;z-index:1}.mec-slider-t4 .mec-slider-t4-content{width:auto;max-width:700px;background:rgba(37,37,37,.94)!important;height:auto;vertical-align:middle;display:table;position:absolute;left:8%;top:19%;padding:3%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t4 .mec-slider-t4-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-content,.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:13px;padding:0 42px;line-height:49px;height:50px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t4-content.mec-event-grid-modern .mec-slider-t4-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next{right:60px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{right:112px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:767px){.mec-slider-t4 .mec-slider-t4-content{width:100%;left:0;top:auto;bottom:0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t5-wrap{width:auto;max-width:570px;padding:0;margin:0 auto 25px;background:#f7f7f7;min-height:480px;position:relative}.mec-slider-t5{height:auto;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t5 .mec-event-article{position:relative;height:auto}.mec-slider-t5 .mec-slider-t5-img{position:relative;background-size:cover!important;background-position:center!important;width:100%;height:300px;float:none;margin:0;overflow:hidden}.mec-slider-t5 .mec-slider-t5-content{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-slider-t5 .mec-events-content p{margin-bottom:20px}.mec-slider-t5-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t5-wrap .mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:14px 34px;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t5 .mec-slider-t5-col6{width:50%;float:left;height:100%}.mec-slider-t5 .mec-slider-t5-col6 i{font-size:42px;float:left;margin-right:7px;height:58px}.mec-slider-t5 .mec-slider-t5-col6 h6{text-transform:uppercase;font-size:17px;padding:4px 0;display:inline;color:#444}.mec-slider-t5 .mec-slider-t5-col6 address{font-size:12px;margin-bottom:0}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t5-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:768px){.mec-slider-t5 .mec-slider-t5-col6{width:100%;margin:10px 0}}@media only screen and (max-width:479px){.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.mec-single-modern .mec-events-event-image{text-align:center}.mec-single-modern .mec-events-event-image img{width:100%}.mec-single-modern .mec-single-event-bar{background-color:#f7f7f7;margin:20px 0 0;padding:15px;display:table;width:100%}.mec-single-modern .mec-single-event-bar>div{display:table-cell}.mec-single-modern .mec-single-event-bar>div i{font-size:20px;vertical-align:middle}.mec-single-modern .mec-single-event-bar>div .mec-time-comment{font-size:12px;color:#999}.mec-single-modern .mec-single-event-bar>div h3{text-transform:uppercase;font-size:16px;font-weight:700;padding-bottom:5px;display:inline;color:#000;padding-left:10px}.mec-single-modern .mec-single-event-bar>div dd{font-size:14px;color:#8d8d8d;padding-left:34px;margin-bottom:0}.mec-single-modern .col-md-4 .mec-frontbox{margin-top:-50px;margin-bottom:70px;padding:20px;border:none;background:#f7f7f7;box-shadow:none}.mec-next-occurrence li{list-style:none}@media only screen and (min-width:960px){.mec-single-modern .col-md-4 .mec-frontbox{margin-left:20px}}@media only screen and (max-width:960px){.mec-single-modern .mec-single-event-bar>div{display:block}}.lity-content>div{overflow:auto}.mec-next-event-details li{list-style:none;margin-top:20px}.mec-next-event-details h6{text-transform:uppercase;font-size:13px;padding-bottom:5px;display:inline;color:#222;padding-left:0}.mec-next-event-details abbr{display:block;padding-left:12px;color:#8d8d8d}.mec-next-event-details i{margin-right:10px;margin-left:12px}.mec-next-event-details i:before{color:#40d9f1}.mec-next-event-details a{text-align:center;display:block;background:#fff;padding:6px 0;font-size:11px;font-weight:400;letter-spacing:0;border:1px solid #e3e3e3;transition:.3s}.mec-single-modal.mec-single-modern .mec-single-title{text-align:center;padding:15px 10px 0}.admin-bar .mec-single-modal.mec-single-modern .mec-single-title{padding-top:40px}.mec-single-modal.mec-single-modern .mec-single-event-bar{padding:5px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div dd{font-size:13px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div h3{font-size:15px}@media only screen and (min-width:960px){.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-left:0}}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-top:10px;margin-bottom:10px}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox.mec-event-meta{padding:0}.mec-single-modal .mec-event-meta dd.mec-organizer-email a,.mec-single-modal .mec-event-meta dd.mec-organizer-url a{font-size:12px;display:block}.mec-modal-wrap{max-width: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}}@media(min-width:961px){.mec-timetable-col-7{width:14.28%}.mec-timetable-col-6{width:16.6666%}}.mec-weather-box{padding:15px 0}.mec-weather-head{min-height:90px;padding:5px 0;clear:both;overflow:hidden;margin-bottom:25px;border-radius:10px;background:#238af5}.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:normal 11px "helvetica neue",helvetica,sans-serif;-webkit-user-select:none}.mec-wrap .flip-clock-meridium{background:0 0!important;box-shadow:0 0 0!important;font-size:36px!important}.mec-wrap .flip-clock-meridium a{color:#313333}.mec-wrap .flip-clock-wrapper{text-align:center;position:relative;display:inline-block;padding-bottom:10px}.flip-clock-wrapper:after,.mec-wrap .flip-clock-wrapper:before{content:" ";display:table}.mec-wrap .flip-clock-wrapper:after{clear:both}.mec-wrap .flip-clock-wrapper ul{position:relative;float:left;margin:2px;width:50px;height:50px;font-size:80px;font-weight:700;line-height:87px;border-radius:3px;background:rgba(0,0,0,.21)}.mec-wrap .flip-clock-wrapper ul li{z-index:1;position:absolute;left:0;top:0;width:100%;height:100%;line-height:54px;text-decoration:none!important}.mec-wrap .flip-clock-wrapper ul li:first-child{z-index:2}.mec-wrap .flip-clock-wrapper ul li a{display:block;height:100%;-webkit-perspective:200px;-moz-perspective:200px;perspective:200px;margin:0!important;overflow:visible!important;cursor:default!important}.mec-wrap .flip-clock-wrapper ul li a div{z-index:1;position:absolute;left:0;width:100%;height:50%;font-size:80px;overflow:hidden;outline:1px solid transparent}.mec-wrap .flip-clock-wrapper ul li a div .shadow{position:absolute;width:100%;height:100%;z-index:2}.mec-wrap .flip-clock-wrapper ul li a div.up{-webkit-transform-origin:50% 100%;-moz-transform-origin:50% 100%;-ms-transform-origin:50% 100%;-o-transform-origin:50% 100%;transform-origin:50% 100%;top:0}.mec-wrap .flip-clock-wrapper ul li a div.up:after{content:"";position:absolute;top:24px;left:0;z-index:5;width:100%;height:3px;background-color:rgba(0,0,0,.12)}.mec-wrap .flip-clock-wrapper ul li a div.down{-webkit-transform-origin:50% 0;-moz-transform-origin:50% 0;-ms-transform-origin:50% 0;-o-transform-origin:50% 0;transform-origin:50% 0;bottom:0;border-bottom-left-radius:3px;border-bottom-right-radius:3px}.mec-wrap .flip-clock-wrapper ul li a div div.inn{position:absolute;left:0;z-index:1;width:100%;height:200%;color:#fff;text-shadow:0 0 2px rgba(0,0,0,.25);text-align:center;background-color:#40d9f1;border-radius:3px;font-size:48px}.mec-wrap .flip-clock-wrapper ul li a div.up div.inn{top:0}.mec-wrap .flip-clock-wrapper ul li a div.down div.inn{bottom:0}.mec-wrap .flip-clock-wrapper ul.play li.flip-clock-before{z-index:3}.mec-wrap .flip-clock-wrapper .flip{box-shadow:0 2px 5px rgba(0,0,0,.17)}.mec-wrap .flip-clock-wrapper ul.play li.flip-clock-active{-webkit-animation:asd .5s .5s linear both;-moz-animation:asd .5s .5s linear both;animation:asd .5s .5s linear both;z-index:5}.mec-wrap .flip-clock-divider{float:left;display:inline-block;position:relative;width:18px;height:62px}.mec-wrap .flip-clock-divider:first-child{width:0}.mec-wrap .flip-clock-dot{display:none;background:#323434;width:10px;height:10px;position:absolute;border-radius:50%;box-shadow:0 0 5px rgba(0,0,0,.5);left:5px}.mec-wrap .flip-clock-divider .flip-clock-label{position:absolute;bottom:-1.5em;right:-71px;color:#101010;font-weight:700;text-shadow:none;text-transform:uppercase}.mec-wrap .blox.dark .flip-clock-divider .flip-clock-label{color:#8a8a8a}.mec-wrap .flip-clock-divider.seconds .flip-clock-label{right:-82px}.mec-wrap .flip-clock-dot.top{top:30px}.mec-wrap .flip-clock-dot.bottom{bottom:30px}@-webkit-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@-moz-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@-o-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}.flip-clock-wrapper ul.play li.flip-clock-active .down{z-index:2;-webkit-animation:turn .5s .5s linear both;-moz-animation:turn .5s .5s linear both;animation:turn .5s .5s linear both}@-webkit-keyframes turn{0%{-webkit-transform:rotatex(90deg)}100%{-webkit-transform:rotatex(0)}}@-moz-keyframes turn{0%{-moz-transform:rotatex(90deg)}100%{-moz-transform:rotatex(0)}}@-o-keyframes turn{0%{-o-transform:rotatex(90deg)}100%{-o-transform:rotatex(0)}}@keyframes turn{0%{transform:rotatex(90deg)}100%{transform:rotatex(0)}}.flip-clock-wrapper ul.play li.flip-clock-before .up{z-index:2;-webkit-animation:turn2 .5s linear both;-moz-animation:turn2 .5s linear both;animation:turn2 .5s linear both}@-webkit-keyframes turn2{0%{-webkit-transform:rotatex(0)}100%{-webkit-transform:rotatex(-90deg)}}@-moz-keyframes turn2{0%{-moz-transform:rotatex(0)}100%{-moz-transform:rotatex(-90deg)}}@-o-keyframes turn2{0%{-o-transform:rotatex(0)}100%{-o-transform:rotatex(-90deg)}}@keyframes turn2{0%{transform:rotatex(0)}100%{transform:rotatex(-90deg)}}.flip-clock-wrapper ul li.flip-clock-active{z-index:3}.flip-clock-wrapper ul.play li.flip-clock-before .up .shadow{background:-moz-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,.1)),color-stop(100%,rgba(64,64,64,.68)));background:linear,top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;background:-o-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-ms-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:linear,to bottom,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;-webkit-animation:show .5s linear both;-moz-animation:show .5s linear both;animation:show .5s linear both}.flip-clock-wrapper ul.play li.flip-clock-active .up .shadow{background:-moz-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,.1)),color-stop(100%,rgba(64,64,64,.68)));background:linear,top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;background:-o-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-ms-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:linear,to bottom,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;-webkit-animation:hide .5s .3s linear both;-moz-animation:hide .5s .3s linear both;animation:hide .5s .3s linear both}.flip-clock-wrapper ul.play li.flip-clock-before .down .shadow{background:-moz-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(64,64,64,.68)),color-stop(100%,rgba(0,0,0,.1)));background:linear,top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;background:-o-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-ms-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:linear,to bottom,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;-webkit-animation:show .5s linear both;-moz-animation:show .5s linear both;animation:show .5s linear both}.flip-clock-wrapper ul.play li.flip-clock-active .down .shadow{background:-moz-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(64,64,64,.68)),color-stop(100%,rgba(0,0,0,.1)));background:linear,top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;background:-o-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-ms-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:linear,to bottom,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;-webkit-animation:hide .5s .3s linear both;-moz-animation:hide .5s .3s linear both;animation:hide .5s .2s linear both}@-webkit-keyframes show{0%{opacity:0}100%{opacity:1}}@-moz-keyframes show{0%{opacity:0}100%{opacity:1}}@-o-keyframes show{0%{opacity:0}100%{opacity:1}}@keyframes show{0%{opacity:0}100%{opacity:1}}@-webkit-keyframes hide{0%{opacity:1}100%{opacity:0}}@-moz-keyframes hide{0%{opacity:1}100%{opacity:0}}@-o-keyframes hide{0%{opacity:1}100%{opacity:0}}@keyframes hide{0%{opacity:1}100%{opacity:0}}@font-face{font-family:simple-line-icons;src:url(../fonts/Simple-Line-Icons.eot?v=2.3.1);src:url(../fonts/Simple-Line-Icons.eot?v=2.3.1#iefix) format('embedded-opentype'),url(../fonts/Simple-Line-Icons.woff2?v=2.3.1) format('woff2'),url(../fonts/Simple-Line-Icons.woff?v=2.3.1) format('woff'),url(../fonts/Simple-Line-Icons.ttf?v=2.3.1) format('truetype'),url(../fonts/Simple-Line-Icons.svg?v=2.3.1#simple-line-icons) format('svg');font-weight:400;font-style:normal}[class*=mec-sl-]{font-family:simple-line-icons;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.mec-sl-facebook:before{content:"\e00b"}.mec-sl-twitter:before{content:"\e009"}.mec-sl-google-plus:before{content:"\e60d"}.mec-sl-angle-left:before{content:"\e605"}.mec-sl-angle-right:before{content:"\e606"}.mec-sl-calendar:before{content:"\e075"}.mec-sl-clock-o:before{content:"\e081"}.mec-sl-home:before{content:"\e069"}.mec-sl-phone:before{content:"\e600"}.mec-sl-envelope:before{content:"\e086"}.mec-sl-sitemap:before{content:"\e037"}.mec-sl-map-marker:before{content:"\e096"}.mec-sl-floder:before{content:"\e089"}.mec-sl-wallet:before{content:"\e02a"}.mec-color,.mec-color-before :before,.mec-color-hover:hover,.mec-wrap .mec-color,.mec-wrap .mec-color-before :before,.mec-wrap .mec-color-hover:hover{color:#40d9f1}.mec-bg-color,.mec-bg-color-hover:hover,.mec-wrap .mec-bg-color,.mec-wrap .mec-bg-color-hover:hover{background-color:#40d9f1}.mec-border-color,.mec-border-color-hover:hover,.mec-wrap .mec-border-color,.mec-wrap .mec-border-color-hover:hover{border-color:#40d9f1}.mec-toggle-month-divider.mec-skin-list-events-container{border:1px solid #e8e8e8;margin-bottom:30px;background:#f8f8f8;box-shadow:0 2px 18px -1px rgba(0,0,0,.1);border-radius:2px}.mec-toggle-month-divider .mec-month-divider{margin:0;text-align:left;background:#fff;position:relative;cursor:pointer;border-top:1px solid #e8e8e8}.mec-toggle-month-divider .mec-month-divider span{padding:20px;border-bottom:1px solid #e8e8e8}.mec-toggle-month-divider .mec-month-divider i{position:absolute;right:20px;top:24px;font-size:20px;cursor:pointer}.mec-toggle-month-divider .mec-month-divider span:before{display:none}.mec-toggle-month-divider .mec-month-divider+article{margin-top:20px}.mec-toggle-month-divider .mec-wrap .mec-month-divider:first-of-type{border-top:none}.mec-toggle-month-divider .mec-event-list-accordion .mec-month-divider:not(:first-of-type)~article{display:none}.mec-skin-list-events-container:not(.mec-toggle-month-divider) .mec-month-divider i{display:none}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-month{display:inline-block;padding-top:0}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-date{font-size:14px;line-height:14px;float:none;display:inline-block;margin-right:0;font-weight:700}.mec-events-toggle .mec-toogle-inner-month-divider.mec-toggle-item-inner{padding:20px 60px 30px 15px}.mec-toogle-inner-month-divider .mec-toggle-month-inner-image{float:left;clear:right;width:100px;margin-right:20px;margin-left:10px}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-detail{margin-top:-6px}.mec-toogle-inner-month-divider .mec-toggle-item-col{float:none;width:100%;margin-top:10px;display:block;border:none}.mec-events-toggle .mec-toogle-inner-month-divider .mec-toggle-title{font-size:19px;display:block;padding-top:10px}@media only screen and (max-width:768px){.mec-events-toggle .mec-toogle-inner-month-divider .mec-toggle-title{font-size:14px;padding-top:0}.mec-toogle-inner-month-divider .mec-toggle-item-col{margin-top:0}.mec-toogle-inner-month-divider .mec-toggle-month-inner-image{width:70px}}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled:before,.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-featured:before{z-index:1;position:absolute;top:25px;right:-37px;font-size:11px;letter-spacing:1px;text-transform:uppercase;background:#04de78;padding:2px 40px;color:#fff;-ms-transform:rotate(45deg);-webkit-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition:.5s cubic-bezier(.25,.5,.06,.85);transition:.5s cubic-bezier(.25,.5,.06,.85);content:attr(data-style)}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled,.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-featured{overflow:hidden;position:relative}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled:before{background:#de0404}.mec-daily-view-date-events article:before,ul.mec-weekly-view-dates-events article:before{padding:7px 40px!important;top:27px!important}.mec-event-grid-classic article .mec-fc-style,.mec-event-grid-minimal article .mec-fc-style,.mec-event-grid-simple article .mec-fc-style,.mec-timetable-wrap article .mec-fc-style,.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article.mec-event-cover-modern .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{font-size:9px;letter-spacing:.5px;text-transform:uppercase;background:#04de78;padding:2px 7px;color:#fff;position:relative;margin-left:5px;border-radius:2px}.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-modern.mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-minimal article .mec-fc-style:before,.mec-event-grid-simple article .mec-fc-style:before,.mec-timetable-wrap article .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article .mec-fc-style:before,.mec-wrap .mec-event-list-modern article .mec-fc-style:before,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style:before{width:0;height:0;border-top:4px solid transparent!important;border-right:5px solid;border-bottom:4px solid transparent;margin:0;top:50%;left:-4px;transform:translateY(-4.5px);position:absolute;content:'';color:#04de78}.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-event-grid-classic article.mec-label-canceled:before,.mec-event-grid-classic article.mec-label-featured:before,.mec-event-grid-minimal article.mec-label-canceled:before,.mec-event-grid-minimal article.mec-label-featured:before,.mec-event-grid-simple article.mec-label-canceled:before,.mec-event-grid-simple article.mec-label-featured:before,.mec-timetable-wrap article.mec-label-canceled:before,.mec-timetable-wrap article.mec-label-featured:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled:before,.mec-wrap .mec-event-list-accordion article.mec-label-featured:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled:before,.mec-wrap .mec-event-list-modern article.mec-label-featured:before{display:none}.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{top:-3px;font-size:11px;margin-left:10px}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style:before,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-canceled:before,.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-featured:before{-ms-transform:none;-webkit-transform:none;transform:none;-webkit-transition:none;transition:none;top:271px;right:0}.mec-timetable-wrap article .mec-fc-style{top:-2px;font-size:10px}.mec-wrap article.mec-event-cover-modern .mec-fc-style{padding:5px 9px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:24px;display:inline-block;border-radius:2px}.mec-skin-grid-events-container .mec-wrap .mec-event-grid-clean .mec-event-article:before{-ms-transform:none;-webkit-transform:none;transform:none!important;-webkit-transition:none;transition:none;top:22px!important;right:22px!important;padding:0 10px!important}.mec-event-grid-minimal article .mec-fc-style,.mec-event-grid-simple article .mec-fc-style{top:-4px;font-size:10px;margin-left:10px}.mec-event-grid-classic article .mec-fc-style{padding:5px 20px;font-size:12px;margin-top:8px;display:inline-block}.mec-hourly-schedule-speaker-info{background:#fff;padding:30px;border:1px solid #e6e6e6;max-width:740px;width:740px;margin-left:-110px}.mec-hourly-schedule-speaker-thumbnail{float:left;max-width:30%;width:30%}.mec-hourly-schedule-speaker-name{font-weight:700;font-size:26px;line-height:1.2;color:#333;text-transform:uppercase}.mec-hourly-schedule-speaker-details{float:left;width:69%;padding-left:25px}.mec-hourly-schedule-speaker-job-title{font-size:16px;line-height:1.3;margin-bottom:4px}.mec-hourly-schedule-speaker-description{font-size:14px;font-weight:400;color:#6d7683;line-height:1.7;text-align:left}.mec-hourly-schedule-speaker-contact-information a i{color:#6b6b6b;background:#ebebeb;line-height:29px;margin:9px 7px 9px 0;width:30px;height:30px;display:inline-block;text-align:center;transition:all .2s ease;font-size:15px;cursor:pointer}.mec-hourly-schedule-speaker-contact-information a i:hover{background:#222;color:#fff}@media only screen and (max-width:479px){.mec-hourly-schedule-speaker-thumbnail{float:none;max-width:none;margin-right:0;margin-bottom:15px;width:100%}.mec-hourly-schedule-speaker-thumbnail img{width:100%}.mec-hourly-schedule-speaker-details{padding-left:0}.mec-hourly-schedule-speaker-info{width:90%;margin:0 auto}}.mec-profile .mec-profile-bookings{border:2px solid #e6e6e6;text-align:center}.mec-profile .mec-profile-bookings tbody tr:first-child{background:#f7f7f7;font-weight:700;text-transform:capitalize}.mec-profile .mec-profile-bookings tbody tr{border-bottom:1px solid #e6e6e6;font-size:14px}.mec-profile .mec-profile-bookings tbody tr td{border:1px solid #e6e6e6;padding:10px}.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}}.mec-woo-booking-checkout{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;border-radius:0;margin-bottom:6px;min-width:170px;margin-top:5px;text-align:center}.mec-woo-booking-checkout:hover{background:#222;color:#fff}.mec-woo-booking-checkout:focus,.mec-woo-booking-checkout:visited{color:#fff}.single-mec-events .lity-container{max-width:480px;width:480px}.lity-content .mec-events-meta-group-booking{width:100%;padding:20px 50px;background:#fff}.lity-content .mec-events-meta-group-booking .mec-booking form>h4{text-transform:uppercase;font-size:15px;font-weight:700;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative;text-align:center;line-height:1.2;margin-bottom:10px}.lity-content .mec-events-meta-group-booking .mec-booking form>h4:before{padding:1px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-35px;left:50%}.lity-content .mec-events-meta-group-booking .mec-event-ticket-available,.lity-content .mec-events-meta-group-booking .mec-event-ticket-name,.lity-content .mec-events-meta-group-booking .mec-event-ticket-price,.lity-content .mec-events-meta-group-booking .mec-ticket-variation-name,.lity-content .mec-events-meta-group-booking .mec-ticket-variation-price,.lity-content .mec-events-meta-group-booking label{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:3px 0;clear:none;padding:5px 1em 3px 0;display:inline-block}.lity-content .mec-events-meta-group-booking .mec-event-ticket-available{margin-bottom:12px}.lity-content .mec-events-meta-group-booking select{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:100%;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both;font-family:Montserrat,Helvetica,Arial,sans-serif}.lity-content .mec-events-meta-group-booking input[type=email]{color:#888;border:1px solid #e1e1e1;font-size:14px;display:block;width:100%;outline:0}.lity-content .mec-events-meta-group-booking input{margin-bottom:10px!important}.lity-content .mec-book-ticket-variation h5{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:0;clear:none;padding:5px 1em 3px 0;display:inline-block;text-transform:capitalize;font-family:Montserrat,Helvetica,Arial,sans-serif}.lity-content ul.mec-book-tickets-container{padding:0}.lity-content .mec-events-meta-group-booking input[type=email],.lity-content .mec-events-meta-group-booking input[type=number],.lity-content .mec-events-meta-group-booking input[type=text]{outline:0;font-family:Montserrat,Helvetica,Arial,sans-serif;display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:100%;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both;margin-bottom:2px!important}.lity-content button[type=submit]{position:relative;border:none;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;min-width:170px;margin-top:5px;border-radius:0;margin-bottom:6px}.lity-content button[type=submit]:hover{background:#222}.lity-content .mec-book-tickets-container li{list-style:none}.lity-content .mec-events-meta-group-booking #mec_book_payment_form h4,.lity-content .mec-events-meta-group-booking li h4{font-size:19px;font-weight:700}.lity-content .mec-events-meta-group-booking .mec-book-price-total{display:inline-block;margin-bottom:10px;font-size:26px;color:#39c36e;font-weight:700;padding:10px 0}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li{width:50%}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li:nth-child(even){border:none}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li span{display:block}.lity-content .mec-events-meta-group-booking button[type=submit]:after{display:none;font-family:simple-line-icons;content:"\e098";margin-left:4px;-webkit-animation:rotating 1.2s linear infinite;-moz-animation:rotating 1.2s linear infinite;-ms-animation:rotating 1.2s linear infinite;-o-animation:rotating 1.2s linear infinite;animation:rotating 1.2s linear infinite}.lity-content .mec-events-meta-group-booking button[type=submit].loading:after{display:inline-block}@media only screen and (max-width:480px){.lity-content .mec-events-meta-group-booking{padding:20px;width:340px;margin:0 auto}}.mec-wrap *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mec-wrap :after,.mec-wrap :before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mec-wrap .clearfix:after,.mec-wrap .clearfix:before{content:'\0020';display:block;overflow:hidden;visibility:hidden;width:0;height:0}.mec-wrap .clearfix:after{clear:both}.mec-wrap .clearfix{zoom:1}.mec-wrap .clear,.mec-wrap .clr{clear:both;display:block;overflow:hidden;visibility:hidden}.mec-wrap .clr{visibility:visible;overflow:visible}.mec-container [class*=col-] img{max-width:100%}.mec-container{margin-right:auto;margin-left:auto;padding-left:10px;padding-right:10px}.mec-container:after,.mec-container:before{content:" ";display:table}.mec-container:after{clear:both}@media only screen and (max-width:479px){.mec-container{width:300px}}@media only screen and (min-width:480px) and (max-width:767px){.mec-container{width:420px}}@media only screen and (min-width:768px) and (max-width:960px){.mec-container{width:768px}}@media only screen and (min-width:961px){.mec-container{width:960px}}@media only screen and (min-width:1200px){.mec-container{width:1196px;padding-left:15px;padding-right:15px}}@media only screen and (min-width:1921px){.mec-container{max-width:1690px}}.mec-wrap .row{margin-left:-10px;margin-right:-10px}.mec-wrap .row:after,.mec-wrap .row:before{content:" ";display:table}.mec-wrap .row:after{clear:both}.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9,.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9,.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9,.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{position:relative;min-height:1px;padding-left:10px;padding-right:10px}@media only screen and (min-width:1200px){.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9,.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9,.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9,.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{padding-left:15px;padding-right:15px}.mec-wrap .row{margin-left:-15px;margin-right:-15px}}.mec-container [class*=col-].alpha{padding-left:0}.mec-container [class*=col-].omega{padding-right:0}.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{float:left}.mec-wrap .col-xs-12{width:100%}.mec-wrap .col-xs-11{width:91.66666666666666%}.mec-wrap .col-xs-10{width:83.33333333333334%}.mec-wrap .col-xs-9{width:75%}.mec-wrap .col-xs-8{width:66.66666666666666%}.mec-wrap .col-xs-7{width:58.333333333333336%}.mec-wrap .col-xs-6{width:50%}.mec-wrap .col-xs-5{width:41.66666666666667%}.mec-wrap .col-xs-4{width:33.33333333333333%}.mec-wrap .col-xs-3{width:25%}.mec-wrap .col-xs-2{width:16.666666666666664%}.mec-wrap .col-xs-1{width:8.333333333333332%}@media (min-width:768px){.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9{float:left}.mec-wrap .col-sm-12{width:100%}.mec-wrap .col-sm-11{width:91.66666666666666%}.mec-wrap .col-sm-10{width:83.33333333333334%}.mec-wrap .col-sm-9{width:75%}.mec-wrap .col-sm-8{width:66.66666666666666%}.mec-wrap .col-sm-7{width:58.333333333333336%}.mec-wrap .col-sm-6{width:50%}.mec-wrap .col-sm-5{width:41.66666666666667%}.mec-wrap .col-sm-4{width:33.33333333333333%}.mec-wrap .col-sm-3{width:25%}.mec-wrap .col-sm-2{width:16.666666666666664%}.mec-wrap .col-sm-1{width:8.333333333333332%}}@media (min-width:961px){.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9{float:left}.mec-wrap .col-md-12{width:100%}.mec-wrap .col-md-11{width:91.66666666666666%}.mec-wrap .col-md-10{width:83.33333333333334%}.mec-wrap .col-md-9{width:75%}.mec-wrap .col-md-8{width:66.66666666666666%}.mec-wrap .col-md-7{width:58.333333333333336%}.mec-wrap .col-md-6{width:50%}.mec-wrap .col-md-5{width:41.66666666666667%}.mec-wrap .col-md-4{width:33.33333333333333%}.mec-wrap .col-md-3{width:25%}.mec-wrap .col-md-2{width:16.666666666666664%}.mec-wrap .col-md-1{width:8.333333333333332%}}@media (min-width:1200px){.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9{float:left}.mec-wrap .col-lg-12{width:100%}.mec-wrap .col-lg-11{width:91.66666666666666%}.mec-wrap .col-lg-10{width:83.33333333333334%}.mec-wrap .col-lg-9{width:75%}.mec-wrap .col-lg-8{width:66.66666666666666%}.mec-wrap .col-lg-7{width:58.333333333333336%}.mec-wrap .col-lg-6{width:50%}.mec-wrap .col-lg-5{width:41.66666666666667%}.mec-wrap .col-lg-4{width:33.33333333333333%}.mec-wrap .col-lg-3{width:25%}.mec-wrap .col-lg-2{width:16.666666666666664%}.mec-wrap .col-lg-1{width:8.333333333333332%}}#mec_woo_add_to_cart_btn{min-width:170px;margin-top:5px;text-align:center}.mec-breadcrumbs{border-radius:2px;padding:9px 15px 6px;font-size:11px;color:#8d8d8d;letter-spacing:0;text-transform:none;font-weight:500;margin:auto 15px 33px 15px;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.025)}.mec-breadcrumbs-modern{margin:auto 0 33px 0}.mec-breadcrumbs a{color:#000;padding-left:4px}.mec-breadcrumbs a:hover{text-decoration:underline}.mec-breadcrumbs i{font-size:8px;margin:0 0 0 4px}.mec-breadcrumbs .container{padding-left:20px}.mec-content-notification a{margin-left:5px}.mec-content-notification{background:#f7f7f7;padding:10px 10px 10px;border:1px solid #e8e8e8}.mec-content-notification p{margin-bottom:0}#mec-advanced-wraper div:first-child>ul{display:block;margin:0;border-bottom:2px solid #0dbdd4;width:390px;background:#13cbe8}#mec-advanced-wraper div:first-child>ul span{display:none}#mec-advanced-wraper div:first-child>ul *{display:inline-block;background:#13cbe8;font-style:italic;color:#fff;text-align:center}#mec-advanced-wraper div:first-child>ul>li{font-size:15px;width:60px;margin:0;padding:4px 0;border-right:2px solid #0dbdd4}#mec-advanced-wraper div:first-child>ul>ul>li{font-size:14px;margin:0;padding:2px 10px;cursor:pointer;border-radius:4px}#mec-advanced-wraper div:first-child>ul>ul>li:hover,.mec-active{background:#008aff!important}
|
1 |
+
.lity-container,.mec-wrap,.mec-wrap div:not([class^=elementor-]){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 a.button:not(.owl-dot),.mec-wrap button:not(.owl-dot),.mec-wrap input[type=button],.mec-wrap input[type=reset],.mec-wrap input[type=submit]{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease}.mec-wrap .button:hover,.mec-wrap a.button:hover,.mec-wrap button:hover,.mec-wrap input[type=button]:hover,.mec-wrap input[type=reset]:hover,.mec-wrap input[type=submit]:hover{background:#222;color:#fff}.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,.mec-event-sharing-wrap:hover li ul li a{border:none;color:#767676}.mec-event-sharing-wrap li i{width:36px;height:36px;display:table-cell;vertical-align:middle}.mec-event-sharing-wrap .mec-event-sharing li a{display:block}.mec-event-sharing-wrap .mec-event-sharing li:hover a{color:#40d9f1}.mec-event-sharing .mec-event-share:hover .event-sharing-icon{background:#40d9f1;border-width:0 1px 0;cursor:pointer}.mec-event-sharing .mec-event-map{border-width:1px 0 1px}.mec-event-footer .mec-booking-button{box-shadow:none;transition:all .21s ease;font-size:11px;font-weight:500;letter-spacing:1px;text-transform:uppercase;background:#fff;color:#767676;border:1px solid #e8e8e8;position:absolute;top:20px;right:15px;padding:0 16px;line-height:37px;height:38px}.mec-event-footer .mec-booking-button:hover{background:#191919;color:#fff;border-color:#191919}@media only screen and (max-width:960px){.mec-event-grid-classic{margin-bottom:30px}}.mec-widget .mec-event-grid-classic.mec-owl-carousel{padding:36px 0 16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav{margin:5px 0;width:100%;position:absolute;top:15px;padding:0}.mec-skin-grid-container.mec-widget{padding-top:18px}.mec-widget .mec-event-grid-classic.mec-owl-carousel{padding:20px 0 16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav{margin:0;width:100%;position:absolute;top:0;padding:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav div{position:absolute;background:#fff;line-height:0;width:34px;height:26px;padding:6px;text-align:center;margin-top:-17px;border-radius:3px;border:1px solid #e2e2e2;text-align:center;box-shadow:0 2px 0 0 rgba(0,0,0,.028);transition:all .33s ease}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav .owl-next{right:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav .owl-prev{left:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-sharing{display:none}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-footer{text-align:center}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-footer .mec-booking-button{position:static;padding:11px 16px}.widget .mec-event-footer ul.mec-event-sharing-wrap li a.mec-event-share-icon{padding:0}@media screen and (min-width:56.875em){.mec-widget .mec-month-container dl{margin-bottom:0}}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-footer{text-align:right}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-sharing-wrap{left:5px;padding-left:5px}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-sharing-wrap .mec-event-sharing{left:0}.mec-widget .mec-event-sharing-wrap .mec-event-sharing{position:absolute;top:auto;bottom:52px;margin:0;margin-top:0;border-radius:5px}.mec-widget .mec-event-sharing-wrap .mec-event-sharing:after{top:auto;bottom:-17px;border-color:#fff transparent transparent transparent}.mec-widget .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-18px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-grid-clean{margin-bottom:10px;max-width:none}.mec-event-grid-clean .mec-event-article{margin-bottom:30px;position:relative;border:1px solid #e2e2e2;text-align:center;padding:15px 15px 0;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-clean .mec-event-content{background:#fff;color:#767676;padding:25px 16px 0;text-align:left}.mec-event-grid-clean .mec-event-title{color:#202020;margin:0 0 10px 0;font-weight:700;font-size:21px;text-transform:capitalize}.mec-event-grid-clean .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-clean .mec-event-date{font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:1px;background-color:#40d9f1;color:#fff;padding:3px 0;margin:0;text-align:center}.mec-event-grid-clean .mec-event-content p{font-size:15px;color:#9a9a9a;line-height:1.54}.mec-event-grid-clean img{margin-bottom:0;width:100%}.mec-event-grid-clean .event-grid-t2-head{margin-bottom:10px;color:#fff;padding:9px 14px 6px;text-align:left}.mec-event-grid-clean .event-grid-t2-head .mec-event-date{font-size:50px;line-height:50px;float:left;margin-right:11px}.mec-event-grid-clean .event-grid-t2-head .mec-event-month{text-transform:uppercase;font-size:17px;line-height:20px;padding-top:4px}.mec-event-grid-clean .event-grid-t2-head .mec-event-detail{font-size:12px}.mec-event-grid-clean .mec-event-sharing-wrap{left:0}.mec-event-grid-clean .mec-event-footer{position:relative;border-top:2px solid;padding:20px 0;margin:0 14px;text-align:left;background:0 0}.mec-event-grid-clean .mec-event-footer .mec-booking-button{right:0}.mec-event-grid-clean .row{margin-bottom:30px}.mec-event-grid-modern{margin-bottom:10px;max-width:none}.mec-event-grid-modern .mec-event-article{position:relative;border:1px solid #e2e2e2;text-align:center;margin-bottom:30px;padding:45px 15px 10px;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-modern .mec-event-content{background:#fff;color:#767676;padding:35px 15px 10px;text-align:left}.mec-event-grid-modern .mec-event-title{color:#202020;margin:0 0 10px 0;font-weight:700;font-size:24px;text-transform:none;letter-spacing:-1px}.mec-event-grid-modern .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-modern .mec-event-content p{font-size:15px;color:#9a9a9a;line-height:1.54}.mec-event-grid-modern img{margin-bottom:0;width:100%}.mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:9px 14px 6px;text-align:left}.mec-event-grid-modern .event-grid-modern-head .mec-event-date{font-size:50px;line-height:50px;float:left;margin-right:11px}.mec-event-grid-modern .event-grid-modern-head .mec-event-month{text-transform:uppercase;font-size:17px;line-height:20px;padding-top:4px}.mec-event-grid-modern .event-grid-modern-head .mec-event-detail{font-size:12px}.mec-event-grid-modern .event-grid-modern-head .mec-event-day{margin-top:9px;color:silver;font-family:Roboto,sans-serif;font-size:35px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.mec-event-grid-modern .mec-event-footer{position:relative;height:90px;padding:20px 0;border:none;margin:0 14px;text-align:left;background:0 0}.mec-event-grid-modern .mec-event-footer .mec-booking-button{right:auto;left:0}.mec-event-grid-modern .mec-event-sharing-wrap{left:auto;right:0}.mec-event-grid-modern .mec-event-sharing{left:auto;right:-6px}.mec-event-grid-modern .mec-event-sharing-wrap li{border-radius:55px}.mec-event-grid-modern .row{margin-bottom:0}@media only screen and (max-width:479px){.mec-event-grid-modern .mec-event-article{padding-bottom:30px}.mec-event-grid-modern .mec-event-sharing{top:60px;left:0;right:auto}.mec-event-grid-modern .mec-event-footer .mec-booking-button{top:0}}.mec-event-grid-colorful .mec-event-article{min-height:400px;border:none;box-shadow:none;background:#40d9f1;padding-top:25px;margin:0;color:#fff}.mec-event-grid-colorful .mec-event-content{background:0 0}.mec-event-grid-colorful .event-grid-modern-head,.mec-event-grid-colorful .event-grid-modern-head .mec-event-date,.mec-event-grid-colorful .event-grid-modern-head .mec-event-day,.mec-event-grid-colorful .mec-event-content p,.mec-event-grid-colorful .mec-event-sharing-wrap>li>a,.mec-event-grid-colorful .mec-event-title a{color:#fff}.mec-event-grid-colorful .mec-event-footer .mec-booking-button{border:none}.mec-event-grid-colorful .mec-event-sharing-wrap>li{border-color:#fff}.mec-event-grid-colorful .mec-event-sharing-wrap:hover>li{background:#333;border-color:#333}.mec-event-grid-colorful .mec-event-title a.mec-color-hover:hover{color:#fff;text-decoration:underline}.mec-event-grid-colorful .mec-event-title .event-color{display:none}.mec-event-grid-colorful div[class^=col-md-]{padding:0 1px 1px 0;margin:0}@media only screen and (min-width:768px){.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-day{font-size:26px}.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-month{font-size:15px}.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-date{font-size:50px}.mec-wrap.mec-sm959.mec-event-grid-colorful .mec-event-title{font-size:21px}.mec-wrap.mec-sm959.mec-event-grid-colorful .mec-event-content p{font-size:13px}}@media only screen and (min-width:768px) and (max-width:1200px){.mec-wrap.mec-sm959.mec-event-grid-colorful div[class^=col-md-]{width:50%}}.mec-event-list-minimal .mec-event-article{border-bottom:1px solid #efefef;padding:24px 0 16px}.mec-event-list-minimal .mec-wrap .col-md-9{padding:0}.mec-event-list-minimal .mec-event-date{position:relative;float:left;margin-right:30px;color:#fff;width:52px;padding:6px 4px 3px;text-align:center;text-transform:uppercase;border-radius:3px}.mec-event-list-minimal .mec-event-date span{display:block;font-size:24px;font-weight:700;text-align:center;margin-bottom:4px}.mec-event-list-minimal .mec-event-date:after{display:block;content:"";position:absolute;width:50px;left:1px;top:1px;height:30px;background:rgba(255,255,255,.1);box-shadow:0 4px 4px rgba(0,0,0,.02)}.mec-event-list-minimal .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;font-size:18px;text-transform:uppercase;letter-spacing:0;padding-top:5px}.mec-event-list-minimal .mec-event-detail{font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;font-family:Roboto,sans-serif}.mec-event-list-minimal .btn-wrapper{text-align:right;padding-right:0;padding-top:6px}.mec-event-list-minimal .btn-wrapper .mec-detail-button{border-bottom:0;margin-bottom:14px;margin-right:0;box-shadow:none}.mec-event-list-minimal a.mec-detail-button{text-align:center;display:inline-block;background:#ededed;color:#191919;padding:12px;border-radius:2px;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:2px;transition:all .24s ease}.mec-event-list-minimal a.mec-detail-button:hover{background:#292929;color:#fff}.vc_col-sm-4 .mec-event-list-minimal .mec-event-date,.vc_col-sm-6 .mec-event-list-minimal .mec-event-date{margin-right:12px}.vc_col-sm-4 .mec-event-list-minimal .mec-event-title,.vc_col-sm-6 .mec-event-list-minimal .mec-event-title{font-size:15px;letter-spacing:2px}@media only screen and (min-width:480px) and (max-width:767px){.mec-event-list-minimal .btn-wrapper{padding-left:0}.mec-event-list-minimal .mec-event-date{margin-right:10px}}@media only screen and (max-width:767px){.mec-event-list-minimal .btn-wrapper .mec-detail-button{display:block;text-align:center;margin:0;margin-top:16px;padding:8px}.mec-event-list-minimal .btn-wrapper{margin:12px 0}}@media only screen and (max-width:479px){.mec-event-list-minimal .mec-event-date{float:none;width:100%;margin-bottom:8px}.mec-event-list-minimal .mec-event-date span{display:inline;padding-right:25px;margin-right:7px;font-size:inherit}.mec-event-list-minimal .mec-event-date:after{width:45%;box-shadow:4px 0 4px rgba(0,0,0,.02)}.mec-event-list-minimal .btn-wrapper{text-align:center;padding-left:0}.mec-event-list-minimal{text-align:center}.mec-event-list-minimal .mec-event-detail{margin-bottom:10px}}.mec-wrap .mec-event-list-modern .mec-event-title{margin-top:0;margin-bottom:10px}.mec-event-list-modern .mec-event-article{border-bottom:1px solid #efefef;padding:30px 0 10px}.mec-event-list-modern .mec-event-article:last-child{border-bottom:none}.mec-event-list-modern .mec-event-title a{color:#191919;transition:all .24s ease;box-shadow:none}.mec-event-list-modern .mec-event-date{text-transform:uppercase;padding:10px 0}.mec-event-list-modern .mec-event-date .event-d{font-size:48px;display:table-cell;padding:10px 0 0}.mec-event-list-modern .mec-event-date .event-f{font-size:13px;display:table-cell;vertical-align:middle;padding-left:7px;font-weight:500;letter-spacing:3px;color:#777}.mec-event-list-modern .mec-event-detail{font-weight:300;color:#8a8a8a}.mec-event-list-modern .mec-event-date .event-da{margin-top:9px;color:silver;font-family:Roboto,sans-serif;font-size:28px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.mec-event-list-modern .mec-btn-wrapper .mec-booking-button{border-radius:1px;letter-spacing:2px;border:1px solid #e6e6e6;color:#333;background-color:#fff;padding:13px 20px;font-weight:700;font-size:11px;box-shadow:0 2px 0 0 rgba(0,0,0,.016);transition:all .28s ease}.mec-event-list-modern .mec-btn-wrapper .mec-booking-button:hover{border-color:#222;background:#222;color:#fff}.mec-event-list-modern .mec-event-title{font-weight:700;font-size:20px;text-transform:uppercase;letter-spacing:1px}.mec-event-list-modern .mec-event-detail{color:#9a9a9a;font-size:15px;font-weight:300;line-height:25px;font-family:Roboto,sans-serif}.mec-event-list-modern .mec-btn-wrapper{text-align:right;padding:10px 0;text-transform:uppercase}.mec-event-list-modern .mec-event-sharing{position:relative;margin:10px 0}.mec-event-list-modern .mec-event-sharing>li{display:inline-block;border:none;border-radius:50%;margin-right:3px}.mec-event-list-modern .mec-event-sharing>li:hover{display:inline-block}.mec-event-list-modern .mec-event-sharing>li:hover a i{color:#fff;background:#40d9f1;border-color:#40d9f1}.mec-event-list-modern .mec-event-sharing>li i{width:36px;display:inline-block;line-height:35px;color:#767676;text-align:center;border-radius:50%;border:1px solid #ddd;font-size:14px}.mec-event-list-modern .mec-event-sharing .mec-event-share:hover .mec-event-sharing-icon{background:#40d9f1;border-color:#40d9f1;cursor:pointer;border-radius:50%}.mec-event-list-modern .mec-event-sharing li:hover a i{background:#40d9f1}@media only screen and (min-width:768px){.mec-event-list-modern .mec-event-article{position:relative;min-height:160px;overflow:hidden}.mec-event-list-modern .col-md-2.col-sm-2{width:210px;position:absolute;left:0;top:20px}.mec-event-list-modern .col-md-4.col-sm-4.mec-btn-wrapper{width:180px;padding:0;position:absolute;right:0;top:30%}.mec-event-list-modern .col-md-6.col-sm-6{width:100%;padding-left:225px;padding-right:195px}}@media only screen and (max-width:767px){.mec-event-list-modern .mec-btn-wrapper .mec-booking-button{letter-spacing:1px;border:1px solid #e1e1e1;padding:8px 16px}.mec-event-list-modern .mec-btn-wrapper{padding:0 0 12px}.mec-event-list-modern .mec-event-sharing{margin-bottom:0}}.mec-event-grid-minimal .mec-event-article{margin:15px 0;min-height:80px;display:table}.mec-event-grid-minimal .event-detail-wrap{display:table-cell;vertical-align:middle}.mec-event-grid-minimal .mec-event-date{width:70px;float:left;margin-right:20px;padding:12px 16px 10px;text-align:center;text-transform:uppercase;border-radius:4px;border:1px solid #e6e6e6;transition:all .37s ease-in-out;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-minimal .mec-event-date span{display:block;font-size:24px;font-weight:700;text-align:center;margin-bottom:4px;color:#2a2a2a;transition:color .3s ease}.mec-event-grid-minimal .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;line-height:21px;font-size:16px;text-transform:uppercase;transition:color .3s ease}.mec-event-grid-minimal .mec-event-title a{color:#191919;transition:color .3s ease}.mec-event-grid-minimal .mec-event-detail{font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;font-family:Roboto,sans-serif}.mec-event-grid-minimal .mec-event-date:hover{color:#fff}.mec-event-grid-minimal .mec-event-date:hover span{color:#fff}.mec-event-list-classic .mec-event-article{padding:12px 0;margin-bottom:20px}.mec-event-list-classic .mec-event-image{float:left;width:86px;margin-right:20px}.mec-event-list-classic .mec-event-date{font-weight:400;font-size:13px;letter-spacing:0;line-height:18px}.mec-event-list-classic .mec-event-date span{font-weight:500;margin-bottom:6px}.mec-event-list-classic .mec-event-title{font-size:15px;margin:10px 0 12px;font-weight:700;text-transform:uppercase}.mec-event-list-classic .mec-event-title a{color:#494949;transition:color .3s ease}.mec-event-list-classic .mec-event-detail{color:#777;font-weight:400;line-height:12px;font-size:12px;overflow:hidden}.mec-event-list-classic a.magicmore{padding:10px 16px;color:#fff;background:#222;letter-spacing:2px;font-size:11px}.mec-event-list-classic a.magicmore:after{content:"";display:none}.mec-event-list-classic a.magicmore:hover{color:#40d9f1}.mec-event-grid-simple .mec-event-article{position:relative;margin-bottom:30px}.mec-event-grid-simple .mec-event-article:after{border-right:1px solid #e6e6e6;height:60px;position:absolute;top:50%;margin-top:-30px;right:-1px}.mec-event-grid-simple .row div:last-child .mec-event-article:after{border:none}.mec-event-grid-simple .row{margin:15px 0 30px;text-align:center}.mec-event-grid-simple .mec-event-date{padding:0;margin:0;text-transform:capitalize;font-size:12px;font-weight:700}.mec-event-grid-simple .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;line-height:21px;font-size:15px;padding-top:5px;text-transform:uppercase;transition:color .37s ease}.mec-event-grid-simple .mec-event-title a{color:#494949;transition:color .3s ease}.mec-event-grid-simple .mec-event-detail{font-family:Roboto,sans-serif;font-weight:400;line-height:1;letter-spacing:0;font-size:13px;color:#777}.mec-event-grid-simple:hover .mec-event-title{color:#40d9f1}.mec-event-grid-simple:hover .mec-event-date{background:0 0}.event-last:after{display:none}@media only screen and (max-width:767px){.mec-event-grid-simple .mec-event-article{padding-bottom:20px;margin-bottom:20px;border-bottom:1px solid #eee}.mec-event-grid-simple .mec-event-article:after{border:none}}.mec-event-grid-novel .mec-event-article{position:relative;margin-bottom:30px;padding:60px 5% 60px 7%;border:1px solid rgba(255,255,255,.12);border-radius:10px;background-color:#0050fd;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease;z-index:1}.mec-event-grid-novel .mec-event-article .novel-grad-bg{position:absolute;top:0;left:0;width:100%;height:100%;border-radius:10px;opacity:0;z-index:-1;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease}.mec-event-grid-novel .mec-event-article:hover{-webkit-box-shadow:0 13px 36px 0 rgba(0,0,0,.23);box-shadow:0 13px 36px 0 rgba(0,0,0,.23);border-color:transparent}.mec-event-grid-novel .mec-event-article:hover .novel-grad-bg{background-image:-webkit-gradient(linear,left top,right top,from(#262e32),to(#0e1015));background-image:-webkit-linear-gradient(left,#262e32 0,#0e1015 100%);background-image:-o-linear-gradient(left,#262e32 0,#0e1015 100%);background-image:linear-gradient(90deg,#262e32 0,#0e1015 100%);opacity:1}.mec-event-grid-novel .mec-event-image{float:left;width:150px;height:150px}.mec-event-grid-novel .mec-event-image img{width:150px;height:150px;border-radius:50%}.mec-event-grid-novel .mec-event-detail-wrap{margin-left:200px}.mec-event-grid-novel .mec-event-content h4{position:relative;margin-bottom:10px;display:inline-block}.mec-event-grid-novel .mec-event-content h4 a{font-size:24px;line-height:35px;color:#fafcff}.mec-event-grid-novel .mec-event-content h4::before{content:'';position:absolute;top:8px;left:-30px;width:17px;height:17px;background:#5cd0ed;opacity:.4;border-radius:50%}.mec-event-grid-novel .mec-event-content h4::after{content:'';position:absolute;top:12px;left:-26px;width:9px;height:9px;background:#5cd0ed;border-radius:50%}.mec-event-grid-novel .mec-event-address,.mec-event-grid-novel .mec-event-detail,.mec-event-grid-novel .mec-event-month{position:relative;padding-left:35px;font-size:15px;line-height:30px;color:rgba(255,255,255,.4)}.mec-event-grid-novel .mec-event-address::before,.mec-event-grid-novel .mec-event-detail::before,.mec-event-grid-novel .mec-event-month::before{position:absolute;top:6px;left:6px;font-size:17px;font-family:simple-line-icons;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1}.mec-event-grid-novel .mec-event-month::before{content:"\e075"}.mec-event-grid-novel .mec-event-detail::before{content:"\e081"}.mec-event-grid-novel .mec-event-address::before{content:"\e096"}.mec-event-grid-novel .mec-event-footer{clear:both;padding:20px 0;border-top:none;background:0 0}.mec-event-grid-novel .mec-event-footer .mec-booking-button{right:auto;left:0;height:42px;width:148px;padding:0 20px;font-size:14px;font-weight:400;line-height:42px;text-align:center;color:#fff;background:0 0;border-color:rgba(255,255,255,.1);border-radius:50px}.mec-event-grid-novel .mec-event-footer .mec-booking-button:hover{background-color:rgba(255,255,255,.1)}.mec-event-grid-novel .mec-event-sharing-wrap{left:175px;cursor:pointer}.mec-event-grid-novel .mec-event-sharing-wrap>li{border-color:rgba(255,255,255,.1);border-radius:50%}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing{top:-5px;left:0;padding:5px 10px 2px 50px;min-width:150px;width:inherit;height:37px;background-color:rgba(255,255,255,.1);-webkit-box-shadow:none;box-shadow:none;border:none;border-radius:50px}.mec-event-grid-novel .mec-event-sharing-wrap:hover>li{background-color:rgba(255,255,255,.1)}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing::after,.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing::before{display:none}.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon,.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon a,.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li i{display:inline}.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon a{padding:0 10px}.mec-event-grid-novel .mec-event-sharing-wrap>li a{color:#fff}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li a{color:rgba(255,255,255,.4)}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li a:hover{color:rgba(255,255,255,1)}@media only screen and (max-width:1200px){.mec-event-grid-novel .row .col-md-6.col-sm-6{width:100%;float:none}.mec-event-grid-novel .mec-event-image{float:none;margin-top:-20px;margin-bottom:20px}.mec-event-grid-novel .mec-event-detail-wrap{margin-left:20px}.mec-event-grid-novel .mec-event-footer{margin-top:30px}}@media only screen and (max-width:767px){.mec-event-grid-novel .mec-event-footer{margin-top:0;padding-top:30px;margin-bottom:24px}.mec-event-grid-novel .mec-event-footer .mec-booking-button{display:block;position:relative}.mec-event-grid-novel .mec-event-sharing-wrap{left:0;bottom:-55px}.mec-event-grid-novel .mec-event-content h4 a{font-size:20px;line-height:1.3}}.mec-event-cover-modern{position:relative}.mec-event-cover-modern .mec-event-cover-a{background:0 0;position:absolute;color:#fff;bottom:0;left:0;text-decoration:none}.mec-event-cover-modern .mec-event-cover-a .mec-event-overlay{transition:all .5s;opacity:.8;width:100%;height:100%;position:absolute}.mec-event-cover-modern .mec-event-cover-a:hover .mec-event-overlay{opacity:1}.mec-event-cover-modern .mec-event-detail{padding:40px;position:relative}.mec-event-cover-modern .mec-event-cover-a:hover .mec-event-tag{color:#333;transition:all .5s}.mec-event-cover-modern .mec-event-cover-a .mec-event-title:hover{text-decoration:underline}.mec-event-cover-modern .mec-event-tag{background:#fff;display:inline-block;padding:5px 9px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:24px}.mec-event-cover-modern .mec-event-date{text-transform:uppercase;font-size:17px;font-weight:300}.mec-event-cover-modern .mec-event-title{color:#fff;text-transform:uppercase;font-size:40px;font-weight:700;margin:6px 0}.mec-event-cover-modern .mec-event-place{font-weight:400;font-size:18px;font-family:Roboto,sans-serif}@media only screen and (max-width:767px){.mec-event-cover-modern .mec-event-cover-a{width:100%}}.mec-event-cover-classic{position:relative;overflow:hidden;background:#fff;padding:6px;border:1px solid #e8e8e8}.mec-event-cover-classic .mec-event-overlay{position:absolute;left:6px;right:6px;bottom:6px;top:6px;width:auto;height:auto;background-color:rgba(36,36,36,.4);transition:all .33s ease-in-out}.mec-event-cover-classic:hover .mec-event-overlay{background-color:rgba(36,36,36,.6)}.mec-event-cover-classic .mec-event-content{font-size:15px;color:#fff;position:absolute;bottom:0;padding:50px 35px;transition:all .33s ease-in-out}.mec-event-cover-classic .mec-event-date{font-size:14px;text-transform:uppercase;font-weight:400;line-height:1.6}.mec-event-cover-classic .mec-event-date span{display:block;font-weight:700;font-size:16px}.mec-event-cover-classic .mec-event-title{color:#fff;margin:20px 0 38px;font-size:24px;font-weight:700;text-transform:uppercase;font-style:normal}.mec-event-cover-classic .mec-btn-wrapper{text-align:left}.mec-event-cover-classic .mec-event-icon{font-size:18px;float:left;margin-right:14px;color:#fff;padding:13px}.mec-event-cover-classic .mec-event-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:12px 20px;letter-spacing:3px;font-size:12px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none}.mec-event-cover-classic .mec-event-button:hover{color:#191919;background-color:#fff;border-color:#fff;border-radius:1px}.mec-event-cover-classic .mec-event-image img{min-width:100%}@media only screen and (max-width:960px){.mec-event-cover-classic .mec-event-content{padding:20px}.mec-event-cover-classic .mec-event-button{font-size:11px;padding:7px 10px;letter-spacing:1px}.mec-event-cover-classic .mec-event-title{font-size:19px;margin:15px 0 25px}.mec-event-cover-classic .mec-event-date{font-size:12px}}@media only screen and (max-width:767px){.mec-event-cover-classic{margin-bottom:30px}}@media only screen and (max-width:479px){.mec-event-cover-classic .mec-event-content{padding:15px;font-size:15px}.mec-event-cover-classic .mec-event-title{font-size:15px;margin:10px 0}.mec-event-cover-classic .mec-event-button{font-size:10px;padding:6px;letter-spacing:1px}.mec-event-cover-classic .mec-event-icon{padding:10px}}.mec-load-more-wrap{text-align:center;display:block;width:100%;padding-top:20px;text-align:center;position:relative}.mec-load-more-button{box-shadow:none;transition:all .21s ease;font-size:12px;font-weight:500;letter-spacing:1px;text-transform:uppercase;background:#fff;color:#767676;border:2px solid #e8e8e8;border-radius:50px;padding:0 28px;margin-bottom:20px;cursor:pointer;line-height:40px;font-family:Montserrat,Helvetica,Arial,sans-serif;height:42px;display:inline-block}.mec-load-more-button:hover{background:#191919;color:#fff;border-color:#191919}.mec-load-more-loading{content:url(../img/ajax-loader.gif);cursor:wait;background:0 0;border-style:none}.mec-load-more-loading:hover{background:0 0}.mec-modal-preloader,.mec-month-navigator-loading{width:100%;height:100%;background:no-repeat rgba(255,255,255,.88) url(../img/ajax-loader.gif) center;border-style:none;position:fixed;left:0;right:0;bottom:0;top:0;z-index:9}.mec-event-calendar-classic .mec-calendar-side .mec-calendar-table{min-height:1024px}.mec-calendar-side .mec-calendar-table{min-height:450px}.mec-skin-weekly-view-events-container.mec-month-navigator-loading{margin-top:0}.mec-calendar.mec-event-calendar-classic .mec-calendar-side{display:block}.mec-skin-daily-view-events-container.mec-month-navigator-loading{margin-top:0}@media only screen and (min-width:961px){.mec-wrap.mec-sm959 .mec-calendar-side .mec-calendar-table{min-height:1px}}@media only screen and (max-width:479px){.mec-calendar-side .mec-calendar-table{min-height:1px}}.mec-event-cover-clean{position:relative;border:1px solid #e6e6e6;padding:8px}.mec-event-cover-clean .mec-event-overlay{height:100%;background-color:rgba(36,36,36,.4);position:absolute;width:100%;left:0;border:8px solid #fff;top:0;transition:all .5s ease-in-out}.mec-event-cover-clean .mec-event-content{color:#fff;position:absolute;bottom:20px;padding:40px 60px;transition:all .5s ease-in-out}.mec-event-cover-clean .mec-event-title{color:#fff;font-weight:700;margin:46px 0 19px;font-size:29px;text-transform:uppercase;text-shadow:0 0 1px rgba(0,0,0,.5)}.mec-event-cover-clean .mec-event-title a{color:#fff;transition:all .5s;text-decoration:none;outline:0;border:none;box-shadow:none}.mec-event-cover-clean .mec-event-title a:hover{text-decoration:underline}.mec-event-cover-clean .mec-event-date{position:absolute;top:-20px;right:60px;color:#fff;width:60px;padding:14px 10px;z-index:1}.mec-event-cover-clean .mec-event-date div{text-align:center;text-transform:uppercase;letter-spacing:1px;line-height:16px}.mec-event-cover-clean .mec-event-date .dday{padding-bottom:15px;border-bottom:1px solid rgba(255,255,255,.5);margin-bottom:13px;font-size:24px}.mec-event-cover-clean .mec-event-date .dmonth{letter-spacing:2px}.mec-event-cover-clean .mec-event-place{font-size:18px;font-family:Roboto,sans-serif}.mec-event-cover-clean .mec-event-image img{width:100%}@media only screen and (max-width:768px){.mec-event-cover-clean .mec-event-content{padding:20px;bottom:5px}.mec-event-cover-clean .mec-event-title{font-size:23px}.mec-event-cover-clean .mec-event-date{right:20px;padding:10px;width:50px}}@media only screen and (max-width:479px){.mec-event-cover-clean .mec-event-content{padding:10px}.mec-event-cover-clean .mec-event-title{font-size:19px;padding-right:25px}.mec-event-cover-clean .mec-event-date{right:-20px;top:-10px}.mec-event-cover-clean .mec-event-detail{font-size:12px}}.mec-month-divider{text-align:center;margin:60px 0 40px 0}.widget .mec-month-divider{margin:10px 0}.mec-month-divider span{text-transform:uppercase;font-size:22px;font-weight:700;padding-bottom:5px;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative}.mec-month-divider span:before{border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-30px;left:50%;width:60px}.widget .mec-month-divider span{font-size:13px}.mec-event-list-standard .mec-events-pagination{margin-top:60px;border-top:4px solid #ebebeb;min-height:80px;padding-top:20px}.mec-event-list-standard .mec-events-pagination .mec-events-pag-previous{float:left;margin-left:0}.mec-event-list-standard .mec-events-pagination .mec-events-pag-next{float:right;margin-right:0}.mec-event-list-standard .mec-event-article{position:relative;display:block;margin-bottom:25px;border:1px solid #e9e9e9;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-list-standard .mec-topsec{display:table;width:100%}.mec-event-list-standard .col-md-3.mec-event-image-wrap{padding-left:0}.mec-event-list-standard .mec-event-content{padding-top:15px;padding-right:30px}.mec-event-list-standard .mec-event-title{font-size:29px;font-weight:700;letter-spacing:-1px;margin:0 0 10px}.mec-event-list-standard .mec-event-title a{color:#292929;transition:color .3s ease}.mec-event-list-standard .mec-col-table-c{display:table-cell;height:100%;vertical-align:middle;float:none!important}.mec-event-list-standard .mec-col-table-c.mec-event-meta-wrap{padding-top:15px}.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{vertical-align:top}.mec-topsec .mec-event-image{line-height:1px}.mec-event-list-standard .mec-event-meta-wrap{border-left:1px solid #eee}.mec-event-list-standard .mec-time-details{text-transform:uppercase;font-size:11px;font-weight:300;padding-top:0;text-align:left;padding-left:30px}.mec-event-list-standard .mec-event-meta .mec-event-address{font-style:normal;letter-spacing:0;font-size:13px;color:#8a8a8a}.mec-event-list-standard .mec-event-meta span.mec-event-d,.mec-event-list-standard .mec-event-meta span.mec-event-m{font-size:17px;font-weight:700;padding-right:6px;color:#444;text-transform:uppercase}.mec-event-list-standard .mec-date-details,.mec-event-list-standard .mec-time-details,.mec-event-list-standard .mec-venue-details{position:relative;padding-left:28px;margin-bottom:10px}.mec-event-list-standard .mec-date-details:before,.mec-event-list-standard .mec-time-details:before,.mec-event-list-standard .mec-venue-details:before{content:"\f041";font-family:fontawesome;position:absolute;left:6px;font-size:15px}.mec-event-list-standard .mec-date-details:before{content:"\f073"}.mec-event-list-standard .mec-time-details:before{content:"\f017"}.mec-event-list-minimal .mec-event-title a{color:#292929;transition:color .3s ease}.mec-event-meta-wrap .mec-price-details{margin-bottom:10px}.mec-price-details i{margin-right:5px;vertical-align:text-top}.mec-event-meta-wrap .mec-event-meta .mec-price-details i:before{font-size:15px}@media only screen and (max-width:960px){.mec-event-list-standard .mec-topsec{display:block}.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{display:block;width:40%}.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap{display:block;min-height:230px}.mec-event-list-standard .mec-event-meta-wrap{display:block;border-left:none;border-top:1px solid #eee;width:100%;float:none;padding-top:20px}}@media only screen and (min-width:480px) and (max-width:960px){.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap,.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{display:table-cell}}@media only screen and (max-width:479px){.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap,.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap img{float:none;width:100%;padding:0}.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap{padding:10px 10px 10px 30px}}.mec-wrap .mec-events-cal-links{margin-bottom:0}.mec-single-event #mec-wrap{padding:0;margin-top:35px}.mec-wrap .mec-single-title{margin-top:0;margin-bottom:30px;font-weight:700;font-size:33px}.mec-single-event .mec-event-content{padding:40px 0 30px;margin-bottom:10px}.mec-single-event .mec-events-meta-group-booking,.mec-single-event .mec-frontbox{margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-wrap #main-content{overflow:hidden;padding-top:35px}.mec-single-event .mec-map-get-direction-address-cnt{position:relative}.mec-single-event .mec-map-get-direction-address-cnt input.mec-map-get-direction-address{width:100%;height:46px;padding:13px 10px;margin-bottom:0;background:#fcfcfc;border:1px solid #e0e0e0;border-radius:0;box-shadow:inset 0 2px 5px rgba(0,0,0,.081)}.mec-single-event .mec-map-get-direction-address-cnt input.mec-map-get-direction-address:focus{color:#444;background:#fff;border-color:#b0b0b0;box-shadow:0 0 3px rgba(0,0,0,.2)}.mec-single-event .mec-map-get-direction-btn-cnt input{width:100%}.mec-single-event .mec-map-get-direction-reset{position:absolute;z-index:2;top:5px;right:10px;font-size:11px;cursor:pointer}.mec-events-meta-group-tags{margin-top:20px}.mec-events-meta-group-tags a{display:inline-block;color:#444;font-size:11px;text-transform:uppercase;letter-spacing:1.5px;font-weight:500;padding:3px 7px;border:1px solid #ddd;border-radius:2px;background:#fff;margin:1px 3px}.mec-events-meta-group-tags a:hover{text-decoration:underline;background:#f9f9f9}.mec-local-time-details li{list-style:none}.mec-single-event:not(.mec-single-modern) .mec-local-time-details{background:#f7f7f7;padding:12px 14px 8px;margin-bottom:12px;vertical-align:baseline;position:relative;border:none}.mec-single-event:not(.mec-single-modern) .mec-local-time-details ul{margin:0;padding-left:35px}.mec-single-event:not(.mec-single-modern) .mec-local-time-details h3{border:none;padding-left:15px}.mec-single-event:not(.mec-single-modern) .mec-local-time-details h3:before{display:none}.mec-single-event.mec-single-modern i.mec-sl-speedometer{display:none}.mec-single-event .mec-events-meta-group-booking{padding-bottom:30px}.mec-single-event .mec-events-meta-group-booking ul{list-style:none;margin-left:0;padding-left:0}.mec-single-event .mec-events-meta-group-booking ul li{padding:0;list-style:none;margin-top:40px}.mec-single-event .mec-events-meta-group-booking h4{margin-bottom:20px;font-size:23px;font-weight:700}.mec-single-event .mec-events-meta-group-booking li h4{font-size:19px}.mec-single-event .mec-events-meta-group-booking button,.mec-single-event .mec-events-meta-group-booking input{border-radius:0;margin-bottom:6px}.mec-single-event .mec-events-meta-group-booking button{min-width:170px;margin-top:5px}.mec-single-event .mec-events-meta-group-booking button{margin-left:15px}.mec-single-event .mec-book-form-coupon button{margin-left:0}.mec-single-event .mec-book-form-gateway-checkout button{margin-left:0}.mec-single-event .mec-book-first,.mec-single-event .mec-event-tickets-list{padding-left:15px;padding-right:15px}.mec-single-event label.mec-fill-attendees{margin-left:15px!important}.mec-single-event .mec-events-meta-group-booking .mec-event-ticket-available{display:block;margin-bottom:20px;margin-top:-17px;font-size:11px;color:#8a8a8a}.mec-single-event .mec-events-meta-group-booking .mec-book-price-total{display:inline-block;margin-bottom:10px;font-size:26px;color:#39c36e;font-weight:700;padding:10px 0}.mec-single-event .mec-events-meta-group-booking form{margin:0}.mec-single-event .mec-events-meta-group-booking h5 span,.mec-single-event .mec-events-meta-group-booking label{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:3px 0;display:block;clear:none;padding:5px 1em 3px 0}.mec-single-event .mec-events-meta-group-booking h5 span{display:inline-block}.mec-single-event .mec-events-meta-group-booking h5 span.mec-ticket-variation-name{padding-right:5px;text-transform:capitalize}.mec-single-event .mec-events-meta-group-booking input::-webkit-input-placeholder{color:#aaa}.mec-single-event .mec-events-meta-group-booking input:-moz-placeholder{color:#aaa}.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking input[type=email],.mec-single-event .mec-events-meta-group-booking input[type=number],.mec-single-event .mec-events-meta-group-booking input[type=password],.mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-single-event .mec-events-meta-group-booking input[type=text],.mec-single-event .mec-events-meta-group-booking select,.mec-single-event .mec-events-meta-group-booking textarea{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:330px;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both}.wbmec-mandatory{padding-left:5px;font-size:14px}.mec-single-event .mec-events-meta-group-booking .mec-red-notification input,.mec-single-event .mec-events-meta-group-booking .mec-red-notification select,.mec-single-event .mec-events-meta-group-booking .mec-red-notification textarea{border:1px solid #ff3c3c}.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=checkbox],.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=radio]{outline:1px solid #ff3c3c}@media only screen and (max-width:479px){.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking input[type=email],.mec-single-event .mec-events-meta-group-booking input[type=number],.mec-single-event .mec-events-meta-group-booking input[type=password],.mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-single-event .mec-events-meta-group-booking input[type=text],.mec-single-event .mec-events-meta-group-booking select,.mec-single-event .mec-events-meta-group-booking textarea{width:100%}}.mec-single-event .mec-events-meta-group-booking input[type=email]:focus,.mec-single-event .mec-events-meta-group-booking input[type=number]:focus,.mec-single-event .mec-events-meta-group-booking input[type=password]:focus,.mec-single-event .mec-events-meta-group-booking input[type=tel]:focus,.mec-single-event .mec-events-meta-group-booking input[type=text]:.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking select:focus,.mec-single-event .mec-events-meta-group-booking textarea:focus,focus{border:1px solid #aaa;color:#444;background:#fff;-moz-box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);box-shadow:0 0 3px rgba(0,0,0,.2);outline:0}.mec-single-event .mec-events-meta-group-booking input[type=checkbox],.mec-single-event .mec-events-meta-group-booking input[type=radio]{margin-right:6px;margin-top:5px;min-height:20px;clear:none;margin:0 0 0 2px}.lity-container .mec-events-meta-group-booking input[type=radio]:before,.mec-single-event .mec-events-meta-group-booking input[type=radio]:before{content:"";display:inline-block;background:#fff;border-radius:18px;width:18px;height:18px;margin:-1px 0 0 -3px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32)}.lity-container .mec-events-meta-group-booking input[type=radio]:checked:before,.mec-single-event .mec-events-meta-group-booking input[type=radio]:checked:before{border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff}.lity-container .mec-events-meta-group-booking input[type=radio],.mec-single-event .mec-events-meta-group-booking input[type=radio]{min-height:0;margin:0;margin-right:6px}.mec-single-event .mec-events-meta-group-booking input[type=checkbox]{float:left}.lity-container .mec-events-meta-group-booking .mec_book_first_for_all,.mec-single-event .mec-events-meta-group-booking .mec_book_first_for_all{display:none}.mec-events-meta-group-booking ul.mec-book-price-details{list-style:none;border:1px solid #eee;padding:0;overflow:hidden}.mec-events-meta-group-booking ul.mec-book-price-details li{font-size:15px;color:#a9a9a9;list-style:none;padding:13px 18px;margin:0;float:left;border-right:1px solid #eee}.mec-events-meta-group-booking ul.mec-book-price-details li:last-child{border-right:none}.mec-events-meta-group-booking ul.mec-book-price-details li span.mec-book-price-detail-amount{font-weight:700;font-size:21px;color:#222}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label{height:14px;width:14px;background-color:transparent;border:1px solid #d4d4d4;position:relative;display:inline-block;-moz-transition:border-color ease .2s;-o-transition:border-color ease .2s;-webkit-transition:border-color ease .2s;transition:border-color ease .2s;cursor:pointer;box-shadow:0 2px 16px -2px rgba(0,0,0,.2);vertical-align:middle;margin-right:3px;margin-top:-2px}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label{border-color:#008aff;box-shadow:0 2px 14px -3px #008aff}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:after,.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:before,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:after,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:before{position:absolute;height:0;width:1px;background-color:#008aff;display:inline-block;-moz-transform-origin:left top;-ms-transform-origin:left top;-o-transform-origin:left top;-webkit-transform-origin:left top;transform-origin:left top;content:'';-webkit-transition:opacity ease .5;-moz-transition:opacity ease .5;transition:opacity ease .5}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:before,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:before{top:8px;left:7px;box-shadow:0 0 0 2px #fff;-moz-transform:rotate(-145deg);-ms-transform:rotate(-145deg);-o-transform:rotate(-145deg);-webkit-transform:rotate(-145deg);transform:rotate(-145deg)}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::before,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::before{height:12px;-moz-animation:dothatopcheck .16s ease 0s forwards;-o-animation:dothatopcheck .16s ease 0s forwards;-webkit-animation:dothatopcheck .16s ease 0s forwards;animation:dothatopcheck .16s ease 0s forwards}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:after,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:after{top:6px;left:3px;-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::after,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::after{-moz-animation:dothabottomcheck 80ms ease 0s forwards;-o-animation:dothabottomcheck 80ms ease 0s forwards;-webkit-animation:dothabottomcheck 80ms ease 0s forwards;animation:dothabottomcheck 80ms ease 0s forwards;height:4px}.mec-single-event .mec-events-meta-group-booking button[type=submit]:after,.mec-single-event a.button:after{display:none;font-family:simple-line-icons;content:"\e098";margin-left:4px;-webkit-animation:rotating 1.2s linear infinite;-moz-animation:rotating 1.2s linear infinite;-ms-animation:rotating 1.2s linear infinite;-o-animation:rotating 1.2s linear infinite;animation:rotating 1.2s linear infinite}.mec-single-event .mec-events-meta-group-booking button[type=submit].loading:after,.mec-single-event a.button.loading:after{display:inline-block}.mec-single-event .mec-event-export-module{display:block}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul{display:table;width:100%}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li{display:table-cell}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li:last-child{text-align:right}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a:hover{color:#fff}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul{padding-left:0;margin:15px 5px}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting{padding-left:0;margin:0}.mec-ticket-price{margin-left:10px;font-size:13px;font-weight:300}.mec-book-reg-field-checkbox label,.mec-book-reg-field-radio label{line-height:1.36}.mec-book-reg-field-checkbox input[type=checkbox],.mec-book-reg-field-radio input[type=radio]{float:left;margin-right:5px!important}.mec-ticket-available-spots .mec-event-ticket-description,.mec-ticket-available-spots .mec-event-ticket-price{font-size:11px}.mec-book-ticket-container .mec-reg-mandatory:nth-child(2) label:after,.mec-book-ticket-container .mec-reg-mandatory:nth-child(3) label:after,.mec-book-ticket-container .wbmec-mandatory{content:"";color:red;width:50px;height:50px;font-size:14px;padding-left:5px}@media only screen and (max-width:767px){.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li{width:100%;min-height:40px;margin-bottom:15px;text-align:center;float:none;display:block}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a{width:100%;padding-left:0;padding-right:0;text-align:center;display:block;font-size:12px}}.mec-single-event .mec-events-meta-group{margin-bottom:0}@media only screen and (max-width:767px){.mec-single-event .mec-events-meta-group-booking{margin-bottom:30px}}.mec-single-event .mec-event-meta dt,.mec-single-event .mec-event-meta h3{text-transform:uppercase;font-size:16px;font-weight:700;padding-bottom:5px;display:inline;color:#000;padding-left:10px}.mec-single-event .mec-event-meta h6{text-transform:uppercase;font-size:13px;padding-bottom:5px;display:inline;color:#222;padding-left:0}.mec-single-event .mec-event-meta .mec-events-event-categories a,.mec-single-event .mec-event-meta dd{font-size:14px;color:#8d8d8d}.mec-single-event .mec-event-meta .mec-location dd.author{color:#3c3b3b}.mec-single-event .mec-event-meta dd{margin:0;padding-left:35px}.mec-single-event .mec-event-meta dd.mec-events-event-categories{min-height:35px;line-height:35px}.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:#a9a9a9;margin-bottom:3px}.mec-single-event .mec-event-meta .mec-events-meta-group-venue .author{margin-bottom:0;color:#8d8d8d;font-size:13px}.mec-single-event .mec-events-event-image{margin-bottom:0}.mec-single-event h2.mec-single-event-title{margin-bottom:30px;font-weight:700;font-size:33px}.mec-single-event .mec-booking-button{border-bottom:none;letter-spacing:.5px;line-height:48px;height:76px;transition:all .5s ease;color:#fff;padding:16px;display:block;text-align:center;font-size:16px}.mec-single-event .mec-booking-button:hover{background-color:#101010!important}.mec-single-event .mec-event-tags a{display:inline-block;color:#444;font-size:11px;text-transform:uppercase;letter-spacing:1.5px;font-weight:500;padding:3px 7px;border:1px solid #ddd;border-radius:2px;background:#fff;margin:1px 3px}.mec-single-event .mec-event-tags:before{font-size:24px;color:#303030;margin-right:5px;content:"\f02c";font-family:fontawesome}.mec-single-event .mec-event-tags{padding-top:13px}.mec-single-event .mec-event-sharing{margin:30px 0 10px}.mec-region.mec-events-abbr,.mec-single-event .mec-street-address{font-style:normal;font-size:13px}.mec-events-meta-group.mec-events-meta-group-venue:before,.mec-single-event-date:before,.mec-single-event-time:before{color:#40d9f1}.mec-single-event .mec-event-social{text-align:center}.mec-single-event .mec-event-social h3{text-transform:uppercase;font-size:15px;font-weight:700;padding-bottom:5px;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative}.mec-single-event .mec-social-single:before{padding:13px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:39px}.mec-single-event .mec-event-social .event-sharing{margin-top:30px}.mec-single-event .mec-event-social ul{list-style:none;margin-left:0}.mec-single-event .mec-event-social li.mec-event-social-icon{display:inline-block}.mec-single-event .mec-event-social li.mec-event-social-icon a{display:inline-block;color:#fff;width:40px;height:40px;padding:9px;font-size:16px;margin-right:5px}.mec-single-event .mec-event-social a.facebook{background:#3b5996}.mec-single-event .mec-event-social a.facebook:hover{background:#28385c}.mec-single-event .mec-event-social a.twitter{background:#00acee}.mec-single-event .mec-event-social a.twitter:hover{background:#0087bd}.mec-single-event .mec-event-social a.vimeo{background:#0dadd6}.mec-single-event .mec-event-social a.vimeo:hover{background:#0a85a3}.mec-single-event .mec-event-social a.dribble{background:#d53e68}.mec-single-event .mec-event-social a.dribble:hover{background:#bf4c78}.mec-single-event .mec-event-social a.youtube{background:#cb322c}.mec-single-event .mec-event-social a.youtube:hover{background:#992622}.mec-single-event .mec-event-social a.pinterest{background:#cb2027}.mec-single-event .mec-event-social a.pinterest:hover{background:#99181d}.mec-single-event .mec-event-social a.google{background:#c3391c}.mec-single-event .mec-event-social a.google:hover{background:#99181f}.mec-single-event .mec-event-social a.linkedin{background:#0073b2}.mec-single-event .mec-event-social a.linkedin:hover{background:#005380}.mec-single-event .mec-event-social a.email{background:#ff5d5e}.mec-single-event .mec-event-social a.email:hover{background:#cc4949}.mec-single-event .mec-event-social a.vk{background:#5b88bd}.mec-single-event .mec-event-social a.vk:hover{background:#3d608a}.mec-single-event .mec-event-social a.rss{background:#f29a1d}.mec-single-event .mec-event-social a.rss:hover{background:#cc7400}.mec-single-event .mec-event-social a.instagram{background:#457399}.mec-single-event .mec-event-social a.instagram:hover{background:#2e4d66}.mec-single-event .mec-event-social a.other-social{background:#ff5d5e}.mec-single-event .mec-event-social a.other-social:hover{background:#cc4949}.mec-single-event .mec-event-social{text-align:center}.mec-single-event .mec-events-meta-group-booking form>h4,.mec-single-event .mec-frontbox-title{text-transform:uppercase;font-size:15px;font-weight:700;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative;text-align:center}.mec-single-event .mec-events-meta-group-booking form>h4:before,.mec-single-event .mec-frontbox-title:before{padding:1px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-35px;left:50%}.mec-event-meta i:before{font-size:20px;vertical-align:middle}.mec-event-meta .mec-single-event-additional-organizers i:before,.mec-event-meta .mec-single-event-organizer i:before{font-size:14px;vertical-align:baseline}#mec-wrap .mec-events-day-time-slot .mec-events-content{float:left;width:33%;padding:0 15px}#mec-wrap .mec-events-day-time-slot .mec-events-event-image{padding-left:0}#mec-events-content .mec-events-abbr{color:#8d8d8d;font-size:14px}.mec-single-event .mec-events-content{margin-bottom:30px}.mec-single-event .mec-organizer-url a{word-wrap:break-word}.mec-single-event #headline{margin:0 0 10px}.mec-single-event #headline h2{padding:0}.mec-single-event .mec-events-meta-group.mec-events-meta-group-gmap .mec-events-venue-map{margin-top:0;padding:8px;border:1px solid #e5e5e5;border-radius:7px}#mec-events-gmap-0{height:325px!important}.mec-events-list .mec-events-day-time-slot .mec-events-event-meta{width:33%;float:left;padding:40px;height:auto;margin:0}.mec-events-day-time-slot .mec-events-content.description.entry-summary{font-size:15px;font-weight:300;color:#8d8d8d}.mec-events-day-time-slot .type-mec_events h2{font-size:28px;padding-bottom:20px}.mec-events-day .mec-events-day-time-slot .type-mec_events{margin:0}.mec-events-day .mec-events-day-time-slot h5{background-color:#8d8d8d}.mec-single-event .mec-event-meta .mec-single-event-additional-organizers .mec-events-single-section-title,.mec-single-event .mec-event-meta .mec-single-event-organizer .mec-events-single-section-title,.mec-single-event .mec-events-meta-date h3{padding-left:0;margin:10px;display:inline-block}.mec-single-event .mec-events-meta-date h3{width:100%}.mec-single-event .mec-events-event-image{border:0}.mec-single-event .mec-events-venue-map{padding:0}.mec-event-cost,.mec-event-more-info,.mec-event-website,.mec-events-meta-date,.mec-single-event-additional-organizers,.mec-single-event-category,.mec-single-event-date,.mec-single-event-label,.mec-single-event-location,.mec-single-event-organizer,.mec-single-event-time{background:#f7f7f7;padding:12px 14px 8px;margin-bottom:12px;vertical-align:baseline;position:relative}.mec-single-event .mec-events-meta-date dd,.mec-single-event .mec-single-event-additional-organizers dd,.mec-single-event .mec-single-event-organizer dd{padding-left:0;margin-bottom:10px}.mec-single-event .mec-events-meta-date dd span,.mec-single-event .mec-single-event-additional-organizers dd span,.mec-single-event .mec-single-event-organizer dd span{display:block;padding-left:12px;color:#8d8d8d}.mec-single-event .mec-events-meta-date i,.mec-single-event .mec-single-event-additional-organizers i,.mec-single-event .mec-single-event-organizer i{margin-right:10px;margin-left:12px}.mec-events-meta-group.mec-events-meta-group-venue dl{margin-bottom:0}address.mec-events-address{line-height:19px;font-style:normal;font-size:12px}.mec-single-event .mec-event-content dt{margin-top:5px}.mec-single-event .mec-single-event-additional-organizers .mec-single-event-additional-organizer{margin-bottom:15px;padding-bottom:5px;border-bottom:1px solid #e4e4e4}.mec-single-event .mec-single-event-additional-organizers .mec-single-event-additional-organizer:last-child{margin-bottom:0;padding-bottom:0;border:none}.mec-event-schedule-content{border-left:4px solid #f0f0f0;padding-top:10px;margin-top:30px;margin-left:25px;margin-bottom:20px;color:#8a8a8a}.mec-event-schedule-content dl{padding-left:24px;font-size:12px;position:relative;margin-bottom:35px}.mec-event-schedule-content dl:before{content:'';display:block;position:absolute;left:0;top:4px;width:20px;height:0;border-top:4px solid #f0f0f0}.mec-event-schedule-content dl dt{margin:0 0 10px;line-height:1.16}.mec-event-schedule-content dl dt.mec-schedule-title{font-size:13px;color:#5a5a5a;font-weight:700}.mec-event-schedule-content dl dt.mec-schedule-description{font-weight:300}.mec-event-schedule-content .mec-schedule-speakers{background:#f7f7f7;padding:10px}.mec-wrap .mec-event-schedule-content h6{font-size:13px;color:#5a5a5a;font-weight:700;display:inline-block}.mec-wrap .mec-event-schedule-content a{font-weight:400;color:#5a5a5a;transition:all .1s ease}.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:0}.mec-calendar .mec-event-article.mec-single-event-novel h4{margin:0;font-size:10px;line-height:18px}.mec-calendar.mec-event-container-novel dl dt{padding:3px}.mec-calendar.mec-event-calendar-classic .mec-calendar-novel-selected-day{display:inline-block;padding:4px;margin-left:1px}.mec-calendar.mec-event-calendar-classic .mec-selected-day .mec-calendar-novel-selected-day{color:#fff}.mec-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-selected-day,.mec-calendar.mec-event-calendar-classic.mec-event-container-novel dt.mec-selected-day:hover{border-bottom:1px solid #eaeaea}.mec-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-calendar-side .mec-calendar-table{min-height:auto}.mec-single-event-novel.light h4{color:#000!important}.mec-single-event-novel.dark h4{color:#fff!important}@media only screen and (max-width:768px){.mec-calendar .mec-event-article.mec-single-event-novel{padding:0;min-height:5px}.mec-calendar .mec-event-article.mec-single-event-novel h4{display:block;font-size:9px}}.mec-event-container-simple .event-single-content-simple{display:none}.mec-event-container-simple .mec-monthly-tooltip h4{font-size:16px;margin:0}.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple{border-bottom:1px solid #e2e2e2;padding:14px 0;display:block}.mec-wrap.colorskin-custom .mec-calendar.mec-event-container-simple .mec-selected-day:hover{background:#f4f4f4}.mec-event-container-simple .mec-calendar-day .mec-monthly-tooltip.event-single-link-simple:last-of-type{border:none}.mec-tooltip-event-title{font-size:16px;font-weight:700;color:#000;margin-bottom:2px}.mec-tooltip-event-time{font-size:12px;color:#888;margin-bottom:8px;margin-top:5px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-content{padding:17px}.mec-tooltip-event-content{clear:both}.mec-tooltip-event-featured{float:left;margin-right:13px;margin-bottom:1px}.mec-tooltip-event-featured img{max-width:120px}.mec-tooltip-event-desc{font-size:14px;color:#444;line-height:18px}.mec-tooltip-event-desc p{font-size:13px;line-height:1.4;margin-bottom:10px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-box{border-radius:3px!important;border:1px solid #e2e3e4!important;background:#fff!important;box-shadow:0 -1px 30px -2px rgba(0,0,0,.15)!important}.tooltipster-sidetip .tooltipster-arrow{overflow:visible!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-border{border-width:12px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-right .tooltipster-arrow-border{border-right-color:#e2e3e4!important}.tooltipster-sidetip .tooltipster-arrow-border{left:-12px!important;z-index:9999999999!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-background{display:block!important}.tooltipster-sidetip .tooltipster-arrow-background{border-width:11px!important;z-index:99999999999!important}.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background{left:-9px!important;top:1px!important;border-right-color:#fff!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background{border-top-color:#fff!important;left:0!important;top:-1px!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border{left:-1px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-top .tooltipster-arrow-border{border-top-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{left:-1px!important;top:-11px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{border-bottom-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background{top:-9px!important;border-bottom-color:#fff!important}.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background{border-left-color:#fff!important;left:-2px!important;top:0!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-left .tooltipster-arrow-border{border-left-color:#e2e3e4!important;left:-1px!important;top:-1px!important}@media (max-width:780px){.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple h4{word-break:break-all;font-size:13px}}@media (max-width:320px){.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple h4{font-size:10px}}.mec-calendar.mec-calendar-daily .mec-calendar-day-events .mec-event-article{padding-left:15px;padding-right:15px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month{text-align:center;background-color:#fff;border-bottom:2px solid #f4f4f4;position:relative}.mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{color:#444;font-size:18px;line-height:1.2;padding:15px 0 11px;margin:0;font-weight:700;letter-spacing:1px;text-transform:uppercase;border-bottom:1px solid #e6e6e6}.mec-calendar.mec-calendar-daily .mec-calendar-d-top{text-align:center;padding:10px 0;position:relative;background-color:#fafafa}.mec-calendar.mec-calendar-daily .mec-next-month,.mec-calendar.mec-calendar-daily .mec-previous-month{position:absolute;top:50%;left:50%;margin-top:-25px;min-width:50px;height:50px;line-height:50px;text-align:center;background:#fff;border:1px solid #e2e2e2;border-radius:50px;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month i,.mec-calendar.mec-calendar-daily .mec-previous-month i{font-size:14px;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month:hover,.mec-calendar.mec-calendar-daily .mec-previous-month:hover{border-color:#d0d0d0;color:#444;box-shadow:0 2px 5px 0 rgba(0,0,0,.075)}.mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-150px}.mec-calendar.mec-calendar-daily .mec-next-month{margin-left:100px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-next-month,.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-previous-month{min-height:28px;height:28px;line-height:28px;width:28px;margin-top:-14px;border-radius:3px}.mec-calendar.mec-calendar-daily .mec-calendar-d-top h2,.mec-calendar.mec-calendar-daily .mec-calendar-d-top h3{margin-top:9px;color:#b9b9b9;font-family:Roboto,sans-serif;font-size:30px;font-weight:100;text-transform:uppercase;margin-bottom:12px;line-height:1}.mec-calendar.mec-calendar-daily .mec-calendar-d-top h2{font-size:81px;color:#444;margin-bottom:10px;line-height:1.1}.mec-calendar.mec-calendar-daily .mec-calendar-d-table{overflow:hidden;background:#fff;min-height:60px;border-top:1px solid #e6e6e6;border-bottom:2px solid #f3f3f3;padding:0 50px;position:relative}@media only screen and (min-width:479px){.mec-calendar.mec-calendar-daily .mec-calendar-d-table{padding:0 55px}}.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl{width:1310px;display:block}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl{display:none}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl.mec-weekly-view-week-active{display:block}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt{display:block;background:#fff;width:42px;height:60px;line-height:60px;text-align:center;float:left;border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6;border-radius:0}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day:hover,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt:hover{background:#fafafa;box-shadow:0 2px 5px 0 rgba(0,0,0,.065) inset;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day{cursor:default;background:#fff;color:#c1c1c1;line-height:59px;text-align:center;border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-has-event{cursor:pointer;font-weight:700;color:#4a4a4a}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-daily-view-day-active,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt.mec-table-d-current{font-size:18px;font-weight:700;background:#fafafa;color:#40d9f1}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next,.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-prev{float:none;font-size:14px;width:55px;position:absolute;top:0;left:0;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next{left:auto;right:0;border-left:1px solid #e6e6e6;border-right:none}.mec-calendar.mec-calendar-daily .mec-today-container .mec-today-count{font-size:12px;color:#888;text-align:center}@media only screen and (max-width:479px){.mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-130px}.mec-calendar.mec-calendar-daily .mec-next-month{margin-left:80px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{font-size:14px;letter-spacing:0}}.widget .mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{font-size:14px;letter-spacing:0}.widget .mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-130px}.widget .mec-calendar.mec-calendar-daily .mec-next-month{margin-left:80px}.mec-util-hidden{display:none}.mec-daily-view-date-events,.mec-weekly-view-date-events{list-style:none;margin:0}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table{padding:0}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl{width:calc(100% - 1px)}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt{width:14.286%;height:70px;line-height:normal;cursor:default}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:hover{background:#fff;cursor:default}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:last-child{border-right:none}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:12px;font-weight:700;text-transform:uppercase;display:block;margin:15px 0 6px}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table a.mec-table-d-next,.mec-calendar.mec-calendar-weekly .mec-calendar-d-table a.mec-table-d-prev{display:none}ul.mec-weekly-view-dates-events,ul.mec-weekly-view-dates-events li{padding:0;margin:0;line-height:initial}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:64px;height:64px;margin-right:10px;font-size:11px;text-transform:uppercase;float:left;text-align:center;padding-top:2px}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:40px;line-height:30px;font-weight:700;display:block;margin-bottom:6px;letter-spacing:1px}.mec-calendar.mec-calendar-weekly .mec-calendar-a-month .mec-previous-month{margin-left:0;left:12px}.mec-calendar.mec-calendar-weekly .mec-calendar-a-month .mec-next-month{margin-left:0;left:auto;right:12px}@media only screen and (max-width:479px){.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:9px;letter-spacing:0}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:100%;height:36px;margin-bottom:12px;line-height:1;font-size:10px;margin-right:5px;text-align:left}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:18px;margin-bottom:5px}}.widget .mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:9px;letter-spacing:0}.widget .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:100%;height:36px;margin-bottom:12px;line-height:1;font-size:10px;margin-right:5px;text-align:left}.widget .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:18px;margin-bottom:5px}.mec-week-events-container .mec-weekly-view-dates-events li.mec-no-event-found{list-style:none!important}li.mec-no-event-found .mec-event-title{text-align:center}.mec-widget .mec-calendar{max-width:100%}.mec-widget .mec-calendar dl dt,.mec-wrap.mec-sm959.mec-widget .mec-calendar.mec-event-calendar-classic dl dt{height:40px}.mec-widget .mec-calendar .mec-calendar-events-sec{padding:10px}.mec-widget .mec-calendar .mec-calendar-header h2{font-size:13px;margin-top:8px}.mec-widget .mec-calendar .mec-event-list-classic .mec-event-image{margin-right:12px}.mec-widget .mec-calendar .mec-has-event:after{width:4px;height:4px}.mec-widget .mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-title{font-size:14px}.mec-widget .mec-calendar .mec-event-article .mec-event-image{margin-right:11px}.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-header{margin-bottom:20px}.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{font-size:0;padding:4px 0;text-align:center;min-width:33px}.mec-widget .mec-event-calendar-classic .mec-calendar-side .mec-calendar-table{min-height:200px}.mec-widget .mec-event-list-classic{margin-bottom:8px;padding:8px 0}.mec-widget .mec-event-list-classic .mec-event-article{margin-bottom:0;padding:10px 0;position:relative;min-height:86px;padding-left:80px}.mec-widget .mec-event-list-classic .mec-event-date{font-size:10px;line-height:14px;text-transform:uppercase}.mec-widget .mec-event-list-classic .mec-event-title{font-size:13px}.mec-widget .mec-event-list-classic .mec-event-detail{font-size:11px}.mec-widget .mec-event-list-classic .mec-event-image{width:68px;position:absolute;left:0}.mec-event-list-classic .mec-event-image img{width:100%}.mec-widget .mec-event-list-classic .mec-event-detail{overflow:visible}.event-color{width:14px;display:inline-block;height:14px;margin-left:5px;border-radius:50%}.mec-map-lightbox-wp{width:580px;padding:15px 15px 0;background-color:#fff}.mec-map-view-event-detail.mec-event-detail{width:580px;background-color:#e9e9e9;padding:8px 15px}.mec-map-lightbox-wp.mec-event-list-classic .mec-event-article{padding:0 0 15px;margin:0}.mec-map-lightbox-wp.mec-event-list-classic .mec-event-image{width:70px;margin-right:15px}.mec-marker-infowindow-wp{padding:10px}.mec-marker-infowindow-wp .mec-marker-infowindow-count{width:60px;height:60px;display:block;text-align:center;line-height:60px;border:1px solid #40d9f1;border-radius:50%;font-size:32px;color:#40d9f1;float:left;margin-right:11px}.mec-marker-infowindow-wp .mec-marker-infowindow-content{overflow:hidden;padding-top:6px}.mec-marker-infowindow-wp .mec-marker-infowindow-content span{display:block;color:#222}.mec-marker-infowindow-wp .mec-marker-infowindow-content span:first-child{font-size:15px;font-weight:700}.mec-marker-wrap{display:inline-block;width:35px;height:35px;margin:15px 0 0 4px;border-radius:50% 50% 50% 0;background:#00cae9;animation-name:mec-map-bounce;animation-fill-mode:both;animation-duration:1s;border:3px solid #fff;cursor:pointer}.mec-marker-wrap .mec-marker{margin-top:5px;display:block;-webkit-transform:rotate(45deg);transform:rotate(45deg);text-align:center;color:#fff;font-size:17px}.mec-marker-wrap .mec-marker-pulse-wrap{-webkit-transform:rotate(45deg);transform:rotate(45deg);display:inline-block;margin-left:-11px;margin-top:0}.mec-marker-wrap .mec-marker-pulse{display:inline-block;background:#c5c5c5;border-radius:50%;height:14px;width:14px;-webkit-transform:rotateX(55deg);transform:rotateX(55deg);z-index:-2}.mec-marker-wrap .mec-marker-pulse:after{content:"";border-radius:50%;height:40px;width:40px;position:absolute;margin:-13px 0 0 -13px;animation:pulsate 1s ease-out;animation-iteration-count:infinite;opacity:0;box-shadow:0 0 1px 2px #00cae9;animation-delay:1.1s}@keyframes pulsate{0%{transform:scale(.1,.1);opacity:0}50%{opacity:1}100%{transform:scale(1.2,1.2);opacity:0}}@keyframes mec-map-bounce{0%{opacity:0;transform:translateY(-2000px) rotate(-45deg)}60%{opacity:1;transform:translateY(30px) rotate(-45deg)}80%{transform:translateY(-10px) rotate(-45deg)}100%{transform:translateY(0) rotate(-45deg)}}.mec-single-event{margin-top:10px}.mec-single-event .mec-events-meta-group-countdown{color:#c9c9c9;text-align:center;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-events-meta-group-countdown .countdown-w{text-align:center;font-size:36px;margin:0 auto;padding:40px 0 0;position:relative;display:table;table-layout:fixed}.mec-events-meta-group-countdown .countdown-w .icon-w{font-size:24px}.mec-events-meta-group-countdown .countdown-w .label-w{font-size:15px;font-weight:300;letter-spacing:1px;text-transform:uppercase;position:relative}.mec-events-meta-group-countdown .countdown-w .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px;width:190px;font-size:72px;transition:all .3s ease-in-out;line-height:1.2}.mec-events-meta-group-countdown .countdown-w .block-w.done-w{border:0 none}.mec-events-meta-group-countdown .countdown-w span{padding:24px 0 20px}.mec-events-meta-group-countdown .countdown-w .div-d{display:none}.mec-events-meta-group-countdown .countdown-w .countdown-message{display:none}.mec-events-meta-group-countdown .countdown-w .block-w i{display:none}#countdown{list-style:none;margin-bottom:0;margin-top:0;margin-left:0;padding-left:0}.mec-events-meta-group-countdown .mec-end-counts h3{display:inherit;text-align:center;font-size:16px;right:50%}.mec-countdown-details .countdown-w .clockdiv li p{margin-top:23px}@media (min-width:481px) and (max-width:768px){.mec-events-meta-group-countdown .countdown-w{padding:0}.mec-events-meta-group-countdown .countdown-w .label-w{font-size:12px;letter-spacing:0}.mec-events-meta-group-countdown .countdown-w span{font-size:34px}}@media (min-width:320px) and (max-width:480px){.mec-events-meta-group-countdown .countdown-w .label-w{font-size:10px}.mec-events-meta-group-countdown .countdown-w span{font-size:28px}.mec-countdown-details .countdown-w .clockdiv li p{margin-top:16px}}@media (max-width:320px){.mec-events-meta-group-countdown .countdown-w .label-w{font-size:9px;letter-spacing:0}.mec-events-meta-group-countdown .countdown-w span{font-size:22px}}.info-msg,.mec-error,.mec-success,.warning-msg{margin:10px 0;padding:10px;border-radius:3px 3px 3px 3px;font-size:13px}.info-msg{color:#059;background-color:#bef}.mec-success{color:#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 .mec-event-status{color:#fff!important;border-color:transparent!important}.mec-fes-form .mec-book-confirmed,.mec-fes-list .mec-book-confirmed{background:#50d477!important}.mec-fes-form .mec-book-pending,.mec-fes-list .mec-book-pending{background:#fcbe69!important}.mec-fes-form .mec-book-rejected,.mec-fes-list .mec-book-rejected{background:#fe686a!important}.mec-fes-form .mec-book-other,.mec-fes-list .mec-book-other{background:#40d9f1!important}.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view{font-size:11px;padding: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 .post-status{float:right!important;margin:0 5px;color:#fff;padding:0 10px;border-radius:12px;font-style:italic;font-size:18px}.mec-fes-form input[type=email],.mec-fes-form input[type=number],.mec-fes-form input[type=password],.mec-fes-form input[type=tel],.mec-fes-form input[type=text],.mec-fes-form select,.mec-fes-form textarea{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);min-height:78px}.mec-wrap .mec-totalcal-box i{float:left;margin:0;width:36px;height:36px;background:#fff;border:1px solid #efefef;text-align:center;padding:10px 0;font-size:15px;color:#888}.mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-wrap .mec-totalcal-box input,.mec-wrap .mec-totalcal-box select{width:auto;min-height:36px;height:36px;line-height:36px;background:#fff;font-size:13px;color:#777;border:1px solid #efefef;margin:0 0 0 -1px;float:left;padding:0 5px;font-family:Roboto,Helvetica,Arial,sans-serif}.mec-wrap .mec-totalcal-box input[type=submit]{cursor:pointer;padding:0 16px;text-transform:uppercase;font-size:11px;font-family:Montserrat,Helvetica,Arial,sans-serif;transition:all .21s ease}.mec-wrap .mec-totalcal-box input[type=submit]:hover{background:#222;color:#fff}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{display:inline-block;text-transform:uppercase;font-family:Montserrat,Helvetica,Arial,sans-serif;font-size:11px;padding:0 12px;cursor:pointer}.mec-wrap .mec-totalcal-box .mec-totalcal-view span:hover{color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view span.mec-totalcalview-selected{color:#fff;background:#40d9f1;border-color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view{text-align:right;float:right}.mec-wrap .mec-totalcal-box input[type=search]{width:calc(100% - 36px)}@media only screen and (min-width:961px) and (max-width:1200px){.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-3,.mec-wrap .mec-totalcal-box .col-md-4,.mec-wrap .mec-totalcal-box .col-md-5{width:100%;float:none;padding-bottom:20px;clear:both;overflow:hidden}}@media only screen and (min-width:768px) and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-4{position:relative;right:10px;top:20px;width:initial}.mec-wrap .mec-totalcal-box .col-md-5{padding-bottom:0}.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:767px){.mec-wrap .mec-totalcal-box .mec-totalcal-view{float:none}.mec-wrap .mec-totalcal-box .col-md-4{padding-bottom:0}}@media only screen and (max-width:479px){.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 8px;font-size:10px}.mec-wrap .mec-totalcal-box input[type=submit]{padding:0 10px;font-size:10px}}@media only screen and (min-width:961px){.mec-wrap .mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5,.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-3{width:100%;float:none;padding-bottom:20px;clear:both;overflow:hidden}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-4{position:absolute;right:10px;top:20px;width:initial}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5{padding-bottom:0;width:100%}}@media (min-width:961px) and (max-width:1200px){.mec-full-calendar-wrap .mec-totalcal-box{padding:20px 20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:50%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{padding-bottom:20px!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select{min-width:calc(100% - 36px)}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select{min-width:calc(30% - 10px)}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3:last-child select{min-width:calc(50% - 19px)}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view{margin-right:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:10px;text-align:center}}@media (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box{padding:20px 20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:50%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{padding-bottom:10px!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select{min-width:calc(100% - 36px);margin-bottom:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view{margin-right:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:10px;text-align:center}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:100%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:absolute;top:20px}}@media (min-width:780px) and (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:absolute;top:20px}}@media(max-width:780px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select{width:calc(50% - 18px)!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:unset;padding-right:0}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:20%;text-align:center;font-size:10px}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 7px;margin-top:20px}}@media(max-width:480px){.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:20%;text-align:center;font-size:10px}}.mec-search-form{padding:20px 10px}.mec-search-form .mec-dropdown-wrap{display:table;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-full-calendar-wrap .mec-search-form .mec-date-search,.mec-full-calendar-wrap .mec-search-form .mec-text-input-search{width:100%}.mec-full-calendar-wrap .mec-search-form .col-md-3,.mec-full-calendar-wrap .mec-search-form .col-md-5,.mec-full-calendar-wrap .mec-search-form .col-md-6,.mec-full-calendar-wrap .mec-search-form .col-md-8{padding:0}.mec-widget .mec-search-form .mec-date-search,.mec-widget .mec-search-form .mec-text-input-search{width:100%}.mec-widget .mec-search-form .mec-text-input-search{margin-top:10px}.mec-search-form .mec-date-search{clear:left}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:table-cell;float:none}.mec-widget .mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block}.mec-wrap .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select{width:calc(100% - 36px)}.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,.mec-wrap .mec-event-carousel-type4 .owl-next,.mec-wrap .mec-event-carousel-type4 .owl-prev{transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:47%;background-color:transparent!important}.mec-event-carousel-type2 .owl-next{right:-60px}.mec-event-carousel-type2 .owl-prev{left:-60px}.mec-event-carousel-type2 .owl-next i,.mec-event-carousel-type2 .owl-prev i,.mec-event-carousel-type3 .owl-next i,.mec-event-carousel-type3 .owl-prev i,.mec-event-carousel-type4 .owl-next i,.mec-event-carousel-type4 .owl-prev i{font-size:40px;color:#282828}.mec-event-carousel-type2 .owl-next i:hover,.mec-event-carousel-type2 .owl-prev i:hover,.mec-event-carousel-type3 .owl-next i:hover,.mec-event-carousel-type3 .owl-prev i:hover{color:#000;cursor:pointer}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}@media only screen and (min-width:320px) and (max-width:768px){.mec-event-carousel-type2 .owl-next,.mec-event-carousel-type2 .owl-prev,.mec-event-carousel-type3 .owl-next,.mec-event-carousel-type3 .owl-prev,.mec-event-carousel-type4 .owl-next,.mec-event-carousel-type4 .owl-prev{position:initial;top:100%}}.mec-event-carousel-type3 .mec-event-article{margin:0 10px}.event-carousel-type3-head .mec-event-image,.event-carousel-type3-head .mec-event-image img{width:100%;height:auto}.event-carousel-type3-head .mec-event-footer-carousel-type3{background:#fff;display:inline-block;width:calc(100% - 40px);margin-top:-74px;position:relative;margin-left:20px;margin-right:20px;margin-bottom:6px;padding:8% 11%;box-shadow:0 2px 10px -2px rgba(0,0,0,.2)}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button{border:1px solid #e4e4e4;text-transform:uppercase;float:right;padding:7px 23px 7px;font-size:12px;color:#707070;font-weight:500}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button:hover{color:#fff}.mec-event-footer-carousel-type3 span{font-size:15px;color:#9a9a9a;font-weight:300;display:block;margin-top:30px}.mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:29px;font-weight:700}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:26px;font-weight:700;color:#1c1d21;margin-top:15px;letter-spacing:-1px}.mec-event-footer-carousel-type3 .mec-event-carousel-title a{color:inherit}.event-carousel-type3-head .mec-event-footer-carousel-type3 p{font-size:16px;font-weight:300;color:#444!important;margin-bottom:36px}.mec-event-carousel-type3 .owl-next{right:-70px}.mec-event-carousel-type3 .owl-prev{left:-70px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap{left:11%}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}.event-carousel-type3-head .mec-end-date-label{display:inline;margin-left:2px}.event-carousel-type4-head.clearfix{position:relative;overflow:hidden;background:#fff}.event-carousel-type4-head .mec-event-overlay{position:absolute;left:0;right:0;bottom:0;top:0;width:auto;height:auto;background-color:rgba(36,36,36,.4);transition:all .33s ease-in-out}.mec-event-hover-carousel-type4{font-size:15px;color:#fff;position:absolute;bottom:0;padding:50px 35px;transition:all .33s ease-in-out;opacity:0;visibility:hidden}.mec-event-carousel-type4 .mec-event-article{margin:0 10px}.mec-event-carousel-type4 .mec-event-article:hover .mec-event-hover-carousel-type4{opacity:1;visibility:visible}.mec-event-hover-carousel-type4 .mec-event-icon{font-size:18px;float:left;margin-right:14px;color:#fff;padding:13px}.mec-event-hover-carousel-type4 .mec-event-date{font-size:11px;text-transform:uppercase;font-weight:400;line-height:1.6}.mec-event-hover-carousel-type4 .mec-event-date span{display:block;font-weight:700;font-size:14px}.mec-event-hover-carousel-type4 .mec-event-title{color:#fff;margin:20px 0 38px;font-size:16px;font-weight:700;text-transform:uppercase;font-style:normal}.mec-event-hover-carousel-type4 .mec-btn-wrapper{text-align:left}.mec-event-hover-carousel-type4 .mec-event-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:10px 14px;letter-spacing:1.5px;font-size:11px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none}.mec-event-hover-carousel-type4 .mec-event-button:hover{color:#191919;background-color:#fff;border-color:#fff;border-radius:1px}.mec-event-carousel-type4 .owl-next{right:-70px}.mec-event-carousel-type4 .owl-prev{left:-70px}.mec-carousel-type4-head{margin-bottom:25px}.mec-carousel-type4-head-title{padding:0 11px;text-align:left;font-weight:700;font-size:20px;color:#000}.mec-carousel-type4-head-link{text-align:right;padding:0 11px}.mec-carousel-type4-head-link a{background:#222;color:#fff;padding:10px 38px;transition:all .3s ease}.mec-carousel-type4-head-link a:hover,.mec-carousel-type4-head-link a:visited{color:#fff}@media (max-width:960px){.mec-event-carousel-type4 .owl-stage{left:-50px}}.mec-wrap .mec-event-countdown-style1{color:#fff;padding:0!important;display:table;background:#437df9}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1{z-index:5;padding:50px 1% 50px 4%;display:table-cell;float:none;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2{background-color:rgba(0,0,0,.05);height:100%;padding-top:0;display:table-cell;float:none;position:relative;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{background-color:#f8f8f8;display:table-cell;float:none;text-align:center;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style1 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{content:"";position:absolute;display:inline-block;z-index:1;top:50%;margin-top:-11px;right:-24px;width:0;border-width:12px;border-style:solid;border-color:transparent transparent transparent #4077ed}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style1 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto}.mec-event-countdown-style1 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style1 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (min-width:1200px){.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%}}@media (max-width:960px){.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%;transform:rotate(90deg)}}@media (max-width:480px){.mec-event-countdown-style1 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{padding:10px 5px;min-width:50px;margin:3px 1px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:8px}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{display:inline}}.mec-wrap .mec-event-countdown-style2{color:#fff;padding:30px 0;background:#437df9;max-width:600px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part3{width:100%;float:none;vertical-align:middle;padding:50px 10% 50px 10%}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2{padding-top:12%;padding-bottom:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style2 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date-place{text-align:left;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 8px}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#222;background:#fff;transition:all .24s ease}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button:hover{background:#222;color:#fff}.mec-event-countdown-style2 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0}.mec-event-countdown-style2 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style2 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (max-width:767px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:80px;padding:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:26px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:11px}}@media only screen and (max-width:479px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:40px;padding:15px 10px;margin:2px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:20px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:9px}}@media (max-width:380px){.mec-event-countdown-style2 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{padding:10px 4px;margin:4px 1px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:7px}}.mec-wrap .mec-event-countdown-style3{color:#fff;padding:0;background:#282828;display:table;width:100%}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1{width:68%;padding:50px 1% 50px 4%;vertical-align:middle;display:table-cell;position:relative}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:32%;display:table-cell;position:relative;padding-bottom:0;padding-top:0}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 img{width:100%;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{font-weight:300;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{color:#fff;font-size:36px;letter-spacing:-2px;font-weight:700;line-height:1;margin-top:-10px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style3 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style3 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto;position:absolute;top:40px;right:20px}.mec-event-countdown-style3 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style3 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:11px;color:#888;margin:8px 0 0;line-height:1}.mec-event-countdown-style3 .mec-event-date{width:176px;height:96px;background:#40d9f1;color:#fff;font-size:13px;position:absolute;left:-27px;top:146px}.mec-event-countdown-style3 .mec-event-date:after{content:"";position:absolute;display:inline-block;z-index:1;bottom:-18px;left:8px;width:0;border-width:19px;border-style:solid;border-color:transparent transparent #40d9f1 transparent;transform:rotate(45deg)}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:50px;position:absolute;top:36px;left:12px;letter-spacing:-3px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:80px;top:26px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:80px;top:45px}.mec-event-countdown-style3 .mec-event-countdown-part-details{padding-top:35px;margin-bottom:50px;min-height:100px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-title{font-size:17px;color:#fff;line-height:1.4;padding-right:20px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link{color:#fff;font-size:12px;position:relative;padding-left:22px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link:before{content:"";display:inline-block;width:18px;border-top:1px solid #fff;position:absolute;left:0;top:8px}.mec-event-countdown-style3 .mec-event-title-link{position:absolute;left:190px;top:152px}.event-carousel-type1-head .mec-event-date-carousel:before,.mec-event-countdown-style3 .mec-event-date:before{content:'';position:absolute;left:0;bottom:0;z-index:2;width:100%;height:96px;background:0 0;display:inline-block;box-shadow:0 5px 5px rgba(0,0,0,.12)}@media only screen and (min-width:960px){.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown li{padding:10px}.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:31px}}@media (max-width:959px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:100%;display:block}.mec-event-countdown-style3 .mec-event-title-link{top:190px}.mec-event-countdown-style3 .mec-event-countdown{top:96px}.mec-event-countdown-style3 .mec-event-date{left:0;top:190px}.mec-event-countdown-style3 .mec-event-date:after{display:none}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{display:inline}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:150px}}@media (max-width:767px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:26px;letter-spacing:-1px}.mec-event-countdown-style3 .mec-event-title-link{left:130px}.mec-event-countdown-style3 .mec-event-date{width:120px;font-size:10px;height:63px}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:36px;top:20px;left:4px;letter-spacing:-2px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:52px;top:12px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:52px;top:28px}}@media (max-width:380px){.mec-event-countdown-style3 .mec-event-title-link{left:10px;top:260px}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:300px}.mec-event-countdown-style3 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:10px 5px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:8px}}.mec-slider-t1-wrap{width:100%;padding:60px 90px;background:#f7f7f7;min-height:560px;position:relative}.mec-slider-t1{height:500px;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t1 .mec-event-article{position:relative;height:500px}.mec-slider-t1 .mec-slider-t1-img{position:relative;background-size:cover!important;background-position:center!important;width:50%;height:100%;float:right;margin:0;overflow:hidden}.mec-slider-t1 .mec-slider-t1-content{width:50%;float:left;height:100%;background:#fff;padding:6%}.mec-slider-t1-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t1-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:54px;height:54px;line-height:48px;border-radius:0;text-align:center;background:#fff;box-shadow:0 2px 11px 0 rgba(0,0,0,.045);transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-27px;cursor:pointer}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 29px 0 rgba(0,0,0,.095)}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:12px;color:#282828;transition:all .21s ease}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{font-size:13px;color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t1{margin:0 auto;max-width:900px}}@media only screen and (max-width:960px){.mec-slider-t1 .mec-slider-t1-content,.mec-slider-t1 .mec-slider-t1-img{width:100%;float:none}.mec-slider-t1 .mec-slider-t1-img{height:300px}.mec-slider-t1,.mec-slider-t1 .mec-event-article{height:auto}}@media only screen and (max-width:768px){.mec-slider-t1-wrap{padding:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:10px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}}@media only screen and (max-width:479px){.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t2-wrap{width:100%;padding:0;background:#fff;min-height:600px;position:relative}.mec-slider-t2 .mec-event-article{height:600px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t2 .mec-slider-t2-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:70%;height:100%;margin:0;overflow:hidden}.mec-slider-t2 .mec-slider-t2-content{width:50%;position:absolute;right:0;top:60px;bottom:60px;padding:5%}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern *{color:#fff}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-content,.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t2-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:84px;cursor:pointer}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}.mec-wrap.colorskin-custom .mec-slider-t2 .mec-event-article .mec-event-date.mec-color{color:#fff}@media only screen and (min-width:961px){.mec-slider-t2{margin:0 auto;max-width:1200px}}@media only screen and (max-width:960px){.mec-slider-t2 .mec-slider-t2-content,.mec-slider-t2 .mec-slider-t2-img{width:100%;float:none;position:static}.mec-slider-t2 .mec-slider-t2-img{height:300px}.mec-slider-t2 .mec-event-article{height:auto}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px}}@media only screen and (max-width:479px){.mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:22px}}.mec-slider-t3-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t3 .mec-event-article{height:700px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t3 .mec-slider-t3-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;opacity:.68;z-index:1}.mec-slider-t3 .mec-slider-t3-content{width:50%;height:auto;vertical-align:middle;display:table;position:absolute;left:0;top:0;bottom:0;padding:0 2% 0 7%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t3 .mec-slider-t3-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-content,.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-slider-t3-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t3-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{border-color:#40d9f1}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-22px;cursor:pointer}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next{right:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:50px;font-weight:300}.mec-slider-t3-content.mec-event-grid-modern .mec-event-description{font-size:19px}}@media only screen and (max-width:767px){.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}}@media only screen and (max-width:479px){.mec-slider-t3 .mec-slider-t3-content{width:100%}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t4-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t4 .mec-event-article{height:700px;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t4 .mec-slider-t4-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;z-index:1}.mec-slider-t4 .mec-slider-t4-content{width:auto;max-width:700px;background:rgba(37,37,37,.94)!important;height:auto;vertical-align:middle;display:table;position:absolute;left:8%;top:19%;padding:3%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t4 .mec-slider-t4-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-content,.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:13px;padding:0 42px;line-height:49px;height:50px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t4-content.mec-event-grid-modern .mec-slider-t4-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next{right:60px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{right:112px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:767px){.mec-slider-t4 .mec-slider-t4-content{width:100%;left:0;top:auto;bottom:0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t5-wrap{width:auto;max-width:570px;padding:0;margin:0 auto 25px;background:#f7f7f7;min-height:480px;position:relative}.mec-slider-t5{height:auto;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t5 .mec-event-article{position:relative;height:auto}.mec-slider-t5 .mec-slider-t5-img{position:relative;background-size:cover!important;background-position:center!important;width:100%;height:300px;float:none;margin:0;overflow:hidden}.mec-slider-t5 .mec-slider-t5-content{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-slider-t5 .mec-events-content p{margin-bottom:20px}.mec-slider-t5-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t5-wrap .mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:14px 34px;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t5 .mec-slider-t5-col6{width:50%;float:left;height:100%}.mec-slider-t5 .mec-slider-t5-col6 i{font-size:42px;float:left;margin-right:7px;height:58px}.mec-slider-t5 .mec-slider-t5-col6 h6{text-transform:uppercase;font-size:17px;padding:4px 0;display:inline;color:#444}.mec-slider-t5 .mec-slider-t5-col6 address{font-size:12px;margin-bottom:0}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t5-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:768px){.mec-slider-t5 .mec-slider-t5-col6{width:100%;margin:10px 0}}@media only screen and (max-width:479px){.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.mec-single-modern .mec-events-event-image{text-align:center}.mec-single-modern .mec-events-event-image img{width:100%}.mec-single-modern .mec-single-event-bar{background-color:#f7f7f7;margin:20px 0 0;padding:15px;display:table;width:100%}.mec-single-modern .mec-single-event-bar>div{display:table-cell}.mec-single-modern .mec-single-event-bar>div i{font-size:20px;vertical-align:middle}.mec-single-modern .mec-single-event-bar>div .mec-time-comment{font-size:12px;color:#999}.mec-single-modern .mec-single-event-bar>div h3{text-transform:uppercase;font-size:16px;font-weight:700;padding-bottom:5px;display:inline;color:#000;padding-left:10px}.mec-single-modern .mec-single-event-bar>div dd{font-size:14px;color:#8d8d8d;padding-left:34px;margin-bottom:0}.mec-single-modern .col-md-4 .mec-frontbox{margin-top:-50px;margin-bottom:70px;padding:20px;border:none;background:#f7f7f7;box-shadow:none}.mec-next-occurrence li{list-style:none}@media only screen and (min-width:960px){.mec-single-modern .col-md-4 .mec-frontbox{margin-left:20px}}@media only screen and (max-width:960px){.mec-single-modern .mec-single-event-bar>div{display:block}}.lity-content>div{overflow:auto}.mec-next-event-details li{list-style:none;margin-top:20px}.mec-next-event-details h6{text-transform:uppercase;font-size:13px;padding-bottom:5px;display:inline;color:#222;padding-left:0}.mec-next-event-details abbr{display:block;padding-left:12px;color:#8d8d8d}.mec-next-event-details i{margin-right:10px;margin-left:12px}.mec-next-event-details i:before{color:#40d9f1}.mec-next-event-details a{text-align:center;display:block;background:#fff;padding:6px 0;font-size:11px;font-weight:400;letter-spacing:0;border:1px solid #e3e3e3;transition:.3s}.mec-single-modal.mec-single-modern .mec-single-title{text-align:center;padding:15px 10px 0}.admin-bar .mec-single-modal.mec-single-modern .mec-single-title{padding-top:40px}.mec-single-modal.mec-single-modern .mec-single-event-bar{padding:5px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div dd{font-size:13px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div h3{font-size:15px}@media only screen and (min-width:960px){.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-left:0}}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-top:10px;margin-bottom:10px}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox.mec-event-meta{padding:0}.mec-single-modal .mec-event-meta dd.mec-organizer-email a,.mec-single-modal .mec-event-meta dd.mec-organizer-url a{font-size:12px;display:block}.mec-modal-wrap{max-width: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}}@media(min-width:961px){.mec-timetable-col-7{width:14.28%}.mec-timetable-col-6{width:16.6666%}}.mec-weather-box{padding:15px 0}.mec-weather-head{min-height:90px;padding:5px 0;clear:both;overflow:hidden;margin-bottom:25px;border-radius:10px;background:#238af5}.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:normal 11px "helvetica neue",helvetica,sans-serif;-webkit-user-select:none}.mec-wrap .flip-clock-meridium{background:0 0!important;box-shadow:0 0 0!important;font-size:36px!important}.mec-wrap .flip-clock-meridium a{color:#313333}.mec-wrap .flip-clock-wrapper{text-align:center;position:relative;display:inline-block;padding-bottom:10px}.flip-clock-wrapper:after,.mec-wrap .flip-clock-wrapper:before{content:" ";display:table}.mec-wrap .flip-clock-wrapper:after{clear:both}.mec-wrap .flip-clock-wrapper ul{position:relative;float:left;margin:2px;width:50px;height:50px;font-size:80px;font-weight:700;line-height:87px;border-radius:3px;background:rgba(0,0,0,.21)}.mec-wrap .flip-clock-wrapper ul li{z-index:1;position:absolute;left:0;top:0;width:100%;height:100%;line-height:54px;text-decoration:none!important}.mec-wrap .flip-clock-wrapper ul li:first-child{z-index:2}.mec-wrap .flip-clock-wrapper ul li a{display:block;height:100%;-webkit-perspective:200px;-moz-perspective:200px;perspective:200px;margin:0!important;overflow:visible!important;cursor:default!important}.mec-wrap .flip-clock-wrapper ul li a div{z-index:1;position:absolute;left:0;width:100%;height:50%;font-size:80px;overflow:hidden;outline:1px solid transparent}.mec-wrap .flip-clock-wrapper ul li a div .shadow{position:absolute;width:100%;height:100%;z-index:2}.mec-wrap .flip-clock-wrapper ul li a div.up{-webkit-transform-origin:50% 100%;-moz-transform-origin:50% 100%;-ms-transform-origin:50% 100%;-o-transform-origin:50% 100%;transform-origin:50% 100%;top:0}.mec-wrap .flip-clock-wrapper ul li a div.up:after{content:"";position:absolute;top:24px;left:0;z-index:5;width:100%;height:3px;background-color:rgba(0,0,0,.12)}.mec-wrap .flip-clock-wrapper ul li a div.down{-webkit-transform-origin:50% 0;-moz-transform-origin:50% 0;-ms-transform-origin:50% 0;-o-transform-origin:50% 0;transform-origin:50% 0;bottom:0;border-bottom-left-radius:3px;border-bottom-right-radius:3px}.mec-wrap .flip-clock-wrapper ul li a div div.inn{position:absolute;left:0;z-index:1;width:100%;height:200%;color:#fff;text-shadow:0 0 2px rgba(0,0,0,.25);text-align:center;background-color:#40d9f1;border-radius:3px;font-size:48px}.mec-wrap .flip-clock-wrapper ul li a div.up div.inn{top:0}.mec-wrap .flip-clock-wrapper ul li a div.down div.inn{bottom:0}.mec-wrap .flip-clock-wrapper ul.play li.flip-clock-before{z-index:3}.mec-wrap .flip-clock-wrapper .flip{box-shadow:0 2px 5px rgba(0,0,0,.17)}.mec-wrap .flip-clock-wrapper ul.play li.flip-clock-active{-webkit-animation:asd .5s .5s linear both;-moz-animation:asd .5s .5s linear both;animation:asd .5s .5s linear both;z-index:5}.mec-wrap .flip-clock-divider{float:left;display:inline-block;position:relative;width:18px;height:62px}.mec-wrap .flip-clock-divider:first-child{width:0}.mec-wrap .flip-clock-dot{display:none;background:#323434;width:10px;height:10px;position:absolute;border-radius:50%;box-shadow:0 0 5px rgba(0,0,0,.5);left:5px}.mec-wrap .flip-clock-divider .flip-clock-label{position:absolute;bottom:-1.5em;right:-71px;color:#101010;font-weight:700;text-shadow:none;text-transform:uppercase}.mec-wrap .blox.dark .flip-clock-divider .flip-clock-label{color:#8a8a8a}.mec-wrap .flip-clock-divider.seconds .flip-clock-label{right:-82px}.mec-wrap .flip-clock-dot.top{top:30px}.mec-wrap .flip-clock-dot.bottom{bottom:30px}@-webkit-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@-moz-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@-o-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}.flip-clock-wrapper ul.play li.flip-clock-active .down{z-index:2;-webkit-animation:turn .5s .5s linear both;-moz-animation:turn .5s .5s linear both;animation:turn .5s .5s linear both}@-webkit-keyframes turn{0%{-webkit-transform:rotatex(90deg)}100%{-webkit-transform:rotatex(0)}}@-moz-keyframes turn{0%{-moz-transform:rotatex(90deg)}100%{-moz-transform:rotatex(0)}}@-o-keyframes turn{0%{-o-transform:rotatex(90deg)}100%{-o-transform:rotatex(0)}}@keyframes turn{0%{transform:rotatex(90deg)}100%{transform:rotatex(0)}}.flip-clock-wrapper ul.play li.flip-clock-before .up{z-index:2;-webkit-animation:turn2 .5s linear both;-moz-animation:turn2 .5s linear both;animation:turn2 .5s linear both}@-webkit-keyframes turn2{0%{-webkit-transform:rotatex(0)}100%{-webkit-transform:rotatex(-90deg)}}@-moz-keyframes turn2{0%{-moz-transform:rotatex(0)}100%{-moz-transform:rotatex(-90deg)}}@-o-keyframes turn2{0%{-o-transform:rotatex(0)}100%{-o-transform:rotatex(-90deg)}}@keyframes turn2{0%{transform:rotatex(0)}100%{transform:rotatex(-90deg)}}.flip-clock-wrapper ul li.flip-clock-active{z-index:3}.flip-clock-wrapper ul.play li.flip-clock-before .up .shadow{background:-moz-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,.1)),color-stop(100%,rgba(64,64,64,.68)));background:linear,top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;background:-o-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-ms-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:linear,to bottom,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;-webkit-animation:show .5s linear both;-moz-animation:show .5s linear both;animation:show .5s linear both}.flip-clock-wrapper ul.play li.flip-clock-active .up .shadow{background:-moz-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,.1)),color-stop(100%,rgba(64,64,64,.68)));background:linear,top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;background:-o-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-ms-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:linear,to bottom,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;-webkit-animation:hide .5s .3s linear both;-moz-animation:hide .5s .3s linear both;animation:hide .5s .3s linear both}.flip-clock-wrapper ul.play li.flip-clock-before .down .shadow{background:-moz-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(64,64,64,.68)),color-stop(100%,rgba(0,0,0,.1)));background:linear,top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;background:-o-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-ms-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:linear,to bottom,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;-webkit-animation:show .5s linear both;-moz-animation:show .5s linear both;animation:show .5s linear both}.flip-clock-wrapper ul.play li.flip-clock-active .down .shadow{background:-moz-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(64,64,64,.68)),color-stop(100%,rgba(0,0,0,.1)));background:linear,top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;background:-o-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-ms-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:linear,to bottom,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;-webkit-animation:hide .5s .3s linear both;-moz-animation:hide .5s .3s linear both;animation:hide .5s .2s linear both}@-webkit-keyframes show{0%{opacity:0}100%{opacity:1}}@-moz-keyframes show{0%{opacity:0}100%{opacity:1}}@-o-keyframes show{0%{opacity:0}100%{opacity:1}}@keyframes show{0%{opacity:0}100%{opacity:1}}@-webkit-keyframes hide{0%{opacity:1}100%{opacity:0}}@-moz-keyframes hide{0%{opacity:1}100%{opacity:0}}@-o-keyframes hide{0%{opacity:1}100%{opacity:0}}@keyframes hide{0%{opacity:1}100%{opacity:0}}@font-face{font-family:simple-line-icons;src:url(../fonts/Simple-Line-Icons.eot?v=2.3.1);src:url(../fonts/Simple-Line-Icons.eot?v=2.3.1#iefix) format('embedded-opentype'),url(../fonts/Simple-Line-Icons.woff2?v=2.3.1) format('woff2'),url(../fonts/Simple-Line-Icons.woff?v=2.3.1) format('woff'),url(../fonts/Simple-Line-Icons.ttf?v=2.3.1) format('truetype'),url(../fonts/Simple-Line-Icons.svg?v=2.3.1#simple-line-icons) format('svg');font-weight:400;font-style:normal}[class*=mec-sl-]{font-family:simple-line-icons;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.mec-sl-facebook:before{content:"\e00b"}.mec-sl-twitter:before{content:"\e009"}.mec-sl-google-plus:before{content:"\e60d"}.mec-sl-angle-left:before{content:"\e605"}.mec-sl-angle-right:before{content:"\e606"}.mec-sl-calendar:before{content:"\e075"}.mec-sl-clock-o:before{content:"\e081"}.mec-sl-home:before{content:"\e069"}.mec-sl-phone:before{content:"\e600"}.mec-sl-envelope:before{content:"\e086"}.mec-sl-sitemap:before{content:"\e037"}.mec-sl-map-marker:before{content:"\e096"}.mec-sl-floder:before{content:"\e089"}.mec-sl-wallet:before{content:"\e02a"}.mec-color,.mec-color-before :before,.mec-color-hover:hover,.mec-wrap .mec-color,.mec-wrap .mec-color-before :before,.mec-wrap .mec-color-hover:hover{color:#40d9f1}.mec-bg-color,.mec-bg-color-hover:hover,.mec-wrap .mec-bg-color,.mec-wrap .mec-bg-color-hover:hover{background-color:#40d9f1}.mec-border-color,.mec-border-color-hover:hover,.mec-wrap .mec-border-color,.mec-wrap .mec-border-color-hover:hover{border-color:#40d9f1}.mec-toggle-month-divider.mec-skin-list-events-container{border:1px solid #e8e8e8;margin-bottom:30px;background:#f8f8f8;box-shadow:0 2px 18px -1px rgba(0,0,0,.1);border-radius:2px}.mec-toggle-month-divider .mec-month-divider{margin:0;text-align:left;background:#fff;position:relative;cursor:pointer;border-top:1px solid #e8e8e8}.mec-toggle-month-divider .mec-month-divider span{padding:20px;border-bottom:1px solid #e8e8e8}.mec-toggle-month-divider .mec-month-divider i{position:absolute;right:20px;top:24px;font-size:20px;cursor:pointer}.mec-toggle-month-divider .mec-month-divider span:before{display:none}.mec-toggle-month-divider .mec-month-divider+article{margin-top:20px}.mec-toggle-month-divider .mec-wrap .mec-month-divider:first-of-type{border-top:none}.mec-toggle-month-divider .mec-event-list-accordion .mec-month-divider:not(:first-of-type)~article{display:none}.mec-skin-list-events-container:not(.mec-toggle-month-divider) .mec-month-divider i{display:none}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-month{display:inline-block;padding-top:0}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-date{font-size:14px;line-height:14px;float:none;display:inline-block;margin-right:0;font-weight:700}.mec-events-toggle .mec-toogle-inner-month-divider.mec-toggle-item-inner{padding:20px 60px 30px 15px}.mec-toogle-inner-month-divider .mec-toggle-month-inner-image{float:left;clear:right;width:100px;margin-right:20px;margin-left:10px}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-detail{margin-top:-6px}.mec-toogle-inner-month-divider .mec-toggle-item-col{float:none;width:100%;margin-top:10px;display:block;border:none}.mec-events-toggle .mec-toogle-inner-month-divider .mec-toggle-title{font-size:19px;display:block;padding-top:10px}@media only screen and (max-width:768px){.mec-events-toggle .mec-toogle-inner-month-divider .mec-toggle-title{font-size:14px;padding-top:0}.mec-toogle-inner-month-divider .mec-toggle-item-col{margin-top:0}.mec-toogle-inner-month-divider .mec-toggle-month-inner-image{width:70px}}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled:before,.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-featured:before{z-index:1;position:absolute;top:25px;right:-37px;font-size:11px;letter-spacing:1px;text-transform:uppercase;background:#04de78;padding:2px 40px;color:#fff;-ms-transform:rotate(45deg);-webkit-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition:.5s cubic-bezier(.25,.5,.06,.85);transition:.5s cubic-bezier(.25,.5,.06,.85);content:attr(data-style)}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled,.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-featured{overflow:hidden;position:relative}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled:before{background:#de0404}.mec-daily-view-date-events article:before,ul.mec-weekly-view-dates-events article:before{padding:7px 40px!important;top:27px!important}.mec-event-grid-classic article .mec-fc-style,.mec-event-grid-minimal article .mec-fc-style,.mec-event-grid-simple article .mec-fc-style,.mec-timetable-wrap article .mec-fc-style,.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article.mec-event-cover-modern .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{font-size:9px;letter-spacing:.5px;text-transform:uppercase;background:#04de78;padding:2px 7px;color:#fff;position:relative;margin-left:5px;border-radius:2px}.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-modern.mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-minimal article .mec-fc-style:before,.mec-event-grid-simple article .mec-fc-style:before,.mec-timetable-wrap article .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article .mec-fc-style:before,.mec-wrap .mec-event-list-modern article .mec-fc-style:before,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style:before{width:0;height:0;border-top:4px solid transparent!important;border-right:5px solid;border-bottom:4px solid transparent;margin:0;top:50%;left:-4px;transform:translateY(-4.5px);position:absolute;content:'';color:#04de78}.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-event-grid-classic article.mec-label-canceled:before,.mec-event-grid-classic article.mec-label-featured:before,.mec-event-grid-minimal article.mec-label-canceled:before,.mec-event-grid-minimal article.mec-label-featured:before,.mec-event-grid-simple article.mec-label-canceled:before,.mec-event-grid-simple article.mec-label-featured:before,.mec-timetable-wrap article.mec-label-canceled:before,.mec-timetable-wrap article.mec-label-featured:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled:before,.mec-wrap .mec-event-list-accordion article.mec-label-featured:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled:before,.mec-wrap .mec-event-list-modern article.mec-label-featured:before{display:none}.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{top:-3px;font-size:11px;margin-left:10px}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style:before,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-canceled:before,.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-featured:before{-ms-transform:none;-webkit-transform:none;transform:none;-webkit-transition:none;transition:none;top:271px;right:0}.mec-timetable-wrap article .mec-fc-style{top:-2px;font-size:10px}.mec-wrap article.mec-event-cover-modern .mec-fc-style{padding:5px 9px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:24px;display:inline-block;border-radius:2px}.mec-skin-grid-events-container .mec-wrap .mec-event-grid-clean .mec-event-article:before{-ms-transform:none;-webkit-transform:none;transform:none!important;-webkit-transition:none;transition:none;top:22px!important;right:22px!important;padding:0 10px!important}.mec-event-grid-minimal article .mec-fc-style,.mec-event-grid-simple article .mec-fc-style{top:-4px;font-size:10px;margin-left:10px}.mec-event-grid-classic article .mec-fc-style{padding:5px 20px;font-size:12px;margin-top:8px;display:inline-block}.mec-hourly-schedule-speaker-info{background:#fff;padding:30px;border:1px solid #e6e6e6;max-width:740px;width:740px;margin-left:-110px}.mec-hourly-schedule-speaker-thumbnail{float:left;max-width:30%;width:30%}.mec-hourly-schedule-speaker-name{font-weight:700;font-size:26px;line-height:1.2;color:#333;text-transform:uppercase}.mec-hourly-schedule-speaker-details{float:left;width:69%;padding-left:25px}.mec-hourly-schedule-speaker-job-title{font-size:16px;line-height:1.3;margin-bottom:4px}.mec-hourly-schedule-speaker-description{font-size:14px;font-weight:400;color:#6d7683;line-height:1.7;text-align:left}.mec-hourly-schedule-speaker-contact-information a i{color:#6b6b6b;background:#ebebeb;line-height:29px;margin:9px 7px 9px 0;width:30px;height:30px;display:inline-block;text-align:center;transition:all .2s ease;font-size:15px;cursor:pointer}.mec-hourly-schedule-speaker-contact-information a i:hover{background:#222;color:#fff}@media only screen and (max-width:479px){.mec-hourly-schedule-speaker-thumbnail{float:none;max-width:none;margin-right:0;margin-bottom:15px;width:100%}.mec-hourly-schedule-speaker-thumbnail img{width:100%}.mec-hourly-schedule-speaker-details{padding-left:0}.mec-hourly-schedule-speaker-info{width:90%;margin:0 auto}}.mec-profile .mec-profile-bookings{border:2px solid #e6e6e6;text-align:center}.mec-profile .mec-profile-bookings tbody tr:first-child{background:#f7f7f7;font-weight:700;text-transform:capitalize}.mec-profile .mec-profile-bookings tbody tr{border-bottom:1px solid #e6e6e6;font-size:14px}.mec-profile .mec-profile-bookings tbody tr td{border:1px solid #e6e6e6;padding:10px}.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}}.mec-woo-booking-checkout{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;border-radius:0;margin-bottom:6px;min-width:170px;margin-top:5px;text-align:center}.mec-woo-booking-checkout:hover{background:#222;color:#fff}.mec-woo-booking-checkout:focus,.mec-woo-booking-checkout:visited{color:#fff}.single-mec-events .lity-container{max-width:480px;width:480px}.lity-content .mec-events-meta-group-booking{width:100%;padding:20px 50px;background:#fff}.lity-content .mec-events-meta-group-booking .mec-booking form>h4{text-transform:uppercase;font-size:15px;font-weight:700;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative;text-align:center;line-height:1.2;margin-bottom:10px}.lity-content .mec-events-meta-group-booking .mec-booking form>h4:before{padding:1px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-35px;left:50%}.lity-content .mec-events-meta-group-booking .mec-event-ticket-available,.lity-content .mec-events-meta-group-booking .mec-event-ticket-name,.lity-content .mec-events-meta-group-booking .mec-event-ticket-price,.lity-content .mec-events-meta-group-booking .mec-ticket-variation-name,.lity-content .mec-events-meta-group-booking .mec-ticket-variation-price,.lity-content .mec-events-meta-group-booking label{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:3px 0;clear:none;padding:5px 1em 3px 0;display:inline-block}.lity-content .mec-events-meta-group-booking .mec-event-ticket-available{margin-bottom:12px}.lity-content .mec-events-meta-group-booking select{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:100%;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both;font-family:Montserrat,Helvetica,Arial,sans-serif}.lity-content .mec-events-meta-group-booking input[type=email]{color:#888;border:1px solid #e1e1e1;font-size:14px;display:block;width:100%;outline:0}.lity-content .mec-events-meta-group-booking input{margin-bottom:10px!important}.lity-content .mec-book-ticket-variation h5{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:0;clear:none;padding:5px 1em 3px 0;display:inline-block;text-transform:capitalize;font-family:Montserrat,Helvetica,Arial,sans-serif}.lity-content ul.mec-book-tickets-container{padding:0}.lity-content .mec-events-meta-group-booking input[type=email],.lity-content .mec-events-meta-group-booking input[type=number],.lity-content .mec-events-meta-group-booking input[type=text]{outline:0;font-family:Montserrat,Helvetica,Arial,sans-serif;display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:100%;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both;margin-bottom:2px!important}.lity-content button[type=submit]{position:relative;border:none;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;min-width:170px;margin-top:5px;border-radius:0;margin-bottom:6px}.lity-content button[type=submit]:hover{background:#222}.lity-content .mec-book-tickets-container li{list-style:none}.lity-content .mec-events-meta-group-booking #mec_book_payment_form h4,.lity-content .mec-events-meta-group-booking li h4{font-size:19px;font-weight:700}.lity-content .mec-events-meta-group-booking .mec-book-price-total{display:inline-block;margin-bottom:10px;font-size:26px;color:#39c36e;font-weight:700;padding:10px 0}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li{width:50%}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li:nth-child(even){border:none}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li span{display:block}.lity-content .mec-events-meta-group-booking button[type=submit]:after{display:none;font-family:simple-line-icons;content:"\e098";margin-left:4px;-webkit-animation:rotating 1.2s linear infinite;-moz-animation:rotating 1.2s linear infinite;-ms-animation:rotating 1.2s linear infinite;-o-animation:rotating 1.2s linear infinite;animation:rotating 1.2s linear infinite}.lity-content .mec-events-meta-group-booking button[type=submit].loading:after{display:inline-block}@media only screen and (max-width:480px){.lity-content .mec-events-meta-group-booking{padding:20px;width:340px;margin:0 auto}}.mec-events-meta-group-booking{position:relative}.mec-cover-loader:after{content:'';position:absolute;top:0;right:0;left:0;bottom:0;background:rgba(255,255,255,.5);z-index:99999}.mec-loader{background:rgba(0,0,0,0);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);z-index:9}.mec-loader,.mec-loader:after{border-radius:50%;width:5em;height:5em;z-index:999999999999}.mec-loader{font-size:10px;text-indent:-9999em;border-top:.5em solid rgba(0,0,0,.2);border-right:.5em solid rgba(0,0,0,.2);border-bottom:.5em solid rgba(0,0,0,.2);border-left:.5em solid #fff;-webkit-transform:translateZ(0);-ms-transform:translateZ(0);transform:translateZ(0);-webkit-animation:mecloader 1.1s infinite linear;animation:mecloader 1.1s infinite linear}@-webkit-keyframes mecloader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes mecloader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.mec-wrap *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mec-wrap :after,.mec-wrap :before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mec-wrap .clearfix:after,.mec-wrap .clearfix:before{content:'\0020';display:block;overflow:hidden;visibility:hidden;width:0;height:0}.mec-wrap .clearfix:after{clear:both}.mec-wrap .clearfix{zoom:1}.mec-wrap .clear,.mec-wrap .clr{clear:both;display:block;overflow:hidden;visibility:hidden}.mec-wrap .clr{visibility:visible;overflow:visible}.mec-container [class*=col-] img{max-width:100%}.mec-container{margin-right:auto;margin-left:auto;padding-left:10px;padding-right:10px}.mec-container:after,.mec-container:before{content:" ";display:table}.mec-container:after{clear:both}@media only screen and (max-width:479px){.mec-container{width:300px}}@media only screen and (min-width:480px) and (max-width:767px){.mec-container{width:420px}}@media only screen and (min-width:768px) and (max-width:960px){.mec-container{width:768px}}@media only screen and (min-width:961px){.mec-container{width:960px}}@media only screen and (min-width:1200px){.mec-container{width:1196px;padding-left:15px;padding-right:15px}}@media only screen and (min-width:1921px){.mec-container{max-width:1690px}}.mec-wrap .row{margin-left:-10px;margin-right:-10px}.mec-wrap .row:after,.mec-wrap .row:before{content:" ";display:table}.mec-wrap .row:after{clear:both}.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9,.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9,.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9,.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{position:relative;min-height:1px;padding-left:10px;padding-right:10px}@media only screen and (min-width:1200px){.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9,.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9,.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9,.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{padding-left:15px;padding-right:15px}.mec-wrap .row{margin-left:-15px;margin-right:-15px}}.mec-container [class*=col-].alpha{padding-left:0}.mec-container [class*=col-].omega{padding-right:0}.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{float:left}.mec-wrap .col-xs-12{width:100%}.mec-wrap .col-xs-11{width:91.66666666666666%}.mec-wrap .col-xs-10{width:83.33333333333334%}.mec-wrap .col-xs-9{width:75%}.mec-wrap .col-xs-8{width:66.66666666666666%}.mec-wrap .col-xs-7{width:58.333333333333336%}.mec-wrap .col-xs-6{width:50%}.mec-wrap .col-xs-5{width:41.66666666666667%}.mec-wrap .col-xs-4{width:33.33333333333333%}.mec-wrap .col-xs-3{width:25%}.mec-wrap .col-xs-2{width:16.666666666666664%}.mec-wrap .col-xs-1{width:8.333333333333332%}@media (min-width:768px){.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9{float:left}.mec-wrap .col-sm-12{width:100%}.mec-wrap .col-sm-11{width:91.66666666666666%}.mec-wrap .col-sm-10{width:83.33333333333334%}.mec-wrap .col-sm-9{width:75%}.mec-wrap .col-sm-8{width:66.66666666666666%}.mec-wrap .col-sm-7{width:58.333333333333336%}.mec-wrap .col-sm-6{width:50%}.mec-wrap .col-sm-5{width:41.66666666666667%}.mec-wrap .col-sm-4{width:33.33333333333333%}.mec-wrap .col-sm-3{width:25%}.mec-wrap .col-sm-2{width:16.666666666666664%}.mec-wrap .col-sm-1{width:8.333333333333332%}}@media (min-width:961px){.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9{float:left}.mec-wrap .col-md-12{width:100%}.mec-wrap .col-md-11{width:91.66666666666666%}.mec-wrap .col-md-10{width:83.33333333333334%}.mec-wrap .col-md-9{width:75%}.mec-wrap .col-md-8{width:66.66666666666666%}.mec-wrap .col-md-7{width:58.333333333333336%}.mec-wrap .col-md-6{width:50%}.mec-wrap .col-md-5{width:41.66666666666667%}.mec-wrap .col-md-4{width:33.33333333333333%}.mec-wrap .col-md-3{width:25%}.mec-wrap .col-md-2{width:16.666666666666664%}.mec-wrap .col-md-1{width:8.333333333333332%}}@media (min-width:1200px){.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9{float:left}.mec-wrap .col-lg-12{width:100%}.mec-wrap .col-lg-11{width:91.66666666666666%}.mec-wrap .col-lg-10{width:83.33333333333334%}.mec-wrap .col-lg-9{width:75%}.mec-wrap .col-lg-8{width:66.66666666666666%}.mec-wrap .col-lg-7{width:58.333333333333336%}.mec-wrap .col-lg-6{width:50%}.mec-wrap .col-lg-5{width:41.66666666666667%}.mec-wrap .col-lg-4{width:33.33333333333333%}.mec-wrap .col-lg-3{width:25%}.mec-wrap .col-lg-2{width:16.666666666666664%}.mec-wrap .col-lg-1{width:8.333333333333332%}}#mec_woo_add_to_cart_btn{min-width:170px;margin-top:5px;text-align:center}.mec-breadcrumbs{border-radius:2px;padding:9px 15px 6px;font-size:11px;color:#8d8d8d;letter-spacing:0;text-transform:none;font-weight:500;margin:auto 15px 33px 15px;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.025)}.mec-breadcrumbs-modern{margin:auto 0 33px 0}.mec-breadcrumbs a{color:#000;padding-left:4px}.mec-breadcrumbs a:hover{text-decoration:underline}.mec-breadcrumbs i{font-size:8px;margin:0 0 0 4px}.mec-breadcrumbs .container{padding-left:20px}.mec-content-notification a{margin-left:5px}.mec-content-notification{background:#f7f7f7;padding:10px 10px 10px;border:1px solid #e8e8e8}.mec-content-notification p{margin-bottom:0}#mec-advanced-wraper div:first-child>ul{display:block;margin:5px 0;padding:5px 0;width:430px;border:1px solid #e1e2e3;border-radius:2px;box-shadow:0 1px 3px rgba(0,0,0,.05)}#mec-advanced-wraper div:first-child>ul span{display:none}#mec-advanced-wraper div:first-child>ul *{display:inline-block;background:#fff;font-size:12px;color:#717273;text-align:center}#mec-advanced-wraper div:first-child>ul>li{width:60px;font-weight:700;margin:0 10px 0 0;padding:4px 0;border-right:1px solid #e1e2e3}#mec-advanced-wraper div:first-child>ul>ul>li{margin:0;padding:2px 10px;cursor:pointer;border-radius:2px;transition:all .18s ease}#mec-advanced-wraper div:first-child>ul>ul>li:hover,.mec-active{background:#008aff!important;color:#fff!important}
|
assets/js/events.js
CHANGED
@@ -391,7 +391,7 @@ function mec_repeat_type_toggle()
|
|
391 |
jQuery('#mec_repeat_interval_container').hide();
|
392 |
jQuery('#mec_repeat_certain_weekdays_container').hide();
|
393 |
jQuery('#mec_exceptions_in_days_container').hide();
|
394 |
-
jQuery('#mec_end_wrapper').
|
395 |
jQuery('#mec-advanced-wraper').show();
|
396 |
}
|
397 |
else if(repeat_type != 'daily' && repeat_type != 'weekly')
|
391 |
jQuery('#mec_repeat_interval_container').hide();
|
392 |
jQuery('#mec_repeat_certain_weekdays_container').hide();
|
393 |
jQuery('#mec_exceptions_in_days_container').hide();
|
394 |
+
jQuery('#mec_end_wrapper').show();
|
395 |
jQuery('#mec-advanced-wraper').show();
|
396 |
}
|
397 |
else if(repeat_type != 'daily' && repeat_type != 'weekly')
|
assets/js/frontend.js
CHANGED
@@ -486,6 +486,12 @@ var mecSingleEventDisplayer = {
|
|
486 |
|
487 |
// Remove loader
|
488 |
$('.mec-modal-result').removeClass("mec-month-navigator-loading");
|
|
|
|
|
|
|
|
|
|
|
|
|
489 |
},
|
490 |
error: function()
|
491 |
{
|
@@ -511,6 +517,12 @@ var mecSingleEventDisplayer = {
|
|
511 |
|
512 |
// Remove loader
|
513 |
$('.mec-modal-result').removeClass("mec-month-navigator-loading");
|
|
|
|
|
|
|
|
|
|
|
|
|
514 |
},
|
515 |
error: function()
|
516 |
{
|
@@ -1132,10 +1144,6 @@ var mecSingleEventDisplayer = {
|
|
1132 |
{
|
1133 |
$(settings.changeWeekElement).off('click').on('click', function(e)
|
1134 |
{
|
1135 |
-
// Disable Auto Focus If Human Click On Change Week Element
|
1136 |
-
var auto_focus = false;
|
1137 |
-
if(e.isTrigger) auto_focus = true;
|
1138 |
-
|
1139 |
var week = $('#mec_skin_'+settings.id+' .mec-weekly-view-week-active').data('week-id');
|
1140 |
var max_weeks = $('#mec_skin_'+settings.id+' .mec-weekly-view-week-active').data('max-weeks');
|
1141 |
var new_week_number = active_week_number;
|
@@ -1169,7 +1177,7 @@ var mecSingleEventDisplayer = {
|
|
1169 |
}
|
1170 |
else
|
1171 |
{
|
1172 |
-
setThisWeek(week
|
1173 |
}
|
1174 |
});
|
1175 |
|
@@ -1212,35 +1220,7 @@ var mecSingleEventDisplayer = {
|
|
1212 |
}
|
1213 |
|
1214 |
// Go To Event Week
|
1215 |
-
if(auto_focus)
|
1216 |
-
{
|
1217 |
-
var week_items = $('#mec_weekly_view_week_'+settings.id+'_'+week).find('dt');
|
1218 |
-
var week_items_length = parseInt(week_items.length);
|
1219 |
-
var changeNextWeek = $('#mec_skin_'+settings.id+' .mec-next-month.mec-load-week');
|
1220 |
-
|
1221 |
-
week_items.each(function(index)
|
1222 |
-
{
|
1223 |
-
var index_plus = index+1;
|
1224 |
-
if($(this).data('events-count') > 0)
|
1225 |
-
{
|
1226 |
-
return false;
|
1227 |
-
}
|
1228 |
-
else if(index_plus==week_items_length && changeNextWeek.css("cursor") != "default")
|
1229 |
-
{
|
1230 |
-
setTimeout(function()
|
1231 |
-
{
|
1232 |
-
changeNextWeek.trigger('click');
|
1233 |
-
}, 33);
|
1234 |
-
}
|
1235 |
-
else if(changeNextWeek.css("cursor") == "default")
|
1236 |
-
{
|
1237 |
-
// If Not Event In All Week Reset Week
|
1238 |
-
setThisWeek(settings.month_id+settings.week, false);
|
1239 |
-
$('#mec_skin_'+settings.id+' .mec-load-week, #mec_skin_'+settings.id+' .mec-load-week i').css({'opacity': 1, 'cursor': 'pointer'});
|
1240 |
-
return false;
|
1241 |
-
}
|
1242 |
-
});
|
1243 |
-
}
|
1244 |
}
|
1245 |
|
1246 |
function initMonthNavigator(month_id)
|
@@ -1287,7 +1267,7 @@ var mecSingleEventDisplayer = {
|
|
1287 |
toggleMonth(response.current_month.id);
|
1288 |
|
1289 |
// Set active week
|
1290 |
-
setThisWeek(active_week);
|
1291 |
},
|
1292 |
error: function()
|
1293 |
{
|
@@ -1342,7 +1322,7 @@ var mecSingleEventDisplayer = {
|
|
1342 |
toggleMonth(response.current_month.id);
|
1343 |
|
1344 |
// Set active week
|
1345 |
-
setThisWeek(response.week_id);
|
1346 |
|
1347 |
// Set Month Filter values in search widget
|
1348 |
$("#mec_sf_month_"+settings.id).val(month);
|
@@ -1498,11 +1478,10 @@ var mecSingleEventDisplayer = {
|
|
1498 |
});
|
1499 |
}
|
1500 |
|
1501 |
-
var owl_go_month_id;
|
1502 |
function initDaysSlider(month_id, day_id)
|
1503 |
{
|
1504 |
// Set Global Month Id
|
1505 |
-
|
1506 |
|
1507 |
// Check RTL website
|
1508 |
var owl_rtl = $('body').hasClass('rtl') ? true : false;
|
@@ -1594,7 +1573,7 @@ var mecSingleEventDisplayer = {
|
|
1594 |
setToday(''+active_year+active_month+active_day);
|
1595 |
|
1596 |
// Focus First Active Day
|
1597 |
-
|
1598 |
},
|
1599 |
error: function()
|
1600 |
{
|
@@ -1662,26 +1641,6 @@ var mecSingleEventDisplayer = {
|
|
1662 |
}
|
1663 |
}
|
1664 |
|
1665 |
-
// Focus First Active day
|
1666 |
-
function FocusDay()
|
1667 |
-
{
|
1668 |
-
// Focus event
|
1669 |
-
setTimeout(function()
|
1670 |
-
{
|
1671 |
-
var owlGo = jQuery("#mec-owl-calendar-d-table-"+settings.id+"-"+owl_go_month_id);
|
1672 |
-
owlGo.find('.owl-stage > div').each(function(index)
|
1673 |
-
{
|
1674 |
-
if(parseInt(jQuery(this).children('div').data("events-count")) > 0)
|
1675 |
-
{
|
1676 |
-
var index_plus = index+1;
|
1677 |
-
$('#mec_daily_view_day'+settings.id+'_'+owl_go_month_id+(index < 10 ? '0'+index_plus:index_plus)).trigger('click');
|
1678 |
-
owlGo.trigger('to.owl.carousel', index_plus);
|
1679 |
-
return false;
|
1680 |
-
}
|
1681 |
-
});
|
1682 |
-
},1000);
|
1683 |
-
}
|
1684 |
-
|
1685 |
function toggleMonth(month_id, day_id)
|
1686 |
{
|
1687 |
// Show related events
|
@@ -1698,7 +1657,7 @@ var mecSingleEventDisplayer = {
|
|
1698 |
initDaysSlider(month_id, day_id);
|
1699 |
|
1700 |
// Focus First Active Day
|
1701 |
-
|
1702 |
}
|
1703 |
|
1704 |
function sed()
|
@@ -3199,6 +3158,51 @@ function get_parameter_by_name(name, url)
|
|
3199 |
return decodeURIComponent(results[2].replace(/\+/g, " "));
|
3200 |
}
|
3201 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3202 |
// TODO must be cleaned JS codes
|
3203 |
(function($)
|
3204 |
{
|
486 |
|
487 |
// Remove loader
|
488 |
$('.mec-modal-result').removeClass("mec-month-navigator-loading");
|
489 |
+
|
490 |
+
// Focus First Active Day
|
491 |
+
mec_focus_day(settings.id);
|
492 |
+
|
493 |
+
// Focus First Active Week
|
494 |
+
mec_focus_week(settings.id);
|
495 |
},
|
496 |
error: function()
|
497 |
{
|
517 |
|
518 |
// Remove loader
|
519 |
$('.mec-modal-result').removeClass("mec-month-navigator-loading");
|
520 |
+
|
521 |
+
// Focus First Active Day
|
522 |
+
mec_focus_day(settings.id);
|
523 |
+
|
524 |
+
// Focus First Active Week
|
525 |
+
mec_focus_week(settings.id);
|
526 |
},
|
527 |
error: function()
|
528 |
{
|
1144 |
{
|
1145 |
$(settings.changeWeekElement).off('click').on('click', function(e)
|
1146 |
{
|
|
|
|
|
|
|
|
|
1147 |
var week = $('#mec_skin_'+settings.id+' .mec-weekly-view-week-active').data('week-id');
|
1148 |
var max_weeks = $('#mec_skin_'+settings.id+' .mec-weekly-view-week-active').data('max-weeks');
|
1149 |
var new_week_number = active_week_number;
|
1177 |
}
|
1178 |
else
|
1179 |
{
|
1180 |
+
setThisWeek(week);
|
1181 |
}
|
1182 |
});
|
1183 |
|
1220 |
}
|
1221 |
|
1222 |
// Go To Event Week
|
1223 |
+
if(auto_focus) mec_focus_week(settings.id);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1224 |
}
|
1225 |
|
1226 |
function initMonthNavigator(month_id)
|
1267 |
toggleMonth(response.current_month.id);
|
1268 |
|
1269 |
// Set active week
|
1270 |
+
setThisWeek(active_week, true);
|
1271 |
},
|
1272 |
error: function()
|
1273 |
{
|
1322 |
toggleMonth(response.current_month.id);
|
1323 |
|
1324 |
// Set active week
|
1325 |
+
setThisWeek(response.week_id, true);
|
1326 |
|
1327 |
// Set Month Filter values in search widget
|
1328 |
$("#mec_sf_month_"+settings.id).val(month);
|
1478 |
});
|
1479 |
}
|
1480 |
|
|
|
1481 |
function initDaysSlider(month_id, day_id)
|
1482 |
{
|
1483 |
// Set Global Month Id
|
1484 |
+
mec_g_month_id = month_id;
|
1485 |
|
1486 |
// Check RTL website
|
1487 |
var owl_rtl = $('body').hasClass('rtl') ? true : false;
|
1573 |
setToday(''+active_year+active_month+active_day);
|
1574 |
|
1575 |
// Focus First Active Day
|
1576 |
+
mec_focus_day(settings.id);
|
1577 |
},
|
1578 |
error: function()
|
1579 |
{
|
1641 |
}
|
1642 |
}
|
1643 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1644 |
function toggleMonth(month_id, day_id)
|
1645 |
{
|
1646 |
// Show related events
|
1657 |
initDaysSlider(month_id, day_id);
|
1658 |
|
1659 |
// Focus First Active Day
|
1660 |
+
mec_focus_day(settings.id);
|
1661 |
}
|
1662 |
|
1663 |
function sed()
|
3158 |
return decodeURIComponent(results[2].replace(/\+/g, " "));
|
3159 |
}
|
3160 |
|
3161 |
+
// Focus events day
|
3162 |
+
var mec_g_month_id = null;
|
3163 |
+
function mec_focus_day(id)
|
3164 |
+
{
|
3165 |
+
setTimeout(function()
|
3166 |
+
{
|
3167 |
+
var owl_go = jQuery("#mec-owl-calendar-d-table-"+id+"-"+mec_g_month_id);
|
3168 |
+
owl_go.find('.owl-stage > div').each(function(index)
|
3169 |
+
{
|
3170 |
+
if(parseInt(jQuery(this).children('div').data("events-count")) > 0)
|
3171 |
+
{
|
3172 |
+
var index_plus = index+1;
|
3173 |
+
jQuery('#mec_daily_view_day'+id+'_'+mec_g_month_id+(index < 10 ? '0'+index_plus:index_plus)).trigger('click');
|
3174 |
+
owl_go.trigger('to.owl.carousel', index_plus);
|
3175 |
+
return false;
|
3176 |
+
}
|
3177 |
+
});
|
3178 |
+
}, 1000);
|
3179 |
+
}
|
3180 |
+
|
3181 |
+
// Focus events week
|
3182 |
+
function mec_focus_week(id)
|
3183 |
+
{
|
3184 |
+
var days = jQuery('.mec-weeks-container .mec-weekly-view-week-active').parent().find('dt');
|
3185 |
+
var days_count = parseInt(days.length);
|
3186 |
+
days.each(function(index)
|
3187 |
+
{
|
3188 |
+
var index_plus = index+1;
|
3189 |
+
var week = parseInt(jQuery(this).parent().index());
|
3190 |
+
|
3191 |
+
if(jQuery(this).data('events-count') > 0)
|
3192 |
+
{
|
3193 |
+
for(var i = 0; i < week; i++)
|
3194 |
+
{
|
3195 |
+
setTimeout(function()
|
3196 |
+
{
|
3197 |
+
var event = new Event('click');
|
3198 |
+
jQuery('#mec_skin_'+id+' .mec-next-month.mec-load-week')[0].dispatchEvent(event);
|
3199 |
+
}, 33);
|
3200 |
+
}
|
3201 |
+
return false;
|
3202 |
+
}
|
3203 |
+
});
|
3204 |
+
}
|
3205 |
+
|
3206 |
// TODO must be cleaned JS codes
|
3207 |
(function($)
|
3208 |
{
|
changelog.txt
CHANGED
@@ -1,6 +1,17 @@
|
|
1 |
-
v 4.3.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
- Compatibility: WordPress 5.2.2
|
3 |
-
- Added:
|
4 |
- Added: Speaker name to notifications
|
5 |
- Added: Functions to display widgets separately (For using in custom single event page)
|
6 |
- Added: do_action('mec_{skin_name}_skin_head'); at top of each shortcode
|
1 |
+
v 4.3.6 - 2 July 2019
|
2 |
+
- Added: Limit option to full calendar skin in order to show more than 12 events per day
|
3 |
+
- Added: Recurring rule to the ICS export on event details page
|
4 |
+
- Added: End repeat option for advanced repeat type
|
5 |
+
- Fixed: Attendee module on showing count of tickets
|
6 |
+
- Fixed: "Invalid Request" notification in Booking form
|
7 |
+
- Fixed: Frontend submission advance repeating style
|
8 |
+
- Fixed: RTL settings
|
9 |
+
- Fixed: Addon notifications style
|
10 |
+
- Fixed: Countdown mobile/tablet style
|
11 |
+
|
12 |
+
v 4.3.5 – 27 June 2019
|
13 |
- Compatibility: WordPress 5.2.2
|
14 |
+
- Added: Advanced repeating for the "nth" day of the week in a month
|
15 |
- Added: Speaker name to notifications
|
16 |
- Added: Functions to display widgets separately (For using in custom single event page)
|
17 |
- Added: do_action('mec_{skin_name}_skin_head'); at top of each shortcode
|
languages/modern-events-calendar-lite-de_DE.mo
CHANGED
Binary file
|
languages/modern-events-calendar-lite-de_DE.po
CHANGED
@@ -2,15 +2,15 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: ME Calender\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2019-
|
6 |
-
"PO-Revision-Date: 2019-
|
7 |
"Last-Translator: Jogon <koenig@kafinanz.de>\n"
|
8 |
"Language-Team: German\n"
|
9 |
"Language: de_DE\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
-
"X-Generator: Poedit 2.
|
14 |
"X-Poedit-KeywordsList: __;_e;_x;_n;_ex;_nx;esc_html__;esc_html_e;esc_html_x;"
|
15 |
"esc_attr__;esc_attr_e;esc_attr_x\n"
|
16 |
"X-Poedit-Basepath: ..\n"
|
@@ -23,7 +23,7 @@ msgstr ""
|
|
23 |
msgid "Modern Events Calendar"
|
24 |
msgstr "Moderner Event Kalender "
|
25 |
|
26 |
-
#: app/addons/KC.php:70 app/addons/VC.php:64 app/features/mec/styling.php:
|
27 |
msgid "Content"
|
28 |
msgstr "Inhalt"
|
29 |
|
@@ -54,8 +54,8 @@ msgstr "Allgemeine Einstellungen"
|
|
54 |
msgid "Select Type"
|
55 |
msgstr "Alles Auswählen"
|
56 |
|
57 |
-
#: app/features/colors.php:50 app/features/fes/form.php:
|
58 |
-
#: app/features/mec/settings.php:
|
59 |
msgid "Event Color"
|
60 |
msgstr "Farbe der Veranstaltung"
|
61 |
|
@@ -71,12 +71,12 @@ msgid "Settings"
|
|
71 |
msgstr "Einstellungen"
|
72 |
|
73 |
#: app/features/contextual.php:62 app/features/events.php:2250
|
74 |
-
#: app/features/mec/booking.php:
|
75 |
-
#: app/features/mec/ie.php:
|
76 |
-
#: app/features/mec/modules.php:173 app/features/mec/notifications.php:
|
77 |
-
#: app/features/mec/regform.php:
|
78 |
-
#: app/features/mec/settings.php:
|
79 |
-
#: app/features/mec/styles.php:
|
80 |
#: app/features/mec/support.php:29
|
81 |
msgid "Booking Form"
|
82 |
msgstr "Buchungsformular"
|
@@ -95,13 +95,13 @@ msgstr ""
|
|
95 |
"<iframe width=\"600\" height=\"300\" src=\"https://www.youtube.com/embed/"
|
96 |
"YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></iframe>"
|
97 |
|
98 |
-
#: app/features/contextual.php:70 app/features/mec/booking.php:
|
99 |
-
#: app/features/mec/gateways.php:
|
100 |
-
#: app/features/mec/ie.php:
|
101 |
-
#: app/features/mec/modules.php:180 app/features/mec/notifications.php:
|
102 |
-
#: app/features/mec/regform.php:
|
103 |
-
#: app/features/mec/single.php:
|
104 |
-
#: app/features/mec/styling.php:
|
105 |
msgid "Payment Gateways"
|
106 |
msgstr "Zahlungs-Gateways"
|
107 |
|
@@ -115,12 +115,12 @@ msgstr ""
|
|
115 |
"height=\"300\" src=\"https://www.youtube.com/embed/Hpg4chWlxoQ\" frameborder="
|
116 |
"\"0\" allowfullscreen></iframe>"
|
117 |
|
118 |
-
#: app/features/contextual.php:77 app/features/mec/booking.php:
|
119 |
-
#: app/features/mec/gateways.php:
|
120 |
-
#: app/features/mec/messages.php:
|
121 |
-
#: app/features/mec/notifications.php:
|
122 |
-
#: app/features/mec/settings.php:
|
123 |
-
#: app/features/mec/styles.php:
|
124 |
#: app/features/mec/support.php:45
|
125 |
msgid "Notifications"
|
126 |
msgstr "Benachrichtigungen"
|
@@ -204,7 +204,7 @@ msgstr ""
|
|
204 |
#: app/features/mec/gateways.php:28 app/features/mec/ie.php:24
|
205 |
#: app/features/mec/messages.php:28 app/features/mec/modules.php:35
|
206 |
#: app/features/mec/notifications.php:27 app/features/mec/regform.php:64
|
207 |
-
#: app/features/mec/settings.php:51 app/features/mec/settings.php:
|
208 |
#: app/features/mec/single.php:27 app/features/mec/styles.php:28
|
209 |
#: app/features/mec/styling.php:50
|
210 |
msgid "General Options"
|
@@ -214,7 +214,7 @@ msgstr "Allgemeine Einstellungen"
|
|
214 |
#: app/features/mec/gateways.php:30 app/features/mec/ie.php:26
|
215 |
#: app/features/mec/messages.php:30 app/features/mec/modules.php:37
|
216 |
#: app/features/mec/notifications.php:29 app/features/mec/regform.php:66
|
217 |
-
#: app/features/mec/settings.php:63 app/features/mec/settings.php:
|
218 |
#: app/features/mec/single.php:29 app/features/mec/styles.php:30
|
219 |
#: app/features/mec/styling.php:52
|
220 |
msgid "Slugs/Permalinks"
|
@@ -228,7 +228,7 @@ msgstr "Event Details / Einzelveranstaltungsseite"
|
|
228 |
#: app/features/mec/gateways.php:31 app/features/mec/ie.php:27
|
229 |
#: app/features/mec/messages.php:31 app/features/mec/modules.php:38
|
230 |
#: app/features/mec/notifications.php:30 app/features/mec/regform.php:67
|
231 |
-
#: app/features/mec/settings.php:69 app/features/mec/settings.php:
|
232 |
#: app/features/mec/single.php:30 app/features/mec/styles.php:31
|
233 |
#: app/features/mec/styling.php:53
|
234 |
msgid "Currency Options"
|
@@ -248,7 +248,7 @@ msgstr "Google Maps Einstellungen"
|
|
248 |
#: app/features/mec/gateways.php:32 app/features/mec/ie.php:28
|
249 |
#: app/features/mec/messages.php:32 app/features/mec/modules.php:39
|
250 |
#: app/features/mec/notifications.php:31 app/features/mec/regform.php:68
|
251 |
-
#: app/features/mec/settings.php:75 app/features/mec/settings.php:
|
252 |
#: app/features/mec/single.php:31 app/features/mec/styles.php:32
|
253 |
#: app/features/mec/styling.php:54
|
254 |
msgid "Google Recaptcha Options"
|
@@ -259,7 +259,7 @@ msgstr "Google Recaptcha Einstellungen"
|
|
259 |
#: app/features/mec/messages.php:51 app/features/mec/modules.php:58
|
260 |
#: app/features/mec/notifications.php:50 app/features/mec/regform.php:87
|
261 |
#: app/features/mec/settings.php:118 app/features/mec/single.php:62
|
262 |
-
#: app/features/mec/single.php:
|
263 |
#: app/features/mec/styling.php:73
|
264 |
msgid "Countdown Options"
|
265 |
msgstr "Countdown Einstellungsoptionen"
|
@@ -282,7 +282,7 @@ msgstr "Nächstes Veranstaltung Modul"
|
|
282 |
#: app/features/mec/gateways.php:33 app/features/mec/ie.php:29
|
283 |
#: app/features/mec/messages.php:33 app/features/mec/modules.php:40
|
284 |
#: app/features/mec/notifications.php:32 app/features/mec/regform.php:69
|
285 |
-
#: app/features/mec/settings.php:81 app/features/mec/settings.php:
|
286 |
#: app/features/mec/single.php:32 app/features/mec/styles.php:33
|
287 |
#: app/features/mec/styling.php:55
|
288 |
msgid "Frontend Event Submission"
|
@@ -300,28 +300,28 @@ msgstr "Herausgenommene Tage "
|
|
300 |
|
301 |
#: app/features/contextual.php:308 app/features/events.php:284
|
302 |
#: app/features/mec/booking.php:77 app/features/mec/booking.php:84
|
303 |
-
#: app/features/mec/booking.php:
|
304 |
#: app/features/mec/gateways.php:64 app/features/mec/gateways.php:68
|
305 |
-
#: app/features/mec/gateways.php:
|
306 |
-
#: app/features/mec/ie.php:64 app/features/mec/ie.php:
|
307 |
#: app/features/mec/messages.php:64 app/features/mec/messages.php:68
|
308 |
-
#: app/features/mec/messages.php:
|
309 |
#: app/features/mec/modules.php:75 app/features/mec/modules.php:194
|
310 |
#: app/features/mec/notifications.php:63 app/features/mec/notifications.php:67
|
311 |
-
#: app/features/mec/notifications.php:
|
312 |
-
#: app/features/mec/notifications.php:
|
313 |
-
#: app/features/mec/regform.php:104 app/features/mec/regform.php:
|
314 |
#: app/features/mec/settings.php:131 app/features/mec/settings.php:135
|
315 |
-
#: app/features/mec/settings.php:
|
316 |
-
#: app/features/mec/single.php:96 app/features/mec/single.php:
|
317 |
#: app/features/mec/styles.php:64 app/features/mec/styles.php:68
|
318 |
-
#: app/features/mec/styles.php:
|
319 |
-
#: app/features/mec/styling.php:90 app/features/mec/styling.php:
|
320 |
msgid "Booking"
|
321 |
msgstr "Buchung / Reservierung"
|
322 |
|
323 |
#: app/features/contextual.php:318 app/features/mec/booking.php:92
|
324 |
-
#: app/features/mec/booking.php:
|
325 |
#: app/features/mec/ie.php:66 app/features/mec/messages.php:70
|
326 |
#: app/features/mec/modules.php:77 app/features/mec/notifications.php:69
|
327 |
#: app/features/mec/regform.php:106 app/features/mec/settings.php:137
|
@@ -330,13 +330,13 @@ msgstr "Buchung / Reservierung"
|
|
330 |
msgid "Coupons"
|
331 |
msgstr "Gutscheine"
|
332 |
|
333 |
-
#: app/features/contextual.php:326 app/features/mec/booking.php:
|
334 |
-
#: app/features/mec/gateways.php:
|
335 |
-
#: app/features/mec/messages.php:
|
336 |
-
#: app/features/mec/modules.php:509 app/features/mec/notifications.php:
|
337 |
-
#: app/features/mec/regform.php:
|
338 |
-
#: app/features/mec/single.php:
|
339 |
-
#: app/features/mec/styling.php:
|
340 |
msgid "BuddyPress Integration"
|
341 |
msgstr "Buddy Press Integration"
|
342 |
|
@@ -344,7 +344,7 @@ msgstr "Buddy Press Integration"
|
|
344 |
#: app/features/mec/gateways.php:36 app/features/mec/ie.php:32
|
345 |
#: app/features/mec/messages.php:36 app/features/mec/modules.php:43
|
346 |
#: app/features/mec/notifications.php:35 app/features/mec/regform.php:72
|
347 |
-
#: app/features/mec/settings.php:95 app/features/mec/settings.php:
|
348 |
#: app/features/mec/single.php:35 app/features/mec/styles.php:36
|
349 |
#: app/features/mec/styling.php:58
|
350 |
msgid "Mailchimp Integration"
|
@@ -361,9 +361,9 @@ msgid "Events"
|
|
361 |
msgstr "Veranstaltungen"
|
362 |
|
363 |
#: app/features/events.php:138
|
364 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
365 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
366 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
367 |
#: app/features/profile/profile.php:28 app/skins/daily_view/tpl.php:80
|
368 |
#: app/skins/monthly_view/tpl.php:71 app/skins/yearly_view/tpl.php:69
|
369 |
msgid "Event"
|
@@ -377,7 +377,7 @@ msgstr "Veranstaltung hinzufügen"
|
|
377 |
msgid "Add New Event"
|
378 |
msgstr "Neue Veranstaltung hinzufügen"
|
379 |
|
380 |
-
#: app/features/events.php:141 app/features/ix.php:
|
381 |
#: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:56
|
382 |
msgid "No events found!"
|
383 |
msgstr "Keine Veranstaltungen gefunden!"
|
@@ -399,7 +399,7 @@ msgid "No events found in Trash!"
|
|
399 |
msgstr "Keine Veranstaltungen im Papierkorb gefunden!"
|
400 |
|
401 |
#: app/features/events.php:162
|
402 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
403 |
#: app/features/mec/meta_boxes/search_form.php:31
|
404 |
#: app/features/mec/meta_boxes/search_form.php:92
|
405 |
#: app/features/mec/meta_boxes/search_form.php:153
|
@@ -409,7 +409,7 @@ msgstr "Keine Veranstaltungen im Papierkorb gefunden!"
|
|
409 |
#: app/features/mec/meta_boxes/search_form.php:397
|
410 |
#: app/features/mec/meta_boxes/search_form.php:451
|
411 |
#: app/features/mec/meta_boxes/search_form.php:512
|
412 |
-
#: app/features/mec/meta_boxes/search_form.php:573 app/libraries/main.php:
|
413 |
#: app/libraries/skins.php:781 app/skins/single.php:410
|
414 |
#: app/skins/single/default.php:169 app/skins/single/default.php:380
|
415 |
#: app/skins/single/m1.php:170 app/skins/single/m2.php:102
|
@@ -419,7 +419,7 @@ msgstr "Kategorie"
|
|
419 |
|
420 |
#: app/features/events.php:163 app/features/fes/form.php:745
|
421 |
#: app/features/mec.php:332 app/features/mec/meta_boxes/filter.php:70
|
422 |
-
#: app/libraries/main.php:
|
423 |
msgid "Categories"
|
424 |
msgstr "Kategorien"
|
425 |
|
@@ -491,17 +491,17 @@ msgstr "Wählen Sie ein Symbol"
|
|
491 |
msgid "Event Details"
|
492 |
msgstr "Veranstaltungsdetails"
|
493 |
|
494 |
-
#: app/features/events.php:321 app/features/events.php:
|
495 |
-
#: app/features/events.php:
|
496 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
497 |
-
#: app/features/mec/settings.php:
|
498 |
#: app/widgets/single.php:103
|
499 |
msgid "Event Cost"
|
500 |
msgstr ""
|
501 |
"Bruttopreis des Events in Euro, 0 für kostenlos oder z.B. 39, ohne €-Zeichen"
|
502 |
|
503 |
#: app/features/events.php:325 app/features/fes/form.php:709
|
504 |
-
#: app/libraries/main.php:
|
505 |
#: app/skins/single/default.php:103 app/skins/single/default.php:314
|
506 |
#: app/skins/single/m1.php:49 app/skins/single/modern.php:199
|
507 |
msgid "Cost"
|
@@ -518,19 +518,19 @@ msgstr "Gäste Daten"
|
|
518 |
#: app/features/events.php:431 app/features/events.php:2232
|
519 |
#: app/features/fes/form.php:668 app/features/labels.php:177
|
520 |
#: app/features/mec/regform.php:27 app/features/organizers.php:274
|
521 |
-
#: app/features/profile/profile.php:90 app/libraries/notifications.php:
|
522 |
#: app/modules/booking/steps/form.php:35
|
523 |
msgid "Name"
|
524 |
msgstr "Name"
|
525 |
|
526 |
#: app/features/events.php:432 app/features/events.php:2243
|
527 |
#: app/features/events.php:2321 app/features/fes/form.php:664
|
528 |
-
#: app/features/mec/regform.php:38 app/features/mec/regform.php:
|
529 |
#: app/features/organizers.php:110 app/features/organizers.php:150
|
530 |
#: app/features/profile/profile.php:93 app/features/speakers.php:120
|
531 |
-
#: app/features/speakers.php:180 app/libraries/main.php:
|
532 |
-
#: app/libraries/main.php:
|
533 |
-
#: app/libraries/notifications.php:
|
534 |
#: app/modules/booking/steps/form.php:80 app/skins/single.php:661
|
535 |
#: app/skins/single.php:715 app/skins/single/default.php:211
|
536 |
#: app/skins/single/default.php:422 app/skins/single/m1.php:107
|
@@ -543,8 +543,8 @@ msgid "Date and Time"
|
|
543 |
msgstr "Datum und Uhrzeit"
|
544 |
|
545 |
#: app/features/events.php:440 app/features/events.php:446
|
546 |
-
#: app/features/events.php:
|
547 |
-
#: app/features/events.php:
|
548 |
#: app/features/fes/form.php:240 app/features/ix.php:2740
|
549 |
#: app/features/ix.php:2781 app/features/ix/import_g_calendar.php:38
|
550 |
#: app/features/mec/dashboard.php:332
|
@@ -552,15 +552,15 @@ msgstr "Datum und Uhrzeit"
|
|
552 |
#: app/features/mec/meta_boxes/display_options.php:169
|
553 |
#: app/features/mec/meta_boxes/display_options.php:307
|
554 |
#: app/features/mec/meta_boxes/display_options.php:362
|
555 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
556 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
557 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
558 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
559 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
560 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
561 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
562 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
563 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
564 |
msgid "Start Date"
|
565 |
msgstr "Start Datum"
|
566 |
|
@@ -579,8 +579,8 @@ msgid "PM"
|
|
579 |
msgstr "PM"
|
580 |
|
581 |
#: app/features/events.php:532 app/features/events.php:537
|
582 |
-
#: app/features/events.php:
|
583 |
-
#: app/features/events.php:
|
584 |
#: app/features/fes/form.php:280 app/features/ix.php:2740
|
585 |
#: app/features/ix.php:2781 app/features/ix/import_g_calendar.php:44
|
586 |
#: app/features/mec/dashboard.php:333
|
@@ -617,19 +617,19 @@ msgstr ""
|
|
617 |
"können Sie z.B. eine Zeitzone wie z.B. \"MEZ\" usw. einfügen. "
|
618 |
|
619 |
#: app/features/events.php:663 app/features/events.php:795
|
620 |
-
#: app/features/events.php:
|
621 |
#: app/features/events.php:1436 app/features/events.php:1503
|
622 |
#: app/features/events.php:1655 app/features/events.php:1670
|
623 |
#: app/features/events.php:1837 app/features/events.php:1850
|
624 |
#: app/features/events.php:1980 app/features/events.php:2016
|
625 |
#: app/features/events.php:2114 app/features/events.php:2129
|
626 |
#: app/features/events.php:2159 app/features/events.php:2172
|
627 |
-
#: app/features/fes/form.php:
|
628 |
-
#: app/features/mec/booking.php:
|
629 |
-
#: app/features/mec/booking.php:
|
630 |
-
#: app/features/mec/booking.php:
|
631 |
-
#: app/features/mec/booking.php:
|
632 |
-
#: app/features/mec/booking.php:
|
633 |
#: app/features/mec/meta_boxes/display_options.php:60
|
634 |
#: app/features/mec/meta_boxes/display_options.php:73
|
635 |
#: app/features/mec/meta_boxes/display_options.php:86
|
@@ -643,47 +643,47 @@ msgstr ""
|
|
643 |
#: app/features/mec/meta_boxes/display_options.php:248
|
644 |
#: app/features/mec/meta_boxes/display_options.php:259
|
645 |
#: app/features/mec/meta_boxes/display_options.php:326
|
646 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
647 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
648 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
649 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
650 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
651 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
652 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
653 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
654 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
655 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
656 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
657 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
658 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
659 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
660 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
661 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
662 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
663 |
#: app/features/mec/modules.php:283 app/features/mec/modules.php:300
|
664 |
#: app/features/mec/modules.php:335 app/features/mec/modules.php:351
|
665 |
-
#: app/features/mec/modules.php:497 app/features/mec/notifications.php:
|
666 |
-
#: app/features/mec/notifications.php:
|
667 |
-
#: app/features/mec/notifications.php:
|
668 |
-
#: app/features/mec/notifications.php:
|
669 |
-
#: app/features/mec/notifications.php:
|
670 |
-
#: app/features/mec/notifications.php:
|
671 |
-
#: app/features/mec/notifications.php:
|
672 |
-
#: app/features/mec/notifications.php:
|
673 |
-
#: app/features/mec/settings.php:
|
674 |
-
#: app/features/mec/settings.php:
|
675 |
-
#: app/features/mec/settings.php:
|
676 |
-
#: app/features/mec/settings.php:
|
677 |
-
#: app/features/mec/settings.php:
|
678 |
-
#: app/features/mec/settings.php:
|
679 |
-
#: app/features/mec/settings.php:
|
680 |
-
#: app/features/mec/settings.php:
|
681 |
-
#: app/features/mec/settings.php:
|
682 |
-
#: app/features/mec/single.php:
|
683 |
-
#: app/features/mec/single.php:
|
684 |
-
#: app/features/mec/single.php:
|
685 |
-
#: app/features/mec/single.php:
|
686 |
-
#: app/features/mec/styling.php:
|
687 |
#: app/features/organizers.php:267 app/skins/single.php:508
|
688 |
#: app/skins/single/default.php:118 app/skins/single/default.php:329
|
689 |
#: app/skins/single/m1.php:192 app/skins/single/m2.php:125
|
@@ -754,43 +754,43 @@ msgid "Week Days"
|
|
754 |
msgstr "Wochentage"
|
755 |
|
756 |
#: app/features/events.php:760 app/features/fes/form.php:355
|
757 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
758 |
#: app/libraries/main.php:407
|
759 |
msgid "Monday"
|
760 |
msgstr "Montag"
|
761 |
|
762 |
#: app/features/events.php:763 app/features/fes/form.php:356
|
763 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
764 |
#: app/libraries/main.php:407
|
765 |
msgid "Tuesday"
|
766 |
msgstr "Dienstag"
|
767 |
|
768 |
#: app/features/events.php:766 app/features/fes/form.php:357
|
769 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
770 |
#: app/libraries/main.php:407
|
771 |
msgid "Wednesday"
|
772 |
msgstr "Mittwoch"
|
773 |
|
774 |
#: app/features/events.php:769 app/features/fes/form.php:358
|
775 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
776 |
#: app/libraries/main.php:407
|
777 |
msgid "Thursday"
|
778 |
msgstr "Donnerstag"
|
779 |
|
780 |
#: app/features/events.php:772 app/features/fes/form.php:359
|
781 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
782 |
#: app/libraries/main.php:407
|
783 |
msgid "Friday"
|
784 |
msgstr "Freitag"
|
785 |
|
786 |
#: app/features/events.php:775 app/features/fes/form.php:360
|
787 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
788 |
#: app/libraries/main.php:407
|
789 |
msgid "Saturday"
|
790 |
msgstr "Samstag"
|
791 |
|
792 |
#: app/features/events.php:778 app/features/fes/form.php:361
|
793 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
794 |
#: app/libraries/main.php:407
|
795 |
msgid "Sunday"
|
796 |
msgstr "Sonntag"
|
@@ -832,70 +832,70 @@ msgid ""
|
|
832 |
"start and end dates must be commensurate with the initial date."
|
833 |
msgstr ""
|
834 |
|
835 |
-
#: app/features/events.php:
|
836 |
-
msgid "Ends Repeat"
|
837 |
-
msgstr "Wiederholung endet"
|
838 |
-
|
839 |
-
#: app/features/events.php:839 app/features/fes/form.php:396
|
840 |
-
msgid "Never"
|
841 |
-
msgstr "Niemals"
|
842 |
-
|
843 |
-
#: app/features/events.php:851 app/features/fes/form.php:401
|
844 |
-
msgid "On"
|
845 |
-
msgstr "Am"
|
846 |
-
|
847 |
-
#: app/features/events.php:867 app/features/fes/form.php:408
|
848 |
-
msgid "After"
|
849 |
-
msgstr "Nach"
|
850 |
-
|
851 |
-
#: app/features/events.php:871 app/features/events.php:875
|
852 |
-
#: app/features/fes/form.php:410 app/features/fes/form.php:413
|
853 |
-
msgid "Occurrences times"
|
854 |
-
msgstr " mal vorkommen"
|
855 |
-
|
856 |
-
#: app/features/events.php:876 app/features/fes/form.php:414
|
857 |
-
msgid ""
|
858 |
-
"The event will finish after certain repeats. For example if you set it to "
|
859 |
-
"10, the event will finish after 10 repeats."
|
860 |
-
msgstr ""
|
861 |
-
"Das Event ist nach einer bestimmten Anzahl von Wiederholungen zu Ende. Zum "
|
862 |
-
"Beispiel: Bei Eingabe von 10 wird das Event nach 10 Wiederholungen beendet"
|
863 |
-
|
864 |
-
#: app/features/events.php:888 app/features/fes/form.php:424
|
865 |
#, fuzzy
|
866 |
#| msgid "First name"
|
867 |
msgid "First"
|
868 |
msgstr "Vorname"
|
869 |
|
870 |
-
#: app/features/events.php:
|
871 |
#, fuzzy
|
872 |
#| msgid "second"
|
873 |
msgid "Second"
|
874 |
msgstr "Sekunde"
|
875 |
|
876 |
-
#: app/features/events.php:
|
877 |
#, fuzzy
|
878 |
#| msgid "Third Party"
|
879 |
msgid "Third"
|
880 |
msgstr "Dritte Seite"
|
881 |
|
882 |
-
#: app/features/events.php:
|
883 |
msgid "Fourth"
|
884 |
msgstr ""
|
885 |
|
886 |
-
#: app/features/events.php:
|
887 |
#, fuzzy
|
888 |
#| msgid "Last name"
|
889 |
msgid "Last"
|
890 |
msgstr "Nachname"
|
891 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
892 |
#: app/features/events.php:1124 app/features/events.php:1134
|
893 |
msgid "Exclude certain days"
|
894 |
msgstr "Ausschluss bestimmter Tage"
|
895 |
|
896 |
#: app/features/events.php:1129 app/features/events.php:2322
|
897 |
-
#: app/features/mec/regform.php:
|
898 |
-
#: app/libraries/main.php:
|
899 |
#: app/modules/booking/steps/tickets.php:22
|
900 |
#: app/modules/next-event/details.php:90 app/skins/single.php:488
|
901 |
#: app/skins/single/default.php:67 app/skins/single/default.php:278
|
@@ -914,7 +914,7 @@ msgstr ""
|
|
914 |
msgid "Day 1"
|
915 |
msgstr ""
|
916 |
|
917 |
-
#: app/features/events.php:1211 app/features/mec/settings.php:
|
918 |
#: app/skins/single.php:777
|
919 |
msgid "Hourly Schedule"
|
920 |
msgstr "Stundenplan"
|
@@ -937,11 +937,11 @@ msgstr ""
|
|
937 |
#: app/features/events.php:1227 app/features/events.php:1266
|
938 |
#: app/features/events.php:1301 app/features/events.php:1333
|
939 |
#: app/features/events.php:1362 app/features/events.php:2101
|
940 |
-
#: app/features/events.php:2148 app/features/events.php:
|
941 |
-
#: app/features/events.php:
|
942 |
#: app/features/fes/form.php:225 app/features/ix.php:2740
|
943 |
-
#: app/features/ix.php:2781 app/features/mec/booking.php:
|
944 |
-
#: app/features/mec/booking.php:
|
945 |
msgid "Title"
|
946 |
msgstr "Titel"
|
947 |
|
@@ -952,16 +952,16 @@ msgstr "Titel"
|
|
952 |
#: app/features/events.php:1867 app/features/events.php:1894
|
953 |
#: app/features/events.php:1993 app/features/events.php:2029
|
954 |
#: app/features/events.php:2136 app/features/events.php:2178
|
955 |
-
#: app/features/fes/list.php:78 app/features/mec/booking.php:
|
956 |
-
#: app/features/mec/booking.php:
|
957 |
-
#: app/features/mec/booking.php:
|
958 |
-
#: app/libraries/main.php:
|
959 |
-
#: app/libraries/main.php:
|
960 |
-
#: app/libraries/main.php:
|
961 |
-
#: app/libraries/main.php:
|
962 |
-
#: app/libraries/main.php:
|
963 |
-
#: app/libraries/main.php:
|
964 |
-
#: app/libraries/main.php:
|
965 |
msgid "Remove"
|
966 |
msgstr "Entfernen"
|
967 |
|
@@ -986,15 +986,15 @@ msgid "Description"
|
|
986 |
msgstr "Beschreibung"
|
987 |
|
988 |
#: app/features/events.php:1276 app/features/events.php:1309
|
989 |
-
#: app/features/events.php:1370 app/features/fes/form.php:
|
990 |
#: app/features/mec.php:340 app/features/mec/booking.php:122
|
991 |
#: app/features/mec/gateways.php:87 app/features/mec/ie.php:83
|
992 |
#: app/features/mec/messages.php:87 app/features/mec/modules.php:101
|
993 |
#: app/features/mec/notifications.php:86 app/features/mec/regform.php:123
|
994 |
-
#: app/features/mec/settings.php:154 app/features/mec/settings.php:
|
995 |
#: app/features/mec/single.php:115 app/features/mec/styles.php:87
|
996 |
#: app/features/mec/styling.php:109 app/features/speakers.php:57
|
997 |
-
#: app/libraries/main.php:
|
998 |
msgid "Speakers"
|
999 |
msgstr ""
|
1000 |
|
@@ -1005,12 +1005,12 @@ msgid "New Day"
|
|
1005 |
msgstr "Wochentage"
|
1006 |
|
1007 |
#: app/features/events.php:1401 app/features/fes/form.php:683
|
1008 |
-
#: app/features/mec/settings.php:
|
1009 |
msgid "Event Links"
|
1010 |
msgstr "Veranstaltungslinks"
|
1011 |
|
1012 |
#: app/features/events.php:1404 app/features/events.php:1410
|
1013 |
-
#: app/features/fes/form.php:685 app/libraries/main.php:
|
1014 |
msgid "Event Link"
|
1015 |
msgstr "Veranstaltungslink"
|
1016 |
|
@@ -1038,7 +1038,7 @@ msgid "URL Shortener"
|
|
1038 |
msgstr ""
|
1039 |
|
1040 |
#: app/features/events.php:1420 app/features/events.php:1433
|
1041 |
-
#: app/features/fes/form.php:690 app/libraries/main.php:
|
1042 |
#: app/skins/single.php:507 app/skins/single/default.php:117
|
1043 |
#: app/skins/single/default.php:328 app/skins/single/m1.php:191
|
1044 |
#: app/skins/single/m2.php:124 app/skins/single/modern.php:132
|
@@ -1074,7 +1074,7 @@ msgid "Total booking limits"
|
|
1074 |
msgstr "Gesamt Verfügbare Plätze"
|
1075 |
|
1076 |
#: app/features/events.php:1486 app/features/events.php:1691
|
1077 |
-
#: app/features/events.php:1864 app/modules/booking/default.php:
|
1078 |
#: app/modules/booking/steps/tickets.php:40
|
1079 |
#: app/skins/available_spot/tpl.php:140
|
1080 |
msgid "Unlimited"
|
@@ -1097,7 +1097,7 @@ msgid "Read About A Booking System"
|
|
1097 |
msgstr "Wählen Sie Ihren Single Event Stil"
|
1098 |
|
1099 |
#: app/features/events.php:1528 app/libraries/book.php:60
|
1100 |
-
#: app/libraries/main.php:
|
1101 |
msgid "Tickets"
|
1102 |
msgstr "Tickets"
|
1103 |
|
@@ -1113,13 +1113,13 @@ msgid "Ticket Name"
|
|
1113 |
msgstr "Ticket Name"
|
1114 |
|
1115 |
#: app/features/events.php:1555 app/features/events.php:1776
|
1116 |
-
#: app/features/events.php:
|
1117 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
1118 |
msgid "Start Time"
|
1119 |
msgstr "Uhrzeit des Beginns"
|
1120 |
|
1121 |
#: app/features/events.php:1597 app/features/events.php:1800
|
1122 |
-
#: app/features/events.php:
|
1123 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
1124 |
msgid "End Time"
|
1125 |
msgstr "Uhrzeit Ende"
|
@@ -1129,9 +1129,9 @@ msgstr "Uhrzeit Ende"
|
|
1129 |
#: app/features/events.php:1831 app/features/events.php:1834
|
1130 |
#: app/features/events.php:1890 app/features/events.php:2107
|
1131 |
#: app/features/events.php:2111 app/features/events.php:2153
|
1132 |
-
#: app/features/events.php:2156 app/features/mec/booking.php:
|
1133 |
-
#: app/features/mec/booking.php:
|
1134 |
-
#: app/features/mec/booking.php:
|
1135 |
msgid "Price"
|
1136 |
msgstr "Preis"
|
1137 |
|
@@ -1160,7 +1160,7 @@ msgstr "Preisschild"
|
|
1160 |
|
1161 |
#: app/features/events.php:1730 app/features/events.php:1756
|
1162 |
#: app/features/events.php:1892 app/features/labels.php:60
|
1163 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1164 |
#: app/features/mec/meta_boxes/search_form.php:66
|
1165 |
#: app/features/mec/meta_boxes/search_form.php:127
|
1166 |
#: app/features/mec/meta_boxes/search_form.php:188
|
@@ -1184,19 +1184,19 @@ msgid "Inherit from global options"
|
|
1184 |
msgstr "Aus den globalen Einstellungen übernehmen"
|
1185 |
|
1186 |
#: app/features/events.php:1967 app/features/events.php:2005
|
1187 |
-
#: app/features/mec/booking.php:
|
1188 |
msgid "Fee Title"
|
1189 |
msgstr "Gebühren Name"
|
1190 |
|
1191 |
#: app/features/events.php:1973 app/features/events.php:1977
|
1192 |
#: app/features/events.php:2010 app/features/events.php:2013
|
1193 |
-
#: app/features/mec/booking.php:
|
1194 |
-
#: app/features/mec/booking.php:
|
1195 |
msgid "Amount"
|
1196 |
msgstr "Betrag"
|
1197 |
|
1198 |
#: app/features/events.php:1978 app/features/events.php:2014
|
1199 |
-
#: app/features/mec/booking.php:
|
1200 |
msgid ""
|
1201 |
"Fee amount, considered as fixed amount if you set the type to amount "
|
1202 |
"otherwise considered as percentage"
|
@@ -1205,26 +1205,26 @@ msgstr ""
|
|
1205 |
"sonst als Prozentsatz"
|
1206 |
|
1207 |
#: app/features/events.php:1987 app/features/events.php:2023
|
1208 |
-
#: app/features/mec/booking.php:
|
1209 |
msgid "Percent"
|
1210 |
msgstr "Prozent"
|
1211 |
|
1212 |
#: app/features/events.php:1988 app/features/events.php:2024
|
1213 |
-
#: app/features/mec/booking.php:
|
1214 |
msgid "Amount (Per Ticket)"
|
1215 |
msgstr "Betrag (pro Ticket)"
|
1216 |
|
1217 |
#: app/features/events.php:1989 app/features/events.php:2025
|
1218 |
-
#: app/features/mec/booking.php:
|
1219 |
msgid "Amount (Per Booking)"
|
1220 |
msgstr "Betrag (pro Buchung)"
|
1221 |
|
1222 |
-
#: app/features/events.php:2062 app/features/mec/settings.php:
|
1223 |
msgid "Ticket Variations / Options"
|
1224 |
msgstr ""
|
1225 |
|
1226 |
#: app/features/events.php:2112 app/features/events.php:2157
|
1227 |
-
#: app/features/mec/booking.php:
|
1228 |
#, fuzzy
|
1229 |
#| msgid "Option"
|
1230 |
msgid "Option Price"
|
@@ -1232,61 +1232,61 @@ msgstr "Option"
|
|
1232 |
|
1233 |
#: app/features/events.php:2122 app/features/events.php:2126
|
1234 |
#: app/features/events.php:2166 app/features/events.php:2169
|
1235 |
-
#: app/features/mec/booking.php:
|
1236 |
-
#: app/features/mec/booking.php:
|
1237 |
#, fuzzy
|
1238 |
#| msgid "Amount (Per Ticket)"
|
1239 |
msgid "Maximum Per Ticket"
|
1240 |
msgstr "Betrag (pro Ticket)"
|
1241 |
|
1242 |
#: app/features/events.php:2127 app/features/events.php:2170
|
1243 |
-
#: app/features/mec/booking.php:
|
1244 |
msgid "Maximum Per Ticket. Leave it blank for unlimited."
|
1245 |
msgstr ""
|
1246 |
|
1247 |
-
#: app/features/events.php:2317 app/features/mec/regform.php:
|
1248 |
-
#: app/libraries/main.php:
|
1249 |
#, fuzzy
|
1250 |
#| msgid "Name"
|
1251 |
msgid "MEC Name"
|
1252 |
msgstr "Name"
|
1253 |
|
1254 |
-
#: app/features/events.php:2319 app/features/mec/regform.php:
|
1255 |
-
#: app/libraries/main.php:
|
1256 |
#, fuzzy
|
1257 |
#| msgid "Email"
|
1258 |
msgid "MEC Email"
|
1259 |
msgstr "Email"
|
1260 |
|
1261 |
-
#: app/features/events.php:2320 app/features/mec/regform.php:
|
1262 |
-
#: app/libraries/main.php:
|
1263 |
msgid "Text"
|
1264 |
msgstr "Text"
|
1265 |
|
1266 |
-
#: app/features/events.php:2323 app/features/mec/regform.php:
|
1267 |
#: app/features/organizers.php:102 app/features/organizers.php:146
|
1268 |
#: app/features/speakers.php:112 app/features/speakers.php:176
|
1269 |
-
#: app/features/speakers.php:245 app/libraries/main.php:
|
1270 |
msgid "Tel"
|
1271 |
msgstr "Tel"
|
1272 |
|
1273 |
-
#: app/features/events.php:2324 app/features/mec/regform.php:
|
1274 |
-
#: app/libraries/main.php:
|
1275 |
msgid "File"
|
1276 |
msgstr ""
|
1277 |
|
1278 |
-
#: app/features/events.php:2326 app/features/mec/regform.php:
|
1279 |
-
#: app/libraries/main.php:
|
1280 |
msgid "Textarea"
|
1281 |
msgstr "Textbereich"
|
1282 |
|
1283 |
-
#: app/features/events.php:2328 app/features/mec/regform.php:
|
1284 |
-
#: app/libraries/main.php:
|
1285 |
msgid "Checkboxes"
|
1286 |
msgstr "Checkboxes"
|
1287 |
|
1288 |
-
#: app/features/events.php:2330 app/features/mec/regform.php:
|
1289 |
-
#: app/libraries/main.php:
|
1290 |
msgid "Radio Buttons"
|
1291 |
msgstr "Radio Buttons"
|
1292 |
|
@@ -1359,44 +1359,44 @@ msgstr "Radio Buttons"
|
|
1359 |
#: app/features/mec/meta_boxes/search_form.php:604
|
1360 |
#: app/features/mec/meta_boxes/search_form.php:611
|
1361 |
#: app/features/mec/meta_boxes/search_form.php:618
|
1362 |
-
#: app/features/mec/regform.php:
|
1363 |
msgid "Dropdown"
|
1364 |
msgstr "Dropdown"
|
1365 |
|
1366 |
-
#: app/features/events.php:2333 app/features/mec/regform.php:
|
1367 |
-
#: app/libraries/main.php:
|
1368 |
msgid "Agreement"
|
1369 |
msgstr "Zustimmung"
|
1370 |
|
1371 |
-
#: app/features/events.php:2334 app/features/mec/regform.php:
|
1372 |
-
#: app/libraries/main.php:
|
1373 |
msgid "Paragraph"
|
1374 |
msgstr "Absatz"
|
1375 |
|
1376 |
-
#: app/features/events.php:
|
1377 |
-
#: app/features/events.php:
|
1378 |
#, php-format
|
1379 |
msgid "Show all %s"
|
1380 |
msgstr "Zeige alle %s"
|
1381 |
|
1382 |
-
#: app/features/events.php:
|
1383 |
msgid "labels"
|
1384 |
msgstr "Labels + Eventstatus"
|
1385 |
|
1386 |
-
#: app/features/events.php:
|
1387 |
msgid "locations"
|
1388 |
msgstr "Orte"
|
1389 |
|
1390 |
-
#: app/features/events.php:
|
1391 |
msgid "organizers"
|
1392 |
msgstr "Veranstalter"
|
1393 |
|
1394 |
-
#: app/features/events.php:
|
1395 |
-
#: app/features/events.php:
|
1396 |
#: app/features/ix.php:2781 app/features/locations.php:58
|
1397 |
#: app/features/locations.php:229 app/features/locations.php:286
|
1398 |
#: app/features/locations.php:288 app/features/locations.php:297
|
1399 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1400 |
#: app/features/mec/meta_boxes/search_form.php:38
|
1401 |
#: app/features/mec/meta_boxes/search_form.php:99
|
1402 |
#: app/features/mec/meta_boxes/search_form.php:160
|
@@ -1406,8 +1406,8 @@ msgstr "Veranstalter"
|
|
1406 |
#: app/features/mec/meta_boxes/search_form.php:404
|
1407 |
#: app/features/mec/meta_boxes/search_form.php:458
|
1408 |
#: app/features/mec/meta_boxes/search_form.php:519
|
1409 |
-
#: app/features/mec/meta_boxes/search_form.php:580 app/libraries/main.php:
|
1410 |
-
#: app/libraries/main.php:
|
1411 |
#: app/skins/single.php:337 app/skins/single.php:754
|
1412 |
#: app/skins/single/default.php:153 app/skins/single/default.php:364
|
1413 |
#: app/skins/single/m1.php:155 app/skins/single/m2.php:87
|
@@ -1415,9 +1415,9 @@ msgstr "Veranstalter"
|
|
1415 |
msgid "Location"
|
1416 |
msgstr "Ort"
|
1417 |
|
1418 |
-
#: app/features/events.php:
|
1419 |
-
#: app/features/events.php:
|
1420 |
-
#: app/features/ix.php:2781 app/features/mec/meta_boxes/display_options.php:
|
1421 |
#: app/features/mec/meta_boxes/search_form.php:45
|
1422 |
#: app/features/mec/meta_boxes/search_form.php:106
|
1423 |
#: app/features/mec/meta_boxes/search_form.php:167
|
@@ -1430,7 +1430,7 @@ msgstr "Ort"
|
|
1430 |
#: app/features/mec/meta_boxes/search_form.php:587
|
1431 |
#: app/features/organizers.php:58 app/features/organizers.php:199
|
1432 |
#: app/features/organizers.php:255 app/features/organizers.php:257
|
1433 |
-
#: app/features/organizers.php:266 app/libraries/main.php:
|
1434 |
#: app/libraries/skins.php:833 app/skins/single.php:644
|
1435 |
#: app/skins/single/default.php:194 app/skins/single/default.php:405
|
1436 |
#: app/skins/single/m1.php:90 app/skins/single/m2.php:22
|
@@ -1438,56 +1438,56 @@ msgstr "Ort"
|
|
1438 |
msgid "Organizer"
|
1439 |
msgstr "Veranstalter"
|
1440 |
|
1441 |
-
#: app/features/events.php:
|
1442 |
msgid "Repeat"
|
1443 |
msgstr "Wiederholen"
|
1444 |
|
1445 |
-
#: app/features/events.php:
|
1446 |
msgid "Author"
|
1447 |
msgstr "Autor"
|
1448 |
|
1449 |
-
#: app/features/events.php:
|
1450 |
msgid "iCal Export"
|
1451 |
msgstr "ical Export"
|
1452 |
|
1453 |
-
#: app/features/events.php:
|
1454 |
msgid "CSV Export"
|
1455 |
msgstr "CSV Export"
|
1456 |
|
1457 |
-
#: app/features/events.php:
|
1458 |
msgid "MS Excel Export"
|
1459 |
msgstr "MS Excel Export"
|
1460 |
|
1461 |
-
#: app/features/events.php:
|
1462 |
msgid "XML Export"
|
1463 |
msgstr "XML Export"
|
1464 |
|
1465 |
-
#: app/features/events.php:
|
1466 |
msgid "JSON Export"
|
1467 |
msgstr "JSON Export"
|
1468 |
|
1469 |
-
#: app/features/events.php:
|
1470 |
msgid "Duplicate"
|
1471 |
msgstr "Kopie"
|
1472 |
|
1473 |
-
#: app/features/events.php:
|
1474 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
1475 |
#: app/features/labels.php:176 app/features/locations.php:228
|
1476 |
#: app/features/organizers.php:198 app/features/speakers.php:242
|
1477 |
msgid "ID"
|
1478 |
msgstr "ID"
|
1479 |
|
1480 |
-
#: app/features/events.php:
|
1481 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
1482 |
msgid "Link"
|
1483 |
msgstr "Link"
|
1484 |
|
1485 |
-
#: app/features/events.php:
|
1486 |
#, php-format
|
1487 |
msgid "%s Tel"
|
1488 |
msgstr "%s Tel"
|
1489 |
|
1490 |
-
#: app/features/events.php:
|
1491 |
#, php-format
|
1492 |
msgid "%s Email"
|
1493 |
msgstr "%s Email"
|
@@ -1537,13 +1537,13 @@ msgstr "Das eingegebene Captcha ist ungültig! Bitte versuchen Sie es erneut."
|
|
1537 |
msgid "Please fill event title field!"
|
1538 |
msgstr "Bitte füllen Sie das Event Titelfeld"
|
1539 |
|
1540 |
-
#: app/features/fes.php:
|
1541 |
msgid "The event submitted. It will publish as soon as possible."
|
1542 |
msgstr ""
|
1543 |
"Die Veranstaltung wurde übermittelt. Sie wird sobald wie möglich "
|
1544 |
"veröffentlicht werden."
|
1545 |
|
1546 |
-
#: app/features/fes.php:
|
1547 |
msgid "The event published."
|
1548 |
msgstr "Die Veranstaltung wurde veröffentlicht."
|
1549 |
|
@@ -1580,7 +1580,7 @@ msgstr ""
|
|
1580 |
"dieser durch einen neuen link ersetzt werden. Vollständigen Link einfügen, "
|
1581 |
"einschließlich http(s)://"
|
1582 |
|
1583 |
-
#: app/features/fes/form.php:723 app/features/mec/settings.php:
|
1584 |
msgid "Featured Image"
|
1585 |
msgstr "Ausgewähltes Bild"
|
1586 |
|
@@ -1590,24 +1590,24 @@ msgstr "Bild entfernen"
|
|
1590 |
|
1591 |
#: app/features/fes/form.php:770 app/features/labels.php:61
|
1592 |
#: app/features/labels.php:220 app/features/mec.php:333
|
1593 |
-
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:
|
1594 |
#: app/skins/single.php:536 app/skins/single/default.php:132
|
1595 |
#: app/skins/single/default.php:343 app/skins/single/m1.php:64
|
1596 |
#: app/skins/single/modern.php:214
|
1597 |
msgid "Labels"
|
1598 |
msgstr "Labels"
|
1599 |
|
1600 |
-
#: app/features/fes/form.php:
|
1601 |
#: app/features/mec/meta_boxes/filter.php:138
|
1602 |
msgid "Tags"
|
1603 |
msgstr "Schlagworte"
|
1604 |
|
1605 |
-
#: app/features/fes/form.php:
|
1606 |
msgid "Insert your desired tags, comma separated."
|
1607 |
msgstr ""
|
1608 |
"Geben Sie die gewünschten Tags (Schlagworte) durch ein Komma separiert ein"
|
1609 |
|
1610 |
-
#: app/features/fes/form.php:
|
1611 |
msgid "Submit"
|
1612 |
msgstr "Buchung abschließen"
|
1613 |
|
@@ -1632,12 +1632,12 @@ msgstr "Keine Veranstaltungen gefunden! %s"
|
|
1632 |
msgid "MEC - Import / Export"
|
1633 |
msgstr "MEC - Import / Export"
|
1634 |
|
1635 |
-
#: app/features/ix.php:107 app/features/mec/booking.php:
|
1636 |
-
#: app/features/mec/gateways.php:
|
1637 |
-
#: app/features/mec/messages.php:
|
1638 |
-
#: app/features/mec/notifications.php:
|
1639 |
-
#: app/features/mec/settings.php:
|
1640 |
-
#: app/features/mec/styles.php:
|
1641 |
#: app/features/mec/support.php:73
|
1642 |
msgid "Import / Export"
|
1643 |
msgstr "Import / Export"
|
@@ -1670,7 +1670,7 @@ msgstr "Drittanbieter-Plugin ist ungültig!"
|
|
1670 |
msgid "Both of API key and Calendar ID are required!"
|
1671 |
msgstr "Beide, API Schlüssel und Calender ID wird benötigt"
|
1672 |
|
1673 |
-
#: app/features/ix.php:2000 app/features/ix.php:2419 app/features/ix.php:
|
1674 |
msgid "Please select some events to import!"
|
1675 |
msgstr "Bitte wählen Sie einige Veranstaltungen aus zum importieren"
|
1676 |
|
@@ -1706,28 +1706,28 @@ msgstr ""
|
|
1706 |
msgid "All of Client App, Client Secret and Calendar ID are required!"
|
1707 |
msgstr "Dies wird alles benötigt: Client ID, Client Secret und Calender ID!"
|
1708 |
|
1709 |
-
#: app/features/ix.php:
|
1710 |
#, php-format
|
1711 |
msgid "%s events added to Google Calendar successfully."
|
1712 |
msgstr "%s Events wurden erfolgreich zum Google Kalender hinzugefügt."
|
1713 |
|
1714 |
-
#: app/features/ix.php:
|
1715 |
#, php-format
|
1716 |
msgid "%s previously added events get updated."
|
1717 |
msgstr "%s vorherige hinzugefügte Events wurden aktualisiert."
|
1718 |
|
1719 |
-
#: app/features/ix.php:
|
1720 |
#, php-format
|
1721 |
msgid "%s events failed to add for following reasons: %s"
|
1722 |
msgstr "%s Events wurde aus folgenden Gründen nicht hinzugefügt: %s"
|
1723 |
|
1724 |
-
#: app/features/ix.php:
|
1725 |
#, fuzzy
|
1726 |
#| msgid "Please insert your facebook page's link."
|
1727 |
msgid "Please insert your Facebook page's link."
|
1728 |
msgstr "Bitte Ihren Facebook Seitenlink eingeben."
|
1729 |
|
1730 |
-
#: app/features/ix.php:
|
1731 |
#, fuzzy
|
1732 |
#| msgid ""
|
1733 |
#| "We couldn't recognize your Facebook page. Please check it and provide us "
|
@@ -1739,11 +1739,11 @@ msgstr ""
|
|
1739 |
"Wir konnten Ihre Facebookseite nicht erkennen. Bitte checken Sie das und "
|
1740 |
"stellen Sie uns einen gültigen Facebookseitenlink zur Verfügung."
|
1741 |
|
1742 |
-
#: app/features/ix.php:
|
1743 |
msgid "Please insert your facebook page's link."
|
1744 |
msgstr "Bitte Ihren Facebook Seitenlink eingeben."
|
1745 |
|
1746 |
-
#: app/features/ix.php:
|
1747 |
msgid ""
|
1748 |
"We couldn't recognize your Facebook page. Please check it and provide us a "
|
1749 |
"valid facebook page link."
|
@@ -1780,7 +1780,7 @@ msgstr "Synchronisation"
|
|
1780 |
#: app/features/ix/import.php:15 app/features/ix/import_f_calendar.php:15
|
1781 |
#: app/features/ix/import_g_calendar.php:15
|
1782 |
#: app/features/ix/import_meetup.php:15 app/features/ix/sync.php:15
|
1783 |
-
#: app/features/ix/thirdparty.php:15 app/features/mec/ie.php:
|
1784 |
msgid "Export"
|
1785 |
msgstr "Export"
|
1786 |
|
@@ -1791,7 +1791,7 @@ msgstr "Export"
|
|
1791 |
#: app/features/ix/import_g_calendar.php:103
|
1792 |
#: app/features/ix/import_meetup.php:16 app/features/ix/import_meetup.php:85
|
1793 |
#: app/features/ix/sync.php:16 app/features/ix/thirdparty.php:16
|
1794 |
-
#: app/features/ix/thirdparty.php:98 app/features/mec/ie.php:
|
1795 |
msgid "Import"
|
1796 |
msgstr "Import"
|
1797 |
|
@@ -1917,16 +1917,16 @@ msgstr "Umschalten"
|
|
1917 |
#: app/features/ix/export_g_calendar.php:72
|
1918 |
#: app/features/ix/export_g_calendar.php:147
|
1919 |
#: app/features/ix/export_g_calendar.php:164
|
1920 |
-
#: app/features/mec/notifications.php:
|
1921 |
-
#: app/features/mec/notifications.php:
|
1922 |
-
#: app/features/mec/notifications.php:
|
1923 |
-
#: app/features/mec/notifications.php:
|
1924 |
msgid "Add to Google Calendar"
|
1925 |
msgstr "Zum Google Kalender hinzufügen"
|
1926 |
|
1927 |
-
#: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:
|
1928 |
-
#: app/features/mec/modules.php:602 app/features/mec/notifications.php:
|
1929 |
-
#: app/features/mec/settings.php:
|
1930 |
msgid "Checking ..."
|
1931 |
msgstr "Überprüfung"
|
1932 |
|
@@ -1970,24 +1970,24 @@ msgstr ""
|
|
1970 |
msgid "ICS Feed"
|
1971 |
msgstr ""
|
1972 |
|
1973 |
-
#: app/features/ix/import.php:46 app/features/mec/booking.php:
|
1974 |
-
#: app/features/mec/booking.php:
|
1975 |
-
#: app/features/mec/booking.php:
|
1976 |
#: app/features/mec/modules.php:408 app/features/mec/modules.php:425
|
1977 |
#, php-format
|
1978 |
msgid "%s is required to use this feature."
|
1979 |
msgstr ""
|
1980 |
|
1981 |
#: app/features/ix/import.php:46 app/features/ix/sync.php:22
|
1982 |
-
#: app/features/mec/booking.php:
|
1983 |
-
#: app/features/mec/booking.php:
|
1984 |
#: app/features/mec/meta_boxes/display_options.php:296
|
1985 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1986 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1987 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1988 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1989 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1990 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1991 |
#: app/features/mec/modules.php:267 app/features/mec/modules.php:408
|
1992 |
#: app/features/mec/modules.php:425
|
1993 |
msgid "Pro version of Modern Events Calendar"
|
@@ -2171,7 +2171,7 @@ msgid "Auto Synchronization"
|
|
2171 |
msgstr "Auto Synchronisation"
|
2172 |
|
2173 |
#: app/features/ix/sync.php:22
|
2174 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2175 |
#, php-format
|
2176 |
msgid "%s is required to use synchronization feature."
|
2177 |
msgstr ""
|
@@ -2182,7 +2182,7 @@ msgstr "Automatischer Google Calender Import"
|
|
2182 |
|
2183 |
#: app/features/ix/sync.php:32 app/features/ix/sync.php:41
|
2184 |
#: app/features/ix/sync.php:52 app/features/ix/sync.php:63
|
2185 |
-
#: app/features/mec/notifications.php:
|
2186 |
msgid "Important Note"
|
2187 |
msgstr "Important Note"
|
2188 |
|
@@ -2315,13 +2315,13 @@ msgstr "Wähle Label Farbe"
|
|
2315 |
#: app/features/mec/meta_boxes/display_options.php:32
|
2316 |
#: app/features/mec/meta_boxes/display_options.php:157
|
2317 |
#: app/features/mec/meta_boxes/display_options.php:301
|
2318 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2319 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2320 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2321 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2322 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2323 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2324 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2325 |
msgid "Style"
|
2326 |
msgstr "Style"
|
2327 |
|
@@ -2345,7 +2345,7 @@ msgid "Featured"
|
|
2345 |
msgstr "Ausgewähltes Bild"
|
2346 |
|
2347 |
#: app/features/labels.php:117 app/features/labels.php:142
|
2348 |
-
#: app/libraries/main.php:
|
2349 |
#: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:59
|
2350 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
|
2351 |
#: app/skins/daily_view/render.php:27 app/skins/grid/render.php:53
|
@@ -2380,7 +2380,7 @@ msgstr "Event %s"
|
|
2380 |
|
2381 |
#: app/features/locations.php:59 app/features/mec.php:334
|
2382 |
#: app/features/mec/dashboard.php:202 app/features/mec/meta_boxes/filter.php:87
|
2383 |
-
#: app/libraries/main.php:
|
2384 |
msgid "Locations"
|
2385 |
msgstr "Orte"
|
2386 |
|
@@ -2454,7 +2454,7 @@ msgstr ""
|
|
2454 |
"z.B. Karlsruhe Schlosshotel oder Frankfurt Allianz oder Dortmund "
|
2455 |
"Westfalenhalle"
|
2456 |
|
2457 |
-
#: app/features/locations.php:309 app/features/mec/settings.php:
|
2458 |
#: app/widgets/single.php:115
|
2459 |
msgid "Event Location"
|
2460 |
msgstr "Veranstaltungsort"
|
@@ -2492,7 +2492,7 @@ msgstr "Bild wählen"
|
|
2492 |
msgid "Don't show map in single event page"
|
2493 |
msgstr "Karte in Einzelansicht nicht anzeigen"
|
2494 |
|
2495 |
-
#: app/features/locations.php:355 app/libraries/main.php:
|
2496 |
#, fuzzy
|
2497 |
#| msgid "Locations"
|
2498 |
msgid "Other Locations"
|
@@ -2549,7 +2549,7 @@ msgstr "Support"
|
|
2549 |
|
2550 |
#: app/features/mec.php:335 app/features/mec/dashboard.php:209
|
2551 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2552 |
-
#: app/libraries/main.php:
|
2553 |
msgid "Organizers"
|
2554 |
msgstr "Veranstalter"
|
2555 |
|
@@ -2654,32 +2654,32 @@ msgid ""
|
|
2654 |
"your host provider in this regard."
|
2655 |
msgstr ""
|
2656 |
|
2657 |
-
#: app/features/mec/booking.php:24 app/features/mec/booking.php:
|
2658 |
-
#: app/features/mec/booking.php:
|
2659 |
-
#: app/features/mec/booking.php:
|
2660 |
-
#: app/features/mec/gateways.php:
|
2661 |
-
#: app/features/mec/gateways.php:
|
2662 |
-
#: app/features/mec/messages.php:11 app/features/mec/messages.php:
|
2663 |
-
#: app/features/mec/messages.php:
|
2664 |
-
#: app/features/mec/messages.php:
|
2665 |
#: app/features/mec/modules.php:542 app/features/mec/modules.php:552
|
2666 |
#: app/features/mec/modules.php:619 app/features/mec/modules.php:633
|
2667 |
-
#: app/features/mec/notifications.php:10 app/features/mec/notifications.php:
|
2668 |
-
#: app/features/mec/notifications.php:
|
2669 |
-
#: app/features/mec/notifications.php:
|
2670 |
-
#: app/features/mec/notifications.php:
|
2671 |
-
#: app/features/mec/regform.php:
|
2672 |
-
#: app/features/mec/regform.php:
|
2673 |
-
#: app/features/mec/settings.php:31 app/features/mec/settings.php:
|
2674 |
-
#: app/features/mec/settings.php:
|
2675 |
-
#: app/features/mec/settings.php:
|
2676 |
-
#: app/features/mec/single.php:
|
2677 |
-
#: app/features/mec/single.php:
|
2678 |
-
#: app/features/mec/styles.php:11 app/features/mec/styles.php:
|
2679 |
-
#: app/features/mec/styles.php:
|
2680 |
-
#: app/features/mec/styles.php:
|
2681 |
-
#: app/features/mec/styling.php:
|
2682 |
-
#: app/features/mec/styling.php:
|
2683 |
msgid "Save Changes"
|
2684 |
msgstr "Änderungen sichern"
|
2685 |
|
@@ -2687,7 +2687,7 @@ msgstr "Änderungen sichern"
|
|
2687 |
#: app/features/mec/ie.php:25 app/features/mec/messages.php:29
|
2688 |
#: app/features/mec/modules.php:36 app/features/mec/notifications.php:28
|
2689 |
#: app/features/mec/regform.php:65 app/features/mec/settings.php:57
|
2690 |
-
#: app/features/mec/settings.php:
|
2691 |
#: app/features/mec/styles.php:29 app/features/mec/styling.php:51
|
2692 |
msgid "Archive Pages"
|
2693 |
msgstr ""
|
@@ -2696,7 +2696,7 @@ msgstr ""
|
|
2696 |
#: app/features/mec/ie.php:30 app/features/mec/messages.php:34
|
2697 |
#: app/features/mec/modules.php:41 app/features/mec/notifications.php:33
|
2698 |
#: app/features/mec/regform.php:70 app/features/mec/settings.php:87
|
2699 |
-
#: app/features/mec/settings.php:
|
2700 |
#: app/features/mec/styles.php:34 app/features/mec/styling.php:56
|
2701 |
msgid "User Profile"
|
2702 |
msgstr ""
|
@@ -2727,7 +2727,7 @@ msgstr "Single Event Stil"
|
|
2727 |
#: app/features/mec/ie.php:46 app/features/mec/messages.php:50
|
2728 |
#: app/features/mec/modules.php:57 app/features/mec/notifications.php:49
|
2729 |
#: app/features/mec/regform.php:86 app/features/mec/settings.php:117
|
2730 |
-
#: app/features/mec/single.php:56 app/features/mec/single.php:
|
2731 |
#: app/features/mec/styles.php:50 app/features/mec/styling.php:72
|
2732 |
#, fuzzy
|
2733 |
#| msgid "Single Event Style"
|
@@ -2738,7 +2738,7 @@ msgstr "Single Event Stil"
|
|
2738 |
#: app/features/mec/ie.php:49 app/features/mec/messages.php:53
|
2739 |
#: app/features/mec/modules.php:60 app/features/mec/notifications.php:52
|
2740 |
#: app/features/mec/regform.php:89 app/features/mec/settings.php:120
|
2741 |
-
#: app/features/mec/single.php:74 app/features/mec/single.php:
|
2742 |
#: app/features/mec/styles.php:53 app/features/mec/styling.php:75
|
2743 |
msgid "Additional Organizers"
|
2744 |
msgstr "Zusätzliche Organisatoren"
|
@@ -2754,7 +2754,7 @@ msgstr "Zusätzliche Organisatoren"
|
|
2754 |
msgid "Additional Locations"
|
2755 |
msgstr "Zusätzliche Organisatoren"
|
2756 |
|
2757 |
-
#: app/features/mec/booking.php:98 app/features/mec/booking.php:
|
2758 |
#: app/features/mec/gateways.php:71 app/features/mec/ie.php:67
|
2759 |
#: app/features/mec/messages.php:71 app/features/mec/modules.php:78
|
2760 |
#: app/features/mec/notifications.php:70 app/features/mec/regform.php:107
|
@@ -2763,7 +2763,7 @@ msgstr "Zusätzliche Organisatoren"
|
|
2763 |
msgid "Taxes / Fees"
|
2764 |
msgstr "Steuern/Gebühren"
|
2765 |
|
2766 |
-
#: app/features/mec/booking.php:104 app/features/mec/booking.php:
|
2767 |
#: app/features/mec/gateways.php:72 app/features/mec/ie.php:68
|
2768 |
#: app/features/mec/messages.php:72 app/features/mec/modules.php:79
|
2769 |
#: app/features/mec/notifications.php:71 app/features/mec/regform.php:108
|
@@ -2834,125 +2834,125 @@ msgstr "Wetter"
|
|
2834 |
msgid "Next Event"
|
2835 |
msgstr "Nächstes Event"
|
2836 |
|
2837 |
-
#: app/features/mec/booking.php:
|
2838 |
-
#: app/features/mec/ie.php:
|
2839 |
-
#: app/features/mec/modules.php:195 app/features/mec/notifications.php:
|
2840 |
-
#: app/features/mec/notifications.php:
|
2841 |
-
#: app/features/mec/settings.php:
|
2842 |
-
#: app/features/mec/styles.php:
|
2843 |
msgid "Booking Verification"
|
2844 |
msgstr "Verifizierung der Buchung"
|
2845 |
|
2846 |
-
#: app/features/mec/booking.php:
|
2847 |
-
#: app/features/mec/gateways.php:
|
2848 |
-
#: app/features/mec/messages.php:
|
2849 |
-
#: app/features/mec/notifications.php:
|
2850 |
-
#: app/features/mec/notifications.php:
|
2851 |
-
#: app/features/mec/settings.php:
|
2852 |
-
#: app/features/mec/styles.php:
|
2853 |
msgid "Booking Confirmation"
|
2854 |
msgstr "Buchungsbestätigung"
|
2855 |
|
2856 |
-
#: app/features/mec/booking.php:
|
2857 |
-
#: app/features/mec/ie.php:
|
2858 |
-
#: app/features/mec/modules.php:197 app/features/mec/notifications.php:
|
2859 |
-
#: app/features/mec/notifications.php:
|
2860 |
-
#: app/features/mec/settings.php:
|
2861 |
-
#: app/features/mec/styles.php:
|
2862 |
#, fuzzy
|
2863 |
#| msgid "Booking cancellation link."
|
2864 |
msgid "Booking Cancellation"
|
2865 |
msgstr "Link zur Stornierung der Buchung"
|
2866 |
|
2867 |
-
#: app/features/mec/booking.php:
|
2868 |
-
#: app/features/mec/ie.php:
|
2869 |
-
#: app/features/mec/modules.php:198 app/features/mec/notifications.php:
|
2870 |
-
#: app/features/mec/notifications.php:
|
2871 |
-
#: app/features/mec/settings.php:
|
2872 |
-
#: app/features/mec/styles.php:
|
2873 |
msgid "Admin"
|
2874 |
msgstr ""
|
2875 |
|
2876 |
-
#: app/features/mec/booking.php:170 app/features/mec/gateways.php:135
|
2877 |
-
#: app/features/mec/ie.php:131 app/features/mec/messages.php:135
|
2878 |
-
#: app/features/mec/modules.php:199 app/features/mec/notifications.php:164
|
2879 |
-
#: app/features/mec/notifications.php:519 app/features/mec/regform.php:169
|
2880 |
-
#: app/features/mec/settings.php:202 app/features/mec/single.php:163
|
2881 |
-
#: app/features/mec/styles.php:135 app/features/mec/styling.php:157
|
2882 |
-
#: app/libraries/notifications.php:354
|
2883 |
-
msgid "Booking Reminder"
|
2884 |
-
msgstr "Buchungs Erinnerung"
|
2885 |
-
|
2886 |
#: app/features/mec/booking.php:172 app/features/mec/gateways.php:137
|
2887 |
#: app/features/mec/ie.php:133 app/features/mec/messages.php:137
|
2888 |
-
#: app/features/mec/modules.php:
|
2889 |
-
#: app/features/mec/notifications.php:
|
2890 |
#: app/features/mec/settings.php:204 app/features/mec/single.php:165
|
2891 |
#: app/features/mec/styles.php:137 app/features/mec/styling.php:159
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2892 |
#: app/features/mec/support-page.php:80
|
2893 |
msgid "New Event"
|
2894 |
msgstr "Neue Veranstaltung"
|
2895 |
|
2896 |
-
#: app/features/mec/booking.php:
|
2897 |
-
#: app/features/mec/ie.php:
|
2898 |
-
#: app/features/mec/modules.php:209 app/features/mec/notifications.php:
|
2899 |
-
#: app/features/mec/regform.php:
|
2900 |
-
#: app/features/mec/single.php:
|
2901 |
-
#: app/features/mec/styling.php:
|
2902 |
msgid "Styling Options"
|
2903 |
msgstr "Styling-Optionen"
|
2904 |
|
2905 |
-
#: app/features/mec/booking.php:
|
2906 |
-
#: app/features/mec/ie.php:
|
2907 |
-
#: app/features/mec/modules.php:216 app/features/mec/notifications.php:
|
2908 |
-
#: app/features/mec/regform.php:
|
2909 |
-
#: app/features/mec/single.php:
|
2910 |
-
#: app/features/mec/styling.php:
|
2911 |
msgid "Custom CSS"
|
2912 |
msgstr "Custom CSS"
|
2913 |
|
2914 |
-
#: app/features/mec/booking.php:
|
2915 |
-
#: app/features/mec/ie.php:
|
2916 |
-
#: app/features/mec/messages.php:
|
2917 |
-
#: app/features/mec/notifications.php:
|
2918 |
-
#: app/features/mec/settings.php:
|
2919 |
-
#: app/features/mec/styles.php:
|
2920 |
#: app/features/mec/support.php:66
|
2921 |
msgid "Messages"
|
2922 |
msgstr "Nachrichten"
|
2923 |
|
2924 |
-
#: app/features/mec/booking.php:
|
2925 |
msgid "Enable booking module"
|
2926 |
msgstr "Buchungsmodul aktivieren"
|
2927 |
|
2928 |
-
#: app/features/mec/booking.php:
|
2929 |
msgid ""
|
2930 |
"After enable it, you should reloading this page to see Payment Gateways on "
|
2931 |
"settings and see a new menu on Dashboard"
|
2932 |
msgstr ""
|
2933 |
|
2934 |
-
#: app/features/mec/booking.php:
|
2935 |
#: app/features/mec/modules.php:491 app/features/mec/modules.php:496
|
2936 |
msgid "Date Format"
|
2937 |
msgstr "Datumsformat"
|
2938 |
|
2939 |
-
#: app/features/mec/booking.php:
|
2940 |
msgid "Default is Y-m-d"
|
2941 |
msgstr "Voreinstellung ist J-M-T"
|
2942 |
|
2943 |
-
#: app/features/mec/booking.php:
|
2944 |
msgid "Maximum Dates"
|
2945 |
msgstr "Maximale Anzahl von Daten"
|
2946 |
|
2947 |
-
#: app/features/mec/booking.php:
|
2948 |
msgid "Default is 6"
|
2949 |
msgstr "Die Voreinstellung ist 6"
|
2950 |
|
2951 |
-
#: app/features/mec/booking.php:
|
2952 |
msgid "Thank You Page"
|
2953 |
msgstr "Danke Seite"
|
2954 |
|
2955 |
-
#: app/features/mec/booking.php:
|
2956 |
msgid ""
|
2957 |
"User redirects to this page after booking. Leave it empty if you want to "
|
2958 |
"disable it."
|
@@ -2960,15 +2960,15 @@ msgstr ""
|
|
2960 |
"Benutzer werden auf diese Seite nach der Buchung weitergeleitet. Lassen Sie "
|
2961 |
"es leer, wenn Sie es deaktivieren möchten."
|
2962 |
|
2963 |
-
#: app/features/mec/booking.php:
|
2964 |
msgid "Enable Express Attendees Form"
|
2965 |
msgstr "Aktivieren Sie das Express-Teilnehmerformular"
|
2966 |
|
2967 |
-
#: app/features/mec/booking.php:
|
2968 |
msgid "Attendees Form"
|
2969 |
msgstr "Teilnahmeformular"
|
2970 |
|
2971 |
-
#: app/features/mec/booking.php:
|
2972 |
msgid ""
|
2973 |
"Users are able to apply first attendee information for other attendees in "
|
2974 |
"the booking form."
|
@@ -2976,82 +2976,82 @@ msgstr ""
|
|
2976 |
"Benutzer können erste Teilnehmerinformationen für andere Teilnehmer im "
|
2977 |
"Buchungsformular anwenden."
|
2978 |
|
2979 |
-
#: app/features/mec/booking.php:
|
2980 |
msgid "Email verification"
|
2981 |
msgstr "Email-Verifizierung"
|
2982 |
|
2983 |
-
#: app/features/mec/booking.php:
|
2984 |
msgid "Auto verification for free bookings"
|
2985 |
msgstr "Automatische Verifizierung für kostenlose Buchungen"
|
2986 |
|
2987 |
-
#: app/features/mec/booking.php:
|
2988 |
msgid "Auto verification for paid bookings"
|
2989 |
msgstr "Automatische Verifizierung für kostenpflichtige Buchungen"
|
2990 |
|
2991 |
-
#: app/features/mec/booking.php:
|
2992 |
msgid "Auto confirmation for free bookings"
|
2993 |
msgstr "Automatische Bestätigung für kostenlose Buchungen"
|
2994 |
|
2995 |
-
#: app/features/mec/booking.php:
|
2996 |
msgid "Auto confirmation for paid bookings"
|
2997 |
msgstr "Automatische Bestätigung für kostenpflichtige Buchungen"
|
2998 |
|
2999 |
-
#: app/features/mec/booking.php:
|
3000 |
msgid "Enable coupons module"
|
3001 |
msgstr "Gutscheinmodul aktivieren"
|
3002 |
|
3003 |
-
#: app/features/mec/booking.php:
|
3004 |
msgid ""
|
3005 |
"After enable it, you should reloading this page to see a new menu on "
|
3006 |
"Dashboard > Booking"
|
3007 |
msgstr ""
|
3008 |
|
3009 |
-
#: app/features/mec/booking.php:
|
3010 |
msgid "Enable taxes / fees module"
|
3011 |
msgstr "Modul für Gebühren/Steuern aktivieren"
|
3012 |
|
3013 |
-
#: app/features/mec/booking.php:
|
3014 |
msgid "Add Fee"
|
3015 |
msgstr "Gebühr hinzufügen"
|
3016 |
|
3017 |
-
#: app/features/mec/booking.php:
|
3018 |
#, fuzzy
|
3019 |
#| msgid "Enable coupons module"
|
3020 |
msgid "Enable ticket options module"
|
3021 |
msgstr "Gutscheinmodul aktivieren"
|
3022 |
|
3023 |
-
#: app/features/mec/booking.php:
|
3024 |
msgid "Add Variation / Option"
|
3025 |
msgstr ""
|
3026 |
|
3027 |
-
#: app/features/mec/booking.php:
|
3028 |
-
#: app/features/mec/messages.php:
|
3029 |
-
#: app/features/mec/notifications.php:
|
3030 |
-
#: app/features/mec/settings.php:
|
3031 |
-
#: app/features/mec/styles.php:
|
3032 |
msgid "Saved"
|
3033 |
msgstr "Gesichert"
|
3034 |
|
3035 |
-
#: app/features/mec/booking.php:
|
3036 |
-
#: app/features/mec/messages.php:
|
3037 |
-
#: app/features/mec/notifications.php:
|
3038 |
-
#: app/features/mec/settings.php:
|
3039 |
-
#: app/features/mec/styles.php:
|
3040 |
msgid "Settings Saved!"
|
3041 |
msgstr ""
|
3042 |
|
3043 |
-
#: app/features/mec/booking.php:
|
3044 |
#: app/features/mec/modules.php:600 app/features/mec/modules.php:622
|
3045 |
-
#: app/features/mec/notifications.php:
|
3046 |
-
#: app/features/mec/notifications.php:
|
3047 |
-
#: app/features/mec/settings.php:
|
3048 |
-
#: app/features/mec/single.php:
|
3049 |
msgid "Verified"
|
3050 |
msgstr "Verifiziert"
|
3051 |
|
3052 |
-
#: app/features/mec/booking.php:
|
3053 |
-
#: app/features/mec/notifications.php:
|
3054 |
-
#: app/features/mec/single.php:
|
3055 |
msgid "Please Refresh Page"
|
3056 |
msgstr "Bitte Seiten Refresh vornehmen"
|
3057 |
|
@@ -3128,7 +3128,7 @@ msgstr ""
|
|
3128 |
msgid "Activate Addons"
|
3129 |
msgstr "MEC Aktivierung"
|
3130 |
|
3131 |
-
#: app/features/mec/dashboard.php:220 app/features/mec/settings.php:
|
3132 |
msgid "Upcoming Events"
|
3133 |
msgstr "Bevorstehende Events"
|
3134 |
|
@@ -3177,35 +3177,35 @@ msgstr "Alle Verkäufe (%s)"
|
|
3177 |
msgid "Change Log"
|
3178 |
msgstr "Änderungsprotokoll"
|
3179 |
|
3180 |
-
#: app/features/mec/ie.php:
|
3181 |
msgid ""
|
3182 |
"Insert your backup files below and press import to restore your site's "
|
3183 |
"options to the last backup."
|
3184 |
msgstr ""
|
3185 |
|
3186 |
-
#: app/features/mec/ie.php:
|
3187 |
msgid ""
|
3188 |
"WARNING! Restoring backup will overwrite all of your current option values. "
|
3189 |
"Caution Indeed."
|
3190 |
msgstr ""
|
3191 |
|
3192 |
-
#: app/features/mec/ie.php:
|
3193 |
msgid "Please paste your options here"
|
3194 |
msgstr ""
|
3195 |
|
3196 |
-
#: app/features/mec/ie.php:
|
3197 |
#, fuzzy
|
3198 |
#| msgid "Import Options"
|
3199 |
msgid "Import Settings"
|
3200 |
msgstr "Import Optionen"
|
3201 |
|
3202 |
-
#: app/features/mec/ie.php:
|
3203 |
#, fuzzy
|
3204 |
#| msgid "Download Invoice"
|
3205 |
msgid "Download Settings"
|
3206 |
msgstr "Download Rechnung\n"
|
3207 |
|
3208 |
-
#: app/features/mec/messages.php:
|
3209 |
msgid ""
|
3210 |
"You can change some MEC messages here simply. For example if you like to "
|
3211 |
"change \"REGISTER\" button label, you can do it here. By the Way, if your "
|
@@ -3223,63 +3223,63 @@ msgstr "Skin"
|
|
3223 |
|
3224 |
#: app/features/mec/meta_boxes/display_options.php:34
|
3225 |
#: app/features/mec/meta_boxes/display_options.php:159
|
3226 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3227 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3228 |
-
#: app/features/mec/settings.php:
|
3229 |
-
#: app/features/mec/settings.php:
|
3230 |
-
#: app/features/mec/settings.php:
|
3231 |
msgid "Classic"
|
3232 |
msgstr "Klassisch"
|
3233 |
|
3234 |
#: app/features/mec/meta_boxes/display_options.php:35
|
3235 |
#: app/features/mec/meta_boxes/display_options.php:161
|
3236 |
-
#: app/features/mec/settings.php:
|
3237 |
-
#: app/features/mec/settings.php:
|
3238 |
msgid "Minimal"
|
3239 |
msgstr "Minimal"
|
3240 |
|
3241 |
#: app/features/mec/meta_boxes/display_options.php:36
|
3242 |
#: app/features/mec/meta_boxes/display_options.php:162
|
3243 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3244 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3245 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3246 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3247 |
-
#: app/features/mec/settings.php:
|
3248 |
-
#: app/features/mec/settings.php:
|
3249 |
-
#: app/features/mec/settings.php:
|
3250 |
-
#: app/features/mec/settings.php:
|
3251 |
msgid "Modern"
|
3252 |
msgstr "Modern"
|
3253 |
|
3254 |
#: app/features/mec/meta_boxes/display_options.php:37
|
3255 |
-
#: app/features/mec/settings.php:
|
3256 |
msgid "Standard"
|
3257 |
msgstr "Standard"
|
3258 |
|
3259 |
#: app/features/mec/meta_boxes/display_options.php:38
|
3260 |
-
#: app/features/mec/settings.php:
|
3261 |
msgid "Accordion"
|
3262 |
msgstr "Accordion"
|
3263 |
|
3264 |
#: app/features/mec/meta_boxes/display_options.php:44
|
3265 |
#: app/features/mec/meta_boxes/display_options.php:171
|
3266 |
#: app/features/mec/meta_boxes/display_options.php:309
|
3267 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3268 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3269 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3270 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3271 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3272 |
msgid "Today"
|
3273 |
msgstr "Heute"
|
3274 |
|
3275 |
#: app/features/mec/meta_boxes/display_options.php:45
|
3276 |
#: app/features/mec/meta_boxes/display_options.php:172
|
3277 |
#: app/features/mec/meta_boxes/display_options.php:310
|
3278 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3279 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3280 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3281 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3282 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3283 |
msgid "Tomorrow"
|
3284 |
msgstr "Morgen"
|
3285 |
|
@@ -3287,14 +3287,14 @@ msgstr "Morgen"
|
|
3287 |
#: app/features/mec/meta_boxes/display_options.php:173
|
3288 |
#: app/features/mec/meta_boxes/display_options.php:311
|
3289 |
#: app/features/mec/meta_boxes/display_options.php:364
|
3290 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3291 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3292 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3293 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3294 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3295 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3296 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3297 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3298 |
msgid "Start of Current Month"
|
3299 |
msgstr "Mit Beginn des laufenden Monats"
|
3300 |
|
@@ -3302,14 +3302,14 @@ msgstr "Mit Beginn des laufenden Monats"
|
|
3302 |
#: app/features/mec/meta_boxes/display_options.php:174
|
3303 |
#: app/features/mec/meta_boxes/display_options.php:312
|
3304 |
#: app/features/mec/meta_boxes/display_options.php:365
|
3305 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3306 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3307 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3308 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3309 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3310 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3311 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3312 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3313 |
msgid "Start of Next Month"
|
3314 |
msgstr "Mit Beginn des kommenden Monats"
|
3315 |
|
@@ -3317,15 +3317,15 @@ msgstr "Mit Beginn des kommenden Monats"
|
|
3317 |
#: app/features/mec/meta_boxes/display_options.php:175
|
3318 |
#: app/features/mec/meta_boxes/display_options.php:313
|
3319 |
#: app/features/mec/meta_boxes/display_options.php:366
|
3320 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3321 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3322 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3323 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3324 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3325 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3326 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3327 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3328 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3329 |
msgid "On a certain date"
|
3330 |
msgstr "An einem bestimmten Tag"
|
3331 |
|
@@ -3333,15 +3333,15 @@ msgstr "An einem bestimmten Tag"
|
|
3333 |
#: app/features/mec/meta_boxes/display_options.php:178
|
3334 |
#: app/features/mec/meta_boxes/display_options.php:316
|
3335 |
#: app/features/mec/meta_boxes/display_options.php:369
|
3336 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3337 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3338 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3339 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3340 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3341 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3342 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3343 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3344 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3345 |
#, php-format
|
3346 |
msgid "eg. %s"
|
3347 |
msgstr "z.B. %s"
|
@@ -3372,40 +3372,40 @@ msgstr "z.B. %s"
|
|
3372 |
#: app/features/mec/meta_boxes/display_options.php:258
|
3373 |
#: app/features/mec/meta_boxes/display_options.php:320
|
3374 |
#: app/features/mec/meta_boxes/display_options.php:325
|
3375 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3376 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3377 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3378 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3379 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3380 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3381 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3382 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3383 |
-
#: app/features/mec/meta_boxes/display_options.php:852
|
3384 |
#: app/features/mec/meta_boxes/display_options.php:856
|
3385 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3386 |
#: app/features/mec/meta_boxes/display_options.php:888
|
3387 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3388 |
#: app/features/mec/meta_boxes/display_options.php:899
|
3389 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3390 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3391 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3392 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3393 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3394 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3395 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3396 |
#: app/features/mec/meta_boxes/display_options.php:1007
|
3397 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3398 |
#: app/features/mec/meta_boxes/display_options.php:1018
|
3399 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3400 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3401 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3402 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3403 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3404 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3405 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3406 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3407 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3408 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
|
|
3409 |
msgid "Date Formats"
|
3410 |
msgstr "Datumsformate"
|
3411 |
|
@@ -3421,11 +3421,11 @@ msgstr "Standard Werte sind T, M und J"
|
|
3421 |
#: app/features/mec/meta_boxes/display_options.php:86
|
3422 |
#: app/features/mec/meta_boxes/display_options.php:224
|
3423 |
#: app/features/mec/meta_boxes/display_options.php:248
|
3424 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3425 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3426 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3427 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3428 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3429 |
msgid "Default values are d, F and l"
|
3430 |
msgstr ""
|
3431 |
"Standardwerte sind Tag, Monat als ganzes Wort und Wochentag als ganzes Wort"
|
@@ -3443,22 +3443,22 @@ msgstr "Die Standardwerte sind d and F"
|
|
3443 |
#: app/features/mec/meta_boxes/display_options.php:115
|
3444 |
#: app/features/mec/meta_boxes/display_options.php:276
|
3445 |
#: app/features/mec/meta_boxes/display_options.php:332
|
3446 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3447 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3448 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3449 |
msgid "Limit"
|
3450 |
msgstr "Limit"
|
3451 |
|
3452 |
#: app/features/mec/meta_boxes/display_options.php:116
|
3453 |
#: app/features/mec/meta_boxes/display_options.php:277
|
3454 |
#: app/features/mec/meta_boxes/display_options.php:333
|
3455 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3456 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3457 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3458 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3459 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3460 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3461 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3462 |
msgid "eg. 6"
|
3463 |
msgstr "z.B. 6"
|
3464 |
|
@@ -3482,20 +3482,20 @@ msgstr "Zeige Monatsteilung"
|
|
3482 |
#: app/features/mec/meta_boxes/display_options.php:160
|
3483 |
#: app/features/mec/meta_boxes/display_options.php:303
|
3484 |
#: app/features/mec/meta_boxes/display_options.php:385
|
3485 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3486 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3487 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3488 |
-
#: app/features/mec/settings.php:
|
3489 |
-
#: app/features/mec/settings.php:
|
3490 |
-
#: app/features/mec/settings.php:
|
3491 |
msgid "Clean"
|
3492 |
msgstr "Clean"
|
3493 |
|
3494 |
#: app/features/mec/meta_boxes/display_options.php:163
|
3495 |
#: app/features/mec/meta_boxes/display_options.php:387
|
3496 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3497 |
-
#: app/features/mec/settings.php:
|
3498 |
-
#: app/features/mec/settings.php:
|
3499 |
msgid "Simple"
|
3500 |
msgstr "Schlicht"
|
3501 |
|
@@ -3505,9 +3505,9 @@ msgstr "Farbenfroh"
|
|
3505 |
|
3506 |
#: app/features/mec/meta_boxes/display_options.php:165
|
3507 |
#: app/features/mec/meta_boxes/display_options.php:386
|
3508 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3509 |
-
#: app/features/mec/settings.php:
|
3510 |
-
#: app/features/mec/settings.php:
|
3511 |
msgid "Novel"
|
3512 |
msgstr ""
|
3513 |
|
@@ -3530,21 +3530,21 @@ msgid "Default value is \"d F Y\""
|
|
3530 |
msgstr "Standardwert ist \"d (Tag) F Y (Jahr)\" "
|
3531 |
|
3532 |
#: app/features/mec/meta_boxes/display_options.php:265
|
3533 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3534 |
msgid "Count in row"
|
3535 |
msgstr "Zeilen zählen"
|
3536 |
|
3537 |
#: app/features/mec/meta_boxes/display_options.php:296
|
3538 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3539 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3540 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3541 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3542 |
#, php-format
|
3543 |
msgid "%s is required to use this skin."
|
3544 |
msgstr ""
|
3545 |
|
3546 |
#: app/features/mec/meta_boxes/display_options.php:326
|
3547 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3548 |
msgid "Default values are l and F j"
|
3549 |
msgstr "Die Standardwerte sind I und F j"
|
3550 |
|
@@ -3553,35 +3553,35 @@ msgid "Default View"
|
|
3553 |
msgstr "Standardansicht"
|
3554 |
|
3555 |
#: app/features/mec/meta_boxes/display_options.php:375
|
3556 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3557 |
-
#: app/libraries/main.php:329 app/libraries/main.php:
|
3558 |
-
#: app/libraries/main.php:
|
3559 |
msgid "List View"
|
3560 |
msgstr "Listenansicht"
|
3561 |
|
3562 |
#: app/features/mec/meta_boxes/display_options.php:376
|
3563 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3564 |
-
#: app/libraries/main.php:333 app/libraries/main.php:
|
3565 |
-
#: app/libraries/main.php:
|
3566 |
msgid "Yearly View"
|
3567 |
msgstr "Jahresansicht"
|
3568 |
|
3569 |
#: app/features/mec/meta_boxes/display_options.php:377
|
3570 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3571 |
msgid "Monthly/Calendar View"
|
3572 |
msgstr "Monatliche Kalenderansicht"
|
3573 |
|
3574 |
#: app/features/mec/meta_boxes/display_options.php:378
|
3575 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3576 |
-
#: app/libraries/main.php:336 app/libraries/main.php:
|
3577 |
-
#: app/libraries/main.php:
|
3578 |
msgid "Weekly View"
|
3579 |
msgstr "Wochenansicht"
|
3580 |
|
3581 |
#: app/features/mec/meta_boxes/display_options.php:379
|
3582 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3583 |
-
#: app/libraries/main.php:335 app/libraries/main.php:
|
3584 |
-
#: app/libraries/main.php:
|
3585 |
msgid "Daily View"
|
3586 |
msgstr "Tagesansicht"
|
3587 |
|
@@ -3591,226 +3591,226 @@ msgstr "Tagesansicht"
|
|
3591 |
msgid "Monthly Style"
|
3592 |
msgstr "Moderner Stil"
|
3593 |
|
3594 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3595 |
#, php-format
|
3596 |
msgid "%s is required to use <b>Yearly View</b> skin."
|
3597 |
msgstr ""
|
3598 |
|
3599 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3600 |
msgid "The price shows only in List View."
|
3601 |
msgstr ""
|
3602 |
|
3603 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3604 |
msgid "Display Event Price"
|
3605 |
msgstr ""
|
3606 |
|
3607 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3608 |
msgid "Start of Current Year"
|
3609 |
msgstr "Mit Beginn des laufenden Jahres"
|
3610 |
|
3611 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3612 |
msgid "Start of Next Year"
|
3613 |
msgstr "Start des nächsten Jahres"
|
3614 |
|
3615 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3616 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3617 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3618 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3619 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3620 |
msgid "Events per day"
|
3621 |
msgstr "Veranstaltungen pro Tag"
|
3622 |
|
3623 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3624 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3625 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3626 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3627 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3628 |
msgid "Next/Previous Buttons"
|
3629 |
msgstr "Schaltfläche \"Nächste/Letzte\""
|
3630 |
|
3631 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3632 |
msgid "For showing next/previous year navigation."
|
3633 |
msgstr "Navigation anzeigen zum nächsten/letzten Jahr"
|
3634 |
|
3635 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3636 |
#, fuzzy
|
3637 |
#| msgid "Text"
|
3638 |
msgid "Uppercase Text"
|
3639 |
msgstr "Text"
|
3640 |
|
3641 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3642 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3643 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3644 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3645 |
msgid "For showing next/previous month navigation."
|
3646 |
msgstr "Für die Navigation zum nächsten/letzten Monat"
|
3647 |
|
3648 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3649 |
msgid "Maximum events"
|
3650 |
msgstr "Veranstaltungsmaximum"
|
3651 |
|
3652 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3653 |
msgid "eg. 200"
|
3654 |
msgstr "z.B. 200"
|
3655 |
|
3656 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3657 |
msgid "Geolocation"
|
3658 |
msgstr ""
|
3659 |
|
3660 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3661 |
msgid "The geolocation feature works only in secure (https) websites."
|
3662 |
msgstr ""
|
3663 |
|
3664 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3665 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3666 |
msgid "Current Week"
|
3667 |
msgstr "Aktuelle Woche"
|
3668 |
|
3669 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3670 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3671 |
msgid "Next Week"
|
3672 |
msgstr "Nächste Woche"
|
3673 |
|
3674 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3675 |
msgid "Number of Days"
|
3676 |
msgstr ""
|
3677 |
|
3678 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3679 |
#, fuzzy
|
3680 |
#| msgid "Start"
|
3681 |
msgid "Week Start"
|
3682 |
msgstr "Start"
|
3683 |
|
3684 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3685 |
#, fuzzy
|
3686 |
#| msgid "Inherit from global options"
|
3687 |
msgid "Inherite from WordPress options"
|
3688 |
msgstr "Aus den globalen Einstellungen übernehmen"
|
3689 |
|
3690 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3691 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3692 |
msgid "Default values are j and F"
|
3693 |
msgstr "Standardwerte sind j und F"
|
3694 |
|
3695 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3696 |
msgid "eg. 24"
|
3697 |
msgstr "z.B. 24"
|
3698 |
|
3699 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3700 |
msgid "Filter By"
|
3701 |
msgstr "Filtern nach"
|
3702 |
|
3703 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3704 |
msgid "None"
|
3705 |
msgstr ""
|
3706 |
|
3707 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3708 |
msgid "Convert Masonry to Grid"
|
3709 |
msgstr ""
|
3710 |
|
3711 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3712 |
msgid "For using this option, your events should come with image"
|
3713 |
msgstr ""
|
3714 |
|
3715 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3716 |
msgid "Default values are d, M and Y"
|
3717 |
msgstr "Standardwerte sind T, M und J"
|
3718 |
|
3719 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3720 |
msgid "Default values are \"F d\" and l"
|
3721 |
msgstr ""
|
3722 |
"Standardwerte sind Monat als ganzes Wort, Tag des Monates mit führender Null "
|
3723 |
"und ausgeschriebener Wochentag"
|
3724 |
|
3725 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3726 |
msgid "Default value is \"l, F d Y\""
|
3727 |
msgstr ""
|
3728 |
"Standardwerte sind ausgeschriebener Wochentag, Monat als ganzes Wort, Tag "
|
3729 |
"des Monates mit führender 0, Jahr"
|
3730 |
|
3731 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3732 |
msgid "Style 1"
|
3733 |
msgstr "Stil 1"
|
3734 |
|
3735 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3736 |
msgid "Style 2"
|
3737 |
msgstr "Stil 2"
|
3738 |
|
3739 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3740 |
msgid "Style 3"
|
3741 |
msgstr "Stil 3"
|
3742 |
|
3743 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3744 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3745 |
msgid "Default value is \"j F Y\""
|
3746 |
msgstr "Standardwert ist \"j F Y\""
|
3747 |
|
3748 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3749 |
msgid "Default values are j, F and Y"
|
3750 |
msgstr ""
|
3751 |
"Standardwerte sind j ( Tag des Monats ohne führende Nullen), F und Y (Jahr)"
|
3752 |
|
3753 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3754 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3755 |
msgid " -- Next Upcoming Event -- "
|
3756 |
msgstr "-- Nächste Veranstaltung--"
|
3757 |
|
3758 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3759 |
msgid "Background Color"
|
3760 |
msgstr "Hintergrund Farbe"
|
3761 |
|
3762 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3763 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3764 |
msgid "Type 1"
|
3765 |
msgstr "Typ 1"
|
3766 |
|
3767 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3768 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3769 |
msgid "Type 2"
|
3770 |
msgstr "Typ 2"
|
3771 |
|
3772 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3773 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3774 |
msgid "Type 3"
|
3775 |
msgstr "Type 3"
|
3776 |
|
3777 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3778 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3779 |
msgid "Type 4"
|
3780 |
msgstr "Typ 4"
|
3781 |
|
3782 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3783 |
msgid "Default values are d, F and Y"
|
3784 |
msgstr "Standardwert ist d (Tag) F und Y (Jahr)"
|
3785 |
|
3786 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3787 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3788 |
msgid "Default value is \"M d, Y\""
|
3789 |
msgstr "Standardwert ist \"M T, J\""
|
3790 |
|
3791 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3792 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3793 |
msgid "Auto Play Time"
|
3794 |
msgstr "Auto Play Time"
|
3795 |
|
3796 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3797 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3798 |
msgid "eg. 3000 default is 3 second"
|
3799 |
msgstr "z.B. Voreinstellung 3000 sind 3 Sekunden"
|
3800 |
|
3801 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3802 |
#, fuzzy
|
3803 |
#| msgid "Archive Page Skin"
|
3804 |
msgid "Archive Link"
|
3805 |
msgstr "Skin Seite Archiv"
|
3806 |
|
3807 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3808 |
#, fuzzy
|
3809 |
#| msgid "Text"
|
3810 |
msgid "Head Text"
|
3811 |
msgstr "Text"
|
3812 |
|
3813 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3814 |
msgid "Type 5"
|
3815 |
msgstr "Typ 5"
|
3816 |
|
@@ -3962,8 +3962,8 @@ msgstr "Such Formular anzeigen"
|
|
3962 |
#: app/features/mec/meta_boxes/search_form.php:610
|
3963 |
#: app/features/mec/meta_boxes/search_form.php:617
|
3964 |
#: app/features/mec/meta_boxes/search_form.php:624
|
3965 |
-
#: app/features/mec/modules.php:322 app/features/mec/settings.php:
|
3966 |
-
#: app/features/mec/settings.php:
|
3967 |
msgid "Disabled"
|
3968 |
msgstr "Deaktiviert"
|
3969 |
|
@@ -3977,7 +3977,7 @@ msgstr "Deaktiviert"
|
|
3977 |
#: app/features/mec/meta_boxes/search_form.php:472
|
3978 |
#: app/features/mec/meta_boxes/search_form.php:533
|
3979 |
#: app/features/mec/meta_boxes/search_form.php:594 app/features/speakers.php:56
|
3980 |
-
#: app/features/speakers.php:243 app/libraries/main.php:
|
3981 |
#: app/libraries/skins.php:859
|
3982 |
msgid "Speaker"
|
3983 |
msgstr ""
|
@@ -4067,12 +4067,12 @@ msgid "Show Google Maps on event page"
|
|
4067 |
msgstr "Google Maps auf der Veranstaltungsseite anzeigen"
|
4068 |
|
4069 |
#: app/features/mec/modules.php:277 app/features/mec/modules.php:435
|
4070 |
-
#: app/features/mec/settings.php:
|
4071 |
msgid "API Key"
|
4072 |
msgstr "API Schlüssel"
|
4073 |
|
4074 |
-
#: app/features/mec/modules.php:283 app/features/mec/settings.php:
|
4075 |
-
#: app/features/mec/settings.php:
|
4076 |
msgid "Required!"
|
4077 |
msgstr "Erforderlich (Pflichtfeld)"
|
4078 |
|
@@ -4093,7 +4093,7 @@ msgstr ""
|
|
4093 |
msgid "Google Maps Style"
|
4094 |
msgstr "Google Maps Stil"
|
4095 |
|
4096 |
-
#: app/features/mec/modules.php:311 app/features/mec/single.php:
|
4097 |
msgid "Default"
|
4098 |
msgstr "Standardeinstellung"
|
4099 |
|
@@ -4182,7 +4182,7 @@ msgstr "Nächstes Auftreten des aktuellen Events"
|
|
4182 |
msgid "Next Occurrence of Other Events"
|
4183 |
msgstr "Nächstes Auftreten von anderen Events."
|
4184 |
|
4185 |
-
#: app/features/mec/modules.php:497 app/features/mec/single.php:
|
4186 |
msgid "Default is M d Y"
|
4187 |
msgstr "Standardwert ist M-T-J"
|
4188 |
|
@@ -4202,98 +4202,80 @@ msgstr "Teilnehmer Limit, maximale Anzahl"
|
|
4202 |
msgid "Add booking activity to user profile"
|
4203 |
msgstr "Fügt Buchungsaktivitäten dem Benutzerprofil hinzu"
|
4204 |
|
4205 |
-
#: app/features/mec/notifications.php:
|
4206 |
msgid "Enable booking notification"
|
4207 |
msgstr "Buchungsbenachrichtigung aktivieren"
|
4208 |
|
4209 |
-
#: app/features/mec/notifications.php:
|
4210 |
msgid "It sends to attendee after booking for notifying him/her."
|
4211 |
msgstr ""
|
4212 |
"Wird an den Teilnehmer in Anschluss an die Buchung versendet, um Ihn/Sie zu "
|
4213 |
"benachrichtigen."
|
4214 |
|
4215 |
-
#: app/features/mec/notifications.php:
|
4216 |
-
#: app/features/mec/notifications.php:
|
4217 |
-
#: app/features/mec/notifications.php:
|
4218 |
-
#: app/features/mec/notifications.php:
|
4219 |
-
#: app/features/mec/notifications.php:
|
4220 |
-
#: app/features/mec/notifications.php:
|
4221 |
-
#: app/features/mec/notifications.php:
|
4222 |
msgid "Email Subject"
|
4223 |
msgstr "Email Betreff"
|
4224 |
|
4225 |
-
#: app/features/mec/notifications.php:
|
4226 |
-
#: app/features/mec/notifications.php:
|
4227 |
-
#: app/features/mec/notifications.php:
|
4228 |
-
#: app/features/mec/notifications.php:
|
4229 |
-
#: app/features/mec/notifications.php:
|
4230 |
-
#: app/features/mec/notifications.php:
|
4231 |
-
#: app/features/mec/notifications.php:
|
4232 |
-
#: app/features/mec/notifications.php:
|
4233 |
-
#: app/features/mec/notifications.php:
|
4234 |
-
#: app/features/mec/notifications.php:
|
4235 |
-
#: app/features/mec/notifications.php:
|
4236 |
-
#: app/features/mec/notifications.php:
|
4237 |
-
#: app/features/mec/notifications.php:
|
4238 |
-
#: app/features/mec/notifications.php:
|
4239 |
-
#: app/features/mec/notifications.php:
|
4240 |
msgid "Custom Recipients"
|
4241 |
msgstr "Individuelle Empfänger"
|
4242 |
|
4243 |
-
#: app/features/mec/notifications.php:
|
4244 |
-
#: app/features/mec/notifications.php:
|
4245 |
-
#: app/features/mec/notifications.php:
|
4246 |
-
#: app/features/mec/notifications.php:
|
4247 |
-
#: app/features/mec/notifications.php:
|
4248 |
-
#: app/features/mec/notifications.php:
|
4249 |
-
#: app/features/mec/notifications.php:
|
4250 |
-
#: app/features/mec/notifications.php:
|
4251 |
msgid "Insert comma separated emails for multiple recipients."
|
4252 |
msgstr "Geben Sie mit Komma getrennte email-Adressen ein für mehrere Empfänger"
|
4253 |
|
4254 |
-
#: app/features/mec/notifications.php:
|
4255 |
-
#: app/features/mec/notifications.php:
|
4256 |
-
#: app/features/mec/notifications.php:
|
4257 |
msgid "Send the email to event organizer"
|
4258 |
msgstr "Sendet das Email zum Event Organisator"
|
4259 |
|
4260 |
-
#: app/features/mec/notifications.php:
|
4261 |
-
#: app/features/mec/notifications.php:
|
4262 |
-
#: app/features/mec/notifications.php:
|
4263 |
-
#: app/features/mec/notifications.php:
|
4264 |
-
#: app/features/mec/notifications.php:
|
4265 |
-
#: app/features/mec/notifications.php:
|
4266 |
-
#: app/features/mec/notifications.php:
|
4267 |
msgid "Email Content"
|
4268 |
msgstr "Email Inhalt"
|
4269 |
|
4270 |
-
#: app/features/mec/notifications.php:255
|
4271 |
-
#: app/features/mec/notifications.php:308
|
4272 |
-
#: app/features/mec/notifications.php:360
|
4273 |
-
#: app/features/mec/notifications.php:431
|
4274 |
-
#: app/features/mec/notifications.php:491
|
4275 |
-
#: app/features/mec/notifications.php:561
|
4276 |
-
#: app/features/mec/notifications.php:623
|
4277 |
-
msgid "You can use following placeholders"
|
4278 |
-
msgstr "Sie können die folgenden Platzhalter wählen"
|
4279 |
-
|
4280 |
#: app/features/mec/notifications.php:257
|
4281 |
#: app/features/mec/notifications.php:310
|
4282 |
#: app/features/mec/notifications.php:362
|
4283 |
#: app/features/mec/notifications.php:433
|
4284 |
#: app/features/mec/notifications.php:493
|
4285 |
#: app/features/mec/notifications.php:563
|
4286 |
-
|
4287 |
-
|
4288 |
-
|
4289 |
-
#: app/features/mec/notifications.php:258
|
4290 |
-
#: app/features/mec/notifications.php:311
|
4291 |
-
#: app/features/mec/notifications.php:363
|
4292 |
-
#: app/features/mec/notifications.php:434
|
4293 |
-
#: app/features/mec/notifications.php:494
|
4294 |
-
#: app/features/mec/notifications.php:564
|
4295 |
-
msgid "Last name of attendee"
|
4296 |
-
msgstr "Nachname des Teilnehmers"
|
4297 |
|
4298 |
#: app/features/mec/notifications.php:259
|
4299 |
#: app/features/mec/notifications.php:312
|
@@ -4301,8 +4283,8 @@ msgstr "Nachname des Teilnehmers"
|
|
4301 |
#: app/features/mec/notifications.php:435
|
4302 |
#: app/features/mec/notifications.php:495
|
4303 |
#: app/features/mec/notifications.php:565
|
4304 |
-
msgid "
|
4305 |
-
msgstr "
|
4306 |
|
4307 |
#: app/features/mec/notifications.php:260
|
4308 |
#: app/features/mec/notifications.php:313
|
@@ -4310,8 +4292,8 @@ msgstr "Email des Teilnehmers"
|
|
4310 |
#: app/features/mec/notifications.php:436
|
4311 |
#: app/features/mec/notifications.php:496
|
4312 |
#: app/features/mec/notifications.php:566
|
4313 |
-
msgid "
|
4314 |
-
msgstr "
|
4315 |
|
4316 |
#: app/features/mec/notifications.php:261
|
4317 |
#: app/features/mec/notifications.php:314
|
@@ -4319,10 +4301,8 @@ msgstr "Gebuchtes Datum der Veranstaltung"
|
|
4319 |
#: app/features/mec/notifications.php:437
|
4320 |
#: app/features/mec/notifications.php:497
|
4321 |
#: app/features/mec/notifications.php:567
|
4322 |
-
|
4323 |
-
|
4324 |
-
msgid "Booked time of event"
|
4325 |
-
msgstr "Gebuchtes Datum der Veranstaltung"
|
4326 |
|
4327 |
#: app/features/mec/notifications.php:262
|
4328 |
#: app/features/mec/notifications.php:315
|
@@ -4330,8 +4310,8 @@ msgstr "Gebuchtes Datum der Veranstaltung"
|
|
4330 |
#: app/features/mec/notifications.php:438
|
4331 |
#: app/features/mec/notifications.php:498
|
4332 |
#: app/features/mec/notifications.php:568
|
4333 |
-
msgid "
|
4334 |
-
msgstr "
|
4335 |
|
4336 |
#: app/features/mec/notifications.php:263
|
4337 |
#: app/features/mec/notifications.php:316
|
@@ -4339,9 +4319,10 @@ msgstr "Buchungspreis"
|
|
4339 |
#: app/features/mec/notifications.php:439
|
4340 |
#: app/features/mec/notifications.php:499
|
4341 |
#: app/features/mec/notifications.php:569
|
4342 |
-
|
4343 |
-
msgid "
|
4344 |
-
|
|
|
4345 |
|
4346 |
#: app/features/mec/notifications.php:264
|
4347 |
#: app/features/mec/notifications.php:317
|
@@ -4349,9 +4330,8 @@ msgstr "Titel Ihrer Webseite"
|
|
4349 |
#: app/features/mec/notifications.php:440
|
4350 |
#: app/features/mec/notifications.php:500
|
4351 |
#: app/features/mec/notifications.php:570
|
4352 |
-
|
4353 |
-
|
4354 |
-
msgstr "URL Ihrer Webseite"
|
4355 |
|
4356 |
#: app/features/mec/notifications.php:265
|
4357 |
#: app/features/mec/notifications.php:318
|
@@ -4360,8 +4340,8 @@ msgstr "URL Ihrer Webseite"
|
|
4360 |
#: app/features/mec/notifications.php:501
|
4361 |
#: app/features/mec/notifications.php:571
|
4362 |
#: app/features/mec/notifications.php:631
|
4363 |
-
msgid "Your website
|
4364 |
-
msgstr "
|
4365 |
|
4366 |
#: app/features/mec/notifications.php:266
|
4367 |
#: app/features/mec/notifications.php:319
|
@@ -4369,8 +4349,9 @@ msgstr "Beschreibung Ihrer Webseite"
|
|
4369 |
#: app/features/mec/notifications.php:442
|
4370 |
#: app/features/mec/notifications.php:502
|
4371 |
#: app/features/mec/notifications.php:572
|
4372 |
-
|
4373 |
-
|
|
|
4374 |
|
4375 |
#: app/features/mec/notifications.php:267
|
4376 |
#: app/features/mec/notifications.php:320
|
@@ -4378,10 +4359,9 @@ msgstr "Titel der Veranstaltung"
|
|
4378 |
#: app/features/mec/notifications.php:443
|
4379 |
#: app/features/mec/notifications.php:503
|
4380 |
#: app/features/mec/notifications.php:573
|
4381 |
-
|
4382 |
-
|
4383 |
-
|
4384 |
-
msgstr "Veranstaltungslink"
|
4385 |
|
4386 |
#: app/features/mec/notifications.php:268
|
4387 |
#: app/features/mec/notifications.php:321
|
@@ -4389,10 +4369,8 @@ msgstr "Veranstaltungslink"
|
|
4389 |
#: app/features/mec/notifications.php:444
|
4390 |
#: app/features/mec/notifications.php:504
|
4391 |
#: app/features/mec/notifications.php:574
|
4392 |
-
|
4393 |
-
|
4394 |
-
msgid "Speaker name of booked event"
|
4395 |
-
msgstr "Name des Veranstalters des gebuchten Events"
|
4396 |
|
4397 |
#: app/features/mec/notifications.php:269
|
4398 |
#: app/features/mec/notifications.php:322
|
@@ -4400,8 +4378,10 @@ msgstr "Name des Veranstalters des gebuchten Events"
|
|
4400 |
#: app/features/mec/notifications.php:445
|
4401 |
#: app/features/mec/notifications.php:505
|
4402 |
#: app/features/mec/notifications.php:575
|
4403 |
-
|
4404 |
-
|
|
|
|
|
4405 |
|
4406 |
#: app/features/mec/notifications.php:270
|
4407 |
#: app/features/mec/notifications.php:323
|
@@ -4409,8 +4389,10 @@ msgstr "Name des Veranstalters des gebuchten Events"
|
|
4409 |
#: app/features/mec/notifications.php:446
|
4410 |
#: app/features/mec/notifications.php:506
|
4411 |
#: app/features/mec/notifications.php:576
|
4412 |
-
|
4413 |
-
|
|
|
|
|
4414 |
|
4415 |
#: app/features/mec/notifications.php:271
|
4416 |
#: app/features/mec/notifications.php:324
|
@@ -4418,8 +4400,8 @@ msgstr "Tel des Veranstalters"
|
|
4418 |
#: app/features/mec/notifications.php:447
|
4419 |
#: app/features/mec/notifications.php:507
|
4420 |
#: app/features/mec/notifications.php:577
|
4421 |
-
msgid "Organizer
|
4422 |
-
msgstr "
|
4423 |
|
4424 |
#: app/features/mec/notifications.php:272
|
4425 |
#: app/features/mec/notifications.php:325
|
@@ -4427,8 +4409,8 @@ msgstr "Email des Veranstalters des gebuchten events"
|
|
4427 |
#: app/features/mec/notifications.php:448
|
4428 |
#: app/features/mec/notifications.php:508
|
4429 |
#: app/features/mec/notifications.php:578
|
4430 |
-
msgid "
|
4431 |
-
msgstr "
|
4432 |
|
4433 |
#: app/features/mec/notifications.php:273
|
4434 |
#: app/features/mec/notifications.php:326
|
@@ -4436,86 +4418,104 @@ msgstr "Veranstaltungsort"
|
|
4436 |
#: app/features/mec/notifications.php:449
|
4437 |
#: app/features/mec/notifications.php:509
|
4438 |
#: app/features/mec/notifications.php:579
|
4439 |
-
msgid "
|
4440 |
-
msgstr "
|
4441 |
|
4442 |
#: app/features/mec/notifications.php:274
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4443 |
#: app/features/mec/notifications.php:451
|
4444 |
#: app/features/mec/notifications.php:511
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4445 |
msgid "Full Attendee info such as booking form data, name, email etc."
|
4446 |
msgstr ""
|
4447 |
"Gesamte Teinehmerinformationen wie z.B. Daten aus dem Buchungsformular, "
|
4448 |
"Name, email, etc."
|
4449 |
|
4450 |
-
#: app/features/mec/notifications.php:
|
4451 |
-
#: app/features/mec/notifications.php:
|
4452 |
-
#: app/features/mec/notifications.php:
|
4453 |
msgid "Invoice Link"
|
4454 |
msgstr "Rechnungslink"
|
4455 |
|
4456 |
-
#: app/features/mec/notifications.php:
|
4457 |
-
#: app/features/mec/notifications.php:
|
4458 |
-
#: app/features/mec/notifications.php:
|
4459 |
-
#: app/features/mec/notifications.php:
|
4460 |
-
#: app/features/mec/notifications.php:
|
4461 |
-
#: app/features/mec/notifications.php:
|
4462 |
msgid "Total Attendees"
|
4463 |
msgstr ""
|
4464 |
|
4465 |
-
#: app/features/mec/notifications.php:
|
4466 |
-
#: app/features/mec/notifications.php:
|
4467 |
-
#: app/features/mec/notifications.php:
|
4468 |
-
#: app/features/mec/notifications.php:
|
4469 |
#, fuzzy
|
4470 |
#| msgid "Ticket Name"
|
4471 |
msgid "Ticket name"
|
4472 |
msgstr "Ticket Name"
|
4473 |
|
4474 |
-
#: app/features/mec/notifications.php:
|
4475 |
-
#: app/features/mec/notifications.php:
|
4476 |
-
#: app/features/mec/notifications.php:
|
4477 |
-
#: app/features/mec/notifications.php:
|
4478 |
#, fuzzy
|
4479 |
#| msgid "Ticket Name"
|
4480 |
msgid "Ticket time"
|
4481 |
msgstr "Ticket Name"
|
4482 |
|
4483 |
-
#: app/features/mec/notifications.php:
|
4484 |
-
#: app/features/mec/notifications.php:
|
4485 |
-
#: app/features/mec/notifications.php:
|
4486 |
-
#: app/features/mec/notifications.php:
|
4487 |
#, fuzzy
|
4488 |
#| msgid "Download Invoice"
|
4489 |
msgid "Download ICS file"
|
4490 |
msgstr "Download Rechnung\n"
|
4491 |
|
4492 |
-
#: app/features/mec/notifications.php:
|
4493 |
msgid "It sends to attendee email for verifying their booking/email."
|
4494 |
msgstr ""
|
4495 |
"Versendet an den Teilnehmer eine Email um dessen Buchung/Mail zu "
|
4496 |
"verifizieren."
|
4497 |
|
4498 |
-
#: app/features/mec/notifications.php:
|
4499 |
msgid "Email/Booking verification link."
|
4500 |
msgstr "Bestätigungslink für Email/Buchung"
|
4501 |
|
4502 |
-
#: app/features/mec/notifications.php:
|
4503 |
msgid "It sends to attendee after confirming the booking by admin."
|
4504 |
msgstr ""
|
4505 |
"Es wird an den Teilnehmer gesendet nach Bestätigung der Buchung vom admin."
|
4506 |
|
4507 |
-
#: app/features/mec/notifications.php:
|
4508 |
-
#: app/features/mec/notifications.php:
|
4509 |
msgid "Booking cancellation link."
|
4510 |
msgstr "Link zur Stornierung der Buchung"
|
4511 |
|
4512 |
-
#: app/features/mec/notifications.php:
|
4513 |
#, fuzzy
|
4514 |
#| msgid "Enable new event notification"
|
4515 |
msgid "Enable cancellation notification"
|
4516 |
msgstr "Benachrichtigung bei neuen Veranstaltungen aktivieren"
|
4517 |
|
4518 |
-
#: app/features/mec/notifications.php:
|
4519 |
#, fuzzy
|
4520 |
#| msgid "It sends to attendee after booking for notifying him/her."
|
4521 |
msgid ""
|
@@ -4525,40 +4525,40 @@ msgstr ""
|
|
4525 |
"Wird an den Teilnehmer in Anschluss an die Buchung versendet, um Ihn/Sie zu "
|
4526 |
"benachrichtigen."
|
4527 |
|
4528 |
-
#: app/features/mec/notifications.php:
|
4529 |
#, fuzzy
|
4530 |
#| msgid "Send the email to event organizer"
|
4531 |
msgid "Send the email to admin"
|
4532 |
msgstr "Sendet das Email zum Event Organisator"
|
4533 |
|
4534 |
-
#: app/features/mec/notifications.php:
|
4535 |
#, fuzzy
|
4536 |
#| msgid "Send the email to event organizer"
|
4537 |
msgid "Send the email to booking user"
|
4538 |
msgstr "Sendet das Email zum Event Organisator"
|
4539 |
|
4540 |
-
#: app/features/mec/notifications.php:
|
4541 |
-
#: app/features/mec/notifications.php:
|
4542 |
msgid "Admin booking management link."
|
4543 |
msgstr "Admin-link zur Buchungsverwaltung"
|
4544 |
|
4545 |
-
#: app/features/mec/notifications.php:
|
4546 |
#, fuzzy
|
4547 |
#| msgid "Enable booking notification"
|
4548 |
msgid "Enable admin notification"
|
4549 |
msgstr "Buchungsbenachrichtigung aktivieren"
|
4550 |
|
4551 |
-
#: app/features/mec/notifications.php:
|
4552 |
msgid "It sends to admin to notify him/her that a new booking received."
|
4553 |
msgstr ""
|
4554 |
"Sendet eine Benachrichtigung an den Adminstrator um diesen darüber zu "
|
4555 |
"Informieren, dass eine neue Buchung eingegangen ist."
|
4556 |
|
4557 |
-
#: app/features/mec/notifications.php:
|
4558 |
msgid "Enable booking reminder notification"
|
4559 |
msgstr "Aktivieren Sie die Erinnerung für die Buchungserinnerung"
|
4560 |
|
4561 |
-
#: app/features/mec/notifications.php:
|
4562 |
#, php-format
|
4563 |
msgid ""
|
4564 |
"Set a cronjob to call %s file once per day otherwise it won't send the "
|
@@ -4570,19 +4570,19 @@ msgstr ""
|
|
4570 |
"Sie diese Datei% s aufrufen sollten, sonst könnten die Erinnerungen mehrmals "
|
4571 |
"gesendet werden."
|
4572 |
|
4573 |
-
#: app/features/mec/notifications.php:
|
4574 |
msgid "only once per day"
|
4575 |
msgstr "nur einmal pro Tag"
|
4576 |
|
4577 |
-
#: app/features/mec/notifications.php:
|
4578 |
msgid "Days"
|
4579 |
msgstr "Tage"
|
4580 |
|
4581 |
-
#: app/features/mec/notifications.php:
|
4582 |
msgid "Enable new event notification"
|
4583 |
msgstr "Benachrichtigung bei neuen Veranstaltungen aktivieren"
|
4584 |
|
4585 |
-
#: app/features/mec/notifications.php:
|
4586 |
msgid ""
|
4587 |
"It sends after adding a new event from frontend event submission or from "
|
4588 |
"website backend."
|
@@ -4590,73 +4590,73 @@ msgstr ""
|
|
4590 |
"Wird nach dem Hinzufügen einer neuen Veranstaltung aus der Frontend-"
|
4591 |
"Übermittlung oder dem Backend versandt."
|
4592 |
|
4593 |
-
#: app/features/mec/notifications.php:
|
4594 |
msgid "Title of event"
|
4595 |
msgstr "Titel der Veranstaltung"
|
4596 |
|
4597 |
-
#: app/features/mec/notifications.php:
|
4598 |
#, fuzzy
|
4599 |
#| msgid "Title of event"
|
4600 |
msgid "Link of event"
|
4601 |
msgstr "Titel der Veranstaltung"
|
4602 |
|
4603 |
-
#: app/features/mec/notifications.php:
|
4604 |
msgid "Status of event"
|
4605 |
msgstr "Status der Veranstaltung"
|
4606 |
|
4607 |
-
#: app/features/mec/notifications.php:
|
4608 |
-
#: app/features/mec/settings.php:
|
4609 |
msgid "Event Note"
|
4610 |
msgstr "Veranstaltungsnotiz"
|
4611 |
|
4612 |
-
#: app/features/mec/notifications.php:
|
4613 |
msgid "Admin events management link."
|
4614 |
msgstr "Admin-link zur Veranstaltungsverwaltung"
|
4615 |
|
4616 |
-
#: app/features/mec/settings.php:
|
4617 |
msgid "Hide Events"
|
4618 |
msgstr "Events verbergen"
|
4619 |
|
4620 |
-
#: app/features/mec/settings.php:
|
4621 |
msgid "On Event Start"
|
4622 |
msgstr "Am Event Start"
|
4623 |
|
4624 |
-
#: app/features/mec/settings.php:
|
4625 |
msgid "+1 Hour after start"
|
4626 |
msgstr "+1 Stunde nach dem Start"
|
4627 |
|
4628 |
-
#: app/features/mec/settings.php:
|
4629 |
msgid "+2 Hours after start"
|
4630 |
msgstr "+2 Stunden nach dem Start"
|
4631 |
|
4632 |
-
#: app/features/mec/settings.php:
|
4633 |
msgid "On Event End"
|
4634 |
msgstr "Am Event Ende"
|
4635 |
|
4636 |
-
#: app/features/mec/settings.php:
|
4637 |
msgid ""
|
4638 |
"This option is for showing start/end time of events on frontend of website."
|
4639 |
msgstr ""
|
4640 |
"Diese Option ist um die Start/Endezeit von Events im Frontend der Webseite "
|
4641 |
"anzuzeigen"
|
4642 |
|
4643 |
-
#: app/features/mec/settings.php:
|
4644 |
msgid "Multiple Day Events"
|
4645 |
msgstr "Mehrtagesveranstaltung"
|
4646 |
|
4647 |
-
#: app/features/mec/settings.php:
|
4648 |
msgid "Show only first day on List/Grid/Slider skins"
|
4649 |
msgstr "Zeige nur den ersten Tag auf Listen/Raster(Grid)/Slider skins."
|
4650 |
|
4651 |
-
#: app/features/mec/settings.php:
|
4652 |
msgid "Show only first day on all skins"
|
4653 |
msgstr "Nur den ersten Tag in allen Ansichten zeigen"
|
4654 |
|
4655 |
-
#: app/features/mec/settings.php:
|
4656 |
msgid "Show all days"
|
4657 |
msgstr "Alle Tage anzeigen"
|
4658 |
|
4659 |
-
#: app/features/mec/settings.php:
|
4660 |
msgid ""
|
4661 |
"For showing all days of multiple day events on frontend or only show the "
|
4662 |
"first day."
|
@@ -4664,40 +4664,40 @@ msgstr ""
|
|
4664 |
"Um alle Tage anzuzeigen bei Events über mehrere Tage im Frontend oder nur "
|
4665 |
"den ersten Tag anzeigen"
|
4666 |
|
4667 |
-
#: app/features/mec/settings.php:
|
4668 |
msgid "Remove MEC Data on Plugin Uninstall"
|
4669 |
msgstr "Entfernen von MEC Data auf dem Plugin Deinstallierer"
|
4670 |
|
4671 |
-
#: app/features/mec/settings.php:
|
4672 |
msgid "Enabled"
|
4673 |
msgstr "Aktiviert"
|
4674 |
|
4675 |
-
#: app/features/mec/settings.php:
|
4676 |
msgid "Exclude Date Suffix"
|
4677 |
msgstr "Ausschlussdatum Suffix"
|
4678 |
|
4679 |
-
#: app/features/mec/settings.php:
|
4680 |
msgid "Remove suffix from calendars"
|
4681 |
msgstr "Suffix aus den Kalendern entfernen"
|
4682 |
|
4683 |
-
#: app/features/mec/settings.php:
|
4684 |
#, fuzzy
|
4685 |
#| msgid "Remove suffix from calendars"
|
4686 |
msgid "Remove \"Th\" on calendar"
|
4687 |
msgstr "Suffix aus den Kalendern entfernen"
|
4688 |
|
4689 |
-
#: app/features/mec/settings.php:
|
4690 |
msgid ""
|
4691 |
"Checked this checkbox to remove 'Th' on calendar ( ex: '12Th' remove Th, "
|
4692 |
"showing just '12' )"
|
4693 |
msgstr ""
|
4694 |
|
4695 |
-
#: app/features/mec/settings.php:
|
4696 |
-
#: app/libraries/main.php:
|
4697 |
msgid "Weekdays"
|
4698 |
msgstr "Wochentage"
|
4699 |
|
4700 |
-
#: app/features/mec/settings.php:
|
4701 |
#, fuzzy
|
4702 |
#| msgid ""
|
4703 |
#| "Proceed with caution. Default is set to Monday, Tuesday, Wednesday, "
|
@@ -4710,105 +4710,105 @@ msgstr ""
|
|
4710 |
"Vorsichtig vorgehen. Standardwert ist auf Montag, Dienstag, Mittwoch, "
|
4711 |
"Donnerstag und Freitag gesetzt."
|
4712 |
|
4713 |
-
#: app/features/mec/settings.php:
|
4714 |
msgid "Weekends"
|
4715 |
msgstr "Wochenenden"
|
4716 |
|
4717 |
-
#: app/features/mec/settings.php:
|
4718 |
msgid ""
|
4719 |
"Proceed with caution. Default is set to Saturday and Sunday ( you can change "
|
4720 |
"'Week Starts' on WordPress Dashboard > Settings > General - bottom of the "
|
4721 |
"page )."
|
4722 |
msgstr ""
|
4723 |
|
4724 |
-
#: app/features/mec/settings.php:
|
4725 |
msgid "Archive Page Title"
|
4726 |
msgstr "Titel der Archivseite"
|
4727 |
|
4728 |
-
#: app/features/mec/settings.php:
|
4729 |
#, fuzzy
|
4730 |
#| msgid "Default value is Events"
|
4731 |
msgid "Default value is Events - It's title of the page"
|
4732 |
msgstr "Der Standardwert ist Ereignisse (Events)"
|
4733 |
|
4734 |
-
#: app/features/mec/settings.php:
|
4735 |
msgid "Archive Page Skin"
|
4736 |
msgstr "Skin Seite Archiv"
|
4737 |
|
4738 |
-
#: app/features/mec/settings.php:
|
4739 |
#, fuzzy
|
4740 |
#| msgid "Edit shortcodes"
|
4741 |
msgid "Put shortcode..."
|
4742 |
msgstr "Shortcode ändern"
|
4743 |
|
4744 |
-
#: app/features/mec/settings.php:
|
4745 |
-
#: app/features/mec/settings.php:
|
4746 |
-
#: app/features/mec/settings.php:
|
4747 |
-
#: app/features/mec/settings.php:
|
4748 |
-
#: app/features/mec/settings.php:
|
4749 |
#, fuzzy
|
4750 |
#| msgid "The event is ongoing."
|
4751 |
msgid "There is no skins"
|
4752 |
msgstr "Die Veranstaltung ist im Gange."
|
4753 |
|
4754 |
-
#: app/features/mec/settings.php:
|
4755 |
-
#: app/features/mec/single.php:
|
4756 |
msgid "Modern Style"
|
4757 |
msgstr "Moderner Stil"
|
4758 |
|
4759 |
-
#: app/features/mec/settings.php:
|
4760 |
#, fuzzy
|
4761 |
#| msgid "Colorful"
|
4762 |
msgid "colorful"
|
4763 |
msgstr "Farbenfroh"
|
4764 |
|
4765 |
-
#: app/features/mec/settings.php:
|
4766 |
#, fuzzy
|
4767 |
#| msgid "Plain Style"
|
4768 |
msgid "Clean Style"
|
4769 |
msgstr "Einfacher schlichter Stil"
|
4770 |
|
4771 |
-
#: app/features/mec/settings.php:
|
4772 |
#, fuzzy
|
4773 |
#| msgid "Default value is Calendar/Monthly View"
|
4774 |
msgid "Default value is Calendar/Monthly View, But you can change it "
|
4775 |
msgstr "Der Standardwert ist Kalender / Monatsansicht"
|
4776 |
|
4777 |
-
#: app/features/mec/settings.php:
|
4778 |
msgid "See Demo"
|
4779 |
msgstr ""
|
4780 |
|
4781 |
-
#: app/features/mec/settings.php:
|
4782 |
msgid "Category Page Skin"
|
4783 |
msgstr "Kategorie Seiten Skin"
|
4784 |
|
4785 |
-
#: app/features/mec/settings.php:
|
4786 |
msgid ""
|
4787 |
"Default value is List View - But you can change it Set a skin for all "
|
4788 |
"categories."
|
4789 |
msgstr ""
|
4790 |
|
4791 |
-
#: app/features/mec/settings.php:
|
4792 |
msgid "Category Events Method"
|
4793 |
msgstr ""
|
4794 |
|
4795 |
-
#: app/features/mec/settings.php:
|
4796 |
msgid "Expired Events"
|
4797 |
msgstr ""
|
4798 |
|
4799 |
-
#: app/features/mec/settings.php:
|
4800 |
msgid "Default value is Upcoming Events"
|
4801 |
msgstr ""
|
4802 |
|
4803 |
-
#: app/features/mec/settings.php:
|
4804 |
msgid "Events Archive Status"
|
4805 |
msgstr "Events Archiv Status"
|
4806 |
|
4807 |
-
#: app/features/mec/settings.php:
|
4808 |
msgid "Enabled (Recommended)"
|
4809 |
msgstr "Ist aktiviert (empfohlen)"
|
4810 |
|
4811 |
-
#: app/features/mec/settings.php:
|
4812 |
msgid ""
|
4813 |
"If you disable it, then you should create a page as archive page of MEC. "
|
4814 |
"Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
|
@@ -4818,18 +4818,18 @@ msgstr ""
|
|
4818 |
"erstellen. Page´s slug muss gleich sein wie \"Main Slug\" von MEC. Außerdem "
|
4819 |
"werden alle MEC-Rewrite-Regeln deaktiviert."
|
4820 |
|
4821 |
-
#: app/features/mec/settings.php:
|
4822 |
msgid "Main Slug"
|
4823 |
msgstr "Main Slug"
|
4824 |
|
4825 |
-
#: app/features/mec/settings.php:
|
4826 |
msgid ""
|
4827 |
"Default value is events. You can not have a page with this name. MEC allows "
|
4828 |
"you to create custom URLs for the permalinks and archives to enhance the "
|
4829 |
"applicability and forward-compatibility of the links."
|
4830 |
msgstr ""
|
4831 |
|
4832 |
-
#: app/features/mec/settings.php:
|
4833 |
#, fuzzy
|
4834 |
#| msgid ""
|
4835 |
#| "Default value is events. Valid characters are lowercase a-z, - character "
|
@@ -4839,11 +4839,11 @@ msgstr ""
|
|
4839 |
"Standardwert ist Events. Gültige Zeichen sind Kleinbuchstaben a-z, - Zeichen "
|
4840 |
"und Zahlen."
|
4841 |
|
4842 |
-
#: app/features/mec/settings.php:
|
4843 |
msgid "Category Slug"
|
4844 |
msgstr "Category Slug"
|
4845 |
|
4846 |
-
#: app/features/mec/settings.php:
|
4847 |
#, fuzzy
|
4848 |
#| msgid ""
|
4849 |
#| "It's slug of MEC categories, you can change it to events-cat or something "
|
@@ -4859,135 +4859,135 @@ msgstr ""
|
|
4859 |
"für den link. Zum Beispiel example.com/events-cat oder example.com/mec-"
|
4860 |
"category"
|
4861 |
|
4862 |
-
#: app/features/mec/settings.php:
|
4863 |
msgid "Currency"
|
4864 |
msgstr "Währung"
|
4865 |
|
4866 |
-
#: app/features/mec/settings.php:
|
4867 |
msgid "Currency Sign"
|
4868 |
msgstr "Währungssymbol"
|
4869 |
|
4870 |
-
#: app/features/mec/settings.php:
|
4871 |
msgid "Default value will be \"currency\" if you leave it empty."
|
4872 |
msgstr "Standardwert wird \"currency\" sein wenn Sie es leer lassen"
|
4873 |
|
4874 |
-
#: app/features/mec/settings.php:
|
4875 |
msgid "Currency Position"
|
4876 |
msgstr "Position des Währungssymbols"
|
4877 |
|
4878 |
-
#: app/features/mec/settings.php:
|
4879 |
msgid "Before $10"
|
4880 |
msgstr "Vor $10"
|
4881 |
|
4882 |
-
#: app/features/mec/settings.php:
|
4883 |
msgid "After 10$"
|
4884 |
msgstr "Nach 10$"
|
4885 |
|
4886 |
-
#: app/features/mec/settings.php:
|
4887 |
msgid "Thousand Separator"
|
4888 |
msgstr "Tausendertrennzeichen"
|
4889 |
|
4890 |
-
#: app/features/mec/settings.php:
|
4891 |
msgid "Decimal Separator"
|
4892 |
msgstr "Dezimaltrennzeichen"
|
4893 |
|
4894 |
-
#: app/features/mec/settings.php:
|
4895 |
msgid "No decimal"
|
4896 |
msgstr "Keine Dezimale"
|
4897 |
|
4898 |
-
#: app/features/mec/settings.php:
|
4899 |
msgid "Enable Google Recaptcha"
|
4900 |
msgstr "Google Recaptcha aktivieren"
|
4901 |
|
4902 |
-
#: app/features/mec/settings.php:
|
4903 |
msgid "Enable on booking form"
|
4904 |
msgstr "Auf dem Buchungsformular aktivieren"
|
4905 |
|
4906 |
-
#: app/features/mec/settings.php:
|
4907 |
#, fuzzy
|
4908 |
#| msgid "Enable on \"Frontend Event Submittion\" form"
|
4909 |
msgid "Enable on \"Frontend Event Submission\" form"
|
4910 |
msgstr "Aktivieren auf dem \"Frontend Event Submittion\" Formular"
|
4911 |
|
4912 |
-
#: app/features/mec/settings.php:
|
4913 |
msgid "Site Key"
|
4914 |
msgstr "Site Key (Seitenschlüssel)"
|
4915 |
|
4916 |
-
#: app/features/mec/settings.php:
|
4917 |
msgid "Secret Key"
|
4918 |
msgstr "Geheimschlüssel"
|
4919 |
|
4920 |
-
#: app/features/mec/settings.php:
|
4921 |
msgid "Time Format"
|
4922 |
msgstr "Zeitformat"
|
4923 |
|
4924 |
-
#: app/features/mec/settings.php:
|
4925 |
msgid "12 hours format with AM/PM"
|
4926 |
msgstr "12-Stunden-Format mit AM/FM"
|
4927 |
|
4928 |
-
#: app/features/mec/settings.php:
|
4929 |
msgid "24 hours format"
|
4930 |
msgstr "24-Stunden-Format"
|
4931 |
|
4932 |
-
#: app/features/mec/settings.php:
|
4933 |
msgid "This option, affects the selection of Start/End time."
|
4934 |
msgstr ""
|
4935 |
|
4936 |
-
#: app/features/mec/settings.php:
|
4937 |
msgid "Events List Page"
|
4938 |
msgstr "Seite Liste der Veranstaltungen"
|
4939 |
|
4940 |
-
#: app/features/mec/settings.php:
|
4941 |
#, php-format
|
4942 |
msgid "Put %s shortcode into the page."
|
4943 |
msgstr "%s shortcode in die Seite einfügen"
|
4944 |
|
4945 |
-
#: app/features/mec/settings.php:
|
4946 |
msgid "Add/Edit Events Page"
|
4947 |
msgstr "Veranstaltungsseite hinzufügen/bearbeiten"
|
4948 |
|
4949 |
-
#: app/features/mec/settings.php:
|
4950 |
msgid "Enable event submission by guest (Not logged-in) users"
|
4951 |
msgstr ""
|
4952 |
"Das Erstellen von Veranstaltungen durch Gäste (nicht angemeldete Nutzer) "
|
4953 |
"erlauben"
|
4954 |
|
4955 |
-
#: app/features/mec/settings.php:
|
4956 |
msgid "Enable mandatory email and name for guest user"
|
4957 |
msgstr ""
|
4958 |
"Aktivieren Sie die obligatorische E-Mail und den Namen für Gastbenutzer"
|
4959 |
|
4960 |
-
#: app/features/mec/settings.php:
|
4961 |
msgid "Frontend Event Submission Sections"
|
4962 |
msgstr "Frontend Veranstaltungen Einreichung Sektionen"
|
4963 |
|
4964 |
-
#: app/features/mec/settings.php:
|
4965 |
msgid "Event Categories"
|
4966 |
msgstr "Veranstaltungskategorien"
|
4967 |
|
4968 |
-
#: app/features/mec/settings.php:
|
4969 |
msgid "Event Labels"
|
4970 |
msgstr "Event Labels"
|
4971 |
|
4972 |
-
#: app/features/mec/settings.php:
|
4973 |
msgid "Event Tags"
|
4974 |
msgstr "Event Schlagworte"
|
4975 |
|
4976 |
-
#: app/features/mec/settings.php:
|
4977 |
msgid "Event Organizer"
|
4978 |
msgstr "Veranstaltungsmanager"
|
4979 |
|
4980 |
-
#: app/features/mec/settings.php:
|
4981 |
msgid "Booking Options"
|
4982 |
msgstr "Buchungsoptionen"
|
4983 |
|
4984 |
-
#: app/features/mec/settings.php:
|
4985 |
#, fuzzy
|
4986 |
#| msgid "Fees/Taxes Options"
|
4987 |
msgid "Fees / Taxes Options"
|
4988 |
msgstr "Gebühren/Steuer Optionen"
|
4989 |
|
4990 |
-
#: app/features/mec/settings.php:
|
4991 |
#, php-format
|
4992 |
msgid ""
|
4993 |
"Users can put a note for editors while they're submitting the event. Also "
|
@@ -4999,54 +4999,54 @@ msgstr ""
|
|
4999 |
"Eventbenachrichtigung setzen, um die Notizen der Benutzer in der E-Mail zu "
|
5000 |
"erhalten."
|
5001 |
|
5002 |
-
#: app/features/mec/settings.php:
|
5003 |
msgid "Visibility of Note"
|
5004 |
msgstr "Sichtbarkeit der Anmerkungen zum Event "
|
5005 |
|
5006 |
-
#: app/features/mec/settings.php:
|
5007 |
msgid "Always"
|
5008 |
msgstr "Immer"
|
5009 |
|
5010 |
-
#: app/features/mec/settings.php:
|
5011 |
msgid "While event is not published"
|
5012 |
msgstr "Das Ereignis wird nicht veröffentlicht"
|
5013 |
|
5014 |
-
#: app/features/mec/settings.php:
|
5015 |
msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
|
5016 |
msgstr ""
|
5017 |
"Die Ereignisnotiz wird im Frontend-Einreichungsformular angezeigt und das "
|
5018 |
"Ereignis im Backend bearbeitet."
|
5019 |
|
5020 |
-
#: app/features/mec/settings.php:
|
5021 |
#, php-format
|
5022 |
msgid ""
|
5023 |
"Put %s shortcode into your desired page. Then users are able to see history "
|
5024 |
"of their bookings."
|
5025 |
msgstr ""
|
5026 |
|
5027 |
-
#: app/features/mec/settings.php:
|
5028 |
msgid "Enable Mailchimp Integration"
|
5029 |
msgstr "Mailchimp Integration deaktivieren"
|
5030 |
|
5031 |
-
#: app/features/mec/settings.php:
|
5032 |
msgid "List ID"
|
5033 |
msgstr "List ID"
|
5034 |
|
5035 |
-
#: app/features/mec/settings.php:
|
5036 |
msgid "Subscription Status"
|
5037 |
msgstr "Buchungsstatus"
|
5038 |
|
5039 |
-
#: app/features/mec/settings.php:
|
5040 |
msgid "Subscribe automatically"
|
5041 |
msgstr "automatisch Anmelden/Abonnieren"
|
5042 |
|
5043 |
-
#: app/features/mec/settings.php:
|
5044 |
msgid "Subscribe by verification"
|
5045 |
msgstr ""
|
5046 |
"Anmelden/Abonnieren durch Bestätigung\n"
|
5047 |
" "
|
5048 |
|
5049 |
-
#: app/features/mec/settings.php:
|
5050 |
msgid ""
|
5051 |
"If you choose \"Subscribe by verification\" then an email will send to user "
|
5052 |
"by mailchimp for subscription verification."
|
@@ -5054,51 +5054,51 @@ msgstr ""
|
|
5054 |
"Wenn Sie \"Anmelden durch Verifizierung\" wählen, wird eine E-Mail an den "
|
5055 |
"Benutzer per Mailchimp zur Bestätigung gesendet."
|
5056 |
|
5057 |
-
#: app/features/mec/settings.php:
|
5058 |
#, fuzzy
|
5059 |
#| msgid "Filter Options"
|
5060 |
msgid "Upload Field Options"
|
5061 |
msgstr "Filteroptionen"
|
5062 |
|
5063 |
-
#: app/features/mec/settings.php:
|
5064 |
msgid "Mime types"
|
5065 |
msgstr ""
|
5066 |
|
5067 |
-
#: app/features/mec/settings.php:
|
5068 |
msgid "Split mime types with \",\"."
|
5069 |
msgstr ""
|
5070 |
|
5071 |
-
#: app/features/mec/settings.php:
|
5072 |
msgid "Default: jpeg,jpg,png,pdf"
|
5073 |
msgstr ""
|
5074 |
|
5075 |
-
#: app/features/mec/settings.php:
|
5076 |
#, fuzzy
|
5077 |
#| msgid "Amount (Per Ticket)"
|
5078 |
msgid "Maximum file size"
|
5079 |
msgstr "Betrag (pro Ticket)"
|
5080 |
|
5081 |
-
#: app/features/mec/settings.php:
|
5082 |
msgid "The unit is Megabyte \"MB\""
|
5083 |
msgstr ""
|
5084 |
|
5085 |
-
#: app/features/mec/single.php:
|
5086 |
msgid "Single Event Date Format"
|
5087 |
msgstr "Einzelveranstaltung Datumformat"
|
5088 |
|
5089 |
-
#: app/features/mec/single.php:
|
5090 |
msgid "Date Method"
|
5091 |
msgstr "Datum Methode"
|
5092 |
|
5093 |
-
#: app/features/mec/single.php:
|
5094 |
msgid "Next occurrence date"
|
5095 |
msgstr "Nächstes vorkommende Datum"
|
5096 |
|
5097 |
-
#: app/features/mec/single.php:
|
5098 |
msgid "Referred date"
|
5099 |
msgstr "Gewünschtes Datum"
|
5100 |
|
5101 |
-
#: app/features/mec/single.php:
|
5102 |
#, fuzzy
|
5103 |
#| msgid ""
|
5104 |
#| "\"Referred date\" shows the event date based on referred date in event "
|
@@ -5109,99 +5109,99 @@ msgstr ""
|
|
5109 |
"\"Gewünschtes Datum\" zeigt das Ereignisdatum basierend auf dem angegebenen "
|
5110 |
"Datum in der Eventliste an."
|
5111 |
|
5112 |
-
#: app/features/mec/single.php:
|
5113 |
msgid "Single Event Style"
|
5114 |
msgstr "Single Event Stil"
|
5115 |
|
5116 |
-
#: app/features/mec/single.php:
|
5117 |
msgid "Default Style"
|
5118 |
msgstr "Standardstil voreingestellt"
|
5119 |
|
5120 |
-
#: app/features/mec/single.php:
|
5121 |
#, fuzzy
|
5122 |
#| msgid "MEC Single Sidebar"
|
5123 |
msgid "Elementor Single Builder"
|
5124 |
msgstr "MEC Single Sidebar"
|
5125 |
|
5126 |
-
#: app/features/mec/single.php:
|
5127 |
msgid "Choose your single event style."
|
5128 |
msgstr "Wählen Sie Ihren Single Event Stil"
|
5129 |
|
5130 |
-
#: app/features/mec/single.php:
|
5131 |
#, fuzzy
|
5132 |
#| msgid "Booking"
|
5133 |
msgid "Booking Style"
|
5134 |
msgstr "Buchung / Reservierung"
|
5135 |
|
5136 |
-
#: app/features/mec/single.php:
|
5137 |
#, fuzzy
|
5138 |
#| msgid "Modal 1"
|
5139 |
msgid "Modal"
|
5140 |
msgstr "Modal 1"
|
5141 |
|
5142 |
-
#: app/features/mec/single.php:
|
5143 |
msgid ""
|
5144 |
"Choose your Booking style, Please Note: When you set this feature to modal "
|
5145 |
"you can not see booking box if you set popoup module view on shortcodes"
|
5146 |
msgstr ""
|
5147 |
|
5148 |
-
#: app/features/mec/single.php:
|
5149 |
msgid "Disable Block Editor (Gutenberg)"
|
5150 |
msgstr ""
|
5151 |
|
5152 |
-
#: app/features/mec/single.php:
|
5153 |
msgid "Disable Block Editor"
|
5154 |
msgstr ""
|
5155 |
|
5156 |
-
#: app/features/mec/single.php:
|
5157 |
msgid "Block Editor"
|
5158 |
msgstr ""
|
5159 |
|
5160 |
-
#: app/features/mec/single.php:
|
5161 |
msgid ""
|
5162 |
"If you want to use the new WordPress block editor you should keep this "
|
5163 |
"checkbox unchecked."
|
5164 |
msgstr ""
|
5165 |
|
5166 |
-
#: app/features/mec/single.php:
|
5167 |
msgid "Breadcrumbs"
|
5168 |
msgstr ""
|
5169 |
|
5170 |
-
#: app/features/mec/single.php:
|
5171 |
msgid "Enable Breadcrumbs."
|
5172 |
msgstr ""
|
5173 |
|
5174 |
-
#: app/features/mec/single.php:
|
5175 |
msgid "Check this option, for showing the breadcrumbs on single event page"
|
5176 |
msgstr ""
|
5177 |
|
5178 |
-
#: app/features/mec/single.php:
|
5179 |
msgid "Show countdown module on event page"
|
5180 |
msgstr "Countdownmodul auf Veranstaltungsseite anzeigen"
|
5181 |
|
5182 |
-
#: app/features/mec/single.php:
|
5183 |
msgid "Countdown Style"
|
5184 |
msgstr "Countdown Stil"
|
5185 |
|
5186 |
-
#: app/features/mec/single.php:
|
5187 |
msgid "Plain Style"
|
5188 |
msgstr "Einfacher schlichter Stil"
|
5189 |
|
5190 |
-
#: app/features/mec/single.php:
|
5191 |
msgid "Flip Style"
|
5192 |
msgstr "Flip Stil"
|
5193 |
|
5194 |
-
#: app/features/mec/single.php:
|
5195 |
msgid "Exceptional days"
|
5196 |
msgstr "Ausgesuchte ausnehmende Tage"
|
5197 |
|
5198 |
-
#: app/features/mec/single.php:
|
5199 |
msgid "Show exceptional days option on Add/Edit events page"
|
5200 |
msgstr ""
|
5201 |
"Ausnehmende Tage anzeigen auf der Seite Ereignisse hinzufügen / bearbeiten "
|
5202 |
"(Show exceptional days option on Add/Edit events page)"
|
5203 |
|
5204 |
-
#: app/features/mec/single.php:
|
5205 |
msgid ""
|
5206 |
"Using this option you can include/exclude certain days to/from event "
|
5207 |
"occurrence dates."
|
@@ -5209,7 +5209,7 @@ msgstr ""
|
|
5209 |
"Mit dieser Option können Sie bestimmte Tage von vorkommenden Eventdaten ein-/"
|
5210 |
"ausschließen."
|
5211 |
|
5212 |
-
#: app/features/mec/single.php:
|
5213 |
msgid ""
|
5214 |
"Show additional organizers option on Add/Edit events page and single event "
|
5215 |
"page."
|
@@ -5217,13 +5217,13 @@ msgstr ""
|
|
5217 |
"Zeigen Sie zusätzliche Organisatoren auf der Seite Events hinzufügen / "
|
5218 |
"bearbeiten und auf der Seite für einzelne Events an."
|
5219 |
|
5220 |
-
#: app/features/mec/single.php:
|
5221 |
#, fuzzy
|
5222 |
#| msgid "Additional Organizers"
|
5223 |
msgid "Additional locations"
|
5224 |
msgstr "Zusätzliche Organisatoren"
|
5225 |
|
5226 |
-
#: app/features/mec/single.php:
|
5227 |
#, fuzzy
|
5228 |
#| msgid ""
|
5229 |
#| "Show additional organizers option on Add/Edit events page and single "
|
@@ -5235,11 +5235,11 @@ msgstr ""
|
|
5235 |
"Zeigen Sie zusätzliche Organisatoren auf der Seite Events hinzufügen / "
|
5236 |
"bearbeiten und auf der Seite für einzelne Events an."
|
5237 |
|
5238 |
-
#: app/features/mec/styles.php:
|
5239 |
msgid "Custom Styles"
|
5240 |
msgstr "Benutzerdefinierte Stile"
|
5241 |
|
5242 |
-
#: app/features/mec/styles.php:
|
5243 |
msgid ""
|
5244 |
"If you're a developer or you have some knowledge about CSS codes, you can "
|
5245 |
"place your desired styles codes here. These codes will be included in your "
|
@@ -5250,78 +5250,78 @@ msgstr ""
|
|
5250 |
"Ihre eigenen Stilcodes einfügen. Diese Codes werden in Ihr Frontend "
|
5251 |
"übernommen und übersteuern die MEC- (oder Thema-) Grundeinstellungen."
|
5252 |
|
5253 |
-
#: app/features/mec/styling.php:10 app/features/mec/styling.php:
|
5254 |
-
#: app/features/mec/styling.php:
|
5255 |
msgid "Default Font"
|
5256 |
msgstr "Standardschriftart des Themas "
|
5257 |
|
5258 |
-
#: app/features/mec/styling.php:
|
5259 |
msgid "Styling Option"
|
5260 |
msgstr "Style Optionen"
|
5261 |
|
5262 |
-
#: app/features/mec/styling.php:
|
5263 |
msgid "Color Skin"
|
5264 |
msgstr "Farbe Skin"
|
5265 |
|
5266 |
-
#: app/features/mec/styling.php:
|
5267 |
msgid "Predefined Color Skin"
|
5268 |
msgstr "Vordefinierte Farbenoberfläche"
|
5269 |
|
5270 |
-
#: app/features/mec/styling.php:
|
5271 |
msgid "Custom Color Skin"
|
5272 |
msgstr "Benutzerdefinierte Farboberfläche"
|
5273 |
|
5274 |
-
#: app/features/mec/styling.php:
|
5275 |
msgid ""
|
5276 |
"If you want to select a predefined color skin, you must clear the color of "
|
5277 |
"this item"
|
5278 |
msgstr ""
|
5279 |
|
5280 |
-
#: app/features/mec/styling.php:
|
5281 |
msgid "Advanced Color Options (shortcodes)"
|
5282 |
msgstr ""
|
5283 |
|
5284 |
-
#: app/features/mec/styling.php:
|
5285 |
#, fuzzy
|
5286 |
#| msgid "Title of event"
|
5287 |
msgid "Title Hover"
|
5288 |
msgstr "Titel der Veranstaltung"
|
5289 |
|
5290 |
-
#: app/features/mec/styling.php:
|
5291 |
msgid "Typography"
|
5292 |
msgstr "Typographie"
|
5293 |
|
5294 |
-
#: app/features/mec/styling.php:
|
5295 |
msgid "Heading (Events Title) Font Family"
|
5296 |
msgstr "Schriftart Überschrift (Titel der Veranstaltung)"
|
5297 |
|
5298 |
-
#: app/features/mec/styling.php:
|
5299 |
msgid "Paragraph Font Family"
|
5300 |
msgstr "Schriftart Absätze"
|
5301 |
|
5302 |
-
#: app/features/mec/styling.php:
|
5303 |
#, fuzzy
|
5304 |
#| msgid "Enable Google Recaptcha"
|
5305 |
msgid "Disable Google Fonts"
|
5306 |
msgstr "Google Recaptcha aktivieren"
|
5307 |
|
5308 |
-
#: app/features/mec/styling.php:
|
5309 |
msgid "To be GDPR compliant you may need to disable Google fonts!"
|
5310 |
msgstr ""
|
5311 |
|
5312 |
-
#: app/features/mec/styling.php:
|
5313 |
msgid "Container Width"
|
5314 |
msgstr ""
|
5315 |
|
5316 |
-
#: app/features/mec/styling.php:
|
5317 |
msgid "Desktop Normal Screens"
|
5318 |
msgstr ""
|
5319 |
|
5320 |
-
#: app/features/mec/styling.php:
|
5321 |
msgid "You can enter your theme container size in this field"
|
5322 |
msgstr ""
|
5323 |
|
5324 |
-
#: app/features/mec/styling.php:
|
5325 |
msgid "Desktop Large Screens"
|
5326 |
msgstr ""
|
5327 |
|
@@ -5798,7 +5798,7 @@ msgstr "z.B.. max@mustermann.com"
|
|
5798 |
msgid "eg. https://webnus.net"
|
5799 |
msgstr "http://webnus.net"
|
5800 |
|
5801 |
-
#: app/features/organizers.php:306 app/libraries/main.php:
|
5802 |
#: app/skins/single.php:693
|
5803 |
msgid "Other Organizers"
|
5804 |
msgstr "Andere Veranstalter"
|
@@ -5820,11 +5820,11 @@ msgstr "Um neue Veranstaltungen einzugeben, bitte %s/%s"
|
|
5820 |
msgid "#"
|
5821 |
msgstr ""
|
5822 |
|
5823 |
-
#: app/features/profile/profile.php:34 app/libraries/main.php:
|
5824 |
msgid "Status"
|
5825 |
msgstr ""
|
5826 |
|
5827 |
-
#: app/features/profile/profile.php:37 app/libraries/main.php:
|
5828 |
msgid "Attendees"
|
5829 |
msgstr "Teilnehmer"
|
5830 |
|
@@ -5839,8 +5839,8 @@ msgstr "% s Rechnung"
|
|
5839 |
msgid "<i class=\"mec-sl-eye\"></i> %s"
|
5840 |
msgstr ""
|
5841 |
|
5842 |
-
#: app/features/profile/profile.php:96 app/libraries/main.php:
|
5843 |
-
#: app/libraries/main.php:
|
5844 |
msgid "Ticket"
|
5845 |
msgstr "Ticket"
|
5846 |
|
@@ -5920,8 +5920,8 @@ msgstr "%s Preis"
|
|
5920 |
msgid "Discount"
|
5921 |
msgstr "Rabatt"
|
5922 |
|
5923 |
-
#: app/libraries/book.php:626 app/modules/booking/default.php:
|
5924 |
-
#: app/modules/booking/default.php:
|
5925 |
msgid "Download Invoice"
|
5926 |
msgstr "Download Rechnung"
|
5927 |
|
@@ -6000,38 +6000,38 @@ msgstr ""
|
|
6000 |
"Eine Vorschau kann nicht angezeit werden, da es sich um einen geschützen "
|
6001 |
"Beitrag handelt."
|
6002 |
|
6003 |
-
#: app/libraries/main.php:330 app/libraries/main.php:
|
6004 |
-
#: app/libraries/main.php:
|
6005 |
msgid "Grid View"
|
6006 |
msgstr "Rasterdarstellung"
|
6007 |
|
6008 |
-
#: app/libraries/main.php:331 app/libraries/main.php:
|
6009 |
-
#: app/libraries/main.php:
|
6010 |
msgid "Agenda View"
|
6011 |
msgstr "Agendaansicht"
|
6012 |
|
6013 |
-
#: app/libraries/main.php:332 app/libraries/main.php:
|
6014 |
-
#: app/libraries/main.php:
|
6015 |
msgid "Full Calendar"
|
6016 |
msgstr "Ganzer Kalender"
|
6017 |
|
6018 |
-
#: app/libraries/main.php:334 app/libraries/main.php:
|
6019 |
-
#: app/libraries/main.php:
|
6020 |
msgid "Calendar/Monthly View"
|
6021 |
msgstr "Kalender-/Monatsansicht"
|
6022 |
|
6023 |
-
#: app/libraries/main.php:337 app/libraries/main.php:
|
6024 |
-
#: app/libraries/main.php:
|
6025 |
msgid "Timetable View"
|
6026 |
msgstr "Stundenplan"
|
6027 |
|
6028 |
-
#: app/libraries/main.php:338 app/libraries/main.php:
|
6029 |
-
#: app/libraries/main.php:
|
6030 |
msgid "Masonry View"
|
6031 |
msgstr "Kachel Ansicht"
|
6032 |
|
6033 |
-
#: app/libraries/main.php:339 app/libraries/main.php:
|
6034 |
-
#: app/libraries/main.php:
|
6035 |
msgid "Map View"
|
6036 |
msgstr "Kartenansicht"
|
6037 |
|
@@ -6055,39 +6055,39 @@ msgstr "Karussellansicht"
|
|
6055 |
msgid "Slider View"
|
6056 |
msgstr "Slideransicht"
|
6057 |
|
6058 |
-
#: app/libraries/main.php:382 app/libraries/main.php:
|
6059 |
msgid "SU"
|
6060 |
msgstr "SO"
|
6061 |
|
6062 |
-
#: app/libraries/main.php:383 app/libraries/main.php:
|
6063 |
msgid "MO"
|
6064 |
msgstr "MO"
|
6065 |
|
6066 |
-
#: app/libraries/main.php:384 app/libraries/main.php:
|
6067 |
msgid "TU"
|
6068 |
msgstr "DI"
|
6069 |
|
6070 |
-
#: app/libraries/main.php:385 app/libraries/main.php:
|
6071 |
msgid "WE"
|
6072 |
msgstr "MI"
|
6073 |
|
6074 |
-
#: app/libraries/main.php:386 app/libraries/main.php:
|
6075 |
msgid "TH"
|
6076 |
msgstr "DO"
|
6077 |
|
6078 |
-
#: app/libraries/main.php:387 app/libraries/main.php:
|
6079 |
msgid "FR"
|
6080 |
msgstr "FR"
|
6081 |
|
6082 |
-
#: app/libraries/main.php:388 app/libraries/main.php:
|
6083 |
msgid "SA"
|
6084 |
msgstr "SA"
|
6085 |
|
6086 |
-
#: app/libraries/main.php:
|
6087 |
msgid "New Addons For MEC! Now Customize MEC in Elementor"
|
6088 |
msgstr ""
|
6089 |
|
6090 |
-
#: app/libraries/main.php:
|
6091 |
msgid ""
|
6092 |
"The time has come at last, and the new practical add-ons for MEC have been "
|
6093 |
"released. This is a revolution in the world of Event Calendars. We have "
|
@@ -6095,303 +6095,303 @@ msgid ""
|
|
6095 |
"below:"
|
6096 |
msgstr ""
|
6097 |
|
6098 |
-
#: app/libraries/main.php:
|
6099 |
msgid ""
|
6100 |
"<strong>WooCommerce Integration:</strong> You can now purchase ticket (as "
|
6101 |
"products) and Woo products at the same time."
|
6102 |
msgstr ""
|
6103 |
|
6104 |
-
#: app/libraries/main.php:
|
6105 |
msgid ""
|
6106 |
"<strong>Elementor Single Builder:</strong> It enables you to create "
|
6107 |
"shortcodes in Elementor Live Editor."
|
6108 |
msgstr ""
|
6109 |
|
6110 |
-
#: app/libraries/main.php:
|
6111 |
msgid ""
|
6112 |
"<strong>Elementor Form Builder:</strong> It allows you to use many different "
|
6113 |
"type of fields and rearrange them by drag and drop and modify their styles."
|
6114 |
msgstr ""
|
6115 |
|
6116 |
-
#: app/libraries/main.php:
|
6117 |
msgid ""
|
6118 |
"<strong>Elementor Shortcode Builder:</strong> Edit single event page using "
|
6119 |
"Elementor. Manage the position of all elements in the Single page and in "
|
6120 |
"desktops, mobiles and tablets as well."
|
6121 |
msgstr ""
|
6122 |
|
6123 |
-
#: app/libraries/main.php:
|
6124 |
msgid "Events at this location"
|
6125 |
msgstr "Veranstaltungen an diesem Ort "
|
6126 |
|
6127 |
-
#: app/libraries/main.php:
|
6128 |
msgid "Event at this location"
|
6129 |
msgstr "Veranstaltung an diesem Ort "
|
6130 |
|
6131 |
-
#: app/libraries/main.php:
|
6132 |
msgid "Facebook"
|
6133 |
msgstr "Facebook"
|
6134 |
|
6135 |
-
#: app/libraries/main.php:
|
6136 |
msgid "Twitter"
|
6137 |
msgstr "Twitter"
|
6138 |
|
6139 |
-
#: app/libraries/main.php:
|
6140 |
msgid "Linkedin"
|
6141 |
msgstr "Linkedin"
|
6142 |
|
6143 |
-
#: app/libraries/main.php:
|
6144 |
msgid "VK"
|
6145 |
msgstr ""
|
6146 |
|
6147 |
-
#: app/libraries/main.php:
|
6148 |
msgid "Share on Facebook"
|
6149 |
msgstr "Teilen auf Facebook"
|
6150 |
|
6151 |
-
#: app/libraries/main.php:
|
6152 |
msgid "Tweet"
|
6153 |
msgstr "Tweet"
|
6154 |
|
6155 |
-
#: app/libraries/main.php:
|
6156 |
#, fuzzy
|
6157 |
#| msgid "Shortcode"
|
6158 |
msgid "Custom Shortcode"
|
6159 |
msgstr "Shortcode"
|
6160 |
|
6161 |
-
#: app/libraries/main.php:
|
6162 |
msgid "Your booking successfully verified."
|
6163 |
msgstr "Ihre Buchung wurde erfolgreich verifiziert."
|
6164 |
|
6165 |
-
#: app/libraries/main.php:
|
6166 |
msgid "Your booking cannot verify!"
|
6167 |
msgstr "Ihre Buchung kann nicht verifiziert werden!"
|
6168 |
|
6169 |
-
#: app/libraries/main.php:
|
6170 |
msgid "Your booking successfully canceled."
|
6171 |
msgstr "Ihre Buchung wurde erfolgreich storniert."
|
6172 |
|
6173 |
-
#: app/libraries/main.php:
|
6174 |
msgid "Your booking cannot be canceled."
|
6175 |
msgstr "Ihre Buchung kann nicht storniert werden."
|
6176 |
|
6177 |
-
#: app/libraries/main.php:
|
6178 |
msgid "You canceled the payment successfully."
|
6179 |
msgstr "Sie haben die Zahlung erfolgreich storniert."
|
6180 |
|
6181 |
-
#: app/libraries/main.php:
|
6182 |
msgid "You returned from payment gateway successfully."
|
6183 |
msgstr "Sie sind vom Bezahlungs-Gateway erfolgreich zurückgekehrt."
|
6184 |
|
6185 |
-
#: app/libraries/main.php:
|
6186 |
msgid "Cannot find the booking!"
|
6187 |
msgstr "Kann die Buchung nicht finden!"
|
6188 |
|
6189 |
-
#: app/libraries/main.php:
|
6190 |
msgid "Booking is invalid."
|
6191 |
msgstr "Buchung ist ungültig."
|
6192 |
|
6193 |
-
#: app/libraries/main.php:
|
6194 |
#, php-format
|
6195 |
msgid "%s Invoice"
|
6196 |
msgstr "% s Rechnung"
|
6197 |
|
6198 |
-
#: app/libraries/main.php:
|
6199 |
msgid "Transaction ID"
|
6200 |
msgstr "Transaktions-ID"
|
6201 |
|
6202 |
-
#: app/libraries/main.php:
|
6203 |
msgid "Billing"
|
6204 |
msgstr "Abrechnung"
|
6205 |
|
6206 |
-
#: app/libraries/main.php:
|
6207 |
msgid "Total"
|
6208 |
msgstr "Gesamt"
|
6209 |
|
6210 |
-
#: app/libraries/main.php:
|
6211 |
msgid "Security nonce is not valid."
|
6212 |
msgstr "Sicherheits-Nonce ist ungültig."
|
6213 |
|
6214 |
-
#: app/libraries/main.php:
|
6215 |
msgid "iCal export stopped!"
|
6216 |
msgstr "iCal Export wurde unterbrochen!"
|
6217 |
|
6218 |
-
#: app/libraries/main.php:
|
6219 |
#, fuzzy
|
6220 |
#| msgid "Request is invalid!"
|
6221 |
msgid "Request is not valid."
|
6222 |
msgstr "Die Anfrage ist ungültig!"
|
6223 |
|
6224 |
-
#: app/libraries/main.php:
|
6225 |
-
#: app/libraries/main.php:
|
6226 |
-
#: app/libraries/main.php:
|
6227 |
-
#: app/libraries/main.php:
|
6228 |
-
#: app/libraries/main.php:
|
6229 |
-
#: app/libraries/main.php:
|
6230 |
-
#: app/libraries/main.php:
|
6231 |
msgid "Sort"
|
6232 |
msgstr "Sortieren"
|
6233 |
|
6234 |
-
#: app/libraries/main.php:
|
6235 |
-
#: app/libraries/main.php:
|
6236 |
-
#: app/libraries/main.php:
|
6237 |
-
#: app/libraries/main.php:
|
6238 |
-
#: app/libraries/main.php:
|
6239 |
-
#: app/libraries/main.php:
|
6240 |
msgid "Required Field"
|
6241 |
msgstr "Pflichtfeld"
|
6242 |
|
6243 |
-
#: app/libraries/main.php:
|
6244 |
-
#: app/libraries/main.php:
|
6245 |
-
#: app/libraries/main.php:
|
6246 |
-
#: app/libraries/main.php:
|
6247 |
-
#: app/libraries/main.php:
|
6248 |
-
#: app/libraries/main.php:
|
6249 |
msgid "Insert a label for this field"
|
6250 |
msgstr "Geben Sie eine Bezeichnung (Label) für dieses Feld ein."
|
6251 |
|
6252 |
-
#: app/libraries/main.php:
|
6253 |
msgid "HTML and shortcode are allowed."
|
6254 |
msgstr "HTML und shortcodes sind erlaubt."
|
6255 |
|
6256 |
-
#: app/libraries/main.php:
|
6257 |
-
#: app/libraries/main.php:
|
6258 |
msgid "Option"
|
6259 |
msgstr "Option"
|
6260 |
|
6261 |
-
#: app/libraries/main.php:
|
6262 |
#, php-format
|
6263 |
msgid "Instead of %s, the page title with a link will be show."
|
6264 |
msgstr "Anstelle von %s, wird der Seitentitel mit einem Link gezeigt"
|
6265 |
|
6266 |
-
#: app/libraries/main.php:
|
6267 |
msgid "Agreement Page"
|
6268 |
msgstr "Zustimmungsseite"
|
6269 |
|
6270 |
-
#: app/libraries/main.php:
|
6271 |
msgid "Checked by default"
|
6272 |
msgstr ""
|
6273 |
|
6274 |
-
#: app/libraries/main.php:
|
6275 |
msgid "Unchecked by default"
|
6276 |
msgstr ""
|
6277 |
|
6278 |
-
#: app/libraries/main.php:
|
6279 |
msgid "Insert a label for this option"
|
6280 |
msgstr "Ein neues Label für diese Option einfügen"
|
6281 |
|
6282 |
-
#: app/libraries/main.php:
|
6283 |
msgid "Free"
|
6284 |
msgstr "kostenfrei"
|
6285 |
|
6286 |
-
#: app/libraries/main.php:
|
6287 |
#, fuzzy
|
6288 |
#| msgid "M.E. Calendar"
|
6289 |
msgid "M.E. Calender"
|
6290 |
msgstr "M.E. Calender"
|
6291 |
|
6292 |
-
#: app/libraries/main.php:
|
6293 |
#, php-format
|
6294 |
msgid "Copy of %s"
|
6295 |
msgstr "Kopie von %s"
|
6296 |
|
6297 |
-
#: app/libraries/main.php:
|
6298 |
msgid "Booked an event."
|
6299 |
msgstr "Eine Veranstaltung wurde gebucht."
|
6300 |
|
6301 |
-
#: app/libraries/main.php:
|
6302 |
#, php-format
|
6303 |
msgid "%s booked %s event."
|
6304 |
msgstr "%s gebuchtes %s Event"
|
6305 |
|
6306 |
-
#: app/libraries/main.php:
|
6307 |
msgid "Taxonomies"
|
6308 |
msgstr "Klassifizierung "
|
6309 |
|
6310 |
-
#: app/libraries/main.php:
|
6311 |
msgid "Category Plural Label"
|
6312 |
msgstr "Kategorien"
|
6313 |
|
6314 |
-
#: app/libraries/main.php:
|
6315 |
msgid "Category Singular Label"
|
6316 |
msgstr "Kategorie"
|
6317 |
|
6318 |
-
#: app/libraries/main.php:
|
6319 |
msgid "Label Plural Label"
|
6320 |
msgstr "Labels"
|
6321 |
|
6322 |
-
#: app/libraries/main.php:
|
6323 |
msgid "Label Singular Label"
|
6324 |
msgstr "Label"
|
6325 |
|
6326 |
-
#: app/libraries/main.php:
|
6327 |
msgid "label"
|
6328 |
msgstr "label"
|
6329 |
|
6330 |
-
#: app/libraries/main.php:
|
6331 |
msgid "Location Plural Label"
|
6332 |
msgstr "Veranstaltungsorte"
|
6333 |
|
6334 |
-
#: app/libraries/main.php:
|
6335 |
msgid "Location Singular Label"
|
6336 |
msgstr "Veranstaltungsort"
|
6337 |
|
6338 |
-
#: app/libraries/main.php:
|
6339 |
msgid "Organizer Plural Label"
|
6340 |
msgstr "Veranstalter"
|
6341 |
|
6342 |
-
#: app/libraries/main.php:
|
6343 |
msgid "Organizer Singular Label"
|
6344 |
msgstr "Veranstalter"
|
6345 |
|
6346 |
-
#: app/libraries/main.php:
|
6347 |
#, fuzzy
|
6348 |
#| msgid "Label Plural Label"
|
6349 |
msgid "Speaker Plural Label"
|
6350 |
msgstr "Labels"
|
6351 |
|
6352 |
-
#: app/libraries/main.php:
|
6353 |
#, fuzzy
|
6354 |
#| msgid "Label Singular Label"
|
6355 |
msgid "Speaker Singular Label"
|
6356 |
msgstr "Label"
|
6357 |
|
6358 |
-
#: app/libraries/main.php:
|
6359 |
msgid "Sunday abbreviation"
|
6360 |
msgstr "Sonntag Abkürzung"
|
6361 |
|
6362 |
-
#: app/libraries/main.php:
|
6363 |
msgid "Monday abbreviation"
|
6364 |
msgstr "Montag Abkürzung"
|
6365 |
|
6366 |
-
#: app/libraries/main.php:
|
6367 |
msgid "Tuesday abbreviation"
|
6368 |
msgstr "Dienstag Abkürzung"
|
6369 |
|
6370 |
-
#: app/libraries/main.php:
|
6371 |
msgid "Wednesday abbreviation"
|
6372 |
msgstr "Mittwoch Abkürzung"
|
6373 |
|
6374 |
-
#: app/libraries/main.php:
|
6375 |
msgid "Thursday abbreviation"
|
6376 |
msgstr "Donnerstag Abkürzung"
|
6377 |
|
6378 |
-
#: app/libraries/main.php:
|
6379 |
msgid "Friday abbreviation"
|
6380 |
msgstr "Freitag Abkürzung"
|
6381 |
|
6382 |
-
#: app/libraries/main.php:
|
6383 |
msgid "Saturday abbreviation"
|
6384 |
msgstr "Samstag Abkürzung "
|
6385 |
|
6386 |
-
#: app/libraries/main.php:
|
6387 |
msgid "Others"
|
6388 |
msgstr "Andere"
|
6389 |
|
6390 |
-
#: app/libraries/main.php:
|
6391 |
msgid "Booking Success Message"
|
6392 |
msgstr "Buchung erfolgreich Mitteilung"
|
6393 |
|
6394 |
-
#: app/libraries/main.php:
|
6395 |
msgid ""
|
6396 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
6397 |
"needed, please check your email."
|
@@ -6399,11 +6399,11 @@ msgstr ""
|
|
6399 |
"Vielen Dank für Ihre Buchung. Für die gebuchten Tickets ist ggf. eine "
|
6400 |
"Bestätigung durch Sie erforderlich. Bitte überprüfen Sie Ihre Emails."
|
6401 |
|
6402 |
-
#: app/libraries/main.php:
|
6403 |
msgid "Register Button"
|
6404 |
msgstr "Register Button"
|
6405 |
|
6406 |
-
#: app/libraries/main.php:
|
6407 |
#: app/skins/carousel/render.php:152 app/skins/carousel/render.php:182
|
6408 |
#: app/skins/grid/render.php:116 app/skins/grid/render.php:159
|
6409 |
#: app/skins/grid/render.php:200 app/skins/grid/render.php:228
|
@@ -6420,11 +6420,11 @@ msgstr "Register Button"
|
|
6420 |
msgid "REGISTER"
|
6421 |
msgstr "ANMELDEN"
|
6422 |
|
6423 |
-
#: app/libraries/main.php:
|
6424 |
msgid "View Detail Button"
|
6425 |
msgstr "Ansicht Detail Button"
|
6426 |
|
6427 |
-
#: app/libraries/main.php:
|
6428 |
#: app/skins/carousel/render.php:182 app/skins/grid/render.php:116
|
6429 |
#: app/skins/grid/render.php:159 app/skins/grid/render.php:200
|
6430 |
#: app/skins/grid/render.php:228 app/skins/list/render.php:102
|
@@ -6435,55 +6435,55 @@ msgstr "Ansicht Detail Button"
|
|
6435 |
msgid "View Detail"
|
6436 |
msgstr "Details "
|
6437 |
|
6438 |
-
#: app/libraries/main.php:
|
6439 |
msgid "Event Detail Button"
|
6440 |
msgstr "Event Detail Button"
|
6441 |
|
6442 |
-
#: app/libraries/main.php:
|
6443 |
msgid "Event Detail"
|
6444 |
msgstr "Veranstaltungsdetails"
|
6445 |
|
6446 |
-
#: app/libraries/main.php:
|
6447 |
msgid "More Info Link"
|
6448 |
msgstr "Link Mehr Informationen"
|
6449 |
|
6450 |
-
#: app/libraries/main.php:
|
6451 |
msgid "Ticket (Singular)"
|
6452 |
msgstr "Ticket"
|
6453 |
|
6454 |
-
#: app/libraries/main.php:
|
6455 |
msgid "Tickets (Plural)"
|
6456 |
msgstr "Tickets"
|
6457 |
|
6458 |
-
#: app/libraries/main.php:
|
6459 |
msgid "EventON"
|
6460 |
msgstr "EventON"
|
6461 |
|
6462 |
-
#: app/libraries/main.php:
|
6463 |
msgid "The Events Calendar"
|
6464 |
msgstr "The Events Calendar"
|
6465 |
|
6466 |
-
#: app/libraries/main.php:
|
6467 |
msgid "Events Schedule WP Plugin"
|
6468 |
msgstr "Event Zeitplan WP-Plugin"
|
6469 |
|
6470 |
-
#: app/libraries/main.php:
|
6471 |
msgid "Calendarize It"
|
6472 |
msgstr ""
|
6473 |
|
6474 |
-
#: app/libraries/main.php:
|
6475 |
msgid "Confirmed"
|
6476 |
msgstr "Bestätigt"
|
6477 |
|
6478 |
-
#: app/libraries/main.php:
|
6479 |
msgid "Rejected"
|
6480 |
msgstr "Abgelehnt"
|
6481 |
|
6482 |
-
#: app/libraries/main.php:
|
6483 |
msgid "Pending"
|
6484 |
msgstr "Ausstehend"
|
6485 |
|
6486 |
-
#: app/libraries/main.php:
|
6487 |
msgid "Waiting"
|
6488 |
msgstr "in Bearbeitung"
|
6489 |
|
@@ -6521,23 +6521,23 @@ msgstr "Eine neue Veranstaltung wurde hinzugefügt."
|
|
6521 |
msgid "All of the day"
|
6522 |
msgstr "Den ganzen Tag"
|
6523 |
|
6524 |
-
#: app/libraries/notifications.php:
|
6525 |
msgid "to"
|
6526 |
msgstr ""
|
6527 |
|
6528 |
-
#: app/libraries/notifications.php:
|
6529 |
msgid "+ Add to Google Calendar"
|
6530 |
msgstr "+ zum Google Calendar hinzufügen"
|
6531 |
|
6532 |
-
#: app/libraries/notifications.php:
|
6533 |
msgid "+ iCal export"
|
6534 |
msgstr "+ zu iCal exportieren"
|
6535 |
|
6536 |
-
#: app/libraries/notifications.php:
|
6537 |
msgid "Yes"
|
6538 |
msgstr "Ja"
|
6539 |
|
6540 |
-
#: app/libraries/notifications.php:
|
6541 |
msgid "No"
|
6542 |
msgstr "Nein"
|
6543 |
|
@@ -6549,15 +6549,15 @@ msgstr "Skin contoller existiert nicht."
|
|
6549 |
msgid "Ignore month and years"
|
6550 |
msgstr "Monat und Jahre ignorieren"
|
6551 |
|
6552 |
-
#: app/modules/attendees-list/details.php:
|
6553 |
msgid "Event Attendees"
|
6554 |
msgstr "Event Teilnehmer"
|
6555 |
|
6556 |
-
#: app/modules/attendees-list/details.php:
|
6557 |
msgid "No attendee found! Be the first one to book!"
|
6558 |
msgstr "Keine Teilnehmer gefunden! Seien Sie der erste Teilnehmer der bucht!"
|
6559 |
|
6560 |
-
#: app/modules/attendees-list/details.php:
|
6561 |
#, php-format
|
6562 |
msgid "%s tickets"
|
6563 |
msgstr "%s tickets"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: ME Calender\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2019-07-03 09:29+0430\n"
|
6 |
+
"PO-Revision-Date: 2019-07-03 09:29+0430\n"
|
7 |
"Last-Translator: Jogon <koenig@kafinanz.de>\n"
|
8 |
"Language-Team: German\n"
|
9 |
"Language: de_DE\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"X-Generator: Poedit 2.2\n"
|
14 |
"X-Poedit-KeywordsList: __;_e;_x;_n;_ex;_nx;esc_html__;esc_html_e;esc_html_x;"
|
15 |
"esc_attr__;esc_attr_e;esc_attr_x\n"
|
16 |
"X-Poedit-Basepath: ..\n"
|
23 |
msgid "Modern Events Calendar"
|
24 |
msgstr "Moderner Event Kalender "
|
25 |
|
26 |
+
#: app/addons/KC.php:70 app/addons/VC.php:64 app/features/mec/styling.php:286
|
27 |
msgid "Content"
|
28 |
msgstr "Inhalt"
|
29 |
|
54 |
msgid "Select Type"
|
55 |
msgstr "Alles Auswählen"
|
56 |
|
57 |
+
#: app/features/colors.php:50 app/features/fes/form.php:794
|
58 |
+
#: app/features/mec/settings.php:785
|
59 |
msgid "Event Color"
|
60 |
msgstr "Farbe der Veranstaltung"
|
61 |
|
71 |
msgstr "Einstellungen"
|
72 |
|
73 |
#: app/features/contextual.php:62 app/features/events.php:2250
|
74 |
+
#: app/features/mec/booking.php:146 app/features/mec/gateways.php:111
|
75 |
+
#: app/features/mec/ie.php:107 app/features/mec/messages.php:111
|
76 |
+
#: app/features/mec/modules.php:173 app/features/mec/notifications.php:110
|
77 |
+
#: app/features/mec/regform.php:146 app/features/mec/regform.php:215
|
78 |
+
#: app/features/mec/settings.php:178 app/features/mec/single.php:139
|
79 |
+
#: app/features/mec/styles.php:111 app/features/mec/styling.php:133
|
80 |
#: app/features/mec/support.php:29
|
81 |
msgid "Booking Form"
|
82 |
msgstr "Buchungsformular"
|
95 |
"<iframe width=\"600\" height=\"300\" src=\"https://www.youtube.com/embed/"
|
96 |
"YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></iframe>"
|
97 |
|
98 |
+
#: app/features/contextual.php:70 app/features/mec/booking.php:153
|
99 |
+
#: app/features/mec/gateways.php:118 app/features/mec/gateways.php:181
|
100 |
+
#: app/features/mec/ie.php:114 app/features/mec/messages.php:118
|
101 |
+
#: app/features/mec/modules.php:180 app/features/mec/notifications.php:117
|
102 |
+
#: app/features/mec/regform.php:153 app/features/mec/settings.php:185
|
103 |
+
#: app/features/mec/single.php:146 app/features/mec/styles.php:118
|
104 |
+
#: app/features/mec/styling.php:140 app/features/mec/support.php:36
|
105 |
msgid "Payment Gateways"
|
106 |
msgstr "Zahlungs-Gateways"
|
107 |
|
115 |
"height=\"300\" src=\"https://www.youtube.com/embed/Hpg4chWlxoQ\" frameborder="
|
116 |
"\"0\" allowfullscreen></iframe>"
|
117 |
|
118 |
+
#: app/features/contextual.php:77 app/features/mec/booking.php:162
|
119 |
+
#: app/features/mec/gateways.php:127 app/features/mec/ie.php:123
|
120 |
+
#: app/features/mec/messages.php:127 app/features/mec/modules.php:189
|
121 |
+
#: app/features/mec/notifications.php:129 app/features/mec/regform.php:161
|
122 |
+
#: app/features/mec/settings.php:194 app/features/mec/single.php:155
|
123 |
+
#: app/features/mec/styles.php:127 app/features/mec/styling.php:149
|
124 |
#: app/features/mec/support.php:45
|
125 |
msgid "Notifications"
|
126 |
msgstr "Benachrichtigungen"
|
204 |
#: app/features/mec/gateways.php:28 app/features/mec/ie.php:24
|
205 |
#: app/features/mec/messages.php:28 app/features/mec/modules.php:35
|
206 |
#: app/features/mec/notifications.php:27 app/features/mec/regform.php:64
|
207 |
+
#: app/features/mec/settings.php:51 app/features/mec/settings.php:252
|
208 |
#: app/features/mec/single.php:27 app/features/mec/styles.php:28
|
209 |
#: app/features/mec/styling.php:50
|
210 |
msgid "General Options"
|
214 |
#: app/features/mec/gateways.php:30 app/features/mec/ie.php:26
|
215 |
#: app/features/mec/messages.php:30 app/features/mec/modules.php:37
|
216 |
#: app/features/mec/notifications.php:29 app/features/mec/regform.php:66
|
217 |
+
#: app/features/mec/settings.php:63 app/features/mec/settings.php:569
|
218 |
#: app/features/mec/single.php:29 app/features/mec/styles.php:30
|
219 |
#: app/features/mec/styling.php:52
|
220 |
msgid "Slugs/Permalinks"
|
228 |
#: app/features/mec/gateways.php:31 app/features/mec/ie.php:27
|
229 |
#: app/features/mec/messages.php:31 app/features/mec/modules.php:38
|
230 |
#: app/features/mec/notifications.php:30 app/features/mec/regform.php:67
|
231 |
+
#: app/features/mec/settings.php:69 app/features/mec/settings.php:601
|
232 |
#: app/features/mec/single.php:30 app/features/mec/styles.php:31
|
233 |
#: app/features/mec/styling.php:53
|
234 |
msgid "Currency Options"
|
248 |
#: app/features/mec/gateways.php:32 app/features/mec/ie.php:28
|
249 |
#: app/features/mec/messages.php:32 app/features/mec/modules.php:39
|
250 |
#: app/features/mec/notifications.php:31 app/features/mec/regform.php:68
|
251 |
+
#: app/features/mec/settings.php:75 app/features/mec/settings.php:658
|
252 |
#: app/features/mec/single.php:31 app/features/mec/styles.php:32
|
253 |
#: app/features/mec/styling.php:54
|
254 |
msgid "Google Recaptcha Options"
|
259 |
#: app/features/mec/messages.php:51 app/features/mec/modules.php:58
|
260 |
#: app/features/mec/notifications.php:50 app/features/mec/regform.php:87
|
261 |
#: app/features/mec/settings.php:118 app/features/mec/single.php:62
|
262 |
+
#: app/features/mec/single.php:310 app/features/mec/styles.php:51
|
263 |
#: app/features/mec/styling.php:73
|
264 |
msgid "Countdown Options"
|
265 |
msgstr "Countdown Einstellungsoptionen"
|
282 |
#: app/features/mec/gateways.php:33 app/features/mec/ie.php:29
|
283 |
#: app/features/mec/messages.php:33 app/features/mec/modules.php:40
|
284 |
#: app/features/mec/notifications.php:32 app/features/mec/regform.php:69
|
285 |
+
#: app/features/mec/settings.php:81 app/features/mec/settings.php:694
|
286 |
#: app/features/mec/single.php:32 app/features/mec/styles.php:33
|
287 |
#: app/features/mec/styling.php:55
|
288 |
msgid "Frontend Event Submission"
|
300 |
|
301 |
#: app/features/contextual.php:308 app/features/events.php:284
|
302 |
#: app/features/mec/booking.php:77 app/features/mec/booking.php:84
|
303 |
+
#: app/features/mec/booking.php:167 app/features/mec/booking.php:219
|
304 |
#: app/features/mec/gateways.php:64 app/features/mec/gateways.php:68
|
305 |
+
#: app/features/mec/gateways.php:132 app/features/mec/ie.php:60
|
306 |
+
#: app/features/mec/ie.php:64 app/features/mec/ie.php:128
|
307 |
#: app/features/mec/messages.php:64 app/features/mec/messages.php:68
|
308 |
+
#: app/features/mec/messages.php:132 app/features/mec/modules.php:71
|
309 |
#: app/features/mec/modules.php:75 app/features/mec/modules.php:194
|
310 |
#: app/features/mec/notifications.php:63 app/features/mec/notifications.php:67
|
311 |
+
#: app/features/mec/notifications.php:136
|
312 |
+
#: app/features/mec/notifications.php:225 app/features/mec/regform.php:100
|
313 |
+
#: app/features/mec/regform.php:104 app/features/mec/regform.php:166
|
314 |
#: app/features/mec/settings.php:131 app/features/mec/settings.php:135
|
315 |
+
#: app/features/mec/settings.php:199 app/features/mec/single.php:92
|
316 |
+
#: app/features/mec/single.php:96 app/features/mec/single.php:160
|
317 |
#: app/features/mec/styles.php:64 app/features/mec/styles.php:68
|
318 |
+
#: app/features/mec/styles.php:132 app/features/mec/styling.php:86
|
319 |
+
#: app/features/mec/styling.php:90 app/features/mec/styling.php:154
|
320 |
msgid "Booking"
|
321 |
msgstr "Buchung / Reservierung"
|
322 |
|
323 |
#: app/features/contextual.php:318 app/features/mec/booking.php:92
|
324 |
+
#: app/features/mec/booking.php:330 app/features/mec/gateways.php:70
|
325 |
#: app/features/mec/ie.php:66 app/features/mec/messages.php:70
|
326 |
#: app/features/mec/modules.php:77 app/features/mec/notifications.php:69
|
327 |
#: app/features/mec/regform.php:106 app/features/mec/settings.php:137
|
330 |
msgid "Coupons"
|
331 |
msgstr "Gutscheine"
|
332 |
|
333 |
+
#: app/features/contextual.php:326 app/features/mec/booking.php:135
|
334 |
+
#: app/features/mec/gateways.php:100 app/features/mec/ie.php:96
|
335 |
+
#: app/features/mec/messages.php:100 app/features/mec/modules.php:159
|
336 |
+
#: app/features/mec/modules.php:509 app/features/mec/notifications.php:99
|
337 |
+
#: app/features/mec/regform.php:136 app/features/mec/settings.php:167
|
338 |
+
#: app/features/mec/single.php:128 app/features/mec/styles.php:100
|
339 |
+
#: app/features/mec/styling.php:122
|
340 |
msgid "BuddyPress Integration"
|
341 |
msgstr "Buddy Press Integration"
|
342 |
|
344 |
#: app/features/mec/gateways.php:36 app/features/mec/ie.php:32
|
345 |
#: app/features/mec/messages.php:36 app/features/mec/modules.php:43
|
346 |
#: app/features/mec/notifications.php:35 app/features/mec/regform.php:72
|
347 |
+
#: app/features/mec/settings.php:95 app/features/mec/settings.php:879
|
348 |
#: app/features/mec/single.php:35 app/features/mec/styles.php:36
|
349 |
#: app/features/mec/styling.php:58
|
350 |
msgid "Mailchimp Integration"
|
361 |
msgstr "Veranstaltungen"
|
362 |
|
363 |
#: app/features/events.php:138
|
364 |
+
#: app/features/mec/meta_boxes/display_options.php:867
|
365 |
+
#: app/features/mec/meta_boxes/display_options.php:923
|
366 |
+
#: app/features/mec/meta_boxes/display_options.php:958
|
367 |
#: app/features/profile/profile.php:28 app/skins/daily_view/tpl.php:80
|
368 |
#: app/skins/monthly_view/tpl.php:71 app/skins/yearly_view/tpl.php:69
|
369 |
msgid "Event"
|
377 |
msgid "Add New Event"
|
378 |
msgstr "Neue Veranstaltung hinzufügen"
|
379 |
|
380 |
+
#: app/features/events.php:141 app/features/ix.php:3119
|
381 |
#: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:56
|
382 |
msgid "No events found!"
|
383 |
msgstr "Keine Veranstaltungen gefunden!"
|
399 |
msgstr "Keine Veranstaltungen im Papierkorb gefunden!"
|
400 |
|
401 |
#: app/features/events.php:162
|
402 |
+
#: app/features/mec/meta_boxes/display_options.php:798
|
403 |
#: app/features/mec/meta_boxes/search_form.php:31
|
404 |
#: app/features/mec/meta_boxes/search_form.php:92
|
405 |
#: app/features/mec/meta_boxes/search_form.php:153
|
409 |
#: app/features/mec/meta_boxes/search_form.php:397
|
410 |
#: app/features/mec/meta_boxes/search_form.php:451
|
411 |
#: app/features/mec/meta_boxes/search_form.php:512
|
412 |
+
#: app/features/mec/meta_boxes/search_form.php:573 app/libraries/main.php:4479
|
413 |
#: app/libraries/skins.php:781 app/skins/single.php:410
|
414 |
#: app/skins/single/default.php:169 app/skins/single/default.php:380
|
415 |
#: app/skins/single/m1.php:170 app/skins/single/m2.php:102
|
419 |
|
420 |
#: app/features/events.php:163 app/features/fes/form.php:745
|
421 |
#: app/features/mec.php:332 app/features/mec/meta_boxes/filter.php:70
|
422 |
+
#: app/libraries/main.php:4478
|
423 |
msgid "Categories"
|
424 |
msgstr "Kategorien"
|
425 |
|
491 |
msgid "Event Details"
|
492 |
msgstr "Veranstaltungsdetails"
|
493 |
|
494 |
+
#: app/features/events.php:321 app/features/events.php:3157
|
495 |
+
#: app/features/events.php:3199 app/features/fes/form.php:706
|
496 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
497 |
+
#: app/features/mec/settings.php:761 app/libraries/main.php:4511
|
498 |
#: app/widgets/single.php:103
|
499 |
msgid "Event Cost"
|
500 |
msgstr ""
|
501 |
"Bruttopreis des Events in Euro, 0 für kostenlos oder z.B. 39, ohne €-Zeichen"
|
502 |
|
503 |
#: app/features/events.php:325 app/features/fes/form.php:709
|
504 |
+
#: app/libraries/main.php:4512 app/skins/single.php:433
|
505 |
#: app/skins/single/default.php:103 app/skins/single/default.php:314
|
506 |
#: app/skins/single/m1.php:49 app/skins/single/modern.php:199
|
507 |
msgid "Cost"
|
518 |
#: app/features/events.php:431 app/features/events.php:2232
|
519 |
#: app/features/fes/form.php:668 app/features/labels.php:177
|
520 |
#: app/features/mec/regform.php:27 app/features/organizers.php:274
|
521 |
+
#: app/features/profile/profile.php:90 app/libraries/notifications.php:673
|
522 |
#: app/modules/booking/steps/form.php:35
|
523 |
msgid "Name"
|
524 |
msgstr "Name"
|
525 |
|
526 |
#: app/features/events.php:432 app/features/events.php:2243
|
527 |
#: app/features/events.php:2321 app/features/fes/form.php:664
|
528 |
+
#: app/features/mec/regform.php:38 app/features/mec/regform.php:267
|
529 |
#: app/features/organizers.php:110 app/features/organizers.php:150
|
530 |
#: app/features/profile/profile.php:93 app/features/speakers.php:120
|
531 |
+
#: app/features/speakers.php:180 app/libraries/main.php:1142
|
532 |
+
#: app/libraries/main.php:1208 app/libraries/main.php:2247
|
533 |
+
#: app/libraries/notifications.php:674 app/modules/booking/steps/form.php:43
|
534 |
#: app/modules/booking/steps/form.php:80 app/skins/single.php:661
|
535 |
#: app/skins/single.php:715 app/skins/single/default.php:211
|
536 |
#: app/skins/single/default.php:422 app/skins/single/m1.php:107
|
543 |
msgstr "Datum und Uhrzeit"
|
544 |
|
545 |
#: app/features/events.php:440 app/features/events.php:446
|
546 |
+
#: app/features/events.php:2975 app/features/events.php:3157
|
547 |
+
#: app/features/events.php:3199 app/features/fes/form.php:236
|
548 |
#: app/features/fes/form.php:240 app/features/ix.php:2740
|
549 |
#: app/features/ix.php:2781 app/features/ix/import_g_calendar.php:38
|
550 |
#: app/features/mec/dashboard.php:332
|
552 |
#: app/features/mec/meta_boxes/display_options.php:169
|
553 |
#: app/features/mec/meta_boxes/display_options.php:307
|
554 |
#: app/features/mec/meta_boxes/display_options.php:362
|
555 |
+
#: app/features/mec/meta_boxes/display_options.php:485
|
556 |
+
#: app/features/mec/meta_boxes/display_options.php:539
|
557 |
+
#: app/features/mec/meta_boxes/display_options.php:586
|
558 |
+
#: app/features/mec/meta_boxes/display_options.php:619
|
559 |
+
#: app/features/mec/meta_boxes/display_options.php:654
|
560 |
+
#: app/features/mec/meta_boxes/display_options.php:700
|
561 |
+
#: app/features/mec/meta_boxes/display_options.php:766
|
562 |
+
#: app/features/mec/meta_boxes/display_options.php:981
|
563 |
+
#: app/features/mec/meta_boxes/display_options.php:1068
|
564 |
msgid "Start Date"
|
565 |
msgstr "Start Datum"
|
566 |
|
579 |
msgstr "PM"
|
580 |
|
581 |
#: app/features/events.php:532 app/features/events.php:537
|
582 |
+
#: app/features/events.php:2976 app/features/events.php:3157
|
583 |
+
#: app/features/events.php:3199 app/features/fes/form.php:276
|
584 |
#: app/features/fes/form.php:280 app/features/ix.php:2740
|
585 |
#: app/features/ix.php:2781 app/features/ix/import_g_calendar.php:44
|
586 |
#: app/features/mec/dashboard.php:333
|
617 |
"können Sie z.B. eine Zeitzone wie z.B. \"MEZ\" usw. einfügen. "
|
618 |
|
619 |
#: app/features/events.php:663 app/features/events.php:795
|
620 |
+
#: app/features/events.php:1094 app/features/events.php:1137
|
621 |
#: app/features/events.php:1436 app/features/events.php:1503
|
622 |
#: app/features/events.php:1655 app/features/events.php:1670
|
623 |
#: app/features/events.php:1837 app/features/events.php:1850
|
624 |
#: app/features/events.php:1980 app/features/events.php:2016
|
625 |
#: app/features/events.php:2114 app/features/events.php:2129
|
626 |
#: app/features/events.php:2159 app/features/events.php:2172
|
627 |
+
#: app/features/fes/form.php:630 app/features/locations.php:298
|
628 |
+
#: app/features/mec/booking.php:239 app/features/mec/booking.php:263
|
629 |
+
#: app/features/mec/booking.php:279 app/features/mec/booking.php:375
|
630 |
+
#: app/features/mec/booking.php:404 app/features/mec/booking.php:452
|
631 |
+
#: app/features/mec/booking.php:462 app/features/mec/booking.php:484
|
632 |
+
#: app/features/mec/booking.php:494 app/features/mec/dashboard.php:71
|
633 |
#: app/features/mec/meta_boxes/display_options.php:60
|
634 |
#: app/features/mec/meta_boxes/display_options.php:73
|
635 |
#: app/features/mec/meta_boxes/display_options.php:86
|
643 |
#: app/features/mec/meta_boxes/display_options.php:248
|
644 |
#: app/features/mec/meta_boxes/display_options.php:259
|
645 |
#: app/features/mec/meta_boxes/display_options.php:326
|
646 |
+
#: app/features/mec/meta_boxes/display_options.php:502
|
647 |
+
#: app/features/mec/meta_boxes/display_options.php:785
|
648 |
+
#: app/features/mec/meta_boxes/display_options.php:838
|
649 |
+
#: app/features/mec/meta_boxes/display_options.php:850
|
650 |
+
#: app/features/mec/meta_boxes/display_options.php:861
|
651 |
+
#: app/features/mec/meta_boxes/display_options.php:893
|
652 |
+
#: app/features/mec/meta_boxes/display_options.php:904
|
653 |
+
#: app/features/mec/meta_boxes/display_options.php:917
|
654 |
+
#: app/features/mec/meta_boxes/display_options.php:952
|
655 |
+
#: app/features/mec/meta_boxes/display_options.php:1001
|
656 |
+
#: app/features/mec/meta_boxes/display_options.php:1012
|
657 |
+
#: app/features/mec/meta_boxes/display_options.php:1023
|
658 |
+
#: app/features/mec/meta_boxes/display_options.php:1088
|
659 |
+
#: app/features/mec/meta_boxes/display_options.php:1101
|
660 |
+
#: app/features/mec/meta_boxes/display_options.php:1114
|
661 |
+
#: app/features/mec/meta_boxes/display_options.php:1127
|
662 |
+
#: app/features/mec/meta_boxes/display_options.php:1140
|
663 |
#: app/features/mec/modules.php:283 app/features/mec/modules.php:300
|
664 |
#: app/features/mec/modules.php:335 app/features/mec/modules.php:351
|
665 |
+
#: app/features/mec/modules.php:497 app/features/mec/notifications.php:244
|
666 |
+
#: app/features/mec/notifications.php:301
|
667 |
+
#: app/features/mec/notifications.php:353
|
668 |
+
#: app/features/mec/notifications.php:412
|
669 |
+
#: app/features/mec/notifications.php:480
|
670 |
+
#: app/features/mec/notifications.php:543
|
671 |
+
#: app/features/mec/notifications.php:554
|
672 |
+
#: app/features/mec/notifications.php:616 app/features/mec/settings.php:266
|
673 |
+
#: app/features/mec/settings.php:285 app/features/mec/settings.php:312
|
674 |
+
#: app/features/mec/settings.php:332 app/features/mec/settings.php:353
|
675 |
+
#: app/features/mec/settings.php:373 app/features/mec/settings.php:450
|
676 |
+
#: app/features/mec/settings.php:524 app/features/mec/settings.php:541
|
677 |
+
#: app/features/mec/settings.php:558 app/features/mec/settings.php:577
|
678 |
+
#: app/features/mec/settings.php:591 app/features/mec/settings.php:619
|
679 |
+
#: app/features/mec/settings.php:706 app/features/mec/settings.php:844
|
680 |
+
#: app/features/mec/settings.php:861 app/features/mec/settings.php:894
|
681 |
+
#: app/features/mec/settings.php:907 app/features/mec/settings.php:923
|
682 |
+
#: app/features/mec/single.php:221 app/features/mec/single.php:237
|
683 |
+
#: app/features/mec/single.php:256 app/features/mec/single.php:272
|
684 |
+
#: app/features/mec/single.php:287 app/features/mec/single.php:301
|
685 |
+
#: app/features/mec/single.php:339 app/features/mec/styling.php:356
|
686 |
+
#: app/features/mec/styling.php:373 app/features/mec/styling.php:386
|
687 |
#: app/features/organizers.php:267 app/skins/single.php:508
|
688 |
#: app/skins/single/default.php:118 app/skins/single/default.php:329
|
689 |
#: app/skins/single/m1.php:192 app/skins/single/m2.php:125
|
754 |
msgstr "Wochentage"
|
755 |
|
756 |
#: app/features/events.php:760 app/features/fes/form.php:355
|
757 |
+
#: app/features/mec/meta_boxes/display_options.php:730
|
758 |
#: app/libraries/main.php:407
|
759 |
msgid "Monday"
|
760 |
msgstr "Montag"
|
761 |
|
762 |
#: app/features/events.php:763 app/features/fes/form.php:356
|
763 |
+
#: app/features/mec/meta_boxes/display_options.php:731
|
764 |
#: app/libraries/main.php:407
|
765 |
msgid "Tuesday"
|
766 |
msgstr "Dienstag"
|
767 |
|
768 |
#: app/features/events.php:766 app/features/fes/form.php:357
|
769 |
+
#: app/features/mec/meta_boxes/display_options.php:732
|
770 |
#: app/libraries/main.php:407
|
771 |
msgid "Wednesday"
|
772 |
msgstr "Mittwoch"
|
773 |
|
774 |
#: app/features/events.php:769 app/features/fes/form.php:358
|
775 |
+
#: app/features/mec/meta_boxes/display_options.php:733
|
776 |
#: app/libraries/main.php:407
|
777 |
msgid "Thursday"
|
778 |
msgstr "Donnerstag"
|
779 |
|
780 |
#: app/features/events.php:772 app/features/fes/form.php:359
|
781 |
+
#: app/features/mec/meta_boxes/display_options.php:734
|
782 |
#: app/libraries/main.php:407
|
783 |
msgid "Friday"
|
784 |
msgstr "Freitag"
|
785 |
|
786 |
#: app/features/events.php:775 app/features/fes/form.php:360
|
787 |
+
#: app/features/mec/meta_boxes/display_options.php:735
|
788 |
#: app/libraries/main.php:407
|
789 |
msgid "Saturday"
|
790 |
msgstr "Samstag"
|
791 |
|
792 |
#: app/features/events.php:778 app/features/fes/form.php:361
|
793 |
+
#: app/features/mec/meta_boxes/display_options.php:729
|
794 |
#: app/libraries/main.php:407
|
795 |
msgid "Sunday"
|
796 |
msgstr "Sonntag"
|
832 |
"start and end dates must be commensurate with the initial date."
|
833 |
msgstr ""
|
834 |
|
835 |
+
#: app/features/events.php:829 app/features/fes/form.php:394
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
836 |
#, fuzzy
|
837 |
#| msgid "First name"
|
838 |
msgid "First"
|
839 |
msgstr "Vorname"
|
840 |
|
841 |
+
#: app/features/events.php:871 app/features/fes/form.php:436
|
842 |
#, fuzzy
|
843 |
#| msgid "second"
|
844 |
msgid "Second"
|
845 |
msgstr "Sekunde"
|
846 |
|
847 |
+
#: app/features/events.php:913 app/features/fes/form.php:478
|
848 |
#, fuzzy
|
849 |
#| msgid "Third Party"
|
850 |
msgid "Third"
|
851 |
msgstr "Dritte Seite"
|
852 |
|
853 |
+
#: app/features/events.php:955 app/features/fes/form.php:520
|
854 |
msgid "Fourth"
|
855 |
msgstr ""
|
856 |
|
857 |
+
#: app/features/events.php:997 app/features/fes/form.php:562
|
858 |
#, fuzzy
|
859 |
#| msgid "Last name"
|
860 |
msgid "Last"
|
861 |
msgstr "Nachname"
|
862 |
|
863 |
+
#: app/features/events.php:1044 app/features/fes/form.php:608
|
864 |
+
msgid "Ends Repeat"
|
865 |
+
msgstr "Wiederholung endet"
|
866 |
+
|
867 |
+
#: app/features/events.php:1055 app/features/fes/form.php:612
|
868 |
+
msgid "Never"
|
869 |
+
msgstr "Niemals"
|
870 |
+
|
871 |
+
#: app/features/events.php:1067 app/features/fes/form.php:617
|
872 |
+
msgid "On"
|
873 |
+
msgstr "Am"
|
874 |
+
|
875 |
+
#: app/features/events.php:1083 app/features/fes/form.php:624
|
876 |
+
msgid "After"
|
877 |
+
msgstr "Nach"
|
878 |
+
|
879 |
+
#: app/features/events.php:1087 app/features/events.php:1091
|
880 |
+
#: app/features/fes/form.php:626 app/features/fes/form.php:629
|
881 |
+
msgid "Occurrences times"
|
882 |
+
msgstr " mal vorkommen"
|
883 |
+
|
884 |
+
#: app/features/events.php:1092 app/features/fes/form.php:630
|
885 |
+
msgid ""
|
886 |
+
"The event will finish after certain repeats. For example if you set it to "
|
887 |
+
"10, the event will finish after 10 repeats."
|
888 |
+
msgstr ""
|
889 |
+
"Das Event ist nach einer bestimmten Anzahl von Wiederholungen zu Ende. Zum "
|
890 |
+
"Beispiel: Bei Eingabe von 10 wird das Event nach 10 Wiederholungen beendet"
|
891 |
+
|
892 |
#: app/features/events.php:1124 app/features/events.php:1134
|
893 |
msgid "Exclude certain days"
|
894 |
msgstr "Ausschluss bestimmter Tage"
|
895 |
|
896 |
#: app/features/events.php:1129 app/features/events.php:2322
|
897 |
+
#: app/features/mec/regform.php:268 app/features/profile/profile.php:31
|
898 |
+
#: app/libraries/main.php:1694 app/libraries/main.php:2305
|
899 |
#: app/modules/booking/steps/tickets.php:22
|
900 |
#: app/modules/next-event/details.php:90 app/skins/single.php:488
|
901 |
#: app/skins/single/default.php:67 app/skins/single/default.php:278
|
914 |
msgid "Day 1"
|
915 |
msgstr ""
|
916 |
|
917 |
+
#: app/features/events.php:1211 app/features/mec/settings.php:815
|
918 |
#: app/skins/single.php:777
|
919 |
msgid "Hourly Schedule"
|
920 |
msgstr "Stundenplan"
|
937 |
#: app/features/events.php:1227 app/features/events.php:1266
|
938 |
#: app/features/events.php:1301 app/features/events.php:1333
|
939 |
#: app/features/events.php:1362 app/features/events.php:2101
|
940 |
+
#: app/features/events.php:2148 app/features/events.php:2972
|
941 |
+
#: app/features/events.php:3157 app/features/events.php:3199
|
942 |
#: app/features/fes/form.php:225 app/features/ix.php:2740
|
943 |
+
#: app/features/ix.php:2781 app/features/mec/booking.php:444
|
944 |
+
#: app/features/mec/booking.php:476 app/features/mec/styling.php:268
|
945 |
msgid "Title"
|
946 |
msgstr "Titel"
|
947 |
|
952 |
#: app/features/events.php:1867 app/features/events.php:1894
|
953 |
#: app/features/events.php:1993 app/features/events.php:2029
|
954 |
#: app/features/events.php:2136 app/features/events.php:2178
|
955 |
+
#: app/features/fes/list.php:78 app/features/mec/booking.php:387
|
956 |
+
#: app/features/mec/booking.php:416 app/features/mec/booking.php:467
|
957 |
+
#: app/features/mec/booking.php:499 app/libraries/main.php:2166
|
958 |
+
#: app/libraries/main.php:2196 app/libraries/main.php:2225
|
959 |
+
#: app/libraries/main.php:2255 app/libraries/main.php:2284
|
960 |
+
#: app/libraries/main.php:2313 app/libraries/main.php:2342
|
961 |
+
#: app/libraries/main.php:2371 app/libraries/main.php:2393
|
962 |
+
#: app/libraries/main.php:2424 app/libraries/main.php:2468
|
963 |
+
#: app/libraries/main.php:2512 app/libraries/main.php:2559
|
964 |
+
#: app/libraries/main.php:2597
|
965 |
msgid "Remove"
|
966 |
msgstr "Entfernen"
|
967 |
|
986 |
msgstr "Beschreibung"
|
987 |
|
988 |
#: app/features/events.php:1276 app/features/events.php:1309
|
989 |
+
#: app/features/events.php:1370 app/features/fes/form.php:839
|
990 |
#: app/features/mec.php:340 app/features/mec/booking.php:122
|
991 |
#: app/features/mec/gateways.php:87 app/features/mec/ie.php:83
|
992 |
#: app/features/mec/messages.php:87 app/features/mec/modules.php:101
|
993 |
#: app/features/mec/notifications.php:86 app/features/mec/regform.php:123
|
994 |
+
#: app/features/mec/settings.php:154 app/features/mec/settings.php:809
|
995 |
#: app/features/mec/single.php:115 app/features/mec/styles.php:87
|
996 |
#: app/features/mec/styling.php:109 app/features/speakers.php:57
|
997 |
+
#: app/libraries/main.php:4486 app/modules/speakers/details.php:18
|
998 |
msgid "Speakers"
|
999 |
msgstr ""
|
1000 |
|
1005 |
msgstr "Wochentage"
|
1006 |
|
1007 |
#: app/features/events.php:1401 app/features/fes/form.php:683
|
1008 |
+
#: app/features/mec/settings.php:755
|
1009 |
msgid "Event Links"
|
1010 |
msgstr "Veranstaltungslinks"
|
1011 |
|
1012 |
#: app/features/events.php:1404 app/features/events.php:1410
|
1013 |
+
#: app/features/fes/form.php:685 app/libraries/main.php:4509
|
1014 |
msgid "Event Link"
|
1015 |
msgstr "Veranstaltungslink"
|
1016 |
|
1038 |
msgstr ""
|
1039 |
|
1040 |
#: app/features/events.php:1420 app/features/events.php:1433
|
1041 |
+
#: app/features/fes/form.php:690 app/libraries/main.php:4510
|
1042 |
#: app/skins/single.php:507 app/skins/single/default.php:117
|
1043 |
#: app/skins/single/default.php:328 app/skins/single/m1.php:191
|
1044 |
#: app/skins/single/m2.php:124 app/skins/single/modern.php:132
|
1074 |
msgstr "Gesamt Verfügbare Plätze"
|
1075 |
|
1076 |
#: app/features/events.php:1486 app/features/events.php:1691
|
1077 |
+
#: app/features/events.php:1864 app/modules/booking/default.php:85
|
1078 |
#: app/modules/booking/steps/tickets.php:40
|
1079 |
#: app/skins/available_spot/tpl.php:140
|
1080 |
msgid "Unlimited"
|
1097 |
msgstr "Wählen Sie Ihren Single Event Stil"
|
1098 |
|
1099 |
#: app/features/events.php:1528 app/libraries/book.php:60
|
1100 |
+
#: app/libraries/main.php:4514 app/modules/booking/steps/tickets.php:40
|
1101 |
msgid "Tickets"
|
1102 |
msgstr "Tickets"
|
1103 |
|
1113 |
msgstr "Ticket Name"
|
1114 |
|
1115 |
#: app/features/events.php:1555 app/features/events.php:1776
|
1116 |
+
#: app/features/events.php:3157 app/features/events.php:3199
|
1117 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
1118 |
msgid "Start Time"
|
1119 |
msgstr "Uhrzeit des Beginns"
|
1120 |
|
1121 |
#: app/features/events.php:1597 app/features/events.php:1800
|
1122 |
+
#: app/features/events.php:3157 app/features/events.php:3199
|
1123 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
1124 |
msgid "End Time"
|
1125 |
msgstr "Uhrzeit Ende"
|
1129 |
#: app/features/events.php:1831 app/features/events.php:1834
|
1130 |
#: app/features/events.php:1890 app/features/events.php:2107
|
1131 |
#: app/features/events.php:2111 app/features/events.php:2153
|
1132 |
+
#: app/features/events.php:2156 app/features/mec/booking.php:448
|
1133 |
+
#: app/features/mec/booking.php:451 app/features/mec/booking.php:480
|
1134 |
+
#: app/features/mec/booking.php:483
|
1135 |
msgid "Price"
|
1136 |
msgstr "Preis"
|
1137 |
|
1160 |
|
1161 |
#: app/features/events.php:1730 app/features/events.php:1756
|
1162 |
#: app/features/events.php:1892 app/features/labels.php:60
|
1163 |
+
#: app/features/mec/meta_boxes/display_options.php:799
|
1164 |
#: app/features/mec/meta_boxes/search_form.php:66
|
1165 |
#: app/features/mec/meta_boxes/search_form.php:127
|
1166 |
#: app/features/mec/meta_boxes/search_form.php:188
|
1184 |
msgstr "Aus den globalen Einstellungen übernehmen"
|
1185 |
|
1186 |
#: app/features/events.php:1967 app/features/events.php:2005
|
1187 |
+
#: app/features/mec/booking.php:367 app/features/mec/booking.php:396
|
1188 |
msgid "Fee Title"
|
1189 |
msgstr "Gebühren Name"
|
1190 |
|
1191 |
#: app/features/events.php:1973 app/features/events.php:1977
|
1192 |
#: app/features/events.php:2010 app/features/events.php:2013
|
1193 |
+
#: app/features/mec/booking.php:371 app/features/mec/booking.php:374
|
1194 |
+
#: app/features/mec/booking.php:400 app/features/mec/booking.php:403
|
1195 |
msgid "Amount"
|
1196 |
msgstr "Betrag"
|
1197 |
|
1198 |
#: app/features/events.php:1978 app/features/events.php:2014
|
1199 |
+
#: app/features/mec/booking.php:375 app/features/mec/booking.php:404
|
1200 |
msgid ""
|
1201 |
"Fee amount, considered as fixed amount if you set the type to amount "
|
1202 |
"otherwise considered as percentage"
|
1205 |
"sonst als Prozentsatz"
|
1206 |
|
1207 |
#: app/features/events.php:1987 app/features/events.php:2023
|
1208 |
+
#: app/features/mec/booking.php:382 app/features/mec/booking.php:411
|
1209 |
msgid "Percent"
|
1210 |
msgstr "Prozent"
|
1211 |
|
1212 |
#: app/features/events.php:1988 app/features/events.php:2024
|
1213 |
+
#: app/features/mec/booking.php:383 app/features/mec/booking.php:412
|
1214 |
msgid "Amount (Per Ticket)"
|
1215 |
msgstr "Betrag (pro Ticket)"
|
1216 |
|
1217 |
#: app/features/events.php:1989 app/features/events.php:2025
|
1218 |
+
#: app/features/mec/booking.php:384 app/features/mec/booking.php:413
|
1219 |
msgid "Amount (Per Booking)"
|
1220 |
msgstr "Betrag (pro Buchung)"
|
1221 |
|
1222 |
+
#: app/features/events.php:2062 app/features/mec/settings.php:833
|
1223 |
msgid "Ticket Variations / Options"
|
1224 |
msgstr ""
|
1225 |
|
1226 |
#: app/features/events.php:2112 app/features/events.php:2157
|
1227 |
+
#: app/features/mec/booking.php:452 app/features/mec/booking.php:484
|
1228 |
#, fuzzy
|
1229 |
#| msgid "Option"
|
1230 |
msgid "Option Price"
|
1232 |
|
1233 |
#: app/features/events.php:2122 app/features/events.php:2126
|
1234 |
#: app/features/events.php:2166 app/features/events.php:2169
|
1235 |
+
#: app/features/mec/booking.php:458 app/features/mec/booking.php:461
|
1236 |
+
#: app/features/mec/booking.php:490 app/features/mec/booking.php:493
|
1237 |
#, fuzzy
|
1238 |
#| msgid "Amount (Per Ticket)"
|
1239 |
msgid "Maximum Per Ticket"
|
1240 |
msgstr "Betrag (pro Ticket)"
|
1241 |
|
1242 |
#: app/features/events.php:2127 app/features/events.php:2170
|
1243 |
+
#: app/features/mec/booking.php:462 app/features/mec/booking.php:494
|
1244 |
msgid "Maximum Per Ticket. Leave it blank for unlimited."
|
1245 |
msgstr ""
|
1246 |
|
1247 |
+
#: app/features/events.php:2317 app/features/mec/regform.php:264
|
1248 |
+
#: app/libraries/main.php:2188
|
1249 |
#, fuzzy
|
1250 |
#| msgid "Name"
|
1251 |
msgid "MEC Name"
|
1252 |
msgstr "Name"
|
1253 |
|
1254 |
+
#: app/features/events.php:2319 app/features/mec/regform.php:265
|
1255 |
+
#: app/libraries/main.php:2217
|
1256 |
#, fuzzy
|
1257 |
#| msgid "Email"
|
1258 |
msgid "MEC Email"
|
1259 |
msgstr "Email"
|
1260 |
|
1261 |
+
#: app/features/events.php:2320 app/features/mec/regform.php:266
|
1262 |
+
#: app/libraries/main.php:2158
|
1263 |
msgid "Text"
|
1264 |
msgstr "Text"
|
1265 |
|
1266 |
+
#: app/features/events.php:2323 app/features/mec/regform.php:269
|
1267 |
#: app/features/organizers.php:102 app/features/organizers.php:146
|
1268 |
#: app/features/speakers.php:112 app/features/speakers.php:176
|
1269 |
+
#: app/features/speakers.php:245 app/libraries/main.php:2334
|
1270 |
msgid "Tel"
|
1271 |
msgstr "Tel"
|
1272 |
|
1273 |
+
#: app/features/events.php:2324 app/features/mec/regform.php:270
|
1274 |
+
#: app/libraries/main.php:2276
|
1275 |
msgid "File"
|
1276 |
msgstr ""
|
1277 |
|
1278 |
+
#: app/features/events.php:2326 app/features/mec/regform.php:271
|
1279 |
+
#: app/libraries/main.php:2363
|
1280 |
msgid "Textarea"
|
1281 |
msgstr "Textbereich"
|
1282 |
|
1283 |
+
#: app/features/events.php:2328 app/features/mec/regform.php:272
|
1284 |
+
#: app/libraries/main.php:2416
|
1285 |
msgid "Checkboxes"
|
1286 |
msgstr "Checkboxes"
|
1287 |
|
1288 |
+
#: app/features/events.php:2330 app/features/mec/regform.php:273
|
1289 |
+
#: app/libraries/main.php:2460
|
1290 |
msgid "Radio Buttons"
|
1291 |
msgstr "Radio Buttons"
|
1292 |
|
1359 |
#: app/features/mec/meta_boxes/search_form.php:604
|
1360 |
#: app/features/mec/meta_boxes/search_form.php:611
|
1361 |
#: app/features/mec/meta_boxes/search_form.php:618
|
1362 |
+
#: app/features/mec/regform.php:274 app/libraries/main.php:2504
|
1363 |
msgid "Dropdown"
|
1364 |
msgstr "Dropdown"
|
1365 |
|
1366 |
+
#: app/features/events.php:2333 app/features/mec/regform.php:275
|
1367 |
+
#: app/libraries/main.php:2551
|
1368 |
msgid "Agreement"
|
1369 |
msgstr "Zustimmung"
|
1370 |
|
1371 |
+
#: app/features/events.php:2334 app/features/mec/regform.php:276
|
1372 |
+
#: app/libraries/main.php:2392
|
1373 |
msgid "Paragraph"
|
1374 |
msgstr "Absatz"
|
1375 |
|
1376 |
+
#: app/features/events.php:2910 app/features/events.php:2927
|
1377 |
+
#: app/features/events.php:2944
|
1378 |
#, php-format
|
1379 |
msgid "Show all %s"
|
1380 |
msgstr "Zeige alle %s"
|
1381 |
|
1382 |
+
#: app/features/events.php:2910
|
1383 |
msgid "labels"
|
1384 |
msgstr "Labels + Eventstatus"
|
1385 |
|
1386 |
+
#: app/features/events.php:2927
|
1387 |
msgid "locations"
|
1388 |
msgstr "Orte"
|
1389 |
|
1390 |
+
#: app/features/events.php:2944
|
1391 |
msgid "organizers"
|
1392 |
msgstr "Veranstalter"
|
1393 |
|
1394 |
+
#: app/features/events.php:2973 app/features/events.php:3157
|
1395 |
+
#: app/features/events.php:3199 app/features/ix.php:2740
|
1396 |
#: app/features/ix.php:2781 app/features/locations.php:58
|
1397 |
#: app/features/locations.php:229 app/features/locations.php:286
|
1398 |
#: app/features/locations.php:288 app/features/locations.php:297
|
1399 |
+
#: app/features/mec/meta_boxes/display_options.php:800
|
1400 |
#: app/features/mec/meta_boxes/search_form.php:38
|
1401 |
#: app/features/mec/meta_boxes/search_form.php:99
|
1402 |
#: app/features/mec/meta_boxes/search_form.php:160
|
1406 |
#: app/features/mec/meta_boxes/search_form.php:404
|
1407 |
#: app/features/mec/meta_boxes/search_form.php:458
|
1408 |
#: app/features/mec/meta_boxes/search_form.php:519
|
1409 |
+
#: app/features/mec/meta_boxes/search_form.php:580 app/libraries/main.php:1688
|
1410 |
+
#: app/libraries/main.php:4483 app/libraries/skins.php:807
|
1411 |
#: app/skins/single.php:337 app/skins/single.php:754
|
1412 |
#: app/skins/single/default.php:153 app/skins/single/default.php:364
|
1413 |
#: app/skins/single/m1.php:155 app/skins/single/m2.php:87
|
1415 |
msgid "Location"
|
1416 |
msgstr "Ort"
|
1417 |
|
1418 |
+
#: app/features/events.php:2974 app/features/events.php:3157
|
1419 |
+
#: app/features/events.php:3199 app/features/ix.php:2740
|
1420 |
+
#: app/features/ix.php:2781 app/features/mec/meta_boxes/display_options.php:801
|
1421 |
#: app/features/mec/meta_boxes/search_form.php:45
|
1422 |
#: app/features/mec/meta_boxes/search_form.php:106
|
1423 |
#: app/features/mec/meta_boxes/search_form.php:167
|
1430 |
#: app/features/mec/meta_boxes/search_form.php:587
|
1431 |
#: app/features/organizers.php:58 app/features/organizers.php:199
|
1432 |
#: app/features/organizers.php:255 app/features/organizers.php:257
|
1433 |
+
#: app/features/organizers.php:266 app/libraries/main.php:4485
|
1434 |
#: app/libraries/skins.php:833 app/skins/single.php:644
|
1435 |
#: app/skins/single/default.php:194 app/skins/single/default.php:405
|
1436 |
#: app/skins/single/m1.php:90 app/skins/single/m2.php:22
|
1438 |
msgid "Organizer"
|
1439 |
msgstr "Veranstalter"
|
1440 |
|
1441 |
+
#: app/features/events.php:2978
|
1442 |
msgid "Repeat"
|
1443 |
msgstr "Wiederholen"
|
1444 |
|
1445 |
+
#: app/features/events.php:2979
|
1446 |
msgid "Author"
|
1447 |
msgstr "Autor"
|
1448 |
|
1449 |
+
#: app/features/events.php:3092 app/features/events.php:3093
|
1450 |
msgid "iCal Export"
|
1451 |
msgstr "ical Export"
|
1452 |
|
1453 |
+
#: app/features/events.php:3095 app/features/events.php:3096
|
1454 |
msgid "CSV Export"
|
1455 |
msgstr "CSV Export"
|
1456 |
|
1457 |
+
#: app/features/events.php:3098 app/features/events.php:3099
|
1458 |
msgid "MS Excel Export"
|
1459 |
msgstr "MS Excel Export"
|
1460 |
|
1461 |
+
#: app/features/events.php:3101 app/features/events.php:3102
|
1462 |
msgid "XML Export"
|
1463 |
msgstr "XML Export"
|
1464 |
|
1465 |
+
#: app/features/events.php:3104 app/features/events.php:3105
|
1466 |
msgid "JSON Export"
|
1467 |
msgstr "JSON Export"
|
1468 |
|
1469 |
+
#: app/features/events.php:3107 app/features/events.php:3108
|
1470 |
msgid "Duplicate"
|
1471 |
msgstr "Kopie"
|
1472 |
|
1473 |
+
#: app/features/events.php:3157 app/features/events.php:3199
|
1474 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
1475 |
#: app/features/labels.php:176 app/features/locations.php:228
|
1476 |
#: app/features/organizers.php:198 app/features/speakers.php:242
|
1477 |
msgid "ID"
|
1478 |
msgstr "ID"
|
1479 |
|
1480 |
+
#: app/features/events.php:3157 app/features/events.php:3199
|
1481 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
1482 |
msgid "Link"
|
1483 |
msgstr "Link"
|
1484 |
|
1485 |
+
#: app/features/events.php:3157 app/features/events.php:3199
|
1486 |
#, php-format
|
1487 |
msgid "%s Tel"
|
1488 |
msgstr "%s Tel"
|
1489 |
|
1490 |
+
#: app/features/events.php:3157 app/features/events.php:3199
|
1491 |
#, php-format
|
1492 |
msgid "%s Email"
|
1493 |
msgstr "%s Email"
|
1537 |
msgid "Please fill event title field!"
|
1538 |
msgstr "Bitte füllen Sie das Event Titelfeld"
|
1539 |
|
1540 |
+
#: app/features/fes.php:832
|
1541 |
msgid "The event submitted. It will publish as soon as possible."
|
1542 |
msgstr ""
|
1543 |
"Die Veranstaltung wurde übermittelt. Sie wird sobald wie möglich "
|
1544 |
"veröffentlicht werden."
|
1545 |
|
1546 |
+
#: app/features/fes.php:833
|
1547 |
msgid "The event published."
|
1548 |
msgstr "Die Veranstaltung wurde veröffentlicht."
|
1549 |
|
1580 |
"dieser durch einen neuen link ersetzt werden. Vollständigen Link einfügen, "
|
1581 |
"einschließlich http(s)://"
|
1582 |
|
1583 |
+
#: app/features/fes/form.php:723 app/features/mec/settings.php:767
|
1584 |
msgid "Featured Image"
|
1585 |
msgstr "Ausgewähltes Bild"
|
1586 |
|
1590 |
|
1591 |
#: app/features/fes/form.php:770 app/features/labels.php:61
|
1592 |
#: app/features/labels.php:220 app/features/mec.php:333
|
1593 |
+
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4480
|
1594 |
#: app/skins/single.php:536 app/skins/single/default.php:132
|
1595 |
#: app/skins/single/default.php:343 app/skins/single/m1.php:64
|
1596 |
#: app/skins/single/modern.php:214
|
1597 |
msgid "Labels"
|
1598 |
msgstr "Labels"
|
1599 |
|
1600 |
+
#: app/features/fes/form.php:816 app/features/mec.php:331
|
1601 |
#: app/features/mec/meta_boxes/filter.php:138
|
1602 |
msgid "Tags"
|
1603 |
msgstr "Schlagworte"
|
1604 |
|
1605 |
+
#: app/features/fes/form.php:818
|
1606 |
msgid "Insert your desired tags, comma separated."
|
1607 |
msgstr ""
|
1608 |
"Geben Sie die gewünschten Tags (Schlagworte) durch ein Komma separiert ein"
|
1609 |
|
1610 |
+
#: app/features/fes/form.php:854
|
1611 |
msgid "Submit"
|
1612 |
msgstr "Buchung abschließen"
|
1613 |
|
1632 |
msgid "MEC - Import / Export"
|
1633 |
msgstr "MEC - Import / Export"
|
1634 |
|
1635 |
+
#: app/features/ix.php:107 app/features/mec/booking.php:203
|
1636 |
+
#: app/features/mec/gateways.php:168 app/features/mec/ie.php:164
|
1637 |
+
#: app/features/mec/messages.php:168 app/features/mec/modules.php:230
|
1638 |
+
#: app/features/mec/notifications.php:204 app/features/mec/regform.php:202
|
1639 |
+
#: app/features/mec/settings.php:235 app/features/mec/single.php:196
|
1640 |
+
#: app/features/mec/styles.php:168 app/features/mec/styling.php:190
|
1641 |
#: app/features/mec/support.php:73
|
1642 |
msgid "Import / Export"
|
1643 |
msgstr "Import / Export"
|
1670 |
msgid "Both of API key and Calendar ID are required!"
|
1671 |
msgstr "Beide, API Schlüssel und Calender ID wird benötigt"
|
1672 |
|
1673 |
+
#: app/features/ix.php:2000 app/features/ix.php:2419 app/features/ix.php:3126
|
1674 |
msgid "Please select some events to import!"
|
1675 |
msgstr "Bitte wählen Sie einige Veranstaltungen aus zum importieren"
|
1676 |
|
1706 |
msgid "All of Client App, Client Secret and Calendar ID are required!"
|
1707 |
msgstr "Dies wird alles benötigt: Client ID, Client Secret und Calender ID!"
|
1708 |
|
1709 |
+
#: app/features/ix.php:3055
|
1710 |
#, php-format
|
1711 |
msgid "%s events added to Google Calendar successfully."
|
1712 |
msgstr "%s Events wurden erfolgreich zum Google Kalender hinzugefügt."
|
1713 |
|
1714 |
+
#: app/features/ix.php:3056
|
1715 |
#, php-format
|
1716 |
msgid "%s previously added events get updated."
|
1717 |
msgstr "%s vorherige hinzugefügte Events wurden aktualisiert."
|
1718 |
|
1719 |
+
#: app/features/ix.php:3057
|
1720 |
#, php-format
|
1721 |
msgid "%s events failed to add for following reasons: %s"
|
1722 |
msgstr "%s Events wurde aus folgenden Gründen nicht hinzugefügt: %s"
|
1723 |
|
1724 |
+
#: app/features/ix.php:3089
|
1725 |
#, fuzzy
|
1726 |
#| msgid "Please insert your facebook page's link."
|
1727 |
msgid "Please insert your Facebook page's link."
|
1728 |
msgstr "Bitte Ihren Facebook Seitenlink eingeben."
|
1729 |
|
1730 |
+
#: app/features/ix.php:3098
|
1731 |
#, fuzzy
|
1732 |
#| msgid ""
|
1733 |
#| "We couldn't recognize your Facebook page. Please check it and provide us "
|
1739 |
"Wir konnten Ihre Facebookseite nicht erkennen. Bitte checken Sie das und "
|
1740 |
"stellen Sie uns einen gültigen Facebookseitenlink zur Verfügung."
|
1741 |
|
1742 |
+
#: app/features/ix.php:3130
|
1743 |
msgid "Please insert your facebook page's link."
|
1744 |
msgstr "Bitte Ihren Facebook Seitenlink eingeben."
|
1745 |
|
1746 |
+
#: app/features/ix.php:3135
|
1747 |
msgid ""
|
1748 |
"We couldn't recognize your Facebook page. Please check it and provide us a "
|
1749 |
"valid facebook page link."
|
1780 |
#: app/features/ix/import.php:15 app/features/ix/import_f_calendar.php:15
|
1781 |
#: app/features/ix/import_g_calendar.php:15
|
1782 |
#: app/features/ix/import_meetup.php:15 app/features/ix/sync.php:15
|
1783 |
+
#: app/features/ix/thirdparty.php:15 app/features/mec/ie.php:188
|
1784 |
msgid "Export"
|
1785 |
msgstr "Export"
|
1786 |
|
1791 |
#: app/features/ix/import_g_calendar.php:103
|
1792 |
#: app/features/ix/import_meetup.php:16 app/features/ix/import_meetup.php:85
|
1793 |
#: app/features/ix/sync.php:16 app/features/ix/thirdparty.php:16
|
1794 |
+
#: app/features/ix/thirdparty.php:98 app/features/mec/ie.php:177
|
1795 |
msgid "Import"
|
1796 |
msgstr "Import"
|
1797 |
|
1917 |
#: app/features/ix/export_g_calendar.php:72
|
1918 |
#: app/features/ix/export_g_calendar.php:147
|
1919 |
#: app/features/ix/export_g_calendar.php:164
|
1920 |
+
#: app/features/mec/notifications.php:282
|
1921 |
+
#: app/features/mec/notifications.php:334
|
1922 |
+
#: app/features/mec/notifications.php:387
|
1923 |
+
#: app/features/mec/notifications.php:588
|
1924 |
msgid "Add to Google Calendar"
|
1925 |
msgstr "Zum Google Kalender hinzufügen"
|
1926 |
|
1927 |
+
#: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:571
|
1928 |
+
#: app/features/mec/modules.php:602 app/features/mec/notifications.php:735
|
1929 |
+
#: app/features/mec/settings.php:1030 app/features/mec/single.php:429
|
1930 |
msgid "Checking ..."
|
1931 |
msgstr "Überprüfung"
|
1932 |
|
1970 |
msgid "ICS Feed"
|
1971 |
msgstr ""
|
1972 |
|
1973 |
+
#: app/features/ix/import.php:46 app/features/mec/booking.php:222
|
1974 |
+
#: app/features/mec/booking.php:333 app/features/mec/booking.php:351
|
1975 |
+
#: app/features/mec/booking.php:428 app/features/mec/modules.php:267
|
1976 |
#: app/features/mec/modules.php:408 app/features/mec/modules.php:425
|
1977 |
#, php-format
|
1978 |
msgid "%s is required to use this feature."
|
1979 |
msgstr ""
|
1980 |
|
1981 |
#: app/features/ix/import.php:46 app/features/ix/sync.php:22
|
1982 |
+
#: app/features/mec/booking.php:222 app/features/mec/booking.php:333
|
1983 |
+
#: app/features/mec/booking.php:351 app/features/mec/booking.php:428
|
1984 |
#: app/features/mec/meta_boxes/display_options.php:296
|
1985 |
+
#: app/features/mec/meta_boxes/display_options.php:423
|
1986 |
+
#: app/features/mec/meta_boxes/display_options.php:474
|
1987 |
+
#: app/features/mec/meta_boxes/display_options.php:581
|
1988 |
+
#: app/features/mec/meta_boxes/display_options.php:688
|
1989 |
+
#: app/features/mec/meta_boxes/display_options.php:761
|
1990 |
+
#: app/features/mec/meta_boxes/display_options.php:941
|
1991 |
#: app/features/mec/modules.php:267 app/features/mec/modules.php:408
|
1992 |
#: app/features/mec/modules.php:425
|
1993 |
msgid "Pro version of Modern Events Calendar"
|
2171 |
msgstr "Auto Synchronisation"
|
2172 |
|
2173 |
#: app/features/ix/sync.php:22
|
2174 |
+
#: app/features/mec/meta_boxes/display_options.php:761
|
2175 |
#, php-format
|
2176 |
msgid "%s is required to use synchronization feature."
|
2177 |
msgstr ""
|
2182 |
|
2183 |
#: app/features/ix/sync.php:32 app/features/ix/sync.php:41
|
2184 |
#: app/features/ix/sync.php:52 app/features/ix/sync.php:63
|
2185 |
+
#: app/features/mec/notifications.php:531
|
2186 |
msgid "Important Note"
|
2187 |
msgstr "Important Note"
|
2188 |
|
2315 |
#: app/features/mec/meta_boxes/display_options.php:32
|
2316 |
#: app/features/mec/meta_boxes/display_options.php:157
|
2317 |
#: app/features/mec/meta_boxes/display_options.php:301
|
2318 |
+
#: app/features/mec/meta_boxes/display_options.php:479
|
2319 |
+
#: app/features/mec/meta_boxes/display_options.php:529
|
2320 |
+
#: app/features/mec/meta_boxes/display_options.php:693
|
2321 |
+
#: app/features/mec/meta_boxes/display_options.php:823
|
2322 |
+
#: app/features/mec/meta_boxes/display_options.php:880
|
2323 |
+
#: app/features/mec/meta_boxes/display_options.php:972
|
2324 |
+
#: app/features/mec/meta_boxes/display_options.php:1058
|
2325 |
msgid "Style"
|
2326 |
msgstr "Style"
|
2327 |
|
2345 |
msgstr "Ausgewähltes Bild"
|
2346 |
|
2347 |
#: app/features/labels.php:117 app/features/labels.php:142
|
2348 |
+
#: app/libraries/main.php:4707 app/skins/agenda/render.php:41
|
2349 |
#: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:59
|
2350 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
|
2351 |
#: app/skins/daily_view/render.php:27 app/skins/grid/render.php:53
|
2380 |
|
2381 |
#: app/features/locations.php:59 app/features/mec.php:334
|
2382 |
#: app/features/mec/dashboard.php:202 app/features/mec/meta_boxes/filter.php:87
|
2383 |
+
#: app/libraries/main.php:4482
|
2384 |
msgid "Locations"
|
2385 |
msgstr "Orte"
|
2386 |
|
2454 |
"z.B. Karlsruhe Schlosshotel oder Frankfurt Allianz oder Dortmund "
|
2455 |
"Westfalenhalle"
|
2456 |
|
2457 |
+
#: app/features/locations.php:309 app/features/mec/settings.php:797
|
2458 |
#: app/widgets/single.php:115
|
2459 |
msgid "Event Location"
|
2460 |
msgstr "Veranstaltungsort"
|
2492 |
msgid "Don't show map in single event page"
|
2493 |
msgstr "Karte in Einzelansicht nicht anzeigen"
|
2494 |
|
2495 |
+
#: app/features/locations.php:355 app/libraries/main.php:4516
|
2496 |
#, fuzzy
|
2497 |
#| msgid "Locations"
|
2498 |
msgid "Other Locations"
|
2549 |
|
2550 |
#: app/features/mec.php:335 app/features/mec/dashboard.php:209
|
2551 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2552 |
+
#: app/libraries/main.php:4484
|
2553 |
msgid "Organizers"
|
2554 |
msgstr "Veranstalter"
|
2555 |
|
2654 |
"your host provider in this regard."
|
2655 |
msgstr ""
|
2656 |
|
2657 |
+
#: app/features/mec/booking.php:24 app/features/mec/booking.php:511
|
2658 |
+
#: app/features/mec/booking.php:521 app/features/mec/booking.php:588
|
2659 |
+
#: app/features/mec/booking.php:602 app/features/mec/gateways.php:11
|
2660 |
+
#: app/features/mec/gateways.php:195 app/features/mec/gateways.php:204
|
2661 |
+
#: app/features/mec/gateways.php:245 app/features/mec/gateways.php:255
|
2662 |
+
#: app/features/mec/messages.php:11 app/features/mec/messages.php:202
|
2663 |
+
#: app/features/mec/messages.php:211 app/features/mec/messages.php:245
|
2664 |
+
#: app/features/mec/messages.php:254 app/features/mec/modules.php:22
|
2665 |
#: app/features/mec/modules.php:542 app/features/mec/modules.php:552
|
2666 |
#: app/features/mec/modules.php:619 app/features/mec/modules.php:633
|
2667 |
+
#: app/features/mec/notifications.php:10 app/features/mec/notifications.php:644
|
2668 |
+
#: app/features/mec/notifications.php:656
|
2669 |
+
#: app/features/mec/notifications.php:752
|
2670 |
+
#: app/features/mec/notifications.php:766 app/features/mec/regform.php:47
|
2671 |
+
#: app/features/mec/regform.php:282 app/features/mec/regform.php:337
|
2672 |
+
#: app/features/mec/regform.php:373 app/features/mec/regform.php:382
|
2673 |
+
#: app/features/mec/settings.php:31 app/features/mec/settings.php:954
|
2674 |
+
#: app/features/mec/settings.php:964 app/features/mec/settings.php:1047
|
2675 |
+
#: app/features/mec/settings.php:1061 app/features/mec/single.php:14
|
2676 |
+
#: app/features/mec/single.php:369 app/features/mec/single.php:379
|
2677 |
+
#: app/features/mec/single.php:446 app/features/mec/single.php:460
|
2678 |
+
#: app/features/mec/styles.php:11 app/features/mec/styles.php:188
|
2679 |
+
#: app/features/mec/styles.php:197 app/features/mec/styles.php:234
|
2680 |
+
#: app/features/mec/styles.php:243 app/features/mec/styling.php:33
|
2681 |
+
#: app/features/mec/styling.php:395 app/features/mec/styling.php:404
|
2682 |
+
#: app/features/mec/styling.php:467 app/features/mec/styling.php:476
|
2683 |
msgid "Save Changes"
|
2684 |
msgstr "Änderungen sichern"
|
2685 |
|
2687 |
#: app/features/mec/ie.php:25 app/features/mec/messages.php:29
|
2688 |
#: app/features/mec/modules.php:36 app/features/mec/notifications.php:28
|
2689 |
#: app/features/mec/regform.php:65 app/features/mec/settings.php:57
|
2690 |
+
#: app/features/mec/settings.php:364 app/features/mec/single.php:28
|
2691 |
#: app/features/mec/styles.php:29 app/features/mec/styling.php:51
|
2692 |
msgid "Archive Pages"
|
2693 |
msgstr ""
|
2696 |
#: app/features/mec/ie.php:30 app/features/mec/messages.php:34
|
2697 |
#: app/features/mec/modules.php:41 app/features/mec/notifications.php:33
|
2698 |
#: app/features/mec/regform.php:70 app/features/mec/settings.php:87
|
2699 |
+
#: app/features/mec/settings.php:870 app/features/mec/single.php:33
|
2700 |
#: app/features/mec/styles.php:34 app/features/mec/styling.php:56
|
2701 |
msgid "User Profile"
|
2702 |
msgstr ""
|
2727 |
#: app/features/mec/ie.php:46 app/features/mec/messages.php:50
|
2728 |
#: app/features/mec/modules.php:57 app/features/mec/notifications.php:49
|
2729 |
#: app/features/mec/regform.php:86 app/features/mec/settings.php:117
|
2730 |
+
#: app/features/mec/single.php:56 app/features/mec/single.php:213
|
2731 |
#: app/features/mec/styles.php:50 app/features/mec/styling.php:72
|
2732 |
#, fuzzy
|
2733 |
#| msgid "Single Event Style"
|
2738 |
#: app/features/mec/ie.php:49 app/features/mec/messages.php:53
|
2739 |
#: app/features/mec/modules.php:60 app/features/mec/notifications.php:52
|
2740 |
#: app/features/mec/regform.php:89 app/features/mec/settings.php:120
|
2741 |
+
#: app/features/mec/single.php:74 app/features/mec/single.php:348
|
2742 |
#: app/features/mec/styles.php:53 app/features/mec/styling.php:75
|
2743 |
msgid "Additional Organizers"
|
2744 |
msgstr "Zusätzliche Organisatoren"
|
2754 |
msgid "Additional Locations"
|
2755 |
msgstr "Zusätzliche Organisatoren"
|
2756 |
|
2757 |
+
#: app/features/mec/booking.php:98 app/features/mec/booking.php:348
|
2758 |
#: app/features/mec/gateways.php:71 app/features/mec/ie.php:67
|
2759 |
#: app/features/mec/messages.php:71 app/features/mec/modules.php:78
|
2760 |
#: app/features/mec/notifications.php:70 app/features/mec/regform.php:107
|
2763 |
msgid "Taxes / Fees"
|
2764 |
msgstr "Steuern/Gebühren"
|
2765 |
|
2766 |
+
#: app/features/mec/booking.php:104 app/features/mec/booking.php:425
|
2767 |
#: app/features/mec/gateways.php:72 app/features/mec/ie.php:68
|
2768 |
#: app/features/mec/messages.php:72 app/features/mec/modules.php:79
|
2769 |
#: app/features/mec/notifications.php:71 app/features/mec/regform.php:108
|
2834 |
msgid "Next Event"
|
2835 |
msgstr "Nächstes Event"
|
2836 |
|
2837 |
+
#: app/features/mec/booking.php:168 app/features/mec/gateways.php:133
|
2838 |
+
#: app/features/mec/ie.php:129 app/features/mec/messages.php:133
|
2839 |
+
#: app/features/mec/modules.php:195 app/features/mec/notifications.php:142
|
2840 |
+
#: app/features/mec/notifications.php:289 app/features/mec/regform.php:167
|
2841 |
+
#: app/features/mec/settings.php:200 app/features/mec/single.php:161
|
2842 |
+
#: app/features/mec/styles.php:133 app/features/mec/styling.php:155
|
2843 |
msgid "Booking Verification"
|
2844 |
msgstr "Verifizierung der Buchung"
|
2845 |
|
2846 |
+
#: app/features/mec/booking.php:169 app/features/mec/booking.php:304
|
2847 |
+
#: app/features/mec/gateways.php:134 app/features/mec/ie.php:130
|
2848 |
+
#: app/features/mec/messages.php:134 app/features/mec/modules.php:196
|
2849 |
+
#: app/features/mec/notifications.php:148
|
2850 |
+
#: app/features/mec/notifications.php:341 app/features/mec/regform.php:168
|
2851 |
+
#: app/features/mec/settings.php:201 app/features/mec/single.php:162
|
2852 |
+
#: app/features/mec/styles.php:134 app/features/mec/styling.php:156
|
2853 |
msgid "Booking Confirmation"
|
2854 |
msgstr "Buchungsbestätigung"
|
2855 |
|
2856 |
+
#: app/features/mec/booking.php:170 app/features/mec/gateways.php:135
|
2857 |
+
#: app/features/mec/ie.php:131 app/features/mec/messages.php:135
|
2858 |
+
#: app/features/mec/modules.php:197 app/features/mec/notifications.php:154
|
2859 |
+
#: app/features/mec/notifications.php:393 app/features/mec/regform.php:169
|
2860 |
+
#: app/features/mec/settings.php:202 app/features/mec/single.php:163
|
2861 |
+
#: app/features/mec/styles.php:135 app/features/mec/styling.php:157
|
2862 |
#, fuzzy
|
2863 |
#| msgid "Booking cancellation link."
|
2864 |
msgid "Booking Cancellation"
|
2865 |
msgstr "Link zur Stornierung der Buchung"
|
2866 |
|
2867 |
+
#: app/features/mec/booking.php:171 app/features/mec/gateways.php:136
|
2868 |
+
#: app/features/mec/ie.php:132 app/features/mec/messages.php:136
|
2869 |
+
#: app/features/mec/modules.php:198 app/features/mec/notifications.php:160
|
2870 |
+
#: app/features/mec/notifications.php:461 app/features/mec/regform.php:170
|
2871 |
+
#: app/features/mec/settings.php:203 app/features/mec/single.php:164
|
2872 |
+
#: app/features/mec/styles.php:136 app/features/mec/styling.php:158
|
2873 |
msgid "Admin"
|
2874 |
msgstr ""
|
2875 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2876 |
#: app/features/mec/booking.php:172 app/features/mec/gateways.php:137
|
2877 |
#: app/features/mec/ie.php:133 app/features/mec/messages.php:137
|
2878 |
+
#: app/features/mec/modules.php:199 app/features/mec/notifications.php:166
|
2879 |
+
#: app/features/mec/notifications.php:521 app/features/mec/regform.php:171
|
2880 |
#: app/features/mec/settings.php:204 app/features/mec/single.php:165
|
2881 |
#: app/features/mec/styles.php:137 app/features/mec/styling.php:159
|
2882 |
+
#: app/libraries/notifications.php:354
|
2883 |
+
msgid "Booking Reminder"
|
2884 |
+
msgstr "Buchungs Erinnerung"
|
2885 |
+
|
2886 |
+
#: app/features/mec/booking.php:174 app/features/mec/gateways.php:139
|
2887 |
+
#: app/features/mec/ie.php:135 app/features/mec/messages.php:139
|
2888 |
+
#: app/features/mec/modules.php:201 app/features/mec/notifications.php:172
|
2889 |
+
#: app/features/mec/notifications.php:597 app/features/mec/regform.php:173
|
2890 |
+
#: app/features/mec/settings.php:206 app/features/mec/single.php:167
|
2891 |
+
#: app/features/mec/styles.php:139 app/features/mec/styling.php:161
|
2892 |
#: app/features/mec/support-page.php:80
|
2893 |
msgid "New Event"
|
2894 |
msgstr "Neue Veranstaltung"
|
2895 |
|
2896 |
+
#: app/features/mec/booking.php:182 app/features/mec/gateways.php:147
|
2897 |
+
#: app/features/mec/ie.php:143 app/features/mec/messages.php:147
|
2898 |
+
#: app/features/mec/modules.php:209 app/features/mec/notifications.php:183
|
2899 |
+
#: app/features/mec/regform.php:181 app/features/mec/settings.php:214
|
2900 |
+
#: app/features/mec/single.php:175 app/features/mec/styles.php:147
|
2901 |
+
#: app/features/mec/styling.php:169 app/features/mec/support.php:52
|
2902 |
msgid "Styling Options"
|
2903 |
msgstr "Styling-Optionen"
|
2904 |
|
2905 |
+
#: app/features/mec/booking.php:189 app/features/mec/gateways.php:154
|
2906 |
+
#: app/features/mec/ie.php:150 app/features/mec/messages.php:154
|
2907 |
+
#: app/features/mec/modules.php:216 app/features/mec/notifications.php:190
|
2908 |
+
#: app/features/mec/regform.php:188 app/features/mec/settings.php:221
|
2909 |
+
#: app/features/mec/single.php:182 app/features/mec/styles.php:154
|
2910 |
+
#: app/features/mec/styling.php:176 app/features/mec/support.php:59
|
2911 |
msgid "Custom CSS"
|
2912 |
msgstr "Custom CSS"
|
2913 |
|
2914 |
+
#: app/features/mec/booking.php:196 app/features/mec/gateways.php:161
|
2915 |
+
#: app/features/mec/ie.php:157 app/features/mec/messages.php:161
|
2916 |
+
#: app/features/mec/messages.php:181 app/features/mec/modules.php:223
|
2917 |
+
#: app/features/mec/notifications.php:197 app/features/mec/regform.php:195
|
2918 |
+
#: app/features/mec/settings.php:228 app/features/mec/single.php:189
|
2919 |
+
#: app/features/mec/styles.php:161 app/features/mec/styling.php:183
|
2920 |
#: app/features/mec/support.php:66
|
2921 |
msgid "Messages"
|
2922 |
msgstr "Nachrichten"
|
2923 |
|
2924 |
+
#: app/features/mec/booking.php:227
|
2925 |
msgid "Enable booking module"
|
2926 |
msgstr "Buchungsmodul aktivieren"
|
2927 |
|
2928 |
+
#: app/features/mec/booking.php:228
|
2929 |
msgid ""
|
2930 |
"After enable it, you should reloading this page to see Payment Gateways on "
|
2931 |
"settings and see a new menu on Dashboard"
|
2932 |
msgstr ""
|
2933 |
|
2934 |
+
#: app/features/mec/booking.php:233 app/features/mec/booking.php:238
|
2935 |
#: app/features/mec/modules.php:491 app/features/mec/modules.php:496
|
2936 |
msgid "Date Format"
|
2937 |
msgstr "Datumsformat"
|
2938 |
|
2939 |
+
#: app/features/mec/booking.php:239
|
2940 |
msgid "Default is Y-m-d"
|
2941 |
msgstr "Voreinstellung ist J-M-T"
|
2942 |
|
2943 |
+
#: app/features/mec/booking.php:246
|
2944 |
msgid "Maximum Dates"
|
2945 |
msgstr "Maximale Anzahl von Daten"
|
2946 |
|
2947 |
+
#: app/features/mec/booking.php:248
|
2948 |
msgid "Default is 6"
|
2949 |
msgstr "Die Voreinstellung ist 6"
|
2950 |
|
2951 |
+
#: app/features/mec/booking.php:252 app/features/mec/booking.php:262
|
2952 |
msgid "Thank You Page"
|
2953 |
msgstr "Danke Seite"
|
2954 |
|
2955 |
+
#: app/features/mec/booking.php:263
|
2956 |
msgid ""
|
2957 |
"User redirects to this page after booking. Leave it empty if you want to "
|
2958 |
"disable it."
|
2960 |
"Benutzer werden auf diese Seite nach der Buchung weitergeleitet. Lassen Sie "
|
2961 |
"es leer, wenn Sie es deaktivieren möchten."
|
2962 |
|
2963 |
+
#: app/features/mec/booking.php:274
|
2964 |
msgid "Enable Express Attendees Form"
|
2965 |
msgstr "Aktivieren Sie das Express-Teilnehmerformular"
|
2966 |
|
2967 |
+
#: app/features/mec/booking.php:278 app/modules/booking/steps/form.php:49
|
2968 |
msgid "Attendees Form"
|
2969 |
msgstr "Teilnahmeformular"
|
2970 |
|
2971 |
+
#: app/features/mec/booking.php:279
|
2972 |
msgid ""
|
2973 |
"Users are able to apply first attendee information for other attendees in "
|
2974 |
"the booking form."
|
2976 |
"Benutzer können erste Teilnehmerinformationen für andere Teilnehmer im "
|
2977 |
"Buchungsformular anwenden."
|
2978 |
|
2979 |
+
#: app/features/mec/booking.php:285
|
2980 |
msgid "Email verification"
|
2981 |
msgstr "Email-Verifizierung"
|
2982 |
|
2983 |
+
#: app/features/mec/booking.php:291
|
2984 |
msgid "Auto verification for free bookings"
|
2985 |
msgstr "Automatische Verifizierung für kostenlose Buchungen"
|
2986 |
|
2987 |
+
#: app/features/mec/booking.php:300
|
2988 |
msgid "Auto verification for paid bookings"
|
2989 |
msgstr "Automatische Verifizierung für kostenpflichtige Buchungen"
|
2990 |
|
2991 |
+
#: app/features/mec/booking.php:310
|
2992 |
msgid "Auto confirmation for free bookings"
|
2993 |
msgstr "Automatische Bestätigung für kostenlose Buchungen"
|
2994 |
|
2995 |
+
#: app/features/mec/booking.php:319
|
2996 |
msgid "Auto confirmation for paid bookings"
|
2997 |
msgstr "Automatische Bestätigung für kostenpflichtige Buchungen"
|
2998 |
|
2999 |
+
#: app/features/mec/booking.php:338
|
3000 |
msgid "Enable coupons module"
|
3001 |
msgstr "Gutscheinmodul aktivieren"
|
3002 |
|
3003 |
+
#: app/features/mec/booking.php:340
|
3004 |
msgid ""
|
3005 |
"After enable it, you should reloading this page to see a new menu on "
|
3006 |
"Dashboard > Booking"
|
3007 |
msgstr ""
|
3008 |
|
3009 |
+
#: app/features/mec/booking.php:356
|
3010 |
msgid "Enable taxes / fees module"
|
3011 |
msgstr "Modul für Gebühren/Steuern aktivieren"
|
3012 |
|
3013 |
+
#: app/features/mec/booking.php:361
|
3014 |
msgid "Add Fee"
|
3015 |
msgstr "Gebühr hinzufügen"
|
3016 |
|
3017 |
+
#: app/features/mec/booking.php:433
|
3018 |
#, fuzzy
|
3019 |
#| msgid "Enable coupons module"
|
3020 |
msgid "Enable ticket options module"
|
3021 |
msgstr "Gutscheinmodul aktivieren"
|
3022 |
|
3023 |
+
#: app/features/mec/booking.php:438
|
3024 |
msgid "Add Variation / Option"
|
3025 |
msgstr ""
|
3026 |
|
3027 |
+
#: app/features/mec/booking.php:566 app/features/mec/gateways.php:224
|
3028 |
+
#: app/features/mec/messages.php:229 app/features/mec/modules.php:597
|
3029 |
+
#: app/features/mec/notifications.php:730 app/features/mec/regform.php:357
|
3030 |
+
#: app/features/mec/settings.php:1025 app/features/mec/single.php:424
|
3031 |
+
#: app/features/mec/styles.php:217 app/features/mec/styling.php:449
|
3032 |
msgid "Saved"
|
3033 |
msgstr "Gesichert"
|
3034 |
|
3035 |
+
#: app/features/mec/booking.php:567 app/features/mec/gateways.php:225
|
3036 |
+
#: app/features/mec/messages.php:230 app/features/mec/modules.php:598
|
3037 |
+
#: app/features/mec/notifications.php:731 app/features/mec/regform.php:358
|
3038 |
+
#: app/features/mec/settings.php:1026 app/features/mec/single.php:425
|
3039 |
+
#: app/features/mec/styles.php:218 app/features/mec/styling.php:450
|
3040 |
msgid "Settings Saved!"
|
3041 |
msgstr ""
|
3042 |
|
3043 |
+
#: app/features/mec/booking.php:569 app/features/mec/booking.php:591
|
3044 |
#: app/features/mec/modules.php:600 app/features/mec/modules.php:622
|
3045 |
+
#: app/features/mec/notifications.php:733
|
3046 |
+
#: app/features/mec/notifications.php:755 app/features/mec/settings.php:1028
|
3047 |
+
#: app/features/mec/settings.php:1050 app/features/mec/single.php:427
|
3048 |
+
#: app/features/mec/single.php:449 app/libraries/main.php:4706
|
3049 |
msgid "Verified"
|
3050 |
msgstr "Verifiziert"
|
3051 |
|
3052 |
+
#: app/features/mec/booking.php:593 app/features/mec/modules.php:624
|
3053 |
+
#: app/features/mec/notifications.php:757 app/features/mec/settings.php:1052
|
3054 |
+
#: app/features/mec/single.php:451
|
3055 |
msgid "Please Refresh Page"
|
3056 |
msgstr "Bitte Seiten Refresh vornehmen"
|
3057 |
|
3128 |
msgid "Activate Addons"
|
3129 |
msgstr "MEC Aktivierung"
|
3130 |
|
3131 |
+
#: app/features/mec/dashboard.php:220 app/features/mec/settings.php:535
|
3132 |
msgid "Upcoming Events"
|
3133 |
msgstr "Bevorstehende Events"
|
3134 |
|
3177 |
msgid "Change Log"
|
3178 |
msgstr "Änderungsprotokoll"
|
3179 |
|
3180 |
+
#: app/features/mec/ie.php:178
|
3181 |
msgid ""
|
3182 |
"Insert your backup files below and press import to restore your site's "
|
3183 |
"options to the last backup."
|
3184 |
msgstr ""
|
3185 |
|
3186 |
+
#: app/features/mec/ie.php:179
|
3187 |
msgid ""
|
3188 |
"WARNING! Restoring backup will overwrite all of your current option values. "
|
3189 |
"Caution Indeed."
|
3190 |
msgstr ""
|
3191 |
|
3192 |
+
#: app/features/mec/ie.php:182
|
3193 |
msgid "Please paste your options here"
|
3194 |
msgstr ""
|
3195 |
|
3196 |
+
#: app/features/mec/ie.php:184
|
3197 |
#, fuzzy
|
3198 |
#| msgid "Import Options"
|
3199 |
msgid "Import Settings"
|
3200 |
msgstr "Import Optionen"
|
3201 |
|
3202 |
+
#: app/features/mec/ie.php:194
|
3203 |
#, fuzzy
|
3204 |
#| msgid "Download Invoice"
|
3205 |
msgid "Download Settings"
|
3206 |
msgstr "Download Rechnung\n"
|
3207 |
|
3208 |
+
#: app/features/mec/messages.php:184
|
3209 |
msgid ""
|
3210 |
"You can change some MEC messages here simply. For example if you like to "
|
3211 |
"change \"REGISTER\" button label, you can do it here. By the Way, if your "
|
3223 |
|
3224 |
#: app/features/mec/meta_boxes/display_options.php:34
|
3225 |
#: app/features/mec/meta_boxes/display_options.php:159
|
3226 |
+
#: app/features/mec/meta_boxes/display_options.php:531
|
3227 |
+
#: app/features/mec/meta_boxes/display_options.php:825
|
3228 |
+
#: app/features/mec/settings.php:399 app/features/mec/settings.php:423
|
3229 |
+
#: app/features/mec/settings.php:432 app/features/mec/settings.php:473
|
3230 |
+
#: app/features/mec/settings.php:497 app/features/mec/settings.php:506
|
3231 |
msgid "Classic"
|
3232 |
msgstr "Klassisch"
|
3233 |
|
3234 |
#: app/features/mec/meta_boxes/display_options.php:35
|
3235 |
#: app/features/mec/meta_boxes/display_options.php:161
|
3236 |
+
#: app/features/mec/settings.php:424 app/features/mec/settings.php:434
|
3237 |
+
#: app/features/mec/settings.php:498 app/features/mec/settings.php:508
|
3238 |
msgid "Minimal"
|
3239 |
msgstr "Minimal"
|
3240 |
|
3241 |
#: app/features/mec/meta_boxes/display_options.php:36
|
3242 |
#: app/features/mec/meta_boxes/display_options.php:162
|
3243 |
+
#: app/features/mec/meta_boxes/display_options.php:481
|
3244 |
+
#: app/features/mec/meta_boxes/display_options.php:533
|
3245 |
+
#: app/features/mec/meta_boxes/display_options.php:695
|
3246 |
+
#: app/features/mec/meta_boxes/display_options.php:827
|
3247 |
+
#: app/features/mec/settings.php:401 app/features/mec/settings.php:414
|
3248 |
+
#: app/features/mec/settings.php:425 app/features/mec/settings.php:435
|
3249 |
+
#: app/features/mec/settings.php:475 app/features/mec/settings.php:488
|
3250 |
+
#: app/features/mec/settings.php:499 app/features/mec/settings.php:509
|
3251 |
msgid "Modern"
|
3252 |
msgstr "Modern"
|
3253 |
|
3254 |
#: app/features/mec/meta_boxes/display_options.php:37
|
3255 |
+
#: app/features/mec/settings.php:426 app/features/mec/settings.php:500
|
3256 |
msgid "Standard"
|
3257 |
msgstr "Standard"
|
3258 |
|
3259 |
#: app/features/mec/meta_boxes/display_options.php:38
|
3260 |
+
#: app/features/mec/settings.php:427 app/features/mec/settings.php:501
|
3261 |
msgid "Accordion"
|
3262 |
msgstr "Accordion"
|
3263 |
|
3264 |
#: app/features/mec/meta_boxes/display_options.php:44
|
3265 |
#: app/features/mec/meta_boxes/display_options.php:171
|
3266 |
#: app/features/mec/meta_boxes/display_options.php:309
|
3267 |
+
#: app/features/mec/meta_boxes/display_options.php:588
|
3268 |
+
#: app/features/mec/meta_boxes/display_options.php:621
|
3269 |
+
#: app/features/mec/meta_boxes/display_options.php:768
|
3270 |
+
#: app/features/mec/meta_boxes/display_options.php:983
|
3271 |
+
#: app/features/mec/meta_boxes/display_options.php:1070
|
3272 |
msgid "Today"
|
3273 |
msgstr "Heute"
|
3274 |
|
3275 |
#: app/features/mec/meta_boxes/display_options.php:45
|
3276 |
#: app/features/mec/meta_boxes/display_options.php:172
|
3277 |
#: app/features/mec/meta_boxes/display_options.php:310
|
3278 |
+
#: app/features/mec/meta_boxes/display_options.php:589
|
3279 |
+
#: app/features/mec/meta_boxes/display_options.php:622
|
3280 |
+
#: app/features/mec/meta_boxes/display_options.php:769
|
3281 |
+
#: app/features/mec/meta_boxes/display_options.php:984
|
3282 |
+
#: app/features/mec/meta_boxes/display_options.php:1071
|
3283 |
msgid "Tomorrow"
|
3284 |
msgstr "Morgen"
|
3285 |
|
3287 |
#: app/features/mec/meta_boxes/display_options.php:173
|
3288 |
#: app/features/mec/meta_boxes/display_options.php:311
|
3289 |
#: app/features/mec/meta_boxes/display_options.php:364
|
3290 |
+
#: app/features/mec/meta_boxes/display_options.php:541
|
3291 |
+
#: app/features/mec/meta_boxes/display_options.php:590
|
3292 |
+
#: app/features/mec/meta_boxes/display_options.php:623
|
3293 |
+
#: app/features/mec/meta_boxes/display_options.php:658
|
3294 |
+
#: app/features/mec/meta_boxes/display_options.php:704
|
3295 |
+
#: app/features/mec/meta_boxes/display_options.php:770
|
3296 |
+
#: app/features/mec/meta_boxes/display_options.php:985
|
3297 |
+
#: app/features/mec/meta_boxes/display_options.php:1072
|
3298 |
msgid "Start of Current Month"
|
3299 |
msgstr "Mit Beginn des laufenden Monats"
|
3300 |
|
3302 |
#: app/features/mec/meta_boxes/display_options.php:174
|
3303 |
#: app/features/mec/meta_boxes/display_options.php:312
|
3304 |
#: app/features/mec/meta_boxes/display_options.php:365
|
3305 |
+
#: app/features/mec/meta_boxes/display_options.php:542
|
3306 |
+
#: app/features/mec/meta_boxes/display_options.php:591
|
3307 |
+
#: app/features/mec/meta_boxes/display_options.php:624
|
3308 |
+
#: app/features/mec/meta_boxes/display_options.php:659
|
3309 |
+
#: app/features/mec/meta_boxes/display_options.php:705
|
3310 |
+
#: app/features/mec/meta_boxes/display_options.php:771
|
3311 |
+
#: app/features/mec/meta_boxes/display_options.php:986
|
3312 |
+
#: app/features/mec/meta_boxes/display_options.php:1073
|
3313 |
msgid "Start of Next Month"
|
3314 |
msgstr "Mit Beginn des kommenden Monats"
|
3315 |
|
3317 |
#: app/features/mec/meta_boxes/display_options.php:175
|
3318 |
#: app/features/mec/meta_boxes/display_options.php:313
|
3319 |
#: app/features/mec/meta_boxes/display_options.php:366
|
3320 |
+
#: app/features/mec/meta_boxes/display_options.php:489
|
3321 |
+
#: app/features/mec/meta_boxes/display_options.php:543
|
3322 |
+
#: app/features/mec/meta_boxes/display_options.php:592
|
3323 |
+
#: app/features/mec/meta_boxes/display_options.php:625
|
3324 |
+
#: app/features/mec/meta_boxes/display_options.php:660
|
3325 |
+
#: app/features/mec/meta_boxes/display_options.php:706
|
3326 |
+
#: app/features/mec/meta_boxes/display_options.php:772
|
3327 |
+
#: app/features/mec/meta_boxes/display_options.php:987
|
3328 |
+
#: app/features/mec/meta_boxes/display_options.php:1074
|
3329 |
msgid "On a certain date"
|
3330 |
msgstr "An einem bestimmten Tag"
|
3331 |
|
3333 |
#: app/features/mec/meta_boxes/display_options.php:178
|
3334 |
#: app/features/mec/meta_boxes/display_options.php:316
|
3335 |
#: app/features/mec/meta_boxes/display_options.php:369
|
3336 |
+
#: app/features/mec/meta_boxes/display_options.php:492
|
3337 |
+
#: app/features/mec/meta_boxes/display_options.php:546
|
3338 |
+
#: app/features/mec/meta_boxes/display_options.php:595
|
3339 |
+
#: app/features/mec/meta_boxes/display_options.php:629
|
3340 |
+
#: app/features/mec/meta_boxes/display_options.php:663
|
3341 |
+
#: app/features/mec/meta_boxes/display_options.php:709
|
3342 |
+
#: app/features/mec/meta_boxes/display_options.php:775
|
3343 |
+
#: app/features/mec/meta_boxes/display_options.php:990
|
3344 |
+
#: app/features/mec/meta_boxes/display_options.php:1077
|
3345 |
#, php-format
|
3346 |
msgid "eg. %s"
|
3347 |
msgstr "z.B. %s"
|
3372 |
#: app/features/mec/meta_boxes/display_options.php:258
|
3373 |
#: app/features/mec/meta_boxes/display_options.php:320
|
3374 |
#: app/features/mec/meta_boxes/display_options.php:325
|
3375 |
+
#: app/features/mec/meta_boxes/display_options.php:496
|
3376 |
+
#: app/features/mec/meta_boxes/display_options.php:501
|
3377 |
+
#: app/features/mec/meta_boxes/display_options.php:779
|
3378 |
+
#: app/features/mec/meta_boxes/display_options.php:784
|
3379 |
+
#: app/features/mec/meta_boxes/display_options.php:831
|
3380 |
+
#: app/features/mec/meta_boxes/display_options.php:837
|
3381 |
+
#: app/features/mec/meta_boxes/display_options.php:844
|
3382 |
+
#: app/features/mec/meta_boxes/display_options.php:849
|
|
|
3383 |
#: app/features/mec/meta_boxes/display_options.php:856
|
3384 |
+
#: app/features/mec/meta_boxes/display_options.php:860
|
3385 |
#: app/features/mec/meta_boxes/display_options.php:888
|
3386 |
+
#: app/features/mec/meta_boxes/display_options.php:892
|
3387 |
#: app/features/mec/meta_boxes/display_options.php:899
|
3388 |
+
#: app/features/mec/meta_boxes/display_options.php:903
|
3389 |
+
#: app/features/mec/meta_boxes/display_options.php:910
|
3390 |
+
#: app/features/mec/meta_boxes/display_options.php:916
|
3391 |
+
#: app/features/mec/meta_boxes/display_options.php:946
|
3392 |
+
#: app/features/mec/meta_boxes/display_options.php:951
|
3393 |
+
#: app/features/mec/meta_boxes/display_options.php:994
|
3394 |
+
#: app/features/mec/meta_boxes/display_options.php:1000
|
3395 |
#: app/features/mec/meta_boxes/display_options.php:1007
|
3396 |
+
#: app/features/mec/meta_boxes/display_options.php:1011
|
3397 |
#: app/features/mec/meta_boxes/display_options.php:1018
|
3398 |
+
#: app/features/mec/meta_boxes/display_options.php:1022
|
3399 |
+
#: app/features/mec/meta_boxes/display_options.php:1081
|
3400 |
+
#: app/features/mec/meta_boxes/display_options.php:1087
|
3401 |
+
#: app/features/mec/meta_boxes/display_options.php:1094
|
3402 |
+
#: app/features/mec/meta_boxes/display_options.php:1100
|
3403 |
+
#: app/features/mec/meta_boxes/display_options.php:1107
|
3404 |
+
#: app/features/mec/meta_boxes/display_options.php:1113
|
3405 |
+
#: app/features/mec/meta_boxes/display_options.php:1120
|
3406 |
+
#: app/features/mec/meta_boxes/display_options.php:1126
|
3407 |
+
#: app/features/mec/meta_boxes/display_options.php:1133
|
3408 |
+
#: app/features/mec/meta_boxes/display_options.php:1139
|
3409 |
msgid "Date Formats"
|
3410 |
msgstr "Datumsformate"
|
3411 |
|
3421 |
#: app/features/mec/meta_boxes/display_options.php:86
|
3422 |
#: app/features/mec/meta_boxes/display_options.php:224
|
3423 |
#: app/features/mec/meta_boxes/display_options.php:248
|
3424 |
+
#: app/features/mec/meta_boxes/display_options.php:1088
|
3425 |
+
#: app/features/mec/meta_boxes/display_options.php:1101
|
3426 |
+
#: app/features/mec/meta_boxes/display_options.php:1114
|
3427 |
+
#: app/features/mec/meta_boxes/display_options.php:1127
|
3428 |
+
#: app/features/mec/meta_boxes/display_options.php:1140
|
3429 |
msgid "Default values are d, F and l"
|
3430 |
msgstr ""
|
3431 |
"Standardwerte sind Tag, Monat als ganzes Wort und Wochentag als ganzes Wort"
|
3443 |
#: app/features/mec/meta_boxes/display_options.php:115
|
3444 |
#: app/features/mec/meta_boxes/display_options.php:276
|
3445 |
#: app/features/mec/meta_boxes/display_options.php:332
|
3446 |
+
#: app/features/mec/meta_boxes/display_options.php:791
|
3447 |
+
#: app/features/mec/meta_boxes/display_options.php:1038
|
3448 |
+
#: app/features/mec/meta_boxes/display_options.php:1146
|
3449 |
msgid "Limit"
|
3450 |
msgstr "Limit"
|
3451 |
|
3452 |
#: app/features/mec/meta_boxes/display_options.php:116
|
3453 |
#: app/features/mec/meta_boxes/display_options.php:277
|
3454 |
#: app/features/mec/meta_boxes/display_options.php:333
|
3455 |
+
#: app/features/mec/meta_boxes/display_options.php:509
|
3456 |
+
#: app/features/mec/meta_boxes/display_options.php:551
|
3457 |
+
#: app/features/mec/meta_boxes/display_options.php:634
|
3458 |
+
#: app/features/mec/meta_boxes/display_options.php:668
|
3459 |
+
#: app/features/mec/meta_boxes/display_options.php:714
|
3460 |
+
#: app/features/mec/meta_boxes/display_options.php:1039
|
3461 |
+
#: app/features/mec/meta_boxes/display_options.php:1147
|
3462 |
msgid "eg. 6"
|
3463 |
msgstr "z.B. 6"
|
3464 |
|
3482 |
#: app/features/mec/meta_boxes/display_options.php:160
|
3483 |
#: app/features/mec/meta_boxes/display_options.php:303
|
3484 |
#: app/features/mec/meta_boxes/display_options.php:385
|
3485 |
+
#: app/features/mec/meta_boxes/display_options.php:532
|
3486 |
+
#: app/features/mec/meta_boxes/display_options.php:696
|
3487 |
+
#: app/features/mec/meta_boxes/display_options.php:826
|
3488 |
+
#: app/features/mec/settings.php:400 app/features/mec/settings.php:415
|
3489 |
+
#: app/features/mec/settings.php:433 app/features/mec/settings.php:474
|
3490 |
+
#: app/features/mec/settings.php:489 app/features/mec/settings.php:507
|
3491 |
msgid "Clean"
|
3492 |
msgstr "Clean"
|
3493 |
|
3494 |
#: app/features/mec/meta_boxes/display_options.php:163
|
3495 |
#: app/features/mec/meta_boxes/display_options.php:387
|
3496 |
+
#: app/features/mec/meta_boxes/display_options.php:535
|
3497 |
+
#: app/features/mec/settings.php:403 app/features/mec/settings.php:436
|
3498 |
+
#: app/features/mec/settings.php:477 app/features/mec/settings.php:510
|
3499 |
msgid "Simple"
|
3500 |
msgstr "Schlicht"
|
3501 |
|
3505 |
|
3506 |
#: app/features/mec/meta_boxes/display_options.php:165
|
3507 |
#: app/features/mec/meta_boxes/display_options.php:386
|
3508 |
+
#: app/features/mec/meta_boxes/display_options.php:534
|
3509 |
+
#: app/features/mec/settings.php:402 app/features/mec/settings.php:438
|
3510 |
+
#: app/features/mec/settings.php:476 app/features/mec/settings.php:512
|
3511 |
msgid "Novel"
|
3512 |
msgstr ""
|
3513 |
|
3530 |
msgstr "Standardwert ist \"d (Tag) F Y (Jahr)\" "
|
3531 |
|
3532 |
#: app/features/mec/meta_boxes/display_options.php:265
|
3533 |
+
#: app/features/mec/meta_boxes/display_options.php:1029
|
3534 |
msgid "Count in row"
|
3535 |
msgstr "Zeilen zählen"
|
3536 |
|
3537 |
#: app/features/mec/meta_boxes/display_options.php:296
|
3538 |
+
#: app/features/mec/meta_boxes/display_options.php:474
|
3539 |
+
#: app/features/mec/meta_boxes/display_options.php:581
|
3540 |
+
#: app/features/mec/meta_boxes/display_options.php:688
|
3541 |
+
#: app/features/mec/meta_boxes/display_options.php:941
|
3542 |
#, php-format
|
3543 |
msgid "%s is required to use this skin."
|
3544 |
msgstr ""
|
3545 |
|
3546 |
#: app/features/mec/meta_boxes/display_options.php:326
|
3547 |
+
#: app/features/mec/meta_boxes/display_options.php:502
|
3548 |
msgid "Default values are l and F j"
|
3549 |
msgstr "Die Standardwerte sind I und F j"
|
3550 |
|
3553 |
msgstr "Standardansicht"
|
3554 |
|
3555 |
#: app/features/mec/meta_boxes/display_options.php:375
|
3556 |
+
#: app/features/mec/meta_boxes/display_options.php:396
|
3557 |
+
#: app/libraries/main.php:329 app/libraries/main.php:1241
|
3558 |
+
#: app/libraries/main.php:1266
|
3559 |
msgid "List View"
|
3560 |
msgstr "Listenansicht"
|
3561 |
|
3562 |
#: app/features/mec/meta_boxes/display_options.php:376
|
3563 |
+
#: app/features/mec/meta_boxes/display_options.php:406
|
3564 |
+
#: app/libraries/main.php:333 app/libraries/main.php:1235
|
3565 |
+
#: app/libraries/main.php:1260
|
3566 |
msgid "Yearly View"
|
3567 |
msgstr "Jahresansicht"
|
3568 |
|
3569 |
#: app/features/mec/meta_boxes/display_options.php:377
|
3570 |
+
#: app/features/mec/meta_boxes/display_options.php:428
|
3571 |
msgid "Monthly/Calendar View"
|
3572 |
msgstr "Monatliche Kalenderansicht"
|
3573 |
|
3574 |
#: app/features/mec/meta_boxes/display_options.php:378
|
3575 |
+
#: app/features/mec/meta_boxes/display_options.php:438
|
3576 |
+
#: app/libraries/main.php:336 app/libraries/main.php:1237
|
3577 |
+
#: app/libraries/main.php:1262
|
3578 |
msgid "Weekly View"
|
3579 |
msgstr "Wochenansicht"
|
3580 |
|
3581 |
#: app/features/mec/meta_boxes/display_options.php:379
|
3582 |
+
#: app/features/mec/meta_boxes/display_options.php:448
|
3583 |
+
#: app/libraries/main.php:335 app/libraries/main.php:1238
|
3584 |
+
#: app/libraries/main.php:1263
|
3585 |
msgid "Daily View"
|
3586 |
msgstr "Tagesansicht"
|
3587 |
|
3591 |
msgid "Monthly Style"
|
3592 |
msgstr "Moderner Stil"
|
3593 |
|
3594 |
+
#: app/features/mec/meta_boxes/display_options.php:423
|
3595 |
#, php-format
|
3596 |
msgid "%s is required to use <b>Yearly View</b> skin."
|
3597 |
msgstr ""
|
3598 |
|
3599 |
+
#: app/features/mec/meta_boxes/display_options.php:456
|
3600 |
msgid "The price shows only in List View."
|
3601 |
msgstr ""
|
3602 |
|
3603 |
+
#: app/features/mec/meta_boxes/display_options.php:459
|
3604 |
msgid "Display Event Price"
|
3605 |
msgstr ""
|
3606 |
|
3607 |
+
#: app/features/mec/meta_boxes/display_options.php:487
|
3608 |
msgid "Start of Current Year"
|
3609 |
msgstr "Mit Beginn des laufenden Jahres"
|
3610 |
|
3611 |
+
#: app/features/mec/meta_boxes/display_options.php:488
|
3612 |
msgid "Start of Next Year"
|
3613 |
msgstr "Start des nächsten Jahres"
|
3614 |
|
3615 |
+
#: app/features/mec/meta_boxes/display_options.php:508
|
3616 |
+
#: app/features/mec/meta_boxes/display_options.php:550
|
3617 |
+
#: app/features/mec/meta_boxes/display_options.php:633
|
3618 |
+
#: app/features/mec/meta_boxes/display_options.php:667
|
3619 |
+
#: app/features/mec/meta_boxes/display_options.php:713
|
3620 |
msgid "Events per day"
|
3621 |
msgstr "Veranstaltungen pro Tag"
|
3622 |
|
3623 |
+
#: app/features/mec/meta_boxes/display_options.php:513
|
3624 |
+
#: app/features/mec/meta_boxes/display_options.php:555
|
3625 |
+
#: app/features/mec/meta_boxes/display_options.php:638
|
3626 |
+
#: app/features/mec/meta_boxes/display_options.php:672
|
3627 |
+
#: app/features/mec/meta_boxes/display_options.php:742
|
3628 |
msgid "Next/Previous Buttons"
|
3629 |
msgstr "Schaltfläche \"Nächste/Letzte\""
|
3630 |
|
3631 |
+
#: app/features/mec/meta_boxes/display_options.php:521
|
3632 |
msgid "For showing next/previous year navigation."
|
3633 |
msgstr "Navigation anzeigen zum nächsten/letzten Jahr"
|
3634 |
|
3635 |
+
#: app/features/mec/meta_boxes/display_options.php:565
|
3636 |
#, fuzzy
|
3637 |
#| msgid "Text"
|
3638 |
msgid "Uppercase Text"
|
3639 |
msgstr "Text"
|
3640 |
|
3641 |
+
#: app/features/mec/meta_boxes/display_options.php:573
|
3642 |
+
#: app/features/mec/meta_boxes/display_options.php:646
|
3643 |
+
#: app/features/mec/meta_boxes/display_options.php:680
|
3644 |
+
#: app/features/mec/meta_boxes/display_options.php:750
|
3645 |
msgid "For showing next/previous month navigation."
|
3646 |
msgstr "Für die Navigation zum nächsten/letzten Monat"
|
3647 |
|
3648 |
+
#: app/features/mec/meta_boxes/display_options.php:599
|
3649 |
msgid "Maximum events"
|
3650 |
msgstr "Veranstaltungsmaximum"
|
3651 |
|
3652 |
+
#: app/features/mec/meta_boxes/display_options.php:600
|
3653 |
msgid "eg. 200"
|
3654 |
msgstr "z.B. 200"
|
3655 |
|
3656 |
+
#: app/features/mec/meta_boxes/display_options.php:604
|
3657 |
msgid "Geolocation"
|
3658 |
msgstr ""
|
3659 |
|
3660 |
+
#: app/features/mec/meta_boxes/display_options.php:612
|
3661 |
msgid "The geolocation feature works only in secure (https) websites."
|
3662 |
msgstr ""
|
3663 |
|
3664 |
+
#: app/features/mec/meta_boxes/display_options.php:656
|
3665 |
+
#: app/features/mec/meta_boxes/display_options.php:702
|
3666 |
msgid "Current Week"
|
3667 |
msgstr "Aktuelle Woche"
|
3668 |
|
3669 |
+
#: app/features/mec/meta_boxes/display_options.php:657
|
3670 |
+
#: app/features/mec/meta_boxes/display_options.php:703
|
3671 |
msgid "Next Week"
|
3672 |
msgstr "Nächste Woche"
|
3673 |
|
3674 |
+
#: app/features/mec/meta_boxes/display_options.php:718
|
3675 |
msgid "Number of Days"
|
3676 |
msgstr ""
|
3677 |
|
3678 |
+
#: app/features/mec/meta_boxes/display_options.php:726
|
3679 |
#, fuzzy
|
3680 |
#| msgid "Start"
|
3681 |
msgid "Week Start"
|
3682 |
msgstr "Start"
|
3683 |
|
3684 |
+
#: app/features/mec/meta_boxes/display_options.php:728
|
3685 |
#, fuzzy
|
3686 |
#| msgid "Inherit from global options"
|
3687 |
msgid "Inherite from WordPress options"
|
3688 |
msgstr "Aus den globalen Einstellungen übernehmen"
|
3689 |
|
3690 |
+
#: app/features/mec/meta_boxes/display_options.php:785
|
3691 |
+
#: app/features/mec/meta_boxes/display_options.php:952
|
3692 |
msgid "Default values are j and F"
|
3693 |
msgstr "Standardwerte sind j und F"
|
3694 |
|
3695 |
+
#: app/features/mec/meta_boxes/display_options.php:792
|
3696 |
msgid "eg. 24"
|
3697 |
msgstr "z.B. 24"
|
3698 |
|
3699 |
+
#: app/features/mec/meta_boxes/display_options.php:795
|
3700 |
msgid "Filter By"
|
3701 |
msgstr "Filtern nach"
|
3702 |
|
3703 |
+
#: app/features/mec/meta_boxes/display_options.php:797
|
3704 |
msgid "None"
|
3705 |
msgstr ""
|
3706 |
|
3707 |
+
#: app/features/mec/meta_boxes/display_options.php:806
|
3708 |
msgid "Convert Masonry to Grid"
|
3709 |
msgstr ""
|
3710 |
|
3711 |
+
#: app/features/mec/meta_boxes/display_options.php:807
|
3712 |
msgid "For using this option, your events should come with image"
|
3713 |
msgstr ""
|
3714 |
|
3715 |
+
#: app/features/mec/meta_boxes/display_options.php:838
|
3716 |
msgid "Default values are d, M and Y"
|
3717 |
msgstr "Standardwerte sind T, M und J"
|
3718 |
|
3719 |
+
#: app/features/mec/meta_boxes/display_options.php:850
|
3720 |
msgid "Default values are \"F d\" and l"
|
3721 |
msgstr ""
|
3722 |
"Standardwerte sind Monat als ganzes Wort, Tag des Monates mit führender Null "
|
3723 |
"und ausgeschriebener Wochentag"
|
3724 |
|
3725 |
+
#: app/features/mec/meta_boxes/display_options.php:861
|
3726 |
msgid "Default value is \"l, F d Y\""
|
3727 |
msgstr ""
|
3728 |
"Standardwerte sind ausgeschriebener Wochentag, Monat als ganzes Wort, Tag "
|
3729 |
"des Monates mit führender 0, Jahr"
|
3730 |
|
3731 |
+
#: app/features/mec/meta_boxes/display_options.php:882
|
3732 |
msgid "Style 1"
|
3733 |
msgstr "Stil 1"
|
3734 |
|
3735 |
+
#: app/features/mec/meta_boxes/display_options.php:883
|
3736 |
msgid "Style 2"
|
3737 |
msgstr "Stil 2"
|
3738 |
|
3739 |
+
#: app/features/mec/meta_boxes/display_options.php:884
|
3740 |
msgid "Style 3"
|
3741 |
msgstr "Stil 3"
|
3742 |
|
3743 |
+
#: app/features/mec/meta_boxes/display_options.php:893
|
3744 |
+
#: app/features/mec/meta_boxes/display_options.php:904
|
3745 |
msgid "Default value is \"j F Y\""
|
3746 |
msgstr "Standardwert ist \"j F Y\""
|
3747 |
|
3748 |
+
#: app/features/mec/meta_boxes/display_options.php:917
|
3749 |
msgid "Default values are j, F and Y"
|
3750 |
msgstr ""
|
3751 |
"Standardwerte sind j ( Tag des Monats ohne führende Nullen), F und Y (Jahr)"
|
3752 |
|
3753 |
+
#: app/features/mec/meta_boxes/display_options.php:925
|
3754 |
+
#: app/features/mec/meta_boxes/display_options.php:960
|
3755 |
msgid " -- Next Upcoming Event -- "
|
3756 |
msgstr "-- Nächste Veranstaltung--"
|
3757 |
|
3758 |
+
#: app/features/mec/meta_boxes/display_options.php:932
|
3759 |
msgid "Background Color"
|
3760 |
msgstr "Hintergrund Farbe"
|
3761 |
|
3762 |
+
#: app/features/mec/meta_boxes/display_options.php:974
|
3763 |
+
#: app/features/mec/meta_boxes/display_options.php:1060
|
3764 |
msgid "Type 1"
|
3765 |
msgstr "Typ 1"
|
3766 |
|
3767 |
+
#: app/features/mec/meta_boxes/display_options.php:975
|
3768 |
+
#: app/features/mec/meta_boxes/display_options.php:1061
|
3769 |
msgid "Type 2"
|
3770 |
msgstr "Typ 2"
|
3771 |
|
3772 |
+
#: app/features/mec/meta_boxes/display_options.php:976
|
3773 |
+
#: app/features/mec/meta_boxes/display_options.php:1062
|
3774 |
msgid "Type 3"
|
3775 |
msgstr "Type 3"
|
3776 |
|
3777 |
+
#: app/features/mec/meta_boxes/display_options.php:977
|
3778 |
+
#: app/features/mec/meta_boxes/display_options.php:1063
|
3779 |
msgid "Type 4"
|
3780 |
msgstr "Typ 4"
|
3781 |
|
3782 |
+
#: app/features/mec/meta_boxes/display_options.php:1001
|
3783 |
msgid "Default values are d, F and Y"
|
3784 |
msgstr "Standardwert ist d (Tag) F und Y (Jahr)"
|
3785 |
|
3786 |
+
#: app/features/mec/meta_boxes/display_options.php:1012
|
3787 |
+
#: app/features/mec/meta_boxes/display_options.php:1023
|
3788 |
msgid "Default value is \"M d, Y\""
|
3789 |
msgstr "Standardwert ist \"M T, J\""
|
3790 |
|
3791 |
+
#: app/features/mec/meta_boxes/display_options.php:1042
|
3792 |
+
#: app/features/mec/meta_boxes/display_options.php:1150
|
3793 |
msgid "Auto Play Time"
|
3794 |
msgstr "Auto Play Time"
|
3795 |
|
3796 |
+
#: app/features/mec/meta_boxes/display_options.php:1043
|
3797 |
+
#: app/features/mec/meta_boxes/display_options.php:1151
|
3798 |
msgid "eg. 3000 default is 3 second"
|
3799 |
msgstr "z.B. Voreinstellung 3000 sind 3 Sekunden"
|
3800 |
|
3801 |
+
#: app/features/mec/meta_boxes/display_options.php:1047
|
3802 |
#, fuzzy
|
3803 |
#| msgid "Archive Page Skin"
|
3804 |
msgid "Archive Link"
|
3805 |
msgstr "Skin Seite Archiv"
|
3806 |
|
3807 |
+
#: app/features/mec/meta_boxes/display_options.php:1051
|
3808 |
#, fuzzy
|
3809 |
#| msgid "Text"
|
3810 |
msgid "Head Text"
|
3811 |
msgstr "Text"
|
3812 |
|
3813 |
+
#: app/features/mec/meta_boxes/display_options.php:1064
|
3814 |
msgid "Type 5"
|
3815 |
msgstr "Typ 5"
|
3816 |
|
3962 |
#: app/features/mec/meta_boxes/search_form.php:610
|
3963 |
#: app/features/mec/meta_boxes/search_form.php:617
|
3964 |
#: app/features/mec/meta_boxes/search_form.php:624
|
3965 |
+
#: app/features/mec/modules.php:322 app/features/mec/settings.php:297
|
3966 |
+
#: app/features/mec/settings.php:553
|
3967 |
msgid "Disabled"
|
3968 |
msgstr "Deaktiviert"
|
3969 |
|
3977 |
#: app/features/mec/meta_boxes/search_form.php:472
|
3978 |
#: app/features/mec/meta_boxes/search_form.php:533
|
3979 |
#: app/features/mec/meta_boxes/search_form.php:594 app/features/speakers.php:56
|
3980 |
+
#: app/features/speakers.php:243 app/libraries/main.php:4487
|
3981 |
#: app/libraries/skins.php:859
|
3982 |
msgid "Speaker"
|
3983 |
msgstr ""
|
4067 |
msgstr "Google Maps auf der Veranstaltungsseite anzeigen"
|
4068 |
|
4069 |
#: app/features/mec/modules.php:277 app/features/mec/modules.php:435
|
4070 |
+
#: app/features/mec/settings.php:888 app/features/mec/settings.php:893
|
4071 |
msgid "API Key"
|
4072 |
msgstr "API Schlüssel"
|
4073 |
|
4074 |
+
#: app/features/mec/modules.php:283 app/features/mec/settings.php:894
|
4075 |
+
#: app/features/mec/settings.php:907
|
4076 |
msgid "Required!"
|
4077 |
msgstr "Erforderlich (Pflichtfeld)"
|
4078 |
|
4093 |
msgid "Google Maps Style"
|
4094 |
msgstr "Google Maps Stil"
|
4095 |
|
4096 |
+
#: app/features/mec/modules.php:311 app/features/mec/single.php:266
|
4097 |
msgid "Default"
|
4098 |
msgstr "Standardeinstellung"
|
4099 |
|
4182 |
msgid "Next Occurrence of Other Events"
|
4183 |
msgstr "Nächstes Auftreten von anderen Events."
|
4184 |
|
4185 |
+
#: app/features/mec/modules.php:497 app/features/mec/single.php:221
|
4186 |
msgid "Default is M d Y"
|
4187 |
msgstr "Standardwert ist M-T-J"
|
4188 |
|
4202 |
msgid "Add booking activity to user profile"
|
4203 |
msgstr "Fügt Buchungsaktivitäten dem Benutzerprofil hinzu"
|
4204 |
|
4205 |
+
#: app/features/mec/notifications.php:229
|
4206 |
msgid "Enable booking notification"
|
4207 |
msgstr "Buchungsbenachrichtigung aktivieren"
|
4208 |
|
4209 |
+
#: app/features/mec/notifications.php:233
|
4210 |
msgid "It sends to attendee after booking for notifying him/her."
|
4211 |
msgstr ""
|
4212 |
"Wird an den Teilnehmer in Anschluss an die Buchung versendet, um Ihn/Sie zu "
|
4213 |
"benachrichtigen."
|
4214 |
|
4215 |
+
#: app/features/mec/notifications.php:235
|
4216 |
+
#: app/features/mec/notifications.php:292
|
4217 |
+
#: app/features/mec/notifications.php:344
|
4218 |
+
#: app/features/mec/notifications.php:403
|
4219 |
+
#: app/features/mec/notifications.php:471
|
4220 |
+
#: app/features/mec/notifications.php:534
|
4221 |
+
#: app/features/mec/notifications.php:607
|
4222 |
msgid "Email Subject"
|
4223 |
msgstr "Email Betreff"
|
4224 |
|
4225 |
+
#: app/features/mec/notifications.php:239
|
4226 |
+
#: app/features/mec/notifications.php:243
|
4227 |
+
#: app/features/mec/notifications.php:296
|
4228 |
+
#: app/features/mec/notifications.php:300
|
4229 |
+
#: app/features/mec/notifications.php:348
|
4230 |
+
#: app/features/mec/notifications.php:352
|
4231 |
+
#: app/features/mec/notifications.php:407
|
4232 |
+
#: app/features/mec/notifications.php:411
|
4233 |
+
#: app/features/mec/notifications.php:475
|
4234 |
+
#: app/features/mec/notifications.php:479
|
4235 |
+
#: app/features/mec/notifications.php:538
|
4236 |
+
#: app/features/mec/notifications.php:542
|
4237 |
+
#: app/features/mec/notifications.php:553
|
4238 |
+
#: app/features/mec/notifications.php:611
|
4239 |
+
#: app/features/mec/notifications.php:615
|
4240 |
msgid "Custom Recipients"
|
4241 |
msgstr "Individuelle Empfänger"
|
4242 |
|
4243 |
+
#: app/features/mec/notifications.php:244
|
4244 |
+
#: app/features/mec/notifications.php:301
|
4245 |
+
#: app/features/mec/notifications.php:353
|
4246 |
+
#: app/features/mec/notifications.php:412
|
4247 |
+
#: app/features/mec/notifications.php:480
|
4248 |
+
#: app/features/mec/notifications.php:543
|
4249 |
+
#: app/features/mec/notifications.php:554
|
4250 |
+
#: app/features/mec/notifications.php:616
|
4251 |
msgid "Insert comma separated emails for multiple recipients."
|
4252 |
msgstr "Geben Sie mit Komma getrennte email-Adressen ein für mehrere Empfänger"
|
4253 |
|
4254 |
+
#: app/features/mec/notifications.php:251
|
4255 |
+
#: app/features/mec/notifications.php:423
|
4256 |
+
#: app/features/mec/notifications.php:487
|
4257 |
msgid "Send the email to event organizer"
|
4258 |
msgstr "Sendet das Email zum Event Organisator"
|
4259 |
|
4260 |
+
#: app/features/mec/notifications.php:254
|
4261 |
+
#: app/features/mec/notifications.php:307
|
4262 |
+
#: app/features/mec/notifications.php:359
|
4263 |
+
#: app/features/mec/notifications.php:430
|
4264 |
+
#: app/features/mec/notifications.php:490
|
4265 |
+
#: app/features/mec/notifications.php:560
|
4266 |
+
#: app/features/mec/notifications.php:622
|
4267 |
msgid "Email Content"
|
4268 |
msgstr "Email Inhalt"
|
4269 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4270 |
#: app/features/mec/notifications.php:257
|
4271 |
#: app/features/mec/notifications.php:310
|
4272 |
#: app/features/mec/notifications.php:362
|
4273 |
#: app/features/mec/notifications.php:433
|
4274 |
#: app/features/mec/notifications.php:493
|
4275 |
#: app/features/mec/notifications.php:563
|
4276 |
+
#: app/features/mec/notifications.php:625
|
4277 |
+
msgid "You can use following placeholders"
|
4278 |
+
msgstr "Sie können die folgenden Platzhalter wählen"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4279 |
|
4280 |
#: app/features/mec/notifications.php:259
|
4281 |
#: app/features/mec/notifications.php:312
|
4283 |
#: app/features/mec/notifications.php:435
|
4284 |
#: app/features/mec/notifications.php:495
|
4285 |
#: app/features/mec/notifications.php:565
|
4286 |
+
msgid "First name of attendee"
|
4287 |
+
msgstr "Vorname des Teilnehmers"
|
4288 |
|
4289 |
#: app/features/mec/notifications.php:260
|
4290 |
#: app/features/mec/notifications.php:313
|
4292 |
#: app/features/mec/notifications.php:436
|
4293 |
#: app/features/mec/notifications.php:496
|
4294 |
#: app/features/mec/notifications.php:566
|
4295 |
+
msgid "Last name of attendee"
|
4296 |
+
msgstr "Nachname des Teilnehmers"
|
4297 |
|
4298 |
#: app/features/mec/notifications.php:261
|
4299 |
#: app/features/mec/notifications.php:314
|
4301 |
#: app/features/mec/notifications.php:437
|
4302 |
#: app/features/mec/notifications.php:497
|
4303 |
#: app/features/mec/notifications.php:567
|
4304 |
+
msgid "Email of attendee"
|
4305 |
+
msgstr "Email des Teilnehmers"
|
|
|
|
|
4306 |
|
4307 |
#: app/features/mec/notifications.php:262
|
4308 |
#: app/features/mec/notifications.php:315
|
4310 |
#: app/features/mec/notifications.php:438
|
4311 |
#: app/features/mec/notifications.php:498
|
4312 |
#: app/features/mec/notifications.php:568
|
4313 |
+
msgid "Booked date of event"
|
4314 |
+
msgstr "Gebuchtes Datum der Veranstaltung"
|
4315 |
|
4316 |
#: app/features/mec/notifications.php:263
|
4317 |
#: app/features/mec/notifications.php:316
|
4319 |
#: app/features/mec/notifications.php:439
|
4320 |
#: app/features/mec/notifications.php:499
|
4321 |
#: app/features/mec/notifications.php:569
|
4322 |
+
#, fuzzy
|
4323 |
+
#| msgid "Booked date of event"
|
4324 |
+
msgid "Booked time of event"
|
4325 |
+
msgstr "Gebuchtes Datum der Veranstaltung"
|
4326 |
|
4327 |
#: app/features/mec/notifications.php:264
|
4328 |
#: app/features/mec/notifications.php:317
|
4330 |
#: app/features/mec/notifications.php:440
|
4331 |
#: app/features/mec/notifications.php:500
|
4332 |
#: app/features/mec/notifications.php:570
|
4333 |
+
msgid "Booking Price"
|
4334 |
+
msgstr "Buchungspreis"
|
|
|
4335 |
|
4336 |
#: app/features/mec/notifications.php:265
|
4337 |
#: app/features/mec/notifications.php:318
|
4340 |
#: app/features/mec/notifications.php:501
|
4341 |
#: app/features/mec/notifications.php:571
|
4342 |
#: app/features/mec/notifications.php:631
|
4343 |
+
msgid "Your website title"
|
4344 |
+
msgstr "Titel Ihrer Webseite"
|
4345 |
|
4346 |
#: app/features/mec/notifications.php:266
|
4347 |
#: app/features/mec/notifications.php:319
|
4349 |
#: app/features/mec/notifications.php:442
|
4350 |
#: app/features/mec/notifications.php:502
|
4351 |
#: app/features/mec/notifications.php:572
|
4352 |
+
#: app/features/mec/notifications.php:632
|
4353 |
+
msgid "Your website URL"
|
4354 |
+
msgstr "URL Ihrer Webseite"
|
4355 |
|
4356 |
#: app/features/mec/notifications.php:267
|
4357 |
#: app/features/mec/notifications.php:320
|
4359 |
#: app/features/mec/notifications.php:443
|
4360 |
#: app/features/mec/notifications.php:503
|
4361 |
#: app/features/mec/notifications.php:573
|
4362 |
+
#: app/features/mec/notifications.php:633
|
4363 |
+
msgid "Your website description"
|
4364 |
+
msgstr "Beschreibung Ihrer Webseite"
|
|
|
4365 |
|
4366 |
#: app/features/mec/notifications.php:268
|
4367 |
#: app/features/mec/notifications.php:321
|
4369 |
#: app/features/mec/notifications.php:444
|
4370 |
#: app/features/mec/notifications.php:504
|
4371 |
#: app/features/mec/notifications.php:574
|
4372 |
+
msgid "Event title"
|
4373 |
+
msgstr "Titel der Veranstaltung"
|
|
|
|
|
4374 |
|
4375 |
#: app/features/mec/notifications.php:269
|
4376 |
#: app/features/mec/notifications.php:322
|
4378 |
#: app/features/mec/notifications.php:445
|
4379 |
#: app/features/mec/notifications.php:505
|
4380 |
#: app/features/mec/notifications.php:575
|
4381 |
+
#, fuzzy
|
4382 |
+
#| msgid "Event Link"
|
4383 |
+
msgid "Event link"
|
4384 |
+
msgstr "Veranstaltungslink"
|
4385 |
|
4386 |
#: app/features/mec/notifications.php:270
|
4387 |
#: app/features/mec/notifications.php:323
|
4389 |
#: app/features/mec/notifications.php:446
|
4390 |
#: app/features/mec/notifications.php:506
|
4391 |
#: app/features/mec/notifications.php:576
|
4392 |
+
#, fuzzy
|
4393 |
+
#| msgid "Organizer name of booked event"
|
4394 |
+
msgid "Speaker name of booked event"
|
4395 |
+
msgstr "Name des Veranstalters des gebuchten Events"
|
4396 |
|
4397 |
#: app/features/mec/notifications.php:271
|
4398 |
#: app/features/mec/notifications.php:324
|
4400 |
#: app/features/mec/notifications.php:447
|
4401 |
#: app/features/mec/notifications.php:507
|
4402 |
#: app/features/mec/notifications.php:577
|
4403 |
+
msgid "Organizer name of booked event"
|
4404 |
+
msgstr "Name des Veranstalters des gebuchten Events"
|
4405 |
|
4406 |
#: app/features/mec/notifications.php:272
|
4407 |
#: app/features/mec/notifications.php:325
|
4409 |
#: app/features/mec/notifications.php:448
|
4410 |
#: app/features/mec/notifications.php:508
|
4411 |
#: app/features/mec/notifications.php:578
|
4412 |
+
msgid "Organizer tel of booked event"
|
4413 |
+
msgstr "Tel des Veranstalters"
|
4414 |
|
4415 |
#: app/features/mec/notifications.php:273
|
4416 |
#: app/features/mec/notifications.php:326
|
4418 |
#: app/features/mec/notifications.php:449
|
4419 |
#: app/features/mec/notifications.php:509
|
4420 |
#: app/features/mec/notifications.php:579
|
4421 |
+
msgid "Organizer email of booked event"
|
4422 |
+
msgstr "Email des Veranstalters des gebuchten events"
|
4423 |
|
4424 |
#: app/features/mec/notifications.php:274
|
4425 |
+
#: app/features/mec/notifications.php:327
|
4426 |
+
#: app/features/mec/notifications.php:379
|
4427 |
+
#: app/features/mec/notifications.php:450
|
4428 |
+
#: app/features/mec/notifications.php:510
|
4429 |
+
#: app/features/mec/notifications.php:580
|
4430 |
+
msgid "Location name of booked event"
|
4431 |
+
msgstr "Veranstaltungsort"
|
4432 |
+
|
4433 |
+
#: app/features/mec/notifications.php:275
|
4434 |
+
#: app/features/mec/notifications.php:328
|
4435 |
+
#: app/features/mec/notifications.php:380
|
4436 |
#: app/features/mec/notifications.php:451
|
4437 |
#: app/features/mec/notifications.php:511
|
4438 |
+
#: app/features/mec/notifications.php:581
|
4439 |
+
msgid "Location address of booked event"
|
4440 |
+
msgstr "Adresse der gebuchten Veranstaltung"
|
4441 |
+
|
4442 |
+
#: app/features/mec/notifications.php:276
|
4443 |
+
#: app/features/mec/notifications.php:453
|
4444 |
+
#: app/features/mec/notifications.php:513
|
4445 |
msgid "Full Attendee info such as booking form data, name, email etc."
|
4446 |
msgstr ""
|
4447 |
"Gesamte Teinehmerinformationen wie z.B. Daten aus dem Buchungsformular, "
|
4448 |
"Name, email, etc."
|
4449 |
|
4450 |
+
#: app/features/mec/notifications.php:277
|
4451 |
+
#: app/features/mec/notifications.php:382
|
4452 |
+
#: app/features/mec/notifications.php:583
|
4453 |
msgid "Invoice Link"
|
4454 |
msgstr "Rechnungslink"
|
4455 |
|
4456 |
+
#: app/features/mec/notifications.php:278
|
4457 |
+
#: app/features/mec/notifications.php:330
|
4458 |
+
#: app/features/mec/notifications.php:383
|
4459 |
+
#: app/features/mec/notifications.php:454
|
4460 |
+
#: app/features/mec/notifications.php:514
|
4461 |
+
#: app/features/mec/notifications.php:584
|
4462 |
msgid "Total Attendees"
|
4463 |
msgstr ""
|
4464 |
|
4465 |
+
#: app/features/mec/notifications.php:279
|
4466 |
+
#: app/features/mec/notifications.php:331
|
4467 |
+
#: app/features/mec/notifications.php:384
|
4468 |
+
#: app/features/mec/notifications.php:585
|
4469 |
#, fuzzy
|
4470 |
#| msgid "Ticket Name"
|
4471 |
msgid "Ticket name"
|
4472 |
msgstr "Ticket Name"
|
4473 |
|
4474 |
+
#: app/features/mec/notifications.php:280
|
4475 |
+
#: app/features/mec/notifications.php:332
|
4476 |
+
#: app/features/mec/notifications.php:385
|
4477 |
+
#: app/features/mec/notifications.php:586
|
4478 |
#, fuzzy
|
4479 |
#| msgid "Ticket Name"
|
4480 |
msgid "Ticket time"
|
4481 |
msgstr "Ticket Name"
|
4482 |
|
4483 |
+
#: app/features/mec/notifications.php:281
|
4484 |
+
#: app/features/mec/notifications.php:333
|
4485 |
+
#: app/features/mec/notifications.php:386
|
4486 |
+
#: app/features/mec/notifications.php:587
|
4487 |
#, fuzzy
|
4488 |
#| msgid "Download Invoice"
|
4489 |
msgid "Download ICS file"
|
4490 |
msgstr "Download Rechnung\n"
|
4491 |
|
4492 |
+
#: app/features/mec/notifications.php:290
|
4493 |
msgid "It sends to attendee email for verifying their booking/email."
|
4494 |
msgstr ""
|
4495 |
"Versendet an den Teilnehmer eine Email um dessen Buchung/Mail zu "
|
4496 |
"verifizieren."
|
4497 |
|
4498 |
+
#: app/features/mec/notifications.php:329
|
4499 |
msgid "Email/Booking verification link."
|
4500 |
msgstr "Bestätigungslink für Email/Buchung"
|
4501 |
|
4502 |
+
#: app/features/mec/notifications.php:342
|
4503 |
msgid "It sends to attendee after confirming the booking by admin."
|
4504 |
msgstr ""
|
4505 |
"Es wird an den Teilnehmer gesendet nach Bestätigung der Buchung vom admin."
|
4506 |
|
4507 |
+
#: app/features/mec/notifications.php:381
|
4508 |
+
#: app/features/mec/notifications.php:582
|
4509 |
msgid "Booking cancellation link."
|
4510 |
msgstr "Link zur Stornierung der Buchung"
|
4511 |
|
4512 |
+
#: app/features/mec/notifications.php:397
|
4513 |
#, fuzzy
|
4514 |
#| msgid "Enable new event notification"
|
4515 |
msgid "Enable cancellation notification"
|
4516 |
msgstr "Benachrichtigung bei neuen Veranstaltungen aktivieren"
|
4517 |
|
4518 |
+
#: app/features/mec/notifications.php:401
|
4519 |
#, fuzzy
|
4520 |
#| msgid "It sends to attendee after booking for notifying him/her."
|
4521 |
msgid ""
|
4525 |
"Wird an den Teilnehmer in Anschluss an die Buchung versendet, um Ihn/Sie zu "
|
4526 |
"benachrichtigen."
|
4527 |
|
4528 |
+
#: app/features/mec/notifications.php:419
|
4529 |
#, fuzzy
|
4530 |
#| msgid "Send the email to event organizer"
|
4531 |
msgid "Send the email to admin"
|
4532 |
msgstr "Sendet das Email zum Event Organisator"
|
4533 |
|
4534 |
+
#: app/features/mec/notifications.php:427
|
4535 |
#, fuzzy
|
4536 |
#| msgid "Send the email to event organizer"
|
4537 |
msgid "Send the email to booking user"
|
4538 |
msgstr "Sendet das Email zum Event Organisator"
|
4539 |
|
4540 |
+
#: app/features/mec/notifications.php:452
|
4541 |
+
#: app/features/mec/notifications.php:512
|
4542 |
msgid "Admin booking management link."
|
4543 |
msgstr "Admin-link zur Buchungsverwaltung"
|
4544 |
|
4545 |
+
#: app/features/mec/notifications.php:465
|
4546 |
#, fuzzy
|
4547 |
#| msgid "Enable booking notification"
|
4548 |
msgid "Enable admin notification"
|
4549 |
msgstr "Buchungsbenachrichtigung aktivieren"
|
4550 |
|
4551 |
+
#: app/features/mec/notifications.php:469
|
4552 |
msgid "It sends to admin to notify him/her that a new booking received."
|
4553 |
msgstr ""
|
4554 |
"Sendet eine Benachrichtigung an den Adminstrator um diesen darüber zu "
|
4555 |
"Informieren, dass eine neue Buchung eingegangen ist."
|
4556 |
|
4557 |
+
#: app/features/mec/notifications.php:525
|
4558 |
msgid "Enable booking reminder notification"
|
4559 |
msgstr "Aktivieren Sie die Erinnerung für die Buchungserinnerung"
|
4560 |
|
4561 |
+
#: app/features/mec/notifications.php:531
|
4562 |
#, php-format
|
4563 |
msgid ""
|
4564 |
"Set a cronjob to call %s file once per day otherwise it won't send the "
|
4570 |
"Sie diese Datei% s aufrufen sollten, sonst könnten die Erinnerungen mehrmals "
|
4571 |
"gesendet werden."
|
4572 |
|
4573 |
+
#: app/features/mec/notifications.php:531
|
4574 |
msgid "only once per day"
|
4575 |
msgstr "nur einmal pro Tag"
|
4576 |
|
4577 |
+
#: app/features/mec/notifications.php:549
|
4578 |
msgid "Days"
|
4579 |
msgstr "Tage"
|
4580 |
|
4581 |
+
#: app/features/mec/notifications.php:601
|
4582 |
msgid "Enable new event notification"
|
4583 |
msgstr "Benachrichtigung bei neuen Veranstaltungen aktivieren"
|
4584 |
|
4585 |
+
#: app/features/mec/notifications.php:605
|
4586 |
msgid ""
|
4587 |
"It sends after adding a new event from frontend event submission or from "
|
4588 |
"website backend."
|
4590 |
"Wird nach dem Hinzufügen einer neuen Veranstaltung aus der Frontend-"
|
4591 |
"Übermittlung oder dem Backend versandt."
|
4592 |
|
4593 |
+
#: app/features/mec/notifications.php:627
|
4594 |
msgid "Title of event"
|
4595 |
msgstr "Titel der Veranstaltung"
|
4596 |
|
4597 |
+
#: app/features/mec/notifications.php:628
|
4598 |
#, fuzzy
|
4599 |
#| msgid "Title of event"
|
4600 |
msgid "Link of event"
|
4601 |
msgstr "Titel der Veranstaltung"
|
4602 |
|
4603 |
+
#: app/features/mec/notifications.php:629
|
4604 |
msgid "Status of event"
|
4605 |
msgstr "Status der Veranstaltung"
|
4606 |
|
4607 |
+
#: app/features/mec/notifications.php:630 app/features/mec/settings.php:839
|
4608 |
+
#: app/features/mec/settings.php:843
|
4609 |
msgid "Event Note"
|
4610 |
msgstr "Veranstaltungsnotiz"
|
4611 |
|
4612 |
+
#: app/features/mec/notifications.php:634
|
4613 |
msgid "Admin events management link."
|
4614 |
msgstr "Admin-link zur Veranstaltungsverwaltung"
|
4615 |
|
4616 |
+
#: app/features/mec/settings.php:255 app/features/mec/settings.php:265
|
4617 |
msgid "Hide Events"
|
4618 |
msgstr "Events verbergen"
|
4619 |
|
4620 |
+
#: app/features/mec/settings.php:258
|
4621 |
msgid "On Event Start"
|
4622 |
msgstr "Am Event Start"
|
4623 |
|
4624 |
+
#: app/features/mec/settings.php:259
|
4625 |
msgid "+1 Hour after start"
|
4626 |
msgstr "+1 Stunde nach dem Start"
|
4627 |
|
4628 |
+
#: app/features/mec/settings.php:260
|
4629 |
msgid "+2 Hours after start"
|
4630 |
msgstr "+2 Stunden nach dem Start"
|
4631 |
|
4632 |
+
#: app/features/mec/settings.php:261
|
4633 |
msgid "On Event End"
|
4634 |
msgstr "Am Event Ende"
|
4635 |
|
4636 |
+
#: app/features/mec/settings.php:266
|
4637 |
msgid ""
|
4638 |
"This option is for showing start/end time of events on frontend of website."
|
4639 |
msgstr ""
|
4640 |
"Diese Option ist um die Start/Endezeit von Events im Frontend der Webseite "
|
4641 |
"anzuzeigen"
|
4642 |
|
4643 |
+
#: app/features/mec/settings.php:275 app/features/mec/settings.php:284
|
4644 |
msgid "Multiple Day Events"
|
4645 |
msgstr "Mehrtagesveranstaltung"
|
4646 |
|
4647 |
+
#: app/features/mec/settings.php:278
|
4648 |
msgid "Show only first day on List/Grid/Slider skins"
|
4649 |
msgstr "Zeige nur den ersten Tag auf Listen/Raster(Grid)/Slider skins."
|
4650 |
|
4651 |
+
#: app/features/mec/settings.php:279
|
4652 |
msgid "Show only first day on all skins"
|
4653 |
msgstr "Nur den ersten Tag in allen Ansichten zeigen"
|
4654 |
|
4655 |
+
#: app/features/mec/settings.php:280
|
4656 |
msgid "Show all days"
|
4657 |
msgstr "Alle Tage anzeigen"
|
4658 |
|
4659 |
+
#: app/features/mec/settings.php:285
|
4660 |
msgid ""
|
4661 |
"For showing all days of multiple day events on frontend or only show the "
|
4662 |
"first day."
|
4664 |
"Um alle Tage anzuzeigen bei Events über mehrere Tage im Frontend oder nur "
|
4665 |
"den ersten Tag anzeigen"
|
4666 |
|
4667 |
+
#: app/features/mec/settings.php:294
|
4668 |
msgid "Remove MEC Data on Plugin Uninstall"
|
4669 |
msgstr "Entfernen von MEC Data auf dem Plugin Deinstallierer"
|
4670 |
|
4671 |
+
#: app/features/mec/settings.php:298
|
4672 |
msgid "Enabled"
|
4673 |
msgstr "Aktiviert"
|
4674 |
|
4675 |
+
#: app/features/mec/settings.php:304
|
4676 |
msgid "Exclude Date Suffix"
|
4677 |
msgstr "Ausschlussdatum Suffix"
|
4678 |
|
4679 |
+
#: app/features/mec/settings.php:307
|
4680 |
msgid "Remove suffix from calendars"
|
4681 |
msgstr "Suffix aus den Kalendern entfernen"
|
4682 |
|
4683 |
+
#: app/features/mec/settings.php:311
|
4684 |
#, fuzzy
|
4685 |
#| msgid "Remove suffix from calendars"
|
4686 |
msgid "Remove \"Th\" on calendar"
|
4687 |
msgstr "Suffix aus den Kalendern entfernen"
|
4688 |
|
4689 |
+
#: app/features/mec/settings.php:312
|
4690 |
msgid ""
|
4691 |
"Checked this checkbox to remove 'Th' on calendar ( ex: '12Th' remove Th, "
|
4692 |
"showing just '12' )"
|
4693 |
msgstr ""
|
4694 |
|
4695 |
+
#: app/features/mec/settings.php:321 app/features/mec/settings.php:331
|
4696 |
+
#: app/libraries/main.php:4491
|
4697 |
msgid "Weekdays"
|
4698 |
msgstr "Wochentage"
|
4699 |
|
4700 |
+
#: app/features/mec/settings.php:332
|
4701 |
#, fuzzy
|
4702 |
#| msgid ""
|
4703 |
#| "Proceed with caution. Default is set to Monday, Tuesday, Wednesday, "
|
4710 |
"Vorsichtig vorgehen. Standardwert ist auf Montag, Dienstag, Mittwoch, "
|
4711 |
"Donnerstag und Freitag gesetzt."
|
4712 |
|
4713 |
+
#: app/features/mec/settings.php:342 app/features/mec/settings.php:352
|
4714 |
msgid "Weekends"
|
4715 |
msgstr "Wochenenden"
|
4716 |
|
4717 |
+
#: app/features/mec/settings.php:353
|
4718 |
msgid ""
|
4719 |
"Proceed with caution. Default is set to Saturday and Sunday ( you can change "
|
4720 |
"'Week Starts' on WordPress Dashboard > Settings > General - bottom of the "
|
4721 |
"page )."
|
4722 |
msgstr ""
|
4723 |
|
4724 |
+
#: app/features/mec/settings.php:367 app/features/mec/settings.php:372
|
4725 |
msgid "Archive Page Title"
|
4726 |
msgstr "Titel der Archivseite"
|
4727 |
|
4728 |
+
#: app/features/mec/settings.php:373
|
4729 |
#, fuzzy
|
4730 |
#| msgid "Default value is Events"
|
4731 |
msgid "Default value is Events - It's title of the page"
|
4732 |
msgstr "Der Standardwert ist Ereignisse (Events)"
|
4733 |
|
4734 |
+
#: app/features/mec/settings.php:381 app/features/mec/settings.php:449
|
4735 |
msgid "Archive Page Skin"
|
4736 |
msgstr "Skin Seite Archiv"
|
4737 |
|
4738 |
+
#: app/features/mec/settings.php:389
|
4739 |
#, fuzzy
|
4740 |
#| msgid "Edit shortcodes"
|
4741 |
msgid "Put shortcode..."
|
4742 |
msgstr "Shortcode ändern"
|
4743 |
|
4744 |
+
#: app/features/mec/settings.php:392 app/features/mec/settings.php:407
|
4745 |
+
#: app/features/mec/settings.php:410 app/features/mec/settings.php:419
|
4746 |
+
#: app/features/mec/settings.php:445 app/features/mec/settings.php:466
|
4747 |
+
#: app/features/mec/settings.php:481 app/features/mec/settings.php:484
|
4748 |
+
#: app/features/mec/settings.php:493 app/features/mec/settings.php:519
|
4749 |
#, fuzzy
|
4750 |
#| msgid "The event is ongoing."
|
4751 |
msgid "There is no skins"
|
4752 |
msgstr "Die Veranstaltung ist im Gange."
|
4753 |
|
4754 |
+
#: app/features/mec/settings.php:395 app/features/mec/settings.php:469
|
4755 |
+
#: app/features/mec/single.php:248
|
4756 |
msgid "Modern Style"
|
4757 |
msgstr "Moderner Stil"
|
4758 |
|
4759 |
+
#: app/features/mec/settings.php:437 app/features/mec/settings.php:511
|
4760 |
#, fuzzy
|
4761 |
#| msgid "Colorful"
|
4762 |
msgid "colorful"
|
4763 |
msgstr "Farbenfroh"
|
4764 |
|
4765 |
+
#: app/features/mec/settings.php:442 app/features/mec/settings.php:516
|
4766 |
#, fuzzy
|
4767 |
#| msgid "Plain Style"
|
4768 |
msgid "Clean Style"
|
4769 |
msgstr "Einfacher schlichter Stil"
|
4770 |
|
4771 |
+
#: app/features/mec/settings.php:450
|
4772 |
#, fuzzy
|
4773 |
#| msgid "Default value is Calendar/Monthly View"
|
4774 |
msgid "Default value is Calendar/Monthly View, But you can change it "
|
4775 |
msgstr "Der Standardwert ist Kalender / Monatsansicht"
|
4776 |
|
4777 |
+
#: app/features/mec/settings.php:450 app/features/mec/settings.php:524
|
4778 |
msgid "See Demo"
|
4779 |
msgstr ""
|
4780 |
|
4781 |
+
#: app/features/mec/settings.php:458 app/features/mec/settings.php:523
|
4782 |
msgid "Category Page Skin"
|
4783 |
msgstr "Kategorie Seiten Skin"
|
4784 |
|
4785 |
+
#: app/features/mec/settings.php:524
|
4786 |
msgid ""
|
4787 |
"Default value is List View - But you can change it Set a skin for all "
|
4788 |
"categories."
|
4789 |
msgstr ""
|
4790 |
|
4791 |
+
#: app/features/mec/settings.php:532 app/features/mec/settings.php:540
|
4792 |
msgid "Category Events Method"
|
4793 |
msgstr ""
|
4794 |
|
4795 |
+
#: app/features/mec/settings.php:536
|
4796 |
msgid "Expired Events"
|
4797 |
msgstr ""
|
4798 |
|
4799 |
+
#: app/features/mec/settings.php:541
|
4800 |
msgid "Default value is Upcoming Events"
|
4801 |
msgstr ""
|
4802 |
|
4803 |
+
#: app/features/mec/settings.php:549 app/features/mec/settings.php:557
|
4804 |
msgid "Events Archive Status"
|
4805 |
msgstr "Events Archiv Status"
|
4806 |
|
4807 |
+
#: app/features/mec/settings.php:552
|
4808 |
msgid "Enabled (Recommended)"
|
4809 |
msgstr "Ist aktiviert (empfohlen)"
|
4810 |
|
4811 |
+
#: app/features/mec/settings.php:558
|
4812 |
msgid ""
|
4813 |
"If you disable it, then you should create a page as archive page of MEC. "
|
4814 |
"Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
|
4818 |
"erstellen. Page´s slug muss gleich sein wie \"Main Slug\" von MEC. Außerdem "
|
4819 |
"werden alle MEC-Rewrite-Regeln deaktiviert."
|
4820 |
|
4821 |
+
#: app/features/mec/settings.php:571 app/features/mec/settings.php:576
|
4822 |
msgid "Main Slug"
|
4823 |
msgstr "Main Slug"
|
4824 |
|
4825 |
+
#: app/features/mec/settings.php:577
|
4826 |
msgid ""
|
4827 |
"Default value is events. You can not have a page with this name. MEC allows "
|
4828 |
"you to create custom URLs for the permalinks and archives to enhance the "
|
4829 |
"applicability and forward-compatibility of the links."
|
4830 |
msgstr ""
|
4831 |
|
4832 |
+
#: app/features/mec/settings.php:581 app/features/mec/settings.php:595
|
4833 |
#, fuzzy
|
4834 |
#| msgid ""
|
4835 |
#| "Default value is events. Valid characters are lowercase a-z, - character "
|
4839 |
"Standardwert ist Events. Gültige Zeichen sind Kleinbuchstaben a-z, - Zeichen "
|
4840 |
"und Zahlen."
|
4841 |
|
4842 |
+
#: app/features/mec/settings.php:585 app/features/mec/settings.php:590
|
4843 |
msgid "Category Slug"
|
4844 |
msgstr "Category Slug"
|
4845 |
|
4846 |
+
#: app/features/mec/settings.php:591
|
4847 |
#, fuzzy
|
4848 |
#| msgid ""
|
4849 |
#| "It's slug of MEC categories, you can change it to events-cat or something "
|
4859 |
"für den link. Zum Beispiel example.com/events-cat oder example.com/mec-"
|
4860 |
"category"
|
4861 |
|
4862 |
+
#: app/features/mec/settings.php:603
|
4863 |
msgid "Currency"
|
4864 |
msgstr "Währung"
|
4865 |
|
4866 |
+
#: app/features/mec/settings.php:613 app/features/mec/settings.php:618
|
4867 |
msgid "Currency Sign"
|
4868 |
msgstr "Währungssymbol"
|
4869 |
|
4870 |
+
#: app/features/mec/settings.php:619
|
4871 |
msgid "Default value will be \"currency\" if you leave it empty."
|
4872 |
msgstr "Standardwert wird \"currency\" sein wenn Sie es leer lassen"
|
4873 |
|
4874 |
+
#: app/features/mec/settings.php:626
|
4875 |
msgid "Currency Position"
|
4876 |
msgstr "Position des Währungssymbols"
|
4877 |
|
4878 |
+
#: app/features/mec/settings.php:629
|
4879 |
msgid "Before $10"
|
4880 |
msgstr "Vor $10"
|
4881 |
|
4882 |
+
#: app/features/mec/settings.php:630
|
4883 |
msgid "After 10$"
|
4884 |
msgstr "Nach 10$"
|
4885 |
|
4886 |
+
#: app/features/mec/settings.php:635
|
4887 |
msgid "Thousand Separator"
|
4888 |
msgstr "Tausendertrennzeichen"
|
4889 |
|
4890 |
+
#: app/features/mec/settings.php:641
|
4891 |
msgid "Decimal Separator"
|
4892 |
msgstr "Dezimaltrennzeichen"
|
4893 |
|
4894 |
+
#: app/features/mec/settings.php:651
|
4895 |
msgid "No decimal"
|
4896 |
msgstr "Keine Dezimale"
|
4897 |
|
4898 |
+
#: app/features/mec/settings.php:662
|
4899 |
msgid "Enable Google Recaptcha"
|
4900 |
msgstr "Google Recaptcha aktivieren"
|
4901 |
|
4902 |
+
#: app/features/mec/settings.php:669
|
4903 |
msgid "Enable on booking form"
|
4904 |
msgstr "Auf dem Buchungsformular aktivieren"
|
4905 |
|
4906 |
+
#: app/features/mec/settings.php:675
|
4907 |
#, fuzzy
|
4908 |
#| msgid "Enable on \"Frontend Event Submittion\" form"
|
4909 |
msgid "Enable on \"Frontend Event Submission\" form"
|
4910 |
msgstr "Aktivieren auf dem \"Frontend Event Submittion\" Formular"
|
4911 |
|
4912 |
+
#: app/features/mec/settings.php:679
|
4913 |
msgid "Site Key"
|
4914 |
msgstr "Site Key (Seitenschlüssel)"
|
4915 |
|
4916 |
+
#: app/features/mec/settings.php:685
|
4917 |
msgid "Secret Key"
|
4918 |
msgstr "Geheimschlüssel"
|
4919 |
|
4920 |
+
#: app/features/mec/settings.php:697 app/features/mec/settings.php:705
|
4921 |
msgid "Time Format"
|
4922 |
msgstr "Zeitformat"
|
4923 |
|
4924 |
+
#: app/features/mec/settings.php:700
|
4925 |
msgid "12 hours format with AM/PM"
|
4926 |
msgstr "12-Stunden-Format mit AM/FM"
|
4927 |
|
4928 |
+
#: app/features/mec/settings.php:701
|
4929 |
msgid "24 hours format"
|
4930 |
msgstr "24-Stunden-Format"
|
4931 |
|
4932 |
+
#: app/features/mec/settings.php:706
|
4933 |
msgid "This option, affects the selection of Start/End time."
|
4934 |
msgstr ""
|
4935 |
|
4936 |
+
#: app/features/mec/settings.php:714
|
4937 |
msgid "Events List Page"
|
4938 |
msgstr "Seite Liste der Veranstaltungen"
|
4939 |
|
4940 |
+
#: app/features/mec/settings.php:723 app/features/mec/settings.php:735
|
4941 |
#, php-format
|
4942 |
msgid "Put %s shortcode into the page."
|
4943 |
msgstr "%s shortcode in die Seite einfügen"
|
4944 |
|
4945 |
+
#: app/features/mec/settings.php:726
|
4946 |
msgid "Add/Edit Events Page"
|
4947 |
msgstr "Veranstaltungsseite hinzufügen/bearbeiten"
|
4948 |
|
4949 |
+
#: app/features/mec/settings.php:740
|
4950 |
msgid "Enable event submission by guest (Not logged-in) users"
|
4951 |
msgstr ""
|
4952 |
"Das Erstellen von Veranstaltungen durch Gäste (nicht angemeldete Nutzer) "
|
4953 |
"erlauben"
|
4954 |
|
4955 |
+
#: app/features/mec/settings.php:747
|
4956 |
msgid "Enable mandatory email and name for guest user"
|
4957 |
msgstr ""
|
4958 |
"Aktivieren Sie die obligatorische E-Mail und den Namen für Gastbenutzer"
|
4959 |
|
4960 |
+
#: app/features/mec/settings.php:751
|
4961 |
msgid "Frontend Event Submission Sections"
|
4962 |
msgstr "Frontend Veranstaltungen Einreichung Sektionen"
|
4963 |
|
4964 |
+
#: app/features/mec/settings.php:773 app/widgets/single.php:119
|
4965 |
msgid "Event Categories"
|
4966 |
msgstr "Veranstaltungskategorien"
|
4967 |
|
4968 |
+
#: app/features/mec/settings.php:779
|
4969 |
msgid "Event Labels"
|
4970 |
msgstr "Event Labels"
|
4971 |
|
4972 |
+
#: app/features/mec/settings.php:791
|
4973 |
msgid "Event Tags"
|
4974 |
msgstr "Event Schlagworte"
|
4975 |
|
4976 |
+
#: app/features/mec/settings.php:803 app/widgets/single.php:123
|
4977 |
msgid "Event Organizer"
|
4978 |
msgstr "Veranstaltungsmanager"
|
4979 |
|
4980 |
+
#: app/features/mec/settings.php:821
|
4981 |
msgid "Booking Options"
|
4982 |
msgstr "Buchungsoptionen"
|
4983 |
|
4984 |
+
#: app/features/mec/settings.php:827
|
4985 |
#, fuzzy
|
4986 |
#| msgid "Fees/Taxes Options"
|
4987 |
msgid "Fees / Taxes Options"
|
4988 |
msgstr "Gebühren/Steuer Optionen"
|
4989 |
|
4990 |
+
#: app/features/mec/settings.php:844
|
4991 |
#, php-format
|
4992 |
msgid ""
|
4993 |
"Users can put a note for editors while they're submitting the event. Also "
|
4999 |
"Eventbenachrichtigung setzen, um die Notizen der Benutzer in der E-Mail zu "
|
5000 |
"erhalten."
|
5001 |
|
5002 |
+
#: app/features/mec/settings.php:851 app/features/mec/settings.php:860
|
5003 |
msgid "Visibility of Note"
|
5004 |
msgstr "Sichtbarkeit der Anmerkungen zum Event "
|
5005 |
|
5006 |
+
#: app/features/mec/settings.php:854
|
5007 |
msgid "Always"
|
5008 |
msgstr "Immer"
|
5009 |
|
5010 |
+
#: app/features/mec/settings.php:855
|
5011 |
msgid "While event is not published"
|
5012 |
msgstr "Das Ereignis wird nicht veröffentlicht"
|
5013 |
|
5014 |
+
#: app/features/mec/settings.php:861
|
5015 |
msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
|
5016 |
msgstr ""
|
5017 |
"Die Ereignisnotiz wird im Frontend-Einreichungsformular angezeigt und das "
|
5018 |
"Ereignis im Backend bearbeitet."
|
5019 |
|
5020 |
+
#: app/features/mec/settings.php:872
|
5021 |
#, php-format
|
5022 |
msgid ""
|
5023 |
"Put %s shortcode into your desired page. Then users are able to see history "
|
5024 |
"of their bookings."
|
5025 |
msgstr ""
|
5026 |
|
5027 |
+
#: app/features/mec/settings.php:883
|
5028 |
msgid "Enable Mailchimp Integration"
|
5029 |
msgstr "Mailchimp Integration deaktivieren"
|
5030 |
|
5031 |
+
#: app/features/mec/settings.php:901 app/features/mec/settings.php:906
|
5032 |
msgid "List ID"
|
5033 |
msgstr "List ID"
|
5034 |
|
5035 |
+
#: app/features/mec/settings.php:914 app/features/mec/settings.php:922
|
5036 |
msgid "Subscription Status"
|
5037 |
msgstr "Buchungsstatus"
|
5038 |
|
5039 |
+
#: app/features/mec/settings.php:917
|
5040 |
msgid "Subscribe automatically"
|
5041 |
msgstr "automatisch Anmelden/Abonnieren"
|
5042 |
|
5043 |
+
#: app/features/mec/settings.php:918
|
5044 |
msgid "Subscribe by verification"
|
5045 |
msgstr ""
|
5046 |
"Anmelden/Abonnieren durch Bestätigung\n"
|
5047 |
" "
|
5048 |
|
5049 |
+
#: app/features/mec/settings.php:923
|
5050 |
msgid ""
|
5051 |
"If you choose \"Subscribe by verification\" then an email will send to user "
|
5052 |
"by mailchimp for subscription verification."
|
5054 |
"Wenn Sie \"Anmelden durch Verifizierung\" wählen, wird eine E-Mail an den "
|
5055 |
"Benutzer per Mailchimp zur Bestätigung gesendet."
|
5056 |
|
5057 |
+
#: app/features/mec/settings.php:935
|
5058 |
#, fuzzy
|
5059 |
#| msgid "Filter Options"
|
5060 |
msgid "Upload Field Options"
|
5061 |
msgstr "Filteroptionen"
|
5062 |
|
5063 |
+
#: app/features/mec/settings.php:937
|
5064 |
msgid "Mime types"
|
5065 |
msgstr ""
|
5066 |
|
5067 |
+
#: app/features/mec/settings.php:941
|
5068 |
msgid "Split mime types with \",\"."
|
5069 |
msgstr ""
|
5070 |
|
5071 |
+
#: app/features/mec/settings.php:941
|
5072 |
msgid "Default: jpeg,jpg,png,pdf"
|
5073 |
msgstr ""
|
5074 |
|
5075 |
+
#: app/features/mec/settings.php:944
|
5076 |
#, fuzzy
|
5077 |
#| msgid "Amount (Per Ticket)"
|
5078 |
msgid "Maximum file size"
|
5079 |
msgstr "Betrag (pro Ticket)"
|
5080 |
|
5081 |
+
#: app/features/mec/settings.php:948
|
5082 |
msgid "The unit is Megabyte \"MB\""
|
5083 |
msgstr ""
|
5084 |
|
5085 |
+
#: app/features/mec/single.php:215 app/features/mec/single.php:220
|
5086 |
msgid "Single Event Date Format"
|
5087 |
msgstr "Einzelveranstaltung Datumformat"
|
5088 |
|
5089 |
+
#: app/features/mec/single.php:228 app/features/mec/single.php:236
|
5090 |
msgid "Date Method"
|
5091 |
msgstr "Datum Methode"
|
5092 |
|
5093 |
+
#: app/features/mec/single.php:231
|
5094 |
msgid "Next occurrence date"
|
5095 |
msgstr "Nächstes vorkommende Datum"
|
5096 |
|
5097 |
+
#: app/features/mec/single.php:232
|
5098 |
msgid "Referred date"
|
5099 |
msgstr "Gewünschtes Datum"
|
5100 |
|
5101 |
+
#: app/features/mec/single.php:237
|
5102 |
#, fuzzy
|
5103 |
#| msgid ""
|
5104 |
#| "\"Referred date\" shows the event date based on referred date in event "
|
5109 |
"\"Gewünschtes Datum\" zeigt das Ereignisdatum basierend auf dem angegebenen "
|
5110 |
"Datum in der Eventliste an."
|
5111 |
|
5112 |
+
#: app/features/mec/single.php:244 app/features/mec/single.php:255
|
5113 |
msgid "Single Event Style"
|
5114 |
msgstr "Single Event Stil"
|
5115 |
|
5116 |
+
#: app/features/mec/single.php:247
|
5117 |
msgid "Default Style"
|
5118 |
msgstr "Standardstil voreingestellt"
|
5119 |
|
5120 |
+
#: app/features/mec/single.php:250
|
5121 |
#, fuzzy
|
5122 |
#| msgid "MEC Single Sidebar"
|
5123 |
msgid "Elementor Single Builder"
|
5124 |
msgstr "MEC Single Sidebar"
|
5125 |
|
5126 |
+
#: app/features/mec/single.php:256
|
5127 |
msgid "Choose your single event style."
|
5128 |
msgstr "Wählen Sie Ihren Single Event Stil"
|
5129 |
|
5130 |
+
#: app/features/mec/single.php:263 app/features/mec/single.php:271
|
5131 |
#, fuzzy
|
5132 |
#| msgid "Booking"
|
5133 |
msgid "Booking Style"
|
5134 |
msgstr "Buchung / Reservierung"
|
5135 |
|
5136 |
+
#: app/features/mec/single.php:267
|
5137 |
#, fuzzy
|
5138 |
#| msgid "Modal 1"
|
5139 |
msgid "Modal"
|
5140 |
msgstr "Modal 1"
|
5141 |
|
5142 |
+
#: app/features/mec/single.php:272
|
5143 |
msgid ""
|
5144 |
"Choose your Booking style, Please Note: When you set this feature to modal "
|
5145 |
"you can not see booking box if you set popoup module view on shortcodes"
|
5146 |
msgstr ""
|
5147 |
|
5148 |
+
#: app/features/mec/single.php:279
|
5149 |
msgid "Disable Block Editor (Gutenberg)"
|
5150 |
msgstr ""
|
5151 |
|
5152 |
+
#: app/features/mec/single.php:282
|
5153 |
msgid "Disable Block Editor"
|
5154 |
msgstr ""
|
5155 |
|
5156 |
+
#: app/features/mec/single.php:286
|
5157 |
msgid "Block Editor"
|
5158 |
msgstr ""
|
5159 |
|
5160 |
+
#: app/features/mec/single.php:287
|
5161 |
msgid ""
|
5162 |
"If you want to use the new WordPress block editor you should keep this "
|
5163 |
"checkbox unchecked."
|
5164 |
msgstr ""
|
5165 |
|
5166 |
+
#: app/features/mec/single.php:293 app/features/mec/single.php:300
|
5167 |
msgid "Breadcrumbs"
|
5168 |
msgstr ""
|
5169 |
|
5170 |
+
#: app/features/mec/single.php:296
|
5171 |
msgid "Enable Breadcrumbs."
|
5172 |
msgstr ""
|
5173 |
|
5174 |
+
#: app/features/mec/single.php:301
|
5175 |
msgid "Check this option, for showing the breadcrumbs on single event page"
|
5176 |
msgstr ""
|
5177 |
|
5178 |
+
#: app/features/mec/single.php:314
|
5179 |
msgid "Show countdown module on event page"
|
5180 |
msgstr "Countdownmodul auf Veranstaltungsseite anzeigen"
|
5181 |
|
5182 |
+
#: app/features/mec/single.php:319
|
5183 |
msgid "Countdown Style"
|
5184 |
msgstr "Countdown Stil"
|
5185 |
|
5186 |
+
#: app/features/mec/single.php:322
|
5187 |
msgid "Plain Style"
|
5188 |
msgstr "Einfacher schlichter Stil"
|
5189 |
|
5190 |
+
#: app/features/mec/single.php:323
|
5191 |
msgid "Flip Style"
|
5192 |
msgstr "Flip Stil"
|
5193 |
|
5194 |
+
#: app/features/mec/single.php:331 app/features/mec/single.php:338
|
5195 |
msgid "Exceptional days"
|
5196 |
msgstr "Ausgesuchte ausnehmende Tage"
|
5197 |
|
5198 |
+
#: app/features/mec/single.php:335
|
5199 |
msgid "Show exceptional days option on Add/Edit events page"
|
5200 |
msgstr ""
|
5201 |
"Ausnehmende Tage anzeigen auf der Seite Ereignisse hinzufügen / bearbeiten "
|
5202 |
"(Show exceptional days option on Add/Edit events page)"
|
5203 |
|
5204 |
+
#: app/features/mec/single.php:339
|
5205 |
msgid ""
|
5206 |
"Using this option you can include/exclude certain days to/from event "
|
5207 |
"occurrence dates."
|
5209 |
"Mit dieser Option können Sie bestimmte Tage von vorkommenden Eventdaten ein-/"
|
5210 |
"ausschließen."
|
5211 |
|
5212 |
+
#: app/features/mec/single.php:352
|
5213 |
msgid ""
|
5214 |
"Show additional organizers option on Add/Edit events page and single event "
|
5215 |
"page."
|
5217 |
"Zeigen Sie zusätzliche Organisatoren auf der Seite Events hinzufügen / "
|
5218 |
"bearbeiten und auf der Seite für einzelne Events an."
|
5219 |
|
5220 |
+
#: app/features/mec/single.php:358
|
5221 |
#, fuzzy
|
5222 |
#| msgid "Additional Organizers"
|
5223 |
msgid "Additional locations"
|
5224 |
msgstr "Zusätzliche Organisatoren"
|
5225 |
|
5226 |
+
#: app/features/mec/single.php:362
|
5227 |
#, fuzzy
|
5228 |
#| msgid ""
|
5229 |
#| "Show additional organizers option on Add/Edit events page and single "
|
5235 |
"Zeigen Sie zusätzliche Organisatoren auf der Seite Events hinzufügen / "
|
5236 |
"bearbeiten und auf der Seite für einzelne Events an."
|
5237 |
|
5238 |
+
#: app/features/mec/styles.php:181
|
5239 |
msgid "Custom Styles"
|
5240 |
msgstr "Benutzerdefinierte Stile"
|
5241 |
|
5242 |
+
#: app/features/mec/styles.php:186
|
5243 |
msgid ""
|
5244 |
"If you're a developer or you have some knowledge about CSS codes, you can "
|
5245 |
"place your desired styles codes here. These codes will be included in your "
|
5250 |
"Ihre eigenen Stilcodes einfügen. Diese Codes werden in Ihr Frontend "
|
5251 |
"übernommen und übersteuern die MEC- (oder Thema-) Grundeinstellungen."
|
5252 |
|
5253 |
+
#: app/features/mec/styling.php:10 app/features/mec/styling.php:311
|
5254 |
+
#: app/features/mec/styling.php:337
|
5255 |
msgid "Default Font"
|
5256 |
msgstr "Standardschriftart des Themas "
|
5257 |
|
5258 |
+
#: app/features/mec/styling.php:203
|
5259 |
msgid "Styling Option"
|
5260 |
msgstr "Style Optionen"
|
5261 |
|
5262 |
+
#: app/features/mec/styling.php:208
|
5263 |
msgid "Color Skin"
|
5264 |
msgstr "Farbe Skin"
|
5265 |
|
5266 |
+
#: app/features/mec/styling.php:211
|
5267 |
msgid "Predefined Color Skin"
|
5268 |
msgstr "Vordefinierte Farbenoberfläche"
|
5269 |
|
5270 |
+
#: app/features/mec/styling.php:254
|
5271 |
msgid "Custom Color Skin"
|
5272 |
msgstr "Benutzerdefinierte Farboberfläche"
|
5273 |
|
5274 |
+
#: app/features/mec/styling.php:260
|
5275 |
msgid ""
|
5276 |
"If you want to select a predefined color skin, you must clear the color of "
|
5277 |
"this item"
|
5278 |
msgstr ""
|
5279 |
|
5280 |
+
#: app/features/mec/styling.php:265
|
5281 |
msgid "Advanced Color Options (shortcodes)"
|
5282 |
msgstr ""
|
5283 |
|
5284 |
+
#: app/features/mec/styling.php:277
|
5285 |
#, fuzzy
|
5286 |
#| msgid "Title of event"
|
5287 |
msgid "Title Hover"
|
5288 |
msgstr "Titel der Veranstaltung"
|
5289 |
|
5290 |
+
#: app/features/mec/styling.php:294
|
5291 |
msgid "Typography"
|
5292 |
msgstr "Typographie"
|
5293 |
|
5294 |
+
#: app/features/mec/styling.php:296
|
5295 |
msgid "Heading (Events Title) Font Family"
|
5296 |
msgstr "Schriftart Überschrift (Titel der Veranstaltung)"
|
5297 |
|
5298 |
+
#: app/features/mec/styling.php:322
|
5299 |
msgid "Paragraph Font Family"
|
5300 |
msgstr "Schriftart Absätze"
|
5301 |
|
5302 |
+
#: app/features/mec/styling.php:349 app/features/mec/styling.php:355
|
5303 |
#, fuzzy
|
5304 |
#| msgid "Enable Google Recaptcha"
|
5305 |
msgid "Disable Google Fonts"
|
5306 |
msgstr "Google Recaptcha aktivieren"
|
5307 |
|
5308 |
+
#: app/features/mec/styling.php:356
|
5309 |
msgid "To be GDPR compliant you may need to disable Google fonts!"
|
5310 |
msgstr ""
|
5311 |
|
5312 |
+
#: app/features/mec/styling.php:365
|
5313 |
msgid "Container Width"
|
5314 |
msgstr ""
|
5315 |
|
5316 |
+
#: app/features/mec/styling.php:367 app/features/mec/styling.php:372
|
5317 |
msgid "Desktop Normal Screens"
|
5318 |
msgstr ""
|
5319 |
|
5320 |
+
#: app/features/mec/styling.php:373 app/features/mec/styling.php:386
|
5321 |
msgid "You can enter your theme container size in this field"
|
5322 |
msgstr ""
|
5323 |
|
5324 |
+
#: app/features/mec/styling.php:380 app/features/mec/styling.php:385
|
5325 |
msgid "Desktop Large Screens"
|
5326 |
msgstr ""
|
5327 |
|
5798 |
msgid "eg. https://webnus.net"
|
5799 |
msgstr "http://webnus.net"
|
5800 |
|
5801 |
+
#: app/features/organizers.php:306 app/libraries/main.php:4515
|
5802 |
#: app/skins/single.php:693
|
5803 |
msgid "Other Organizers"
|
5804 |
msgstr "Andere Veranstalter"
|
5820 |
msgid "#"
|
5821 |
msgstr ""
|
5822 |
|
5823 |
+
#: app/features/profile/profile.php:34 app/libraries/main.php:2573
|
5824 |
msgid "Status"
|
5825 |
msgstr ""
|
5826 |
|
5827 |
+
#: app/features/profile/profile.php:37 app/libraries/main.php:1709
|
5828 |
msgid "Attendees"
|
5829 |
msgstr "Teilnehmer"
|
5830 |
|
5839 |
msgid "<i class=\"mec-sl-eye\"></i> %s"
|
5840 |
msgstr ""
|
5841 |
|
5842 |
+
#: app/features/profile/profile.php:96 app/libraries/main.php:1723
|
5843 |
+
#: app/libraries/main.php:4513
|
5844 |
msgid "Ticket"
|
5845 |
msgstr "Ticket"
|
5846 |
|
5920 |
msgid "Discount"
|
5921 |
msgstr "Rabatt"
|
5922 |
|
5923 |
+
#: app/libraries/book.php:626 app/modules/booking/default.php:303
|
5924 |
+
#: app/modules/booking/default.php:401
|
5925 |
msgid "Download Invoice"
|
5926 |
msgstr "Download Rechnung"
|
5927 |
|
6000 |
"Eine Vorschau kann nicht angezeit werden, da es sich um einen geschützen "
|
6001 |
"Beitrag handelt."
|
6002 |
|
6003 |
+
#: app/libraries/main.php:330 app/libraries/main.php:1242
|
6004 |
+
#: app/libraries/main.php:1267
|
6005 |
msgid "Grid View"
|
6006 |
msgstr "Rasterdarstellung"
|
6007 |
|
6008 |
+
#: app/libraries/main.php:331 app/libraries/main.php:1243
|
6009 |
+
#: app/libraries/main.php:1268
|
6010 |
msgid "Agenda View"
|
6011 |
msgstr "Agendaansicht"
|
6012 |
|
6013 |
+
#: app/libraries/main.php:332 app/libraries/main.php:1234
|
6014 |
+
#: app/libraries/main.php:1259
|
6015 |
msgid "Full Calendar"
|
6016 |
msgstr "Ganzer Kalender"
|
6017 |
|
6018 |
+
#: app/libraries/main.php:334 app/libraries/main.php:1236
|
6019 |
+
#: app/libraries/main.php:1261
|
6020 |
msgid "Calendar/Monthly View"
|
6021 |
msgstr "Kalender-/Monatsansicht"
|
6022 |
|
6023 |
+
#: app/libraries/main.php:337 app/libraries/main.php:1239
|
6024 |
+
#: app/libraries/main.php:1264
|
6025 |
msgid "Timetable View"
|
6026 |
msgstr "Stundenplan"
|
6027 |
|
6028 |
+
#: app/libraries/main.php:338 app/libraries/main.php:1240
|
6029 |
+
#: app/libraries/main.php:1265
|
6030 |
msgid "Masonry View"
|
6031 |
msgstr "Kachel Ansicht"
|
6032 |
|
6033 |
+
#: app/libraries/main.php:339 app/libraries/main.php:1244
|
6034 |
+
#: app/libraries/main.php:1269
|
6035 |
msgid "Map View"
|
6036 |
msgstr "Kartenansicht"
|
6037 |
|
6055 |
msgid "Slider View"
|
6056 |
msgstr "Slideransicht"
|
6057 |
|
6058 |
+
#: app/libraries/main.php:382 app/libraries/main.php:4493
|
6059 |
msgid "SU"
|
6060 |
msgstr "SO"
|
6061 |
|
6062 |
+
#: app/libraries/main.php:383 app/libraries/main.php:4494
|
6063 |
msgid "MO"
|
6064 |
msgstr "MO"
|
6065 |
|
6066 |
+
#: app/libraries/main.php:384 app/libraries/main.php:4495
|
6067 |
msgid "TU"
|
6068 |
msgstr "DI"
|
6069 |
|
6070 |
+
#: app/libraries/main.php:385 app/libraries/main.php:4496
|
6071 |
msgid "WE"
|
6072 |
msgstr "MI"
|
6073 |
|
6074 |
+
#: app/libraries/main.php:386 app/libraries/main.php:4497
|
6075 |
msgid "TH"
|
6076 |
msgstr "DO"
|
6077 |
|
6078 |
+
#: app/libraries/main.php:387 app/libraries/main.php:4498
|
6079 |
msgid "FR"
|
6080 |
msgstr "FR"
|
6081 |
|
6082 |
+
#: app/libraries/main.php:388 app/libraries/main.php:4499
|
6083 |
msgid "SA"
|
6084 |
msgstr "SA"
|
6085 |
|
6086 |
+
#: app/libraries/main.php:543
|
6087 |
msgid "New Addons For MEC! Now Customize MEC in Elementor"
|
6088 |
msgstr ""
|
6089 |
|
6090 |
+
#: app/libraries/main.php:550
|
6091 |
msgid ""
|
6092 |
"The time has come at last, and the new practical add-ons for MEC have been "
|
6093 |
"released. This is a revolution in the world of Event Calendars. We have "
|
6095 |
"below:"
|
6096 |
msgstr ""
|
6097 |
|
6098 |
+
#: app/libraries/main.php:552
|
6099 |
msgid ""
|
6100 |
"<strong>WooCommerce Integration:</strong> You can now purchase ticket (as "
|
6101 |
"products) and Woo products at the same time."
|
6102 |
msgstr ""
|
6103 |
|
6104 |
+
#: app/libraries/main.php:553
|
6105 |
msgid ""
|
6106 |
"<strong>Elementor Single Builder:</strong> It enables you to create "
|
6107 |
"shortcodes in Elementor Live Editor."
|
6108 |
msgstr ""
|
6109 |
|
6110 |
+
#: app/libraries/main.php:554
|
6111 |
msgid ""
|
6112 |
"<strong>Elementor Form Builder:</strong> It allows you to use many different "
|
6113 |
"type of fields and rearrange them by drag and drop and modify their styles."
|
6114 |
msgstr ""
|
6115 |
|
6116 |
+
#: app/libraries/main.php:555
|
6117 |
msgid ""
|
6118 |
"<strong>Elementor Shortcode Builder:</strong> Edit single event page using "
|
6119 |
"Elementor. Manage the position of all elements in the Single page and in "
|
6120 |
"desktops, mobiles and tablets as well."
|
6121 |
msgstr ""
|
6122 |
|
6123 |
+
#: app/libraries/main.php:1097
|
6124 |
msgid "Events at this location"
|
6125 |
msgstr "Veranstaltungen an diesem Ort "
|
6126 |
|
6127 |
+
#: app/libraries/main.php:1097
|
6128 |
msgid "Event at this location"
|
6129 |
msgstr "Veranstaltung an diesem Ort "
|
6130 |
|
6131 |
+
#: app/libraries/main.php:1138
|
6132 |
msgid "Facebook"
|
6133 |
msgstr "Facebook"
|
6134 |
|
6135 |
+
#: app/libraries/main.php:1139
|
6136 |
msgid "Twitter"
|
6137 |
msgstr "Twitter"
|
6138 |
|
6139 |
+
#: app/libraries/main.php:1140 app/libraries/main.php:1190
|
6140 |
msgid "Linkedin"
|
6141 |
msgstr "Linkedin"
|
6142 |
|
6143 |
+
#: app/libraries/main.php:1141 app/libraries/main.php:1223
|
6144 |
msgid "VK"
|
6145 |
msgstr ""
|
6146 |
|
6147 |
+
#: app/libraries/main.php:1160
|
6148 |
msgid "Share on Facebook"
|
6149 |
msgstr "Teilen auf Facebook"
|
6150 |
|
6151 |
+
#: app/libraries/main.php:1175
|
6152 |
msgid "Tweet"
|
6153 |
msgstr "Tweet"
|
6154 |
|
6155 |
+
#: app/libraries/main.php:1245
|
6156 |
#, fuzzy
|
6157 |
#| msgid "Shortcode"
|
6158 |
msgid "Custom Shortcode"
|
6159 |
msgstr "Shortcode"
|
6160 |
|
6161 |
+
#: app/libraries/main.php:1604
|
6162 |
msgid "Your booking successfully verified."
|
6163 |
msgstr "Ihre Buchung wurde erfolgreich verifiziert."
|
6164 |
|
6165 |
+
#: app/libraries/main.php:1605
|
6166 |
msgid "Your booking cannot verify!"
|
6167 |
msgstr "Ihre Buchung kann nicht verifiziert werden!"
|
6168 |
|
6169 |
+
#: app/libraries/main.php:1617
|
6170 |
msgid "Your booking successfully canceled."
|
6171 |
msgstr "Ihre Buchung wurde erfolgreich storniert."
|
6172 |
|
6173 |
+
#: app/libraries/main.php:1618
|
6174 |
msgid "Your booking cannot be canceled."
|
6175 |
msgstr "Ihre Buchung kann nicht storniert werden."
|
6176 |
|
6177 |
+
#: app/libraries/main.php:1622
|
6178 |
msgid "You canceled the payment successfully."
|
6179 |
msgstr "Sie haben die Zahlung erfolgreich storniert."
|
6180 |
|
6181 |
+
#: app/libraries/main.php:1626
|
6182 |
msgid "You returned from payment gateway successfully."
|
6183 |
msgstr "Sie sind vom Bezahlungs-Gateway erfolgreich zurückgekehrt."
|
6184 |
|
6185 |
+
#: app/libraries/main.php:1650
|
6186 |
msgid "Cannot find the booking!"
|
6187 |
msgstr "Kann die Buchung nicht finden!"
|
6188 |
|
6189 |
+
#: app/libraries/main.php:1650
|
6190 |
msgid "Booking is invalid."
|
6191 |
msgstr "Buchung ist ungültig."
|
6192 |
|
6193 |
+
#: app/libraries/main.php:1679
|
6194 |
#, php-format
|
6195 |
msgid "%s Invoice"
|
6196 |
msgstr "% s Rechnung"
|
6197 |
|
6198 |
+
#: app/libraries/main.php:1700
|
6199 |
msgid "Transaction ID"
|
6200 |
msgstr "Transaktions-ID"
|
6201 |
|
6202 |
+
#: app/libraries/main.php:1753
|
6203 |
msgid "Billing"
|
6204 |
msgstr "Abrechnung"
|
6205 |
|
6206 |
+
#: app/libraries/main.php:1764
|
6207 |
msgid "Total"
|
6208 |
msgstr "Gesamt"
|
6209 |
|
6210 |
+
#: app/libraries/main.php:1797
|
6211 |
msgid "Security nonce is not valid."
|
6212 |
msgstr "Sicherheits-Nonce ist ungültig."
|
6213 |
|
6214 |
+
#: app/libraries/main.php:1797 app/libraries/main.php:1829
|
6215 |
msgid "iCal export stopped!"
|
6216 |
msgstr "iCal Export wurde unterbrochen!"
|
6217 |
|
6218 |
+
#: app/libraries/main.php:1829
|
6219 |
#, fuzzy
|
6220 |
#| msgid "Request is invalid!"
|
6221 |
msgid "Request is not valid."
|
6222 |
msgstr "Die Anfrage ist ungültig!"
|
6223 |
|
6224 |
+
#: app/libraries/main.php:2157 app/libraries/main.php:2187
|
6225 |
+
#: app/libraries/main.php:2216 app/libraries/main.php:2246
|
6226 |
+
#: app/libraries/main.php:2275 app/libraries/main.php:2304
|
6227 |
+
#: app/libraries/main.php:2333 app/libraries/main.php:2362
|
6228 |
+
#: app/libraries/main.php:2391 app/libraries/main.php:2415
|
6229 |
+
#: app/libraries/main.php:2459 app/libraries/main.php:2503
|
6230 |
+
#: app/libraries/main.php:2550 app/libraries/main.php:2596
|
6231 |
msgid "Sort"
|
6232 |
msgstr "Sortieren"
|
6233 |
|
6234 |
+
#: app/libraries/main.php:2163 app/libraries/main.php:2193
|
6235 |
+
#: app/libraries/main.php:2222 app/libraries/main.php:2252
|
6236 |
+
#: app/libraries/main.php:2281 app/libraries/main.php:2310
|
6237 |
+
#: app/libraries/main.php:2339 app/libraries/main.php:2368
|
6238 |
+
#: app/libraries/main.php:2421 app/libraries/main.php:2465
|
6239 |
+
#: app/libraries/main.php:2509 app/libraries/main.php:2556
|
6240 |
msgid "Required Field"
|
6241 |
msgstr "Pflichtfeld"
|
6242 |
|
6243 |
+
#: app/libraries/main.php:2169 app/libraries/main.php:2199
|
6244 |
+
#: app/libraries/main.php:2228 app/libraries/main.php:2258
|
6245 |
+
#: app/libraries/main.php:2287 app/libraries/main.php:2316
|
6246 |
+
#: app/libraries/main.php:2345 app/libraries/main.php:2374
|
6247 |
+
#: app/libraries/main.php:2427 app/libraries/main.php:2471
|
6248 |
+
#: app/libraries/main.php:2515 app/libraries/main.php:2562
|
6249 |
msgid "Insert a label for this field"
|
6250 |
msgstr "Geben Sie eine Bezeichnung (Label) für dieses Feld ein."
|
6251 |
|
6252 |
+
#: app/libraries/main.php:2397
|
6253 |
msgid "HTML and shortcode are allowed."
|
6254 |
msgstr "HTML und shortcodes sind erlaubt."
|
6255 |
|
6256 |
+
#: app/libraries/main.php:2440 app/libraries/main.php:2484
|
6257 |
+
#: app/libraries/main.php:2528
|
6258 |
msgid "Option"
|
6259 |
msgstr "Option"
|
6260 |
|
6261 |
+
#: app/libraries/main.php:2562
|
6262 |
#, php-format
|
6263 |
msgid "Instead of %s, the page title with a link will be show."
|
6264 |
msgstr "Anstelle von %s, wird der Seitentitel mit einem Link gezeigt"
|
6265 |
|
6266 |
+
#: app/libraries/main.php:2564
|
6267 |
msgid "Agreement Page"
|
6268 |
msgstr "Zustimmungsseite"
|
6269 |
|
6270 |
+
#: app/libraries/main.php:2575
|
6271 |
msgid "Checked by default"
|
6272 |
msgstr ""
|
6273 |
|
6274 |
+
#: app/libraries/main.php:2576
|
6275 |
msgid "Unchecked by default"
|
6276 |
msgstr ""
|
6277 |
|
6278 |
+
#: app/libraries/main.php:2598
|
6279 |
msgid "Insert a label for this option"
|
6280 |
msgstr "Ein neues Label für diese Option einfügen"
|
6281 |
|
6282 |
+
#: app/libraries/main.php:2613
|
6283 |
msgid "Free"
|
6284 |
msgstr "kostenfrei"
|
6285 |
|
6286 |
+
#: app/libraries/main.php:3165 app/libraries/main.php:4721
|
6287 |
#, fuzzy
|
6288 |
#| msgid "M.E. Calendar"
|
6289 |
msgid "M.E. Calender"
|
6290 |
msgstr "M.E. Calender"
|
6291 |
|
6292 |
+
#: app/libraries/main.php:3320
|
6293 |
#, php-format
|
6294 |
msgid "Copy of %s"
|
6295 |
msgstr "Kopie von %s"
|
6296 |
|
6297 |
+
#: app/libraries/main.php:3983
|
6298 |
msgid "Booked an event."
|
6299 |
msgstr "Eine Veranstaltung wurde gebucht."
|
6300 |
|
6301 |
+
#: app/libraries/main.php:4024
|
6302 |
#, php-format
|
6303 |
msgid "%s booked %s event."
|
6304 |
msgstr "%s gebuchtes %s Event"
|
6305 |
|
6306 |
+
#: app/libraries/main.php:4476
|
6307 |
msgid "Taxonomies"
|
6308 |
msgstr "Klassifizierung "
|
6309 |
|
6310 |
+
#: app/libraries/main.php:4478
|
6311 |
msgid "Category Plural Label"
|
6312 |
msgstr "Kategorien"
|
6313 |
|
6314 |
+
#: app/libraries/main.php:4479
|
6315 |
msgid "Category Singular Label"
|
6316 |
msgstr "Kategorie"
|
6317 |
|
6318 |
+
#: app/libraries/main.php:4480
|
6319 |
msgid "Label Plural Label"
|
6320 |
msgstr "Labels"
|
6321 |
|
6322 |
+
#: app/libraries/main.php:4481
|
6323 |
msgid "Label Singular Label"
|
6324 |
msgstr "Label"
|
6325 |
|
6326 |
+
#: app/libraries/main.php:4481
|
6327 |
msgid "label"
|
6328 |
msgstr "label"
|
6329 |
|
6330 |
+
#: app/libraries/main.php:4482
|
6331 |
msgid "Location Plural Label"
|
6332 |
msgstr "Veranstaltungsorte"
|
6333 |
|
6334 |
+
#: app/libraries/main.php:4483
|
6335 |
msgid "Location Singular Label"
|
6336 |
msgstr "Veranstaltungsort"
|
6337 |
|
6338 |
+
#: app/libraries/main.php:4484
|
6339 |
msgid "Organizer Plural Label"
|
6340 |
msgstr "Veranstalter"
|
6341 |
|
6342 |
+
#: app/libraries/main.php:4485
|
6343 |
msgid "Organizer Singular Label"
|
6344 |
msgstr "Veranstalter"
|
6345 |
|
6346 |
+
#: app/libraries/main.php:4486
|
6347 |
#, fuzzy
|
6348 |
#| msgid "Label Plural Label"
|
6349 |
msgid "Speaker Plural Label"
|
6350 |
msgstr "Labels"
|
6351 |
|
6352 |
+
#: app/libraries/main.php:4487
|
6353 |
#, fuzzy
|
6354 |
#| msgid "Label Singular Label"
|
6355 |
msgid "Speaker Singular Label"
|
6356 |
msgstr "Label"
|
6357 |
|
6358 |
+
#: app/libraries/main.php:4493
|
6359 |
msgid "Sunday abbreviation"
|
6360 |
msgstr "Sonntag Abkürzung"
|
6361 |
|
6362 |
+
#: app/libraries/main.php:4494
|
6363 |
msgid "Monday abbreviation"
|
6364 |
msgstr "Montag Abkürzung"
|
6365 |
|
6366 |
+
#: app/libraries/main.php:4495
|
6367 |
msgid "Tuesday abbreviation"
|
6368 |
msgstr "Dienstag Abkürzung"
|
6369 |
|
6370 |
+
#: app/libraries/main.php:4496
|
6371 |
msgid "Wednesday abbreviation"
|
6372 |
msgstr "Mittwoch Abkürzung"
|
6373 |
|
6374 |
+
#: app/libraries/main.php:4497
|
6375 |
msgid "Thursday abbreviation"
|
6376 |
msgstr "Donnerstag Abkürzung"
|
6377 |
|
6378 |
+
#: app/libraries/main.php:4498
|
6379 |
msgid "Friday abbreviation"
|
6380 |
msgstr "Freitag Abkürzung"
|
6381 |
|
6382 |
+
#: app/libraries/main.php:4499
|
6383 |
msgid "Saturday abbreviation"
|
6384 |
msgstr "Samstag Abkürzung "
|
6385 |
|
6386 |
+
#: app/libraries/main.php:4503
|
6387 |
msgid "Others"
|
6388 |
msgstr "Andere"
|
6389 |
|
6390 |
+
#: app/libraries/main.php:4505
|
6391 |
msgid "Booking Success Message"
|
6392 |
msgstr "Buchung erfolgreich Mitteilung"
|
6393 |
|
6394 |
+
#: app/libraries/main.php:4505
|
6395 |
msgid ""
|
6396 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
6397 |
"needed, please check your email."
|
6399 |
"Vielen Dank für Ihre Buchung. Für die gebuchten Tickets ist ggf. eine "
|
6400 |
"Bestätigung durch Sie erforderlich. Bitte überprüfen Sie Ihre Emails."
|
6401 |
|
6402 |
+
#: app/libraries/main.php:4506 app/widgets/single.php:131
|
6403 |
msgid "Register Button"
|
6404 |
msgstr "Register Button"
|
6405 |
|
6406 |
+
#: app/libraries/main.php:4506 app/skins/available_spot/tpl.php:205
|
6407 |
#: app/skins/carousel/render.php:152 app/skins/carousel/render.php:182
|
6408 |
#: app/skins/grid/render.php:116 app/skins/grid/render.php:159
|
6409 |
#: app/skins/grid/render.php:200 app/skins/grid/render.php:228
|
6420 |
msgid "REGISTER"
|
6421 |
msgstr "ANMELDEN"
|
6422 |
|
6423 |
+
#: app/libraries/main.php:4507
|
6424 |
msgid "View Detail Button"
|
6425 |
msgstr "Ansicht Detail Button"
|
6426 |
|
6427 |
+
#: app/libraries/main.php:4507 app/skins/carousel/render.php:152
|
6428 |
#: app/skins/carousel/render.php:182 app/skins/grid/render.php:116
|
6429 |
#: app/skins/grid/render.php:159 app/skins/grid/render.php:200
|
6430 |
#: app/skins/grid/render.php:228 app/skins/list/render.php:102
|
6435 |
msgid "View Detail"
|
6436 |
msgstr "Details "
|
6437 |
|
6438 |
+
#: app/libraries/main.php:4508
|
6439 |
msgid "Event Detail Button"
|
6440 |
msgstr "Event Detail Button"
|
6441 |
|
6442 |
+
#: app/libraries/main.php:4508 app/skins/countdown/tpl.php:218
|
6443 |
msgid "Event Detail"
|
6444 |
msgstr "Veranstaltungsdetails"
|
6445 |
|
6446 |
+
#: app/libraries/main.php:4510
|
6447 |
msgid "More Info Link"
|
6448 |
msgstr "Link Mehr Informationen"
|
6449 |
|
6450 |
+
#: app/libraries/main.php:4513
|
6451 |
msgid "Ticket (Singular)"
|
6452 |
msgstr "Ticket"
|
6453 |
|
6454 |
+
#: app/libraries/main.php:4514
|
6455 |
msgid "Tickets (Plural)"
|
6456 |
msgstr "Tickets"
|
6457 |
|
6458 |
+
#: app/libraries/main.php:4581
|
6459 |
msgid "EventON"
|
6460 |
msgstr "EventON"
|
6461 |
|
6462 |
+
#: app/libraries/main.php:4582
|
6463 |
msgid "The Events Calendar"
|
6464 |
msgstr "The Events Calendar"
|
6465 |
|
6466 |
+
#: app/libraries/main.php:4583
|
6467 |
msgid "Events Schedule WP Plugin"
|
6468 |
msgstr "Event Zeitplan WP-Plugin"
|
6469 |
|
6470 |
+
#: app/libraries/main.php:4584
|
6471 |
msgid "Calendarize It"
|
6472 |
msgstr ""
|
6473 |
|
6474 |
+
#: app/libraries/main.php:4658 app/libraries/main.php:4678
|
6475 |
msgid "Confirmed"
|
6476 |
msgstr "Bestätigt"
|
6477 |
|
6478 |
+
#: app/libraries/main.php:4659 app/libraries/main.php:4686
|
6479 |
msgid "Rejected"
|
6480 |
msgstr "Abgelehnt"
|
6481 |
|
6482 |
+
#: app/libraries/main.php:4660 app/libraries/main.php:4682
|
6483 |
msgid "Pending"
|
6484 |
msgstr "Ausstehend"
|
6485 |
|
6486 |
+
#: app/libraries/main.php:4708
|
6487 |
msgid "Waiting"
|
6488 |
msgstr "in Bearbeitung"
|
6489 |
|
6521 |
msgid "All of the day"
|
6522 |
msgstr "Den ganzen Tag"
|
6523 |
|
6524 |
+
#: app/libraries/notifications.php:611
|
6525 |
msgid "to"
|
6526 |
msgstr ""
|
6527 |
|
6528 |
+
#: app/libraries/notifications.php:624 app/modules/export/details.php:27
|
6529 |
msgid "+ Add to Google Calendar"
|
6530 |
msgstr "+ zum Google Calendar hinzufügen"
|
6531 |
|
6532 |
+
#: app/libraries/notifications.php:625 app/modules/export/details.php:28
|
6533 |
msgid "+ iCal export"
|
6534 |
msgstr "+ zu iCal exportieren"
|
6535 |
|
6536 |
+
#: app/libraries/notifications.php:689
|
6537 |
msgid "Yes"
|
6538 |
msgstr "Ja"
|
6539 |
|
6540 |
+
#: app/libraries/notifications.php:689
|
6541 |
msgid "No"
|
6542 |
msgstr "Nein"
|
6543 |
|
6549 |
msgid "Ignore month and years"
|
6550 |
msgstr "Monat und Jahre ignorieren"
|
6551 |
|
6552 |
+
#: app/modules/attendees-list/details.php:36
|
6553 |
msgid "Event Attendees"
|
6554 |
msgstr "Event Teilnehmer"
|
6555 |
|
6556 |
+
#: app/modules/attendees-list/details.php:38
|
6557 |
msgid "No attendee found! Be the first one to book!"
|
6558 |
msgstr "Keine Teilnehmer gefunden! Seien Sie der erste Teilnehmer der bucht!"
|
6559 |
|
6560 |
+
#: app/modules/attendees-list/details.php:56
|
6561 |
#, php-format
|
6562 |
msgid "%s tickets"
|
6563 |
msgstr "%s tickets"
|
languages/modern-events-calendar-lite-en_US.mo
CHANGED
Binary file
|
languages/modern-events-calendar-lite-en_US.po
CHANGED
@@ -1,15 +1,15 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: modern-events-calendar\n"
|
4 |
-
"POT-Creation-Date: 2019-
|
5 |
-
"PO-Revision-Date: 2019-
|
6 |
"Last-Translator: Howard <howard@realtyna.com>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: en_US\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 2.
|
13 |
"X-Poedit-KeywordsList: __;_e;esc_html__;esc_html_e;_x;_ex;esc_attr__;"
|
14 |
"esc_attr_e;esc_attr_x;_n;_nx\n"
|
15 |
"X-Poedit-Basepath: ..\n"
|
@@ -21,7 +21,7 @@ msgstr ""
|
|
21 |
msgid "Modern Events Calendar"
|
22 |
msgstr ""
|
23 |
|
24 |
-
#: app/addons/KC.php:70 app/addons/VC.php:64 app/features/mec/styling.php:
|
25 |
msgid "Content"
|
26 |
msgstr ""
|
27 |
|
@@ -46,8 +46,8 @@ msgstr ""
|
|
46 |
msgid "Select Type"
|
47 |
msgstr ""
|
48 |
|
49 |
-
#: app/features/colors.php:50 app/features/fes/form.php:
|
50 |
-
#: app/features/mec/settings.php:
|
51 |
msgid "Event Color"
|
52 |
msgstr ""
|
53 |
|
@@ -63,12 +63,12 @@ msgid "Settings"
|
|
63 |
msgstr ""
|
64 |
|
65 |
#: app/features/contextual.php:62 app/features/events.php:2250
|
66 |
-
#: app/features/mec/booking.php:
|
67 |
-
#: app/features/mec/ie.php:
|
68 |
-
#: app/features/mec/modules.php:173 app/features/mec/notifications.php:
|
69 |
-
#: app/features/mec/regform.php:
|
70 |
-
#: app/features/mec/settings.php:
|
71 |
-
#: app/features/mec/styles.php:
|
72 |
#: app/features/mec/support.php:29
|
73 |
msgid "Booking Form"
|
74 |
msgstr ""
|
@@ -82,13 +82,13 @@ msgid ""
|
|
82 |
"YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></iframe>"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: app/features/contextual.php:70 app/features/mec/booking.php:
|
86 |
-
#: app/features/mec/gateways.php:
|
87 |
-
#: app/features/mec/ie.php:
|
88 |
-
#: app/features/mec/modules.php:180 app/features/mec/notifications.php:
|
89 |
-
#: app/features/mec/regform.php:
|
90 |
-
#: app/features/mec/single.php:
|
91 |
-
#: app/features/mec/styling.php:
|
92 |
msgid "Payment Gateways"
|
93 |
msgstr ""
|
94 |
|
@@ -99,12 +99,12 @@ msgid ""
|
|
99 |
"\"0\" allowfullscreen></iframe>"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: app/features/contextual.php:77 app/features/mec/booking.php:
|
103 |
-
#: app/features/mec/gateways.php:
|
104 |
-
#: app/features/mec/messages.php:
|
105 |
-
#: app/features/mec/notifications.php:
|
106 |
-
#: app/features/mec/settings.php:
|
107 |
-
#: app/features/mec/styles.php:
|
108 |
#: app/features/mec/support.php:45
|
109 |
msgid "Notifications"
|
110 |
msgstr ""
|
@@ -172,7 +172,7 @@ msgstr ""
|
|
172 |
#: app/features/mec/gateways.php:28 app/features/mec/ie.php:24
|
173 |
#: app/features/mec/messages.php:28 app/features/mec/modules.php:35
|
174 |
#: app/features/mec/notifications.php:27 app/features/mec/regform.php:64
|
175 |
-
#: app/features/mec/settings.php:51 app/features/mec/settings.php:
|
176 |
#: app/features/mec/single.php:27 app/features/mec/styles.php:28
|
177 |
#: app/features/mec/styling.php:50
|
178 |
msgid "General Options"
|
@@ -182,7 +182,7 @@ msgstr ""
|
|
182 |
#: app/features/mec/gateways.php:30 app/features/mec/ie.php:26
|
183 |
#: app/features/mec/messages.php:30 app/features/mec/modules.php:37
|
184 |
#: app/features/mec/notifications.php:29 app/features/mec/regform.php:66
|
185 |
-
#: app/features/mec/settings.php:63 app/features/mec/settings.php:
|
186 |
#: app/features/mec/single.php:29 app/features/mec/styles.php:30
|
187 |
#: app/features/mec/styling.php:52
|
188 |
msgid "Slugs/Permalinks"
|
@@ -196,7 +196,7 @@ msgstr ""
|
|
196 |
#: app/features/mec/gateways.php:31 app/features/mec/ie.php:27
|
197 |
#: app/features/mec/messages.php:31 app/features/mec/modules.php:38
|
198 |
#: app/features/mec/notifications.php:30 app/features/mec/regform.php:67
|
199 |
-
#: app/features/mec/settings.php:69 app/features/mec/settings.php:
|
200 |
#: app/features/mec/single.php:30 app/features/mec/styles.php:31
|
201 |
#: app/features/mec/styling.php:53
|
202 |
msgid "Currency Options"
|
@@ -216,7 +216,7 @@ msgstr ""
|
|
216 |
#: app/features/mec/gateways.php:32 app/features/mec/ie.php:28
|
217 |
#: app/features/mec/messages.php:32 app/features/mec/modules.php:39
|
218 |
#: app/features/mec/notifications.php:31 app/features/mec/regform.php:68
|
219 |
-
#: app/features/mec/settings.php:75 app/features/mec/settings.php:
|
220 |
#: app/features/mec/single.php:31 app/features/mec/styles.php:32
|
221 |
#: app/features/mec/styling.php:54
|
222 |
msgid "Google Recaptcha Options"
|
@@ -227,7 +227,7 @@ msgstr ""
|
|
227 |
#: app/features/mec/messages.php:51 app/features/mec/modules.php:58
|
228 |
#: app/features/mec/notifications.php:50 app/features/mec/regform.php:87
|
229 |
#: app/features/mec/settings.php:118 app/features/mec/single.php:62
|
230 |
-
#: app/features/mec/single.php:
|
231 |
#: app/features/mec/styling.php:73
|
232 |
msgid "Countdown Options"
|
233 |
msgstr ""
|
@@ -250,7 +250,7 @@ msgstr ""
|
|
250 |
#: app/features/mec/gateways.php:33 app/features/mec/ie.php:29
|
251 |
#: app/features/mec/messages.php:33 app/features/mec/modules.php:40
|
252 |
#: app/features/mec/notifications.php:32 app/features/mec/regform.php:69
|
253 |
-
#: app/features/mec/settings.php:81 app/features/mec/settings.php:
|
254 |
#: app/features/mec/single.php:32 app/features/mec/styles.php:33
|
255 |
#: app/features/mec/styling.php:55
|
256 |
msgid "Frontend Event Submission"
|
@@ -268,28 +268,28 @@ msgstr ""
|
|
268 |
|
269 |
#: app/features/contextual.php:308 app/features/events.php:284
|
270 |
#: app/features/mec/booking.php:77 app/features/mec/booking.php:84
|
271 |
-
#: app/features/mec/booking.php:
|
272 |
#: app/features/mec/gateways.php:64 app/features/mec/gateways.php:68
|
273 |
-
#: app/features/mec/gateways.php:
|
274 |
-
#: app/features/mec/ie.php:64 app/features/mec/ie.php:
|
275 |
#: app/features/mec/messages.php:64 app/features/mec/messages.php:68
|
276 |
-
#: app/features/mec/messages.php:
|
277 |
#: app/features/mec/modules.php:75 app/features/mec/modules.php:194
|
278 |
#: app/features/mec/notifications.php:63 app/features/mec/notifications.php:67
|
279 |
-
#: app/features/mec/notifications.php:
|
280 |
-
#: app/features/mec/notifications.php:
|
281 |
-
#: app/features/mec/regform.php:104 app/features/mec/regform.php:
|
282 |
#: app/features/mec/settings.php:131 app/features/mec/settings.php:135
|
283 |
-
#: app/features/mec/settings.php:
|
284 |
-
#: app/features/mec/single.php:96 app/features/mec/single.php:
|
285 |
#: app/features/mec/styles.php:64 app/features/mec/styles.php:68
|
286 |
-
#: app/features/mec/styles.php:
|
287 |
-
#: app/features/mec/styling.php:90 app/features/mec/styling.php:
|
288 |
msgid "Booking"
|
289 |
msgstr ""
|
290 |
|
291 |
#: app/features/contextual.php:318 app/features/mec/booking.php:92
|
292 |
-
#: app/features/mec/booking.php:
|
293 |
#: app/features/mec/ie.php:66 app/features/mec/messages.php:70
|
294 |
#: app/features/mec/modules.php:77 app/features/mec/notifications.php:69
|
295 |
#: app/features/mec/regform.php:106 app/features/mec/settings.php:137
|
@@ -298,13 +298,13 @@ msgstr ""
|
|
298 |
msgid "Coupons"
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: app/features/contextual.php:326 app/features/mec/booking.php:
|
302 |
-
#: app/features/mec/gateways.php:
|
303 |
-
#: app/features/mec/messages.php:
|
304 |
-
#: app/features/mec/modules.php:509 app/features/mec/notifications.php:
|
305 |
-
#: app/features/mec/regform.php:
|
306 |
-
#: app/features/mec/single.php:
|
307 |
-
#: app/features/mec/styling.php:
|
308 |
msgid "BuddyPress Integration"
|
309 |
msgstr ""
|
310 |
|
@@ -312,7 +312,7 @@ msgstr ""
|
|
312 |
#: app/features/mec/gateways.php:36 app/features/mec/ie.php:32
|
313 |
#: app/features/mec/messages.php:36 app/features/mec/modules.php:43
|
314 |
#: app/features/mec/notifications.php:35 app/features/mec/regform.php:72
|
315 |
-
#: app/features/mec/settings.php:95 app/features/mec/settings.php:
|
316 |
#: app/features/mec/single.php:35 app/features/mec/styles.php:36
|
317 |
#: app/features/mec/styling.php:58
|
318 |
msgid "Mailchimp Integration"
|
@@ -329,9 +329,9 @@ msgid "Events"
|
|
329 |
msgstr ""
|
330 |
|
331 |
#: app/features/events.php:138
|
332 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
333 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
334 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
335 |
#: app/features/profile/profile.php:28 app/skins/daily_view/tpl.php:80
|
336 |
#: app/skins/monthly_view/tpl.php:71 app/skins/yearly_view/tpl.php:69
|
337 |
msgid "Event"
|
@@ -345,7 +345,7 @@ msgstr ""
|
|
345 |
msgid "Add New Event"
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: app/features/events.php:141 app/features/ix.php:
|
349 |
#: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:56
|
350 |
msgid "No events found!"
|
351 |
msgstr ""
|
@@ -367,7 +367,7 @@ msgid "No events found in Trash!"
|
|
367 |
msgstr ""
|
368 |
|
369 |
#: app/features/events.php:162
|
370 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
371 |
#: app/features/mec/meta_boxes/search_form.php:31
|
372 |
#: app/features/mec/meta_boxes/search_form.php:92
|
373 |
#: app/features/mec/meta_boxes/search_form.php:153
|
@@ -377,7 +377,7 @@ msgstr ""
|
|
377 |
#: app/features/mec/meta_boxes/search_form.php:397
|
378 |
#: app/features/mec/meta_boxes/search_form.php:451
|
379 |
#: app/features/mec/meta_boxes/search_form.php:512
|
380 |
-
#: app/features/mec/meta_boxes/search_form.php:573 app/libraries/main.php:
|
381 |
#: app/libraries/skins.php:781 app/skins/single.php:410
|
382 |
#: app/skins/single/default.php:169 app/skins/single/default.php:380
|
383 |
#: app/skins/single/m1.php:170 app/skins/single/m2.php:102
|
@@ -387,7 +387,7 @@ msgstr ""
|
|
387 |
|
388 |
#: app/features/events.php:163 app/features/fes/form.php:745
|
389 |
#: app/features/mec.php:332 app/features/mec/meta_boxes/filter.php:70
|
390 |
-
#: app/libraries/main.php:
|
391 |
msgid "Categories"
|
392 |
msgstr ""
|
393 |
|
@@ -459,16 +459,16 @@ msgstr ""
|
|
459 |
msgid "Event Details"
|
460 |
msgstr ""
|
461 |
|
462 |
-
#: app/features/events.php:321 app/features/events.php:
|
463 |
-
#: app/features/events.php:
|
464 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
465 |
-
#: app/features/mec/settings.php:
|
466 |
#: app/widgets/single.php:103
|
467 |
msgid "Event Cost"
|
468 |
msgstr ""
|
469 |
|
470 |
#: app/features/events.php:325 app/features/fes/form.php:709
|
471 |
-
#: app/libraries/main.php:
|
472 |
#: app/skins/single/default.php:103 app/skins/single/default.php:314
|
473 |
#: app/skins/single/m1.php:49 app/skins/single/modern.php:199
|
474 |
msgid "Cost"
|
@@ -485,19 +485,19 @@ msgstr ""
|
|
485 |
#: app/features/events.php:431 app/features/events.php:2232
|
486 |
#: app/features/fes/form.php:668 app/features/labels.php:177
|
487 |
#: app/features/mec/regform.php:27 app/features/organizers.php:274
|
488 |
-
#: app/features/profile/profile.php:90 app/libraries/notifications.php:
|
489 |
#: app/modules/booking/steps/form.php:35
|
490 |
msgid "Name"
|
491 |
msgstr ""
|
492 |
|
493 |
#: app/features/events.php:432 app/features/events.php:2243
|
494 |
#: app/features/events.php:2321 app/features/fes/form.php:664
|
495 |
-
#: app/features/mec/regform.php:38 app/features/mec/regform.php:
|
496 |
#: app/features/organizers.php:110 app/features/organizers.php:150
|
497 |
#: app/features/profile/profile.php:93 app/features/speakers.php:120
|
498 |
-
#: app/features/speakers.php:180 app/libraries/main.php:
|
499 |
-
#: app/libraries/main.php:
|
500 |
-
#: app/libraries/notifications.php:
|
501 |
#: app/modules/booking/steps/form.php:80 app/skins/single.php:661
|
502 |
#: app/skins/single.php:715 app/skins/single/default.php:211
|
503 |
#: app/skins/single/default.php:422 app/skins/single/m1.php:107
|
@@ -510,8 +510,8 @@ msgid "Date and Time"
|
|
510 |
msgstr ""
|
511 |
|
512 |
#: app/features/events.php:440 app/features/events.php:446
|
513 |
-
#: app/features/events.php:
|
514 |
-
#: app/features/events.php:
|
515 |
#: app/features/fes/form.php:240 app/features/ix.php:2740
|
516 |
#: app/features/ix.php:2781 app/features/ix/import_g_calendar.php:38
|
517 |
#: app/features/mec/dashboard.php:332
|
@@ -519,15 +519,15 @@ msgstr ""
|
|
519 |
#: app/features/mec/meta_boxes/display_options.php:169
|
520 |
#: app/features/mec/meta_boxes/display_options.php:307
|
521 |
#: app/features/mec/meta_boxes/display_options.php:362
|
522 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
523 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
524 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
525 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
526 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
527 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
528 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
529 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
530 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
531 |
msgid "Start Date"
|
532 |
msgstr ""
|
533 |
|
@@ -546,8 +546,8 @@ msgid "PM"
|
|
546 |
msgstr ""
|
547 |
|
548 |
#: app/features/events.php:532 app/features/events.php:537
|
549 |
-
#: app/features/events.php:
|
550 |
-
#: app/features/events.php:
|
551 |
#: app/features/fes/form.php:280 app/features/ix.php:2740
|
552 |
#: app/features/ix.php:2781 app/features/ix/import_g_calendar.php:44
|
553 |
#: app/features/mec/dashboard.php:333
|
@@ -578,19 +578,19 @@ msgid ""
|
|
578 |
msgstr ""
|
579 |
|
580 |
#: app/features/events.php:663 app/features/events.php:795
|
581 |
-
#: app/features/events.php:
|
582 |
#: app/features/events.php:1436 app/features/events.php:1503
|
583 |
#: app/features/events.php:1655 app/features/events.php:1670
|
584 |
#: app/features/events.php:1837 app/features/events.php:1850
|
585 |
#: app/features/events.php:1980 app/features/events.php:2016
|
586 |
#: app/features/events.php:2114 app/features/events.php:2129
|
587 |
#: app/features/events.php:2159 app/features/events.php:2172
|
588 |
-
#: app/features/fes/form.php:
|
589 |
-
#: app/features/mec/booking.php:
|
590 |
-
#: app/features/mec/booking.php:
|
591 |
-
#: app/features/mec/booking.php:
|
592 |
-
#: app/features/mec/booking.php:
|
593 |
-
#: app/features/mec/booking.php:
|
594 |
#: app/features/mec/meta_boxes/display_options.php:60
|
595 |
#: app/features/mec/meta_boxes/display_options.php:73
|
596 |
#: app/features/mec/meta_boxes/display_options.php:86
|
@@ -604,47 +604,47 @@ msgstr ""
|
|
604 |
#: app/features/mec/meta_boxes/display_options.php:248
|
605 |
#: app/features/mec/meta_boxes/display_options.php:259
|
606 |
#: app/features/mec/meta_boxes/display_options.php:326
|
607 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
608 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
609 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
610 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
611 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
612 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
613 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
614 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
615 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
616 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
617 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
618 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
619 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
620 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
621 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
622 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
623 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
624 |
#: app/features/mec/modules.php:283 app/features/mec/modules.php:300
|
625 |
#: app/features/mec/modules.php:335 app/features/mec/modules.php:351
|
626 |
-
#: app/features/mec/modules.php:497 app/features/mec/notifications.php:
|
627 |
-
#: app/features/mec/notifications.php:
|
628 |
-
#: app/features/mec/notifications.php:
|
629 |
-
#: app/features/mec/notifications.php:
|
630 |
-
#: app/features/mec/notifications.php:
|
631 |
-
#: app/features/mec/notifications.php:
|
632 |
-
#: app/features/mec/notifications.php:
|
633 |
-
#: app/features/mec/notifications.php:
|
634 |
-
#: app/features/mec/settings.php:
|
635 |
-
#: app/features/mec/settings.php:
|
636 |
-
#: app/features/mec/settings.php:
|
637 |
-
#: app/features/mec/settings.php:
|
638 |
-
#: app/features/mec/settings.php:
|
639 |
-
#: app/features/mec/settings.php:
|
640 |
-
#: app/features/mec/settings.php:
|
641 |
-
#: app/features/mec/settings.php:
|
642 |
-
#: app/features/mec/settings.php:
|
643 |
-
#: app/features/mec/single.php:
|
644 |
-
#: app/features/mec/single.php:
|
645 |
-
#: app/features/mec/single.php:
|
646 |
-
#: app/features/mec/single.php:
|
647 |
-
#: app/features/mec/styling.php:
|
648 |
#: app/features/organizers.php:267 app/skins/single.php:508
|
649 |
#: app/skins/single/default.php:118 app/skins/single/default.php:329
|
650 |
#: app/skins/single/m1.php:192 app/skins/single/m2.php:125
|
@@ -713,43 +713,43 @@ msgid "Week Days"
|
|
713 |
msgstr ""
|
714 |
|
715 |
#: app/features/events.php:760 app/features/fes/form.php:355
|
716 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
717 |
#: app/libraries/main.php:407
|
718 |
msgid "Monday"
|
719 |
msgstr ""
|
720 |
|
721 |
#: app/features/events.php:763 app/features/fes/form.php:356
|
722 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
723 |
#: app/libraries/main.php:407
|
724 |
msgid "Tuesday"
|
725 |
msgstr ""
|
726 |
|
727 |
#: app/features/events.php:766 app/features/fes/form.php:357
|
728 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
729 |
#: app/libraries/main.php:407
|
730 |
msgid "Wednesday"
|
731 |
msgstr ""
|
732 |
|
733 |
#: app/features/events.php:769 app/features/fes/form.php:358
|
734 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
735 |
#: app/libraries/main.php:407
|
736 |
msgid "Thursday"
|
737 |
msgstr ""
|
738 |
|
739 |
#: app/features/events.php:772 app/features/fes/form.php:359
|
740 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
741 |
#: app/libraries/main.php:407
|
742 |
msgid "Friday"
|
743 |
msgstr ""
|
744 |
|
745 |
#: app/features/events.php:775 app/features/fes/form.php:360
|
746 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
747 |
#: app/libraries/main.php:407
|
748 |
msgid "Saturday"
|
749 |
msgstr ""
|
750 |
|
751 |
#: app/features/events.php:778 app/features/fes/form.php:361
|
752 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
753 |
#: app/libraries/main.php:407
|
754 |
msgid "Sunday"
|
755 |
msgstr ""
|
@@ -787,51 +787,51 @@ msgid ""
|
|
787 |
"start and end dates must be commensurate with the initial date."
|
788 |
msgstr ""
|
789 |
|
790 |
-
#: app/features/events.php:
|
791 |
-
msgid "
|
792 |
msgstr ""
|
793 |
|
794 |
-
#: app/features/events.php:
|
795 |
-
msgid "
|
796 |
msgstr ""
|
797 |
|
798 |
-
#: app/features/events.php:
|
799 |
-
msgid "
|
800 |
msgstr ""
|
801 |
|
802 |
-
#: app/features/events.php:
|
803 |
-
msgid "
|
804 |
msgstr ""
|
805 |
|
806 |
-
#: app/features/events.php:
|
807 |
-
|
808 |
-
msgid "Occurrences times"
|
809 |
msgstr ""
|
810 |
|
811 |
-
#: app/features/events.php:
|
812 |
-
msgid ""
|
813 |
-
"The event will finish after certain repeats. For example if you set it to "
|
814 |
-
"10, the event will finish after 10 repeats."
|
815 |
msgstr ""
|
816 |
|
817 |
-
#: app/features/events.php:
|
818 |
-
msgid "
|
819 |
msgstr ""
|
820 |
|
821 |
-
#: app/features/events.php:
|
822 |
-
msgid "
|
823 |
msgstr ""
|
824 |
|
825 |
-
#: app/features/events.php:
|
826 |
-
msgid "
|
827 |
msgstr ""
|
828 |
|
829 |
-
#: app/features/events.php:
|
830 |
-
|
|
|
831 |
msgstr ""
|
832 |
|
833 |
-
#: app/features/events.php:
|
834 |
-
msgid "
|
|
|
|
|
835 |
msgstr ""
|
836 |
|
837 |
#: app/features/events.php:1124 app/features/events.php:1134
|
@@ -839,8 +839,8 @@ msgid "Exclude certain days"
|
|
839 |
msgstr ""
|
840 |
|
841 |
#: app/features/events.php:1129 app/features/events.php:2322
|
842 |
-
#: app/features/mec/regform.php:
|
843 |
-
#: app/libraries/main.php:
|
844 |
#: app/modules/booking/steps/tickets.php:22
|
845 |
#: app/modules/next-event/details.php:90 app/skins/single.php:488
|
846 |
#: app/skins/single/default.php:67 app/skins/single/default.php:278
|
@@ -859,7 +859,7 @@ msgstr ""
|
|
859 |
msgid "Day 1"
|
860 |
msgstr ""
|
861 |
|
862 |
-
#: app/features/events.php:1211 app/features/mec/settings.php:
|
863 |
#: app/skins/single.php:777
|
864 |
msgid "Hourly Schedule"
|
865 |
msgstr ""
|
@@ -882,11 +882,11 @@ msgstr ""
|
|
882 |
#: app/features/events.php:1227 app/features/events.php:1266
|
883 |
#: app/features/events.php:1301 app/features/events.php:1333
|
884 |
#: app/features/events.php:1362 app/features/events.php:2101
|
885 |
-
#: app/features/events.php:2148 app/features/events.php:
|
886 |
-
#: app/features/events.php:
|
887 |
#: app/features/fes/form.php:225 app/features/ix.php:2740
|
888 |
-
#: app/features/ix.php:2781 app/features/mec/booking.php:
|
889 |
-
#: app/features/mec/booking.php:
|
890 |
msgid "Title"
|
891 |
msgstr ""
|
892 |
|
@@ -897,16 +897,16 @@ msgstr ""
|
|
897 |
#: app/features/events.php:1867 app/features/events.php:1894
|
898 |
#: app/features/events.php:1993 app/features/events.php:2029
|
899 |
#: app/features/events.php:2136 app/features/events.php:2178
|
900 |
-
#: app/features/fes/list.php:78 app/features/mec/booking.php:
|
901 |
-
#: app/features/mec/booking.php:
|
902 |
-
#: app/features/mec/booking.php:
|
903 |
-
#: app/libraries/main.php:
|
904 |
-
#: app/libraries/main.php:
|
905 |
-
#: app/libraries/main.php:
|
906 |
-
#: app/libraries/main.php:
|
907 |
-
#: app/libraries/main.php:
|
908 |
-
#: app/libraries/main.php:
|
909 |
-
#: app/libraries/main.php:
|
910 |
msgid "Remove"
|
911 |
msgstr ""
|
912 |
|
@@ -931,15 +931,15 @@ msgid "Description"
|
|
931 |
msgstr ""
|
932 |
|
933 |
#: app/features/events.php:1276 app/features/events.php:1309
|
934 |
-
#: app/features/events.php:1370 app/features/fes/form.php:
|
935 |
#: app/features/mec.php:340 app/features/mec/booking.php:122
|
936 |
#: app/features/mec/gateways.php:87 app/features/mec/ie.php:83
|
937 |
#: app/features/mec/messages.php:87 app/features/mec/modules.php:101
|
938 |
#: app/features/mec/notifications.php:86 app/features/mec/regform.php:123
|
939 |
-
#: app/features/mec/settings.php:154 app/features/mec/settings.php:
|
940 |
#: app/features/mec/single.php:115 app/features/mec/styles.php:87
|
941 |
#: app/features/mec/styling.php:109 app/features/speakers.php:57
|
942 |
-
#: app/libraries/main.php:
|
943 |
msgid "Speakers"
|
944 |
msgstr ""
|
945 |
|
@@ -948,12 +948,12 @@ msgid "New Day"
|
|
948 |
msgstr ""
|
949 |
|
950 |
#: app/features/events.php:1401 app/features/fes/form.php:683
|
951 |
-
#: app/features/mec/settings.php:
|
952 |
msgid "Event Links"
|
953 |
msgstr ""
|
954 |
|
955 |
#: app/features/events.php:1404 app/features/events.php:1410
|
956 |
-
#: app/features/fes/form.php:685 app/libraries/main.php:
|
957 |
msgid "Event Link"
|
958 |
msgstr ""
|
959 |
|
@@ -974,7 +974,7 @@ msgid "URL Shortener"
|
|
974 |
msgstr ""
|
975 |
|
976 |
#: app/features/events.php:1420 app/features/events.php:1433
|
977 |
-
#: app/features/fes/form.php:690 app/libraries/main.php:
|
978 |
#: app/skins/single.php:507 app/skins/single/default.php:117
|
979 |
#: app/skins/single/default.php:328 app/skins/single/m1.php:191
|
980 |
#: app/skins/single/m2.php:124 app/skins/single/modern.php:132
|
@@ -1005,7 +1005,7 @@ msgid "Total booking limits"
|
|
1005 |
msgstr ""
|
1006 |
|
1007 |
#: app/features/events.php:1486 app/features/events.php:1691
|
1008 |
-
#: app/features/events.php:1864 app/modules/booking/default.php:
|
1009 |
#: app/modules/booking/steps/tickets.php:40
|
1010 |
#: app/skins/available_spot/tpl.php:140
|
1011 |
msgid "Unlimited"
|
@@ -1026,7 +1026,7 @@ msgid "Read About A Booking System"
|
|
1026 |
msgstr ""
|
1027 |
|
1028 |
#: app/features/events.php:1528 app/libraries/book.php:60
|
1029 |
-
#: app/libraries/main.php:
|
1030 |
msgid "Tickets"
|
1031 |
msgstr ""
|
1032 |
|
@@ -1042,13 +1042,13 @@ msgid "Ticket Name"
|
|
1042 |
msgstr ""
|
1043 |
|
1044 |
#: app/features/events.php:1555 app/features/events.php:1776
|
1045 |
-
#: app/features/events.php:
|
1046 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
1047 |
msgid "Start Time"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
#: app/features/events.php:1597 app/features/events.php:1800
|
1051 |
-
#: app/features/events.php:
|
1052 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
1053 |
msgid "End Time"
|
1054 |
msgstr ""
|
@@ -1058,9 +1058,9 @@ msgstr ""
|
|
1058 |
#: app/features/events.php:1831 app/features/events.php:1834
|
1059 |
#: app/features/events.php:1890 app/features/events.php:2107
|
1060 |
#: app/features/events.php:2111 app/features/events.php:2153
|
1061 |
-
#: app/features/events.php:2156 app/features/mec/booking.php:
|
1062 |
-
#: app/features/mec/booking.php:
|
1063 |
-
#: app/features/mec/booking.php:
|
1064 |
msgid "Price"
|
1065 |
msgstr ""
|
1066 |
|
@@ -1087,7 +1087,7 @@ msgstr ""
|
|
1087 |
|
1088 |
#: app/features/events.php:1730 app/features/events.php:1756
|
1089 |
#: app/features/events.php:1892 app/features/labels.php:60
|
1090 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1091 |
#: app/features/mec/meta_boxes/search_form.php:66
|
1092 |
#: app/features/mec/meta_boxes/search_form.php:127
|
1093 |
#: app/features/mec/meta_boxes/search_form.php:188
|
@@ -1111,99 +1111,99 @@ msgid "Inherit from global options"
|
|
1111 |
msgstr ""
|
1112 |
|
1113 |
#: app/features/events.php:1967 app/features/events.php:2005
|
1114 |
-
#: app/features/mec/booking.php:
|
1115 |
msgid "Fee Title"
|
1116 |
msgstr ""
|
1117 |
|
1118 |
#: app/features/events.php:1973 app/features/events.php:1977
|
1119 |
#: app/features/events.php:2010 app/features/events.php:2013
|
1120 |
-
#: app/features/mec/booking.php:
|
1121 |
-
#: app/features/mec/booking.php:
|
1122 |
msgid "Amount"
|
1123 |
msgstr ""
|
1124 |
|
1125 |
#: app/features/events.php:1978 app/features/events.php:2014
|
1126 |
-
#: app/features/mec/booking.php:
|
1127 |
msgid ""
|
1128 |
"Fee amount, considered as fixed amount if you set the type to amount "
|
1129 |
"otherwise considered as percentage"
|
1130 |
msgstr ""
|
1131 |
|
1132 |
#: app/features/events.php:1987 app/features/events.php:2023
|
1133 |
-
#: app/features/mec/booking.php:
|
1134 |
msgid "Percent"
|
1135 |
msgstr ""
|
1136 |
|
1137 |
#: app/features/events.php:1988 app/features/events.php:2024
|
1138 |
-
#: app/features/mec/booking.php:
|
1139 |
msgid "Amount (Per Ticket)"
|
1140 |
msgstr ""
|
1141 |
|
1142 |
#: app/features/events.php:1989 app/features/events.php:2025
|
1143 |
-
#: app/features/mec/booking.php:
|
1144 |
msgid "Amount (Per Booking)"
|
1145 |
msgstr ""
|
1146 |
|
1147 |
-
#: app/features/events.php:2062 app/features/mec/settings.php:
|
1148 |
msgid "Ticket Variations / Options"
|
1149 |
msgstr ""
|
1150 |
|
1151 |
#: app/features/events.php:2112 app/features/events.php:2157
|
1152 |
-
#: app/features/mec/booking.php:
|
1153 |
msgid "Option Price"
|
1154 |
msgstr ""
|
1155 |
|
1156 |
#: app/features/events.php:2122 app/features/events.php:2126
|
1157 |
#: app/features/events.php:2166 app/features/events.php:2169
|
1158 |
-
#: app/features/mec/booking.php:
|
1159 |
-
#: app/features/mec/booking.php:
|
1160 |
msgid "Maximum Per Ticket"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
#: app/features/events.php:2127 app/features/events.php:2170
|
1164 |
-
#: app/features/mec/booking.php:
|
1165 |
msgid "Maximum Per Ticket. Leave it blank for unlimited."
|
1166 |
msgstr ""
|
1167 |
|
1168 |
-
#: app/features/events.php:2317 app/features/mec/regform.php:
|
1169 |
-
#: app/libraries/main.php:
|
1170 |
msgid "MEC Name"
|
1171 |
msgstr ""
|
1172 |
|
1173 |
-
#: app/features/events.php:2319 app/features/mec/regform.php:
|
1174 |
-
#: app/libraries/main.php:
|
1175 |
msgid "MEC Email"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
-
#: app/features/events.php:2320 app/features/mec/regform.php:
|
1179 |
-
#: app/libraries/main.php:
|
1180 |
msgid "Text"
|
1181 |
msgstr ""
|
1182 |
|
1183 |
-
#: app/features/events.php:2323 app/features/mec/regform.php:
|
1184 |
#: app/features/organizers.php:102 app/features/organizers.php:146
|
1185 |
#: app/features/speakers.php:112 app/features/speakers.php:176
|
1186 |
-
#: app/features/speakers.php:245 app/libraries/main.php:
|
1187 |
msgid "Tel"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
-
#: app/features/events.php:2324 app/features/mec/regform.php:
|
1191 |
-
#: app/libraries/main.php:
|
1192 |
msgid "File"
|
1193 |
msgstr ""
|
1194 |
|
1195 |
-
#: app/features/events.php:2326 app/features/mec/regform.php:
|
1196 |
-
#: app/libraries/main.php:
|
1197 |
msgid "Textarea"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
-
#: app/features/events.php:2328 app/features/mec/regform.php:
|
1201 |
-
#: app/libraries/main.php:
|
1202 |
msgid "Checkboxes"
|
1203 |
msgstr ""
|
1204 |
|
1205 |
-
#: app/features/events.php:2330 app/features/mec/regform.php:
|
1206 |
-
#: app/libraries/main.php:
|
1207 |
msgid "Radio Buttons"
|
1208 |
msgstr ""
|
1209 |
|
@@ -1276,44 +1276,44 @@ msgstr ""
|
|
1276 |
#: app/features/mec/meta_boxes/search_form.php:604
|
1277 |
#: app/features/mec/meta_boxes/search_form.php:611
|
1278 |
#: app/features/mec/meta_boxes/search_form.php:618
|
1279 |
-
#: app/features/mec/regform.php:
|
1280 |
msgid "Dropdown"
|
1281 |
msgstr ""
|
1282 |
|
1283 |
-
#: app/features/events.php:2333 app/features/mec/regform.php:
|
1284 |
-
#: app/libraries/main.php:
|
1285 |
msgid "Agreement"
|
1286 |
msgstr ""
|
1287 |
|
1288 |
-
#: app/features/events.php:2334 app/features/mec/regform.php:
|
1289 |
-
#: app/libraries/main.php:
|
1290 |
msgid "Paragraph"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
-
#: app/features/events.php:
|
1294 |
-
#: app/features/events.php:
|
1295 |
#, php-format
|
1296 |
msgid "Show all %s"
|
1297 |
msgstr ""
|
1298 |
|
1299 |
-
#: app/features/events.php:
|
1300 |
msgid "labels"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
-
#: app/features/events.php:
|
1304 |
msgid "locations"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
-
#: app/features/events.php:
|
1308 |
msgid "organizers"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
-
#: app/features/events.php:
|
1312 |
-
#: app/features/events.php:
|
1313 |
#: app/features/ix.php:2781 app/features/locations.php:58
|
1314 |
#: app/features/locations.php:229 app/features/locations.php:286
|
1315 |
#: app/features/locations.php:288 app/features/locations.php:297
|
1316 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1317 |
#: app/features/mec/meta_boxes/search_form.php:38
|
1318 |
#: app/features/mec/meta_boxes/search_form.php:99
|
1319 |
#: app/features/mec/meta_boxes/search_form.php:160
|
@@ -1323,8 +1323,8 @@ msgstr ""
|
|
1323 |
#: app/features/mec/meta_boxes/search_form.php:404
|
1324 |
#: app/features/mec/meta_boxes/search_form.php:458
|
1325 |
#: app/features/mec/meta_boxes/search_form.php:519
|
1326 |
-
#: app/features/mec/meta_boxes/search_form.php:580 app/libraries/main.php:
|
1327 |
-
#: app/libraries/main.php:
|
1328 |
#: app/skins/single.php:337 app/skins/single.php:754
|
1329 |
#: app/skins/single/default.php:153 app/skins/single/default.php:364
|
1330 |
#: app/skins/single/m1.php:155 app/skins/single/m2.php:87
|
@@ -1332,9 +1332,9 @@ msgstr ""
|
|
1332 |
msgid "Location"
|
1333 |
msgstr ""
|
1334 |
|
1335 |
-
#: app/features/events.php:
|
1336 |
-
#: app/features/events.php:
|
1337 |
-
#: app/features/ix.php:2781 app/features/mec/meta_boxes/display_options.php:
|
1338 |
#: app/features/mec/meta_boxes/search_form.php:45
|
1339 |
#: app/features/mec/meta_boxes/search_form.php:106
|
1340 |
#: app/features/mec/meta_boxes/search_form.php:167
|
@@ -1347,7 +1347,7 @@ msgstr ""
|
|
1347 |
#: app/features/mec/meta_boxes/search_form.php:587
|
1348 |
#: app/features/organizers.php:58 app/features/organizers.php:199
|
1349 |
#: app/features/organizers.php:255 app/features/organizers.php:257
|
1350 |
-
#: app/features/organizers.php:266 app/libraries/main.php:
|
1351 |
#: app/libraries/skins.php:833 app/skins/single.php:644
|
1352 |
#: app/skins/single/default.php:194 app/skins/single/default.php:405
|
1353 |
#: app/skins/single/m1.php:90 app/skins/single/m2.php:22
|
@@ -1355,56 +1355,56 @@ msgstr ""
|
|
1355 |
msgid "Organizer"
|
1356 |
msgstr ""
|
1357 |
|
1358 |
-
#: app/features/events.php:
|
1359 |
msgid "Repeat"
|
1360 |
msgstr ""
|
1361 |
|
1362 |
-
#: app/features/events.php:
|
1363 |
msgid "Author"
|
1364 |
msgstr ""
|
1365 |
|
1366 |
-
#: app/features/events.php:
|
1367 |
msgid "iCal Export"
|
1368 |
msgstr ""
|
1369 |
|
1370 |
-
#: app/features/events.php:
|
1371 |
msgid "CSV Export"
|
1372 |
msgstr ""
|
1373 |
|
1374 |
-
#: app/features/events.php:
|
1375 |
msgid "MS Excel Export"
|
1376 |
msgstr ""
|
1377 |
|
1378 |
-
#: app/features/events.php:
|
1379 |
msgid "XML Export"
|
1380 |
msgstr ""
|
1381 |
|
1382 |
-
#: app/features/events.php:
|
1383 |
msgid "JSON Export"
|
1384 |
msgstr ""
|
1385 |
|
1386 |
-
#: app/features/events.php:
|
1387 |
msgid "Duplicate"
|
1388 |
msgstr ""
|
1389 |
|
1390 |
-
#: app/features/events.php:
|
1391 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
1392 |
#: app/features/labels.php:176 app/features/locations.php:228
|
1393 |
#: app/features/organizers.php:198 app/features/speakers.php:242
|
1394 |
msgid "ID"
|
1395 |
msgstr ""
|
1396 |
|
1397 |
-
#: app/features/events.php:
|
1398 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
1399 |
msgid "Link"
|
1400 |
msgstr ""
|
1401 |
|
1402 |
-
#: app/features/events.php:
|
1403 |
#, php-format
|
1404 |
msgid "%s Tel"
|
1405 |
msgstr ""
|
1406 |
|
1407 |
-
#: app/features/events.php:
|
1408 |
#, php-format
|
1409 |
msgid "%s Email"
|
1410 |
msgstr ""
|
@@ -1451,11 +1451,11 @@ msgstr ""
|
|
1451 |
msgid "Please fill event title field!"
|
1452 |
msgstr ""
|
1453 |
|
1454 |
-
#: app/features/fes.php:
|
1455 |
msgid "The event submitted. It will publish as soon as possible."
|
1456 |
msgstr ""
|
1457 |
|
1458 |
-
#: app/features/fes.php:
|
1459 |
msgid "The event published."
|
1460 |
msgstr ""
|
1461 |
|
@@ -1489,7 +1489,7 @@ msgid ""
|
|
1489 |
"Insert full link including http(s)://"
|
1490 |
msgstr ""
|
1491 |
|
1492 |
-
#: app/features/fes/form.php:723 app/features/mec/settings.php:
|
1493 |
msgid "Featured Image"
|
1494 |
msgstr ""
|
1495 |
|
@@ -1499,23 +1499,23 @@ msgstr ""
|
|
1499 |
|
1500 |
#: app/features/fes/form.php:770 app/features/labels.php:61
|
1501 |
#: app/features/labels.php:220 app/features/mec.php:333
|
1502 |
-
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:
|
1503 |
#: app/skins/single.php:536 app/skins/single/default.php:132
|
1504 |
#: app/skins/single/default.php:343 app/skins/single/m1.php:64
|
1505 |
#: app/skins/single/modern.php:214
|
1506 |
msgid "Labels"
|
1507 |
msgstr ""
|
1508 |
|
1509 |
-
#: app/features/fes/form.php:
|
1510 |
#: app/features/mec/meta_boxes/filter.php:138
|
1511 |
msgid "Tags"
|
1512 |
msgstr ""
|
1513 |
|
1514 |
-
#: app/features/fes/form.php:
|
1515 |
msgid "Insert your desired tags, comma separated."
|
1516 |
msgstr ""
|
1517 |
|
1518 |
-
#: app/features/fes/form.php:
|
1519 |
msgid "Submit"
|
1520 |
msgstr ""
|
1521 |
|
@@ -1540,12 +1540,12 @@ msgstr ""
|
|
1540 |
msgid "MEC - Import / Export"
|
1541 |
msgstr ""
|
1542 |
|
1543 |
-
#: app/features/ix.php:107 app/features/mec/booking.php:
|
1544 |
-
#: app/features/mec/gateways.php:
|
1545 |
-
#: app/features/mec/messages.php:
|
1546 |
-
#: app/features/mec/notifications.php:
|
1547 |
-
#: app/features/mec/settings.php:
|
1548 |
-
#: app/features/mec/styles.php:
|
1549 |
#: app/features/mec/support.php:73
|
1550 |
msgid "Import / Export"
|
1551 |
msgstr ""
|
@@ -1578,7 +1578,7 @@ msgstr ""
|
|
1578 |
msgid "Both of API key and Calendar ID are required!"
|
1579 |
msgstr ""
|
1580 |
|
1581 |
-
#: app/features/ix.php:2000 app/features/ix.php:2419 app/features/ix.php:
|
1582 |
msgid "Please select some events to import!"
|
1583 |
msgstr ""
|
1584 |
|
@@ -1611,36 +1611,36 @@ msgstr ""
|
|
1611 |
msgid "All of Client App, Client Secret and Calendar ID are required!"
|
1612 |
msgstr ""
|
1613 |
|
1614 |
-
#: app/features/ix.php:
|
1615 |
#, php-format
|
1616 |
msgid "%s events added to Google Calendar successfully."
|
1617 |
msgstr ""
|
1618 |
|
1619 |
-
#: app/features/ix.php:
|
1620 |
#, php-format
|
1621 |
msgid "%s previously added events get updated."
|
1622 |
msgstr ""
|
1623 |
|
1624 |
-
#: app/features/ix.php:
|
1625 |
#, php-format
|
1626 |
msgid "%s events failed to add for following reasons: %s"
|
1627 |
msgstr ""
|
1628 |
|
1629 |
-
#: app/features/ix.php:
|
1630 |
msgid "Please insert your Facebook page's link."
|
1631 |
msgstr ""
|
1632 |
|
1633 |
-
#: app/features/ix.php:
|
1634 |
msgid ""
|
1635 |
"We couldn't recognize your Facebook page. Please check it and provide us a "
|
1636 |
"valid Facebook page link."
|
1637 |
msgstr ""
|
1638 |
|
1639 |
-
#: app/features/ix.php:
|
1640 |
msgid "Please insert your facebook page's link."
|
1641 |
msgstr ""
|
1642 |
|
1643 |
-
#: app/features/ix.php:
|
1644 |
msgid ""
|
1645 |
"We couldn't recognize your Facebook page. Please check it and provide us a "
|
1646 |
"valid facebook page link."
|
@@ -1673,7 +1673,7 @@ msgstr ""
|
|
1673 |
#: app/features/ix/import.php:15 app/features/ix/import_f_calendar.php:15
|
1674 |
#: app/features/ix/import_g_calendar.php:15
|
1675 |
#: app/features/ix/import_meetup.php:15 app/features/ix/sync.php:15
|
1676 |
-
#: app/features/ix/thirdparty.php:15 app/features/mec/ie.php:
|
1677 |
msgid "Export"
|
1678 |
msgstr ""
|
1679 |
|
@@ -1684,7 +1684,7 @@ msgstr ""
|
|
1684 |
#: app/features/ix/import_g_calendar.php:103
|
1685 |
#: app/features/ix/import_meetup.php:16 app/features/ix/import_meetup.php:85
|
1686 |
#: app/features/ix/sync.php:16 app/features/ix/thirdparty.php:16
|
1687 |
-
#: app/features/ix/thirdparty.php:98 app/features/mec/ie.php:
|
1688 |
msgid "Import"
|
1689 |
msgstr ""
|
1690 |
|
@@ -1803,16 +1803,16 @@ msgstr ""
|
|
1803 |
#: app/features/ix/export_g_calendar.php:72
|
1804 |
#: app/features/ix/export_g_calendar.php:147
|
1805 |
#: app/features/ix/export_g_calendar.php:164
|
1806 |
-
#: app/features/mec/notifications.php:
|
1807 |
-
#: app/features/mec/notifications.php:
|
1808 |
-
#: app/features/mec/notifications.php:
|
1809 |
-
#: app/features/mec/notifications.php:
|
1810 |
msgid "Add to Google Calendar"
|
1811 |
msgstr ""
|
1812 |
|
1813 |
-
#: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:
|
1814 |
-
#: app/features/mec/modules.php:602 app/features/mec/notifications.php:
|
1815 |
-
#: app/features/mec/settings.php:
|
1816 |
msgid "Checking ..."
|
1817 |
msgstr ""
|
1818 |
|
@@ -1854,24 +1854,24 @@ msgstr ""
|
|
1854 |
msgid "ICS Feed"
|
1855 |
msgstr ""
|
1856 |
|
1857 |
-
#: app/features/ix/import.php:46 app/features/mec/booking.php:
|
1858 |
-
#: app/features/mec/booking.php:
|
1859 |
-
#: app/features/mec/booking.php:
|
1860 |
#: app/features/mec/modules.php:408 app/features/mec/modules.php:425
|
1861 |
#, php-format
|
1862 |
msgid "%s is required to use this feature."
|
1863 |
msgstr ""
|
1864 |
|
1865 |
#: app/features/ix/import.php:46 app/features/ix/sync.php:22
|
1866 |
-
#: app/features/mec/booking.php:
|
1867 |
-
#: app/features/mec/booking.php:
|
1868 |
#: app/features/mec/meta_boxes/display_options.php:296
|
1869 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1870 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1871 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1872 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1873 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1874 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1875 |
#: app/features/mec/modules.php:267 app/features/mec/modules.php:408
|
1876 |
#: app/features/mec/modules.php:425
|
1877 |
msgid "Pro version of Modern Events Calendar"
|
@@ -2025,7 +2025,7 @@ msgid "Auto Synchronization"
|
|
2025 |
msgstr ""
|
2026 |
|
2027 |
#: app/features/ix/sync.php:22
|
2028 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2029 |
#, php-format
|
2030 |
msgid "%s is required to use synchronization feature."
|
2031 |
msgstr ""
|
@@ -2036,7 +2036,7 @@ msgstr ""
|
|
2036 |
|
2037 |
#: app/features/ix/sync.php:32 app/features/ix/sync.php:41
|
2038 |
#: app/features/ix/sync.php:52 app/features/ix/sync.php:63
|
2039 |
-
#: app/features/mec/notifications.php:
|
2040 |
msgid "Important Note"
|
2041 |
msgstr ""
|
2042 |
|
@@ -2143,13 +2143,13 @@ msgstr ""
|
|
2143 |
#: app/features/mec/meta_boxes/display_options.php:32
|
2144 |
#: app/features/mec/meta_boxes/display_options.php:157
|
2145 |
#: app/features/mec/meta_boxes/display_options.php:301
|
2146 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2147 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2148 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2149 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2150 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2151 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2152 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2153 |
msgid "Style"
|
2154 |
msgstr ""
|
2155 |
|
@@ -2171,7 +2171,7 @@ msgid "Featured"
|
|
2171 |
msgstr ""
|
2172 |
|
2173 |
#: app/features/labels.php:117 app/features/labels.php:142
|
2174 |
-
#: app/libraries/main.php:
|
2175 |
#: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:59
|
2176 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
|
2177 |
#: app/skins/daily_view/render.php:27 app/skins/grid/render.php:53
|
@@ -2206,7 +2206,7 @@ msgstr ""
|
|
2206 |
|
2207 |
#: app/features/locations.php:59 app/features/mec.php:334
|
2208 |
#: app/features/mec/dashboard.php:202 app/features/mec/meta_boxes/filter.php:87
|
2209 |
-
#: app/libraries/main.php:
|
2210 |
msgid "Locations"
|
2211 |
msgstr ""
|
2212 |
|
@@ -2277,7 +2277,7 @@ msgstr ""
|
|
2277 |
msgid "eg. City Hall"
|
2278 |
msgstr ""
|
2279 |
|
2280 |
-
#: app/features/locations.php:309 app/features/mec/settings.php:
|
2281 |
#: app/widgets/single.php:115
|
2282 |
msgid "Event Location"
|
2283 |
msgstr ""
|
@@ -2311,7 +2311,7 @@ msgstr ""
|
|
2311 |
msgid "Don't show map in single event page"
|
2312 |
msgstr ""
|
2313 |
|
2314 |
-
#: app/features/locations.php:355 app/libraries/main.php:
|
2315 |
msgid "Other Locations"
|
2316 |
msgstr ""
|
2317 |
|
@@ -2355,7 +2355,7 @@ msgstr ""
|
|
2355 |
|
2356 |
#: app/features/mec.php:335 app/features/mec/dashboard.php:209
|
2357 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2358 |
-
#: app/libraries/main.php:
|
2359 |
msgid "Organizers"
|
2360 |
msgstr ""
|
2361 |
|
@@ -2458,32 +2458,32 @@ msgid ""
|
|
2458 |
"your host provider in this regard."
|
2459 |
msgstr ""
|
2460 |
|
2461 |
-
#: app/features/mec/booking.php:24 app/features/mec/booking.php:
|
2462 |
-
#: app/features/mec/booking.php:
|
2463 |
-
#: app/features/mec/booking.php:
|
2464 |
-
#: app/features/mec/gateways.php:
|
2465 |
-
#: app/features/mec/gateways.php:
|
2466 |
-
#: app/features/mec/messages.php:11 app/features/mec/messages.php:
|
2467 |
-
#: app/features/mec/messages.php:
|
2468 |
-
#: app/features/mec/messages.php:
|
2469 |
#: app/features/mec/modules.php:542 app/features/mec/modules.php:552
|
2470 |
#: app/features/mec/modules.php:619 app/features/mec/modules.php:633
|
2471 |
-
#: app/features/mec/notifications.php:10 app/features/mec/notifications.php:
|
2472 |
-
#: app/features/mec/notifications.php:
|
2473 |
-
#: app/features/mec/notifications.php:
|
2474 |
-
#: app/features/mec/notifications.php:
|
2475 |
-
#: app/features/mec/regform.php:
|
2476 |
-
#: app/features/mec/regform.php:
|
2477 |
-
#: app/features/mec/settings.php:31 app/features/mec/settings.php:
|
2478 |
-
#: app/features/mec/settings.php:
|
2479 |
-
#: app/features/mec/settings.php:
|
2480 |
-
#: app/features/mec/single.php:
|
2481 |
-
#: app/features/mec/single.php:
|
2482 |
-
#: app/features/mec/styles.php:11 app/features/mec/styles.php:
|
2483 |
-
#: app/features/mec/styles.php:
|
2484 |
-
#: app/features/mec/styles.php:
|
2485 |
-
#: app/features/mec/styling.php:
|
2486 |
-
#: app/features/mec/styling.php:
|
2487 |
msgid "Save Changes"
|
2488 |
msgstr ""
|
2489 |
|
@@ -2491,7 +2491,7 @@ msgstr ""
|
|
2491 |
#: app/features/mec/ie.php:25 app/features/mec/messages.php:29
|
2492 |
#: app/features/mec/modules.php:36 app/features/mec/notifications.php:28
|
2493 |
#: app/features/mec/regform.php:65 app/features/mec/settings.php:57
|
2494 |
-
#: app/features/mec/settings.php:
|
2495 |
#: app/features/mec/styles.php:29 app/features/mec/styling.php:51
|
2496 |
msgid "Archive Pages"
|
2497 |
msgstr ""
|
@@ -2500,7 +2500,7 @@ msgstr ""
|
|
2500 |
#: app/features/mec/ie.php:30 app/features/mec/messages.php:34
|
2501 |
#: app/features/mec/modules.php:41 app/features/mec/notifications.php:33
|
2502 |
#: app/features/mec/regform.php:70 app/features/mec/settings.php:87
|
2503 |
-
#: app/features/mec/settings.php:
|
2504 |
#: app/features/mec/styles.php:34 app/features/mec/styling.php:56
|
2505 |
msgid "User Profile"
|
2506 |
msgstr ""
|
@@ -2527,7 +2527,7 @@ msgstr ""
|
|
2527 |
#: app/features/mec/ie.php:46 app/features/mec/messages.php:50
|
2528 |
#: app/features/mec/modules.php:57 app/features/mec/notifications.php:49
|
2529 |
#: app/features/mec/regform.php:86 app/features/mec/settings.php:117
|
2530 |
-
#: app/features/mec/single.php:56 app/features/mec/single.php:
|
2531 |
#: app/features/mec/styles.php:50 app/features/mec/styling.php:72
|
2532 |
msgid "Single Event Page"
|
2533 |
msgstr ""
|
@@ -2536,7 +2536,7 @@ msgstr ""
|
|
2536 |
#: app/features/mec/ie.php:49 app/features/mec/messages.php:53
|
2537 |
#: app/features/mec/modules.php:60 app/features/mec/notifications.php:52
|
2538 |
#: app/features/mec/regform.php:89 app/features/mec/settings.php:120
|
2539 |
-
#: app/features/mec/single.php:74 app/features/mec/single.php:
|
2540 |
#: app/features/mec/styles.php:53 app/features/mec/styling.php:75
|
2541 |
msgid "Additional Organizers"
|
2542 |
msgstr ""
|
@@ -2550,7 +2550,7 @@ msgstr ""
|
|
2550 |
msgid "Additional Locations"
|
2551 |
msgstr ""
|
2552 |
|
2553 |
-
#: app/features/mec/booking.php:98 app/features/mec/booking.php:
|
2554 |
#: app/features/mec/gateways.php:71 app/features/mec/ie.php:67
|
2555 |
#: app/features/mec/messages.php:71 app/features/mec/modules.php:78
|
2556 |
#: app/features/mec/notifications.php:70 app/features/mec/regform.php:107
|
@@ -2559,7 +2559,7 @@ msgstr ""
|
|
2559 |
msgid "Taxes / Fees"
|
2560 |
msgstr ""
|
2561 |
|
2562 |
-
#: app/features/mec/booking.php:104 app/features/mec/booking.php:
|
2563 |
#: app/features/mec/gateways.php:72 app/features/mec/ie.php:68
|
2564 |
#: app/features/mec/messages.php:72 app/features/mec/modules.php:79
|
2565 |
#: app/features/mec/notifications.php:71 app/features/mec/regform.php:108
|
@@ -2626,216 +2626,216 @@ msgstr ""
|
|
2626 |
msgid "Next Event"
|
2627 |
msgstr ""
|
2628 |
|
2629 |
-
#: app/features/mec/booking.php:166 app/features/mec/gateways.php:131
|
2630 |
-
#: app/features/mec/ie.php:127 app/features/mec/messages.php:131
|
2631 |
-
#: app/features/mec/modules.php:195 app/features/mec/notifications.php:140
|
2632 |
-
#: app/features/mec/notifications.php:287 app/features/mec/regform.php:165
|
2633 |
-
#: app/features/mec/settings.php:198 app/features/mec/single.php:159
|
2634 |
-
#: app/features/mec/styles.php:131 app/features/mec/styling.php:153
|
2635 |
-
msgid "Booking Verification"
|
2636 |
-
msgstr ""
|
2637 |
-
|
2638 |
-
#: app/features/mec/booking.php:167 app/features/mec/booking.php:302
|
2639 |
-
#: app/features/mec/gateways.php:132 app/features/mec/ie.php:128
|
2640 |
-
#: app/features/mec/messages.php:132 app/features/mec/modules.php:196
|
2641 |
-
#: app/features/mec/notifications.php:146
|
2642 |
-
#: app/features/mec/notifications.php:339 app/features/mec/regform.php:166
|
2643 |
-
#: app/features/mec/settings.php:199 app/features/mec/single.php:160
|
2644 |
-
#: app/features/mec/styles.php:132 app/features/mec/styling.php:154
|
2645 |
-
msgid "Booking Confirmation"
|
2646 |
-
msgstr ""
|
2647 |
-
|
2648 |
#: app/features/mec/booking.php:168 app/features/mec/gateways.php:133
|
2649 |
#: app/features/mec/ie.php:129 app/features/mec/messages.php:133
|
2650 |
-
#: app/features/mec/modules.php:
|
2651 |
-
#: app/features/mec/notifications.php:
|
2652 |
#: app/features/mec/settings.php:200 app/features/mec/single.php:161
|
2653 |
#: app/features/mec/styles.php:133 app/features/mec/styling.php:155
|
2654 |
-
msgid "Booking
|
2655 |
msgstr ""
|
2656 |
|
2657 |
-
#: app/features/mec/booking.php:169 app/features/mec/
|
2658 |
-
#: app/features/mec/
|
2659 |
-
#: app/features/mec/
|
2660 |
-
#: app/features/mec/notifications.php:
|
|
|
2661 |
#: app/features/mec/settings.php:201 app/features/mec/single.php:162
|
2662 |
#: app/features/mec/styles.php:134 app/features/mec/styling.php:156
|
2663 |
-
msgid "
|
2664 |
msgstr ""
|
2665 |
|
2666 |
#: app/features/mec/booking.php:170 app/features/mec/gateways.php:135
|
2667 |
#: app/features/mec/ie.php:131 app/features/mec/messages.php:135
|
2668 |
-
#: app/features/mec/modules.php:
|
2669 |
-
#: app/features/mec/notifications.php:
|
2670 |
#: app/features/mec/settings.php:202 app/features/mec/single.php:163
|
2671 |
#: app/features/mec/styles.php:135 app/features/mec/styling.php:157
|
2672 |
-
|
2673 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2674 |
msgstr ""
|
2675 |
|
2676 |
#: app/features/mec/booking.php:172 app/features/mec/gateways.php:137
|
2677 |
#: app/features/mec/ie.php:133 app/features/mec/messages.php:137
|
2678 |
-
#: app/features/mec/modules.php:
|
2679 |
-
#: app/features/mec/notifications.php:
|
2680 |
#: app/features/mec/settings.php:204 app/features/mec/single.php:165
|
2681 |
#: app/features/mec/styles.php:137 app/features/mec/styling.php:159
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2682 |
#: app/features/mec/support-page.php:80
|
2683 |
msgid "New Event"
|
2684 |
msgstr ""
|
2685 |
|
2686 |
-
#: app/features/mec/booking.php:
|
2687 |
-
#: app/features/mec/ie.php:
|
2688 |
-
#: app/features/mec/modules.php:209 app/features/mec/notifications.php:
|
2689 |
-
#: app/features/mec/regform.php:
|
2690 |
-
#: app/features/mec/single.php:
|
2691 |
-
#: app/features/mec/styling.php:
|
2692 |
msgid "Styling Options"
|
2693 |
msgstr ""
|
2694 |
|
2695 |
-
#: app/features/mec/booking.php:
|
2696 |
-
#: app/features/mec/ie.php:
|
2697 |
-
#: app/features/mec/modules.php:216 app/features/mec/notifications.php:
|
2698 |
-
#: app/features/mec/regform.php:
|
2699 |
-
#: app/features/mec/single.php:
|
2700 |
-
#: app/features/mec/styling.php:
|
2701 |
msgid "Custom CSS"
|
2702 |
msgstr ""
|
2703 |
|
2704 |
-
#: app/features/mec/booking.php:
|
2705 |
-
#: app/features/mec/ie.php:
|
2706 |
-
#: app/features/mec/messages.php:
|
2707 |
-
#: app/features/mec/notifications.php:
|
2708 |
-
#: app/features/mec/settings.php:
|
2709 |
-
#: app/features/mec/styles.php:
|
2710 |
#: app/features/mec/support.php:66
|
2711 |
msgid "Messages"
|
2712 |
msgstr ""
|
2713 |
|
2714 |
-
#: app/features/mec/booking.php:
|
2715 |
msgid "Enable booking module"
|
2716 |
msgstr ""
|
2717 |
|
2718 |
-
#: app/features/mec/booking.php:
|
2719 |
msgid ""
|
2720 |
"After enable it, you should reloading this page to see Payment Gateways on "
|
2721 |
"settings and see a new menu on Dashboard"
|
2722 |
msgstr ""
|
2723 |
|
2724 |
-
#: app/features/mec/booking.php:
|
2725 |
#: app/features/mec/modules.php:491 app/features/mec/modules.php:496
|
2726 |
msgid "Date Format"
|
2727 |
msgstr ""
|
2728 |
|
2729 |
-
#: app/features/mec/booking.php:
|
2730 |
msgid "Default is Y-m-d"
|
2731 |
msgstr ""
|
2732 |
|
2733 |
-
#: app/features/mec/booking.php:
|
2734 |
msgid "Maximum Dates"
|
2735 |
msgstr ""
|
2736 |
|
2737 |
-
#: app/features/mec/booking.php:
|
2738 |
msgid "Default is 6"
|
2739 |
msgstr ""
|
2740 |
|
2741 |
-
#: app/features/mec/booking.php:
|
2742 |
msgid "Thank You Page"
|
2743 |
msgstr ""
|
2744 |
|
2745 |
-
#: app/features/mec/booking.php:
|
2746 |
msgid ""
|
2747 |
"User redirects to this page after booking. Leave it empty if you want to "
|
2748 |
"disable it."
|
2749 |
msgstr ""
|
2750 |
|
2751 |
-
#: app/features/mec/booking.php:
|
2752 |
msgid "Enable Express Attendees Form"
|
2753 |
msgstr ""
|
2754 |
|
2755 |
-
#: app/features/mec/booking.php:
|
2756 |
msgid "Attendees Form"
|
2757 |
msgstr ""
|
2758 |
|
2759 |
-
#: app/features/mec/booking.php:
|
2760 |
msgid ""
|
2761 |
"Users are able to apply first attendee information for other attendees in "
|
2762 |
"the booking form."
|
2763 |
msgstr ""
|
2764 |
|
2765 |
-
#: app/features/mec/booking.php:
|
2766 |
msgid "Email verification"
|
2767 |
msgstr ""
|
2768 |
|
2769 |
-
#: app/features/mec/booking.php:
|
2770 |
msgid "Auto verification for free bookings"
|
2771 |
msgstr ""
|
2772 |
|
2773 |
-
#: app/features/mec/booking.php:
|
2774 |
msgid "Auto verification for paid bookings"
|
2775 |
msgstr ""
|
2776 |
|
2777 |
-
#: app/features/mec/booking.php:
|
2778 |
msgid "Auto confirmation for free bookings"
|
2779 |
msgstr ""
|
2780 |
|
2781 |
-
#: app/features/mec/booking.php:
|
2782 |
msgid "Auto confirmation for paid bookings"
|
2783 |
msgstr ""
|
2784 |
|
2785 |
-
#: app/features/mec/booking.php:
|
2786 |
msgid "Enable coupons module"
|
2787 |
msgstr ""
|
2788 |
|
2789 |
-
#: app/features/mec/booking.php:
|
2790 |
msgid ""
|
2791 |
"After enable it, you should reloading this page to see a new menu on "
|
2792 |
"Dashboard > Booking"
|
2793 |
msgstr ""
|
2794 |
|
2795 |
-
#: app/features/mec/booking.php:
|
2796 |
msgid "Enable taxes / fees module"
|
2797 |
msgstr ""
|
2798 |
|
2799 |
-
#: app/features/mec/booking.php:
|
2800 |
msgid "Add Fee"
|
2801 |
msgstr ""
|
2802 |
|
2803 |
-
#: app/features/mec/booking.php:
|
2804 |
msgid "Enable ticket options module"
|
2805 |
msgstr ""
|
2806 |
|
2807 |
-
#: app/features/mec/booking.php:
|
2808 |
msgid "Add Variation / Option"
|
2809 |
msgstr ""
|
2810 |
|
2811 |
-
#: app/features/mec/booking.php:
|
2812 |
-
#: app/features/mec/messages.php:
|
2813 |
-
#: app/features/mec/notifications.php:
|
2814 |
-
#: app/features/mec/settings.php:
|
2815 |
-
#: app/features/mec/styles.php:
|
2816 |
msgid "Saved"
|
2817 |
msgstr ""
|
2818 |
|
2819 |
-
#: app/features/mec/booking.php:
|
2820 |
-
#: app/features/mec/messages.php:
|
2821 |
-
#: app/features/mec/notifications.php:
|
2822 |
-
#: app/features/mec/settings.php:
|
2823 |
-
#: app/features/mec/styles.php:
|
2824 |
msgid "Settings Saved!"
|
2825 |
msgstr ""
|
2826 |
|
2827 |
-
#: app/features/mec/booking.php:
|
2828 |
#: app/features/mec/modules.php:600 app/features/mec/modules.php:622
|
2829 |
-
#: app/features/mec/notifications.php:
|
2830 |
-
#: app/features/mec/notifications.php:
|
2831 |
-
#: app/features/mec/settings.php:
|
2832 |
-
#: app/features/mec/single.php:
|
2833 |
msgid "Verified"
|
2834 |
msgstr ""
|
2835 |
|
2836 |
-
#: app/features/mec/booking.php:
|
2837 |
-
#: app/features/mec/notifications.php:
|
2838 |
-
#: app/features/mec/single.php:
|
2839 |
msgid "Please Refresh Page"
|
2840 |
msgstr ""
|
2841 |
|
@@ -2902,7 +2902,7 @@ msgstr ""
|
|
2902 |
msgid "Activate Addons"
|
2903 |
msgstr ""
|
2904 |
|
2905 |
-
#: app/features/mec/dashboard.php:220 app/features/mec/settings.php:
|
2906 |
msgid "Upcoming Events"
|
2907 |
msgstr ""
|
2908 |
|
@@ -2951,31 +2951,31 @@ msgstr ""
|
|
2951 |
msgid "Change Log"
|
2952 |
msgstr ""
|
2953 |
|
2954 |
-
#: app/features/mec/ie.php:
|
2955 |
msgid ""
|
2956 |
"Insert your backup files below and press import to restore your site's "
|
2957 |
"options to the last backup."
|
2958 |
msgstr ""
|
2959 |
|
2960 |
-
#: app/features/mec/ie.php:
|
2961 |
msgid ""
|
2962 |
"WARNING! Restoring backup will overwrite all of your current option values. "
|
2963 |
"Caution Indeed."
|
2964 |
msgstr ""
|
2965 |
|
2966 |
-
#: app/features/mec/ie.php:
|
2967 |
msgid "Please paste your options here"
|
2968 |
msgstr ""
|
2969 |
|
2970 |
-
#: app/features/mec/ie.php:
|
2971 |
msgid "Import Settings"
|
2972 |
msgstr ""
|
2973 |
|
2974 |
-
#: app/features/mec/ie.php:
|
2975 |
msgid "Download Settings"
|
2976 |
msgstr ""
|
2977 |
|
2978 |
-
#: app/features/mec/messages.php:
|
2979 |
msgid ""
|
2980 |
"You can change some MEC messages here simply. For example if you like to "
|
2981 |
"change \"REGISTER\" button label, you can do it here. By the Way, if your "
|
@@ -2989,63 +2989,63 @@ msgstr ""
|
|
2989 |
|
2990 |
#: app/features/mec/meta_boxes/display_options.php:34
|
2991 |
#: app/features/mec/meta_boxes/display_options.php:159
|
2992 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2993 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2994 |
-
#: app/features/mec/settings.php:
|
2995 |
-
#: app/features/mec/settings.php:
|
2996 |
-
#: app/features/mec/settings.php:
|
2997 |
msgid "Classic"
|
2998 |
msgstr ""
|
2999 |
|
3000 |
#: app/features/mec/meta_boxes/display_options.php:35
|
3001 |
#: app/features/mec/meta_boxes/display_options.php:161
|
3002 |
-
#: app/features/mec/settings.php:
|
3003 |
-
#: app/features/mec/settings.php:
|
3004 |
msgid "Minimal"
|
3005 |
msgstr ""
|
3006 |
|
3007 |
#: app/features/mec/meta_boxes/display_options.php:36
|
3008 |
#: app/features/mec/meta_boxes/display_options.php:162
|
3009 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3010 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3011 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3012 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3013 |
-
#: app/features/mec/settings.php:
|
3014 |
-
#: app/features/mec/settings.php:
|
3015 |
-
#: app/features/mec/settings.php:
|
3016 |
-
#: app/features/mec/settings.php:
|
3017 |
msgid "Modern"
|
3018 |
msgstr ""
|
3019 |
|
3020 |
#: app/features/mec/meta_boxes/display_options.php:37
|
3021 |
-
#: app/features/mec/settings.php:
|
3022 |
msgid "Standard"
|
3023 |
msgstr ""
|
3024 |
|
3025 |
#: app/features/mec/meta_boxes/display_options.php:38
|
3026 |
-
#: app/features/mec/settings.php:
|
3027 |
msgid "Accordion"
|
3028 |
msgstr ""
|
3029 |
|
3030 |
#: app/features/mec/meta_boxes/display_options.php:44
|
3031 |
#: app/features/mec/meta_boxes/display_options.php:171
|
3032 |
#: app/features/mec/meta_boxes/display_options.php:309
|
3033 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3034 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3035 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3036 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3037 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3038 |
msgid "Today"
|
3039 |
msgstr ""
|
3040 |
|
3041 |
#: app/features/mec/meta_boxes/display_options.php:45
|
3042 |
#: app/features/mec/meta_boxes/display_options.php:172
|
3043 |
#: app/features/mec/meta_boxes/display_options.php:310
|
3044 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3045 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3046 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3047 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3048 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3049 |
msgid "Tomorrow"
|
3050 |
msgstr ""
|
3051 |
|
@@ -3053,14 +3053,14 @@ msgstr ""
|
|
3053 |
#: app/features/mec/meta_boxes/display_options.php:173
|
3054 |
#: app/features/mec/meta_boxes/display_options.php:311
|
3055 |
#: app/features/mec/meta_boxes/display_options.php:364
|
3056 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3057 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3058 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3059 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3060 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3061 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3062 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3063 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3064 |
msgid "Start of Current Month"
|
3065 |
msgstr ""
|
3066 |
|
@@ -3068,14 +3068,14 @@ msgstr ""
|
|
3068 |
#: app/features/mec/meta_boxes/display_options.php:174
|
3069 |
#: app/features/mec/meta_boxes/display_options.php:312
|
3070 |
#: app/features/mec/meta_boxes/display_options.php:365
|
3071 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3072 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3073 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3074 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3075 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3076 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3077 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3078 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3079 |
msgid "Start of Next Month"
|
3080 |
msgstr ""
|
3081 |
|
@@ -3083,15 +3083,15 @@ msgstr ""
|
|
3083 |
#: app/features/mec/meta_boxes/display_options.php:175
|
3084 |
#: app/features/mec/meta_boxes/display_options.php:313
|
3085 |
#: app/features/mec/meta_boxes/display_options.php:366
|
3086 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3087 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3088 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3089 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3090 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3091 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3092 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3093 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3094 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3095 |
msgid "On a certain date"
|
3096 |
msgstr ""
|
3097 |
|
@@ -3099,15 +3099,15 @@ msgstr ""
|
|
3099 |
#: app/features/mec/meta_boxes/display_options.php:178
|
3100 |
#: app/features/mec/meta_boxes/display_options.php:316
|
3101 |
#: app/features/mec/meta_boxes/display_options.php:369
|
3102 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3103 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3104 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3105 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3106 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3107 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3108 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3109 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3110 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3111 |
#, php-format
|
3112 |
msgid "eg. %s"
|
3113 |
msgstr ""
|
@@ -3138,40 +3138,40 @@ msgstr ""
|
|
3138 |
#: app/features/mec/meta_boxes/display_options.php:258
|
3139 |
#: app/features/mec/meta_boxes/display_options.php:320
|
3140 |
#: app/features/mec/meta_boxes/display_options.php:325
|
3141 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3142 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3143 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3144 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3145 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3146 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3147 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3148 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3149 |
-
#: app/features/mec/meta_boxes/display_options.php:852
|
3150 |
#: app/features/mec/meta_boxes/display_options.php:856
|
3151 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3152 |
#: app/features/mec/meta_boxes/display_options.php:888
|
3153 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3154 |
#: app/features/mec/meta_boxes/display_options.php:899
|
3155 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3156 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3157 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3158 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3159 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3160 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3161 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3162 |
#: app/features/mec/meta_boxes/display_options.php:1007
|
3163 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3164 |
#: app/features/mec/meta_boxes/display_options.php:1018
|
3165 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3166 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3167 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3168 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3169 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3170 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3171 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3172 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3173 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3174 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
|
|
3175 |
msgid "Date Formats"
|
3176 |
msgstr ""
|
3177 |
|
@@ -3187,11 +3187,11 @@ msgstr ""
|
|
3187 |
#: app/features/mec/meta_boxes/display_options.php:86
|
3188 |
#: app/features/mec/meta_boxes/display_options.php:224
|
3189 |
#: app/features/mec/meta_boxes/display_options.php:248
|
3190 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3191 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3192 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3193 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3194 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3195 |
msgid "Default values are d, F and l"
|
3196 |
msgstr ""
|
3197 |
|
@@ -3206,22 +3206,22 @@ msgstr ""
|
|
3206 |
#: app/features/mec/meta_boxes/display_options.php:115
|
3207 |
#: app/features/mec/meta_boxes/display_options.php:276
|
3208 |
#: app/features/mec/meta_boxes/display_options.php:332
|
3209 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3210 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3211 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3212 |
msgid "Limit"
|
3213 |
msgstr ""
|
3214 |
|
3215 |
#: app/features/mec/meta_boxes/display_options.php:116
|
3216 |
#: app/features/mec/meta_boxes/display_options.php:277
|
3217 |
#: app/features/mec/meta_boxes/display_options.php:333
|
3218 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3219 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3220 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3221 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3222 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3223 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3224 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3225 |
msgid "eg. 6"
|
3226 |
msgstr ""
|
3227 |
|
@@ -3243,20 +3243,20 @@ msgstr ""
|
|
3243 |
#: app/features/mec/meta_boxes/display_options.php:160
|
3244 |
#: app/features/mec/meta_boxes/display_options.php:303
|
3245 |
#: app/features/mec/meta_boxes/display_options.php:385
|
3246 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3247 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3248 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3249 |
-
#: app/features/mec/settings.php:
|
3250 |
-
#: app/features/mec/settings.php:
|
3251 |
-
#: app/features/mec/settings.php:
|
3252 |
msgid "Clean"
|
3253 |
msgstr ""
|
3254 |
|
3255 |
#: app/features/mec/meta_boxes/display_options.php:163
|
3256 |
#: app/features/mec/meta_boxes/display_options.php:387
|
3257 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3258 |
-
#: app/features/mec/settings.php:
|
3259 |
-
#: app/features/mec/settings.php:
|
3260 |
msgid "Simple"
|
3261 |
msgstr ""
|
3262 |
|
@@ -3266,9 +3266,9 @@ msgstr ""
|
|
3266 |
|
3267 |
#: app/features/mec/meta_boxes/display_options.php:165
|
3268 |
#: app/features/mec/meta_boxes/display_options.php:386
|
3269 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3270 |
-
#: app/features/mec/settings.php:
|
3271 |
-
#: app/features/mec/settings.php:
|
3272 |
msgid "Novel"
|
3273 |
msgstr ""
|
3274 |
|
@@ -3289,21 +3289,21 @@ msgid "Default value is \"d F Y\""
|
|
3289 |
msgstr ""
|
3290 |
|
3291 |
#: app/features/mec/meta_boxes/display_options.php:265
|
3292 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3293 |
msgid "Count in row"
|
3294 |
msgstr ""
|
3295 |
|
3296 |
#: app/features/mec/meta_boxes/display_options.php:296
|
3297 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3298 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3299 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3300 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3301 |
#, php-format
|
3302 |
msgid "%s is required to use this skin."
|
3303 |
msgstr ""
|
3304 |
|
3305 |
#: app/features/mec/meta_boxes/display_options.php:326
|
3306 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3307 |
msgid "Default values are l and F j"
|
3308 |
msgstr ""
|
3309 |
|
@@ -3312,35 +3312,35 @@ msgid "Default View"
|
|
3312 |
msgstr ""
|
3313 |
|
3314 |
#: app/features/mec/meta_boxes/display_options.php:375
|
3315 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3316 |
-
#: app/libraries/main.php:329 app/libraries/main.php:
|
3317 |
-
#: app/libraries/main.php:
|
3318 |
msgid "List View"
|
3319 |
msgstr ""
|
3320 |
|
3321 |
#: app/features/mec/meta_boxes/display_options.php:376
|
3322 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3323 |
-
#: app/libraries/main.php:333 app/libraries/main.php:
|
3324 |
-
#: app/libraries/main.php:
|
3325 |
msgid "Yearly View"
|
3326 |
msgstr ""
|
3327 |
|
3328 |
#: app/features/mec/meta_boxes/display_options.php:377
|
3329 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3330 |
msgid "Monthly/Calendar View"
|
3331 |
msgstr ""
|
3332 |
|
3333 |
#: app/features/mec/meta_boxes/display_options.php:378
|
3334 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3335 |
-
#: app/libraries/main.php:336 app/libraries/main.php:
|
3336 |
-
#: app/libraries/main.php:
|
3337 |
msgid "Weekly View"
|
3338 |
msgstr ""
|
3339 |
|
3340 |
#: app/features/mec/meta_boxes/display_options.php:379
|
3341 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3342 |
-
#: app/libraries/main.php:335 app/libraries/main.php:
|
3343 |
-
#: app/libraries/main.php:
|
3344 |
msgid "Daily View"
|
3345 |
msgstr ""
|
3346 |
|
@@ -3348,211 +3348,211 @@ msgstr ""
|
|
3348 |
msgid "Monthly Style"
|
3349 |
msgstr ""
|
3350 |
|
3351 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3352 |
#, php-format
|
3353 |
msgid "%s is required to use <b>Yearly View</b> skin."
|
3354 |
msgstr ""
|
3355 |
|
3356 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3357 |
msgid "The price shows only in List View."
|
3358 |
msgstr ""
|
3359 |
|
3360 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3361 |
msgid "Display Event Price"
|
3362 |
msgstr ""
|
3363 |
|
3364 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3365 |
msgid "Start of Current Year"
|
3366 |
msgstr ""
|
3367 |
|
3368 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3369 |
msgid "Start of Next Year"
|
3370 |
msgstr ""
|
3371 |
|
3372 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3373 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3374 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3375 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3376 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3377 |
msgid "Events per day"
|
3378 |
msgstr ""
|
3379 |
|
3380 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3381 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3382 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3383 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3384 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3385 |
msgid "Next/Previous Buttons"
|
3386 |
msgstr ""
|
3387 |
|
3388 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3389 |
msgid "For showing next/previous year navigation."
|
3390 |
msgstr ""
|
3391 |
|
3392 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3393 |
msgid "Uppercase Text"
|
3394 |
msgstr ""
|
3395 |
|
3396 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3397 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3398 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3399 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3400 |
msgid "For showing next/previous month navigation."
|
3401 |
msgstr ""
|
3402 |
|
3403 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3404 |
msgid "Maximum events"
|
3405 |
msgstr ""
|
3406 |
|
3407 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3408 |
msgid "eg. 200"
|
3409 |
msgstr ""
|
3410 |
|
3411 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3412 |
msgid "Geolocation"
|
3413 |
msgstr ""
|
3414 |
|
3415 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3416 |
msgid "The geolocation feature works only in secure (https) websites."
|
3417 |
msgstr ""
|
3418 |
|
3419 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3420 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3421 |
msgid "Current Week"
|
3422 |
msgstr ""
|
3423 |
|
3424 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3425 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3426 |
msgid "Next Week"
|
3427 |
msgstr ""
|
3428 |
|
3429 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3430 |
msgid "Number of Days"
|
3431 |
msgstr ""
|
3432 |
|
3433 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3434 |
msgid "Week Start"
|
3435 |
msgstr ""
|
3436 |
|
3437 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3438 |
msgid "Inherite from WordPress options"
|
3439 |
msgstr ""
|
3440 |
|
3441 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3442 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3443 |
msgid "Default values are j and F"
|
3444 |
msgstr ""
|
3445 |
|
3446 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3447 |
msgid "eg. 24"
|
3448 |
msgstr ""
|
3449 |
|
3450 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3451 |
msgid "Filter By"
|
3452 |
msgstr ""
|
3453 |
|
3454 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3455 |
msgid "None"
|
3456 |
msgstr ""
|
3457 |
|
3458 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3459 |
msgid "Convert Masonry to Grid"
|
3460 |
msgstr ""
|
3461 |
|
3462 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3463 |
msgid "For using this option, your events should come with image"
|
3464 |
msgstr ""
|
3465 |
|
3466 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3467 |
msgid "Default values are d, M and Y"
|
3468 |
msgstr ""
|
3469 |
|
3470 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3471 |
msgid "Default values are \"F d\" and l"
|
3472 |
msgstr ""
|
3473 |
|
3474 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3475 |
msgid "Default value is \"l, F d Y\""
|
3476 |
msgstr ""
|
3477 |
|
3478 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3479 |
msgid "Style 1"
|
3480 |
msgstr ""
|
3481 |
|
3482 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3483 |
msgid "Style 2"
|
3484 |
msgstr ""
|
3485 |
|
3486 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3487 |
msgid "Style 3"
|
3488 |
msgstr ""
|
3489 |
|
3490 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3491 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3492 |
msgid "Default value is \"j F Y\""
|
3493 |
msgstr ""
|
3494 |
|
3495 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3496 |
msgid "Default values are j, F and Y"
|
3497 |
msgstr ""
|
3498 |
|
3499 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3500 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3501 |
msgid " -- Next Upcoming Event -- "
|
3502 |
msgstr ""
|
3503 |
|
3504 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3505 |
msgid "Background Color"
|
3506 |
msgstr ""
|
3507 |
|
3508 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3509 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3510 |
msgid "Type 1"
|
3511 |
msgstr ""
|
3512 |
|
3513 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3514 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3515 |
msgid "Type 2"
|
3516 |
msgstr ""
|
3517 |
|
3518 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3519 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3520 |
msgid "Type 3"
|
3521 |
msgstr ""
|
3522 |
|
3523 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3524 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3525 |
msgid "Type 4"
|
3526 |
msgstr ""
|
3527 |
|
3528 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3529 |
msgid "Default values are d, F and Y"
|
3530 |
msgstr ""
|
3531 |
|
3532 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3533 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3534 |
msgid "Default value is \"M d, Y\""
|
3535 |
msgstr ""
|
3536 |
|
3537 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3538 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3539 |
msgid "Auto Play Time"
|
3540 |
msgstr ""
|
3541 |
|
3542 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3543 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3544 |
msgid "eg. 3000 default is 3 second"
|
3545 |
msgstr ""
|
3546 |
|
3547 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3548 |
msgid "Archive Link"
|
3549 |
msgstr ""
|
3550 |
|
3551 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3552 |
msgid "Head Text"
|
3553 |
msgstr ""
|
3554 |
|
3555 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3556 |
msgid "Type 5"
|
3557 |
msgstr ""
|
3558 |
|
@@ -3701,8 +3701,8 @@ msgstr ""
|
|
3701 |
#: app/features/mec/meta_boxes/search_form.php:610
|
3702 |
#: app/features/mec/meta_boxes/search_form.php:617
|
3703 |
#: app/features/mec/meta_boxes/search_form.php:624
|
3704 |
-
#: app/features/mec/modules.php:322 app/features/mec/settings.php:
|
3705 |
-
#: app/features/mec/settings.php:
|
3706 |
msgid "Disabled"
|
3707 |
msgstr ""
|
3708 |
|
@@ -3716,7 +3716,7 @@ msgstr ""
|
|
3716 |
#: app/features/mec/meta_boxes/search_form.php:472
|
3717 |
#: app/features/mec/meta_boxes/search_form.php:533
|
3718 |
#: app/features/mec/meta_boxes/search_form.php:594 app/features/speakers.php:56
|
3719 |
-
#: app/features/speakers.php:243 app/libraries/main.php:
|
3720 |
#: app/libraries/skins.php:859
|
3721 |
msgid "Speaker"
|
3722 |
msgstr ""
|
@@ -3800,12 +3800,12 @@ msgid "Show Google Maps on event page"
|
|
3800 |
msgstr ""
|
3801 |
|
3802 |
#: app/features/mec/modules.php:277 app/features/mec/modules.php:435
|
3803 |
-
#: app/features/mec/settings.php:
|
3804 |
msgid "API Key"
|
3805 |
msgstr ""
|
3806 |
|
3807 |
-
#: app/features/mec/modules.php:283 app/features/mec/settings.php:
|
3808 |
-
#: app/features/mec/settings.php:
|
3809 |
msgid "Required!"
|
3810 |
msgstr ""
|
3811 |
|
@@ -3823,7 +3823,7 @@ msgstr ""
|
|
3823 |
msgid "Google Maps Style"
|
3824 |
msgstr ""
|
3825 |
|
3826 |
-
#: app/features/mec/modules.php:311 app/features/mec/single.php:
|
3827 |
msgid "Default"
|
3828 |
msgstr ""
|
3829 |
|
@@ -3905,7 +3905,7 @@ msgstr ""
|
|
3905 |
msgid "Next Occurrence of Other Events"
|
3906 |
msgstr ""
|
3907 |
|
3908 |
-
#: app/features/mec/modules.php:497 app/features/mec/single.php:
|
3909 |
msgid "Default is M d Y"
|
3910 |
msgstr ""
|
3911 |
|
@@ -3925,95 +3925,77 @@ msgstr ""
|
|
3925 |
msgid "Add booking activity to user profile"
|
3926 |
msgstr ""
|
3927 |
|
3928 |
-
#: app/features/mec/notifications.php:
|
3929 |
msgid "Enable booking notification"
|
3930 |
msgstr ""
|
3931 |
|
3932 |
-
#: app/features/mec/notifications.php:
|
3933 |
msgid "It sends to attendee after booking for notifying him/her."
|
3934 |
msgstr ""
|
3935 |
|
3936 |
-
#: app/features/mec/notifications.php:
|
3937 |
-
#: app/features/mec/notifications.php:
|
3938 |
-
#: app/features/mec/notifications.php:
|
3939 |
-
#: app/features/mec/notifications.php:
|
3940 |
-
#: app/features/mec/notifications.php:
|
3941 |
-
#: app/features/mec/notifications.php:
|
3942 |
-
#: app/features/mec/notifications.php:
|
3943 |
msgid "Email Subject"
|
3944 |
msgstr ""
|
3945 |
|
3946 |
-
#: app/features/mec/notifications.php:
|
3947 |
-
#: app/features/mec/notifications.php:
|
3948 |
-
#: app/features/mec/notifications.php:
|
3949 |
-
#: app/features/mec/notifications.php:
|
3950 |
-
#: app/features/mec/notifications.php:
|
3951 |
-
#: app/features/mec/notifications.php:
|
3952 |
-
#: app/features/mec/notifications.php:
|
3953 |
-
#: app/features/mec/notifications.php:
|
3954 |
-
#: app/features/mec/notifications.php:
|
3955 |
-
#: app/features/mec/notifications.php:
|
3956 |
-
#: app/features/mec/notifications.php:
|
3957 |
-
#: app/features/mec/notifications.php:
|
3958 |
-
#: app/features/mec/notifications.php:
|
3959 |
-
#: app/features/mec/notifications.php:
|
3960 |
-
#: app/features/mec/notifications.php:
|
3961 |
msgid "Custom Recipients"
|
3962 |
msgstr ""
|
3963 |
|
3964 |
-
#: app/features/mec/notifications.php:
|
3965 |
-
#: app/features/mec/notifications.php:
|
3966 |
-
#: app/features/mec/notifications.php:
|
3967 |
-
#: app/features/mec/notifications.php:
|
3968 |
-
#: app/features/mec/notifications.php:
|
3969 |
-
#: app/features/mec/notifications.php:
|
3970 |
-
#: app/features/mec/notifications.php:
|
3971 |
-
#: app/features/mec/notifications.php:
|
3972 |
msgid "Insert comma separated emails for multiple recipients."
|
3973 |
msgstr ""
|
3974 |
|
3975 |
-
#: app/features/mec/notifications.php:
|
3976 |
-
#: app/features/mec/notifications.php:
|
3977 |
-
#: app/features/mec/notifications.php:
|
3978 |
msgid "Send the email to event organizer"
|
3979 |
msgstr ""
|
3980 |
|
3981 |
-
#: app/features/mec/notifications.php:
|
3982 |
-
#: app/features/mec/notifications.php:
|
3983 |
-
#: app/features/mec/notifications.php:
|
3984 |
-
#: app/features/mec/notifications.php:
|
3985 |
-
#: app/features/mec/notifications.php:
|
3986 |
-
#: app/features/mec/notifications.php:
|
3987 |
-
#: app/features/mec/notifications.php:
|
3988 |
msgid "Email Content"
|
3989 |
msgstr ""
|
3990 |
|
3991 |
-
#: app/features/mec/notifications.php:255
|
3992 |
-
#: app/features/mec/notifications.php:308
|
3993 |
-
#: app/features/mec/notifications.php:360
|
3994 |
-
#: app/features/mec/notifications.php:431
|
3995 |
-
#: app/features/mec/notifications.php:491
|
3996 |
-
#: app/features/mec/notifications.php:561
|
3997 |
-
#: app/features/mec/notifications.php:623
|
3998 |
-
msgid "You can use following placeholders"
|
3999 |
-
msgstr ""
|
4000 |
-
|
4001 |
#: app/features/mec/notifications.php:257
|
4002 |
#: app/features/mec/notifications.php:310
|
4003 |
#: app/features/mec/notifications.php:362
|
4004 |
#: app/features/mec/notifications.php:433
|
4005 |
#: app/features/mec/notifications.php:493
|
4006 |
#: app/features/mec/notifications.php:563
|
4007 |
-
|
4008 |
-
|
4009 |
-
|
4010 |
-
#: app/features/mec/notifications.php:258
|
4011 |
-
#: app/features/mec/notifications.php:311
|
4012 |
-
#: app/features/mec/notifications.php:363
|
4013 |
-
#: app/features/mec/notifications.php:434
|
4014 |
-
#: app/features/mec/notifications.php:494
|
4015 |
-
#: app/features/mec/notifications.php:564
|
4016 |
-
msgid "Last name of attendee"
|
4017 |
msgstr ""
|
4018 |
|
4019 |
#: app/features/mec/notifications.php:259
|
@@ -4022,7 +4004,7 @@ msgstr ""
|
|
4022 |
#: app/features/mec/notifications.php:435
|
4023 |
#: app/features/mec/notifications.php:495
|
4024 |
#: app/features/mec/notifications.php:565
|
4025 |
-
msgid "
|
4026 |
msgstr ""
|
4027 |
|
4028 |
#: app/features/mec/notifications.php:260
|
@@ -4031,7 +4013,7 @@ msgstr ""
|
|
4031 |
#: app/features/mec/notifications.php:436
|
4032 |
#: app/features/mec/notifications.php:496
|
4033 |
#: app/features/mec/notifications.php:566
|
4034 |
-
msgid "
|
4035 |
msgstr ""
|
4036 |
|
4037 |
#: app/features/mec/notifications.php:261
|
@@ -4040,7 +4022,7 @@ msgstr ""
|
|
4040 |
#: app/features/mec/notifications.php:437
|
4041 |
#: app/features/mec/notifications.php:497
|
4042 |
#: app/features/mec/notifications.php:567
|
4043 |
-
msgid "
|
4044 |
msgstr ""
|
4045 |
|
4046 |
#: app/features/mec/notifications.php:262
|
@@ -4049,7 +4031,7 @@ msgstr ""
|
|
4049 |
#: app/features/mec/notifications.php:438
|
4050 |
#: app/features/mec/notifications.php:498
|
4051 |
#: app/features/mec/notifications.php:568
|
4052 |
-
msgid "
|
4053 |
msgstr ""
|
4054 |
|
4055 |
#: app/features/mec/notifications.php:263
|
@@ -4058,8 +4040,7 @@ msgstr ""
|
|
4058 |
#: app/features/mec/notifications.php:439
|
4059 |
#: app/features/mec/notifications.php:499
|
4060 |
#: app/features/mec/notifications.php:569
|
4061 |
-
|
4062 |
-
msgid "Your website title"
|
4063 |
msgstr ""
|
4064 |
|
4065 |
#: app/features/mec/notifications.php:264
|
@@ -4068,8 +4049,7 @@ msgstr ""
|
|
4068 |
#: app/features/mec/notifications.php:440
|
4069 |
#: app/features/mec/notifications.php:500
|
4070 |
#: app/features/mec/notifications.php:570
|
4071 |
-
|
4072 |
-
msgid "Your website URL"
|
4073 |
msgstr ""
|
4074 |
|
4075 |
#: app/features/mec/notifications.php:265
|
@@ -4079,7 +4059,7 @@ msgstr ""
|
|
4079 |
#: app/features/mec/notifications.php:501
|
4080 |
#: app/features/mec/notifications.php:571
|
4081 |
#: app/features/mec/notifications.php:631
|
4082 |
-
msgid "Your website
|
4083 |
msgstr ""
|
4084 |
|
4085 |
#: app/features/mec/notifications.php:266
|
@@ -4088,7 +4068,8 @@ msgstr ""
|
|
4088 |
#: app/features/mec/notifications.php:442
|
4089 |
#: app/features/mec/notifications.php:502
|
4090 |
#: app/features/mec/notifications.php:572
|
4091 |
-
|
|
|
4092 |
msgstr ""
|
4093 |
|
4094 |
#: app/features/mec/notifications.php:267
|
@@ -4097,7 +4078,8 @@ msgstr ""
|
|
4097 |
#: app/features/mec/notifications.php:443
|
4098 |
#: app/features/mec/notifications.php:503
|
4099 |
#: app/features/mec/notifications.php:573
|
4100 |
-
|
|
|
4101 |
msgstr ""
|
4102 |
|
4103 |
#: app/features/mec/notifications.php:268
|
@@ -4106,7 +4088,7 @@ msgstr ""
|
|
4106 |
#: app/features/mec/notifications.php:444
|
4107 |
#: app/features/mec/notifications.php:504
|
4108 |
#: app/features/mec/notifications.php:574
|
4109 |
-
msgid "
|
4110 |
msgstr ""
|
4111 |
|
4112 |
#: app/features/mec/notifications.php:269
|
@@ -4115,7 +4097,7 @@ msgstr ""
|
|
4115 |
#: app/features/mec/notifications.php:445
|
4116 |
#: app/features/mec/notifications.php:505
|
4117 |
#: app/features/mec/notifications.php:575
|
4118 |
-
msgid "
|
4119 |
msgstr ""
|
4120 |
|
4121 |
#: app/features/mec/notifications.php:270
|
@@ -4124,7 +4106,7 @@ msgstr ""
|
|
4124 |
#: app/features/mec/notifications.php:446
|
4125 |
#: app/features/mec/notifications.php:506
|
4126 |
#: app/features/mec/notifications.php:576
|
4127 |
-
msgid "
|
4128 |
msgstr ""
|
4129 |
|
4130 |
#: app/features/mec/notifications.php:271
|
@@ -4133,7 +4115,7 @@ msgstr ""
|
|
4133 |
#: app/features/mec/notifications.php:447
|
4134 |
#: app/features/mec/notifications.php:507
|
4135 |
#: app/features/mec/notifications.php:577
|
4136 |
-
msgid "Organizer
|
4137 |
msgstr ""
|
4138 |
|
4139 |
#: app/features/mec/notifications.php:272
|
@@ -4142,7 +4124,7 @@ msgstr ""
|
|
4142 |
#: app/features/mec/notifications.php:448
|
4143 |
#: app/features/mec/notifications.php:508
|
4144 |
#: app/features/mec/notifications.php:578
|
4145 |
-
msgid "
|
4146 |
msgstr ""
|
4147 |
|
4148 |
#: app/features/mec/notifications.php:273
|
@@ -4151,104 +4133,122 @@ msgstr ""
|
|
4151 |
#: app/features/mec/notifications.php:449
|
4152 |
#: app/features/mec/notifications.php:509
|
4153 |
#: app/features/mec/notifications.php:579
|
4154 |
-
msgid "
|
4155 |
msgstr ""
|
4156 |
|
4157 |
#: app/features/mec/notifications.php:274
|
4158 |
-
#: app/features/mec/notifications.php:
|
4159 |
-
#: app/features/mec/notifications.php:
|
4160 |
-
|
|
|
|
|
|
|
4161 |
msgstr ""
|
4162 |
|
4163 |
#: app/features/mec/notifications.php:275
|
|
|
4164 |
#: app/features/mec/notifications.php:380
|
|
|
|
|
4165 |
#: app/features/mec/notifications.php:581
|
4166 |
-
msgid "
|
4167 |
msgstr ""
|
4168 |
|
4169 |
#: app/features/mec/notifications.php:276
|
4170 |
-
#: app/features/mec/notifications.php:
|
4171 |
-
#: app/features/mec/notifications.php:
|
4172 |
-
|
4173 |
-
#: app/features/mec/notifications.php:512
|
4174 |
-
#: app/features/mec/notifications.php:582
|
4175 |
-
msgid "Total Attendees"
|
4176 |
msgstr ""
|
4177 |
|
4178 |
#: app/features/mec/notifications.php:277
|
4179 |
-
#: app/features/mec/notifications.php:329
|
4180 |
#: app/features/mec/notifications.php:382
|
4181 |
#: app/features/mec/notifications.php:583
|
4182 |
-
msgid "
|
4183 |
msgstr ""
|
4184 |
|
4185 |
#: app/features/mec/notifications.php:278
|
4186 |
#: app/features/mec/notifications.php:330
|
4187 |
#: app/features/mec/notifications.php:383
|
|
|
|
|
4188 |
#: app/features/mec/notifications.php:584
|
4189 |
-
msgid "
|
4190 |
msgstr ""
|
4191 |
|
4192 |
#: app/features/mec/notifications.php:279
|
4193 |
#: app/features/mec/notifications.php:331
|
4194 |
#: app/features/mec/notifications.php:384
|
4195 |
#: app/features/mec/notifications.php:585
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4196 |
msgid "Download ICS file"
|
4197 |
msgstr ""
|
4198 |
|
4199 |
-
#: app/features/mec/notifications.php:
|
4200 |
msgid "It sends to attendee email for verifying their booking/email."
|
4201 |
msgstr ""
|
4202 |
|
4203 |
-
#: app/features/mec/notifications.php:
|
4204 |
msgid "Email/Booking verification link."
|
4205 |
msgstr ""
|
4206 |
|
4207 |
-
#: app/features/mec/notifications.php:
|
4208 |
msgid "It sends to attendee after confirming the booking by admin."
|
4209 |
msgstr ""
|
4210 |
|
4211 |
-
#: app/features/mec/notifications.php:
|
4212 |
-
#: app/features/mec/notifications.php:
|
4213 |
msgid "Booking cancellation link."
|
4214 |
msgstr ""
|
4215 |
|
4216 |
-
#: app/features/mec/notifications.php:
|
4217 |
msgid "Enable cancellation notification"
|
4218 |
msgstr ""
|
4219 |
|
4220 |
-
#: app/features/mec/notifications.php:
|
4221 |
msgid ""
|
4222 |
"It sends to selected recipients after booking cancellation for notifying "
|
4223 |
"them."
|
4224 |
msgstr ""
|
4225 |
|
4226 |
-
#: app/features/mec/notifications.php:
|
4227 |
msgid "Send the email to admin"
|
4228 |
msgstr ""
|
4229 |
|
4230 |
-
#: app/features/mec/notifications.php:
|
4231 |
msgid "Send the email to booking user"
|
4232 |
msgstr ""
|
4233 |
|
4234 |
-
#: app/features/mec/notifications.php:
|
4235 |
-
#: app/features/mec/notifications.php:
|
4236 |
msgid "Admin booking management link."
|
4237 |
msgstr ""
|
4238 |
|
4239 |
-
#: app/features/mec/notifications.php:
|
4240 |
msgid "Enable admin notification"
|
4241 |
msgstr ""
|
4242 |
|
4243 |
-
#: app/features/mec/notifications.php:
|
4244 |
msgid "It sends to admin to notify him/her that a new booking received."
|
4245 |
msgstr ""
|
4246 |
|
4247 |
-
#: app/features/mec/notifications.php:
|
4248 |
msgid "Enable booking reminder notification"
|
4249 |
msgstr ""
|
4250 |
|
4251 |
-
#: app/features/mec/notifications.php:
|
4252 |
#, php-format
|
4253 |
msgid ""
|
4254 |
"Set a cronjob to call %s file once per day otherwise it won't send the "
|
@@ -4256,370 +4256,370 @@ msgid ""
|
|
4256 |
"send the reminders multiple times."
|
4257 |
msgstr ""
|
4258 |
|
4259 |
-
#: app/features/mec/notifications.php:
|
4260 |
msgid "only once per day"
|
4261 |
msgstr ""
|
4262 |
|
4263 |
-
#: app/features/mec/notifications.php:
|
4264 |
msgid "Days"
|
4265 |
msgstr ""
|
4266 |
|
4267 |
-
#: app/features/mec/notifications.php:
|
4268 |
msgid "Enable new event notification"
|
4269 |
msgstr ""
|
4270 |
|
4271 |
-
#: app/features/mec/notifications.php:
|
4272 |
msgid ""
|
4273 |
"It sends after adding a new event from frontend event submission or from "
|
4274 |
"website backend."
|
4275 |
msgstr ""
|
4276 |
|
4277 |
-
#: app/features/mec/notifications.php:
|
4278 |
msgid "Title of event"
|
4279 |
msgstr ""
|
4280 |
|
4281 |
-
#: app/features/mec/notifications.php:
|
4282 |
msgid "Link of event"
|
4283 |
msgstr ""
|
4284 |
|
4285 |
-
#: app/features/mec/notifications.php:
|
4286 |
msgid "Status of event"
|
4287 |
msgstr ""
|
4288 |
|
4289 |
-
#: app/features/mec/notifications.php:
|
4290 |
-
#: app/features/mec/settings.php:
|
4291 |
msgid "Event Note"
|
4292 |
msgstr ""
|
4293 |
|
4294 |
-
#: app/features/mec/notifications.php:
|
4295 |
msgid "Admin events management link."
|
4296 |
msgstr ""
|
4297 |
|
4298 |
-
#: app/features/mec/settings.php:
|
4299 |
msgid "Hide Events"
|
4300 |
msgstr ""
|
4301 |
|
4302 |
-
#: app/features/mec/settings.php:
|
4303 |
msgid "On Event Start"
|
4304 |
msgstr ""
|
4305 |
|
4306 |
-
#: app/features/mec/settings.php:
|
4307 |
msgid "+1 Hour after start"
|
4308 |
msgstr ""
|
4309 |
|
4310 |
-
#: app/features/mec/settings.php:
|
4311 |
msgid "+2 Hours after start"
|
4312 |
msgstr ""
|
4313 |
|
4314 |
-
#: app/features/mec/settings.php:
|
4315 |
msgid "On Event End"
|
4316 |
msgstr ""
|
4317 |
|
4318 |
-
#: app/features/mec/settings.php:
|
4319 |
msgid ""
|
4320 |
"This option is for showing start/end time of events on frontend of website."
|
4321 |
msgstr ""
|
4322 |
|
4323 |
-
#: app/features/mec/settings.php:
|
4324 |
msgid "Multiple Day Events"
|
4325 |
msgstr ""
|
4326 |
|
4327 |
-
#: app/features/mec/settings.php:
|
4328 |
msgid "Show only first day on List/Grid/Slider skins"
|
4329 |
msgstr ""
|
4330 |
|
4331 |
-
#: app/features/mec/settings.php:
|
4332 |
msgid "Show only first day on all skins"
|
4333 |
msgstr ""
|
4334 |
|
4335 |
-
#: app/features/mec/settings.php:
|
4336 |
msgid "Show all days"
|
4337 |
msgstr ""
|
4338 |
|
4339 |
-
#: app/features/mec/settings.php:
|
4340 |
msgid ""
|
4341 |
"For showing all days of multiple day events on frontend or only show the "
|
4342 |
"first day."
|
4343 |
msgstr ""
|
4344 |
|
4345 |
-
#: app/features/mec/settings.php:
|
4346 |
msgid "Remove MEC Data on Plugin Uninstall"
|
4347 |
msgstr ""
|
4348 |
|
4349 |
-
#: app/features/mec/settings.php:
|
4350 |
msgid "Enabled"
|
4351 |
msgstr ""
|
4352 |
|
4353 |
-
#: app/features/mec/settings.php:
|
4354 |
msgid "Exclude Date Suffix"
|
4355 |
msgstr ""
|
4356 |
|
4357 |
-
#: app/features/mec/settings.php:
|
4358 |
msgid "Remove suffix from calendars"
|
4359 |
msgstr ""
|
4360 |
|
4361 |
-
#: app/features/mec/settings.php:
|
4362 |
msgid "Remove \"Th\" on calendar"
|
4363 |
msgstr ""
|
4364 |
|
4365 |
-
#: app/features/mec/settings.php:
|
4366 |
msgid ""
|
4367 |
"Checked this checkbox to remove 'Th' on calendar ( ex: '12Th' remove Th, "
|
4368 |
"showing just '12' )"
|
4369 |
msgstr ""
|
4370 |
|
4371 |
-
#: app/features/mec/settings.php:
|
4372 |
-
#: app/libraries/main.php:
|
4373 |
msgid "Weekdays"
|
4374 |
msgstr ""
|
4375 |
|
4376 |
-
#: app/features/mec/settings.php:
|
4377 |
msgid ""
|
4378 |
"Proceed with caution. Default is set to Monday, Tuesday, Wednesday, Thursday "
|
4379 |
"and Friday ( you can change 'Week Starts' on WordPress Dashboard > Settings "
|
4380 |
"> General - bottom of the page )."
|
4381 |
msgstr ""
|
4382 |
|
4383 |
-
#: app/features/mec/settings.php:
|
4384 |
msgid "Weekends"
|
4385 |
msgstr ""
|
4386 |
|
4387 |
-
#: app/features/mec/settings.php:
|
4388 |
msgid ""
|
4389 |
"Proceed with caution. Default is set to Saturday and Sunday ( you can change "
|
4390 |
"'Week Starts' on WordPress Dashboard > Settings > General - bottom of the "
|
4391 |
"page )."
|
4392 |
msgstr ""
|
4393 |
|
4394 |
-
#: app/features/mec/settings.php:
|
4395 |
msgid "Archive Page Title"
|
4396 |
msgstr ""
|
4397 |
|
4398 |
-
#: app/features/mec/settings.php:
|
4399 |
msgid "Default value is Events - It's title of the page"
|
4400 |
msgstr ""
|
4401 |
|
4402 |
-
#: app/features/mec/settings.php:
|
4403 |
msgid "Archive Page Skin"
|
4404 |
msgstr ""
|
4405 |
|
4406 |
-
#: app/features/mec/settings.php:
|
4407 |
msgid "Put shortcode..."
|
4408 |
msgstr ""
|
4409 |
|
4410 |
-
#: app/features/mec/settings.php:
|
4411 |
-
#: app/features/mec/settings.php:
|
4412 |
-
#: app/features/mec/settings.php:
|
4413 |
-
#: app/features/mec/settings.php:
|
4414 |
-
#: app/features/mec/settings.php:
|
4415 |
msgid "There is no skins"
|
4416 |
msgstr ""
|
4417 |
|
4418 |
-
#: app/features/mec/settings.php:
|
4419 |
-
#: app/features/mec/single.php:
|
4420 |
msgid "Modern Style"
|
4421 |
msgstr ""
|
4422 |
|
4423 |
-
#: app/features/mec/settings.php:
|
4424 |
msgid "colorful"
|
4425 |
msgstr ""
|
4426 |
|
4427 |
-
#: app/features/mec/settings.php:
|
4428 |
msgid "Clean Style"
|
4429 |
msgstr ""
|
4430 |
|
4431 |
-
#: app/features/mec/settings.php:
|
4432 |
msgid "Default value is Calendar/Monthly View, But you can change it "
|
4433 |
msgstr ""
|
4434 |
|
4435 |
-
#: app/features/mec/settings.php:
|
4436 |
msgid "See Demo"
|
4437 |
msgstr ""
|
4438 |
|
4439 |
-
#: app/features/mec/settings.php:
|
4440 |
msgid "Category Page Skin"
|
4441 |
msgstr ""
|
4442 |
|
4443 |
-
#: app/features/mec/settings.php:
|
4444 |
msgid ""
|
4445 |
"Default value is List View - But you can change it Set a skin for all "
|
4446 |
"categories."
|
4447 |
msgstr ""
|
4448 |
|
4449 |
-
#: app/features/mec/settings.php:
|
4450 |
msgid "Category Events Method"
|
4451 |
msgstr ""
|
4452 |
|
4453 |
-
#: app/features/mec/settings.php:
|
4454 |
msgid "Expired Events"
|
4455 |
msgstr ""
|
4456 |
|
4457 |
-
#: app/features/mec/settings.php:
|
4458 |
msgid "Default value is Upcoming Events"
|
4459 |
msgstr ""
|
4460 |
|
4461 |
-
#: app/features/mec/settings.php:
|
4462 |
msgid "Events Archive Status"
|
4463 |
msgstr ""
|
4464 |
|
4465 |
-
#: app/features/mec/settings.php:
|
4466 |
msgid "Enabled (Recommended)"
|
4467 |
msgstr ""
|
4468 |
|
4469 |
-
#: app/features/mec/settings.php:
|
4470 |
msgid ""
|
4471 |
"If you disable it, then you should create a page as archive page of MEC. "
|
4472 |
"Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
|
4473 |
"MEC rewrite rules."
|
4474 |
msgstr ""
|
4475 |
|
4476 |
-
#: app/features/mec/settings.php:
|
4477 |
msgid "Main Slug"
|
4478 |
msgstr ""
|
4479 |
|
4480 |
-
#: app/features/mec/settings.php:
|
4481 |
msgid ""
|
4482 |
"Default value is events. You can not have a page with this name. MEC allows "
|
4483 |
"you to create custom URLs for the permalinks and archives to enhance the "
|
4484 |
"applicability and forward-compatibility of the links."
|
4485 |
msgstr ""
|
4486 |
|
4487 |
-
#: app/features/mec/settings.php:
|
4488 |
msgid "Valid characters are lowercase a-z, - character and numbers."
|
4489 |
msgstr ""
|
4490 |
|
4491 |
-
#: app/features/mec/settings.php:
|
4492 |
msgid "Category Slug"
|
4493 |
msgstr ""
|
4494 |
|
4495 |
-
#: app/features/mec/settings.php:
|
4496 |
msgid ""
|
4497 |
"It's slug of MEC categories, you can change it to events-cat or something "
|
4498 |
"else. Default value is mec-category. You can not have a page with this name."
|
4499 |
msgstr ""
|
4500 |
|
4501 |
-
#: app/features/mec/settings.php:
|
4502 |
msgid "Currency"
|
4503 |
msgstr ""
|
4504 |
|
4505 |
-
#: app/features/mec/settings.php:
|
4506 |
msgid "Currency Sign"
|
4507 |
msgstr ""
|
4508 |
|
4509 |
-
#: app/features/mec/settings.php:
|
4510 |
msgid "Default value will be \"currency\" if you leave it empty."
|
4511 |
msgstr ""
|
4512 |
|
4513 |
-
#: app/features/mec/settings.php:
|
4514 |
msgid "Currency Position"
|
4515 |
msgstr ""
|
4516 |
|
4517 |
-
#: app/features/mec/settings.php:
|
4518 |
msgid "Before $10"
|
4519 |
msgstr ""
|
4520 |
|
4521 |
-
#: app/features/mec/settings.php:
|
4522 |
msgid "After 10$"
|
4523 |
msgstr ""
|
4524 |
|
4525 |
-
#: app/features/mec/settings.php:
|
4526 |
msgid "Thousand Separator"
|
4527 |
msgstr ""
|
4528 |
|
4529 |
-
#: app/features/mec/settings.php:
|
4530 |
msgid "Decimal Separator"
|
4531 |
msgstr ""
|
4532 |
|
4533 |
-
#: app/features/mec/settings.php:
|
4534 |
msgid "No decimal"
|
4535 |
msgstr ""
|
4536 |
|
4537 |
-
#: app/features/mec/settings.php:
|
4538 |
msgid "Enable Google Recaptcha"
|
4539 |
msgstr ""
|
4540 |
|
4541 |
-
#: app/features/mec/settings.php:
|
4542 |
msgid "Enable on booking form"
|
4543 |
msgstr ""
|
4544 |
|
4545 |
-
#: app/features/mec/settings.php:
|
4546 |
msgid "Enable on \"Frontend Event Submission\" form"
|
4547 |
msgstr ""
|
4548 |
|
4549 |
-
#: app/features/mec/settings.php:
|
4550 |
msgid "Site Key"
|
4551 |
msgstr ""
|
4552 |
|
4553 |
-
#: app/features/mec/settings.php:
|
4554 |
msgid "Secret Key"
|
4555 |
msgstr ""
|
4556 |
|
4557 |
-
#: app/features/mec/settings.php:
|
4558 |
msgid "Time Format"
|
4559 |
msgstr ""
|
4560 |
|
4561 |
-
#: app/features/mec/settings.php:
|
4562 |
msgid "12 hours format with AM/PM"
|
4563 |
msgstr ""
|
4564 |
|
4565 |
-
#: app/features/mec/settings.php:
|
4566 |
msgid "24 hours format"
|
4567 |
msgstr ""
|
4568 |
|
4569 |
-
#: app/features/mec/settings.php:
|
4570 |
msgid "This option, affects the selection of Start/End time."
|
4571 |
msgstr ""
|
4572 |
|
4573 |
-
#: app/features/mec/settings.php:
|
4574 |
msgid "Events List Page"
|
4575 |
msgstr ""
|
4576 |
|
4577 |
-
#: app/features/mec/settings.php:
|
4578 |
#, php-format
|
4579 |
msgid "Put %s shortcode into the page."
|
4580 |
msgstr ""
|
4581 |
|
4582 |
-
#: app/features/mec/settings.php:
|
4583 |
msgid "Add/Edit Events Page"
|
4584 |
msgstr ""
|
4585 |
|
4586 |
-
#: app/features/mec/settings.php:
|
4587 |
msgid "Enable event submission by guest (Not logged-in) users"
|
4588 |
msgstr ""
|
4589 |
|
4590 |
-
#: app/features/mec/settings.php:
|
4591 |
msgid "Enable mandatory email and name for guest user"
|
4592 |
msgstr ""
|
4593 |
|
4594 |
-
#: app/features/mec/settings.php:
|
4595 |
msgid "Frontend Event Submission Sections"
|
4596 |
msgstr ""
|
4597 |
|
4598 |
-
#: app/features/mec/settings.php:
|
4599 |
msgid "Event Categories"
|
4600 |
msgstr ""
|
4601 |
|
4602 |
-
#: app/features/mec/settings.php:
|
4603 |
msgid "Event Labels"
|
4604 |
msgstr ""
|
4605 |
|
4606 |
-
#: app/features/mec/settings.php:
|
4607 |
msgid "Event Tags"
|
4608 |
msgstr ""
|
4609 |
|
4610 |
-
#: app/features/mec/settings.php:
|
4611 |
msgid "Event Organizer"
|
4612 |
msgstr ""
|
4613 |
|
4614 |
-
#: app/features/mec/settings.php:
|
4615 |
msgid "Booking Options"
|
4616 |
msgstr ""
|
4617 |
|
4618 |
-
#: app/features/mec/settings.php:
|
4619 |
msgid "Fees / Taxes Options"
|
4620 |
msgstr ""
|
4621 |
|
4622 |
-
#: app/features/mec/settings.php:
|
4623 |
#, php-format
|
4624 |
msgid ""
|
4625 |
"Users can put a note for editors while they're submitting the event. Also "
|
@@ -4627,211 +4627,211 @@ msgid ""
|
|
4627 |
"users' note in email."
|
4628 |
msgstr ""
|
4629 |
|
4630 |
-
#: app/features/mec/settings.php:
|
4631 |
msgid "Visibility of Note"
|
4632 |
msgstr ""
|
4633 |
|
4634 |
-
#: app/features/mec/settings.php:
|
4635 |
msgid "Always"
|
4636 |
msgstr ""
|
4637 |
|
4638 |
-
#: app/features/mec/settings.php:
|
4639 |
msgid "While event is not published"
|
4640 |
msgstr ""
|
4641 |
|
4642 |
-
#: app/features/mec/settings.php:
|
4643 |
msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
|
4644 |
msgstr ""
|
4645 |
|
4646 |
-
#: app/features/mec/settings.php:
|
4647 |
#, php-format
|
4648 |
msgid ""
|
4649 |
"Put %s shortcode into your desired page. Then users are able to see history "
|
4650 |
"of their bookings."
|
4651 |
msgstr ""
|
4652 |
|
4653 |
-
#: app/features/mec/settings.php:
|
4654 |
msgid "Enable Mailchimp Integration"
|
4655 |
msgstr ""
|
4656 |
|
4657 |
-
#: app/features/mec/settings.php:
|
4658 |
msgid "List ID"
|
4659 |
msgstr ""
|
4660 |
|
4661 |
-
#: app/features/mec/settings.php:
|
4662 |
msgid "Subscription Status"
|
4663 |
msgstr ""
|
4664 |
|
4665 |
-
#: app/features/mec/settings.php:
|
4666 |
msgid "Subscribe automatically"
|
4667 |
msgstr ""
|
4668 |
|
4669 |
-
#: app/features/mec/settings.php:
|
4670 |
msgid "Subscribe by verification"
|
4671 |
msgstr ""
|
4672 |
|
4673 |
-
#: app/features/mec/settings.php:
|
4674 |
msgid ""
|
4675 |
"If you choose \"Subscribe by verification\" then an email will send to user "
|
4676 |
"by mailchimp for subscription verification."
|
4677 |
msgstr ""
|
4678 |
|
4679 |
-
#: app/features/mec/settings.php:
|
4680 |
msgid "Upload Field Options"
|
4681 |
msgstr ""
|
4682 |
|
4683 |
-
#: app/features/mec/settings.php:
|
4684 |
msgid "Mime types"
|
4685 |
msgstr ""
|
4686 |
|
4687 |
-
#: app/features/mec/settings.php:
|
4688 |
msgid "Split mime types with \",\"."
|
4689 |
msgstr ""
|
4690 |
|
4691 |
-
#: app/features/mec/settings.php:
|
4692 |
msgid "Default: jpeg,jpg,png,pdf"
|
4693 |
msgstr ""
|
4694 |
|
4695 |
-
#: app/features/mec/settings.php:
|
4696 |
msgid "Maximum file size"
|
4697 |
msgstr ""
|
4698 |
|
4699 |
-
#: app/features/mec/settings.php:
|
4700 |
msgid "The unit is Megabyte \"MB\""
|
4701 |
msgstr ""
|
4702 |
|
4703 |
-
#: app/features/mec/single.php:
|
4704 |
msgid "Single Event Date Format"
|
4705 |
msgstr ""
|
4706 |
|
4707 |
-
#: app/features/mec/single.php:
|
4708 |
msgid "Date Method"
|
4709 |
msgstr ""
|
4710 |
|
4711 |
-
#: app/features/mec/single.php:
|
4712 |
msgid "Next occurrence date"
|
4713 |
msgstr ""
|
4714 |
|
4715 |
-
#: app/features/mec/single.php:
|
4716 |
msgid "Referred date"
|
4717 |
msgstr ""
|
4718 |
|
4719 |
-
#: app/features/mec/single.php:
|
4720 |
msgid ""
|
4721 |
"Referred date\" shows the event date based on referred date in event list."
|
4722 |
msgstr ""
|
4723 |
|
4724 |
-
#: app/features/mec/single.php:
|
4725 |
msgid "Single Event Style"
|
4726 |
msgstr ""
|
4727 |
|
4728 |
-
#: app/features/mec/single.php:
|
4729 |
msgid "Default Style"
|
4730 |
msgstr ""
|
4731 |
|
4732 |
-
#: app/features/mec/single.php:
|
4733 |
msgid "Elementor Single Builder"
|
4734 |
msgstr ""
|
4735 |
|
4736 |
-
#: app/features/mec/single.php:
|
4737 |
msgid "Choose your single event style."
|
4738 |
msgstr ""
|
4739 |
|
4740 |
-
#: app/features/mec/single.php:
|
4741 |
msgid "Booking Style"
|
4742 |
msgstr ""
|
4743 |
|
4744 |
-
#: app/features/mec/single.php:
|
4745 |
msgid "Modal"
|
4746 |
msgstr ""
|
4747 |
|
4748 |
-
#: app/features/mec/single.php:
|
4749 |
msgid ""
|
4750 |
"Choose your Booking style, Please Note: When you set this feature to modal "
|
4751 |
"you can not see booking box if you set popoup module view on shortcodes"
|
4752 |
msgstr ""
|
4753 |
|
4754 |
-
#: app/features/mec/single.php:
|
4755 |
msgid "Disable Block Editor (Gutenberg)"
|
4756 |
msgstr ""
|
4757 |
|
4758 |
-
#: app/features/mec/single.php:
|
4759 |
msgid "Disable Block Editor"
|
4760 |
msgstr ""
|
4761 |
|
4762 |
-
#: app/features/mec/single.php:
|
4763 |
msgid "Block Editor"
|
4764 |
msgstr ""
|
4765 |
|
4766 |
-
#: app/features/mec/single.php:
|
4767 |
msgid ""
|
4768 |
"If you want to use the new WordPress block editor you should keep this "
|
4769 |
"checkbox unchecked."
|
4770 |
msgstr ""
|
4771 |
|
4772 |
-
#: app/features/mec/single.php:
|
4773 |
msgid "Breadcrumbs"
|
4774 |
msgstr ""
|
4775 |
|
4776 |
-
#: app/features/mec/single.php:
|
4777 |
msgid "Enable Breadcrumbs."
|
4778 |
msgstr ""
|
4779 |
|
4780 |
-
#: app/features/mec/single.php:
|
4781 |
msgid "Check this option, for showing the breadcrumbs on single event page"
|
4782 |
msgstr ""
|
4783 |
|
4784 |
-
#: app/features/mec/single.php:
|
4785 |
msgid "Show countdown module on event page"
|
4786 |
msgstr ""
|
4787 |
|
4788 |
-
#: app/features/mec/single.php:
|
4789 |
msgid "Countdown Style"
|
4790 |
msgstr ""
|
4791 |
|
4792 |
-
#: app/features/mec/single.php:
|
4793 |
msgid "Plain Style"
|
4794 |
msgstr ""
|
4795 |
|
4796 |
-
#: app/features/mec/single.php:
|
4797 |
msgid "Flip Style"
|
4798 |
msgstr ""
|
4799 |
|
4800 |
-
#: app/features/mec/single.php:
|
4801 |
msgid "Exceptional days"
|
4802 |
msgstr ""
|
4803 |
|
4804 |
-
#: app/features/mec/single.php:
|
4805 |
msgid "Show exceptional days option on Add/Edit events page"
|
4806 |
msgstr ""
|
4807 |
|
4808 |
-
#: app/features/mec/single.php:
|
4809 |
msgid ""
|
4810 |
"Using this option you can include/exclude certain days to/from event "
|
4811 |
"occurrence dates."
|
4812 |
msgstr ""
|
4813 |
|
4814 |
-
#: app/features/mec/single.php:
|
4815 |
msgid ""
|
4816 |
"Show additional organizers option on Add/Edit events page and single event "
|
4817 |
"page."
|
4818 |
msgstr ""
|
4819 |
|
4820 |
-
#: app/features/mec/single.php:
|
4821 |
msgid "Additional locations"
|
4822 |
msgstr ""
|
4823 |
|
4824 |
-
#: app/features/mec/single.php:
|
4825 |
msgid ""
|
4826 |
"Show additional locations option on Add/Edit events page and single event "
|
4827 |
"page."
|
4828 |
msgstr ""
|
4829 |
|
4830 |
-
#: app/features/mec/styles.php:
|
4831 |
msgid "Custom Styles"
|
4832 |
msgstr ""
|
4833 |
|
4834 |
-
#: app/features/mec/styles.php:
|
4835 |
msgid ""
|
4836 |
"If you're a developer or you have some knowledge about CSS codes, you can "
|
4837 |
"place your desired styles codes here. These codes will be included in your "
|
@@ -4839,74 +4839,74 @@ msgid ""
|
|
4839 |
"styles."
|
4840 |
msgstr ""
|
4841 |
|
4842 |
-
#: app/features/mec/styling.php:10 app/features/mec/styling.php:
|
4843 |
-
#: app/features/mec/styling.php:
|
4844 |
msgid "Default Font"
|
4845 |
msgstr ""
|
4846 |
|
4847 |
-
#: app/features/mec/styling.php:
|
4848 |
msgid "Styling Option"
|
4849 |
msgstr ""
|
4850 |
|
4851 |
-
#: app/features/mec/styling.php:
|
4852 |
msgid "Color Skin"
|
4853 |
msgstr ""
|
4854 |
|
4855 |
-
#: app/features/mec/styling.php:
|
4856 |
msgid "Predefined Color Skin"
|
4857 |
msgstr ""
|
4858 |
|
4859 |
-
#: app/features/mec/styling.php:
|
4860 |
msgid "Custom Color Skin"
|
4861 |
msgstr ""
|
4862 |
|
4863 |
-
#: app/features/mec/styling.php:
|
4864 |
msgid ""
|
4865 |
"If you want to select a predefined color skin, you must clear the color of "
|
4866 |
"this item"
|
4867 |
msgstr ""
|
4868 |
|
4869 |
-
#: app/features/mec/styling.php:
|
4870 |
msgid "Advanced Color Options (shortcodes)"
|
4871 |
msgstr ""
|
4872 |
|
4873 |
-
#: app/features/mec/styling.php:
|
4874 |
msgid "Title Hover"
|
4875 |
msgstr ""
|
4876 |
|
4877 |
-
#: app/features/mec/styling.php:
|
4878 |
msgid "Typography"
|
4879 |
msgstr ""
|
4880 |
|
4881 |
-
#: app/features/mec/styling.php:
|
4882 |
msgid "Heading (Events Title) Font Family"
|
4883 |
msgstr ""
|
4884 |
|
4885 |
-
#: app/features/mec/styling.php:
|
4886 |
msgid "Paragraph Font Family"
|
4887 |
msgstr ""
|
4888 |
|
4889 |
-
#: app/features/mec/styling.php:
|
4890 |
msgid "Disable Google Fonts"
|
4891 |
msgstr ""
|
4892 |
|
4893 |
-
#: app/features/mec/styling.php:
|
4894 |
msgid "To be GDPR compliant you may need to disable Google fonts!"
|
4895 |
msgstr ""
|
4896 |
|
4897 |
-
#: app/features/mec/styling.php:
|
4898 |
msgid "Container Width"
|
4899 |
msgstr ""
|
4900 |
|
4901 |
-
#: app/features/mec/styling.php:
|
4902 |
msgid "Desktop Normal Screens"
|
4903 |
msgstr ""
|
4904 |
|
4905 |
-
#: app/features/mec/styling.php:
|
4906 |
msgid "You can enter your theme container size in this field"
|
4907 |
msgstr ""
|
4908 |
|
4909 |
-
#: app/features/mec/styling.php:
|
4910 |
msgid "Desktop Large Screens"
|
4911 |
msgstr ""
|
4912 |
|
@@ -5311,7 +5311,7 @@ msgstr ""
|
|
5311 |
msgid "eg. https://webnus.net"
|
5312 |
msgstr ""
|
5313 |
|
5314 |
-
#: app/features/organizers.php:306 app/libraries/main.php:
|
5315 |
#: app/skins/single.php:693
|
5316 |
msgid "Other Organizers"
|
5317 |
msgstr ""
|
@@ -5330,11 +5330,11 @@ msgstr ""
|
|
5330 |
msgid "#"
|
5331 |
msgstr ""
|
5332 |
|
5333 |
-
#: app/features/profile/profile.php:34 app/libraries/main.php:
|
5334 |
msgid "Status"
|
5335 |
msgstr ""
|
5336 |
|
5337 |
-
#: app/features/profile/profile.php:37 app/libraries/main.php:
|
5338 |
msgid "Attendees"
|
5339 |
msgstr ""
|
5340 |
|
@@ -5347,8 +5347,8 @@ msgstr ""
|
|
5347 |
msgid "<i class=\"mec-sl-eye\"></i> %s"
|
5348 |
msgstr ""
|
5349 |
|
5350 |
-
#: app/features/profile/profile.php:96 app/libraries/main.php:
|
5351 |
-
#: app/libraries/main.php:
|
5352 |
msgid "Ticket"
|
5353 |
msgstr ""
|
5354 |
|
@@ -5410,8 +5410,8 @@ msgstr ""
|
|
5410 |
msgid "Discount"
|
5411 |
msgstr ""
|
5412 |
|
5413 |
-
#: app/libraries/book.php:626 app/modules/booking/default.php:
|
5414 |
-
#: app/modules/booking/default.php:
|
5415 |
msgid "Download Invoice"
|
5416 |
msgstr ""
|
5417 |
|
@@ -5486,38 +5486,38 @@ msgstr ""
|
|
5486 |
msgid "There is no excerpt because this is a protected post."
|
5487 |
msgstr ""
|
5488 |
|
5489 |
-
#: app/libraries/main.php:330 app/libraries/main.php:
|
5490 |
-
#: app/libraries/main.php:
|
5491 |
msgid "Grid View"
|
5492 |
msgstr ""
|
5493 |
|
5494 |
-
#: app/libraries/main.php:331 app/libraries/main.php:
|
5495 |
-
#: app/libraries/main.php:
|
5496 |
msgid "Agenda View"
|
5497 |
msgstr ""
|
5498 |
|
5499 |
-
#: app/libraries/main.php:332 app/libraries/main.php:
|
5500 |
-
#: app/libraries/main.php:
|
5501 |
msgid "Full Calendar"
|
5502 |
msgstr ""
|
5503 |
|
5504 |
-
#: app/libraries/main.php:334 app/libraries/main.php:
|
5505 |
-
#: app/libraries/main.php:
|
5506 |
msgid "Calendar/Monthly View"
|
5507 |
msgstr ""
|
5508 |
|
5509 |
-
#: app/libraries/main.php:337 app/libraries/main.php:
|
5510 |
-
#: app/libraries/main.php:
|
5511 |
msgid "Timetable View"
|
5512 |
msgstr ""
|
5513 |
|
5514 |
-
#: app/libraries/main.php:338 app/libraries/main.php:
|
5515 |
-
#: app/libraries/main.php:
|
5516 |
msgid "Masonry View"
|
5517 |
msgstr ""
|
5518 |
|
5519 |
-
#: app/libraries/main.php:339 app/libraries/main.php:
|
5520 |
-
#: app/libraries/main.php:
|
5521 |
msgid "Map View"
|
5522 |
msgstr ""
|
5523 |
|
@@ -5541,39 +5541,39 @@ msgstr ""
|
|
5541 |
msgid "Slider View"
|
5542 |
msgstr ""
|
5543 |
|
5544 |
-
#: app/libraries/main.php:382 app/libraries/main.php:
|
5545 |
msgid "SU"
|
5546 |
msgstr ""
|
5547 |
|
5548 |
-
#: app/libraries/main.php:383 app/libraries/main.php:
|
5549 |
msgid "MO"
|
5550 |
msgstr ""
|
5551 |
|
5552 |
-
#: app/libraries/main.php:384 app/libraries/main.php:
|
5553 |
msgid "TU"
|
5554 |
msgstr ""
|
5555 |
|
5556 |
-
#: app/libraries/main.php:385 app/libraries/main.php:
|
5557 |
msgid "WE"
|
5558 |
msgstr ""
|
5559 |
|
5560 |
-
#: app/libraries/main.php:386 app/libraries/main.php:
|
5561 |
msgid "TH"
|
5562 |
msgstr ""
|
5563 |
|
5564 |
-
#: app/libraries/main.php:387 app/libraries/main.php:
|
5565 |
msgid "FR"
|
5566 |
msgstr ""
|
5567 |
|
5568 |
-
#: app/libraries/main.php:388 app/libraries/main.php:
|
5569 |
msgid "SA"
|
5570 |
msgstr ""
|
5571 |
|
5572 |
-
#: app/libraries/main.php:
|
5573 |
msgid "New Addons For MEC! Now Customize MEC in Elementor"
|
5574 |
msgstr ""
|
5575 |
|
5576 |
-
#: app/libraries/main.php:
|
5577 |
msgid ""
|
5578 |
"The time has come at last, and the new practical add-ons for MEC have been "
|
5579 |
"released. This is a revolution in the world of Event Calendars. We have "
|
@@ -5581,303 +5581,303 @@ msgid ""
|
|
5581 |
"below:"
|
5582 |
msgstr ""
|
5583 |
|
5584 |
-
#: app/libraries/main.php:
|
5585 |
msgid ""
|
5586 |
"<strong>WooCommerce Integration:</strong> You can now purchase ticket (as "
|
5587 |
"products) and Woo products at the same time."
|
5588 |
msgstr ""
|
5589 |
|
5590 |
-
#: app/libraries/main.php:
|
5591 |
msgid ""
|
5592 |
"<strong>Elementor Single Builder:</strong> It enables you to create "
|
5593 |
"shortcodes in Elementor Live Editor."
|
5594 |
msgstr ""
|
5595 |
|
5596 |
-
#: app/libraries/main.php:
|
5597 |
msgid ""
|
5598 |
"<strong>Elementor Form Builder:</strong> It allows you to use many different "
|
5599 |
"type of fields and rearrange them by drag and drop and modify their styles."
|
5600 |
msgstr ""
|
5601 |
|
5602 |
-
#: app/libraries/main.php:
|
5603 |
msgid ""
|
5604 |
"<strong>Elementor Shortcode Builder:</strong> Edit single event page using "
|
5605 |
"Elementor. Manage the position of all elements in the Single page and in "
|
5606 |
"desktops, mobiles and tablets as well."
|
5607 |
msgstr ""
|
5608 |
|
5609 |
-
#: app/libraries/main.php:
|
5610 |
msgid "Events at this location"
|
5611 |
msgstr ""
|
5612 |
|
5613 |
-
#: app/libraries/main.php:
|
5614 |
msgid "Event at this location"
|
5615 |
msgstr ""
|
5616 |
|
5617 |
-
#: app/libraries/main.php:
|
5618 |
msgid "Facebook"
|
5619 |
msgstr ""
|
5620 |
|
5621 |
-
#: app/libraries/main.php:
|
5622 |
msgid "Twitter"
|
5623 |
msgstr ""
|
5624 |
|
5625 |
-
#: app/libraries/main.php:
|
5626 |
msgid "Linkedin"
|
5627 |
msgstr ""
|
5628 |
|
5629 |
-
#: app/libraries/main.php:
|
5630 |
msgid "VK"
|
5631 |
msgstr ""
|
5632 |
|
5633 |
-
#: app/libraries/main.php:
|
5634 |
msgid "Share on Facebook"
|
5635 |
msgstr ""
|
5636 |
|
5637 |
-
#: app/libraries/main.php:
|
5638 |
msgid "Tweet"
|
5639 |
msgstr ""
|
5640 |
|
5641 |
-
#: app/libraries/main.php:
|
5642 |
msgid "Custom Shortcode"
|
5643 |
msgstr ""
|
5644 |
|
5645 |
-
#: app/libraries/main.php:
|
5646 |
msgid "Your booking successfully verified."
|
5647 |
msgstr ""
|
5648 |
|
5649 |
-
#: app/libraries/main.php:
|
5650 |
msgid "Your booking cannot verify!"
|
5651 |
msgstr ""
|
5652 |
|
5653 |
-
#: app/libraries/main.php:
|
5654 |
msgid "Your booking successfully canceled."
|
5655 |
msgstr ""
|
5656 |
|
5657 |
-
#: app/libraries/main.php:
|
5658 |
msgid "Your booking cannot be canceled."
|
5659 |
msgstr ""
|
5660 |
|
5661 |
-
#: app/libraries/main.php:
|
5662 |
msgid "You canceled the payment successfully."
|
5663 |
msgstr ""
|
5664 |
|
5665 |
-
#: app/libraries/main.php:
|
5666 |
msgid "You returned from payment gateway successfully."
|
5667 |
msgstr ""
|
5668 |
|
5669 |
-
#: app/libraries/main.php:
|
5670 |
msgid "Cannot find the booking!"
|
5671 |
msgstr ""
|
5672 |
|
5673 |
-
#: app/libraries/main.php:
|
5674 |
msgid "Booking is invalid."
|
5675 |
msgstr ""
|
5676 |
|
5677 |
-
#: app/libraries/main.php:
|
5678 |
#, php-format
|
5679 |
msgid "%s Invoice"
|
5680 |
msgstr ""
|
5681 |
|
5682 |
-
#: app/libraries/main.php:
|
5683 |
msgid "Transaction ID"
|
5684 |
msgstr ""
|
5685 |
|
5686 |
-
#: app/libraries/main.php:
|
5687 |
msgid "Billing"
|
5688 |
msgstr ""
|
5689 |
|
5690 |
-
#: app/libraries/main.php:
|
5691 |
msgid "Total"
|
5692 |
msgstr ""
|
5693 |
|
5694 |
-
#: app/libraries/main.php:
|
5695 |
msgid "Security nonce is not valid."
|
5696 |
msgstr ""
|
5697 |
|
5698 |
-
#: app/libraries/main.php:
|
5699 |
msgid "iCal export stopped!"
|
5700 |
msgstr ""
|
5701 |
|
5702 |
-
#: app/libraries/main.php:
|
5703 |
msgid "Request is not valid."
|
5704 |
msgstr ""
|
5705 |
|
5706 |
-
#: app/libraries/main.php:
|
5707 |
-
#: app/libraries/main.php:
|
5708 |
-
#: app/libraries/main.php:
|
5709 |
-
#: app/libraries/main.php:
|
5710 |
-
#: app/libraries/main.php:
|
5711 |
-
#: app/libraries/main.php:
|
5712 |
-
#: app/libraries/main.php:
|
5713 |
msgid "Sort"
|
5714 |
msgstr ""
|
5715 |
|
5716 |
-
#: app/libraries/main.php:
|
5717 |
-
#: app/libraries/main.php:
|
5718 |
-
#: app/libraries/main.php:
|
5719 |
-
#: app/libraries/main.php:
|
5720 |
-
#: app/libraries/main.php:
|
5721 |
-
#: app/libraries/main.php:
|
5722 |
msgid "Required Field"
|
5723 |
msgstr ""
|
5724 |
|
5725 |
-
#: app/libraries/main.php:
|
5726 |
-
#: app/libraries/main.php:
|
5727 |
-
#: app/libraries/main.php:
|
5728 |
-
#: app/libraries/main.php:
|
5729 |
-
#: app/libraries/main.php:
|
5730 |
-
#: app/libraries/main.php:
|
5731 |
msgid "Insert a label for this field"
|
5732 |
msgstr ""
|
5733 |
|
5734 |
-
#: app/libraries/main.php:
|
5735 |
msgid "HTML and shortcode are allowed."
|
5736 |
msgstr ""
|
5737 |
|
5738 |
-
#: app/libraries/main.php:
|
5739 |
-
#: app/libraries/main.php:
|
5740 |
msgid "Option"
|
5741 |
msgstr ""
|
5742 |
|
5743 |
-
#: app/libraries/main.php:
|
5744 |
#, php-format
|
5745 |
msgid "Instead of %s, the page title with a link will be show."
|
5746 |
msgstr ""
|
5747 |
|
5748 |
-
#: app/libraries/main.php:
|
5749 |
msgid "Agreement Page"
|
5750 |
msgstr ""
|
5751 |
|
5752 |
-
#: app/libraries/main.php:
|
5753 |
msgid "Checked by default"
|
5754 |
msgstr ""
|
5755 |
|
5756 |
-
#: app/libraries/main.php:
|
5757 |
msgid "Unchecked by default"
|
5758 |
msgstr ""
|
5759 |
|
5760 |
-
#: app/libraries/main.php:
|
5761 |
msgid "Insert a label for this option"
|
5762 |
msgstr ""
|
5763 |
|
5764 |
-
#: app/libraries/main.php:
|
5765 |
msgid "Free"
|
5766 |
msgstr ""
|
5767 |
|
5768 |
-
#: app/libraries/main.php:
|
5769 |
msgid "M.E. Calender"
|
5770 |
msgstr ""
|
5771 |
|
5772 |
-
#: app/libraries/main.php:
|
5773 |
#, php-format
|
5774 |
msgid "Copy of %s"
|
5775 |
msgstr ""
|
5776 |
|
5777 |
-
#: app/libraries/main.php:
|
5778 |
msgid "Booked an event."
|
5779 |
msgstr ""
|
5780 |
|
5781 |
-
#: app/libraries/main.php:
|
5782 |
#, php-format
|
5783 |
msgid "%s booked %s event."
|
5784 |
msgstr ""
|
5785 |
|
5786 |
-
#: app/libraries/main.php:
|
5787 |
msgid "Taxonomies"
|
5788 |
msgstr ""
|
5789 |
|
5790 |
-
#: app/libraries/main.php:
|
5791 |
msgid "Category Plural Label"
|
5792 |
msgstr ""
|
5793 |
|
5794 |
-
#: app/libraries/main.php:
|
5795 |
msgid "Category Singular Label"
|
5796 |
msgstr ""
|
5797 |
|
5798 |
-
#: app/libraries/main.php:
|
5799 |
msgid "Label Plural Label"
|
5800 |
msgstr ""
|
5801 |
|
5802 |
-
#: app/libraries/main.php:
|
5803 |
msgid "Label Singular Label"
|
5804 |
msgstr ""
|
5805 |
|
5806 |
-
#: app/libraries/main.php:
|
5807 |
msgid "label"
|
5808 |
msgstr ""
|
5809 |
|
5810 |
-
#: app/libraries/main.php:
|
5811 |
msgid "Location Plural Label"
|
5812 |
msgstr ""
|
5813 |
|
5814 |
-
#: app/libraries/main.php:
|
5815 |
msgid "Location Singular Label"
|
5816 |
msgstr ""
|
5817 |
|
5818 |
-
#: app/libraries/main.php:
|
5819 |
msgid "Organizer Plural Label"
|
5820 |
msgstr ""
|
5821 |
|
5822 |
-
#: app/libraries/main.php:
|
5823 |
msgid "Organizer Singular Label"
|
5824 |
msgstr ""
|
5825 |
|
5826 |
-
#: app/libraries/main.php:
|
5827 |
msgid "Speaker Plural Label"
|
5828 |
msgstr ""
|
5829 |
|
5830 |
-
#: app/libraries/main.php:
|
5831 |
msgid "Speaker Singular Label"
|
5832 |
msgstr ""
|
5833 |
|
5834 |
-
#: app/libraries/main.php:
|
5835 |
msgid "Sunday abbreviation"
|
5836 |
msgstr ""
|
5837 |
|
5838 |
-
#: app/libraries/main.php:
|
5839 |
msgid "Monday abbreviation"
|
5840 |
msgstr ""
|
5841 |
|
5842 |
-
#: app/libraries/main.php:
|
5843 |
msgid "Tuesday abbreviation"
|
5844 |
msgstr ""
|
5845 |
|
5846 |
-
#: app/libraries/main.php:
|
5847 |
msgid "Wednesday abbreviation"
|
5848 |
msgstr ""
|
5849 |
|
5850 |
-
#: app/libraries/main.php:
|
5851 |
msgid "Thursday abbreviation"
|
5852 |
msgstr ""
|
5853 |
|
5854 |
-
#: app/libraries/main.php:
|
5855 |
msgid "Friday abbreviation"
|
5856 |
msgstr ""
|
5857 |
|
5858 |
-
#: app/libraries/main.php:
|
5859 |
msgid "Saturday abbreviation"
|
5860 |
msgstr ""
|
5861 |
|
5862 |
-
#: app/libraries/main.php:
|
5863 |
msgid "Others"
|
5864 |
msgstr ""
|
5865 |
|
5866 |
-
#: app/libraries/main.php:
|
5867 |
msgid "Booking Success Message"
|
5868 |
msgstr ""
|
5869 |
|
5870 |
-
#: app/libraries/main.php:
|
5871 |
msgid ""
|
5872 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
5873 |
"needed, please check your email."
|
5874 |
msgstr ""
|
5875 |
|
5876 |
-
#: app/libraries/main.php:
|
5877 |
msgid "Register Button"
|
5878 |
msgstr ""
|
5879 |
|
5880 |
-
#: app/libraries/main.php:
|
5881 |
#: app/skins/carousel/render.php:152 app/skins/carousel/render.php:182
|
5882 |
#: app/skins/grid/render.php:116 app/skins/grid/render.php:159
|
5883 |
#: app/skins/grid/render.php:200 app/skins/grid/render.php:228
|
@@ -5894,11 +5894,11 @@ msgstr ""
|
|
5894 |
msgid "REGISTER"
|
5895 |
msgstr ""
|
5896 |
|
5897 |
-
#: app/libraries/main.php:
|
5898 |
msgid "View Detail Button"
|
5899 |
msgstr ""
|
5900 |
|
5901 |
-
#: app/libraries/main.php:
|
5902 |
#: app/skins/carousel/render.php:182 app/skins/grid/render.php:116
|
5903 |
#: app/skins/grid/render.php:159 app/skins/grid/render.php:200
|
5904 |
#: app/skins/grid/render.php:228 app/skins/list/render.php:102
|
@@ -5909,55 +5909,55 @@ msgstr ""
|
|
5909 |
msgid "View Detail"
|
5910 |
msgstr ""
|
5911 |
|
5912 |
-
#: app/libraries/main.php:
|
5913 |
msgid "Event Detail Button"
|
5914 |
msgstr ""
|
5915 |
|
5916 |
-
#: app/libraries/main.php:
|
5917 |
msgid "Event Detail"
|
5918 |
msgstr ""
|
5919 |
|
5920 |
-
#: app/libraries/main.php:
|
5921 |
msgid "More Info Link"
|
5922 |
msgstr ""
|
5923 |
|
5924 |
-
#: app/libraries/main.php:
|
5925 |
msgid "Ticket (Singular)"
|
5926 |
msgstr ""
|
5927 |
|
5928 |
-
#: app/libraries/main.php:
|
5929 |
msgid "Tickets (Plural)"
|
5930 |
msgstr ""
|
5931 |
|
5932 |
-
#: app/libraries/main.php:
|
5933 |
msgid "EventON"
|
5934 |
msgstr ""
|
5935 |
|
5936 |
-
#: app/libraries/main.php:
|
5937 |
msgid "The Events Calendar"
|
5938 |
msgstr ""
|
5939 |
|
5940 |
-
#: app/libraries/main.php:
|
5941 |
msgid "Events Schedule WP Plugin"
|
5942 |
msgstr ""
|
5943 |
|
5944 |
-
#: app/libraries/main.php:
|
5945 |
msgid "Calendarize It"
|
5946 |
msgstr ""
|
5947 |
|
5948 |
-
#: app/libraries/main.php:
|
5949 |
msgid "Confirmed"
|
5950 |
msgstr ""
|
5951 |
|
5952 |
-
#: app/libraries/main.php:
|
5953 |
msgid "Rejected"
|
5954 |
msgstr ""
|
5955 |
|
5956 |
-
#: app/libraries/main.php:
|
5957 |
msgid "Pending"
|
5958 |
msgstr ""
|
5959 |
|
5960 |
-
#: app/libraries/main.php:
|
5961 |
msgid "Waiting"
|
5962 |
msgstr ""
|
5963 |
|
@@ -5993,23 +5993,23 @@ msgstr ""
|
|
5993 |
msgid "All of the day"
|
5994 |
msgstr ""
|
5995 |
|
5996 |
-
#: app/libraries/notifications.php:
|
5997 |
msgid "to"
|
5998 |
msgstr ""
|
5999 |
|
6000 |
-
#: app/libraries/notifications.php:
|
6001 |
msgid "+ Add to Google Calendar"
|
6002 |
msgstr ""
|
6003 |
|
6004 |
-
#: app/libraries/notifications.php:
|
6005 |
msgid "+ iCal export"
|
6006 |
msgstr ""
|
6007 |
|
6008 |
-
#: app/libraries/notifications.php:
|
6009 |
msgid "Yes"
|
6010 |
msgstr ""
|
6011 |
|
6012 |
-
#: app/libraries/notifications.php:
|
6013 |
msgid "No"
|
6014 |
msgstr ""
|
6015 |
|
@@ -6021,15 +6021,15 @@ msgstr ""
|
|
6021 |
msgid "Ignore month and years"
|
6022 |
msgstr ""
|
6023 |
|
6024 |
-
#: app/modules/attendees-list/details.php:
|
6025 |
msgid "Event Attendees"
|
6026 |
msgstr ""
|
6027 |
|
6028 |
-
#: app/modules/attendees-list/details.php:
|
6029 |
msgid "No attendee found! Be the first one to book!"
|
6030 |
msgstr ""
|
6031 |
|
6032 |
-
#: app/modules/attendees-list/details.php:
|
6033 |
#, php-format
|
6034 |
msgid "%s tickets"
|
6035 |
msgstr ""
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: modern-events-calendar\n"
|
4 |
+
"POT-Creation-Date: 2019-07-03 09:29+0430\n"
|
5 |
+
"PO-Revision-Date: 2019-07-03 09:29+0430\n"
|
6 |
"Last-Translator: Howard <howard@realtyna.com>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: en_US\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 2.2\n"
|
13 |
"X-Poedit-KeywordsList: __;_e;esc_html__;esc_html_e;_x;_ex;esc_attr__;"
|
14 |
"esc_attr_e;esc_attr_x;_n;_nx\n"
|
15 |
"X-Poedit-Basepath: ..\n"
|
21 |
msgid "Modern Events Calendar"
|
22 |
msgstr ""
|
23 |
|
24 |
+
#: app/addons/KC.php:70 app/addons/VC.php:64 app/features/mec/styling.php:286
|
25 |
msgid "Content"
|
26 |
msgstr ""
|
27 |
|
46 |
msgid "Select Type"
|
47 |
msgstr ""
|
48 |
|
49 |
+
#: app/features/colors.php:50 app/features/fes/form.php:794
|
50 |
+
#: app/features/mec/settings.php:785
|
51 |
msgid "Event Color"
|
52 |
msgstr ""
|
53 |
|
63 |
msgstr ""
|
64 |
|
65 |
#: app/features/contextual.php:62 app/features/events.php:2250
|
66 |
+
#: app/features/mec/booking.php:146 app/features/mec/gateways.php:111
|
67 |
+
#: app/features/mec/ie.php:107 app/features/mec/messages.php:111
|
68 |
+
#: app/features/mec/modules.php:173 app/features/mec/notifications.php:110
|
69 |
+
#: app/features/mec/regform.php:146 app/features/mec/regform.php:215
|
70 |
+
#: app/features/mec/settings.php:178 app/features/mec/single.php:139
|
71 |
+
#: app/features/mec/styles.php:111 app/features/mec/styling.php:133
|
72 |
#: app/features/mec/support.php:29
|
73 |
msgid "Booking Form"
|
74 |
msgstr ""
|
82 |
"YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></iframe>"
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: app/features/contextual.php:70 app/features/mec/booking.php:153
|
86 |
+
#: app/features/mec/gateways.php:118 app/features/mec/gateways.php:181
|
87 |
+
#: app/features/mec/ie.php:114 app/features/mec/messages.php:118
|
88 |
+
#: app/features/mec/modules.php:180 app/features/mec/notifications.php:117
|
89 |
+
#: app/features/mec/regform.php:153 app/features/mec/settings.php:185
|
90 |
+
#: app/features/mec/single.php:146 app/features/mec/styles.php:118
|
91 |
+
#: app/features/mec/styling.php:140 app/features/mec/support.php:36
|
92 |
msgid "Payment Gateways"
|
93 |
msgstr ""
|
94 |
|
99 |
"\"0\" allowfullscreen></iframe>"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: app/features/contextual.php:77 app/features/mec/booking.php:162
|
103 |
+
#: app/features/mec/gateways.php:127 app/features/mec/ie.php:123
|
104 |
+
#: app/features/mec/messages.php:127 app/features/mec/modules.php:189
|
105 |
+
#: app/features/mec/notifications.php:129 app/features/mec/regform.php:161
|
106 |
+
#: app/features/mec/settings.php:194 app/features/mec/single.php:155
|
107 |
+
#: app/features/mec/styles.php:127 app/features/mec/styling.php:149
|
108 |
#: app/features/mec/support.php:45
|
109 |
msgid "Notifications"
|
110 |
msgstr ""
|
172 |
#: app/features/mec/gateways.php:28 app/features/mec/ie.php:24
|
173 |
#: app/features/mec/messages.php:28 app/features/mec/modules.php:35
|
174 |
#: app/features/mec/notifications.php:27 app/features/mec/regform.php:64
|
175 |
+
#: app/features/mec/settings.php:51 app/features/mec/settings.php:252
|
176 |
#: app/features/mec/single.php:27 app/features/mec/styles.php:28
|
177 |
#: app/features/mec/styling.php:50
|
178 |
msgid "General Options"
|
182 |
#: app/features/mec/gateways.php:30 app/features/mec/ie.php:26
|
183 |
#: app/features/mec/messages.php:30 app/features/mec/modules.php:37
|
184 |
#: app/features/mec/notifications.php:29 app/features/mec/regform.php:66
|
185 |
+
#: app/features/mec/settings.php:63 app/features/mec/settings.php:569
|
186 |
#: app/features/mec/single.php:29 app/features/mec/styles.php:30
|
187 |
#: app/features/mec/styling.php:52
|
188 |
msgid "Slugs/Permalinks"
|
196 |
#: app/features/mec/gateways.php:31 app/features/mec/ie.php:27
|
197 |
#: app/features/mec/messages.php:31 app/features/mec/modules.php:38
|
198 |
#: app/features/mec/notifications.php:30 app/features/mec/regform.php:67
|
199 |
+
#: app/features/mec/settings.php:69 app/features/mec/settings.php:601
|
200 |
#: app/features/mec/single.php:30 app/features/mec/styles.php:31
|
201 |
#: app/features/mec/styling.php:53
|
202 |
msgid "Currency Options"
|
216 |
#: app/features/mec/gateways.php:32 app/features/mec/ie.php:28
|
217 |
#: app/features/mec/messages.php:32 app/features/mec/modules.php:39
|
218 |
#: app/features/mec/notifications.php:31 app/features/mec/regform.php:68
|
219 |
+
#: app/features/mec/settings.php:75 app/features/mec/settings.php:658
|
220 |
#: app/features/mec/single.php:31 app/features/mec/styles.php:32
|
221 |
#: app/features/mec/styling.php:54
|
222 |
msgid "Google Recaptcha Options"
|
227 |
#: app/features/mec/messages.php:51 app/features/mec/modules.php:58
|
228 |
#: app/features/mec/notifications.php:50 app/features/mec/regform.php:87
|
229 |
#: app/features/mec/settings.php:118 app/features/mec/single.php:62
|
230 |
+
#: app/features/mec/single.php:310 app/features/mec/styles.php:51
|
231 |
#: app/features/mec/styling.php:73
|
232 |
msgid "Countdown Options"
|
233 |
msgstr ""
|
250 |
#: app/features/mec/gateways.php:33 app/features/mec/ie.php:29
|
251 |
#: app/features/mec/messages.php:33 app/features/mec/modules.php:40
|
252 |
#: app/features/mec/notifications.php:32 app/features/mec/regform.php:69
|
253 |
+
#: app/features/mec/settings.php:81 app/features/mec/settings.php:694
|
254 |
#: app/features/mec/single.php:32 app/features/mec/styles.php:33
|
255 |
#: app/features/mec/styling.php:55
|
256 |
msgid "Frontend Event Submission"
|
268 |
|
269 |
#: app/features/contextual.php:308 app/features/events.php:284
|
270 |
#: app/features/mec/booking.php:77 app/features/mec/booking.php:84
|
271 |
+
#: app/features/mec/booking.php:167 app/features/mec/booking.php:219
|
272 |
#: app/features/mec/gateways.php:64 app/features/mec/gateways.php:68
|
273 |
+
#: app/features/mec/gateways.php:132 app/features/mec/ie.php:60
|
274 |
+
#: app/features/mec/ie.php:64 app/features/mec/ie.php:128
|
275 |
#: app/features/mec/messages.php:64 app/features/mec/messages.php:68
|
276 |
+
#: app/features/mec/messages.php:132 app/features/mec/modules.php:71
|
277 |
#: app/features/mec/modules.php:75 app/features/mec/modules.php:194
|
278 |
#: app/features/mec/notifications.php:63 app/features/mec/notifications.php:67
|
279 |
+
#: app/features/mec/notifications.php:136
|
280 |
+
#: app/features/mec/notifications.php:225 app/features/mec/regform.php:100
|
281 |
+
#: app/features/mec/regform.php:104 app/features/mec/regform.php:166
|
282 |
#: app/features/mec/settings.php:131 app/features/mec/settings.php:135
|
283 |
+
#: app/features/mec/settings.php:199 app/features/mec/single.php:92
|
284 |
+
#: app/features/mec/single.php:96 app/features/mec/single.php:160
|
285 |
#: app/features/mec/styles.php:64 app/features/mec/styles.php:68
|
286 |
+
#: app/features/mec/styles.php:132 app/features/mec/styling.php:86
|
287 |
+
#: app/features/mec/styling.php:90 app/features/mec/styling.php:154
|
288 |
msgid "Booking"
|
289 |
msgstr ""
|
290 |
|
291 |
#: app/features/contextual.php:318 app/features/mec/booking.php:92
|
292 |
+
#: app/features/mec/booking.php:330 app/features/mec/gateways.php:70
|
293 |
#: app/features/mec/ie.php:66 app/features/mec/messages.php:70
|
294 |
#: app/features/mec/modules.php:77 app/features/mec/notifications.php:69
|
295 |
#: app/features/mec/regform.php:106 app/features/mec/settings.php:137
|
298 |
msgid "Coupons"
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: app/features/contextual.php:326 app/features/mec/booking.php:135
|
302 |
+
#: app/features/mec/gateways.php:100 app/features/mec/ie.php:96
|
303 |
+
#: app/features/mec/messages.php:100 app/features/mec/modules.php:159
|
304 |
+
#: app/features/mec/modules.php:509 app/features/mec/notifications.php:99
|
305 |
+
#: app/features/mec/regform.php:136 app/features/mec/settings.php:167
|
306 |
+
#: app/features/mec/single.php:128 app/features/mec/styles.php:100
|
307 |
+
#: app/features/mec/styling.php:122
|
308 |
msgid "BuddyPress Integration"
|
309 |
msgstr ""
|
310 |
|
312 |
#: app/features/mec/gateways.php:36 app/features/mec/ie.php:32
|
313 |
#: app/features/mec/messages.php:36 app/features/mec/modules.php:43
|
314 |
#: app/features/mec/notifications.php:35 app/features/mec/regform.php:72
|
315 |
+
#: app/features/mec/settings.php:95 app/features/mec/settings.php:879
|
316 |
#: app/features/mec/single.php:35 app/features/mec/styles.php:36
|
317 |
#: app/features/mec/styling.php:58
|
318 |
msgid "Mailchimp Integration"
|
329 |
msgstr ""
|
330 |
|
331 |
#: app/features/events.php:138
|
332 |
+
#: app/features/mec/meta_boxes/display_options.php:867
|
333 |
+
#: app/features/mec/meta_boxes/display_options.php:923
|
334 |
+
#: app/features/mec/meta_boxes/display_options.php:958
|
335 |
#: app/features/profile/profile.php:28 app/skins/daily_view/tpl.php:80
|
336 |
#: app/skins/monthly_view/tpl.php:71 app/skins/yearly_view/tpl.php:69
|
337 |
msgid "Event"
|
345 |
msgid "Add New Event"
|
346 |
msgstr ""
|
347 |
|
348 |
+
#: app/features/events.php:141 app/features/ix.php:3119
|
349 |
#: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:56
|
350 |
msgid "No events found!"
|
351 |
msgstr ""
|
367 |
msgstr ""
|
368 |
|
369 |
#: app/features/events.php:162
|
370 |
+
#: app/features/mec/meta_boxes/display_options.php:798
|
371 |
#: app/features/mec/meta_boxes/search_form.php:31
|
372 |
#: app/features/mec/meta_boxes/search_form.php:92
|
373 |
#: app/features/mec/meta_boxes/search_form.php:153
|
377 |
#: app/features/mec/meta_boxes/search_form.php:397
|
378 |
#: app/features/mec/meta_boxes/search_form.php:451
|
379 |
#: app/features/mec/meta_boxes/search_form.php:512
|
380 |
+
#: app/features/mec/meta_boxes/search_form.php:573 app/libraries/main.php:4479
|
381 |
#: app/libraries/skins.php:781 app/skins/single.php:410
|
382 |
#: app/skins/single/default.php:169 app/skins/single/default.php:380
|
383 |
#: app/skins/single/m1.php:170 app/skins/single/m2.php:102
|
387 |
|
388 |
#: app/features/events.php:163 app/features/fes/form.php:745
|
389 |
#: app/features/mec.php:332 app/features/mec/meta_boxes/filter.php:70
|
390 |
+
#: app/libraries/main.php:4478
|
391 |
msgid "Categories"
|
392 |
msgstr ""
|
393 |
|
459 |
msgid "Event Details"
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: app/features/events.php:321 app/features/events.php:3157
|
463 |
+
#: app/features/events.php:3199 app/features/fes/form.php:706
|
464 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
465 |
+
#: app/features/mec/settings.php:761 app/libraries/main.php:4511
|
466 |
#: app/widgets/single.php:103
|
467 |
msgid "Event Cost"
|
468 |
msgstr ""
|
469 |
|
470 |
#: app/features/events.php:325 app/features/fes/form.php:709
|
471 |
+
#: app/libraries/main.php:4512 app/skins/single.php:433
|
472 |
#: app/skins/single/default.php:103 app/skins/single/default.php:314
|
473 |
#: app/skins/single/m1.php:49 app/skins/single/modern.php:199
|
474 |
msgid "Cost"
|
485 |
#: app/features/events.php:431 app/features/events.php:2232
|
486 |
#: app/features/fes/form.php:668 app/features/labels.php:177
|
487 |
#: app/features/mec/regform.php:27 app/features/organizers.php:274
|
488 |
+
#: app/features/profile/profile.php:90 app/libraries/notifications.php:673
|
489 |
#: app/modules/booking/steps/form.php:35
|
490 |
msgid "Name"
|
491 |
msgstr ""
|
492 |
|
493 |
#: app/features/events.php:432 app/features/events.php:2243
|
494 |
#: app/features/events.php:2321 app/features/fes/form.php:664
|
495 |
+
#: app/features/mec/regform.php:38 app/features/mec/regform.php:267
|
496 |
#: app/features/organizers.php:110 app/features/organizers.php:150
|
497 |
#: app/features/profile/profile.php:93 app/features/speakers.php:120
|
498 |
+
#: app/features/speakers.php:180 app/libraries/main.php:1142
|
499 |
+
#: app/libraries/main.php:1208 app/libraries/main.php:2247
|
500 |
+
#: app/libraries/notifications.php:674 app/modules/booking/steps/form.php:43
|
501 |
#: app/modules/booking/steps/form.php:80 app/skins/single.php:661
|
502 |
#: app/skins/single.php:715 app/skins/single/default.php:211
|
503 |
#: app/skins/single/default.php:422 app/skins/single/m1.php:107
|
510 |
msgstr ""
|
511 |
|
512 |
#: app/features/events.php:440 app/features/events.php:446
|
513 |
+
#: app/features/events.php:2975 app/features/events.php:3157
|
514 |
+
#: app/features/events.php:3199 app/features/fes/form.php:236
|
515 |
#: app/features/fes/form.php:240 app/features/ix.php:2740
|
516 |
#: app/features/ix.php:2781 app/features/ix/import_g_calendar.php:38
|
517 |
#: app/features/mec/dashboard.php:332
|
519 |
#: app/features/mec/meta_boxes/display_options.php:169
|
520 |
#: app/features/mec/meta_boxes/display_options.php:307
|
521 |
#: app/features/mec/meta_boxes/display_options.php:362
|
522 |
+
#: app/features/mec/meta_boxes/display_options.php:485
|
523 |
+
#: app/features/mec/meta_boxes/display_options.php:539
|
524 |
+
#: app/features/mec/meta_boxes/display_options.php:586
|
525 |
+
#: app/features/mec/meta_boxes/display_options.php:619
|
526 |
+
#: app/features/mec/meta_boxes/display_options.php:654
|
527 |
+
#: app/features/mec/meta_boxes/display_options.php:700
|
528 |
+
#: app/features/mec/meta_boxes/display_options.php:766
|
529 |
+
#: app/features/mec/meta_boxes/display_options.php:981
|
530 |
+
#: app/features/mec/meta_boxes/display_options.php:1068
|
531 |
msgid "Start Date"
|
532 |
msgstr ""
|
533 |
|
546 |
msgstr ""
|
547 |
|
548 |
#: app/features/events.php:532 app/features/events.php:537
|
549 |
+
#: app/features/events.php:2976 app/features/events.php:3157
|
550 |
+
#: app/features/events.php:3199 app/features/fes/form.php:276
|
551 |
#: app/features/fes/form.php:280 app/features/ix.php:2740
|
552 |
#: app/features/ix.php:2781 app/features/ix/import_g_calendar.php:44
|
553 |
#: app/features/mec/dashboard.php:333
|
578 |
msgstr ""
|
579 |
|
580 |
#: app/features/events.php:663 app/features/events.php:795
|
581 |
+
#: app/features/events.php:1094 app/features/events.php:1137
|
582 |
#: app/features/events.php:1436 app/features/events.php:1503
|
583 |
#: app/features/events.php:1655 app/features/events.php:1670
|
584 |
#: app/features/events.php:1837 app/features/events.php:1850
|
585 |
#: app/features/events.php:1980 app/features/events.php:2016
|
586 |
#: app/features/events.php:2114 app/features/events.php:2129
|
587 |
#: app/features/events.php:2159 app/features/events.php:2172
|
588 |
+
#: app/features/fes/form.php:630 app/features/locations.php:298
|
589 |
+
#: app/features/mec/booking.php:239 app/features/mec/booking.php:263
|
590 |
+
#: app/features/mec/booking.php:279 app/features/mec/booking.php:375
|
591 |
+
#: app/features/mec/booking.php:404 app/features/mec/booking.php:452
|
592 |
+
#: app/features/mec/booking.php:462 app/features/mec/booking.php:484
|
593 |
+
#: app/features/mec/booking.php:494 app/features/mec/dashboard.php:71
|
594 |
#: app/features/mec/meta_boxes/display_options.php:60
|
595 |
#: app/features/mec/meta_boxes/display_options.php:73
|
596 |
#: app/features/mec/meta_boxes/display_options.php:86
|
604 |
#: app/features/mec/meta_boxes/display_options.php:248
|
605 |
#: app/features/mec/meta_boxes/display_options.php:259
|
606 |
#: app/features/mec/meta_boxes/display_options.php:326
|
607 |
+
#: app/features/mec/meta_boxes/display_options.php:502
|
608 |
+
#: app/features/mec/meta_boxes/display_options.php:785
|
609 |
+
#: app/features/mec/meta_boxes/display_options.php:838
|
610 |
+
#: app/features/mec/meta_boxes/display_options.php:850
|
611 |
+
#: app/features/mec/meta_boxes/display_options.php:861
|
612 |
+
#: app/features/mec/meta_boxes/display_options.php:893
|
613 |
+
#: app/features/mec/meta_boxes/display_options.php:904
|
614 |
+
#: app/features/mec/meta_boxes/display_options.php:917
|
615 |
+
#: app/features/mec/meta_boxes/display_options.php:952
|
616 |
+
#: app/features/mec/meta_boxes/display_options.php:1001
|
617 |
+
#: app/features/mec/meta_boxes/display_options.php:1012
|
618 |
+
#: app/features/mec/meta_boxes/display_options.php:1023
|
619 |
+
#: app/features/mec/meta_boxes/display_options.php:1088
|
620 |
+
#: app/features/mec/meta_boxes/display_options.php:1101
|
621 |
+
#: app/features/mec/meta_boxes/display_options.php:1114
|
622 |
+
#: app/features/mec/meta_boxes/display_options.php:1127
|
623 |
+
#: app/features/mec/meta_boxes/display_options.php:1140
|
624 |
#: app/features/mec/modules.php:283 app/features/mec/modules.php:300
|
625 |
#: app/features/mec/modules.php:335 app/features/mec/modules.php:351
|
626 |
+
#: app/features/mec/modules.php:497 app/features/mec/notifications.php:244
|
627 |
+
#: app/features/mec/notifications.php:301
|
628 |
+
#: app/features/mec/notifications.php:353
|
629 |
+
#: app/features/mec/notifications.php:412
|
630 |
+
#: app/features/mec/notifications.php:480
|
631 |
+
#: app/features/mec/notifications.php:543
|
632 |
+
#: app/features/mec/notifications.php:554
|
633 |
+
#: app/features/mec/notifications.php:616 app/features/mec/settings.php:266
|
634 |
+
#: app/features/mec/settings.php:285 app/features/mec/settings.php:312
|
635 |
+
#: app/features/mec/settings.php:332 app/features/mec/settings.php:353
|
636 |
+
#: app/features/mec/settings.php:373 app/features/mec/settings.php:450
|
637 |
+
#: app/features/mec/settings.php:524 app/features/mec/settings.php:541
|
638 |
+
#: app/features/mec/settings.php:558 app/features/mec/settings.php:577
|
639 |
+
#: app/features/mec/settings.php:591 app/features/mec/settings.php:619
|
640 |
+
#: app/features/mec/settings.php:706 app/features/mec/settings.php:844
|
641 |
+
#: app/features/mec/settings.php:861 app/features/mec/settings.php:894
|
642 |
+
#: app/features/mec/settings.php:907 app/features/mec/settings.php:923
|
643 |
+
#: app/features/mec/single.php:221 app/features/mec/single.php:237
|
644 |
+
#: app/features/mec/single.php:256 app/features/mec/single.php:272
|
645 |
+
#: app/features/mec/single.php:287 app/features/mec/single.php:301
|
646 |
+
#: app/features/mec/single.php:339 app/features/mec/styling.php:356
|
647 |
+
#: app/features/mec/styling.php:373 app/features/mec/styling.php:386
|
648 |
#: app/features/organizers.php:267 app/skins/single.php:508
|
649 |
#: app/skins/single/default.php:118 app/skins/single/default.php:329
|
650 |
#: app/skins/single/m1.php:192 app/skins/single/m2.php:125
|
713 |
msgstr ""
|
714 |
|
715 |
#: app/features/events.php:760 app/features/fes/form.php:355
|
716 |
+
#: app/features/mec/meta_boxes/display_options.php:730
|
717 |
#: app/libraries/main.php:407
|
718 |
msgid "Monday"
|
719 |
msgstr ""
|
720 |
|
721 |
#: app/features/events.php:763 app/features/fes/form.php:356
|
722 |
+
#: app/features/mec/meta_boxes/display_options.php:731
|
723 |
#: app/libraries/main.php:407
|
724 |
msgid "Tuesday"
|
725 |
msgstr ""
|
726 |
|
727 |
#: app/features/events.php:766 app/features/fes/form.php:357
|
728 |
+
#: app/features/mec/meta_boxes/display_options.php:732
|
729 |
#: app/libraries/main.php:407
|
730 |
msgid "Wednesday"
|
731 |
msgstr ""
|
732 |
|
733 |
#: app/features/events.php:769 app/features/fes/form.php:358
|
734 |
+
#: app/features/mec/meta_boxes/display_options.php:733
|
735 |
#: app/libraries/main.php:407
|
736 |
msgid "Thursday"
|
737 |
msgstr ""
|
738 |
|
739 |
#: app/features/events.php:772 app/features/fes/form.php:359
|
740 |
+
#: app/features/mec/meta_boxes/display_options.php:734
|
741 |
#: app/libraries/main.php:407
|
742 |
msgid "Friday"
|
743 |
msgstr ""
|
744 |
|
745 |
#: app/features/events.php:775 app/features/fes/form.php:360
|
746 |
+
#: app/features/mec/meta_boxes/display_options.php:735
|
747 |
#: app/libraries/main.php:407
|
748 |
msgid "Saturday"
|
749 |
msgstr ""
|
750 |
|
751 |
#: app/features/events.php:778 app/features/fes/form.php:361
|
752 |
+
#: app/features/mec/meta_boxes/display_options.php:729
|
753 |
#: app/libraries/main.php:407
|
754 |
msgid "Sunday"
|
755 |
msgstr ""
|
787 |
"start and end dates must be commensurate with the initial date."
|
788 |
msgstr ""
|
789 |
|
790 |
+
#: app/features/events.php:829 app/features/fes/form.php:394
|
791 |
+
msgid "First"
|
792 |
msgstr ""
|
793 |
|
794 |
+
#: app/features/events.php:871 app/features/fes/form.php:436
|
795 |
+
msgid "Second"
|
796 |
msgstr ""
|
797 |
|
798 |
+
#: app/features/events.php:913 app/features/fes/form.php:478
|
799 |
+
msgid "Third"
|
800 |
msgstr ""
|
801 |
|
802 |
+
#: app/features/events.php:955 app/features/fes/form.php:520
|
803 |
+
msgid "Fourth"
|
804 |
msgstr ""
|
805 |
|
806 |
+
#: app/features/events.php:997 app/features/fes/form.php:562
|
807 |
+
msgid "Last"
|
|
|
808 |
msgstr ""
|
809 |
|
810 |
+
#: app/features/events.php:1044 app/features/fes/form.php:608
|
811 |
+
msgid "Ends Repeat"
|
|
|
|
|
812 |
msgstr ""
|
813 |
|
814 |
+
#: app/features/events.php:1055 app/features/fes/form.php:612
|
815 |
+
msgid "Never"
|
816 |
msgstr ""
|
817 |
|
818 |
+
#: app/features/events.php:1067 app/features/fes/form.php:617
|
819 |
+
msgid "On"
|
820 |
msgstr ""
|
821 |
|
822 |
+
#: app/features/events.php:1083 app/features/fes/form.php:624
|
823 |
+
msgid "After"
|
824 |
msgstr ""
|
825 |
|
826 |
+
#: app/features/events.php:1087 app/features/events.php:1091
|
827 |
+
#: app/features/fes/form.php:626 app/features/fes/form.php:629
|
828 |
+
msgid "Occurrences times"
|
829 |
msgstr ""
|
830 |
|
831 |
+
#: app/features/events.php:1092 app/features/fes/form.php:630
|
832 |
+
msgid ""
|
833 |
+
"The event will finish after certain repeats. For example if you set it to "
|
834 |
+
"10, the event will finish after 10 repeats."
|
835 |
msgstr ""
|
836 |
|
837 |
#: app/features/events.php:1124 app/features/events.php:1134
|
839 |
msgstr ""
|
840 |
|
841 |
#: app/features/events.php:1129 app/features/events.php:2322
|
842 |
+
#: app/features/mec/regform.php:268 app/features/profile/profile.php:31
|
843 |
+
#: app/libraries/main.php:1694 app/libraries/main.php:2305
|
844 |
#: app/modules/booking/steps/tickets.php:22
|
845 |
#: app/modules/next-event/details.php:90 app/skins/single.php:488
|
846 |
#: app/skins/single/default.php:67 app/skins/single/default.php:278
|
859 |
msgid "Day 1"
|
860 |
msgstr ""
|
861 |
|
862 |
+
#: app/features/events.php:1211 app/features/mec/settings.php:815
|
863 |
#: app/skins/single.php:777
|
864 |
msgid "Hourly Schedule"
|
865 |
msgstr ""
|
882 |
#: app/features/events.php:1227 app/features/events.php:1266
|
883 |
#: app/features/events.php:1301 app/features/events.php:1333
|
884 |
#: app/features/events.php:1362 app/features/events.php:2101
|
885 |
+
#: app/features/events.php:2148 app/features/events.php:2972
|
886 |
+
#: app/features/events.php:3157 app/features/events.php:3199
|
887 |
#: app/features/fes/form.php:225 app/features/ix.php:2740
|
888 |
+
#: app/features/ix.php:2781 app/features/mec/booking.php:444
|
889 |
+
#: app/features/mec/booking.php:476 app/features/mec/styling.php:268
|
890 |
msgid "Title"
|
891 |
msgstr ""
|
892 |
|
897 |
#: app/features/events.php:1867 app/features/events.php:1894
|
898 |
#: app/features/events.php:1993 app/features/events.php:2029
|
899 |
#: app/features/events.php:2136 app/features/events.php:2178
|
900 |
+
#: app/features/fes/list.php:78 app/features/mec/booking.php:387
|
901 |
+
#: app/features/mec/booking.php:416 app/features/mec/booking.php:467
|
902 |
+
#: app/features/mec/booking.php:499 app/libraries/main.php:2166
|
903 |
+
#: app/libraries/main.php:2196 app/libraries/main.php:2225
|
904 |
+
#: app/libraries/main.php:2255 app/libraries/main.php:2284
|
905 |
+
#: app/libraries/main.php:2313 app/libraries/main.php:2342
|
906 |
+
#: app/libraries/main.php:2371 app/libraries/main.php:2393
|
907 |
+
#: app/libraries/main.php:2424 app/libraries/main.php:2468
|
908 |
+
#: app/libraries/main.php:2512 app/libraries/main.php:2559
|
909 |
+
#: app/libraries/main.php:2597
|
910 |
msgid "Remove"
|
911 |
msgstr ""
|
912 |
|
931 |
msgstr ""
|
932 |
|
933 |
#: app/features/events.php:1276 app/features/events.php:1309
|
934 |
+
#: app/features/events.php:1370 app/features/fes/form.php:839
|
935 |
#: app/features/mec.php:340 app/features/mec/booking.php:122
|
936 |
#: app/features/mec/gateways.php:87 app/features/mec/ie.php:83
|
937 |
#: app/features/mec/messages.php:87 app/features/mec/modules.php:101
|
938 |
#: app/features/mec/notifications.php:86 app/features/mec/regform.php:123
|
939 |
+
#: app/features/mec/settings.php:154 app/features/mec/settings.php:809
|
940 |
#: app/features/mec/single.php:115 app/features/mec/styles.php:87
|
941 |
#: app/features/mec/styling.php:109 app/features/speakers.php:57
|
942 |
+
#: app/libraries/main.php:4486 app/modules/speakers/details.php:18
|
943 |
msgid "Speakers"
|
944 |
msgstr ""
|
945 |
|
948 |
msgstr ""
|
949 |
|
950 |
#: app/features/events.php:1401 app/features/fes/form.php:683
|
951 |
+
#: app/features/mec/settings.php:755
|
952 |
msgid "Event Links"
|
953 |
msgstr ""
|
954 |
|
955 |
#: app/features/events.php:1404 app/features/events.php:1410
|
956 |
+
#: app/features/fes/form.php:685 app/libraries/main.php:4509
|
957 |
msgid "Event Link"
|
958 |
msgstr ""
|
959 |
|
974 |
msgstr ""
|
975 |
|
976 |
#: app/features/events.php:1420 app/features/events.php:1433
|
977 |
+
#: app/features/fes/form.php:690 app/libraries/main.php:4510
|
978 |
#: app/skins/single.php:507 app/skins/single/default.php:117
|
979 |
#: app/skins/single/default.php:328 app/skins/single/m1.php:191
|
980 |
#: app/skins/single/m2.php:124 app/skins/single/modern.php:132
|
1005 |
msgstr ""
|
1006 |
|
1007 |
#: app/features/events.php:1486 app/features/events.php:1691
|
1008 |
+
#: app/features/events.php:1864 app/modules/booking/default.php:85
|
1009 |
#: app/modules/booking/steps/tickets.php:40
|
1010 |
#: app/skins/available_spot/tpl.php:140
|
1011 |
msgid "Unlimited"
|
1026 |
msgstr ""
|
1027 |
|
1028 |
#: app/features/events.php:1528 app/libraries/book.php:60
|
1029 |
+
#: app/libraries/main.php:4514 app/modules/booking/steps/tickets.php:40
|
1030 |
msgid "Tickets"
|
1031 |
msgstr ""
|
1032 |
|
1042 |
msgstr ""
|
1043 |
|
1044 |
#: app/features/events.php:1555 app/features/events.php:1776
|
1045 |
+
#: app/features/events.php:3157 app/features/events.php:3199
|
1046 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
1047 |
msgid "Start Time"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
#: app/features/events.php:1597 app/features/events.php:1800
|
1051 |
+
#: app/features/events.php:3157 app/features/events.php:3199
|
1052 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
1053 |
msgid "End Time"
|
1054 |
msgstr ""
|
1058 |
#: app/features/events.php:1831 app/features/events.php:1834
|
1059 |
#: app/features/events.php:1890 app/features/events.php:2107
|
1060 |
#: app/features/events.php:2111 app/features/events.php:2153
|
1061 |
+
#: app/features/events.php:2156 app/features/mec/booking.php:448
|
1062 |
+
#: app/features/mec/booking.php:451 app/features/mec/booking.php:480
|
1063 |
+
#: app/features/mec/booking.php:483
|
1064 |
msgid "Price"
|
1065 |
msgstr ""
|
1066 |
|
1087 |
|
1088 |
#: app/features/events.php:1730 app/features/events.php:1756
|
1089 |
#: app/features/events.php:1892 app/features/labels.php:60
|
1090 |
+
#: app/features/mec/meta_boxes/display_options.php:799
|
1091 |
#: app/features/mec/meta_boxes/search_form.php:66
|
1092 |
#: app/features/mec/meta_boxes/search_form.php:127
|
1093 |
#: app/features/mec/meta_boxes/search_form.php:188
|
1111 |
msgstr ""
|
1112 |
|
1113 |
#: app/features/events.php:1967 app/features/events.php:2005
|
1114 |
+
#: app/features/mec/booking.php:367 app/features/mec/booking.php:396
|
1115 |
msgid "Fee Title"
|
1116 |
msgstr ""
|
1117 |
|
1118 |
#: app/features/events.php:1973 app/features/events.php:1977
|
1119 |
#: app/features/events.php:2010 app/features/events.php:2013
|
1120 |
+
#: app/features/mec/booking.php:371 app/features/mec/booking.php:374
|
1121 |
+
#: app/features/mec/booking.php:400 app/features/mec/booking.php:403
|
1122 |
msgid "Amount"
|
1123 |
msgstr ""
|
1124 |
|
1125 |
#: app/features/events.php:1978 app/features/events.php:2014
|
1126 |
+
#: app/features/mec/booking.php:375 app/features/mec/booking.php:404
|
1127 |
msgid ""
|
1128 |
"Fee amount, considered as fixed amount if you set the type to amount "
|
1129 |
"otherwise considered as percentage"
|
1130 |
msgstr ""
|
1131 |
|
1132 |
#: app/features/events.php:1987 app/features/events.php:2023
|
1133 |
+
#: app/features/mec/booking.php:382 app/features/mec/booking.php:411
|
1134 |
msgid "Percent"
|
1135 |
msgstr ""
|
1136 |
|
1137 |
#: app/features/events.php:1988 app/features/events.php:2024
|
1138 |
+
#: app/features/mec/booking.php:383 app/features/mec/booking.php:412
|
1139 |
msgid "Amount (Per Ticket)"
|
1140 |
msgstr ""
|
1141 |
|
1142 |
#: app/features/events.php:1989 app/features/events.php:2025
|
1143 |
+
#: app/features/mec/booking.php:384 app/features/mec/booking.php:413
|
1144 |
msgid "Amount (Per Booking)"
|
1145 |
msgstr ""
|
1146 |
|
1147 |
+
#: app/features/events.php:2062 app/features/mec/settings.php:833
|
1148 |
msgid "Ticket Variations / Options"
|
1149 |
msgstr ""
|
1150 |
|
1151 |
#: app/features/events.php:2112 app/features/events.php:2157
|
1152 |
+
#: app/features/mec/booking.php:452 app/features/mec/booking.php:484
|
1153 |
msgid "Option Price"
|
1154 |
msgstr ""
|
1155 |
|
1156 |
#: app/features/events.php:2122 app/features/events.php:2126
|
1157 |
#: app/features/events.php:2166 app/features/events.php:2169
|
1158 |
+
#: app/features/mec/booking.php:458 app/features/mec/booking.php:461
|
1159 |
+
#: app/features/mec/booking.php:490 app/features/mec/booking.php:493
|
1160 |
msgid "Maximum Per Ticket"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
#: app/features/events.php:2127 app/features/events.php:2170
|
1164 |
+
#: app/features/mec/booking.php:462 app/features/mec/booking.php:494
|
1165 |
msgid "Maximum Per Ticket. Leave it blank for unlimited."
|
1166 |
msgstr ""
|
1167 |
|
1168 |
+
#: app/features/events.php:2317 app/features/mec/regform.php:264
|
1169 |
+
#: app/libraries/main.php:2188
|
1170 |
msgid "MEC Name"
|
1171 |
msgstr ""
|
1172 |
|
1173 |
+
#: app/features/events.php:2319 app/features/mec/regform.php:265
|
1174 |
+
#: app/libraries/main.php:2217
|
1175 |
msgid "MEC Email"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
+
#: app/features/events.php:2320 app/features/mec/regform.php:266
|
1179 |
+
#: app/libraries/main.php:2158
|
1180 |
msgid "Text"
|
1181 |
msgstr ""
|
1182 |
|
1183 |
+
#: app/features/events.php:2323 app/features/mec/regform.php:269
|
1184 |
#: app/features/organizers.php:102 app/features/organizers.php:146
|
1185 |
#: app/features/speakers.php:112 app/features/speakers.php:176
|
1186 |
+
#: app/features/speakers.php:245 app/libraries/main.php:2334
|
1187 |
msgid "Tel"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
+
#: app/features/events.php:2324 app/features/mec/regform.php:270
|
1191 |
+
#: app/libraries/main.php:2276
|
1192 |
msgid "File"
|
1193 |
msgstr ""
|
1194 |
|
1195 |
+
#: app/features/events.php:2326 app/features/mec/regform.php:271
|
1196 |
+
#: app/libraries/main.php:2363
|
1197 |
msgid "Textarea"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
+
#: app/features/events.php:2328 app/features/mec/regform.php:272
|
1201 |
+
#: app/libraries/main.php:2416
|
1202 |
msgid "Checkboxes"
|
1203 |
msgstr ""
|
1204 |
|
1205 |
+
#: app/features/events.php:2330 app/features/mec/regform.php:273
|
1206 |
+
#: app/libraries/main.php:2460
|
1207 |
msgid "Radio Buttons"
|
1208 |
msgstr ""
|
1209 |
|
1276 |
#: app/features/mec/meta_boxes/search_form.php:604
|
1277 |
#: app/features/mec/meta_boxes/search_form.php:611
|
1278 |
#: app/features/mec/meta_boxes/search_form.php:618
|
1279 |
+
#: app/features/mec/regform.php:274 app/libraries/main.php:2504
|
1280 |
msgid "Dropdown"
|
1281 |
msgstr ""
|
1282 |
|
1283 |
+
#: app/features/events.php:2333 app/features/mec/regform.php:275
|
1284 |
+
#: app/libraries/main.php:2551
|
1285 |
msgid "Agreement"
|
1286 |
msgstr ""
|
1287 |
|
1288 |
+
#: app/features/events.php:2334 app/features/mec/regform.php:276
|
1289 |
+
#: app/libraries/main.php:2392
|
1290 |
msgid "Paragraph"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
+
#: app/features/events.php:2910 app/features/events.php:2927
|
1294 |
+
#: app/features/events.php:2944
|
1295 |
#, php-format
|
1296 |
msgid "Show all %s"
|
1297 |
msgstr ""
|
1298 |
|
1299 |
+
#: app/features/events.php:2910
|
1300 |
msgid "labels"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
+
#: app/features/events.php:2927
|
1304 |
msgid "locations"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
+
#: app/features/events.php:2944
|
1308 |
msgid "organizers"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
+
#: app/features/events.php:2973 app/features/events.php:3157
|
1312 |
+
#: app/features/events.php:3199 app/features/ix.php:2740
|
1313 |
#: app/features/ix.php:2781 app/features/locations.php:58
|
1314 |
#: app/features/locations.php:229 app/features/locations.php:286
|
1315 |
#: app/features/locations.php:288 app/features/locations.php:297
|
1316 |
+
#: app/features/mec/meta_boxes/display_options.php:800
|
1317 |
#: app/features/mec/meta_boxes/search_form.php:38
|
1318 |
#: app/features/mec/meta_boxes/search_form.php:99
|
1319 |
#: app/features/mec/meta_boxes/search_form.php:160
|
1323 |
#: app/features/mec/meta_boxes/search_form.php:404
|
1324 |
#: app/features/mec/meta_boxes/search_form.php:458
|
1325 |
#: app/features/mec/meta_boxes/search_form.php:519
|
1326 |
+
#: app/features/mec/meta_boxes/search_form.php:580 app/libraries/main.php:1688
|
1327 |
+
#: app/libraries/main.php:4483 app/libraries/skins.php:807
|
1328 |
#: app/skins/single.php:337 app/skins/single.php:754
|
1329 |
#: app/skins/single/default.php:153 app/skins/single/default.php:364
|
1330 |
#: app/skins/single/m1.php:155 app/skins/single/m2.php:87
|
1332 |
msgid "Location"
|
1333 |
msgstr ""
|
1334 |
|
1335 |
+
#: app/features/events.php:2974 app/features/events.php:3157
|
1336 |
+
#: app/features/events.php:3199 app/features/ix.php:2740
|
1337 |
+
#: app/features/ix.php:2781 app/features/mec/meta_boxes/display_options.php:801
|
1338 |
#: app/features/mec/meta_boxes/search_form.php:45
|
1339 |
#: app/features/mec/meta_boxes/search_form.php:106
|
1340 |
#: app/features/mec/meta_boxes/search_form.php:167
|
1347 |
#: app/features/mec/meta_boxes/search_form.php:587
|
1348 |
#: app/features/organizers.php:58 app/features/organizers.php:199
|
1349 |
#: app/features/organizers.php:255 app/features/organizers.php:257
|
1350 |
+
#: app/features/organizers.php:266 app/libraries/main.php:4485
|
1351 |
#: app/libraries/skins.php:833 app/skins/single.php:644
|
1352 |
#: app/skins/single/default.php:194 app/skins/single/default.php:405
|
1353 |
#: app/skins/single/m1.php:90 app/skins/single/m2.php:22
|
1355 |
msgid "Organizer"
|
1356 |
msgstr ""
|
1357 |
|
1358 |
+
#: app/features/events.php:2978
|
1359 |
msgid "Repeat"
|
1360 |
msgstr ""
|
1361 |
|
1362 |
+
#: app/features/events.php:2979
|
1363 |
msgid "Author"
|
1364 |
msgstr ""
|
1365 |
|
1366 |
+
#: app/features/events.php:3092 app/features/events.php:3093
|
1367 |
msgid "iCal Export"
|
1368 |
msgstr ""
|
1369 |
|
1370 |
+
#: app/features/events.php:3095 app/features/events.php:3096
|
1371 |
msgid "CSV Export"
|
1372 |
msgstr ""
|
1373 |
|
1374 |
+
#: app/features/events.php:3098 app/features/events.php:3099
|
1375 |
msgid "MS Excel Export"
|
1376 |
msgstr ""
|
1377 |
|
1378 |
+
#: app/features/events.php:3101 app/features/events.php:3102
|
1379 |
msgid "XML Export"
|
1380 |
msgstr ""
|
1381 |
|
1382 |
+
#: app/features/events.php:3104 app/features/events.php:3105
|
1383 |
msgid "JSON Export"
|
1384 |
msgstr ""
|
1385 |
|
1386 |
+
#: app/features/events.php:3107 app/features/events.php:3108
|
1387 |
msgid "Duplicate"
|
1388 |
msgstr ""
|
1389 |
|
1390 |
+
#: app/features/events.php:3157 app/features/events.php:3199
|
1391 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
1392 |
#: app/features/labels.php:176 app/features/locations.php:228
|
1393 |
#: app/features/organizers.php:198 app/features/speakers.php:242
|
1394 |
msgid "ID"
|
1395 |
msgstr ""
|
1396 |
|
1397 |
+
#: app/features/events.php:3157 app/features/events.php:3199
|
1398 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
1399 |
msgid "Link"
|
1400 |
msgstr ""
|
1401 |
|
1402 |
+
#: app/features/events.php:3157 app/features/events.php:3199
|
1403 |
#, php-format
|
1404 |
msgid "%s Tel"
|
1405 |
msgstr ""
|
1406 |
|
1407 |
+
#: app/features/events.php:3157 app/features/events.php:3199
|
1408 |
#, php-format
|
1409 |
msgid "%s Email"
|
1410 |
msgstr ""
|
1451 |
msgid "Please fill event title field!"
|
1452 |
msgstr ""
|
1453 |
|
1454 |
+
#: app/features/fes.php:832
|
1455 |
msgid "The event submitted. It will publish as soon as possible."
|
1456 |
msgstr ""
|
1457 |
|
1458 |
+
#: app/features/fes.php:833
|
1459 |
msgid "The event published."
|
1460 |
msgstr ""
|
1461 |
|
1489 |
"Insert full link including http(s)://"
|
1490 |
msgstr ""
|
1491 |
|
1492 |
+
#: app/features/fes/form.php:723 app/features/mec/settings.php:767
|
1493 |
msgid "Featured Image"
|
1494 |
msgstr ""
|
1495 |
|
1499 |
|
1500 |
#: app/features/fes/form.php:770 app/features/labels.php:61
|
1501 |
#: app/features/labels.php:220 app/features/mec.php:333
|
1502 |
+
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4480
|
1503 |
#: app/skins/single.php:536 app/skins/single/default.php:132
|
1504 |
#: app/skins/single/default.php:343 app/skins/single/m1.php:64
|
1505 |
#: app/skins/single/modern.php:214
|
1506 |
msgid "Labels"
|
1507 |
msgstr ""
|
1508 |
|
1509 |
+
#: app/features/fes/form.php:816 app/features/mec.php:331
|
1510 |
#: app/features/mec/meta_boxes/filter.php:138
|
1511 |
msgid "Tags"
|
1512 |
msgstr ""
|
1513 |
|
1514 |
+
#: app/features/fes/form.php:818
|
1515 |
msgid "Insert your desired tags, comma separated."
|
1516 |
msgstr ""
|
1517 |
|
1518 |
+
#: app/features/fes/form.php:854
|
1519 |
msgid "Submit"
|
1520 |
msgstr ""
|
1521 |
|
1540 |
msgid "MEC - Import / Export"
|
1541 |
msgstr ""
|
1542 |
|
1543 |
+
#: app/features/ix.php:107 app/features/mec/booking.php:203
|
1544 |
+
#: app/features/mec/gateways.php:168 app/features/mec/ie.php:164
|
1545 |
+
#: app/features/mec/messages.php:168 app/features/mec/modules.php:230
|
1546 |
+
#: app/features/mec/notifications.php:204 app/features/mec/regform.php:202
|
1547 |
+
#: app/features/mec/settings.php:235 app/features/mec/single.php:196
|
1548 |
+
#: app/features/mec/styles.php:168 app/features/mec/styling.php:190
|
1549 |
#: app/features/mec/support.php:73
|
1550 |
msgid "Import / Export"
|
1551 |
msgstr ""
|
1578 |
msgid "Both of API key and Calendar ID are required!"
|
1579 |
msgstr ""
|
1580 |
|
1581 |
+
#: app/features/ix.php:2000 app/features/ix.php:2419 app/features/ix.php:3126
|
1582 |
msgid "Please select some events to import!"
|
1583 |
msgstr ""
|
1584 |
|
1611 |
msgid "All of Client App, Client Secret and Calendar ID are required!"
|
1612 |
msgstr ""
|
1613 |
|
1614 |
+
#: app/features/ix.php:3055
|
1615 |
#, php-format
|
1616 |
msgid "%s events added to Google Calendar successfully."
|
1617 |
msgstr ""
|
1618 |
|
1619 |
+
#: app/features/ix.php:3056
|
1620 |
#, php-format
|
1621 |
msgid "%s previously added events get updated."
|
1622 |
msgstr ""
|
1623 |
|
1624 |
+
#: app/features/ix.php:3057
|
1625 |
#, php-format
|
1626 |
msgid "%s events failed to add for following reasons: %s"
|
1627 |
msgstr ""
|
1628 |
|
1629 |
+
#: app/features/ix.php:3089
|
1630 |
msgid "Please insert your Facebook page's link."
|
1631 |
msgstr ""
|
1632 |
|
1633 |
+
#: app/features/ix.php:3098
|
1634 |
msgid ""
|
1635 |
"We couldn't recognize your Facebook page. Please check it and provide us a "
|
1636 |
"valid Facebook page link."
|
1637 |
msgstr ""
|
1638 |
|
1639 |
+
#: app/features/ix.php:3130
|
1640 |
msgid "Please insert your facebook page's link."
|
1641 |
msgstr ""
|
1642 |
|
1643 |
+
#: app/features/ix.php:3135
|
1644 |
msgid ""
|
1645 |
"We couldn't recognize your Facebook page. Please check it and provide us a "
|
1646 |
"valid facebook page link."
|
1673 |
#: app/features/ix/import.php:15 app/features/ix/import_f_calendar.php:15
|
1674 |
#: app/features/ix/import_g_calendar.php:15
|
1675 |
#: app/features/ix/import_meetup.php:15 app/features/ix/sync.php:15
|
1676 |
+
#: app/features/ix/thirdparty.php:15 app/features/mec/ie.php:188
|
1677 |
msgid "Export"
|
1678 |
msgstr ""
|
1679 |
|
1684 |
#: app/features/ix/import_g_calendar.php:103
|
1685 |
#: app/features/ix/import_meetup.php:16 app/features/ix/import_meetup.php:85
|
1686 |
#: app/features/ix/sync.php:16 app/features/ix/thirdparty.php:16
|
1687 |
+
#: app/features/ix/thirdparty.php:98 app/features/mec/ie.php:177
|
1688 |
msgid "Import"
|
1689 |
msgstr ""
|
1690 |
|
1803 |
#: app/features/ix/export_g_calendar.php:72
|
1804 |
#: app/features/ix/export_g_calendar.php:147
|
1805 |
#: app/features/ix/export_g_calendar.php:164
|
1806 |
+
#: app/features/mec/notifications.php:282
|
1807 |
+
#: app/features/mec/notifications.php:334
|
1808 |
+
#: app/features/mec/notifications.php:387
|
1809 |
+
#: app/features/mec/notifications.php:588
|
1810 |
msgid "Add to Google Calendar"
|
1811 |
msgstr ""
|
1812 |
|
1813 |
+
#: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:571
|
1814 |
+
#: app/features/mec/modules.php:602 app/features/mec/notifications.php:735
|
1815 |
+
#: app/features/mec/settings.php:1030 app/features/mec/single.php:429
|
1816 |
msgid "Checking ..."
|
1817 |
msgstr ""
|
1818 |
|
1854 |
msgid "ICS Feed"
|
1855 |
msgstr ""
|
1856 |
|
1857 |
+
#: app/features/ix/import.php:46 app/features/mec/booking.php:222
|
1858 |
+
#: app/features/mec/booking.php:333 app/features/mec/booking.php:351
|
1859 |
+
#: app/features/mec/booking.php:428 app/features/mec/modules.php:267
|
1860 |
#: app/features/mec/modules.php:408 app/features/mec/modules.php:425
|
1861 |
#, php-format
|
1862 |
msgid "%s is required to use this feature."
|
1863 |
msgstr ""
|
1864 |
|
1865 |
#: app/features/ix/import.php:46 app/features/ix/sync.php:22
|
1866 |
+
#: app/features/mec/booking.php:222 app/features/mec/booking.php:333
|
1867 |
+
#: app/features/mec/booking.php:351 app/features/mec/booking.php:428
|
1868 |
#: app/features/mec/meta_boxes/display_options.php:296
|
1869 |
+
#: app/features/mec/meta_boxes/display_options.php:423
|
1870 |
+
#: app/features/mec/meta_boxes/display_options.php:474
|
1871 |
+
#: app/features/mec/meta_boxes/display_options.php:581
|
1872 |
+
#: app/features/mec/meta_boxes/display_options.php:688
|
1873 |
+
#: app/features/mec/meta_boxes/display_options.php:761
|
1874 |
+
#: app/features/mec/meta_boxes/display_options.php:941
|
1875 |
#: app/features/mec/modules.php:267 app/features/mec/modules.php:408
|
1876 |
#: app/features/mec/modules.php:425
|
1877 |
msgid "Pro version of Modern Events Calendar"
|
2025 |
msgstr ""
|
2026 |
|
2027 |
#: app/features/ix/sync.php:22
|
2028 |
+
#: app/features/mec/meta_boxes/display_options.php:761
|
2029 |
#, php-format
|
2030 |
msgid "%s is required to use synchronization feature."
|
2031 |
msgstr ""
|
2036 |
|
2037 |
#: app/features/ix/sync.php:32 app/features/ix/sync.php:41
|
2038 |
#: app/features/ix/sync.php:52 app/features/ix/sync.php:63
|
2039 |
+
#: app/features/mec/notifications.php:531
|
2040 |
msgid "Important Note"
|
2041 |
msgstr ""
|
2042 |
|
2143 |
#: app/features/mec/meta_boxes/display_options.php:32
|
2144 |
#: app/features/mec/meta_boxes/display_options.php:157
|
2145 |
#: app/features/mec/meta_boxes/display_options.php:301
|
2146 |
+
#: app/features/mec/meta_boxes/display_options.php:479
|
2147 |
+
#: app/features/mec/meta_boxes/display_options.php:529
|
2148 |
+
#: app/features/mec/meta_boxes/display_options.php:693
|
2149 |
+
#: app/features/mec/meta_boxes/display_options.php:823
|
2150 |
+
#: app/features/mec/meta_boxes/display_options.php:880
|
2151 |
+
#: app/features/mec/meta_boxes/display_options.php:972
|
2152 |
+
#: app/features/mec/meta_boxes/display_options.php:1058
|
2153 |
msgid "Style"
|
2154 |
msgstr ""
|
2155 |
|
2171 |
msgstr ""
|
2172 |
|
2173 |
#: app/features/labels.php:117 app/features/labels.php:142
|
2174 |
+
#: app/libraries/main.php:4707 app/skins/agenda/render.php:41
|
2175 |
#: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:59
|
2176 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
|
2177 |
#: app/skins/daily_view/render.php:27 app/skins/grid/render.php:53
|
2206 |
|
2207 |
#: app/features/locations.php:59 app/features/mec.php:334
|
2208 |
#: app/features/mec/dashboard.php:202 app/features/mec/meta_boxes/filter.php:87
|
2209 |
+
#: app/libraries/main.php:4482
|
2210 |
msgid "Locations"
|
2211 |
msgstr ""
|
2212 |
|
2277 |
msgid "eg. City Hall"
|
2278 |
msgstr ""
|
2279 |
|
2280 |
+
#: app/features/locations.php:309 app/features/mec/settings.php:797
|
2281 |
#: app/widgets/single.php:115
|
2282 |
msgid "Event Location"
|
2283 |
msgstr ""
|
2311 |
msgid "Don't show map in single event page"
|
2312 |
msgstr ""
|
2313 |
|
2314 |
+
#: app/features/locations.php:355 app/libraries/main.php:4516
|
2315 |
msgid "Other Locations"
|
2316 |
msgstr ""
|
2317 |
|
2355 |
|
2356 |
#: app/features/mec.php:335 app/features/mec/dashboard.php:209
|
2357 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2358 |
+
#: app/libraries/main.php:4484
|
2359 |
msgid "Organizers"
|
2360 |
msgstr ""
|
2361 |
|
2458 |
"your host provider in this regard."
|
2459 |
msgstr ""
|
2460 |
|
2461 |
+
#: app/features/mec/booking.php:24 app/features/mec/booking.php:511
|
2462 |
+
#: app/features/mec/booking.php:521 app/features/mec/booking.php:588
|
2463 |
+
#: app/features/mec/booking.php:602 app/features/mec/gateways.php:11
|
2464 |
+
#: app/features/mec/gateways.php:195 app/features/mec/gateways.php:204
|
2465 |
+
#: app/features/mec/gateways.php:245 app/features/mec/gateways.php:255
|
2466 |
+
#: app/features/mec/messages.php:11 app/features/mec/messages.php:202
|
2467 |
+
#: app/features/mec/messages.php:211 app/features/mec/messages.php:245
|
2468 |
+
#: app/features/mec/messages.php:254 app/features/mec/modules.php:22
|
2469 |
#: app/features/mec/modules.php:542 app/features/mec/modules.php:552
|
2470 |
#: app/features/mec/modules.php:619 app/features/mec/modules.php:633
|
2471 |
+
#: app/features/mec/notifications.php:10 app/features/mec/notifications.php:644
|
2472 |
+
#: app/features/mec/notifications.php:656
|
2473 |
+
#: app/features/mec/notifications.php:752
|
2474 |
+
#: app/features/mec/notifications.php:766 app/features/mec/regform.php:47
|
2475 |
+
#: app/features/mec/regform.php:282 app/features/mec/regform.php:337
|
2476 |
+
#: app/features/mec/regform.php:373 app/features/mec/regform.php:382
|
2477 |
+
#: app/features/mec/settings.php:31 app/features/mec/settings.php:954
|
2478 |
+
#: app/features/mec/settings.php:964 app/features/mec/settings.php:1047
|
2479 |
+
#: app/features/mec/settings.php:1061 app/features/mec/single.php:14
|
2480 |
+
#: app/features/mec/single.php:369 app/features/mec/single.php:379
|
2481 |
+
#: app/features/mec/single.php:446 app/features/mec/single.php:460
|
2482 |
+
#: app/features/mec/styles.php:11 app/features/mec/styles.php:188
|
2483 |
+
#: app/features/mec/styles.php:197 app/features/mec/styles.php:234
|
2484 |
+
#: app/features/mec/styles.php:243 app/features/mec/styling.php:33
|
2485 |
+
#: app/features/mec/styling.php:395 app/features/mec/styling.php:404
|
2486 |
+
#: app/features/mec/styling.php:467 app/features/mec/styling.php:476
|
2487 |
msgid "Save Changes"
|
2488 |
msgstr ""
|
2489 |
|
2491 |
#: app/features/mec/ie.php:25 app/features/mec/messages.php:29
|
2492 |
#: app/features/mec/modules.php:36 app/features/mec/notifications.php:28
|
2493 |
#: app/features/mec/regform.php:65 app/features/mec/settings.php:57
|
2494 |
+
#: app/features/mec/settings.php:364 app/features/mec/single.php:28
|
2495 |
#: app/features/mec/styles.php:29 app/features/mec/styling.php:51
|
2496 |
msgid "Archive Pages"
|
2497 |
msgstr ""
|
2500 |
#: app/features/mec/ie.php:30 app/features/mec/messages.php:34
|
2501 |
#: app/features/mec/modules.php:41 app/features/mec/notifications.php:33
|
2502 |
#: app/features/mec/regform.php:70 app/features/mec/settings.php:87
|
2503 |
+
#: app/features/mec/settings.php:870 app/features/mec/single.php:33
|
2504 |
#: app/features/mec/styles.php:34 app/features/mec/styling.php:56
|
2505 |
msgid "User Profile"
|
2506 |
msgstr ""
|
2527 |
#: app/features/mec/ie.php:46 app/features/mec/messages.php:50
|
2528 |
#: app/features/mec/modules.php:57 app/features/mec/notifications.php:49
|
2529 |
#: app/features/mec/regform.php:86 app/features/mec/settings.php:117
|
2530 |
+
#: app/features/mec/single.php:56 app/features/mec/single.php:213
|
2531 |
#: app/features/mec/styles.php:50 app/features/mec/styling.php:72
|
2532 |
msgid "Single Event Page"
|
2533 |
msgstr ""
|
2536 |
#: app/features/mec/ie.php:49 app/features/mec/messages.php:53
|
2537 |
#: app/features/mec/modules.php:60 app/features/mec/notifications.php:52
|
2538 |
#: app/features/mec/regform.php:89 app/features/mec/settings.php:120
|
2539 |
+
#: app/features/mec/single.php:74 app/features/mec/single.php:348
|
2540 |
#: app/features/mec/styles.php:53 app/features/mec/styling.php:75
|
2541 |
msgid "Additional Organizers"
|
2542 |
msgstr ""
|
2550 |
msgid "Additional Locations"
|
2551 |
msgstr ""
|
2552 |
|
2553 |
+
#: app/features/mec/booking.php:98 app/features/mec/booking.php:348
|
2554 |
#: app/features/mec/gateways.php:71 app/features/mec/ie.php:67
|
2555 |
#: app/features/mec/messages.php:71 app/features/mec/modules.php:78
|
2556 |
#: app/features/mec/notifications.php:70 app/features/mec/regform.php:107
|
2559 |
msgid "Taxes / Fees"
|
2560 |
msgstr ""
|
2561 |
|
2562 |
+
#: app/features/mec/booking.php:104 app/features/mec/booking.php:425
|
2563 |
#: app/features/mec/gateways.php:72 app/features/mec/ie.php:68
|
2564 |
#: app/features/mec/messages.php:72 app/features/mec/modules.php:79
|
2565 |
#: app/features/mec/notifications.php:71 app/features/mec/regform.php:108
|
2626 |
msgid "Next Event"
|
2627 |
msgstr ""
|
2628 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2629 |
#: app/features/mec/booking.php:168 app/features/mec/gateways.php:133
|
2630 |
#: app/features/mec/ie.php:129 app/features/mec/messages.php:133
|
2631 |
+
#: app/features/mec/modules.php:195 app/features/mec/notifications.php:142
|
2632 |
+
#: app/features/mec/notifications.php:289 app/features/mec/regform.php:167
|
2633 |
#: app/features/mec/settings.php:200 app/features/mec/single.php:161
|
2634 |
#: app/features/mec/styles.php:133 app/features/mec/styling.php:155
|
2635 |
+
msgid "Booking Verification"
|
2636 |
msgstr ""
|
2637 |
|
2638 |
+
#: app/features/mec/booking.php:169 app/features/mec/booking.php:304
|
2639 |
+
#: app/features/mec/gateways.php:134 app/features/mec/ie.php:130
|
2640 |
+
#: app/features/mec/messages.php:134 app/features/mec/modules.php:196
|
2641 |
+
#: app/features/mec/notifications.php:148
|
2642 |
+
#: app/features/mec/notifications.php:341 app/features/mec/regform.php:168
|
2643 |
#: app/features/mec/settings.php:201 app/features/mec/single.php:162
|
2644 |
#: app/features/mec/styles.php:134 app/features/mec/styling.php:156
|
2645 |
+
msgid "Booking Confirmation"
|
2646 |
msgstr ""
|
2647 |
|
2648 |
#: app/features/mec/booking.php:170 app/features/mec/gateways.php:135
|
2649 |
#: app/features/mec/ie.php:131 app/features/mec/messages.php:135
|
2650 |
+
#: app/features/mec/modules.php:197 app/features/mec/notifications.php:154
|
2651 |
+
#: app/features/mec/notifications.php:393 app/features/mec/regform.php:169
|
2652 |
#: app/features/mec/settings.php:202 app/features/mec/single.php:163
|
2653 |
#: app/features/mec/styles.php:135 app/features/mec/styling.php:157
|
2654 |
+
msgid "Booking Cancellation"
|
2655 |
+
msgstr ""
|
2656 |
+
|
2657 |
+
#: app/features/mec/booking.php:171 app/features/mec/gateways.php:136
|
2658 |
+
#: app/features/mec/ie.php:132 app/features/mec/messages.php:136
|
2659 |
+
#: app/features/mec/modules.php:198 app/features/mec/notifications.php:160
|
2660 |
+
#: app/features/mec/notifications.php:461 app/features/mec/regform.php:170
|
2661 |
+
#: app/features/mec/settings.php:203 app/features/mec/single.php:164
|
2662 |
+
#: app/features/mec/styles.php:136 app/features/mec/styling.php:158
|
2663 |
+
msgid "Admin"
|
2664 |
msgstr ""
|
2665 |
|
2666 |
#: app/features/mec/booking.php:172 app/features/mec/gateways.php:137
|
2667 |
#: app/features/mec/ie.php:133 app/features/mec/messages.php:137
|
2668 |
+
#: app/features/mec/modules.php:199 app/features/mec/notifications.php:166
|
2669 |
+
#: app/features/mec/notifications.php:521 app/features/mec/regform.php:171
|
2670 |
#: app/features/mec/settings.php:204 app/features/mec/single.php:165
|
2671 |
#: app/features/mec/styles.php:137 app/features/mec/styling.php:159
|
2672 |
+
#: app/libraries/notifications.php:354
|
2673 |
+
msgid "Booking Reminder"
|
2674 |
+
msgstr ""
|
2675 |
+
|
2676 |
+
#: app/features/mec/booking.php:174 app/features/mec/gateways.php:139
|
2677 |
+
#: app/features/mec/ie.php:135 app/features/mec/messages.php:139
|
2678 |
+
#: app/features/mec/modules.php:201 app/features/mec/notifications.php:172
|
2679 |
+
#: app/features/mec/notifications.php:597 app/features/mec/regform.php:173
|
2680 |
+
#: app/features/mec/settings.php:206 app/features/mec/single.php:167
|
2681 |
+
#: app/features/mec/styles.php:139 app/features/mec/styling.php:161
|
2682 |
#: app/features/mec/support-page.php:80
|
2683 |
msgid "New Event"
|
2684 |
msgstr ""
|
2685 |
|
2686 |
+
#: app/features/mec/booking.php:182 app/features/mec/gateways.php:147
|
2687 |
+
#: app/features/mec/ie.php:143 app/features/mec/messages.php:147
|
2688 |
+
#: app/features/mec/modules.php:209 app/features/mec/notifications.php:183
|
2689 |
+
#: app/features/mec/regform.php:181 app/features/mec/settings.php:214
|
2690 |
+
#: app/features/mec/single.php:175 app/features/mec/styles.php:147
|
2691 |
+
#: app/features/mec/styling.php:169 app/features/mec/support.php:52
|
2692 |
msgid "Styling Options"
|
2693 |
msgstr ""
|
2694 |
|
2695 |
+
#: app/features/mec/booking.php:189 app/features/mec/gateways.php:154
|
2696 |
+
#: app/features/mec/ie.php:150 app/features/mec/messages.php:154
|
2697 |
+
#: app/features/mec/modules.php:216 app/features/mec/notifications.php:190
|
2698 |
+
#: app/features/mec/regform.php:188 app/features/mec/settings.php:221
|
2699 |
+
#: app/features/mec/single.php:182 app/features/mec/styles.php:154
|
2700 |
+
#: app/features/mec/styling.php:176 app/features/mec/support.php:59
|
2701 |
msgid "Custom CSS"
|
2702 |
msgstr ""
|
2703 |
|
2704 |
+
#: app/features/mec/booking.php:196 app/features/mec/gateways.php:161
|
2705 |
+
#: app/features/mec/ie.php:157 app/features/mec/messages.php:161
|
2706 |
+
#: app/features/mec/messages.php:181 app/features/mec/modules.php:223
|
2707 |
+
#: app/features/mec/notifications.php:197 app/features/mec/regform.php:195
|
2708 |
+
#: app/features/mec/settings.php:228 app/features/mec/single.php:189
|
2709 |
+
#: app/features/mec/styles.php:161 app/features/mec/styling.php:183
|
2710 |
#: app/features/mec/support.php:66
|
2711 |
msgid "Messages"
|
2712 |
msgstr ""
|
2713 |
|
2714 |
+
#: app/features/mec/booking.php:227
|
2715 |
msgid "Enable booking module"
|
2716 |
msgstr ""
|
2717 |
|
2718 |
+
#: app/features/mec/booking.php:228
|
2719 |
msgid ""
|
2720 |
"After enable it, you should reloading this page to see Payment Gateways on "
|
2721 |
"settings and see a new menu on Dashboard"
|
2722 |
msgstr ""
|
2723 |
|
2724 |
+
#: app/features/mec/booking.php:233 app/features/mec/booking.php:238
|
2725 |
#: app/features/mec/modules.php:491 app/features/mec/modules.php:496
|
2726 |
msgid "Date Format"
|
2727 |
msgstr ""
|
2728 |
|
2729 |
+
#: app/features/mec/booking.php:239
|
2730 |
msgid "Default is Y-m-d"
|
2731 |
msgstr ""
|
2732 |
|
2733 |
+
#: app/features/mec/booking.php:246
|
2734 |
msgid "Maximum Dates"
|
2735 |
msgstr ""
|
2736 |
|
2737 |
+
#: app/features/mec/booking.php:248
|
2738 |
msgid "Default is 6"
|
2739 |
msgstr ""
|
2740 |
|
2741 |
+
#: app/features/mec/booking.php:252 app/features/mec/booking.php:262
|
2742 |
msgid "Thank You Page"
|
2743 |
msgstr ""
|
2744 |
|
2745 |
+
#: app/features/mec/booking.php:263
|
2746 |
msgid ""
|
2747 |
"User redirects to this page after booking. Leave it empty if you want to "
|
2748 |
"disable it."
|
2749 |
msgstr ""
|
2750 |
|
2751 |
+
#: app/features/mec/booking.php:274
|
2752 |
msgid "Enable Express Attendees Form"
|
2753 |
msgstr ""
|
2754 |
|
2755 |
+
#: app/features/mec/booking.php:278 app/modules/booking/steps/form.php:49
|
2756 |
msgid "Attendees Form"
|
2757 |
msgstr ""
|
2758 |
|
2759 |
+
#: app/features/mec/booking.php:279
|
2760 |
msgid ""
|
2761 |
"Users are able to apply first attendee information for other attendees in "
|
2762 |
"the booking form."
|
2763 |
msgstr ""
|
2764 |
|
2765 |
+
#: app/features/mec/booking.php:285
|
2766 |
msgid "Email verification"
|
2767 |
msgstr ""
|
2768 |
|
2769 |
+
#: app/features/mec/booking.php:291
|
2770 |
msgid "Auto verification for free bookings"
|
2771 |
msgstr ""
|
2772 |
|
2773 |
+
#: app/features/mec/booking.php:300
|
2774 |
msgid "Auto verification for paid bookings"
|
2775 |
msgstr ""
|
2776 |
|
2777 |
+
#: app/features/mec/booking.php:310
|
2778 |
msgid "Auto confirmation for free bookings"
|
2779 |
msgstr ""
|
2780 |
|
2781 |
+
#: app/features/mec/booking.php:319
|
2782 |
msgid "Auto confirmation for paid bookings"
|
2783 |
msgstr ""
|
2784 |
|
2785 |
+
#: app/features/mec/booking.php:338
|
2786 |
msgid "Enable coupons module"
|
2787 |
msgstr ""
|
2788 |
|
2789 |
+
#: app/features/mec/booking.php:340
|
2790 |
msgid ""
|
2791 |
"After enable it, you should reloading this page to see a new menu on "
|
2792 |
"Dashboard > Booking"
|
2793 |
msgstr ""
|
2794 |
|
2795 |
+
#: app/features/mec/booking.php:356
|
2796 |
msgid "Enable taxes / fees module"
|
2797 |
msgstr ""
|
2798 |
|
2799 |
+
#: app/features/mec/booking.php:361
|
2800 |
msgid "Add Fee"
|
2801 |
msgstr ""
|
2802 |
|
2803 |
+
#: app/features/mec/booking.php:433
|
2804 |
msgid "Enable ticket options module"
|
2805 |
msgstr ""
|
2806 |
|
2807 |
+
#: app/features/mec/booking.php:438
|
2808 |
msgid "Add Variation / Option"
|
2809 |
msgstr ""
|
2810 |
|
2811 |
+
#: app/features/mec/booking.php:566 app/features/mec/gateways.php:224
|
2812 |
+
#: app/features/mec/messages.php:229 app/features/mec/modules.php:597
|
2813 |
+
#: app/features/mec/notifications.php:730 app/features/mec/regform.php:357
|
2814 |
+
#: app/features/mec/settings.php:1025 app/features/mec/single.php:424
|
2815 |
+
#: app/features/mec/styles.php:217 app/features/mec/styling.php:449
|
2816 |
msgid "Saved"
|
2817 |
msgstr ""
|
2818 |
|
2819 |
+
#: app/features/mec/booking.php:567 app/features/mec/gateways.php:225
|
2820 |
+
#: app/features/mec/messages.php:230 app/features/mec/modules.php:598
|
2821 |
+
#: app/features/mec/notifications.php:731 app/features/mec/regform.php:358
|
2822 |
+
#: app/features/mec/settings.php:1026 app/features/mec/single.php:425
|
2823 |
+
#: app/features/mec/styles.php:218 app/features/mec/styling.php:450
|
2824 |
msgid "Settings Saved!"
|
2825 |
msgstr ""
|
2826 |
|
2827 |
+
#: app/features/mec/booking.php:569 app/features/mec/booking.php:591
|
2828 |
#: app/features/mec/modules.php:600 app/features/mec/modules.php:622
|
2829 |
+
#: app/features/mec/notifications.php:733
|
2830 |
+
#: app/features/mec/notifications.php:755 app/features/mec/settings.php:1028
|
2831 |
+
#: app/features/mec/settings.php:1050 app/features/mec/single.php:427
|
2832 |
+
#: app/features/mec/single.php:449 app/libraries/main.php:4706
|
2833 |
msgid "Verified"
|
2834 |
msgstr ""
|
2835 |
|
2836 |
+
#: app/features/mec/booking.php:593 app/features/mec/modules.php:624
|
2837 |
+
#: app/features/mec/notifications.php:757 app/features/mec/settings.php:1052
|
2838 |
+
#: app/features/mec/single.php:451
|
2839 |
msgid "Please Refresh Page"
|
2840 |
msgstr ""
|
2841 |
|
2902 |
msgid "Activate Addons"
|
2903 |
msgstr ""
|
2904 |
|
2905 |
+
#: app/features/mec/dashboard.php:220 app/features/mec/settings.php:535
|
2906 |
msgid "Upcoming Events"
|
2907 |
msgstr ""
|
2908 |
|
2951 |
msgid "Change Log"
|
2952 |
msgstr ""
|
2953 |
|
2954 |
+
#: app/features/mec/ie.php:178
|
2955 |
msgid ""
|
2956 |
"Insert your backup files below and press import to restore your site's "
|
2957 |
"options to the last backup."
|
2958 |
msgstr ""
|
2959 |
|
2960 |
+
#: app/features/mec/ie.php:179
|
2961 |
msgid ""
|
2962 |
"WARNING! Restoring backup will overwrite all of your current option values. "
|
2963 |
"Caution Indeed."
|
2964 |
msgstr ""
|
2965 |
|
2966 |
+
#: app/features/mec/ie.php:182
|
2967 |
msgid "Please paste your options here"
|
2968 |
msgstr ""
|
2969 |
|
2970 |
+
#: app/features/mec/ie.php:184
|
2971 |
msgid "Import Settings"
|
2972 |
msgstr ""
|
2973 |
|
2974 |
+
#: app/features/mec/ie.php:194
|
2975 |
msgid "Download Settings"
|
2976 |
msgstr ""
|
2977 |
|
2978 |
+
#: app/features/mec/messages.php:184
|
2979 |
msgid ""
|
2980 |
"You can change some MEC messages here simply. For example if you like to "
|
2981 |
"change \"REGISTER\" button label, you can do it here. By the Way, if your "
|
2989 |
|
2990 |
#: app/features/mec/meta_boxes/display_options.php:34
|
2991 |
#: app/features/mec/meta_boxes/display_options.php:159
|
2992 |
+
#: app/features/mec/meta_boxes/display_options.php:531
|
2993 |
+
#: app/features/mec/meta_boxes/display_options.php:825
|
2994 |
+
#: app/features/mec/settings.php:399 app/features/mec/settings.php:423
|
2995 |
+
#: app/features/mec/settings.php:432 app/features/mec/settings.php:473
|
2996 |
+
#: app/features/mec/settings.php:497 app/features/mec/settings.php:506
|
2997 |
msgid "Classic"
|
2998 |
msgstr ""
|
2999 |
|
3000 |
#: app/features/mec/meta_boxes/display_options.php:35
|
3001 |
#: app/features/mec/meta_boxes/display_options.php:161
|
3002 |
+
#: app/features/mec/settings.php:424 app/features/mec/settings.php:434
|
3003 |
+
#: app/features/mec/settings.php:498 app/features/mec/settings.php:508
|
3004 |
msgid "Minimal"
|
3005 |
msgstr ""
|
3006 |
|
3007 |
#: app/features/mec/meta_boxes/display_options.php:36
|
3008 |
#: app/features/mec/meta_boxes/display_options.php:162
|
3009 |
+
#: app/features/mec/meta_boxes/display_options.php:481
|
3010 |
+
#: app/features/mec/meta_boxes/display_options.php:533
|
3011 |
+
#: app/features/mec/meta_boxes/display_options.php:695
|
3012 |
+
#: app/features/mec/meta_boxes/display_options.php:827
|
3013 |
+
#: app/features/mec/settings.php:401 app/features/mec/settings.php:414
|
3014 |
+
#: app/features/mec/settings.php:425 app/features/mec/settings.php:435
|
3015 |
+
#: app/features/mec/settings.php:475 app/features/mec/settings.php:488
|
3016 |
+
#: app/features/mec/settings.php:499 app/features/mec/settings.php:509
|
3017 |
msgid "Modern"
|
3018 |
msgstr ""
|
3019 |
|
3020 |
#: app/features/mec/meta_boxes/display_options.php:37
|
3021 |
+
#: app/features/mec/settings.php:426 app/features/mec/settings.php:500
|
3022 |
msgid "Standard"
|
3023 |
msgstr ""
|
3024 |
|
3025 |
#: app/features/mec/meta_boxes/display_options.php:38
|
3026 |
+
#: app/features/mec/settings.php:427 app/features/mec/settings.php:501
|
3027 |
msgid "Accordion"
|
3028 |
msgstr ""
|
3029 |
|
3030 |
#: app/features/mec/meta_boxes/display_options.php:44
|
3031 |
#: app/features/mec/meta_boxes/display_options.php:171
|
3032 |
#: app/features/mec/meta_boxes/display_options.php:309
|
3033 |
+
#: app/features/mec/meta_boxes/display_options.php:588
|
3034 |
+
#: app/features/mec/meta_boxes/display_options.php:621
|
3035 |
+
#: app/features/mec/meta_boxes/display_options.php:768
|
3036 |
+
#: app/features/mec/meta_boxes/display_options.php:983
|
3037 |
+
#: app/features/mec/meta_boxes/display_options.php:1070
|
3038 |
msgid "Today"
|
3039 |
msgstr ""
|
3040 |
|
3041 |
#: app/features/mec/meta_boxes/display_options.php:45
|
3042 |
#: app/features/mec/meta_boxes/display_options.php:172
|
3043 |
#: app/features/mec/meta_boxes/display_options.php:310
|
3044 |
+
#: app/features/mec/meta_boxes/display_options.php:589
|
3045 |
+
#: app/features/mec/meta_boxes/display_options.php:622
|
3046 |
+
#: app/features/mec/meta_boxes/display_options.php:769
|
3047 |
+
#: app/features/mec/meta_boxes/display_options.php:984
|
3048 |
+
#: app/features/mec/meta_boxes/display_options.php:1071
|
3049 |
msgid "Tomorrow"
|
3050 |
msgstr ""
|
3051 |
|
3053 |
#: app/features/mec/meta_boxes/display_options.php:173
|
3054 |
#: app/features/mec/meta_boxes/display_options.php:311
|
3055 |
#: app/features/mec/meta_boxes/display_options.php:364
|
3056 |
+
#: app/features/mec/meta_boxes/display_options.php:541
|
3057 |
+
#: app/features/mec/meta_boxes/display_options.php:590
|
3058 |
+
#: app/features/mec/meta_boxes/display_options.php:623
|
3059 |
+
#: app/features/mec/meta_boxes/display_options.php:658
|
3060 |
+
#: app/features/mec/meta_boxes/display_options.php:704
|
3061 |
+
#: app/features/mec/meta_boxes/display_options.php:770
|
3062 |
+
#: app/features/mec/meta_boxes/display_options.php:985
|
3063 |
+
#: app/features/mec/meta_boxes/display_options.php:1072
|
3064 |
msgid "Start of Current Month"
|
3065 |
msgstr ""
|
3066 |
|
3068 |
#: app/features/mec/meta_boxes/display_options.php:174
|
3069 |
#: app/features/mec/meta_boxes/display_options.php:312
|
3070 |
#: app/features/mec/meta_boxes/display_options.php:365
|
3071 |
+
#: app/features/mec/meta_boxes/display_options.php:542
|
3072 |
+
#: app/features/mec/meta_boxes/display_options.php:591
|
3073 |
+
#: app/features/mec/meta_boxes/display_options.php:624
|
3074 |
+
#: app/features/mec/meta_boxes/display_options.php:659
|
3075 |
+
#: app/features/mec/meta_boxes/display_options.php:705
|
3076 |
+
#: app/features/mec/meta_boxes/display_options.php:771
|
3077 |
+
#: app/features/mec/meta_boxes/display_options.php:986
|
3078 |
+
#: app/features/mec/meta_boxes/display_options.php:1073
|
3079 |
msgid "Start of Next Month"
|
3080 |
msgstr ""
|
3081 |
|
3083 |
#: app/features/mec/meta_boxes/display_options.php:175
|
3084 |
#: app/features/mec/meta_boxes/display_options.php:313
|
3085 |
#: app/features/mec/meta_boxes/display_options.php:366
|
3086 |
+
#: app/features/mec/meta_boxes/display_options.php:489
|
3087 |
+
#: app/features/mec/meta_boxes/display_options.php:543
|
3088 |
+
#: app/features/mec/meta_boxes/display_options.php:592
|
3089 |
+
#: app/features/mec/meta_boxes/display_options.php:625
|
3090 |
+
#: app/features/mec/meta_boxes/display_options.php:660
|
3091 |
+
#: app/features/mec/meta_boxes/display_options.php:706
|
3092 |
+
#: app/features/mec/meta_boxes/display_options.php:772
|
3093 |
+
#: app/features/mec/meta_boxes/display_options.php:987
|
3094 |
+
#: app/features/mec/meta_boxes/display_options.php:1074
|
3095 |
msgid "On a certain date"
|
3096 |
msgstr ""
|
3097 |
|
3099 |
#: app/features/mec/meta_boxes/display_options.php:178
|
3100 |
#: app/features/mec/meta_boxes/display_options.php:316
|
3101 |
#: app/features/mec/meta_boxes/display_options.php:369
|
3102 |
+
#: app/features/mec/meta_boxes/display_options.php:492
|
3103 |
+
#: app/features/mec/meta_boxes/display_options.php:546
|
3104 |
+
#: app/features/mec/meta_boxes/display_options.php:595
|
3105 |
+
#: app/features/mec/meta_boxes/display_options.php:629
|
3106 |
+
#: app/features/mec/meta_boxes/display_options.php:663
|
3107 |
+
#: app/features/mec/meta_boxes/display_options.php:709
|
3108 |
+
#: app/features/mec/meta_boxes/display_options.php:775
|
3109 |
+
#: app/features/mec/meta_boxes/display_options.php:990
|
3110 |
+
#: app/features/mec/meta_boxes/display_options.php:1077
|
3111 |
#, php-format
|
3112 |
msgid "eg. %s"
|
3113 |
msgstr ""
|
3138 |
#: app/features/mec/meta_boxes/display_options.php:258
|
3139 |
#: app/features/mec/meta_boxes/display_options.php:320
|
3140 |
#: app/features/mec/meta_boxes/display_options.php:325
|
3141 |
+
#: app/features/mec/meta_boxes/display_options.php:496
|
3142 |
+
#: app/features/mec/meta_boxes/display_options.php:501
|
3143 |
+
#: app/features/mec/meta_boxes/display_options.php:779
|
3144 |
+
#: app/features/mec/meta_boxes/display_options.php:784
|
3145 |
+
#: app/features/mec/meta_boxes/display_options.php:831
|
3146 |
+
#: app/features/mec/meta_boxes/display_options.php:837
|
3147 |
+
#: app/features/mec/meta_boxes/display_options.php:844
|
3148 |
+
#: app/features/mec/meta_boxes/display_options.php:849
|
|
|
3149 |
#: app/features/mec/meta_boxes/display_options.php:856
|
3150 |
+
#: app/features/mec/meta_boxes/display_options.php:860
|
3151 |
#: app/features/mec/meta_boxes/display_options.php:888
|
3152 |
+
#: app/features/mec/meta_boxes/display_options.php:892
|
3153 |
#: app/features/mec/meta_boxes/display_options.php:899
|
3154 |
+
#: app/features/mec/meta_boxes/display_options.php:903
|
3155 |
+
#: app/features/mec/meta_boxes/display_options.php:910
|
3156 |
+
#: app/features/mec/meta_boxes/display_options.php:916
|
3157 |
+
#: app/features/mec/meta_boxes/display_options.php:946
|
3158 |
+
#: app/features/mec/meta_boxes/display_options.php:951
|
3159 |
+
#: app/features/mec/meta_boxes/display_options.php:994
|
3160 |
+
#: app/features/mec/meta_boxes/display_options.php:1000
|
3161 |
#: app/features/mec/meta_boxes/display_options.php:1007
|
3162 |
+
#: app/features/mec/meta_boxes/display_options.php:1011
|
3163 |
#: app/features/mec/meta_boxes/display_options.php:1018
|
3164 |
+
#: app/features/mec/meta_boxes/display_options.php:1022
|
3165 |
+
#: app/features/mec/meta_boxes/display_options.php:1081
|
3166 |
+
#: app/features/mec/meta_boxes/display_options.php:1087
|
3167 |
+
#: app/features/mec/meta_boxes/display_options.php:1094
|
3168 |
+
#: app/features/mec/meta_boxes/display_options.php:1100
|
3169 |
+
#: app/features/mec/meta_boxes/display_options.php:1107
|
3170 |
+
#: app/features/mec/meta_boxes/display_options.php:1113
|
3171 |
+
#: app/features/mec/meta_boxes/display_options.php:1120
|
3172 |
+
#: app/features/mec/meta_boxes/display_options.php:1126
|
3173 |
+
#: app/features/mec/meta_boxes/display_options.php:1133
|
3174 |
+
#: app/features/mec/meta_boxes/display_options.php:1139
|
3175 |
msgid "Date Formats"
|
3176 |
msgstr ""
|
3177 |
|
3187 |
#: app/features/mec/meta_boxes/display_options.php:86
|
3188 |
#: app/features/mec/meta_boxes/display_options.php:224
|
3189 |
#: app/features/mec/meta_boxes/display_options.php:248
|
3190 |
+
#: app/features/mec/meta_boxes/display_options.php:1088
|
3191 |
+
#: app/features/mec/meta_boxes/display_options.php:1101
|
3192 |
+
#: app/features/mec/meta_boxes/display_options.php:1114
|
3193 |
+
#: app/features/mec/meta_boxes/display_options.php:1127
|
3194 |
+
#: app/features/mec/meta_boxes/display_options.php:1140
|
3195 |
msgid "Default values are d, F and l"
|
3196 |
msgstr ""
|
3197 |
|
3206 |
#: app/features/mec/meta_boxes/display_options.php:115
|
3207 |
#: app/features/mec/meta_boxes/display_options.php:276
|
3208 |
#: app/features/mec/meta_boxes/display_options.php:332
|
3209 |
+
#: app/features/mec/meta_boxes/display_options.php:791
|
3210 |
+
#: app/features/mec/meta_boxes/display_options.php:1038
|
3211 |
+
#: app/features/mec/meta_boxes/display_options.php:1146
|
3212 |
msgid "Limit"
|
3213 |
msgstr ""
|
3214 |
|
3215 |
#: app/features/mec/meta_boxes/display_options.php:116
|
3216 |
#: app/features/mec/meta_boxes/display_options.php:277
|
3217 |
#: app/features/mec/meta_boxes/display_options.php:333
|
3218 |
+
#: app/features/mec/meta_boxes/display_options.php:509
|
3219 |
+
#: app/features/mec/meta_boxes/display_options.php:551
|
3220 |
+
#: app/features/mec/meta_boxes/display_options.php:634
|
3221 |
+
#: app/features/mec/meta_boxes/display_options.php:668
|
3222 |
+
#: app/features/mec/meta_boxes/display_options.php:714
|
3223 |
+
#: app/features/mec/meta_boxes/display_options.php:1039
|
3224 |
+
#: app/features/mec/meta_boxes/display_options.php:1147
|
3225 |
msgid "eg. 6"
|
3226 |
msgstr ""
|
3227 |
|
3243 |
#: app/features/mec/meta_boxes/display_options.php:160
|
3244 |
#: app/features/mec/meta_boxes/display_options.php:303
|
3245 |
#: app/features/mec/meta_boxes/display_options.php:385
|
3246 |
+
#: app/features/mec/meta_boxes/display_options.php:532
|
3247 |
+
#: app/features/mec/meta_boxes/display_options.php:696
|
3248 |
+
#: app/features/mec/meta_boxes/display_options.php:826
|
3249 |
+
#: app/features/mec/settings.php:400 app/features/mec/settings.php:415
|
3250 |
+
#: app/features/mec/settings.php:433 app/features/mec/settings.php:474
|
3251 |
+
#: app/features/mec/settings.php:489 app/features/mec/settings.php:507
|
3252 |
msgid "Clean"
|
3253 |
msgstr ""
|
3254 |
|
3255 |
#: app/features/mec/meta_boxes/display_options.php:163
|
3256 |
#: app/features/mec/meta_boxes/display_options.php:387
|
3257 |
+
#: app/features/mec/meta_boxes/display_options.php:535
|
3258 |
+
#: app/features/mec/settings.php:403 app/features/mec/settings.php:436
|
3259 |
+
#: app/features/mec/settings.php:477 app/features/mec/settings.php:510
|
3260 |
msgid "Simple"
|
3261 |
msgstr ""
|
3262 |
|
3266 |
|
3267 |
#: app/features/mec/meta_boxes/display_options.php:165
|
3268 |
#: app/features/mec/meta_boxes/display_options.php:386
|
3269 |
+
#: app/features/mec/meta_boxes/display_options.php:534
|
3270 |
+
#: app/features/mec/settings.php:402 app/features/mec/settings.php:438
|
3271 |
+
#: app/features/mec/settings.php:476 app/features/mec/settings.php:512
|
3272 |
msgid "Novel"
|
3273 |
msgstr ""
|
3274 |
|
3289 |
msgstr ""
|
3290 |
|
3291 |
#: app/features/mec/meta_boxes/display_options.php:265
|
3292 |
+
#: app/features/mec/meta_boxes/display_options.php:1029
|
3293 |
msgid "Count in row"
|
3294 |
msgstr ""
|
3295 |
|
3296 |
#: app/features/mec/meta_boxes/display_options.php:296
|
3297 |
+
#: app/features/mec/meta_boxes/display_options.php:474
|
3298 |
+
#: app/features/mec/meta_boxes/display_options.php:581
|
3299 |
+
#: app/features/mec/meta_boxes/display_options.php:688
|
3300 |
+
#: app/features/mec/meta_boxes/display_options.php:941
|
3301 |
#, php-format
|
3302 |
msgid "%s is required to use this skin."
|
3303 |
msgstr ""
|
3304 |
|
3305 |
#: app/features/mec/meta_boxes/display_options.php:326
|
3306 |
+
#: app/features/mec/meta_boxes/display_options.php:502
|
3307 |
msgid "Default values are l and F j"
|
3308 |
msgstr ""
|
3309 |
|
3312 |
msgstr ""
|
3313 |
|
3314 |
#: app/features/mec/meta_boxes/display_options.php:375
|
3315 |
+
#: app/features/mec/meta_boxes/display_options.php:396
|
3316 |
+
#: app/libraries/main.php:329 app/libraries/main.php:1241
|
3317 |
+
#: app/libraries/main.php:1266
|
3318 |
msgid "List View"
|
3319 |
msgstr ""
|
3320 |
|
3321 |
#: app/features/mec/meta_boxes/display_options.php:376
|
3322 |
+
#: app/features/mec/meta_boxes/display_options.php:406
|
3323 |
+
#: app/libraries/main.php:333 app/libraries/main.php:1235
|
3324 |
+
#: app/libraries/main.php:1260
|
3325 |
msgid "Yearly View"
|
3326 |
msgstr ""
|
3327 |
|
3328 |
#: app/features/mec/meta_boxes/display_options.php:377
|
3329 |
+
#: app/features/mec/meta_boxes/display_options.php:428
|
3330 |
msgid "Monthly/Calendar View"
|
3331 |
msgstr ""
|
3332 |
|
3333 |
#: app/features/mec/meta_boxes/display_options.php:378
|
3334 |
+
#: app/features/mec/meta_boxes/display_options.php:438
|
3335 |
+
#: app/libraries/main.php:336 app/libraries/main.php:1237
|
3336 |
+
#: app/libraries/main.php:1262
|
3337 |
msgid "Weekly View"
|
3338 |
msgstr ""
|
3339 |
|
3340 |
#: app/features/mec/meta_boxes/display_options.php:379
|
3341 |
+
#: app/features/mec/meta_boxes/display_options.php:448
|
3342 |
+
#: app/libraries/main.php:335 app/libraries/main.php:1238
|
3343 |
+
#: app/libraries/main.php:1263
|
3344 |
msgid "Daily View"
|
3345 |
msgstr ""
|
3346 |
|
3348 |
msgid "Monthly Style"
|
3349 |
msgstr ""
|
3350 |
|
3351 |
+
#: app/features/mec/meta_boxes/display_options.php:423
|
3352 |
#, php-format
|
3353 |
msgid "%s is required to use <b>Yearly View</b> skin."
|
3354 |
msgstr ""
|
3355 |
|
3356 |
+
#: app/features/mec/meta_boxes/display_options.php:456
|
3357 |
msgid "The price shows only in List View."
|
3358 |
msgstr ""
|
3359 |
|
3360 |
+
#: app/features/mec/meta_boxes/display_options.php:459
|
3361 |
msgid "Display Event Price"
|
3362 |
msgstr ""
|
3363 |
|
3364 |
+
#: app/features/mec/meta_boxes/display_options.php:487
|
3365 |
msgid "Start of Current Year"
|
3366 |
msgstr ""
|
3367 |
|
3368 |
+
#: app/features/mec/meta_boxes/display_options.php:488
|
3369 |
msgid "Start of Next Year"
|
3370 |
msgstr ""
|
3371 |
|
3372 |
+
#: app/features/mec/meta_boxes/display_options.php:508
|
3373 |
+
#: app/features/mec/meta_boxes/display_options.php:550
|
3374 |
+
#: app/features/mec/meta_boxes/display_options.php:633
|
3375 |
+
#: app/features/mec/meta_boxes/display_options.php:667
|
3376 |
+
#: app/features/mec/meta_boxes/display_options.php:713
|
3377 |
msgid "Events per day"
|
3378 |
msgstr ""
|
3379 |
|
3380 |
+
#: app/features/mec/meta_boxes/display_options.php:513
|
3381 |
+
#: app/features/mec/meta_boxes/display_options.php:555
|
3382 |
+
#: app/features/mec/meta_boxes/display_options.php:638
|
3383 |
+
#: app/features/mec/meta_boxes/display_options.php:672
|
3384 |
+
#: app/features/mec/meta_boxes/display_options.php:742
|
3385 |
msgid "Next/Previous Buttons"
|
3386 |
msgstr ""
|
3387 |
|
3388 |
+
#: app/features/mec/meta_boxes/display_options.php:521
|
3389 |
msgid "For showing next/previous year navigation."
|
3390 |
msgstr ""
|
3391 |
|
3392 |
+
#: app/features/mec/meta_boxes/display_options.php:565
|
3393 |
msgid "Uppercase Text"
|
3394 |
msgstr ""
|
3395 |
|
3396 |
+
#: app/features/mec/meta_boxes/display_options.php:573
|
3397 |
+
#: app/features/mec/meta_boxes/display_options.php:646
|
3398 |
+
#: app/features/mec/meta_boxes/display_options.php:680
|
3399 |
+
#: app/features/mec/meta_boxes/display_options.php:750
|
3400 |
msgid "For showing next/previous month navigation."
|
3401 |
msgstr ""
|
3402 |
|
3403 |
+
#: app/features/mec/meta_boxes/display_options.php:599
|
3404 |
msgid "Maximum events"
|
3405 |
msgstr ""
|
3406 |
|
3407 |
+
#: app/features/mec/meta_boxes/display_options.php:600
|
3408 |
msgid "eg. 200"
|
3409 |
msgstr ""
|
3410 |
|
3411 |
+
#: app/features/mec/meta_boxes/display_options.php:604
|
3412 |
msgid "Geolocation"
|
3413 |
msgstr ""
|
3414 |
|
3415 |
+
#: app/features/mec/meta_boxes/display_options.php:612
|
3416 |
msgid "The geolocation feature works only in secure (https) websites."
|
3417 |
msgstr ""
|
3418 |
|
3419 |
+
#: app/features/mec/meta_boxes/display_options.php:656
|
3420 |
+
#: app/features/mec/meta_boxes/display_options.php:702
|
3421 |
msgid "Current Week"
|
3422 |
msgstr ""
|
3423 |
|
3424 |
+
#: app/features/mec/meta_boxes/display_options.php:657
|
3425 |
+
#: app/features/mec/meta_boxes/display_options.php:703
|
3426 |
msgid "Next Week"
|
3427 |
msgstr ""
|
3428 |
|
3429 |
+
#: app/features/mec/meta_boxes/display_options.php:718
|
3430 |
msgid "Number of Days"
|
3431 |
msgstr ""
|
3432 |
|
3433 |
+
#: app/features/mec/meta_boxes/display_options.php:726
|
3434 |
msgid "Week Start"
|
3435 |
msgstr ""
|
3436 |
|
3437 |
+
#: app/features/mec/meta_boxes/display_options.php:728
|
3438 |
msgid "Inherite from WordPress options"
|
3439 |
msgstr ""
|
3440 |
|
3441 |
+
#: app/features/mec/meta_boxes/display_options.php:785
|
3442 |
+
#: app/features/mec/meta_boxes/display_options.php:952
|
3443 |
msgid "Default values are j and F"
|
3444 |
msgstr ""
|
3445 |
|
3446 |
+
#: app/features/mec/meta_boxes/display_options.php:792
|
3447 |
msgid "eg. 24"
|
3448 |
msgstr ""
|
3449 |
|
3450 |
+
#: app/features/mec/meta_boxes/display_options.php:795
|
3451 |
msgid "Filter By"
|
3452 |
msgstr ""
|
3453 |
|
3454 |
+
#: app/features/mec/meta_boxes/display_options.php:797
|
3455 |
msgid "None"
|
3456 |
msgstr ""
|
3457 |
|
3458 |
+
#: app/features/mec/meta_boxes/display_options.php:806
|
3459 |
msgid "Convert Masonry to Grid"
|
3460 |
msgstr ""
|
3461 |
|
3462 |
+
#: app/features/mec/meta_boxes/display_options.php:807
|
3463 |
msgid "For using this option, your events should come with image"
|
3464 |
msgstr ""
|
3465 |
|
3466 |
+
#: app/features/mec/meta_boxes/display_options.php:838
|
3467 |
msgid "Default values are d, M and Y"
|
3468 |
msgstr ""
|
3469 |
|
3470 |
+
#: app/features/mec/meta_boxes/display_options.php:850
|
3471 |
msgid "Default values are \"F d\" and l"
|
3472 |
msgstr ""
|
3473 |
|
3474 |
+
#: app/features/mec/meta_boxes/display_options.php:861
|
3475 |
msgid "Default value is \"l, F d Y\""
|
3476 |
msgstr ""
|
3477 |
|
3478 |
+
#: app/features/mec/meta_boxes/display_options.php:882
|
3479 |
msgid "Style 1"
|
3480 |
msgstr ""
|
3481 |
|
3482 |
+
#: app/features/mec/meta_boxes/display_options.php:883
|
3483 |
msgid "Style 2"
|
3484 |
msgstr ""
|
3485 |
|
3486 |
+
#: app/features/mec/meta_boxes/display_options.php:884
|
3487 |
msgid "Style 3"
|
3488 |
msgstr ""
|
3489 |
|
3490 |
+
#: app/features/mec/meta_boxes/display_options.php:893
|
3491 |
+
#: app/features/mec/meta_boxes/display_options.php:904
|
3492 |
msgid "Default value is \"j F Y\""
|
3493 |
msgstr ""
|
3494 |
|
3495 |
+
#: app/features/mec/meta_boxes/display_options.php:917
|
3496 |
msgid "Default values are j, F and Y"
|
3497 |
msgstr ""
|
3498 |
|
3499 |
+
#: app/features/mec/meta_boxes/display_options.php:925
|
3500 |
+
#: app/features/mec/meta_boxes/display_options.php:960
|
3501 |
msgid " -- Next Upcoming Event -- "
|
3502 |
msgstr ""
|
3503 |
|
3504 |
+
#: app/features/mec/meta_boxes/display_options.php:932
|
3505 |
msgid "Background Color"
|
3506 |
msgstr ""
|
3507 |
|
3508 |
+
#: app/features/mec/meta_boxes/display_options.php:974
|
3509 |
+
#: app/features/mec/meta_boxes/display_options.php:1060
|
3510 |
msgid "Type 1"
|
3511 |
msgstr ""
|
3512 |
|
3513 |
+
#: app/features/mec/meta_boxes/display_options.php:975
|
3514 |
+
#: app/features/mec/meta_boxes/display_options.php:1061
|
3515 |
msgid "Type 2"
|
3516 |
msgstr ""
|
3517 |
|
3518 |
+
#: app/features/mec/meta_boxes/display_options.php:976
|
3519 |
+
#: app/features/mec/meta_boxes/display_options.php:1062
|
3520 |
msgid "Type 3"
|
3521 |
msgstr ""
|
3522 |
|
3523 |
+
#: app/features/mec/meta_boxes/display_options.php:977
|
3524 |
+
#: app/features/mec/meta_boxes/display_options.php:1063
|
3525 |
msgid "Type 4"
|
3526 |
msgstr ""
|
3527 |
|
3528 |
+
#: app/features/mec/meta_boxes/display_options.php:1001
|
3529 |
msgid "Default values are d, F and Y"
|
3530 |
msgstr ""
|
3531 |
|
3532 |
+
#: app/features/mec/meta_boxes/display_options.php:1012
|
3533 |
+
#: app/features/mec/meta_boxes/display_options.php:1023
|
3534 |
msgid "Default value is \"M d, Y\""
|
3535 |
msgstr ""
|
3536 |
|
3537 |
+
#: app/features/mec/meta_boxes/display_options.php:1042
|
3538 |
+
#: app/features/mec/meta_boxes/display_options.php:1150
|
3539 |
msgid "Auto Play Time"
|
3540 |
msgstr ""
|
3541 |
|
3542 |
+
#: app/features/mec/meta_boxes/display_options.php:1043
|
3543 |
+
#: app/features/mec/meta_boxes/display_options.php:1151
|
3544 |
msgid "eg. 3000 default is 3 second"
|
3545 |
msgstr ""
|
3546 |
|
3547 |
+
#: app/features/mec/meta_boxes/display_options.php:1047
|
3548 |
msgid "Archive Link"
|
3549 |
msgstr ""
|
3550 |
|
3551 |
+
#: app/features/mec/meta_boxes/display_options.php:1051
|
3552 |
msgid "Head Text"
|
3553 |
msgstr ""
|
3554 |
|
3555 |
+
#: app/features/mec/meta_boxes/display_options.php:1064
|
3556 |
msgid "Type 5"
|
3557 |
msgstr ""
|
3558 |
|
3701 |
#: app/features/mec/meta_boxes/search_form.php:610
|
3702 |
#: app/features/mec/meta_boxes/search_form.php:617
|
3703 |
#: app/features/mec/meta_boxes/search_form.php:624
|
3704 |
+
#: app/features/mec/modules.php:322 app/features/mec/settings.php:297
|
3705 |
+
#: app/features/mec/settings.php:553
|
3706 |
msgid "Disabled"
|
3707 |
msgstr ""
|
3708 |
|
3716 |
#: app/features/mec/meta_boxes/search_form.php:472
|
3717 |
#: app/features/mec/meta_boxes/search_form.php:533
|
3718 |
#: app/features/mec/meta_boxes/search_form.php:594 app/features/speakers.php:56
|
3719 |
+
#: app/features/speakers.php:243 app/libraries/main.php:4487
|
3720 |
#: app/libraries/skins.php:859
|
3721 |
msgid "Speaker"
|
3722 |
msgstr ""
|
3800 |
msgstr ""
|
3801 |
|
3802 |
#: app/features/mec/modules.php:277 app/features/mec/modules.php:435
|
3803 |
+
#: app/features/mec/settings.php:888 app/features/mec/settings.php:893
|
3804 |
msgid "API Key"
|
3805 |
msgstr ""
|
3806 |
|
3807 |
+
#: app/features/mec/modules.php:283 app/features/mec/settings.php:894
|
3808 |
+
#: app/features/mec/settings.php:907
|
3809 |
msgid "Required!"
|
3810 |
msgstr ""
|
3811 |
|
3823 |
msgid "Google Maps Style"
|
3824 |
msgstr ""
|
3825 |
|
3826 |
+
#: app/features/mec/modules.php:311 app/features/mec/single.php:266
|
3827 |
msgid "Default"
|
3828 |
msgstr ""
|
3829 |
|
3905 |
msgid "Next Occurrence of Other Events"
|
3906 |
msgstr ""
|
3907 |
|
3908 |
+
#: app/features/mec/modules.php:497 app/features/mec/single.php:221
|
3909 |
msgid "Default is M d Y"
|
3910 |
msgstr ""
|
3911 |
|
3925 |
msgid "Add booking activity to user profile"
|
3926 |
msgstr ""
|
3927 |
|
3928 |
+
#: app/features/mec/notifications.php:229
|
3929 |
msgid "Enable booking notification"
|
3930 |
msgstr ""
|
3931 |
|
3932 |
+
#: app/features/mec/notifications.php:233
|
3933 |
msgid "It sends to attendee after booking for notifying him/her."
|
3934 |
msgstr ""
|
3935 |
|
3936 |
+
#: app/features/mec/notifications.php:235
|
3937 |
+
#: app/features/mec/notifications.php:292
|
3938 |
+
#: app/features/mec/notifications.php:344
|
3939 |
+
#: app/features/mec/notifications.php:403
|
3940 |
+
#: app/features/mec/notifications.php:471
|
3941 |
+
#: app/features/mec/notifications.php:534
|
3942 |
+
#: app/features/mec/notifications.php:607
|
3943 |
msgid "Email Subject"
|
3944 |
msgstr ""
|
3945 |
|
3946 |
+
#: app/features/mec/notifications.php:239
|
3947 |
+
#: app/features/mec/notifications.php:243
|
3948 |
+
#: app/features/mec/notifications.php:296
|
3949 |
+
#: app/features/mec/notifications.php:300
|
3950 |
+
#: app/features/mec/notifications.php:348
|
3951 |
+
#: app/features/mec/notifications.php:352
|
3952 |
+
#: app/features/mec/notifications.php:407
|
3953 |
+
#: app/features/mec/notifications.php:411
|
3954 |
+
#: app/features/mec/notifications.php:475
|
3955 |
+
#: app/features/mec/notifications.php:479
|
3956 |
+
#: app/features/mec/notifications.php:538
|
3957 |
+
#: app/features/mec/notifications.php:542
|
3958 |
+
#: app/features/mec/notifications.php:553
|
3959 |
+
#: app/features/mec/notifications.php:611
|
3960 |
+
#: app/features/mec/notifications.php:615
|
3961 |
msgid "Custom Recipients"
|
3962 |
msgstr ""
|
3963 |
|
3964 |
+
#: app/features/mec/notifications.php:244
|
3965 |
+
#: app/features/mec/notifications.php:301
|
3966 |
+
#: app/features/mec/notifications.php:353
|
3967 |
+
#: app/features/mec/notifications.php:412
|
3968 |
+
#: app/features/mec/notifications.php:480
|
3969 |
+
#: app/features/mec/notifications.php:543
|
3970 |
+
#: app/features/mec/notifications.php:554
|
3971 |
+
#: app/features/mec/notifications.php:616
|
3972 |
msgid "Insert comma separated emails for multiple recipients."
|
3973 |
msgstr ""
|
3974 |
|
3975 |
+
#: app/features/mec/notifications.php:251
|
3976 |
+
#: app/features/mec/notifications.php:423
|
3977 |
+
#: app/features/mec/notifications.php:487
|
3978 |
msgid "Send the email to event organizer"
|
3979 |
msgstr ""
|
3980 |
|
3981 |
+
#: app/features/mec/notifications.php:254
|
3982 |
+
#: app/features/mec/notifications.php:307
|
3983 |
+
#: app/features/mec/notifications.php:359
|
3984 |
+
#: app/features/mec/notifications.php:430
|
3985 |
+
#: app/features/mec/notifications.php:490
|
3986 |
+
#: app/features/mec/notifications.php:560
|
3987 |
+
#: app/features/mec/notifications.php:622
|
3988 |
msgid "Email Content"
|
3989 |
msgstr ""
|
3990 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3991 |
#: app/features/mec/notifications.php:257
|
3992 |
#: app/features/mec/notifications.php:310
|
3993 |
#: app/features/mec/notifications.php:362
|
3994 |
#: app/features/mec/notifications.php:433
|
3995 |
#: app/features/mec/notifications.php:493
|
3996 |
#: app/features/mec/notifications.php:563
|
3997 |
+
#: app/features/mec/notifications.php:625
|
3998 |
+
msgid "You can use following placeholders"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3999 |
msgstr ""
|
4000 |
|
4001 |
#: app/features/mec/notifications.php:259
|
4004 |
#: app/features/mec/notifications.php:435
|
4005 |
#: app/features/mec/notifications.php:495
|
4006 |
#: app/features/mec/notifications.php:565
|
4007 |
+
msgid "First name of attendee"
|
4008 |
msgstr ""
|
4009 |
|
4010 |
#: app/features/mec/notifications.php:260
|
4013 |
#: app/features/mec/notifications.php:436
|
4014 |
#: app/features/mec/notifications.php:496
|
4015 |
#: app/features/mec/notifications.php:566
|
4016 |
+
msgid "Last name of attendee"
|
4017 |
msgstr ""
|
4018 |
|
4019 |
#: app/features/mec/notifications.php:261
|
4022 |
#: app/features/mec/notifications.php:437
|
4023 |
#: app/features/mec/notifications.php:497
|
4024 |
#: app/features/mec/notifications.php:567
|
4025 |
+
msgid "Email of attendee"
|
4026 |
msgstr ""
|
4027 |
|
4028 |
#: app/features/mec/notifications.php:262
|
4031 |
#: app/features/mec/notifications.php:438
|
4032 |
#: app/features/mec/notifications.php:498
|
4033 |
#: app/features/mec/notifications.php:568
|
4034 |
+
msgid "Booked date of event"
|
4035 |
msgstr ""
|
4036 |
|
4037 |
#: app/features/mec/notifications.php:263
|
4040 |
#: app/features/mec/notifications.php:439
|
4041 |
#: app/features/mec/notifications.php:499
|
4042 |
#: app/features/mec/notifications.php:569
|
4043 |
+
msgid "Booked time of event"
|
|
|
4044 |
msgstr ""
|
4045 |
|
4046 |
#: app/features/mec/notifications.php:264
|
4049 |
#: app/features/mec/notifications.php:440
|
4050 |
#: app/features/mec/notifications.php:500
|
4051 |
#: app/features/mec/notifications.php:570
|
4052 |
+
msgid "Booking Price"
|
|
|
4053 |
msgstr ""
|
4054 |
|
4055 |
#: app/features/mec/notifications.php:265
|
4059 |
#: app/features/mec/notifications.php:501
|
4060 |
#: app/features/mec/notifications.php:571
|
4061 |
#: app/features/mec/notifications.php:631
|
4062 |
+
msgid "Your website title"
|
4063 |
msgstr ""
|
4064 |
|
4065 |
#: app/features/mec/notifications.php:266
|
4068 |
#: app/features/mec/notifications.php:442
|
4069 |
#: app/features/mec/notifications.php:502
|
4070 |
#: app/features/mec/notifications.php:572
|
4071 |
+
#: app/features/mec/notifications.php:632
|
4072 |
+
msgid "Your website URL"
|
4073 |
msgstr ""
|
4074 |
|
4075 |
#: app/features/mec/notifications.php:267
|
4078 |
#: app/features/mec/notifications.php:443
|
4079 |
#: app/features/mec/notifications.php:503
|
4080 |
#: app/features/mec/notifications.php:573
|
4081 |
+
#: app/features/mec/notifications.php:633
|
4082 |
+
msgid "Your website description"
|
4083 |
msgstr ""
|
4084 |
|
4085 |
#: app/features/mec/notifications.php:268
|
4088 |
#: app/features/mec/notifications.php:444
|
4089 |
#: app/features/mec/notifications.php:504
|
4090 |
#: app/features/mec/notifications.php:574
|
4091 |
+
msgid "Event title"
|
4092 |
msgstr ""
|
4093 |
|
4094 |
#: app/features/mec/notifications.php:269
|
4097 |
#: app/features/mec/notifications.php:445
|
4098 |
#: app/features/mec/notifications.php:505
|
4099 |
#: app/features/mec/notifications.php:575
|
4100 |
+
msgid "Event link"
|
4101 |
msgstr ""
|
4102 |
|
4103 |
#: app/features/mec/notifications.php:270
|
4106 |
#: app/features/mec/notifications.php:446
|
4107 |
#: app/features/mec/notifications.php:506
|
4108 |
#: app/features/mec/notifications.php:576
|
4109 |
+
msgid "Speaker name of booked event"
|
4110 |
msgstr ""
|
4111 |
|
4112 |
#: app/features/mec/notifications.php:271
|
4115 |
#: app/features/mec/notifications.php:447
|
4116 |
#: app/features/mec/notifications.php:507
|
4117 |
#: app/features/mec/notifications.php:577
|
4118 |
+
msgid "Organizer name of booked event"
|
4119 |
msgstr ""
|
4120 |
|
4121 |
#: app/features/mec/notifications.php:272
|
4124 |
#: app/features/mec/notifications.php:448
|
4125 |
#: app/features/mec/notifications.php:508
|
4126 |
#: app/features/mec/notifications.php:578
|
4127 |
+
msgid "Organizer tel of booked event"
|
4128 |
msgstr ""
|
4129 |
|
4130 |
#: app/features/mec/notifications.php:273
|
4133 |
#: app/features/mec/notifications.php:449
|
4134 |
#: app/features/mec/notifications.php:509
|
4135 |
#: app/features/mec/notifications.php:579
|
4136 |
+
msgid "Organizer email of booked event"
|
4137 |
msgstr ""
|
4138 |
|
4139 |
#: app/features/mec/notifications.php:274
|
4140 |
+
#: app/features/mec/notifications.php:327
|
4141 |
+
#: app/features/mec/notifications.php:379
|
4142 |
+
#: app/features/mec/notifications.php:450
|
4143 |
+
#: app/features/mec/notifications.php:510
|
4144 |
+
#: app/features/mec/notifications.php:580
|
4145 |
+
msgid "Location name of booked event"
|
4146 |
msgstr ""
|
4147 |
|
4148 |
#: app/features/mec/notifications.php:275
|
4149 |
+
#: app/features/mec/notifications.php:328
|
4150 |
#: app/features/mec/notifications.php:380
|
4151 |
+
#: app/features/mec/notifications.php:451
|
4152 |
+
#: app/features/mec/notifications.php:511
|
4153 |
#: app/features/mec/notifications.php:581
|
4154 |
+
msgid "Location address of booked event"
|
4155 |
msgstr ""
|
4156 |
|
4157 |
#: app/features/mec/notifications.php:276
|
4158 |
+
#: app/features/mec/notifications.php:453
|
4159 |
+
#: app/features/mec/notifications.php:513
|
4160 |
+
msgid "Full Attendee info such as booking form data, name, email etc."
|
|
|
|
|
|
|
4161 |
msgstr ""
|
4162 |
|
4163 |
#: app/features/mec/notifications.php:277
|
|
|
4164 |
#: app/features/mec/notifications.php:382
|
4165 |
#: app/features/mec/notifications.php:583
|
4166 |
+
msgid "Invoice Link"
|
4167 |
msgstr ""
|
4168 |
|
4169 |
#: app/features/mec/notifications.php:278
|
4170 |
#: app/features/mec/notifications.php:330
|
4171 |
#: app/features/mec/notifications.php:383
|
4172 |
+
#: app/features/mec/notifications.php:454
|
4173 |
+
#: app/features/mec/notifications.php:514
|
4174 |
#: app/features/mec/notifications.php:584
|
4175 |
+
msgid "Total Attendees"
|
4176 |
msgstr ""
|
4177 |
|
4178 |
#: app/features/mec/notifications.php:279
|
4179 |
#: app/features/mec/notifications.php:331
|
4180 |
#: app/features/mec/notifications.php:384
|
4181 |
#: app/features/mec/notifications.php:585
|
4182 |
+
msgid "Ticket name"
|
4183 |
+
msgstr ""
|
4184 |
+
|
4185 |
+
#: app/features/mec/notifications.php:280
|
4186 |
+
#: app/features/mec/notifications.php:332
|
4187 |
+
#: app/features/mec/notifications.php:385
|
4188 |
+
#: app/features/mec/notifications.php:586
|
4189 |
+
msgid "Ticket time"
|
4190 |
+
msgstr ""
|
4191 |
+
|
4192 |
+
#: app/features/mec/notifications.php:281
|
4193 |
+
#: app/features/mec/notifications.php:333
|
4194 |
+
#: app/features/mec/notifications.php:386
|
4195 |
+
#: app/features/mec/notifications.php:587
|
4196 |
msgid "Download ICS file"
|
4197 |
msgstr ""
|
4198 |
|
4199 |
+
#: app/features/mec/notifications.php:290
|
4200 |
msgid "It sends to attendee email for verifying their booking/email."
|
4201 |
msgstr ""
|
4202 |
|
4203 |
+
#: app/features/mec/notifications.php:329
|
4204 |
msgid "Email/Booking verification link."
|
4205 |
msgstr ""
|
4206 |
|
4207 |
+
#: app/features/mec/notifications.php:342
|
4208 |
msgid "It sends to attendee after confirming the booking by admin."
|
4209 |
msgstr ""
|
4210 |
|
4211 |
+
#: app/features/mec/notifications.php:381
|
4212 |
+
#: app/features/mec/notifications.php:582
|
4213 |
msgid "Booking cancellation link."
|
4214 |
msgstr ""
|
4215 |
|
4216 |
+
#: app/features/mec/notifications.php:397
|
4217 |
msgid "Enable cancellation notification"
|
4218 |
msgstr ""
|
4219 |
|
4220 |
+
#: app/features/mec/notifications.php:401
|
4221 |
msgid ""
|
4222 |
"It sends to selected recipients after booking cancellation for notifying "
|
4223 |
"them."
|
4224 |
msgstr ""
|
4225 |
|
4226 |
+
#: app/features/mec/notifications.php:419
|
4227 |
msgid "Send the email to admin"
|
4228 |
msgstr ""
|
4229 |
|
4230 |
+
#: app/features/mec/notifications.php:427
|
4231 |
msgid "Send the email to booking user"
|
4232 |
msgstr ""
|
4233 |
|
4234 |
+
#: app/features/mec/notifications.php:452
|
4235 |
+
#: app/features/mec/notifications.php:512
|
4236 |
msgid "Admin booking management link."
|
4237 |
msgstr ""
|
4238 |
|
4239 |
+
#: app/features/mec/notifications.php:465
|
4240 |
msgid "Enable admin notification"
|
4241 |
msgstr ""
|
4242 |
|
4243 |
+
#: app/features/mec/notifications.php:469
|
4244 |
msgid "It sends to admin to notify him/her that a new booking received."
|
4245 |
msgstr ""
|
4246 |
|
4247 |
+
#: app/features/mec/notifications.php:525
|
4248 |
msgid "Enable booking reminder notification"
|
4249 |
msgstr ""
|
4250 |
|
4251 |
+
#: app/features/mec/notifications.php:531
|
4252 |
#, php-format
|
4253 |
msgid ""
|
4254 |
"Set a cronjob to call %s file once per day otherwise it won't send the "
|
4256 |
"send the reminders multiple times."
|
4257 |
msgstr ""
|
4258 |
|
4259 |
+
#: app/features/mec/notifications.php:531
|
4260 |
msgid "only once per day"
|
4261 |
msgstr ""
|
4262 |
|
4263 |
+
#: app/features/mec/notifications.php:549
|
4264 |
msgid "Days"
|
4265 |
msgstr ""
|
4266 |
|
4267 |
+
#: app/features/mec/notifications.php:601
|
4268 |
msgid "Enable new event notification"
|
4269 |
msgstr ""
|
4270 |
|
4271 |
+
#: app/features/mec/notifications.php:605
|
4272 |
msgid ""
|
4273 |
"It sends after adding a new event from frontend event submission or from "
|
4274 |
"website backend."
|
4275 |
msgstr ""
|
4276 |
|
4277 |
+
#: app/features/mec/notifications.php:627
|
4278 |
msgid "Title of event"
|
4279 |
msgstr ""
|
4280 |
|
4281 |
+
#: app/features/mec/notifications.php:628
|
4282 |
msgid "Link of event"
|
4283 |
msgstr ""
|
4284 |
|
4285 |
+
#: app/features/mec/notifications.php:629
|
4286 |
msgid "Status of event"
|
4287 |
msgstr ""
|
4288 |
|
4289 |
+
#: app/features/mec/notifications.php:630 app/features/mec/settings.php:839
|
4290 |
+
#: app/features/mec/settings.php:843
|
4291 |
msgid "Event Note"
|
4292 |
msgstr ""
|
4293 |
|
4294 |
+
#: app/features/mec/notifications.php:634
|
4295 |
msgid "Admin events management link."
|
4296 |
msgstr ""
|
4297 |
|
4298 |
+
#: app/features/mec/settings.php:255 app/features/mec/settings.php:265
|
4299 |
msgid "Hide Events"
|
4300 |
msgstr ""
|
4301 |
|
4302 |
+
#: app/features/mec/settings.php:258
|
4303 |
msgid "On Event Start"
|
4304 |
msgstr ""
|
4305 |
|
4306 |
+
#: app/features/mec/settings.php:259
|
4307 |
msgid "+1 Hour after start"
|
4308 |
msgstr ""
|
4309 |
|
4310 |
+
#: app/features/mec/settings.php:260
|
4311 |
msgid "+2 Hours after start"
|
4312 |
msgstr ""
|
4313 |
|
4314 |
+
#: app/features/mec/settings.php:261
|
4315 |
msgid "On Event End"
|
4316 |
msgstr ""
|
4317 |
|
4318 |
+
#: app/features/mec/settings.php:266
|
4319 |
msgid ""
|
4320 |
"This option is for showing start/end time of events on frontend of website."
|
4321 |
msgstr ""
|
4322 |
|
4323 |
+
#: app/features/mec/settings.php:275 app/features/mec/settings.php:284
|
4324 |
msgid "Multiple Day Events"
|
4325 |
msgstr ""
|
4326 |
|
4327 |
+
#: app/features/mec/settings.php:278
|
4328 |
msgid "Show only first day on List/Grid/Slider skins"
|
4329 |
msgstr ""
|
4330 |
|
4331 |
+
#: app/features/mec/settings.php:279
|
4332 |
msgid "Show only first day on all skins"
|
4333 |
msgstr ""
|
4334 |
|
4335 |
+
#: app/features/mec/settings.php:280
|
4336 |
msgid "Show all days"
|
4337 |
msgstr ""
|
4338 |
|
4339 |
+
#: app/features/mec/settings.php:285
|
4340 |
msgid ""
|
4341 |
"For showing all days of multiple day events on frontend or only show the "
|
4342 |
"first day."
|
4343 |
msgstr ""
|
4344 |
|
4345 |
+
#: app/features/mec/settings.php:294
|
4346 |
msgid "Remove MEC Data on Plugin Uninstall"
|
4347 |
msgstr ""
|
4348 |
|
4349 |
+
#: app/features/mec/settings.php:298
|
4350 |
msgid "Enabled"
|
4351 |
msgstr ""
|
4352 |
|
4353 |
+
#: app/features/mec/settings.php:304
|
4354 |
msgid "Exclude Date Suffix"
|
4355 |
msgstr ""
|
4356 |
|
4357 |
+
#: app/features/mec/settings.php:307
|
4358 |
msgid "Remove suffix from calendars"
|
4359 |
msgstr ""
|
4360 |
|
4361 |
+
#: app/features/mec/settings.php:311
|
4362 |
msgid "Remove \"Th\" on calendar"
|
4363 |
msgstr ""
|
4364 |
|
4365 |
+
#: app/features/mec/settings.php:312
|
4366 |
msgid ""
|
4367 |
"Checked this checkbox to remove 'Th' on calendar ( ex: '12Th' remove Th, "
|
4368 |
"showing just '12' )"
|
4369 |
msgstr ""
|
4370 |
|
4371 |
+
#: app/features/mec/settings.php:321 app/features/mec/settings.php:331
|
4372 |
+
#: app/libraries/main.php:4491
|
4373 |
msgid "Weekdays"
|
4374 |
msgstr ""
|
4375 |
|
4376 |
+
#: app/features/mec/settings.php:332
|
4377 |
msgid ""
|
4378 |
"Proceed with caution. Default is set to Monday, Tuesday, Wednesday, Thursday "
|
4379 |
"and Friday ( you can change 'Week Starts' on WordPress Dashboard > Settings "
|
4380 |
"> General - bottom of the page )."
|
4381 |
msgstr ""
|
4382 |
|
4383 |
+
#: app/features/mec/settings.php:342 app/features/mec/settings.php:352
|
4384 |
msgid "Weekends"
|
4385 |
msgstr ""
|
4386 |
|
4387 |
+
#: app/features/mec/settings.php:353
|
4388 |
msgid ""
|
4389 |
"Proceed with caution. Default is set to Saturday and Sunday ( you can change "
|
4390 |
"'Week Starts' on WordPress Dashboard > Settings > General - bottom of the "
|
4391 |
"page )."
|
4392 |
msgstr ""
|
4393 |
|
4394 |
+
#: app/features/mec/settings.php:367 app/features/mec/settings.php:372
|
4395 |
msgid "Archive Page Title"
|
4396 |
msgstr ""
|
4397 |
|
4398 |
+
#: app/features/mec/settings.php:373
|
4399 |
msgid "Default value is Events - It's title of the page"
|
4400 |
msgstr ""
|
4401 |
|
4402 |
+
#: app/features/mec/settings.php:381 app/features/mec/settings.php:449
|
4403 |
msgid "Archive Page Skin"
|
4404 |
msgstr ""
|
4405 |
|
4406 |
+
#: app/features/mec/settings.php:389
|
4407 |
msgid "Put shortcode..."
|
4408 |
msgstr ""
|
4409 |
|
4410 |
+
#: app/features/mec/settings.php:392 app/features/mec/settings.php:407
|
4411 |
+
#: app/features/mec/settings.php:410 app/features/mec/settings.php:419
|
4412 |
+
#: app/features/mec/settings.php:445 app/features/mec/settings.php:466
|
4413 |
+
#: app/features/mec/settings.php:481 app/features/mec/settings.php:484
|
4414 |
+
#: app/features/mec/settings.php:493 app/features/mec/settings.php:519
|
4415 |
msgid "There is no skins"
|
4416 |
msgstr ""
|
4417 |
|
4418 |
+
#: app/features/mec/settings.php:395 app/features/mec/settings.php:469
|
4419 |
+
#: app/features/mec/single.php:248
|
4420 |
msgid "Modern Style"
|
4421 |
msgstr ""
|
4422 |
|
4423 |
+
#: app/features/mec/settings.php:437 app/features/mec/settings.php:511
|
4424 |
msgid "colorful"
|
4425 |
msgstr ""
|
4426 |
|
4427 |
+
#: app/features/mec/settings.php:442 app/features/mec/settings.php:516
|
4428 |
msgid "Clean Style"
|
4429 |
msgstr ""
|
4430 |
|
4431 |
+
#: app/features/mec/settings.php:450
|
4432 |
msgid "Default value is Calendar/Monthly View, But you can change it "
|
4433 |
msgstr ""
|
4434 |
|
4435 |
+
#: app/features/mec/settings.php:450 app/features/mec/settings.php:524
|
4436 |
msgid "See Demo"
|
4437 |
msgstr ""
|
4438 |
|
4439 |
+
#: app/features/mec/settings.php:458 app/features/mec/settings.php:523
|
4440 |
msgid "Category Page Skin"
|
4441 |
msgstr ""
|
4442 |
|
4443 |
+
#: app/features/mec/settings.php:524
|
4444 |
msgid ""
|
4445 |
"Default value is List View - But you can change it Set a skin for all "
|
4446 |
"categories."
|
4447 |
msgstr ""
|
4448 |
|
4449 |
+
#: app/features/mec/settings.php:532 app/features/mec/settings.php:540
|
4450 |
msgid "Category Events Method"
|
4451 |
msgstr ""
|
4452 |
|
4453 |
+
#: app/features/mec/settings.php:536
|
4454 |
msgid "Expired Events"
|
4455 |
msgstr ""
|
4456 |
|
4457 |
+
#: app/features/mec/settings.php:541
|
4458 |
msgid "Default value is Upcoming Events"
|
4459 |
msgstr ""
|
4460 |
|
4461 |
+
#: app/features/mec/settings.php:549 app/features/mec/settings.php:557
|
4462 |
msgid "Events Archive Status"
|
4463 |
msgstr ""
|
4464 |
|
4465 |
+
#: app/features/mec/settings.php:552
|
4466 |
msgid "Enabled (Recommended)"
|
4467 |
msgstr ""
|
4468 |
|
4469 |
+
#: app/features/mec/settings.php:558
|
4470 |
msgid ""
|
4471 |
"If you disable it, then you should create a page as archive page of MEC. "
|
4472 |
"Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
|
4473 |
"MEC rewrite rules."
|
4474 |
msgstr ""
|
4475 |
|
4476 |
+
#: app/features/mec/settings.php:571 app/features/mec/settings.php:576
|
4477 |
msgid "Main Slug"
|
4478 |
msgstr ""
|
4479 |
|
4480 |
+
#: app/features/mec/settings.php:577
|
4481 |
msgid ""
|
4482 |
"Default value is events. You can not have a page with this name. MEC allows "
|
4483 |
"you to create custom URLs for the permalinks and archives to enhance the "
|
4484 |
"applicability and forward-compatibility of the links."
|
4485 |
msgstr ""
|
4486 |
|
4487 |
+
#: app/features/mec/settings.php:581 app/features/mec/settings.php:595
|
4488 |
msgid "Valid characters are lowercase a-z, - character and numbers."
|
4489 |
msgstr ""
|
4490 |
|
4491 |
+
#: app/features/mec/settings.php:585 app/features/mec/settings.php:590
|
4492 |
msgid "Category Slug"
|
4493 |
msgstr ""
|
4494 |
|
4495 |
+
#: app/features/mec/settings.php:591
|
4496 |
msgid ""
|
4497 |
"It's slug of MEC categories, you can change it to events-cat or something "
|
4498 |
"else. Default value is mec-category. You can not have a page with this name."
|
4499 |
msgstr ""
|
4500 |
|
4501 |
+
#: app/features/mec/settings.php:603
|
4502 |
msgid "Currency"
|
4503 |
msgstr ""
|
4504 |
|
4505 |
+
#: app/features/mec/settings.php:613 app/features/mec/settings.php:618
|
4506 |
msgid "Currency Sign"
|
4507 |
msgstr ""
|
4508 |
|
4509 |
+
#: app/features/mec/settings.php:619
|
4510 |
msgid "Default value will be \"currency\" if you leave it empty."
|
4511 |
msgstr ""
|
4512 |
|
4513 |
+
#: app/features/mec/settings.php:626
|
4514 |
msgid "Currency Position"
|
4515 |
msgstr ""
|
4516 |
|
4517 |
+
#: app/features/mec/settings.php:629
|
4518 |
msgid "Before $10"
|
4519 |
msgstr ""
|
4520 |
|
4521 |
+
#: app/features/mec/settings.php:630
|
4522 |
msgid "After 10$"
|
4523 |
msgstr ""
|
4524 |
|
4525 |
+
#: app/features/mec/settings.php:635
|
4526 |
msgid "Thousand Separator"
|
4527 |
msgstr ""
|
4528 |
|
4529 |
+
#: app/features/mec/settings.php:641
|
4530 |
msgid "Decimal Separator"
|
4531 |
msgstr ""
|
4532 |
|
4533 |
+
#: app/features/mec/settings.php:651
|
4534 |
msgid "No decimal"
|
4535 |
msgstr ""
|
4536 |
|
4537 |
+
#: app/features/mec/settings.php:662
|
4538 |
msgid "Enable Google Recaptcha"
|
4539 |
msgstr ""
|
4540 |
|
4541 |
+
#: app/features/mec/settings.php:669
|
4542 |
msgid "Enable on booking form"
|
4543 |
msgstr ""
|
4544 |
|
4545 |
+
#: app/features/mec/settings.php:675
|
4546 |
msgid "Enable on \"Frontend Event Submission\" form"
|
4547 |
msgstr ""
|
4548 |
|
4549 |
+
#: app/features/mec/settings.php:679
|
4550 |
msgid "Site Key"
|
4551 |
msgstr ""
|
4552 |
|
4553 |
+
#: app/features/mec/settings.php:685
|
4554 |
msgid "Secret Key"
|
4555 |
msgstr ""
|
4556 |
|
4557 |
+
#: app/features/mec/settings.php:697 app/features/mec/settings.php:705
|
4558 |
msgid "Time Format"
|
4559 |
msgstr ""
|
4560 |
|
4561 |
+
#: app/features/mec/settings.php:700
|
4562 |
msgid "12 hours format with AM/PM"
|
4563 |
msgstr ""
|
4564 |
|
4565 |
+
#: app/features/mec/settings.php:701
|
4566 |
msgid "24 hours format"
|
4567 |
msgstr ""
|
4568 |
|
4569 |
+
#: app/features/mec/settings.php:706
|
4570 |
msgid "This option, affects the selection of Start/End time."
|
4571 |
msgstr ""
|
4572 |
|
4573 |
+
#: app/features/mec/settings.php:714
|
4574 |
msgid "Events List Page"
|
4575 |
msgstr ""
|
4576 |
|
4577 |
+
#: app/features/mec/settings.php:723 app/features/mec/settings.php:735
|
4578 |
#, php-format
|
4579 |
msgid "Put %s shortcode into the page."
|
4580 |
msgstr ""
|
4581 |
|
4582 |
+
#: app/features/mec/settings.php:726
|
4583 |
msgid "Add/Edit Events Page"
|
4584 |
msgstr ""
|
4585 |
|
4586 |
+
#: app/features/mec/settings.php:740
|
4587 |
msgid "Enable event submission by guest (Not logged-in) users"
|
4588 |
msgstr ""
|
4589 |
|
4590 |
+
#: app/features/mec/settings.php:747
|
4591 |
msgid "Enable mandatory email and name for guest user"
|
4592 |
msgstr ""
|
4593 |
|
4594 |
+
#: app/features/mec/settings.php:751
|
4595 |
msgid "Frontend Event Submission Sections"
|
4596 |
msgstr ""
|
4597 |
|
4598 |
+
#: app/features/mec/settings.php:773 app/widgets/single.php:119
|
4599 |
msgid "Event Categories"
|
4600 |
msgstr ""
|
4601 |
|
4602 |
+
#: app/features/mec/settings.php:779
|
4603 |
msgid "Event Labels"
|
4604 |
msgstr ""
|
4605 |
|
4606 |
+
#: app/features/mec/settings.php:791
|
4607 |
msgid "Event Tags"
|
4608 |
msgstr ""
|
4609 |
|
4610 |
+
#: app/features/mec/settings.php:803 app/widgets/single.php:123
|
4611 |
msgid "Event Organizer"
|
4612 |
msgstr ""
|
4613 |
|
4614 |
+
#: app/features/mec/settings.php:821
|
4615 |
msgid "Booking Options"
|
4616 |
msgstr ""
|
4617 |
|
4618 |
+
#: app/features/mec/settings.php:827
|
4619 |
msgid "Fees / Taxes Options"
|
4620 |
msgstr ""
|
4621 |
|
4622 |
+
#: app/features/mec/settings.php:844
|
4623 |
#, php-format
|
4624 |
msgid ""
|
4625 |
"Users can put a note for editors while they're submitting the event. Also "
|
4627 |
"users' note in email."
|
4628 |
msgstr ""
|
4629 |
|
4630 |
+
#: app/features/mec/settings.php:851 app/features/mec/settings.php:860
|
4631 |
msgid "Visibility of Note"
|
4632 |
msgstr ""
|
4633 |
|
4634 |
+
#: app/features/mec/settings.php:854
|
4635 |
msgid "Always"
|
4636 |
msgstr ""
|
4637 |
|
4638 |
+
#: app/features/mec/settings.php:855
|
4639 |
msgid "While event is not published"
|
4640 |
msgstr ""
|
4641 |
|
4642 |
+
#: app/features/mec/settings.php:861
|
4643 |
msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
|
4644 |
msgstr ""
|
4645 |
|
4646 |
+
#: app/features/mec/settings.php:872
|
4647 |
#, php-format
|
4648 |
msgid ""
|
4649 |
"Put %s shortcode into your desired page. Then users are able to see history "
|
4650 |
"of their bookings."
|
4651 |
msgstr ""
|
4652 |
|
4653 |
+
#: app/features/mec/settings.php:883
|
4654 |
msgid "Enable Mailchimp Integration"
|
4655 |
msgstr ""
|
4656 |
|
4657 |
+
#: app/features/mec/settings.php:901 app/features/mec/settings.php:906
|
4658 |
msgid "List ID"
|
4659 |
msgstr ""
|
4660 |
|
4661 |
+
#: app/features/mec/settings.php:914 app/features/mec/settings.php:922
|
4662 |
msgid "Subscription Status"
|
4663 |
msgstr ""
|
4664 |
|
4665 |
+
#: app/features/mec/settings.php:917
|
4666 |
msgid "Subscribe automatically"
|
4667 |
msgstr ""
|
4668 |
|
4669 |
+
#: app/features/mec/settings.php:918
|
4670 |
msgid "Subscribe by verification"
|
4671 |
msgstr ""
|
4672 |
|
4673 |
+
#: app/features/mec/settings.php:923
|
4674 |
msgid ""
|
4675 |
"If you choose \"Subscribe by verification\" then an email will send to user "
|
4676 |
"by mailchimp for subscription verification."
|
4677 |
msgstr ""
|
4678 |
|
4679 |
+
#: app/features/mec/settings.php:935
|
4680 |
msgid "Upload Field Options"
|
4681 |
msgstr ""
|
4682 |
|
4683 |
+
#: app/features/mec/settings.php:937
|
4684 |
msgid "Mime types"
|
4685 |
msgstr ""
|
4686 |
|
4687 |
+
#: app/features/mec/settings.php:941
|
4688 |
msgid "Split mime types with \",\"."
|
4689 |
msgstr ""
|
4690 |
|
4691 |
+
#: app/features/mec/settings.php:941
|
4692 |
msgid "Default: jpeg,jpg,png,pdf"
|
4693 |
msgstr ""
|
4694 |
|
4695 |
+
#: app/features/mec/settings.php:944
|
4696 |
msgid "Maximum file size"
|
4697 |
msgstr ""
|
4698 |
|
4699 |
+
#: app/features/mec/settings.php:948
|
4700 |
msgid "The unit is Megabyte \"MB\""
|
4701 |
msgstr ""
|
4702 |
|
4703 |
+
#: app/features/mec/single.php:215 app/features/mec/single.php:220
|
4704 |
msgid "Single Event Date Format"
|
4705 |
msgstr ""
|
4706 |
|
4707 |
+
#: app/features/mec/single.php:228 app/features/mec/single.php:236
|
4708 |
msgid "Date Method"
|
4709 |
msgstr ""
|
4710 |
|
4711 |
+
#: app/features/mec/single.php:231
|
4712 |
msgid "Next occurrence date"
|
4713 |
msgstr ""
|
4714 |
|
4715 |
+
#: app/features/mec/single.php:232
|
4716 |
msgid "Referred date"
|
4717 |
msgstr ""
|
4718 |
|
4719 |
+
#: app/features/mec/single.php:237
|
4720 |
msgid ""
|
4721 |
"Referred date\" shows the event date based on referred date in event list."
|
4722 |
msgstr ""
|
4723 |
|
4724 |
+
#: app/features/mec/single.php:244 app/features/mec/single.php:255
|
4725 |
msgid "Single Event Style"
|
4726 |
msgstr ""
|
4727 |
|
4728 |
+
#: app/features/mec/single.php:247
|
4729 |
msgid "Default Style"
|
4730 |
msgstr ""
|
4731 |
|
4732 |
+
#: app/features/mec/single.php:250
|
4733 |
msgid "Elementor Single Builder"
|
4734 |
msgstr ""
|
4735 |
|
4736 |
+
#: app/features/mec/single.php:256
|
4737 |
msgid "Choose your single event style."
|
4738 |
msgstr ""
|
4739 |
|
4740 |
+
#: app/features/mec/single.php:263 app/features/mec/single.php:271
|
4741 |
msgid "Booking Style"
|
4742 |
msgstr ""
|
4743 |
|
4744 |
+
#: app/features/mec/single.php:267
|
4745 |
msgid "Modal"
|
4746 |
msgstr ""
|
4747 |
|
4748 |
+
#: app/features/mec/single.php:272
|
4749 |
msgid ""
|
4750 |
"Choose your Booking style, Please Note: When you set this feature to modal "
|
4751 |
"you can not see booking box if you set popoup module view on shortcodes"
|
4752 |
msgstr ""
|
4753 |
|
4754 |
+
#: app/features/mec/single.php:279
|
4755 |
msgid "Disable Block Editor (Gutenberg)"
|
4756 |
msgstr ""
|
4757 |
|
4758 |
+
#: app/features/mec/single.php:282
|
4759 |
msgid "Disable Block Editor"
|
4760 |
msgstr ""
|
4761 |
|
4762 |
+
#: app/features/mec/single.php:286
|
4763 |
msgid "Block Editor"
|
4764 |
msgstr ""
|
4765 |
|
4766 |
+
#: app/features/mec/single.php:287
|
4767 |
msgid ""
|
4768 |
"If you want to use the new WordPress block editor you should keep this "
|
4769 |
"checkbox unchecked."
|
4770 |
msgstr ""
|
4771 |
|
4772 |
+
#: app/features/mec/single.php:293 app/features/mec/single.php:300
|
4773 |
msgid "Breadcrumbs"
|
4774 |
msgstr ""
|
4775 |
|
4776 |
+
#: app/features/mec/single.php:296
|
4777 |
msgid "Enable Breadcrumbs."
|
4778 |
msgstr ""
|
4779 |
|
4780 |
+
#: app/features/mec/single.php:301
|
4781 |
msgid "Check this option, for showing the breadcrumbs on single event page"
|
4782 |
msgstr ""
|
4783 |
|
4784 |
+
#: app/features/mec/single.php:314
|
4785 |
msgid "Show countdown module on event page"
|
4786 |
msgstr ""
|
4787 |
|
4788 |
+
#: app/features/mec/single.php:319
|
4789 |
msgid "Countdown Style"
|
4790 |
msgstr ""
|
4791 |
|
4792 |
+
#: app/features/mec/single.php:322
|
4793 |
msgid "Plain Style"
|
4794 |
msgstr ""
|
4795 |
|
4796 |
+
#: app/features/mec/single.php:323
|
4797 |
msgid "Flip Style"
|
4798 |
msgstr ""
|
4799 |
|
4800 |
+
#: app/features/mec/single.php:331 app/features/mec/single.php:338
|
4801 |
msgid "Exceptional days"
|
4802 |
msgstr ""
|
4803 |
|
4804 |
+
#: app/features/mec/single.php:335
|
4805 |
msgid "Show exceptional days option on Add/Edit events page"
|
4806 |
msgstr ""
|
4807 |
|
4808 |
+
#: app/features/mec/single.php:339
|
4809 |
msgid ""
|
4810 |
"Using this option you can include/exclude certain days to/from event "
|
4811 |
"occurrence dates."
|
4812 |
msgstr ""
|
4813 |
|
4814 |
+
#: app/features/mec/single.php:352
|
4815 |
msgid ""
|
4816 |
"Show additional organizers option on Add/Edit events page and single event "
|
4817 |
"page."
|
4818 |
msgstr ""
|
4819 |
|
4820 |
+
#: app/features/mec/single.php:358
|
4821 |
msgid "Additional locations"
|
4822 |
msgstr ""
|
4823 |
|
4824 |
+
#: app/features/mec/single.php:362
|
4825 |
msgid ""
|
4826 |
"Show additional locations option on Add/Edit events page and single event "
|
4827 |
"page."
|
4828 |
msgstr ""
|
4829 |
|
4830 |
+
#: app/features/mec/styles.php:181
|
4831 |
msgid "Custom Styles"
|
4832 |
msgstr ""
|
4833 |
|
4834 |
+
#: app/features/mec/styles.php:186
|
4835 |
msgid ""
|
4836 |
"If you're a developer or you have some knowledge about CSS codes, you can "
|
4837 |
"place your desired styles codes here. These codes will be included in your "
|
4839 |
"styles."
|
4840 |
msgstr ""
|
4841 |
|
4842 |
+
#: app/features/mec/styling.php:10 app/features/mec/styling.php:311
|
4843 |
+
#: app/features/mec/styling.php:337
|
4844 |
msgid "Default Font"
|
4845 |
msgstr ""
|
4846 |
|
4847 |
+
#: app/features/mec/styling.php:203
|
4848 |
msgid "Styling Option"
|
4849 |
msgstr ""
|
4850 |
|
4851 |
+
#: app/features/mec/styling.php:208
|
4852 |
msgid "Color Skin"
|
4853 |
msgstr ""
|
4854 |
|
4855 |
+
#: app/features/mec/styling.php:211
|
4856 |
msgid "Predefined Color Skin"
|
4857 |
msgstr ""
|
4858 |
|
4859 |
+
#: app/features/mec/styling.php:254
|
4860 |
msgid "Custom Color Skin"
|
4861 |
msgstr ""
|
4862 |
|
4863 |
+
#: app/features/mec/styling.php:260
|
4864 |
msgid ""
|
4865 |
"If you want to select a predefined color skin, you must clear the color of "
|
4866 |
"this item"
|
4867 |
msgstr ""
|
4868 |
|
4869 |
+
#: app/features/mec/styling.php:265
|
4870 |
msgid "Advanced Color Options (shortcodes)"
|
4871 |
msgstr ""
|
4872 |
|
4873 |
+
#: app/features/mec/styling.php:277
|
4874 |
msgid "Title Hover"
|
4875 |
msgstr ""
|
4876 |
|
4877 |
+
#: app/features/mec/styling.php:294
|
4878 |
msgid "Typography"
|
4879 |
msgstr ""
|
4880 |
|
4881 |
+
#: app/features/mec/styling.php:296
|
4882 |
msgid "Heading (Events Title) Font Family"
|
4883 |
msgstr ""
|
4884 |
|
4885 |
+
#: app/features/mec/styling.php:322
|
4886 |
msgid "Paragraph Font Family"
|
4887 |
msgstr ""
|
4888 |
|
4889 |
+
#: app/features/mec/styling.php:349 app/features/mec/styling.php:355
|
4890 |
msgid "Disable Google Fonts"
|
4891 |
msgstr ""
|
4892 |
|
4893 |
+
#: app/features/mec/styling.php:356
|
4894 |
msgid "To be GDPR compliant you may need to disable Google fonts!"
|
4895 |
msgstr ""
|
4896 |
|
4897 |
+
#: app/features/mec/styling.php:365
|
4898 |
msgid "Container Width"
|
4899 |
msgstr ""
|
4900 |
|
4901 |
+
#: app/features/mec/styling.php:367 app/features/mec/styling.php:372
|
4902 |
msgid "Desktop Normal Screens"
|
4903 |
msgstr ""
|
4904 |
|
4905 |
+
#: app/features/mec/styling.php:373 app/features/mec/styling.php:386
|
4906 |
msgid "You can enter your theme container size in this field"
|
4907 |
msgstr ""
|
4908 |
|
4909 |
+
#: app/features/mec/styling.php:380 app/features/mec/styling.php:385
|
4910 |
msgid "Desktop Large Screens"
|
4911 |
msgstr ""
|
4912 |
|
5311 |
msgid "eg. https://webnus.net"
|
5312 |
msgstr ""
|
5313 |
|
5314 |
+
#: app/features/organizers.php:306 app/libraries/main.php:4515
|
5315 |
#: app/skins/single.php:693
|
5316 |
msgid "Other Organizers"
|
5317 |
msgstr ""
|
5330 |
msgid "#"
|
5331 |
msgstr ""
|
5332 |
|
5333 |
+
#: app/features/profile/profile.php:34 app/libraries/main.php:2573
|
5334 |
msgid "Status"
|
5335 |
msgstr ""
|
5336 |
|
5337 |
+
#: app/features/profile/profile.php:37 app/libraries/main.php:1709
|
5338 |
msgid "Attendees"
|
5339 |
msgstr ""
|
5340 |
|
5347 |
msgid "<i class=\"mec-sl-eye\"></i> %s"
|
5348 |
msgstr ""
|
5349 |
|
5350 |
+
#: app/features/profile/profile.php:96 app/libraries/main.php:1723
|
5351 |
+
#: app/libraries/main.php:4513
|
5352 |
msgid "Ticket"
|
5353 |
msgstr ""
|
5354 |
|
5410 |
msgid "Discount"
|
5411 |
msgstr ""
|
5412 |
|
5413 |
+
#: app/libraries/book.php:626 app/modules/booking/default.php:303
|
5414 |
+
#: app/modules/booking/default.php:401
|
5415 |
msgid "Download Invoice"
|
5416 |
msgstr ""
|
5417 |
|
5486 |
msgid "There is no excerpt because this is a protected post."
|
5487 |
msgstr ""
|
5488 |
|
5489 |
+
#: app/libraries/main.php:330 app/libraries/main.php:1242
|
5490 |
+
#: app/libraries/main.php:1267
|
5491 |
msgid "Grid View"
|
5492 |
msgstr ""
|
5493 |
|
5494 |
+
#: app/libraries/main.php:331 app/libraries/main.php:1243
|
5495 |
+
#: app/libraries/main.php:1268
|
5496 |
msgid "Agenda View"
|
5497 |
msgstr ""
|
5498 |
|
5499 |
+
#: app/libraries/main.php:332 app/libraries/main.php:1234
|
5500 |
+
#: app/libraries/main.php:1259
|
5501 |
msgid "Full Calendar"
|
5502 |
msgstr ""
|
5503 |
|
5504 |
+
#: app/libraries/main.php:334 app/libraries/main.php:1236
|
5505 |
+
#: app/libraries/main.php:1261
|
5506 |
msgid "Calendar/Monthly View"
|
5507 |
msgstr ""
|
5508 |
|
5509 |
+
#: app/libraries/main.php:337 app/libraries/main.php:1239
|
5510 |
+
#: app/libraries/main.php:1264
|
5511 |
msgid "Timetable View"
|
5512 |
msgstr ""
|
5513 |
|
5514 |
+
#: app/libraries/main.php:338 app/libraries/main.php:1240
|
5515 |
+
#: app/libraries/main.php:1265
|
5516 |
msgid "Masonry View"
|
5517 |
msgstr ""
|
5518 |
|
5519 |
+
#: app/libraries/main.php:339 app/libraries/main.php:1244
|
5520 |
+
#: app/libraries/main.php:1269
|
5521 |
msgid "Map View"
|
5522 |
msgstr ""
|
5523 |
|
5541 |
msgid "Slider View"
|
5542 |
msgstr ""
|
5543 |
|
5544 |
+
#: app/libraries/main.php:382 app/libraries/main.php:4493
|
5545 |
msgid "SU"
|
5546 |
msgstr ""
|
5547 |
|
5548 |
+
#: app/libraries/main.php:383 app/libraries/main.php:4494
|
5549 |
msgid "MO"
|
5550 |
msgstr ""
|
5551 |
|
5552 |
+
#: app/libraries/main.php:384 app/libraries/main.php:4495
|
5553 |
msgid "TU"
|
5554 |
msgstr ""
|
5555 |
|
5556 |
+
#: app/libraries/main.php:385 app/libraries/main.php:4496
|
5557 |
msgid "WE"
|
5558 |
msgstr ""
|
5559 |
|
5560 |
+
#: app/libraries/main.php:386 app/libraries/main.php:4497
|
5561 |
msgid "TH"
|
5562 |
msgstr ""
|
5563 |
|
5564 |
+
#: app/libraries/main.php:387 app/libraries/main.php:4498
|
5565 |
msgid "FR"
|
5566 |
msgstr ""
|
5567 |
|
5568 |
+
#: app/libraries/main.php:388 app/libraries/main.php:4499
|
5569 |
msgid "SA"
|
5570 |
msgstr ""
|
5571 |
|
5572 |
+
#: app/libraries/main.php:543
|
5573 |
msgid "New Addons For MEC! Now Customize MEC in Elementor"
|
5574 |
msgstr ""
|
5575 |
|
5576 |
+
#: app/libraries/main.php:550
|
5577 |
msgid ""
|
5578 |
"The time has come at last, and the new practical add-ons for MEC have been "
|
5579 |
"released. This is a revolution in the world of Event Calendars. We have "
|
5581 |
"below:"
|
5582 |
msgstr ""
|
5583 |
|
5584 |
+
#: app/libraries/main.php:552
|
5585 |
msgid ""
|
5586 |
"<strong>WooCommerce Integration:</strong> You can now purchase ticket (as "
|
5587 |
"products) and Woo products at the same time."
|
5588 |
msgstr ""
|
5589 |
|
5590 |
+
#: app/libraries/main.php:553
|
5591 |
msgid ""
|
5592 |
"<strong>Elementor Single Builder:</strong> It enables you to create "
|
5593 |
"shortcodes in Elementor Live Editor."
|
5594 |
msgstr ""
|
5595 |
|
5596 |
+
#: app/libraries/main.php:554
|
5597 |
msgid ""
|
5598 |
"<strong>Elementor Form Builder:</strong> It allows you to use many different "
|
5599 |
"type of fields and rearrange them by drag and drop and modify their styles."
|
5600 |
msgstr ""
|
5601 |
|
5602 |
+
#: app/libraries/main.php:555
|
5603 |
msgid ""
|
5604 |
"<strong>Elementor Shortcode Builder:</strong> Edit single event page using "
|
5605 |
"Elementor. Manage the position of all elements in the Single page and in "
|
5606 |
"desktops, mobiles and tablets as well."
|
5607 |
msgstr ""
|
5608 |
|
5609 |
+
#: app/libraries/main.php:1097
|
5610 |
msgid "Events at this location"
|
5611 |
msgstr ""
|
5612 |
|
5613 |
+
#: app/libraries/main.php:1097
|
5614 |
msgid "Event at this location"
|
5615 |
msgstr ""
|
5616 |
|
5617 |
+
#: app/libraries/main.php:1138
|
5618 |
msgid "Facebook"
|
5619 |
msgstr ""
|
5620 |
|
5621 |
+
#: app/libraries/main.php:1139
|
5622 |
msgid "Twitter"
|
5623 |
msgstr ""
|
5624 |
|
5625 |
+
#: app/libraries/main.php:1140 app/libraries/main.php:1190
|
5626 |
msgid "Linkedin"
|
5627 |
msgstr ""
|
5628 |
|
5629 |
+
#: app/libraries/main.php:1141 app/libraries/main.php:1223
|
5630 |
msgid "VK"
|
5631 |
msgstr ""
|
5632 |
|
5633 |
+
#: app/libraries/main.php:1160
|
5634 |
msgid "Share on Facebook"
|
5635 |
msgstr ""
|
5636 |
|
5637 |
+
#: app/libraries/main.php:1175
|
5638 |
msgid "Tweet"
|
5639 |
msgstr ""
|
5640 |
|
5641 |
+
#: app/libraries/main.php:1245
|
5642 |
msgid "Custom Shortcode"
|
5643 |
msgstr ""
|
5644 |
|
5645 |
+
#: app/libraries/main.php:1604
|
5646 |
msgid "Your booking successfully verified."
|
5647 |
msgstr ""
|
5648 |
|
5649 |
+
#: app/libraries/main.php:1605
|
5650 |
msgid "Your booking cannot verify!"
|
5651 |
msgstr ""
|
5652 |
|
5653 |
+
#: app/libraries/main.php:1617
|
5654 |
msgid "Your booking successfully canceled."
|
5655 |
msgstr ""
|
5656 |
|
5657 |
+
#: app/libraries/main.php:1618
|
5658 |
msgid "Your booking cannot be canceled."
|
5659 |
msgstr ""
|
5660 |
|
5661 |
+
#: app/libraries/main.php:1622
|
5662 |
msgid "You canceled the payment successfully."
|
5663 |
msgstr ""
|
5664 |
|
5665 |
+
#: app/libraries/main.php:1626
|
5666 |
msgid "You returned from payment gateway successfully."
|
5667 |
msgstr ""
|
5668 |
|
5669 |
+
#: app/libraries/main.php:1650
|
5670 |
msgid "Cannot find the booking!"
|
5671 |
msgstr ""
|
5672 |
|
5673 |
+
#: app/libraries/main.php:1650
|
5674 |
msgid "Booking is invalid."
|
5675 |
msgstr ""
|
5676 |
|
5677 |
+
#: app/libraries/main.php:1679
|
5678 |
#, php-format
|
5679 |
msgid "%s Invoice"
|
5680 |
msgstr ""
|
5681 |
|
5682 |
+
#: app/libraries/main.php:1700
|
5683 |
msgid "Transaction ID"
|
5684 |
msgstr ""
|
5685 |
|
5686 |
+
#: app/libraries/main.php:1753
|
5687 |
msgid "Billing"
|
5688 |
msgstr ""
|
5689 |
|
5690 |
+
#: app/libraries/main.php:1764
|
5691 |
msgid "Total"
|
5692 |
msgstr ""
|
5693 |
|
5694 |
+
#: app/libraries/main.php:1797
|
5695 |
msgid "Security nonce is not valid."
|
5696 |
msgstr ""
|
5697 |
|
5698 |
+
#: app/libraries/main.php:1797 app/libraries/main.php:1829
|
5699 |
msgid "iCal export stopped!"
|
5700 |
msgstr ""
|
5701 |
|
5702 |
+
#: app/libraries/main.php:1829
|
5703 |
msgid "Request is not valid."
|
5704 |
msgstr ""
|
5705 |
|
5706 |
+
#: app/libraries/main.php:2157 app/libraries/main.php:2187
|
5707 |
+
#: app/libraries/main.php:2216 app/libraries/main.php:2246
|
5708 |
+
#: app/libraries/main.php:2275 app/libraries/main.php:2304
|
5709 |
+
#: app/libraries/main.php:2333 app/libraries/main.php:2362
|
5710 |
+
#: app/libraries/main.php:2391 app/libraries/main.php:2415
|
5711 |
+
#: app/libraries/main.php:2459 app/libraries/main.php:2503
|
5712 |
+
#: app/libraries/main.php:2550 app/libraries/main.php:2596
|
5713 |
msgid "Sort"
|
5714 |
msgstr ""
|
5715 |
|
5716 |
+
#: app/libraries/main.php:2163 app/libraries/main.php:2193
|
5717 |
+
#: app/libraries/main.php:2222 app/libraries/main.php:2252
|
5718 |
+
#: app/libraries/main.php:2281 app/libraries/main.php:2310
|
5719 |
+
#: app/libraries/main.php:2339 app/libraries/main.php:2368
|
5720 |
+
#: app/libraries/main.php:2421 app/libraries/main.php:2465
|
5721 |
+
#: app/libraries/main.php:2509 app/libraries/main.php:2556
|
5722 |
msgid "Required Field"
|
5723 |
msgstr ""
|
5724 |
|
5725 |
+
#: app/libraries/main.php:2169 app/libraries/main.php:2199
|
5726 |
+
#: app/libraries/main.php:2228 app/libraries/main.php:2258
|
5727 |
+
#: app/libraries/main.php:2287 app/libraries/main.php:2316
|
5728 |
+
#: app/libraries/main.php:2345 app/libraries/main.php:2374
|
5729 |
+
#: app/libraries/main.php:2427 app/libraries/main.php:2471
|
5730 |
+
#: app/libraries/main.php:2515 app/libraries/main.php:2562
|
5731 |
msgid "Insert a label for this field"
|
5732 |
msgstr ""
|
5733 |
|
5734 |
+
#: app/libraries/main.php:2397
|
5735 |
msgid "HTML and shortcode are allowed."
|
5736 |
msgstr ""
|
5737 |
|
5738 |
+
#: app/libraries/main.php:2440 app/libraries/main.php:2484
|
5739 |
+
#: app/libraries/main.php:2528
|
5740 |
msgid "Option"
|
5741 |
msgstr ""
|
5742 |
|
5743 |
+
#: app/libraries/main.php:2562
|
5744 |
#, php-format
|
5745 |
msgid "Instead of %s, the page title with a link will be show."
|
5746 |
msgstr ""
|
5747 |
|
5748 |
+
#: app/libraries/main.php:2564
|
5749 |
msgid "Agreement Page"
|
5750 |
msgstr ""
|
5751 |
|
5752 |
+
#: app/libraries/main.php:2575
|
5753 |
msgid "Checked by default"
|
5754 |
msgstr ""
|
5755 |
|
5756 |
+
#: app/libraries/main.php:2576
|
5757 |
msgid "Unchecked by default"
|
5758 |
msgstr ""
|
5759 |
|
5760 |
+
#: app/libraries/main.php:2598
|
5761 |
msgid "Insert a label for this option"
|
5762 |
msgstr ""
|
5763 |
|
5764 |
+
#: app/libraries/main.php:2613
|
5765 |
msgid "Free"
|
5766 |
msgstr ""
|
5767 |
|
5768 |
+
#: app/libraries/main.php:3165 app/libraries/main.php:4721
|
5769 |
msgid "M.E. Calender"
|
5770 |
msgstr ""
|
5771 |
|
5772 |
+
#: app/libraries/main.php:3320
|
5773 |
#, php-format
|
5774 |
msgid "Copy of %s"
|
5775 |
msgstr ""
|
5776 |
|
5777 |
+
#: app/libraries/main.php:3983
|
5778 |
msgid "Booked an event."
|
5779 |
msgstr ""
|
5780 |
|
5781 |
+
#: app/libraries/main.php:4024
|
5782 |
#, php-format
|
5783 |
msgid "%s booked %s event."
|
5784 |
msgstr ""
|
5785 |
|
5786 |
+
#: app/libraries/main.php:4476
|
5787 |
msgid "Taxonomies"
|
5788 |
msgstr ""
|
5789 |
|
5790 |
+
#: app/libraries/main.php:4478
|
5791 |
msgid "Category Plural Label"
|
5792 |
msgstr ""
|
5793 |
|
5794 |
+
#: app/libraries/main.php:4479
|
5795 |
msgid "Category Singular Label"
|
5796 |
msgstr ""
|
5797 |
|
5798 |
+
#: app/libraries/main.php:4480
|
5799 |
msgid "Label Plural Label"
|
5800 |
msgstr ""
|
5801 |
|
5802 |
+
#: app/libraries/main.php:4481
|
5803 |
msgid "Label Singular Label"
|
5804 |
msgstr ""
|
5805 |
|
5806 |
+
#: app/libraries/main.php:4481
|
5807 |
msgid "label"
|
5808 |
msgstr ""
|
5809 |
|
5810 |
+
#: app/libraries/main.php:4482
|
5811 |
msgid "Location Plural Label"
|
5812 |
msgstr ""
|
5813 |
|
5814 |
+
#: app/libraries/main.php:4483
|
5815 |
msgid "Location Singular Label"
|
5816 |
msgstr ""
|
5817 |
|
5818 |
+
#: app/libraries/main.php:4484
|
5819 |
msgid "Organizer Plural Label"
|
5820 |
msgstr ""
|
5821 |
|
5822 |
+
#: app/libraries/main.php:4485
|
5823 |
msgid "Organizer Singular Label"
|
5824 |
msgstr ""
|
5825 |
|
5826 |
+
#: app/libraries/main.php:4486
|
5827 |
msgid "Speaker Plural Label"
|
5828 |
msgstr ""
|
5829 |
|
5830 |
+
#: app/libraries/main.php:4487
|
5831 |
msgid "Speaker Singular Label"
|
5832 |
msgstr ""
|
5833 |
|
5834 |
+
#: app/libraries/main.php:4493
|
5835 |
msgid "Sunday abbreviation"
|
5836 |
msgstr ""
|
5837 |
|
5838 |
+
#: app/libraries/main.php:4494
|
5839 |
msgid "Monday abbreviation"
|
5840 |
msgstr ""
|
5841 |
|
5842 |
+
#: app/libraries/main.php:4495
|
5843 |
msgid "Tuesday abbreviation"
|
5844 |
msgstr ""
|
5845 |
|
5846 |
+
#: app/libraries/main.php:4496
|
5847 |
msgid "Wednesday abbreviation"
|
5848 |
msgstr ""
|
5849 |
|
5850 |
+
#: app/libraries/main.php:4497
|
5851 |
msgid "Thursday abbreviation"
|
5852 |
msgstr ""
|
5853 |
|
5854 |
+
#: app/libraries/main.php:4498
|
5855 |
msgid "Friday abbreviation"
|
5856 |
msgstr ""
|
5857 |
|
5858 |
+
#: app/libraries/main.php:4499
|
5859 |
msgid "Saturday abbreviation"
|
5860 |
msgstr ""
|
5861 |
|
5862 |
+
#: app/libraries/main.php:4503
|
5863 |
msgid "Others"
|
5864 |
msgstr ""
|
5865 |
|
5866 |
+
#: app/libraries/main.php:4505
|
5867 |
msgid "Booking Success Message"
|
5868 |
msgstr ""
|
5869 |
|
5870 |
+
#: app/libraries/main.php:4505
|
5871 |
msgid ""
|
5872 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
5873 |
"needed, please check your email."
|
5874 |
msgstr ""
|
5875 |
|
5876 |
+
#: app/libraries/main.php:4506 app/widgets/single.php:131
|
5877 |
msgid "Register Button"
|
5878 |
msgstr ""
|
5879 |
|
5880 |
+
#: app/libraries/main.php:4506 app/skins/available_spot/tpl.php:205
|
5881 |
#: app/skins/carousel/render.php:152 app/skins/carousel/render.php:182
|
5882 |
#: app/skins/grid/render.php:116 app/skins/grid/render.php:159
|
5883 |
#: app/skins/grid/render.php:200 app/skins/grid/render.php:228
|
5894 |
msgid "REGISTER"
|
5895 |
msgstr ""
|
5896 |
|
5897 |
+
#: app/libraries/main.php:4507
|
5898 |
msgid "View Detail Button"
|
5899 |
msgstr ""
|
5900 |
|
5901 |
+
#: app/libraries/main.php:4507 app/skins/carousel/render.php:152
|
5902 |
#: app/skins/carousel/render.php:182 app/skins/grid/render.php:116
|
5903 |
#: app/skins/grid/render.php:159 app/skins/grid/render.php:200
|
5904 |
#: app/skins/grid/render.php:228 app/skins/list/render.php:102
|
5909 |
msgid "View Detail"
|
5910 |
msgstr ""
|
5911 |
|
5912 |
+
#: app/libraries/main.php:4508
|
5913 |
msgid "Event Detail Button"
|
5914 |
msgstr ""
|
5915 |
|
5916 |
+
#: app/libraries/main.php:4508 app/skins/countdown/tpl.php:218
|
5917 |
msgid "Event Detail"
|
5918 |
msgstr ""
|
5919 |
|
5920 |
+
#: app/libraries/main.php:4510
|
5921 |
msgid "More Info Link"
|
5922 |
msgstr ""
|
5923 |
|
5924 |
+
#: app/libraries/main.php:4513
|
5925 |
msgid "Ticket (Singular)"
|
5926 |
msgstr ""
|
5927 |
|
5928 |
+
#: app/libraries/main.php:4514
|
5929 |
msgid "Tickets (Plural)"
|
5930 |
msgstr ""
|
5931 |
|
5932 |
+
#: app/libraries/main.php:4581
|
5933 |
msgid "EventON"
|
5934 |
msgstr ""
|
5935 |
|
5936 |
+
#: app/libraries/main.php:4582
|
5937 |
msgid "The Events Calendar"
|
5938 |
msgstr ""
|
5939 |
|
5940 |
+
#: app/libraries/main.php:4583
|
5941 |
msgid "Events Schedule WP Plugin"
|
5942 |
msgstr ""
|
5943 |
|
5944 |
+
#: app/libraries/main.php:4584
|
5945 |
msgid "Calendarize It"
|
5946 |
msgstr ""
|
5947 |
|
5948 |
+
#: app/libraries/main.php:4658 app/libraries/main.php:4678
|
5949 |
msgid "Confirmed"
|
5950 |
msgstr ""
|
5951 |
|
5952 |
+
#: app/libraries/main.php:4659 app/libraries/main.php:4686
|
5953 |
msgid "Rejected"
|
5954 |
msgstr ""
|
5955 |
|
5956 |
+
#: app/libraries/main.php:4660 app/libraries/main.php:4682
|
5957 |
msgid "Pending"
|
5958 |
msgstr ""
|
5959 |
|
5960 |
+
#: app/libraries/main.php:4708
|
5961 |
msgid "Waiting"
|
5962 |
msgstr ""
|
5963 |
|
5993 |
msgid "All of the day"
|
5994 |
msgstr ""
|
5995 |
|
5996 |
+
#: app/libraries/notifications.php:611
|
5997 |
msgid "to"
|
5998 |
msgstr ""
|
5999 |
|
6000 |
+
#: app/libraries/notifications.php:624 app/modules/export/details.php:27
|
6001 |
msgid "+ Add to Google Calendar"
|
6002 |
msgstr ""
|
6003 |
|
6004 |
+
#: app/libraries/notifications.php:625 app/modules/export/details.php:28
|
6005 |
msgid "+ iCal export"
|
6006 |
msgstr ""
|
6007 |
|
6008 |
+
#: app/libraries/notifications.php:689
|
6009 |
msgid "Yes"
|
6010 |
msgstr ""
|
6011 |
|
6012 |
+
#: app/libraries/notifications.php:689
|
6013 |
msgid "No"
|
6014 |
msgstr ""
|
6015 |
|
6021 |
msgid "Ignore month and years"
|
6022 |
msgstr ""
|
6023 |
|
6024 |
+
#: app/modules/attendees-list/details.php:36
|
6025 |
msgid "Event Attendees"
|
6026 |
msgstr ""
|
6027 |
|
6028 |
+
#: app/modules/attendees-list/details.php:38
|
6029 |
msgid "No attendee found! Be the first one to book!"
|
6030 |
msgstr ""
|
6031 |
|
6032 |
+
#: app/modules/attendees-list/details.php:56
|
6033 |
#, php-format
|
6034 |
msgid "%s tickets"
|
6035 |
msgstr ""
|
languages/modern-events-calendar-lite-es_ES.mo
CHANGED
Binary file
|
languages/modern-events-calendar-lite-es_ES.po
CHANGED
@@ -4,8 +4,8 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Plugins - Modern Events Calendar Lite - Stable (latest "
|
6 |
"release)\n"
|
7 |
-
"POT-Creation-Date: 2019-
|
8 |
-
"PO-Revision-Date: 2019-
|
9 |
"Last-Translator: \n"
|
10 |
"Language-Team: \n"
|
11 |
"Language: es\n"
|
@@ -13,7 +13,7 @@ msgstr ""
|
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
16 |
-
"X-Generator: Poedit 2.
|
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
|
@@ -21,7 +21,7 @@ msgstr ""
|
|
21 |
msgid "Modern Events Calendar"
|
22 |
msgstr "Modern Events Calendar"
|
23 |
|
24 |
-
#: app/addons/KC.php:70 app/addons/VC.php:64 app/features/mec/styling.php:
|
25 |
msgid "Content"
|
26 |
msgstr "Contenido"
|
27 |
|
@@ -46,8 +46,8 @@ msgstr "General"
|
|
46 |
msgid "Select Type"
|
47 |
msgstr "Seleccionar tipo"
|
48 |
|
49 |
-
#: app/features/colors.php:50 app/features/fes/form.php:
|
50 |
-
#: app/features/mec/settings.php:
|
51 |
msgid "Event Color"
|
52 |
msgstr "Color del evento"
|
53 |
|
@@ -63,12 +63,12 @@ msgid "Settings"
|
|
63 |
msgstr "Ajustes"
|
64 |
|
65 |
#: app/features/contextual.php:62 app/features/events.php:2250
|
66 |
-
#: app/features/mec/booking.php:
|
67 |
-
#: app/features/mec/ie.php:
|
68 |
-
#: app/features/mec/modules.php:173 app/features/mec/notifications.php:
|
69 |
-
#: app/features/mec/regform.php:
|
70 |
-
#: app/features/mec/settings.php:
|
71 |
-
#: app/features/mec/styles.php:
|
72 |
#: app/features/mec/support.php:29
|
73 |
msgid "Booking Form"
|
74 |
msgstr "Formulario de Reservas"
|
@@ -88,13 +88,13 @@ msgstr ""
|
|
88 |
"www.youtube.com/embed/YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></"
|
89 |
"iframe>"
|
90 |
|
91 |
-
#: app/features/contextual.php:70 app/features/mec/booking.php:
|
92 |
-
#: app/features/mec/gateways.php:
|
93 |
-
#: app/features/mec/ie.php:
|
94 |
-
#: app/features/mec/modules.php:180 app/features/mec/notifications.php:
|
95 |
-
#: app/features/mec/regform.php:
|
96 |
-
#: app/features/mec/single.php:
|
97 |
-
#: app/features/mec/styling.php:
|
98 |
msgid "Payment Gateways"
|
99 |
msgstr "Pasarelas de pago"
|
100 |
|
@@ -108,12 +108,12 @@ msgstr ""
|
|
108 |
"height=\"300\" src=\"https://www.youtube.com/embed/Hpg4chWlxoQ\" frameborder="
|
109 |
"\"0\" allowfullscreen></iframe>"
|
110 |
|
111 |
-
#: app/features/contextual.php:77 app/features/mec/booking.php:
|
112 |
-
#: app/features/mec/gateways.php:
|
113 |
-
#: app/features/mec/messages.php:
|
114 |
-
#: app/features/mec/notifications.php:
|
115 |
-
#: app/features/mec/settings.php:
|
116 |
-
#: app/features/mec/styles.php:
|
117 |
#: app/features/mec/support.php:45
|
118 |
msgid "Notifications"
|
119 |
msgstr "Avisos"
|
@@ -197,7 +197,7 @@ msgstr ""
|
|
197 |
#: app/features/mec/gateways.php:28 app/features/mec/ie.php:24
|
198 |
#: app/features/mec/messages.php:28 app/features/mec/modules.php:35
|
199 |
#: app/features/mec/notifications.php:27 app/features/mec/regform.php:64
|
200 |
-
#: app/features/mec/settings.php:51 app/features/mec/settings.php:
|
201 |
#: app/features/mec/single.php:27 app/features/mec/styles.php:28
|
202 |
#: app/features/mec/styling.php:50
|
203 |
msgid "General Options"
|
@@ -207,7 +207,7 @@ msgstr "Opciones generales"
|
|
207 |
#: app/features/mec/gateways.php:30 app/features/mec/ie.php:26
|
208 |
#: app/features/mec/messages.php:30 app/features/mec/modules.php:37
|
209 |
#: app/features/mec/notifications.php:29 app/features/mec/regform.php:66
|
210 |
-
#: app/features/mec/settings.php:63 app/features/mec/settings.php:
|
211 |
#: app/features/mec/single.php:29 app/features/mec/styles.php:30
|
212 |
#: app/features/mec/styling.php:52
|
213 |
msgid "Slugs/Permalinks"
|
@@ -221,7 +221,7 @@ msgstr "Detalles del Evento/Página de Evento Único"
|
|
221 |
#: app/features/mec/gateways.php:31 app/features/mec/ie.php:27
|
222 |
#: app/features/mec/messages.php:31 app/features/mec/modules.php:38
|
223 |
#: app/features/mec/notifications.php:30 app/features/mec/regform.php:67
|
224 |
-
#: app/features/mec/settings.php:69 app/features/mec/settings.php:
|
225 |
#: app/features/mec/single.php:30 app/features/mec/styles.php:31
|
226 |
#: app/features/mec/styling.php:53
|
227 |
msgid "Currency Options"
|
@@ -241,7 +241,7 @@ msgstr "Opciones de Google Maps"
|
|
241 |
#: app/features/mec/gateways.php:32 app/features/mec/ie.php:28
|
242 |
#: app/features/mec/messages.php:32 app/features/mec/modules.php:39
|
243 |
#: app/features/mec/notifications.php:31 app/features/mec/regform.php:68
|
244 |
-
#: app/features/mec/settings.php:75 app/features/mec/settings.php:
|
245 |
#: app/features/mec/single.php:31 app/features/mec/styles.php:32
|
246 |
#: app/features/mec/styling.php:54
|
247 |
msgid "Google Recaptcha Options"
|
@@ -252,7 +252,7 @@ msgstr "Opciones de Google Recaptcha"
|
|
252 |
#: app/features/mec/messages.php:51 app/features/mec/modules.php:58
|
253 |
#: app/features/mec/notifications.php:50 app/features/mec/regform.php:87
|
254 |
#: app/features/mec/settings.php:118 app/features/mec/single.php:62
|
255 |
-
#: app/features/mec/single.php:
|
256 |
#: app/features/mec/styling.php:73
|
257 |
msgid "Countdown Options"
|
258 |
msgstr "Opciones de cuenta atrás"
|
@@ -275,7 +275,7 @@ msgstr "Módulo de Siguiente Evento"
|
|
275 |
#: app/features/mec/gateways.php:33 app/features/mec/ie.php:29
|
276 |
#: app/features/mec/messages.php:33 app/features/mec/modules.php:40
|
277 |
#: app/features/mec/notifications.php:32 app/features/mec/regform.php:69
|
278 |
-
#: app/features/mec/settings.php:81 app/features/mec/settings.php:
|
279 |
#: app/features/mec/single.php:32 app/features/mec/styles.php:33
|
280 |
#: app/features/mec/styling.php:55
|
281 |
msgid "Frontend Event Submission"
|
@@ -293,28 +293,28 @@ msgstr "Días excepcionales"
|
|
293 |
|
294 |
#: app/features/contextual.php:308 app/features/events.php:284
|
295 |
#: app/features/mec/booking.php:77 app/features/mec/booking.php:84
|
296 |
-
#: app/features/mec/booking.php:
|
297 |
#: app/features/mec/gateways.php:64 app/features/mec/gateways.php:68
|
298 |
-
#: app/features/mec/gateways.php:
|
299 |
-
#: app/features/mec/ie.php:64 app/features/mec/ie.php:
|
300 |
#: app/features/mec/messages.php:64 app/features/mec/messages.php:68
|
301 |
-
#: app/features/mec/messages.php:
|
302 |
#: app/features/mec/modules.php:75 app/features/mec/modules.php:194
|
303 |
#: app/features/mec/notifications.php:63 app/features/mec/notifications.php:67
|
304 |
-
#: app/features/mec/notifications.php:
|
305 |
-
#: app/features/mec/notifications.php:
|
306 |
-
#: app/features/mec/regform.php:104 app/features/mec/regform.php:
|
307 |
#: app/features/mec/settings.php:131 app/features/mec/settings.php:135
|
308 |
-
#: app/features/mec/settings.php:
|
309 |
-
#: app/features/mec/single.php:96 app/features/mec/single.php:
|
310 |
#: app/features/mec/styles.php:64 app/features/mec/styles.php:68
|
311 |
-
#: app/features/mec/styles.php:
|
312 |
-
#: app/features/mec/styling.php:90 app/features/mec/styling.php:
|
313 |
msgid "Booking"
|
314 |
msgstr "Reserva"
|
315 |
|
316 |
#: app/features/contextual.php:318 app/features/mec/booking.php:92
|
317 |
-
#: app/features/mec/booking.php:
|
318 |
#: app/features/mec/ie.php:66 app/features/mec/messages.php:70
|
319 |
#: app/features/mec/modules.php:77 app/features/mec/notifications.php:69
|
320 |
#: app/features/mec/regform.php:106 app/features/mec/settings.php:137
|
@@ -323,13 +323,13 @@ msgstr "Reserva"
|
|
323 |
msgid "Coupons"
|
324 |
msgstr "Cupones"
|
325 |
|
326 |
-
#: app/features/contextual.php:326 app/features/mec/booking.php:
|
327 |
-
#: app/features/mec/gateways.php:
|
328 |
-
#: app/features/mec/messages.php:
|
329 |
-
#: app/features/mec/modules.php:509 app/features/mec/notifications.php:
|
330 |
-
#: app/features/mec/regform.php:
|
331 |
-
#: app/features/mec/single.php:
|
332 |
-
#: app/features/mec/styling.php:
|
333 |
msgid "BuddyPress Integration"
|
334 |
msgstr "Integración de BuddyPress"
|
335 |
|
@@ -337,7 +337,7 @@ msgstr "Integración de BuddyPress"
|
|
337 |
#: app/features/mec/gateways.php:36 app/features/mec/ie.php:32
|
338 |
#: app/features/mec/messages.php:36 app/features/mec/modules.php:43
|
339 |
#: app/features/mec/notifications.php:35 app/features/mec/regform.php:72
|
340 |
-
#: app/features/mec/settings.php:95 app/features/mec/settings.php:
|
341 |
#: app/features/mec/single.php:35 app/features/mec/styles.php:36
|
342 |
#: app/features/mec/styling.php:58
|
343 |
msgid "Mailchimp Integration"
|
@@ -354,9 +354,9 @@ msgid "Events"
|
|
354 |
msgstr "Eventos"
|
355 |
|
356 |
#: app/features/events.php:138
|
357 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
358 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
359 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
360 |
#: app/features/profile/profile.php:28 app/skins/daily_view/tpl.php:80
|
361 |
#: app/skins/monthly_view/tpl.php:71 app/skins/yearly_view/tpl.php:69
|
362 |
msgid "Event"
|
@@ -370,7 +370,7 @@ msgstr "Nuevo evento"
|
|
370 |
msgid "Add New Event"
|
371 |
msgstr "Añadir nuevo evento"
|
372 |
|
373 |
-
#: app/features/events.php:141 app/features/ix.php:
|
374 |
#: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:56
|
375 |
msgid "No events found!"
|
376 |
msgstr "No hay eventos"
|
@@ -392,7 +392,7 @@ msgid "No events found in Trash!"
|
|
392 |
msgstr "No hay eventos en la papelera"
|
393 |
|
394 |
#: app/features/events.php:162
|
395 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
396 |
#: app/features/mec/meta_boxes/search_form.php:31
|
397 |
#: app/features/mec/meta_boxes/search_form.php:92
|
398 |
#: app/features/mec/meta_boxes/search_form.php:153
|
@@ -402,7 +402,7 @@ msgstr "No hay eventos en la papelera"
|
|
402 |
#: app/features/mec/meta_boxes/search_form.php:397
|
403 |
#: app/features/mec/meta_boxes/search_form.php:451
|
404 |
#: app/features/mec/meta_boxes/search_form.php:512
|
405 |
-
#: app/features/mec/meta_boxes/search_form.php:573 app/libraries/main.php:
|
406 |
#: app/libraries/skins.php:781 app/skins/single.php:410
|
407 |
#: app/skins/single/default.php:169 app/skins/single/default.php:380
|
408 |
#: app/skins/single/m1.php:170 app/skins/single/m2.php:102
|
@@ -412,7 +412,7 @@ msgstr "Categoría"
|
|
412 |
|
413 |
#: app/features/events.php:163 app/features/fes/form.php:745
|
414 |
#: app/features/mec.php:332 app/features/mec/meta_boxes/filter.php:70
|
415 |
-
#: app/libraries/main.php:
|
416 |
msgid "Categories"
|
417 |
msgstr "Categorías"
|
418 |
|
@@ -484,16 +484,16 @@ msgstr "Seleccionar icono"
|
|
484 |
msgid "Event Details"
|
485 |
msgstr "Detalle de evento"
|
486 |
|
487 |
-
#: app/features/events.php:321 app/features/events.php:
|
488 |
-
#: app/features/events.php:
|
489 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
490 |
-
#: app/features/mec/settings.php:
|
491 |
#: app/widgets/single.php:103
|
492 |
msgid "Event Cost"
|
493 |
msgstr "Coste del evento"
|
494 |
|
495 |
#: app/features/events.php:325 app/features/fes/form.php:709
|
496 |
-
#: app/libraries/main.php:
|
497 |
#: app/skins/single/default.php:103 app/skins/single/default.php:314
|
498 |
#: app/skins/single/m1.php:49 app/skins/single/modern.php:199
|
499 |
msgid "Cost"
|
@@ -510,19 +510,19 @@ msgstr "Datos del invitado"
|
|
510 |
#: app/features/events.php:431 app/features/events.php:2232
|
511 |
#: app/features/fes/form.php:668 app/features/labels.php:177
|
512 |
#: app/features/mec/regform.php:27 app/features/organizers.php:274
|
513 |
-
#: app/features/profile/profile.php:90 app/libraries/notifications.php:
|
514 |
#: app/modules/booking/steps/form.php:35
|
515 |
msgid "Name"
|
516 |
msgstr "Nombre"
|
517 |
|
518 |
#: app/features/events.php:432 app/features/events.php:2243
|
519 |
#: app/features/events.php:2321 app/features/fes/form.php:664
|
520 |
-
#: app/features/mec/regform.php:38 app/features/mec/regform.php:
|
521 |
#: app/features/organizers.php:110 app/features/organizers.php:150
|
522 |
#: app/features/profile/profile.php:93 app/features/speakers.php:120
|
523 |
-
#: app/features/speakers.php:180 app/libraries/main.php:
|
524 |
-
#: app/libraries/main.php:
|
525 |
-
#: app/libraries/notifications.php:
|
526 |
#: app/modules/booking/steps/form.php:80 app/skins/single.php:661
|
527 |
#: app/skins/single.php:715 app/skins/single/default.php:211
|
528 |
#: app/skins/single/default.php:422 app/skins/single/m1.php:107
|
@@ -535,8 +535,8 @@ msgid "Date and Time"
|
|
535 |
msgstr "Día y hora"
|
536 |
|
537 |
#: app/features/events.php:440 app/features/events.php:446
|
538 |
-
#: app/features/events.php:
|
539 |
-
#: app/features/events.php:
|
540 |
#: app/features/fes/form.php:240 app/features/ix.php:2740
|
541 |
#: app/features/ix.php:2781 app/features/ix/import_g_calendar.php:38
|
542 |
#: app/features/mec/dashboard.php:332
|
@@ -544,15 +544,15 @@ msgstr "Día y hora"
|
|
544 |
#: app/features/mec/meta_boxes/display_options.php:169
|
545 |
#: app/features/mec/meta_boxes/display_options.php:307
|
546 |
#: app/features/mec/meta_boxes/display_options.php:362
|
547 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
548 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
549 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
550 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
551 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
552 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
553 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
554 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
555 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
556 |
msgid "Start Date"
|
557 |
msgstr "Día de inicio"
|
558 |
|
@@ -571,8 +571,8 @@ msgid "PM"
|
|
571 |
msgstr "PM"
|
572 |
|
573 |
#: app/features/events.php:532 app/features/events.php:537
|
574 |
-
#: app/features/events.php:
|
575 |
-
#: app/features/events.php:
|
576 |
#: app/features/fes/form.php:280 app/features/ix.php:2740
|
577 |
#: app/features/ix.php:2781 app/features/ix/import_g_calendar.php:44
|
578 |
#: app/features/mec/dashboard.php:333
|
@@ -609,19 +609,19 @@ msgstr ""
|
|
609 |
"horaria, etc en este campo."
|
610 |
|
611 |
#: app/features/events.php:663 app/features/events.php:795
|
612 |
-
#: app/features/events.php:
|
613 |
#: app/features/events.php:1436 app/features/events.php:1503
|
614 |
#: app/features/events.php:1655 app/features/events.php:1670
|
615 |
#: app/features/events.php:1837 app/features/events.php:1850
|
616 |
#: app/features/events.php:1980 app/features/events.php:2016
|
617 |
#: app/features/events.php:2114 app/features/events.php:2129
|
618 |
#: app/features/events.php:2159 app/features/events.php:2172
|
619 |
-
#: app/features/fes/form.php:
|
620 |
-
#: app/features/mec/booking.php:
|
621 |
-
#: app/features/mec/booking.php:
|
622 |
-
#: app/features/mec/booking.php:
|
623 |
-
#: app/features/mec/booking.php:
|
624 |
-
#: app/features/mec/booking.php:
|
625 |
#: app/features/mec/meta_boxes/display_options.php:60
|
626 |
#: app/features/mec/meta_boxes/display_options.php:73
|
627 |
#: app/features/mec/meta_boxes/display_options.php:86
|
@@ -635,47 +635,47 @@ msgstr ""
|
|
635 |
#: app/features/mec/meta_boxes/display_options.php:248
|
636 |
#: app/features/mec/meta_boxes/display_options.php:259
|
637 |
#: app/features/mec/meta_boxes/display_options.php:326
|
638 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
639 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
640 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
641 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
642 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
643 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
644 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
645 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
646 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
647 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
648 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
649 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
650 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
651 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
652 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
653 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
654 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
655 |
#: app/features/mec/modules.php:283 app/features/mec/modules.php:300
|
656 |
#: app/features/mec/modules.php:335 app/features/mec/modules.php:351
|
657 |
-
#: app/features/mec/modules.php:497 app/features/mec/notifications.php:
|
658 |
-
#: app/features/mec/notifications.php:
|
659 |
-
#: app/features/mec/notifications.php:
|
660 |
-
#: app/features/mec/notifications.php:
|
661 |
-
#: app/features/mec/notifications.php:
|
662 |
-
#: app/features/mec/notifications.php:
|
663 |
-
#: app/features/mec/notifications.php:
|
664 |
-
#: app/features/mec/notifications.php:
|
665 |
-
#: app/features/mec/settings.php:
|
666 |
-
#: app/features/mec/settings.php:
|
667 |
-
#: app/features/mec/settings.php:
|
668 |
-
#: app/features/mec/settings.php:
|
669 |
-
#: app/features/mec/settings.php:
|
670 |
-
#: app/features/mec/settings.php:
|
671 |
-
#: app/features/mec/settings.php:
|
672 |
-
#: app/features/mec/settings.php:
|
673 |
-
#: app/features/mec/settings.php:
|
674 |
-
#: app/features/mec/single.php:
|
675 |
-
#: app/features/mec/single.php:
|
676 |
-
#: app/features/mec/single.php:
|
677 |
-
#: app/features/mec/single.php:
|
678 |
-
#: app/features/mec/styling.php:
|
679 |
#: app/features/organizers.php:267 app/skins/single.php:508
|
680 |
#: app/skins/single/default.php:118 app/skins/single/default.php:329
|
681 |
#: app/skins/single/m1.php:192 app/skins/single/m2.php:125
|
@@ -746,43 +746,43 @@ msgid "Week Days"
|
|
746 |
msgstr "Días de semana"
|
747 |
|
748 |
#: app/features/events.php:760 app/features/fes/form.php:355
|
749 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
750 |
#: app/libraries/main.php:407
|
751 |
msgid "Monday"
|
752 |
msgstr "Lunes"
|
753 |
|
754 |
#: app/features/events.php:763 app/features/fes/form.php:356
|
755 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
756 |
#: app/libraries/main.php:407
|
757 |
msgid "Tuesday"
|
758 |
msgstr "Martes"
|
759 |
|
760 |
#: app/features/events.php:766 app/features/fes/form.php:357
|
761 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
762 |
#: app/libraries/main.php:407
|
763 |
msgid "Wednesday"
|
764 |
msgstr "Miércoles"
|
765 |
|
766 |
#: app/features/events.php:769 app/features/fes/form.php:358
|
767 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
768 |
#: app/libraries/main.php:407
|
769 |
msgid "Thursday"
|
770 |
msgstr "Jueves"
|
771 |
|
772 |
#: app/features/events.php:772 app/features/fes/form.php:359
|
773 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
774 |
#: app/libraries/main.php:407
|
775 |
msgid "Friday"
|
776 |
msgstr "Viernes"
|
777 |
|
778 |
#: app/features/events.php:775 app/features/fes/form.php:360
|
779 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
780 |
#: app/libraries/main.php:407
|
781 |
msgid "Saturday"
|
782 |
msgstr "Sábado"
|
783 |
|
784 |
#: app/features/events.php:778 app/features/fes/form.php:361
|
785 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
786 |
#: app/libraries/main.php:407
|
787 |
msgid "Sunday"
|
788 |
msgstr "Domingo"
|
@@ -822,70 +822,70 @@ msgid ""
|
|
822 |
"start and end dates must be commensurate with the initial date."
|
823 |
msgstr ""
|
824 |
|
825 |
-
#: app/features/events.php:
|
826 |
-
msgid "Ends Repeat"
|
827 |
-
msgstr "Finaliza la repetición"
|
828 |
-
|
829 |
-
#: app/features/events.php:839 app/features/fes/form.php:396
|
830 |
-
msgid "Never"
|
831 |
-
msgstr "Nunca"
|
832 |
-
|
833 |
-
#: app/features/events.php:851 app/features/fes/form.php:401
|
834 |
-
msgid "On"
|
835 |
-
msgstr "On"
|
836 |
-
|
837 |
-
#: app/features/events.php:867 app/features/fes/form.php:408
|
838 |
-
msgid "After"
|
839 |
-
msgstr "Después"
|
840 |
-
|
841 |
-
#: app/features/events.php:871 app/features/events.php:875
|
842 |
-
#: app/features/fes/form.php:410 app/features/fes/form.php:413
|
843 |
-
msgid "Occurrences times"
|
844 |
-
msgstr "Ocurrencias del evento"
|
845 |
-
|
846 |
-
#: app/features/events.php:876 app/features/fes/form.php:414
|
847 |
-
msgid ""
|
848 |
-
"The event will finish after certain repeats. For example if you set it to "
|
849 |
-
"10, the event will finish after 10 repeats."
|
850 |
-
msgstr ""
|
851 |
-
"El evento finalizará después de ciertas repeticiones. Por ejemplo, si "
|
852 |
-
"estableces en 10, el evento terminará después de 10 repeticiones."
|
853 |
-
|
854 |
-
#: app/features/events.php:888 app/features/fes/form.php:424
|
855 |
#, fuzzy
|
856 |
#| msgid "Ticket name"
|
857 |
msgid "First"
|
858 |
msgstr "Nombre de la entrada"
|
859 |
|
860 |
-
#: app/features/events.php:
|
861 |
#, fuzzy
|
862 |
#| msgid "second"
|
863 |
msgid "Second"
|
864 |
msgstr "segundo"
|
865 |
|
866 |
-
#: app/features/events.php:
|
867 |
#, fuzzy
|
868 |
#| msgid "Third Party"
|
869 |
msgid "Third"
|
870 |
msgstr "Terceros"
|
871 |
|
872 |
-
#: app/features/events.php:
|
873 |
msgid "Fourth"
|
874 |
msgstr ""
|
875 |
|
876 |
-
#: app/features/events.php:
|
877 |
#, fuzzy
|
878 |
#| msgid "Last Year"
|
879 |
msgid "Last"
|
880 |
msgstr "Año pasado"
|
881 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
882 |
#: app/features/events.php:1124 app/features/events.php:1134
|
883 |
msgid "Exclude certain days"
|
884 |
msgstr "Excluir ciertos días"
|
885 |
|
886 |
#: app/features/events.php:1129 app/features/events.php:2322
|
887 |
-
#: app/features/mec/regform.php:
|
888 |
-
#: app/libraries/main.php:
|
889 |
#: app/modules/booking/steps/tickets.php:22
|
890 |
#: app/modules/next-event/details.php:90 app/skins/single.php:488
|
891 |
#: app/skins/single/default.php:67 app/skins/single/default.php:278
|
@@ -904,7 +904,7 @@ msgstr ""
|
|
904 |
msgid "Day 1"
|
905 |
msgstr ""
|
906 |
|
907 |
-
#: app/features/events.php:1211 app/features/mec/settings.php:
|
908 |
#: app/skins/single.php:777
|
909 |
msgid "Hourly Schedule"
|
910 |
msgstr "Programación horaria"
|
@@ -927,11 +927,11 @@ msgstr ""
|
|
927 |
#: app/features/events.php:1227 app/features/events.php:1266
|
928 |
#: app/features/events.php:1301 app/features/events.php:1333
|
929 |
#: app/features/events.php:1362 app/features/events.php:2101
|
930 |
-
#: app/features/events.php:2148 app/features/events.php:
|
931 |
-
#: app/features/events.php:
|
932 |
#: app/features/fes/form.php:225 app/features/ix.php:2740
|
933 |
-
#: app/features/ix.php:2781 app/features/mec/booking.php:
|
934 |
-
#: app/features/mec/booking.php:
|
935 |
msgid "Title"
|
936 |
msgstr "Titulo"
|
937 |
|
@@ -942,16 +942,16 @@ msgstr "Titulo"
|
|
942 |
#: app/features/events.php:1867 app/features/events.php:1894
|
943 |
#: app/features/events.php:1993 app/features/events.php:2029
|
944 |
#: app/features/events.php:2136 app/features/events.php:2178
|
945 |
-
#: app/features/fes/list.php:78 app/features/mec/booking.php:
|
946 |
-
#: app/features/mec/booking.php:
|
947 |
-
#: app/features/mec/booking.php:
|
948 |
-
#: app/libraries/main.php:
|
949 |
-
#: app/libraries/main.php:
|
950 |
-
#: app/libraries/main.php:
|
951 |
-
#: app/libraries/main.php:
|
952 |
-
#: app/libraries/main.php:
|
953 |
-
#: app/libraries/main.php:
|
954 |
-
#: app/libraries/main.php:
|
955 |
msgid "Remove"
|
956 |
msgstr "Eliminar"
|
957 |
|
@@ -976,15 +976,15 @@ msgid "Description"
|
|
976 |
msgstr "Descripción"
|
977 |
|
978 |
#: app/features/events.php:1276 app/features/events.php:1309
|
979 |
-
#: app/features/events.php:1370 app/features/fes/form.php:
|
980 |
#: app/features/mec.php:340 app/features/mec/booking.php:122
|
981 |
#: app/features/mec/gateways.php:87 app/features/mec/ie.php:83
|
982 |
#: app/features/mec/messages.php:87 app/features/mec/modules.php:101
|
983 |
#: app/features/mec/notifications.php:86 app/features/mec/regform.php:123
|
984 |
-
#: app/features/mec/settings.php:154 app/features/mec/settings.php:
|
985 |
#: app/features/mec/single.php:115 app/features/mec/styles.php:87
|
986 |
#: app/features/mec/styling.php:109 app/features/speakers.php:57
|
987 |
-
#: app/libraries/main.php:
|
988 |
msgid "Speakers"
|
989 |
msgstr ""
|
990 |
|
@@ -995,12 +995,12 @@ msgid "New Day"
|
|
995 |
msgstr "Días de semana"
|
996 |
|
997 |
#: app/features/events.php:1401 app/features/fes/form.php:683
|
998 |
-
#: app/features/mec/settings.php:
|
999 |
msgid "Event Links"
|
1000 |
msgstr "Enlaces de eventos"
|
1001 |
|
1002 |
#: app/features/events.php:1404 app/features/events.php:1410
|
1003 |
-
#: app/features/fes/form.php:685 app/libraries/main.php:
|
1004 |
msgid "Event Link"
|
1005 |
msgstr "Enlace del evento"
|
1006 |
|
@@ -1027,7 +1027,7 @@ msgid "URL Shortener"
|
|
1027 |
msgstr ""
|
1028 |
|
1029 |
#: app/features/events.php:1420 app/features/events.php:1433
|
1030 |
-
#: app/features/fes/form.php:690 app/libraries/main.php:
|
1031 |
#: app/skins/single.php:507 app/skins/single/default.php:117
|
1032 |
#: app/skins/single/default.php:328 app/skins/single/m1.php:191
|
1033 |
#: app/skins/single/m2.php:124 app/skins/single/modern.php:132
|
@@ -1060,7 +1060,7 @@ msgid "Total booking limits"
|
|
1060 |
msgstr "Límite total de reservas"
|
1061 |
|
1062 |
#: app/features/events.php:1486 app/features/events.php:1691
|
1063 |
-
#: app/features/events.php:1864 app/modules/booking/default.php:
|
1064 |
#: app/modules/booking/steps/tickets.php:40
|
1065 |
#: app/skins/available_spot/tpl.php:140
|
1066 |
msgid "Unlimited"
|
@@ -1081,7 +1081,7 @@ msgid "Read About A Booking System"
|
|
1081 |
msgstr ""
|
1082 |
|
1083 |
#: app/features/events.php:1528 app/libraries/book.php:60
|
1084 |
-
#: app/libraries/main.php:
|
1085 |
msgid "Tickets"
|
1086 |
msgstr "Tickets"
|
1087 |
|
@@ -1101,13 +1101,13 @@ msgid "Ticket Name"
|
|
1101 |
msgstr "Nombre del ticket"
|
1102 |
|
1103 |
#: app/features/events.php:1555 app/features/events.php:1776
|
1104 |
-
#: app/features/events.php:
|
1105 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
1106 |
msgid "Start Time"
|
1107 |
msgstr "Hora de Inicio"
|
1108 |
|
1109 |
#: app/features/events.php:1597 app/features/events.php:1800
|
1110 |
-
#: app/features/events.php:
|
1111 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
1112 |
msgid "End Time"
|
1113 |
msgstr "Hora de finalización"
|
@@ -1117,9 +1117,9 @@ msgstr "Hora de finalización"
|
|
1117 |
#: app/features/events.php:1831 app/features/events.php:1834
|
1118 |
#: app/features/events.php:1890 app/features/events.php:2107
|
1119 |
#: app/features/events.php:2111 app/features/events.php:2153
|
1120 |
-
#: app/features/events.php:2156 app/features/mec/booking.php:
|
1121 |
-
#: app/features/mec/booking.php:
|
1122 |
-
#: app/features/mec/booking.php:
|
1123 |
msgid "Price"
|
1124 |
msgstr "Precio"
|
1125 |
|
@@ -1146,7 +1146,7 @@ msgstr ""
|
|
1146 |
|
1147 |
#: app/features/events.php:1730 app/features/events.php:1756
|
1148 |
#: app/features/events.php:1892 app/features/labels.php:60
|
1149 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1150 |
#: app/features/mec/meta_boxes/search_form.php:66
|
1151 |
#: app/features/mec/meta_boxes/search_form.php:127
|
1152 |
#: app/features/mec/meta_boxes/search_form.php:188
|
@@ -1170,19 +1170,19 @@ msgid "Inherit from global options"
|
|
1170 |
msgstr "Heredar opciones globales"
|
1171 |
|
1172 |
#: app/features/events.php:1967 app/features/events.php:2005
|
1173 |
-
#: app/features/mec/booking.php:
|
1174 |
msgid "Fee Title"
|
1175 |
msgstr "Título de la cuota"
|
1176 |
|
1177 |
#: app/features/events.php:1973 app/features/events.php:1977
|
1178 |
#: app/features/events.php:2010 app/features/events.php:2013
|
1179 |
-
#: app/features/mec/booking.php:
|
1180 |
-
#: app/features/mec/booking.php:
|
1181 |
msgid "Amount"
|
1182 |
msgstr "Cantidad"
|
1183 |
|
1184 |
#: app/features/events.php:1978 app/features/events.php:2014
|
1185 |
-
#: app/features/mec/booking.php:
|
1186 |
msgid ""
|
1187 |
"Fee amount, considered as fixed amount if you set the type to amount "
|
1188 |
"otherwise considered as percentage"
|
@@ -1191,84 +1191,84 @@ msgstr ""
|
|
1191 |
"cantidad, si no será considerada como porcentaje"
|
1192 |
|
1193 |
#: app/features/events.php:1987 app/features/events.php:2023
|
1194 |
-
#: app/features/mec/booking.php:
|
1195 |
msgid "Percent"
|
1196 |
msgstr "Porcentaje"
|
1197 |
|
1198 |
#: app/features/events.php:1988 app/features/events.php:2024
|
1199 |
-
#: app/features/mec/booking.php:
|
1200 |
msgid "Amount (Per Ticket)"
|
1201 |
msgstr "Cantidad (Por ticket)"
|
1202 |
|
1203 |
#: app/features/events.php:1989 app/features/events.php:2025
|
1204 |
-
#: app/features/mec/booking.php:
|
1205 |
msgid "Amount (Per Booking)"
|
1206 |
msgstr "Cantidad (por reservas)"
|
1207 |
|
1208 |
-
#: app/features/events.php:2062 app/features/mec/settings.php:
|
1209 |
msgid "Ticket Variations / Options"
|
1210 |
msgstr ""
|
1211 |
|
1212 |
#: app/features/events.php:2112 app/features/events.php:2157
|
1213 |
-
#: app/features/mec/booking.php:
|
1214 |
msgid "Option Price"
|
1215 |
msgstr ""
|
1216 |
|
1217 |
#: app/features/events.php:2122 app/features/events.php:2126
|
1218 |
#: app/features/events.php:2166 app/features/events.php:2169
|
1219 |
-
#: app/features/mec/booking.php:
|
1220 |
-
#: app/features/mec/booking.php:
|
1221 |
msgid "Maximum Per Ticket"
|
1222 |
msgstr ""
|
1223 |
|
1224 |
#: app/features/events.php:2127 app/features/events.php:2170
|
1225 |
-
#: app/features/mec/booking.php:
|
1226 |
msgid "Maximum Per Ticket. Leave it blank for unlimited."
|
1227 |
msgstr ""
|
1228 |
|
1229 |
-
#: app/features/events.php:2317 app/features/mec/regform.php:
|
1230 |
-
#: app/libraries/main.php:
|
1231 |
#, fuzzy
|
1232 |
#| msgid "Name"
|
1233 |
msgid "MEC Name"
|
1234 |
msgstr "Nombre"
|
1235 |
|
1236 |
-
#: app/features/events.php:2319 app/features/mec/regform.php:
|
1237 |
-
#: app/libraries/main.php:
|
1238 |
#, fuzzy
|
1239 |
#| msgid "Email"
|
1240 |
msgid "MEC Email"
|
1241 |
msgstr "Correo electrónico"
|
1242 |
|
1243 |
-
#: app/features/events.php:2320 app/features/mec/regform.php:
|
1244 |
-
#: app/libraries/main.php:
|
1245 |
msgid "Text"
|
1246 |
msgstr "Texto"
|
1247 |
|
1248 |
-
#: app/features/events.php:2323 app/features/mec/regform.php:
|
1249 |
#: app/features/organizers.php:102 app/features/organizers.php:146
|
1250 |
#: app/features/speakers.php:112 app/features/speakers.php:176
|
1251 |
-
#: app/features/speakers.php:245 app/libraries/main.php:
|
1252 |
msgid "Tel"
|
1253 |
msgstr "Tel"
|
1254 |
|
1255 |
-
#: app/features/events.php:2324 app/features/mec/regform.php:
|
1256 |
-
#: app/libraries/main.php:
|
1257 |
msgid "File"
|
1258 |
msgstr ""
|
1259 |
|
1260 |
-
#: app/features/events.php:2326 app/features/mec/regform.php:
|
1261 |
-
#: app/libraries/main.php:
|
1262 |
msgid "Textarea"
|
1263 |
msgstr "Área de texto"
|
1264 |
|
1265 |
-
#: app/features/events.php:2328 app/features/mec/regform.php:
|
1266 |
-
#: app/libraries/main.php:
|
1267 |
msgid "Checkboxes"
|
1268 |
msgstr "Checkboxes"
|
1269 |
|
1270 |
-
#: app/features/events.php:2330 app/features/mec/regform.php:
|
1271 |
-
#: app/libraries/main.php:
|
1272 |
msgid "Radio Buttons"
|
1273 |
msgstr "Botón tipo radio"
|
1274 |
|
@@ -1341,44 +1341,44 @@ msgstr "Botón tipo radio"
|
|
1341 |
#: app/features/mec/meta_boxes/search_form.php:604
|
1342 |
#: app/features/mec/meta_boxes/search_form.php:611
|
1343 |
#: app/features/mec/meta_boxes/search_form.php:618
|
1344 |
-
#: app/features/mec/regform.php:
|
1345 |
msgid "Dropdown"
|
1346 |
msgstr "Desplegable"
|
1347 |
|
1348 |
-
#: app/features/events.php:2333 app/features/mec/regform.php:
|
1349 |
-
#: app/libraries/main.php:
|
1350 |
msgid "Agreement"
|
1351 |
msgstr "Acuerdo"
|
1352 |
|
1353 |
-
#: app/features/events.php:2334 app/features/mec/regform.php:
|
1354 |
-
#: app/libraries/main.php:
|
1355 |
msgid "Paragraph"
|
1356 |
msgstr "Párrafo"
|
1357 |
|
1358 |
-
#: app/features/events.php:
|
1359 |
-
#: app/features/events.php:
|
1360 |
#, php-format
|
1361 |
msgid "Show all %s"
|
1362 |
msgstr "Mostrar todos %s"
|
1363 |
|
1364 |
-
#: app/features/events.php:
|
1365 |
msgid "labels"
|
1366 |
msgstr "etiquetas"
|
1367 |
|
1368 |
-
#: app/features/events.php:
|
1369 |
msgid "locations"
|
1370 |
msgstr "ubicaciones"
|
1371 |
|
1372 |
-
#: app/features/events.php:
|
1373 |
msgid "organizers"
|
1374 |
msgstr "organizadores"
|
1375 |
|
1376 |
-
#: app/features/events.php:
|
1377 |
-
#: app/features/events.php:
|
1378 |
#: app/features/ix.php:2781 app/features/locations.php:58
|
1379 |
#: app/features/locations.php:229 app/features/locations.php:286
|
1380 |
#: app/features/locations.php:288 app/features/locations.php:297
|
1381 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1382 |
#: app/features/mec/meta_boxes/search_form.php:38
|
1383 |
#: app/features/mec/meta_boxes/search_form.php:99
|
1384 |
#: app/features/mec/meta_boxes/search_form.php:160
|
@@ -1388,8 +1388,8 @@ msgstr "organizadores"
|
|
1388 |
#: app/features/mec/meta_boxes/search_form.php:404
|
1389 |
#: app/features/mec/meta_boxes/search_form.php:458
|
1390 |
#: app/features/mec/meta_boxes/search_form.php:519
|
1391 |
-
#: app/features/mec/meta_boxes/search_form.php:580 app/libraries/main.php:
|
1392 |
-
#: app/libraries/main.php:
|
1393 |
#: app/skins/single.php:337 app/skins/single.php:754
|
1394 |
#: app/skins/single/default.php:153 app/skins/single/default.php:364
|
1395 |
#: app/skins/single/m1.php:155 app/skins/single/m2.php:87
|
@@ -1397,9 +1397,9 @@ msgstr "organizadores"
|
|
1397 |
msgid "Location"
|
1398 |
msgstr "Localización"
|
1399 |
|
1400 |
-
#: app/features/events.php:
|
1401 |
-
#: app/features/events.php:
|
1402 |
-
#: app/features/ix.php:2781 app/features/mec/meta_boxes/display_options.php:
|
1403 |
#: app/features/mec/meta_boxes/search_form.php:45
|
1404 |
#: app/features/mec/meta_boxes/search_form.php:106
|
1405 |
#: app/features/mec/meta_boxes/search_form.php:167
|
@@ -1412,7 +1412,7 @@ msgstr "Localización"
|
|
1412 |
#: app/features/mec/meta_boxes/search_form.php:587
|
1413 |
#: app/features/organizers.php:58 app/features/organizers.php:199
|
1414 |
#: app/features/organizers.php:255 app/features/organizers.php:257
|
1415 |
-
#: app/features/organizers.php:266 app/libraries/main.php:
|
1416 |
#: app/libraries/skins.php:833 app/skins/single.php:644
|
1417 |
#: app/skins/single/default.php:194 app/skins/single/default.php:405
|
1418 |
#: app/skins/single/m1.php:90 app/skins/single/m2.php:22
|
@@ -1420,56 +1420,56 @@ msgstr "Localización"
|
|
1420 |
msgid "Organizer"
|
1421 |
msgstr "Organizador"
|
1422 |
|
1423 |
-
#: app/features/events.php:
|
1424 |
msgid "Repeat"
|
1425 |
msgstr "Repetir"
|
1426 |
|
1427 |
-
#: app/features/events.php:
|
1428 |
msgid "Author"
|
1429 |
msgstr "Autor"
|
1430 |
|
1431 |
-
#: app/features/events.php:
|
1432 |
msgid "iCal Export"
|
1433 |
msgstr "Exportar iCal"
|
1434 |
|
1435 |
-
#: app/features/events.php:
|
1436 |
msgid "CSV Export"
|
1437 |
msgstr "Exportar CSV"
|
1438 |
|
1439 |
-
#: app/features/events.php:
|
1440 |
msgid "MS Excel Export"
|
1441 |
msgstr "Exportar Excel"
|
1442 |
|
1443 |
-
#: app/features/events.php:
|
1444 |
msgid "XML Export"
|
1445 |
msgstr "Exportación XML"
|
1446 |
|
1447 |
-
#: app/features/events.php:
|
1448 |
msgid "JSON Export"
|
1449 |
msgstr "Exportación JSON"
|
1450 |
|
1451 |
-
#: app/features/events.php:
|
1452 |
msgid "Duplicate"
|
1453 |
msgstr "Duplicar"
|
1454 |
|
1455 |
-
#: app/features/events.php:
|
1456 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
1457 |
#: app/features/labels.php:176 app/features/locations.php:228
|
1458 |
#: app/features/organizers.php:198 app/features/speakers.php:242
|
1459 |
msgid "ID"
|
1460 |
msgstr "ID"
|
1461 |
|
1462 |
-
#: app/features/events.php:
|
1463 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
1464 |
msgid "Link"
|
1465 |
msgstr "Enlace"
|
1466 |
|
1467 |
-
#: app/features/events.php:
|
1468 |
#, php-format
|
1469 |
msgid "%s Tel"
|
1470 |
msgstr "%s Teléfono "
|
1471 |
|
1472 |
-
#: app/features/events.php:
|
1473 |
#, php-format
|
1474 |
msgid "%s Email"
|
1475 |
msgstr "%s Correo electrónico"
|
@@ -1516,11 +1516,11 @@ msgstr "¡El Captcha no es válido! Inténtalo de nuevo."
|
|
1516 |
msgid "Please fill event title field!"
|
1517 |
msgstr "Por favor llena el campo de título del evento!"
|
1518 |
|
1519 |
-
#: app/features/fes.php:
|
1520 |
msgid "The event submitted. It will publish as soon as possible."
|
1521 |
msgstr "El evento presentado. Se publicará lo antes posible."
|
1522 |
|
1523 |
-
#: app/features/fes.php:
|
1524 |
msgid "The event published."
|
1525 |
msgstr "El evento a sido publicado."
|
1526 |
|
@@ -1556,7 +1556,7 @@ msgstr ""
|
|
1556 |
"Si lo rellenas, se reemplazará en vez del enlace de la página del evento por "
|
1557 |
"defecto. Inserta todo el enlace incluyendo http(s)://"
|
1558 |
|
1559 |
-
#: app/features/fes/form.php:723 app/features/mec/settings.php:
|
1560 |
msgid "Featured Image"
|
1561 |
msgstr "Imagen destacada"
|
1562 |
|
@@ -1566,23 +1566,23 @@ msgstr "Eliminar imagen"
|
|
1566 |
|
1567 |
#: app/features/fes/form.php:770 app/features/labels.php:61
|
1568 |
#: app/features/labels.php:220 app/features/mec.php:333
|
1569 |
-
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:
|
1570 |
#: app/skins/single.php:536 app/skins/single/default.php:132
|
1571 |
#: app/skins/single/default.php:343 app/skins/single/m1.php:64
|
1572 |
#: app/skins/single/modern.php:214
|
1573 |
msgid "Labels"
|
1574 |
msgstr "Etiquetas"
|
1575 |
|
1576 |
-
#: app/features/fes/form.php:
|
1577 |
#: app/features/mec/meta_boxes/filter.php:138
|
1578 |
msgid "Tags"
|
1579 |
msgstr "Tags"
|
1580 |
|
1581 |
-
#: app/features/fes/form.php:
|
1582 |
msgid "Insert your desired tags, comma separated."
|
1583 |
msgstr "Inserta las etiquetas que quieras, separadas por comas."
|
1584 |
|
1585 |
-
#: app/features/fes/form.php:
|
1586 |
msgid "Submit"
|
1587 |
msgstr "Enviar"
|
1588 |
|
@@ -1607,12 +1607,12 @@ msgstr "No se encontraron eventos! %s"
|
|
1607 |
msgid "MEC - Import / Export"
|
1608 |
msgstr "MEC - Importar / Exportar"
|
1609 |
|
1610 |
-
#: app/features/ix.php:107 app/features/mec/booking.php:
|
1611 |
-
#: app/features/mec/gateways.php:
|
1612 |
-
#: app/features/mec/messages.php:
|
1613 |
-
#: app/features/mec/notifications.php:
|
1614 |
-
#: app/features/mec/settings.php:
|
1615 |
-
#: app/features/mec/styles.php:
|
1616 |
#: app/features/mec/support.php:73
|
1617 |
msgid "Import / Export"
|
1618 |
msgstr "Import / Export"
|
@@ -1647,7 +1647,7 @@ msgstr "¡El Plugin de terceros no es válido!"
|
|
1647 |
msgid "Both of API key and Calendar ID are required!"
|
1648 |
msgstr "¡Tanto la clave de API como la ID de Calendario son necesarias!"
|
1649 |
|
1650 |
-
#: app/features/ix.php:2000 app/features/ix.php:2419 app/features/ix.php:
|
1651 |
msgid "Please select some events to import!"
|
1652 |
msgstr "Por favor, ¡selecciona algunos eventos para importar!"
|
1653 |
|
@@ -1684,36 +1684,36 @@ msgstr ""
|
|
1684 |
"¡Todas las aplicaciones de cliente, secreto de cliente y ID de calendario "
|
1685 |
"son obligatorios!"
|
1686 |
|
1687 |
-
#: app/features/ix.php:
|
1688 |
#, php-format
|
1689 |
msgid "%s events added to Google Calendar successfully."
|
1690 |
msgstr "%s eventos añadidos con éxito a Google Calendar."
|
1691 |
|
1692 |
-
#: app/features/ix.php:
|
1693 |
#, php-format
|
1694 |
msgid "%s previously added events get updated."
|
1695 |
msgstr "%s eventos añadidos previamente se actualizan."
|
1696 |
|
1697 |
-
#: app/features/ix.php:
|
1698 |
#, php-format
|
1699 |
msgid "%s events failed to add for following reasons: %s"
|
1700 |
msgstr "%s Eventos fallaron al añadirse por los siguientes motivos: %s"
|
1701 |
|
1702 |
-
#: app/features/ix.php:
|
1703 |
msgid "Please insert your Facebook page's link."
|
1704 |
msgstr ""
|
1705 |
|
1706 |
-
#: app/features/ix.php:
|
1707 |
msgid ""
|
1708 |
"We couldn't recognize your Facebook page. Please check it and provide us a "
|
1709 |
"valid Facebook page link."
|
1710 |
msgstr ""
|
1711 |
|
1712 |
-
#: app/features/ix.php:
|
1713 |
msgid "Please insert your facebook page's link."
|
1714 |
msgstr "Por favor, inserta el enlace de tu página de Facebook."
|
1715 |
|
1716 |
-
#: app/features/ix.php:
|
1717 |
msgid ""
|
1718 |
"We couldn't recognize your Facebook page. Please check it and provide us a "
|
1719 |
"valid facebook page link."
|
@@ -1748,7 +1748,7 @@ msgstr "Sincronización"
|
|
1748 |
#: app/features/ix/import.php:15 app/features/ix/import_f_calendar.php:15
|
1749 |
#: app/features/ix/import_g_calendar.php:15
|
1750 |
#: app/features/ix/import_meetup.php:15 app/features/ix/sync.php:15
|
1751 |
-
#: app/features/ix/thirdparty.php:15 app/features/mec/ie.php:
|
1752 |
msgid "Export"
|
1753 |
msgstr "Exportar"
|
1754 |
|
@@ -1759,7 +1759,7 @@ msgstr "Exportar"
|
|
1759 |
#: app/features/ix/import_g_calendar.php:103
|
1760 |
#: app/features/ix/import_meetup.php:16 app/features/ix/import_meetup.php:85
|
1761 |
#: app/features/ix/sync.php:16 app/features/ix/thirdparty.php:16
|
1762 |
-
#: app/features/ix/thirdparty.php:98 app/features/mec/ie.php:
|
1763 |
msgid "Import"
|
1764 |
msgstr "Importar"
|
1765 |
|
@@ -1883,16 +1883,16 @@ msgstr "Toggle"
|
|
1883 |
#: app/features/ix/export_g_calendar.php:72
|
1884 |
#: app/features/ix/export_g_calendar.php:147
|
1885 |
#: app/features/ix/export_g_calendar.php:164
|
1886 |
-
#: app/features/mec/notifications.php:
|
1887 |
-
#: app/features/mec/notifications.php:
|
1888 |
-
#: app/features/mec/notifications.php:
|
1889 |
-
#: app/features/mec/notifications.php:
|
1890 |
msgid "Add to Google Calendar"
|
1891 |
msgstr "Añadir a Google Calendar"
|
1892 |
|
1893 |
-
#: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:
|
1894 |
-
#: app/features/mec/modules.php:602 app/features/mec/notifications.php:
|
1895 |
-
#: app/features/mec/settings.php:
|
1896 |
msgid "Checking ..."
|
1897 |
msgstr "Verificando…"
|
1898 |
|
@@ -1939,24 +1939,24 @@ msgstr ""
|
|
1939 |
msgid "ICS Feed"
|
1940 |
msgstr "ICS Feed"
|
1941 |
|
1942 |
-
#: app/features/ix/import.php:46 app/features/mec/booking.php:
|
1943 |
-
#: app/features/mec/booking.php:
|
1944 |
-
#: app/features/mec/booking.php:
|
1945 |
#: app/features/mec/modules.php:408 app/features/mec/modules.php:425
|
1946 |
#, php-format
|
1947 |
msgid "%s is required to use this feature."
|
1948 |
msgstr "Se requiere %s para usar esta funcionalidad."
|
1949 |
|
1950 |
#: app/features/ix/import.php:46 app/features/ix/sync.php:22
|
1951 |
-
#: app/features/mec/booking.php:
|
1952 |
-
#: app/features/mec/booking.php:
|
1953 |
#: app/features/mec/meta_boxes/display_options.php:296
|
1954 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1955 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1956 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1957 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1958 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1959 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1960 |
#: app/features/mec/modules.php:267 app/features/mec/modules.php:408
|
1961 |
#: app/features/mec/modules.php:425
|
1962 |
msgid "Pro version of Modern Events Calendar"
|
@@ -2122,7 +2122,7 @@ msgid "Auto Synchronization"
|
|
2122 |
msgstr "Autosincronización"
|
2123 |
|
2124 |
#: app/features/ix/sync.php:22
|
2125 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2126 |
#, php-format
|
2127 |
msgid "%s is required to use synchronization feature."
|
2128 |
msgstr "Se requiere %s para usar la funcionalidad de sincronización."
|
@@ -2133,7 +2133,7 @@ msgstr "Importación automática a Google"
|
|
2133 |
|
2134 |
#: app/features/ix/sync.php:32 app/features/ix/sync.php:41
|
2135 |
#: app/features/ix/sync.php:52 app/features/ix/sync.php:63
|
2136 |
-
#: app/features/mec/notifications.php:
|
2137 |
msgid "Important Note"
|
2138 |
msgstr "Nota importante"
|
2139 |
|
@@ -2246,13 +2246,13 @@ msgstr "Elige un color de etiqueta"
|
|
2246 |
#: app/features/mec/meta_boxes/display_options.php:32
|
2247 |
#: app/features/mec/meta_boxes/display_options.php:157
|
2248 |
#: app/features/mec/meta_boxes/display_options.php:301
|
2249 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2250 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2251 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2252 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2253 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2254 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2255 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2256 |
msgid "Style"
|
2257 |
msgstr "Estilo"
|
2258 |
|
@@ -2274,7 +2274,7 @@ msgid "Featured"
|
|
2274 |
msgstr ""
|
2275 |
|
2276 |
#: app/features/labels.php:117 app/features/labels.php:142
|
2277 |
-
#: app/libraries/main.php:
|
2278 |
#: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:59
|
2279 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
|
2280 |
#: app/skins/daily_view/render.php:27 app/skins/grid/render.php:53
|
@@ -2309,7 +2309,7 @@ msgstr "Evento %s"
|
|
2309 |
|
2310 |
#: app/features/locations.php:59 app/features/mec.php:334
|
2311 |
#: app/features/mec/dashboard.php:202 app/features/mec/meta_boxes/filter.php:87
|
2312 |
-
#: app/libraries/main.php:
|
2313 |
msgid "Locations"
|
2314 |
msgstr "Lugar"
|
2315 |
|
@@ -2380,7 +2380,7 @@ msgstr "Nombre del lugar"
|
|
2380 |
msgid "eg. City Hall"
|
2381 |
msgstr "ej. Almería"
|
2382 |
|
2383 |
-
#: app/features/locations.php:309 app/features/mec/settings.php:
|
2384 |
#: app/widgets/single.php:115
|
2385 |
msgid "Event Location"
|
2386 |
msgstr "Lugar del evento"
|
@@ -2416,7 +2416,7 @@ msgstr "Elegir imagen"
|
|
2416 |
msgid "Don't show map in single event page"
|
2417 |
msgstr "No mostrar el mapa en la página del detalle del evento"
|
2418 |
|
2419 |
-
#: app/features/locations.php:355 app/libraries/main.php:
|
2420 |
#, fuzzy
|
2421 |
#| msgid "Locations"
|
2422 |
msgid "Other Locations"
|
@@ -2469,7 +2469,7 @@ msgstr "Soporte"
|
|
2469 |
|
2470 |
#: app/features/mec.php:335 app/features/mec/dashboard.php:209
|
2471 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2472 |
-
#: app/libraries/main.php:
|
2473 |
msgid "Organizers"
|
2474 |
msgstr "Organizadores"
|
2475 |
|
@@ -2574,32 +2574,32 @@ msgid ""
|
|
2574 |
"your host provider in this regard."
|
2575 |
msgstr ""
|
2576 |
|
2577 |
-
#: app/features/mec/booking.php:24 app/features/mec/booking.php:
|
2578 |
-
#: app/features/mec/booking.php:
|
2579 |
-
#: app/features/mec/booking.php:
|
2580 |
-
#: app/features/mec/gateways.php:
|
2581 |
-
#: app/features/mec/gateways.php:
|
2582 |
-
#: app/features/mec/messages.php:11 app/features/mec/messages.php:
|
2583 |
-
#: app/features/mec/messages.php:
|
2584 |
-
#: app/features/mec/messages.php:
|
2585 |
#: app/features/mec/modules.php:542 app/features/mec/modules.php:552
|
2586 |
#: app/features/mec/modules.php:619 app/features/mec/modules.php:633
|
2587 |
-
#: app/features/mec/notifications.php:10 app/features/mec/notifications.php:
|
2588 |
-
#: app/features/mec/notifications.php:
|
2589 |
-
#: app/features/mec/notifications.php:
|
2590 |
-
#: app/features/mec/notifications.php:
|
2591 |
-
#: app/features/mec/regform.php:
|
2592 |
-
#: app/features/mec/regform.php:
|
2593 |
-
#: app/features/mec/settings.php:31 app/features/mec/settings.php:
|
2594 |
-
#: app/features/mec/settings.php:
|
2595 |
-
#: app/features/mec/settings.php:
|
2596 |
-
#: app/features/mec/single.php:
|
2597 |
-
#: app/features/mec/single.php:
|
2598 |
-
#: app/features/mec/styles.php:11 app/features/mec/styles.php:
|
2599 |
-
#: app/features/mec/styles.php:
|
2600 |
-
#: app/features/mec/styles.php:
|
2601 |
-
#: app/features/mec/styling.php:
|
2602 |
-
#: app/features/mec/styling.php:
|
2603 |
msgid "Save Changes"
|
2604 |
msgstr "Guardar Cambios"
|
2605 |
|
@@ -2607,7 +2607,7 @@ msgstr "Guardar Cambios"
|
|
2607 |
#: app/features/mec/ie.php:25 app/features/mec/messages.php:29
|
2608 |
#: app/features/mec/modules.php:36 app/features/mec/notifications.php:28
|
2609 |
#: app/features/mec/regform.php:65 app/features/mec/settings.php:57
|
2610 |
-
#: app/features/mec/settings.php:
|
2611 |
#: app/features/mec/styles.php:29 app/features/mec/styling.php:51
|
2612 |
msgid "Archive Pages"
|
2613 |
msgstr "Páginas de archivo"
|
@@ -2616,7 +2616,7 @@ msgstr "Páginas de archivo"
|
|
2616 |
#: app/features/mec/ie.php:30 app/features/mec/messages.php:34
|
2617 |
#: app/features/mec/modules.php:41 app/features/mec/notifications.php:33
|
2618 |
#: app/features/mec/regform.php:70 app/features/mec/settings.php:87
|
2619 |
-
#: app/features/mec/settings.php:
|
2620 |
#: app/features/mec/styles.php:34 app/features/mec/styling.php:56
|
2621 |
msgid "User Profile"
|
2622 |
msgstr ""
|
@@ -2647,7 +2647,7 @@ msgstr "Estilo de evento único"
|
|
2647 |
#: app/features/mec/ie.php:46 app/features/mec/messages.php:50
|
2648 |
#: app/features/mec/modules.php:57 app/features/mec/notifications.php:49
|
2649 |
#: app/features/mec/regform.php:86 app/features/mec/settings.php:117
|
2650 |
-
#: app/features/mec/single.php:56 app/features/mec/single.php:
|
2651 |
#: app/features/mec/styles.php:50 app/features/mec/styling.php:72
|
2652 |
#, fuzzy
|
2653 |
#| msgid "Single Event Style"
|
@@ -2658,7 +2658,7 @@ msgstr "Estilo de evento único"
|
|
2658 |
#: app/features/mec/ie.php:49 app/features/mec/messages.php:53
|
2659 |
#: app/features/mec/modules.php:60 app/features/mec/notifications.php:52
|
2660 |
#: app/features/mec/regform.php:89 app/features/mec/settings.php:120
|
2661 |
-
#: app/features/mec/single.php:74 app/features/mec/single.php:
|
2662 |
#: app/features/mec/styles.php:53 app/features/mec/styling.php:75
|
2663 |
msgid "Additional Organizers"
|
2664 |
msgstr "Organizadores adicionales"
|
@@ -2674,7 +2674,7 @@ msgstr "Organizadores adicionales"
|
|
2674 |
msgid "Additional Locations"
|
2675 |
msgstr "Organizadores adicionales"
|
2676 |
|
2677 |
-
#: app/features/mec/booking.php:98 app/features/mec/booking.php:
|
2678 |
#: app/features/mec/gateways.php:71 app/features/mec/ie.php:67
|
2679 |
#: app/features/mec/messages.php:71 app/features/mec/modules.php:78
|
2680 |
#: app/features/mec/notifications.php:70 app/features/mec/regform.php:107
|
@@ -2683,7 +2683,7 @@ msgstr "Organizadores adicionales"
|
|
2683 |
msgid "Taxes / Fees"
|
2684 |
msgstr "Impuestos/Tasas"
|
2685 |
|
2686 |
-
#: app/features/mec/booking.php:104 app/features/mec/booking.php:
|
2687 |
#: app/features/mec/gateways.php:72 app/features/mec/ie.php:68
|
2688 |
#: app/features/mec/messages.php:72 app/features/mec/modules.php:79
|
2689 |
#: app/features/mec/notifications.php:71 app/features/mec/regform.php:108
|
@@ -2754,125 +2754,125 @@ msgstr "El Tiempo"
|
|
2754 |
msgid "Next Event"
|
2755 |
msgstr "Próximo Evento"
|
2756 |
|
2757 |
-
#: app/features/mec/booking.php:
|
2758 |
-
#: app/features/mec/ie.php:
|
2759 |
-
#: app/features/mec/modules.php:195 app/features/mec/notifications.php:
|
2760 |
-
#: app/features/mec/notifications.php:
|
2761 |
-
#: app/features/mec/settings.php:
|
2762 |
-
#: app/features/mec/styles.php:
|
2763 |
msgid "Booking Verification"
|
2764 |
msgstr "Verificación de la reserva"
|
2765 |
|
2766 |
-
#: app/features/mec/booking.php:
|
2767 |
-
#: app/features/mec/gateways.php:
|
2768 |
-
#: app/features/mec/messages.php:
|
2769 |
-
#: app/features/mec/notifications.php:
|
2770 |
-
#: app/features/mec/notifications.php:
|
2771 |
-
#: app/features/mec/settings.php:
|
2772 |
-
#: app/features/mec/styles.php:
|
2773 |
msgid "Booking Confirmation"
|
2774 |
msgstr "Confirmación de reserva"
|
2775 |
|
2776 |
-
#: app/features/mec/booking.php:
|
2777 |
-
#: app/features/mec/ie.php:
|
2778 |
-
#: app/features/mec/modules.php:197 app/features/mec/notifications.php:
|
2779 |
-
#: app/features/mec/notifications.php:
|
2780 |
-
#: app/features/mec/settings.php:
|
2781 |
-
#: app/features/mec/styles.php:
|
2782 |
#, fuzzy
|
2783 |
#| msgid "Booking cancellation link."
|
2784 |
msgid "Booking Cancellation"
|
2785 |
msgstr "Enlace de cancelación de la reserva."
|
2786 |
|
2787 |
-
#: app/features/mec/booking.php:
|
2788 |
-
#: app/features/mec/ie.php:
|
2789 |
-
#: app/features/mec/modules.php:198 app/features/mec/notifications.php:
|
2790 |
-
#: app/features/mec/notifications.php:
|
2791 |
-
#: app/features/mec/settings.php:
|
2792 |
-
#: app/features/mec/styles.php:
|
2793 |
msgid "Admin"
|
2794 |
msgstr ""
|
2795 |
|
2796 |
-
#: app/features/mec/booking.php:170 app/features/mec/gateways.php:135
|
2797 |
-
#: app/features/mec/ie.php:131 app/features/mec/messages.php:135
|
2798 |
-
#: app/features/mec/modules.php:199 app/features/mec/notifications.php:164
|
2799 |
-
#: app/features/mec/notifications.php:519 app/features/mec/regform.php:169
|
2800 |
-
#: app/features/mec/settings.php:202 app/features/mec/single.php:163
|
2801 |
-
#: app/features/mec/styles.php:135 app/features/mec/styling.php:157
|
2802 |
-
#: app/libraries/notifications.php:354
|
2803 |
-
msgid "Booking Reminder"
|
2804 |
-
msgstr "Recordatorio de reserva"
|
2805 |
-
|
2806 |
#: app/features/mec/booking.php:172 app/features/mec/gateways.php:137
|
2807 |
#: app/features/mec/ie.php:133 app/features/mec/messages.php:137
|
2808 |
-
#: app/features/mec/modules.php:
|
2809 |
-
#: app/features/mec/notifications.php:
|
2810 |
#: app/features/mec/settings.php:204 app/features/mec/single.php:165
|
2811 |
#: app/features/mec/styles.php:137 app/features/mec/styling.php:159
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2812 |
#: app/features/mec/support-page.php:80
|
2813 |
msgid "New Event"
|
2814 |
msgstr "Nuevo evento"
|
2815 |
|
2816 |
-
#: app/features/mec/booking.php:
|
2817 |
-
#: app/features/mec/ie.php:
|
2818 |
-
#: app/features/mec/modules.php:209 app/features/mec/notifications.php:
|
2819 |
-
#: app/features/mec/regform.php:
|
2820 |
-
#: app/features/mec/single.php:
|
2821 |
-
#: app/features/mec/styling.php:
|
2822 |
msgid "Styling Options"
|
2823 |
msgstr "Opciones visuales"
|
2824 |
|
2825 |
-
#: app/features/mec/booking.php:
|
2826 |
-
#: app/features/mec/ie.php:
|
2827 |
-
#: app/features/mec/modules.php:216 app/features/mec/notifications.php:
|
2828 |
-
#: app/features/mec/regform.php:
|
2829 |
-
#: app/features/mec/single.php:
|
2830 |
-
#: app/features/mec/styling.php:
|
2831 |
msgid "Custom CSS"
|
2832 |
msgstr "CSS personalizado"
|
2833 |
|
2834 |
-
#: app/features/mec/booking.php:
|
2835 |
-
#: app/features/mec/ie.php:
|
2836 |
-
#: app/features/mec/messages.php:
|
2837 |
-
#: app/features/mec/notifications.php:
|
2838 |
-
#: app/features/mec/settings.php:
|
2839 |
-
#: app/features/mec/styles.php:
|
2840 |
#: app/features/mec/support.php:66
|
2841 |
msgid "Messages"
|
2842 |
msgstr "Mensajes"
|
2843 |
|
2844 |
-
#: app/features/mec/booking.php:
|
2845 |
msgid "Enable booking module"
|
2846 |
msgstr "Activar módulo de reservas"
|
2847 |
|
2848 |
-
#: app/features/mec/booking.php:
|
2849 |
msgid ""
|
2850 |
"After enable it, you should reloading this page to see Payment Gateways on "
|
2851 |
"settings and see a new menu on Dashboard"
|
2852 |
msgstr ""
|
2853 |
|
2854 |
-
#: app/features/mec/booking.php:
|
2855 |
#: app/features/mec/modules.php:491 app/features/mec/modules.php:496
|
2856 |
msgid "Date Format"
|
2857 |
msgstr "Formato de fecha"
|
2858 |
|
2859 |
-
#: app/features/mec/booking.php:
|
2860 |
msgid "Default is Y-m-d"
|
2861 |
msgstr "El valor predeterminado es Y-m-d"
|
2862 |
|
2863 |
-
#: app/features/mec/booking.php:
|
2864 |
msgid "Maximum Dates"
|
2865 |
msgstr "Fechas máximas"
|
2866 |
|
2867 |
-
#: app/features/mec/booking.php:
|
2868 |
msgid "Default is 6"
|
2869 |
msgstr "El valor predeterminado es 6"
|
2870 |
|
2871 |
-
#: app/features/mec/booking.php:
|
2872 |
msgid "Thank You Page"
|
2873 |
msgstr "Página de agradecimiento"
|
2874 |
|
2875 |
-
#: app/features/mec/booking.php:
|
2876 |
msgid ""
|
2877 |
"User redirects to this page after booking. Leave it empty if you want to "
|
2878 |
"disable it."
|
@@ -2880,15 +2880,15 @@ msgstr ""
|
|
2880 |
"Se redirecciona al usuario a esta pagina una vez que completa la reserva. "
|
2881 |
"Déjalo vacío si lo deseas desactivado."
|
2882 |
|
2883 |
-
#: app/features/mec/booking.php:
|
2884 |
msgid "Enable Express Attendees Form"
|
2885 |
msgstr "Habilitar formulario de asistentes exprés"
|
2886 |
|
2887 |
-
#: app/features/mec/booking.php:
|
2888 |
msgid "Attendees Form"
|
2889 |
msgstr "Asistentes"
|
2890 |
|
2891 |
-
#: app/features/mec/booking.php:
|
2892 |
msgid ""
|
2893 |
"Users are able to apply first attendee information for other attendees in "
|
2894 |
"the booking form."
|
@@ -2896,80 +2896,80 @@ msgstr ""
|
|
2896 |
"Los usuarios son capaces de copiar la información del primer invitado para "
|
2897 |
"los demás invitados en el formulario de reservas."
|
2898 |
|
2899 |
-
#: app/features/mec/booking.php:
|
2900 |
msgid "Email verification"
|
2901 |
msgstr "Verificación por email"
|
2902 |
|
2903 |
-
#: app/features/mec/booking.php:
|
2904 |
msgid "Auto verification for free bookings"
|
2905 |
msgstr "Auto verificación para reservas gratuitas"
|
2906 |
|
2907 |
-
#: app/features/mec/booking.php:
|
2908 |
msgid "Auto verification for paid bookings"
|
2909 |
msgstr "Auto verificación para reservas de pago"
|
2910 |
|
2911 |
-
#: app/features/mec/booking.php:
|
2912 |
msgid "Auto confirmation for free bookings"
|
2913 |
msgstr "Confirmación automática para reservas gratuitas"
|
2914 |
|
2915 |
-
#: app/features/mec/booking.php:
|
2916 |
msgid "Auto confirmation for paid bookings"
|
2917 |
msgstr "Confirmación automática para reservas pagas"
|
2918 |
|
2919 |
-
#: app/features/mec/booking.php:
|
2920 |
msgid "Enable coupons module"
|
2921 |
msgstr "Activar módulo de cupones"
|
2922 |
|
2923 |
-
#: app/features/mec/booking.php:
|
2924 |
msgid ""
|
2925 |
"After enable it, you should reloading this page to see a new menu on "
|
2926 |
"Dashboard > Booking"
|
2927 |
msgstr ""
|
2928 |
|
2929 |
-
#: app/features/mec/booking.php:
|
2930 |
msgid "Enable taxes / fees module"
|
2931 |
msgstr "Activar módulo de Impuestos/Tasas"
|
2932 |
|
2933 |
-
#: app/features/mec/booking.php:
|
2934 |
msgid "Add Fee"
|
2935 |
msgstr "Nueva tasa"
|
2936 |
|
2937 |
-
#: app/features/mec/booking.php:
|
2938 |
msgid "Enable ticket options module"
|
2939 |
msgstr ""
|
2940 |
|
2941 |
-
#: app/features/mec/booking.php:
|
2942 |
msgid "Add Variation / Option"
|
2943 |
msgstr ""
|
2944 |
|
2945 |
-
#: app/features/mec/booking.php:
|
2946 |
-
#: app/features/mec/messages.php:
|
2947 |
-
#: app/features/mec/notifications.php:
|
2948 |
-
#: app/features/mec/settings.php:
|
2949 |
-
#: app/features/mec/styles.php:
|
2950 |
msgid "Saved"
|
2951 |
msgstr "Guardado"
|
2952 |
|
2953 |
-
#: app/features/mec/booking.php:
|
2954 |
-
#: app/features/mec/messages.php:
|
2955 |
-
#: app/features/mec/notifications.php:
|
2956 |
-
#: app/features/mec/settings.php:
|
2957 |
-
#: app/features/mec/styles.php:
|
2958 |
msgid "Settings Saved!"
|
2959 |
msgstr "¡Ajustes guardados!"
|
2960 |
|
2961 |
-
#: app/features/mec/booking.php:
|
2962 |
#: app/features/mec/modules.php:600 app/features/mec/modules.php:622
|
2963 |
-
#: app/features/mec/notifications.php:
|
2964 |
-
#: app/features/mec/notifications.php:
|
2965 |
-
#: app/features/mec/settings.php:
|
2966 |
-
#: app/features/mec/single.php:
|
2967 |
msgid "Verified"
|
2968 |
msgstr "Verificado"
|
2969 |
|
2970 |
-
#: app/features/mec/booking.php:
|
2971 |
-
#: app/features/mec/notifications.php:
|
2972 |
-
#: app/features/mec/single.php:
|
2973 |
msgid "Please Refresh Page"
|
2974 |
msgstr "Por favor, actualiza la página"
|
2975 |
|
@@ -3047,7 +3047,7 @@ msgstr ""
|
|
3047 |
msgid "Activate Addons"
|
3048 |
msgstr "Activación MEC"
|
3049 |
|
3050 |
-
#: app/features/mec/dashboard.php:220 app/features/mec/settings.php:
|
3051 |
msgid "Upcoming Events"
|
3052 |
msgstr "Próximos Eventos"
|
3053 |
|
@@ -3096,31 +3096,31 @@ msgstr "Ventas Totales (%s)"
|
|
3096 |
msgid "Change Log"
|
3097 |
msgstr "Historial de cambios"
|
3098 |
|
3099 |
-
#: app/features/mec/ie.php:
|
3100 |
msgid ""
|
3101 |
"Insert your backup files below and press import to restore your site's "
|
3102 |
"options to the last backup."
|
3103 |
msgstr ""
|
3104 |
|
3105 |
-
#: app/features/mec/ie.php:
|
3106 |
msgid ""
|
3107 |
"WARNING! Restoring backup will overwrite all of your current option values. "
|
3108 |
"Caution Indeed."
|
3109 |
msgstr ""
|
3110 |
|
3111 |
-
#: app/features/mec/ie.php:
|
3112 |
msgid "Please paste your options here"
|
3113 |
msgstr ""
|
3114 |
|
3115 |
-
#: app/features/mec/ie.php:
|
3116 |
msgid "Import Settings"
|
3117 |
msgstr ""
|
3118 |
|
3119 |
-
#: app/features/mec/ie.php:
|
3120 |
msgid "Download Settings"
|
3121 |
msgstr ""
|
3122 |
|
3123 |
-
#: app/features/mec/messages.php:
|
3124 |
msgid ""
|
3125 |
"You can change some MEC messages here simply. For example if you like to "
|
3126 |
"change \"REGISTER\" button label, you can do it here. By the Way, if your "
|
@@ -3138,63 +3138,63 @@ msgstr "Tema"
|
|
3138 |
|
3139 |
#: app/features/mec/meta_boxes/display_options.php:34
|
3140 |
#: app/features/mec/meta_boxes/display_options.php:159
|
3141 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3142 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3143 |
-
#: app/features/mec/settings.php:
|
3144 |
-
#: app/features/mec/settings.php:
|
3145 |
-
#: app/features/mec/settings.php:
|
3146 |
msgid "Classic"
|
3147 |
msgstr "Clásico"
|
3148 |
|
3149 |
#: app/features/mec/meta_boxes/display_options.php:35
|
3150 |
#: app/features/mec/meta_boxes/display_options.php:161
|
3151 |
-
#: app/features/mec/settings.php:
|
3152 |
-
#: app/features/mec/settings.php:
|
3153 |
msgid "Minimal"
|
3154 |
msgstr "Mínimo"
|
3155 |
|
3156 |
#: app/features/mec/meta_boxes/display_options.php:36
|
3157 |
#: app/features/mec/meta_boxes/display_options.php:162
|
3158 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3159 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3160 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3161 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3162 |
-
#: app/features/mec/settings.php:
|
3163 |
-
#: app/features/mec/settings.php:
|
3164 |
-
#: app/features/mec/settings.php:
|
3165 |
-
#: app/features/mec/settings.php:
|
3166 |
msgid "Modern"
|
3167 |
msgstr "Moderno"
|
3168 |
|
3169 |
#: app/features/mec/meta_boxes/display_options.php:37
|
3170 |
-
#: app/features/mec/settings.php:
|
3171 |
msgid "Standard"
|
3172 |
msgstr "Estándar"
|
3173 |
|
3174 |
#: app/features/mec/meta_boxes/display_options.php:38
|
3175 |
-
#: app/features/mec/settings.php:
|
3176 |
msgid "Accordion"
|
3177 |
msgstr "Acordeón"
|
3178 |
|
3179 |
#: app/features/mec/meta_boxes/display_options.php:44
|
3180 |
#: app/features/mec/meta_boxes/display_options.php:171
|
3181 |
#: app/features/mec/meta_boxes/display_options.php:309
|
3182 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3183 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3184 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3185 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3186 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3187 |
msgid "Today"
|
3188 |
msgstr "Hoy"
|
3189 |
|
3190 |
#: app/features/mec/meta_boxes/display_options.php:45
|
3191 |
#: app/features/mec/meta_boxes/display_options.php:172
|
3192 |
#: app/features/mec/meta_boxes/display_options.php:310
|
3193 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3194 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3195 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3196 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3197 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3198 |
msgid "Tomorrow"
|
3199 |
msgstr "Mañana"
|
3200 |
|
@@ -3202,14 +3202,14 @@ msgstr "Mañana"
|
|
3202 |
#: app/features/mec/meta_boxes/display_options.php:173
|
3203 |
#: app/features/mec/meta_boxes/display_options.php:311
|
3204 |
#: app/features/mec/meta_boxes/display_options.php:364
|
3205 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3206 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3207 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3208 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3209 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3210 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3211 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3212 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3213 |
msgid "Start of Current Month"
|
3214 |
msgstr "Inicio del mes actual"
|
3215 |
|
@@ -3217,14 +3217,14 @@ msgstr "Inicio del mes actual"
|
|
3217 |
#: app/features/mec/meta_boxes/display_options.php:174
|
3218 |
#: app/features/mec/meta_boxes/display_options.php:312
|
3219 |
#: app/features/mec/meta_boxes/display_options.php:365
|
3220 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3221 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3222 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3223 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3224 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3225 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3226 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3227 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3228 |
msgid "Start of Next Month"
|
3229 |
msgstr "Inicio del siguiente mes"
|
3230 |
|
@@ -3232,15 +3232,15 @@ msgstr "Inicio del siguiente mes"
|
|
3232 |
#: app/features/mec/meta_boxes/display_options.php:175
|
3233 |
#: app/features/mec/meta_boxes/display_options.php:313
|
3234 |
#: app/features/mec/meta_boxes/display_options.php:366
|
3235 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3236 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3237 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3238 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3239 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3240 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3241 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3242 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3243 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3244 |
msgid "On a certain date"
|
3245 |
msgstr "Una fecha concreta"
|
3246 |
|
@@ -3248,15 +3248,15 @@ msgstr "Una fecha concreta"
|
|
3248 |
#: app/features/mec/meta_boxes/display_options.php:178
|
3249 |
#: app/features/mec/meta_boxes/display_options.php:316
|
3250 |
#: app/features/mec/meta_boxes/display_options.php:369
|
3251 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3252 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3253 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3254 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3255 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3256 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3257 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3258 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3259 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3260 |
#, php-format
|
3261 |
msgid "eg. %s"
|
3262 |
msgstr "ej. %s"
|
@@ -3287,40 +3287,40 @@ msgstr "ej. %s"
|
|
3287 |
#: app/features/mec/meta_boxes/display_options.php:258
|
3288 |
#: app/features/mec/meta_boxes/display_options.php:320
|
3289 |
#: app/features/mec/meta_boxes/display_options.php:325
|
3290 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3291 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3292 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3293 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3294 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3295 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3296 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3297 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3298 |
-
#: app/features/mec/meta_boxes/display_options.php:852
|
3299 |
#: app/features/mec/meta_boxes/display_options.php:856
|
3300 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3301 |
#: app/features/mec/meta_boxes/display_options.php:888
|
3302 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3303 |
#: app/features/mec/meta_boxes/display_options.php:899
|
3304 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3305 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3306 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3307 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3308 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3309 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3310 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3311 |
#: app/features/mec/meta_boxes/display_options.php:1007
|
3312 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3313 |
#: app/features/mec/meta_boxes/display_options.php:1018
|
3314 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3315 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3316 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3317 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3318 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3319 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3320 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3321 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3322 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3323 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
|
|
3324 |
msgid "Date Formats"
|
3325 |
msgstr "Formato de fecha"
|
3326 |
|
@@ -3336,11 +3336,11 @@ msgstr "Los valores predeterminados son d, M y l"
|
|
3336 |
#: app/features/mec/meta_boxes/display_options.php:86
|
3337 |
#: app/features/mec/meta_boxes/display_options.php:224
|
3338 |
#: app/features/mec/meta_boxes/display_options.php:248
|
3339 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3340 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3341 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3342 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3343 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3344 |
msgid "Default values are d, F and l"
|
3345 |
msgstr "Los valores predeterminados son d, F y l"
|
3346 |
|
@@ -3357,22 +3357,22 @@ msgstr "Los valores predeterminados son d y F"
|
|
3357 |
#: app/features/mec/meta_boxes/display_options.php:115
|
3358 |
#: app/features/mec/meta_boxes/display_options.php:276
|
3359 |
#: app/features/mec/meta_boxes/display_options.php:332
|
3360 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3361 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3362 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3363 |
msgid "Limit"
|
3364 |
msgstr "Límite"
|
3365 |
|
3366 |
#: app/features/mec/meta_boxes/display_options.php:116
|
3367 |
#: app/features/mec/meta_boxes/display_options.php:277
|
3368 |
#: app/features/mec/meta_boxes/display_options.php:333
|
3369 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3370 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3371 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3372 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3373 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3374 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3375 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3376 |
msgid "eg. 6"
|
3377 |
msgstr "ej. 6"
|
3378 |
|
@@ -3394,20 +3394,20 @@ msgstr ""
|
|
3394 |
#: app/features/mec/meta_boxes/display_options.php:160
|
3395 |
#: app/features/mec/meta_boxes/display_options.php:303
|
3396 |
#: app/features/mec/meta_boxes/display_options.php:385
|
3397 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3398 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3399 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3400 |
-
#: app/features/mec/settings.php:
|
3401 |
-
#: app/features/mec/settings.php:
|
3402 |
-
#: app/features/mec/settings.php:
|
3403 |
msgid "Clean"
|
3404 |
msgstr "Limpio"
|
3405 |
|
3406 |
#: app/features/mec/meta_boxes/display_options.php:163
|
3407 |
#: app/features/mec/meta_boxes/display_options.php:387
|
3408 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3409 |
-
#: app/features/mec/settings.php:
|
3410 |
-
#: app/features/mec/settings.php:
|
3411 |
msgid "Simple"
|
3412 |
msgstr "Simple"
|
3413 |
|
@@ -3417,9 +3417,9 @@ msgstr "Colorido"
|
|
3417 |
|
3418 |
#: app/features/mec/meta_boxes/display_options.php:165
|
3419 |
#: app/features/mec/meta_boxes/display_options.php:386
|
3420 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3421 |
-
#: app/features/mec/settings.php:
|
3422 |
-
#: app/features/mec/settings.php:
|
3423 |
msgid "Novel"
|
3424 |
msgstr "Novel"
|
3425 |
|
@@ -3442,21 +3442,21 @@ msgid "Default value is \"d F Y\""
|
|
3442 |
msgstr "Valor por defecto is \"d F Y\""
|
3443 |
|
3444 |
#: app/features/mec/meta_boxes/display_options.php:265
|
3445 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3446 |
msgid "Count in row"
|
3447 |
msgstr "Contador en fila"
|
3448 |
|
3449 |
#: app/features/mec/meta_boxes/display_options.php:296
|
3450 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3451 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3452 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3453 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3454 |
#, php-format
|
3455 |
msgid "%s is required to use this skin."
|
3456 |
msgstr "Se requiere %s para utilizar este tema."
|
3457 |
|
3458 |
#: app/features/mec/meta_boxes/display_options.php:326
|
3459 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3460 |
msgid "Default values are l and F j"
|
3461 |
msgstr "Los valores por defectos son l y F j"
|
3462 |
|
@@ -3465,35 +3465,35 @@ msgid "Default View"
|
|
3465 |
msgstr "Vista por defecto"
|
3466 |
|
3467 |
#: app/features/mec/meta_boxes/display_options.php:375
|
3468 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3469 |
-
#: app/libraries/main.php:329 app/libraries/main.php:
|
3470 |
-
#: app/libraries/main.php:
|
3471 |
msgid "List View"
|
3472 |
msgstr "Vista de lista"
|
3473 |
|
3474 |
#: app/features/mec/meta_boxes/display_options.php:376
|
3475 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3476 |
-
#: app/libraries/main.php:333 app/libraries/main.php:
|
3477 |
-
#: app/libraries/main.php:
|
3478 |
msgid "Yearly View"
|
3479 |
msgstr "Vista anual"
|
3480 |
|
3481 |
#: app/features/mec/meta_boxes/display_options.php:377
|
3482 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3483 |
msgid "Monthly/Calendar View"
|
3484 |
msgstr "Vista Mensual/Calendario"
|
3485 |
|
3486 |
#: app/features/mec/meta_boxes/display_options.php:378
|
3487 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3488 |
-
#: app/libraries/main.php:336 app/libraries/main.php:
|
3489 |
-
#: app/libraries/main.php:
|
3490 |
msgid "Weekly View"
|
3491 |
msgstr "Vista de semana"
|
3492 |
|
3493 |
#: app/features/mec/meta_boxes/display_options.php:379
|
3494 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3495 |
-
#: app/libraries/main.php:335 app/libraries/main.php:
|
3496 |
-
#: app/libraries/main.php:
|
3497 |
msgid "Daily View"
|
3498 |
msgstr "Vista de día"
|
3499 |
|
@@ -3501,224 +3501,224 @@ msgstr "Vista de día"
|
|
3501 |
msgid "Monthly Style"
|
3502 |
msgstr ""
|
3503 |
|
3504 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3505 |
#, fuzzy, php-format
|
3506 |
#| msgid "%s is required to use this skin."
|
3507 |
msgid "%s is required to use <b>Yearly View</b> skin."
|
3508 |
msgstr "Se requiere %s para utilizar este tema."
|
3509 |
|
3510 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3511 |
msgid "The price shows only in List View."
|
3512 |
msgstr "El precio sólo aparece en la vista de lista."
|
3513 |
|
3514 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3515 |
msgid "Display Event Price"
|
3516 |
msgstr "Mostrar el precio del evento"
|
3517 |
|
3518 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3519 |
msgid "Start of Current Year"
|
3520 |
msgstr "Comienzo del año actual"
|
3521 |
|
3522 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3523 |
msgid "Start of Next Year"
|
3524 |
msgstr "Comienzo del próximo año"
|
3525 |
|
3526 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3527 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3528 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3529 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3530 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3531 |
msgid "Events per day"
|
3532 |
msgstr "Eventos por día"
|
3533 |
|
3534 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3535 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3536 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3537 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3538 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3539 |
msgid "Next/Previous Buttons"
|
3540 |
msgstr "Botones Siguiente/Anterior"
|
3541 |
|
3542 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3543 |
msgid "For showing next/previous year navigation."
|
3544 |
msgstr "Para mostrar la navegación del año siguiente/anterior."
|
3545 |
|
3546 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3547 |
#, fuzzy
|
3548 |
#| msgid "Text"
|
3549 |
msgid "Uppercase Text"
|
3550 |
msgstr "Texto"
|
3551 |
|
3552 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3553 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3554 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3555 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3556 |
msgid "For showing next/previous month navigation."
|
3557 |
msgstr "Para mostrar navegación siguiente/anterior"
|
3558 |
|
3559 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3560 |
msgid "Maximum events"
|
3561 |
msgstr "Máximo de eventos"
|
3562 |
|
3563 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3564 |
msgid "eg. 200"
|
3565 |
msgstr "ej. 200"
|
3566 |
|
3567 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3568 |
msgid "Geolocation"
|
3569 |
msgstr "Geolocalización"
|
3570 |
|
3571 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3572 |
msgid "The geolocation feature works only in secure (https) websites."
|
3573 |
msgstr ""
|
3574 |
"La funcionalidad de geolocalización sólo funciona en sitios web seguros "
|
3575 |
"(https)."
|
3576 |
|
3577 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3578 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3579 |
msgid "Current Week"
|
3580 |
msgstr "Semana actual"
|
3581 |
|
3582 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3583 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3584 |
msgid "Next Week"
|
3585 |
msgstr "Siguiente semana"
|
3586 |
|
3587 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3588 |
msgid "Number of Days"
|
3589 |
msgstr ""
|
3590 |
|
3591 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3592 |
#, fuzzy
|
3593 |
#| msgid "Start"
|
3594 |
msgid "Week Start"
|
3595 |
msgstr "Inicio"
|
3596 |
|
3597 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3598 |
#, fuzzy
|
3599 |
#| msgid "Inherit from global options"
|
3600 |
msgid "Inherite from WordPress options"
|
3601 |
msgstr "Heredar opciones globales"
|
3602 |
|
3603 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3604 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3605 |
msgid "Default values are j and F"
|
3606 |
msgstr "Los valores predeterminados son j y F"
|
3607 |
|
3608 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3609 |
msgid "eg. 24"
|
3610 |
msgstr "ej. 24"
|
3611 |
|
3612 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3613 |
msgid "Filter By"
|
3614 |
msgstr "Filtrar por"
|
3615 |
|
3616 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3617 |
msgid "None"
|
3618 |
msgstr ""
|
3619 |
|
3620 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3621 |
msgid "Convert Masonry to Grid"
|
3622 |
msgstr ""
|
3623 |
|
3624 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3625 |
msgid "For using this option, your events should come with image"
|
3626 |
msgstr ""
|
3627 |
|
3628 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3629 |
msgid "Default values are d, M and Y"
|
3630 |
msgstr "Los valores predeterminados son d, M e Y"
|
3631 |
|
3632 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3633 |
msgid "Default values are \"F d\" and l"
|
3634 |
msgstr "Los valores predeterminados son \"F d\" y l"
|
3635 |
|
3636 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3637 |
msgid "Default value is \"l, F d Y\""
|
3638 |
msgstr "Valor por defecto es \"l, F d Y\""
|
3639 |
|
3640 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3641 |
msgid "Style 1"
|
3642 |
msgstr "Estilo 1"
|
3643 |
|
3644 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3645 |
msgid "Style 2"
|
3646 |
msgstr "Estilo 2"
|
3647 |
|
3648 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3649 |
msgid "Style 3"
|
3650 |
msgstr "Estilo 3"
|
3651 |
|
3652 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3653 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3654 |
msgid "Default value is \"j F Y\""
|
3655 |
msgstr "El valor predeterminado es \"j F Y\""
|
3656 |
|
3657 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3658 |
msgid "Default values are j, F and Y"
|
3659 |
msgstr "Los valores predeterminados son j, F e Y"
|
3660 |
|
3661 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3662 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3663 |
msgid " -- Next Upcoming Event -- "
|
3664 |
msgstr " -- Próximo Evento -- "
|
3665 |
|
3666 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3667 |
msgid "Background Color"
|
3668 |
msgstr "Color de fondo"
|
3669 |
|
3670 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3671 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3672 |
msgid "Type 1"
|
3673 |
msgstr "Tipo 1"
|
3674 |
|
3675 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3676 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3677 |
msgid "Type 2"
|
3678 |
msgstr "Tipo 2"
|
3679 |
|
3680 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3681 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3682 |
msgid "Type 3"
|
3683 |
msgstr "Tipo 3"
|
3684 |
|
3685 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3686 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3687 |
msgid "Type 4"
|
3688 |
msgstr "Tipo 4"
|
3689 |
|
3690 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3691 |
msgid "Default values are d, F and Y"
|
3692 |
msgstr "Los valores predeterminados son d, F e Y"
|
3693 |
|
3694 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3695 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3696 |
msgid "Default value is \"M d, Y\""
|
3697 |
msgstr "El valor predeterminado es \"M d, Y\""
|
3698 |
|
3699 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3700 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3701 |
msgid "Auto Play Time"
|
3702 |
msgstr "Tiempo de reproducción automática"
|
3703 |
|
3704 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3705 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3706 |
msgid "eg. 3000 default is 3 second"
|
3707 |
msgstr "Ejemplo. 3000 son 3 segundos."
|
3708 |
|
3709 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3710 |
#, fuzzy
|
3711 |
#| msgid "Archive Page Skin"
|
3712 |
msgid "Archive Link"
|
3713 |
msgstr "Tema de la página de archivo"
|
3714 |
|
3715 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3716 |
#, fuzzy
|
3717 |
#| msgid "Text"
|
3718 |
msgid "Head Text"
|
3719 |
msgstr "Texto"
|
3720 |
|
3721 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3722 |
msgid "Type 5"
|
3723 |
msgstr "Tipo 5"
|
3724 |
|
@@ -3871,8 +3871,8 @@ msgstr "Mostrar formulario búsqueda"
|
|
3871 |
#: app/features/mec/meta_boxes/search_form.php:610
|
3872 |
#: app/features/mec/meta_boxes/search_form.php:617
|
3873 |
#: app/features/mec/meta_boxes/search_form.php:624
|
3874 |
-
#: app/features/mec/modules.php:322 app/features/mec/settings.php:
|
3875 |
-
#: app/features/mec/settings.php:
|
3876 |
msgid "Disabled"
|
3877 |
msgstr "Desactivado"
|
3878 |
|
@@ -3886,7 +3886,7 @@ msgstr "Desactivado"
|
|
3886 |
#: app/features/mec/meta_boxes/search_form.php:472
|
3887 |
#: app/features/mec/meta_boxes/search_form.php:533
|
3888 |
#: app/features/mec/meta_boxes/search_form.php:594 app/features/speakers.php:56
|
3889 |
-
#: app/features/speakers.php:243 app/libraries/main.php:
|
3890 |
#: app/libraries/skins.php:859
|
3891 |
msgid "Speaker"
|
3892 |
msgstr ""
|
@@ -3972,12 +3972,12 @@ msgid "Show Google Maps on event page"
|
|
3972 |
msgstr "Ver eventos en Google Maps"
|
3973 |
|
3974 |
#: app/features/mec/modules.php:277 app/features/mec/modules.php:435
|
3975 |
-
#: app/features/mec/settings.php:
|
3976 |
msgid "API Key"
|
3977 |
msgstr "API Key"
|
3978 |
|
3979 |
-
#: app/features/mec/modules.php:283 app/features/mec/settings.php:
|
3980 |
-
#: app/features/mec/settings.php:
|
3981 |
msgid "Required!"
|
3982 |
msgstr "¡Obligatorio!"
|
3983 |
|
@@ -3998,7 +3998,7 @@ msgstr ""
|
|
3998 |
msgid "Google Maps Style"
|
3999 |
msgstr "Estilo de Google Maps"
|
4000 |
|
4001 |
-
#: app/features/mec/modules.php:311 app/features/mec/single.php:
|
4002 |
msgid "Default"
|
4003 |
msgstr "Por defecto"
|
4004 |
|
@@ -4084,7 +4084,7 @@ msgstr "Próxima aparición del evento actual"
|
|
4084 |
msgid "Next Occurrence of Other Events"
|
4085 |
msgstr "Próxima aparición de otros eventos"
|
4086 |
|
4087 |
-
#: app/features/mec/modules.php:497 app/features/mec/single.php:
|
4088 |
msgid "Default is M d Y"
|
4089 |
msgstr "El valor predeterminado es M d Y"
|
4090 |
|
@@ -4104,96 +4104,78 @@ msgstr "Límite de asistentes"
|
|
4104 |
msgid "Add booking activity to user profile"
|
4105 |
msgstr "Añadir actividad de reservaciones en el perfil del usuario"
|
4106 |
|
4107 |
-
#: app/features/mec/notifications.php:
|
4108 |
msgid "Enable booking notification"
|
4109 |
msgstr "Activar notificación de reservas"
|
4110 |
|
4111 |
-
#: app/features/mec/notifications.php:
|
4112 |
msgid "It sends to attendee after booking for notifying him/her."
|
4113 |
msgstr "Se envía a los asistentes después de la reserva."
|
4114 |
|
4115 |
-
#: app/features/mec/notifications.php:
|
4116 |
-
#: app/features/mec/notifications.php:
|
4117 |
-
#: app/features/mec/notifications.php:
|
4118 |
-
#: app/features/mec/notifications.php:
|
4119 |
-
#: app/features/mec/notifications.php:
|
4120 |
-
#: app/features/mec/notifications.php:
|
4121 |
-
#: app/features/mec/notifications.php:
|
4122 |
msgid "Email Subject"
|
4123 |
msgstr "Asunto del correo electrónico"
|
4124 |
|
4125 |
-
#: app/features/mec/notifications.php:237
|
4126 |
-
#: app/features/mec/notifications.php:241
|
4127 |
-
#: app/features/mec/notifications.php:294
|
4128 |
-
#: app/features/mec/notifications.php:298
|
4129 |
-
#: app/features/mec/notifications.php:346
|
4130 |
-
#: app/features/mec/notifications.php:350
|
4131 |
-
#: app/features/mec/notifications.php:405
|
4132 |
-
#: app/features/mec/notifications.php:409
|
4133 |
-
#: app/features/mec/notifications.php:473
|
4134 |
-
#: app/features/mec/notifications.php:477
|
4135 |
-
#: app/features/mec/notifications.php:536
|
4136 |
-
#: app/features/mec/notifications.php:540
|
4137 |
-
#: app/features/mec/notifications.php:551
|
4138 |
-
#: app/features/mec/notifications.php:609
|
4139 |
-
#: app/features/mec
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Plugins - Modern Events Calendar Lite - Stable (latest "
|
6 |
"release)\n"
|
7 |
+
"POT-Creation-Date: 2019-07-03 09:29+0430\n"
|
8 |
+
"PO-Revision-Date: 2019-07-03 09:29+0430\n"
|
9 |
"Last-Translator: \n"
|
10 |
"Language-Team: \n"
|
11 |
"Language: es\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
16 |
+
"X-Generator: Poedit 2.2\n"
|
17 |
|
18 |
#: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:24
|
19 |
#: app/features/ix/import.php:37 app/features/ix/thirdparty.php:24
|
21 |
msgid "Modern Events Calendar"
|
22 |
msgstr "Modern Events Calendar"
|
23 |
|
24 |
+
#: app/addons/KC.php:70 app/addons/VC.php:64 app/features/mec/styling.php:286
|
25 |
msgid "Content"
|
26 |
msgstr "Contenido"
|
27 |
|
46 |
msgid "Select Type"
|
47 |
msgstr "Seleccionar tipo"
|
48 |
|
49 |
+
#: app/features/colors.php:50 app/features/fes/form.php:794
|
50 |
+
#: app/features/mec/settings.php:785
|
51 |
msgid "Event Color"
|
52 |
msgstr "Color del evento"
|
53 |
|
63 |
msgstr "Ajustes"
|
64 |
|
65 |
#: app/features/contextual.php:62 app/features/events.php:2250
|
66 |
+
#: app/features/mec/booking.php:146 app/features/mec/gateways.php:111
|
67 |
+
#: app/features/mec/ie.php:107 app/features/mec/messages.php:111
|
68 |
+
#: app/features/mec/modules.php:173 app/features/mec/notifications.php:110
|
69 |
+
#: app/features/mec/regform.php:146 app/features/mec/regform.php:215
|
70 |
+
#: app/features/mec/settings.php:178 app/features/mec/single.php:139
|
71 |
+
#: app/features/mec/styles.php:111 app/features/mec/styling.php:133
|
72 |
#: app/features/mec/support.php:29
|
73 |
msgid "Booking Form"
|
74 |
msgstr "Formulario de Reservas"
|
88 |
"www.youtube.com/embed/YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></"
|
89 |
"iframe>"
|
90 |
|
91 |
+
#: app/features/contextual.php:70 app/features/mec/booking.php:153
|
92 |
+
#: app/features/mec/gateways.php:118 app/features/mec/gateways.php:181
|
93 |
+
#: app/features/mec/ie.php:114 app/features/mec/messages.php:118
|
94 |
+
#: app/features/mec/modules.php:180 app/features/mec/notifications.php:117
|
95 |
+
#: app/features/mec/regform.php:153 app/features/mec/settings.php:185
|
96 |
+
#: app/features/mec/single.php:146 app/features/mec/styles.php:118
|
97 |
+
#: app/features/mec/styling.php:140 app/features/mec/support.php:36
|
98 |
msgid "Payment Gateways"
|
99 |
msgstr "Pasarelas de pago"
|
100 |
|
108 |
"height=\"300\" src=\"https://www.youtube.com/embed/Hpg4chWlxoQ\" frameborder="
|
109 |
"\"0\" allowfullscreen></iframe>"
|
110 |
|
111 |
+
#: app/features/contextual.php:77 app/features/mec/booking.php:162
|
112 |
+
#: app/features/mec/gateways.php:127 app/features/mec/ie.php:123
|
113 |
+
#: app/features/mec/messages.php:127 app/features/mec/modules.php:189
|
114 |
+
#: app/features/mec/notifications.php:129 app/features/mec/regform.php:161
|
115 |
+
#: app/features/mec/settings.php:194 app/features/mec/single.php:155
|
116 |
+
#: app/features/mec/styles.php:127 app/features/mec/styling.php:149
|
117 |
#: app/features/mec/support.php:45
|
118 |
msgid "Notifications"
|
119 |
msgstr "Avisos"
|
197 |
#: app/features/mec/gateways.php:28 app/features/mec/ie.php:24
|
198 |
#: app/features/mec/messages.php:28 app/features/mec/modules.php:35
|
199 |
#: app/features/mec/notifications.php:27 app/features/mec/regform.php:64
|
200 |
+
#: app/features/mec/settings.php:51 app/features/mec/settings.php:252
|
201 |
#: app/features/mec/single.php:27 app/features/mec/styles.php:28
|
202 |
#: app/features/mec/styling.php:50
|
203 |
msgid "General Options"
|
207 |
#: app/features/mec/gateways.php:30 app/features/mec/ie.php:26
|
208 |
#: app/features/mec/messages.php:30 app/features/mec/modules.php:37
|
209 |
#: app/features/mec/notifications.php:29 app/features/mec/regform.php:66
|
210 |
+
#: app/features/mec/settings.php:63 app/features/mec/settings.php:569
|
211 |
#: app/features/mec/single.php:29 app/features/mec/styles.php:30
|
212 |
#: app/features/mec/styling.php:52
|
213 |
msgid "Slugs/Permalinks"
|
221 |
#: app/features/mec/gateways.php:31 app/features/mec/ie.php:27
|
222 |
#: app/features/mec/messages.php:31 app/features/mec/modules.php:38
|
223 |
#: app/features/mec/notifications.php:30 app/features/mec/regform.php:67
|
224 |
+
#: app/features/mec/settings.php:69 app/features/mec/settings.php:601
|
225 |
#: app/features/mec/single.php:30 app/features/mec/styles.php:31
|
226 |
#: app/features/mec/styling.php:53
|
227 |
msgid "Currency Options"
|
241 |
#: app/features/mec/gateways.php:32 app/features/mec/ie.php:28
|
242 |
#: app/features/mec/messages.php:32 app/features/mec/modules.php:39
|
243 |
#: app/features/mec/notifications.php:31 app/features/mec/regform.php:68
|
244 |
+
#: app/features/mec/settings.php:75 app/features/mec/settings.php:658
|
245 |
#: app/features/mec/single.php:31 app/features/mec/styles.php:32
|
246 |
#: app/features/mec/styling.php:54
|
247 |
msgid "Google Recaptcha Options"
|
252 |
#: app/features/mec/messages.php:51 app/features/mec/modules.php:58
|
253 |
#: app/features/mec/notifications.php:50 app/features/mec/regform.php:87
|
254 |
#: app/features/mec/settings.php:118 app/features/mec/single.php:62
|
255 |
+
#: app/features/mec/single.php:310 app/features/mec/styles.php:51
|
256 |
#: app/features/mec/styling.php:73
|
257 |
msgid "Countdown Options"
|
258 |
msgstr "Opciones de cuenta atrás"
|
275 |
#: app/features/mec/gateways.php:33 app/features/mec/ie.php:29
|
276 |
#: app/features/mec/messages.php:33 app/features/mec/modules.php:40
|
277 |
#: app/features/mec/notifications.php:32 app/features/mec/regform.php:69
|
278 |
+
#: app/features/mec/settings.php:81 app/features/mec/settings.php:694
|
279 |
#: app/features/mec/single.php:32 app/features/mec/styles.php:33
|
280 |
#: app/features/mec/styling.php:55
|
281 |
msgid "Frontend Event Submission"
|
293 |
|
294 |
#: app/features/contextual.php:308 app/features/events.php:284
|
295 |
#: app/features/mec/booking.php:77 app/features/mec/booking.php:84
|
296 |
+
#: app/features/mec/booking.php:167 app/features/mec/booking.php:219
|
297 |
#: app/features/mec/gateways.php:64 app/features/mec/gateways.php:68
|
298 |
+
#: app/features/mec/gateways.php:132 app/features/mec/ie.php:60
|
299 |
+
#: app/features/mec/ie.php:64 app/features/mec/ie.php:128
|
300 |
#: app/features/mec/messages.php:64 app/features/mec/messages.php:68
|
301 |
+
#: app/features/mec/messages.php:132 app/features/mec/modules.php:71
|
302 |
#: app/features/mec/modules.php:75 app/features/mec/modules.php:194
|
303 |
#: app/features/mec/notifications.php:63 app/features/mec/notifications.php:67
|
304 |
+
#: app/features/mec/notifications.php:136
|
305 |
+
#: app/features/mec/notifications.php:225 app/features/mec/regform.php:100
|
306 |
+
#: app/features/mec/regform.php:104 app/features/mec/regform.php:166
|
307 |
#: app/features/mec/settings.php:131 app/features/mec/settings.php:135
|
308 |
+
#: app/features/mec/settings.php:199 app/features/mec/single.php:92
|
309 |
+
#: app/features/mec/single.php:96 app/features/mec/single.php:160
|
310 |
#: app/features/mec/styles.php:64 app/features/mec/styles.php:68
|
311 |
+
#: app/features/mec/styles.php:132 app/features/mec/styling.php:86
|
312 |
+
#: app/features/mec/styling.php:90 app/features/mec/styling.php:154
|
313 |
msgid "Booking"
|
314 |
msgstr "Reserva"
|
315 |
|
316 |
#: app/features/contextual.php:318 app/features/mec/booking.php:92
|
317 |
+
#: app/features/mec/booking.php:330 app/features/mec/gateways.php:70
|
318 |
#: app/features/mec/ie.php:66 app/features/mec/messages.php:70
|
319 |
#: app/features/mec/modules.php:77 app/features/mec/notifications.php:69
|
320 |
#: app/features/mec/regform.php:106 app/features/mec/settings.php:137
|
323 |
msgid "Coupons"
|
324 |
msgstr "Cupones"
|
325 |
|
326 |
+
#: app/features/contextual.php:326 app/features/mec/booking.php:135
|
327 |
+
#: app/features/mec/gateways.php:100 app/features/mec/ie.php:96
|
328 |
+
#: app/features/mec/messages.php:100 app/features/mec/modules.php:159
|
329 |
+
#: app/features/mec/modules.php:509 app/features/mec/notifications.php:99
|
330 |
+
#: app/features/mec/regform.php:136 app/features/mec/settings.php:167
|
331 |
+
#: app/features/mec/single.php:128 app/features/mec/styles.php:100
|
332 |
+
#: app/features/mec/styling.php:122
|
333 |
msgid "BuddyPress Integration"
|
334 |
msgstr "Integración de BuddyPress"
|
335 |
|
337 |
#: app/features/mec/gateways.php:36 app/features/mec/ie.php:32
|
338 |
#: app/features/mec/messages.php:36 app/features/mec/modules.php:43
|
339 |
#: app/features/mec/notifications.php:35 app/features/mec/regform.php:72
|
340 |
+
#: app/features/mec/settings.php:95 app/features/mec/settings.php:879
|
341 |
#: app/features/mec/single.php:35 app/features/mec/styles.php:36
|
342 |
#: app/features/mec/styling.php:58
|
343 |
msgid "Mailchimp Integration"
|
354 |
msgstr "Eventos"
|
355 |
|
356 |
#: app/features/events.php:138
|
357 |
+
#: app/features/mec/meta_boxes/display_options.php:867
|
358 |
+
#: app/features/mec/meta_boxes/display_options.php:923
|
359 |
+
#: app/features/mec/meta_boxes/display_options.php:958
|
360 |
#: app/features/profile/profile.php:28 app/skins/daily_view/tpl.php:80
|
361 |
#: app/skins/monthly_view/tpl.php:71 app/skins/yearly_view/tpl.php:69
|
362 |
msgid "Event"
|
370 |
msgid "Add New Event"
|
371 |
msgstr "Añadir nuevo evento"
|
372 |
|
373 |
+
#: app/features/events.php:141 app/features/ix.php:3119
|
374 |
#: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:56
|
375 |
msgid "No events found!"
|
376 |
msgstr "No hay eventos"
|
392 |
msgstr "No hay eventos en la papelera"
|
393 |
|
394 |
#: app/features/events.php:162
|
395 |
+
#: app/features/mec/meta_boxes/display_options.php:798
|
396 |
#: app/features/mec/meta_boxes/search_form.php:31
|
397 |
#: app/features/mec/meta_boxes/search_form.php:92
|
398 |
#: app/features/mec/meta_boxes/search_form.php:153
|
402 |
#: app/features/mec/meta_boxes/search_form.php:397
|
403 |
#: app/features/mec/meta_boxes/search_form.php:451
|
404 |
#: app/features/mec/meta_boxes/search_form.php:512
|
405 |
+
#: app/features/mec/meta_boxes/search_form.php:573 app/libraries/main.php:4479
|
406 |
#: app/libraries/skins.php:781 app/skins/single.php:410
|
407 |
#: app/skins/single/default.php:169 app/skins/single/default.php:380
|
408 |
#: app/skins/single/m1.php:170 app/skins/single/m2.php:102
|
412 |
|
413 |
#: app/features/events.php:163 app/features/fes/form.php:745
|
414 |
#: app/features/mec.php:332 app/features/mec/meta_boxes/filter.php:70
|
415 |
+
#: app/libraries/main.php:4478
|
416 |
msgid "Categories"
|
417 |
msgstr "Categorías"
|
418 |
|
484 |
msgid "Event Details"
|
485 |
msgstr "Detalle de evento"
|
486 |
|
487 |
+
#: app/features/events.php:321 app/features/events.php:3157
|
488 |
+
#: app/features/events.php:3199 app/features/fes/form.php:706
|
489 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
490 |
+
#: app/features/mec/settings.php:761 app/libraries/main.php:4511
|
491 |
#: app/widgets/single.php:103
|
492 |
msgid "Event Cost"
|
493 |
msgstr "Coste del evento"
|
494 |
|
495 |
#: app/features/events.php:325 app/features/fes/form.php:709
|
496 |
+
#: app/libraries/main.php:4512 app/skins/single.php:433
|
497 |
#: app/skins/single/default.php:103 app/skins/single/default.php:314
|
498 |
#: app/skins/single/m1.php:49 app/skins/single/modern.php:199
|
499 |
msgid "Cost"
|
510 |
#: app/features/events.php:431 app/features/events.php:2232
|
511 |
#: app/features/fes/form.php:668 app/features/labels.php:177
|
512 |
#: app/features/mec/regform.php:27 app/features/organizers.php:274
|
513 |
+
#: app/features/profile/profile.php:90 app/libraries/notifications.php:673
|
514 |
#: app/modules/booking/steps/form.php:35
|
515 |
msgid "Name"
|
516 |
msgstr "Nombre"
|
517 |
|
518 |
#: app/features/events.php:432 app/features/events.php:2243
|
519 |
#: app/features/events.php:2321 app/features/fes/form.php:664
|
520 |
+
#: app/features/mec/regform.php:38 app/features/mec/regform.php:267
|
521 |
#: app/features/organizers.php:110 app/features/organizers.php:150
|
522 |
#: app/features/profile/profile.php:93 app/features/speakers.php:120
|
523 |
+
#: app/features/speakers.php:180 app/libraries/main.php:1142
|
524 |
+
#: app/libraries/main.php:1208 app/libraries/main.php:2247
|
525 |
+
#: app/libraries/notifications.php:674 app/modules/booking/steps/form.php:43
|
526 |
#: app/modules/booking/steps/form.php:80 app/skins/single.php:661
|
527 |
#: app/skins/single.php:715 app/skins/single/default.php:211
|
528 |
#: app/skins/single/default.php:422 app/skins/single/m1.php:107
|
535 |
msgstr "Día y hora"
|
536 |
|
537 |
#: app/features/events.php:440 app/features/events.php:446
|
538 |
+
#: app/features/events.php:2975 app/features/events.php:3157
|
539 |
+
#: app/features/events.php:3199 app/features/fes/form.php:236
|
540 |
#: app/features/fes/form.php:240 app/features/ix.php:2740
|
541 |
#: app/features/ix.php:2781 app/features/ix/import_g_calendar.php:38
|
542 |
#: app/features/mec/dashboard.php:332
|
544 |
#: app/features/mec/meta_boxes/display_options.php:169
|
545 |
#: app/features/mec/meta_boxes/display_options.php:307
|
546 |
#: app/features/mec/meta_boxes/display_options.php:362
|
547 |
+
#: app/features/mec/meta_boxes/display_options.php:485
|
548 |
+
#: app/features/mec/meta_boxes/display_options.php:539
|
549 |
+
#: app/features/mec/meta_boxes/display_options.php:586
|
550 |
+
#: app/features/mec/meta_boxes/display_options.php:619
|
551 |
+
#: app/features/mec/meta_boxes/display_options.php:654
|
552 |
+
#: app/features/mec/meta_boxes/display_options.php:700
|
553 |
+
#: app/features/mec/meta_boxes/display_options.php:766
|
554 |
+
#: app/features/mec/meta_boxes/display_options.php:981
|
555 |
+
#: app/features/mec/meta_boxes/display_options.php:1068
|
556 |
msgid "Start Date"
|
557 |
msgstr "Día de inicio"
|
558 |
|
571 |
msgstr "PM"
|
572 |
|
573 |
#: app/features/events.php:532 app/features/events.php:537
|
574 |
+
#: app/features/events.php:2976 app/features/events.php:3157
|
575 |
+
#: app/features/events.php:3199 app/features/fes/form.php:276
|
576 |
#: app/features/fes/form.php:280 app/features/ix.php:2740
|
577 |
#: app/features/ix.php:2781 app/features/ix/import_g_calendar.php:44
|
578 |
#: app/features/mec/dashboard.php:333
|
609 |
"horaria, etc en este campo."
|
610 |
|
611 |
#: app/features/events.php:663 app/features/events.php:795
|
612 |
+
#: app/features/events.php:1094 app/features/events.php:1137
|
613 |
#: app/features/events.php:1436 app/features/events.php:1503
|
614 |
#: app/features/events.php:1655 app/features/events.php:1670
|
615 |
#: app/features/events.php:1837 app/features/events.php:1850
|
616 |
#: app/features/events.php:1980 app/features/events.php:2016
|
617 |
#: app/features/events.php:2114 app/features/events.php:2129
|
618 |
#: app/features/events.php:2159 app/features/events.php:2172
|
619 |
+
#: app/features/fes/form.php:630 app/features/locations.php:298
|
620 |
+
#: app/features/mec/booking.php:239 app/features/mec/booking.php:263
|
621 |
+
#: app/features/mec/booking.php:279 app/features/mec/booking.php:375
|
622 |
+
#: app/features/mec/booking.php:404 app/features/mec/booking.php:452
|
623 |
+
#: app/features/mec/booking.php:462 app/features/mec/booking.php:484
|
624 |
+
#: app/features/mec/booking.php:494 app/features/mec/dashboard.php:71
|
625 |
#: app/features/mec/meta_boxes/display_options.php:60
|
626 |
#: app/features/mec/meta_boxes/display_options.php:73
|
627 |
#: app/features/mec/meta_boxes/display_options.php:86
|
635 |
#: app/features/mec/meta_boxes/display_options.php:248
|
636 |
#: app/features/mec/meta_boxes/display_options.php:259
|
637 |
#: app/features/mec/meta_boxes/display_options.php:326
|
638 |
+
#: app/features/mec/meta_boxes/display_options.php:502
|
639 |
+
#: app/features/mec/meta_boxes/display_options.php:785
|
640 |
+
#: app/features/mec/meta_boxes/display_options.php:838
|
641 |
+
#: app/features/mec/meta_boxes/display_options.php:850
|
642 |
+
#: app/features/mec/meta_boxes/display_options.php:861
|
643 |
+
#: app/features/mec/meta_boxes/display_options.php:893
|
644 |
+
#: app/features/mec/meta_boxes/display_options.php:904
|
645 |
+
#: app/features/mec/meta_boxes/display_options.php:917
|
646 |
+
#: app/features/mec/meta_boxes/display_options.php:952
|
647 |
+
#: app/features/mec/meta_boxes/display_options.php:1001
|
648 |
+
#: app/features/mec/meta_boxes/display_options.php:1012
|
649 |
+
#: app/features/mec/meta_boxes/display_options.php:1023
|
650 |
+
#: app/features/mec/meta_boxes/display_options.php:1088
|
651 |
+
#: app/features/mec/meta_boxes/display_options.php:1101
|
652 |
+
#: app/features/mec/meta_boxes/display_options.php:1114
|
653 |
+
#: app/features/mec/meta_boxes/display_options.php:1127
|
654 |
+
#: app/features/mec/meta_boxes/display_options.php:1140
|
655 |
#: app/features/mec/modules.php:283 app/features/mec/modules.php:300
|
656 |
#: app/features/mec/modules.php:335 app/features/mec/modules.php:351
|
657 |
+
#: app/features/mec/modules.php:497 app/features/mec/notifications.php:244
|
658 |
+
#: app/features/mec/notifications.php:301
|
659 |
+
#: app/features/mec/notifications.php:353
|
660 |
+
#: app/features/mec/notifications.php:412
|
661 |
+
#: app/features/mec/notifications.php:480
|
662 |
+
#: app/features/mec/notifications.php:543
|
663 |
+
#: app/features/mec/notifications.php:554
|
664 |
+
#: app/features/mec/notifications.php:616 app/features/mec/settings.php:266
|
665 |
+
#: app/features/mec/settings.php:285 app/features/mec/settings.php:312
|
666 |
+
#: app/features/mec/settings.php:332 app/features/mec/settings.php:353
|
667 |
+
#: app/features/mec/settings.php:373 app/features/mec/settings.php:450
|
668 |
+
#: app/features/mec/settings.php:524 app/features/mec/settings.php:541
|
669 |
+
#: app/features/mec/settings.php:558 app/features/mec/settings.php:577
|
670 |
+
#: app/features/mec/settings.php:591 app/features/mec/settings.php:619
|
671 |
+
#: app/features/mec/settings.php:706 app/features/mec/settings.php:844
|
672 |
+
#: app/features/mec/settings.php:861 app/features/mec/settings.php:894
|
673 |
+
#: app/features/mec/settings.php:907 app/features/mec/settings.php:923
|
674 |
+
#: app/features/mec/single.php:221 app/features/mec/single.php:237
|
675 |
+
#: app/features/mec/single.php:256 app/features/mec/single.php:272
|
676 |
+
#: app/features/mec/single.php:287 app/features/mec/single.php:301
|
677 |
+
#: app/features/mec/single.php:339 app/features/mec/styling.php:356
|
678 |
+
#: app/features/mec/styling.php:373 app/features/mec/styling.php:386
|
679 |
#: app/features/organizers.php:267 app/skins/single.php:508
|
680 |
#: app/skins/single/default.php:118 app/skins/single/default.php:329
|
681 |
#: app/skins/single/m1.php:192 app/skins/single/m2.php:125
|
746 |
msgstr "Días de semana"
|
747 |
|
748 |
#: app/features/events.php:760 app/features/fes/form.php:355
|
749 |
+
#: app/features/mec/meta_boxes/display_options.php:730
|
750 |
#: app/libraries/main.php:407
|
751 |
msgid "Monday"
|
752 |
msgstr "Lunes"
|
753 |
|
754 |
#: app/features/events.php:763 app/features/fes/form.php:356
|
755 |
+
#: app/features/mec/meta_boxes/display_options.php:731
|
756 |
#: app/libraries/main.php:407
|
757 |
msgid "Tuesday"
|
758 |
msgstr "Martes"
|
759 |
|
760 |
#: app/features/events.php:766 app/features/fes/form.php:357
|
761 |
+
#: app/features/mec/meta_boxes/display_options.php:732
|
762 |
#: app/libraries/main.php:407
|
763 |
msgid "Wednesday"
|
764 |
msgstr "Miércoles"
|
765 |
|
766 |
#: app/features/events.php:769 app/features/fes/form.php:358
|
767 |
+
#: app/features/mec/meta_boxes/display_options.php:733
|
768 |
#: app/libraries/main.php:407
|
769 |
msgid "Thursday"
|
770 |
msgstr "Jueves"
|
771 |
|
772 |
#: app/features/events.php:772 app/features/fes/form.php:359
|
773 |
+
#: app/features/mec/meta_boxes/display_options.php:734
|
774 |
#: app/libraries/main.php:407
|
775 |
msgid "Friday"
|
776 |
msgstr "Viernes"
|
777 |
|
778 |
#: app/features/events.php:775 app/features/fes/form.php:360
|
779 |
+
#: app/features/mec/meta_boxes/display_options.php:735
|
780 |
#: app/libraries/main.php:407
|
781 |
msgid "Saturday"
|
782 |
msgstr "Sábado"
|
783 |
|
784 |
#: app/features/events.php:778 app/features/fes/form.php:361
|
785 |
+
#: app/features/mec/meta_boxes/display_options.php:729
|
786 |
#: app/libraries/main.php:407
|
787 |
msgid "Sunday"
|
788 |
msgstr "Domingo"
|
822 |
"start and end dates must be commensurate with the initial date."
|
823 |
msgstr ""
|
824 |
|
825 |
+
#: app/features/events.php:829 app/features/fes/form.php:394
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
826 |
#, fuzzy
|
827 |
#| msgid "Ticket name"
|
828 |
msgid "First"
|
829 |
msgstr "Nombre de la entrada"
|
830 |
|
831 |
+
#: app/features/events.php:871 app/features/fes/form.php:436
|
832 |
#, fuzzy
|
833 |
#| msgid "second"
|
834 |
msgid "Second"
|
835 |
msgstr "segundo"
|
836 |
|
837 |
+
#: app/features/events.php:913 app/features/fes/form.php:478
|
838 |
#, fuzzy
|
839 |
#| msgid "Third Party"
|
840 |
msgid "Third"
|
841 |
msgstr "Terceros"
|
842 |
|
843 |
+
#: app/features/events.php:955 app/features/fes/form.php:520
|
844 |
msgid "Fourth"
|
845 |
msgstr ""
|
846 |
|
847 |
+
#: app/features/events.php:997 app/features/fes/form.php:562
|
848 |
#, fuzzy
|
849 |
#| msgid "Last Year"
|
850 |
msgid "Last"
|
851 |
msgstr "Año pasado"
|
852 |
|
853 |
+
#: app/features/events.php:1044 app/features/fes/form.php:608
|
854 |
+
msgid "Ends Repeat"
|
855 |
+
msgstr "Finaliza la repetición"
|
856 |
+
|
857 |
+
#: app/features/events.php:1055 app/features/fes/form.php:612
|
858 |
+
msgid "Never"
|
859 |
+
msgstr "Nunca"
|
860 |
+
|
861 |
+
#: app/features/events.php:1067 app/features/fes/form.php:617
|
862 |
+
msgid "On"
|
863 |
+
msgstr "On"
|
864 |
+
|
865 |
+
#: app/features/events.php:1083 app/features/fes/form.php:624
|
866 |
+
msgid "After"
|
867 |
+
msgstr "Después"
|
868 |
+
|
869 |
+
#: app/features/events.php:1087 app/features/events.php:1091
|
870 |
+
#: app/features/fes/form.php:626 app/features/fes/form.php:629
|
871 |
+
msgid "Occurrences times"
|
872 |
+
msgstr "Ocurrencias del evento"
|
873 |
+
|
874 |
+
#: app/features/events.php:1092 app/features/fes/form.php:630
|
875 |
+
msgid ""
|
876 |
+
"The event will finish after certain repeats. For example if you set it to "
|
877 |
+
"10, the event will finish after 10 repeats."
|
878 |
+
msgstr ""
|
879 |
+
"El evento finalizará después de ciertas repeticiones. Por ejemplo, si "
|
880 |
+
"estableces en 10, el evento terminará después de 10 repeticiones."
|
881 |
+
|
882 |
#: app/features/events.php:1124 app/features/events.php:1134
|
883 |
msgid "Exclude certain days"
|
884 |
msgstr "Excluir ciertos días"
|
885 |
|
886 |
#: app/features/events.php:1129 app/features/events.php:2322
|
887 |
+
#: app/features/mec/regform.php:268 app/features/profile/profile.php:31
|
888 |
+
#: app/libraries/main.php:1694 app/libraries/main.php:2305
|
889 |
#: app/modules/booking/steps/tickets.php:22
|
890 |
#: app/modules/next-event/details.php:90 app/skins/single.php:488
|
891 |
#: app/skins/single/default.php:67 app/skins/single/default.php:278
|
904 |
msgid "Day 1"
|
905 |
msgstr ""
|
906 |
|
907 |
+
#: app/features/events.php:1211 app/features/mec/settings.php:815
|
908 |
#: app/skins/single.php:777
|
909 |
msgid "Hourly Schedule"
|
910 |
msgstr "Programación horaria"
|
927 |
#: app/features/events.php:1227 app/features/events.php:1266
|
928 |
#: app/features/events.php:1301 app/features/events.php:1333
|
929 |
#: app/features/events.php:1362 app/features/events.php:2101
|
930 |
+
#: app/features/events.php:2148 app/features/events.php:2972
|
931 |
+
#: app/features/events.php:3157 app/features/events.php:3199
|
932 |
#: app/features/fes/form.php:225 app/features/ix.php:2740
|
933 |
+
#: app/features/ix.php:2781 app/features/mec/booking.php:444
|
934 |
+
#: app/features/mec/booking.php:476 app/features/mec/styling.php:268
|
935 |
msgid "Title"
|
936 |
msgstr "Titulo"
|
937 |
|
942 |
#: app/features/events.php:1867 app/features/events.php:1894
|
943 |
#: app/features/events.php:1993 app/features/events.php:2029
|
944 |
#: app/features/events.php:2136 app/features/events.php:2178
|
945 |
+
#: app/features/fes/list.php:78 app/features/mec/booking.php:387
|
946 |
+
#: app/features/mec/booking.php:416 app/features/mec/booking.php:467
|
947 |
+
#: app/features/mec/booking.php:499 app/libraries/main.php:2166
|
948 |
+
#: app/libraries/main.php:2196 app/libraries/main.php:2225
|
949 |
+
#: app/libraries/main.php:2255 app/libraries/main.php:2284
|
950 |
+
#: app/libraries/main.php:2313 app/libraries/main.php:2342
|
951 |
+
#: app/libraries/main.php:2371 app/libraries/main.php:2393
|
952 |
+
#: app/libraries/main.php:2424 app/libraries/main.php:2468
|
953 |
+
#: app/libraries/main.php:2512 app/libraries/main.php:2559
|
954 |
+
#: app/libraries/main.php:2597
|
955 |
msgid "Remove"
|
956 |
msgstr "Eliminar"
|
957 |
|
976 |
msgstr "Descripción"
|
977 |
|
978 |
#: app/features/events.php:1276 app/features/events.php:1309
|
979 |
+
#: app/features/events.php:1370 app/features/fes/form.php:839
|
980 |
#: app/features/mec.php:340 app/features/mec/booking.php:122
|
981 |
#: app/features/mec/gateways.php:87 app/features/mec/ie.php:83
|
982 |
#: app/features/mec/messages.php:87 app/features/mec/modules.php:101
|
983 |
#: app/features/mec/notifications.php:86 app/features/mec/regform.php:123
|
984 |
+
#: app/features/mec/settings.php:154 app/features/mec/settings.php:809
|
985 |
#: app/features/mec/single.php:115 app/features/mec/styles.php:87
|
986 |
#: app/features/mec/styling.php:109 app/features/speakers.php:57
|
987 |
+
#: app/libraries/main.php:4486 app/modules/speakers/details.php:18
|
988 |
msgid "Speakers"
|
989 |
msgstr ""
|
990 |
|
995 |
msgstr "Días de semana"
|
996 |
|
997 |
#: app/features/events.php:1401 app/features/fes/form.php:683
|
998 |
+
#: app/features/mec/settings.php:755
|
999 |
msgid "Event Links"
|
1000 |
msgstr "Enlaces de eventos"
|
1001 |
|
1002 |
#: app/features/events.php:1404 app/features/events.php:1410
|
1003 |
+
#: app/features/fes/form.php:685 app/libraries/main.php:4509
|
1004 |
msgid "Event Link"
|
1005 |
msgstr "Enlace del evento"
|
1006 |
|
1027 |
msgstr ""
|
1028 |
|
1029 |
#: app/features/events.php:1420 app/features/events.php:1433
|
1030 |
+
#: app/features/fes/form.php:690 app/libraries/main.php:4510
|
1031 |
#: app/skins/single.php:507 app/skins/single/default.php:117
|
1032 |
#: app/skins/single/default.php:328 app/skins/single/m1.php:191
|
1033 |
#: app/skins/single/m2.php:124 app/skins/single/modern.php:132
|
1060 |
msgstr "Límite total de reservas"
|
1061 |
|
1062 |
#: app/features/events.php:1486 app/features/events.php:1691
|
1063 |
+
#: app/features/events.php:1864 app/modules/booking/default.php:85
|
1064 |
#: app/modules/booking/steps/tickets.php:40
|
1065 |
#: app/skins/available_spot/tpl.php:140
|
1066 |
msgid "Unlimited"
|
1081 |
msgstr ""
|
1082 |
|
1083 |
#: app/features/events.php:1528 app/libraries/book.php:60
|
1084 |
+
#: app/libraries/main.php:4514 app/modules/booking/steps/tickets.php:40
|
1085 |
msgid "Tickets"
|
1086 |
msgstr "Tickets"
|
1087 |
|
1101 |
msgstr "Nombre del ticket"
|
1102 |
|
1103 |
#: app/features/events.php:1555 app/features/events.php:1776
|
1104 |
+
#: app/features/events.php:3157 app/features/events.php:3199
|
1105 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
1106 |
msgid "Start Time"
|
1107 |
msgstr "Hora de Inicio"
|
1108 |
|
1109 |
#: app/features/events.php:1597 app/features/events.php:1800
|
1110 |
+
#: app/features/events.php:3157 app/features/events.php:3199
|
1111 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
1112 |
msgid "End Time"
|
1113 |
msgstr "Hora de finalización"
|
1117 |
#: app/features/events.php:1831 app/features/events.php:1834
|
1118 |
#: app/features/events.php:1890 app/features/events.php:2107
|
1119 |
#: app/features/events.php:2111 app/features/events.php:2153
|
1120 |
+
#: app/features/events.php:2156 app/features/mec/booking.php:448
|
1121 |
+
#: app/features/mec/booking.php:451 app/features/mec/booking.php:480
|
1122 |
+
#: app/features/mec/booking.php:483
|
1123 |
msgid "Price"
|
1124 |
msgstr "Precio"
|
1125 |
|
1146 |
|
1147 |
#: app/features/events.php:1730 app/features/events.php:1756
|
1148 |
#: app/features/events.php:1892 app/features/labels.php:60
|
1149 |
+
#: app/features/mec/meta_boxes/display_options.php:799
|
1150 |
#: app/features/mec/meta_boxes/search_form.php:66
|
1151 |
#: app/features/mec/meta_boxes/search_form.php:127
|
1152 |
#: app/features/mec/meta_boxes/search_form.php:188
|
1170 |
msgstr "Heredar opciones globales"
|
1171 |
|
1172 |
#: app/features/events.php:1967 app/features/events.php:2005
|
1173 |
+
#: app/features/mec/booking.php:367 app/features/mec/booking.php:396
|
1174 |
msgid "Fee Title"
|
1175 |
msgstr "Título de la cuota"
|
1176 |
|
1177 |
#: app/features/events.php:1973 app/features/events.php:1977
|
1178 |
#: app/features/events.php:2010 app/features/events.php:2013
|
1179 |
+
#: app/features/mec/booking.php:371 app/features/mec/booking.php:374
|
1180 |
+
#: app/features/mec/booking.php:400 app/features/mec/booking.php:403
|
1181 |
msgid "Amount"
|
1182 |
msgstr "Cantidad"
|
1183 |
|
1184 |
#: app/features/events.php:1978 app/features/events.php:2014
|
1185 |
+
#: app/features/mec/booking.php:375 app/features/mec/booking.php:404
|
1186 |
msgid ""
|
1187 |
"Fee amount, considered as fixed amount if you set the type to amount "
|
1188 |
"otherwise considered as percentage"
|
1191 |
"cantidad, si no será considerada como porcentaje"
|
1192 |
|
1193 |
#: app/features/events.php:1987 app/features/events.php:2023
|
1194 |
+
#: app/features/mec/booking.php:382 app/features/mec/booking.php:411
|
1195 |
msgid "Percent"
|
1196 |
msgstr "Porcentaje"
|
1197 |
|
1198 |
#: app/features/events.php:1988 app/features/events.php:2024
|
1199 |
+
#: app/features/mec/booking.php:383 app/features/mec/booking.php:412
|
1200 |
msgid "Amount (Per Ticket)"
|
1201 |
msgstr "Cantidad (Por ticket)"
|
1202 |
|
1203 |
#: app/features/events.php:1989 app/features/events.php:2025
|
1204 |
+
#: app/features/mec/booking.php:384 app/features/mec/booking.php:413
|
1205 |
msgid "Amount (Per Booking)"
|
1206 |
msgstr "Cantidad (por reservas)"
|
1207 |
|
1208 |
+
#: app/features/events.php:2062 app/features/mec/settings.php:833
|
1209 |
msgid "Ticket Variations / Options"
|
1210 |
msgstr ""
|
1211 |
|
1212 |
#: app/features/events.php:2112 app/features/events.php:2157
|
1213 |
+
#: app/features/mec/booking.php:452 app/features/mec/booking.php:484
|
1214 |
msgid "Option Price"
|
1215 |
msgstr ""
|
1216 |
|
1217 |
#: app/features/events.php:2122 app/features/events.php:2126
|
1218 |
#: app/features/events.php:2166 app/features/events.php:2169
|
1219 |
+
#: app/features/mec/booking.php:458 app/features/mec/booking.php:461
|
1220 |
+
#: app/features/mec/booking.php:490 app/features/mec/booking.php:493
|
1221 |
msgid "Maximum Per Ticket"
|
1222 |
msgstr ""
|
1223 |
|
1224 |
#: app/features/events.php:2127 app/features/events.php:2170
|
1225 |
+
#: app/features/mec/booking.php:462 app/features/mec/booking.php:494
|
1226 |
msgid "Maximum Per Ticket. Leave it blank for unlimited."
|
1227 |
msgstr ""
|
1228 |
|
1229 |
+
#: app/features/events.php:2317 app/features/mec/regform.php:264
|
1230 |
+
#: app/libraries/main.php:2188
|
1231 |
#, fuzzy
|
1232 |
#| msgid "Name"
|
1233 |
msgid "MEC Name"
|
1234 |
msgstr "Nombre"
|
1235 |
|
1236 |
+
#: app/features/events.php:2319 app/features/mec/regform.php:265
|
1237 |
+
#: app/libraries/main.php:2217
|
1238 |
#, fuzzy
|
1239 |
#| msgid "Email"
|
1240 |
msgid "MEC Email"
|
1241 |
msgstr "Correo electrónico"
|
1242 |
|
1243 |
+
#: app/features/events.php:2320 app/features/mec/regform.php:266
|
1244 |
+
#: app/libraries/main.php:2158
|
1245 |
msgid "Text"
|
1246 |
msgstr "Texto"
|
1247 |
|
1248 |
+
#: app/features/events.php:2323 app/features/mec/regform.php:269
|
1249 |
#: app/features/organizers.php:102 app/features/organizers.php:146
|
1250 |
#: app/features/speakers.php:112 app/features/speakers.php:176
|
1251 |
+
#: app/features/speakers.php:245 app/libraries/main.php:2334
|
1252 |
msgid "Tel"
|
1253 |
msgstr "Tel"
|
1254 |
|
1255 |
+
#: app/features/events.php:2324 app/features/mec/regform.php:270
|
1256 |
+
#: app/libraries/main.php:2276
|
1257 |
msgid "File"
|
1258 |
msgstr ""
|
1259 |
|
1260 |
+
#: app/features/events.php:2326 app/features/mec/regform.php:271
|
1261 |
+
#: app/libraries/main.php:2363
|
1262 |
msgid "Textarea"
|
1263 |
msgstr "Área de texto"
|
1264 |
|
1265 |
+
#: app/features/events.php:2328 app/features/mec/regform.php:272
|
1266 |
+
#: app/libraries/main.php:2416
|
1267 |
msgid "Checkboxes"
|
1268 |
msgstr "Checkboxes"
|
1269 |
|
1270 |
+
#: app/features/events.php:2330 app/features/mec/regform.php:273
|
1271 |
+
#: app/libraries/main.php:2460
|
1272 |
msgid "Radio Buttons"
|
1273 |
msgstr "Botón tipo radio"
|
1274 |
|
1341 |
#: app/features/mec/meta_boxes/search_form.php:604
|
1342 |
#: app/features/mec/meta_boxes/search_form.php:611
|
1343 |
#: app/features/mec/meta_boxes/search_form.php:618
|
1344 |
+
#: app/features/mec/regform.php:274 app/libraries/main.php:2504
|
1345 |
msgid "Dropdown"
|
1346 |
msgstr "Desplegable"
|
1347 |
|
1348 |
+
#: app/features/events.php:2333 app/features/mec/regform.php:275
|
1349 |
+
#: app/libraries/main.php:2551
|
1350 |
msgid "Agreement"
|
1351 |
msgstr "Acuerdo"
|
1352 |
|
1353 |
+
#: app/features/events.php:2334 app/features/mec/regform.php:276
|
1354 |
+
#: app/libraries/main.php:2392
|
1355 |
msgid "Paragraph"
|
1356 |
msgstr "Párrafo"
|
1357 |
|
1358 |
+
#: app/features/events.php:2910 app/features/events.php:2927
|
1359 |
+
#: app/features/events.php:2944
|
1360 |
#, php-format
|
1361 |
msgid "Show all %s"
|
1362 |
msgstr "Mostrar todos %s"
|
1363 |
|
1364 |
+
#: app/features/events.php:2910
|
1365 |
msgid "labels"
|
1366 |
msgstr "etiquetas"
|
1367 |
|
1368 |
+
#: app/features/events.php:2927
|
1369 |
msgid "locations"
|
1370 |
msgstr "ubicaciones"
|
1371 |
|
1372 |
+
#: app/features/events.php:2944
|
1373 |
msgid "organizers"
|
1374 |
msgstr "organizadores"
|
1375 |
|
1376 |
+
#: app/features/events.php:2973 app/features/events.php:3157
|
1377 |
+
#: app/features/events.php:3199 app/features/ix.php:2740
|
1378 |
#: app/features/ix.php:2781 app/features/locations.php:58
|
1379 |
#: app/features/locations.php:229 app/features/locations.php:286
|
1380 |
#: app/features/locations.php:288 app/features/locations.php:297
|
1381 |
+
#: app/features/mec/meta_boxes/display_options.php:800
|
1382 |
#: app/features/mec/meta_boxes/search_form.php:38
|
1383 |
#: app/features/mec/meta_boxes/search_form.php:99
|
1384 |
#: app/features/mec/meta_boxes/search_form.php:160
|
1388 |
#: app/features/mec/meta_boxes/search_form.php:404
|
1389 |
#: app/features/mec/meta_boxes/search_form.php:458
|
1390 |
#: app/features/mec/meta_boxes/search_form.php:519
|
1391 |
+
#: app/features/mec/meta_boxes/search_form.php:580 app/libraries/main.php:1688
|
1392 |
+
#: app/libraries/main.php:4483 app/libraries/skins.php:807
|
1393 |
#: app/skins/single.php:337 app/skins/single.php:754
|
1394 |
#: app/skins/single/default.php:153 app/skins/single/default.php:364
|
1395 |
#: app/skins/single/m1.php:155 app/skins/single/m2.php:87
|
1397 |
msgid "Location"
|
1398 |
msgstr "Localización"
|
1399 |
|
1400 |
+
#: app/features/events.php:2974 app/features/events.php:3157
|
1401 |
+
#: app/features/events.php:3199 app/features/ix.php:2740
|
1402 |
+
#: app/features/ix.php:2781 app/features/mec/meta_boxes/display_options.php:801
|
1403 |
#: app/features/mec/meta_boxes/search_form.php:45
|
1404 |
#: app/features/mec/meta_boxes/search_form.php:106
|
1405 |
#: app/features/mec/meta_boxes/search_form.php:167
|
1412 |
#: app/features/mec/meta_boxes/search_form.php:587
|
1413 |
#: app/features/organizers.php:58 app/features/organizers.php:199
|
1414 |
#: app/features/organizers.php:255 app/features/organizers.php:257
|
1415 |
+
#: app/features/organizers.php:266 app/libraries/main.php:4485
|
1416 |
#: app/libraries/skins.php:833 app/skins/single.php:644
|
1417 |
#: app/skins/single/default.php:194 app/skins/single/default.php:405
|
1418 |
#: app/skins/single/m1.php:90 app/skins/single/m2.php:22
|
1420 |
msgid "Organizer"
|
1421 |
msgstr "Organizador"
|
1422 |
|
1423 |
+
#: app/features/events.php:2978
|
1424 |
msgid "Repeat"
|
1425 |
msgstr "Repetir"
|
1426 |
|
1427 |
+
#: app/features/events.php:2979
|
1428 |
msgid "Author"
|
1429 |
msgstr "Autor"
|
1430 |
|
1431 |
+
#: app/features/events.php:3092 app/features/events.php:3093
|
1432 |
msgid "iCal Export"
|
1433 |
msgstr "Exportar iCal"
|
1434 |
|
1435 |
+
#: app/features/events.php:3095 app/features/events.php:3096
|
1436 |
msgid "CSV Export"
|
1437 |
msgstr "Exportar CSV"
|
1438 |
|
1439 |
+
#: app/features/events.php:3098 app/features/events.php:3099
|
1440 |
msgid "MS Excel Export"
|
1441 |
msgstr "Exportar Excel"
|
1442 |
|
1443 |
+
#: app/features/events.php:3101 app/features/events.php:3102
|
1444 |
msgid "XML Export"
|
1445 |
msgstr "Exportación XML"
|
1446 |
|
1447 |
+
#: app/features/events.php:3104 app/features/events.php:3105
|
1448 |
msgid "JSON Export"
|
1449 |
msgstr "Exportación JSON"
|
1450 |
|
1451 |
+
#: app/features/events.php:3107 app/features/events.php:3108
|
1452 |
msgid "Duplicate"
|
1453 |
msgstr "Duplicar"
|
1454 |
|
1455 |
+
#: app/features/events.php:3157 app/features/events.php:3199
|
1456 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
1457 |
#: app/features/labels.php:176 app/features/locations.php:228
|
1458 |
#: app/features/organizers.php:198 app/features/speakers.php:242
|
1459 |
msgid "ID"
|
1460 |
msgstr "ID"
|
1461 |
|
1462 |
+
#: app/features/events.php:3157 app/features/events.php:3199
|
1463 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
1464 |
msgid "Link"
|
1465 |
msgstr "Enlace"
|
1466 |
|
1467 |
+
#: app/features/events.php:3157 app/features/events.php:3199
|
1468 |
#, php-format
|
1469 |
msgid "%s Tel"
|
1470 |
msgstr "%s Teléfono "
|
1471 |
|
1472 |
+
#: app/features/events.php:3157 app/features/events.php:3199
|
1473 |
#, php-format
|
1474 |
msgid "%s Email"
|
1475 |
msgstr "%s Correo electrónico"
|
1516 |
msgid "Please fill event title field!"
|
1517 |
msgstr "Por favor llena el campo de título del evento!"
|
1518 |
|
1519 |
+
#: app/features/fes.php:832
|
1520 |
msgid "The event submitted. It will publish as soon as possible."
|
1521 |
msgstr "El evento presentado. Se publicará lo antes posible."
|
1522 |
|
1523 |
+
#: app/features/fes.php:833
|
1524 |
msgid "The event published."
|
1525 |
msgstr "El evento a sido publicado."
|
1526 |
|
1556 |
"Si lo rellenas, se reemplazará en vez del enlace de la página del evento por "
|
1557 |
"defecto. Inserta todo el enlace incluyendo http(s)://"
|
1558 |
|
1559 |
+
#: app/features/fes/form.php:723 app/features/mec/settings.php:767
|
1560 |
msgid "Featured Image"
|
1561 |
msgstr "Imagen destacada"
|
1562 |
|
1566 |
|
1567 |
#: app/features/fes/form.php:770 app/features/labels.php:61
|
1568 |
#: app/features/labels.php:220 app/features/mec.php:333
|
1569 |
+
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4480
|
1570 |
#: app/skins/single.php:536 app/skins/single/default.php:132
|
1571 |
#: app/skins/single/default.php:343 app/skins/single/m1.php:64
|
1572 |
#: app/skins/single/modern.php:214
|
1573 |
msgid "Labels"
|
1574 |
msgstr "Etiquetas"
|
1575 |
|
1576 |
+
#: app/features/fes/form.php:816 app/features/mec.php:331
|
1577 |
#: app/features/mec/meta_boxes/filter.php:138
|
1578 |
msgid "Tags"
|
1579 |
msgstr "Tags"
|
1580 |
|
1581 |
+
#: app/features/fes/form.php:818
|
1582 |
msgid "Insert your desired tags, comma separated."
|
1583 |
msgstr "Inserta las etiquetas que quieras, separadas por comas."
|
1584 |
|
1585 |
+
#: app/features/fes/form.php:854
|
1586 |
msgid "Submit"
|
1587 |
msgstr "Enviar"
|
1588 |
|
1607 |
msgid "MEC - Import / Export"
|
1608 |
msgstr "MEC - Importar / Exportar"
|
1609 |
|
1610 |
+
#: app/features/ix.php:107 app/features/mec/booking.php:203
|
1611 |
+
#: app/features/mec/gateways.php:168 app/features/mec/ie.php:164
|
1612 |
+
#: app/features/mec/messages.php:168 app/features/mec/modules.php:230
|
1613 |
+
#: app/features/mec/notifications.php:204 app/features/mec/regform.php:202
|
1614 |
+
#: app/features/mec/settings.php:235 app/features/mec/single.php:196
|
1615 |
+
#: app/features/mec/styles.php:168 app/features/mec/styling.php:190
|
1616 |
#: app/features/mec/support.php:73
|
1617 |
msgid "Import / Export"
|
1618 |
msgstr "Import / Export"
|
1647 |
msgid "Both of API key and Calendar ID are required!"
|
1648 |
msgstr "¡Tanto la clave de API como la ID de Calendario son necesarias!"
|
1649 |
|
1650 |
+
#: app/features/ix.php:2000 app/features/ix.php:2419 app/features/ix.php:3126
|
1651 |
msgid "Please select some events to import!"
|
1652 |
msgstr "Por favor, ¡selecciona algunos eventos para importar!"
|
1653 |
|
1684 |
"¡Todas las aplicaciones de cliente, secreto de cliente y ID de calendario "
|
1685 |
"son obligatorios!"
|
1686 |
|
1687 |
+
#: app/features/ix.php:3055
|
1688 |
#, php-format
|
1689 |
msgid "%s events added to Google Calendar successfully."
|
1690 |
msgstr "%s eventos añadidos con éxito a Google Calendar."
|
1691 |
|
1692 |
+
#: app/features/ix.php:3056
|
1693 |
#, php-format
|
1694 |
msgid "%s previously added events get updated."
|
1695 |
msgstr "%s eventos añadidos previamente se actualizan."
|
1696 |
|
1697 |
+
#: app/features/ix.php:3057
|
1698 |
#, php-format
|
1699 |
msgid "%s events failed to add for following reasons: %s"
|
1700 |
msgstr "%s Eventos fallaron al añadirse por los siguientes motivos: %s"
|
1701 |
|
1702 |
+
#: app/features/ix.php:3089
|
1703 |
msgid "Please insert your Facebook page's link."
|
1704 |
msgstr ""
|
1705 |
|
1706 |
+
#: app/features/ix.php:3098
|
1707 |
msgid ""
|
1708 |
"We couldn't recognize your Facebook page. Please check it and provide us a "
|
1709 |
"valid Facebook page link."
|
1710 |
msgstr ""
|
1711 |
|
1712 |
+
#: app/features/ix.php:3130
|
1713 |
msgid "Please insert your facebook page's link."
|
1714 |
msgstr "Por favor, inserta el enlace de tu página de Facebook."
|
1715 |
|
1716 |
+
#: app/features/ix.php:3135
|
1717 |
msgid ""
|
1718 |
"We couldn't recognize your Facebook page. Please check it and provide us a "
|
1719 |
"valid facebook page link."
|
1748 |
#: app/features/ix/import.php:15 app/features/ix/import_f_calendar.php:15
|
1749 |
#: app/features/ix/import_g_calendar.php:15
|
1750 |
#: app/features/ix/import_meetup.php:15 app/features/ix/sync.php:15
|
1751 |
+
#: app/features/ix/thirdparty.php:15 app/features/mec/ie.php:188
|
1752 |
msgid "Export"
|
1753 |
msgstr "Exportar"
|
1754 |
|
1759 |
#: app/features/ix/import_g_calendar.php:103
|
1760 |
#: app/features/ix/import_meetup.php:16 app/features/ix/import_meetup.php:85
|
1761 |
#: app/features/ix/sync.php:16 app/features/ix/thirdparty.php:16
|
1762 |
+
#: app/features/ix/thirdparty.php:98 app/features/mec/ie.php:177
|
1763 |
msgid "Import"
|
1764 |
msgstr "Importar"
|
1765 |
|
1883 |
#: app/features/ix/export_g_calendar.php:72
|
1884 |
#: app/features/ix/export_g_calendar.php:147
|
1885 |
#: app/features/ix/export_g_calendar.php:164
|
1886 |
+
#: app/features/mec/notifications.php:282
|
1887 |
+
#: app/features/mec/notifications.php:334
|
1888 |
+
#: app/features/mec/notifications.php:387
|
1889 |
+
#: app/features/mec/notifications.php:588
|
1890 |
msgid "Add to Google Calendar"
|
1891 |
msgstr "Añadir a Google Calendar"
|
1892 |
|
1893 |
+
#: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:571
|
1894 |
+
#: app/features/mec/modules.php:602 app/features/mec/notifications.php:735
|
1895 |
+
#: app/features/mec/settings.php:1030 app/features/mec/single.php:429
|
1896 |
msgid "Checking ..."
|
1897 |
msgstr "Verificando…"
|
1898 |
|
1939 |
msgid "ICS Feed"
|
1940 |
msgstr "ICS Feed"
|
1941 |
|
1942 |
+
#: app/features/ix/import.php:46 app/features/mec/booking.php:222
|
1943 |
+
#: app/features/mec/booking.php:333 app/features/mec/booking.php:351
|
1944 |
+
#: app/features/mec/booking.php:428 app/features/mec/modules.php:267
|
1945 |
#: app/features/mec/modules.php:408 app/features/mec/modules.php:425
|
1946 |
#, php-format
|
1947 |
msgid "%s is required to use this feature."
|
1948 |
msgstr "Se requiere %s para usar esta funcionalidad."
|
1949 |
|
1950 |
#: app/features/ix/import.php:46 app/features/ix/sync.php:22
|
1951 |
+
#: app/features/mec/booking.php:222 app/features/mec/booking.php:333
|
1952 |
+
#: app/features/mec/booking.php:351 app/features/mec/booking.php:428
|
1953 |
#: app/features/mec/meta_boxes/display_options.php:296
|
1954 |
+
#: app/features/mec/meta_boxes/display_options.php:423
|
1955 |
+
#: app/features/mec/meta_boxes/display_options.php:474
|
1956 |
+
#: app/features/mec/meta_boxes/display_options.php:581
|
1957 |
+
#: app/features/mec/meta_boxes/display_options.php:688
|
1958 |
+
#: app/features/mec/meta_boxes/display_options.php:761
|
1959 |
+
#: app/features/mec/meta_boxes/display_options.php:941
|
1960 |
#: app/features/mec/modules.php:267 app/features/mec/modules.php:408
|
1961 |
#: app/features/mec/modules.php:425
|
1962 |
msgid "Pro version of Modern Events Calendar"
|
2122 |
msgstr "Autosincronización"
|
2123 |
|
2124 |
#: app/features/ix/sync.php:22
|
2125 |
+
#: app/features/mec/meta_boxes/display_options.php:761
|
2126 |
#, php-format
|
2127 |
msgid "%s is required to use synchronization feature."
|
2128 |
msgstr "Se requiere %s para usar la funcionalidad de sincronización."
|
2133 |
|
2134 |
#: app/features/ix/sync.php:32 app/features/ix/sync.php:41
|
2135 |
#: app/features/ix/sync.php:52 app/features/ix/sync.php:63
|
2136 |
+
#: app/features/mec/notifications.php:531
|
2137 |
msgid "Important Note"
|
2138 |
msgstr "Nota importante"
|
2139 |
|
2246 |
#: app/features/mec/meta_boxes/display_options.php:32
|
2247 |
#: app/features/mec/meta_boxes/display_options.php:157
|
2248 |
#: app/features/mec/meta_boxes/display_options.php:301
|
2249 |
+
#: app/features/mec/meta_boxes/display_options.php:479
|
2250 |
+
#: app/features/mec/meta_boxes/display_options.php:529
|
2251 |
+
#: app/features/mec/meta_boxes/display_options.php:693
|
2252 |
+
#: app/features/mec/meta_boxes/display_options.php:823
|
2253 |
+
#: app/features/mec/meta_boxes/display_options.php:880
|
2254 |
+
#: app/features/mec/meta_boxes/display_options.php:972
|
2255 |
+
#: app/features/mec/meta_boxes/display_options.php:1058
|
2256 |
msgid "Style"
|
2257 |
msgstr "Estilo"
|
2258 |
|
2274 |
msgstr ""
|
2275 |
|
2276 |
#: app/features/labels.php:117 app/features/labels.php:142
|
2277 |
+
#: app/libraries/main.php:4707 app/skins/agenda/render.php:41
|
2278 |
#: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:59
|
2279 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
|
2280 |
#: app/skins/daily_view/render.php:27 app/skins/grid/render.php:53
|
2309 |
|
2310 |
#: app/features/locations.php:59 app/features/mec.php:334
|
2311 |
#: app/features/mec/dashboard.php:202 app/features/mec/meta_boxes/filter.php:87
|
2312 |
+
#: app/libraries/main.php:4482
|
2313 |
msgid "Locations"
|
2314 |
msgstr "Lugar"
|
2315 |
|
2380 |
msgid "eg. City Hall"
|
2381 |
msgstr "ej. Almería"
|
2382 |
|
2383 |
+
#: app/features/locations.php:309 app/features/mec/settings.php:797
|
2384 |
#: app/widgets/single.php:115
|
2385 |
msgid "Event Location"
|
2386 |
msgstr "Lugar del evento"
|
2416 |
msgid "Don't show map in single event page"
|
2417 |
msgstr "No mostrar el mapa en la página del detalle del evento"
|
2418 |
|
2419 |
+
#: app/features/locations.php:355 app/libraries/main.php:4516
|
2420 |
#, fuzzy
|
2421 |
#| msgid "Locations"
|
2422 |
msgid "Other Locations"
|
2469 |
|
2470 |
#: app/features/mec.php:335 app/features/mec/dashboard.php:209
|
2471 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2472 |
+
#: app/libraries/main.php:4484
|
2473 |
msgid "Organizers"
|
2474 |
msgstr "Organizadores"
|
2475 |
|
2574 |
"your host provider in this regard."
|
2575 |
msgstr ""
|
2576 |
|
2577 |
+
#: app/features/mec/booking.php:24 app/features/mec/booking.php:511
|
2578 |
+
#: app/features/mec/booking.php:521 app/features/mec/booking.php:588
|
2579 |
+
#: app/features/mec/booking.php:602 app/features/mec/gateways.php:11
|
2580 |
+
#: app/features/mec/gateways.php:195 app/features/mec/gateways.php:204
|
2581 |
+
#: app/features/mec/gateways.php:245 app/features/mec/gateways.php:255
|
2582 |
+
#: app/features/mec/messages.php:11 app/features/mec/messages.php:202
|
2583 |
+
#: app/features/mec/messages.php:211 app/features/mec/messages.php:245
|
2584 |
+
#: app/features/mec/messages.php:254 app/features/mec/modules.php:22
|
2585 |
#: app/features/mec/modules.php:542 app/features/mec/modules.php:552
|
2586 |
#: app/features/mec/modules.php:619 app/features/mec/modules.php:633
|
2587 |
+
#: app/features/mec/notifications.php:10 app/features/mec/notifications.php:644
|
2588 |
+
#: app/features/mec/notifications.php:656
|
2589 |
+
#: app/features/mec/notifications.php:752
|
2590 |
+
#: app/features/mec/notifications.php:766 app/features/mec/regform.php:47
|
2591 |
+
#: app/features/mec/regform.php:282 app/features/mec/regform.php:337
|
2592 |
+
#: app/features/mec/regform.php:373 app/features/mec/regform.php:382
|
2593 |
+
#: app/features/mec/settings.php:31 app/features/mec/settings.php:954
|
2594 |
+
#: app/features/mec/settings.php:964 app/features/mec/settings.php:1047
|
2595 |
+
#: app/features/mec/settings.php:1061 app/features/mec/single.php:14
|
2596 |
+
#: app/features/mec/single.php:369 app/features/mec/single.php:379
|
2597 |
+
#: app/features/mec/single.php:446 app/features/mec/single.php:460
|
2598 |
+
#: app/features/mec/styles.php:11 app/features/mec/styles.php:188
|
2599 |
+
#: app/features/mec/styles.php:197 app/features/mec/styles.php:234
|
2600 |
+
#: app/features/mec/styles.php:243 app/features/mec/styling.php:33
|
2601 |
+
#: app/features/mec/styling.php:395 app/features/mec/styling.php:404
|
2602 |
+
#: app/features/mec/styling.php:467 app/features/mec/styling.php:476
|
2603 |
msgid "Save Changes"
|
2604 |
msgstr "Guardar Cambios"
|
2605 |
|
2607 |
#: app/features/mec/ie.php:25 app/features/mec/messages.php:29
|
2608 |
#: app/features/mec/modules.php:36 app/features/mec/notifications.php:28
|
2609 |
#: app/features/mec/regform.php:65 app/features/mec/settings.php:57
|
2610 |
+
#: app/features/mec/settings.php:364 app/features/mec/single.php:28
|
2611 |
#: app/features/mec/styles.php:29 app/features/mec/styling.php:51
|
2612 |
msgid "Archive Pages"
|
2613 |
msgstr "Páginas de archivo"
|
2616 |
#: app/features/mec/ie.php:30 app/features/mec/messages.php:34
|
2617 |
#: app/features/mec/modules.php:41 app/features/mec/notifications.php:33
|
2618 |
#: app/features/mec/regform.php:70 app/features/mec/settings.php:87
|
2619 |
+
#: app/features/mec/settings.php:870 app/features/mec/single.php:33
|
2620 |
#: app/features/mec/styles.php:34 app/features/mec/styling.php:56
|
2621 |
msgid "User Profile"
|
2622 |
msgstr ""
|
2647 |
#: app/features/mec/ie.php:46 app/features/mec/messages.php:50
|
2648 |
#: app/features/mec/modules.php:57 app/features/mec/notifications.php:49
|
2649 |
#: app/features/mec/regform.php:86 app/features/mec/settings.php:117
|
2650 |
+
#: app/features/mec/single.php:56 app/features/mec/single.php:213
|
2651 |
#: app/features/mec/styles.php:50 app/features/mec/styling.php:72
|
2652 |
#, fuzzy
|
2653 |
#| msgid "Single Event Style"
|
2658 |
#: app/features/mec/ie.php:49 app/features/mec/messages.php:53
|
2659 |
#: app/features/mec/modules.php:60 app/features/mec/notifications.php:52
|
2660 |
#: app/features/mec/regform.php:89 app/features/mec/settings.php:120
|
2661 |
+
#: app/features/mec/single.php:74 app/features/mec/single.php:348
|
2662 |
#: app/features/mec/styles.php:53 app/features/mec/styling.php:75
|
2663 |
msgid "Additional Organizers"
|
2664 |
msgstr "Organizadores adicionales"
|
2674 |
msgid "Additional Locations"
|
2675 |
msgstr "Organizadores adicionales"
|
2676 |
|
2677 |
+
#: app/features/mec/booking.php:98 app/features/mec/booking.php:348
|
2678 |
#: app/features/mec/gateways.php:71 app/features/mec/ie.php:67
|
2679 |
#: app/features/mec/messages.php:71 app/features/mec/modules.php:78
|
2680 |
#: app/features/mec/notifications.php:70 app/features/mec/regform.php:107
|
2683 |
msgid "Taxes / Fees"
|
2684 |
msgstr "Impuestos/Tasas"
|
2685 |
|
2686 |
+
#: app/features/mec/booking.php:104 app/features/mec/booking.php:425
|
2687 |
#: app/features/mec/gateways.php:72 app/features/mec/ie.php:68
|
2688 |
#: app/features/mec/messages.php:72 app/features/mec/modules.php:79
|
2689 |
#: app/features/mec/notifications.php:71 app/features/mec/regform.php:108
|
2754 |
msgid "Next Event"
|
2755 |
msgstr "Próximo Evento"
|
2756 |
|
2757 |
+
#: app/features/mec/booking.php:168 app/features/mec/gateways.php:133
|
2758 |
+
#: app/features/mec/ie.php:129 app/features/mec/messages.php:133
|
2759 |
+
#: app/features/mec/modules.php:195 app/features/mec/notifications.php:142
|
2760 |
+
#: app/features/mec/notifications.php:289 app/features/mec/regform.php:167
|
2761 |
+
#: app/features/mec/settings.php:200 app/features/mec/single.php:161
|
2762 |
+
#: app/features/mec/styles.php:133 app/features/mec/styling.php:155
|
2763 |
msgid "Booking Verification"
|
2764 |
msgstr "Verificación de la reserva"
|
2765 |
|
2766 |
+
#: app/features/mec/booking.php:169 app/features/mec/booking.php:304
|
2767 |
+
#: app/features/mec/gateways.php:134 app/features/mec/ie.php:130
|
2768 |
+
#: app/features/mec/messages.php:134 app/features/mec/modules.php:196
|
2769 |
+
#: app/features/mec/notifications.php:148
|
2770 |
+
#: app/features/mec/notifications.php:341 app/features/mec/regform.php:168
|
2771 |
+
#: app/features/mec/settings.php:201 app/features/mec/single.php:162
|
2772 |
+
#: app/features/mec/styles.php:134 app/features/mec/styling.php:156
|
2773 |
msgid "Booking Confirmation"
|
2774 |
msgstr "Confirmación de reserva"
|
2775 |
|
2776 |
+
#: app/features/mec/booking.php:170 app/features/mec/gateways.php:135
|
2777 |
+
#: app/features/mec/ie.php:131 app/features/mec/messages.php:135
|
2778 |
+
#: app/features/mec/modules.php:197 app/features/mec/notifications.php:154
|
2779 |
+
#: app/features/mec/notifications.php:393 app/features/mec/regform.php:169
|
2780 |
+
#: app/features/mec/settings.php:202 app/features/mec/single.php:163
|
2781 |
+
#: app/features/mec/styles.php:135 app/features/mec/styling.php:157
|
2782 |
#, fuzzy
|
2783 |
#| msgid "Booking cancellation link."
|
2784 |
msgid "Booking Cancellation"
|
2785 |
msgstr "Enlace de cancelación de la reserva."
|
2786 |
|
2787 |
+
#: app/features/mec/booking.php:171 app/features/mec/gateways.php:136
|
2788 |
+
#: app/features/mec/ie.php:132 app/features/mec/messages.php:136
|
2789 |
+
#: app/features/mec/modules.php:198 app/features/mec/notifications.php:160
|
2790 |
+
#: app/features/mec/notifications.php:461 app/features/mec/regform.php:170
|
2791 |
+
#: app/features/mec/settings.php:203 app/features/mec/single.php:164
|
2792 |
+
#: app/features/mec/styles.php:136 app/features/mec/styling.php:158
|
2793 |
msgid "Admin"
|
2794 |
msgstr ""
|
2795 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2796 |
#: app/features/mec/booking.php:172 app/features/mec/gateways.php:137
|
2797 |
#: app/features/mec/ie.php:133 app/features/mec/messages.php:137
|
2798 |
+
#: app/features/mec/modules.php:199 app/features/mec/notifications.php:166
|
2799 |
+
#: app/features/mec/notifications.php:521 app/features/mec/regform.php:171
|
2800 |
#: app/features/mec/settings.php:204 app/features/mec/single.php:165
|
2801 |
#: app/features/mec/styles.php:137 app/features/mec/styling.php:159
|
2802 |
+
#: app/libraries/notifications.php:354
|
2803 |
+
msgid "Booking Reminder"
|
2804 |
+
msgstr "Recordatorio de reserva"
|
2805 |
+
|
2806 |
+
#: app/features/mec/booking.php:174 app/features/mec/gateways.php:139
|
2807 |
+
#: app/features/mec/ie.php:135 app/features/mec/messages.php:139
|
2808 |
+
#: app/features/mec/modules.php:201 app/features/mec/notifications.php:172
|
2809 |
+
#: app/features/mec/notifications.php:597 app/features/mec/regform.php:173
|
2810 |
+
#: app/features/mec/settings.php:206 app/features/mec/single.php:167
|
2811 |
+
#: app/features/mec/styles.php:139 app/features/mec/styling.php:161
|
2812 |
#: app/features/mec/support-page.php:80
|
2813 |
msgid "New Event"
|
2814 |
msgstr "Nuevo evento"
|
2815 |
|
2816 |
+
#: app/features/mec/booking.php:182 app/features/mec/gateways.php:147
|
2817 |
+
#: app/features/mec/ie.php:143 app/features/mec/messages.php:147
|
2818 |
+
#: app/features/mec/modules.php:209 app/features/mec/notifications.php:183
|
2819 |
+
#: app/features/mec/regform.php:181 app/features/mec/settings.php:214
|
2820 |
+
#: app/features/mec/single.php:175 app/features/mec/styles.php:147
|
2821 |
+
#: app/features/mec/styling.php:169 app/features/mec/support.php:52
|
2822 |
msgid "Styling Options"
|
2823 |
msgstr "Opciones visuales"
|
2824 |
|
2825 |
+
#: app/features/mec/booking.php:189 app/features/mec/gateways.php:154
|
2826 |
+
#: app/features/mec/ie.php:150 app/features/mec/messages.php:154
|
2827 |
+
#: app/features/mec/modules.php:216 app/features/mec/notifications.php:190
|
2828 |
+
#: app/features/mec/regform.php:188 app/features/mec/settings.php:221
|
2829 |
+
#: app/features/mec/single.php:182 app/features/mec/styles.php:154
|
2830 |
+
#: app/features/mec/styling.php:176 app/features/mec/support.php:59
|
2831 |
msgid "Custom CSS"
|
2832 |
msgstr "CSS personalizado"
|
2833 |
|
2834 |
+
#: app/features/mec/booking.php:196 app/features/mec/gateways.php:161
|
2835 |
+
#: app/features/mec/ie.php:157 app/features/mec/messages.php:161
|
2836 |
+
#: app/features/mec/messages.php:181 app/features/mec/modules.php:223
|
2837 |
+
#: app/features/mec/notifications.php:197 app/features/mec/regform.php:195
|
2838 |
+
#: app/features/mec/settings.php:228 app/features/mec/single.php:189
|
2839 |
+
#: app/features/mec/styles.php:161 app/features/mec/styling.php:183
|
2840 |
#: app/features/mec/support.php:66
|
2841 |
msgid "Messages"
|
2842 |
msgstr "Mensajes"
|
2843 |
|
2844 |
+
#: app/features/mec/booking.php:227
|
2845 |
msgid "Enable booking module"
|
2846 |
msgstr "Activar módulo de reservas"
|
2847 |
|
2848 |
+
#: app/features/mec/booking.php:228
|
2849 |
msgid ""
|
2850 |
"After enable it, you should reloading this page to see Payment Gateways on "
|
2851 |
"settings and see a new menu on Dashboard"
|
2852 |
msgstr ""
|
2853 |
|
2854 |
+
#: app/features/mec/booking.php:233 app/features/mec/booking.php:238
|
2855 |
#: app/features/mec/modules.php:491 app/features/mec/modules.php:496
|
2856 |
msgid "Date Format"
|
2857 |
msgstr "Formato de fecha"
|
2858 |
|
2859 |
+
#: app/features/mec/booking.php:239
|
2860 |
msgid "Default is Y-m-d"
|
2861 |
msgstr "El valor predeterminado es Y-m-d"
|
2862 |
|
2863 |
+
#: app/features/mec/booking.php:246
|
2864 |
msgid "Maximum Dates"
|
2865 |
msgstr "Fechas máximas"
|
2866 |
|
2867 |
+
#: app/features/mec/booking.php:248
|
2868 |
msgid "Default is 6"
|
2869 |
msgstr "El valor predeterminado es 6"
|
2870 |
|
2871 |
+
#: app/features/mec/booking.php:252 app/features/mec/booking.php:262
|
2872 |
msgid "Thank You Page"
|
2873 |
msgstr "Página de agradecimiento"
|
2874 |
|
2875 |
+
#: app/features/mec/booking.php:263
|
2876 |
msgid ""
|
2877 |
"User redirects to this page after booking. Leave it empty if you want to "
|
2878 |
"disable it."
|
2880 |
"Se redirecciona al usuario a esta pagina una vez que completa la reserva. "
|
2881 |
"Déjalo vacío si lo deseas desactivado."
|
2882 |
|
2883 |
+
#: app/features/mec/booking.php:274
|
2884 |
msgid "Enable Express Attendees Form"
|
2885 |
msgstr "Habilitar formulario de asistentes exprés"
|
2886 |
|
2887 |
+
#: app/features/mec/booking.php:278 app/modules/booking/steps/form.php:49
|
2888 |
msgid "Attendees Form"
|
2889 |
msgstr "Asistentes"
|
2890 |
|
2891 |
+
#: app/features/mec/booking.php:279
|
2892 |
msgid ""
|
2893 |
"Users are able to apply first attendee information for other attendees in "
|
2894 |
"the booking form."
|
2896 |
"Los usuarios son capaces de copiar la información del primer invitado para "
|
2897 |
"los demás invitados en el formulario de reservas."
|
2898 |
|
2899 |
+
#: app/features/mec/booking.php:285
|
2900 |
msgid "Email verification"
|
2901 |
msgstr "Verificación por email"
|
2902 |
|
2903 |
+
#: app/features/mec/booking.php:291
|
2904 |
msgid "Auto verification for free bookings"
|
2905 |
msgstr "Auto verificación para reservas gratuitas"
|
2906 |
|
2907 |
+
#: app/features/mec/booking.php:300
|
2908 |
msgid "Auto verification for paid bookings"
|
2909 |
msgstr "Auto verificación para reservas de pago"
|
2910 |
|
2911 |
+
#: app/features/mec/booking.php:310
|
2912 |
msgid "Auto confirmation for free bookings"
|
2913 |
msgstr "Confirmación automática para reservas gratuitas"
|
2914 |
|
2915 |
+
#: app/features/mec/booking.php:319
|
2916 |
msgid "Auto confirmation for paid bookings"
|
2917 |
msgstr "Confirmación automática para reservas pagas"
|
2918 |
|
2919 |
+
#: app/features/mec/booking.php:338
|
2920 |
msgid "Enable coupons module"
|
2921 |
msgstr "Activar módulo de cupones"
|
2922 |
|
2923 |
+
#: app/features/mec/booking.php:340
|
2924 |
msgid ""
|
2925 |
"After enable it, you should reloading this page to see a new menu on "
|
2926 |
"Dashboard > Booking"
|
2927 |
msgstr ""
|
2928 |
|
2929 |
+
#: app/features/mec/booking.php:356
|
2930 |
msgid "Enable taxes / fees module"
|
2931 |
msgstr "Activar módulo de Impuestos/Tasas"
|
2932 |
|
2933 |
+
#: app/features/mec/booking.php:361
|
2934 |
msgid "Add Fee"
|
2935 |
msgstr "Nueva tasa"
|
2936 |
|
2937 |
+
#: app/features/mec/booking.php:433
|
2938 |
msgid "Enable ticket options module"
|
2939 |
msgstr ""
|
2940 |
|
2941 |
+
#: app/features/mec/booking.php:438
|
2942 |
msgid "Add Variation / Option"
|
2943 |
msgstr ""
|
2944 |
|
2945 |
+
#: app/features/mec/booking.php:566 app/features/mec/gateways.php:224
|
2946 |
+
#: app/features/mec/messages.php:229 app/features/mec/modules.php:597
|
2947 |
+
#: app/features/mec/notifications.php:730 app/features/mec/regform.php:357
|
2948 |
+
#: app/features/mec/settings.php:1025 app/features/mec/single.php:424
|
2949 |
+
#: app/features/mec/styles.php:217 app/features/mec/styling.php:449
|
2950 |
msgid "Saved"
|
2951 |
msgstr "Guardado"
|
2952 |
|
2953 |
+
#: app/features/mec/booking.php:567 app/features/mec/gateways.php:225
|
2954 |
+
#: app/features/mec/messages.php:230 app/features/mec/modules.php:598
|
2955 |
+
#: app/features/mec/notifications.php:731 app/features/mec/regform.php:358
|
2956 |
+
#: app/features/mec/settings.php:1026 app/features/mec/single.php:425
|
2957 |
+
#: app/features/mec/styles.php:218 app/features/mec/styling.php:450
|
2958 |
msgid "Settings Saved!"
|
2959 |
msgstr "¡Ajustes guardados!"
|
2960 |
|
2961 |
+
#: app/features/mec/booking.php:569 app/features/mec/booking.php:591
|
2962 |
#: app/features/mec/modules.php:600 app/features/mec/modules.php:622
|
2963 |
+
#: app/features/mec/notifications.php:733
|
2964 |
+
#: app/features/mec/notifications.php:755 app/features/mec/settings.php:1028
|
2965 |
+
#: app/features/mec/settings.php:1050 app/features/mec/single.php:427
|
2966 |
+
#: app/features/mec/single.php:449 app/libraries/main.php:4706
|
2967 |
msgid "Verified"
|
2968 |
msgstr "Verificado"
|
2969 |
|
2970 |
+
#: app/features/mec/booking.php:593 app/features/mec/modules.php:624
|
2971 |
+
#: app/features/mec/notifications.php:757 app/features/mec/settings.php:1052
|
2972 |
+
#: app/features/mec/single.php:451
|
2973 |
msgid "Please Refresh Page"
|
2974 |
msgstr "Por favor, actualiza la página"
|
2975 |
|
3047 |
msgid "Activate Addons"
|
3048 |
msgstr "Activación MEC"
|
3049 |
|
3050 |
+
#: app/features/mec/dashboard.php:220 app/features/mec/settings.php:535
|
3051 |
msgid "Upcoming Events"
|
3052 |
msgstr "Próximos Eventos"
|
3053 |
|
3096 |
msgid "Change Log"
|
3097 |
msgstr "Historial de cambios"
|
3098 |
|
3099 |
+
#: app/features/mec/ie.php:178
|
3100 |
msgid ""
|
3101 |
"Insert your backup files below and press import to restore your site's "
|
3102 |
"options to the last backup."
|
3103 |
msgstr ""
|
3104 |
|
3105 |
+
#: app/features/mec/ie.php:179
|
3106 |
msgid ""
|
3107 |
"WARNING! Restoring backup will overwrite all of your current option values. "
|
3108 |
"Caution Indeed."
|
3109 |
msgstr ""
|
3110 |
|
3111 |
+
#: app/features/mec/ie.php:182
|
3112 |
msgid "Please paste your options here"
|
3113 |
msgstr ""
|
3114 |
|
3115 |
+
#: app/features/mec/ie.php:184
|
3116 |
msgid "Import Settings"
|
3117 |
msgstr ""
|
3118 |
|
3119 |
+
#: app/features/mec/ie.php:194
|
3120 |
msgid "Download Settings"
|
3121 |
msgstr ""
|
3122 |
|
3123 |
+
#: app/features/mec/messages.php:184
|
3124 |
msgid ""
|
3125 |
"You can change some MEC messages here simply. For example if you like to "
|
3126 |
"change \"REGISTER\" button label, you can do it here. By the Way, if your "
|
3138 |
|
3139 |
#: app/features/mec/meta_boxes/display_options.php:34
|
3140 |
#: app/features/mec/meta_boxes/display_options.php:159
|
3141 |
+
#: app/features/mec/meta_boxes/display_options.php:531
|
3142 |
+
#: app/features/mec/meta_boxes/display_options.php:825
|
3143 |
+
#: app/features/mec/settings.php:399 app/features/mec/settings.php:423
|
3144 |
+
#: app/features/mec/settings.php:432 app/features/mec/settings.php:473
|
3145 |
+
#: app/features/mec/settings.php:497 app/features/mec/settings.php:506
|
3146 |
msgid "Classic"
|
3147 |
msgstr "Clásico"
|
3148 |
|
3149 |
#: app/features/mec/meta_boxes/display_options.php:35
|
3150 |
#: app/features/mec/meta_boxes/display_options.php:161
|
3151 |
+
#: app/features/mec/settings.php:424 app/features/mec/settings.php:434
|
3152 |
+
#: app/features/mec/settings.php:498 app/features/mec/settings.php:508
|
3153 |
msgid "Minimal"
|
3154 |
msgstr "Mínimo"
|
3155 |
|
3156 |
#: app/features/mec/meta_boxes/display_options.php:36
|
3157 |
#: app/features/mec/meta_boxes/display_options.php:162
|
3158 |
+
#: app/features/mec/meta_boxes/display_options.php:481
|
3159 |
+
#: app/features/mec/meta_boxes/display_options.php:533
|
3160 |
+
#: app/features/mec/meta_boxes/display_options.php:695
|
3161 |
+
#: app/features/mec/meta_boxes/display_options.php:827
|
3162 |
+
#: app/features/mec/settings.php:401 app/features/mec/settings.php:414
|
3163 |
+
#: app/features/mec/settings.php:425 app/features/mec/settings.php:435
|
3164 |
+
#: app/features/mec/settings.php:475 app/features/mec/settings.php:488
|
3165 |
+
#: app/features/mec/settings.php:499 app/features/mec/settings.php:509
|
3166 |
msgid "Modern"
|
3167 |
msgstr "Moderno"
|
3168 |
|
3169 |
#: app/features/mec/meta_boxes/display_options.php:37
|
3170 |
+
#: app/features/mec/settings.php:426 app/features/mec/settings.php:500
|
3171 |
msgid "Standard"
|
3172 |
msgstr "Estándar"
|
3173 |
|
3174 |
#: app/features/mec/meta_boxes/display_options.php:38
|
3175 |
+
#: app/features/mec/settings.php:427 app/features/mec/settings.php:501
|
3176 |
msgid "Accordion"
|
3177 |
msgstr "Acordeón"
|
3178 |
|
3179 |
#: app/features/mec/meta_boxes/display_options.php:44
|
3180 |
#: app/features/mec/meta_boxes/display_options.php:171
|
3181 |
#: app/features/mec/meta_boxes/display_options.php:309
|
3182 |
+
#: app/features/mec/meta_boxes/display_options.php:588
|
3183 |
+
#: app/features/mec/meta_boxes/display_options.php:621
|
3184 |
+
#: app/features/mec/meta_boxes/display_options.php:768
|
3185 |
+
#: app/features/mec/meta_boxes/display_options.php:983
|
3186 |
+
#: app/features/mec/meta_boxes/display_options.php:1070
|
3187 |
msgid "Today"
|
3188 |
msgstr "Hoy"
|
3189 |
|
3190 |
#: app/features/mec/meta_boxes/display_options.php:45
|
3191 |
#: app/features/mec/meta_boxes/display_options.php:172
|
3192 |
#: app/features/mec/meta_boxes/display_options.php:310
|
3193 |
+
#: app/features/mec/meta_boxes/display_options.php:589
|
3194 |
+
#: app/features/mec/meta_boxes/display_options.php:622
|
3195 |
+
#: app/features/mec/meta_boxes/display_options.php:769
|
3196 |
+
#: app/features/mec/meta_boxes/display_options.php:984
|
3197 |
+
#: app/features/mec/meta_boxes/display_options.php:1071
|
3198 |
msgid "Tomorrow"
|
3199 |
msgstr "Mañana"
|
3200 |
|
3202 |
#: app/features/mec/meta_boxes/display_options.php:173
|
3203 |
#: app/features/mec/meta_boxes/display_options.php:311
|
3204 |
#: app/features/mec/meta_boxes/display_options.php:364
|
3205 |
+
#: app/features/mec/meta_boxes/display_options.php:541
|
3206 |
+
#: app/features/mec/meta_boxes/display_options.php:590
|
3207 |
+
#: app/features/mec/meta_boxes/display_options.php:623
|
3208 |
+
#: app/features/mec/meta_boxes/display_options.php:658
|
3209 |
+
#: app/features/mec/meta_boxes/display_options.php:704
|
3210 |
+
#: app/features/mec/meta_boxes/display_options.php:770
|
3211 |
+
#: app/features/mec/meta_boxes/display_options.php:985
|
3212 |
+
#: app/features/mec/meta_boxes/display_options.php:1072
|
3213 |
msgid "Start of Current Month"
|
3214 |
msgstr "Inicio del mes actual"
|
3215 |
|
3217 |
#: app/features/mec/meta_boxes/display_options.php:174
|
3218 |
#: app/features/mec/meta_boxes/display_options.php:312
|
3219 |
#: app/features/mec/meta_boxes/display_options.php:365
|
3220 |
+
#: app/features/mec/meta_boxes/display_options.php:542
|
3221 |
+
#: app/features/mec/meta_boxes/display_options.php:591
|
3222 |
+
#: app/features/mec/meta_boxes/display_options.php:624
|
3223 |
+
#: app/features/mec/meta_boxes/display_options.php:659
|
3224 |
+
#: app/features/mec/meta_boxes/display_options.php:705
|
3225 |
+
#: app/features/mec/meta_boxes/display_options.php:771
|
3226 |
+
#: app/features/mec/meta_boxes/display_options.php:986
|
3227 |
+
#: app/features/mec/meta_boxes/display_options.php:1073
|
3228 |
msgid "Start of Next Month"
|
3229 |
msgstr "Inicio del siguiente mes"
|
3230 |
|
3232 |
#: app/features/mec/meta_boxes/display_options.php:175
|
3233 |
#: app/features/mec/meta_boxes/display_options.php:313
|
3234 |
#: app/features/mec/meta_boxes/display_options.php:366
|
3235 |
+
#: app/features/mec/meta_boxes/display_options.php:489
|
3236 |
+
#: app/features/mec/meta_boxes/display_options.php:543
|
3237 |
+
#: app/features/mec/meta_boxes/display_options.php:592
|
3238 |
+
#: app/features/mec/meta_boxes/display_options.php:625
|
3239 |
+
#: app/features/mec/meta_boxes/display_options.php:660
|
3240 |
+
#: app/features/mec/meta_boxes/display_options.php:706
|
3241 |
+
#: app/features/mec/meta_boxes/display_options.php:772
|
3242 |
+
#: app/features/mec/meta_boxes/display_options.php:987
|
3243 |
+
#: app/features/mec/meta_boxes/display_options.php:1074
|
3244 |
msgid "On a certain date"
|
3245 |
msgstr "Una fecha concreta"
|
3246 |
|
3248 |
#: app/features/mec/meta_boxes/display_options.php:178
|
3249 |
#: app/features/mec/meta_boxes/display_options.php:316
|
3250 |
#: app/features/mec/meta_boxes/display_options.php:369
|
3251 |
+
#: app/features/mec/meta_boxes/display_options.php:492
|
3252 |
+
#: app/features/mec/meta_boxes/display_options.php:546
|
3253 |
+
#: app/features/mec/meta_boxes/display_options.php:595
|
3254 |
+
#: app/features/mec/meta_boxes/display_options.php:629
|
3255 |
+
#: app/features/mec/meta_boxes/display_options.php:663
|
3256 |
+
#: app/features/mec/meta_boxes/display_options.php:709
|
3257 |
+
#: app/features/mec/meta_boxes/display_options.php:775
|
3258 |
+
#: app/features/mec/meta_boxes/display_options.php:990
|
3259 |
+
#: app/features/mec/meta_boxes/display_options.php:1077
|
3260 |
#, php-format
|
3261 |
msgid "eg. %s"
|
3262 |
msgstr "ej. %s"
|
3287 |
#: app/features/mec/meta_boxes/display_options.php:258
|
3288 |
#: app/features/mec/meta_boxes/display_options.php:320
|
3289 |
#: app/features/mec/meta_boxes/display_options.php:325
|
3290 |
+
#: app/features/mec/meta_boxes/display_options.php:496
|
3291 |
+
#: app/features/mec/meta_boxes/display_options.php:501
|
3292 |
+
#: app/features/mec/meta_boxes/display_options.php:779
|
3293 |
+
#: app/features/mec/meta_boxes/display_options.php:784
|
3294 |
+
#: app/features/mec/meta_boxes/display_options.php:831
|
3295 |
+
#: app/features/mec/meta_boxes/display_options.php:837
|
3296 |
+
#: app/features/mec/meta_boxes/display_options.php:844
|
3297 |
+
#: app/features/mec/meta_boxes/display_options.php:849
|
|
|
3298 |
#: app/features/mec/meta_boxes/display_options.php:856
|
3299 |
+
#: app/features/mec/meta_boxes/display_options.php:860
|
3300 |
#: app/features/mec/meta_boxes/display_options.php:888
|
3301 |
+
#: app/features/mec/meta_boxes/display_options.php:892
|
3302 |
#: app/features/mec/meta_boxes/display_options.php:899
|
3303 |
+
#: app/features/mec/meta_boxes/display_options.php:903
|
3304 |
+
#: app/features/mec/meta_boxes/display_options.php:910
|
3305 |
+
#: app/features/mec/meta_boxes/display_options.php:916
|
3306 |
+
#: app/features/mec/meta_boxes/display_options.php:946
|
3307 |
+
#: app/features/mec/meta_boxes/display_options.php:951
|
3308 |
+
#: app/features/mec/meta_boxes/display_options.php:994
|
3309 |
+
#: app/features/mec/meta_boxes/display_options.php:1000
|
3310 |
#: app/features/mec/meta_boxes/display_options.php:1007
|
3311 |
+
#: app/features/mec/meta_boxes/display_options.php:1011
|
3312 |
#: app/features/mec/meta_boxes/display_options.php:1018
|
3313 |
+
#: app/features/mec/meta_boxes/display_options.php:1022
|
3314 |
+
#: app/features/mec/meta_boxes/display_options.php:1081
|
3315 |
+
#: app/features/mec/meta_boxes/display_options.php:1087
|
3316 |
+
#: app/features/mec/meta_boxes/display_options.php:1094
|
3317 |
+
#: app/features/mec/meta_boxes/display_options.php:1100
|
3318 |
+
#: app/features/mec/meta_boxes/display_options.php:1107
|
3319 |
+
#: app/features/mec/meta_boxes/display_options.php:1113
|
3320 |
+
#: app/features/mec/meta_boxes/display_options.php:1120
|
3321 |
+
#: app/features/mec/meta_boxes/display_options.php:1126
|
3322 |
+
#: app/features/mec/meta_boxes/display_options.php:1133
|
3323 |
+
#: app/features/mec/meta_boxes/display_options.php:1139
|
3324 |
msgid "Date Formats"
|
3325 |
msgstr "Formato de fecha"
|
3326 |
|
3336 |
#: app/features/mec/meta_boxes/display_options.php:86
|
3337 |
#: app/features/mec/meta_boxes/display_options.php:224
|
3338 |
#: app/features/mec/meta_boxes/display_options.php:248
|
3339 |
+
#: app/features/mec/meta_boxes/display_options.php:1088
|
3340 |
+
#: app/features/mec/meta_boxes/display_options.php:1101
|
3341 |
+
#: app/features/mec/meta_boxes/display_options.php:1114
|
3342 |
+
#: app/features/mec/meta_boxes/display_options.php:1127
|
3343 |
+
#: app/features/mec/meta_boxes/display_options.php:1140
|
3344 |
msgid "Default values are d, F and l"
|
3345 |
msgstr "Los valores predeterminados son d, F y l"
|
3346 |
|
3357 |
#: app/features/mec/meta_boxes/display_options.php:115
|
3358 |
#: app/features/mec/meta_boxes/display_options.php:276
|
3359 |
#: app/features/mec/meta_boxes/display_options.php:332
|
3360 |
+
#: app/features/mec/meta_boxes/display_options.php:791
|
3361 |
+
#: app/features/mec/meta_boxes/display_options.php:1038
|
3362 |
+
#: app/features/mec/meta_boxes/display_options.php:1146
|
3363 |
msgid "Limit"
|
3364 |
msgstr "Límite"
|
3365 |
|
3366 |
#: app/features/mec/meta_boxes/display_options.php:116
|
3367 |
#: app/features/mec/meta_boxes/display_options.php:277
|
3368 |
#: app/features/mec/meta_boxes/display_options.php:333
|
3369 |
+
#: app/features/mec/meta_boxes/display_options.php:509
|
3370 |
+
#: app/features/mec/meta_boxes/display_options.php:551
|
3371 |
+
#: app/features/mec/meta_boxes/display_options.php:634
|
3372 |
+
#: app/features/mec/meta_boxes/display_options.php:668
|
3373 |
+
#: app/features/mec/meta_boxes/display_options.php:714
|
3374 |
+
#: app/features/mec/meta_boxes/display_options.php:1039
|
3375 |
+
#: app/features/mec/meta_boxes/display_options.php:1147
|
3376 |
msgid "eg. 6"
|
3377 |
msgstr "ej. 6"
|
3378 |
|
3394 |
#: app/features/mec/meta_boxes/display_options.php:160
|
3395 |
#: app/features/mec/meta_boxes/display_options.php:303
|
3396 |
#: app/features/mec/meta_boxes/display_options.php:385
|
3397 |
+
#: app/features/mec/meta_boxes/display_options.php:532
|
3398 |
+
#: app/features/mec/meta_boxes/display_options.php:696
|
3399 |
+
#: app/features/mec/meta_boxes/display_options.php:826
|
3400 |
+
#: app/features/mec/settings.php:400 app/features/mec/settings.php:415
|
3401 |
+
#: app/features/mec/settings.php:433 app/features/mec/settings.php:474
|
3402 |
+
#: app/features/mec/settings.php:489 app/features/mec/settings.php:507
|
3403 |
msgid "Clean"
|
3404 |
msgstr "Limpio"
|
3405 |
|
3406 |
#: app/features/mec/meta_boxes/display_options.php:163
|
3407 |
#: app/features/mec/meta_boxes/display_options.php:387
|
3408 |
+
#: app/features/mec/meta_boxes/display_options.php:535
|
3409 |
+
#: app/features/mec/settings.php:403 app/features/mec/settings.php:436
|
3410 |
+
#: app/features/mec/settings.php:477 app/features/mec/settings.php:510
|
3411 |
msgid "Simple"
|
3412 |
msgstr "Simple"
|
3413 |
|
3417 |
|
3418 |
#: app/features/mec/meta_boxes/display_options.php:165
|
3419 |
#: app/features/mec/meta_boxes/display_options.php:386
|
3420 |
+
#: app/features/mec/meta_boxes/display_options.php:534
|
3421 |
+
#: app/features/mec/settings.php:402 app/features/mec/settings.php:438
|
3422 |
+
#: app/features/mec/settings.php:476 app/features/mec/settings.php:512
|
3423 |
msgid "Novel"
|
3424 |
msgstr "Novel"
|
3425 |
|
3442 |
msgstr "Valor por defecto is \"d F Y\""
|
3443 |
|
3444 |
#: app/features/mec/meta_boxes/display_options.php:265
|
3445 |
+
#: app/features/mec/meta_boxes/display_options.php:1029
|
3446 |
msgid "Count in row"
|
3447 |
msgstr "Contador en fila"
|
3448 |
|
3449 |
#: app/features/mec/meta_boxes/display_options.php:296
|
3450 |
+
#: app/features/mec/meta_boxes/display_options.php:474
|
3451 |
+
#: app/features/mec/meta_boxes/display_options.php:581
|
3452 |
+
#: app/features/mec/meta_boxes/display_options.php:688
|
3453 |
+
#: app/features/mec/meta_boxes/display_options.php:941
|
3454 |
#, php-format
|
3455 |
msgid "%s is required to use this skin."
|
3456 |
msgstr "Se requiere %s para utilizar este tema."
|
3457 |
|
3458 |
#: app/features/mec/meta_boxes/display_options.php:326
|
3459 |
+
#: app/features/mec/meta_boxes/display_options.php:502
|
3460 |
msgid "Default values are l and F j"
|
3461 |
msgstr "Los valores por defectos son l y F j"
|
3462 |
|
3465 |
msgstr "Vista por defecto"
|
3466 |
|
3467 |
#: app/features/mec/meta_boxes/display_options.php:375
|
3468 |
+
#: app/features/mec/meta_boxes/display_options.php:396
|
3469 |
+
#: app/libraries/main.php:329 app/libraries/main.php:1241
|
3470 |
+
#: app/libraries/main.php:1266
|
3471 |
msgid "List View"
|
3472 |
msgstr "Vista de lista"
|
3473 |
|
3474 |
#: app/features/mec/meta_boxes/display_options.php:376
|
3475 |
+
#: app/features/mec/meta_boxes/display_options.php:406
|
3476 |
+
#: app/libraries/main.php:333 app/libraries/main.php:1235
|
3477 |
+
#: app/libraries/main.php:1260
|
3478 |
msgid "Yearly View"
|
3479 |
msgstr "Vista anual"
|
3480 |
|
3481 |
#: app/features/mec/meta_boxes/display_options.php:377
|
3482 |
+
#: app/features/mec/meta_boxes/display_options.php:428
|
3483 |
msgid "Monthly/Calendar View"
|
3484 |
msgstr "Vista Mensual/Calendario"
|
3485 |
|
3486 |
#: app/features/mec/meta_boxes/display_options.php:378
|
3487 |
+
#: app/features/mec/meta_boxes/display_options.php:438
|
3488 |
+
#: app/libraries/main.php:336 app/libraries/main.php:1237
|
3489 |
+
#: app/libraries/main.php:1262
|
3490 |
msgid "Weekly View"
|
3491 |
msgstr "Vista de semana"
|
3492 |
|
3493 |
#: app/features/mec/meta_boxes/display_options.php:379
|
3494 |
+
#: app/features/mec/meta_boxes/display_options.php:448
|
3495 |
+
#: app/libraries/main.php:335 app/libraries/main.php:1238
|
3496 |
+
#: app/libraries/main.php:1263
|
3497 |
msgid "Daily View"
|
3498 |
msgstr "Vista de día"
|
3499 |
|
3501 |
msgid "Monthly Style"
|
3502 |
msgstr ""
|
3503 |
|
3504 |
+
#: app/features/mec/meta_boxes/display_options.php:423
|
3505 |
#, fuzzy, php-format
|
3506 |
#| msgid "%s is required to use this skin."
|
3507 |
msgid "%s is required to use <b>Yearly View</b> skin."
|
3508 |
msgstr "Se requiere %s para utilizar este tema."
|
3509 |
|
3510 |
+
#: app/features/mec/meta_boxes/display_options.php:456
|
3511 |
msgid "The price shows only in List View."
|
3512 |
msgstr "El precio sólo aparece en la vista de lista."
|
3513 |
|
3514 |
+
#: app/features/mec/meta_boxes/display_options.php:459
|
3515 |
msgid "Display Event Price"
|
3516 |
msgstr "Mostrar el precio del evento"
|
3517 |
|
3518 |
+
#: app/features/mec/meta_boxes/display_options.php:487
|
3519 |
msgid "Start of Current Year"
|
3520 |
msgstr "Comienzo del año actual"
|
3521 |
|
3522 |
+
#: app/features/mec/meta_boxes/display_options.php:488
|
3523 |
msgid "Start of Next Year"
|
3524 |
msgstr "Comienzo del próximo año"
|
3525 |
|
3526 |
+
#: app/features/mec/meta_boxes/display_options.php:508
|
3527 |
+
#: app/features/mec/meta_boxes/display_options.php:550
|
3528 |
+
#: app/features/mec/meta_boxes/display_options.php:633
|
3529 |
+
#: app/features/mec/meta_boxes/display_options.php:667
|
3530 |
+
#: app/features/mec/meta_boxes/display_options.php:713
|
3531 |
msgid "Events per day"
|
3532 |
msgstr "Eventos por día"
|
3533 |
|
3534 |
+
#: app/features/mec/meta_boxes/display_options.php:513
|
3535 |
+
#: app/features/mec/meta_boxes/display_options.php:555
|
3536 |
+
#: app/features/mec/meta_boxes/display_options.php:638
|
3537 |
+
#: app/features/mec/meta_boxes/display_options.php:672
|
3538 |
+
#: app/features/mec/meta_boxes/display_options.php:742
|
3539 |
msgid "Next/Previous Buttons"
|
3540 |
msgstr "Botones Siguiente/Anterior"
|
3541 |
|
3542 |
+
#: app/features/mec/meta_boxes/display_options.php:521
|
3543 |
msgid "For showing next/previous year navigation."
|
3544 |
msgstr "Para mostrar la navegación del año siguiente/anterior."
|
3545 |
|
3546 |
+
#: app/features/mec/meta_boxes/display_options.php:565
|
3547 |
#, fuzzy
|
3548 |
#| msgid "Text"
|
3549 |
msgid "Uppercase Text"
|
3550 |
msgstr "Texto"
|
3551 |
|
3552 |
+
#: app/features/mec/meta_boxes/display_options.php:573
|
3553 |
+
#: app/features/mec/meta_boxes/display_options.php:646
|
3554 |
+
#: app/features/mec/meta_boxes/display_options.php:680
|
3555 |
+
#: app/features/mec/meta_boxes/display_options.php:750
|
3556 |
msgid "For showing next/previous month navigation."
|
3557 |
msgstr "Para mostrar navegación siguiente/anterior"
|
3558 |
|
3559 |
+
#: app/features/mec/meta_boxes/display_options.php:599
|
3560 |
msgid "Maximum events"
|
3561 |
msgstr "Máximo de eventos"
|
3562 |
|
3563 |
+
#: app/features/mec/meta_boxes/display_options.php:600
|
3564 |
msgid "eg. 200"
|
3565 |
msgstr "ej. 200"
|
3566 |
|
3567 |
+
#: app/features/mec/meta_boxes/display_options.php:604
|
3568 |
msgid "Geolocation"
|
3569 |
msgstr "Geolocalización"
|
3570 |
|
3571 |
+
#: app/features/mec/meta_boxes/display_options.php:612
|
3572 |
msgid "The geolocation feature works only in secure (https) websites."
|
3573 |
msgstr ""
|
3574 |
"La funcionalidad de geolocalización sólo funciona en sitios web seguros "
|
3575 |
"(https)."
|
3576 |
|
3577 |
+
#: app/features/mec/meta_boxes/display_options.php:656
|
3578 |
+
#: app/features/mec/meta_boxes/display_options.php:702
|
3579 |
msgid "Current Week"
|
3580 |
msgstr "Semana actual"
|
3581 |
|
3582 |
+
#: app/features/mec/meta_boxes/display_options.php:657
|
3583 |
+
#: app/features/mec/meta_boxes/display_options.php:703
|
3584 |
msgid "Next Week"
|
3585 |
msgstr "Siguiente semana"
|
3586 |
|
3587 |
+
#: app/features/mec/meta_boxes/display_options.php:718
|
3588 |
msgid "Number of Days"
|
3589 |
msgstr ""
|
3590 |
|
3591 |
+
#: app/features/mec/meta_boxes/display_options.php:726
|
3592 |
#, fuzzy
|
3593 |
#| msgid "Start"
|
3594 |
msgid "Week Start"
|
3595 |
msgstr "Inicio"
|
3596 |
|
3597 |
+
#: app/features/mec/meta_boxes/display_options.php:728
|
3598 |
#, fuzzy
|
3599 |
#| msgid "Inherit from global options"
|
3600 |
msgid "Inherite from WordPress options"
|
3601 |
msgstr "Heredar opciones globales"
|
3602 |
|
3603 |
+
#: app/features/mec/meta_boxes/display_options.php:785
|
3604 |
+
#: app/features/mec/meta_boxes/display_options.php:952
|
3605 |
msgid "Default values are j and F"
|
3606 |
msgstr "Los valores predeterminados son j y F"
|
3607 |
|
3608 |
+
#: app/features/mec/meta_boxes/display_options.php:792
|
3609 |
msgid "eg. 24"
|
3610 |
msgstr "ej. 24"
|
3611 |
|
3612 |
+
#: app/features/mec/meta_boxes/display_options.php:795
|
3613 |
msgid "Filter By"
|
3614 |
msgstr "Filtrar por"
|
3615 |
|
3616 |
+
#: app/features/mec/meta_boxes/display_options.php:797
|
3617 |
msgid "None"
|
3618 |
msgstr ""
|
3619 |
|
3620 |
+
#: app/features/mec/meta_boxes/display_options.php:806
|
3621 |
msgid "Convert Masonry to Grid"
|
3622 |
msgstr ""
|
3623 |
|
3624 |
+
#: app/features/mec/meta_boxes/display_options.php:807
|
3625 |
msgid "For using this option, your events should come with image"
|
3626 |
msgstr ""
|
3627 |
|
3628 |
+
#: app/features/mec/meta_boxes/display_options.php:838
|
3629 |
msgid "Default values are d, M and Y"
|
3630 |
msgstr "Los valores predeterminados son d, M e Y"
|
3631 |
|
3632 |
+
#: app/features/mec/meta_boxes/display_options.php:850
|
3633 |
msgid "Default values are \"F d\" and l"
|
3634 |
msgstr "Los valores predeterminados son \"F d\" y l"
|
3635 |
|
3636 |
+
#: app/features/mec/meta_boxes/display_options.php:861
|
3637 |
msgid "Default value is \"l, F d Y\""
|
3638 |
msgstr "Valor por defecto es \"l, F d Y\""
|
3639 |
|
3640 |
+
#: app/features/mec/meta_boxes/display_options.php:882
|
3641 |
msgid "Style 1"
|
3642 |
msgstr "Estilo 1"
|
3643 |
|
3644 |
+
#: app/features/mec/meta_boxes/display_options.php:883
|
3645 |
msgid "Style 2"
|
3646 |
msgstr "Estilo 2"
|
3647 |
|
3648 |
+
#: app/features/mec/meta_boxes/display_options.php:884
|
3649 |
msgid "Style 3"
|
3650 |
msgstr "Estilo 3"
|
3651 |
|
3652 |
+
#: app/features/mec/meta_boxes/display_options.php:893
|
3653 |
+
#: app/features/mec/meta_boxes/display_options.php:904
|
3654 |
msgid "Default value is \"j F Y\""
|
3655 |
msgstr "El valor predeterminado es \"j F Y\""
|
3656 |
|
3657 |
+
#: app/features/mec/meta_boxes/display_options.php:917
|
3658 |
msgid "Default values are j, F and Y"
|
3659 |
msgstr "Los valores predeterminados son j, F e Y"
|
3660 |
|
3661 |
+
#: app/features/mec/meta_boxes/display_options.php:925
|
3662 |
+
#: app/features/mec/meta_boxes/display_options.php:960
|
3663 |
msgid " -- Next Upcoming Event -- "
|
3664 |
msgstr " -- Próximo Evento -- "
|
3665 |
|
3666 |
+
#: app/features/mec/meta_boxes/display_options.php:932
|
3667 |
msgid "Background Color"
|
3668 |
msgstr "Color de fondo"
|
3669 |
|
3670 |
+
#: app/features/mec/meta_boxes/display_options.php:974
|
3671 |
+
#: app/features/mec/meta_boxes/display_options.php:1060
|
3672 |
msgid "Type 1"
|
3673 |
msgstr "Tipo 1"
|
3674 |
|
3675 |
+
#: app/features/mec/meta_boxes/display_options.php:975
|
3676 |
+
#: app/features/mec/meta_boxes/display_options.php:1061
|
3677 |
msgid "Type 2"
|
3678 |
msgstr "Tipo 2"
|
3679 |
|
3680 |
+
#: app/features/mec/meta_boxes/display_options.php:976
|
3681 |
+
#: app/features/mec/meta_boxes/display_options.php:1062
|
3682 |
msgid "Type 3"
|
3683 |
msgstr "Tipo 3"
|
3684 |
|
3685 |
+
#: app/features/mec/meta_boxes/display_options.php:977
|
3686 |
+
#: app/features/mec/meta_boxes/display_options.php:1063
|
3687 |
msgid "Type 4"
|
3688 |
msgstr "Tipo 4"
|
3689 |
|
3690 |
+
#: app/features/mec/meta_boxes/display_options.php:1001
|
3691 |
msgid "Default values are d, F and Y"
|
3692 |
msgstr "Los valores predeterminados son d, F e Y"
|
3693 |
|
3694 |
+
#: app/features/mec/meta_boxes/display_options.php:1012
|
3695 |
+
#: app/features/mec/meta_boxes/display_options.php:1023
|
3696 |
msgid "Default value is \"M d, Y\""
|
3697 |
msgstr "El valor predeterminado es \"M d, Y\""
|
3698 |
|
3699 |
+
#: app/features/mec/meta_boxes/display_options.php:1042
|
3700 |
+
#: app/features/mec/meta_boxes/display_options.php:1150
|
3701 |
msgid "Auto Play Time"
|
3702 |
msgstr "Tiempo de reproducción automática"
|
3703 |
|
3704 |
+
#: app/features/mec/meta_boxes/display_options.php:1043
|
3705 |
+
#: app/features/mec/meta_boxes/display_options.php:1151
|
3706 |
msgid "eg. 3000 default is 3 second"
|
3707 |
msgstr "Ejemplo. 3000 son 3 segundos."
|
3708 |
|
3709 |
+
#: app/features/mec/meta_boxes/display_options.php:1047
|
3710 |
#, fuzzy
|
3711 |
#| msgid "Archive Page Skin"
|
3712 |
msgid "Archive Link"
|
3713 |
msgstr "Tema de la página de archivo"
|
3714 |
|
3715 |
+
#: app/features/mec/meta_boxes/display_options.php:1051
|
3716 |
#, fuzzy
|
3717 |
#| msgid "Text"
|
3718 |
msgid "Head Text"
|
3719 |
msgstr "Texto"
|
3720 |
|
3721 |
+
#: app/features/mec/meta_boxes/display_options.php:1064
|
3722 |
msgid "Type 5"
|
3723 |
msgstr "Tipo 5"
|
3724 |
|
3871 |
#: app/features/mec/meta_boxes/search_form.php:610
|
3872 |
#: app/features/mec/meta_boxes/search_form.php:617
|
3873 |
#: app/features/mec/meta_boxes/search_form.php:624
|
3874 |
+
#: app/features/mec/modules.php:322 app/features/mec/settings.php:297
|
3875 |
+
#: app/features/mec/settings.php:553
|
3876 |
msgid "Disabled"
|
3877 |
msgstr "Desactivado"
|
3878 |
|
3886 |
#: app/features/mec/meta_boxes/search_form.php:472
|
3887 |
#: app/features/mec/meta_boxes/search_form.php:533
|
3888 |
#: app/features/mec/meta_boxes/search_form.php:594 app/features/speakers.php:56
|
3889 |
+
#: app/features/speakers.php:243 app/libraries/main.php:4487
|
3890 |
#: app/libraries/skins.php:859
|
3891 |
msgid "Speaker"
|
3892 |
msgstr ""
|
3972 |
msgstr "Ver eventos en Google Maps"
|
3973 |
|
3974 |
#: app/features/mec/modules.php:277 app/features/mec/modules.php:435
|
3975 |
+
#: app/features/mec/settings.php:888 app/features/mec/settings.php:893
|
3976 |
msgid "API Key"
|
3977 |
msgstr "API Key"
|
3978 |
|
3979 |
+
#: app/features/mec/modules.php:283 app/features/mec/settings.php:894
|
3980 |
+
#: app/features/mec/settings.php:907
|
3981 |
msgid "Required!"
|
3982 |
msgstr "¡Obligatorio!"
|
3983 |
|
3998 |
msgid "Google Maps Style"
|
3999 |
msgstr "Estilo de Google Maps"
|
4000 |
|
4001 |
+
#: app/features/mec/modules.php:311 app/features/mec/single.php:266
|
4002 |
msgid "Default"
|
4003 |
msgstr "Por defecto"
|
4004 |
|
4084 |
msgid "Next Occurrence of Other Events"
|
4085 |
msgstr "Próxima aparición de otros eventos"
|
4086 |
|
4087 |
+
#: app/features/mec/modules.php:497 app/features/mec/single.php:221
|
4088 |
msgid "Default is M d Y"
|
4089 |
msgstr "El valor predeterminado es M d Y"
|
4090 |
|
4104 |
msgid "Add booking activity to user profile"
|
4105 |
msgstr "Añadir actividad de reservaciones en el perfil del usuario"
|
4106 |
|
4107 |
+
#: app/features/mec/notifications.php:229
|
4108 |
msgid "Enable booking notification"
|
4109 |
msgstr "Activar notificación de reservas"
|
4110 |
|
4111 |
+
#: app/features/mec/notifications.php:233
|
4112 |
msgid "It sends to attendee after booking for notifying him/her."
|
4113 |
msgstr "Se envía a los asistentes después de la reserva."
|
4114 |
|
4115 |
+
#: app/features/mec/notifications.php:235
|
4116 |
+
#: app/features/mec/notifications.php:292
|
4117 |
+
#: app/features/mec/notifications.php:344
|
4118 |
+
#: app/features/mec/notifications.php:403
|
4119 |
+
#: app/features/mec/notifications.php:471
|
4120 |
+
#: app/features/mec/notifications.php:534
|
4121 |
+
#: app/features/mec/notifications.php:607
|
4122 |
msgid "Email Subject"
|
4123 |
msgstr "Asunto del correo electrónico"
|
4124 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|