Version Description
12 February 2020 = - Added: An option to disable "Auto Confirmation" for Pay Locally gateway (pro) - Added: Used coupons in booking details view and booking invoice (pro) - Added: An option to save Start and End dates of Google calendar import - Added: An option to disable / enable sending confirmation email in auto confirm mode (pro) - Added: Use WordPress time format in local time module - Added: An Organizer and other organizer description options - Changed: "All of the day" to "All Day" - Fixed: Thank you page of "Frontend Event Submission" - Fixed: a PHP warning in export - Fixed: Event time in 0 hour - Fixed: Close div tag in grid view skin - Fixed: Tile view overlay style - Fixed: The dates when day light saving happens - Fixed: Monthly calendar skin simple view responsive mobile size - Fixed: Some minor issues
Release Info
Developer | webnus |
Plugin | Modern Events Calendar Lite |
Version | 5.1.5 |
Comparing to | |
See all releases |
Code changes from version 5.1.0 to 5.1.5
- app/features/events.php +11 -29
- app/features/fes.php +1 -1
- app/features/ix.php +6 -16
- app/features/ix/import_g_calendar.php +2 -2
- app/features/locations.php +4 -1
- app/features/mec/booking.php +9 -0
- app/features/mec/meta_boxes/display_options.php +1 -0
- app/features/mec/meta_boxes/filter.php +1 -1
- app/features/mec/modules.php +1 -0
- app/features/mec/single.php +30 -2
- app/features/search_bar/search_result.php +1 -1
- app/libraries/book.php +5 -2
- app/libraries/main.php +77 -9
- app/libraries/notifications.php +4 -7
- app/libraries/render.php +5 -2
- app/libraries/skins.php +7 -0
- app/modules/booking/default.php +48 -47
- app/modules/booking/steps/checkout.php +3 -2
- app/modules/countdown/details.php +10 -4
- app/modules/googlemap/details.php +29 -3
- app/modules/local-time/details.php +4 -3
- app/modules/next-event/details.php +1 -1
- app/skins/custom/render.php +5 -1
- app/skins/grid/render.php +9 -13
- app/skins/list/render.php +7 -5
- app/skins/map/tpl.php +34 -5
- app/skins/single.php +9 -3
- app/skins/single/default.php +14 -4
- app/skins/single/m1.php +7 -2
- app/skins/single/m2.php +6 -1
- app/skins/single/modern.php +7 -2
- assets/css/frontend.css +19 -4
- assets/css/frontend.min.css +1 -1
- assets/js/frontend.js +17 -326
- assets/js/googlemap.js +325 -0
- changelog.txt +18 -1
- languages/modern-events-calendar-lite-cs_CZ.mo +0 -0
- languages/modern-events-calendar-lite-cs_CZ.po +952 -910
- languages/modern-events-calendar-lite-de_DE.mo +0 -0
- languages/modern-events-calendar-lite-de_DE.po +952 -910
- languages/modern-events-calendar-lite-en_US.mo +0 -0
- languages/modern-events-calendar-lite-en_US.po +380 -380
@@ -403,57 +403,39 @@ class MEC_feature_events extends MEC_base
|
|
403 |
if(trim($start_time_hour) == '') $start_time_hour = 8;
|
404 |
|
405 |
$start_time_minutes = get_post_meta($post->ID, 'mec_start_time_minutes', true);
|
406 |
-
if
|
407 |
-
$start_time_minutes = 0;
|
408 |
-
}
|
409 |
|
410 |
$start_time_ampm = get_post_meta($post->ID, 'mec_start_time_ampm', true);
|
411 |
-
if
|
412 |
-
$start_time_minutes = 'AM';
|
413 |
-
}
|
414 |
|
415 |
$end_date = get_post_meta($post->ID, 'mec_end_date', true);
|
416 |
|
417 |
$end_time_hour = get_post_meta($post->ID, 'mec_end_time_hour', true);
|
418 |
-
if
|
419 |
-
$end_time_hour = 6;
|
420 |
-
}
|
421 |
|
422 |
$end_time_minutes = get_post_meta($post->ID, 'mec_end_time_minutes', true);
|
423 |
-
if
|
424 |
-
$end_time_minutes = 0;
|
425 |
-
}
|
426 |
|
427 |
$end_time_ampm = get_post_meta($post->ID, 'mec_end_time_ampm', true);
|
428 |
-
if
|
429 |
-
$end_time_ampm = 'PM';
|
430 |
-
}
|
431 |
|
432 |
$repeat_status = get_post_meta($post->ID, 'mec_repeat_status', true);
|
433 |
$repeat_type = get_post_meta($post->ID, 'mec_repeat_type', true);
|
434 |
|
435 |
$repeat_interval = get_post_meta($post->ID, 'mec_repeat_interval', true);
|
436 |
-
if
|
437 |
-
$repeat_interval = 1;
|
438 |
-
}
|
439 |
|
440 |
$certain_weekdays = get_post_meta($post->ID, 'mec_certain_weekdays', true);
|
441 |
-
if
|
442 |
-
$certain_weekdays = array();
|
443 |
-
}
|
444 |
|
445 |
$in_days_str = get_post_meta($post->ID, 'mec_in_days', true);
|
446 |
$in_days = trim($in_days_str) ? explode(',', $in_days_str) : array();
|
447 |
|
448 |
$mec_repeat_end = get_post_meta($post->ID, 'mec_repeat_end', true);
|
449 |
-
if
|
450 |
-
$mec_repeat_end = 'never';
|
451 |
-
}
|
452 |
|
453 |
$repeat_end_at_occurrences = get_post_meta($post->ID, 'mec_repeat_end_at_occurrences', true);
|
454 |
-
if
|
455 |
-
$repeat_end_at_occurrences = 9;
|
456 |
-
}
|
457 |
|
458 |
$repeat_end_at_date = get_post_meta($post->ID, 'mec_repeat_end_at_date', true);
|
459 |
|
@@ -535,7 +517,7 @@ class MEC_feature_events extends MEC_base
|
|
535 |
value="<?php echo($i * 5); ?>"><?php echo sprintf('%02d', ($i * 5)); ?></option>
|
536 |
<?php endfor; ?>
|
537 |
</select>
|
538 |
-
<?php else : ?>
|
539 |
<select name="mec[date][start][hour]" id="mec_start_hour">
|
540 |
<?php for ($i = 1; $i <= 12; $i++) : ?>
|
541 |
<option
|
@@ -627,7 +609,7 @@ class MEC_feature_events extends MEC_base
|
|
627 |
value="<?php echo($i * 5); ?>"><?php echo sprintf('%02d', ($i * 5)); ?></option>
|
628 |
<?php endfor; ?>
|
629 |
</select>
|
630 |
-
<?php else : ?>
|
631 |
<select name="mec[date][end][hour]" id="mec_end_hour">
|
632 |
<?php for ($i = 1; $i <= 12; $i++) : ?>
|
633 |
<option
|
403 |
if(trim($start_time_hour) == '') $start_time_hour = 8;
|
404 |
|
405 |
$start_time_minutes = get_post_meta($post->ID, 'mec_start_time_minutes', true);
|
406 |
+
if(trim($start_time_minutes) == '') $start_time_minutes = 0;
|
|
|
|
|
407 |
|
408 |
$start_time_ampm = get_post_meta($post->ID, 'mec_start_time_ampm', true);
|
409 |
+
if(trim($start_time_ampm) == '') $start_time_minutes = 'AM';
|
|
|
|
|
410 |
|
411 |
$end_date = get_post_meta($post->ID, 'mec_end_date', true);
|
412 |
|
413 |
$end_time_hour = get_post_meta($post->ID, 'mec_end_time_hour', true);
|
414 |
+
if(trim($end_time_hour) == '') $end_time_hour = 6;
|
|
|
|
|
415 |
|
416 |
$end_time_minutes = get_post_meta($post->ID, 'mec_end_time_minutes', true);
|
417 |
+
if(trim($end_time_minutes) == '') $end_time_minutes = 0;
|
|
|
|
|
418 |
|
419 |
$end_time_ampm = get_post_meta($post->ID, 'mec_end_time_ampm', true);
|
420 |
+
if(trim($end_time_ampm) == '') $end_time_ampm = 'PM';
|
|
|
|
|
421 |
|
422 |
$repeat_status = get_post_meta($post->ID, 'mec_repeat_status', true);
|
423 |
$repeat_type = get_post_meta($post->ID, 'mec_repeat_type', true);
|
424 |
|
425 |
$repeat_interval = get_post_meta($post->ID, 'mec_repeat_interval', true);
|
426 |
+
if(trim($repeat_interval) == '' and in_array($repeat_type, array('daily', 'weekly'))) $repeat_interval = 1;
|
|
|
|
|
427 |
|
428 |
$certain_weekdays = get_post_meta($post->ID, 'mec_certain_weekdays', true);
|
429 |
+
if($repeat_type != 'certain_weekdays') $certain_weekdays = array();
|
|
|
|
|
430 |
|
431 |
$in_days_str = get_post_meta($post->ID, 'mec_in_days', true);
|
432 |
$in_days = trim($in_days_str) ? explode(',', $in_days_str) : array();
|
433 |
|
434 |
$mec_repeat_end = get_post_meta($post->ID, 'mec_repeat_end', true);
|
435 |
+
if(trim($mec_repeat_end) == '') $mec_repeat_end = 'never';
|
|
|
|
|
436 |
|
437 |
$repeat_end_at_occurrences = get_post_meta($post->ID, 'mec_repeat_end_at_occurrences', true);
|
438 |
+
if(trim($repeat_end_at_occurrences) == '') $repeat_end_at_occurrences = 9;
|
|
|
|
|
439 |
|
440 |
$repeat_end_at_date = get_post_meta($post->ID, 'mec_repeat_end_at_date', true);
|
441 |
|
517 |
value="<?php echo($i * 5); ?>"><?php echo sprintf('%02d', ($i * 5)); ?></option>
|
518 |
<?php endfor; ?>
|
519 |
</select>
|
520 |
+
<?php else : if($start_time_ampm == 'AM' and $start_time_hour == '0') $start_time_hour = 12; ?>
|
521 |
<select name="mec[date][start][hour]" id="mec_start_hour">
|
522 |
<?php for ($i = 1; $i <= 12; $i++) : ?>
|
523 |
<option
|
609 |
value="<?php echo($i * 5); ?>"><?php echo sprintf('%02d', ($i * 5)); ?></option>
|
610 |
<?php endfor; ?>
|
611 |
</select>
|
612 |
+
<?php else : if($end_time_ampm == 'AM' and $end_time_hour == '0') $end_time_hour = 12; ?>
|
613 |
<select name="mec[date][end][hour]" id="mec_end_hour">
|
614 |
<?php for ($i = 1; $i <= 12; $i++) : ?>
|
615 |
<option
|
@@ -1076,7 +1076,7 @@ class MEC_feature_fes extends MEC_base
|
|
1076 |
'message' => $message,
|
1077 |
'data'=> array(
|
1078 |
'post_id' => $post_id,
|
1079 |
-
'redirect_to' => isset($this->settings['fes_thankyou_page']) and trim($this->settings['fes_thankyou_page']) ? get_permalink(intval($this->settings['fes_thankyou_page'])) : '',
|
1080 |
),
|
1081 |
));
|
1082 |
}
|
1076 |
'message' => $message,
|
1077 |
'data'=> array(
|
1078 |
'post_id' => $post_id,
|
1079 |
+
'redirect_to' => (isset($this->settings['fes_thankyou_page']) and trim($this->settings['fes_thankyou_page'])) ? get_permalink(intval($this->settings['fes_thankyou_page'])) : '',
|
1080 |
),
|
1081 |
));
|
1082 |
}
|
@@ -2717,7 +2717,7 @@ class MEC_feature_ix extends MEC_base
|
|
2717 |
if(!trim($api_key) or !trim($calendar_id)) return array('success'=>0, 'error'=>__('Both of API key and Calendar ID are required!', 'modern-events-calendar-lite'));
|
2718 |
|
2719 |
// Save options
|
2720 |
-
$this->main->save_ix_options(array('google_import_api_key'=>$api_key, 'google_import_calendar_id'=>$calendar_id));
|
2721 |
|
2722 |
// GMT Offset
|
2723 |
$gmt_offset = $this->main->get_gmt_offset();
|
@@ -3487,11 +3487,7 @@ class MEC_feature_ix extends MEC_base
|
|
3487 |
case 'ical':
|
3488 |
|
3489 |
$output = '';
|
3490 |
-
|
3491 |
-
foreach($events as $event)
|
3492 |
-
{
|
3493 |
-
$output .= $this->main->ical_single($event->ID);
|
3494 |
-
}
|
3495 |
|
3496 |
$ical_calendar = $this->main->ical_calendar($output);
|
3497 |
|
@@ -3534,7 +3530,7 @@ class MEC_feature_ix extends MEC_base
|
|
3534 |
(isset($organizer['name']) ? $organizer['name'] : ''),
|
3535 |
(isset($organizer['tel']) ? $organizer['tel'] : ''),
|
3536 |
(isset($organizer['email']) ? $organizer['email'] : ''),
|
3537 |
-
(is_numeric($data->meta['mec_cost']) ? $this->main->render_price($data->meta['mec_cost']) : $data->meta['mec_cost'])
|
3538 |
);
|
3539 |
|
3540 |
fputcsv($output, $event);
|
@@ -3576,7 +3572,7 @@ class MEC_feature_ix extends MEC_base
|
|
3576 |
(isset($organizer['name']) ? $organizer['name'] : ''),
|
3577 |
(isset($organizer['tel']) ? $organizer['tel'] : ''),
|
3578 |
(isset($organizer['email']) ? $organizer['email'] : ''),
|
3579 |
-
(is_numeric($data->meta['mec_cost']) ? $this->main->render_price($data->meta['mec_cost']) : $data->meta['mec_cost'])
|
3580 |
);
|
3581 |
|
3582 |
fputcsv($output, $event, "\t");
|
@@ -3588,10 +3584,7 @@ class MEC_feature_ix extends MEC_base
|
|
3588 |
case 'xml':
|
3589 |
|
3590 |
$output = array();
|
3591 |
-
foreach($events as $event)
|
3592 |
-
{
|
3593 |
-
$output[] = $this->main->export_single($event->ID);
|
3594 |
-
}
|
3595 |
|
3596 |
$xml_feed = $this->main->xml_convert(array('events'=>$output));
|
3597 |
|
@@ -3605,10 +3598,7 @@ class MEC_feature_ix extends MEC_base
|
|
3605 |
case 'json':
|
3606 |
|
3607 |
$output = array();
|
3608 |
-
foreach($events as $event)
|
3609 |
-
{
|
3610 |
-
$output[] = $this->main->export_single($event->ID);
|
3611 |
-
}
|
3612 |
|
3613 |
header('Content-type: application/force-download; charset=utf-8');
|
3614 |
header('Content-Disposition: attachment; filename="mec-events-'.date('YmdTHi').'.json"');
|
2717 |
if(!trim($api_key) or !trim($calendar_id)) return array('success'=>0, 'error'=>__('Both of API key and Calendar ID are required!', 'modern-events-calendar-lite'));
|
2718 |
|
2719 |
// Save options
|
2720 |
+
$this->main->save_ix_options(array('google_import_api_key'=>$api_key, 'google_import_calendar_id'=>$calendar_id, 'google_import_start_date'=>$start_date, 'google_import_end_date'=>$end_date));
|
2721 |
|
2722 |
// GMT Offset
|
2723 |
$gmt_offset = $this->main->get_gmt_offset();
|
3487 |
case 'ical':
|
3488 |
|
3489 |
$output = '';
|
3490 |
+
foreach($events as $event) $output .= $this->main->ical_single($event->ID);
|
|
|
|
|
|
|
|
|
3491 |
|
3492 |
$ical_calendar = $this->main->ical_calendar($output);
|
3493 |
|
3530 |
(isset($organizer['name']) ? $organizer['name'] : ''),
|
3531 |
(isset($organizer['tel']) ? $organizer['tel'] : ''),
|
3532 |
(isset($organizer['email']) ? $organizer['email'] : ''),
|
3533 |
+
(isset($data->meta['mec_cost']) ? (is_numeric($data->meta['mec_cost']) ? $this->main->render_price($data->meta['mec_cost']) : $data->meta['mec_cost']) : '')
|
3534 |
);
|
3535 |
|
3536 |
fputcsv($output, $event);
|
3572 |
(isset($organizer['name']) ? $organizer['name'] : ''),
|
3573 |
(isset($organizer['tel']) ? $organizer['tel'] : ''),
|
3574 |
(isset($organizer['email']) ? $organizer['email'] : ''),
|
3575 |
+
(isset($data->meta['mec_cost']) ? (is_numeric($data->meta['mec_cost']) ? $this->main->render_price($data->meta['mec_cost']) : $data->meta['mec_cost']) : '')
|
3576 |
);
|
3577 |
|
3578 |
fputcsv($output, $event, "\t");
|
3584 |
case 'xml':
|
3585 |
|
3586 |
$output = array();
|
3587 |
+
foreach($events as $event) $output[] = $this->main->export_single($event->ID);
|
|
|
|
|
|
|
3588 |
|
3589 |
$xml_feed = $this->main->xml_convert(array('events'=>$output));
|
3590 |
|
3598 |
case 'json':
|
3599 |
|
3600 |
$output = array();
|
3601 |
+
foreach($events as $event) $output[] = $this->main->export_single($event->ID);
|
|
|
|
|
|
|
3602 |
|
3603 |
header('Content-type: application/force-download; charset=utf-8');
|
3604 |
header('Content-Disposition: attachment; filename="mec-events-'.date('YmdTHi').'.json"');
|
@@ -37,13 +37,13 @@ $ix_options = $this->main->get_ix_options();
|
|
37 |
<div class="mec-form-row">
|
38 |
<label class="mec-col-3" for="mec_ix_google_import_start_date"><?php _e('Start Date', 'modern-events-calendar-lite'); ?></label>
|
39 |
<div class="mec-col-4">
|
40 |
-
<input type="text" id="mec_ix_google_import_start_date" name="ix[google_import_start_date]" value="<?php echo (isset($
|
41 |
</div>
|
42 |
</div>
|
43 |
<div class="mec-form-row">
|
44 |
<label class="mec-col-3" for="mec_ix_google_import_end_date"><?php _e('End Date', 'modern-events-calendar-lite'); ?></label>
|
45 |
<div class="mec-col-4">
|
46 |
-
<input type="text" id="mec_ix_google_import_end_date" name="ix[google_import_end_date]" value="<?php echo (isset($
|
47 |
</div>
|
48 |
</div>
|
49 |
<div class="mec-options-fields">
|
37 |
<div class="mec-form-row">
|
38 |
<label class="mec-col-3" for="mec_ix_google_import_start_date"><?php _e('Start Date', 'modern-events-calendar-lite'); ?></label>
|
39 |
<div class="mec-col-4">
|
40 |
+
<input type="text" id="mec_ix_google_import_start_date" name="ix[google_import_start_date]" value="<?php echo (isset($ix_options['google_import_start_date']) ? $ix_options['google_import_start_date'] : date('Y-m-d', strtotime('-1 Month'))); ?>" class="mec_date_picker" />
|
41 |
</div>
|
42 |
</div>
|
43 |
<div class="mec-form-row">
|
44 |
<label class="mec-col-3" for="mec_ix_google_import_end_date"><?php _e('End Date', 'modern-events-calendar-lite'); ?></label>
|
45 |
<div class="mec-col-4">
|
46 |
+
<input type="text" id="mec_ix_google_import_end_date" name="ix[google_import_end_date]" value="<?php echo (isset($ix_options['google_import_end_date']) ? $ix_options['google_import_end_date'] : date('Y-m-d', strtotime('+3 Months'))); ?>" class="mec_date_picker" />
|
47 |
</div>
|
48 |
</div>
|
49 |
<div class="mec-options-fields">
|
@@ -133,6 +133,7 @@ class MEC_feature_locations extends MEC_base
|
|
133 |
<input class="mec-has-tip" type="text" placeholder="<?php esc_attr_e('Geo longitude (Optional)', 'modern-events-calendar-lite'); ?>" name="longitude" id="mec_longitude" value="<?php echo $longitude; ?>" />
|
134 |
</td>
|
135 |
</tr>
|
|
|
136 |
<tr class="form-field">
|
137 |
<th scope="row" valign="top">
|
138 |
<label for="mec_thumbnail_button"><?php _e('Thumbnail', 'modern-events-calendar-lite'); ?></label>
|
@@ -176,6 +177,7 @@ class MEC_feature_locations extends MEC_base
|
|
176 |
<label for="mec_longitude"><?php _e('Longitude', 'modern-events-calendar-lite'); ?></label>
|
177 |
<input type="text" name="longitude" placeholder="<?php esc_attr_e('Geo longitude (Optional)', 'modern-events-calendar-lite'); ?>" id="mec_longitude" value="" />
|
178 |
</div>
|
|
|
179 |
<div class="form-field">
|
180 |
<label for="mec_thumbnail_button"><?php _e('Thumbnail', 'modern-events-calendar-lite'); ?></label>
|
181 |
<div id="mec_thumbnail_img"></div>
|
@@ -331,7 +333,8 @@ class MEC_feature_locations extends MEC_base
|
|
331 |
</div>
|
332 |
<i title="" class="dashicons-before dashicons-editor-help"></i>
|
333 |
</span>
|
334 |
-
|
|
|
335 |
<?php /* Don't show this section in FES */ if(is_admin()): ?>
|
336 |
<div class="mec-form-row mec-thumbnail-row">
|
337 |
<div id="mec_location_thumbnail_img"></div>
|
133 |
<input class="mec-has-tip" type="text" placeholder="<?php esc_attr_e('Geo longitude (Optional)', 'modern-events-calendar-lite'); ?>" name="longitude" id="mec_longitude" value="<?php echo $longitude; ?>" />
|
134 |
</td>
|
135 |
</tr>
|
136 |
+
<?php do_action('mec_location_after_edit_form',$term); ?>
|
137 |
<tr class="form-field">
|
138 |
<th scope="row" valign="top">
|
139 |
<label for="mec_thumbnail_button"><?php _e('Thumbnail', 'modern-events-calendar-lite'); ?></label>
|
177 |
<label for="mec_longitude"><?php _e('Longitude', 'modern-events-calendar-lite'); ?></label>
|
178 |
<input type="text" name="longitude" placeholder="<?php esc_attr_e('Geo longitude (Optional)', 'modern-events-calendar-lite'); ?>" id="mec_longitude" value="" />
|
179 |
</div>
|
180 |
+
<?php do_action('mec_location_after_add_form'); ?>
|
181 |
<div class="form-field">
|
182 |
<label for="mec_thumbnail_button"><?php _e('Thumbnail', 'modern-events-calendar-lite'); ?></label>
|
183 |
<div id="mec_thumbnail_img"></div>
|
333 |
</div>
|
334 |
<i title="" class="dashicons-before dashicons-editor-help"></i>
|
335 |
</span>
|
336 |
+
</div>
|
337 |
+
<?php do_action( 'mec_location_after_new_form' ); ?>
|
338 |
<?php /* Don't show this section in FES */ if(is_admin()): ?>
|
339 |
<div class="mec-form-row mec-thumbnail-row">
|
340 |
<div id="mec_location_thumbnail_img"></div>
|
@@ -251,6 +251,15 @@ $gateways_options = $this->main->get_gateways_options();
|
|
251 |
</label>
|
252 |
</div>
|
253 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
254 |
</div>
|
255 |
<?php endif; ?>
|
256 |
</div>
|
251 |
</label>
|
252 |
</div>
|
253 |
</div>
|
254 |
+
<div class="mec-form-row">
|
255 |
+
<div class="mec-col-12">
|
256 |
+
<label for="mec_settings_booking_auto_confirm_send_email">
|
257 |
+
<input type="hidden" name="mec[settings][booking_auto_confirm_send_email]" value="0" />
|
258 |
+
<input type="checkbox" name="mec[settings][booking_auto_confirm_send_email]" id="mec_settings_booking_auto_confirm_send_email" <?php echo ((isset($settings['booking_auto_confirm_send_email']) and $settings['booking_auto_confirm_send_email'] == '1') ? 'checked="checked"' : ''); ?> value="1" />
|
259 |
+
<?php _e('Send confirmation email in auto confirmation mode', 'modern-events-calendar-lite'); ?>
|
260 |
+
</label>
|
261 |
+
</div>
|
262 |
+
</div>
|
263 |
</div>
|
264 |
<?php endif; ?>
|
265 |
</div>
|
@@ -723,6 +723,7 @@ $events = $this->main->get_events();
|
|
723 |
</div>
|
724 |
</div>
|
725 |
<p class="description"><?php _e('The geolocation feature works only in secure (https) websites.', 'modern-events-calendar-lite'); ?></p>
|
|
|
726 |
</div>
|
727 |
|
728 |
<!-- Daily View -->
|
723 |
</div>
|
724 |
</div>
|
725 |
<p class="description"><?php _e('The geolocation feature works only in secure (https) websites.', 'modern-events-calendar-lite'); ?></p>
|
726 |
+
<?php do_action( 'mec_location_shortcode_filter', $post ); ?>
|
727 |
</div>
|
728 |
|
729 |
<!-- Daily View -->
|
@@ -104,7 +104,7 @@ $MEC_tax_walker = new MEC_tax_walker();
|
|
104 |
'selected_cats'=>$selected_locations,
|
105 |
'popular_cats'=>false,
|
106 |
'checked_ontop'=>false,
|
107 |
-
'walker'=>$MEC_tax_walker
|
108 |
));
|
109 |
?>
|
110 |
</select>
|
104 |
'selected_cats'=>$selected_locations,
|
105 |
'popular_cats'=>false,
|
106 |
'checked_ontop'=>false,
|
107 |
+
'walker'=>$MEC_tax_walker,
|
108 |
));
|
109 |
?>
|
110 |
</select>
|
@@ -157,6 +157,7 @@ if($this->getPRO())
|
|
157 |
</span>
|
158 |
</div>
|
159 |
</div>
|
|
|
160 |
</div>
|
161 |
<?php endif; ?>
|
162 |
</div>
|
157 |
</span>
|
158 |
</div>
|
159 |
</div>
|
160 |
+
<?php do_action( 'mec_map_options_after' ,$settings); ?>
|
161 |
</div>
|
162 |
<?php endif; ?>
|
163 |
</div>
|
@@ -112,6 +112,7 @@ $pages = get_pages();
|
|
112 |
<i title="" class="dashicons-before dashicons-editor-help"></i>
|
113 |
</span>
|
114 |
</div>
|
|
|
115 |
<div class="mec-form-row">
|
116 |
<label class="mec-col-3" for="mec_settings_breadcrumbs"><?php _e('Breadcrumbs', 'modern-events-calendar-lite'); ?></label>
|
117 |
<label id="mec_settings_breadcrumbs" >
|
@@ -127,6 +128,21 @@ $pages = get_pages();
|
|
127 |
</span>
|
128 |
</div>
|
129 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
130 |
</div>
|
131 |
|
132 |
<div id="countdown_option" class="mec-options-fields">
|
@@ -169,14 +185,26 @@ $pages = get_pages();
|
|
169 |
|
170 |
<div id="additional_organizers" class="mec-options-fields">
|
171 |
<h4 class="mec-form-subtitle"><?php _e('Additional Organizers', 'modern-events-calendar-lite'); ?></h4>
|
|
|
172 |
<div class="mec-form-row">
|
173 |
<label>
|
174 |
<input type="hidden" name="mec[settings][additional_organizers]" value="0" />
|
175 |
-
<input value="1" type="checkbox" name="mec[settings][additional_organizers]" <?php if(!isset($settings['additional_organizers']) or (isset($settings['additional_organizers']) and $settings['additional_organizers'])) echo 'checked="checked"'; ?> /> <?php _e('Show additional organizers option on Add/Edit events page and single event page.', 'modern-events-calendar-lite'); ?>
|
176 |
</label>
|
177 |
</div>
|
178 |
-
</div>
|
179 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
180 |
<div id="additional_locations" class="mec-options-fields">
|
181 |
<h4 class="mec-form-subtitle"><?php _e('Additional locations', 'modern-events-calendar-lite'); ?></h4>
|
182 |
<div class="mec-form-row">
|
112 |
<i title="" class="dashicons-before dashicons-editor-help"></i>
|
113 |
</span>
|
114 |
</div>
|
115 |
+
|
116 |
<div class="mec-form-row">
|
117 |
<label class="mec-col-3" for="mec_settings_breadcrumbs"><?php _e('Breadcrumbs', 'modern-events-calendar-lite'); ?></label>
|
118 |
<label id="mec_settings_breadcrumbs" >
|
128 |
</span>
|
129 |
</div>
|
130 |
|
131 |
+
<div class="mec-form-row">
|
132 |
+
<label class="mec-col-3" for="mec_settings_organizer_description"><?php _e('Organizer Description', 'modern-events-calendar-lite'); ?></label>
|
133 |
+
<label id="mec_settings_organizer_description" >
|
134 |
+
<input type="hidden" name="mec[settings][organizer_description]" value="0" />
|
135 |
+
<input type="checkbox" name="mec[settings][organizer_description]" id="mec_settings_organizer_description" <?php echo ((isset($settings['organizer_description']) and $settings['organizer_description']) ? 'checked="checked"' : ''); ?> value="1" /><?php _e('Enable Description For Organizer.', 'modern-events-calendar-lite'); ?>
|
136 |
+
</label>
|
137 |
+
<span class="mec-tooltip">
|
138 |
+
<div class="box top">
|
139 |
+
<h5 class="title"><?php _e('Organizer Description', 'modern-events-calendar-lite'); ?></h5>
|
140 |
+
<div class="content"><p><?php esc_attr_e("If you want to turn on description for other organizer plase go to 'Additional Organizers - After enabling and saving the settings, reloading the settings page.' tab", 'modern-events-calendar-lite'); ?></p></div>
|
141 |
+
</div>
|
142 |
+
<i title="" class="dashicons-before dashicons-editor-help"></i>
|
143 |
+
</span>
|
144 |
+
</div>
|
145 |
+
|
146 |
</div>
|
147 |
|
148 |
<div id="countdown_option" class="mec-options-fields">
|
185 |
|
186 |
<div id="additional_organizers" class="mec-options-fields">
|
187 |
<h4 class="mec-form-subtitle"><?php _e('Additional Organizers', 'modern-events-calendar-lite'); ?></h4>
|
188 |
+
|
189 |
<div class="mec-form-row">
|
190 |
<label>
|
191 |
<input type="hidden" name="mec[settings][additional_organizers]" value="0" />
|
192 |
+
<input onchange="jQuery('#mec_settings_additional_organizers_description').toggle();" value="1" type="checkbox" name="mec[settings][additional_organizers]" <?php if(!isset($settings['additional_organizers']) or (isset($settings['additional_organizers']) and $settings['additional_organizers'])) echo 'checked="checked"'; ?> /> <?php _e('Show additional organizers option on Add/Edit events page and single event page.', 'modern-events-calendar-lite'); ?>
|
193 |
</label>
|
194 |
</div>
|
|
|
195 |
|
196 |
+
<div id="mec_settings_additional_organizers_description" class="<?php if((isset($settings['additional_organizers']) and !$settings['additional_organizers']) or !isset($settings['additional_organizers'])) echo 'mec-util-hidden'; ?>">
|
197 |
+
|
198 |
+
<div class="mec-form-row">
|
199 |
+
<label id="mec_settings_additional_organizers_description" >
|
200 |
+
<input type="hidden" name="mec[settings][addintional_organizers_description]" value="0" />
|
201 |
+
<input type="checkbox" name="mec[settings][addintional_organizers_description]" id="mec_settings_additional_organizers_description" <?php echo ((isset($settings['addintional_organizers_description']) and $settings['addintional_organizers_description']) ? 'checked="checked"' : ''); ?> value="1" /><?php _e('Enable Description For Other Organizers.', 'modern-events-calendar-lite'); ?>
|
202 |
+
</label>
|
203 |
+
</div>
|
204 |
+
|
205 |
+
</div>
|
206 |
+
|
207 |
+
</div>
|
208 |
<div id="additional_locations" class="mec-options-fields">
|
209 |
<h4 class="mec-form-subtitle"><?php _e('Additional locations', 'modern-events-calendar-lite'); ?></h4>
|
210 |
<div class="mec-form-row">
|
@@ -8,7 +8,7 @@ $start_ampm = get_post_meta( get_the_ID(), 'mec_start_time_ampm', true);
|
|
8 |
$end_hour = get_post_meta( get_the_ID(), 'mec_end_time_hour', true);
|
9 |
$end_min = (get_post_meta( get_the_ID(), 'mec_end_time_minutes', true) < '10') ? '0' . get_post_meta( get_the_ID(), 'mec_end_time_minutes', true) : get_post_meta( get_the_ID(), 'mec_end_time_minutes', true);
|
10 |
$end_ampm = get_post_meta( get_the_ID(), 'mec_end_time_ampm', true);
|
11 |
-
$time = ( get_post_meta( get_the_ID(), 'mec_allday', true) == '1' ) ? __('All
|
12 |
?>
|
13 |
|
14 |
<article class="mec-search-bar-result">
|
8 |
$end_hour = get_post_meta( get_the_ID(), 'mec_end_time_hour', true);
|
9 |
$end_min = (get_post_meta( get_the_ID(), 'mec_end_time_minutes', true) < '10') ? '0' . get_post_meta( get_the_ID(), 'mec_end_time_minutes', true) : get_post_meta( get_the_ID(), 'mec_end_time_minutes', true);
|
10 |
$end_ampm = get_post_meta( get_the_ID(), 'mec_end_time_ampm', true);
|
11 |
+
$time = ( get_post_meta( get_the_ID(), 'mec_allday', true) == '1' ) ? __('All Day' , 'modern-events-calendar-lite') : $start_hour . ':' . $start_min . ' ' . $start_ampm . ' - ' . $end_hour . ':' . $end_min . ' ' . $end_ampm;
|
12 |
?>
|
13 |
|
14 |
<article class="mec-search-bar-result">
|
@@ -261,8 +261,10 @@ class MEC_book extends MEC_base
|
|
261 |
// Auto confirmation for paid bookings is enabled
|
262 |
if($price > 0 and isset($this->settings['booking_auto_confirm_paid']) and $this->settings['booking_auto_confirm_paid'] == 1)
|
263 |
{
|
264 |
-
//
|
265 |
-
$
|
|
|
|
|
266 |
if(!$pay_locally_gateway) $this->confirm($book_id, 'auto');
|
267 |
}
|
268 |
|
@@ -273,6 +275,7 @@ class MEC_book extends MEC_base
|
|
273 |
* Confirm a booking
|
274 |
* @author Webnus <info@webnus.biz>
|
275 |
* @param int $book_id
|
|
|
276 |
* @return boolean
|
277 |
*/
|
278 |
public function confirm($book_id, $mode = 'manually')
|
261 |
// Auto confirmation for paid bookings is enabled
|
262 |
if($price > 0 and isset($this->settings['booking_auto_confirm_paid']) and $this->settings['booking_auto_confirm_paid'] == 1)
|
263 |
{
|
264 |
+
// Work or don't work auto confirmation when pay through pay locally payment.
|
265 |
+
$gateways_settings = get_option('mec_options', array());
|
266 |
+
$pay_locally_gateway = (isset($gateways_settings['gateways'][1]['disable_auto_confirmation']) and trim($gateways_settings['gateways'][1]['disable_auto_confirmation'])) ? true : false;
|
267 |
+
|
268 |
if(!$pay_locally_gateway) $this->confirm($book_id, 'auto');
|
269 |
}
|
270 |
|
275 |
* Confirm a booking
|
276 |
* @author Webnus <info@webnus.biz>
|
277 |
* @param int $book_id
|
278 |
+
* @param string $mode
|
279 |
* @return boolean
|
280 |
*/
|
281 |
public function confirm($book_id, $mode = 'manually')
|
@@ -905,7 +905,12 @@ class MEC_main extends MEC_base
|
|
905 |
$data_url = 'https://webnus.net/modern-events-calendar/addons-api/mec-extra-content.json';
|
906 |
if( function_exists('file_get_contents') && ini_get('allow_url_fopen') )
|
907 |
{
|
908 |
-
$
|
|
|
|
|
|
|
|
|
|
|
909 |
if ( $get_data !== false AND !empty($get_data) )
|
910 |
{
|
911 |
$obj = json_decode($get_data);
|
@@ -917,6 +922,8 @@ class MEC_main extends MEC_base
|
|
917 |
$ch = curl_init();
|
918 |
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
|
919 |
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
|
|
|
|
|
920 |
curl_setopt($ch, CURLOPT_URL, $data_url);
|
921 |
$result = curl_exec($ch);
|
922 |
curl_close($ch);
|
@@ -2215,6 +2222,9 @@ class MEC_main extends MEC_base
|
|
2215 |
|
2216 |
$booking_time = date('Y-m-d', strtotime($booking_time));
|
2217 |
|
|
|
|
|
|
|
2218 |
// Include the tFPDF Class
|
2219 |
if(!class_exists('tFPDF')) require_once MEC_ABSPATH.'app'.DS.'api'.DS.'TFPDF'.DS.'tfpdf.php';
|
2220 |
|
@@ -2309,6 +2319,12 @@ class MEC_main extends MEC_base
|
|
2309 |
$pdf->Ln();
|
2310 |
}
|
2311 |
|
|
|
|
|
|
|
|
|
|
|
|
|
2312 |
$pdf->SetFont('DejaVuBold', '', 12);
|
2313 |
$pdf->Write(10, __('Total', 'modern-events-calendar-lite').': ');
|
2314 |
$pdf->Write(10, $this->render_price($transaction['price']));
|
@@ -2500,7 +2516,7 @@ class MEC_main extends MEC_base
|
|
2500 |
|
2501 |
// Location
|
2502 |
$location = isset($event->locations[$event->meta['mec_location_id']]) ? $event->locations[$event->meta['mec_location_id']] : array();
|
2503 |
-
$address = (isset($location['address']) and trim($location['address'])) ? $location['address'] : $location['name'];
|
2504 |
|
2505 |
if(trim($address) != '') $ical .= "LOCATION:".$address.PHP_EOL;
|
2506 |
|
@@ -4022,6 +4038,29 @@ class MEC_main extends MEC_base
|
|
4022 |
{
|
4023 |
$start_timestamp = strtotime($start['date']);
|
4024 |
$end_timestamp = strtotime($end['date']);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4025 |
|
4026 |
if($start_timestamp >= $end_timestamp) return '<span class="mec-start-date-label" itemprop="startDate">' . date_i18n($format, $start_timestamp) . '</span>';
|
4027 |
elseif($start_timestamp < $end_timestamp)
|
@@ -5090,22 +5129,36 @@ class MEC_main extends MEC_base
|
|
5090 |
/**
|
5091 |
* Load Google Maps assets
|
5092 |
*/
|
5093 |
-
public function load_map_assets()
|
5094 |
{
|
5095 |
if($this->getPRO())
|
5096 |
{
|
5097 |
// MEC Settings
|
5098 |
$settings = $this->get_settings();
|
5099 |
|
5100 |
-
|
|
|
5101 |
$gm_include = apply_filters('mec_gm_include', true);
|
5102 |
-
if($gm_include)
|
|
|
|
|
|
|
|
|
|
|
5103 |
|
5104 |
-
|
5105 |
-
wp_enqueue_script('mec-richmarker-script', $this->asset('packages/richmarker/richmarker.min.js'));
|
5106 |
|
5107 |
-
|
5108 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5109 |
}
|
5110 |
}
|
5111 |
|
@@ -6100,4 +6153,19 @@ class MEC_main extends MEC_base
|
|
6100 |
|
6101 |
return $user_list;
|
6102 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6103 |
}
|
905 |
$data_url = 'https://webnus.net/modern-events-calendar/addons-api/mec-extra-content.json';
|
906 |
if( function_exists('file_get_contents') && ini_get('allow_url_fopen') )
|
907 |
{
|
908 |
+
$ctx = stream_context_create(array('http'=>
|
909 |
+
array(
|
910 |
+
'timeout' => 20,
|
911 |
+
)
|
912 |
+
));
|
913 |
+
$get_data = file_get_contents($data_url, false, $ctx);
|
914 |
if ( $get_data !== false AND !empty($get_data) )
|
915 |
{
|
916 |
$obj = json_decode($get_data);
|
922 |
$ch = curl_init();
|
923 |
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
|
924 |
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
|
925 |
+
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 0);
|
926 |
+
curl_setopt($ch, CURLOPT_TIMEOUT, 20); //timeout in seconds
|
927 |
curl_setopt($ch, CURLOPT_URL, $data_url);
|
928 |
$result = curl_exec($ch);
|
929 |
curl_close($ch);
|
2222 |
|
2223 |
$booking_time = date('Y-m-d', strtotime($booking_time));
|
2224 |
|
2225 |
+
// Coupon Code
|
2226 |
+
$coupon_code = isset($booking[0]) ? get_post_meta($booking[0]->ID, 'mec_coupon_code', true) : '';
|
2227 |
+
|
2228 |
// Include the tFPDF Class
|
2229 |
if(!class_exists('tFPDF')) require_once MEC_ABSPATH.'app'.DS.'api'.DS.'TFPDF'.DS.'tfpdf.php';
|
2230 |
|
2319 |
$pdf->Ln();
|
2320 |
}
|
2321 |
|
2322 |
+
if($coupon_code)
|
2323 |
+
{
|
2324 |
+
$pdf->Write(6, __('Coupon Code', 'modern-events-calendar-lite').": ".$coupon_code);
|
2325 |
+
$pdf->Ln();
|
2326 |
+
}
|
2327 |
+
|
2328 |
$pdf->SetFont('DejaVuBold', '', 12);
|
2329 |
$pdf->Write(10, __('Total', 'modern-events-calendar-lite').': ');
|
2330 |
$pdf->Write(10, $this->render_price($transaction['price']));
|
2516 |
|
2517 |
// Location
|
2518 |
$location = isset($event->locations[$event->meta['mec_location_id']]) ? $event->locations[$event->meta['mec_location_id']] : array();
|
2519 |
+
$address = ((isset($location['address']) and trim($location['address'])) ? $location['address'] : (isset($location['name']) ? $location['name'] : ''));
|
2520 |
|
2521 |
if(trim($address) != '') $ical .= "LOCATION:".$address.PHP_EOL;
|
2522 |
|
4038 |
{
|
4039 |
$start_timestamp = strtotime($start['date']);
|
4040 |
$end_timestamp = strtotime($end['date']);
|
4041 |
+
|
4042 |
+
$timezone_GMT = new DateTimeZone("GMT");
|
4043 |
+
$timezone_site = new DateTimeZone($this->get_timezone());
|
4044 |
+
|
4045 |
+
$dt_now = new DateTime("now", $timezone_GMT);
|
4046 |
+
$dt_start = new DateTime($start['date'], $timezone_GMT);
|
4047 |
+
$dt_end = new DateTime($end['date'], $timezone_GMT);
|
4048 |
+
|
4049 |
+
$offset_now = $timezone_site->getOffset($dt_now);
|
4050 |
+
$offset_start = $timezone_site->getOffset($dt_start);
|
4051 |
+
$offset_end = $timezone_site->getOffset($dt_end);
|
4052 |
+
|
4053 |
+
if($offset_now != $offset_start)
|
4054 |
+
{
|
4055 |
+
$diff = $offset_start - $offset_now;
|
4056 |
+
$start_timestamp += $diff;
|
4057 |
+
}
|
4058 |
+
|
4059 |
+
if($offset_now != $offset_end)
|
4060 |
+
{
|
4061 |
+
$diff = $offset_end - $offset_now;
|
4062 |
+
$end_timestamp += $diff;
|
4063 |
+
}
|
4064 |
|
4065 |
if($start_timestamp >= $end_timestamp) return '<span class="mec-start-date-label" itemprop="startDate">' . date_i18n($format, $start_timestamp) . '</span>';
|
4066 |
elseif($start_timestamp < $end_timestamp)
|
5129 |
/**
|
5130 |
* Load Google Maps assets
|
5131 |
*/
|
5132 |
+
public function load_map_assets($define_settings=null)
|
5133 |
{
|
5134 |
if($this->getPRO())
|
5135 |
{
|
5136 |
// MEC Settings
|
5137 |
$settings = $this->get_settings();
|
5138 |
|
5139 |
+
|
5140 |
+
$assets = array('js'=>array(), 'css'=>array());
|
5141 |
$gm_include = apply_filters('mec_gm_include', true);
|
5142 |
+
if($gm_include) $assets['js']['googlemap'] = '//maps.googleapis.com/maps/api/js?libraries=places'.((isset($settings['google_maps_api_key']) and trim($settings['google_maps_api_key']) != '') ? '&key='.$settings['google_maps_api_key'] : '');
|
5143 |
+
|
5144 |
+
|
5145 |
+
$assets['js']['mec-richmarker-script']=$this->asset('packages/richmarker/richmarker.min.js'); // Google Maps Rich Marker
|
5146 |
+
$assets['js']['mec-clustering-script']=$this->asset('packages/clusterer/markerclusterer.min.js'); // Google Maps Clustering
|
5147 |
+
$assets['js']['mec-googlemap-script']=$this->asset('js/googlemap.js'); // Google Maps Javascript API
|
5148 |
|
5149 |
+
$assets = apply_filters( 'mec_map_assets_include',$assets, $this, $define_settings );
|
|
|
5150 |
|
5151 |
+
if(count($assets['js'])>0){
|
5152 |
+
foreach ($assets['js'] as $key => $link) {
|
5153 |
+
wp_enqueue_script($key, $link);
|
5154 |
+
}
|
5155 |
+
}
|
5156 |
+
|
5157 |
+
if(count($assets['css'])>0){
|
5158 |
+
foreach ($assets['css'] as $key => $link) {
|
5159 |
+
wp_enqueue_style( $key, $link );
|
5160 |
+
}
|
5161 |
+
}
|
5162 |
}
|
5163 |
}
|
5164 |
|
6153 |
|
6154 |
return $user_list;
|
6155 |
}
|
6156 |
+
|
6157 |
+
public function get_normal_labels($event)
|
6158 |
+
{
|
6159 |
+
$output = '';
|
6160 |
+
|
6161 |
+
if(is_object($event) and isset($event->data->labels) and !empty($event->data->labels))
|
6162 |
+
{
|
6163 |
+
foreach($event->data->labels as $label)
|
6164 |
+
{
|
6165 |
+
if(isset($label['style']) and !trim($label['style']) and isset($label['name']) and trim($label['name'])) $output .= '<span data-style="Normal" class="mec-label-normal">' . trim($label['name']) . '</span>';
|
6166 |
+
}
|
6167 |
+
}
|
6168 |
+
|
6169 |
+
return $output ? '<span class="mec-labels-normal">' . $output . '</span>' : $output;
|
6170 |
+
}
|
6171 |
}
|
@@ -264,13 +264,10 @@ class MEC_notifications extends MEC_base
|
|
264 |
|
265 |
if(!isset($booker->user_email)) return false;
|
266 |
|
267 |
-
$
|
268 |
-
|
269 |
-
// Auto confirmation for free bookings is enabled so don't send the confirmation email
|
270 |
-
if($price <= 0 and isset($this->settings['booking_auto_confirm_free']) and $this->settings['booking_auto_confirm_free'] == 1 and $mode == 'auto') return false;
|
271 |
|
272 |
-
//
|
273 |
-
if($
|
274 |
|
275 |
$subject = isset($this->notif_settings['booking_confirmation']['subject']) ? $this->content(__($this->notif_settings['booking_confirmation']['subject'], 'modern-events-calendar-lite'), $book_id) : __('Your booking is confirmed.', 'modern-events-calendar-lite');
|
276 |
$headers = array('Content-Type: text/html; charset=UTF-8');
|
@@ -951,7 +948,7 @@ class MEC_notifications extends MEC_base
|
|
951 |
|
952 |
// Book Time
|
953 |
$start_seconds = get_post_meta($event_id, 'mec_start_day_seconds', true);
|
954 |
-
$event_start_time = get_post_meta($event_id, 'mec_allday', true) ? __('All
|
955 |
|
956 |
// Condition for check some parameter simple hide event time
|
957 |
if(!get_post_meta( $event_id, 'mec_hide_time', true )) $message = str_replace('%%book_time%%', $event_start_time, $message);
|
264 |
|
265 |
if(!isset($booker->user_email)) return false;
|
266 |
|
267 |
+
$send_email_state = (isset($this->settings['booking_auto_confirm_send_email']) and $this->settings['booking_auto_confirm_send_email'] == '1') ? true : false;
|
|
|
|
|
|
|
268 |
|
269 |
+
// Don't send the confirmation email
|
270 |
+
if($mode == 'auto' and !$send_email_state) return false;
|
271 |
|
272 |
$subject = isset($this->notif_settings['booking_confirmation']['subject']) ? $this->content(__($this->notif_settings['booking_confirmation']['subject'], 'modern-events-calendar-lite'), $book_id) : __('Your booking is confirmed.', 'modern-events-calendar-lite');
|
273 |
$headers = array('Content-Type: text/html; charset=UTF-8');
|
948 |
|
949 |
// Book Time
|
950 |
$start_seconds = get_post_meta($event_id, 'mec_start_day_seconds', true);
|
951 |
+
$event_start_time = get_post_meta($event_id, 'mec_allday', true) ? __('All Day', 'modern-events-calendar-lite') : $this->main->get_time($start_seconds);
|
952 |
|
953 |
// Condition for check some parameter simple hide event time
|
954 |
if(!get_post_meta( $event_id, 'mec_hide_time', true )) $message = str_replace('%%book_time%%', $event_start_time, $message);
|
@@ -485,7 +485,7 @@ class MEC_render extends MEC_base
|
|
485 |
}
|
486 |
elseif($allday)
|
487 |
{
|
488 |
-
$data->time = array('start'=>__('All
|
489 |
}
|
490 |
else
|
491 |
{
|
@@ -562,7 +562,10 @@ class MEC_render extends MEC_base
|
|
562 |
|
563 |
if($term->taxonomy == 'mec_label') $data->labels[$term->term_id] = array('id'=>$term->term_id, 'name'=>$term->name, 'color'=>get_metadata('term', $term->term_id, 'color', true), 'style'=>get_metadata('term', $term->term_id, 'style', true));
|
564 |
elseif($term->taxonomy == 'mec_organizer') $data->organizers[$term->term_id] = array('id'=>$term->term_id, 'name'=>$term->name, 'tel'=>get_metadata('term', $term->term_id, 'tel', true), 'email'=>get_metadata('term', $term->term_id, 'email', true), 'url'=>get_metadata('term', $term->term_id, 'url', true), 'thumbnail'=>get_metadata('term', $term->term_id, 'thumbnail', true));
|
565 |
-
elseif($term->taxonomy == 'mec_location')
|
|
|
|
|
|
|
566 |
elseif($term->taxonomy == 'mec_category') $data->categories[$term->term_id] = array('id'=>$term->term_id, 'name'=>$term->name);
|
567 |
elseif($term->taxonomy == 'post_tag') $data->tags[$term->term_id] = array('id'=>$term->term_id, 'name'=>$term->name);
|
568 |
elseif($term->taxonomy == 'mec_speaker')
|
485 |
}
|
486 |
elseif($allday)
|
487 |
{
|
488 |
+
$data->time = array('start'=>__('All Day', 'modern-events-calendar-lite'), 'end'=>'');
|
489 |
}
|
490 |
else
|
491 |
{
|
562 |
|
563 |
if($term->taxonomy == 'mec_label') $data->labels[$term->term_id] = array('id'=>$term->term_id, 'name'=>$term->name, 'color'=>get_metadata('term', $term->term_id, 'color', true), 'style'=>get_metadata('term', $term->term_id, 'style', true));
|
564 |
elseif($term->taxonomy == 'mec_organizer') $data->organizers[$term->term_id] = array('id'=>$term->term_id, 'name'=>$term->name, 'tel'=>get_metadata('term', $term->term_id, 'tel', true), 'email'=>get_metadata('term', $term->term_id, 'email', true), 'url'=>get_metadata('term', $term->term_id, 'url', true), 'thumbnail'=>get_metadata('term', $term->term_id, 'thumbnail', true));
|
565 |
+
elseif($term->taxonomy == 'mec_location') {
|
566 |
+
$locations = array('id'=>$term->term_id, 'name'=>$term->name, 'address'=>get_metadata('term', $term->term_id, 'address', true), 'latitude'=>get_metadata('term', $term->term_id, 'latitude', true), 'longitude'=>get_metadata('term', $term->term_id, 'longitude', true), 'thumbnail'=>get_metadata('term', $term->term_id, 'thumbnail', true));
|
567 |
+
$data->locations[$term->term_id] = apply_filters( 'mec_map_load_location_terms', $locations, $term );
|
568 |
+
}
|
569 |
elseif($term->taxonomy == 'mec_category') $data->categories[$term->term_id] = array('id'=>$term->term_id, 'name'=>$term->name);
|
570 |
elseif($term->taxonomy == 'post_tag') $data->tags[$term->term_id] = array('id'=>$term->term_id, 'name'=>$term->name);
|
571 |
elseif($term->taxonomy == 'mec_speaker')
|
@@ -354,6 +354,8 @@ class MEC_skins extends MEC_base
|
|
354 |
'terms'=>explode(',', trim($this->atts['event_type_2'], ', '))
|
355 |
);
|
356 |
}
|
|
|
|
|
357 |
|
358 |
return $tax_query;
|
359 |
}
|
@@ -367,6 +369,8 @@ class MEC_skins extends MEC_base
|
|
367 |
{
|
368 |
$meta_query = array();
|
369 |
$meta_query['relation'] = 'AND';
|
|
|
|
|
370 |
|
371 |
return $meta_query;
|
372 |
}
|
@@ -815,6 +819,9 @@ class MEC_skins extends MEC_base
|
|
815 |
}
|
816 |
$fields .= $this->sf_search_field($field, $options);
|
817 |
}
|
|
|
|
|
|
|
818 |
$form = '';
|
819 |
if(trim($fields) && ( in_array('dropdown', $display_form ) || in_array('text_input', $display_form ) ) ) $form .= '<div id="mec_search_form_'.$this->id.'" class="mec-search-form mec-totalcal-box">'.$fields.'</div>';
|
820 |
|
354 |
'terms'=>explode(',', trim($this->atts['event_type_2'], ', '))
|
355 |
);
|
356 |
}
|
357 |
+
|
358 |
+
$tax_query = apply_filters( 'mec_map_tax_query',$tax_query, $this->atts );
|
359 |
|
360 |
return $tax_query;
|
361 |
}
|
369 |
{
|
370 |
$meta_query = array();
|
371 |
$meta_query['relation'] = 'AND';
|
372 |
+
|
373 |
+
$meta_query = apply_filters( 'mec_map_meta_query',$meta_query, $this->atts );
|
374 |
|
375 |
return $meta_query;
|
376 |
}
|
819 |
}
|
820 |
$fields .= $this->sf_search_field($field, $options);
|
821 |
}
|
822 |
+
|
823 |
+
$fields = apply_filters( 'mec_filter_fields_search_form',$fields, $this );
|
824 |
+
|
825 |
$form = '';
|
826 |
if(trim($fields) && ( in_array('dropdown', $display_form ) || in_array('text_input', $display_form ) ) ) $form .= '<div id="mec_search_form_'.$this->id.'" class="mec-search-form mec-totalcal-box">'.$fields.'</div>';
|
827 |
|
@@ -34,10 +34,10 @@ function mec_get_tickets_availability'.$uniqueid.'(event_id, date)
|
|
34 |
// Add loading Class to the ticket list
|
35 |
jQuery(".mec-event-tickets-list").addClass("loading");
|
36 |
jQuery(".mec-event-tickets-list input").prop("disabled", true);
|
37 |
-
|
38 |
// Abort previous request
|
39 |
if(mec_tickets_availability_ajax'.$uniqueid.') mec_tickets_availability_ajax'.$uniqueid.'.abort();
|
40 |
-
|
41 |
//Start Preloader
|
42 |
jQuery(".mec-event-tickets-list").addClass("mec-cover-loader");
|
43 |
jQuery(".mec-event-tickets-list").append( "<div class=\"mec-loader\"></div>" );
|
@@ -56,13 +56,13 @@ function mec_get_tickets_availability'.$uniqueid.'(event_id, date)
|
|
56 |
|
57 |
// Set Total Booking Limit
|
58 |
if(typeof data.availability.total != "undefined") jQuery("#mec_booking'.$uniqueid.' #mec_book_form_tickets_container'.$uniqueid.'").data("total-booking-limit", data.availability.total);
|
59 |
-
|
60 |
for(ticket_id in data.availability)
|
61 |
{
|
62 |
var limit = data.availability[ticket_id];
|
63 |
-
|
64 |
jQuery("#mec_booking'.$uniqueid.' #mec_event_ticket"+ticket_id).addClass(".mec-event-ticket"+limit);
|
65 |
-
|
66 |
if(data.availability["stop_selling_"+ticket_id]) jQuery("#mec-ticket-message-"+ticket_id).attr("class", "mec-ticket-unavailable-spots mec-error").find("div").html(jQuery("#mec-ticket-message-sales-"+ticket_id).val());
|
67 |
else jQuery("#mec-ticket-message-"+ticket_id).attr("class", "mec-ticket-unavailable-spots info-msg").find("div").html(jQuery("#mec-ticket-message-sold-out-"+ticket_id).val());
|
68 |
|
@@ -78,7 +78,7 @@ function mec_get_tickets_availability'.$uniqueid.'(event_id, date)
|
|
78 |
jQuery("#mec_booking'.$uniqueid.' #mec_event_ticket"+ticket_id+" .mec-ticket-available-spots").addClass("mec-util-hidden");
|
79 |
jQuery("#mec_booking'.$uniqueid.' #mec_event_ticket"+ticket_id+" .mec-ticket-unavailable-spots").removeClass("mec-util-hidden");
|
80 |
}
|
81 |
-
|
82 |
if(limit == "-1")
|
83 |
{
|
84 |
jQuery("#mec_booking'.$uniqueid.' #mec_event_ticket"+ticket_id+" .mec-book-ticket-limit").attr("max", "");
|
@@ -88,19 +88,19 @@ function mec_get_tickets_availability'.$uniqueid.'(event_id, date)
|
|
88 |
{
|
89 |
var cur_count = jQuery("#mec_booking'.$uniqueid.' #mec_event_ticket"+ticket_id+" .mec-book-ticket-limit").val();
|
90 |
if(cur_count > limit) jQuery("#mec_booking'.$uniqueid.' #mec_event_ticket"+ticket_id+" .mec-book-ticket-limit").val(limit);
|
91 |
-
|
92 |
jQuery("#mec_booking'.$uniqueid.' #mec_event_ticket"+ticket_id+" .mec-book-ticket-limit").attr("max", limit);
|
93 |
jQuery("#mec_booking'.$uniqueid.' #mec_event_ticket"+ticket_id+" .mec-event-ticket-available span").html(limit);
|
94 |
}
|
95 |
}
|
96 |
-
|
97 |
for(ticket_id in data.prices)
|
98 |
{
|
99 |
var price_label = data.prices[ticket_id];
|
100 |
-
|
101 |
jQuery("#mec_booking'.$uniqueid.' #mec_event_ticket"+ticket_id+" .mec-event-ticket-price").html(price_label);
|
102 |
}
|
103 |
-
|
104 |
// Remove Preloader
|
105 |
jQuery(".mec-loader").remove();
|
106 |
jQuery(".mec-event-tickets-list").removeClass("mec-cover-loader");
|
@@ -117,22 +117,22 @@ function mec_check_tickets_availability'.$uniqueid.'(ticket_id, count)
|
|
117 |
{
|
118 |
var total = jQuery("#mec_book_form_tickets_container'.$uniqueid.'").data("total-booking-limit");
|
119 |
var max = jQuery("#mec_booking'.$uniqueid.' #mec_event_ticket"+ticket_id+" .mec-book-ticket-limit").attr("max");
|
120 |
-
|
121 |
var sum = 0;
|
122 |
jQuery("#mec_booking'.$uniqueid.' .mec-book-ticket-limit").each(function()
|
123 |
{
|
124 |
sum += parseInt(jQuery(this).val(), 10);
|
125 |
});
|
126 |
-
|
127 |
if(total != "-1" && max > (total - (sum - count))) max = (total - (sum - count));
|
128 |
-
|
129 |
if(parseInt(count) > parseInt(max)) jQuery("#mec_booking'.$uniqueid.' #mec_event_ticket"+ticket_id+" .mec-book-ticket-limit").val(max);
|
130 |
}
|
131 |
|
132 |
function mec_toggle_first_for_all'.$uniqueid.'(context)
|
133 |
{
|
134 |
var status = jQuery("#mec_book_first_for_all'.$uniqueid.'").is(":checked") ? true : false;
|
135 |
-
|
136 |
if(status)
|
137 |
{
|
138 |
jQuery("#mec_booking'.$uniqueid.' .mec-book-ticket-container:not(:first-child)").addClass("mec-util-hidden");
|
@@ -160,16 +160,16 @@ function mec_label_first_for_all'.$uniqueid.'(context)
|
|
160 |
function mec_book_form_submit'.$uniqueid.'()
|
161 |
{
|
162 |
var step = jQuery("#mec_book_form'.$uniqueid.' input[name=step]").val();
|
163 |
-
|
164 |
// Validate Checkboxes and Radio Buttons on Booking Form
|
165 |
if(step == 2)
|
166 |
{
|
167 |
var valid = true;
|
168 |
-
|
169 |
jQuery("#mec_book_form'.$uniqueid.' .mec-book-ticket-container .mec-book-field-name.mec-reg-mandatory").filter(":visible").each(function(i)
|
170 |
{
|
171 |
var ticket_id = jQuery(this).data("ticket-id");
|
172 |
-
|
173 |
if(!jQuery("#mec_book_form'.$uniqueid.' input[name=\'book[tickets]["+ticket_id+"][name]\']").val())
|
174 |
{
|
175 |
valid = false;
|
@@ -177,11 +177,11 @@ function mec_book_form_submit'.$uniqueid.'()
|
|
177 |
}
|
178 |
else jQuery(this).removeClass("mec-red-notification");
|
179 |
});
|
180 |
-
|
181 |
jQuery("#mec_book_form'.$uniqueid.' .mec-book-ticket-container .mec-book-field-email.mec-reg-mandatory").filter(":visible").each(function(i)
|
182 |
{
|
183 |
var ticket_id = jQuery(this).data("ticket-id");
|
184 |
-
|
185 |
if(!jQuery("#mec_book_form'.$uniqueid.' input[name=\'book[tickets]["+ticket_id+"][email]\']").val())
|
186 |
{
|
187 |
valid = false;
|
@@ -189,12 +189,12 @@ function mec_book_form_submit'.$uniqueid.'()
|
|
189 |
}
|
190 |
else jQuery(this).removeClass("mec-red-notification");
|
191 |
});
|
192 |
-
|
193 |
jQuery("#mec_book_form'.$uniqueid.' .mec-book-ticket-container .mec-book-reg-field-checkbox.mec-reg-mandatory").filter(":visible").each(function(i)
|
194 |
{
|
195 |
var ticket_id = jQuery(this).data("ticket-id");
|
196 |
var field_id = jQuery(this).data("field-id");
|
197 |
-
|
198 |
if(!jQuery("#mec_book_form'.$uniqueid.' input[name=\'book[tickets]["+ticket_id+"][reg]["+field_id+"][]\']").is(":checked"))
|
199 |
{
|
200 |
valid = false;
|
@@ -202,12 +202,12 @@ function mec_book_form_submit'.$uniqueid.'()
|
|
202 |
}
|
203 |
else jQuery(this).removeClass("mec-red-notification");
|
204 |
});
|
205 |
-
|
206 |
jQuery("#mec_book_form'.$uniqueid.' .mec-book-ticket-container .mec-book-reg-field-radio.mec-reg-mandatory").filter(":visible").each(function(i)
|
207 |
{
|
208 |
var ticket_id = jQuery(this).data("ticket-id");
|
209 |
var field_id = jQuery(this).data("field-id");
|
210 |
-
|
211 |
if(!jQuery("#mec_book_form'.$uniqueid.' input[name=\'book[tickets]["+ticket_id+"][reg]["+field_id+"]\']:checked").val())
|
212 |
{
|
213 |
valid = false;
|
@@ -215,12 +215,12 @@ function mec_book_form_submit'.$uniqueid.'()
|
|
215 |
}
|
216 |
else jQuery(this).removeClass("mec-red-notification");
|
217 |
});
|
218 |
-
|
219 |
jQuery("#mec_book_form'.$uniqueid.' .mec-book-ticket-container .mec-book-reg-field-agreement.mec-reg-mandatory").filter(":visible").each(function(i)
|
220 |
{
|
221 |
var ticket_id = jQuery(this).data("ticket-id");
|
222 |
var field_id = jQuery(this).data("field-id");
|
223 |
-
|
224 |
if(!jQuery("#mec_book_form'.$uniqueid.' input[name=\'book[tickets]["+ticket_id+"][reg]["+field_id+"]\']:checked").val())
|
225 |
{
|
226 |
valid = false;
|
@@ -228,12 +228,12 @@ function mec_book_form_submit'.$uniqueid.'()
|
|
228 |
}
|
229 |
else jQuery(this).removeClass("mec-red-notification");
|
230 |
});
|
231 |
-
|
232 |
jQuery("#mec_book_form'.$uniqueid.' .mec-book-ticket-container .mec-book-reg-field-tel.mec-reg-mandatory, .mec-book-ticket-container .mec-book-reg-field-email.mec-reg-mandatory, .mec-book-ticket-container .mec-book-reg-field-text.mec-reg-mandatory").filter(":visible").each(function(i)
|
233 |
{
|
234 |
var ticket_id = jQuery(this).data("ticket-id");
|
235 |
var field_id = jQuery(this).data("field-id");
|
236 |
-
|
237 |
if(!jQuery("#mec_book_form'.$uniqueid.' input[name=\'book[tickets]["+ticket_id+"][reg]["+field_id+"]\']").val())
|
238 |
{
|
239 |
valid = false;
|
@@ -241,12 +241,12 @@ function mec_book_form_submit'.$uniqueid.'()
|
|
241 |
}
|
242 |
else jQuery(this).removeClass("mec-red-notification");
|
243 |
});
|
244 |
-
|
245 |
jQuery("#mec_book_form'.$uniqueid.' .mec-book-ticket-container .mec-book-reg-field-select.mec-reg-mandatory").filter(":visible").each(function(i)
|
246 |
{
|
247 |
var ticket_id = jQuery(this).data("ticket-id");
|
248 |
var field_id = jQuery(this).data("field-id");
|
249 |
-
|
250 |
if(!jQuery("#mec_book_form'.$uniqueid.' select[name=\'book[tickets]["+ticket_id+"][reg]["+field_id+"]\']").val())
|
251 |
{
|
252 |
valid = false;
|
@@ -254,12 +254,12 @@ function mec_book_form_submit'.$uniqueid.'()
|
|
254 |
}
|
255 |
else jQuery(this).removeClass("mec-red-notification");
|
256 |
});
|
257 |
-
|
258 |
jQuery("#mec_book_form'.$uniqueid.' .mec-book-ticket-container .mec-book-reg-field-textarea.mec-reg-mandatory").filter(":visible").each(function(i)
|
259 |
{
|
260 |
var ticket_id = jQuery(this).data("ticket-id");
|
261 |
var field_id = jQuery(this).data("field-id");
|
262 |
-
|
263 |
if(!jQuery("#mec_book_form'.$uniqueid.' textarea[name=\'book[tickets]["+ticket_id+"][reg]["+field_id+"]\']").val())
|
264 |
{
|
265 |
valid = false;
|
@@ -267,7 +267,7 @@ function mec_book_form_submit'.$uniqueid.'()
|
|
267 |
}
|
268 |
else jQuery(this).removeClass("mec-red-notification");
|
269 |
});
|
270 |
-
|
271 |
if(!valid) return false;
|
272 |
}
|
273 |
|
@@ -275,9 +275,9 @@ function mec_book_form_submit'.$uniqueid.'()
|
|
275 |
jQuery("#mec_book_form'.$uniqueid.' button[type=submit]").addClass("loading");
|
276 |
jQuery("#mec_book_form'.$uniqueid.' button[type=submit]").attr("disabled" , "true");
|
277 |
jQuery("#mec_booking_message'.$uniqueid.'").removeClass("mec-success mec-error").hide();
|
278 |
-
|
279 |
var fileToUpload = false;
|
280 |
-
|
281 |
var data = jQuery("#mec_book_form'.$uniqueid.'").serialize();
|
282 |
jQuery.ajax({
|
283 |
type: "POST",
|
@@ -292,17 +292,17 @@ function mec_book_form_submit'.$uniqueid.'()
|
|
292 |
// Remove the loading Class to the button
|
293 |
jQuery("#mec_book_form'.$uniqueid.' button[type=submit]").removeClass("loading");
|
294 |
jQuery("#mec_book_form'.$uniqueid.' button[type=submit]").removeAttr("disabled");
|
295 |
-
|
296 |
if(data.success)
|
297 |
{
|
298 |
jQuery("#mec_booking'.$uniqueid.'").html(data.output);
|
299 |
-
|
300 |
// Show Invoice Link
|
301 |
if(typeof data.data.invoice_link != "undefined" && data.data.invoice_link != "")
|
302 |
{
|
303 |
jQuery("#mec_booking'.$uniqueid.'").append("<a class=\"mec-invoice-download\" href=\""+data.data.invoice_link+"\">'.esc_js(__('Download Invoice', 'modern-events-calendar-lite')).'</a>");
|
304 |
}
|
305 |
-
|
306 |
// Redirect to thank you page
|
307 |
if(typeof data.data.redirect_to != "undefined" && data.data.redirect_to != "")
|
308 |
{
|
@@ -330,7 +330,7 @@ function mec_book_apply_coupon'.$uniqueid.'()
|
|
330 |
// Add loading Class to the button
|
331 |
jQuery("#mec_book_form_coupon'.$uniqueid.' button[type=submit]").addClass("loading");
|
332 |
jQuery("#mec_booking'.$uniqueid.' .mec-book-form-coupon .mec-coupon-message").removeClass("mec-success mec-error").hide();
|
333 |
-
|
334 |
var data = jQuery("#mec_book_form_coupon'.$uniqueid.'").serialize();
|
335 |
jQuery.ajax(
|
336 |
{
|
@@ -342,7 +342,7 @@ function mec_book_apply_coupon'.$uniqueid.'()
|
|
342 |
{
|
343 |
// Remove the loading Class to the button
|
344 |
jQuery("#mec_book_form_coupon'.$uniqueid.' button[type=submit]").removeClass("loading");
|
345 |
-
|
346 |
if(data.success)
|
347 |
{
|
348 |
// It converts to free booking because of applied coupon
|
@@ -351,12 +351,12 @@ function mec_book_apply_coupon'.$uniqueid.'()
|
|
351 |
jQuery("#mec_booking'.$uniqueid.' .mec-book-form-gateways").hide();
|
352 |
jQuery("#mec_book_form_free_booking'.$uniqueid.'").show();
|
353 |
}
|
354 |
-
|
355 |
jQuery("#mec_booking'.$uniqueid.' .mec-book-form-coupon .mec-coupon-message").addClass("mec-success").html(data.message).show();
|
356 |
-
|
357 |
jQuery("#mec_booking'.$uniqueid.' .mec-book-price-details .mec-book-price-detail-typediscount").remove();
|
358 |
jQuery("#mec_booking'.$uniqueid.' .mec-book-price-details").append(data.data.price_details);
|
359 |
-
|
360 |
jQuery("#mec_booking'.$uniqueid.' .mec-book-price-total").html(data.data.price);
|
361 |
jQuery("#mec_booking'.$uniqueid.' #mec_do_transaction_paypal_express_form"+data.data.transaction_id+" input[name=amount]").val(data.data.price_raw);
|
362 |
}
|
@@ -378,7 +378,7 @@ function mec_book_free'.$uniqueid.'()
|
|
378 |
// Add loading Class to the button
|
379 |
jQuery("#mec_book_form_free_booking'.$uniqueid.' button[type=submit]").addClass("loading");
|
380 |
jQuery("#mec_booking_message'.$uniqueid.'").removeClass("mec-success mec-error").hide();
|
381 |
-
|
382 |
var data = jQuery("#mec_book_form_free_booking'.$uniqueid.'").serialize();
|
383 |
jQuery.ajax(
|
384 |
{
|
@@ -390,17 +390,17 @@ function mec_book_free'.$uniqueid.'()
|
|
390 |
{
|
391 |
// Remove the loading Class to the button
|
392 |
jQuery("#mec_book_form_free_booking'.$uniqueid.' button[type=submit]").removeClass("loading");
|
393 |
-
|
394 |
if(data.success)
|
395 |
{
|
396 |
jQuery("#mec_booking'.$uniqueid.'").html(data.output);
|
397 |
-
|
398 |
// Show Invoice Link
|
399 |
if(typeof data.data.invoice_link != "undefined" && data.data.invoice_link != "")
|
400 |
{
|
401 |
jQuery("#mec_booking'.$uniqueid.'").append("<a class=\"mec-invoice-download\" href=\""+data.data.invoice_link+"\">'.esc_js(__('Download Invoice', 'modern-events-calendar-lite')).'</a>");
|
402 |
}
|
403 |
-
|
404 |
// Redirect to thank you page
|
405 |
if(typeof data.data.redirect_to != "undefined" && data.data.redirect_to != "")
|
406 |
{
|
@@ -425,12 +425,13 @@ function mec_check_variation_min_max'.$uniqueid.'(variation)
|
|
425 |
var value = parseInt(jQuery(variation).val());
|
426 |
var max = parseInt(jQuery(variation).prop("max"));
|
427 |
var min = parseInt(jQuery(variation).prop("min"));
|
428 |
-
|
429 |
if(value > max) jQuery(variation).val(max);
|
430 |
if(value < min) jQuery(variation).val(min);
|
431 |
}
|
432 |
</script>';
|
433 |
|
|
|
434 |
// Include javascript code into the footer
|
435 |
if($this->is_ajax()) echo $javascript;
|
436 |
else $factory->params('footer', $javascript);
|
34 |
// Add loading Class to the ticket list
|
35 |
jQuery(".mec-event-tickets-list").addClass("loading");
|
36 |
jQuery(".mec-event-tickets-list input").prop("disabled", true);
|
37 |
+
|
38 |
// Abort previous request
|
39 |
if(mec_tickets_availability_ajax'.$uniqueid.') mec_tickets_availability_ajax'.$uniqueid.'.abort();
|
40 |
+
|
41 |
//Start Preloader
|
42 |
jQuery(".mec-event-tickets-list").addClass("mec-cover-loader");
|
43 |
jQuery(".mec-event-tickets-list").append( "<div class=\"mec-loader\"></div>" );
|
56 |
|
57 |
// Set Total Booking Limit
|
58 |
if(typeof data.availability.total != "undefined") jQuery("#mec_booking'.$uniqueid.' #mec_book_form_tickets_container'.$uniqueid.'").data("total-booking-limit", data.availability.total);
|
59 |
+
|
60 |
for(ticket_id in data.availability)
|
61 |
{
|
62 |
var limit = data.availability[ticket_id];
|
63 |
+
|
64 |
jQuery("#mec_booking'.$uniqueid.' #mec_event_ticket"+ticket_id).addClass(".mec-event-ticket"+limit);
|
65 |
+
|
66 |
if(data.availability["stop_selling_"+ticket_id]) jQuery("#mec-ticket-message-"+ticket_id).attr("class", "mec-ticket-unavailable-spots mec-error").find("div").html(jQuery("#mec-ticket-message-sales-"+ticket_id).val());
|
67 |
else jQuery("#mec-ticket-message-"+ticket_id).attr("class", "mec-ticket-unavailable-spots info-msg").find("div").html(jQuery("#mec-ticket-message-sold-out-"+ticket_id).val());
|
68 |
|
78 |
jQuery("#mec_booking'.$uniqueid.' #mec_event_ticket"+ticket_id+" .mec-ticket-available-spots").addClass("mec-util-hidden");
|
79 |
jQuery("#mec_booking'.$uniqueid.' #mec_event_ticket"+ticket_id+" .mec-ticket-unavailable-spots").removeClass("mec-util-hidden");
|
80 |
}
|
81 |
+
|
82 |
if(limit == "-1")
|
83 |
{
|
84 |
jQuery("#mec_booking'.$uniqueid.' #mec_event_ticket"+ticket_id+" .mec-book-ticket-limit").attr("max", "");
|
88 |
{
|
89 |
var cur_count = jQuery("#mec_booking'.$uniqueid.' #mec_event_ticket"+ticket_id+" .mec-book-ticket-limit").val();
|
90 |
if(cur_count > limit) jQuery("#mec_booking'.$uniqueid.' #mec_event_ticket"+ticket_id+" .mec-book-ticket-limit").val(limit);
|
91 |
+
|
92 |
jQuery("#mec_booking'.$uniqueid.' #mec_event_ticket"+ticket_id+" .mec-book-ticket-limit").attr("max", limit);
|
93 |
jQuery("#mec_booking'.$uniqueid.' #mec_event_ticket"+ticket_id+" .mec-event-ticket-available span").html(limit);
|
94 |
}
|
95 |
}
|
96 |
+
|
97 |
for(ticket_id in data.prices)
|
98 |
{
|
99 |
var price_label = data.prices[ticket_id];
|
100 |
+
|
101 |
jQuery("#mec_booking'.$uniqueid.' #mec_event_ticket"+ticket_id+" .mec-event-ticket-price").html(price_label);
|
102 |
}
|
103 |
+
|
104 |
// Remove Preloader
|
105 |
jQuery(".mec-loader").remove();
|
106 |
jQuery(".mec-event-tickets-list").removeClass("mec-cover-loader");
|
117 |
{
|
118 |
var total = jQuery("#mec_book_form_tickets_container'.$uniqueid.'").data("total-booking-limit");
|
119 |
var max = jQuery("#mec_booking'.$uniqueid.' #mec_event_ticket"+ticket_id+" .mec-book-ticket-limit").attr("max");
|
120 |
+
|
121 |
var sum = 0;
|
122 |
jQuery("#mec_booking'.$uniqueid.' .mec-book-ticket-limit").each(function()
|
123 |
{
|
124 |
sum += parseInt(jQuery(this).val(), 10);
|
125 |
});
|
126 |
+
|
127 |
if(total != "-1" && max > (total - (sum - count))) max = (total - (sum - count));
|
128 |
+
|
129 |
if(parseInt(count) > parseInt(max)) jQuery("#mec_booking'.$uniqueid.' #mec_event_ticket"+ticket_id+" .mec-book-ticket-limit").val(max);
|
130 |
}
|
131 |
|
132 |
function mec_toggle_first_for_all'.$uniqueid.'(context)
|
133 |
{
|
134 |
var status = jQuery("#mec_book_first_for_all'.$uniqueid.'").is(":checked") ? true : false;
|
135 |
+
|
136 |
if(status)
|
137 |
{
|
138 |
jQuery("#mec_booking'.$uniqueid.' .mec-book-ticket-container:not(:first-child)").addClass("mec-util-hidden");
|
160 |
function mec_book_form_submit'.$uniqueid.'()
|
161 |
{
|
162 |
var step = jQuery("#mec_book_form'.$uniqueid.' input[name=step]").val();
|
163 |
+
|
164 |
// Validate Checkboxes and Radio Buttons on Booking Form
|
165 |
if(step == 2)
|
166 |
{
|
167 |
var valid = true;
|
168 |
+
|
169 |
jQuery("#mec_book_form'.$uniqueid.' .mec-book-ticket-container .mec-book-field-name.mec-reg-mandatory").filter(":visible").each(function(i)
|
170 |
{
|
171 |
var ticket_id = jQuery(this).data("ticket-id");
|
172 |
+
|
173 |
if(!jQuery("#mec_book_form'.$uniqueid.' input[name=\'book[tickets]["+ticket_id+"][name]\']").val())
|
174 |
{
|
175 |
valid = false;
|
177 |
}
|
178 |
else jQuery(this).removeClass("mec-red-notification");
|
179 |
});
|
180 |
+
|
181 |
jQuery("#mec_book_form'.$uniqueid.' .mec-book-ticket-container .mec-book-field-email.mec-reg-mandatory").filter(":visible").each(function(i)
|
182 |
{
|
183 |
var ticket_id = jQuery(this).data("ticket-id");
|
184 |
+
|
185 |
if(!jQuery("#mec_book_form'.$uniqueid.' input[name=\'book[tickets]["+ticket_id+"][email]\']").val())
|
186 |
{
|
187 |
valid = false;
|
189 |
}
|
190 |
else jQuery(this).removeClass("mec-red-notification");
|
191 |
});
|
192 |
+
|
193 |
jQuery("#mec_book_form'.$uniqueid.' .mec-book-ticket-container .mec-book-reg-field-checkbox.mec-reg-mandatory").filter(":visible").each(function(i)
|
194 |
{
|
195 |
var ticket_id = jQuery(this).data("ticket-id");
|
196 |
var field_id = jQuery(this).data("field-id");
|
197 |
+
|
198 |
if(!jQuery("#mec_book_form'.$uniqueid.' input[name=\'book[tickets]["+ticket_id+"][reg]["+field_id+"][]\']").is(":checked"))
|
199 |
{
|
200 |
valid = false;
|
202 |
}
|
203 |
else jQuery(this).removeClass("mec-red-notification");
|
204 |
});
|
205 |
+
|
206 |
jQuery("#mec_book_form'.$uniqueid.' .mec-book-ticket-container .mec-book-reg-field-radio.mec-reg-mandatory").filter(":visible").each(function(i)
|
207 |
{
|
208 |
var ticket_id = jQuery(this).data("ticket-id");
|
209 |
var field_id = jQuery(this).data("field-id");
|
210 |
+
|
211 |
if(!jQuery("#mec_book_form'.$uniqueid.' input[name=\'book[tickets]["+ticket_id+"][reg]["+field_id+"]\']:checked").val())
|
212 |
{
|
213 |
valid = false;
|
215 |
}
|
216 |
else jQuery(this).removeClass("mec-red-notification");
|
217 |
});
|
218 |
+
|
219 |
jQuery("#mec_book_form'.$uniqueid.' .mec-book-ticket-container .mec-book-reg-field-agreement.mec-reg-mandatory").filter(":visible").each(function(i)
|
220 |
{
|
221 |
var ticket_id = jQuery(this).data("ticket-id");
|
222 |
var field_id = jQuery(this).data("field-id");
|
223 |
+
|
224 |
if(!jQuery("#mec_book_form'.$uniqueid.' input[name=\'book[tickets]["+ticket_id+"][reg]["+field_id+"]\']:checked").val())
|
225 |
{
|
226 |
valid = false;
|
228 |
}
|
229 |
else jQuery(this).removeClass("mec-red-notification");
|
230 |
});
|
231 |
+
|
232 |
jQuery("#mec_book_form'.$uniqueid.' .mec-book-ticket-container .mec-book-reg-field-tel.mec-reg-mandatory, .mec-book-ticket-container .mec-book-reg-field-email.mec-reg-mandatory, .mec-book-ticket-container .mec-book-reg-field-text.mec-reg-mandatory").filter(":visible").each(function(i)
|
233 |
{
|
234 |
var ticket_id = jQuery(this).data("ticket-id");
|
235 |
var field_id = jQuery(this).data("field-id");
|
236 |
+
|
237 |
if(!jQuery("#mec_book_form'.$uniqueid.' input[name=\'book[tickets]["+ticket_id+"][reg]["+field_id+"]\']").val())
|
238 |
{
|
239 |
valid = false;
|
241 |
}
|
242 |
else jQuery(this).removeClass("mec-red-notification");
|
243 |
});
|
244 |
+
|
245 |
jQuery("#mec_book_form'.$uniqueid.' .mec-book-ticket-container .mec-book-reg-field-select.mec-reg-mandatory").filter(":visible").each(function(i)
|
246 |
{
|
247 |
var ticket_id = jQuery(this).data("ticket-id");
|
248 |
var field_id = jQuery(this).data("field-id");
|
249 |
+
|
250 |
if(!jQuery("#mec_book_form'.$uniqueid.' select[name=\'book[tickets]["+ticket_id+"][reg]["+field_id+"]\']").val())
|
251 |
{
|
252 |
valid = false;
|
254 |
}
|
255 |
else jQuery(this).removeClass("mec-red-notification");
|
256 |
});
|
257 |
+
|
258 |
jQuery("#mec_book_form'.$uniqueid.' .mec-book-ticket-container .mec-book-reg-field-textarea.mec-reg-mandatory").filter(":visible").each(function(i)
|
259 |
{
|
260 |
var ticket_id = jQuery(this).data("ticket-id");
|
261 |
var field_id = jQuery(this).data("field-id");
|
262 |
+
|
263 |
if(!jQuery("#mec_book_form'.$uniqueid.' textarea[name=\'book[tickets]["+ticket_id+"][reg]["+field_id+"]\']").val())
|
264 |
{
|
265 |
valid = false;
|
267 |
}
|
268 |
else jQuery(this).removeClass("mec-red-notification");
|
269 |
});
|
270 |
+
|
271 |
if(!valid) return false;
|
272 |
}
|
273 |
|
275 |
jQuery("#mec_book_form'.$uniqueid.' button[type=submit]").addClass("loading");
|
276 |
jQuery("#mec_book_form'.$uniqueid.' button[type=submit]").attr("disabled" , "true");
|
277 |
jQuery("#mec_booking_message'.$uniqueid.'").removeClass("mec-success mec-error").hide();
|
278 |
+
|
279 |
var fileToUpload = false;
|
280 |
+
|
281 |
var data = jQuery("#mec_book_form'.$uniqueid.'").serialize();
|
282 |
jQuery.ajax({
|
283 |
type: "POST",
|
292 |
// Remove the loading Class to the button
|
293 |
jQuery("#mec_book_form'.$uniqueid.' button[type=submit]").removeClass("loading");
|
294 |
jQuery("#mec_book_form'.$uniqueid.' button[type=submit]").removeAttr("disabled");
|
295 |
+
|
296 |
if(data.success)
|
297 |
{
|
298 |
jQuery("#mec_booking'.$uniqueid.'").html(data.output);
|
299 |
+
|
300 |
// Show Invoice Link
|
301 |
if(typeof data.data.invoice_link != "undefined" && data.data.invoice_link != "")
|
302 |
{
|
303 |
jQuery("#mec_booking'.$uniqueid.'").append("<a class=\"mec-invoice-download\" href=\""+data.data.invoice_link+"\">'.esc_js(__('Download Invoice', 'modern-events-calendar-lite')).'</a>");
|
304 |
}
|
305 |
+
|
306 |
// Redirect to thank you page
|
307 |
if(typeof data.data.redirect_to != "undefined" && data.data.redirect_to != "")
|
308 |
{
|
330 |
// Add loading Class to the button
|
331 |
jQuery("#mec_book_form_coupon'.$uniqueid.' button[type=submit]").addClass("loading");
|
332 |
jQuery("#mec_booking'.$uniqueid.' .mec-book-form-coupon .mec-coupon-message").removeClass("mec-success mec-error").hide();
|
333 |
+
|
334 |
var data = jQuery("#mec_book_form_coupon'.$uniqueid.'").serialize();
|
335 |
jQuery.ajax(
|
336 |
{
|
342 |
{
|
343 |
// Remove the loading Class to the button
|
344 |
jQuery("#mec_book_form_coupon'.$uniqueid.' button[type=submit]").removeClass("loading");
|
345 |
+
|
346 |
if(data.success)
|
347 |
{
|
348 |
// It converts to free booking because of applied coupon
|
351 |
jQuery("#mec_booking'.$uniqueid.' .mec-book-form-gateways").hide();
|
352 |
jQuery("#mec_book_form_free_booking'.$uniqueid.'").show();
|
353 |
}
|
354 |
+
|
355 |
jQuery("#mec_booking'.$uniqueid.' .mec-book-form-coupon .mec-coupon-message").addClass("mec-success").html(data.message).show();
|
356 |
+
|
357 |
jQuery("#mec_booking'.$uniqueid.' .mec-book-price-details .mec-book-price-detail-typediscount").remove();
|
358 |
jQuery("#mec_booking'.$uniqueid.' .mec-book-price-details").append(data.data.price_details);
|
359 |
+
|
360 |
jQuery("#mec_booking'.$uniqueid.' .mec-book-price-total").html(data.data.price);
|
361 |
jQuery("#mec_booking'.$uniqueid.' #mec_do_transaction_paypal_express_form"+data.data.transaction_id+" input[name=amount]").val(data.data.price_raw);
|
362 |
}
|
378 |
// Add loading Class to the button
|
379 |
jQuery("#mec_book_form_free_booking'.$uniqueid.' button[type=submit]").addClass("loading");
|
380 |
jQuery("#mec_booking_message'.$uniqueid.'").removeClass("mec-success mec-error").hide();
|
381 |
+
|
382 |
var data = jQuery("#mec_book_form_free_booking'.$uniqueid.'").serialize();
|
383 |
jQuery.ajax(
|
384 |
{
|
390 |
{
|
391 |
// Remove the loading Class to the button
|
392 |
jQuery("#mec_book_form_free_booking'.$uniqueid.' button[type=submit]").removeClass("loading");
|
393 |
+
|
394 |
if(data.success)
|
395 |
{
|
396 |
jQuery("#mec_booking'.$uniqueid.'").html(data.output);
|
397 |
+
|
398 |
// Show Invoice Link
|
399 |
if(typeof data.data.invoice_link != "undefined" && data.data.invoice_link != "")
|
400 |
{
|
401 |
jQuery("#mec_booking'.$uniqueid.'").append("<a class=\"mec-invoice-download\" href=\""+data.data.invoice_link+"\">'.esc_js(__('Download Invoice', 'modern-events-calendar-lite')).'</a>");
|
402 |
}
|
403 |
+
|
404 |
// Redirect to thank you page
|
405 |
if(typeof data.data.redirect_to != "undefined" && data.data.redirect_to != "")
|
406 |
{
|
425 |
var value = parseInt(jQuery(variation).val());
|
426 |
var max = parseInt(jQuery(variation).prop("max"));
|
427 |
var min = parseInt(jQuery(variation).prop("min"));
|
428 |
+
|
429 |
if(value > max) jQuery(variation).val(max);
|
430 |
if(value < min) jQuery(variation).val(min);
|
431 |
}
|
432 |
</script>';
|
433 |
|
434 |
+
$javascript = apply_filters('mec-javascript-code-of-booking-module', $javascript , $uniqueid);
|
435 |
// Include javascript code into the footer
|
436 |
if($this->is_ajax()) echo $javascript;
|
437 |
else $factory->params('footer', $javascript);
|
@@ -46,18 +46,19 @@ foreach($gateways as $gateway)
|
|
46 |
<div class="mec-coupon-message mec-util-hidden"></div>
|
47 |
</div>
|
48 |
<?php endif; ?>
|
|
|
49 |
<div class="mec-book-form-gateways">
|
50 |
<?php foreach($active_gateways as $gateway): ?>
|
51 |
<div class="mec-book-form-gateway-label">
|
52 |
<label>
|
53 |
<?php if(count($active_gateways) > 1): ?>
|
54 |
-
<input type="radio" name="book[gateway]" onchange="mec_gateway_selected(this.value);" value="<?php echo $gateway->id(); ?>" />
|
55 |
<?php endif; ?>
|
56 |
<?php echo $gateway->title(); ?>
|
57 |
</label>
|
58 |
</div>
|
59 |
<?php endforeach; ?>
|
60 |
-
|
61 |
<?php foreach($active_gateways as $gateway): ?>
|
62 |
<div class="mec-book-form-gateway-checkout <?php echo (count($active_gateways) == 1 ? '' : 'mec-util-hidden'); ?>" id="mec_book_form_gateway_checkout<?php echo $gateway->id(); ?>">
|
63 |
<?php echo $gateway->comment(); ?>
|
46 |
<div class="mec-coupon-message mec-util-hidden"></div>
|
47 |
</div>
|
48 |
<?php endif; ?>
|
49 |
+
<?php do_action('mec-booking-after-coupon-form', $transaction_id, $uniqueid); ?>
|
50 |
<div class="mec-book-form-gateways">
|
51 |
<?php foreach($active_gateways as $gateway): ?>
|
52 |
<div class="mec-book-form-gateway-label">
|
53 |
<label>
|
54 |
<?php if(count($active_gateways) > 1): ?>
|
55 |
+
<input type="radio" name="book[gateway]" onchange="mec_gateway_selected(this.value);" value="<?php echo $gateway->id(); ?>" />
|
56 |
<?php endif; ?>
|
57 |
<?php echo $gateway->title(); ?>
|
58 |
</label>
|
59 |
</div>
|
60 |
<?php endforeach; ?>
|
61 |
+
|
62 |
<?php foreach($active_gateways as $gateway): ?>
|
63 |
<div class="mec-book-form-gateway-checkout <?php echo (count($active_gateways) == 1 ? '' : 'mec-util-hidden'); ?>" id="mec_book_form_gateway_checkout<?php echo $gateway->id(); ?>">
|
64 |
<?php echo $gateway->comment(); ?>
|
@@ -17,17 +17,23 @@ $end_date = (isset($date['end']) and isset($date['end']['date'])) ? $date['end']
|
|
17 |
$s_time = '';
|
18 |
if(!empty($date))
|
19 |
{
|
20 |
-
$
|
|
|
|
|
|
|
21 |
$s_time .= sprintf("%02d", $date['start']['minutes']);
|
22 |
-
$s_time .= trim($date['start']['ampm']);
|
23 |
}
|
24 |
|
25 |
$e_time = '';
|
26 |
if(!empty($date))
|
27 |
{
|
28 |
-
$
|
|
|
|
|
|
|
29 |
$e_time .= sprintf("%02d", $date['end']['minutes']);
|
30 |
-
$e_time .= trim($date['end']['ampm']);
|
31 |
}
|
32 |
|
33 |
$start_time = date('D M j Y G:i:s', strtotime($start_date.' '.$s_time));
|
17 |
$s_time = '';
|
18 |
if(!empty($date))
|
19 |
{
|
20 |
+
$s_hour = $date['start']['hour'];
|
21 |
+
if(strtoupper($date['start']['ampm']) == 'AM' and $s_hour == '0') $s_hour = 12;
|
22 |
+
|
23 |
+
$s_time .= sprintf("%02d", $s_hour).':';
|
24 |
$s_time .= sprintf("%02d", $date['start']['minutes']);
|
25 |
+
$s_time .= ' '.trim($date['start']['ampm']);
|
26 |
}
|
27 |
|
28 |
$e_time = '';
|
29 |
if(!empty($date))
|
30 |
{
|
31 |
+
$e_hour = $date['end']['hour'];
|
32 |
+
if(strtoupper($date['end']['ampm']) == 'AM' and $e_hour == '0') $e_hour = 12;
|
33 |
+
|
34 |
+
$e_time .= sprintf("%02d", $e_hour).':';
|
35 |
$e_time .= sprintf("%02d", $date['end']['minutes']);
|
36 |
+
$e_time .= ' '.trim($date['end']['ampm']);
|
37 |
}
|
38 |
|
39 |
$start_time = date('D M j Y G:i:s', strtotime($start_date.' '.$s_time));
|
@@ -48,12 +48,32 @@ if(!$this->is_ajax()) $this->load_map_assets();
|
|
48 |
// Get Direction Status
|
49 |
$get_direction = (isset($settings['google_maps_get_direction_status']) and in_array($settings['google_maps_get_direction_status'], array(0,1,2))) ? $settings['google_maps_get_direction_status'] : 0;
|
50 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
51 |
// Initialize MEC Google Maps jQuery plugin
|
52 |
$javascript = '<script type="text/javascript">
|
53 |
var p'.$uniqueid.';
|
54 |
jQuery(document).ready(function()
|
55 |
{
|
56 |
-
p'.$uniqueid.' = jQuery("#
|
57 |
{
|
58 |
latitude: "'.$latitude.'",
|
59 |
longitude: "'.$longitude.'",
|
@@ -61,7 +81,8 @@ jQuery(document).ready(function()
|
|
61 |
zoom: '.(isset($settings['google_maps_zoomlevel']) ? $settings['google_maps_zoomlevel'] : 14).',
|
62 |
icon: "'.apply_filters('mec_marker_icon', $this->asset('img/m-04.png')).'",
|
63 |
styles: '.((isset($settings['google_maps_style']) and trim($settings['google_maps_style']) != '') ? $this->get_googlemap_style($settings['google_maps_style']) : "''").',
|
64 |
-
markers: '.json_encode($render->markers($
|
|
|
65 |
getDirection: '.$get_direction.',
|
66 |
directionOptions:
|
67 |
{
|
@@ -84,13 +105,18 @@ function mec_init_gmap'.$uniqueid.'()
|
|
84 |
p'.$uniqueid.'.init();
|
85 |
}
|
86 |
</script>';
|
|
|
|
|
|
|
|
|
87 |
if ( !function_exists('is_plugin_active')) include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
|
88 |
// Include javascript code into the footer
|
89 |
if($this->is_ajax()) echo $javascript;
|
90 |
elseif (is_plugin_active( 'mec-single-builder/mec-single-builder.php')) echo $javascript;
|
91 |
else $factory->params('footer', $javascript);
|
92 |
?>
|
93 |
-
<div class="mec-googlemap-details" id="
|
|
|
94 |
</div>
|
95 |
<?php if($get_direction): ?>
|
96 |
<div class="mec-get-direction">
|
48 |
// Get Direction Status
|
49 |
$get_direction = (isset($settings['google_maps_get_direction_status']) and in_array($settings['google_maps_get_direction_status'], array(0,1,2))) ? $settings['google_maps_get_direction_status'] : 0;
|
50 |
|
51 |
+
$additional_location_ids = get_post_meta( $event->ID, 'mec_additional_location_ids', true );
|
52 |
+
$event_locations = array_keys($event->data->locations);
|
53 |
+
|
54 |
+
$map_data = new stdClass;
|
55 |
+
$map_data->id = $uniqueid;
|
56 |
+
$map_data->atts = array(
|
57 |
+
'location_map_zoom'=>isset($settings['google_maps_zoomlevel']) ? $settings['google_maps_zoomlevel'] : 14,
|
58 |
+
'location_center_lat'=>null,
|
59 |
+
'location_center_long'=>null,
|
60 |
+
'use_orig_map' => true
|
61 |
+
);
|
62 |
+
$map_data->events = $this->get_rendered_events(array('post__in'=>array($event->ID)));
|
63 |
+
$map_data->render = $render;
|
64 |
+
$map_data->geolocation = '0';
|
65 |
+
$map_data->sf_status = null;
|
66 |
+
|
67 |
+
$current_event = [$map_data->events[$event->ID]];
|
68 |
+
$events = apply_filters( 'mec_location_load_additional', $current_event,$additional_location_ids,$event_locations);
|
69 |
+
$map_data->events = $events;
|
70 |
+
|
71 |
// Initialize MEC Google Maps jQuery plugin
|
72 |
$javascript = '<script type="text/javascript">
|
73 |
var p'.$uniqueid.';
|
74 |
jQuery(document).ready(function()
|
75 |
{
|
76 |
+
p'.$uniqueid.' = jQuery("#mec_map_canvas'.$uniqueid.'").mecGoogleMaps(
|
77 |
{
|
78 |
latitude: "'.$latitude.'",
|
79 |
longitude: "'.$longitude.'",
|
81 |
zoom: '.(isset($settings['google_maps_zoomlevel']) ? $settings['google_maps_zoomlevel'] : 14).',
|
82 |
icon: "'.apply_filters('mec_marker_icon', $this->asset('img/m-04.png')).'",
|
83 |
styles: '.((isset($settings['google_maps_style']) and trim($settings['google_maps_style']) != '') ? $this->get_googlemap_style($settings['google_maps_style']) : "''").',
|
84 |
+
markers: '.json_encode($render->markers($map_data->events)).',
|
85 |
+
clustering_images: "'.$this->asset('img/cluster1/m').'",
|
86 |
getDirection: '.$get_direction.',
|
87 |
directionOptions:
|
88 |
{
|
105 |
p'.$uniqueid.'.init();
|
106 |
}
|
107 |
</script>';
|
108 |
+
|
109 |
+
$javascript = apply_filters( 'mec_map_load_script',$javascript, $map_data,$settings );
|
110 |
+
|
111 |
+
|
112 |
if ( !function_exists('is_plugin_active')) include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
|
113 |
// Include javascript code into the footer
|
114 |
if($this->is_ajax()) echo $javascript;
|
115 |
elseif (is_plugin_active( 'mec-single-builder/mec-single-builder.php')) echo $javascript;
|
116 |
else $factory->params('footer', $javascript);
|
117 |
?>
|
118 |
+
<div class="mec-googlemap-details" id="mec_map_canvas<?php echo $uniqueid; ?>" style="height: 500px;">
|
119 |
+
<?php do_action( 'mec_map_inner_element_tools' ,$settings); ?>
|
120 |
</div>
|
121 |
<?php if($get_direction): ?>
|
122 |
<div class="mec-get-direction">
|
@@ -16,7 +16,8 @@ if(!$timezone) return;
|
|
16 |
|
17 |
// Date Formats
|
18 |
$date_format1 = (isset($settings['single_date_format1']) and trim($settings['single_date_format1'])) ? $settings['single_date_format1'] : 'M d Y';
|
19 |
-
|
|
|
20 |
$occurrence = isset($_GET['occurrence']) ? sanitize_text_field($_GET['occurrence']) : '';
|
21 |
$occurrence_end_date = trim($occurrence) ? $this->get_end_date_by_occurrence($event->data->ID, (isset($event->date['start']['date']) ? $event->date['start']['date'] : $occurrence)) : '';
|
22 |
|
@@ -43,8 +44,8 @@ $hide_end_time = isset($event->data->meta['mec_hide_end_time']) ? $event->data->
|
|
43 |
<ul>
|
44 |
<li><?php echo sprintf(__('Timezone: %s', 'modern-events-calendar-lite'), '<span>'.$timezone.'</span>'); ?></li>
|
45 |
<li><?php echo sprintf(__('Date: %s', 'modern-events-calendar-lite'), $this->date_label(array('date'=>date('Y-m-d', $user_start_time)), array('date'=>date('Y-m-d', $user_end_time)), $date_format1)); ?></li>
|
46 |
-
<?php if(!$hide_time): ?>
|
47 |
-
<li><?php echo sprintf(__('Time: %s', 'modern-events-calendar-lite'), '<span>'.($allday ? __('All
|
48 |
<?php endif; ?>
|
49 |
</ul>
|
50 |
</div>
|
16 |
|
17 |
// Date Formats
|
18 |
$date_format1 = (isset($settings['single_date_format1']) and trim($settings['single_date_format1'])) ? $settings['single_date_format1'] : 'M d Y';
|
19 |
+
$time_format = get_option('time_format', 'H:i');
|
20 |
+
|
21 |
$occurrence = isset($_GET['occurrence']) ? sanitize_text_field($_GET['occurrence']) : '';
|
22 |
$occurrence_end_date = trim($occurrence) ? $this->get_end_date_by_occurrence($event->data->ID, (isset($event->date['start']['date']) ? $event->date['start']['date'] : $occurrence)) : '';
|
23 |
|
44 |
<ul>
|
45 |
<li><?php echo sprintf(__('Timezone: %s', 'modern-events-calendar-lite'), '<span>'.$timezone.'</span>'); ?></li>
|
46 |
<li><?php echo sprintf(__('Date: %s', 'modern-events-calendar-lite'), $this->date_label(array('date'=>date('Y-m-d', $user_start_time)), array('date'=>date('Y-m-d', $user_end_time)), $date_format1)); ?></li>
|
47 |
+
<?php if(!$hide_time and trim($time_format)): ?>
|
48 |
+
<li><?php echo sprintf(__('Time: %s', 'modern-events-calendar-lite'), '<span>'.($allday ? __('All Day', 'modern-events-calendar-lite') : ($hide_end_time ? date($time_format, $user_start_time) : date($time_format, $user_start_time).' - '.date($time_format, $user_end_time))).'</span>'); ?></li>
|
49 |
<?php endif; ?>
|
50 |
</ul>
|
51 |
</div>
|
@@ -101,7 +101,7 @@ if($midnight_event) $next_date['end']['date'] = date('Y-m-d', strtotime('-1 Day'
|
|
101 |
<?php if($allday == '0' and isset($next->data->time) and trim($next->data->time['start'])): ?>
|
102 |
<dd><abbr class="mec-events-abbr"><?php echo $next->data->time['start']; ?><?php echo (trim($next->data->time['end']) ? ' - '.$next->data->time['end'] : ''); ?></abbr></dd>
|
103 |
<?php else: ?>
|
104 |
-
<dd><abbr class="mec-events-abbr"><?php _e('All
|
105 |
<?php endif; ?>
|
106 |
</li>
|
107 |
</ul>
|
101 |
<?php if($allday == '0' and isset($next->data->time) and trim($next->data->time['start'])): ?>
|
102 |
<dd><abbr class="mec-events-abbr"><?php echo $next->data->time['start']; ?><?php echo (trim($next->data->time['end']) ? ' - '.$next->data->time['end'] : ''); ?></abbr></dd>
|
103 |
<?php else: ?>
|
104 |
+
<dd><abbr class="mec-events-abbr"><?php _e('All Day', 'modern-events-calendar-lite'); ?></abbr></dd>
|
105 |
<?php endif; ?>
|
106 |
</li>
|
107 |
</ul>
|
@@ -92,12 +92,14 @@ if($this->style == 'colorful')
|
|
92 |
$data = new stdClass();
|
93 |
$data->ID = get_the_ID();
|
94 |
$data->data = $rendered;
|
95 |
-
update_option( 'mec_sd_time_option', $date, true);
|
96 |
$data->date = array
|
97 |
(
|
98 |
'start'=>array('date'=>$date),
|
99 |
'end'=>array('date'=>$this->main->get_end_date($date, $rendered))
|
100 |
);
|
|
|
|
|
|
|
101 |
echo ($rcount == 1) ? '<div class="row">' : '';
|
102 |
echo '<div class="col-md-'.$col.' col-sm-'.$col.'">';
|
103 |
echo '<article class="mec-event-article mec-sd-event-article'. get_the_ID().' mec-clear" itemscope>';
|
@@ -169,6 +171,8 @@ if(isset($map_eventss) and !empty($map_eventss))
|
|
169 |
});
|
170 |
</script>';
|
171 |
|
|
|
|
|
172 |
// Include javascript code into the page
|
173 |
if($this->main->is_ajax()) echo $map_javascript;
|
174 |
else $this->factory->params('footer', $map_javascript);
|
92 |
$data = new stdClass();
|
93 |
$data->ID = get_the_ID();
|
94 |
$data->data = $rendered;
|
|
|
95 |
$data->date = array
|
96 |
(
|
97 |
'start'=>array('date'=>$date),
|
98 |
'end'=>array('date'=>$this->main->get_end_date($date, $rendered))
|
99 |
);
|
100 |
+
update_option( 'mec_sd_time_option', $data->date['start']['date'], true);
|
101 |
+
update_option( 'mec_sdn_time_option', $data->date['end']['date'], true);
|
102 |
+
|
103 |
echo ($rcount == 1) ? '<div class="row">' : '';
|
104 |
echo '<div class="col-md-'.$col.' col-sm-'.$col.'">';
|
105 |
echo '<article class="mec-event-article mec-sd-event-article'. get_the_ID().' mec-clear" itemscope>';
|
171 |
});
|
172 |
</script>';
|
173 |
|
174 |
+
$map_javascript = apply_filters( 'mec_map_load_script',$map_javascript, $this,$settings );
|
175 |
+
|
176 |
// Include javascript code into the page
|
177 |
if($this->main->is_ajax()) echo $map_javascript;
|
178 |
else $this->factory->params('footer', $map_javascript);
|
@@ -117,7 +117,7 @@ if($this->style == 'colorful')
|
|
117 |
</div>
|
118 |
<div class="mec-event-content">
|
119 |
<?php $soldout = $this->main->get_flags($event->data->ID, $event_start_date); ?>
|
120 |
-
<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 $soldout.$event_color; ?></h4>
|
121 |
<p><?php echo (isset($location['address']) ? $location['address'] : ''); ?></p>
|
122 |
</div>
|
123 |
<div class="mec-event-footer">
|
@@ -148,7 +148,7 @@ if($this->style == 'colorful')
|
|
148 |
<?php endif; ?>
|
149 |
<?php do_action('mec_classic_before_title' , $event ); ?>
|
150 |
<?php $soldout = $this->main->get_flags($event->data->ID, $event_start_date); ?>
|
151 |
-
<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 $soldout.$event_color; ?></h4>
|
152 |
<?php if ( !empty($label_style) ) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?>
|
153 |
<p><?php echo trim((isset($location['name']) ? $location['name'] : '').', '.(isset($location['address']) ? $location['address'] : ''), ', '); ?></p>
|
154 |
<?php do_action('mec_classic_view_action' , $event); ?>
|
@@ -173,7 +173,7 @@ if($this->style == 'colorful')
|
|
173 |
<?php elseif($this->style == 'minimal'): ?>
|
174 |
<div class="mec-event-date mec-bg-color-hover mec-border-color-hover mec-color"><span><?php echo date_i18n($this->date_format_minimal_1, strtotime($event->date['start']['date'])); ?></span><?php echo date_i18n($this->date_format_minimal_2, strtotime($event->date['start']['date'])); ?></div>
|
175 |
<div class="event-detail-wrap">
|
176 |
-
<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 $this->main->get_flags($event->data->ID, $event_start_date).$event_color;
|
177 |
<div class="mec-event-detail"><?php echo (isset($location['name']) ? $location['name'] : ''); ?></div>
|
178 |
</div>
|
179 |
<?php elseif($this->style == 'clean'): ?>
|
@@ -193,7 +193,7 @@ if($this->style == 'colorful')
|
|
193 |
<?php do_action('display_mec_tai' , $event ); ?>
|
194 |
<?php do_action('mec_clean_custom_head' , $event , $event_color ); ?>
|
195 |
<?php $soldout = $this->main->get_flags($event->data->ID, $event_start_date); ?>
|
196 |
-
<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 $soldout.$event_color; ?></h4>
|
197 |
<p><?php echo (isset($location['address']) ? $location['address'] : ''); ?></p>
|
198 |
</div>
|
199 |
<div class="mec-event-footer mec-color">
|
@@ -220,7 +220,7 @@ if($this->style == 'colorful')
|
|
220 |
<div class="mec-event-image"><a data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->thumbnails['thumblist']; ?></a></div>
|
221 |
<div class="mec-event-detail-wrap">
|
222 |
<?php $soldout = $this->main->get_flags($event->data->ID, $event_start_date); ?>
|
223 |
-
<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 $soldout; ?></h4>
|
224 |
<?php if(isset($settings['multiple_day_show_method']) && $settings['multiple_day_show_method'] == 'all_days') : ?>
|
225 |
<div class="mec-event-month"><?php echo date_i18n($this->date_format_novel_1, strtotime($event->date['start']['date'])); ?></div>
|
226 |
<?php else: ?>
|
@@ -262,7 +262,7 @@ if($this->style == 'colorful')
|
|
262 |
<?php elseif($this->style == 'simple'): ?>
|
263 |
<?php do_action('mec_skin_grid_simple', $event); ?>
|
264 |
<div class="mec-event-date mec-color"><?php echo $this->main->dateify($event, $this->date_format_simple_1); ?></div>
|
265 |
-
<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 $this->main->get_flags($event->data->ID, $event_start_date).$event_color;
|
266 |
<div class="mec-event-detail"><?php echo (isset($location['name']) ? $location['name'] : ''); ?></div>
|
267 |
<?php endif;
|
268 |
echo '</article></div>';
|
@@ -277,13 +277,7 @@ if($this->style == 'colorful')
|
|
277 |
?>
|
278 |
<?php endforeach; ?>
|
279 |
<?php endforeach; ?>
|
280 |
-
<?php
|
281 |
-
if ( ($rcount <= count($map_events) + 1 ) && count($map_events) % 3 != 0 ) {
|
282 |
-
echo '</div>'; //close row
|
283 |
-
}
|
284 |
-
if (($grid_div & 1 ? 'odd' : 'even') =='even' && ($grid_limit % 2 ? 'odd' : 'even') == 'odd' ) {
|
285 |
-
echo '</div>';
|
286 |
-
} ?>
|
287 |
</div>
|
288 |
</div>
|
289 |
|
@@ -314,6 +308,8 @@ if(isset($map_events) and !empty($map_events))
|
|
314 |
});
|
315 |
</script>';
|
316 |
|
|
|
|
|
317 |
// Include javascript code into the page
|
318 |
if($this->main->is_ajax()) echo $map_javascript;
|
319 |
else $this->factory->params('footer', $map_javascript);
|
117 |
</div>
|
118 |
<div class="mec-event-content">
|
119 |
<?php $soldout = $this->main->get_flags($event->data->ID, $event_start_date); ?>
|
120 |
+
<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 $soldout.$event_color.$this->main->get_normal_labels($event); ?></h4>
|
121 |
<p><?php echo (isset($location['address']) ? $location['address'] : ''); ?></p>
|
122 |
</div>
|
123 |
<div class="mec-event-footer">
|
148 |
<?php endif; ?>
|
149 |
<?php do_action('mec_classic_before_title' , $event ); ?>
|
150 |
<?php $soldout = $this->main->get_flags($event->data->ID, $event_start_date); ?>
|
151 |
+
<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 $soldout.$event_color.$this->main->get_normal_labels($event); ?></h4>
|
152 |
<?php if ( !empty($label_style) ) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?>
|
153 |
<p><?php echo trim((isset($location['name']) ? $location['name'] : '').', '.(isset($location['address']) ? $location['address'] : ''), ', '); ?></p>
|
154 |
<?php do_action('mec_classic_view_action' , $event); ?>
|
173 |
<?php elseif($this->style == 'minimal'): ?>
|
174 |
<div class="mec-event-date mec-bg-color-hover mec-border-color-hover mec-color"><span><?php echo date_i18n($this->date_format_minimal_1, strtotime($event->date['start']['date'])); ?></span><?php echo date_i18n($this->date_format_minimal_2, strtotime($event->date['start']['date'])); ?></div>
|
175 |
<div class="event-detail-wrap">
|
176 |
+
<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 $this->main->get_flags($event->data->ID, $event_start_date).$event_color; if ( !empty($label_style) ) echo '<span class="mec-fc-style">'.$label_style.'</span>'; echo $this->main->get_normal_labels($event); ?></h4>
|
177 |
<div class="mec-event-detail"><?php echo (isset($location['name']) ? $location['name'] : ''); ?></div>
|
178 |
</div>
|
179 |
<?php elseif($this->style == 'clean'): ?>
|
193 |
<?php do_action('display_mec_tai' , $event ); ?>
|
194 |
<?php do_action('mec_clean_custom_head' , $event , $event_color ); ?>
|
195 |
<?php $soldout = $this->main->get_flags($event->data->ID, $event_start_date); ?>
|
196 |
+
<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 $soldout.$event_color.$this->main->get_normal_labels($event); ?></h4>
|
197 |
<p><?php echo (isset($location['address']) ? $location['address'] : ''); ?></p>
|
198 |
</div>
|
199 |
<div class="mec-event-footer mec-color">
|
220 |
<div class="mec-event-image"><a data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->thumbnails['thumblist']; ?></a></div>
|
221 |
<div class="mec-event-detail-wrap">
|
222 |
<?php $soldout = $this->main->get_flags($event->data->ID, $event_start_date); ?>
|
223 |
+
<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 $soldout.$this->main->get_normal_labels($event); ?></h4>
|
224 |
<?php if(isset($settings['multiple_day_show_method']) && $settings['multiple_day_show_method'] == 'all_days') : ?>
|
225 |
<div class="mec-event-month"><?php echo date_i18n($this->date_format_novel_1, strtotime($event->date['start']['date'])); ?></div>
|
226 |
<?php else: ?>
|
262 |
<?php elseif($this->style == 'simple'): ?>
|
263 |
<?php do_action('mec_skin_grid_simple', $event); ?>
|
264 |
<div class="mec-event-date mec-color"><?php echo $this->main->dateify($event, $this->date_format_simple_1); ?></div>
|
265 |
+
<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 $this->main->get_flags($event->data->ID, $event_start_date).$event_color; if ( !empty($label_style) ) echo '<span class="mec-fc-style">'.$label_style.'</span>'; echo $this->main->get_normal_labels($event); ?></h4>
|
266 |
<div class="mec-event-detail"><?php echo (isset($location['name']) ? $location['name'] : ''); ?></div>
|
267 |
<?php endif;
|
268 |
echo '</article></div>';
|
277 |
?>
|
278 |
<?php endforeach; ?>
|
279 |
<?php endforeach; ?>
|
280 |
+
<?php if(($grid_limit % $count) != 0) echo '</div>'; ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
281 |
</div>
|
282 |
</div>
|
283 |
|
308 |
});
|
309 |
</script>';
|
310 |
|
311 |
+
$map_javascript = apply_filters( 'mec_map_load_script',$map_javascript, $this,$settings );
|
312 |
+
|
313 |
// Include javascript code into the page
|
314 |
if($this->main->is_ajax()) echo $map_javascript;
|
315 |
else $this->factory->params('footer', $map_javascript);
|
@@ -99,7 +99,7 @@ $map_events = array();
|
|
99 |
<div class="col-md-6 col-sm-6">
|
100 |
<?php do_action('list_std_title_hook', $event); ?>
|
101 |
<?php $soldout = $this->main->get_flags($event->data->ID, $event_start_date); ?>
|
102 |
-
<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 $soldout.$event_color; if (!empty($label_style)) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?></h4>
|
103 |
<div class="mec-event-detail"><?php echo (isset($location['name']) ? $location['name'] : '') . (isset($location['address']) ? ' | '.$location['address'] : ''); ?>
|
104 |
<?php if($this->include_events_times) echo $this->main->mec_include_time_labels($start_time, $end_time); ?>
|
105 |
</div>
|
@@ -117,13 +117,13 @@ $map_events = array();
|
|
117 |
<div class="mec-event-date mec-color"><i class="mec-sl-calendar"></i> <?php echo $this->main->dateify($event, $this->date_format_classic_1); ?></div>
|
118 |
<div class="mec-event-time mec-color"><?php if($this->include_events_times) {echo '<i class="mec-sl-clock"></i>'; echo $this->main->mec_include_time_labels($start_time, $end_time); } ?></div>
|
119 |
<?php endif; ?>
|
120 |
-
<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 $this->main->get_flags($event->data->ID, $event_start_date).$event_color; ?></h4>
|
121 |
<?php if(isset($location['name'])): ?><div class="mec-event-detail"><i class="mec-sl-map-marker"></i> <?php echo (isset($location['name']) ? $location['name'] : ''); ?></div><?php endif; ?>
|
122 |
<?php elseif($this->style == 'minimal'): ?>
|
123 |
<div class="col-md-9 col-sm-9">
|
124 |
<div class="mec-event-date mec-bg-color"><span><?php echo date_i18n($this->date_format_minimal_1, strtotime($event->date['start']['date'])); ?></span><?php echo date_i18n($this->date_format_minimal_2, strtotime($event->date['start']['date'])); ?></div>
|
125 |
<?php if($this->include_events_times) echo $this->main->mec_include_time_labels($start_time, $end_time); ?>
|
126 |
-
<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 $this->main->get_flags($event->data->ID, $event_start_date).$event_color; ?></h4>
|
127 |
<div class="mec-event-detail"><?php echo date_i18n($this->date_format_minimal_3, strtotime($event->date['start']['date'])); ?><?php echo (isset($location['name']) ? ', ' . $location['name'] : ''); ?></div>
|
128 |
</div>
|
129 |
<div class="col-md-3 col-sm-3 btn-wrapper"><?php do_action('before_mec_list_minimal_button',$event); ?><a class="mec-detail-button" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $this->main->m('event_detail', __('EVENT DETAIL', 'modern-events-calendar-lite')); ?></a></div>
|
@@ -147,7 +147,7 @@ $map_events = array();
|
|
147 |
<div class="col-md-6 mec-col-table-c mec-event-content-wrap">
|
148 |
<div class="mec-event-content">
|
149 |
<?php $soldout = $this->main->get_flags($event->data->ID, $event_start_date); ?>
|
150 |
-
<h3 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 $soldout.$event_color; ?></h3>
|
151 |
<div class="mec-event-description"><?php echo $excerpt.(trim($excerpt) ? ' ...' : ''); ?></div>
|
152 |
</div>
|
153 |
</div>
|
@@ -215,7 +215,7 @@ $map_events = array();
|
|
215 |
<?php echo $this->main->mec_include_time_labels($start_time, $end_time); ?>
|
216 |
</div>
|
217 |
<h3 class="mec-toggle-title"><?php echo $event->data->title; ?><?php echo $this->main->get_flags($event->data->ID, $event_start_date).$event_color; ?></h3>
|
218 |
-
<?php if (!empty($label_style)) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?><i class="mec-sl-arrow-down"></i>
|
219 |
</div>
|
220 |
<div class="mec-content-toggle" aria-hidden="true" style="display: none;">
|
221 |
<div class="mec-toggle-content">
|
@@ -258,6 +258,8 @@ if(isset($map_events) and !empty($map_events))
|
|
258 |
});
|
259 |
</script>';
|
260 |
|
|
|
|
|
261 |
// Include javascript code into the page
|
262 |
if($this->main->is_ajax()) echo $map_javascript;
|
263 |
else $this->factory->params('footer', $map_javascript);
|
99 |
<div class="col-md-6 col-sm-6">
|
100 |
<?php do_action('list_std_title_hook', $event); ?>
|
101 |
<?php $soldout = $this->main->get_flags($event->data->ID, $event_start_date); ?>
|
102 |
+
<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 $soldout.$event_color; if (!empty($label_style)) echo '<span class="mec-fc-style">'.$label_style.'</span>'; echo $this->main->get_normal_labels($event); ?></h4>
|
103 |
<div class="mec-event-detail"><?php echo (isset($location['name']) ? $location['name'] : '') . (isset($location['address']) ? ' | '.$location['address'] : ''); ?>
|
104 |
<?php if($this->include_events_times) echo $this->main->mec_include_time_labels($start_time, $end_time); ?>
|
105 |
</div>
|
117 |
<div class="mec-event-date mec-color"><i class="mec-sl-calendar"></i> <?php echo $this->main->dateify($event, $this->date_format_classic_1); ?></div>
|
118 |
<div class="mec-event-time mec-color"><?php if($this->include_events_times) {echo '<i class="mec-sl-clock"></i>'; echo $this->main->mec_include_time_labels($start_time, $end_time); } ?></div>
|
119 |
<?php endif; ?>
|
120 |
+
<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 $this->main->get_flags($event->data->ID, $event_start_date).$event_color.$this->main->get_normal_labels($event); ?></h4>
|
121 |
<?php if(isset($location['name'])): ?><div class="mec-event-detail"><i class="mec-sl-map-marker"></i> <?php echo (isset($location['name']) ? $location['name'] : ''); ?></div><?php endif; ?>
|
122 |
<?php elseif($this->style == 'minimal'): ?>
|
123 |
<div class="col-md-9 col-sm-9">
|
124 |
<div class="mec-event-date mec-bg-color"><span><?php echo date_i18n($this->date_format_minimal_1, strtotime($event->date['start']['date'])); ?></span><?php echo date_i18n($this->date_format_minimal_2, strtotime($event->date['start']['date'])); ?></div>
|
125 |
<?php if($this->include_events_times) echo $this->main->mec_include_time_labels($start_time, $end_time); ?>
|
126 |
+
<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 $this->main->get_flags($event->data->ID, $event_start_date).$event_color.$this->main->get_normal_labels($event); ?></h4>
|
127 |
<div class="mec-event-detail"><?php echo date_i18n($this->date_format_minimal_3, strtotime($event->date['start']['date'])); ?><?php echo (isset($location['name']) ? ', ' . $location['name'] : ''); ?></div>
|
128 |
</div>
|
129 |
<div class="col-md-3 col-sm-3 btn-wrapper"><?php do_action('before_mec_list_minimal_button',$event); ?><a class="mec-detail-button" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $this->main->m('event_detail', __('EVENT DETAIL', 'modern-events-calendar-lite')); ?></a></div>
|
147 |
<div class="col-md-6 mec-col-table-c mec-event-content-wrap">
|
148 |
<div class="mec-event-content">
|
149 |
<?php $soldout = $this->main->get_flags($event->data->ID, $event_start_date); ?>
|
150 |
+
<h3 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 $soldout.$event_color.$this->main->get_normal_labels($event); ?></h3>
|
151 |
<div class="mec-event-description"><?php echo $excerpt.(trim($excerpt) ? ' ...' : ''); ?></div>
|
152 |
</div>
|
153 |
</div>
|
215 |
<?php echo $this->main->mec_include_time_labels($start_time, $end_time); ?>
|
216 |
</div>
|
217 |
<h3 class="mec-toggle-title"><?php echo $event->data->title; ?><?php echo $this->main->get_flags($event->data->ID, $event_start_date).$event_color; ?></h3>
|
218 |
+
<?php if (!empty($label_style)) echo '<span class="mec-fc-style">'.$label_style.'</span>'; echo $this->main->get_normal_labels($event); ?><i class="mec-sl-arrow-down"></i>
|
219 |
</div>
|
220 |
<div class="mec-content-toggle" aria-hidden="true" style="display: none;">
|
221 |
<div class="mec-toggle-content">
|
258 |
});
|
259 |
</script>';
|
260 |
|
261 |
+
$map_javascript = apply_filters( 'mec_map_load_script',$map_javascript, $this,$settings );
|
262 |
+
|
263 |
// Include javascript code into the page
|
264 |
if($this->main->is_ajax()) echo $map_javascript;
|
265 |
else $this->factory->params('footer', $map_javascript);
|
@@ -4,6 +4,8 @@ defined('MECEXEC') or die();
|
|
4 |
|
5 |
// MEC Settings
|
6 |
$settings = $this->main->get_settings();
|
|
|
|
|
7 |
|
8 |
// Return the data if called by AJAX
|
9 |
if(isset($this->atts['return_items']) and $this->atts['return_items'])
|
@@ -12,22 +14,23 @@ if(isset($this->atts['return_items']) and $this->atts['return_items'])
|
|
12 |
exit;
|
13 |
}
|
14 |
|
|
|
15 |
if(count($this->events))
|
16 |
{
|
17 |
// Include Map Assets such as JS and CSS libraries
|
18 |
-
$this->main->load_map_assets();
|
19 |
|
20 |
$javascript = '<script type="text/javascript">
|
21 |
jQuery(document).ready(function()
|
22 |
{
|
23 |
-
jQuery("#
|
24 |
{
|
25 |
id: "'.$this->id.'",
|
26 |
atts: "'.http_build_query(array('atts'=>$this->atts), '', '&').'",
|
27 |
zoom: '.(isset($settings['google_maps_zoomlevel']) ? $settings['google_maps_zoomlevel'] : 14).',
|
28 |
icon: "'.apply_filters('mec_marker_icon', $this->main->asset('img/m-04.png')).'",
|
29 |
styles: '.((isset($settings['google_maps_style']) and trim($settings['google_maps_style']) != '') ? $this->main->get_googlemap_style($settings['google_maps_style']) : "''").',
|
30 |
-
markers: '.json_encode($
|
31 |
HTML5geolocation: '.$this->geolocation.',
|
32 |
clustering_images: "'.$this->main->asset('img/cluster1/m').'",
|
33 |
getDirection: 0,
|
@@ -40,6 +43,8 @@ if(count($this->events))
|
|
40 |
});
|
41 |
</script>';
|
42 |
|
|
|
|
|
43 |
// Include javascript code into the page
|
44 |
if($this->main->is_ajax()) echo $javascript;
|
45 |
else $this->factory->params('footer', $javascript);
|
@@ -47,15 +52,39 @@ if(count($this->events))
|
|
47 |
do_action('mec_start_skin' , $this->id);
|
48 |
do_action('mec_map_skin_head');
|
49 |
?>
|
|
|
50 |
<div class="mec-wrap mec-skin-map-container <?php echo $this->html_class; ?>" id="mec_skin_<?php echo $this->id; ?>">
|
51 |
|
52 |
<?php if($this->sf_status) echo $this->sf_search_form(); ?>
|
|
|
53 |
|
54 |
<?php if(count($this->events)): ?>
|
55 |
-
<div class="mec-googlemap-skin" id="
|
|
|
56 |
</div>
|
57 |
<?php else: ?>
|
58 |
<p class="mec-error"><?php _e('No events found!', 'modern-events-calendar-lite'); ?></p>
|
59 |
<?php endif; ?>
|
60 |
|
61 |
-
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
|
5 |
// MEC Settings
|
6 |
$settings = $this->main->get_settings();
|
7 |
+
$settings['view_mode'] = isset($this->atts['location_view_mode'])?$this->atts['location_view_mode']:'normal';
|
8 |
+
$settings['map'] = isset($settings['default_maps_view'])?$settings['default_maps_view']:'google';
|
9 |
|
10 |
// Return the data if called by AJAX
|
11 |
if(isset($this->atts['return_items']) and $this->atts['return_items'])
|
14 |
exit;
|
15 |
}
|
16 |
|
17 |
+
$events_data = $this->render->markers($this->events);
|
18 |
if(count($this->events))
|
19 |
{
|
20 |
// Include Map Assets such as JS and CSS libraries
|
21 |
+
$this->main->load_map_assets($settings);
|
22 |
|
23 |
$javascript = '<script type="text/javascript">
|
24 |
jQuery(document).ready(function()
|
25 |
{
|
26 |
+
jQuery("#mec_map_canvas'.$this->id.'").mecGoogleMaps(
|
27 |
{
|
28 |
id: "'.$this->id.'",
|
29 |
atts: "'.http_build_query(array('atts'=>$this->atts), '', '&').'",
|
30 |
zoom: '.(isset($settings['google_maps_zoomlevel']) ? $settings['google_maps_zoomlevel'] : 14).',
|
31 |
icon: "'.apply_filters('mec_marker_icon', $this->main->asset('img/m-04.png')).'",
|
32 |
styles: '.((isset($settings['google_maps_style']) and trim($settings['google_maps_style']) != '') ? $this->main->get_googlemap_style($settings['google_maps_style']) : "''").',
|
33 |
+
markers: '.json_encode($events_data).',
|
34 |
HTML5geolocation: '.$this->geolocation.',
|
35 |
clustering_images: "'.$this->main->asset('img/cluster1/m').'",
|
36 |
getDirection: 0,
|
43 |
});
|
44 |
</script>';
|
45 |
|
46 |
+
$javascript = apply_filters( 'mec_map_load_script',$javascript, $this,$settings );
|
47 |
+
|
48 |
// Include javascript code into the page
|
49 |
if($this->main->is_ajax()) echo $javascript;
|
50 |
else $this->factory->params('footer', $javascript);
|
52 |
do_action('mec_start_skin' , $this->id);
|
53 |
do_action('mec_map_skin_head');
|
54 |
?>
|
55 |
+
<?php if($settings['view_mode'] == 'normal') : ?>
|
56 |
<div class="mec-wrap mec-skin-map-container <?php echo $this->html_class; ?>" id="mec_skin_<?php echo $this->id; ?>">
|
57 |
|
58 |
<?php if($this->sf_status) echo $this->sf_search_form(); ?>
|
59 |
+
<?php do_action('mec_map_skin_before_form',$settings); ?>
|
60 |
|
61 |
<?php if(count($this->events)): ?>
|
62 |
+
<div class="mec-googlemap-skin" id="mec_map_canvas<?php echo $this->id; ?>" style="height: 500px;">
|
63 |
+
<?php do_action( 'mec_map_inner_element_tools' ,$settings); ?>
|
64 |
</div>
|
65 |
<?php else: ?>
|
66 |
<p class="mec-error"><?php _e('No events found!', 'modern-events-calendar-lite'); ?></p>
|
67 |
<?php endif; ?>
|
68 |
|
69 |
+
</div>
|
70 |
+
<?php else: ?>
|
71 |
+
<div class="container">
|
72 |
+
<div class="row">
|
73 |
+
<div class="col-sm-3">
|
74 |
+
<div class="mec-wrap mec-skin-map-container <?php echo $this->html_class; ?>" id="mec_skin_<?php echo $this->id; ?>">
|
75 |
+
<?php if($this->sf_status) echo $this->sf_search_form(); ?>
|
76 |
+
</div>
|
77 |
+
</div>
|
78 |
+
<div class="col-sm-3" id="mec-map-skin-side-<?php echo $this->id; ?>"></div>
|
79 |
+
<div class="col-sm">
|
80 |
+
<?php if(count($this->events)): ?>
|
81 |
+
<div class="mec-googlemap-skin" id="mec_map_canvas<?php echo $this->id; ?>" style="height: 500px;">
|
82 |
+
<?php do_action( 'mec_map_inner_element_tools' ,$settings); ?>
|
83 |
+
</div>
|
84 |
+
<?php else: ?>
|
85 |
+
<p class="mec-error"><?php _e('No events found!', 'modern-events-calendar-lite'); ?></p>
|
86 |
+
<?php endif; ?>
|
87 |
+
</div>
|
88 |
+
</div>
|
89 |
+
</div>
|
90 |
+
<?php endif; ?>
|
@@ -157,7 +157,7 @@ class MEC_skin_single extends MEC_skins
|
|
157 |
$end_hour = get_post_meta( get_the_ID(), 'mec_end_time_hour', true);
|
158 |
$end_min = (get_post_meta( get_the_ID(), 'mec_end_time_minutes', true) < '10') ? '0' . get_post_meta( get_the_ID(), 'mec_end_time_minutes', true) : get_post_meta( get_the_ID(), 'mec_end_time_minutes', true);
|
159 |
$end_ampm = get_post_meta( get_the_ID(), 'mec_end_time_ampm', true);
|
160 |
-
$time = ( get_post_meta( get_the_ID(), 'mec_allday', true) == '1' ) ? __('All
|
161 |
?>
|
162 |
<div class="row mec-related-events-wrap">
|
163 |
<h3 class="mec-rec-events-title"><?php echo __('Related Events' ,'modern-events-calendar-lite'); ?></h3>
|
@@ -750,7 +750,7 @@ class MEC_skin_single extends MEC_skins
|
|
750 |
<?php if ($allday == '0' and isset($event->data->time) and trim($event->data->time['start'])) : ?>
|
751 |
<dd><abbr class="mec-events-abbr"><?php echo $event->data->time['start']; ?><?php echo (trim($event->data->time['end']) ? ' - ' . $event->data->time['end'] : ''); ?></abbr></dd>
|
752 |
<?php else : ?>
|
753 |
-
<dd><abbr class="mec-events-abbr"><?php _e('All
|
754 |
<?php endif; ?>
|
755 |
</div>
|
756 |
<?php
|
@@ -891,7 +891,13 @@ class MEC_skin_single extends MEC_skins
|
|
891 |
<h6><?php _e('Website', 'modern-events-calendar-lite'); ?></h6>
|
892 |
<span><a href="<?php echo (strpos($organizer['url'], 'http') === false ? 'http://'.$organizer['url'] : $organizer['url']); ?>" class="mec-color-hover" target="_blank"><?php echo $organizer['url']; ?></a></span>
|
893 |
</dd>
|
894 |
-
<?php endif;
|
|
|
|
|
|
|
|
|
|
|
|
|
895 |
</div>
|
896 |
<?php endforeach; ?>
|
897 |
</div>
|
157 |
$end_hour = get_post_meta( get_the_ID(), 'mec_end_time_hour', true);
|
158 |
$end_min = (get_post_meta( get_the_ID(), 'mec_end_time_minutes', true) < '10') ? '0' . get_post_meta( get_the_ID(), 'mec_end_time_minutes', true) : get_post_meta( get_the_ID(), 'mec_end_time_minutes', true);
|
159 |
$end_ampm = get_post_meta( get_the_ID(), 'mec_end_time_ampm', true);
|
160 |
+
$time = ( get_post_meta( get_the_ID(), 'mec_allday', true) == '1' ) ? __('All Day' , 'modern-events-calendar-lite') : $start_hour . ':' . $start_min . ' ' . $start_ampm . ' - ' . $end_hour . ':' . $end_min . ' ' . $end_ampm;
|
161 |
?>
|
162 |
<div class="row mec-related-events-wrap">
|
163 |
<h3 class="mec-rec-events-title"><?php echo __('Related Events' ,'modern-events-calendar-lite'); ?></h3>
|
750 |
<?php if ($allday == '0' and isset($event->data->time) and trim($event->data->time['start'])) : ?>
|
751 |
<dd><abbr class="mec-events-abbr"><?php echo $event->data->time['start']; ?><?php echo (trim($event->data->time['end']) ? ' - ' . $event->data->time['end'] : ''); ?></abbr></dd>
|
752 |
<?php else : ?>
|
753 |
+
<dd><abbr class="mec-events-abbr"><?php _e('All Day', 'mec-single-builder'); ?></abbr></dd>
|
754 |
<?php endif; ?>
|
755 |
</div>
|
756 |
<?php
|
891 |
<h6><?php _e('Website', 'modern-events-calendar-lite'); ?></h6>
|
892 |
<span><a href="<?php echo (strpos($organizer['url'], 'http') === false ? 'http://'.$organizer['url'] : $organizer['url']); ?>" class="mec-color-hover" target="_blank"><?php echo $organizer['url']; ?></a></span>
|
893 |
</dd>
|
894 |
+
<?php endif;
|
895 |
+
$organizer_description_setting = isset( $this->settings['addintional_organizers_description'] ) ? $this->settings['addintional_organizers_description'] : ''; $organizer_terms = get_the_terms($event->data, 'mec_organizer'); if($organizer_description_setting == '1'):
|
896 |
+
foreach($organizer_terms as $organizer_term) { if ($organizer_term->term_id == $organizer['id'] ) { if(isset($organizer_term->description) && !empty($organizer_term->description)): ?>
|
897 |
+
<dd class="mec-organizer-description">
|
898 |
+
<p><?php echo $organizer_term->description;?></p>
|
899 |
+
</dd>
|
900 |
+
<?php endif; } } endif; ?>
|
901 |
</div>
|
902 |
<?php endforeach; ?>
|
903 |
</div>
|
@@ -105,7 +105,7 @@ $bookings_limit_for_users = isset($booking_options['bookings_limit_for_users'])
|
|
105 |
<?php if($allday == '0' and isset($event->data->time) and trim($event->data->time['start'])): ?>
|
106 |
<dd><abbr class="mec-events-abbr"><?php echo $event->data->time['start']; ?><?php echo (trim($event->data->time['end']) ? ' - '.$event->data->time['end'] : ''); ?></abbr></dd>
|
107 |
<?php else: ?>
|
108 |
-
<dd><abbr class="mec-events-abbr"><?php _e('All
|
109 |
<?php endif; ?>
|
110 |
</div>
|
111 |
<?php
|
@@ -242,7 +242,12 @@ $bookings_limit_for_users = isset($booking_options['bookings_limit_for_users'])
|
|
242 |
<span><a href="<?php echo (strpos($organizer['url'], 'http') === false ? 'http://'.$organizer['url'] : $organizer['url']); ?>" class="mec-color-hover" target="_blank"><?php echo $organizer['url']; ?></a></span>
|
243 |
<?php do_action( 'mec_single_default_organizer', $organizer ); ?>
|
244 |
</dd>
|
245 |
-
<?php endif;
|
|
|
|
|
|
|
|
|
|
|
246 |
</div>
|
247 |
<?php
|
248 |
$this->show_other_organizers($event); // Show Additional Organizers
|
@@ -323,7 +328,7 @@ $bookings_limit_for_users = isset($booking_options['bookings_limit_for_users'])
|
|
323 |
<?php if($allday == '0' and isset($event->data->time) and trim($event->data->time['start'])): ?>
|
324 |
<dd><abbr class="mec-events-abbr"><?php echo $event->data->time['start']; ?><?php echo (trim($event->data->time['end']) ? ' - '.$event->data->time['end'] : ''); ?></abbr></dd>
|
325 |
<?php else: ?>
|
326 |
-
<dd><abbr class="mec-events-abbr"><?php _e('All
|
327 |
<?php endif; ?>
|
328 |
</div>
|
329 |
<?php
|
@@ -460,7 +465,12 @@ $bookings_limit_for_users = isset($booking_options['bookings_limit_for_users'])
|
|
460 |
<span><a href="<?php echo (strpos($organizer['url'], 'http') === false ? 'http://'.$organizer['url'] : $organizer['url']); ?>" class="mec-color-hover" target="_blank"><?php echo $organizer['url']; ?></a></span>
|
461 |
<?php do_action( 'mec_single_default_organizer', $organizer ); ?>
|
462 |
</dd>
|
463 |
-
<?php endif;
|
|
|
|
|
|
|
|
|
|
|
464 |
</div>
|
465 |
<?php
|
466 |
$this->show_other_organizers($event); // Show Additional Organizers
|
105 |
<?php if($allday == '0' and isset($event->data->time) and trim($event->data->time['start'])): ?>
|
106 |
<dd><abbr class="mec-events-abbr"><?php echo $event->data->time['start']; ?><?php echo (trim($event->data->time['end']) ? ' - '.$event->data->time['end'] : ''); ?></abbr></dd>
|
107 |
<?php else: ?>
|
108 |
+
<dd><abbr class="mec-events-abbr"><?php _e('All Day', 'modern-events-calendar-lite'); ?></abbr></dd>
|
109 |
<?php endif; ?>
|
110 |
</div>
|
111 |
<?php
|
242 |
<span><a href="<?php echo (strpos($organizer['url'], 'http') === false ? 'http://'.$organizer['url'] : $organizer['url']); ?>" class="mec-color-hover" target="_blank"><?php echo $organizer['url']; ?></a></span>
|
243 |
<?php do_action( 'mec_single_default_organizer', $organizer ); ?>
|
244 |
</dd>
|
245 |
+
<?php endif;
|
246 |
+
$organizer_description_setting = isset( $settings['organizer_description'] ) ? $settings['organizer_description'] : ''; $organizer_terms = get_the_terms($event->data, 'mec_organizer'); if($organizer_description_setting == '1'): foreach($organizer_terms as $organizer_term) { if ($organizer_term->term_id == $organizer['id'] ) { if(isset($organizer_term->description) && !empty($organizer_term->description)): ?>
|
247 |
+
<dd class="mec-organizer-description">
|
248 |
+
<p><?php echo $organizer_term->description;?></p>
|
249 |
+
</dd>
|
250 |
+
<?php endif; } } endif; ?>
|
251 |
</div>
|
252 |
<?php
|
253 |
$this->show_other_organizers($event); // Show Additional Organizers
|
328 |
<?php if($allday == '0' and isset($event->data->time) and trim($event->data->time['start'])): ?>
|
329 |
<dd><abbr class="mec-events-abbr"><?php echo $event->data->time['start']; ?><?php echo (trim($event->data->time['end']) ? ' - '.$event->data->time['end'] : ''); ?></abbr></dd>
|
330 |
<?php else: ?>
|
331 |
+
<dd><abbr class="mec-events-abbr"><?php _e('All Day', 'modern-events-calendar-lite'); ?></abbr></dd>
|
332 |
<?php endif; ?>
|
333 |
</div>
|
334 |
<?php
|
465 |
<span><a href="<?php echo (strpos($organizer['url'], 'http') === false ? 'http://'.$organizer['url'] : $organizer['url']); ?>" class="mec-color-hover" target="_blank"><?php echo $organizer['url']; ?></a></span>
|
466 |
<?php do_action( 'mec_single_default_organizer', $organizer ); ?>
|
467 |
</dd>
|
468 |
+
<?php endif;
|
469 |
+
$organizer_description_setting = isset( $settings['organizer_description'] ) ? $settings['organizer_description'] : ''; $organizer_terms = get_the_terms($event->data, 'mec_organizer'); if($organizer_description_setting == '1'): foreach($organizer_terms as $organizer_term) { if ($organizer_term->term_id == $organizer['id'] ) { if(isset($organizer_term->description) && !empty($organizer_term->description)): ?>
|
470 |
+
<dd class="mec-organizer-description">
|
471 |
+
<p><?php echo $organizer_term->description;?></p>
|
472 |
+
</dd>
|
473 |
+
<?php endif; } } endif; ?>
|
474 |
</div>
|
475 |
<?php
|
476 |
$this->show_other_organizers($event); // Show Additional Organizers
|
@@ -40,7 +40,7 @@ if(!is_array($booking_options)) $booking_options = array();
|
|
40 |
<?php if($allday == '0' and isset($event->data->time) and trim($event->data->time['start'])): ?>
|
41 |
<dd><abbr class="mec-events-abbr"><?php echo $event->data->time['start']; ?><?php echo (trim($event->data->time['end']) ? ' - '.$event->data->time['end'] : ''); ?></abbr></dd>
|
42 |
<?php else: ?>
|
43 |
-
<dd><abbr class="mec-events-abbr"><?php _e('All
|
44 |
<?php endif; ?>
|
45 |
</div>
|
46 |
<?php
|
@@ -123,7 +123,12 @@ if(!is_array($booking_options)) $booking_options = array();
|
|
123 |
<h6><?php _e('Website', 'modern-events-calendar-lite'); ?></h6>
|
124 |
<span><a href="<?php echo (strpos($organizer['url'], 'http') === false ? 'http://'.$organizer['url'] : $organizer['url']); ?>" class="mec-color-hover" target="_blank"><?php echo $organizer['url']; ?></a></span>
|
125 |
</dd>
|
126 |
-
<?php endif;
|
|
|
|
|
|
|
|
|
|
|
127 |
</div>
|
128 |
<?php
|
129 |
$this->show_other_organizers($event); // Show Additional Organizers
|
40 |
<?php if($allday == '0' and isset($event->data->time) and trim($event->data->time['start'])): ?>
|
41 |
<dd><abbr class="mec-events-abbr"><?php echo $event->data->time['start']; ?><?php echo (trim($event->data->time['end']) ? ' - '.$event->data->time['end'] : ''); ?></abbr></dd>
|
42 |
<?php else: ?>
|
43 |
+
<dd><abbr class="mec-events-abbr"><?php _e('All Day', 'modern-events-calendar-lite'); ?></abbr></dd>
|
44 |
<?php endif; ?>
|
45 |
</div>
|
46 |
<?php
|
123 |
<h6><?php _e('Website', 'modern-events-calendar-lite'); ?></h6>
|
124 |
<span><a href="<?php echo (strpos($organizer['url'], 'http') === false ? 'http://'.$organizer['url'] : $organizer['url']); ?>" class="mec-color-hover" target="_blank"><?php echo $organizer['url']; ?></a></span>
|
125 |
</dd>
|
126 |
+
<?php endif;
|
127 |
+
$organizer_description_setting = isset( $settings['organizer_description'] ) ? $settings['organizer_description'] : ''; $organizer_terms = get_the_terms($event->data, 'mec_organizer'); if($organizer_description_setting == '1'): foreach($organizer_terms as $organizer_term) { if ($organizer_term->term_id == $organizer['id'] ) { if(isset($organizer_term->description) && !empty($organizer_term->description)): ?>
|
128 |
+
<dd class="mec-organizer-description">
|
129 |
+
<p><?php echo $organizer_term->description;?></p>
|
130 |
+
</dd>
|
131 |
+
<?php endif; } } endif; ?>
|
132 |
</div>
|
133 |
<?php
|
134 |
$this->show_other_organizers($event); // Show Additional Organizers
|
@@ -49,7 +49,12 @@ if(!is_array($booking_options)) $booking_options = array();
|
|
49 |
<h6><?php _e('Website', 'modern-events-calendar-lite'); ?></h6>
|
50 |
<span><a href="<?php echo (strpos($organizer['url'], 'http') === false ? 'http://'.$organizer['url'] : $organizer['url']); ?>" class="mec-color-hover" target="_blank"><?php echo $organizer['url']; ?></a></span>
|
51 |
</dd>
|
52 |
-
<?php endif;
|
|
|
|
|
|
|
|
|
|
|
53 |
</div>
|
54 |
<?php
|
55 |
$this->show_other_organizers($event); // Show Additional Organizers
|
49 |
<h6><?php _e('Website', 'modern-events-calendar-lite'); ?></h6>
|
50 |
<span><a href="<?php echo (strpos($organizer['url'], 'http') === false ? 'http://'.$organizer['url'] : $organizer['url']); ?>" class="mec-color-hover" target="_blank"><?php echo $organizer['url']; ?></a></span>
|
51 |
</dd>
|
52 |
+
<?php endif;
|
53 |
+
$organizer_description_setting = isset( $settings['organizer_description'] ) ? $settings['organizer_description'] : ''; $organizer_terms = get_the_terms($event->data, 'mec_organizer'); if($organizer_description_setting == '1'): foreach($organizer_terms as $organizer_term) { if ($organizer_term->term_id == $organizer['id'] ) { if(isset($organizer_term->description) && !empty($organizer_term->description)): ?>
|
54 |
+
<dd class="mec-organizer-description">
|
55 |
+
<p><?php echo $organizer_term->description;?></p>
|
56 |
+
</dd>
|
57 |
+
<?php endif; } } endif; ?>
|
58 |
</div>
|
59 |
<?php
|
60 |
$this->show_other_organizers($event); // Show Additional Organizers
|
@@ -58,7 +58,12 @@ if(!is_array($booking_options)) $booking_options = array();
|
|
58 |
<h6><?php _e('Website', 'modern-events-calendar-lite'); ?></h6>
|
59 |
<span><a href="<?php echo (strpos($organizer['url'], 'http') === false ? 'http://'.$organizer['url'] : $organizer['url']); ?>" class="mec-color-hover" target="_blank"><?php echo $organizer['url']; ?></a></span>
|
60 |
</dd>
|
61 |
-
<?php endif;
|
|
|
|
|
|
|
|
|
|
|
62 |
</div>
|
63 |
<?php
|
64 |
$this->show_other_organizers($event); // Show Additional Organizers
|
@@ -190,7 +195,7 @@ if(!is_array($booking_options)) $booking_options = array();
|
|
190 |
<?php if($allday == '0' and isset($event->data->time) and trim($event->data->time['start'])): ?>
|
191 |
<dd><abbr class="mec-events-abbr"><?php echo $event->data->time['start']; ?><?php echo (trim($event->data->time['end']) ? ' - '.$event->data->time['end'] : ''); ?></abbr></dd>
|
192 |
<?php else: ?>
|
193 |
-
<dd><abbr class="mec-events-abbr"><?php _e('All
|
194 |
<?php endif; ?>
|
195 |
</div>
|
196 |
<?php
|
58 |
<h6><?php _e('Website', 'modern-events-calendar-lite'); ?></h6>
|
59 |
<span><a href="<?php echo (strpos($organizer['url'], 'http') === false ? 'http://'.$organizer['url'] : $organizer['url']); ?>" class="mec-color-hover" target="_blank"><?php echo $organizer['url']; ?></a></span>
|
60 |
</dd>
|
61 |
+
<?php endif;
|
62 |
+
$organizer_description_setting = isset( $settings['organizer_description'] ) ? $settings['organizer_description'] : ''; $organizer_terms = get_the_terms($event->data, 'mec_organizer'); if($organizer_description_setting == '1'): foreach($organizer_terms as $organizer_term) { if ($organizer_term->term_id == $organizer['id'] ) { if(isset($organizer_term->description) && !empty($organizer_term->description)): ?>
|
63 |
+
<dd class="mec-organizer-description">
|
64 |
+
<p><?php echo $organizer_term->description;?></p>
|
65 |
+
</dd>
|
66 |
+
<?php endif; } } endif; ?>
|
67 |
</div>
|
68 |
<?php
|
69 |
$this->show_other_organizers($event); // Show Additional Organizers
|
195 |
<?php if($allday == '0' and isset($event->data->time) and trim($event->data->time['start'])): ?>
|
196 |
<dd><abbr class="mec-events-abbr"><?php echo $event->data->time['start']; ?><?php echo (trim($event->data->time['end']) ? ' - '.$event->data->time['end'] : ''); ?></abbr></dd>
|
197 |
<?php else: ?>
|
198 |
+
<dd><abbr class="mec-events-abbr"><?php _e('All Day', 'modern-events-calendar-lite'); ?></abbr></dd>
|
199 |
<?php endif; ?>
|
200 |
</div>
|
201 |
<?php
|
@@ -328,7 +328,7 @@
|
|
328 |
}
|
329 |
|
330 |
.mec-event-content p {
|
331 |
-
font-family:
|
332 |
font-weight: 300;
|
333 |
}
|
334 |
|
@@ -1253,7 +1253,6 @@ span.mec-event-title-soldout {
|
|
1253 |
.mec-event-list-modern .mec-event-date .event-da {
|
1254 |
margin-top: 9px;
|
1255 |
color: silver;
|
1256 |
-
font-family: Roboto,sans-serif;
|
1257 |
font-size: 28px;
|
1258 |
font-weight: 100;
|
1259 |
text-transform: uppercase;
|
@@ -2885,6 +2884,13 @@ button#mec-book-form-back-btn-step-3 {
|
|
2885 |
outline: 1px solid #ff3c3c;
|
2886 |
}
|
2887 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2888 |
@media only screen and (max-width: 479px) {
|
2889 |
|
2890 |
.mec-single-event .mec-events-meta-group-booking input[type=text],
|
@@ -4766,7 +4772,7 @@ address.mec-events-address {
|
|
4766 |
}
|
4767 |
|
4768 |
.mec-calendar.mec-event-container-simple .mec-calendar-side {
|
4769 |
-
min-width:
|
4770 |
}
|
4771 |
|
4772 |
.mec-event-container-simple .mec-monthly-tooltip h4 {
|
@@ -9176,6 +9182,10 @@ li.mec-no-event-found .mec-event-title {
|
|
9176 |
display: block;
|
9177 |
}
|
9178 |
|
|
|
|
|
|
|
|
|
9179 |
.mec-modal-wrap {
|
9180 |
max-width: 60vw;
|
9181 |
max-height: 90vh !important;
|
@@ -15136,8 +15146,8 @@ a.mec-timeline-readmore i {
|
|
15136 |
bottom: 0;
|
15137 |
top: 0;
|
15138 |
width: 100%;
|
15139 |
-
width: calc(100% + 1px);
|
15140 |
height: 100%;
|
|
|
15141 |
border-radius: 22px;
|
15142 |
z-index: 1;
|
15143 |
}
|
@@ -15303,5 +15313,10 @@ a.mec-timeline-readmore i {
|
|
15303 |
left: 200px;
|
15304 |
}
|
15305 |
|
|
|
|
|
|
|
|
|
|
|
15306 |
|
15307 |
/* --------------------- */
|
328 |
}
|
329 |
|
330 |
.mec-event-content p {
|
331 |
+
font-family: Roboto,sans-serif;
|
332 |
font-weight: 300;
|
333 |
}
|
334 |
|
1253 |
.mec-event-list-modern .mec-event-date .event-da {
|
1254 |
margin-top: 9px;
|
1255 |
color: silver;
|
|
|
1256 |
font-size: 28px;
|
1257 |
font-weight: 100;
|
1258 |
text-transform: uppercase;
|
2884 |
outline: 1px solid #ff3c3c;
|
2885 |
}
|
2886 |
|
2887 |
+
/* Modal booking - required forms */
|
2888 |
+
.lity .mec-book-ticket-container .mec-red-notification input,
|
2889 |
+
.lity .mec-book-ticket-container .mec-red-notification select,
|
2890 |
+
.lity .mec-book-ticket-container .mec-red-notification textarea {
|
2891 |
+
border: 1px solid #ff3c3c;
|
2892 |
+
}
|
2893 |
+
|
2894 |
@media only screen and (max-width: 479px) {
|
2895 |
|
2896 |
.mec-single-event .mec-events-meta-group-booking input[type=text],
|
4772 |
}
|
4773 |
|
4774 |
.mec-calendar.mec-event-container-simple .mec-calendar-side {
|
4775 |
+
min-width: 100%;
|
4776 |
}
|
4777 |
|
4778 |
.mec-event-container-simple .mec-monthly-tooltip h4 {
|
9182 |
display: block;
|
9183 |
}
|
9184 |
|
9185 |
+
.mec-organizer-description p {
|
9186 |
+
padding-left: 12px;
|
9187 |
+
}
|
9188 |
+
|
9189 |
.mec-modal-wrap {
|
9190 |
max-width: 60vw;
|
9191 |
max-height: 90vh !important;
|
15146 |
bottom: 0;
|
15147 |
top: 0;
|
15148 |
width: 100%;
|
|
|
15149 |
height: 100%;
|
15150 |
+
display: block;
|
15151 |
border-radius: 22px;
|
15152 |
z-index: 1;
|
15153 |
}
|
15313 |
left: 200px;
|
15314 |
}
|
15315 |
|
15316 |
+
/* Normal Label - Temporarily Hidden*/
|
15317 |
+
.mec-wrap .mec-label-normal {
|
15318 |
+
display: none;
|
15319 |
+
}
|
15320 |
+
|
15321 |
|
15322 |
/* --------------------- */
|
@@ -1 +1 @@
|
|
1 |
-
.lity-container,.mec-wrap,.mec-wrap div:not([class^=elementor-]){font-family:Montserrat,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif}.entry-content .mec-wrap h1,.entry-content .mec-wrap h2,.entry-content .mec-wrap h3,.entry-content .mec-wrap h4,.entry-content .mec-wrap h5,.entry-content .mec-wrap h6,.mec-wrap h1,.mec-wrap h2,.mec-wrap h3,.mec-wrap h4,.mec-wrap h5,.mec-wrap h6{font-family:Montserrat,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;color:#171c24;font-weight:300;font-style:inherit;letter-spacing:normal;clear:none}.mec-wrap h1{font-size:50px;line-height:1.16;margin-bottom:12px;letter-spacing:-1px}.mec-wrap h2{font-size:36px;line-height:1.14;margin-bottom:10px}.mec-wrap h3{font-size:28px;line-height:1.2;margin-bottom:8px}.mec-wrap h4{font-size:24px;line-height:1.2;margin-bottom:10px}.mec-wrap h5{font-size:18px;line-height:1.3;margin-bottom:7px}.mec-wrap h6{font-size:16px;line-height:1.3;margin-bottom:4px}.mec-wrap .subheader{color:#849098}.mec-wrap h1 strong{font-weight:700}.mec-wrap p{margin:0 0 20px 0;color:#616161;font-size:14px;line-height:1.8}.mec-wrap .mec-event-article .mec-color-hover{box-shadow:none;border:none}.mec-wrap abbr,.mec-wrap acronym{cursor:auto;border:none}.entry-content .mec-wrap a{box-shadow:none}.mec-wrap .button,.mec-wrap a.button:not(.owl-dot),.mec-wrap button:not(.owl-dot),.mec-wrap input[type=button],.mec-wrap input[type=reset],.mec-wrap input[type=submit]{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#24ca4f;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease}.mec-wrap .button:hover,.mec-wrap a.button:hover,.mec-wrap button:hover,.mec-wrap input[type=button]:hover,.mec-wrap input[type=reset]:hover,.mec-wrap input[type=submit]:hover{background:#222;color:#fff}.mec-wrap #mec_woo_add_to_cart_btn_r{min-width:155px;margin-top:5px;border-radius:2px;box-shadow:0 2px 1px rgba(0,0,0,.08);float:left;text-align:center}.mec-booking-form-container button{display:block}.vertical-space,.vertical-space1,.vertical-space2,.vertical-space3,.vertical-space4,.vertical-space5{display:block;width:100%;margin:0;clear:both;border:0 none;height:20px}.vertical-space2{height:40px}.vertical-space3{height:60px}.vertical-space4{height:80px}.vertical-space5{height:100px}@media only screen and (max-width:479px){.vertical-space,.vertical-space1{height:8px}.vertical-space2{height:14px}.vertical-space3{height:28px}.vertical-space4{height:40px}.vertical-space5{height:60px}}@media only screen and (max-width:960px){.vertical-space,.vertical-space1{height:12px}.vertical-space2{height:18px}.vertical-space3{height:36px}.vertical-space4{height:50px}.vertical-space5{height:80px}}.mec-wrap abbr{cursor:auto;border-bottom:0}@-webkit-keyframes rotating{from{-ms-transform:rotate(0);-moz-transform:rotate(0);-webkit-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}to{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes rotating{from{-ms-transform:rotate(0);-moz-transform:rotate(0);-webkit-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}to{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}.mec-wrap{font:14px/25px sans-serif;font-family:Montserrat,Helvetica,Arial,sans-serif;font-weight:400;color:#626262}.mec-wrap .mec-events a{border-bottom:none}.mec-wrap .mec-container a{box-shadow:none}.mec-event-content p{font-family:Roboto,sans-serif;font-weight:300}.mec-wrap .mec-clear:after,.mec-wrap .mec-clear:before{content:" ";display:table}.mec-wrap .mec-clear:after{clear:both}.mec-events-button{background:#fff;padding:12px 34px;font-size:13px;font-weight:400;letter-spacing:0;border:1px solid #e3e3e3;margin-right:10px;transition:.3s}.mec-wrap .mec-events-button:hover{color:#fff}.mec-no-event{display:none}#mec-active-current{display:block!important}.current-hide #mec-active-current{display:none!important}.mec-event-grid-classic .mec-event-article{position:relative;border:2px solid #e3e3e3;box-shadow:0 2px 0 0 rgba(0,0,0,.016);margin-bottom:30px;max-width:none}.mec-event-grid-classic .mec-event-content{background:#fff;color:#767676;padding:0 20px 5px;text-align:center;min-height:125px}.mec-event-grid-classic .mec-event-title{color:#202020;margin:10px 0;font-weight:700;font-size:20px;letter-spacing:1px;text-transform:uppercase}.mec-event-grid-classic .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-classic .mec-event-date{font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:1px;color:#fff;padding:3px 20px;margin:0 -20px 20px -20px;text-align:center}.mec-event-grid-classic .mec-event-content p{font-size:15px;color:#8a8a8a}.mec-event-grid-classic .mec-event-detail{display:none}.mec-event-grid-classic img{margin-bottom:0;width:100%}.mec-event-footer{position:relative;border-top:1px solid #efefef;padding:20px;min-height:80px;margin:0;background:#fafafa}.mec-event-sharing-wrap{left:15px;position:absolute;list-style:none;margin:0}.mec-event-sharing-wrap .mec-event-sharing{position:absolute;padding:8px 0 2px;left:-6px;bottom:54px;margin:0;margin-top:6px;border-radius:5px;width:50px;visibility:hidden;opacity:0;border:1px solid #e2e2e2;background:#fff;box-shadow:0 0 9px 0 rgba(0,0,0,.06);z-index:99;-webkit-transition:all .18s ease;transition:all .18s ease}.mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-sharing-wrap .mec-event-sharing:before{content:'';display:block;position:absolute;bottom:-10px;left:50%;margin-left:-10px;width:0;height:0;border-style:solid;border-width:10px}.mec-event-sharing-wrap .mec-event-sharing:before{bottom:-21px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-sharing-wrap .mec-event-sharing:after{bottom:-19px;border-color:#fff transparent transparent transparent}.mec-event-sharing-wrap:hover .mec-event-sharing{opacity:1;visibility:visible}.mec-event-sharing-wrap li{text-align:center;border:0;display:block;margin-right:2px;overflow:hidden;margin:0 auto 6px;width:38px}.mec-event-sharing-wrap:hover>li{cursor:pointer;background-color:#40d9f1}.mec-event-sharing-wrap:hover li a{color:#fff}.mec-event-sharing-wrap>li:first-of-type{border:1px solid #d9d9d9}.mec-event-sharing-wrap li a,.mec-event-sharing-wrap:hover li ul li a{border:none;color:#767676}.mec-event-sharing-wrap li i{width:36px;height:36px;display:table-cell;vertical-align:middle}.mec-event-sharing-wrap li svg{height:16px}.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}}span.mec-event-title-soldout{font-size:8px;font-weight:700;letter-spacing:.5px;text-transform:uppercase;background:#e63360;color:#fff;padding:3px 8px;line-height:1;border-radius:15px;white-space:nowrap;vertical-align:middle}.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:34px;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:10px}.mec-event-list-minimal .mec-event-detail,.mec-event-list-minimal .mec-time-details{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-detail .mec-time-details{display:inline}.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;text-align:left}.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,.mec-event-list-classic .mec-event-time{font-weight:400;font-size:13px;letter-spacing:0;line-height:18px;text-align:left;display:initial;margin-right:12px}.mec-event-list-classic .mec-event-time .mec-time-details,.mec-event-list-classic .mec-event-time i{display:inline;margin-right:3px}.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:155px;margin-top:5px;margin-left:10px;border-radius:2px;box-shadow:0 2px 1px rgba(0,0,0,.08)}.mec-single-event .mec-events-meta-group-booking button.mec-book-form-back-button{background:#c4cace;float:left}.mec-single-event .mec-events-meta-group-booking button.mec-book-form-back-button:hover{background:#000}.mec-single-event .mec-events-meta-group-booking button.mec-book-form-next-button{float:left}button#mec-book-form-back-btn-step-3{float:none}.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-single-event .mec-book-form-gateway-checkout button{margin-right:20px}.mec-single-event button#mec-book-form-back-btn-step-3{margin-left:0}.lity-content .mec-book-form-back-button{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-right:10px;line-height:1;padding:18px 20px 16px;-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;background:#c4cace}.lity-content .mec-book-form-back-button:hover{background:#000}.lity-content button#mec-book-form-back-btn-step-3{float:none}.lity-content .mec-book-form-next-button{float:left}.mec-single-event .mec-book-first,.mec-single-event .mec-event-tickets-list{padding-left:15px;padding-right:15px}.mec-single-event label.mec-fill-attendees{margin-left:15px!important}.mec-single-event .mec-events-meta-group-booking .mec-event-ticket-available{display:block;margin-bottom:20px;margin-top:-17px;font-size:11px;color:#8a8a8a}.mec-single-event .mec-events-meta-group-booking .mec-book-price-total{display:inline-block;margin-bottom:10px;font-size:26px;color:#39c36e;font-weight:700;padding:10px 0}.mec-single-event .mec-events-meta-group-booking form{margin:0}.mec-single-event .mec-events-meta-group-booking h5 span,.mec-single-event .mec-events-meta-group-booking label{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:3px 0;display:block;clear:none;padding:5px 1em 3px 0}.mec-single-event .mec-events-meta-group-booking h5 span{display:inline-block}.mec-single-event .mec-events-meta-group-booking h5 span.mec-ticket-variation-name{padding-right:5px;text-transform:capitalize}.mec-single-event .mec-events-meta-group-booking input::-webkit-input-placeholder{color:#aaa}.mec-single-event .mec-events-meta-group-booking input:-moz-placeholder{color:#aaa}.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking input[type=email],.mec-single-event .mec-events-meta-group-booking input[type=number],.mec-single-event .mec-events-meta-group-booking input[type=password],.mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-single-event .mec-events-meta-group-booking input[type=text],.mec-single-event .mec-events-meta-group-booking select,.mec-single-event .mec-events-meta-group-booking textarea{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:330px;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both}.wbmec-mandatory{padding-left:5px;font-size:14px}.mec-single-event .mec-events-meta-group-booking .mec-red-notification input,.mec-single-event .mec-events-meta-group-booking .mec-red-notification select,.mec-single-event .mec-events-meta-group-booking .mec-red-notification textarea{border:1px solid #ff3c3c}.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=checkbox],.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=radio]{outline:1px solid #ff3c3c}@media only screen and (max-width:479px){.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking input[type=email],.mec-single-event .mec-events-meta-group-booking input[type=number],.mec-single-event .mec-events-meta-group-booking input[type=password],.mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-single-event .mec-events-meta-group-booking input[type=text],.mec-single-event .mec-events-meta-group-booking select,.mec-single-event .mec-events-meta-group-booking textarea{width:100%}}.mec-single-event .mec-events-meta-group-booking input[type=email]:focus,.mec-single-event .mec-events-meta-group-booking input[type=number]:focus,.mec-single-event .mec-events-meta-group-booking input[type=password]:focus,.mec-single-event .mec-events-meta-group-booking input[type=tel]:focus,.mec-single-event .mec-events-meta-group-booking input[type=text]:.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking select:focus,.mec-single-event .mec-events-meta-group-booking textarea:focus,focus{border:1px solid #aaa;color:#444;background:#fff;-moz-box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);box-shadow:0 0 3px rgba(0,0,0,.2);outline:0}.mec-single-event .mec-events-meta-group-booking input[type=checkbox],.mec-single-event .mec-events-meta-group-booking input[type=radio]{margin-right:6px;margin-top:5px;min-height:20px;clear:none;margin:0 0 0 2px}.lity-container .mec-events-meta-group-booking input[type=radio]:before,.mec-single-event .mec-events-meta-group-booking input[type=radio]:before{content:"";display:inline-block;background:#fff;border-radius:18px;width:18px;height:18px;margin:-1px 0 0 -3px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32)}.lity-container .mec-events-meta-group-booking input[type=radio]:checked:before,.mec-single-event .mec-events-meta-group-booking input[type=radio]:checked:before{border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff}.lity-container .mec-events-meta-group-booking input[type=radio],.mec-single-event .mec-events-meta-group-booking input[type=radio]{min-height:0;margin:0;margin-right:6px}.mec-single-event .mec-events-meta-group-booking input[type=checkbox]{float:left}.lity-container .mec-events-meta-group-booking .mec_book_first_for_all,.mec-single-event .mec-events-meta-group-booking .mec_book_first_for_all{display:none}.mec-events-meta-group-booking ul.mec-book-price-details{list-style:none;border:1px solid #eee;padding:0;overflow:hidden}.mec-events-meta-group-booking ul.mec-book-price-details li{font-size:15px;color:#a9a9a9;list-style:none;padding:13px 18px;margin:0;float:left;border-right:1px solid #eee}.mec-events-meta-group-booking ul.mec-book-price-details li:last-child{border-right:none}.mec-events-meta-group-booking ul.mec-book-price-details li span.mec-book-price-detail-amount{font-weight:700;font-size:21px;color:#222}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label{height:14px;width:14px;background-color:transparent;border:1px solid #d4d4d4;position:relative;display:inline-block;-moz-transition:border-color ease .2s;-o-transition:border-color ease .2s;-webkit-transition:border-color ease .2s;transition:border-color ease .2s;cursor:pointer;box-shadow:0 2px 16px -2px rgba(0,0,0,.2);vertical-align:middle;margin-right:3px;margin-top:-2px}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label{border-color:#008aff;box-shadow:0 2px 14px -3px #008aff}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:after,.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:before,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:after,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:before{position:absolute;height:0;width:1px;background-color:#008aff;display:inline-block;-moz-transform-origin:left top;-ms-transform-origin:left top;-o-transform-origin:left top;-webkit-transform-origin:left top;transform-origin:left top;content:'';-webkit-transition:opacity ease .5;-moz-transition:opacity ease .5;transition:opacity ease .5}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:before,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:before{top:8px;left:7px;box-shadow:0 0 0 2px #fff;-moz-transform:rotate(-145deg);-ms-transform:rotate(-145deg);-o-transform:rotate(-145deg);-webkit-transform:rotate(-145deg);transform:rotate(-145deg)}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::before,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::before{height:12px;-moz-animation:dothatopcheck .16s ease 0s forwards;-o-animation:dothatopcheck .16s ease 0s forwards;-webkit-animation:dothatopcheck .16s ease 0s forwards;animation:dothatopcheck .16s ease 0s forwards}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:after,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:after{top:6px;left:3px;-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::after,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::after{-moz-animation:dothabottomcheck 80ms ease 0s forwards;-o-animation:dothabottomcheck 80ms ease 0s forwards;-webkit-animation:dothabottomcheck 80ms ease 0s forwards;animation:dothabottomcheck 80ms ease 0s forwards;height:4px}.mec-single-event .mec-events-meta-group-booking button[type=submit]:after,.mec-single-event a.button:after{display:none;font-family:simple-line-icons;content:"\e098";margin-left:4px;-webkit-animation:rotating 1.2s linear infinite;-moz-animation:rotating 1.2s linear infinite;-ms-animation:rotating 1.2s linear infinite;-o-animation:rotating 1.2s linear infinite;animation:rotating 1.2s linear infinite}.mec-single-event .mec-events-meta-group-booking button[type=submit].loading:after,.mec-single-event a.button.loading:after{display:inline-block}.mec-single-event .mec-event-export-module{display:block}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul{display:table;width:100%}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li{display:table-cell}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li:last-child{text-align:right}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a:hover{color:#fff}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul{padding-left:0;margin:15px 5px}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting{padding-left:0;margin:0}.mec-ticket-price{margin-left:10px;font-size:13px;font-weight:300}.mec-book-reg-field-checkbox label,.mec-book-reg-field-radio label{line-height:1.36}.mec-book-reg-field-checkbox input[type=checkbox],.mec-book-reg-field-radio input[type=radio]{float:left;margin-right:5px!important}.mec-ticket-available-spots .mec-event-ticket-description,.mec-ticket-available-spots .mec-event-ticket-price{font-size:11px}.mec-book-ticket-container .mec-reg-mandatory:nth-child(2) label:after,.mec-book-ticket-container .mec-reg-mandatory:nth-child(3) label:after,.mec-book-ticket-container .wbmec-mandatory{content:"";color:red;width:50px;height:50px;font-size:14px;padding-left:5px}@media only screen and (max-width:767px){.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li{width:100%;min-height:40px;margin-bottom:15px;text-align:center;float:none;display:block}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a{width:100%;padding-left:0;padding-right:0;text-align:center;display:block;font-size:12px}}.mec-single-event .mec-events-meta-group{margin-bottom:0}@media only screen and (max-width:767px){.mec-single-event .mec-events-meta-group-booking{margin-bottom:30px}}.mec-single-event .mec-event-meta dt,.mec-single-event .mec-event-meta h3{text-transform:uppercase;font-size:16px;font-weight:700;padding-bottom:5px;display:inline;color:#000;padding-left:10px}.mec-single-event .mec-event-meta h6{text-transform:uppercase;font-size:13px;padding-bottom:5px;display:inline;color:#222;padding-left:0}.mec-single-event .mec-event-meta .mec-events-event-categories a,.mec-single-event .mec-event-meta dd{font-size:14px;color:#8d8d8d}.mec-single-event .mec-event-meta .mec-location dd.author{color:#3c3b3b}.mec-single-event .mec-event-meta dd{margin:0;padding-left:35px}.mec-single-event .mec-event-meta dd.mec-events-event-categories{min-height:35px;line-height:35px}@media only screen and (max-width:480px){.single-mec-events .lity-container{width:100%}.single-mec-events .lity-content .mec-events-meta-group-booking{padding:20px;width:85%;margin:0 auto}}.mec-single-event .mec-event-meta dd.mec-events-event-categories:first-of-type{padding-top:5px}.mec-single-event .mec-event-meta dd.mec-events-event-categories:last-of-type{border-bottom:0}.mec-single-event .mec-event-meta dd a{color:#8d8d8d;transition:all .2s ease}.mec-single-event .mec-event-meta dd a i:before{font-size:16px!important}.mec-single-event .mec-event-meta dd a i{margin-right:8px}.mec-single-event .mec-event-meta dl{margin-bottom:0}.mec-single-event .mec-event-meta .mec-events-event-cost{font-size:18px}.mec-single-event .mec-event-meta .mec-events-address{color:#a9a9a9;margin-bottom:3px}.mec-single-event .mec-event-meta .mec-events-meta-group-venue .author{margin-bottom:0;color:#8d8d8d;font-size:13px}.mec-single-event .mec-events-event-image{margin-bottom:0}.mec-single-event h2.mec-single-event-title{margin-bottom:30px;font-weight:700;font-size:33px}.mec-single-event .mec-booking-button{border-bottom:none;letter-spacing:.5px;line-height:48px;height:76px;transition:all .5s ease;color:#fff;padding:16px;display:block;text-align:center;font-size:16px;border-radius:2px;box-shadow:0 1px 2px rgba(0,0,0,.15)}.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;margin-bottom: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.tumblr{background:#34465d}.mec-single-event .mec-event-social a.tumblr:hover{background:#273649}.mec-single-event .mec-event-social a.telegram{background:#08c}.mec-single-event .mec-event-social a.telegram:hover{background:#1076be}.mec-single-event .mec-event-social a.whatsapp{background:#25d366}.mec-single-event .mec-event-social a.whatsapp:hover{background:#23ac55}.mec-single-event .mec-event-social a.flipboard{background:#e12828}.mec-single-event .mec-event-social a.flipboard:hover{background:#af1e1e}.mec-single-event .mec-event-social a.pocket{background:#ef4056}.mec-single-event .mec-event-social a.pocket:hover{background:#8d1717}.mec-single-event .mec-event-social a.reddit{background:#ff5700}.mec-single-event .mec-event-social a.reddit:hover{background:#c94909}.mec-single-event .mec-event-social a.flipboard svg,.mec-single-event .mec-event-social a.telegram svg{height:16px}.mec-single-event .mec-event-social li.mec-event-social-icon a svg{display:unset}.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.linkedin{background:#457399}.mec-single-event .mec-event-social a.linkedin:hover{background:#2e4d66}.mec-single-event .mec-event-social a.other-social{background:#ff5d5e}.mec-single-event .mec-event-social a.other-social:hover{background:#cc4949}.mec-single-event .mec-event-social{text-align:center}.mec-single-event .mec-events-meta-group-booking form>h4,.mec-single-event .mec-frontbox-title{text-transform:uppercase;font-size:15px;font-weight:700;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative;text-align:center}.mec-single-event .mec-events-meta-group-booking form>h4:before,.mec-single-event .mec-frontbox-title:before{padding:1px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-35px;left:50%}.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-month],.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-year]{width:47%!important;margin-right:12px;margin-top:5px;display:inline-block!important}@media(max-width:768px){.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-month],.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-year]{width:100%!important;margin-right:0;display:block!important}}.mec-event-meta i:before{font-size:20px;vertical-align:middle}.mec-event-meta .mec-single-event-additional-organizers i:before,.mec-event-meta .mec-single-event-organizer i:before{font-size:14px;vertical-align:baseline}#mec-wrap .mec-events-day-time-slot .mec-events-content{float:left;width:33%;padding:0 15px}#mec-wrap .mec-events-day-time-slot .mec-events-event-image{padding-left:0}#mec-events-content .mec-events-abbr{color:#8d8d8d;font-size:14px}.mec-single-event .mec-events-content{margin-bottom:30px}.mec-single-event .mec-organizer-url a{word-wrap:break-word}.mec-single-event #headline{margin:0 0 10px}.mec-single-event #headline h2{padding:0}.mec-single-event .mec-events-meta-group.mec-events-meta-group-gmap .mec-events-venue-map{margin-top:0;padding:8px;border:1px solid #e5e5e5;border-radius:7px}#mec-events-gmap-0{height:325px!important}.mec-events-list .mec-events-day-time-slot .mec-events-event-meta{width:33%;float:left;padding:40px;height:auto;margin:0}.mec-events-day-time-slot .mec-events-content.description.entry-summary{font-size:15px;font-weight:300;color:#8d8d8d}.mec-events-day-time-slot .type-mec_events h2{font-size:28px;padding-bottom:20px}.mec-events-day .mec-events-day-time-slot .type-mec_events{margin:0}.mec-events-day .mec-events-day-time-slot h5{background-color:#8d8d8d}.mec-single-event .mec-event-meta .mec-single-event-additional-organizers .mec-events-single-section-title,.mec-single-event .mec-event-meta .mec-single-event-organizer .mec-events-single-section-title,.mec-single-event .mec-events-meta-date h3{padding-left:0;margin:10px;display:inline-block}.mec-single-event .mec-events-meta-date h3{width:100%}.mec-single-event .mec-events-event-image{border:0}.mec-single-event .mec-events-venue-map{padding:0}.mec-event-cost,.mec-event-more-info,.mec-event-website,.mec-events-meta-date,.mec-single-event-additional-organizers,.mec-single-event-category,.mec-single-event-date,.mec-single-event-label,.mec-single-event-location,.mec-single-event-organizer,.mec-single-event-time{background:#f7f7f7;padding:12px 14px 8px;margin-bottom:12px;vertical-align:baseline;position:relative}.mec-single-event .mec-events-meta-date dd,.mec-single-event .mec-single-event-additional-organizers dd,.mec-single-event .mec-single-event-organizer dd{padding-left:0;margin-bottom:10px}.mec-single-event .mec-events-meta-date dd span,.mec-single-event .mec-single-event-additional-organizers dd span,.mec-single-event .mec-single-event-organizer dd span{display:block;padding-left:12px;color:#8d8d8d}.mec-single-event .mec-events-meta-date i,.mec-single-event .mec-single-event-additional-organizers i,.mec-single-event .mec-single-event-organizer i{margin-right:10px;margin-left:12px}.mec-events-meta-group.mec-events-meta-group-venue dl{margin-bottom:0}address.mec-events-address{line-height:19px;font-style:normal;font-size:12px}.mec-single-event .mec-event-content dt{margin-top:5px}.mec-single-event .mec-single-event-additional-organizers .mec-single-event-additional-organizer{margin-bottom:15px;padding-bottom:5px;border-bottom:1px solid #e4e4e4}.mec-single-event .mec-single-event-additional-organizers .mec-single-event-additional-organizer:last-child{margin-bottom:0;padding-bottom:0;border:none}.mec-event-schedule-content{border-left:4px solid #f0f0f0;padding-top:10px;margin-top:30px;margin-left:25px;margin-bottom:20px;color:#8a8a8a}.mec-event-schedule-content dl{padding-left:24px;font-size:12px;position:relative;margin-bottom:35px}.mec-event-schedule-content dl:before{content:'';display:block;position:absolute;left:0;top:4px;width:20px;height:0;border-top:4px solid #f0f0f0}.mec-event-schedule-content dl dt{margin:0 0 10px;line-height:1.16}.mec-event-schedule-content dl dt.mec-schedule-title{font-size:13px;color:#5a5a5a;font-weight:700}.mec-event-schedule-content dl dt.mec-schedule-description{font-weight:300}.mec-event-schedule-content .mec-schedule-speakers{background:#f7f7f7;padding:10px}.mec-wrap .mec-event-schedule-content h6{font-size:13px;color:#5a5a5a;font-weight:700;display:inline-block}.mec-wrap .mec-event-schedule-content a{font-weight:400;color:#5a5a5a;transition:all .1s ease}.single-mec-events .mec-speakers-details ul{padding:0}.mec-single-event .mec-speakers-details ul li{list-style:none;background:#f7f7f7;padding:5px 5px 18px 5px;margin-top:14px}.mec-single-event .mec-speakers-details ul li a{-webkit-transition:.2s all ease;transition:.2s all ease}.mec-single-event .mec-speakers-details ul li .mec-speaker-avatar a img{float:left;border-radius:50%;transition:.2s all ease;border:2px solid transparent;width:68px;height:68px}.mec-single-event .mec-speakers-details ul li .mec-speaker-avatar a:hover img{border-color:#40d9f1}.mec-single-event .mec-speakers-details ul li .mec-speaker-name{display:inline-block;margin-top:10px;font-size:15px;line-height:1.8;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;color:#888}.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;display:block}.mec-attendees-list-details .mec-attendee-profile-link span{display:inline-block;color:#000;vertical-align:middle;cursor:pointer}.mec-attendees-list-details span.mec-attendee-profile-ticket-number{border-radius:50px;width:20px;height:20px;font-size:12px;text-align:center;color:#fff;margin-right:4px}.mec-attendees-list-details .mec-attendee-profile-link span i{vertical-align:middle;font-size:9px;font-weight:700;margin-left:5px}.mec-attendees-list-details .mec-attendees-toggle{border:1px solid #e6e6e6;background:#fafafa;padding:15px 15px 0;border-radius:3px;margin:12px 0 20px 52px;position:relative;font-size:13px;box-shadow:0 3px 1px 0 rgba(0,0,0,.02)}.mec-attendees-list-details .mec-attendees-toggle:after,.mec-attendees-list-details .mec-attendees-toggle:before{content:'';display:block;position:absolute;left:50px;width:0;height:0;border-style:solid;border-width:10px}.mec-attendees-list-details .mec-attendees-toggle:after{top:-20px;border-color:transparent transparent #fafafa transparent}.mec-attendees-list-details .mec-attendees-toggle:before{top:-21px;border-color:transparent transparent #e1e1e1 transparent}.mec-attendees-list-details .mec-attendees-toggle .mec-attendees-item{padding-bottom:15px}.mec-attendees-list-details .mec-attendee-avatar img{border-radius:3px}.mec-attendee-avatar-sec{float:left;width:50px;margin-right:12px}.mec-attendee-profile-name-sec,.mec-attendee-profile-ticket-sec{float:left;width:calc(100% - 62px);margin-top:3px}.mec-calendar{margin-bottom:20px;border:1px solid #e8e8e8;width:100%;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-calendar .mec-calendar-topsec{display:table;background:#fff}.mec-calendar .mec-calendar-topsec .mec-calendar-events-sec{display:none}.mec-calendar .mec-calendar-side{width:590px;display:table-cell;padding:40px;position:relative;text-align:center;box-shadow:0 1px 5px 6px rgba(0,0,0,.005) inset}.mec-calendar .mec-calendar-events-side{display:table-cell;height:100%;border-left:1px solid #efefef;padding:40px;width:100%}.mec-calendar .mec-calendar-events-side .mec-table-side-day{width:46px;height:46px;margin:0 auto 20px;position:relative;text-align:center;line-height:46px;border:1px solid #40d9f1;border-radius:50%;font-size:12px;font-weight:600;padding:0}.mec-calendar .mec-calendar-events-side .mec-table-side-title{text-align:center;font-size:11px;text-transform:uppercase;letter-spacing:3px;margin-bottom:14px}.mec-calendar .mec-calendar-header{position:relative;width:560px;margin-top:8px;margin-bottom:16px}.mec-calendar .mec-calendar-header h2{text-transform:uppercase;font-size:22px;font-weight:700;color:#333}.mec-calendar .mec-event-footer{width:auto;min-height:60px}.mec-calendar dl{display:table;margin:0;border:none;padding:0;table-layout:fixed}.mec-calendar dt{display:table-cell;transition:all .66s ease;color:#4d4d4d;background:#fff;border-radius:44px;font-size:14px;width:80px;height:80px;line-height:80px;text-align:center}.mec-calendar .mec-calendar-table .mec-no-event{display:none}.mec-calendar .mec-calendar-table-head dt{font-weight:700;text-transform:uppercase;font-size:15px}.mec-calendar .mec-calendar-row dt:hover{background:#f4f4f4}.mec-calendar .mec-table-nullday{color:#cacaca}.mec-calendar.mec-box-calendar .mec-table-nullday:last-child{border-right:1px solid #eaeaea}.mec-calendar .mec-next-month:hover,.mec-calendar .mec-prev-month:hover{background:#f4f4f4}.mec-calendar .mec-selected-day,.mec-calendar .mec-selected-day:hover{background:#40d9f1;color:#fff}.mec-calendar .mec-selected-day a{color:#fff}.mec-calendar .mec-has-event{position:relative}.mec-calendar .mec-calendar-row dt.mec-has-event:hover{background:#40d9f1}.mec-calendar .mec-has-event a{cursor:pointer;display:block;width:100%;height:100%;border-radius:50%;color:#4d4d4d;transition:all .25s ease;text-decoration:none;box-shadow:none}.mec-calendar .mec-calendar-row dt.mec-has-event.mec-selected-day a,.mec-calendar .mec-calendar-row dt.mec-has-event:hover a{color:#fff}.mec-calendar .mec-has-event:after{background-color:#40d9f1;border-radius:50%;display:block;content:'';width:8px;height:8px;bottom:14px;left:50%;margin:-4px 0 0 -4px;position:absolute;transition:all .25s ease}.mec-calendar .mec-calendar-row dt.mec-has-event:hover:after{background-color:#fff}.mec-calendar .mec-has-event.mec-selected-day:after{display:none}.mec-calendar .mec-event-article{text-align:left;margin-bottom:0;padding-bottom:25px;padding-top:26px;border-top:1px solid #efefef;transition:all .33s ease}.mec-calendar .mec-event-article:hover{background-color:#fafafa}.mec-calendar .mec-event-article .mec-event-time{font-size:11px;line-height:1.1;margin:0}.mec-calendar .mec-event-article .mec-event-title{font-size:13px;padding:0;margin:10px 0 8px;font-weight:700;text-transform:uppercase}.mec-calendar .mec-event-article .mec-event-title a{text-decoration:none;color:#494949;transition:color .3s ease}.mec-calendar .mec-event-article .mec-event-title a:hover{color:#40d9f1}.mec-calendar .mec-event-article .mec-event-image,.mec-calendar .mec-event-list-classic .mec-event-image img{width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-image{float:left;margin-right:20px;width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-detail{font-size:13px;line-height:1.3;font-family:Roboto,sans-serif;color:#9a9a9a;margin-bottom:0}.mec-calendar .mec-calendar-side .mec-next-month,.mec-calendar .mec-calendar-side .mec-previous-month{cursor:pointer;position:absolute;top:0;min-width:50px;height:50px;line-height:50px;text-align:center;background:#fff;color:#a9a9a9;font-size:12px;letter-spacing:1px;text-transform:uppercase;padding-left:10px;padding-right:10px;border:1px solid #efefef;border-top:none;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease}.mec-calendar .mec-calendar-side .mec-next-month i,.mec-calendar .mec-calendar-side .mec-previous-month i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-calendar .mec-calendar-side .mec-next-month:hover,.mec-calendar .mec-calendar-side .mec-previous-month:hover{background-color:#f9f9f9;color:#40d9f1}.mec-calendar .mec-calendar-side .mec-previous-month{left:0;border-bottom-right-radius:6px;border-left:none}.mec-calendar .mec-calendar-side .mec-next-month{right:0;border-bottom-left-radius:6px;border-right:none}@media only screen and (min-width:961px){.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-has-event:after{width:6px;height:6px;bottom:6px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-calendar-side{width:370px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-calendar-header{position:relative;width:350px;margin-top:30px;margin-bottom:20px;padding-top:20px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) dt{width:50px;height:50px;line-height:50px}.mec-wrap.mec-sm959 .mec-calendar.mec-event-calendar-classic dl dt{height:110px}}@media only screen and (max-width:1200px){.mec-calendar .mec-has-event:after{width:6px;height:6px;bottom:6px}.mec-calendar .mec-calendar-side{width:370px}.mec-calendar .mec-calendar-header{position:relative;width:350px;margin-top:30px}.mec-calendar dt{width:50px;height:50px;line-height:50px}}@media only screen and (max-width:767px){.mec-calendar .mec-calendar-header h2{font-size:18px}.mec-calendar .mec-calendar-topsec{width:100%}.mec-calendar .mec-calendar-side{width:100%;display:block;padding:30px}.mec-calendar .mec-calendar-header{width:auto}.mec-calendar .mec-calendar-events-side{width:100%;display:block;height:100%;border-left:none;border-top:1px solid #efefef;padding:20px}.mec-calendar dl{width:100%}.mec-calendar dt{width:14%;height:60px;line-height:60px;border-radius:50px}}@media only screen and (max-width:479px){.mec-calendar .mec-has-event:after{width:4px;height:4px}.mec-calendar .mec-calendar-header h2{font-size:16px;margin-top:33px}.mec-calendar dt{height:38px;line-height:38px}.mec-calendar .mec-event-list-classic .mec-event-detail,.mec-calendar .mec-event-list-classic .mec-event-title{font-size:12px}.mec-calendar .mec-event-list-classic .mec-event-time{font-size:10px}}.mec-box-calendar.mec-calendar .mec-has-event a,.mec-box-calendar.mec-calendar dt{border-radius:0}.mec-box-calendar.mec-calendar .mec-calendar-header{margin-top:2px;margin-bottom:30px}.mec-box-calendar.mec-calendar dt{border-bottom:1px solid #eaeaea;border-left:1px solid #eaeaea}.mec-box-calendar.mec-calendar dl dt:last-child{border-right:1px solid #eaeaea}.mec-box-calendar.mec-calendar .mec-calendar-table-head dt{border-top:1px solid #eaeaea;background-color:#f8f8f8}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt{background-color:#f4f4f4}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{border-radius:2px;top:40px;border:1px solid #eee;height:30px;line-height:30px;z-index:1}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:60px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:60px}.mec-box-calendar.mec-calendar .mec-calendar-side{box-shadow:none}.mec-box-calendar.mec-calendar .mec-calendar-events-side{border:none}.mec-box-calendar.mec-calendar .mec-calendar-events-side .mec-table-side-day{border-radius:2px}.mec-box-calendar.mec-calendar h4.mec-month-label{position:relative;width:560px;margin-top:2px;margin-bottom:30px;text-transform:uppercase;font-size:22px;font-weight:700;color:#333}.mec-widget .mec-box-calendar.mec-calendar h4.mec-month-label{width:100%;margin-top:8px;font-size:13px}@media only screen and (max-width:1200px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:42px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:42px}.mec-calendar .mec-calendar-header h2{font-size:17px;margin-top:7px}}@media only screen and (max-width:767px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{top:28px;font-size:10px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:30px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:30px}.mec-calendar .mec-calendar-header h2{font-size:15px}}@media only screen and (max-width:479px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{top:16px;font-size:0;padding:4px 0;text-align:center;min-width:33px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:10px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:10px}.mec-box-calendar.mec-calendar .mec-calendar-header h2{font-size:12px;margin-top:15px}.mec-box-calendar.mec-calendar .mec-event-image{margin-right:12px}}.mec-calendar.mec-event-calendar-classic,.mec-calendar.mec-event-calendar-classic .mec-calendar-side{border:none;padding:0;width:100%;height:100%;box-shadow:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-side{display:block}.mec-calendar.mec-event-calendar-classic .mec-calendar-header,.mec-calendar.mec-event-calendar-classic dl{width:100%}.mec-calendar.mec-event-calendar-classic dl dt{width:15%;height:136px;line-height:1.2;text-align:left;padding:5px 7px;position:relative}.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt{height:30px!important}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month{top:0}.mec-calendar.mec-event-calendar-classic .mec-has-event:after{bottom:auto;top:24px;left:7px;margin:0}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month{left:0}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month{right:0}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{text-align:left;background:#fafafa;border:1px solid #eaeaea;border-top:none;padding:10px 20px}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{display:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-event-article:hover{background-color:#fcfcfc}.mec-calendar.mec-event-calendar-classic .mec-selected-day,.mec-calendar.mec-event-calendar-classic dt.mec-selected-day:hover{color:#40d9f1;font-weight:700;background:#fafafa;border-bottom:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-day,.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-title{display:inline-block;margin:0;margin-bottom:15px;font-weight:700}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-day{margin-left:4px}.mec-calendar.mec-event-calendar-classic .mec-calendar-row dt.mec-has-event a{color:#4d4d4d}.mec-calendar.mec-event-calendar-classic .mec-calendar-row dt.mec-has-event:not(.mec-selected-day):hover a{color:#fff}@media only screen and (max-width:1200px){.mec-calendar.mec-event-calendar-classic dl dt{height:100px}}@media only screen and (max-width:767px){.mec-calendar.mec-event-calendar-classic dl dt{height:40px}}@media only screen and (max-width:479px){.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{padding:10px}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-header h2{font-size:13px;margin-top:8px}}.mec-calendar .mec-event-article.mec-single-event-novel{padding:4px 8px;min-height:25px;margin:0 -4px;border-radius:0}.mec-calendar .mec-event-article.mec-single-event-novel h4{margin:0;font-size:10px;line-height:18px}.mec-calendar.mec-event-container-novel dl dt{padding:3px}.mec-calendar.mec-event-calendar-classic .mec-calendar-novel-selected-day{display:inline-block;padding:4px;margin-left:1px}.mec-calendar.mec-event-calendar-classic .mec-selected-day .mec-calendar-novel-selected-day{color:#fff}.mec-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-selected-day,.mec-calendar.mec-event-calendar-classic.mec-event-container-novel dt.mec-selected-day:hover{border-bottom:1px solid #eaeaea}.mec-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-calendar-side .mec-calendar-table{min-height:auto}.mec-single-event-novel.light h4{color:#000!important}.mec-single-event-novel.dark h4{color:#fff!important}@media only screen and (max-width:768px){.mec-calendar .mec-event-article.mec-single-event-novel{padding:0;min-height:5px}.mec-calendar .mec-event-article.mec-single-event-novel h4{display:block;font-size:9px}}.mec-event-container-simple .event-single-content-simple{display:none}.mec-event-calendar-classic.mec-event-container-simple .mec-calendar-side .mec-calendar-table{min-height:unset}.mec-event-container-simple .mec-monthly-tooltip h4{font-size:13px;font-weight:500;margin:0;color:#444}.mec-event-container-simple .mec-monthly-tooltip h4:hover{text-decoration:underline;color:#111}.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple{border-bottom:1px dashed #e3e3e3;padding:10px 2px;display:block}.mec-calendar.mec-event-container-simple dl dt.mec-calendar-day{font-size:30px;color:#000}.mec-calendar.mec-event-container-simple .mec-calendar-row dt:hover{background:unset}.mec-calendar.mec-event-container-simple .mec-calendar-row dt,.mec-calendar.mec-event-container-simple .mec-calendar-row dt:last-child,.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt,.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt:last-child{border-width:2px}.mec-calendar.mec-event-container-simple dl dt.mec-selected-day,.mec-calendar.mec-event-container-simple dl dt.mec-selected-day:hover{border-bottom:2px solid #40d9f1;background:unset}.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt{line-height:36px}@media (max-width:768px){.mec-calendar.mec-event-container-simple{overflow-x:scroll}.mec-calendar.mec-event-container-simple .mec-calendar-side{min-width:700px}.mec-event-container-simple .mec-monthly-tooltip h4{font-size:12px}}.mec-wrap.colorskin-custom .mec-calendar.mec-event-container-simple .mec-selected-day:hover{background:#f4f4f4}.mec-event-container-simple .mec-calendar-day .mec-monthly-tooltip.event-single-link-simple:last-of-type{border:none}.mec-tooltip-event-title{font-size:16px;font-weight:700;color:#000;margin-bottom:2px}.mec-tooltip-event-time{font-size:12px;color:#888;margin-bottom:8px;margin-top:5px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-content{padding:17px}.mec-tooltip-event-content{clear:both}.mec-tooltip-event-featured{float:left;margin-right:13px;margin-bottom:1px}.mec-tooltip-event-featured img{max-width:120px}.mec-tooltip-event-desc{font-size:14px;color:#444;line-height:18px}.mec-tooltip-event-desc p{font-size:13px;line-height:1.4;margin-bottom:10px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-box{border-radius:3px!important;border:1px solid #e2e3e4!important;background:#fff!important;box-shadow:0 -1px 30px -2px rgba(0,0,0,.15)!important}.tooltipster-sidetip .tooltipster-arrow{overflow:visible!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-border{border-width:12px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-right .tooltipster-arrow-border{border-right-color:#e2e3e4!important}.tooltipster-sidetip .tooltipster-arrow-border{left:-12px!important;z-index:9999999999!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-background{display:block!important}.tooltipster-sidetip .tooltipster-arrow-background{border-width:11px!important;z-index:99999999999!important}.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background{left:-9px!important;top:1px!important;border-right-color:#fff!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background{border-top-color:#fff!important;left:0!important;top:-1px!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border{left:-1px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-top .tooltipster-arrow-border{border-top-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{left:-1px!important;top:-11px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{border-bottom-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background{top:-9px!important;border-bottom-color:#fff!important}.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background{border-left-color:#fff!important;left:-2px!important;top:0!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-left .tooltipster-arrow-border{border-left-color:#e2e3e4!important;left:-1px!important;top:-1px!important}@media (max-width:780px){.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple h4{word-break:break-all;font-size:13px}}@media (max-width:320px){.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple h4{font-size:10px}}.mec-calendar.mec-calendar-daily .mec-calendar-day-events .mec-event-article{padding-left:15px;padding-right:15px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month{text-align:center;background-color:#fff;border-bottom:2px solid #f4f4f4;position:relative}.mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{color:#444;font-size:18px;line-height:1.2;padding:15px 0 11px;margin:0;font-weight:700;letter-spacing:1px;text-transform:uppercase;border-bottom:1px solid #e6e6e6}.mec-calendar.mec-calendar-daily .mec-calendar-d-top{text-align:center;padding:10px 0;position:relative;background-color:#fafafa}.mec-calendar.mec-calendar-daily .mec-next-month,.mec-calendar.mec-calendar-daily .mec-previous-month{position:absolute;top:50%;left:50%;margin-top:-25px;min-width:50px;height:50px;line-height:50px;text-align:center;background:#fff;border:1px solid #e2e2e2;border-radius:50px;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month i,.mec-calendar.mec-calendar-daily .mec-previous-month i{font-size:14px;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month:hover,.mec-calendar.mec-calendar-daily .mec-previous-month:hover{border-color:#d0d0d0;color:#444;box-shadow:0 2px 5px 0 rgba(0,0,0,.075)}.mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-150px}.mec-calendar.mec-calendar-daily .mec-next-month{margin-left:100px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-next-month,.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-previous-month{min-height:28px;height:28px;line-height:28px;width:28px;margin-top:-14px;border-radius:3px}.mec-calendar.mec-calendar-daily .mec-calendar-d-top h2,.mec-calendar.mec-calendar-daily .mec-calendar-d-top h3{margin-top:9px;color:#b9b9b9;font-family:Roboto,sans-serif;font-size:30px;font-weight:100;text-transform:uppercase;margin-bottom:12px;line-height:1}.mec-calendar.mec-calendar-daily .mec-calendar-d-top h2{font-size:81px;color:#444;margin-bottom:10px;line-height:1.1}.mec-calendar.mec-calendar-daily .mec-calendar-d-table{overflow:hidden;background:#fff;min-height:60px;border-top:1px solid #e6e6e6;border-bottom:2px solid #f3f3f3;padding:0 50px;position:relative}@media only screen and (min-width:479px){.mec-calendar.mec-calendar-daily .mec-calendar-d-table{padding:0 55px}}.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl{width:1310px;display:block}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl{display:none}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl.mec-weekly-view-week-active{display:block}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt{display:block;background:#fff;width:42px;height:60px;line-height:60px;text-align:center;float:left;border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6;border-radius:0}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day:hover,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt:hover{background:#fafafa;box-shadow:0 2px 5px 0 rgba(0,0,0,.065) inset;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day{cursor:default;background:#fff;color:#c1c1c1;line-height:59px;text-align:center;border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-has-event{cursor:pointer;font-weight:700;color:#4a4a4a}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-daily-view-day-active,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt.mec-table-d-current{font-size:18px;font-weight:700;background:#fafafa;color:#40d9f1}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next,.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-prev{float:none;font-size:14px;width:55px;position:absolute;top:0;left:0;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next{left:auto;right:0;border-left:1px solid #e6e6e6;border-right:none}.mec-calendar.mec-calendar-daily .mec-today-container .mec-today-count{font-size:12px;color:#888;text-align:center}@media only screen and (max-width:479px){.mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-130px}.mec-calendar.mec-calendar-daily .mec-next-month{margin-left:80px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{font-size:14px;letter-spacing:0}}.widget .mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{font-size:14px;letter-spacing:0}.widget .mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-130px}.widget .mec-calendar.mec-calendar-daily .mec-next-month{margin-left:80px}.mec-util-hidden{display:none}.mec-daily-view-date-events,.mec-weekly-view-date-events{list-style:none;margin:0}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table{padding:0}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl{width:calc(100% - 1px)}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt{width:14.286%;height:70px;line-height:normal;cursor:default}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:hover{background:#fff;cursor:default}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:last-child{border-right:none}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:12px;font-weight:700;text-transform:uppercase;display:block;margin:15px 0 6px}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table a.mec-table-d-next,.mec-calendar.mec-calendar-weekly .mec-calendar-d-table a.mec-table-d-prev{display:none}ul.mec-weekly-view-dates-events,ul.mec-weekly-view-dates-events li{padding:0;margin:0;line-height:initial}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:64px;height:64px;margin-right:10px;font-size:11px;text-transform:uppercase;float:left;text-align:center;padding-top:2px}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:40px;line-height:30px;font-weight:700;display:block;margin-bottom:6px;letter-spacing:1px}.mec-calendar.mec-calendar-weekly .mec-calendar-a-month .mec-previous-month{margin-left:0;left:12px}.mec-calendar.mec-calendar-weekly .mec-calendar-a-month .mec-next-month{margin-left:0;left:auto;right:12px}@media only screen and (max-width:479px){.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:9px;letter-spacing:0}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:100%;height:36px;margin-bottom:12px;line-height:1;font-size:10px;margin-right:5px;text-align:left}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:18px;margin-bottom:5px}}.widget .mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:9px;letter-spacing:0}.widget .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:100%;height:36px;margin-bottom:12px;line-height:1;font-size:10px;margin-right:5px;text-align:left}.widget .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:18px;margin-bottom:5px}.mec-week-events-container .mec-weekly-view-dates-events li.mec-no-event-found{list-style:none!important}li.mec-no-event-found .mec-event-title{text-align:center}.mec-widget .mec-calendar{max-width:100%}.mec-widget .mec-calendar dl dt,.mec-wrap.mec-sm959.mec-widget .mec-calendar.mec-event-calendar-classic dl dt{height:40px}.mec-widget .mec-calendar .mec-calendar-events-sec{padding:10px}.mec-widget .mec-calendar .mec-calendar-header h2{font-size:13px;margin-top:8px}.mec-widget .mec-calendar .mec-event-list-classic .mec-event-image{margin-right:12px}.mec-widget .mec-calendar .mec-has-event:after{width:4px;height:4px}.mec-widget .mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-title{font-size:14px}.mec-widget .mec-calendar .mec-event-article .mec-event-image{margin-right:11px}.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-header{margin-bottom:20px}.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{font-size:0;padding:4px 0;text-align:center;min-width:33px}.mec-widget .mec-event-calendar-classic .mec-calendar-side .mec-calendar-table{min-height:200px}.mec-widget .mec-event-list-classic{margin-bottom:8px;padding:8px 0}.mec-widget .mec-event-list-classic .mec-event-article{margin-bottom:0;padding:10px 0;position:relative;min-height:86px;padding-left:80px}.mec-widget .mec-event-list-classic .mec-event-date{font-size:10px;line-height:14px;text-transform:uppercase}.mec-widget .mec-event-list-classic .mec-event-title{font-size:13px}.mec-widget .mec-event-list-classic .mec-event-detail{font-size:11px}.mec-widget .mec-event-list-classic .mec-event-image{width:68px;position:absolute;left:0}.mec-event-list-classic .mec-event-image img{width:100%}.mec-widget .mec-event-list-classic .mec-event-detail{overflow:visible}.event-color{width:14px;display:inline-block;height:14px;margin-left:5px;border-radius:50%}.mec-map-lightbox-wp{width:580px;padding:15px 15px 0;background-color:#fff}.mec-map-view-event-detail.mec-event-detail{width:580px;background-color:#e9e9e9;padding:8px 15px}.mec-map-lightbox-wp.mec-event-list-classic .mec-event-article{padding:0 0 15px;margin:0}.mec-map-lightbox-wp.mec-event-list-classic .mec-event-image{width:70px;margin-right:15px}.mec-marker-infowindow-wp{padding:10px}.mec-marker-infowindow-wp .mec-marker-infowindow-count{width:60px;height:60px;display:block;text-align:center;line-height:60px;border:1px solid #40d9f1;border-radius:50%;font-size:32px;color:#40d9f1;float:left;margin-right:11px}.mec-marker-infowindow-wp .mec-marker-infowindow-content{overflow:hidden;padding-top:6px}.mec-marker-infowindow-wp .mec-marker-infowindow-content span{display:block;color:#222}.mec-marker-infowindow-wp .mec-marker-infowindow-content span:first-child{font-size:15px;font-weight:700}.mec-marker-wrap{display:inline-block;width:35px;height:35px;margin:15px 0 0 4px;border-radius:50% 50% 50% 0;background:#00cae9;animation-name:mec-map-bounce;animation-fill-mode:both;animation-duration:1s;border:3px solid #fff;cursor:pointer}.mec-marker-wrap .mec-marker{margin-top:5px;display:block;-webkit-transform:rotate(45deg);transform:rotate(45deg);text-align:center;color:#fff;font-size:17px}.mec-marker-wrap .mec-marker-pulse-wrap{-webkit-transform:rotate(45deg);transform:rotate(45deg);display:inline-block;margin-left:-11px;margin-top:0}.mec-marker-wrap .mec-marker-pulse{display:inline-block;background:#c5c5c5;border-radius:50%;height:14px;width:14px;-webkit-transform:rotateX(55deg);transform:rotateX(55deg);z-index:-2}.mec-marker-wrap .mec-marker-pulse:after{content:"";border-radius:50%;height:40px;width:40px;position:absolute;margin:-13px 0 0 -13px;animation:pulsate 1s ease-out;animation-iteration-count:infinite;opacity:0;box-shadow:0 0 1px 2px #00cae9;animation-delay:1.1s}@keyframes pulsate{0%{transform:scale(.1,.1);opacity:0}50%{opacity:1}100%{transform:scale(1.2,1.2);opacity:0}}@keyframes mec-map-bounce{0%{opacity:0;transform:translateY(-2000px) rotate(-45deg)}60%{opacity:1;transform:translateY(30px) rotate(-45deg)}80%{transform:translateY(-10px) rotate(-45deg)}100%{transform:translateY(0) rotate(-45deg)}}.mec-skin-grid-container .mec-skin-map-container,.mec-skin-list-container .mec-skin-map-container{margin-bottom:20px}.mec-single-event{margin-top:10px}.mec-single-event .mec-events-meta-group-countdown{color:#c9c9c9;text-align:center;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-events-meta-group-countdown .countdown-w{text-align:center;font-size:36px;margin:0 auto;padding:40px 0 0;position:relative;display:table;table-layout:fixed}.mec-events-meta-group-countdown .countdown-w .icon-w{font-size:24px}.mec-events-meta-group-countdown .countdown-w .label-w{font-size:15px;font-weight:300;letter-spacing:1px;text-transform:uppercase;position:relative}.mec-events-meta-group-countdown .countdown-w .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px;width:190px;font-size:72px;transition:all .3s ease-in-out;line-height:1.2}.mec-events-meta-group-countdown .countdown-w .block-w.done-w{border:0 none}.mec-events-meta-group-countdown .countdown-w .block-w li{font-size:50px}.mec-events-meta-group-countdown .countdown-w span{padding:24px 0 20px}.mec-events-meta-group-countdown .countdown-w .div-d{display:none}.mec-events-meta-group-countdown .countdown-w .countdown-message{display:none}.mec-events-meta-group-countdown .countdown-w .block-w i{display:none}#countdown{list-style:none;margin-bottom:0;margin-top:0;margin-left:0;padding-left:0}.mec-events-meta-group-countdown .mec-end-counts h3{display:inherit;text-align:center;font-size:16px;right:50%}.mec-countdown-details .countdown-w .clockdiv li p{margin-top:23px}@media (min-width:481px) and (max-width:768px){.mec-events-meta-group-countdown .countdown-w{padding:0}.mec-events-meta-group-countdown .countdown-w .label-w{font-size:12px;letter-spacing:0}.mec-events-meta-group-countdown .countdown-w span{font-size:34px}}@media (min-width:320px) and (max-width:480px){.mec-events-meta-group-countdown .countdown-w .label-w{font-size:10px}.mec-events-meta-group-countdown .countdown-w span{font-size:28px}.mec-countdown-details .countdown-w .clockdiv li p{margin-top:16px}}@media (max-width:320px){.mec-events-meta-group-countdown .countdown-w .label-w{font-size:9px;letter-spacing:0}.mec-events-meta-group-countdown .countdown-w span{font-size:22px}}.info-msg,.mec-error,.mec-success,.warning-msg{margin:10px 0;padding:10px;border-radius:3px 3px 3px 3px;font-size:13px}.info-msg{color:#059;background-color:#bef}.mec-success{color:#0dbf52;background-color:#cef7ce}.warning-msg{color:#9f6000;background-color:#feefb3}.mec-error{color:#d8000c;background-color:#ffbaba}.mec-fes-form,.mec-fes-list{background:#f8feff;padding:30px 3%;color:#798f96;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important}.mec-fes-list .mec-fes-list-top-actions,.mec-fes-list ul{margin:0 auto 15px;max-width:960px;list-style:none}.mec-fes-form-cntt .dashicons-editor-help{display:none}.mec-fes-list ul li *{text-decoration:none!important}.mec-fes-list ul li{padding:20px 15px;border-radius:3px;margin-bottom:15px;border:1px solid #cfeff5;box-shadow:0 2px 6px -4px #cfeff5;background:#fff;line-height:normal}.mec-fes-list ul li a{box-shadow:none;color:#181818}.mec-fes-list ul li a:hover{color:#40d9f1}.mec-fes-list ul li .mec-event-title{font-size:17px;font-weight:600;width:calc(100% - 250px);display:inline-block}@media (max-width:600px){.mec-fes-list ul li .mec-event-title{font-size:13px}}.mec-fes-list .mec-event-status{color:#fff!important;border-color:transparent!important}.mec-fes-form .mec-book-confirmed,.mec-fes-list .mec-book-confirmed{background:#50d477!important}.mec-fes-form .mec-book-pending,.mec-fes-list .mec-book-pending{background:#fcbe69!important}.mec-fes-form .mec-book-rejected,.mec-fes-list .mec-book-rejected{background:#fe686a!important}.mec-fes-form .mec-book-other,.mec-fes-list .mec-book-other{background:#40d9f1!important}.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view{font-size:11px;padding:0;border:0;background:#f7f8f9;float:right;margin-left:5px;border-radius:2px;transition:all .2s ease}.mec-fes-list ul li .mec-fes-event-export a,.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view a{padding:4px 8px;display:inline-block;border:1px solid #e7e8e9;border-radius:2px;color:#789;position:relative}@media (max-width:600px){.mec-fes-list ul li .mec-fes-event-export a,.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view a{font-size:10px}}.mec-fes-list ul li .mec-fes-event-remove:hover{cursor:pointer;background:#f96f8a;border-color:#f96f8a;color:#fff}.mec-fes-list ul li .mec-fes-event-export a:hover,.mec-fes-list ul li .mec-fes-event-view a:hover{background:#40d9f1;color:#fff;border-color:#40d9f1}.mec-fes-form-top-actions a,.mec-fes-list-top-actions a{position:relative;border:none;border-radius:3px;color:#fff!important;display:inline-block;font-size:13px;line-height:1;text-transform:none;font-weight:400;text-decoration:none;cursor:pointer;margin-bottom:20px!important;margin-right:10px;line-height:1;letter-spacing:0;padding:15px 22px;background:#39c36e;box-shadow:0 1px 7px -3px #39c36e!important;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;text-decoration:unset}.mec-fes-form-top-actions a:hover,.mec-fes-list-top-actions a:hover{background:#222;color:#fff}.mec-fes-list-top-actions a{font-weight:600;text-transform:capitalize}.mec-fes-form-top-actions a:before{content:"";border:solid #fff;border-width:0 2px 2px 0;display:inline-block;padding:6px;margin-right:5px;vertical-align:sub;transform:rotate(135deg);-webkit-transform:rotate(135deg)}.mec-fes-form .mec-form-row,.mec-fes-list .mec-form-row{margin-bottom:10px;clear:both}.mec-fes-form label{font-size:13px;display:block;color:#798f96;font-weight:400;padding:0 0 4px 2px}.mec-fes-form input+label{padding-top:8px;padding-left:3px;margin:0;display:inline-block;vertical-align:top}.mec-fes-form .post-status{float:right!important;margin:0 5px;color:#fff;padding:0 10px;border-radius:12px;font-style:italic;font-size:18px}.mec-fes-form input[type=email],.mec-fes-form input[type=number],.mec-fes-form input[type=password],.mec-fes-form input[type=tel],.mec-fes-form input[type=text],.mec-fes-form select,.mec-fes-form textarea{min-width:inherit;width:auto;display:inline;min-height:30px;font-size:13px;padding:10px;margin-bottom:20px;clear:both;background:#fff;border:1px solid #cfeff5;box-shadow:0 2px 5px rgba(207,239,245,.38) inset;border-radius:3px;height:40px;max-width:280px;color:#798f96;font-family:inherit}.mec-fes-form input{background:#fff!important;border-radius:3px!important;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important}.mec-fes-form textarea{height:80px}.mec-fes-form input::-webkit-input-placeholder{color:#798f96}.mec-fes-form input::-moz-placeholder{color:#798f96}.mec-fes-form input:-ms-input-placeholder{color:#798f96}.mec-fes-form input:-moz-placeholder{color:#798f96}#mec_more_info_target{width:100%}@media only screen and (min-width:961px){.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=text],.mec-fes-form textarea{width:100%;display:inline-block}}@media only screen and (max-width:768px){.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=text],.mec-fes-form textarea{width:100%}}.mec-fes-form input[type=text]#mec_fes_title{padding:5px 10px;min-height:32px;height:50px;background:#fff!important;max-width:100%;font-size:19px;font-weight:400}.mec-fes-form input[type=checkbox],.mec-fes-form input[type=radio]{display:inline!important;float:left;margin:5px 5px 0 0}.mec-fes-form input[type=email]:focus,.mec-fes-form input[type=number]:focus,.mec-fes-form input[type=password]:focus,.mec-fes-form input[type=tel]:focus,.mec-fes-form input[type=text]:focus,.mec-fes-form select:focus,.mec-fes-form textarea:focus{border:1px solid #aaa;color:#444;background:#fff;-moz-box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);box-shadow:0 0 3px rgba(0,0,0,.2);outline:0}.mec-form-row .mec-color{cursor:pointer}.mec-form-row.mec-available-color-row span{margin:10px;width:14px;height:14px;display:inline-block;margin-right:6px;border-radius:20px 20px 20px 20px;vertical-align:middle}.mec-form-row.mec-available-color-row span:first-of-type{margin-left:0}.mec-fes-form.mec-fes-form .mec-tooltip{display:inline}.mec-fes-form-cntt .dashicons-editor-help{display:block}.mec-fes-form .mec-tooltip:hover:after,.mec-fes-form .mec-tooltip:hover:before{display:none}.mec-fes-form.mec-fes-form .mec-tooltip{display:inline-flex;bottom:7px}.mec-fes-form .mec-tooltip .box{min-width:300px;max-width:600px;display:inline-block;left:26px;top:50%;transform:translateY(-50%);padding:0;margin-top:8px;background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.3;position:absolute;z-index:9999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s}#webnus-dashboard .mec-fes-form .mec-tooltip .box p,.mec-fes-form .mec-tooltip .box p{color:#fff;font-size:14px;line-height:1.3;margin:0}.mec-fes-form .mec-tooltip:hover .box{visibility:visible;opacity:1}.mec-fes-form .mec-tooltip:hover .box{padding:20px;border-radius:8px}.mec-fes-form .mec-tooltip .box h5{color:#fff;font-size:17px;font-weight:600;margin:-30px -20px;padding:20px 0;text-align:center;margin-bottom:10px;background:#3a3f44;border-bottom:1px solid #32363a;border-radius:6px 6px 0 0;z-index:9999}#webnus-dashboard .mec-fes-form .mec-tooltip .box p a,.mec-fes-form .mec-tooltip .box p a{color:#40d9f1;margin-top:10px;margin-left:0;font-weight:400;position:relative;text-decoration:none;display:block;width:max-content}.mec-fes-form .mec-tooltip .box a:hover{color:#f90}.mec-fes-form .mec-tooltip .box:after{display:block;position:absolute!important;top:100%!important;right:50%!important;margin-top:-6px!important;margin-right:-6px!important;width:12px!important;height:24px!important;overflow:hidden!important;transform:rotate(-90deg)!important}.mec-fes-form .mec-tooltip .box:before{display:block;content:''!important;position:absolute!important;width:12px;height:12px;left:-10px!important;top:50%!important;transform:translate(50%,-50%) rotate(-45deg)!important;background-color:#535a61!important;box-shadow:0 8px 9px -4px #535a61!important;z-index:0!important}.mec-fes-form .mec-tooltip .box.top{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-fes-form .mec-tooltip .box.top:after{top:50%!important;right:100%!important}.mec-fes-form .mec-tooltip .box.top:before{left:50%!important;top:100%!important}.mec-fes-form .mec-tooltip .box.bottom{left:50%;top:auto;bottom:0;transform:translate(-50%,100%);margin-bottom:-20px;margin-left:-10px}.mec-fes-form .mec-tooltip .box.bottom:after{top:0!important;right:50%!important;background-color:#3a3f44!important}.mec-fes-form .mec-tooltip .box.bottom:before{left:50%!important;top:-7px!important;transform:translateX(-50%);background-color:#3a3f44!important}.mec-fes-form .mec-tooltip .box.left{left:auto;right:26px;top:50%;transform:translateY(-50%)}.mec-fes-form .mec-tooltip .box.left:before{right:0!important;left:auto!important;top:50%!important}.mec-fes-form .mec-tooltip{display:inline-block;position:relative;margin-right:10px;cursor:help;bottom:5px;left:3px}.mec-fes-form .mec-tooltip:last-child{margin-right:0}.mec-fes-form .mec-tooltip:hover:after{background:#313130;border-radius:5px;bottom:24px;color:#fff;content:attr(title);left:-75px;padding:10px;position:absolute;z-index:98;width:240px}.mec-fes-form .mec-tooltip:hover:before{border:solid;border-color:#313130 transparent;border-width:6px 6px 0;bottom:18px;content:"";left:30%;position:absolute;z-index:99}.mec-fes-form .mec-tooltip .dashicons-before:before{font-size:24px;color:#008aff;line-height:37px}.mec-fes-form .mec-tooltip a:focus{box-shadow:none}.mec-form-row .bootstrap_unvalid{display:block;border:2px solid red;position:relative;display:inline-block;border-bottom:1px dotted #000}.mec-fes-form .mec-tooltiptext{visibility:hidden;width:120px;background-color:red;color:#fff;text-align:center;border-radius:6px;padding:5px 0;position:absolute;z-index:1}.mec-fes-form .mec-tooltip .content p a{display:none}@media only screen and (min-width:961px){.mec-fes-form .mec-fes-form-cntt,.mec-fes-form .mec-fes-form-sdbr{width:68%;float:left;padding-right:20px}.mec-fes-form .mec-fes-form-sdbr{width:32%;padding-right:0;padding-left:20px}.mec-fes-submit-mobile{display:none}}.mec-fes-form .mec-meta-box-fields{padding:0 20px 20px;border:1px solid #cfeff5;margin-bottom:20px!important;box-shadow:0 2px 6px -3px #cfeff5;border-radius:3px;background:#fff}.mec-fes-form .mec-meta-box-fields h4{margin:0 -20px;font-size:15px;font-weight:600;letter-spacing:0;color:#40d9f1;text-transform:capitalize;padding:15px 20px;background:#ecfcff;margin-bottom:20px;border-radius:3px}.mec-fes-sub-button{width:100%}.mec-available-color-row span.color-selected{border:3px solid #fff;box-sizing:content-box;box-shadow:0 0 0 2px #40d9f1,0 2px 8px -1px #40d9f1}.mec-fes-loading:before{content:url(../img/ajax-loader.gif);background:0 0;border-style:none;display:block;margin-left:47%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text]{width:190px;margin-right:1.4%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-1,.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-2{width:120px;margin-right:10px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].widefat{width:100%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row{border-bottom:none;padding-bottom:10px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-6{width:39%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row button{margin-right:0;padding:9px 26px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row button.mec-add-hourly-schedule-button{font-size:12px;height:30px;line-height:25px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row .description{display:inline-block;border-left:1px dashed #bfcacc;margin-left:12px;line-height:28px;padding-left:12px;margin-top:5px;font-style:italic}@media only screen and (max-width:768px){.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text]{width:100%!important}}#mec_fes_form_message{max-width:838px;margin:10px auto;display:block!important;text-align:center}.mec-wrap .mec-totalcal-box{position:relative;border:1px solid #efefef;padding:20px 5px;margin:0 0 20px;background:#fafafa;overflow:hidden;box-shadow:0 3px 2px 0 rgba(0,0,0,.012);min-height:78px}.mec-wrap .mec-totalcal-box i{float:left;margin:0;width:36px;height:36px;background:#fff;border:1px solid #efefef;text-align:center;padding:10px 0;font-size:15px;color:#888}.mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-wrap .mec-totalcal-box input,.mec-wrap .mec-totalcal-box select{width:auto;min-height:36px;height:36px;line-height:36px;background:#fff;font-size:13px;color:#777;border:1px solid #efefef;margin:0 0 0 -1px;float:left;padding:0 5px;font-family:Roboto,Helvetica,Arial,sans-serif}.mec-wrap .mec-totalcal-box input[type=submit]{cursor:pointer;padding:0 16px;text-transform:uppercase;font-size:11px;font-family:Montserrat,Helvetica,Arial,sans-serif;transition:all .21s ease}.mec-wrap .mec-totalcal-box input[type=submit]:hover{background:#222;color:#fff}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{display:inline-block;text-transform:uppercase;font-family:Montserrat,Helvetica,Arial,sans-serif;font-size:11px;padding:0 12px;cursor:pointer}.mec-wrap .mec-totalcal-box .mec-totalcal-view span:hover{color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view span.mec-totalcalview-selected{color:#fff;background:#40d9f1;border-color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view{text-align:right;float:right}.mec-wrap .mec-totalcal-box input[type=search]{width:calc(100% - 36px)}@media only screen and (min-width:961px) and (max-width:1200px){.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-3,.mec-wrap .mec-totalcal-box .col-md-4,.mec-wrap .mec-totalcal-box .col-md-5{width:100%;float:none;padding-bottom:20px;clear:both;overflow:hidden}}@media only screen and (min-width:768px) and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-4{position:relative;right:10px;top:20px;width:initial}.mec-wrap .mec-totalcal-box .col-md-5{padding-bottom:0}.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:767px){.mec-wrap .mec-totalcal-box .mec-totalcal-view{float:none}.mec-wrap .mec-totalcal-box .col-md-4{padding-bottom:0}}@media only screen and (max-width:479px){.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 8px;font-size:10px}.mec-wrap .mec-totalcal-box input[type=submit]{padding:0 10px;font-size:10px}}@media only screen and (min-width:961px){.mec-wrap .mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5,.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-3{width:100%;float:none;padding-bottom:20px;clear:both;overflow:hidden}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-4{position:absolute;right:10px;top:20px;width:initial}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5{padding-bottom:0;width:100%}}@media (min-width:961px) and (max-width:1200px){.mec-full-calendar-wrap .mec-totalcal-box{padding:20px 20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:50%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{padding-bottom:20px!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select{min-width:calc(100% - 36px)}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select{min-width:calc(30% - 10px)}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3:last-child select{min-width:calc(50% - 19px)}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view{margin-right:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:10px;text-align:center}}@media (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box{padding:20px 20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:50%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{padding-bottom:10px!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select{min-width:calc(100% - 36px);margin-bottom:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view{margin-right:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:10px;text-align:center}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:100%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:absolute;top:20px}}@media (min-width:780px) and (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:absolute;top:20px}}@media(max-width:780px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select{width:calc(50% - 18px)!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:unset;padding-right:0}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:20%;text-align:center;font-size:10px}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 7px;margin-top:20px}}@media(max-width:480px){.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:20%;text-align:center;font-size:10px}}.mec-search-form{padding:20px 10px}.mec-search-form .mec-dropdown-wrap{display:table;width:100%}.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{padding:0 10px;float:left;min-height:55px}.mec-search-form .mec-date-search,.mec-search-form .mec-text-input-search{width:50%;min-height:36px;display:block}.mec-full-calendar-wrap .mec-search-form .mec-date-search,.mec-full-calendar-wrap .mec-search-form .mec-text-input-search{width:100%}.mec-full-calendar-wrap .mec-search-form .col-md-3,.mec-full-calendar-wrap .mec-search-form .col-md-5,.mec-full-calendar-wrap .mec-search-form .col-md-6,.mec-full-calendar-wrap .mec-search-form .col-md-8{padding:0}.mec-widget .mec-search-form .mec-date-search,.mec-widget .mec-search-form .mec-text-input-search{width:100%}.mec-widget .mec-search-form .mec-text-input-search{margin-top:10px}.mec-search-form .mec-date-search{clear:left}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:table-cell;float:none}.mec-widget .mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block}.mec-wrap .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select{width:calc(100% - 36px);margin-bottom:20px}.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 106px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}@media only screen and (max-width:767px){.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{width:100%;float:none}.mec-search-form .mec-date-search{min-height:55px}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:50%;float:left}}@media only screen and (max-width:960px){.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 124px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}}@media only screen and (max-width:479px){.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:100%;float:none}}.ui-datepicker{background-color:#fff;border:1px solid #66afe9;border-radius:4px;box-shadow:0 0 8px rgba(102,175,233,.6);display:none;margin-top:4px;padding:10px;width:240px}.ui-datepicker a,.ui-datepicker a:hover{text-decoration:none;cursor:pointer}.ui-datepicker a:hover,.ui-datepicker td:hover a{color:#2c6396;-webkit-transition:color .1s ease-in-out;-moz-transition:color .1s ease-in-out;-o-transition:color .1s ease-in-out;transition:color .1s ease-in-out}.ui-datepicker .ui-datepicker-header{margin-bottom:4px;text-align:center}.ui-datepicker .ui-datepicker-title{font-weight:700}.ui-datepicker .ui-datepicker-next,.ui-datepicker .ui-datepicker-prev{cursor:default;font-family:dashicons;-webkit-font-smoothing:antialiased;font-style:normal;font-weight:400;height:20px;line-height:1.4;margin-top:2px;width:20px}.ui-datepicker .ui-datepicker-prev{float:left;text-align:left}.ui-datepicker .ui-datepicker-next{float:right;text-align:center}.ui-datepicker .ui-datepicker-prev:before{content:"\f341"}.ui-datepicker .ui-datepicker-next:before{content:"\f345"}.ui-datepicker .ui-icon{display:none}.ui-datepicker .ui-datepicker-calendar{table-layout:fixed;width:100%}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker .ui-datepicker-calendar th{text-align:center;padding:4px 0}.ui-datepicker .ui-datepicker-calendar td{border-radius:4px;-webkit-transition:background-color .1s ease-in-out,color .1s ease-in-out;-moz-transition:background-color .1s ease-in-out,color .1s ease-in-out;-o-transition:background-color .1s ease-in-out,color .1s ease-in-out;transition:background-color .1s ease-in-out,color .1s ease-in-out}.ui-datepicker .ui-datepicker-calendar td:hover{background-color:#eee;cursor:pointer}.ui-datepicker .ui-datepicker-calendar td a{text-decoration:none}.ui-datepicker .ui-datepicker-current-day{background-color:#4289cc}.ui-datepicker .ui-datepicker-current-day a{color:#fff}.ui-datepicker .ui-datepicker-calendar .ui-datepicker-unselectable:hover{background-color:#fff;cursor:default}.mec-owl-theme .owl-dots .owl-dot{border:none}.event-carousel-type1-head .mec-event-image{position:relative;min-height:150px}.event-carousel-type1-head .mec-event-image img{width:100%}.mec-event-carousel-content .mec-event-carousel-title a{transition:all .2s ease}.event-carousel-type1-head .mec-event-date-carousel{position:absolute;top:25px;left:1px;font-size:41px;width:160px;color:#fff;font-weight:500;background-color:#40d9f1;padding-left:21px;height:97px;line-height:2.3;padding-right:85px}.event-carousel-type1-head .mec-event-date-carousel:after{content:"";position:absolute;display:inline-block;z-index:-1;bottom:-13px;left:5px;width:0;border-width:13px;border-style:solid;border-color:transparent transparent #40d9f1 transparent;transform:rotate(45deg)}.event-carousel-type1-head .mec-event-date-info{font-size:12px;font-weight:300;position:absolute;top:27px;left:75px}.event-carousel-type1-head .mec-event-date-info-year{font-size:12px;font-weight:300;position:absolute;top:45px;left:75px}.mec-event-carousel-content{border:1px solid #e8e8e8;border-top:none;margin-top:-5px;padding:34px 9px 11px 37px}.mec-event-carousel-content .mec-event-carousel-title a{font-size:23px;font-weight:500;color:#000;letter-spacing:-1px}.mec-event-carousel-content p{font-size:14px;color:#7a7272;font-weight:300}.mec-owl-crousel-skin-type1 .owl-item .mec-event-article{padding:0 19px}.mec-event-carousel-type1 .owl-page.active span{background-color:#00aeef;height:14px;width:14px}.mec-event-carousel-type1 .mec-event-carousel-content{margin-bottom:15px;box-shadow:0 1px 2px rgba(0,0,0,.04);transition:all .27s ease}.mec-event-carousel-type1 .mec-event-carousel-content:hover{box-shadow:0 0 35px rgba(0,0,0,.07)}@media only screen and (min-width:768px) and (max-width:1000px),(min-width:270px) and (max-width:448px){.event-carousel-type1-head .mec-event-date-carousel{font-size:25px;line-height:2.5;padding-right:70px;height:64px;width:120px}.event-carousel-type1-head .mec-event-date-carousel:after{left:7px}.event-carousel-type1-head .mec-event-date-info{font-size:10px;top:13px;left:55px}.event-carousel-type1-head .mec-event-date-info-year{font-size:10px;top:25px;left:55px}.event-carousel-type1-head .mec-event-date-carousel:after{top:48px}}.event-carousel-type2-head{background:#fff;border:1px solid #e6e6e6}.event-carousel-type2-head .mec-event-carousel-content-type2{margin-top:15px;min-height:182px}.event-carousel-type2-head .mec-event-carousel-content-type2 .mec-event-date-info{font-size:15px;color:#9a9a9a;font-weight:300}.event-carousel-type2-head .mec-event-carousel-content-type2 .mec-event-carousel-title{font-size:26px;font-weight:700;color:#1c1d21;margin-top:15px;letter-spacing:-1px}.mec-event-carousel-content-type2 .mec-event-carousel-title a{color:inherit}.mec-event-carousel-type2 .event-carousel-type2-head .mec-event-carousel-content-type2 p{font-size:16px;font-weight:300;color:#444}.event-carousel-type2-head .mec-event-footer-carousel-type2{margin-top:33px;position:relative}.mec-event-carousel-type2 .mec-event-footer-carousel-type2 .mec-event-sharing-wrap{left:0}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-event-sharing-wrap>li{border:none;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button{border:1px solid #e4e4e4;float:right;padding:7px 23px 7px;font-size:12px;text-transform:uppercase;color:#707070;font-weight:500;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button:hover{color:#fff}.mec-event-article .event-carousel-type2-head{padding:10%;margin-right:-1px}.mec-event-carousel-type2 .mec-owl-carousel .owl-wrapper-outer{border-right:1px solid #e6e6e6}.mec-wrap .mec-event-carousel-type2 .owl-next,.mec-wrap .mec-event-carousel-type2 .owl-prev,.mec-wrap .mec-event-carousel-type3 .owl-next,.mec-wrap .mec-event-carousel-type3 .owl-prev,.mec-wrap .mec-event-carousel-type4 .owl-next,.mec-wrap .mec-event-carousel-type4 .owl-prev{transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:47%;background-color:transparent!important}.mec-event-carousel-type2 .owl-next{right:-60px}.mec-event-carousel-type2 .owl-prev{left:-60px}.mec-event-carousel-type2 .owl-next i,.mec-event-carousel-type2 .owl-prev i,.mec-event-carousel-type3 .owl-next i,.mec-event-carousel-type3 .owl-prev i,.mec-event-carousel-type4 .owl-next i,.mec-event-carousel-type4 .owl-prev i{font-size:40px;color:#282828}.mec-event-carousel-type2 .owl-next i:hover,.mec-event-carousel-type2 .owl-prev i:hover,.mec-event-carousel-type3 .owl-next i:hover,.mec-event-carousel-type3 .owl-prev i:hover{color:#000;cursor:pointer}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}@media only screen and (min-width:320px) and (max-width:768px){.mec-event-carousel-type2 .owl-next,.mec-event-carousel-type2 .owl-prev,.mec-event-carousel-type3 .owl-next,.mec-event-carousel-type3 .owl-prev,.mec-event-carousel-type4 .owl-next,.mec-event-carousel-type4 .owl-prev{position:initial;top:100%}}.mec-event-carousel-type3 .mec-event-article{margin:0 10px}.event-carousel-type3-head .mec-event-image,.event-carousel-type3-head .mec-event-image img{width:100%;height:auto}.event-carousel-type3-head .mec-event-footer-carousel-type3{background:#fff;display:inline-block;width:calc(100% - 40px);margin-top:-74px;position:relative;margin-left:20px;margin-right:20px;margin-bottom:6px;padding:8% 11%;box-shadow:0 2px 10px -2px rgba(0,0,0,.2)}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button{border:1px solid #e4e4e4;text-transform:uppercase;float:right;padding:7px 23px 7px;font-size:12px;color:#707070;font-weight:500}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button:hover{color:#fff}.mec-event-footer-carousel-type3 span{font-size:15px;color:#9a9a9a;font-weight:300;display:block;margin-top:30px}.mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:29px;font-weight:700}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:26px;font-weight:700;color:#1c1d21;margin-top:15px;letter-spacing:-1px}.mec-event-footer-carousel-type3 .mec-event-carousel-title a{color:inherit}.event-carousel-type3-head .mec-event-footer-carousel-type3 p{font-size:16px;font-weight:300;color:#444!important;margin-bottom:36px}.mec-event-carousel-type3 .owl-next{right:-70px}.mec-event-carousel-type3 .owl-prev{left:-70px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap{left:11%}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}.event-carousel-type3-head .mec-end-date-label{display:inline;margin-left:2px}.event-carousel-type4-head.clearfix{position:relative;overflow:hidden;background:#fff}.event-carousel-type4-head .mec-event-overlay{position:absolute;left:0;right:0;bottom:0;top:0;width:auto;height:auto;background-color:rgba(36,36,36,.4);transition:all .33s ease-in-out}.mec-event-hover-carousel-type4{font-size:15px;color:#fff;position:absolute;bottom:0;padding:50px 35px;transition:all .33s ease-in-out;opacity:0;visibility:hidden}.mec-event-carousel-type4 .mec-event-article{margin:0 10px}.mec-event-carousel-type4 .mec-event-article:hover .mec-event-hover-carousel-type4{opacity:1;visibility:visible}.mec-event-hover-carousel-type4 .mec-event-icon{font-size:18px;float:left;margin-right:14px;color:#fff;padding:13px}.mec-event-hover-carousel-type4 .mec-event-date{font-size:11px;text-transform:uppercase;font-weight:400;line-height:1.6}.mec-event-hover-carousel-type4 .mec-event-date span{display:block;font-weight:700;font-size:14px}.mec-event-hover-carousel-type4 .mec-event-title{color:#fff;margin:20px 0 38px;font-size:16px;font-weight:700;text-transform:uppercase;font-style:normal}.mec-event-hover-carousel-type4 .mec-btn-wrapper{text-align:left}.mec-event-hover-carousel-type4 .mec-event-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:10px 14px;letter-spacing:1.5px;font-size:11px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none}.mec-event-hover-carousel-type4 .mec-event-button:hover{color:#191919;background-color:#fff;border-color:#fff;border-radius:1px}.mec-event-carousel-type4 .owl-next{right:-70px}.mec-event-carousel-type4 .owl-prev{left:-70px}.mec-carousel-type4-head{margin-bottom:25px}.mec-carousel-type4-head-title{padding:0 11px;text-align:left;font-weight:700;font-size:20px;color:#000}.mec-carousel-type4-head-link{text-align:right;padding:0 11px}.mec-carousel-type4-head-link a{background:#222;color:#fff;padding:10px 38px;transition:all .3s ease}.mec-carousel-type4-head-link a:hover,.mec-carousel-type4-head-link a:visited{color:#fff}@media (max-width:960px){.mec-event-carousel-type4 .owl-stage{left:-50px}}.mec-wrap .mec-event-countdown-style1{color:#fff;padding:0!important;display:table;background:#437df9}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1{z-index:5;padding:50px 1% 50px 4%;display:table-cell;float:none;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2{background-color:rgba(0,0,0,.05);height:100%;padding-top:0;display:table-cell;float:none;position:relative;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{background-color:#f8f8f8;display:table-cell;float:none;text-align:center;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style1 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{content:"";position:absolute;display:inline-block;z-index:1;top:50%;margin-top:-11px;right:-24px;width:0;border-width:12px;border-style:solid;border-color:transparent transparent transparent #4077ed}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style1 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto}.mec-event-countdown-style1 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style1 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (min-width:1200px){.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%}}@media (max-width:960px){.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%;transform:rotate(90deg)}}@media (max-width:480px){.mec-event-countdown-style1 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{padding:10px 5px;min-width:50px;margin:3px 1px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:8px}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{display:inline}}.mec-wrap .mec-event-countdown-style2{color:#fff;padding:30px 0;background:#437df9;max-width:600px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part3{width:100%;float:none;vertical-align:middle;padding:50px 10% 50px 10%}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2{padding-top:12%;padding-bottom:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style2 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date-place{text-align:left;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 8px}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#222;background:#fff;transition:all .24s ease}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button:hover{background:#222;color:#fff}.mec-event-countdown-style2 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0}.mec-event-countdown-style2 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style2 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (max-width:767px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:80px;padding:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:26px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:11px}}@media only screen and (max-width:479px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:40px;padding:15px 10px;margin:2px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:20px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:9px}}@media (max-width:380px){.mec-event-countdown-style2 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{padding:10px 4px;margin:4px 1px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:7px}}.mec-wrap .mec-event-countdown-style3{color:#fff;padding:0;background:#282828;display:table;width:100%}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1{width:68%;padding:50px 1% 50px 4%;vertical-align:middle;display:table-cell;position:relative}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:32%;display:table-cell;position:relative;padding-bottom:0;padding-top:0}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 img{width:100%;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{font-weight:300;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{color:#fff;font-size:36px;letter-spacing:-2px;font-weight:700;line-height:1;margin-top:-10px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style3 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style3 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto;position:absolute;top:40px;right:20px}.mec-event-countdown-style3 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style3 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:11px;color:#888;margin:8px 0 0;line-height:1}.mec-event-countdown-style3 .mec-event-date{width:176px;height:96px;background:#40d9f1;color:#fff;font-size:13px;position:absolute;left:-27px;top:146px}.mec-event-countdown-style3 .mec-event-date:after{content:"";position:absolute;display:inline-block;z-index:1;bottom:-18px;left:8px;width:0;border-width:19px;border-style:solid;border-color:transparent transparent #40d9f1 transparent;transform:rotate(45deg)}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:50px;position:absolute;top:36px;left:12px;letter-spacing:-3px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:80px;top:26px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:80px;top:45px}.mec-event-countdown-style3 .mec-event-countdown-part-details{padding-top:35px;margin-bottom:50px;min-height:100px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-title{font-size:17px;color:#fff;line-height:1.4;padding-right:20px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link{color:#fff;font-size:12px;position:relative;padding-left:22px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link:before{content:"";display:inline-block;width:18px;border-top:1px solid #fff;position:absolute;left:0;top:8px}.mec-event-countdown-style3 .mec-event-title-link{position:absolute;left:190px;top:152px}.event-carousel-type1-head .mec-event-date-carousel:before,.mec-event-countdown-style3 .mec-event-date:before{content:'';position:absolute;left:0;bottom:0;z-index:2;width:100%;height:96px;background:0 0;display:inline-block;box-shadow:0 5px 5px rgba(0,0,0,.12)}@media only screen and (min-width:960px){.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown li{padding:10px}.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:31px}}@media (max-width:959px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:100%;display:block}.mec-event-countdown-style3 .mec-event-title-link{top:190px}.mec-event-countdown-style3 .mec-event-countdown{top:96px}.mec-event-countdown-style3 .mec-event-date{left:0;top:190px}.mec-event-countdown-style3 .mec-event-date:after{display:none}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{display:inline}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:150px}}@media (max-width:767px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:26px;letter-spacing:-1px}.mec-event-countdown-style3 .mec-event-title-link{left:130px}.mec-event-countdown-style3 .mec-event-date{width:120px;font-size:10px;height:63px}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:36px;top:20px;left:4px;letter-spacing:-2px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:52px;top:12px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:52px;top:28px}}@media (max-width:380px){.mec-event-countdown-style3 .mec-event-title-link{left:10px;top:260px}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:300px}.mec-event-countdown-style3 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:10px 5px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:8px}}.mec-slider-t1-wrap{width:100%;padding:60px 90px;background:#f7f7f7;min-height:560px;position:relative}.mec-slider-t1{height:500px;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t1 .mec-event-article{position:relative;height:500px}.mec-slider-t1 .mec-slider-t1-img{position:relative;background-size:cover!important;background-position:center!important;width:50%;height:100%;float:right;margin:0;overflow:hidden}.mec-slider-t1 .mec-slider-t1-content{width:50%;float:left;height:100%;background:#fff;padding:6%}.mec-slider-t1-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t1-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:54px;height:54px;line-height:48px;border-radius:0;text-align:center;background:#fff;box-shadow:0 2px 11px 0 rgba(0,0,0,.045);transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-27px;cursor:pointer}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 29px 0 rgba(0,0,0,.095)}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:12px;color:#282828;transition:all .21s ease}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{font-size:13px;color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t1{margin:0 auto;max-width:900px}}@media only screen and (max-width:960px){.mec-slider-t1 .mec-slider-t1-content,.mec-slider-t1 .mec-slider-t1-img{width:100%;float:none}.mec-slider-t1 .mec-slider-t1-img{height:300px}.mec-slider-t1,.mec-slider-t1 .mec-event-article{height:auto}}@media only screen and (max-width:768px){.mec-slider-t1-wrap{padding:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:10px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}}@media only screen and (max-width:479px){.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t2-wrap{width:100%;padding:0;background:#fff;min-height:600px;position:relative}.mec-slider-t2 .mec-event-article{height:600px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t2 .mec-slider-t2-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:70%;height:100%;margin:0;overflow:hidden}.mec-slider-t2 .mec-slider-t2-content{width:50%;position:absolute;right:0;top:60px;bottom:60px;padding:5%}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern *{color:#fff}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-content,.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t2-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:84px;cursor:pointer}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}.mec-wrap.colorskin-custom .mec-slider-t2 .mec-event-article .mec-event-date.mec-color{color:#fff}@media only screen and (min-width:961px){.mec-slider-t2{margin:0 auto;max-width:1200px}}@media only screen and (max-width:960px){.mec-slider-t2 .mec-slider-t2-content,.mec-slider-t2 .mec-slider-t2-img{width:100%;float:none;position:static}.mec-slider-t2 .mec-slider-t2-img{height:300px}.mec-slider-t2 .mec-event-article{height:auto}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px}}@media only screen and (max-width:479px){.mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:22px}}.mec-slider-t3-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t3 .mec-event-article{height:700px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t3 .mec-slider-t3-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;opacity:.68;z-index:1}.mec-slider-t3 .mec-slider-t3-content{width:50%;height:auto;vertical-align:middle;display:table;position:absolute;left:0;top:0;bottom:0;padding:0 2% 0 7%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t3 .mec-slider-t3-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-content,.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-slider-t3-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t3-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{border-color:#40d9f1}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-22px;cursor:pointer}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next{right:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:50px;font-weight:300}.mec-slider-t3-content.mec-event-grid-modern .mec-event-description{font-size:19px}}@media only screen and (max-width:767px){.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}}@media only screen and (max-width:479px){.mec-slider-t3 .mec-slider-t3-content{width:100%}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t4-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t4 .mec-event-article{height:700px;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t4 .mec-slider-t4-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;z-index:1}.mec-slider-t4 .mec-slider-t4-content{width:auto;max-width:700px;background:rgba(37,37,37,.94)!important;height:auto;vertical-align:middle;display:table;position:absolute;left:8%;top:19%;padding:3%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t4 .mec-slider-t4-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-content,.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:13px;padding:0 42px;line-height:49px;height:50px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t4-content.mec-event-grid-modern .mec-slider-t4-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next{right:60px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{right:112px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:767px){.mec-slider-t4 .mec-slider-t4-content{width:100%;left:0;top:auto;bottom:0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t5-wrap{width:auto;max-width:570px;padding:0;margin:0 auto 25px;background:#f7f7f7;min-height:480px;position:relative}.mec-slider-t5{height:auto;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t5 .mec-event-article{position:relative;height:auto}.mec-slider-t5 .mec-slider-t5-img{position:relative;background-size:cover!important;background-position:center!important;width:100%;height:300px;float:none;margin:0;overflow:hidden}.mec-slider-t5 .mec-slider-t5-content{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-slider-t5 .mec-events-content p{margin-bottom:20px}.mec-slider-t5-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t5-wrap .mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:14px 34px;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t5 .mec-slider-t5-col6{width:50%;float:left;height:100%}.mec-slider-t5 .mec-slider-t5-col6 i{font-size:42px;float:left;margin-right:7px;height:58px}.mec-slider-t5 .mec-slider-t5-col6 h6{text-transform:uppercase;font-size:17px;padding:4px 0;display:inline;color:#444}.mec-slider-t5 .mec-slider-t5-col6 address{font-size:12px;margin-bottom:0}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t5-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:768px){.mec-slider-t5 .mec-slider-t5-col6{width:100%;margin:10px 0}}@media only screen and (max-width:479px){.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.mec-single-modern .mec-events-event-image{text-align:center}.mec-single-modern .mec-events-event-image img{width:100%}.mec-single-modern .mec-single-event-bar{background-color:#f7f7f7;margin:20px 0 0;padding:15px;display:table;width:100%}.mec-single-modern .mec-single-event-bar>div{display:table-cell}.mec-single-modern .mec-single-event-bar>div i{font-size:20px;vertical-align:middle}.mec-single-modern .mec-single-event-bar>div .mec-time-comment{font-size:12px;color:#999}.mec-single-modern .mec-single-event-bar>div h3{text-transform:uppercase;font-size:16px;font-weight:700;padding-bottom:5px;display:inline;color:#000;padding-left:10px}.mec-single-modern .mec-single-event-bar>div dd{font-size:14px;color:#8d8d8d;padding-left:34px;margin-bottom:0}.mec-single-modern .col-md-4 .mec-frontbox{margin-top:-50px;margin-bottom:70px;padding:20px;border:none;background:#f7f7f7;box-shadow:none}.mec-next-occurrence li{list-style:none}@media only screen and (min-width:960px){.mec-single-modern .col-md-4 .mec-frontbox{margin-left:20px}}@media only screen and (max-width:960px){.mec-single-modern .mec-single-event-bar>div{display:block}}.lity-content>div{overflow:auto}.mec-next-event-details li{list-style:none;margin-top:20px}.mec-next-event-details h6{text-transform:uppercase;font-size:13px;padding-bottom:5px;display:inline;color:#222;padding-left:0}.mec-next-event-details abbr{display:block;padding-left:12px;color:#8d8d8d}.mec-next-event-details i{margin-right:10px;margin-left:12px}.mec-next-event-details i:before{color:#40d9f1}.mec-next-event-details a{text-align:center;display:block;background:#fff;padding:6px 0;font-size:11px;font-weight:400;letter-spacing:0;border:1px solid #e3e3e3;transition:.3s}.mec-single-modal.mec-single-modern .mec-single-title{text-align:center;padding:15px 10px 0}.admin-bar .mec-single-modal.mec-single-modern .mec-single-title{padding-top:40px}.mec-single-modal.mec-single-modern .mec-single-event-bar{padding:5px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div dd{font-size:13px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div h3{font-size:15px}@media only screen and (min-width:960px){.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-left:0}}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-top:10px;margin-bottom:10px}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox.mec-event-meta{padding:0}.mec-single-modal .mec-event-meta dd.mec-organizer-email a,.mec-single-modal .mec-event-meta dd.mec-organizer-url a{font-size:12px;display:block}.mec-modal-wrap{max-width:60vw;max-height:90vh!important;background:#fff;box-shadow:0 1px 55px rgba(0,0,0,.5);overflow-x:hidden!important}@media(max-width:1023px){.mec-modal-wrap{max-width:80vw}}.mec-single-modal .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li,.mec-single-modal .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a.mec-events-button{display:block;text-align:center}body .featherlight .featherlight-content{background:0 0;overflow:unset;z-index:9999}body .featherlight .featherlight-close-icon{position:fixed;top:40px;right:40px;background:0 0;color:#fff;border:1px solid #fff;border-radius:0}body .featherlight .featherlight-close-icon:hover{background:#fff;color:#000;border:1px solid #000}@media (max-width:320px){.mec-wrap span.flip-clock-divider{width:20px}.mec-single-event .mec-events-meta-group-countdown{padding:15px 12%}}@media (max-width:414px){.mec-wrap span.flip-clock-divider{width:30px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 7%}}@media (max-width:480px){.mec-wrap span.flip-clock-divider{width:7px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 1%}}@media(max-width:1366px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:20px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 15px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:48px}}@media(max-width:1280px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:14px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:15px 10px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:38px}}@media(min-width:961px) and (max-width:1024px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:7px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:15px 5px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:14px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul li a div{font-size:30px}}@media(max-width:640px){body .mec-modal-wrap .mec-single-modal.featherlight-close-icon{top:14px;right:14px}}@media(max-width:480px){.featherlight .featherlight-content,body .mec-modal-wrap{max-width:100%}body .mec-modal-wrap.flip-clock-divider .flip-clock-label{display:block}}@media (max-width:414px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:50px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 65px}body .featherlight-content .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 2px 20px 2px!important}body .featherlight-content .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:3px!important}}@media (max-width:375px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:50px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 45px}}@media (max-width:320px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:20px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 40px}}.mec-events-toggle{max-width:960px;margin-left:auto;margin-right:auto}.mec-events-toggle .mec-toggle-item{border:1px solid #e4e4e4;margin-bottom:15px;box-shadow:0 10px 15px #f3f3f3}.mec-events-toggle .mec-toggle-item-inner{cursor:pointer;position:relative;padding:30px 60px 30px 15px;background:#fff;transition:all .3s ease;min-height:100px;display:table;width:100%;border-collapse:separate}.mec-events-toggle .mec-toggle-item-inner:hover{background:#fbfbfb}.mec-toggle-item-col{width:200px;border-right:1px solid #e3e3e3;margin-right:15px;display:table-cell;padding-right:5px}.mec-toggle-item-col .mec-event-date{font-size:38px;line-height:40px;float:left;margin-right:8px}.mec-toggle-item-col .mec-event-month,.mec-toggle-item-col .mec-time-details{text-transform:uppercase;font-size:12px;line-height:14px;padding-top:4px;font-weight:700}.mec-toggle-item-col .mec-event-detail{font-size:10px}.mec-toggle-item-col .mec-event-day{margin-top:9px;color:silver;font-family:Roboto,sans-serif;font-size:35px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.mec-events-toggle .mec-toggle-title{color:#000;font-size:23px;font-weight:600;margin-bottom:0;transition:all .3s ease;display:table-cell;text-align:left;max-width:calc(100% - 200px);padding-left:15px;vertical-align:middle}.mec-events-toggle .mec-toggle-item-inner span.event-color{width:5px;height:100%;position:absolute;left:-1px;top:0;bottom:0;border-radius:0;margin:0}.mec-events-toggle .mec-toggle-item-inner i{position:absolute;font-size:30px;right:25px;top:50%;transform:translate(0,-50%);cursor:pointer}.mec-events-toggle .mec-toggle-item.is-open i.mec-sl-plus:before{content:"\e615"}.mec-events-toggle .mec-toggle-item.is-open .mec-toggle-title{background:#f8f8f8;cursor:pointer}.mec-events-toggle .mec-toggle-content{border-top:1px solid #e4e4e4}.mec-events-toggle .mec-toggle-content .mec-modal-wrap{margin:0;max-width:100%;box-shadow:none}.mec-events-toggle .mec-toggle-content .mec-modal-wrap .mec-single-event{margin:0}.mec-events-toggle .mec-toggle-content .mec-single-event-bar,.mec-events-toggle .mec-toggle-content h1.mec-single-title{display:none}.mec-events-toggle .media-links a{margin-bottom:0}.mec-events-toggle .mec-toggle-content .mec-toggle-meta{margin-bottom:14px}.mec-events-toggle #mec_speakers_details.mec-frontbox{padding:0;margin:0}.mec-events-toggle .mec-toggle-item h3.mec-speakers{border:none;text-align:left}.mec-events-toggle .mec-toggle-item h3.mec-speakers:before{content:"\e063";font-family:simple-line-icons;border:none;position:relative;display:inline-block;left:unset;bottom:unset;font-size:22px;font-weight:400;padding:0 11px 0 28px;vertical-align:middle}@media only screen and (max-width:767px){.mec-toggle-item-inner .mec-toggle-item-col{float:none;width:100%;border-right:none;margin-bottom:5px;display:block;max-width:100%;padding-left:15px}.mec-events-toggle .mec-toggle-title{display:block;width:100%;max-width:100%}}.mec-events-agenda-wrap{margin:10px 0;border:1px solid #e9e9e9;padding-left:20px;box-shadow:0 2px 2px rgba(0,0,0,.03)}.mec-events-agenda{padding:0;border-bottom:1px solid #e9e9e9;overflow:hidden}.mec-agenda-date-wrap{width:210px;padding-top:15px;float:left;font-size:13px}.mec-agenda-date-wrap i,.mec-agenda-event i{font-size:11px;color:#aaa;margin-right:4px;margin-left:1px}.mec-agenda-event i{vertical-align:middle;margin-right:1px}.mec-agenda-events-wrap{float:left;width:calc(100% - 210px);background:#f9f9f9;padding:15px}.mec-agenda-time{font-size:11px;color:#707070;padding-right:10px;width:138px;display:inline-block}.mec-agenda-event-title{position:relative;padding-left:14px}.mec-agenda-event-title a{font-family:Roboto,Montserrat,Helvetica,Arial,sans-serif;font-size:14px;font-weight:600;color:#333}.mec-agenda-event-title span.event-color{width:9px;height:9px;position:absolute;left:0;top:4px;margin:0}.mec-agenda-date-wrap span.mec-agenda-day{color:#aaa;font-size:12px}@media only screen and (max-width:767px){.mec-agenda-date-wrap,.mec-agenda-events-wrap{float:none;width:100%}.mec-events-agenda span.mec-agenda-event-title{display:block;width:100%}.mec-agenda-event-title span.event-color{top:7px}.mec-agenda-event-title a{font-size:13px}}.mec-yearly-view-wrap{margin:0 0 15px;border:1px solid #e6e6e6;box-shadow:0 2px 4px rgba(0,0,0,.04);border-bottom-width:4px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar{max-width:100%;width:232px;padding:10px;background:#fff;margin:10px;display:inline-block}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar dl dt{transition:none;height:30px;width:30px;line-height:30px;border-radius:0;font-size:12px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar .mec-calendar-events-sec{padding:10px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar .mec-has-event:after{width:4px;height:4px;bottom:3px;margin-left:-2px}.mec-yearly-view-wrap .mec-calendar-side .mec-calendar-table{min-height:200px}.mec-calendar.mec-yearly-calendar .mec-calendar-table-head dl dt{background:#f9f9f9;font-size:13px}.mec-calendar.mec-yearly-calendar .mec-calendar-table-title{text-align:center;font-size:15px;font-weight:700;color:#222;margin-top:-5px;padding-bottom:5px}.mec-yearly-view-wrap .mec-yearly-calendar-sec{min-height:200px;width:538px;overflow:hidden;float:left;background:#f8f8f8;padding:15px}.mec-yearly-view-wrap .mec-yearly-agenda-sec{min-height:200px;width:calc(100% - 538px);float:left;padding:0 0 0 20px;overflow:hidden}.mec-yearly-view-wrap .mec-yearly-title-sec{position:relative;padding:15px;text-align:center;border-bottom:1px solid #e6e6e6;box-shadow:0 1px 3px rgba(0,0,0,.02)}.mec-yearly-view-wrap .mec-yearly-title-sec h2{font-size:30px;line-height:40px;color:#333;margin:0;font-weight:700}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year,.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year{position:absolute;top:50%;margin-top:-15px;min-width:30px;height:30px;line-height:30px;padding:0 8px;text-align:center;background:#fff;color:#666;font-size:14px;border:1px solid #eee;border-radius:2px;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease;cursor:pointer}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year{right:auto;left:20px;padding-right:14px}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year{left:auto;right:20px;padding-left:14px}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year i,.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-yearly-view-wrap .mec-events-agenda.mec-selected{box-shadow:-10px 0 0 0 #fffcf2,0 -1px 0 #fbebb6;background:#fffcf2;border-color:#fbebb6;color:#f9af29}@media only screen and (max-width:959px){.mec-yearly-view-wrap .mec-yearly-calendar-sec{width:268px;padding:10px 5px}.mec-yearly-view-wrap .mec-yearly-agenda-sec{width:calc(100% - 268px);padding:0 0 0 10px}}@media only screen and (max-width:767px){.mec-yearly-view-wrap .mec-yearly-agenda-sec,.mec-yearly-view-wrap .mec-yearly-calendar-sec{width:100%;float:none}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar{width:auto}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar dl dt{width:14.2%}.mec-yearly-view-wrap .mec-yearly-title-sec h2{font-size:25px}}.mec-yearly-view-wrap .mec-agenda-event i,.mec-yearly-view-wrap .mec-agenda-time{display:none}@media only screen and (min-width:768px){.mec-yearly-view-wrap .mec-events-agenda-wrap{margin-top:0;border:none;padding-left:0;box-shadow:none}.mec-yearly-view-wrap .mec-agenda-date-wrap{width:174px;font-size:11px;padding-top:10px}.mec-yearly-view-wrap .mec-agenda-events-wrap{width:calc(100% - 174px);padding:10px}.mec-yearly-view-wrap .mec-agenda-event-title a{font-size:13px}.mec-yearly-view-wrap .mec-agenda-event-title span.event-color{width:8px;height:8px}.mec-yearly-view-wrap .mec-agenda-date-wrap span.mec-agenda-day{font-size:11px}.mec-yearly-view-wrap .mec-yearly-calendar-sec{box-shadow:-2px 0 5px rgba(0,0,0,.03) inset}}@media only screen and (max-width:1200px){.mec-yearly-view-wrap .mec-agenda-event-title a{font-size:12px;padding-right:6px}}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table{padding-bottom:10px;border-bottom:none}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt:hover{cursor:pointer}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-has-no-event,.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-has-no-event:hover{color:#bbb;cursor:default}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-day-active{background:#40d9f1;color:#fff;position:relative}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-day-active:after{content:'';position:absolute;display:block;bottom:-20px;left:50%;margin-left:-10px;width:0;border-width:10px;border-style:solid;border-color:#40d9f1 transparent transparent transparent}.mec-timetable-events-list{padding:10px 20px;border:none;margin:0}.mec-timetable-events-list .mec-timetable-event{padding:10px 0;border-bottom:1px dashed #ddd}.mec-timetable-events-list .mec-timetable-event:last-child{border:none}.mec-timetable-event .mec-timetable-event-span{font-size:12px;color:#444;padding-right:30px;line-height:22px}.mec-timetable-events-list .mec-timetable-event i{font-size:13px;color:#aaa;margin-right:3px;vertical-align:baseline}.mec-timetable-event .mec-timetable-event-span a{color:#333}.mec-timetable-event .mec-timetable-event-time{font-size:11px}.mec-timetable-event .mec-timetable-event-time i{vertical-align:text-bottom}.mec-timetable-event .mec-timetable-event-title{font-size:13px}.mec-timetable-event .mec-timetable-event-title .event-color{width:10px;height:10px}.mec-timetable-events-list .mec-timetable-event.mec-util-hidden{display:none}.mec-timetable-events-list.mec-util-hidden{display:none}@media only screen and (min-width:768px){.mec-timetable-events-list{display:table;width:100%;margin:10px 0 20px}.mec-timetable-events-list .mec-timetable-event{display:table-row;padding:0;border:none;background:#fff}.mec-timetable-events-list .mec-timetable-event:hover{background:#fafafa}.mec-timetable-event .mec-timetable-event-span{display:table-cell;padding:10px 15px;border-bottom:1px solid #ebebeb}.mec-timetable-events-list .mec-timetable-event:last-child .mec-timetable-event-span{border-bottom:none}}@media only screen and (max-width:767px){.mec-timetable-event .mec-timetable-event-title{display:block;width:100%;padding:5px 0 10px;font-weight:700}}.mec-timetable-t2-wrap{border:1px solid #e6e6e6;background:#fafafa;padding:0 15px 15px;overflow:hidden;box-shadow:0 3px 2px 0 rgba(0,0,0,.012)}.mec-timetable-t2-col{width:20%;float:left;min-height:20px;padding-right:1px;background:0 0}.mec-ttt2-title{background:#fafafa;color:#333;font-size:13px;font-weight:600;text-transform:uppercase;letter-spacing:1px;text-align:center;padding:25px 10px 10px;margin-bottom:1px}.mec-timetable-t2-col .mec-event-article{position:relative}.mec-timetable-t2-col .mec-event-article .event-color{position:absolute;width:auto;height:auto;left:0;right:0;top:0;bottom:0;margin:0;z-index:1;border-radius:2px}.mec-timetable-t2-content{position:relative;z-index:2;color:#fff;padding:15px 15px 20px;text-align:left;height:130px;margin-bottom:1px;overflow:hidden}.mec-timetable-t2-content .mec-event-title{line-height:22px;margin-bottom:13px;white-space:nowrap;padding-right:1px;overflow:hidden}.mec-timetable-t2-content .mec-event-title a{color:#fff;font-size:15px;font-weight:600;white-space:nowrap;overflow:hidden}.mec-timetable-t2-content div{color:#fff;font-size:11px;font-weight:400;line-height:19px;white-space:nowrap}.mec-timetable-t2-content div i{font-size:12px;margin-right:4px}@media only screen and (max-width:960px){.mec-timetable-t2-col{width:100%;float:none}}@media(min-width:961px){.mec-timetable-col-7{width:14.28%}.mec-timetable-col-6{width:16.6666%}}.mec-timetable-t3-wrap td{position:relative;padding:0}.mec-timetable-t3-wrap td a{width:100%;display:block;min-height:110px}.mec-weather-box{padding:15px 0}.mec-weather-head{min-height:90px;padding:5px 0;clear:both;overflow:hidden;margin-bottom:25px;border-radius:10px;background:#238af5;position:relative}.mec-weather-icon-box{float:left;width:80px;height:80px;border-radius:10px;overflow:hidden;background:#238af5}.mec-weather-icon{width:80px;height:80px;display:inline-block;border-radius:10px}.mec-weather-summary{float:left;width:calc(100% - 80px);padding-left:10px;margin:10px 0;height:60px}.mec-weather-summary-report{font-size:15px;color:rgba(255,255,255,.68);margin-bottom:6px}.mec-weather-summary-temp{font-family:Roboto,Sans-serif;font-weight:300;color:#fff;font-size:29px;line-height:1}.degrees-mode{background:rgba(0,0,0,.2);cursor:pointer;font-weight:300;font-size:18px;padding:4px 5px;line-height:1;color:#fff;position:absolute;border-radius:8px;bottom:16px;left:16px}.mec-weather-extras{width:auto;padding:10px 15px 0 15px;float:right;min-height:80px;color:#fff;font-size:13px;line-height:1}.mec-weather-extras{width:auto;padding:10px 15px 0 15px;float:right;min-height:80px;color:#fff;font-size:13px;line-height:1}.mec-weather-extras div{line-height:20px;height:20px}.mec-weather-extras span{color:rgba(255,255,255,.68);font-size:12px;text-transform:uppercase}.mec-weather-extras var{font-size:11px;letter-spacing:.4px}.mec-weather-icon.clear-day,.mec-weather-icon.clear-night{background-image:url(../img/mec-weather-icon-01.png)}.mec-weather-icon.partly-sunny-day,.mec-weather-icon.partly-sunny-night{background-image:url(../img/mec-weather-icon-02.png)}.mec-weather-icon.partly-cloudy-day,.mec-weather-icon.partly-cloudy-night{background-image:url(../img/mec-weather-icon-03.png)}.mec-weather-icon.cloudy,.mec-weather-icon.fog,.mec-weather-icon.wind{background-image:url(../img/mec-weather-icon-04.png)}.mec-weather-icon.thunderstorm{background-image:url(../img/mec-weather-icon-05.png)}.mec-weather-icon.rain{background-image:url(../img/mec-weather-icon-06.png)}.mec-weather-icon.hail,.mec-weather-icon.sleet,.mec-weather-icon.snow{background-image:url(../img/mec-weather-icon-07.png)}.mec-av-spot-wrap{width:auto;max-width:1200px;padding:0;margin:0 auto 25px;background:#f7f7f7;min-height:480px;position:relative}.mec-av-spot{height:auto;border:1px solid #eee;box-shadow:0 6px 12px -4px rgba(0,0,0,.05)}.mec-av-spot .mec-event-article{position:relative;height:auto}.mec-av-spot .mec-av-spot-img{position:relative;background-size:cover!important;background-position:center!important;width:100%;height:330px;float:none;margin:0;overflow:hidden}.mec-av-spot .mec-av-spot-content,.mec-av-spot .mec-av-spot-head{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-av-spot .mec-av-spot-head{background:#222;color:#fff;min-height:80px}.mec-av-spot .mec-av-spot-head .mec-av-spot-box{padding-top:25px;font-size:13px;color:#ddd}.mec-av-spot .mec-av-spot-head .mec-av-spot-box span{color:#40d9f1;font-size:40px;font-weight:700;font-style:italic}.mec-av-spot .mec-av-spot-head .mec-event-countdown{text-align:center;padding-top:10px;display:table;table-layout:fixed;margin:0 auto;float:right}.mec-av-spot .mec-av-spot-head .mec-event-countdown li{display:table-cell;padding:10px 20px;position:relative;height:60px}.mec-av-spot .mec-av-spot-head .mec-event-countdown p{margin-bottom:0}.mec-av-spot .mec-events-content p{margin-bottom:20px}.mec-av-spot-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-av-spot-wrap .mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:14px 34px;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-av-spot-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-av-spot .mec-av-spot-col6{width:50%;float:left;height:100%}.mec-av-spot .mec-av-spot-col6 i{font-size:42px;float:left;margin-right:7px;height:58px}.mec-av-spot .mec-av-spot-col6 h6{text-transform:uppercase;font-size:17px;padding:4px 0;display:inline;color:#444}.mec-av-spot .mec-av-spot-col6 address{font-size:12px;margin-bottom:0}.mec-av-spot-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-av-spot-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05)}@media only screen and (max-width:768px){.mec-av-spot .mec-av-spot-col6{width:100%;margin:10px 0}}@media only screen and (max-width:479px){.mec-av-spot-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.mec-events-masonry-wrap{display:block;width:auto}.mec-masonry-item-wrap{width:calc(33.33% - 30px);padding:0;margin:0 15px 30px;min-height:10px;position:relative}.isotope-item{z-index:2}.isotope-hidden.isotope-item{pointer-events:none;z-index:1}.isotope,.isotope .isotope-item{-webkit-transition-duration:.8s;-moz-transition-duration:.8s;transition-duration:.8s}.isotope{-webkit-transition-property:height,width;-moz-transition-property:height,width;transition-property:height,width}.isotope .isotope-item{-webkit-transition-property:-webkit-transform,opacity;-moz-transition-property:-moz-transform,opacity;transition-property:transform,opacity}.mec-events-masonry-cats{padding:10px;margin-bottom:25px;text-align:center;clear:both;list-style:none outside none}.mec-events-masonry-cats a{border-radius:2px;padding:6px 12px;font-size:13px;line-height:1.2;color:#333;font-weight:400;margin-top:0!important;text-align:center;display:inline-block;width:auto;border:2px solid transparent;transition:all .2s ease}.mec-events-masonry-cats a:hover{border-color:#40d9f1;color:#333}.mec-events-masonry-cats a.mec-masonry-cat-selected{border:2px solid #40d9f1;color:#40d9f1}.mec-masonry{background:#f7f7f7;height:auto;border:1px solid #eee;box-shadow:0 6px 12px -4px rgba(0,0,0,.05)}.mec-masonry .mec-event-article{position:relative;height:auto}.mec-masonry .mec-masonry-img{position:relative;width:100%;height:auto;float:none;margin:0;overflow:hidden}.mec-masonry .mec-masonry-img img{width:100%}.mec-masonry .mec-masonry-content,.mec-masonry .mec-masonry-head{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-masonry .mec-events-content p{margin-bottom:20px}.mec-masonry-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-masonry-item-wrap .mec-event-grid-modern .event-grid-modern-head{min-height:79px;margin-bottom:10px;padding:14px 5%;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-masonry-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-masonry-content.mec-event-grid-modern .mec-event-content{padding-top:20px}.mec-masonry-content.mec-event-grid-modern .mec-event-footer{height:auto}.mec-masonry .mec-masonry-col6 .mec-event-date{font-size:52px;letter-spacing:-2px;line-height:41px;vertical-align:top}.mec-masonry .mec-masonry-col6{width:50%;float:left;height:100%}.mec-masonry .mec-masonry-col6 i{font-size:24px;float:left;margin-right:7px;height:50px}.mec-masonry .mec-masonry-col6 .mec-event-month,.mec-masonry .mec-masonry-col6 h6{text-transform:capitalize;font-size:15px;padding:4px 0;display:inline;color:#444}.mec-masonry .mec-masonry-col6 .mec-event-detail,.mec-masonry .mec-masonry-col6 address{font-size:11px;margin-bottom:0}.mec-masonry-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-masonry-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05)}@media only screen and (max-width:960px){.mec-masonry-item-wrap{width:calc(50% - 30px)}}@media only screen and (max-width:768px){.mec-masonry .mec-masonry-col6{width:100%;margin:10px 0}.mec-masonry-item-wrap{width:calc(100% - 30px)}}@media only screen and (max-width:479px){.mec-masonry-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.btn-wrapper{text-align:center}.countdown-wrapper .btn-wrapper{padding-top:10px;padding-right:0}.countdown-wrapper h5.countdown-message{letter-spacing:5px;font-weight:500;font-size:18px}.blox.dar .countdown-wrapper p,.countdown-wrapper p{color:#888}.countdown-wrapper a.button.black{float:right;margin-right:0}.mec-wrap .threedaydigits .days .flip-clock-label{right:-100px}@media only screen and (min-width:320px) and (max-width:767px){.mec-wrap .flip-clock-wrapper ul{width:29px!important}.mec-wrap .flip-clock-wrapper ul li a div div.inn{font-size:25px!important}.mec-wrap .flip-clock-divider .flip-clock-label{left:0;font-weight:300}.mec-wrap span.flip-clock-divider{width:12px}}@media only screen and (min-width:320px) and (max-width:480px){.mec-wrap .flip-clock-wrapper ul{width:29px!important}.mec-wrap .flip-clock-wrapper ul li a div div.inn{font-size:25px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}.mec-wrap span.flip-clock-divider:first-child{width:0}.mec-wrap span.flip-clock-divider{width:20px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 18%}}@media screen and (min-width:960px) and (max-width:1200px){.mec-wrap .threedaydigits ul{height:50px;width:47px}}@media screen and (min-width:480px) and (max-width:768px){.mec-wrap .threedaydigits ul{height:48px;width:26px!important}.mec-wrap .threedaydigits .flip-clock-label{font-size:8px;left:-8px}}@media screen and (min-width:320px) and (max-width:480px){.mec-wrap .threedaydigits ul{height:48px;width:22px!important}}.mec-wrap .flip-clock-wrapper *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;-o-box-sizing:border-box;box-sizing:border-box;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-o-backface-visibility:hidden;backface-visibility:hidden}.mec-wrap .flip-clock-wrapper a{cursor:pointer;text-decoration:none;color:#ccc}.mec-wrap .flip-clock-wrapper a:hover{color:#fff}.mec-wrap .flip-clock-wrapper ul{list-style:none}.flip-clock-wrapper.clearfix:after,.mec-wrap .flip-clock-wrapper.clearfix:before{content:" ";display:table}.mec-wrap .flip-clock-wrapper.clearfix:after{clear:both}.mec-wrap .flip-clock-wrapper{font:normal 11px "helvetica neue",helvetica,sans-serif;-webkit-user-select:none}.mec-wrap .flip-clock-meridium{background:0 0!important;box-shadow:0 0 0!important;font-size:36px!important}.mec-wrap .flip-clock-meridium a{color:#313333}.mec-wrap .flip-clock-wrapper{text-align:center;position:relative;display:inline-block;padding-bottom:10px}.flip-clock-wrapper:after,.mec-wrap .flip-clock-wrapper:before{content:" ";display:table}.mec-wrap .flip-clock-wrapper:after{clear:both}.mec-wrap .flip-clock-wrapper ul{position:relative;float:left;margin:2px;width:50px;height:50px;font-size:80px;font-weight:700;line-height:87px;border-radius:3px;background:rgba(0,0,0,.21)}.mec-wrap .flip-clock-wrapper ul li{z-index:1;position:absolute;left:0;top:0;width:100%;height:100%;line-height:54px;text-decoration:none!important}.mec-wrap .flip-clock-wrapper ul li:first-child{z-index:2}.mec-wrap .flip-clock-wrapper ul li a{display:block;height:100%;-webkit-perspective:200px;-moz-perspective:200px;perspective:200px;margin:0!important;overflow:visible!important;cursor:default!important}.mec-wrap .flip-clock-wrapper ul li a div{z-index:1;position:absolute;left:0;width:100%;height:50%;font-size:80px;overflow:hidden;outline:1px solid transparent}.mec-wrap .flip-clock-wrapper ul li a div .shadow{position:absolute;width:100%;height:100%;z-index:2}.mec-wrap .flip-clock-wrapper ul li a div.up{-webkit-transform-origin:50% 100%;-moz-transform-origin:50% 100%;-ms-transform-origin:50% 100%;-o-transform-origin:50% 100%;transform-origin:50% 100%;top:0}.mec-wrap .flip-clock-wrapper ul li a div.up:after{content:"";position:absolute;top:24px;left:0;z-index:5;width:100%;height:3px;background-color:rgba(0,0,0,.12)}.mec-wrap .flip-clock-wrapper ul li a div.down{-webkit-transform-origin:50% 0;-moz-transform-origin:50% 0;-ms-transform-origin:50% 0;-o-transform-origin:50% 0;transform-origin:50% 0;bottom:0;border-bottom-left-radius:3px;border-bottom-right-radius:3px}.mec-wrap .flip-clock-wrapper ul li a div div.inn{position:absolute;left:0;z-index:1;width:100%;height:200%;color:#fff;text-shadow:0 0 2px rgba(0,0,0,.25);text-align:center;background-color:#40d9f1;border-radius:3px;font-size:48px}.mec-wrap .flip-clock-wrapper ul li a div.up div.inn{top:0}.mec-wrap .flip-clock-wrapper ul li a div.down div.inn{bottom:0}.mec-wrap .flip-clock-wrapper ul.play li.flip-clock-before{z-index:3}.mec-wrap .flip-clock-wrapper .flip{box-shadow:0 2px 5px rgba(0,0,0,.17)}.mec-wrap .flip-clock-wrapper ul.play li.flip-clock-active{-webkit-animation:asd .5s .5s linear both;-moz-animation:asd .5s .5s linear both;animation:asd .5s .5s linear both;z-index:5}.mec-wrap .flip-clock-divider{float:left;display:inline-block;position:relative;width:18px;height:62px}.mec-wrap .flip-clock-divider:first-child{width:0}.mec-wrap .flip-clock-dot{display:none;background:#323434;width:10px;height:10px;position:absolute;border-radius:50%;box-shadow:0 0 5px rgba(0,0,0,.5);left:5px}.mec-wrap .flip-clock-divider .flip-clock-label{position:absolute;bottom:-1.5em;right:-71px;color:#101010;font-weight:700;text-shadow:none;text-transform:uppercase}.mec-wrap .blox.dark .flip-clock-divider .flip-clock-label{color:#8a8a8a}.mec-wrap .flip-clock-divider.seconds .flip-clock-label{right:-82px}.mec-wrap .flip-clock-dot.top{top:30px}.mec-wrap .flip-clock-dot.bottom{bottom:30px}@-webkit-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@-moz-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@-o-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}.flip-clock-wrapper ul.play li.flip-clock-active .down{z-index:2;-webkit-animation:turn .5s .5s linear both;-moz-animation:turn .5s .5s linear both;animation:turn .5s .5s linear both}@-webkit-keyframes turn{0%{-webkit-transform:rotatex(90deg)}100%{-webkit-transform:rotatex(0)}}@-moz-keyframes turn{0%{-moz-transform:rotatex(90deg)}100%{-moz-transform:rotatex(0)}}@-o-keyframes turn{0%{-o-transform:rotatex(90deg)}100%{-o-transform:rotatex(0)}}@keyframes turn{0%{transform:rotatex(90deg)}100%{transform:rotatex(0)}}.flip-clock-wrapper ul.play li.flip-clock-before .up{z-index:2;-webkit-animation:turn2 .5s linear both;-moz-animation:turn2 .5s linear both;animation:turn2 .5s linear both}@-webkit-keyframes turn2{0%{-webkit-transform:rotatex(0)}100%{-webkit-transform:rotatex(-90deg)}}@-moz-keyframes turn2{0%{-moz-transform:rotatex(0)}100%{-moz-transform:rotatex(-90deg)}}@-o-keyframes turn2{0%{-o-transform:rotatex(0)}100%{-o-transform:rotatex(-90deg)}}@keyframes turn2{0%{transform:rotatex(0)}100%{transform:rotatex(-90deg)}}.flip-clock-wrapper ul li.flip-clock-active{z-index:3}.flip-clock-wrapper ul.play li.flip-clock-before .up .shadow{background:-moz-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,.1)),color-stop(100%,rgba(64,64,64,.68)));background:linear,top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;background:-o-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-ms-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:linear,to bottom,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;-webkit-animation:show .5s linear both;-moz-animation:show .5s linear both;animation:show .5s linear both}.flip-clock-wrapper ul.play li.flip-clock-active .up .shadow{background:-moz-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,.1)),color-stop(100%,rgba(64,64,64,.68)));background:linear,top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;background:-o-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-ms-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:linear,to bottom,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;-webkit-animation:hide .5s .3s linear both;-moz-animation:hide .5s .3s linear both;animation:hide .5s .3s linear both}.flip-clock-wrapper ul.play li.flip-clock-before .down .shadow{background:-moz-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(64,64,64,.68)),color-stop(100%,rgba(0,0,0,.1)));background:linear,top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;background:-o-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-ms-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:linear,to bottom,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;-webkit-animation:show .5s linear both;-moz-animation:show .5s linear both;animation:show .5s linear both}.flip-clock-wrapper ul.play li.flip-clock-active .down .shadow{background:-moz-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(64,64,64,.68)),color-stop(100%,rgba(0,0,0,.1)));background:linear,top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;background:-o-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-ms-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:linear,to bottom,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;-webkit-animation:hide .5s .3s linear both;-moz-animation:hide .5s .3s linear both;animation:hide .5s .2s linear both}@-webkit-keyframes show{0%{opacity:0}100%{opacity:1}}@-moz-keyframes show{0%{opacity:0}100%{opacity:1}}@-o-keyframes show{0%{opacity:0}100%{opacity:1}}@keyframes show{0%{opacity:0}100%{opacity:1}}@-webkit-keyframes hide{0%{opacity:1}100%{opacity:0}}@-moz-keyframes hide{0%{opacity:1}100%{opacity:0}}@-o-keyframes hide{0%{opacity:1}100%{opacity:0}}@keyframes hide{0%{opacity:1}100%{opacity:0}}@font-face{font-family:simple-line-icons;src:url(../fonts/Simple-Line-Icons.eot?v=2.3.1);src:url(../fonts/Simple-Line-Icons.eot?v=2.3.1#iefix) format('embedded-opentype'),url(../fonts/Simple-Line-Icons.woff2?v=2.3.1) format('woff2'),url(../fonts/Simple-Line-Icons.woff?v=2.3.1) format('woff'),url(../fonts/Simple-Line-Icons.ttf?v=2.3.1) format('truetype'),url(../fonts/Simple-Line-Icons.svg?v=2.3.1#simple-line-icons) format('svg');font-weight:400;font-style:normal}[class*=mec-sl-]{font-family:simple-line-icons;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.mec-sl-facebook:before{content:"\e00b"}.mec-sl-twitter:before{content:"\e009"}.mec-sl-google-plus:before{content:"\e60d"}.mec-sl-angle-left:before{content:"\e605"}.mec-sl-angle-right:before{content:"\e606"}.mec-sl-calendar:before{content:"\e075"}.mec-sl-clock-o:before{content:"\e081"}.mec-sl-home:before{content:"\e069"}.mec-sl-phone:before{content:"\e600"}.mec-sl-envelope:before{content:"\e086"}.mec-sl-sitemap:before{content:"\e037"}.mec-sl-map-marker:before{content:"\e096"}.mec-sl-floder:before{content:"\e089"}.mec-sl-wallet:before{content:"\e02a"}.mec-color,.mec-color-before :before,.mec-color-hover:hover,.mec-wrap .mec-color,.mec-wrap .mec-color-before :before,.mec-wrap .mec-color-hover:hover{color:#40d9f1}.mec-bg-color,.mec-bg-color-hover:hover,.mec-wrap .mec-bg-color,.mec-wrap .mec-bg-color-hover:hover{background-color:#40d9f1}.mec-border-color,.mec-border-color-hover:hover,.mec-wrap .mec-border-color,.mec-wrap .mec-border-color-hover:hover{border-color:#40d9f1}.mec-toggle-month-divider.mec-skin-list-events-container{border:1px solid #e8e8e8;margin-bottom:30px;background:#f8f8f8;box-shadow:0 2px 18px -1px rgba(0,0,0,.1);border-radius:2px}.mec-toggle-month-divider .mec-month-divider{margin:0;text-align:left;background:#fff;position:relative;cursor:pointer;border-top:1px solid #e8e8e8}.mec-toggle-month-divider .mec-month-divider span{padding:20px;border-bottom:1px solid #e8e8e8}.mec-toggle-month-divider .mec-month-divider i{position:absolute;right:20px;top:24px;font-size:20px;cursor:pointer}.mec-toggle-month-divider .mec-month-divider span:before{display:none}.mec-toggle-month-divider .mec-month-divider+article{margin-top:20px}.mec-toggle-month-divider .mec-wrap .mec-month-divider:first-of-type{border-top:none}.mec-toggle-month-divider .mec-event-list-accordion .mec-month-divider:not(:first-of-type)~article{display:none}.mec-skin-list-events-container:not(.mec-toggle-month-divider) .mec-month-divider i{display:none}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-month{display:inline-block;padding-top:0}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-date{font-size:14px;line-height:14px;float:none;display:inline-block;margin-right:0;font-weight:700}.mec-events-toggle .mec-toogle-inner-month-divider.mec-toggle-item-inner{padding:20px 60px 30px 15px}.mec-toogle-inner-month-divider .mec-toggle-month-inner-image{float:left;clear:right;width:100px;margin-right:20px;margin-left:10px}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-detail{margin-top:-6px}.mec-toogle-inner-month-divider .mec-toggle-item-col{float:none;width:100%;margin-top:10px;display:block;border:none}.mec-events-toggle .mec-toogle-inner-month-divider .mec-toggle-title{font-size:19px;display:block;padding-top:10px}@media only screen and (max-width:768px){.mec-events-toggle .mec-toogle-inner-month-divider .mec-toggle-title{font-size:14px;padding-top:0}.mec-toogle-inner-month-divider .mec-toggle-item-col{margin-top:0}.mec-toogle-inner-month-divider .mec-toggle-month-inner-image{width:70px}}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled:before,.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-featured:before{z-index:1;position:absolute;top:25px;right:-37px;font-size:11px;letter-spacing:1px;text-transform:uppercase;background:#04de78;padding:2px 40px;color:#fff;-ms-transform:rotate(45deg);-webkit-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition:.5s cubic-bezier(.25,.5,.06,.85);transition:.5s cubic-bezier(.25,.5,.06,.85);content:attr(data-style)}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled,.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-featured{overflow:hidden;position:relative}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled:before{background:#de0404}.mec-daily-view-date-events article:before,ul.mec-weekly-view-dates-events article:before{padding:7px 40px!important;top:27px!important}.mec-event-grid-classic article .mec-fc-style,.mec-event-grid-minimal article .mec-fc-style,.mec-event-grid-simple article .mec-fc-style,.mec-timetable-wrap article .mec-fc-style,.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article.mec-event-cover-modern .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{font-size:9px;letter-spacing:.5px;text-transform:uppercase;background:#04de78;padding:2px 7px;color:#fff;position:relative;margin-left:5px;border-radius:2px}.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-modern.mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-minimal article .mec-fc-style:before,.mec-event-grid-simple article .mec-fc-style:before,.mec-timetable-wrap article .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article .mec-fc-style:before,.mec-wrap .mec-event-list-modern article .mec-fc-style:before,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style:before{width:0;height:0;border-top:4px solid transparent!important;border-right:5px solid;border-bottom:4px solid transparent;margin:0;top:50%;left:-4px;transform:translateY(-4.5px);position:absolute;content:'';color:#04de78}.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-event-grid-classic article.mec-label-canceled:before,.mec-event-grid-classic article.mec-label-featured:before,.mec-event-grid-minimal article.mec-label-canceled:before,.mec-event-grid-minimal article.mec-label-featured:before,.mec-event-grid-simple article.mec-label-canceled:before,.mec-event-grid-simple article.mec-label-featured:before,.mec-timetable-wrap article.mec-label-canceled:before,.mec-timetable-wrap article.mec-label-featured:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled:before,.mec-wrap .mec-event-list-accordion article.mec-label-featured:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled:before,.mec-wrap .mec-event-list-modern article.mec-label-featured:before{display:none}.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{top:-3px;font-size:11px;margin-left:10px}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style:before,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-canceled:before,.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-featured:before{-ms-transform:none;-webkit-transform:none;transform:none;-webkit-transition:none;transition:none;top:271px;right:0}.mec-timetable-wrap article .mec-fc-style{top:-2px;font-size:10px}.mec-wrap article.mec-event-cover-modern .mec-fc-style{padding:5px 9px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:24px;display:inline-block;border-radius:2px}.mec-skin-grid-events-container .mec-wrap .mec-event-grid-clean .mec-event-article:before{-ms-transform:none;-webkit-transform:none;transform:none!important;-webkit-transition:none;transition:none;top:22px!important;right:22px!important;padding:0 10px!important}.mec-event-grid-minimal article .mec-fc-style,.mec-event-grid-simple article .mec-fc-style{top:-4px;font-size:10px;margin-left:10px}.mec-event-grid-classic article .mec-fc-style{padding:5px 20px;font-size:12px;margin-top:8px;display:inline-block}.mec-hourly-schedule-speaker-info{background:#fff;padding:30px;border:1px solid #e6e6e6;max-width:740px;width:740px;margin-left:-110px}.mec-hourly-schedule-speaker-thumbnail{float:left;max-width:30%;width:30%}.mec-hourly-schedule-speaker-name{font-weight:700;font-size:26px;line-height:1.2;color:#333;text-transform:uppercase}.mec-hourly-schedule-speaker-details{float:left;width:69%;padding-left:25px}.mec-hourly-schedule-speaker-job-title{font-size:16px;line-height:1.3;margin-bottom:4px}.mec-hourly-schedule-speaker-description{font-size:14px;font-weight:400;color:#6d7683;line-height:1.7;text-align:left}.mec-hourly-schedule-speaker-contact-information a i{color:#6b6b6b;background:#ebebeb;line-height:29px;margin:9px 7px 9px 0;width:30px;height:30px;display:inline-block;text-align:center;transition:all .2s ease;font-size:15px;cursor:pointer;border-radius:3px}.mec-hourly-schedule-speaker-contact-information a i:hover{background:#222;color:#fff}@media only screen and (max-width:479px){.mec-hourly-schedule-speaker-thumbnail{float:none;max-width:none;margin-right:0;margin-bottom:15px;width:100%}.mec-hourly-schedule-speaker-thumbnail img{width:100%}.mec-hourly-schedule-speaker-details{padding-left:0}.mec-hourly-schedule-speaker-info{width:90%;margin:0 auto}}.mec-profile .mec-profile-bookings{border:2px solid #e6e6e6;text-align:center}.mec-profile .mec-profile-bookings tbody tr:first-child{background:#f7f7f7;font-weight:700;text-transform:capitalize}.mec-profile .mec-profile-bookings tbody tr{border-bottom:1px solid #e6e6e6;font-size:14px}.mec-profile .mec-profile-bookings tbody tr td{border:1px solid #e6e6e6;padding:10px;text-align:center;word-break:initial}.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:53%;text-align:left}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8) i{color:#fe686a}.mec-profile .mec-event-status{padding:5px 10px;color:#fff;border-radius:2px;font-size:12px;line-height:12px;letter-spacing:.4px}.mec-profile .mec-event-status.mec-book-confirmed{background:#50d477}.mec-profile .mec-event-status.mec-book-pending{background:#fcbe69}.mec-profile .mec-event-status.mec-book-rejected{background:#fe686a}.mec-profile .mec-event-date{font-size:12px;color:#888}.mec-event-date,.mec-event-status{text-align:center}.mec-event-date .mec-tooltip,.mec-event-status .mec-tooltip{position:relative;width:fit-content;margin:auto}.mec-profile i{font-size:15px;color:#008aff;vertical-align:text-bottom;margin-right:4px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{min-width:250px;max-width:300px;display:inline-block;top:-8px;left:50%;margin-top:0;transform:translate(-50%,-100%);padding:0;background-color:#000;color:#fff;font-weight:400;font-size:14px;letter-spacing:.5px;line-height:1.5;position:absolute;z-index:99999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #535a61;padding:5px 10px 6px;border-radius:8px;text-align:center;font-style:normal;opacity:0;visibility:hidden;display:none}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{font-size:13px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;letter-spacing:1.1px;font-weight:500}.mec-event-date .mec-tooltip:hover .box:after,.mec-event-status .mec-tooltip:hover .box:after{content:'';position:absolute;width:12px;height:12px;left:calc(50% - 12px);bottom:-12px;transform:translate(50%,-50%) rotate(-45deg);background-color:#000;box-shadow:0 8px 9px -4px #535a61}.mec-event-status .mec-tooltip .box{min-width:100px}.mec-event-status.mec-book-confirmed .mec-tooltip .box,.mec-event-status.mec-book-confirmed .mec-tooltip:hover .box:after{background-color:#50d477}.mec-event-status.mec-book-rejected .mec-tooltip .box,.mec-event-status.mec-book-rejected .mec-tooltip:hover .box:after{background-color:#fe686a}.mec-event-status.mec-book-pending .mec-tooltip .box,.mec-event-status.mec-book-pending .mec-tooltip:hover .box:after{background-color:#fcbe69}.mec-event-date .mec-tooltip:hover .box,.mec-event-status .mec-tooltip:hover .box{opacity:1;visibility:visible;display:block}.mec-profile .mec-event-status{padding:0}.mec-profile .mec-booking-number-of-attendees{font-size:13px;color:#888}.mec-profile .mec-booking-number-of-attendees i,.mec-profile .mec-profile-bookings-view-invoice i{font-size:15px;color:#008aff;vertical-align:text-bottom;margin-right:4px}.mec-booking-attendees{background:#fff;padding:10px}.mec-booking-attendees{width:850px;text-align:center}.mec-booking-attendees-wrapper{border:2px solid #e6e6e6;font-size:14px}.mec-booking-attendees-head{display:table;width:100%;background:#f7f7f7;border-bottom:1px solid #e6e6e6;font-weight:700}.mec-booking-attendees-head span,.mec-booking-attendees-head-content>span{vertical-align:middle;display:table-cell;padding:7px;border-right:1px solid #e6e6e6;font-size:12px}.mec-booking-attendees-head-content{display:table;width:100%;border-bottom:1px solid #e6e6e6}.mec-booking-attendees-wrapper .mec-booking-attendees-head-content:last-child{border:none}.mec-booking-attendees-head span:nth-child(1),.mec-booking-attendees-head-content>span:nth-child(1){width:4%}.mec-booking-attendees-head span:nth-child(2),.mec-booking-attendees-head-content>span:nth-child(2){width:20%}.mec-booking-attendees-head span:nth-child(3),.mec-booking-attendees-head-content>span:nth-child(3){width:24%}.mec-booking-attendees-head span:nth-child(4),.mec-booking-attendees-head-content>span:nth-child(4){width:26%}.mec-booking-attendees-head span:nth-child(5),.mec-booking-attendees-head-content>span:nth-child(5){width:26%}@media only screen and (max-width:759px){.mec-booking-attendees{width:470px}.mec-booking-attendees-head span,.mec-booking-attendees-head-content>span{word-break:break-all}}@media(max-width:1366px){.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:6%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:40%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:12%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:8%}}@media(max-width:1024px){.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:30%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:15%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:10%}}@media(max-width:780px){.mec-profile .mec-profile-bookings tbody tr,.mec-profile i{font-size:12px}.mec-event-date .mec-tooltip .box{min-width:200px}.mec-event-status .mec-tooltip .box{min-width:90px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{padding:4px 5px!important}.mec-profile .mec-profile-bookings tbody tr{font-size:12px}}@media(max-width:480px){.mec-profile .mec-booking-number-of-attendees,.mec-profile .mec-profile-bookings tbody tr,.mec-profile i{font-size:8px!important}.mec-profile .mec-profile-bookings tbody tr td{padding:3px}.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:19%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:12%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:18%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:13%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:13%}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{font-size:8px}.mec-event-date .mec-tooltip .box{min-width:75px}.mec-event-status .mec-tooltip .box{min-width:70px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{padding:4px 5px!important}}.mec-woo-booking-checkout{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;border-radius:0;margin-bottom:6px;min-width:170px;margin-top:5px;text-align:center}.mec-woo-booking-checkout:hover{background:#222;color:#fff}.mec-woo-booking-checkout:focus,.mec-woo-booking-checkout:visited{color:#fff}.single-mec-events .lity-container{max-width:480px;width:480px}.lity-content .mec-events-meta-group-booking{width:100%;padding:20px 50px;background:#fff}.lity-content .mec-events-meta-group-booking .mec-booking form>h4{text-transform:uppercase;font-size:15px;font-weight:700;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative;text-align:center;line-height:1.2;margin-bottom:10px}.lity-content .mec-events-meta-group-booking .mec-booking form>h4:before{padding:1px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-35px;left:50%}.lity-content .mec-events-meta-group-booking .mec-event-ticket-available,.lity-content .mec-events-meta-group-booking .mec-event-ticket-name,.lity-content .mec-events-meta-group-booking .mec-event-ticket-price,.lity-content .mec-events-meta-group-booking .mec-ticket-variation-name,.lity-content .mec-events-meta-group-booking .mec-ticket-variation-price,.lity-content .mec-events-meta-group-booking label{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:3px 0;clear:none;padding:5px 1em 3px 0;display:inline-block}.lity-content .mec-events-meta-group-booking .mec-event-ticket-available{margin-bottom:12px}.lity-content .mec-events-meta-group-booking select{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:100%;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both;font-family:Montserrat,Helvetica,Arial,sans-serif}.lity-content .mec-events-meta-group-booking input[type=email]{color:#888;border:1px solid #e1e1e1;font-size:14px;display:block;width:100%;outline:0}.lity-content .mec-events-meta-group-booking input{margin-bottom:10px!important}.lity-content .mec-book-ticket-variation h5{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:0;clear:none;padding:5px 1em 3px 0;display:inline-block;text-transform:capitalize;font-family:Montserrat,Helvetica,Arial,sans-serif}.lity-content ul.mec-book-tickets-container{padding:0}.lity-content .mec-events-meta-group-booking input[type=email],.lity-content .mec-events-meta-group-booking input[type=number],.lity-content .mec-events-meta-group-booking input[type=text]{outline:0;font-family:Montserrat,Helvetica,Arial,sans-serif;display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:100%;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both;margin-bottom:2px!important}.lity-content button[type=submit]{position:relative;border:none;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;min-width:170px;margin-top:5px;border-radius:0;margin-bottom:6px}.lity-content button[type=submit]:hover{background:#222}.lity-content .mec-book-tickets-container li{list-style:none}.lity-content .mec-events-meta-group-booking #mec_book_payment_form h4,.lity-content .mec-events-meta-group-booking li h4{font-size:19px;font-weight:700}.lity-content .mec-events-meta-group-booking .mec-book-price-total{display:inline-block;margin-bottom:10px;font-size:26px;color:#39c36e;font-weight:700;padding:10px 0}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li{width:50%}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li:nth-child(even){border:none}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li span{display:block}.lity-content .mec-events-meta-group-booking button[type=submit]:after{display:none;font-family:simple-line-icons;content:"\e098";margin-left:4px;-webkit-animation:rotating 1.2s linear infinite;-moz-animation:rotating 1.2s linear infinite;-ms-animation:rotating 1.2s linear infinite;-o-animation:rotating 1.2s linear infinite;animation:rotating 1.2s linear infinite}.lity-content .mec-events-meta-group-booking button[type=submit].loading:after{display:inline-block}@media only screen and (max-width:480px){.lity-content .mec-events-meta-group-booking{padding:20px;width:340px;margin:0 auto}}.mec-events-meta-group-booking{position:relative}.mec-cover-loader:after{content:'';position:absolute;top:0;right:0;left:0;bottom:0;background:rgba(255,255,255,.5);z-index:99999}.mec-loader{background:rgba(0,0,0,0);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);z-index:9}.mec-loader,.mec-loader:after{border-radius:50%;width:5em;height:5em;z-index:999999999999}.mec-loader{font-size:10px;text-indent:-9999em;border-top:.5em solid rgba(0,0,0,.2);border-right:.5em solid rgba(0,0,0,.2);border-bottom:.5em solid rgba(0,0,0,.2);border-left:.5em solid #fff;-webkit-transform:translateZ(0);-ms-transform:translateZ(0);transform:translateZ(0);-webkit-animation:mecloader 1.1s infinite linear;animation:mecloader 1.1s infinite linear}@-webkit-keyframes mecloader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes mecloader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.mec-google-recaptcha{margin:0 0 20px 16px}.mec-wrap *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mec-wrap :after,.mec-wrap :before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mec-wrap .clearfix:after,.mec-wrap .clearfix:before{content:'\0020';display:block;overflow:hidden;visibility:hidden;width:0;height:0}.mec-wrap .clearfix:after{clear:both}.mec-wrap .clearfix{zoom:1}.mec-wrap .clear,.mec-wrap .clr{clear:both;display:block;overflow:hidden;visibility:hidden}.mec-wrap .clr{visibility:visible;overflow:visible}.mec-container [class*=col-] img{max-width:100%}.mec-container{margin-right:auto;margin-left:auto;padding-left:10px;padding-right:10px}.mec-container:after,.mec-container:before{content:" ";display:table}.mec-container:after{clear:both}@media only screen and (max-width:479px){.mec-container{width:300px}}@media only screen and (min-width:480px) and (max-width:767px){.mec-container{width:420px}}@media only screen and (min-width:768px) and (max-width:960px){.mec-container{width:768px}}@media only screen and (min-width:961px){.mec-container{width:960px}}@media only screen and (min-width:1200px){.mec-container{width:1196px;padding-left:15px;padding-right:15px}}@media only screen and (min-width:1921px){.mec-container{max-width:1690px}}.mec-wrap .row{margin-left:-10px;margin-right:-10px}.mec-wrap .row:after,.mec-wrap .row:before{content:" ";display:table}.mec-wrap .row:after{clear:both}.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9,.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9,.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9,.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{position:relative;min-height:1px;padding-left:10px;padding-right:10px}@media only screen and (min-width:1200px){.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9,.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9,.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9,.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{padding-left:15px;padding-right:15px}.mec-wrap .row{margin-left:-15px;margin-right:-15px}}.mec-container [class*=col-].alpha{padding-left:0}.mec-container [class*=col-].omega{padding-right:0}.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{float:left}.mec-wrap .col-xs-12{width:100%}.mec-wrap .col-xs-11{width:91.66666666666666%}.mec-wrap .col-xs-10{width:83.33333333333334%}.mec-wrap .col-xs-9{width:75%}.mec-wrap .col-xs-8{width:66.66666666666666%}.mec-wrap .col-xs-7{width:58.333333333333336%}.mec-wrap .col-xs-6{width:50%}.mec-wrap .col-xs-5{width:41.66666666666667%}.mec-wrap .col-xs-4{width:33.33333333333333%}.mec-wrap .col-xs-3{width:25%}.mec-wrap .col-xs-2{width:16.666666666666664%}.mec-wrap .col-xs-1{width:8.333333333333332%}@media (min-width:768px){.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9{float:left}.mec-wrap .col-sm-12{width:100%}.mec-wrap .col-sm-11{width:91.66666666666666%}.mec-wrap .col-sm-10{width:83.33333333333334%}.mec-wrap .col-sm-9{width:75%}.mec-wrap .col-sm-8{width:66.66666666666666%}.mec-wrap .col-sm-7{width:58.333333333333336%}.mec-wrap .col-sm-6{width:50%}.mec-wrap .col-sm-5{width:41.66666666666667%}.mec-wrap .col-sm-4{width:33.33333333333333%}.mec-wrap .col-sm-3{width:25%}.mec-wrap .col-sm-2{width:16.666666666666664%}.mec-wrap .col-sm-1{width:8.333333333333332%}}@media (min-width:961px){.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9{float:left}.mec-wrap .col-md-12{width:100%}.mec-wrap .col-md-11{width:91.66666666666666%}.mec-wrap .col-md-10{width:83.33333333333334%}.mec-wrap .col-md-9{width:75%}.mec-wrap .col-md-8{width:66.66666666666666%}.mec-wrap .col-md-7{width:58.333333333333336%}.mec-wrap .col-md-6{width:50%}.mec-wrap .col-md-5{width:41.66666666666667%}.mec-wrap .col-md-4{width:33.33333333333333%}.mec-wrap .col-md-3{width:25%}.mec-wrap .col-md-2{width:16.666666666666664%}.mec-wrap .col-md-1{width:8.333333333333332%}}@media (min-width:1200px){.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9{float:left}.mec-wrap .col-lg-12{width:100%}.mec-wrap .col-lg-11{width:91.66666666666666%}.mec-wrap .col-lg-10{width:83.33333333333334%}.mec-wrap .col-lg-9{width:75%}.mec-wrap .col-lg-8{width:66.66666666666666%}.mec-wrap .col-lg-7{width:58.333333333333336%}.mec-wrap .col-lg-6{width:50%}.mec-wrap .col-lg-5{width:41.66666666666667%}.mec-wrap .col-lg-4{width:33.33333333333333%}.mec-wrap .col-lg-3{width:25%}.mec-wrap .col-lg-2{width:16.666666666666664%}.mec-wrap .col-lg-1{width:8.333333333333332%}}#mec_woo_add_to_cart_btn{min-width:170px;margin-top:5px;text-align:center}.mec-breadcrumbs{border-radius:2px;padding:9px 15px 6px;font-size:11px;color:#8d8d8d;letter-spacing:0;text-transform:none;font-weight:500;margin:auto 15px 33px 15px;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.025)}.mec-breadcrumbs-modern{margin:auto 0 33px 0}.mec-breadcrumbs a{color:#000;padding-left:4px}.mec-breadcrumbs a:hover{text-decoration:underline}.mec-breadcrumbs i{font-size:8px;margin:0 0 0 4px}.mec-breadcrumbs .container{padding-left:20px}.mec-content-notification a{margin-left:5px}.mec-content-notification{background:#f7f7f7;padding:10px 10px 10px;border:1px solid #e8e8e8}.mec-content-notification p{margin-bottom:0}.mec-fes-form #mec-advanced-wraper div:first-child>ul{border:1px solid #cfeff5;width:auto;box-shadow:0 1px 4px -2px #cfeff5;display:block;margin:5px 0 10px;padding:5px 0;border-radius:2px}.mec-fes-form #mec-advanced-wraper div:first-child>ul:last-of-type{margin-bottom:35px}#mec-advanced-wraper div:first-child>ul span{display:none}#mec-advanced-wraper div:first-child>ul *{display:inline-block;background:#fff;font-size:12px;color:#717273;text-align:center}#mec-advanced-wraper div:first-child>ul>li{width:60px;font-weight:700;margin:0 10px 0 0;padding:4px 0;border-right:1px solid #cfeff5}#mec-advanced-wraper div:first-child>ul>ul>li{margin:0;padding:2px 10px;cursor:pointer;border-radius:2px;transition:all .18s ease}.mec-fes-form #mec-advanced-wraper div:first-child>ul>ul>li.mec-active,.mec-fes-form #mec-advanced-wraper div:first-child>ul>ul>li:hover{background:#40d9f1!important;box-shadow:0 1px 9px -3px #40d9f1;color:#fff!important}.mec-search-bar-wrap .mec-search-form .mec-text-input-search{width:83%}.mec-search-bar-wrap .mec-search-form .mec-ajax-search-result .mec-text-input-search{width:100%;float:none}.mec-search-bar-wrap input#mec-search-bar-input{width:calc(100% - 84%);margin-left:11px;background:#40d9f1;Color:#fff;font-weight:400}.mec-text-input-search+input#mec-search-bar-input{margin-left:-3px}.mec-search-bar-wrap input#mec-search-bar-input:hover{background:#000}.mec-wrap.mec-search-bar-wrap .mec-totalcal-box input{float:none}@media(max-width:768px){.mec-search-bar-wrap .mec-search-form .mec-text-input-search{display:inline-block}}@media(max-width:480px){.mec-search-bar-wrap .mec-search-form .mec-text-input-search{width:64%}.mec-search-bar-wrap input#mec-search-bar-input{width:calc(100% - 67%)}}.mec-wrap.mec-search-bar-wrap .mec-totalcal-box{overflow:visible}.mec-ajax-search-result{position:relative}.mec-search-bar-wrap.mec-wrap .mec-totalcal-box input[type=text]{width:calc(100% - 36px)}.mec-search-bar-wrap.mec-wrap .mec-totalcal-box input[type=text]:focus{border-color:#efefef}div#mec-ajax-search-result-wrap{position:absolute;top:100%;opacity:0;visibility:hidden;width:calc(100% - 2px);min-height:50px;left:0;right:0;padding:0 10px;z-index:9999;transition:all .3s ease}.mec-ajax-search-result-events{background:#fff;padding:10px 20px;border:1px solid #efefef;border-top:none}.mec-ajax-search-result-events article:first-of-type{border:none}article.mec-search-bar-result{text-align:left;margin-bottom:0;padding-bottom:25px;padding-top:26px;border-top:1px solid #efefef;transition:all .33s ease;clear:both}.mec-search-bar-result .mec-event-list-search-bar-date{width:64px;height:64px;margin-right:10px;font-size:11px;text-transform:uppercase;float:left;text-align:center;padding-top:2px}.mec-search-bar-result .mec-event-list-search-bar-date span{font-size:40px;line-height:30px;font-weight:700;display:block;margin-bottom:6px;letter-spacing:1px}.mec-search-bar-result .mec-event-image{float:left;margin-right:20px;width:65px;height:auto}.mec-search-bar-result .mec-event-time{font-size:11px;line-height:1.1;margin:0}.mec-search-bar-result .mec-event-time i{color:#40d9f1;float:none;width:unset;height:unset;font-size:inherit;margin-right:3px;border:none;padding:0}.mec-search-bar-result .mec-event-title{font-size:13px;padding:0;margin:10px 0 8px;font-weight:700;text-transform:uppercase}.mec-search-bar-result .mec-event-title a{text-decoration:none;color:#494949;transition:color .3s ease}.mec-search-bar-result .mec-event-detail{font-size:13px;line-height:1.3;font-family:Roboto,sans-serif;color:#9a9a9a;margin-bottom:0}.mec-wrap.mec-modern-search-bar .mec-totalcal-box{background:rgba(255,255,255,.87);border:none;padding:35px;border-radius:3px;box-shadow:0 3px 13px rgba(0,0,0,.4);position:relative}.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=search],.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=text]{height:58px;background:rgba(255,255,255,.99);border-radius:2px;box-shadow:0 4px 8px rgba(0,0,0,.1) inset;border:1px solid #ccc;width:100%;padding-left:45px;padding-right:13px;font-size:16px}.mec-wrap.mec-modern-search-bar .mec-totalcal-box .mec-text-input-search i{position:absolute;background:0 0;border:none;font-size:21px;left:15px;top:calc(50% - 19px);color:#40d9f1}.mec-wrap.mec-modern-search-bar .mec-text-input-search{position:relative;height:58px}.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=submit]{height:58px;border:none;border-radius:2px;background:#fc4a1a;font-size:17px;font-weight:700!important}.mec-wrap.mec-modern-search-bar .mec-text-input-search+input#mec-search-bar-input{margin-left:0}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select{height:45px;background:rgba(255,255,255,.99);border-radius:2px;box-shadow:0 4px 8px rgba(0,0,0,.1) inset;border:1px solid #ccc;padding-right:13px;font-size:16px;border-left:0}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap i{height:45px;background:#ffff;border-radius:2px 0 0 2px;box-shadow:none;border:1px solid #ccc;font-size:15px;padding-top:14px;border-right:0;color:#40d9f1;margin-right:-1px}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap{min-height:64px}@media(max-width:768px){.mec-wrap.mec-modern-search-bar .mec-search-form .mec-text-input-search{width:70%}.mec-wrap.mec-modern-search-bar input#mec-search-bar-input{width:calc(100% - 72%)}}@media(max-width:480px){.mec-wrap.mec-modern-search-bar input#mec-search-bar-input{width:92%;padding:0 10px;position:relative;display:block;margin-left:11px}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-text-input-search{width:100%;margin-bottom:20px}.mec-wrap.mec-modern-search-bar .mec-text-input-search+input#mec-search-bar-input{margin-left:10px}}.mec-related-events-wrap{margin-top:50px}.mec-related-events-wrap h3.mec-rec-events-title:before{content:"";background:#2c2f34;width:46px;height:4px;position:absolute;top:59px;left:0}.mec-related-events-wrap h3.mec-rec-events-title{font-size:21px;font-weight:600;padding:17px 0;margin-bottom:28px;text-transform:uppercase;border-bottom:1px solid #e8e8e8;position:relative}.mec-related-event-post figure{margin:0}.mec-related-event-post figure img{width:100%}.mec-related-event-content{background-color:#fff;margin:-27px 30px 15px;position:relative;max-width:90%;padding:13px 21px 16px 19px}.mec-related-event-content h5 a{font-size:16px;color:#121212;font-weight:600;transition:all .3s ease}.mec-fes-form-cntt #mec-organizer-payments ul{list-style:none;background:0 0;margin:0}.mec-fes-form-cntt #mec-organizer-payments ul li h4{background:0 0;letter-spacing:.2px;display:inline-block;padding-left:0!important;padding-bottom:10px!important;margin:0;margin-bottom:1px;letter-spacing:1px;text-transform:capitalize;padding-top:1px}.mec-fes-form-cntt #mec-organizer-payments ul>li{width:100%;display:inline-block;vertical-align:top;padding:0;margin:0}#mec-login-form.mec-login-form{width:100%;background:#fff;padding:20px;margin:0 auto;text-align:center;position:relative}#mec-login-form.mec-login-form .mec-login-input{display:block;width:286px;margin:0 auto;margin-bottom:12px}#mec-login-form.mec-login-form .mec-login-forgotpassword{display:inline-block}.mec-login-forgotpassword a{color:#000}#mec-login-form.mec-login-form .mec-login-submit{float:right;text-align:right;width:49%;padding-right:2px}#mec-login-form.mec-login-form .mec-login-input input{border:none;box-shadow:none;background:#fff;color:#ccc;border-left:1px solid #e6e6e6;padding:0;height:100%;background-image:none!important;padding-left:10px;padding-right:0;width:222px;margin-left:0;clear:none;float:left}#mec-login-form.mec-login-form .mec-login-input label{border:1px solid #e6e6e6;height:52px;display:inline-block;padding:0;border-radius:3px;overflow:hidden;box-shadow:0 2px 4px rgba(0,0,0,.04)}#mec-login-form.mec-login-form .mec-login-input label i{padding:15px 13px 17px 16px;vertical-align:middle;font-size:20px;width:50px;color:#c5cad0;background:#fafafa;margin-right:0;float:left}#mec-login-form.mec-login-form .mec-login-forgotpassword{float:left;width:49%;text-align:left;padding-top:10px;font-size:13px;padding-left:2px}#mec-login-form.mec-login-form button{width:120px;height:44px;border:none;color:#fff;border-radius:3px;font-size:12px;font-weight:700;letter-spacing:1px;text-transform:uppercase;transition:all .22s ease;margin:0;min-width:unset}.mec-login-form button{box-shadow:0 4px 22px -7px #40d9f1;background-color:#40d9f1}#mec-login-form.mec-login-form button:hover{background:#222;box-shadow:0 3px 14px -4px #333}#mec-login-form.mec-login-form .mec-login-form-footer{width:286px;margin:0 auto;margin-top:20px;clear:both;position:relative;display:block;min-height:50px}#mec-login-form.mec-login-form .mec-ajax-login-loading{position:absolute;background:#ffffffc2;left:0;right:0;top:0;bottom:0}#mec-login-form.mec-login-form .lds-ripple{position:absolute;width:64px;height:64px;top:calc(50% - 23px);left:calc(50% - 23px)}#mec-login-form.mec-login-form .lds-ripple div{position:absolute;border:4px solid #40d9f1;opacity:1;border-radius:50%;animation:lds-ripple 1.2s cubic-bezier(0,.2,.1,.8) infinite}#mec-login-form.mec-login-form .lds-ripple div:nth-child(2){animation-delay:-.5s}#mec-login-form.mec-login-form .mec-ajax-login-loading-text{position:absolute;min-width:200px;top:calc(50% - 18px);left:calc(50% - 124px);color:#fff;padding:10px 22px;border-radius:3px;background:#fff;height:47px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text strong{color:#3fcc60}#mec-login-form.mec-login-form .mec-ajax-login-loading-text strong:before{content:"";position:absolute;top:8px;left:1px;border-right:2px solid #3fcc60;border-bottom:2px solid #3acb5c;transform:rotate(45deg);transform-origin:0 100%;color:#000;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards;width:8px;height:14px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong:after{content:"";position:absolute;top:14px;left:5px;border-bottom:2px solid #ff5d39;transform:rotate(45deg);transform-origin:0 100%;color:#000;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards;width:14px;height:4px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong{color:#ff5d39}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong:before{border-color:#ff5d39;border-bottom:none}@keyframes lds-ripple{0%{top:28px;left:28px;width:0;height:0;opacity:1}100%{top:-1px;left:-1px;width:58px;height:58px;opacity:0}}.mec-book-form-gateway-checkout [id*=mec_do_transaction_stripe_] .mec-form-row:first-child{margin-bottom:20px}.mec-events-meta-group-booking .StripeElement{box-sizing:border-box;height:40px;padding:10px 12px;border:1px solid transparent;border-radius:4px;background-color:#fff;box-shadow:0 1px 3px 0 #e6ebf1;-webkit-transition:box-shadow 150ms ease;transition:box-shadow 150ms ease;margin-bottom:20px;background:#fff}.mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text]{box-sizing:border-box;height:40px;padding:10px 12px;border:0!important;border-radius:4px;background-color:#fff;box-shadow:0 1px 3px 0 #e6ebf1!important;-webkit-transition:box-shadow 150ms ease;transition:box-shadow 150ms ease;margin-bottom:20px;background:#fff!important}.mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text]:focus{outline:0}.mec-events-meta-group-booking .StripeElement--focus{box-shadow:0 1px 3px 0 #cfd7df}.mec-events-meta-group-booking .StripeElement--invalid{border-color:#fa755a}.mec-events-meta-group-booking .StripeElement--webkit-autofill{background-color:#fefde5!important}.mec-booking-tab-content .button,.mec-booking-tab-content .mec-reg-field-add-option,.mec-fes-form .mec-form-row .button:not(.wp-color-result),.mec-fes-form input[type=file],ul#mec_reg_form_fields li .mec_reg_field_remove{height:40px;margin-top:1px;text-decoration:none;font-size:14px;line-height:34px!important;margin:0;padding:0 15px 1px!important;text-transform:none;letter-spacing:0;font-weight:600;color:#40d9f1;background:#fff;border-radius:3px;margin-right:8px;border:2px solid #cfeff5;box-shadow:0 2px 6px -3px #cfeff5}.mec-booking-tab-content .button:hover,.mec-booking-tab-content .mec-reg-field-add-option:hover,.mec-fes-form .mec-form-row .button:not(.wp-color-result):hover{background:#40d9f1;color:#fff;border-color:#40d9f1;box-shadow:0 2px 6px -3px #40d9f1}.mec-fes-form .mec-form-row input+button.button{vertical-align:top}.mec-fes-form .mec-form-row .quicktags-toolbar input.button.button-small{border-width:1px;padding:0 7px;color:#80c6d2;font-weight:400;margin:1px;transform:none}.mec-fes-form input[type=file]{max-width:166px;text-align:center;height:44px;transition:all .2s ease;border-radius:5px!important;border:2px dashed #b8e9f3}.mec-fes-form input[type=file]:hover{box-shadow:0 2px 16px -3px #cfeff5}.mec-fes-form input[type=file]::-webkit-file-upload-button{visibility:hidden;width:1px;height:38px}.mec-fes-form input[type=file]::-moz-file-upload-button{visibility:hidden;width:1px;height:38px}.mec-fes-form .mec-meta-box-fields>label{padding:0}#mec_reg_form_fields li{list-style:none}ul#mec_reg_form_fields{padding:0;margin:0}ul#mec_reg_form_fields li{background:#f8feff;margin:6px -20px;padding:15px 25px 10px;width:auto;font-size:13px;border-top:1px solid #e8fafd;border-bottom:1px solid #e8fafd;position:relative}ul#mec_reg_form_fields li .mec_reg_field_remove{position:absolute;right:10px;top:10px;margin:0;padding:6px 8px!important;font-size:11px;line-height:12px!important;min-height:10px;height:auto;display:block;cursor:pointer;color:#ea6485;border-color:#ffd2dd;letter-spacing:.4px}ul#mec_reg_form_fields li .mec_reg_field_remove:hover{background:#ea6485;color:#fff;border-color:#ea6485;box-shadow:0 2px 6px -3px #ea6485}#mec_reg_form_fields input[type=checkbox],#mec_reg_form_fields input[type=radio],.mec-form-row input[type=checkbox],.mec-form-row input[type=radio]{background-color:#fff;border:1px solid #cfeff5;box-shadow:0 1px 3px -1px #cfeff5;padding:9px;border-radius:3px;min-width:24px;min-height:24px;display:inline-block!important;vertical-align:middle;float:none;transition:all .18s ease;outline:0;margin:1px 4px 4px 0;text-align:left;cursor:pointer;-webkit-appearance:none;-moz-appearance:none}#mec_reg_form_fields input[type=checkbox]:focus,#mec_reg_form_fields input[type=radio]:focus,.mec-form-row input[type=checkbox]:focus,.mec-form-row input[type=radio]:focus{outline:0}#mec_reg_form_fields input[type=radio],.mec-form-row input[type=radio]{-webkit-appearance:none;border-radius:20px!important;min-width:20px;min-height:20px;margin:0 0 4px 0;vertical-align:middle}#mec_reg_form_fields input[type=checkbox]:hover,#mec_reg_form_fields input[type=radio]:hover,.mec-form-row input[type=checkbox]:hover,.mec-form-row input[type=radio]:hover{border-color:#40d9f1}#mec_reg_form_fields input[type=checkbox]:checked,#mec_reg_form_fields input[type=radio]:checked,.mec-fes-form .mec-form-row input[type=checkbox]:checked,.mec-fes-form .mec-form-row input[type=radio]:checked{box-shadow:0 1px 6px -2px #40d9f1;border-color:#40d9f1;background:#40d9f1!important;border-radius:2px;position:relative}.mec-form-row input[type=radio]:checked{box-shadow:0 1px 6px -2px #40d9f1,inset 0 0 0 3px #fff!important}#mec_reg_form_fields input[type=checkbox]:checked::before,.mec-form-row input[type=checkbox]:checked:before{content:"";font:normal;position:absolute;top:12px;left:5px;margin:0;vertical-align:middle;line-height:1;border-right:2px solid #fff!important;border-bottom:2px solid #fff!important;transform:rotate(45deg);transform-origin:0 100%;color:#fff;transition:all .2s ease;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards}@keyframes checkbox-check{0%{width:0;height:0;border-color:#fff;transform:translate3d(0,0,0) rotate(45deg)}33%{width:6px;height:0;transform:translate3d(0,0,0) rotate(45deg)}100%{width:6px;height:12px;border-color:#fff;transform:translate3d(0,-12px,0) rotate(45deg)}}#mec_reg_form_field_types .button{position:relative;outline:0;border-radius:50px;padding:2px 21px 2px 31px!important;line-height:1;font-size:11px;font-weight:600;color:#40d9f1;letter-spacing:2px;height:auto;cursor:pointer;margin-top:5px;text-transform:uppercase;box-shadow:0 2px 6px -3px #40d9f1;border:2px solid #cfeff5}#mec_fes_location_remove_image_button,#mec_fes_organizer_remove_image_button,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button,#mec_meta_box_tickets_form [id^=mec_ticket_row] button,#mec_reg_form_field_types .button.red{color:#ea6485;box-shadow:0 2px 6px -3px #ea6485;background:#fff;border-color:#ffd2dd}#mec_fes_location_remove_image_button:hover,#mec_fes_organizer_remove_image_button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button:hover,#mec_meta_box_tickets_form [id^=mec_ticket_row] button:hover,#mec_reg_form_field_types .button.red:hover{background:#ea6485;color:#fff}#mec_reg_form_field_types .button:before{position:absolute;left:12px;color:#40d9f1;content:"\e095";font-family:simple-line-icons;font-size:13px;display:inline-block}#mec_reg_form_field_types .button.red:before{color:#ea6485}#mec_reg_form_field_types .button.red:hover:before,#mec_reg_form_field_types .button:hover:before{color:#fff}#mec_fes_location_remove_image_button:hover,#mec_fes_organizer_remove_image_button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button:hover,#mec_meta_box_tickets_form [id^=mec_ticket_row] button:hover,#mec_price_per_dates_container .button:hover,#mec_reg_form_field_types .button.red:hover{color:#fff;border:2px solid #ea6485}#mec_taxes_fees_container_toggle [id^=mec_remove_fee_button],#mec_ticket_variations_list [id^=mec_remove_ticket_variation_button]{color:#ea6485;border-color:#ffd2dd}#mec_taxes_fees_container_toggle [id^=mec_remove_fee_button]:hover,#mec_ticket_variations_list [id^=mec_remove_ticket_variation_button]:hover{color:#fff;border:2px solid #ea6485;background:#ea6485}#mec_fees_list [id^=mec_remove_fee_button],#mec_meta_box_ticket_variations_form .mec-form-row [id^=mec_remove_ticket_variation_button]{margin-left:14px!important}#mec_meta_box_hourly_schedule_days .mec-add-hourly-schedule-button{line-height:10px!important}#mec_meta_box_tickets_form [id^=mec_ticket_row] .mec_add_price_date_button{color:#40d9f1;box-shadow:0 2px 6px -3px #40d9f1;border:2px solid #cfeff5}#mec_meta_box_tickets_form [id^=mec_ticket_row] .mec_add_price_date_button:hover,#mec_reg_form_field_types .button:hover{color:#fff;border:2px solid #40d9f1;background:#40d9f1}.mec-form-row input+span.mec-tooltip,.mec-form-row select+span.mec-tooltip{bottom:10px}.mec-form-row label+span.mec-tooltip{bottom:8px}.mec-form-row textarea+span.mec-tooltip{bottom:auto;vertical-align:top;top:12px}.mec-form-row span+span.mec-tooltip{bottom:0;vertical-align:middle}.mec-form-row .mec-col-8 input[type=text],.mec-form-row .mec-col-8 select,.mec-form-row .mec-col-8 span.mec-archive-skins{vertical-align:top}.mec-form-row input:disabled{opacity:.6;background:#f6f6f6}.mec-form-row p{font-size:12px!important;line-height:18px!important;color:#97b2bb!important}.mec-form-row p.description{font-style:italic}.ui-datepicker.ui-widget{border:1px solid #e8e8e8;box-shadow:0 1px 9px rgba(0,0,0,.12);font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif}table.ui-datepicker-calendar{margin-bottom:0}.ui-datepicker-calendar th{font-weight:700;color:#4a4b4c}.ui-datepicker-calendar td,.ui-datepicker-calendar th,.ui-datepicker-calendar tr{border:none}.ui-datepicker.ui-widget select{font-weight:600;font-size:12px;display:inline-block;border-radius:2px;padding:2px 10px;margin:5px 3px;width:auto;min-height:20px;height:26px;border:1px solid #e3e3e3;box-shadow:inset 0 1px 3px rgba(0,0,0,.04)}.ui-datepicker.ui-widget table{border-spacing:2px;border:none}.ui-datepicker.ui-widget td,.ui-datepicker.ui-widget tr{padding:0;background:0 0!important}.ui-datepicker.ui-widget td a{color:#9a9b9c;font-weight:600;width:30px;height:30px;line-height:30px;display:inline-block;border-radius:33px;padding:0;background:#fff;transition:all .2s ease}.ui-datepicker.ui-widget td a.ui-state-active,.ui-datepicker.ui-widget td a:hover{background:#40d9f1;color:#fff}.ui-datepicker.ui-widget .ui-datepicker-next,.ui-datepicker.ui-widget .ui-datepicker-prev{color:#40d9f1;width:30px;height:30px;line-height:30px;display:inline-block;text-align:center;border-radius:33px;background:#ecfcff;transition:all .2s ease}.ui-datepicker.ui-widget .ui-datepicker-next:hover,.ui-datepicker.ui-widget .ui-datepicker-prev:hover{background:#fff;box-shadow:0 0 7px -3px rgba(0,0,0,.4)}.mec-fes-form .mec-tooltip .dashicons-before:before{color:#40d9f1}.mec-fes-form button[type=submit].mec-fes-sub-button{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;border-radius:3px;background:#40d9f1;color:#fff;height:54px;font-size:17px;font-weight:700;box-shadow:0 2px 8px -4px #40d9f1;display:block;transition:all .28s ease;text-transform:uppercase;margin:20px 0 0;padding:14px 20px;border:0;cursor:pointer;text-align:center;letter-spacing:.1em;line-height:1}.mec-fes-form button[type=submit].mec-fes-sub-button:hover{box-shadow:0 2px 12px -2px #40d9f1}.mec-fes-form button[type=submit].mec-fes-sub-button:focus{margin-bottom:-2px;background:#1dc2dc}.mec-fes-form .mec-title span.mec-dashicons{color:#40d9f1;float:left;margin-right:5px}.mec-fes-form .mec-tooltip .box h5{padding:14px 2px}#mec_fes_form,.mec-fes-form-top-actions{max-width:838px;margin:0 auto}@media only screen and (min-width:961px){.mec-fes-form .mec-fes-form-cntt{width:calc(100% - 300px);float:left;padding-right:20px;max-width:538px;display:block}.mec-fes-form .mec-fes-form-sdbr{width:300px}}.mec-fes-form .quicktags-toolbar,.mec-fes-form div.mce-toolbar-grp{background:#ecfcff;border-bottom:1px solid #cfeff5;box-shadow:0 1px 0 1px #cfeff5}.mec-fes-form .quicktags-toolbar{margin-right:-1px;border-top:1px solid #cfeff5}.mec-fes-form div.mce-statusbar{border-top-color:#cfeff5}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-listbox{border:1px solid #cfeff5;border-radius:3px}.mec-fes-form .mce-tinymce.mce-container.mce-panel{border:1px solid #cfeff5;box-shadow:0 2px 6px -3px #cfeff5;border-radius:2px 0 2px 2px}.mec-fes-form .wp-editor-tools .wp-media-buttons{transform:translateY(-6px);margin-top:-6px}.mec-fes-form .wp-editor-tabs{padding-right:0;margin-right:-2px}.mec-fes-form .wp-editor-tabs .wp-switch-editor{border-radius:3px 3px 0 0;border-color:#cfeff5;background:#fff;color:#96b8bd;border-bottom:1px solid #ecfcff}.mec-fes-form .html-active .switch-html,.mec-fes-form .tmce-active .switch-tmce,.mec-fes-form .wp-editor-tabs .wp-switch-editor:active{background:#ecfcff;color:#40d9f1}.mec-fes-form .wp-editor-container,.mec-fes-form div.mce-edit-area.mce-panel{border:none;box-shadow:none}.mec-fes-form .wp-editor-container textarea.wp-editor-area{max-width:100%}.mec-fes-form .mce-toolbar .mce-listbox button{font-size:12px;line-height:22px;color:#798f96}.mec-fes-form .mce-toolbar .mce-ico{color:#627f88}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-active,.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn:active,.mec-fes-form .qt-dfw.active{background:#fff;border-color:#40d9f1;box-shadow:inset 0 2px 6px -3px rgba(106,231,255,.7)}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-active .mce-ico{color:#40d9f1}body .mce-menu .mce-menu-item.mce-active.mce-menu-item-normal,body .mce-menu .mce-menu-item.mce-selected,body .mce-menu .mce-menu-item:focus,body .mce-menu .mce-menu-item:hover,body.mce-menu .mce-menu-item.mce-active.mce-menu-item-preview{background:#40d9f1;color:#fff}.mec-fes-form .mec-not-in-days-day{display:inline-block;padding:4px 32px 4px 15px;border-radius:33px;border:1px solid #cfeff5;box-shadow:0 1px 3px -1px #cfeff5;background:#fbfeff;color:#40d9f1;vertical-align:top}.mec-fes-form .mec-not-in-days-remove{display:inline-block;padding:0 1px 0 0;margin-left:-30px;vertical-align:sub;background:#ff918a;color:#fff;font-family:cursive;width:21px;height:21px;line-height:17px;text-align:center;border-radius:20px;cursor:pointer}.mec-fes-list ul li .mec-event-status{float:left;margin-right:10px;margin-left:0;font-size:11px;font-weight:400;letter-spacing:.3px;border-radius:3px;padding:4px 8px}.mec-fes-form .post-status.mec-book-confirmed:before,.mec-fes-list ul li .mec-event-status.mec-book-confirmed:before{content:"";margin:0;vertical-align:middle;line-height:1;border-right:2px solid #fff!important;border-bottom:2px solid #fff!important;transform:rotate(45deg);color:#fff;width:6px;height:12px;float:left;margin-right:6px}.mec-fes-list ul li .mec-fes-event-export a:before,.mec-fes-list ul li .mec-fes-event-remove:before,.mec-fes-list ul li .mec-fes-event-view a:before,.mec-fes-list-top-actions a:before{content:"\e054";font-family:simple-line-icons;font-size:13px;vertical-align:middle}.mec-fes-list ul li .mec-fes-event-view a:before{content:"\e087"}.mec-fes-list-top-actions a:before{content:"\e095";font-weight:400;margin-right:6px}.mec-fes-list ul li .mec-fes-event-export a:before{content:"\e083"}.mec-fes-form .post-status{border-radius:20px}.mec-fes-form .post-status.mec-book-confirmed:before{height:20px;width:9px;margin:3px 10px}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker-calendar th{height:auto;padding:0}.ui-datepicker .ui-datepicker-calendar td a,.ui-datepicker-calendar th{font-size:14px;line-height:30px}.mec-fes-form .description{font-size:16px}.mec-fes-form input[type=file]{text-align:left}.mec-fes-export-wrapper{width:640px;background:#f8feff;padding:40px 25px}.mec-fes-export-wrapper .mec-fes-btn-date{font-size:16px;line-height:44px;overflow:hidden}.mec-fes-export-wrapper .date-messgae{font-family:sans-serif;padding:2px 18px}.mec-fes-list ul li .mec-event-export-csv,.mec-fes-list ul li .mec-event-export-excel{font-size:12px;border:1px solid #40d9f1;padding:1px 4px;background:rgba(141,229,243,.18);border-radius:4px;color:#40d9f1;font-family:sans-serif;cursor:pointer;display:inline-block;height:26px;line-height:22px}.mec-export-badge{font-size:11px;color:#40d9f1;width:auto;height:24px;line-height:25px;display:inline-block;padding:0 8px;text-align:center;border-radius:3px;background:#ecfcff;transition:all .2s ease}.mec-fes-list ul li .mec-fes-event-export{font-size:11px;background:#f7f7f7;float:right;margin-left:5px}.mec-fes-list ul li .mec-fes-event-export:hover{cursor:pointer;background:#90f0e0;border-color:#4dc8cc}.mec-fes-export-wrapper ul{padding:0;width:100%;text-align:center}.mec-fes-export-wrapper ul li{list-style:none;display:inline-block;width:30%;padding:10px 15px 10px 32px;border-radius:3px;margin-bottom:15px;border:1px solid #cfeff5;box-shadow:0 2px 6px -4px #cfeff5;background:#fff;line-height:normal;margin-right:10px;position:relative;cursor:pointer;font-size:13px;line-height:1;transition:all .2s ease}.mec-fes-export-wrapper ul li:nth-child(3n+0){margin-right:0}.mec-fes-export-wrapper ul li:hover{box-shadow:0 2px 16px -1px #c6e8ef}.mec-fes-export-wrapper ul li:before{content:"";position:absolute;display:inline-block;background:#fff;width:15px;height:15px;margin:-1px 0 0 5px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32);border-radius:50%;left:9px;top:calc(50% - 7px)}.mec-fes-export-wrapper ul li.fes-export-date-active{color:#40d9f1}.mec-fes-export-wrapper ul li.fes-export-date-active:before{width:15px;height:15px;border:6px solid #40d9f1;background:#fff;box-shadow:0 3px 16px -3px #40d9f1}.mec-fes-btn-export{margin-left:15px;margin-top:12px}.mec-fes-btn-export span{position:relative;border:none;border-radius:3px;color:#fff!important;display:inline-block;font-size:13px;line-height:1;text-transform:none;font-weight:400;text-decoration:none;cursor:pointer;margin-right:4px;line-height:1;letter-spacing:0;padding:15px 22px;background:#39c36e;box-shadow:0 1px 7px -3px #39c36e!important;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;cursor:pointer;margin-left:6px}.mec-fes-btn-export span:hover{background:#222}.mec-event-export-excel:before,span.mec-event-export-csv:before{content:"\e083";font-family:simple-line-icons;font-size:13px;vertical-align:middle;margin-right:7px;margin-top:-1px;display:inline-block}.mec-fes-list .wn-p-t-right{min-width:170px;max-width:200px;display:inline-block;top:-8px;left:50%;margin-top:0;transform:translate(-50%,-100%);padding:0;background-color:#000;color:#fff;font-weight:400;font-size:14px;letter-spacing:.5px;line-height:1.5;position:absolute;z-index:99999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #535a61;visibility:hidden;opacity:0;transition:opacity .23s;padding:5px 10px 6px;border-radius:8px;text-align:center;font-style:normal}.mec-fes-list .mec-fes-event-export:hover .wn-p-t-right,.mec-fes-list .mec-fes-event-remove:hover .wn-p-t-right,.mec-fes-list .mec-fes-event-view:hover .wn-p-t-right{visibility:visible;opacity:1}.mec-fes-list .wn-p-t-right i{position:absolute!important;top:100%;right:50%;margin-top:-6px!important;margin-right:-6px!important;width:12px;height:24px;overflow:hidden;transform:rotate(-90deg)}.mec-fes-list .wn-p-t-right i:after{content:'';position:absolute;width:12px;height:12px;left:0;top:50%;transform:translate(50%,-50%) rotate(-45deg);background-color:#000;box-shadow:0 8px 9px -4px #535a61}.mec-fes-form .select2-container{min-height:38px;box-sizing:border-box;margin-bottom:8px;padding:0 6px;border-radius:2px;border:1px solid #ddd;box-shadow:inset 0 1px 6px rgba(0,0,0,.07);background-color:#fff;color:#32373c;outline:0;transition:50ms border-color ease-in-out;min-width:200px;font-size:14px}.mec-fes-form .select2-selection{border:none;background:0 0;padding-top:2px;width:100%;height:100%}.mec-fes-form .select2-container--default.select2-container--focus .select2-selection{border:none!important;outline:0}.mec-fes-form .select2-container--default .select2-selection--single .select2-selection__arrow{top:5px;right:4px}.select2-results{font-size:14px}.mec-fes-category-children,.mec-fes-category-children .mec-fes-category-children{padding-left:24px}.mec-wrap .mec-timeline-events-container a,.mec-wrap .mec-timeline-events-container div,.mec-wrap .mec-timeline-events-container h4,.mec-wrap .mec-timeline-events-container p,.mec-wrap .mec-timeline-events-container span{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important}.mec-timeline-events-container{margin-left:19px;padding-top:20px;padding-bottom:9px}.mec-events-timeline-wrap{position:relative;display:block;overflow:visible;padding-left:95px}.mec-events-timeline-wrap:before{width:1px;content:'';height:100%;position:absolute;background:#dedede;left:95px}.mec-timeline-month-divider+.mec-timeline-events-container{padding-top:110px}.mec-timeline-right-content{float:right;width:300px}.mec-timeline-left-content{float:left;width:calc(100% - 300px);padding-left:15px;padding-right:15px}.mec-timeline-month-divider{position:absolute;display:block;background:#fff;right:calc(100% - 95px);left:0;width:190px;text-align:center;border:1px solid #dedede;border-radius:50px;font-size:15px;padding:12px 27px}.mec-timeline-event-date{position:relative}.mec-timeline-events-container .mec-timeline-event-date:before{content:'';width:10px;height:10px;position:absolute;background:#40d9f1;border-radius:50px;top:8px;left:-23px;z-index:99}.mec-timeline-events-container .mec-timeline-event-date:after{content:'';width:20px;height:20px;position:absolute;background:rgba(64,217,241,.3);border-radius:50px;top:3px;left:-28px}.mec-timeline-event-date{float:left;width:17%;margin-top:27px}.mec-timeline-event-content{float:left;width:82%;background:#fff;box-shadow:0 10px 30px 0 rgba(0,0,0,.1);border-radius:10px;overflow:visible;position:relative}.mec-timeline-main-content{padding:23px 30px}.mec-timeline-main-content h4{margin-bottom:15px}.mec-timeline-main-content h4 a{font-size:25px;font-weight:700;color:#000;line-height:33px;text-decoration:none}.mec-timeline-main-content p{font-size:15px;color:#515151;line-height:24px;margin-bottom:36px}a.mec-timeline-readmore{width:100%;display:block;text-align:center;color:#fff;text-decoration:none;line-height:52px;font-size:17px;font-weight:700;-webkit-transition:all .2s ease;transition:all .2s ease;border-radius:0 0 10px 10px}a.mec-timeline-readmore:hover{background:#222;color:#fff}.mec-timeline-event-time .mec-time-details{display:inline-block;margin-left:7px;font-size:13px;line-height:13px;font-weight:500}.mec-timeline-event-time i{vertical-align:middle}.mec-timeline-event-time{background:rgba(64,217,241,.11);display:inline-block;padding:4px 20px 8px;border-radius:50px}.mec-timeline-event-location address{font-style:normal;margin-bottom:0}.mec-timeline-event-location address span{font-size:13px;font-weight:500;vertical-align:middle;margin-left:6px}.mec-timeline-event-location address i{font-size:17px;vertical-align:middle}.mec-timeline-event-location{background:rgba(64,217,241,.11);display:inline-block;padding:7px 20px 11px;border-radius:20px;line-height:1.24}.mec-timeline-event-details+.mec-timeline-event-details{margin-top:12px}.mec-timeline-event-content .col-md-4{padding:0}.mec-timeline-event-content:after{content:'';display:block;position:absolute;left:50%;margin-left:-10px;width:0;height:0;border-style:solid;border-width:10px}.mec-timeline-event-content:after{top:30px;border-color:transparent #fff transparent transparent;left:-10px}.mec-timeline-event-image img{border-radius:0 10px 0 0;width:100%}.mec-timeline-event-image a{display:block;line-height:0}a.mec-timeline-readmore i{vertical-align:middle;margin-left:10px;font-size:9px}.mec-wrap .mec-timeline-event-content a.mec-timeline-readmore:hover{background:#444}@media(min-width:1024px){.mec-past-event.mec-timeline-event{margin:50px 0}}@media(max-width:1023px){.mec-past-event.mec-timeline-event{margin:25px 0}.mec-events-timeline-wrap{padding-left:20px}.mec-events-timeline-wrap:before{left:20px}}@media (max-width:1200px) and (min-width:992px){.mec-timeline-event-content{width:81%}.mec-timeline-event-date{width:18%}}@media (max-width:992px){.mec-timeline-left-content,.mec-timeline-right-content{float:none;width:100%;text-align:center}.mec-timeline-right-content .mec-timeline-event-image{text-align:center}.mec-timeline-right-content .mec-timeline-event-image img{max-width:300px;border-radius:10px;margin-top:35px}}@media (max-width:440px){.mec-timeline-right-content .mec-timeline-event-image img{margin-top:0}}@media (max-width:320px){.mec-timeline-event-content,.mec-timeline-event-date{float:none;width:100%}.mec-timeline-event-date{margin-bottom:8px}.mec-timeline-event-content:after{display:none}.mec-timeline-main-content{padding:23px 0}.mec-timeline-main-content p{font-size:13px}.mec-timeline-main-content h4 a{font-size:23px;line-height:24px}.mec-time-details span{font-size:11px}.mec-timeline-event-location address span{font-size:12px}a.mec-timeline-readmore{line-height:44px;font-size:14px}}.mec-event-tile-view article.mec-tile-item{height:400px;margin:15px 0;border-radius:22px;padding:35px 25px;position:relative;color:#fff;background-size:cover!important;background-position:center!important;box-shadow:0 2px 9px rgba(0,0,0,.25);transition:all .22s ease}.mec-event-tile-view article.mec-tile-item:hover{box-shadow:0 4px 19px rgba(0,0,0,.5)}.mec-event-tile-view article.mec-tile-item div{position:relative;z-index:3}.mec-event-tile-view article.mec-tile-item:after,.mec-event-tile-view article.mec-tile-item:before{position:absolute;background:-moz-linear-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);background:-webkit-gradient(left top,right top,color-stop(0,rgba(0,0,0,.35)),color-stop(65%,rgba(0,0,0,.48)),color-stop(100%,rgba(0,0,0,.72)));background:-webkit-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);background:linear-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);content:"";left:0;right:0;bottom:0;top:0;width:100%;width:calc(100% + 1px);height:100%;border-radius:22px;z-index:1}.mec-event-tile-view article.mec-tile-item:after{background-color:inherit;background-image:none;top:35px;bottom:auto;height:40px;border-radius:0 3px 3px 0;width:97px;z-index:2;box-shadow:2px 1px 7px rgba(0,0,0,.1)}.mec-event-tile-view article.mec-tile-item .event-tile-view-head{padding:8px 3px;font-size:16px;font-weight:700;margin-bottom:50px;text-transform:uppercase}.mec-event-tile-view article.mec-tile-item .mec-event-time{color:#d6d6d6;font-size:15px;font-weight:400;line-height:1;padding-top:4px;position:absolute;right:1px;top:10px}.mec-event-tile-view article.mec-tile-item .mec-event-time i{vertical-align:baseline;font-size:14px;float:left}.mec-event-tile-view article.mec-tile-item i{margin-right:5px}.mec-event-tile-view article.mec-tile-item .mec-event-title{color:#fff;font-weight:700;font-size:23px;padding-top:12px}.mec-event-tile-view article.mec-tile-item .mec-event-title a{color:#fff}.mec-event-tile-view article.mec-tile-item .mec-event-title a:hover{text-decoration:underline}.mec-event-tile-view article.mec-tile-item .mec-event-content{position:absolute;bottom:25px;left:25px;right:25px}.mec-skin-tile-month-navigator-container{position:relative;text-align:center;font-size:12px;height:80px;background:#f7f7f7;padding:28px;border-radius:11px;margin-bottom:20px}.mec-skin-tile-month-navigator-container:after,.mec-skin-tile-month-navigator-container:before{content:'';display:block;position:absolute;left:50%;margin-left:-10px;width:0;height:0;border-style:solid;border-width:10px}.mec-skin-tile-month-navigator-container:after{bottom:-20px;border-color:#f7f7f7 transparent transparent transparent}.mec-skin-tile-month-navigator-container:before{bottom:-21px;border-color:#fff transparent transparent transparent}@media only screen and (max-width:480px){.mec-skin-tile-month-navigator-container{height:110px;padding-top:68px}}.mec-skin-tile-month-navigator-container h2{font-size:23px;font-weight:700}.mec-skin-tile-month-navigator-container .mec-next-month,.mec-skin-tile-month-navigator-container .mec-previous-month{position:absolute;top:28px;left:20px;cursor:pointer;padding:3px 12px;line-height:23px;background:#fff;border-radius:32px;box-shadow:0 1px 3px rgba(0,0,0,.02);transition:all .22s ease}.mec-skin-tile-month-navigator-container .mec-next-month{left:auto;right:20px}.mec-skin-tile-month-navigator-container .mec-next-month:hover,.mec-skin-tile-month-navigator-container .mec-previous-month:hover{box-shadow:0 2px 5px rgba(0,0,0,.1);color:#000}.mec-wrap .mec-event-tile-view article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view article.mec-label-featured:before{position:absolute;bottom:auto;text-align:center;right:auto;font-size:10px}.mec-wrap .mec-event-tile-view .col-md-3 article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view .col-md-3 article.mec-label-featured:before{top:12px;left:103px}.mec-wrap .mec-event-tile-view .col-md-4 article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view .col-md-4 article.mec-label-featured:before{top:18px;left:125px}.mec-wrap .mec-event-tile-view .col-md-6 article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view .col-md-6 article.mec-label-featured:before{top:20px;left:200px}
|
1 |
+
.lity-container,.mec-wrap,.mec-wrap div:not([class^=elementor-]){font-family:Montserrat,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif}.entry-content .mec-wrap h1,.entry-content .mec-wrap h2,.entry-content .mec-wrap h3,.entry-content .mec-wrap h4,.entry-content .mec-wrap h5,.entry-content .mec-wrap h6,.mec-wrap h1,.mec-wrap h2,.mec-wrap h3,.mec-wrap h4,.mec-wrap h5,.mec-wrap h6{font-family:Montserrat,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;color:#171c24;font-weight:300;font-style:inherit;letter-spacing:normal;clear:none}.mec-wrap h1{font-size:50px;line-height:1.16;margin-bottom:12px;letter-spacing:-1px}.mec-wrap h2{font-size:36px;line-height:1.14;margin-bottom:10px}.mec-wrap h3{font-size:28px;line-height:1.2;margin-bottom:8px}.mec-wrap h4{font-size:24px;line-height:1.2;margin-bottom:10px}.mec-wrap h5{font-size:18px;line-height:1.3;margin-bottom:7px}.mec-wrap h6{font-size:16px;line-height:1.3;margin-bottom:4px}.mec-wrap .subheader{color:#849098}.mec-wrap h1 strong{font-weight:700}.mec-wrap p{margin:0 0 20px 0;color:#616161;font-size:14px;line-height:1.8}.mec-wrap .mec-event-article .mec-color-hover{box-shadow:none;border:none}.mec-wrap abbr,.mec-wrap acronym{cursor:auto;border:none}.entry-content .mec-wrap a{box-shadow:none}.mec-wrap .button,.mec-wrap a.button:not(.owl-dot),.mec-wrap button:not(.owl-dot),.mec-wrap input[type=button],.mec-wrap input[type=reset],.mec-wrap input[type=submit]{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#24ca4f;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease}.mec-wrap .button:hover,.mec-wrap a.button:hover,.mec-wrap button:hover,.mec-wrap input[type=button]:hover,.mec-wrap input[type=reset]:hover,.mec-wrap input[type=submit]:hover{background:#222;color:#fff}.mec-wrap #mec_woo_add_to_cart_btn_r{min-width:155px;margin-top:5px;border-radius:2px;box-shadow:0 2px 1px rgba(0,0,0,.08);float:left;text-align:center}.mec-booking-form-container button{display:block}.vertical-space,.vertical-space1,.vertical-space2,.vertical-space3,.vertical-space4,.vertical-space5{display:block;width:100%;margin:0;clear:both;border:0 none;height:20px}.vertical-space2{height:40px}.vertical-space3{height:60px}.vertical-space4{height:80px}.vertical-space5{height:100px}@media only screen and (max-width:479px){.vertical-space,.vertical-space1{height:8px}.vertical-space2{height:14px}.vertical-space3{height:28px}.vertical-space4{height:40px}.vertical-space5{height:60px}}@media only screen and (max-width:960px){.vertical-space,.vertical-space1{height:12px}.vertical-space2{height:18px}.vertical-space3{height:36px}.vertical-space4{height:50px}.vertical-space5{height:80px}}.mec-wrap abbr{cursor:auto;border-bottom:0}@-webkit-keyframes rotating{from{-ms-transform:rotate(0);-moz-transform:rotate(0);-webkit-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}to{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes rotating{from{-ms-transform:rotate(0);-moz-transform:rotate(0);-webkit-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}to{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}.mec-wrap{font:14px/25px sans-serif;font-family:Montserrat,Helvetica,Arial,sans-serif;font-weight:400;color:#626262}.mec-wrap .mec-events a{border-bottom:none}.mec-wrap .mec-container a{box-shadow:none}.mec-event-content p{font-family:Roboto,sans-serif;font-weight:300}.mec-wrap .mec-clear:after,.mec-wrap .mec-clear:before{content:" ";display:table}.mec-wrap .mec-clear:after{clear:both}.mec-events-button{background:#fff;padding:12px 34px;font-size:13px;font-weight:400;letter-spacing:0;border:1px solid #e3e3e3;margin-right:10px;transition:.3s}.mec-wrap .mec-events-button:hover{color:#fff}.mec-no-event{display:none}#mec-active-current{display:block!important}.current-hide #mec-active-current{display:none!important}.mec-event-grid-classic .mec-event-article{position:relative;border:2px solid #e3e3e3;box-shadow:0 2px 0 0 rgba(0,0,0,.016);margin-bottom:30px;max-width:none}.mec-event-grid-classic .mec-event-content{background:#fff;color:#767676;padding:0 20px 5px;text-align:center;min-height:125px}.mec-event-grid-classic .mec-event-title{color:#202020;margin:10px 0;font-weight:700;font-size:20px;letter-spacing:1px;text-transform:uppercase}.mec-event-grid-classic .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-classic .mec-event-date{font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:1px;color:#fff;padding:3px 20px;margin:0 -20px 20px -20px;text-align:center}.mec-event-grid-classic .mec-event-content p{font-size:15px;color:#8a8a8a}.mec-event-grid-classic .mec-event-detail{display:none}.mec-event-grid-classic img{margin-bottom:0;width:100%}.mec-event-footer{position:relative;border-top:1px solid #efefef;padding:20px;min-height:80px;margin:0;background:#fafafa}.mec-event-sharing-wrap{left:15px;position:absolute;list-style:none;margin:0}.mec-event-sharing-wrap .mec-event-sharing{position:absolute;padding:8px 0 2px;left:-6px;bottom:54px;margin:0;margin-top:6px;border-radius:5px;width:50px;visibility:hidden;opacity:0;border:1px solid #e2e2e2;background:#fff;box-shadow:0 0 9px 0 rgba(0,0,0,.06);z-index:99;-webkit-transition:all .18s ease;transition:all .18s ease}.mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-sharing-wrap .mec-event-sharing:before{content:'';display:block;position:absolute;bottom:-10px;left:50%;margin-left:-10px;width:0;height:0;border-style:solid;border-width:10px}.mec-event-sharing-wrap .mec-event-sharing:before{bottom:-21px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-sharing-wrap .mec-event-sharing:after{bottom:-19px;border-color:#fff transparent transparent transparent}.mec-event-sharing-wrap:hover .mec-event-sharing{opacity:1;visibility:visible}.mec-event-sharing-wrap li{text-align:center;border:0;display:block;margin-right:2px;overflow:hidden;margin:0 auto 6px;width:38px}.mec-event-sharing-wrap:hover>li{cursor:pointer;background-color:#40d9f1}.mec-event-sharing-wrap:hover li a{color:#fff}.mec-event-sharing-wrap>li:first-of-type{border:1px solid #d9d9d9}.mec-event-sharing-wrap li a,.mec-event-sharing-wrap:hover li ul li a{border:none;color:#767676}.mec-event-sharing-wrap li i{width:36px;height:36px;display:table-cell;vertical-align:middle}.mec-event-sharing-wrap li svg{height:16px}.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}}span.mec-event-title-soldout{font-size:8px;font-weight:700;letter-spacing:.5px;text-transform:uppercase;background:#e63360;color:#fff;padding:3px 8px;line-height:1;border-radius:15px;white-space:nowrap;vertical-align:middle}.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:34px;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:10px}.mec-event-list-minimal .mec-event-detail,.mec-event-list-minimal .mec-time-details{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-detail .mec-time-details{display:inline}.mec-event-list-modern .mec-event-date .event-da{margin-top:9px;color:silver;font-size:28px;font-weight:100;text-transform:uppercase;letter-spacing:-1px;text-align:left}.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,.mec-event-list-classic .mec-event-time{font-weight:400;font-size:13px;letter-spacing:0;line-height:18px;text-align:left;display:initial;margin-right:12px}.mec-event-list-classic .mec-event-time .mec-time-details,.mec-event-list-classic .mec-event-time i{display:inline;margin-right:3px}.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:155px;margin-top:5px;margin-left:10px;border-radius:2px;box-shadow:0 2px 1px rgba(0,0,0,.08)}.mec-single-event .mec-events-meta-group-booking button.mec-book-form-back-button{background:#c4cace;float:left}.mec-single-event .mec-events-meta-group-booking button.mec-book-form-back-button:hover{background:#000}.mec-single-event .mec-events-meta-group-booking button.mec-book-form-next-button{float:left}button#mec-book-form-back-btn-step-3{float:none}.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-single-event .mec-book-form-gateway-checkout button{margin-right:20px}.mec-single-event button#mec-book-form-back-btn-step-3{margin-left:0}.lity-content .mec-book-form-back-button{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-right:10px;line-height:1;padding:18px 20px 16px;-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;background:#c4cace}.lity-content .mec-book-form-back-button:hover{background:#000}.lity-content button#mec-book-form-back-btn-step-3{float:none}.lity-content .mec-book-form-next-button{float:left}.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}.lity .mec-book-ticket-container .mec-red-notification input,.lity .mec-book-ticket-container .mec-red-notification select,.lity .mec-book-ticket-container .mec-red-notification textarea{border:1px solid #ff3c3c}@media only screen and (max-width:479px){.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking input[type=email],.mec-single-event .mec-events-meta-group-booking input[type=number],.mec-single-event .mec-events-meta-group-booking input[type=password],.mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-single-event .mec-events-meta-group-booking input[type=text],.mec-single-event .mec-events-meta-group-booking select,.mec-single-event .mec-events-meta-group-booking textarea{width:100%}}.mec-single-event .mec-events-meta-group-booking input[type=email]:focus,.mec-single-event .mec-events-meta-group-booking input[type=number]:focus,.mec-single-event .mec-events-meta-group-booking input[type=password]:focus,.mec-single-event .mec-events-meta-group-booking input[type=tel]:focus,.mec-single-event .mec-events-meta-group-booking input[type=text]:.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking select:focus,.mec-single-event .mec-events-meta-group-booking textarea:focus,focus{border:1px solid #aaa;color:#444;background:#fff;-moz-box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);box-shadow:0 0 3px rgba(0,0,0,.2);outline:0}.mec-single-event .mec-events-meta-group-booking input[type=checkbox],.mec-single-event .mec-events-meta-group-booking input[type=radio]{margin-right:6px;margin-top:5px;min-height:20px;clear:none;margin:0 0 0 2px}.lity-container .mec-events-meta-group-booking input[type=radio]:before,.mec-single-event .mec-events-meta-group-booking input[type=radio]:before{content:"";display:inline-block;background:#fff;border-radius:18px;width:18px;height:18px;margin:-1px 0 0 -3px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32)}.lity-container .mec-events-meta-group-booking input[type=radio]:checked:before,.mec-single-event .mec-events-meta-group-booking input[type=radio]:checked:before{border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff}.lity-container .mec-events-meta-group-booking input[type=radio],.mec-single-event .mec-events-meta-group-booking input[type=radio]{min-height:0;margin:0;margin-right:6px}.mec-single-event .mec-events-meta-group-booking input[type=checkbox]{float:left}.lity-container .mec-events-meta-group-booking .mec_book_first_for_all,.mec-single-event .mec-events-meta-group-booking .mec_book_first_for_all{display:none}.mec-events-meta-group-booking ul.mec-book-price-details{list-style:none;border:1px solid #eee;padding:0;overflow:hidden}.mec-events-meta-group-booking ul.mec-book-price-details li{font-size:15px;color:#a9a9a9;list-style:none;padding:13px 18px;margin:0;float:left;border-right:1px solid #eee}.mec-events-meta-group-booking ul.mec-book-price-details li:last-child{border-right:none}.mec-events-meta-group-booking ul.mec-book-price-details li span.mec-book-price-detail-amount{font-weight:700;font-size:21px;color:#222}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label{height:14px;width:14px;background-color:transparent;border:1px solid #d4d4d4;position:relative;display:inline-block;-moz-transition:border-color ease .2s;-o-transition:border-color ease .2s;-webkit-transition:border-color ease .2s;transition:border-color ease .2s;cursor:pointer;box-shadow:0 2px 16px -2px rgba(0,0,0,.2);vertical-align:middle;margin-right:3px;margin-top:-2px}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label{border-color:#008aff;box-shadow:0 2px 14px -3px #008aff}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:after,.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:before,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:after,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:before{position:absolute;height:0;width:1px;background-color:#008aff;display:inline-block;-moz-transform-origin:left top;-ms-transform-origin:left top;-o-transform-origin:left top;-webkit-transform-origin:left top;transform-origin:left top;content:'';-webkit-transition:opacity ease .5;-moz-transition:opacity ease .5;transition:opacity ease .5}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:before,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:before{top:8px;left:7px;box-shadow:0 0 0 2px #fff;-moz-transform:rotate(-145deg);-ms-transform:rotate(-145deg);-o-transform:rotate(-145deg);-webkit-transform:rotate(-145deg);transform:rotate(-145deg)}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::before,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::before{height:12px;-moz-animation:dothatopcheck .16s ease 0s forwards;-o-animation:dothatopcheck .16s ease 0s forwards;-webkit-animation:dothatopcheck .16s ease 0s forwards;animation:dothatopcheck .16s ease 0s forwards}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:after,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:after{top:6px;left:3px;-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::after,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::after{-moz-animation:dothabottomcheck 80ms ease 0s forwards;-o-animation:dothabottomcheck 80ms ease 0s forwards;-webkit-animation:dothabottomcheck 80ms ease 0s forwards;animation:dothabottomcheck 80ms ease 0s forwards;height:4px}.mec-single-event .mec-events-meta-group-booking button[type=submit]:after,.mec-single-event a.button:after{display:none;font-family:simple-line-icons;content:"\e098";margin-left:4px;-webkit-animation:rotating 1.2s linear infinite;-moz-animation:rotating 1.2s linear infinite;-ms-animation:rotating 1.2s linear infinite;-o-animation:rotating 1.2s linear infinite;animation:rotating 1.2s linear infinite}.mec-single-event .mec-events-meta-group-booking button[type=submit].loading:after,.mec-single-event a.button.loading:after{display:inline-block}.mec-single-event .mec-event-export-module{display:block}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul{display:table;width:100%}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li{display:table-cell}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li:last-child{text-align:right}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a:hover{color:#fff}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul{padding-left:0;margin:15px 5px}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting{padding-left:0;margin:0}.mec-ticket-price{margin-left:10px;font-size:13px;font-weight:300}.mec-book-reg-field-checkbox label,.mec-book-reg-field-radio label{line-height:1.36}.mec-book-reg-field-checkbox input[type=checkbox],.mec-book-reg-field-radio input[type=radio]{float:left;margin-right:5px!important}.mec-ticket-available-spots .mec-event-ticket-description,.mec-ticket-available-spots .mec-event-ticket-price{font-size:11px}.mec-book-ticket-container .mec-reg-mandatory:nth-child(2) label:after,.mec-book-ticket-container .mec-reg-mandatory:nth-child(3) label:after,.mec-book-ticket-container .wbmec-mandatory{content:"";color:red;width:50px;height:50px;font-size:14px;padding-left:5px}@media only screen and (max-width:767px){.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li{width:100%;min-height:40px;margin-bottom:15px;text-align:center;float:none;display:block}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a{width:100%;padding-left:0;padding-right:0;text-align:center;display:block;font-size:12px}}.mec-single-event .mec-events-meta-group{margin-bottom:0}@media only screen and (max-width:767px){.mec-single-event .mec-events-meta-group-booking{margin-bottom:30px}}.mec-single-event .mec-event-meta dt,.mec-single-event .mec-event-meta h3{text-transform:uppercase;font-size:16px;font-weight:700;padding-bottom:5px;display:inline;color:#000;padding-left:10px}.mec-single-event .mec-event-meta h6{text-transform:uppercase;font-size:13px;padding-bottom:5px;display:inline;color:#222;padding-left:0}.mec-single-event .mec-event-meta .mec-events-event-categories a,.mec-single-event .mec-event-meta dd{font-size:14px;color:#8d8d8d}.mec-single-event .mec-event-meta .mec-location dd.author{color:#3c3b3b}.mec-single-event .mec-event-meta dd{margin:0;padding-left:35px}.mec-single-event .mec-event-meta dd.mec-events-event-categories{min-height:35px;line-height:35px}@media only screen and (max-width:480px){.single-mec-events .lity-container{width:100%}.single-mec-events .lity-content .mec-events-meta-group-booking{padding:20px;width:85%;margin:0 auto}}.mec-single-event .mec-event-meta dd.mec-events-event-categories:first-of-type{padding-top:5px}.mec-single-event .mec-event-meta dd.mec-events-event-categories:last-of-type{border-bottom:0}.mec-single-event .mec-event-meta dd a{color:#8d8d8d;transition:all .2s ease}.mec-single-event .mec-event-meta dd a i:before{font-size:16px!important}.mec-single-event .mec-event-meta dd a i{margin-right:8px}.mec-single-event .mec-event-meta dl{margin-bottom:0}.mec-single-event .mec-event-meta .mec-events-event-cost{font-size:18px}.mec-single-event .mec-event-meta .mec-events-address{color:#a9a9a9;margin-bottom:3px}.mec-single-event .mec-event-meta .mec-events-meta-group-venue .author{margin-bottom:0;color:#8d8d8d;font-size:13px}.mec-single-event .mec-events-event-image{margin-bottom:0}.mec-single-event h2.mec-single-event-title{margin-bottom:30px;font-weight:700;font-size:33px}.mec-single-event .mec-booking-button{border-bottom:none;letter-spacing:.5px;line-height:48px;height:76px;transition:all .5s ease;color:#fff;padding:16px;display:block;text-align:center;font-size:16px;border-radius:2px;box-shadow:0 1px 2px rgba(0,0,0,.15)}.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;margin-bottom: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.tumblr{background:#34465d}.mec-single-event .mec-event-social a.tumblr:hover{background:#273649}.mec-single-event .mec-event-social a.telegram{background:#08c}.mec-single-event .mec-event-social a.telegram:hover{background:#1076be}.mec-single-event .mec-event-social a.whatsapp{background:#25d366}.mec-single-event .mec-event-social a.whatsapp:hover{background:#23ac55}.mec-single-event .mec-event-social a.flipboard{background:#e12828}.mec-single-event .mec-event-social a.flipboard:hover{background:#af1e1e}.mec-single-event .mec-event-social a.pocket{background:#ef4056}.mec-single-event .mec-event-social a.pocket:hover{background:#8d1717}.mec-single-event .mec-event-social a.reddit{background:#ff5700}.mec-single-event .mec-event-social a.reddit:hover{background:#c94909}.mec-single-event .mec-event-social a.flipboard svg,.mec-single-event .mec-event-social a.telegram svg{height:16px}.mec-single-event .mec-event-social li.mec-event-social-icon a svg{display:unset}.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.linkedin{background:#457399}.mec-single-event .mec-event-social a.linkedin:hover{background:#2e4d66}.mec-single-event .mec-event-social a.other-social{background:#ff5d5e}.mec-single-event .mec-event-social a.other-social:hover{background:#cc4949}.mec-single-event .mec-event-social{text-align:center}.mec-single-event .mec-events-meta-group-booking form>h4,.mec-single-event .mec-frontbox-title{text-transform:uppercase;font-size:15px;font-weight:700;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative;text-align:center}.mec-single-event .mec-events-meta-group-booking form>h4:before,.mec-single-event .mec-frontbox-title:before{padding:1px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-35px;left:50%}.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-month],.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-year]{width:47%!important;margin-right:12px;margin-top:5px;display:inline-block!important}@media(max-width:768px){.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-month],.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-year]{width:100%!important;margin-right:0;display:block!important}}.mec-event-meta i:before{font-size:20px;vertical-align:middle}.mec-event-meta .mec-single-event-additional-organizers i:before,.mec-event-meta .mec-single-event-organizer i:before{font-size:14px;vertical-align:baseline}#mec-wrap .mec-events-day-time-slot .mec-events-content{float:left;width:33%;padding:0 15px}#mec-wrap .mec-events-day-time-slot .mec-events-event-image{padding-left:0}#mec-events-content .mec-events-abbr{color:#8d8d8d;font-size:14px}.mec-single-event .mec-events-content{margin-bottom:30px}.mec-single-event .mec-organizer-url a{word-wrap:break-word}.mec-single-event #headline{margin:0 0 10px}.mec-single-event #headline h2{padding:0}.mec-single-event .mec-events-meta-group.mec-events-meta-group-gmap .mec-events-venue-map{margin-top:0;padding:8px;border:1px solid #e5e5e5;border-radius:7px}#mec-events-gmap-0{height:325px!important}.mec-events-list .mec-events-day-time-slot .mec-events-event-meta{width:33%;float:left;padding:40px;height:auto;margin:0}.mec-events-day-time-slot .mec-events-content.description.entry-summary{font-size:15px;font-weight:300;color:#8d8d8d}.mec-events-day-time-slot .type-mec_events h2{font-size:28px;padding-bottom:20px}.mec-events-day .mec-events-day-time-slot .type-mec_events{margin:0}.mec-events-day .mec-events-day-time-slot h5{background-color:#8d8d8d}.mec-single-event .mec-event-meta .mec-single-event-additional-organizers .mec-events-single-section-title,.mec-single-event .mec-event-meta .mec-single-event-organizer .mec-events-single-section-title,.mec-single-event .mec-events-meta-date h3{padding-left:0;margin:10px;display:inline-block}.mec-single-event .mec-events-meta-date h3{width:100%}.mec-single-event .mec-events-event-image{border:0}.mec-single-event .mec-events-venue-map{padding:0}.mec-event-cost,.mec-event-more-info,.mec-event-website,.mec-events-meta-date,.mec-single-event-additional-organizers,.mec-single-event-category,.mec-single-event-date,.mec-single-event-label,.mec-single-event-location,.mec-single-event-organizer,.mec-single-event-time{background:#f7f7f7;padding:12px 14px 8px;margin-bottom:12px;vertical-align:baseline;position:relative}.mec-single-event .mec-events-meta-date dd,.mec-single-event .mec-single-event-additional-organizers dd,.mec-single-event .mec-single-event-organizer dd{padding-left:0;margin-bottom:10px}.mec-single-event .mec-events-meta-date dd span,.mec-single-event .mec-single-event-additional-organizers dd span,.mec-single-event .mec-single-event-organizer dd span{display:block;padding-left:12px;color:#8d8d8d}.mec-single-event .mec-events-meta-date i,.mec-single-event .mec-single-event-additional-organizers i,.mec-single-event .mec-single-event-organizer i{margin-right:10px;margin-left:12px}.mec-events-meta-group.mec-events-meta-group-venue dl{margin-bottom:0}address.mec-events-address{line-height:19px;font-style:normal;font-size:12px}.mec-single-event .mec-event-content dt{margin-top:5px}.mec-single-event .mec-single-event-additional-organizers .mec-single-event-additional-organizer{margin-bottom:15px;padding-bottom:5px;border-bottom:1px solid #e4e4e4}.mec-single-event .mec-single-event-additional-organizers .mec-single-event-additional-organizer:last-child{margin-bottom:0;padding-bottom:0;border:none}.mec-event-schedule-content{border-left:4px solid #f0f0f0;padding-top:10px;margin-top:30px;margin-left:25px;margin-bottom:20px;color:#8a8a8a}.mec-event-schedule-content dl{padding-left:24px;font-size:12px;position:relative;margin-bottom:35px}.mec-event-schedule-content dl:before{content:'';display:block;position:absolute;left:0;top:4px;width:20px;height:0;border-top:4px solid #f0f0f0}.mec-event-schedule-content dl dt{margin:0 0 10px;line-height:1.16}.mec-event-schedule-content dl dt.mec-schedule-title{font-size:13px;color:#5a5a5a;font-weight:700}.mec-event-schedule-content dl dt.mec-schedule-description{font-weight:300}.mec-event-schedule-content .mec-schedule-speakers{background:#f7f7f7;padding:10px}.mec-wrap .mec-event-schedule-content h6{font-size:13px;color:#5a5a5a;font-weight:700;display:inline-block}.mec-wrap .mec-event-schedule-content a{font-weight:400;color:#5a5a5a;transition:all .1s ease}.single-mec-events .mec-speakers-details ul{padding:0}.mec-single-event .mec-speakers-details ul li{list-style:none;background:#f7f7f7;padding:5px 5px 18px 5px;margin-top:14px}.mec-single-event .mec-speakers-details ul li a{-webkit-transition:.2s all ease;transition:.2s all ease}.mec-single-event .mec-speakers-details ul li .mec-speaker-avatar a img{float:left;border-radius:50%;transition:.2s all ease;border:2px solid transparent;width:68px;height:68px}.mec-single-event .mec-speakers-details ul li .mec-speaker-avatar a:hover img{border-color:#40d9f1}.mec-single-event .mec-speakers-details ul li .mec-speaker-name{display:inline-block;margin-top:10px;font-size:15px;line-height:1.8;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;color:#888}.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;display:block}.mec-attendees-list-details .mec-attendee-profile-link span{display:inline-block;color:#000;vertical-align:middle;cursor:pointer}.mec-attendees-list-details span.mec-attendee-profile-ticket-number{border-radius:50px;width:20px;height:20px;font-size:12px;text-align:center;color:#fff;margin-right:4px}.mec-attendees-list-details .mec-attendee-profile-link span i{vertical-align:middle;font-size:9px;font-weight:700;margin-left:5px}.mec-attendees-list-details .mec-attendees-toggle{border:1px solid #e6e6e6;background:#fafafa;padding:15px 15px 0;border-radius:3px;margin:12px 0 20px 52px;position:relative;font-size:13px;box-shadow:0 3px 1px 0 rgba(0,0,0,.02)}.mec-attendees-list-details .mec-attendees-toggle:after,.mec-attendees-list-details .mec-attendees-toggle:before{content:'';display:block;position:absolute;left:50px;width:0;height:0;border-style:solid;border-width:10px}.mec-attendees-list-details .mec-attendees-toggle:after{top:-20px;border-color:transparent transparent #fafafa transparent}.mec-attendees-list-details .mec-attendees-toggle:before{top:-21px;border-color:transparent transparent #e1e1e1 transparent}.mec-attendees-list-details .mec-attendees-toggle .mec-attendees-item{padding-bottom:15px}.mec-attendees-list-details .mec-attendee-avatar img{border-radius:3px}.mec-attendee-avatar-sec{float:left;width:50px;margin-right:12px}.mec-attendee-profile-name-sec,.mec-attendee-profile-ticket-sec{float:left;width:calc(100% - 62px);margin-top:3px}.mec-calendar{margin-bottom:20px;border:1px solid #e8e8e8;width:100%;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-calendar .mec-calendar-topsec{display:table;background:#fff}.mec-calendar .mec-calendar-topsec .mec-calendar-events-sec{display:none}.mec-calendar .mec-calendar-side{width:590px;display:table-cell;padding:40px;position:relative;text-align:center;box-shadow:0 1px 5px 6px rgba(0,0,0,.005) inset}.mec-calendar .mec-calendar-events-side{display:table-cell;height:100%;border-left:1px solid #efefef;padding:40px;width:100%}.mec-calendar .mec-calendar-events-side .mec-table-side-day{width:46px;height:46px;margin:0 auto 20px;position:relative;text-align:center;line-height:46px;border:1px solid #40d9f1;border-radius:50%;font-size:12px;font-weight:600;padding:0}.mec-calendar .mec-calendar-events-side .mec-table-side-title{text-align:center;font-size:11px;text-transform:uppercase;letter-spacing:3px;margin-bottom:14px}.mec-calendar .mec-calendar-header{position:relative;width:560px;margin-top:8px;margin-bottom:16px}.mec-calendar .mec-calendar-header h2{text-transform:uppercase;font-size:22px;font-weight:700;color:#333}.mec-calendar .mec-event-footer{width:auto;min-height:60px}.mec-calendar dl{display:table;margin:0;border:none;padding:0;table-layout:fixed}.mec-calendar dt{display:table-cell;transition:all .66s ease;color:#4d4d4d;background:#fff;border-radius:44px;font-size:14px;width:80px;height:80px;line-height:80px;text-align:center}.mec-calendar .mec-calendar-table .mec-no-event{display:none}.mec-calendar .mec-calendar-table-head dt{font-weight:700;text-transform:uppercase;font-size:15px}.mec-calendar .mec-calendar-row dt:hover{background:#f4f4f4}.mec-calendar .mec-table-nullday{color:#cacaca}.mec-calendar.mec-box-calendar .mec-table-nullday:last-child{border-right:1px solid #eaeaea}.mec-calendar .mec-next-month:hover,.mec-calendar .mec-prev-month:hover{background:#f4f4f4}.mec-calendar .mec-selected-day,.mec-calendar .mec-selected-day:hover{background:#40d9f1;color:#fff}.mec-calendar .mec-selected-day a{color:#fff}.mec-calendar .mec-has-event{position:relative}.mec-calendar .mec-calendar-row dt.mec-has-event:hover{background:#40d9f1}.mec-calendar .mec-has-event a{cursor:pointer;display:block;width:100%;height:100%;border-radius:50%;color:#4d4d4d;transition:all .25s ease;text-decoration:none;box-shadow:none}.mec-calendar .mec-calendar-row dt.mec-has-event.mec-selected-day a,.mec-calendar .mec-calendar-row dt.mec-has-event:hover a{color:#fff}.mec-calendar .mec-has-event:after{background-color:#40d9f1;border-radius:50%;display:block;content:'';width:8px;height:8px;bottom:14px;left:50%;margin:-4px 0 0 -4px;position:absolute;transition:all .25s ease}.mec-calendar .mec-calendar-row dt.mec-has-event:hover:after{background-color:#fff}.mec-calendar .mec-has-event.mec-selected-day:after{display:none}.mec-calendar .mec-event-article{text-align:left;margin-bottom:0;padding-bottom:25px;padding-top:26px;border-top:1px solid #efefef;transition:all .33s ease}.mec-calendar .mec-event-article:hover{background-color:#fafafa}.mec-calendar .mec-event-article .mec-event-time{font-size:11px;line-height:1.1;margin:0}.mec-calendar .mec-event-article .mec-event-title{font-size:13px;padding:0;margin:10px 0 8px;font-weight:700;text-transform:uppercase}.mec-calendar .mec-event-article .mec-event-title a{text-decoration:none;color:#494949;transition:color .3s ease}.mec-calendar .mec-event-article .mec-event-title a:hover{color:#40d9f1}.mec-calendar .mec-event-article .mec-event-image,.mec-calendar .mec-event-list-classic .mec-event-image img{width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-image{float:left;margin-right:20px;width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-detail{font-size:13px;line-height:1.3;font-family:Roboto,sans-serif;color:#9a9a9a;margin-bottom:0}.mec-calendar .mec-calendar-side .mec-next-month,.mec-calendar .mec-calendar-side .mec-previous-month{cursor:pointer;position:absolute;top:0;min-width:50px;height:50px;line-height:50px;text-align:center;background:#fff;color:#a9a9a9;font-size:12px;letter-spacing:1px;text-transform:uppercase;padding-left:10px;padding-right:10px;border:1px solid #efefef;border-top:none;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease}.mec-calendar .mec-calendar-side .mec-next-month i,.mec-calendar .mec-calendar-side .mec-previous-month i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-calendar .mec-calendar-side .mec-next-month:hover,.mec-calendar .mec-calendar-side .mec-previous-month:hover{background-color:#f9f9f9;color:#40d9f1}.mec-calendar .mec-calendar-side .mec-previous-month{left:0;border-bottom-right-radius:6px;border-left:none}.mec-calendar .mec-calendar-side .mec-next-month{right:0;border-bottom-left-radius:6px;border-right:none}@media only screen and (min-width:961px){.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-has-event:after{width:6px;height:6px;bottom:6px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-calendar-side{width:370px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-calendar-header{position:relative;width:350px;margin-top:30px;margin-bottom:20px;padding-top:20px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) dt{width:50px;height:50px;line-height:50px}.mec-wrap.mec-sm959 .mec-calendar.mec-event-calendar-classic dl dt{height:110px}}@media only screen and (max-width:1200px){.mec-calendar .mec-has-event:after{width:6px;height:6px;bottom:6px}.mec-calendar .mec-calendar-side{width:370px}.mec-calendar .mec-calendar-header{position:relative;width:350px;margin-top:30px}.mec-calendar dt{width:50px;height:50px;line-height:50px}}@media only screen and (max-width:767px){.mec-calendar .mec-calendar-header h2{font-size:18px}.mec-calendar .mec-calendar-topsec{width:100%}.mec-calendar .mec-calendar-side{width:100%;display:block;padding:30px}.mec-calendar .mec-calendar-header{width:auto}.mec-calendar .mec-calendar-events-side{width:100%;display:block;height:100%;border-left:none;border-top:1px solid #efefef;padding:20px}.mec-calendar dl{width:100%}.mec-calendar dt{width:14%;height:60px;line-height:60px;border-radius:50px}}@media only screen and (max-width:479px){.mec-calendar .mec-has-event:after{width:4px;height:4px}.mec-calendar .mec-calendar-header h2{font-size:16px;margin-top:33px}.mec-calendar dt{height:38px;line-height:38px}.mec-calendar .mec-event-list-classic .mec-event-detail,.mec-calendar .mec-event-list-classic .mec-event-title{font-size:12px}.mec-calendar .mec-event-list-classic .mec-event-time{font-size:10px}}.mec-box-calendar.mec-calendar .mec-has-event a,.mec-box-calendar.mec-calendar dt{border-radius:0}.mec-box-calendar.mec-calendar .mec-calendar-header{margin-top:2px;margin-bottom:30px}.mec-box-calendar.mec-calendar dt{border-bottom:1px solid #eaeaea;border-left:1px solid #eaeaea}.mec-box-calendar.mec-calendar dl dt:last-child{border-right:1px solid #eaeaea}.mec-box-calendar.mec-calendar .mec-calendar-table-head dt{border-top:1px solid #eaeaea;background-color:#f8f8f8}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt{background-color:#f4f4f4}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{border-radius:2px;top:40px;border:1px solid #eee;height:30px;line-height:30px;z-index:1}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:60px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:60px}.mec-box-calendar.mec-calendar .mec-calendar-side{box-shadow:none}.mec-box-calendar.mec-calendar .mec-calendar-events-side{border:none}.mec-box-calendar.mec-calendar .mec-calendar-events-side .mec-table-side-day{border-radius:2px}.mec-box-calendar.mec-calendar h4.mec-month-label{position:relative;width:560px;margin-top:2px;margin-bottom:30px;text-transform:uppercase;font-size:22px;font-weight:700;color:#333}.mec-widget .mec-box-calendar.mec-calendar h4.mec-month-label{width:100%;margin-top:8px;font-size:13px}@media only screen and (max-width:1200px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:42px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:42px}.mec-calendar .mec-calendar-header h2{font-size:17px;margin-top:7px}}@media only screen and (max-width:767px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{top:28px;font-size:10px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:30px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:30px}.mec-calendar .mec-calendar-header h2{font-size:15px}}@media only screen and (max-width:479px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{top:16px;font-size:0;padding:4px 0;text-align:center;min-width:33px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:10px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:10px}.mec-box-calendar.mec-calendar .mec-calendar-header h2{font-size:12px;margin-top:15px}.mec-box-calendar.mec-calendar .mec-event-image{margin-right:12px}}.mec-calendar.mec-event-calendar-classic,.mec-calendar.mec-event-calendar-classic .mec-calendar-side{border:none;padding:0;width:100%;height:100%;box-shadow:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-side{display:block}.mec-calendar.mec-event-calendar-classic .mec-calendar-header,.mec-calendar.mec-event-calendar-classic dl{width:100%}.mec-calendar.mec-event-calendar-classic dl dt{width:15%;height:136px;line-height:1.2;text-align:left;padding:5px 7px;position:relative}.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt{height:30px!important}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month{top:0}.mec-calendar.mec-event-calendar-classic .mec-has-event:after{bottom:auto;top:24px;left:7px;margin:0}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month{left:0}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month{right:0}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{text-align:left;background:#fafafa;border:1px solid #eaeaea;border-top:none;padding:10px 20px}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{display:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-event-article:hover{background-color:#fcfcfc}.mec-calendar.mec-event-calendar-classic .mec-selected-day,.mec-calendar.mec-event-calendar-classic dt.mec-selected-day:hover{color:#40d9f1;font-weight:700;background:#fafafa;border-bottom:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-day,.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-title{display:inline-block;margin:0;margin-bottom:15px;font-weight:700}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-day{margin-left:4px}.mec-calendar.mec-event-calendar-classic .mec-calendar-row dt.mec-has-event a{color:#4d4d4d}.mec-calendar.mec-event-calendar-classic .mec-calendar-row dt.mec-has-event:not(.mec-selected-day):hover a{color:#fff}@media only screen and (max-width:1200px){.mec-calendar.mec-event-calendar-classic dl dt{height:100px}}@media only screen and (max-width:767px){.mec-calendar.mec-event-calendar-classic dl dt{height:40px}}@media only screen and (max-width:479px){.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{padding:10px}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-header h2{font-size:13px;margin-top:8px}}.mec-calendar .mec-event-article.mec-single-event-novel{padding:4px 8px;min-height:25px;margin:0 -4px;border-radius:0}.mec-calendar .mec-event-article.mec-single-event-novel h4{margin:0;font-size:10px;line-height:18px}.mec-calendar.mec-event-container-novel dl dt{padding:3px}.mec-calendar.mec-event-calendar-classic .mec-calendar-novel-selected-day{display:inline-block;padding:4px;margin-left:1px}.mec-calendar.mec-event-calendar-classic .mec-selected-day .mec-calendar-novel-selected-day{color:#fff}.mec-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-selected-day,.mec-calendar.mec-event-calendar-classic.mec-event-container-novel dt.mec-selected-day:hover{border-bottom:1px solid #eaeaea}.mec-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-calendar-side .mec-calendar-table{min-height:auto}.mec-single-event-novel.light h4{color:#000!important}.mec-single-event-novel.dark h4{color:#fff!important}@media only screen and (max-width:768px){.mec-calendar .mec-event-article.mec-single-event-novel{padding:0;min-height:5px}.mec-calendar .mec-event-article.mec-single-event-novel h4{display:block;font-size:9px}}.mec-event-container-simple .event-single-content-simple{display:none}.mec-event-calendar-classic.mec-event-container-simple .mec-calendar-side .mec-calendar-table{min-height:unset}.mec-event-container-simple .mec-monthly-tooltip h4{font-size:13px;font-weight:500;margin:0;color:#444}.mec-event-container-simple .mec-monthly-tooltip h4:hover{text-decoration:underline;color:#111}.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple{border-bottom:1px dashed #e3e3e3;padding:10px 2px;display:block}.mec-calendar.mec-event-container-simple dl dt.mec-calendar-day{font-size:30px;color:#000}.mec-calendar.mec-event-container-simple .mec-calendar-row dt:hover{background:unset}.mec-calendar.mec-event-container-simple .mec-calendar-row dt,.mec-calendar.mec-event-container-simple .mec-calendar-row dt:last-child,.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt,.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt:last-child{border-width:2px}.mec-calendar.mec-event-container-simple dl dt.mec-selected-day,.mec-calendar.mec-event-container-simple dl dt.mec-selected-day:hover{border-bottom:2px solid #40d9f1;background:unset}.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt{line-height:36px}@media (max-width:768px){.mec-calendar.mec-event-container-simple{overflow-x:scroll}.mec-calendar.mec-event-container-simple .mec-calendar-side{min-width:100%}.mec-event-container-simple .mec-monthly-tooltip h4{font-size:12px}}.mec-wrap.colorskin-custom .mec-calendar.mec-event-container-simple .mec-selected-day:hover{background:#f4f4f4}.mec-event-container-simple .mec-calendar-day .mec-monthly-tooltip.event-single-link-simple:last-of-type{border:none}.mec-tooltip-event-title{font-size:16px;font-weight:700;color:#000;margin-bottom:2px}.mec-tooltip-event-time{font-size:12px;color:#888;margin-bottom:8px;margin-top:5px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-content{padding:17px}.mec-tooltip-event-content{clear:both}.mec-tooltip-event-featured{float:left;margin-right:13px;margin-bottom:1px}.mec-tooltip-event-featured img{max-width:120px}.mec-tooltip-event-desc{font-size:14px;color:#444;line-height:18px}.mec-tooltip-event-desc p{font-size:13px;line-height:1.4;margin-bottom:10px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-box{border-radius:3px!important;border:1px solid #e2e3e4!important;background:#fff!important;box-shadow:0 -1px 30px -2px rgba(0,0,0,.15)!important}.tooltipster-sidetip .tooltipster-arrow{overflow:visible!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-border{border-width:12px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-right .tooltipster-arrow-border{border-right-color:#e2e3e4!important}.tooltipster-sidetip .tooltipster-arrow-border{left:-12px!important;z-index:9999999999!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-background{display:block!important}.tooltipster-sidetip .tooltipster-arrow-background{border-width:11px!important;z-index:99999999999!important}.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background{left:-9px!important;top:1px!important;border-right-color:#fff!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background{border-top-color:#fff!important;left:0!important;top:-1px!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border{left:-1px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-top .tooltipster-arrow-border{border-top-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{left:-1px!important;top:-11px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{border-bottom-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background{top:-9px!important;border-bottom-color:#fff!important}.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background{border-left-color:#fff!important;left:-2px!important;top:0!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-left .tooltipster-arrow-border{border-left-color:#e2e3e4!important;left:-1px!important;top:-1px!important}@media (max-width:780px){.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple h4{word-break:break-all;font-size:13px}}@media (max-width:320px){.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple h4{font-size:10px}}.mec-calendar.mec-calendar-daily .mec-calendar-day-events .mec-event-article{padding-left:15px;padding-right:15px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month{text-align:center;background-color:#fff;border-bottom:2px solid #f4f4f4;position:relative}.mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{color:#444;font-size:18px;line-height:1.2;padding:15px 0 11px;margin:0;font-weight:700;letter-spacing:1px;text-transform:uppercase;border-bottom:1px solid #e6e6e6}.mec-calendar.mec-calendar-daily .mec-calendar-d-top{text-align:center;padding:10px 0;position:relative;background-color:#fafafa}.mec-calendar.mec-calendar-daily .mec-next-month,.mec-calendar.mec-calendar-daily .mec-previous-month{position:absolute;top:50%;left:50%;margin-top:-25px;min-width:50px;height:50px;line-height:50px;text-align:center;background:#fff;border:1px solid #e2e2e2;border-radius:50px;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month i,.mec-calendar.mec-calendar-daily .mec-previous-month i{font-size:14px;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month:hover,.mec-calendar.mec-calendar-daily .mec-previous-month:hover{border-color:#d0d0d0;color:#444;box-shadow:0 2px 5px 0 rgba(0,0,0,.075)}.mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-150px}.mec-calendar.mec-calendar-daily .mec-next-month{margin-left:100px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-next-month,.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-previous-month{min-height:28px;height:28px;line-height:28px;width:28px;margin-top:-14px;border-radius:3px}.mec-calendar.mec-calendar-daily .mec-calendar-d-top h2,.mec-calendar.mec-calendar-daily .mec-calendar-d-top h3{margin-top:9px;color:#b9b9b9;font-family:Roboto,sans-serif;font-size:30px;font-weight:100;text-transform:uppercase;margin-bottom:12px;line-height:1}.mec-calendar.mec-calendar-daily .mec-calendar-d-top h2{font-size:81px;color:#444;margin-bottom:10px;line-height:1.1}.mec-calendar.mec-calendar-daily .mec-calendar-d-table{overflow:hidden;background:#fff;min-height:60px;border-top:1px solid #e6e6e6;border-bottom:2px solid #f3f3f3;padding:0 50px;position:relative}@media only screen and (min-width:479px){.mec-calendar.mec-calendar-daily .mec-calendar-d-table{padding:0 55px}}.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl{width:1310px;display:block}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl{display:none}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl.mec-weekly-view-week-active{display:block}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt{display:block;background:#fff;width:42px;height:60px;line-height:60px;text-align:center;float:left;border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6;border-radius:0}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day:hover,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt:hover{background:#fafafa;box-shadow:0 2px 5px 0 rgba(0,0,0,.065) inset;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day{cursor:default;background:#fff;color:#c1c1c1;line-height:59px;text-align:center;border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-has-event{cursor:pointer;font-weight:700;color:#4a4a4a}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-daily-view-day-active,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt.mec-table-d-current{font-size:18px;font-weight:700;background:#fafafa;color:#40d9f1}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next,.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-prev{float:none;font-size:14px;width:55px;position:absolute;top:0;left:0;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next{left:auto;right:0;border-left:1px solid #e6e6e6;border-right:none}.mec-calendar.mec-calendar-daily .mec-today-container .mec-today-count{font-size:12px;color:#888;text-align:center}@media only screen and (max-width:479px){.mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-130px}.mec-calendar.mec-calendar-daily .mec-next-month{margin-left:80px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{font-size:14px;letter-spacing:0}}.widget .mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{font-size:14px;letter-spacing:0}.widget .mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-130px}.widget .mec-calendar.mec-calendar-daily .mec-next-month{margin-left:80px}.mec-util-hidden{display:none}.mec-daily-view-date-events,.mec-weekly-view-date-events{list-style:none;margin:0}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table{padding:0}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl{width:calc(100% - 1px)}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt{width:14.286%;height:70px;line-height:normal;cursor:default}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:hover{background:#fff;cursor:default}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:last-child{border-right:none}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:12px;font-weight:700;text-transform:uppercase;display:block;margin:15px 0 6px}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table a.mec-table-d-next,.mec-calendar.mec-calendar-weekly .mec-calendar-d-table a.mec-table-d-prev{display:none}ul.mec-weekly-view-dates-events,ul.mec-weekly-view-dates-events li{padding:0;margin:0;line-height:initial}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:64px;height:64px;margin-right:10px;font-size:11px;text-transform:uppercase;float:left;text-align:center;padding-top:2px}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:40px;line-height:30px;font-weight:700;display:block;margin-bottom:6px;letter-spacing:1px}.mec-calendar.mec-calendar-weekly .mec-calendar-a-month .mec-previous-month{margin-left:0;left:12px}.mec-calendar.mec-calendar-weekly .mec-calendar-a-month .mec-next-month{margin-left:0;left:auto;right:12px}@media only screen and (max-width:479px){.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:9px;letter-spacing:0}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:100%;height:36px;margin-bottom:12px;line-height:1;font-size:10px;margin-right:5px;text-align:left}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:18px;margin-bottom:5px}}.widget .mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:9px;letter-spacing:0}.widget .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:100%;height:36px;margin-bottom:12px;line-height:1;font-size:10px;margin-right:5px;text-align:left}.widget .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:18px;margin-bottom:5px}.mec-week-events-container .mec-weekly-view-dates-events li.mec-no-event-found{list-style:none!important}li.mec-no-event-found .mec-event-title{text-align:center}.mec-widget .mec-calendar{max-width:100%}.mec-widget .mec-calendar dl dt,.mec-wrap.mec-sm959.mec-widget .mec-calendar.mec-event-calendar-classic dl dt{height:40px}.mec-widget .mec-calendar .mec-calendar-events-sec{padding:10px}.mec-widget .mec-calendar .mec-calendar-header h2{font-size:13px;margin-top:8px}.mec-widget .mec-calendar .mec-event-list-classic .mec-event-image{margin-right:12px}.mec-widget .mec-calendar .mec-has-event:after{width:4px;height:4px}.mec-widget .mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-title{font-size:14px}.mec-widget .mec-calendar .mec-event-article .mec-event-image{margin-right:11px}.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-header{margin-bottom:20px}.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{font-size:0;padding:4px 0;text-align:center;min-width:33px}.mec-widget .mec-event-calendar-classic .mec-calendar-side .mec-calendar-table{min-height:200px}.mec-widget .mec-event-list-classic{margin-bottom:8px;padding:8px 0}.mec-widget .mec-event-list-classic .mec-event-article{margin-bottom:0;padding:10px 0;position:relative;min-height:86px;padding-left:80px}.mec-widget .mec-event-list-classic .mec-event-date{font-size:10px;line-height:14px;text-transform:uppercase}.mec-widget .mec-event-list-classic .mec-event-title{font-size:13px}.mec-widget .mec-event-list-classic .mec-event-detail{font-size:11px}.mec-widget .mec-event-list-classic .mec-event-image{width:68px;position:absolute;left:0}.mec-event-list-classic .mec-event-image img{width:100%}.mec-widget .mec-event-list-classic .mec-event-detail{overflow:visible}.event-color{width:14px;display:inline-block;height:14px;margin-left:5px;border-radius:50%}.mec-map-lightbox-wp{width:580px;padding:15px 15px 0;background-color:#fff}.mec-map-view-event-detail.mec-event-detail{width:580px;background-color:#e9e9e9;padding:8px 15px}.mec-map-lightbox-wp.mec-event-list-classic .mec-event-article{padding:0 0 15px;margin:0}.mec-map-lightbox-wp.mec-event-list-classic .mec-event-image{width:70px;margin-right:15px}.mec-marker-infowindow-wp{padding:10px}.mec-marker-infowindow-wp .mec-marker-infowindow-count{width:60px;height:60px;display:block;text-align:center;line-height:60px;border:1px solid #40d9f1;border-radius:50%;font-size:32px;color:#40d9f1;float:left;margin-right:11px}.mec-marker-infowindow-wp .mec-marker-infowindow-content{overflow:hidden;padding-top:6px}.mec-marker-infowindow-wp .mec-marker-infowindow-content span{display:block;color:#222}.mec-marker-infowindow-wp .mec-marker-infowindow-content span:first-child{font-size:15px;font-weight:700}.mec-marker-wrap{display:inline-block;width:35px;height:35px;margin:15px 0 0 4px;border-radius:50% 50% 50% 0;background:#00cae9;animation-name:mec-map-bounce;animation-fill-mode:both;animation-duration:1s;border:3px solid #fff;cursor:pointer}.mec-marker-wrap .mec-marker{margin-top:5px;display:block;-webkit-transform:rotate(45deg);transform:rotate(45deg);text-align:center;color:#fff;font-size:17px}.mec-marker-wrap .mec-marker-pulse-wrap{-webkit-transform:rotate(45deg);transform:rotate(45deg);display:inline-block;margin-left:-11px;margin-top:0}.mec-marker-wrap .mec-marker-pulse{display:inline-block;background:#c5c5c5;border-radius:50%;height:14px;width:14px;-webkit-transform:rotateX(55deg);transform:rotateX(55deg);z-index:-2}.mec-marker-wrap .mec-marker-pulse:after{content:"";border-radius:50%;height:40px;width:40px;position:absolute;margin:-13px 0 0 -13px;animation:pulsate 1s ease-out;animation-iteration-count:infinite;opacity:0;box-shadow:0 0 1px 2px #00cae9;animation-delay:1.1s}@keyframes pulsate{0%{transform:scale(.1,.1);opacity:0}50%{opacity:1}100%{transform:scale(1.2,1.2);opacity:0}}@keyframes mec-map-bounce{0%{opacity:0;transform:translateY(-2000px) rotate(-45deg)}60%{opacity:1;transform:translateY(30px) rotate(-45deg)}80%{transform:translateY(-10px) rotate(-45deg)}100%{transform:translateY(0) rotate(-45deg)}}.mec-skin-grid-container .mec-skin-map-container,.mec-skin-list-container .mec-skin-map-container{margin-bottom:20px}.mec-single-event{margin-top:10px}.mec-single-event .mec-events-meta-group-countdown{color:#c9c9c9;text-align:center;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-events-meta-group-countdown .countdown-w{text-align:center;font-size:36px;margin:0 auto;padding:40px 0 0;position:relative;display:table;table-layout:fixed}.mec-events-meta-group-countdown .countdown-w .icon-w{font-size:24px}.mec-events-meta-group-countdown .countdown-w .label-w{font-size:15px;font-weight:300;letter-spacing:1px;text-transform:uppercase;position:relative}.mec-events-meta-group-countdown .countdown-w .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px;width:190px;font-size:72px;transition:all .3s ease-in-out;line-height:1.2}.mec-events-meta-group-countdown .countdown-w .block-w.done-w{border:0 none}.mec-events-meta-group-countdown .countdown-w .block-w li{font-size:50px}.mec-events-meta-group-countdown .countdown-w span{padding:24px 0 20px}.mec-events-meta-group-countdown .countdown-w .div-d{display:none}.mec-events-meta-group-countdown .countdown-w .countdown-message{display:none}.mec-events-meta-group-countdown .countdown-w .block-w i{display:none}#countdown{list-style:none;margin-bottom:0;margin-top:0;margin-left:0;padding-left:0}.mec-events-meta-group-countdown .mec-end-counts h3{display:inherit;text-align:center;font-size:16px;right:50%}.mec-countdown-details .countdown-w .clockdiv li p{margin-top:23px}@media (min-width:481px) and (max-width:768px){.mec-events-meta-group-countdown .countdown-w{padding:0}.mec-events-meta-group-countdown .countdown-w .label-w{font-size:12px;letter-spacing:0}.mec-events-meta-group-countdown .countdown-w span{font-size:34px}}@media (min-width:320px) and (max-width:480px){.mec-events-meta-group-countdown .countdown-w .label-w{font-size:10px}.mec-events-meta-group-countdown .countdown-w span{font-size:28px}.mec-countdown-details .countdown-w .clockdiv li p{margin-top:16px}}@media (max-width:320px){.mec-events-meta-group-countdown .countdown-w .label-w{font-size:9px;letter-spacing:0}.mec-events-meta-group-countdown .countdown-w span{font-size:22px}}.info-msg,.mec-error,.mec-success,.warning-msg{margin:10px 0;padding:10px;border-radius:3px 3px 3px 3px;font-size:13px}.info-msg{color:#059;background-color:#bef}.mec-success{color:#0dbf52;background-color:#cef7ce}.warning-msg{color:#9f6000;background-color:#feefb3}.mec-error{color:#d8000c;background-color:#ffbaba}.mec-fes-form,.mec-fes-list{background:#f8feff;padding:30px 3%;color:#798f96;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important}.mec-fes-list .mec-fes-list-top-actions,.mec-fes-list ul{margin:0 auto 15px;max-width:960px;list-style:none}.mec-fes-form-cntt .dashicons-editor-help{display:none}.mec-fes-list ul li *{text-decoration:none!important}.mec-fes-list ul li{padding:20px 15px;border-radius:3px;margin-bottom:15px;border:1px solid #cfeff5;box-shadow:0 2px 6px -4px #cfeff5;background:#fff;line-height:normal}.mec-fes-list ul li a{box-shadow:none;color:#181818}.mec-fes-list ul li a:hover{color:#40d9f1}.mec-fes-list ul li .mec-event-title{font-size:17px;font-weight:600;width:calc(100% - 250px);display:inline-block}@media (max-width:600px){.mec-fes-list ul li .mec-event-title{font-size:13px}}.mec-fes-list .mec-event-status{color:#fff!important;border-color:transparent!important}.mec-fes-form .mec-book-confirmed,.mec-fes-list .mec-book-confirmed{background:#50d477!important}.mec-fes-form .mec-book-pending,.mec-fes-list .mec-book-pending{background:#fcbe69!important}.mec-fes-form .mec-book-rejected,.mec-fes-list .mec-book-rejected{background:#fe686a!important}.mec-fes-form .mec-book-other,.mec-fes-list .mec-book-other{background:#40d9f1!important}.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view{font-size:11px;padding:0;border:0;background:#f7f8f9;float:right;margin-left:5px;border-radius:2px;transition:all .2s ease}.mec-fes-list ul li .mec-fes-event-export a,.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view a{padding:4px 8px;display:inline-block;border:1px solid #e7e8e9;border-radius:2px;color:#789;position:relative}@media (max-width:600px){.mec-fes-list ul li .mec-fes-event-export a,.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view a{font-size:10px}}.mec-fes-list ul li .mec-fes-event-remove:hover{cursor:pointer;background:#f96f8a;border-color:#f96f8a;color:#fff}.mec-fes-list ul li .mec-fes-event-export a:hover,.mec-fes-list ul li .mec-fes-event-view a:hover{background:#40d9f1;color:#fff;border-color:#40d9f1}.mec-fes-form-top-actions a,.mec-fes-list-top-actions a{position:relative;border:none;border-radius:3px;color:#fff!important;display:inline-block;font-size:13px;line-height:1;text-transform:none;font-weight:400;text-decoration:none;cursor:pointer;margin-bottom:20px!important;margin-right:10px;line-height:1;letter-spacing:0;padding:15px 22px;background:#39c36e;box-shadow:0 1px 7px -3px #39c36e!important;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;text-decoration:unset}.mec-fes-form-top-actions a:hover,.mec-fes-list-top-actions a:hover{background:#222;color:#fff}.mec-fes-list-top-actions a{font-weight:600;text-transform:capitalize}.mec-fes-form-top-actions a:before{content:"";border:solid #fff;border-width:0 2px 2px 0;display:inline-block;padding:6px;margin-right:5px;vertical-align:sub;transform:rotate(135deg);-webkit-transform:rotate(135deg)}.mec-fes-form .mec-form-row,.mec-fes-list .mec-form-row{margin-bottom:10px;clear:both}.mec-fes-form label{font-size:13px;display:block;color:#798f96;font-weight:400;padding:0 0 4px 2px}.mec-fes-form input+label{padding-top:8px;padding-left:3px;margin:0;display:inline-block;vertical-align:top}.mec-fes-form .post-status{float:right!important;margin:0 5px;color:#fff;padding:0 10px;border-radius:12px;font-style:italic;font-size:18px}.mec-fes-form input[type=email],.mec-fes-form input[type=number],.mec-fes-form input[type=password],.mec-fes-form input[type=tel],.mec-fes-form input[type=text],.mec-fes-form select,.mec-fes-form textarea{min-width:inherit;width:auto;display:inline;min-height:30px;font-size:13px;padding:10px;margin-bottom:20px;clear:both;background:#fff;border:1px solid #cfeff5;box-shadow:0 2px 5px rgba(207,239,245,.38) inset;border-radius:3px;height:40px;max-width:280px;color:#798f96;font-family:inherit}.mec-fes-form input{background:#fff!important;border-radius:3px!important;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important}.mec-fes-form textarea{height:80px}.mec-fes-form input::-webkit-input-placeholder{color:#798f96}.mec-fes-form input::-moz-placeholder{color:#798f96}.mec-fes-form input:-ms-input-placeholder{color:#798f96}.mec-fes-form input:-moz-placeholder{color:#798f96}#mec_more_info_target{width:100%}@media only screen and (min-width:961px){.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=text],.mec-fes-form textarea{width:100%;display:inline-block}}@media only screen and (max-width:768px){.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=text],.mec-fes-form textarea{width:100%}}.mec-fes-form input[type=text]#mec_fes_title{padding:5px 10px;min-height:32px;height:50px;background:#fff!important;max-width:100%;font-size:19px;font-weight:400}.mec-fes-form input[type=checkbox],.mec-fes-form input[type=radio]{display:inline!important;float:left;margin:5px 5px 0 0}.mec-fes-form input[type=email]:focus,.mec-fes-form input[type=number]:focus,.mec-fes-form input[type=password]:focus,.mec-fes-form input[type=tel]:focus,.mec-fes-form input[type=text]:focus,.mec-fes-form select:focus,.mec-fes-form textarea:focus{border:1px solid #aaa;color:#444;background:#fff;-moz-box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);box-shadow:0 0 3px rgba(0,0,0,.2);outline:0}.mec-form-row .mec-color{cursor:pointer}.mec-form-row.mec-available-color-row span{margin:10px;width:14px;height:14px;display:inline-block;margin-right:6px;border-radius:20px 20px 20px 20px;vertical-align:middle}.mec-form-row.mec-available-color-row span:first-of-type{margin-left:0}.mec-fes-form.mec-fes-form .mec-tooltip{display:inline}.mec-fes-form-cntt .dashicons-editor-help{display:block}.mec-fes-form .mec-tooltip:hover:after,.mec-fes-form .mec-tooltip:hover:before{display:none}.mec-fes-form.mec-fes-form .mec-tooltip{display:inline-flex;bottom:7px}.mec-fes-form .mec-tooltip .box{min-width:300px;max-width:600px;display:inline-block;left:26px;top:50%;transform:translateY(-50%);padding:0;margin-top:8px;background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.3;position:absolute;z-index:9999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s}#webnus-dashboard .mec-fes-form .mec-tooltip .box p,.mec-fes-form .mec-tooltip .box p{color:#fff;font-size:14px;line-height:1.3;margin:0}.mec-fes-form .mec-tooltip:hover .box{visibility:visible;opacity:1}.mec-fes-form .mec-tooltip:hover .box{padding:20px;border-radius:8px}.mec-fes-form .mec-tooltip .box h5{color:#fff;font-size:17px;font-weight:600;margin:-30px -20px;padding:20px 0;text-align:center;margin-bottom:10px;background:#3a3f44;border-bottom:1px solid #32363a;border-radius:6px 6px 0 0;z-index:9999}#webnus-dashboard .mec-fes-form .mec-tooltip .box p a,.mec-fes-form .mec-tooltip .box p a{color:#40d9f1;margin-top:10px;margin-left:0;font-weight:400;position:relative;text-decoration:none;display:block;width:max-content}.mec-fes-form .mec-tooltip .box a:hover{color:#f90}.mec-fes-form .mec-tooltip .box:after{display:block;position:absolute!important;top:100%!important;right:50%!important;margin-top:-6px!important;margin-right:-6px!important;width:12px!important;height:24px!important;overflow:hidden!important;transform:rotate(-90deg)!important}.mec-fes-form .mec-tooltip .box:before{display:block;content:''!important;position:absolute!important;width:12px;height:12px;left:-10px!important;top:50%!important;transform:translate(50%,-50%) rotate(-45deg)!important;background-color:#535a61!important;box-shadow:0 8px 9px -4px #535a61!important;z-index:0!important}.mec-fes-form .mec-tooltip .box.top{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-fes-form .mec-tooltip .box.top:after{top:50%!important;right:100%!important}.mec-fes-form .mec-tooltip .box.top:before{left:50%!important;top:100%!important}.mec-fes-form .mec-tooltip .box.bottom{left:50%;top:auto;bottom:0;transform:translate(-50%,100%);margin-bottom:-20px;margin-left:-10px}.mec-fes-form .mec-tooltip .box.bottom:after{top:0!important;right:50%!important;background-color:#3a3f44!important}.mec-fes-form .mec-tooltip .box.bottom:before{left:50%!important;top:-7px!important;transform:translateX(-50%);background-color:#3a3f44!important}.mec-fes-form .mec-tooltip .box.left{left:auto;right:26px;top:50%;transform:translateY(-50%)}.mec-fes-form .mec-tooltip .box.left:before{right:0!important;left:auto!important;top:50%!important}.mec-fes-form .mec-tooltip{display:inline-block;position:relative;margin-right:10px;cursor:help;bottom:5px;left:3px}.mec-fes-form .mec-tooltip:last-child{margin-right:0}.mec-fes-form .mec-tooltip:hover:after{background:#313130;border-radius:5px;bottom:24px;color:#fff;content:attr(title);left:-75px;padding:10px;position:absolute;z-index:98;width:240px}.mec-fes-form .mec-tooltip:hover:before{border:solid;border-color:#313130 transparent;border-width:6px 6px 0;bottom:18px;content:"";left:30%;position:absolute;z-index:99}.mec-fes-form .mec-tooltip .dashicons-before:before{font-size:24px;color:#008aff;line-height:37px}.mec-fes-form .mec-tooltip a:focus{box-shadow:none}.mec-form-row .bootstrap_unvalid{display:block;border:2px solid red;position:relative;display:inline-block;border-bottom:1px dotted #000}.mec-fes-form .mec-tooltiptext{visibility:hidden;width:120px;background-color:red;color:#fff;text-align:center;border-radius:6px;padding:5px 0;position:absolute;z-index:1}.mec-fes-form .mec-tooltip .content p a{display:none}@media only screen and (min-width:961px){.mec-fes-form .mec-fes-form-cntt,.mec-fes-form .mec-fes-form-sdbr{width:68%;float:left;padding-right:20px}.mec-fes-form .mec-fes-form-sdbr{width:32%;padding-right:0;padding-left:20px}.mec-fes-submit-mobile{display:none}}.mec-fes-form .mec-meta-box-fields{padding:0 20px 20px;border:1px solid #cfeff5;margin-bottom:20px!important;box-shadow:0 2px 6px -3px #cfeff5;border-radius:3px;background:#fff}.mec-fes-form .mec-meta-box-fields h4{margin:0 -20px;font-size:15px;font-weight:600;letter-spacing:0;color:#40d9f1;text-transform:capitalize;padding:15px 20px;background:#ecfcff;margin-bottom:20px;border-radius:3px}.mec-fes-sub-button{width:100%}.mec-available-color-row span.color-selected{border:3px solid #fff;box-sizing:content-box;box-shadow:0 0 0 2px #40d9f1,0 2px 8px -1px #40d9f1}.mec-fes-loading:before{content:url(../img/ajax-loader.gif);background:0 0;border-style:none;display:block;margin-left:47%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text]{width:190px;margin-right:1.4%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-1,.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-2{width:120px;margin-right:10px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].widefat{width:100%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row{border-bottom:none;padding-bottom:10px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-6{width:39%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row button{margin-right:0;padding:9px 26px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row button.mec-add-hourly-schedule-button{font-size:12px;height:30px;line-height:25px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row .description{display:inline-block;border-left:1px dashed #bfcacc;margin-left:12px;line-height:28px;padding-left:12px;margin-top:5px;font-style:italic}@media only screen and (max-width:768px){.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text]{width:100%!important}}#mec_fes_form_message{max-width:838px;margin:10px auto;display:block!important;text-align:center}.mec-wrap .mec-totalcal-box{position:relative;border:1px solid #efefef;padding:20px 5px;margin:0 0 20px;background:#fafafa;overflow:hidden;box-shadow:0 3px 2px 0 rgba(0,0,0,.012);min-height:78px}.mec-wrap .mec-totalcal-box i{float:left;margin:0;width:36px;height:36px;background:#fff;border:1px solid #efefef;text-align:center;padding:10px 0;font-size:15px;color:#888}.mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-wrap .mec-totalcal-box input,.mec-wrap .mec-totalcal-box select{width:auto;min-height:36px;height:36px;line-height:36px;background:#fff;font-size:13px;color:#777;border:1px solid #efefef;margin:0 0 0 -1px;float:left;padding:0 5px;font-family:Roboto,Helvetica,Arial,sans-serif}.mec-wrap .mec-totalcal-box input[type=submit]{cursor:pointer;padding:0 16px;text-transform:uppercase;font-size:11px;font-family:Montserrat,Helvetica,Arial,sans-serif;transition:all .21s ease}.mec-wrap .mec-totalcal-box input[type=submit]:hover{background:#222;color:#fff}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{display:inline-block;text-transform:uppercase;font-family:Montserrat,Helvetica,Arial,sans-serif;font-size:11px;padding:0 12px;cursor:pointer}.mec-wrap .mec-totalcal-box .mec-totalcal-view span:hover{color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view span.mec-totalcalview-selected{color:#fff;background:#40d9f1;border-color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view{text-align:right;float:right}.mec-wrap .mec-totalcal-box input[type=search]{width:calc(100% - 36px)}@media only screen and (min-width:961px) and (max-width:1200px){.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-3,.mec-wrap .mec-totalcal-box .col-md-4,.mec-wrap .mec-totalcal-box .col-md-5{width:100%;float:none;padding-bottom:20px;clear:both;overflow:hidden}}@media only screen and (min-width:768px) and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-4{position:relative;right:10px;top:20px;width:initial}.mec-wrap .mec-totalcal-box .col-md-5{padding-bottom:0}.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:767px){.mec-wrap .mec-totalcal-box .mec-totalcal-view{float:none}.mec-wrap .mec-totalcal-box .col-md-4{padding-bottom:0}}@media only screen and (max-width:479px){.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 8px;font-size:10px}.mec-wrap .mec-totalcal-box input[type=submit]{padding:0 10px;font-size:10px}}@media only screen and (min-width:961px){.mec-wrap .mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5,.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-3{width:100%;float:none;padding-bottom:20px;clear:both;overflow:hidden}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-4{position:absolute;right:10px;top:20px;width:initial}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5{padding-bottom:0;width:100%}}@media (min-width:961px) and (max-width:1200px){.mec-full-calendar-wrap .mec-totalcal-box{padding:20px 20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:50%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{padding-bottom:20px!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select{min-width:calc(100% - 36px)}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select{min-width:calc(30% - 10px)}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3:last-child select{min-width:calc(50% - 19px)}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view{margin-right:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:10px;text-align:center}}@media (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box{padding:20px 20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:50%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{padding-bottom:10px!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select{min-width:calc(100% - 36px);margin-bottom:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view{margin-right:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:10px;text-align:center}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:100%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:absolute;top:20px}}@media (min-width:780px) and (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:absolute;top:20px}}@media(max-width:780px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select{width:calc(50% - 18px)!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:unset;padding-right:0}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:20%;text-align:center;font-size:10px}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 7px;margin-top:20px}}@media(max-width:480px){.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:20%;text-align:center;font-size:10px}}.mec-search-form{padding:20px 10px}.mec-search-form .mec-dropdown-wrap{display:table;width:100%}.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{padding:0 10px;float:left;min-height:55px}.mec-search-form .mec-date-search,.mec-search-form .mec-text-input-search{width:50%;min-height:36px;display:block}.mec-full-calendar-wrap .mec-search-form .mec-date-search,.mec-full-calendar-wrap .mec-search-form .mec-text-input-search{width:100%}.mec-full-calendar-wrap .mec-search-form .col-md-3,.mec-full-calendar-wrap .mec-search-form .col-md-5,.mec-full-calendar-wrap .mec-search-form .col-md-6,.mec-full-calendar-wrap .mec-search-form .col-md-8{padding:0}.mec-widget .mec-search-form .mec-date-search,.mec-widget .mec-search-form .mec-text-input-search{width:100%}.mec-widget .mec-search-form .mec-text-input-search{margin-top:10px}.mec-search-form .mec-date-search{clear:left}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:table-cell;float:none}.mec-widget .mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block}.mec-wrap .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select{width:calc(100% - 36px);margin-bottom:20px}.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 106px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}@media only screen and (max-width:767px){.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{width:100%;float:none}.mec-search-form .mec-date-search{min-height:55px}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:50%;float:left}}@media only screen and (max-width:960px){.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 124px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}}@media only screen and (max-width:479px){.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:100%;float:none}}.ui-datepicker{background-color:#fff;border:1px solid #66afe9;border-radius:4px;box-shadow:0 0 8px rgba(102,175,233,.6);display:none;margin-top:4px;padding:10px;width:240px}.ui-datepicker a,.ui-datepicker a:hover{text-decoration:none;cursor:pointer}.ui-datepicker a:hover,.ui-datepicker td:hover a{color:#2c6396;-webkit-transition:color .1s ease-in-out;-moz-transition:color .1s ease-in-out;-o-transition:color .1s ease-in-out;transition:color .1s ease-in-out}.ui-datepicker .ui-datepicker-header{margin-bottom:4px;text-align:center}.ui-datepicker .ui-datepicker-title{font-weight:700}.ui-datepicker .ui-datepicker-next,.ui-datepicker .ui-datepicker-prev{cursor:default;font-family:dashicons;-webkit-font-smoothing:antialiased;font-style:normal;font-weight:400;height:20px;line-height:1.4;margin-top:2px;width:20px}.ui-datepicker .ui-datepicker-prev{float:left;text-align:left}.ui-datepicker .ui-datepicker-next{float:right;text-align:center}.ui-datepicker .ui-datepicker-prev:before{content:"\f341"}.ui-datepicker .ui-datepicker-next:before{content:"\f345"}.ui-datepicker .ui-icon{display:none}.ui-datepicker .ui-datepicker-calendar{table-layout:fixed;width:100%}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker .ui-datepicker-calendar th{text-align:center;padding:4px 0}.ui-datepicker .ui-datepicker-calendar td{border-radius:4px;-webkit-transition:background-color .1s ease-in-out,color .1s ease-in-out;-moz-transition:background-color .1s ease-in-out,color .1s ease-in-out;-o-transition:background-color .1s ease-in-out,color .1s ease-in-out;transition:background-color .1s ease-in-out,color .1s ease-in-out}.ui-datepicker .ui-datepicker-calendar td:hover{background-color:#eee;cursor:pointer}.ui-datepicker .ui-datepicker-calendar td a{text-decoration:none}.ui-datepicker .ui-datepicker-current-day{background-color:#4289cc}.ui-datepicker .ui-datepicker-current-day a{color:#fff}.ui-datepicker .ui-datepicker-calendar .ui-datepicker-unselectable:hover{background-color:#fff;cursor:default}.mec-owl-theme .owl-dots .owl-dot{border:none}.event-carousel-type1-head .mec-event-image{position:relative;min-height:150px}.event-carousel-type1-head .mec-event-image img{width:100%}.mec-event-carousel-content .mec-event-carousel-title a{transition:all .2s ease}.event-carousel-type1-head .mec-event-date-carousel{position:absolute;top:25px;left:1px;font-size:41px;width:160px;color:#fff;font-weight:500;background-color:#40d9f1;padding-left:21px;height:97px;line-height:2.3;padding-right:85px}.event-carousel-type1-head .mec-event-date-carousel:after{content:"";position:absolute;display:inline-block;z-index:-1;bottom:-13px;left:5px;width:0;border-width:13px;border-style:solid;border-color:transparent transparent #40d9f1 transparent;transform:rotate(45deg)}.event-carousel-type1-head .mec-event-date-info{font-size:12px;font-weight:300;position:absolute;top:27px;left:75px}.event-carousel-type1-head .mec-event-date-info-year{font-size:12px;font-weight:300;position:absolute;top:45px;left:75px}.mec-event-carousel-content{border:1px solid #e8e8e8;border-top:none;margin-top:-5px;padding:34px 9px 11px 37px}.mec-event-carousel-content .mec-event-carousel-title a{font-size:23px;font-weight:500;color:#000;letter-spacing:-1px}.mec-event-carousel-content p{font-size:14px;color:#7a7272;font-weight:300}.mec-owl-crousel-skin-type1 .owl-item .mec-event-article{padding:0 19px}.mec-event-carousel-type1 .owl-page.active span{background-color:#00aeef;height:14px;width:14px}.mec-event-carousel-type1 .mec-event-carousel-content{margin-bottom:15px;box-shadow:0 1px 2px rgba(0,0,0,.04);transition:all .27s ease}.mec-event-carousel-type1 .mec-event-carousel-content:hover{box-shadow:0 0 35px rgba(0,0,0,.07)}@media only screen and (min-width:768px) and (max-width:1000px),(min-width:270px) and (max-width:448px){.event-carousel-type1-head .mec-event-date-carousel{font-size:25px;line-height:2.5;padding-right:70px;height:64px;width:120px}.event-carousel-type1-head .mec-event-date-carousel:after{left:7px}.event-carousel-type1-head .mec-event-date-info{font-size:10px;top:13px;left:55px}.event-carousel-type1-head .mec-event-date-info-year{font-size:10px;top:25px;left:55px}.event-carousel-type1-head .mec-event-date-carousel:after{top:48px}}.event-carousel-type2-head{background:#fff;border:1px solid #e6e6e6}.event-carousel-type2-head .mec-event-carousel-content-type2{margin-top:15px;min-height:182px}.event-carousel-type2-head .mec-event-carousel-content-type2 .mec-event-date-info{font-size:15px;color:#9a9a9a;font-weight:300}.event-carousel-type2-head .mec-event-carousel-content-type2 .mec-event-carousel-title{font-size:26px;font-weight:700;color:#1c1d21;margin-top:15px;letter-spacing:-1px}.mec-event-carousel-content-type2 .mec-event-carousel-title a{color:inherit}.mec-event-carousel-type2 .event-carousel-type2-head .mec-event-carousel-content-type2 p{font-size:16px;font-weight:300;color:#444}.event-carousel-type2-head .mec-event-footer-carousel-type2{margin-top:33px;position:relative}.mec-event-carousel-type2 .mec-event-footer-carousel-type2 .mec-event-sharing-wrap{left:0}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-event-sharing-wrap>li{border:none;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button{border:1px solid #e4e4e4;float:right;padding:7px 23px 7px;font-size:12px;text-transform:uppercase;color:#707070;font-weight:500;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button:hover{color:#fff}.mec-event-article .event-carousel-type2-head{padding:10%;margin-right:-1px}.mec-event-carousel-type2 .mec-owl-carousel .owl-wrapper-outer{border-right:1px solid #e6e6e6}.mec-wrap .mec-event-carousel-type2 .owl-next,.mec-wrap .mec-event-carousel-type2 .owl-prev,.mec-wrap .mec-event-carousel-type3 .owl-next,.mec-wrap .mec-event-carousel-type3 .owl-prev,.mec-wrap .mec-event-carousel-type4 .owl-next,.mec-wrap .mec-event-carousel-type4 .owl-prev{transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:47%;background-color:transparent!important}.mec-event-carousel-type2 .owl-next{right:-60px}.mec-event-carousel-type2 .owl-prev{left:-60px}.mec-event-carousel-type2 .owl-next i,.mec-event-carousel-type2 .owl-prev i,.mec-event-carousel-type3 .owl-next i,.mec-event-carousel-type3 .owl-prev i,.mec-event-carousel-type4 .owl-next i,.mec-event-carousel-type4 .owl-prev i{font-size:40px;color:#282828}.mec-event-carousel-type2 .owl-next i:hover,.mec-event-carousel-type2 .owl-prev i:hover,.mec-event-carousel-type3 .owl-next i:hover,.mec-event-carousel-type3 .owl-prev i:hover{color:#000;cursor:pointer}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}@media only screen and (min-width:320px) and (max-width:768px){.mec-event-carousel-type2 .owl-next,.mec-event-carousel-type2 .owl-prev,.mec-event-carousel-type3 .owl-next,.mec-event-carousel-type3 .owl-prev,.mec-event-carousel-type4 .owl-next,.mec-event-carousel-type4 .owl-prev{position:initial;top:100%}}.mec-event-carousel-type3 .mec-event-article{margin:0 10px}.event-carousel-type3-head .mec-event-image,.event-carousel-type3-head .mec-event-image img{width:100%;height:auto}.event-carousel-type3-head .mec-event-footer-carousel-type3{background:#fff;display:inline-block;width:calc(100% - 40px);margin-top:-74px;position:relative;margin-left:20px;margin-right:20px;margin-bottom:6px;padding:8% 11%;box-shadow:0 2px 10px -2px rgba(0,0,0,.2)}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button{border:1px solid #e4e4e4;text-transform:uppercase;float:right;padding:7px 23px 7px;font-size:12px;color:#707070;font-weight:500}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button:hover{color:#fff}.mec-event-footer-carousel-type3 span{font-size:15px;color:#9a9a9a;font-weight:300;display:block;margin-top:30px}.mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:29px;font-weight:700}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:26px;font-weight:700;color:#1c1d21;margin-top:15px;letter-spacing:-1px}.mec-event-footer-carousel-type3 .mec-event-carousel-title a{color:inherit}.event-carousel-type3-head .mec-event-footer-carousel-type3 p{font-size:16px;font-weight:300;color:#444!important;margin-bottom:36px}.mec-event-carousel-type3 .owl-next{right:-70px}.mec-event-carousel-type3 .owl-prev{left:-70px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap{left:11%}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}.event-carousel-type3-head .mec-end-date-label{display:inline;margin-left:2px}.event-carousel-type4-head.clearfix{position:relative;overflow:hidden;background:#fff}.event-carousel-type4-head .mec-event-overlay{position:absolute;left:0;right:0;bottom:0;top:0;width:auto;height:auto;background-color:rgba(36,36,36,.4);transition:all .33s ease-in-out}.mec-event-hover-carousel-type4{font-size:15px;color:#fff;position:absolute;bottom:0;padding:50px 35px;transition:all .33s ease-in-out;opacity:0;visibility:hidden}.mec-event-carousel-type4 .mec-event-article{margin:0 10px}.mec-event-carousel-type4 .mec-event-article:hover .mec-event-hover-carousel-type4{opacity:1;visibility:visible}.mec-event-hover-carousel-type4 .mec-event-icon{font-size:18px;float:left;margin-right:14px;color:#fff;padding:13px}.mec-event-hover-carousel-type4 .mec-event-date{font-size:11px;text-transform:uppercase;font-weight:400;line-height:1.6}.mec-event-hover-carousel-type4 .mec-event-date span{display:block;font-weight:700;font-size:14px}.mec-event-hover-carousel-type4 .mec-event-title{color:#fff;margin:20px 0 38px;font-size:16px;font-weight:700;text-transform:uppercase;font-style:normal}.mec-event-hover-carousel-type4 .mec-btn-wrapper{text-align:left}.mec-event-hover-carousel-type4 .mec-event-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:10px 14px;letter-spacing:1.5px;font-size:11px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none}.mec-event-hover-carousel-type4 .mec-event-button:hover{color:#191919;background-color:#fff;border-color:#fff;border-radius:1px}.mec-event-carousel-type4 .owl-next{right:-70px}.mec-event-carousel-type4 .owl-prev{left:-70px}.mec-carousel-type4-head{margin-bottom:25px}.mec-carousel-type4-head-title{padding:0 11px;text-align:left;font-weight:700;font-size:20px;color:#000}.mec-carousel-type4-head-link{text-align:right;padding:0 11px}.mec-carousel-type4-head-link a{background:#222;color:#fff;padding:10px 38px;transition:all .3s ease}.mec-carousel-type4-head-link a:hover,.mec-carousel-type4-head-link a:visited{color:#fff}@media (max-width:960px){.mec-event-carousel-type4 .owl-stage{left:-50px}}.mec-wrap .mec-event-countdown-style1{color:#fff;padding:0!important;display:table;background:#437df9}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1{z-index:5;padding:50px 1% 50px 4%;display:table-cell;float:none;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2{background-color:rgba(0,0,0,.05);height:100%;padding-top:0;display:table-cell;float:none;position:relative;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{background-color:#f8f8f8;display:table-cell;float:none;text-align:center;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style1 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{content:"";position:absolute;display:inline-block;z-index:1;top:50%;margin-top:-11px;right:-24px;width:0;border-width:12px;border-style:solid;border-color:transparent transparent transparent #4077ed}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style1 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto}.mec-event-countdown-style1 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style1 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (min-width:1200px){.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%}}@media (max-width:960px){.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%;transform:rotate(90deg)}}@media (max-width:480px){.mec-event-countdown-style1 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{padding:10px 5px;min-width:50px;margin:3px 1px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:8px}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{display:inline}}.mec-wrap .mec-event-countdown-style2{color:#fff;padding:30px 0;background:#437df9;max-width:600px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part3{width:100%;float:none;vertical-align:middle;padding:50px 10% 50px 10%}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2{padding-top:12%;padding-bottom:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style2 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date-place{text-align:left;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 8px}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#222;background:#fff;transition:all .24s ease}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button:hover{background:#222;color:#fff}.mec-event-countdown-style2 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0}.mec-event-countdown-style2 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style2 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (max-width:767px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:80px;padding:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:26px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:11px}}@media only screen and (max-width:479px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:40px;padding:15px 10px;margin:2px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:20px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:9px}}@media (max-width:380px){.mec-event-countdown-style2 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{padding:10px 4px;margin:4px 1px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:7px}}.mec-wrap .mec-event-countdown-style3{color:#fff;padding:0;background:#282828;display:table;width:100%}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1{width:68%;padding:50px 1% 50px 4%;vertical-align:middle;display:table-cell;position:relative}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:32%;display:table-cell;position:relative;padding-bottom:0;padding-top:0}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 img{width:100%;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{font-weight:300;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{color:#fff;font-size:36px;letter-spacing:-2px;font-weight:700;line-height:1;margin-top:-10px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style3 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style3 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto;position:absolute;top:40px;right:20px}.mec-event-countdown-style3 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style3 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:11px;color:#888;margin:8px 0 0;line-height:1}.mec-event-countdown-style3 .mec-event-date{width:176px;height:96px;background:#40d9f1;color:#fff;font-size:13px;position:absolute;left:-27px;top:146px}.mec-event-countdown-style3 .mec-event-date:after{content:"";position:absolute;display:inline-block;z-index:1;bottom:-18px;left:8px;width:0;border-width:19px;border-style:solid;border-color:transparent transparent #40d9f1 transparent;transform:rotate(45deg)}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:50px;position:absolute;top:36px;left:12px;letter-spacing:-3px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:80px;top:26px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:80px;top:45px}.mec-event-countdown-style3 .mec-event-countdown-part-details{padding-top:35px;margin-bottom:50px;min-height:100px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-title{font-size:17px;color:#fff;line-height:1.4;padding-right:20px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link{color:#fff;font-size:12px;position:relative;padding-left:22px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link:before{content:"";display:inline-block;width:18px;border-top:1px solid #fff;position:absolute;left:0;top:8px}.mec-event-countdown-style3 .mec-event-title-link{position:absolute;left:190px;top:152px}.event-carousel-type1-head .mec-event-date-carousel:before,.mec-event-countdown-style3 .mec-event-date:before{content:'';position:absolute;left:0;bottom:0;z-index:2;width:100%;height:96px;background:0 0;display:inline-block;box-shadow:0 5px 5px rgba(0,0,0,.12)}@media only screen and (min-width:960px){.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown li{padding:10px}.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:31px}}@media (max-width:959px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:100%;display:block}.mec-event-countdown-style3 .mec-event-title-link{top:190px}.mec-event-countdown-style3 .mec-event-countdown{top:96px}.mec-event-countdown-style3 .mec-event-date{left:0;top:190px}.mec-event-countdown-style3 .mec-event-date:after{display:none}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{display:inline}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:150px}}@media (max-width:767px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:26px;letter-spacing:-1px}.mec-event-countdown-style3 .mec-event-title-link{left:130px}.mec-event-countdown-style3 .mec-event-date{width:120px;font-size:10px;height:63px}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:36px;top:20px;left:4px;letter-spacing:-2px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:52px;top:12px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:52px;top:28px}}@media (max-width:380px){.mec-event-countdown-style3 .mec-event-title-link{left:10px;top:260px}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:300px}.mec-event-countdown-style3 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:10px 5px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:8px}}.mec-slider-t1-wrap{width:100%;padding:60px 90px;background:#f7f7f7;min-height:560px;position:relative}.mec-slider-t1{height:500px;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t1 .mec-event-article{position:relative;height:500px}.mec-slider-t1 .mec-slider-t1-img{position:relative;background-size:cover!important;background-position:center!important;width:50%;height:100%;float:right;margin:0;overflow:hidden}.mec-slider-t1 .mec-slider-t1-content{width:50%;float:left;height:100%;background:#fff;padding:6%}.mec-slider-t1-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t1-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:54px;height:54px;line-height:48px;border-radius:0;text-align:center;background:#fff;box-shadow:0 2px 11px 0 rgba(0,0,0,.045);transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-27px;cursor:pointer}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 29px 0 rgba(0,0,0,.095)}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:12px;color:#282828;transition:all .21s ease}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{font-size:13px;color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t1{margin:0 auto;max-width:900px}}@media only screen and (max-width:960px){.mec-slider-t1 .mec-slider-t1-content,.mec-slider-t1 .mec-slider-t1-img{width:100%;float:none}.mec-slider-t1 .mec-slider-t1-img{height:300px}.mec-slider-t1,.mec-slider-t1 .mec-event-article{height:auto}}@media only screen and (max-width:768px){.mec-slider-t1-wrap{padding:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:10px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}}@media only screen and (max-width:479px){.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t2-wrap{width:100%;padding:0;background:#fff;min-height:600px;position:relative}.mec-slider-t2 .mec-event-article{height:600px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t2 .mec-slider-t2-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:70%;height:100%;margin:0;overflow:hidden}.mec-slider-t2 .mec-slider-t2-content{width:50%;position:absolute;right:0;top:60px;bottom:60px;padding:5%}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern *{color:#fff}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-content,.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t2-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:84px;cursor:pointer}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}.mec-wrap.colorskin-custom .mec-slider-t2 .mec-event-article .mec-event-date.mec-color{color:#fff}@media only screen and (min-width:961px){.mec-slider-t2{margin:0 auto;max-width:1200px}}@media only screen and (max-width:960px){.mec-slider-t2 .mec-slider-t2-content,.mec-slider-t2 .mec-slider-t2-img{width:100%;float:none;position:static}.mec-slider-t2 .mec-slider-t2-img{height:300px}.mec-slider-t2 .mec-event-article{height:auto}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px}}@media only screen and (max-width:479px){.mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:22px}}.mec-slider-t3-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t3 .mec-event-article{height:700px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t3 .mec-slider-t3-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;opacity:.68;z-index:1}.mec-slider-t3 .mec-slider-t3-content{width:50%;height:auto;vertical-align:middle;display:table;position:absolute;left:0;top:0;bottom:0;padding:0 2% 0 7%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t3 .mec-slider-t3-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-content,.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-slider-t3-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t3-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{border-color:#40d9f1}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-22px;cursor:pointer}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next{right:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:50px;font-weight:300}.mec-slider-t3-content.mec-event-grid-modern .mec-event-description{font-size:19px}}@media only screen and (max-width:767px){.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}}@media only screen and (max-width:479px){.mec-slider-t3 .mec-slider-t3-content{width:100%}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t4-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t4 .mec-event-article{height:700px;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t4 .mec-slider-t4-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;z-index:1}.mec-slider-t4 .mec-slider-t4-content{width:auto;max-width:700px;background:rgba(37,37,37,.94)!important;height:auto;vertical-align:middle;display:table;position:absolute;left:8%;top:19%;padding:3%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t4 .mec-slider-t4-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-content,.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:13px;padding:0 42px;line-height:49px;height:50px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t4-content.mec-event-grid-modern .mec-slider-t4-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next{right:60px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{right:112px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:767px){.mec-slider-t4 .mec-slider-t4-content{width:100%;left:0;top:auto;bottom:0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t5-wrap{width:auto;max-width:570px;padding:0;margin:0 auto 25px;background:#f7f7f7;min-height:480px;position:relative}.mec-slider-t5{height:auto;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t5 .mec-event-article{position:relative;height:auto}.mec-slider-t5 .mec-slider-t5-img{position:relative;background-size:cover!important;background-position:center!important;width:100%;height:300px;float:none;margin:0;overflow:hidden}.mec-slider-t5 .mec-slider-t5-content{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-slider-t5 .mec-events-content p{margin-bottom:20px}.mec-slider-t5-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t5-wrap .mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:14px 34px;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t5 .mec-slider-t5-col6{width:50%;float:left;height:100%}.mec-slider-t5 .mec-slider-t5-col6 i{font-size:42px;float:left;margin-right:7px;height:58px}.mec-slider-t5 .mec-slider-t5-col6 h6{text-transform:uppercase;font-size:17px;padding:4px 0;display:inline;color:#444}.mec-slider-t5 .mec-slider-t5-col6 address{font-size:12px;margin-bottom:0}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t5-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:768px){.mec-slider-t5 .mec-slider-t5-col6{width:100%;margin:10px 0}}@media only screen and (max-width:479px){.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.mec-single-modern .mec-events-event-image{text-align:center}.mec-single-modern .mec-events-event-image img{width:100%}.mec-single-modern .mec-single-event-bar{background-color:#f7f7f7;margin:20px 0 0;padding:15px;display:table;width:100%}.mec-single-modern .mec-single-event-bar>div{display:table-cell}.mec-single-modern .mec-single-event-bar>div i{font-size:20px;vertical-align:middle}.mec-single-modern .mec-single-event-bar>div .mec-time-comment{font-size:12px;color:#999}.mec-single-modern .mec-single-event-bar>div h3{text-transform:uppercase;font-size:16px;font-weight:700;padding-bottom:5px;display:inline;color:#000;padding-left:10px}.mec-single-modern .mec-single-event-bar>div dd{font-size:14px;color:#8d8d8d;padding-left:34px;margin-bottom:0}.mec-single-modern .col-md-4 .mec-frontbox{margin-top:-50px;margin-bottom:70px;padding:20px;border:none;background:#f7f7f7;box-shadow:none}.mec-next-occurrence li{list-style:none}@media only screen and (min-width:960px){.mec-single-modern .col-md-4 .mec-frontbox{margin-left:20px}}@media only screen and (max-width:960px){.mec-single-modern .mec-single-event-bar>div{display:block}}.lity-content>div{overflow:auto}.mec-next-event-details li{list-style:none;margin-top:20px}.mec-next-event-details h6{text-transform:uppercase;font-size:13px;padding-bottom:5px;display:inline;color:#222;padding-left:0}.mec-next-event-details abbr{display:block;padding-left:12px;color:#8d8d8d}.mec-next-event-details i{margin-right:10px;margin-left:12px}.mec-next-event-details i:before{color:#40d9f1}.mec-next-event-details a{text-align:center;display:block;background:#fff;padding:6px 0;font-size:11px;font-weight:400;letter-spacing:0;border:1px solid #e3e3e3;transition:.3s}.mec-single-modal.mec-single-modern .mec-single-title{text-align:center;padding:15px 10px 0}.admin-bar .mec-single-modal.mec-single-modern .mec-single-title{padding-top:40px}.mec-single-modal.mec-single-modern .mec-single-event-bar{padding:5px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div dd{font-size:13px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div h3{font-size:15px}@media only screen and (min-width:960px){.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-left:0}}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-top:10px;margin-bottom:10px}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox.mec-event-meta{padding:0}.mec-single-modal .mec-event-meta dd.mec-organizer-email a,.mec-single-modal .mec-event-meta dd.mec-organizer-url a{font-size:12px;display:block}.mec-organizer-description p{padding-left:12px}.mec-modal-wrap{max-width:60vw;max-height:90vh!important;background:#fff;box-shadow:0 1px 55px rgba(0,0,0,.5);overflow-x:hidden!important}@media(max-width:1023px){.mec-modal-wrap{max-width:80vw}}.mec-single-modal .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li,.mec-single-modal .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a.mec-events-button{display:block;text-align:center}body .featherlight .featherlight-content{background:0 0;overflow:unset;z-index:9999}body .featherlight .featherlight-close-icon{position:fixed;top:40px;right:40px;background:0 0;color:#fff;border:1px solid #fff;border-radius:0}body .featherlight .featherlight-close-icon:hover{background:#fff;color:#000;border:1px solid #000}@media (max-width:320px){.mec-wrap span.flip-clock-divider{width:20px}.mec-single-event .mec-events-meta-group-countdown{padding:15px 12%}}@media (max-width:414px){.mec-wrap span.flip-clock-divider{width:30px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 7%}}@media (max-width:480px){.mec-wrap span.flip-clock-divider{width:7px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 1%}}@media(max-width:1366px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:20px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 15px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:48px}}@media(max-width:1280px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:14px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:15px 10px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:38px}}@media(min-width:961px) and (max-width:1024px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:7px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:15px 5px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:14px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul li a div{font-size:30px}}@media(max-width:640px){body .mec-modal-wrap .mec-single-modal.featherlight-close-icon{top:14px;right:14px}}@media(max-width:480px){.featherlight .featherlight-content,body .mec-modal-wrap{max-width:100%}body .mec-modal-wrap.flip-clock-divider .flip-clock-label{display:block}}@media (max-width:414px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:50px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 65px}body .featherlight-content .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 2px 20px 2px!important}body .featherlight-content .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:3px!important}}@media (max-width:375px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:50px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 45px}}@media (max-width:320px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:20px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 40px}}.mec-events-toggle{max-width:960px;margin-left:auto;margin-right:auto}.mec-events-toggle .mec-toggle-item{border:1px solid #e4e4e4;margin-bottom:15px;box-shadow:0 10px 15px #f3f3f3}.mec-events-toggle .mec-toggle-item-inner{cursor:pointer;position:relative;padding:30px 60px 30px 15px;background:#fff;transition:all .3s ease;min-height:100px;display:table;width:100%;border-collapse:separate}.mec-events-toggle .mec-toggle-item-inner:hover{background:#fbfbfb}.mec-toggle-item-col{width:200px;border-right:1px solid #e3e3e3;margin-right:15px;display:table-cell;padding-right:5px}.mec-toggle-item-col .mec-event-date{font-size:38px;line-height:40px;float:left;margin-right:8px}.mec-toggle-item-col .mec-event-month,.mec-toggle-item-col .mec-time-details{text-transform:uppercase;font-size:12px;line-height:14px;padding-top:4px;font-weight:700}.mec-toggle-item-col .mec-event-detail{font-size:10px}.mec-toggle-item-col .mec-event-day{margin-top:9px;color:silver;font-family:Roboto,sans-serif;font-size:35px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.mec-events-toggle .mec-toggle-title{color:#000;font-size:23px;font-weight:600;margin-bottom:0;transition:all .3s ease;display:table-cell;text-align:left;max-width:calc(100% - 200px);padding-left:15px;vertical-align:middle}.mec-events-toggle .mec-toggle-item-inner span.event-color{width:5px;height:100%;position:absolute;left:-1px;top:0;bottom:0;border-radius:0;margin:0}.mec-events-toggle .mec-toggle-item-inner i{position:absolute;font-size:30px;right:25px;top:50%;transform:translate(0,-50%);cursor:pointer}.mec-events-toggle .mec-toggle-item.is-open i.mec-sl-plus:before{content:"\e615"}.mec-events-toggle .mec-toggle-item.is-open .mec-toggle-title{background:#f8f8f8;cursor:pointer}.mec-events-toggle .mec-toggle-content{border-top:1px solid #e4e4e4}.mec-events-toggle .mec-toggle-content .mec-modal-wrap{margin:0;max-width:100%;box-shadow:none}.mec-events-toggle .mec-toggle-content .mec-modal-wrap .mec-single-event{margin:0}.mec-events-toggle .mec-toggle-content .mec-single-event-bar,.mec-events-toggle .mec-toggle-content h1.mec-single-title{display:none}.mec-events-toggle .media-links a{margin-bottom:0}.mec-events-toggle .mec-toggle-content .mec-toggle-meta{margin-bottom:14px}.mec-events-toggle #mec_speakers_details.mec-frontbox{padding:0;margin:0}.mec-events-toggle .mec-toggle-item h3.mec-speakers{border:none;text-align:left}.mec-events-toggle .mec-toggle-item h3.mec-speakers:before{content:"\e063";font-family:simple-line-icons;border:none;position:relative;display:inline-block;left:unset;bottom:unset;font-size:22px;font-weight:400;padding:0 11px 0 28px;vertical-align:middle}@media only screen and (max-width:767px){.mec-toggle-item-inner .mec-toggle-item-col{float:none;width:100%;border-right:none;margin-bottom:5px;display:block;max-width:100%;padding-left:15px}.mec-events-toggle .mec-toggle-title{display:block;width:100%;max-width:100%}}.mec-events-agenda-wrap{margin:10px 0;border:1px solid #e9e9e9;padding-left:20px;box-shadow:0 2px 2px rgba(0,0,0,.03)}.mec-events-agenda{padding:0;border-bottom:1px solid #e9e9e9;overflow:hidden}.mec-agenda-date-wrap{width:210px;padding-top:15px;float:left;font-size:13px}.mec-agenda-date-wrap i,.mec-agenda-event i{font-size:11px;color:#aaa;margin-right:4px;margin-left:1px}.mec-agenda-event i{vertical-align:middle;margin-right:1px}.mec-agenda-events-wrap{float:left;width:calc(100% - 210px);background:#f9f9f9;padding:15px}.mec-agenda-time{font-size:11px;color:#707070;padding-right:10px;width:138px;display:inline-block}.mec-agenda-event-title{position:relative;padding-left:14px}.mec-agenda-event-title a{font-family:Roboto,Montserrat,Helvetica,Arial,sans-serif;font-size:14px;font-weight:600;color:#333}.mec-agenda-event-title span.event-color{width:9px;height:9px;position:absolute;left:0;top:4px;margin:0}.mec-agenda-date-wrap span.mec-agenda-day{color:#aaa;font-size:12px}@media only screen and (max-width:767px){.mec-agenda-date-wrap,.mec-agenda-events-wrap{float:none;width:100%}.mec-events-agenda span.mec-agenda-event-title{display:block;width:100%}.mec-agenda-event-title span.event-color{top:7px}.mec-agenda-event-title a{font-size:13px}}.mec-yearly-view-wrap{margin:0 0 15px;border:1px solid #e6e6e6;box-shadow:0 2px 4px rgba(0,0,0,.04);border-bottom-width:4px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar{max-width:100%;width:232px;padding:10px;background:#fff;margin:10px;display:inline-block}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar dl dt{transition:none;height:30px;width:30px;line-height:30px;border-radius:0;font-size:12px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar .mec-calendar-events-sec{padding:10px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar .mec-has-event:after{width:4px;height:4px;bottom:3px;margin-left:-2px}.mec-yearly-view-wrap .mec-calendar-side .mec-calendar-table{min-height:200px}.mec-calendar.mec-yearly-calendar .mec-calendar-table-head dl dt{background:#f9f9f9;font-size:13px}.mec-calendar.mec-yearly-calendar .mec-calendar-table-title{text-align:center;font-size:15px;font-weight:700;color:#222;margin-top:-5px;padding-bottom:5px}.mec-yearly-view-wrap .mec-yearly-calendar-sec{min-height:200px;width:538px;overflow:hidden;float:left;background:#f8f8f8;padding:15px}.mec-yearly-view-wrap .mec-yearly-agenda-sec{min-height:200px;width:calc(100% - 538px);float:left;padding:0 0 0 20px;overflow:hidden}.mec-yearly-view-wrap .mec-yearly-title-sec{position:relative;padding:15px;text-align:center;border-bottom:1px solid #e6e6e6;box-shadow:0 1px 3px rgba(0,0,0,.02)}.mec-yearly-view-wrap .mec-yearly-title-sec h2{font-size:30px;line-height:40px;color:#333;margin:0;font-weight:700}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year,.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year{position:absolute;top:50%;margin-top:-15px;min-width:30px;height:30px;line-height:30px;padding:0 8px;text-align:center;background:#fff;color:#666;font-size:14px;border:1px solid #eee;border-radius:2px;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease;cursor:pointer}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year{right:auto;left:20px;padding-right:14px}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year{left:auto;right:20px;padding-left:14px}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year i,.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-yearly-view-wrap .mec-events-agenda.mec-selected{box-shadow:-10px 0 0 0 #fffcf2,0 -1px 0 #fbebb6;background:#fffcf2;border-color:#fbebb6;color:#f9af29}@media only screen and (max-width:959px){.mec-yearly-view-wrap .mec-yearly-calendar-sec{width:268px;padding:10px 5px}.mec-yearly-view-wrap .mec-yearly-agenda-sec{width:calc(100% - 268px);padding:0 0 0 10px}}@media only screen and (max-width:767px){.mec-yearly-view-wrap .mec-yearly-agenda-sec,.mec-yearly-view-wrap .mec-yearly-calendar-sec{width:100%;float:none}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar{width:auto}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar dl dt{width:14.2%}.mec-yearly-view-wrap .mec-yearly-title-sec h2{font-size:25px}}.mec-yearly-view-wrap .mec-agenda-event i,.mec-yearly-view-wrap .mec-agenda-time{display:none}@media only screen and (min-width:768px){.mec-yearly-view-wrap .mec-events-agenda-wrap{margin-top:0;border:none;padding-left:0;box-shadow:none}.mec-yearly-view-wrap .mec-agenda-date-wrap{width:174px;font-size:11px;padding-top:10px}.mec-yearly-view-wrap .mec-agenda-events-wrap{width:calc(100% - 174px);padding:10px}.mec-yearly-view-wrap .mec-agenda-event-title a{font-size:13px}.mec-yearly-view-wrap .mec-agenda-event-title span.event-color{width:8px;height:8px}.mec-yearly-view-wrap .mec-agenda-date-wrap span.mec-agenda-day{font-size:11px}.mec-yearly-view-wrap .mec-yearly-calendar-sec{box-shadow:-2px 0 5px rgba(0,0,0,.03) inset}}@media only screen and (max-width:1200px){.mec-yearly-view-wrap .mec-agenda-event-title a{font-size:12px;padding-right:6px}}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table{padding-bottom:10px;border-bottom:none}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt:hover{cursor:pointer}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-has-no-event,.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-has-no-event:hover{color:#bbb;cursor:default}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-day-active{background:#40d9f1;color:#fff;position:relative}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-day-active:after{content:'';position:absolute;display:block;bottom:-20px;left:50%;margin-left:-10px;width:0;border-width:10px;border-style:solid;border-color:#40d9f1 transparent transparent transparent}.mec-timetable-events-list{padding:10px 20px;border:none;margin:0}.mec-timetable-events-list .mec-timetable-event{padding:10px 0;border-bottom:1px dashed #ddd}.mec-timetable-events-list .mec-timetable-event:last-child{border:none}.mec-timetable-event .mec-timetable-event-span{font-size:12px;color:#444;padding-right:30px;line-height:22px}.mec-timetable-events-list .mec-timetable-event i{font-size:13px;color:#aaa;margin-right:3px;vertical-align:baseline}.mec-timetable-event .mec-timetable-event-span a{color:#333}.mec-timetable-event .mec-timetable-event-time{font-size:11px}.mec-timetable-event .mec-timetable-event-time i{vertical-align:text-bottom}.mec-timetable-event .mec-timetable-event-title{font-size:13px}.mec-timetable-event .mec-timetable-event-title .event-color{width:10px;height:10px}.mec-timetable-events-list .mec-timetable-event.mec-util-hidden{display:none}.mec-timetable-events-list.mec-util-hidden{display:none}@media only screen and (min-width:768px){.mec-timetable-events-list{display:table;width:100%;margin:10px 0 20px}.mec-timetable-events-list .mec-timetable-event{display:table-row;padding:0;border:none;background:#fff}.mec-timetable-events-list .mec-timetable-event:hover{background:#fafafa}.mec-timetable-event .mec-timetable-event-span{display:table-cell;padding:10px 15px;border-bottom:1px solid #ebebeb}.mec-timetable-events-list .mec-timetable-event:last-child .mec-timetable-event-span{border-bottom:none}}@media only screen and (max-width:767px){.mec-timetable-event .mec-timetable-event-title{display:block;width:100%;padding:5px 0 10px;font-weight:700}}.mec-timetable-t2-wrap{border:1px solid #e6e6e6;background:#fafafa;padding:0 15px 15px;overflow:hidden;box-shadow:0 3px 2px 0 rgba(0,0,0,.012)}.mec-timetable-t2-col{width:20%;float:left;min-height:20px;padding-right:1px;background:0 0}.mec-ttt2-title{background:#fafafa;color:#333;font-size:13px;font-weight:600;text-transform:uppercase;letter-spacing:1px;text-align:center;padding:25px 10px 10px;margin-bottom:1px}.mec-timetable-t2-col .mec-event-article{position:relative}.mec-timetable-t2-col .mec-event-article .event-color{position:absolute;width:auto;height:auto;left:0;right:0;top:0;bottom:0;margin:0;z-index:1;border-radius:2px}.mec-timetable-t2-content{position:relative;z-index:2;color:#fff;padding:15px 15px 20px;text-align:left;height:130px;margin-bottom:1px;overflow:hidden}.mec-timetable-t2-content .mec-event-title{line-height:22px;margin-bottom:13px;white-space:nowrap;padding-right:1px;overflow:hidden}.mec-timetable-t2-content .mec-event-title a{color:#fff;font-size:15px;font-weight:600;white-space:nowrap;overflow:hidden}.mec-timetable-t2-content div{color:#fff;font-size:11px;font-weight:400;line-height:19px;white-space:nowrap}.mec-timetable-t2-content div i{font-size:12px;margin-right:4px}@media only screen and (max-width:960px){.mec-timetable-t2-col{width:100%;float:none}}@media(min-width:961px){.mec-timetable-col-7{width:14.28%}.mec-timetable-col-6{width:16.6666%}}.mec-timetable-t3-wrap td{position:relative;padding:0}.mec-timetable-t3-wrap td a{width:100%;display:block;min-height:110px}.mec-weather-box{padding:15px 0}.mec-weather-head{min-height:90px;padding:5px 0;clear:both;overflow:hidden;margin-bottom:25px;border-radius:10px;background:#238af5;position:relative}.mec-weather-icon-box{float:left;width:80px;height:80px;border-radius:10px;overflow:hidden;background:#238af5}.mec-weather-icon{width:80px;height:80px;display:inline-block;border-radius:10px}.mec-weather-summary{float:left;width:calc(100% - 80px);padding-left:10px;margin:10px 0;height:60px}.mec-weather-summary-report{font-size:15px;color:rgba(255,255,255,.68);margin-bottom:6px}.mec-weather-summary-temp{font-family:Roboto,Sans-serif;font-weight:300;color:#fff;font-size:29px;line-height:1}.degrees-mode{background:rgba(0,0,0,.2);cursor:pointer;font-weight:300;font-size:18px;padding:4px 5px;line-height:1;color:#fff;position:absolute;border-radius:8px;bottom:16px;left:16px}.mec-weather-extras{width:auto;padding:10px 15px 0 15px;float:right;min-height:80px;color:#fff;font-size:13px;line-height:1}.mec-weather-extras{width:auto;padding:10px 15px 0 15px;float:right;min-height:80px;color:#fff;font-size:13px;line-height:1}.mec-weather-extras div{line-height:20px;height:20px}.mec-weather-extras span{color:rgba(255,255,255,.68);font-size:12px;text-transform:uppercase}.mec-weather-extras var{font-size:11px;letter-spacing:.4px}.mec-weather-icon.clear-day,.mec-weather-icon.clear-night{background-image:url(../img/mec-weather-icon-01.png)}.mec-weather-icon.partly-sunny-day,.mec-weather-icon.partly-sunny-night{background-image:url(../img/mec-weather-icon-02.png)}.mec-weather-icon.partly-cloudy-day,.mec-weather-icon.partly-cloudy-night{background-image:url(../img/mec-weather-icon-03.png)}.mec-weather-icon.cloudy,.mec-weather-icon.fog,.mec-weather-icon.wind{background-image:url(../img/mec-weather-icon-04.png)}.mec-weather-icon.thunderstorm{background-image:url(../img/mec-weather-icon-05.png)}.mec-weather-icon.rain{background-image:url(../img/mec-weather-icon-06.png)}.mec-weather-icon.hail,.mec-weather-icon.sleet,.mec-weather-icon.snow{background-image:url(../img/mec-weather-icon-07.png)}.mec-av-spot-wrap{width:auto;max-width:1200px;padding:0;margin:0 auto 25px;background:#f7f7f7;min-height:480px;position:relative}.mec-av-spot{height:auto;border:1px solid #eee;box-shadow:0 6px 12px -4px rgba(0,0,0,.05)}.mec-av-spot .mec-event-article{position:relative;height:auto}.mec-av-spot .mec-av-spot-img{position:relative;background-size:cover!important;background-position:center!important;width:100%;height:330px;float:none;margin:0;overflow:hidden}.mec-av-spot .mec-av-spot-content,.mec-av-spot .mec-av-spot-head{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-av-spot .mec-av-spot-head{background:#222;color:#fff;min-height:80px}.mec-av-spot .mec-av-spot-head .mec-av-spot-box{padding-top:25px;font-size:13px;color:#ddd}.mec-av-spot .mec-av-spot-head .mec-av-spot-box span{color:#40d9f1;font-size:40px;font-weight:700;font-style:italic}.mec-av-spot .mec-av-spot-head .mec-event-countdown{text-align:center;padding-top:10px;display:table;table-layout:fixed;margin:0 auto;float:right}.mec-av-spot .mec-av-spot-head .mec-event-countdown li{display:table-cell;padding:10px 20px;position:relative;height:60px}.mec-av-spot .mec-av-spot-head .mec-event-countdown p{margin-bottom:0}.mec-av-spot .mec-events-content p{margin-bottom:20px}.mec-av-spot-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-av-spot-wrap .mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:14px 34px;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-av-spot-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-av-spot .mec-av-spot-col6{width:50%;float:left;height:100%}.mec-av-spot .mec-av-spot-col6 i{font-size:42px;float:left;margin-right:7px;height:58px}.mec-av-spot .mec-av-spot-col6 h6{text-transform:uppercase;font-size:17px;padding:4px 0;display:inline;color:#444}.mec-av-spot .mec-av-spot-col6 address{font-size:12px;margin-bottom:0}.mec-av-spot-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-av-spot-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05)}@media only screen and (max-width:768px){.mec-av-spot .mec-av-spot-col6{width:100%;margin:10px 0}}@media only screen and (max-width:479px){.mec-av-spot-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.mec-events-masonry-wrap{display:block;width:auto}.mec-masonry-item-wrap{width:calc(33.33% - 30px);padding:0;margin:0 15px 30px;min-height:10px;position:relative}.isotope-item{z-index:2}.isotope-hidden.isotope-item{pointer-events:none;z-index:1}.isotope,.isotope .isotope-item{-webkit-transition-duration:.8s;-moz-transition-duration:.8s;transition-duration:.8s}.isotope{-webkit-transition-property:height,width;-moz-transition-property:height,width;transition-property:height,width}.isotope .isotope-item{-webkit-transition-property:-webkit-transform,opacity;-moz-transition-property:-moz-transform,opacity;transition-property:transform,opacity}.mec-events-masonry-cats{padding:10px;margin-bottom:25px;text-align:center;clear:both;list-style:none outside none}.mec-events-masonry-cats a{border-radius:2px;padding:6px 12px;font-size:13px;line-height:1.2;color:#333;font-weight:400;margin-top:0!important;text-align:center;display:inline-block;width:auto;border:2px solid transparent;transition:all .2s ease}.mec-events-masonry-cats a:hover{border-color:#40d9f1;color:#333}.mec-events-masonry-cats a.mec-masonry-cat-selected{border:2px solid #40d9f1;color:#40d9f1}.mec-masonry{background:#f7f7f7;height:auto;border:1px solid #eee;box-shadow:0 6px 12px -4px rgba(0,0,0,.05)}.mec-masonry .mec-event-article{position:relative;height:auto}.mec-masonry .mec-masonry-img{position:relative;width:100%;height:auto;float:none;margin:0;overflow:hidden}.mec-masonry .mec-masonry-img img{width:100%}.mec-masonry .mec-masonry-content,.mec-masonry .mec-masonry-head{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-masonry .mec-events-content p{margin-bottom:20px}.mec-masonry-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-masonry-item-wrap .mec-event-grid-modern .event-grid-modern-head{min-height:79px;margin-bottom:10px;padding:14px 5%;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-masonry-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-masonry-content.mec-event-grid-modern .mec-event-content{padding-top:20px}.mec-masonry-content.mec-event-grid-modern .mec-event-footer{height:auto}.mec-masonry .mec-masonry-col6 .mec-event-date{font-size:52px;letter-spacing:-2px;line-height:41px;vertical-align:top}.mec-masonry .mec-masonry-col6{width:50%;float:left;height:100%}.mec-masonry .mec-masonry-col6 i{font-size:24px;float:left;margin-right:7px;height:50px}.mec-masonry .mec-masonry-col6 .mec-event-month,.mec-masonry .mec-masonry-col6 h6{text-transform:capitalize;font-size:15px;padding:4px 0;display:inline;color:#444}.mec-masonry .mec-masonry-col6 .mec-event-detail,.mec-masonry .mec-masonry-col6 address{font-size:11px;margin-bottom:0}.mec-masonry-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-masonry-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05)}@media only screen and (max-width:960px){.mec-masonry-item-wrap{width:calc(50% - 30px)}}@media only screen and (max-width:768px){.mec-masonry .mec-masonry-col6{width:100%;margin:10px 0}.mec-masonry-item-wrap{width:calc(100% - 30px)}}@media only screen and (max-width:479px){.mec-masonry-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.btn-wrapper{text-align:center}.countdown-wrapper .btn-wrapper{padding-top:10px;padding-right:0}.countdown-wrapper h5.countdown-message{letter-spacing:5px;font-weight:500;font-size:18px}.blox.dar .countdown-wrapper p,.countdown-wrapper p{color:#888}.countdown-wrapper a.button.black{float:right;margin-right:0}.mec-wrap .threedaydigits .days .flip-clock-label{right:-100px}@media only screen and (min-width:320px) and (max-width:767px){.mec-wrap .flip-clock-wrapper ul{width:29px!important}.mec-wrap .flip-clock-wrapper ul li a div div.inn{font-size:25px!important}.mec-wrap .flip-clock-divider .flip-clock-label{left:0;font-weight:300}.mec-wrap span.flip-clock-divider{width:12px}}@media only screen and (min-width:320px) and (max-width:480px){.mec-wrap .flip-clock-wrapper ul{width:29px!important}.mec-wrap .flip-clock-wrapper ul li a div div.inn{font-size:25px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}.mec-wrap span.flip-clock-divider:first-child{width:0}.mec-wrap span.flip-clock-divider{width:20px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 18%}}@media screen and (min-width:960px) and (max-width:1200px){.mec-wrap .threedaydigits ul{height:50px;width:47px}}@media screen and (min-width:480px) and (max-width:768px){.mec-wrap .threedaydigits ul{height:48px;width:26px!important}.mec-wrap .threedaydigits .flip-clock-label{font-size:8px;left:-8px}}@media screen and (min-width:320px) and (max-width:480px){.mec-wrap .threedaydigits ul{height:48px;width:22px!important}}.mec-wrap .flip-clock-wrapper *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;-o-box-sizing:border-box;box-sizing:border-box;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-o-backface-visibility:hidden;backface-visibility:hidden}.mec-wrap .flip-clock-wrapper a{cursor:pointer;text-decoration:none;color:#ccc}.mec-wrap .flip-clock-wrapper a:hover{color:#fff}.mec-wrap .flip-clock-wrapper ul{list-style:none}.flip-clock-wrapper.clearfix:after,.mec-wrap .flip-clock-wrapper.clearfix:before{content:" ";display:table}.mec-wrap .flip-clock-wrapper.clearfix:after{clear:both}.mec-wrap .flip-clock-wrapper{font:normal 11px "helvetica neue",helvetica,sans-serif;-webkit-user-select:none}.mec-wrap .flip-clock-meridium{background:0 0!important;box-shadow:0 0 0!important;font-size:36px!important}.mec-wrap .flip-clock-meridium a{color:#313333}.mec-wrap .flip-clock-wrapper{text-align:center;position:relative;display:inline-block;padding-bottom:10px}.flip-clock-wrapper:after,.mec-wrap .flip-clock-wrapper:before{content:" ";display:table}.mec-wrap .flip-clock-wrapper:after{clear:both}.mec-wrap .flip-clock-wrapper ul{position:relative;float:left;margin:2px;width:50px;height:50px;font-size:80px;font-weight:700;line-height:87px;border-radius:3px;background:rgba(0,0,0,.21)}.mec-wrap .flip-clock-wrapper ul li{z-index:1;position:absolute;left:0;top:0;width:100%;height:100%;line-height:54px;text-decoration:none!important}.mec-wrap .flip-clock-wrapper ul li:first-child{z-index:2}.mec-wrap .flip-clock-wrapper ul li a{display:block;height:100%;-webkit-perspective:200px;-moz-perspective:200px;perspective:200px;margin:0!important;overflow:visible!important;cursor:default!important}.mec-wrap .flip-clock-wrapper ul li a div{z-index:1;position:absolute;left:0;width:100%;height:50%;font-size:80px;overflow:hidden;outline:1px solid transparent}.mec-wrap .flip-clock-wrapper ul li a div .shadow{position:absolute;width:100%;height:100%;z-index:2}.mec-wrap .flip-clock-wrapper ul li a div.up{-webkit-transform-origin:50% 100%;-moz-transform-origin:50% 100%;-ms-transform-origin:50% 100%;-o-transform-origin:50% 100%;transform-origin:50% 100%;top:0}.mec-wrap .flip-clock-wrapper ul li a div.up:after{content:"";position:absolute;top:24px;left:0;z-index:5;width:100%;height:3px;background-color:rgba(0,0,0,.12)}.mec-wrap .flip-clock-wrapper ul li a div.down{-webkit-transform-origin:50% 0;-moz-transform-origin:50% 0;-ms-transform-origin:50% 0;-o-transform-origin:50% 0;transform-origin:50% 0;bottom:0;border-bottom-left-radius:3px;border-bottom-right-radius:3px}.mec-wrap .flip-clock-wrapper ul li a div div.inn{position:absolute;left:0;z-index:1;width:100%;height:200%;color:#fff;text-shadow:0 0 2px rgba(0,0,0,.25);text-align:center;background-color:#40d9f1;border-radius:3px;font-size:48px}.mec-wrap .flip-clock-wrapper ul li a div.up div.inn{top:0}.mec-wrap .flip-clock-wrapper ul li a div.down div.inn{bottom:0}.mec-wrap .flip-clock-wrapper ul.play li.flip-clock-before{z-index:3}.mec-wrap .flip-clock-wrapper .flip{box-shadow:0 2px 5px rgba(0,0,0,.17)}.mec-wrap .flip-clock-wrapper ul.play li.flip-clock-active{-webkit-animation:asd .5s .5s linear both;-moz-animation:asd .5s .5s linear both;animation:asd .5s .5s linear both;z-index:5}.mec-wrap .flip-clock-divider{float:left;display:inline-block;position:relative;width:18px;height:62px}.mec-wrap .flip-clock-divider:first-child{width:0}.mec-wrap .flip-clock-dot{display:none;background:#323434;width:10px;height:10px;position:absolute;border-radius:50%;box-shadow:0 0 5px rgba(0,0,0,.5);left:5px}.mec-wrap .flip-clock-divider .flip-clock-label{position:absolute;bottom:-1.5em;right:-71px;color:#101010;font-weight:700;text-shadow:none;text-transform:uppercase}.mec-wrap .blox.dark .flip-clock-divider .flip-clock-label{color:#8a8a8a}.mec-wrap .flip-clock-divider.seconds .flip-clock-label{right:-82px}.mec-wrap .flip-clock-dot.top{top:30px}.mec-wrap .flip-clock-dot.bottom{bottom:30px}@-webkit-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@-moz-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@-o-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}.flip-clock-wrapper ul.play li.flip-clock-active .down{z-index:2;-webkit-animation:turn .5s .5s linear both;-moz-animation:turn .5s .5s linear both;animation:turn .5s .5s linear both}@-webkit-keyframes turn{0%{-webkit-transform:rotatex(90deg)}100%{-webkit-transform:rotatex(0)}}@-moz-keyframes turn{0%{-moz-transform:rotatex(90deg)}100%{-moz-transform:rotatex(0)}}@-o-keyframes turn{0%{-o-transform:rotatex(90deg)}100%{-o-transform:rotatex(0)}}@keyframes turn{0%{transform:rotatex(90deg)}100%{transform:rotatex(0)}}.flip-clock-wrapper ul.play li.flip-clock-before .up{z-index:2;-webkit-animation:turn2 .5s linear both;-moz-animation:turn2 .5s linear both;animation:turn2 .5s linear both}@-webkit-keyframes turn2{0%{-webkit-transform:rotatex(0)}100%{-webkit-transform:rotatex(-90deg)}}@-moz-keyframes turn2{0%{-moz-transform:rotatex(0)}100%{-moz-transform:rotatex(-90deg)}}@-o-keyframes turn2{0%{-o-transform:rotatex(0)}100%{-o-transform:rotatex(-90deg)}}@keyframes turn2{0%{transform:rotatex(0)}100%{transform:rotatex(-90deg)}}.flip-clock-wrapper ul li.flip-clock-active{z-index:3}.flip-clock-wrapper ul.play li.flip-clock-before .up .shadow{background:-moz-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,.1)),color-stop(100%,rgba(64,64,64,.68)));background:linear,top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;background:-o-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-ms-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:linear,to bottom,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;-webkit-animation:show .5s linear both;-moz-animation:show .5s linear both;animation:show .5s linear both}.flip-clock-wrapper ul.play li.flip-clock-active .up .shadow{background:-moz-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,.1)),color-stop(100%,rgba(64,64,64,.68)));background:linear,top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;background:-o-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-ms-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:linear,to bottom,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;-webkit-animation:hide .5s .3s linear both;-moz-animation:hide .5s .3s linear both;animation:hide .5s .3s linear both}.flip-clock-wrapper ul.play li.flip-clock-before .down .shadow{background:-moz-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(64,64,64,.68)),color-stop(100%,rgba(0,0,0,.1)));background:linear,top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;background:-o-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-ms-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:linear,to bottom,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;-webkit-animation:show .5s linear both;-moz-animation:show .5s linear both;animation:show .5s linear both}.flip-clock-wrapper ul.play li.flip-clock-active .down .shadow{background:-moz-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(64,64,64,.68)),color-stop(100%,rgba(0,0,0,.1)));background:linear,top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;background:-o-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-ms-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:linear,to bottom,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;-webkit-animation:hide .5s .3s linear both;-moz-animation:hide .5s .3s linear both;animation:hide .5s .2s linear both}@-webkit-keyframes show{0%{opacity:0}100%{opacity:1}}@-moz-keyframes show{0%{opacity:0}100%{opacity:1}}@-o-keyframes show{0%{opacity:0}100%{opacity:1}}@keyframes show{0%{opacity:0}100%{opacity:1}}@-webkit-keyframes hide{0%{opacity:1}100%{opacity:0}}@-moz-keyframes hide{0%{opacity:1}100%{opacity:0}}@-o-keyframes hide{0%{opacity:1}100%{opacity:0}}@keyframes hide{0%{opacity:1}100%{opacity:0}}@font-face{font-family:simple-line-icons;src:url(../fonts/Simple-Line-Icons.eot?v=2.3.1);src:url(../fonts/Simple-Line-Icons.eot?v=2.3.1#iefix) format('embedded-opentype'),url(../fonts/Simple-Line-Icons.woff2?v=2.3.1) format('woff2'),url(../fonts/Simple-Line-Icons.woff?v=2.3.1) format('woff'),url(../fonts/Simple-Line-Icons.ttf?v=2.3.1) format('truetype'),url(../fonts/Simple-Line-Icons.svg?v=2.3.1#simple-line-icons) format('svg');font-weight:400;font-style:normal}[class*=mec-sl-]{font-family:simple-line-icons;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.mec-sl-facebook:before{content:"\e00b"}.mec-sl-twitter:before{content:"\e009"}.mec-sl-google-plus:before{content:"\e60d"}.mec-sl-angle-left:before{content:"\e605"}.mec-sl-angle-right:before{content:"\e606"}.mec-sl-calendar:before{content:"\e075"}.mec-sl-clock-o:before{content:"\e081"}.mec-sl-home:before{content:"\e069"}.mec-sl-phone:before{content:"\e600"}.mec-sl-envelope:before{content:"\e086"}.mec-sl-sitemap:before{content:"\e037"}.mec-sl-map-marker:before{content:"\e096"}.mec-sl-floder:before{content:"\e089"}.mec-sl-wallet:before{content:"\e02a"}.mec-color,.mec-color-before :before,.mec-color-hover:hover,.mec-wrap .mec-color,.mec-wrap .mec-color-before :before,.mec-wrap .mec-color-hover:hover{color:#40d9f1}.mec-bg-color,.mec-bg-color-hover:hover,.mec-wrap .mec-bg-color,.mec-wrap .mec-bg-color-hover:hover{background-color:#40d9f1}.mec-border-color,.mec-border-color-hover:hover,.mec-wrap .mec-border-color,.mec-wrap .mec-border-color-hover:hover{border-color:#40d9f1}.mec-toggle-month-divider.mec-skin-list-events-container{border:1px solid #e8e8e8;margin-bottom:30px;background:#f8f8f8;box-shadow:0 2px 18px -1px rgba(0,0,0,.1);border-radius:2px}.mec-toggle-month-divider .mec-month-divider{margin:0;text-align:left;background:#fff;position:relative;cursor:pointer;border-top:1px solid #e8e8e8}.mec-toggle-month-divider .mec-month-divider span{padding:20px;border-bottom:1px solid #e8e8e8}.mec-toggle-month-divider .mec-month-divider i{position:absolute;right:20px;top:24px;font-size:20px;cursor:pointer}.mec-toggle-month-divider .mec-month-divider span:before{display:none}.mec-toggle-month-divider .mec-month-divider+article{margin-top:20px}.mec-toggle-month-divider .mec-wrap .mec-month-divider:first-of-type{border-top:none}.mec-toggle-month-divider .mec-event-list-accordion .mec-month-divider:not(:first-of-type)~article{display:none}.mec-skin-list-events-container:not(.mec-toggle-month-divider) .mec-month-divider i{display:none}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-month{display:inline-block;padding-top:0}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-date{font-size:14px;line-height:14px;float:none;display:inline-block;margin-right:0;font-weight:700}.mec-events-toggle .mec-toogle-inner-month-divider.mec-toggle-item-inner{padding:20px 60px 30px 15px}.mec-toogle-inner-month-divider .mec-toggle-month-inner-image{float:left;clear:right;width:100px;margin-right:20px;margin-left:10px}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-detail{margin-top:-6px}.mec-toogle-inner-month-divider .mec-toggle-item-col{float:none;width:100%;margin-top:10px;display:block;border:none}.mec-events-toggle .mec-toogle-inner-month-divider .mec-toggle-title{font-size:19px;display:block;padding-top:10px}@media only screen and (max-width:768px){.mec-events-toggle .mec-toogle-inner-month-divider .mec-toggle-title{font-size:14px;padding-top:0}.mec-toogle-inner-month-divider .mec-toggle-item-col{margin-top:0}.mec-toogle-inner-month-divider .mec-toggle-month-inner-image{width:70px}}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled:before,.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-featured:before{z-index:1;position:absolute;top:25px;right:-37px;font-size:11px;letter-spacing:1px;text-transform:uppercase;background:#04de78;padding:2px 40px;color:#fff;-ms-transform:rotate(45deg);-webkit-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition:.5s cubic-bezier(.25,.5,.06,.85);transition:.5s cubic-bezier(.25,.5,.06,.85);content:attr(data-style)}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled,.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-featured{overflow:hidden;position:relative}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled:before{background:#de0404}.mec-daily-view-date-events article:before,ul.mec-weekly-view-dates-events article:before{padding:7px 40px!important;top:27px!important}.mec-event-grid-classic article .mec-fc-style,.mec-event-grid-minimal article .mec-fc-style,.mec-event-grid-simple article .mec-fc-style,.mec-timetable-wrap article .mec-fc-style,.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article.mec-event-cover-modern .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{font-size:9px;letter-spacing:.5px;text-transform:uppercase;background:#04de78;padding:2px 7px;color:#fff;position:relative;margin-left:5px;border-radius:2px}.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-modern.mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-minimal article .mec-fc-style:before,.mec-event-grid-simple article .mec-fc-style:before,.mec-timetable-wrap article .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article .mec-fc-style:before,.mec-wrap .mec-event-list-modern article .mec-fc-style:before,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style:before{width:0;height:0;border-top:4px solid transparent!important;border-right:5px solid;border-bottom:4px solid transparent;margin:0;top:50%;left:-4px;transform:translateY(-4.5px);position:absolute;content:'';color:#04de78}.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-event-grid-classic article.mec-label-canceled:before,.mec-event-grid-classic article.mec-label-featured:before,.mec-event-grid-minimal article.mec-label-canceled:before,.mec-event-grid-minimal article.mec-label-featured:before,.mec-event-grid-simple article.mec-label-canceled:before,.mec-event-grid-simple article.mec-label-featured:before,.mec-timetable-wrap article.mec-label-canceled:before,.mec-timetable-wrap article.mec-label-featured:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled:before,.mec-wrap .mec-event-list-accordion article.mec-label-featured:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled:before,.mec-wrap .mec-event-list-modern article.mec-label-featured:before{display:none}.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{top:-3px;font-size:11px;margin-left:10px}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style:before,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-canceled:before,.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-featured:before{-ms-transform:none;-webkit-transform:none;transform:none;-webkit-transition:none;transition:none;top:271px;right:0}.mec-timetable-wrap article .mec-fc-style{top:-2px;font-size:10px}.mec-wrap article.mec-event-cover-modern .mec-fc-style{padding:5px 9px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:24px;display:inline-block;border-radius:2px}.mec-skin-grid-events-container .mec-wrap .mec-event-grid-clean .mec-event-article:before{-ms-transform:none;-webkit-transform:none;transform:none!important;-webkit-transition:none;transition:none;top:22px!important;right:22px!important;padding:0 10px!important}.mec-event-grid-minimal article .mec-fc-style,.mec-event-grid-simple article .mec-fc-style{top:-4px;font-size:10px;margin-left:10px}.mec-event-grid-classic article .mec-fc-style{padding:5px 20px;font-size:12px;margin-top:8px;display:inline-block}.mec-hourly-schedule-speaker-info{background:#fff;padding:30px;border:1px solid #e6e6e6;max-width:740px;width:740px;margin-left:-110px}.mec-hourly-schedule-speaker-thumbnail{float:left;max-width:30%;width:30%}.mec-hourly-schedule-speaker-name{font-weight:700;font-size:26px;line-height:1.2;color:#333;text-transform:uppercase}.mec-hourly-schedule-speaker-details{float:left;width:69%;padding-left:25px}.mec-hourly-schedule-speaker-job-title{font-size:16px;line-height:1.3;margin-bottom:4px}.mec-hourly-schedule-speaker-description{font-size:14px;font-weight:400;color:#6d7683;line-height:1.7;text-align:left}.mec-hourly-schedule-speaker-contact-information a i{color:#6b6b6b;background:#ebebeb;line-height:29px;margin:9px 7px 9px 0;width:30px;height:30px;display:inline-block;text-align:center;transition:all .2s ease;font-size:15px;cursor:pointer;border-radius:3px}.mec-hourly-schedule-speaker-contact-information a i:hover{background:#222;color:#fff}@media only screen and (max-width:479px){.mec-hourly-schedule-speaker-thumbnail{float:none;max-width:none;margin-right:0;margin-bottom:15px;width:100%}.mec-hourly-schedule-speaker-thumbnail img{width:100%}.mec-hourly-schedule-speaker-details{padding-left:0}.mec-hourly-schedule-speaker-info{width:90%;margin:0 auto}}.mec-profile .mec-profile-bookings{border:2px solid #e6e6e6;text-align:center}.mec-profile .mec-profile-bookings tbody tr:first-child{background:#f7f7f7;font-weight:700;text-transform:capitalize}.mec-profile .mec-profile-bookings tbody tr{border-bottom:1px solid #e6e6e6;font-size:14px}.mec-profile .mec-profile-bookings tbody tr td{border:1px solid #e6e6e6;padding:10px;text-align:center;word-break:initial}.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:53%;text-align:left}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8) i{color:#fe686a}.mec-profile .mec-event-status{padding:5px 10px;color:#fff;border-radius:2px;font-size:12px;line-height:12px;letter-spacing:.4px}.mec-profile .mec-event-status.mec-book-confirmed{background:#50d477}.mec-profile .mec-event-status.mec-book-pending{background:#fcbe69}.mec-profile .mec-event-status.mec-book-rejected{background:#fe686a}.mec-profile .mec-event-date{font-size:12px;color:#888}.mec-event-date,.mec-event-status{text-align:center}.mec-event-date .mec-tooltip,.mec-event-status .mec-tooltip{position:relative;width:fit-content;margin:auto}.mec-profile i{font-size:15px;color:#008aff;vertical-align:text-bottom;margin-right:4px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{min-width:250px;max-width:300px;display:inline-block;top:-8px;left:50%;margin-top:0;transform:translate(-50%,-100%);padding:0;background-color:#000;color:#fff;font-weight:400;font-size:14px;letter-spacing:.5px;line-height:1.5;position:absolute;z-index:99999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #535a61;padding:5px 10px 6px;border-radius:8px;text-align:center;font-style:normal;opacity:0;visibility:hidden;display:none}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{font-size:13px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;letter-spacing:1.1px;font-weight:500}.mec-event-date .mec-tooltip:hover .box:after,.mec-event-status .mec-tooltip:hover .box:after{content:'';position:absolute;width:12px;height:12px;left:calc(50% - 12px);bottom:-12px;transform:translate(50%,-50%) rotate(-45deg);background-color:#000;box-shadow:0 8px 9px -4px #535a61}.mec-event-status .mec-tooltip .box{min-width:100px}.mec-event-status.mec-book-confirmed .mec-tooltip .box,.mec-event-status.mec-book-confirmed .mec-tooltip:hover .box:after{background-color:#50d477}.mec-event-status.mec-book-rejected .mec-tooltip .box,.mec-event-status.mec-book-rejected .mec-tooltip:hover .box:after{background-color:#fe686a}.mec-event-status.mec-book-pending .mec-tooltip .box,.mec-event-status.mec-book-pending .mec-tooltip:hover .box:after{background-color:#fcbe69}.mec-event-date .mec-tooltip:hover .box,.mec-event-status .mec-tooltip:hover .box{opacity:1;visibility:visible;display:block}.mec-profile .mec-event-status{padding:0}.mec-profile .mec-booking-number-of-attendees{font-size:13px;color:#888}.mec-profile .mec-booking-number-of-attendees i,.mec-profile .mec-profile-bookings-view-invoice i{font-size:15px;color:#008aff;vertical-align:text-bottom;margin-right:4px}.mec-booking-attendees{background:#fff;padding:10px}.mec-booking-attendees{width:850px;text-align:center}.mec-booking-attendees-wrapper{border:2px solid #e6e6e6;font-size:14px}.mec-booking-attendees-head{display:table;width:100%;background:#f7f7f7;border-bottom:1px solid #e6e6e6;font-weight:700}.mec-booking-attendees-head span,.mec-booking-attendees-head-content>span{vertical-align:middle;display:table-cell;padding:7px;border-right:1px solid #e6e6e6;font-size:12px}.mec-booking-attendees-head-content{display:table;width:100%;border-bottom:1px solid #e6e6e6}.mec-booking-attendees-wrapper .mec-booking-attendees-head-content:last-child{border:none}.mec-booking-attendees-head span:nth-child(1),.mec-booking-attendees-head-content>span:nth-child(1){width:4%}.mec-booking-attendees-head span:nth-child(2),.mec-booking-attendees-head-content>span:nth-child(2){width:20%}.mec-booking-attendees-head span:nth-child(3),.mec-booking-attendees-head-content>span:nth-child(3){width:24%}.mec-booking-attendees-head span:nth-child(4),.mec-booking-attendees-head-content>span:nth-child(4){width:26%}.mec-booking-attendees-head span:nth-child(5),.mec-booking-attendees-head-content>span:nth-child(5){width:26%}@media only screen and (max-width:759px){.mec-booking-attendees{width:470px}.mec-booking-attendees-head span,.mec-booking-attendees-head-content>span{word-break:break-all}}@media(max-width:1366px){.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:6%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:40%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:12%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:8%}}@media(max-width:1024px){.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:30%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:15%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:10%}}@media(max-width:780px){.mec-profile .mec-profile-bookings tbody tr,.mec-profile i{font-size:12px}.mec-event-date .mec-tooltip .box{min-width:200px}.mec-event-status .mec-tooltip .box{min-width:90px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{padding:4px 5px!important}.mec-profile .mec-profile-bookings tbody tr{font-size:12px}}@media(max-width:480px){.mec-profile .mec-booking-number-of-attendees,.mec-profile .mec-profile-bookings tbody tr,.mec-profile i{font-size:8px!important}.mec-profile .mec-profile-bookings tbody tr td{padding:3px}.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:19%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:12%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:18%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:13%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:13%}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{font-size:8px}.mec-event-date .mec-tooltip .box{min-width:75px}.mec-event-status .mec-tooltip .box{min-width:70px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{padding:4px 5px!important}}.mec-woo-booking-checkout{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;border-radius:0;margin-bottom:6px;min-width:170px;margin-top:5px;text-align:center}.mec-woo-booking-checkout:hover{background:#222;color:#fff}.mec-woo-booking-checkout:focus,.mec-woo-booking-checkout:visited{color:#fff}.single-mec-events .lity-container{max-width:480px;width:480px}.lity-content .mec-events-meta-group-booking{width:100%;padding:20px 50px;background:#fff}.lity-content .mec-events-meta-group-booking .mec-booking form>h4{text-transform:uppercase;font-size:15px;font-weight:700;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative;text-align:center;line-height:1.2;margin-bottom:10px}.lity-content .mec-events-meta-group-booking .mec-booking form>h4:before{padding:1px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-35px;left:50%}.lity-content .mec-events-meta-group-booking .mec-event-ticket-available,.lity-content .mec-events-meta-group-booking .mec-event-ticket-name,.lity-content .mec-events-meta-group-booking .mec-event-ticket-price,.lity-content .mec-events-meta-group-booking .mec-ticket-variation-name,.lity-content .mec-events-meta-group-booking .mec-ticket-variation-price,.lity-content .mec-events-meta-group-booking label{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:3px 0;clear:none;padding:5px 1em 3px 0;display:inline-block}.lity-content .mec-events-meta-group-booking .mec-event-ticket-available{margin-bottom:12px}.lity-content .mec-events-meta-group-booking select{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:100%;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both;font-family:Montserrat,Helvetica,Arial,sans-serif}.lity-content .mec-events-meta-group-booking input[type=email]{color:#888;border:1px solid #e1e1e1;font-size:14px;display:block;width:100%;outline:0}.lity-content .mec-events-meta-group-booking input{margin-bottom:10px!important}.lity-content .mec-book-ticket-variation h5{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:0;clear:none;padding:5px 1em 3px 0;display:inline-block;text-transform:capitalize;font-family:Montserrat,Helvetica,Arial,sans-serif}.lity-content ul.mec-book-tickets-container{padding:0}.lity-content .mec-events-meta-group-booking input[type=email],.lity-content .mec-events-meta-group-booking input[type=number],.lity-content .mec-events-meta-group-booking input[type=text]{outline:0;font-family:Montserrat,Helvetica,Arial,sans-serif;display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:100%;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both;margin-bottom:2px!important}.lity-content button[type=submit]{position:relative;border:none;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;min-width:170px;margin-top:5px;border-radius:0;margin-bottom:6px}.lity-content button[type=submit]:hover{background:#222}.lity-content .mec-book-tickets-container li{list-style:none}.lity-content .mec-events-meta-group-booking #mec_book_payment_form h4,.lity-content .mec-events-meta-group-booking li h4{font-size:19px;font-weight:700}.lity-content .mec-events-meta-group-booking .mec-book-price-total{display:inline-block;margin-bottom:10px;font-size:26px;color:#39c36e;font-weight:700;padding:10px 0}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li{width:50%}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li:nth-child(even){border:none}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li span{display:block}.lity-content .mec-events-meta-group-booking button[type=submit]:after{display:none;font-family:simple-line-icons;content:"\e098";margin-left:4px;-webkit-animation:rotating 1.2s linear infinite;-moz-animation:rotating 1.2s linear infinite;-ms-animation:rotating 1.2s linear infinite;-o-animation:rotating 1.2s linear infinite;animation:rotating 1.2s linear infinite}.lity-content .mec-events-meta-group-booking button[type=submit].loading:after{display:inline-block}@media only screen and (max-width:480px){.lity-content .mec-events-meta-group-booking{padding:20px;width:340px;margin:0 auto}}.mec-events-meta-group-booking{position:relative}.mec-cover-loader:after{content:'';position:absolute;top:0;right:0;left:0;bottom:0;background:rgba(255,255,255,.5);z-index:99999}.mec-loader{background:rgba(0,0,0,0);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);z-index:9}.mec-loader,.mec-loader:after{border-radius:50%;width:5em;height:5em;z-index:999999999999}.mec-loader{font-size:10px;text-indent:-9999em;border-top:.5em solid rgba(0,0,0,.2);border-right:.5em solid rgba(0,0,0,.2);border-bottom:.5em solid rgba(0,0,0,.2);border-left:.5em solid #fff;-webkit-transform:translateZ(0);-ms-transform:translateZ(0);transform:translateZ(0);-webkit-animation:mecloader 1.1s infinite linear;animation:mecloader 1.1s infinite linear}@-webkit-keyframes mecloader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes mecloader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.mec-google-recaptcha{margin:0 0 20px 16px}.mec-wrap *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mec-wrap :after,.mec-wrap :before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mec-wrap .clearfix:after,.mec-wrap .clearfix:before{content:'\0020';display:block;overflow:hidden;visibility:hidden;width:0;height:0}.mec-wrap .clearfix:after{clear:both}.mec-wrap .clearfix{zoom:1}.mec-wrap .clear,.mec-wrap .clr{clear:both;display:block;overflow:hidden;visibility:hidden}.mec-wrap .clr{visibility:visible;overflow:visible}.mec-container [class*=col-] img{max-width:100%}.mec-container{margin-right:auto;margin-left:auto;padding-left:10px;padding-right:10px}.mec-container:after,.mec-container:before{content:" ";display:table}.mec-container:after{clear:both}@media only screen and (max-width:479px){.mec-container{width:300px}}@media only screen and (min-width:480px) and (max-width:767px){.mec-container{width:420px}}@media only screen and (min-width:768px) and (max-width:960px){.mec-container{width:768px}}@media only screen and (min-width:961px){.mec-container{width:960px}}@media only screen and (min-width:1200px){.mec-container{width:1196px;padding-left:15px;padding-right:15px}}@media only screen and (min-width:1921px){.mec-container{max-width:1690px}}.mec-wrap .row{margin-left:-10px;margin-right:-10px}.mec-wrap .row:after,.mec-wrap .row:before{content:" ";display:table}.mec-wrap .row:after{clear:both}.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9,.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9,.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9,.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{position:relative;min-height:1px;padding-left:10px;padding-right:10px}@media only screen and (min-width:1200px){.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9,.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9,.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9,.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{padding-left:15px;padding-right:15px}.mec-wrap .row{margin-left:-15px;margin-right:-15px}}.mec-container [class*=col-].alpha{padding-left:0}.mec-container [class*=col-].omega{padding-right:0}.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{float:left}.mec-wrap .col-xs-12{width:100%}.mec-wrap .col-xs-11{width:91.66666666666666%}.mec-wrap .col-xs-10{width:83.33333333333334%}.mec-wrap .col-xs-9{width:75%}.mec-wrap .col-xs-8{width:66.66666666666666%}.mec-wrap .col-xs-7{width:58.333333333333336%}.mec-wrap .col-xs-6{width:50%}.mec-wrap .col-xs-5{width:41.66666666666667%}.mec-wrap .col-xs-4{width:33.33333333333333%}.mec-wrap .col-xs-3{width:25%}.mec-wrap .col-xs-2{width:16.666666666666664%}.mec-wrap .col-xs-1{width:8.333333333333332%}@media (min-width:768px){.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9{float:left}.mec-wrap .col-sm-12{width:100%}.mec-wrap .col-sm-11{width:91.66666666666666%}.mec-wrap .col-sm-10{width:83.33333333333334%}.mec-wrap .col-sm-9{width:75%}.mec-wrap .col-sm-8{width:66.66666666666666%}.mec-wrap .col-sm-7{width:58.333333333333336%}.mec-wrap .col-sm-6{width:50%}.mec-wrap .col-sm-5{width:41.66666666666667%}.mec-wrap .col-sm-4{width:33.33333333333333%}.mec-wrap .col-sm-3{width:25%}.mec-wrap .col-sm-2{width:16.666666666666664%}.mec-wrap .col-sm-1{width:8.333333333333332%}}@media (min-width:961px){.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9{float:left}.mec-wrap .col-md-12{width:100%}.mec-wrap .col-md-11{width:91.66666666666666%}.mec-wrap .col-md-10{width:83.33333333333334%}.mec-wrap .col-md-9{width:75%}.mec-wrap .col-md-8{width:66.66666666666666%}.mec-wrap .col-md-7{width:58.333333333333336%}.mec-wrap .col-md-6{width:50%}.mec-wrap .col-md-5{width:41.66666666666667%}.mec-wrap .col-md-4{width:33.33333333333333%}.mec-wrap .col-md-3{width:25%}.mec-wrap .col-md-2{width:16.666666666666664%}.mec-wrap .col-md-1{width:8.333333333333332%}}@media (min-width:1200px){.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9{float:left}.mec-wrap .col-lg-12{width:100%}.mec-wrap .col-lg-11{width:91.66666666666666%}.mec-wrap .col-lg-10{width:83.33333333333334%}.mec-wrap .col-lg-9{width:75%}.mec-wrap .col-lg-8{width:66.66666666666666%}.mec-wrap .col-lg-7{width:58.333333333333336%}.mec-wrap .col-lg-6{width:50%}.mec-wrap .col-lg-5{width:41.66666666666667%}.mec-wrap .col-lg-4{width:33.33333333333333%}.mec-wrap .col-lg-3{width:25%}.mec-wrap .col-lg-2{width:16.666666666666664%}.mec-wrap .col-lg-1{width:8.333333333333332%}}#mec_woo_add_to_cart_btn{min-width:170px;margin-top:5px;text-align:center}.mec-breadcrumbs{border-radius:2px;padding:9px 15px 6px;font-size:11px;color:#8d8d8d;letter-spacing:0;text-transform:none;font-weight:500;margin:auto 15px 33px 15px;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.025)}.mec-breadcrumbs-modern{margin:auto 0 33px 0}.mec-breadcrumbs a{color:#000;padding-left:4px}.mec-breadcrumbs a:hover{text-decoration:underline}.mec-breadcrumbs i{font-size:8px;margin:0 0 0 4px}.mec-breadcrumbs .container{padding-left:20px}.mec-content-notification a{margin-left:5px}.mec-content-notification{background:#f7f7f7;padding:10px 10px 10px;border:1px solid #e8e8e8}.mec-content-notification p{margin-bottom:0}.mec-fes-form #mec-advanced-wraper div:first-child>ul{border:1px solid #cfeff5;width:auto;box-shadow:0 1px 4px -2px #cfeff5;display:block;margin:5px 0 10px;padding:5px 0;border-radius:2px}.mec-fes-form #mec-advanced-wraper div:first-child>ul:last-of-type{margin-bottom:35px}#mec-advanced-wraper div:first-child>ul span{display:none}#mec-advanced-wraper div:first-child>ul *{display:inline-block;background:#fff;font-size:12px;color:#717273;text-align:center}#mec-advanced-wraper div:first-child>ul>li{width:60px;font-weight:700;margin:0 10px 0 0;padding:4px 0;border-right:1px solid #cfeff5}#mec-advanced-wraper div:first-child>ul>ul>li{margin:0;padding:2px 10px;cursor:pointer;border-radius:2px;transition:all .18s ease}.mec-fes-form #mec-advanced-wraper div:first-child>ul>ul>li.mec-active,.mec-fes-form #mec-advanced-wraper div:first-child>ul>ul>li:hover{background:#40d9f1!important;box-shadow:0 1px 9px -3px #40d9f1;color:#fff!important}.mec-search-bar-wrap .mec-search-form .mec-text-input-search{width:83%}.mec-search-bar-wrap .mec-search-form .mec-ajax-search-result .mec-text-input-search{width:100%;float:none}.mec-search-bar-wrap input#mec-search-bar-input{width:calc(100% - 84%);margin-left:11px;background:#40d9f1;Color:#fff;font-weight:400}.mec-text-input-search+input#mec-search-bar-input{margin-left:-3px}.mec-search-bar-wrap input#mec-search-bar-input:hover{background:#000}.mec-wrap.mec-search-bar-wrap .mec-totalcal-box input{float:none}@media(max-width:768px){.mec-search-bar-wrap .mec-search-form .mec-text-input-search{display:inline-block}}@media(max-width:480px){.mec-search-bar-wrap .mec-search-form .mec-text-input-search{width:64%}.mec-search-bar-wrap input#mec-search-bar-input{width:calc(100% - 67%)}}.mec-wrap.mec-search-bar-wrap .mec-totalcal-box{overflow:visible}.mec-ajax-search-result{position:relative}.mec-search-bar-wrap.mec-wrap .mec-totalcal-box input[type=text]{width:calc(100% - 36px)}.mec-search-bar-wrap.mec-wrap .mec-totalcal-box input[type=text]:focus{border-color:#efefef}div#mec-ajax-search-result-wrap{position:absolute;top:100%;opacity:0;visibility:hidden;width:calc(100% - 2px);min-height:50px;left:0;right:0;padding:0 10px;z-index:9999;transition:all .3s ease}.mec-ajax-search-result-events{background:#fff;padding:10px 20px;border:1px solid #efefef;border-top:none}.mec-ajax-search-result-events article:first-of-type{border:none}article.mec-search-bar-result{text-align:left;margin-bottom:0;padding-bottom:25px;padding-top:26px;border-top:1px solid #efefef;transition:all .33s ease;clear:both}.mec-search-bar-result .mec-event-list-search-bar-date{width:64px;height:64px;margin-right:10px;font-size:11px;text-transform:uppercase;float:left;text-align:center;padding-top:2px}.mec-search-bar-result .mec-event-list-search-bar-date span{font-size:40px;line-height:30px;font-weight:700;display:block;margin-bottom:6px;letter-spacing:1px}.mec-search-bar-result .mec-event-image{float:left;margin-right:20px;width:65px;height:auto}.mec-search-bar-result .mec-event-time{font-size:11px;line-height:1.1;margin:0}.mec-search-bar-result .mec-event-time i{color:#40d9f1;float:none;width:unset;height:unset;font-size:inherit;margin-right:3px;border:none;padding:0}.mec-search-bar-result .mec-event-title{font-size:13px;padding:0;margin:10px 0 8px;font-weight:700;text-transform:uppercase}.mec-search-bar-result .mec-event-title a{text-decoration:none;color:#494949;transition:color .3s ease}.mec-search-bar-result .mec-event-detail{font-size:13px;line-height:1.3;font-family:Roboto,sans-serif;color:#9a9a9a;margin-bottom:0}.mec-wrap.mec-modern-search-bar .mec-totalcal-box{background:rgba(255,255,255,.87);border:none;padding:35px;border-radius:3px;box-shadow:0 3px 13px rgba(0,0,0,.4);position:relative}.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=search],.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=text]{height:58px;background:rgba(255,255,255,.99);border-radius:2px;box-shadow:0 4px 8px rgba(0,0,0,.1) inset;border:1px solid #ccc;width:100%;padding-left:45px;padding-right:13px;font-size:16px}.mec-wrap.mec-modern-search-bar .mec-totalcal-box .mec-text-input-search i{position:absolute;background:0 0;border:none;font-size:21px;left:15px;top:calc(50% - 19px);color:#40d9f1}.mec-wrap.mec-modern-search-bar .mec-text-input-search{position:relative;height:58px}.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=submit]{height:58px;border:none;border-radius:2px;background:#fc4a1a;font-size:17px;font-weight:700!important}.mec-wrap.mec-modern-search-bar .mec-text-input-search+input#mec-search-bar-input{margin-left:0}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select{height:45px;background:rgba(255,255,255,.99);border-radius:2px;box-shadow:0 4px 8px rgba(0,0,0,.1) inset;border:1px solid #ccc;padding-right:13px;font-size:16px;border-left:0}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap i{height:45px;background:#ffff;border-radius:2px 0 0 2px;box-shadow:none;border:1px solid #ccc;font-size:15px;padding-top:14px;border-right:0;color:#40d9f1;margin-right:-1px}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap{min-height:64px}@media(max-width:768px){.mec-wrap.mec-modern-search-bar .mec-search-form .mec-text-input-search{width:70%}.mec-wrap.mec-modern-search-bar input#mec-search-bar-input{width:calc(100% - 72%)}}@media(max-width:480px){.mec-wrap.mec-modern-search-bar input#mec-search-bar-input{width:92%;padding:0 10px;position:relative;display:block;margin-left:11px}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-text-input-search{width:100%;margin-bottom:20px}.mec-wrap.mec-modern-search-bar .mec-text-input-search+input#mec-search-bar-input{margin-left:10px}}.mec-related-events-wrap{margin-top:50px}.mec-related-events-wrap h3.mec-rec-events-title:before{content:"";background:#2c2f34;width:46px;height:4px;position:absolute;top:59px;left:0}.mec-related-events-wrap h3.mec-rec-events-title{font-size:21px;font-weight:600;padding:17px 0;margin-bottom:28px;text-transform:uppercase;border-bottom:1px solid #e8e8e8;position:relative}.mec-related-event-post figure{margin:0}.mec-related-event-post figure img{width:100%}.mec-related-event-content{background-color:#fff;margin:-27px 30px 15px;position:relative;max-width:90%;padding:13px 21px 16px 19px}.mec-related-event-content h5 a{font-size:16px;color:#121212;font-weight:600;transition:all .3s ease}.mec-fes-form-cntt #mec-organizer-payments ul{list-style:none;background:0 0;margin:0}.mec-fes-form-cntt #mec-organizer-payments ul li h4{background:0 0;letter-spacing:.2px;display:inline-block;padding-left:0!important;padding-bottom:10px!important;margin:0;margin-bottom:1px;letter-spacing:1px;text-transform:capitalize;padding-top:1px}.mec-fes-form-cntt #mec-organizer-payments ul>li{width:100%;display:inline-block;vertical-align:top;padding:0;margin:0}#mec-login-form.mec-login-form{width:100%;background:#fff;padding:20px;margin:0 auto;text-align:center;position:relative}#mec-login-form.mec-login-form .mec-login-input{display:block;width:286px;margin:0 auto;margin-bottom:12px}#mec-login-form.mec-login-form .mec-login-forgotpassword{display:inline-block}.mec-login-forgotpassword a{color:#000}#mec-login-form.mec-login-form .mec-login-submit{float:right;text-align:right;width:49%;padding-right:2px}#mec-login-form.mec-login-form .mec-login-input input{border:none;box-shadow:none;background:#fff;color:#ccc;border-left:1px solid #e6e6e6;padding:0;height:100%;background-image:none!important;padding-left:10px;padding-right:0;width:222px;margin-left:0;clear:none;float:left}#mec-login-form.mec-login-form .mec-login-input label{border:1px solid #e6e6e6;height:52px;display:inline-block;padding:0;border-radius:3px;overflow:hidden;box-shadow:0 2px 4px rgba(0,0,0,.04)}#mec-login-form.mec-login-form .mec-login-input label i{padding:15px 13px 17px 16px;vertical-align:middle;font-size:20px;width:50px;color:#c5cad0;background:#fafafa;margin-right:0;float:left}#mec-login-form.mec-login-form .mec-login-forgotpassword{float:left;width:49%;text-align:left;padding-top:10px;font-size:13px;padding-left:2px}#mec-login-form.mec-login-form button{width:120px;height:44px;border:none;color:#fff;border-radius:3px;font-size:12px;font-weight:700;letter-spacing:1px;text-transform:uppercase;transition:all .22s ease;margin:0;min-width:unset}.mec-login-form button{box-shadow:0 4px 22px -7px #40d9f1;background-color:#40d9f1}#mec-login-form.mec-login-form button:hover{background:#222;box-shadow:0 3px 14px -4px #333}#mec-login-form.mec-login-form .mec-login-form-footer{width:286px;margin:0 auto;margin-top:20px;clear:both;position:relative;display:block;min-height:50px}#mec-login-form.mec-login-form .mec-ajax-login-loading{position:absolute;background:#ffffffc2;left:0;right:0;top:0;bottom:0}#mec-login-form.mec-login-form .lds-ripple{position:absolute;width:64px;height:64px;top:calc(50% - 23px);left:calc(50% - 23px)}#mec-login-form.mec-login-form .lds-ripple div{position:absolute;border:4px solid #40d9f1;opacity:1;border-radius:50%;animation:lds-ripple 1.2s cubic-bezier(0,.2,.1,.8) infinite}#mec-login-form.mec-login-form .lds-ripple div:nth-child(2){animation-delay:-.5s}#mec-login-form.mec-login-form .mec-ajax-login-loading-text{position:absolute;min-width:200px;top:calc(50% - 18px);left:calc(50% - 124px);color:#fff;padding:10px 22px;border-radius:3px;background:#fff;height:47px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text strong{color:#3fcc60}#mec-login-form.mec-login-form .mec-ajax-login-loading-text strong:before{content:"";position:absolute;top:8px;left:1px;border-right:2px solid #3fcc60;border-bottom:2px solid #3acb5c;transform:rotate(45deg);transform-origin:0 100%;color:#000;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards;width:8px;height:14px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong:after{content:"";position:absolute;top:14px;left:5px;border-bottom:2px solid #ff5d39;transform:rotate(45deg);transform-origin:0 100%;color:#000;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards;width:14px;height:4px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong{color:#ff5d39}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong:before{border-color:#ff5d39;border-bottom:none}@keyframes lds-ripple{0%{top:28px;left:28px;width:0;height:0;opacity:1}100%{top:-1px;left:-1px;width:58px;height:58px;opacity:0}}.mec-book-form-gateway-checkout [id*=mec_do_transaction_stripe_] .mec-form-row:first-child{margin-bottom:20px}.mec-events-meta-group-booking .StripeElement{box-sizing:border-box;height:40px;padding:10px 12px;border:1px solid transparent;border-radius:4px;background-color:#fff;box-shadow:0 1px 3px 0 #e6ebf1;-webkit-transition:box-shadow 150ms ease;transition:box-shadow 150ms ease;margin-bottom:20px;background:#fff}.mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text]{box-sizing:border-box;height:40px;padding:10px 12px;border:0!important;border-radius:4px;background-color:#fff;box-shadow:0 1px 3px 0 #e6ebf1!important;-webkit-transition:box-shadow 150ms ease;transition:box-shadow 150ms ease;margin-bottom:20px;background:#fff!important}.mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text]:focus{outline:0}.mec-events-meta-group-booking .StripeElement--focus{box-shadow:0 1px 3px 0 #cfd7df}.mec-events-meta-group-booking .StripeElement--invalid{border-color:#fa755a}.mec-events-meta-group-booking .StripeElement--webkit-autofill{background-color:#fefde5!important}.mec-booking-tab-content .button,.mec-booking-tab-content .mec-reg-field-add-option,.mec-fes-form .mec-form-row .button:not(.wp-color-result),.mec-fes-form input[type=file],ul#mec_reg_form_fields li .mec_reg_field_remove{height:40px;margin-top:1px;text-decoration:none;font-size:14px;line-height:34px!important;margin:0;padding:0 15px 1px!important;text-transform:none;letter-spacing:0;font-weight:600;color:#40d9f1;background:#fff;border-radius:3px;margin-right:8px;border:2px solid #cfeff5;box-shadow:0 2px 6px -3px #cfeff5}.mec-booking-tab-content .button:hover,.mec-booking-tab-content .mec-reg-field-add-option:hover,.mec-fes-form .mec-form-row .button:not(.wp-color-result):hover{background:#40d9f1;color:#fff;border-color:#40d9f1;box-shadow:0 2px 6px -3px #40d9f1}.mec-fes-form .mec-form-row input+button.button{vertical-align:top}.mec-fes-form .mec-form-row .quicktags-toolbar input.button.button-small{border-width:1px;padding:0 7px;color:#80c6d2;font-weight:400;margin:1px;transform:none}.mec-fes-form input[type=file]{max-width:166px;text-align:center;height:44px;transition:all .2s ease;border-radius:5px!important;border:2px dashed #b8e9f3}.mec-fes-form input[type=file]:hover{box-shadow:0 2px 16px -3px #cfeff5}.mec-fes-form input[type=file]::-webkit-file-upload-button{visibility:hidden;width:1px;height:38px}.mec-fes-form input[type=file]::-moz-file-upload-button{visibility:hidden;width:1px;height:38px}.mec-fes-form .mec-meta-box-fields>label{padding:0}#mec_reg_form_fields li{list-style:none}ul#mec_reg_form_fields{padding:0;margin:0}ul#mec_reg_form_fields li{background:#f8feff;margin:6px -20px;padding:15px 25px 10px;width:auto;font-size:13px;border-top:1px solid #e8fafd;border-bottom:1px solid #e8fafd;position:relative}ul#mec_reg_form_fields li .mec_reg_field_remove{position:absolute;right:10px;top:10px;margin:0;padding:6px 8px!important;font-size:11px;line-height:12px!important;min-height:10px;height:auto;display:block;cursor:pointer;color:#ea6485;border-color:#ffd2dd;letter-spacing:.4px}ul#mec_reg_form_fields li .mec_reg_field_remove:hover{background:#ea6485;color:#fff;border-color:#ea6485;box-shadow:0 2px 6px -3px #ea6485}#mec_reg_form_fields input[type=checkbox],#mec_reg_form_fields input[type=radio],.mec-form-row input[type=checkbox],.mec-form-row input[type=radio]{background-color:#fff;border:1px solid #cfeff5;box-shadow:0 1px 3px -1px #cfeff5;padding:9px;border-radius:3px;min-width:24px;min-height:24px;display:inline-block!important;vertical-align:middle;float:none;transition:all .18s ease;outline:0;margin:1px 4px 4px 0;text-align:left;cursor:pointer;-webkit-appearance:none;-moz-appearance:none}#mec_reg_form_fields input[type=checkbox]:focus,#mec_reg_form_fields input[type=radio]:focus,.mec-form-row input[type=checkbox]:focus,.mec-form-row input[type=radio]:focus{outline:0}#mec_reg_form_fields input[type=radio],.mec-form-row input[type=radio]{-webkit-appearance:none;border-radius:20px!important;min-width:20px;min-height:20px;margin:0 0 4px 0;vertical-align:middle}#mec_reg_form_fields input[type=checkbox]:hover,#mec_reg_form_fields input[type=radio]:hover,.mec-form-row input[type=checkbox]:hover,.mec-form-row input[type=radio]:hover{border-color:#40d9f1}#mec_reg_form_fields input[type=checkbox]:checked,#mec_reg_form_fields input[type=radio]:checked,.mec-fes-form .mec-form-row input[type=checkbox]:checked,.mec-fes-form .mec-form-row input[type=radio]:checked{box-shadow:0 1px 6px -2px #40d9f1;border-color:#40d9f1;background:#40d9f1!important;border-radius:2px;position:relative}.mec-form-row input[type=radio]:checked{box-shadow:0 1px 6px -2px #40d9f1,inset 0 0 0 3px #fff!important}#mec_reg_form_fields input[type=checkbox]:checked::before,.mec-form-row input[type=checkbox]:checked:before{content:"";font:normal;position:absolute;top:12px;left:5px;margin:0;vertical-align:middle;line-height:1;border-right:2px solid #fff!important;border-bottom:2px solid #fff!important;transform:rotate(45deg);transform-origin:0 100%;color:#fff;transition:all .2s ease;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards}@keyframes checkbox-check{0%{width:0;height:0;border-color:#fff;transform:translate3d(0,0,0) rotate(45deg)}33%{width:6px;height:0;transform:translate3d(0,0,0) rotate(45deg)}100%{width:6px;height:12px;border-color:#fff;transform:translate3d(0,-12px,0) rotate(45deg)}}#mec_reg_form_field_types .button{position:relative;outline:0;border-radius:50px;padding:2px 21px 2px 31px!important;line-height:1;font-size:11px;font-weight:600;color:#40d9f1;letter-spacing:2px;height:auto;cursor:pointer;margin-top:5px;text-transform:uppercase;box-shadow:0 2px 6px -3px #40d9f1;border:2px solid #cfeff5}#mec_fes_location_remove_image_button,#mec_fes_organizer_remove_image_button,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button,#mec_meta_box_tickets_form [id^=mec_ticket_row] button,#mec_reg_form_field_types .button.red{color:#ea6485;box-shadow:0 2px 6px -3px #ea6485;background:#fff;border-color:#ffd2dd}#mec_fes_location_remove_image_button:hover,#mec_fes_organizer_remove_image_button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button:hover,#mec_meta_box_tickets_form [id^=mec_ticket_row] button:hover,#mec_reg_form_field_types .button.red:hover{background:#ea6485;color:#fff}#mec_reg_form_field_types .button:before{position:absolute;left:12px;color:#40d9f1;content:"\e095";font-family:simple-line-icons;font-size:13px;display:inline-block}#mec_reg_form_field_types .button.red:before{color:#ea6485}#mec_reg_form_field_types .button.red:hover:before,#mec_reg_form_field_types .button:hover:before{color:#fff}#mec_fes_location_remove_image_button:hover,#mec_fes_organizer_remove_image_button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button:hover,#mec_meta_box_tickets_form [id^=mec_ticket_row] button:hover,#mec_price_per_dates_container .button:hover,#mec_reg_form_field_types .button.red:hover{color:#fff;border:2px solid #ea6485}#mec_taxes_fees_container_toggle [id^=mec_remove_fee_button],#mec_ticket_variations_list [id^=mec_remove_ticket_variation_button]{color:#ea6485;border-color:#ffd2dd}#mec_taxes_fees_container_toggle [id^=mec_remove_fee_button]:hover,#mec_ticket_variations_list [id^=mec_remove_ticket_variation_button]:hover{color:#fff;border:2px solid #ea6485;background:#ea6485}#mec_fees_list [id^=mec_remove_fee_button],#mec_meta_box_ticket_variations_form .mec-form-row [id^=mec_remove_ticket_variation_button]{margin-left:14px!important}#mec_meta_box_hourly_schedule_days .mec-add-hourly-schedule-button{line-height:10px!important}#mec_meta_box_tickets_form [id^=mec_ticket_row] .mec_add_price_date_button{color:#40d9f1;box-shadow:0 2px 6px -3px #40d9f1;border:2px solid #cfeff5}#mec_meta_box_tickets_form [id^=mec_ticket_row] .mec_add_price_date_button:hover,#mec_reg_form_field_types .button:hover{color:#fff;border:2px solid #40d9f1;background:#40d9f1}.mec-form-row input+span.mec-tooltip,.mec-form-row select+span.mec-tooltip{bottom:10px}.mec-form-row label+span.mec-tooltip{bottom:8px}.mec-form-row textarea+span.mec-tooltip{bottom:auto;vertical-align:top;top:12px}.mec-form-row span+span.mec-tooltip{bottom:0;vertical-align:middle}.mec-form-row .mec-col-8 input[type=text],.mec-form-row .mec-col-8 select,.mec-form-row .mec-col-8 span.mec-archive-skins{vertical-align:top}.mec-form-row input:disabled{opacity:.6;background:#f6f6f6}.mec-form-row p{font-size:12px!important;line-height:18px!important;color:#97b2bb!important}.mec-form-row p.description{font-style:italic}.ui-datepicker.ui-widget{border:1px solid #e8e8e8;box-shadow:0 1px 9px rgba(0,0,0,.12);font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif}table.ui-datepicker-calendar{margin-bottom:0}.ui-datepicker-calendar th{font-weight:700;color:#4a4b4c}.ui-datepicker-calendar td,.ui-datepicker-calendar th,.ui-datepicker-calendar tr{border:none}.ui-datepicker.ui-widget select{font-weight:600;font-size:12px;display:inline-block;border-radius:2px;padding:2px 10px;margin:5px 3px;width:auto;min-height:20px;height:26px;border:1px solid #e3e3e3;box-shadow:inset 0 1px 3px rgba(0,0,0,.04)}.ui-datepicker.ui-widget table{border-spacing:2px;border:none}.ui-datepicker.ui-widget td,.ui-datepicker.ui-widget tr{padding:0;background:0 0!important}.ui-datepicker.ui-widget td a{color:#9a9b9c;font-weight:600;width:30px;height:30px;line-height:30px;display:inline-block;border-radius:33px;padding:0;background:#fff;transition:all .2s ease}.ui-datepicker.ui-widget td a.ui-state-active,.ui-datepicker.ui-widget td a:hover{background:#40d9f1;color:#fff}.ui-datepicker.ui-widget .ui-datepicker-next,.ui-datepicker.ui-widget .ui-datepicker-prev{color:#40d9f1;width:30px;height:30px;line-height:30px;display:inline-block;text-align:center;border-radius:33px;background:#ecfcff;transition:all .2s ease}.ui-datepicker.ui-widget .ui-datepicker-next:hover,.ui-datepicker.ui-widget .ui-datepicker-prev:hover{background:#fff;box-shadow:0 0 7px -3px rgba(0,0,0,.4)}.mec-fes-form .mec-tooltip .dashicons-before:before{color:#40d9f1}.mec-fes-form button[type=submit].mec-fes-sub-button{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;border-radius:3px;background:#40d9f1;color:#fff;height:54px;font-size:17px;font-weight:700;box-shadow:0 2px 8px -4px #40d9f1;display:block;transition:all .28s ease;text-transform:uppercase;margin:20px 0 0;padding:14px 20px;border:0;cursor:pointer;text-align:center;letter-spacing:.1em;line-height:1}.mec-fes-form button[type=submit].mec-fes-sub-button:hover{box-shadow:0 2px 12px -2px #40d9f1}.mec-fes-form button[type=submit].mec-fes-sub-button:focus{margin-bottom:-2px;background:#1dc2dc}.mec-fes-form .mec-title span.mec-dashicons{color:#40d9f1;float:left;margin-right:5px}.mec-fes-form .mec-tooltip .box h5{padding:14px 2px}#mec_fes_form,.mec-fes-form-top-actions{max-width:838px;margin:0 auto}@media only screen and (min-width:961px){.mec-fes-form .mec-fes-form-cntt{width:calc(100% - 300px);float:left;padding-right:20px;max-width:538px;display:block}.mec-fes-form .mec-fes-form-sdbr{width:300px}}.mec-fes-form .quicktags-toolbar,.mec-fes-form div.mce-toolbar-grp{background:#ecfcff;border-bottom:1px solid #cfeff5;box-shadow:0 1px 0 1px #cfeff5}.mec-fes-form .quicktags-toolbar{margin-right:-1px;border-top:1px solid #cfeff5}.mec-fes-form div.mce-statusbar{border-top-color:#cfeff5}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-listbox{border:1px solid #cfeff5;border-radius:3px}.mec-fes-form .mce-tinymce.mce-container.mce-panel{border:1px solid #cfeff5;box-shadow:0 2px 6px -3px #cfeff5;border-radius:2px 0 2px 2px}.mec-fes-form .wp-editor-tools .wp-media-buttons{transform:translateY(-6px);margin-top:-6px}.mec-fes-form .wp-editor-tabs{padding-right:0;margin-right:-2px}.mec-fes-form .wp-editor-tabs .wp-switch-editor{border-radius:3px 3px 0 0;border-color:#cfeff5;background:#fff;color:#96b8bd;border-bottom:1px solid #ecfcff}.mec-fes-form .html-active .switch-html,.mec-fes-form .tmce-active .switch-tmce,.mec-fes-form .wp-editor-tabs .wp-switch-editor:active{background:#ecfcff;color:#40d9f1}.mec-fes-form .wp-editor-container,.mec-fes-form div.mce-edit-area.mce-panel{border:none;box-shadow:none}.mec-fes-form .wp-editor-container textarea.wp-editor-area{max-width:100%}.mec-fes-form .mce-toolbar .mce-listbox button{font-size:12px;line-height:22px;color:#798f96}.mec-fes-form .mce-toolbar .mce-ico{color:#627f88}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-active,.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn:active,.mec-fes-form .qt-dfw.active{background:#fff;border-color:#40d9f1;box-shadow:inset 0 2px 6px -3px rgba(106,231,255,.7)}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-active .mce-ico{color:#40d9f1}body .mce-menu .mce-menu-item.mce-active.mce-menu-item-normal,body .mce-menu .mce-menu-item.mce-selected,body .mce-menu .mce-menu-item:focus,body .mce-menu .mce-menu-item:hover,body.mce-menu .mce-menu-item.mce-active.mce-menu-item-preview{background:#40d9f1;color:#fff}.mec-fes-form .mec-not-in-days-day{display:inline-block;padding:4px 32px 4px 15px;border-radius:33px;border:1px solid #cfeff5;box-shadow:0 1px 3px -1px #cfeff5;background:#fbfeff;color:#40d9f1;vertical-align:top}.mec-fes-form .mec-not-in-days-remove{display:inline-block;padding:0 1px 0 0;margin-left:-30px;vertical-align:sub;background:#ff918a;color:#fff;font-family:cursive;width:21px;height:21px;line-height:17px;text-align:center;border-radius:20px;cursor:pointer}.mec-fes-list ul li .mec-event-status{float:left;margin-right:10px;margin-left:0;font-size:11px;font-weight:400;letter-spacing:.3px;border-radius:3px;padding:4px 8px}.mec-fes-form .post-status.mec-book-confirmed:before,.mec-fes-list ul li .mec-event-status.mec-book-confirmed:before{content:"";margin:0;vertical-align:middle;line-height:1;border-right:2px solid #fff!important;border-bottom:2px solid #fff!important;transform:rotate(45deg);color:#fff;width:6px;height:12px;float:left;margin-right:6px}.mec-fes-list ul li .mec-fes-event-export a:before,.mec-fes-list ul li .mec-fes-event-remove:before,.mec-fes-list ul li .mec-fes-event-view a:before,.mec-fes-list-top-actions a:before{content:"\e054";font-family:simple-line-icons;font-size:13px;vertical-align:middle}.mec-fes-list ul li .mec-fes-event-view a:before{content:"\e087"}.mec-fes-list-top-actions a:before{content:"\e095";font-weight:400;margin-right:6px}.mec-fes-list ul li .mec-fes-event-export a:before{content:"\e083"}.mec-fes-form .post-status{border-radius:20px}.mec-fes-form .post-status.mec-book-confirmed:before{height:20px;width:9px;margin:3px 10px}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker-calendar th{height:auto;padding:0}.ui-datepicker .ui-datepicker-calendar td a,.ui-datepicker-calendar th{font-size:14px;line-height:30px}.mec-fes-form .description{font-size:16px}.mec-fes-form input[type=file]{text-align:left}.mec-fes-export-wrapper{width:640px;background:#f8feff;padding:40px 25px}.mec-fes-export-wrapper .mec-fes-btn-date{font-size:16px;line-height:44px;overflow:hidden}.mec-fes-export-wrapper .date-messgae{font-family:sans-serif;padding:2px 18px}.mec-fes-list ul li .mec-event-export-csv,.mec-fes-list ul li .mec-event-export-excel{font-size:12px;border:1px solid #40d9f1;padding:1px 4px;background:rgba(141,229,243,.18);border-radius:4px;color:#40d9f1;font-family:sans-serif;cursor:pointer;display:inline-block;height:26px;line-height:22px}.mec-export-badge{font-size:11px;color:#40d9f1;width:auto;height:24px;line-height:25px;display:inline-block;padding:0 8px;text-align:center;border-radius:3px;background:#ecfcff;transition:all .2s ease}.mec-fes-list ul li .mec-fes-event-export{font-size:11px;background:#f7f7f7;float:right;margin-left:5px}.mec-fes-list ul li .mec-fes-event-export:hover{cursor:pointer;background:#90f0e0;border-color:#4dc8cc}.mec-fes-export-wrapper ul{padding:0;width:100%;text-align:center}.mec-fes-export-wrapper ul li{list-style:none;display:inline-block;width:30%;padding:10px 15px 10px 32px;border-radius:3px;margin-bottom:15px;border:1px solid #cfeff5;box-shadow:0 2px 6px -4px #cfeff5;background:#fff;line-height:normal;margin-right:10px;position:relative;cursor:pointer;font-size:13px;line-height:1;transition:all .2s ease}.mec-fes-export-wrapper ul li:nth-child(3n+0){margin-right:0}.mec-fes-export-wrapper ul li:hover{box-shadow:0 2px 16px -1px #c6e8ef}.mec-fes-export-wrapper ul li:before{content:"";position:absolute;display:inline-block;background:#fff;width:15px;height:15px;margin:-1px 0 0 5px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32);border-radius:50%;left:9px;top:calc(50% - 7px)}.mec-fes-export-wrapper ul li.fes-export-date-active{color:#40d9f1}.mec-fes-export-wrapper ul li.fes-export-date-active:before{width:15px;height:15px;border:6px solid #40d9f1;background:#fff;box-shadow:0 3px 16px -3px #40d9f1}.mec-fes-btn-export{margin-left:15px;margin-top:12px}.mec-fes-btn-export span{position:relative;border:none;border-radius:3px;color:#fff!important;display:inline-block;font-size:13px;line-height:1;text-transform:none;font-weight:400;text-decoration:none;cursor:pointer;margin-right:4px;line-height:1;letter-spacing:0;padding:15px 22px;background:#39c36e;box-shadow:0 1px 7px -3px #39c36e!important;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;cursor:pointer;margin-left:6px}.mec-fes-btn-export span:hover{background:#222}.mec-event-export-excel:before,span.mec-event-export-csv:before{content:"\e083";font-family:simple-line-icons;font-size:13px;vertical-align:middle;margin-right:7px;margin-top:-1px;display:inline-block}.mec-fes-list .wn-p-t-right{min-width:170px;max-width:200px;display:inline-block;top:-8px;left:50%;margin-top:0;transform:translate(-50%,-100%);padding:0;background-color:#000;color:#fff;font-weight:400;font-size:14px;letter-spacing:.5px;line-height:1.5;position:absolute;z-index:99999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #535a61;visibility:hidden;opacity:0;transition:opacity .23s;padding:5px 10px 6px;border-radius:8px;text-align:center;font-style:normal}.mec-fes-list .mec-fes-event-export:hover .wn-p-t-right,.mec-fes-list .mec-fes-event-remove:hover .wn-p-t-right,.mec-fes-list .mec-fes-event-view:hover .wn-p-t-right{visibility:visible;opacity:1}.mec-fes-list .wn-p-t-right i{position:absolute!important;top:100%;right:50%;margin-top:-6px!important;margin-right:-6px!important;width:12px;height:24px;overflow:hidden;transform:rotate(-90deg)}.mec-fes-list .wn-p-t-right i:after{content:'';position:absolute;width:12px;height:12px;left:0;top:50%;transform:translate(50%,-50%) rotate(-45deg);background-color:#000;box-shadow:0 8px 9px -4px #535a61}.mec-fes-form .select2-container{min-height:38px;box-sizing:border-box;margin-bottom:8px;padding:0 6px;border-radius:2px;border:1px solid #ddd;box-shadow:inset 0 1px 6px rgba(0,0,0,.07);background-color:#fff;color:#32373c;outline:0;transition:50ms border-color ease-in-out;min-width:200px;font-size:14px}.mec-fes-form .select2-selection{border:none;background:0 0;padding-top:2px;width:100%;height:100%}.mec-fes-form .select2-container--default.select2-container--focus .select2-selection{border:none!important;outline:0}.mec-fes-form .select2-container--default .select2-selection--single .select2-selection__arrow{top:5px;right:4px}.select2-results{font-size:14px}.mec-fes-category-children,.mec-fes-category-children .mec-fes-category-children{padding-left:24px}.mec-wrap .mec-timeline-events-container a,.mec-wrap .mec-timeline-events-container div,.mec-wrap .mec-timeline-events-container h4,.mec-wrap .mec-timeline-events-container p,.mec-wrap .mec-timeline-events-container span{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important}.mec-timeline-events-container{margin-left:19px;padding-top:20px;padding-bottom:9px}.mec-events-timeline-wrap{position:relative;display:block;overflow:visible;padding-left:95px}.mec-events-timeline-wrap:before{width:1px;content:'';height:100%;position:absolute;background:#dedede;left:95px}.mec-timeline-month-divider+.mec-timeline-events-container{padding-top:110px}.mec-timeline-right-content{float:right;width:300px}.mec-timeline-left-content{float:left;width:calc(100% - 300px);padding-left:15px;padding-right:15px}.mec-timeline-month-divider{position:absolute;display:block;background:#fff;right:calc(100% - 95px);left:0;width:190px;text-align:center;border:1px solid #dedede;border-radius:50px;font-size:15px;padding:12px 27px}.mec-timeline-event-date{position:relative}.mec-timeline-events-container .mec-timeline-event-date:before{content:'';width:10px;height:10px;position:absolute;background:#40d9f1;border-radius:50px;top:8px;left:-23px;z-index:99}.mec-timeline-events-container .mec-timeline-event-date:after{content:'';width:20px;height:20px;position:absolute;background:rgba(64,217,241,.3);border-radius:50px;top:3px;left:-28px}.mec-timeline-event-date{float:left;width:17%;margin-top:27px}.mec-timeline-event-content{float:left;width:82%;background:#fff;box-shadow:0 10px 30px 0 rgba(0,0,0,.1);border-radius:10px;overflow:visible;position:relative}.mec-timeline-main-content{padding:23px 30px}.mec-timeline-main-content h4{margin-bottom:15px}.mec-timeline-main-content h4 a{font-size:25px;font-weight:700;color:#000;line-height:33px;text-decoration:none}.mec-timeline-main-content p{font-size:15px;color:#515151;line-height:24px;margin-bottom:36px}a.mec-timeline-readmore{width:100%;display:block;text-align:center;color:#fff;text-decoration:none;line-height:52px;font-size:17px;font-weight:700;-webkit-transition:all .2s ease;transition:all .2s ease;border-radius:0 0 10px 10px}a.mec-timeline-readmore:hover{background:#222;color:#fff}.mec-timeline-event-time .mec-time-details{display:inline-block;margin-left:7px;font-size:13px;line-height:13px;font-weight:500}.mec-timeline-event-time i{vertical-align:middle}.mec-timeline-event-time{background:rgba(64,217,241,.11);display:inline-block;padding:4px 20px 8px;border-radius:50px}.mec-timeline-event-location address{font-style:normal;margin-bottom:0}.mec-timeline-event-location address span{font-size:13px;font-weight:500;vertical-align:middle;margin-left:6px}.mec-timeline-event-location address i{font-size:17px;vertical-align:middle}.mec-timeline-event-location{background:rgba(64,217,241,.11);display:inline-block;padding:7px 20px 11px;border-radius:20px;line-height:1.24}.mec-timeline-event-details+.mec-timeline-event-details{margin-top:12px}.mec-timeline-event-content .col-md-4{padding:0}.mec-timeline-event-content:after{content:'';display:block;position:absolute;left:50%;margin-left:-10px;width:0;height:0;border-style:solid;border-width:10px}.mec-timeline-event-content:after{top:30px;border-color:transparent #fff transparent transparent;left:-10px}.mec-timeline-event-image img{border-radius:0 10px 0 0;width:100%}.mec-timeline-event-image a{display:block;line-height:0}a.mec-timeline-readmore i{vertical-align:middle;margin-left:10px;font-size:9px}.mec-wrap .mec-timeline-event-content a.mec-timeline-readmore:hover{background:#444}@media(min-width:1024px){.mec-past-event.mec-timeline-event{margin:50px 0}}@media(max-width:1023px){.mec-past-event.mec-timeline-event{margin:25px 0}.mec-events-timeline-wrap{padding-left:20px}.mec-events-timeline-wrap:before{left:20px}}@media (max-width:1200px) and (min-width:992px){.mec-timeline-event-content{width:81%}.mec-timeline-event-date{width:18%}}@media (max-width:992px){.mec-timeline-left-content,.mec-timeline-right-content{float:none;width:100%;text-align:center}.mec-timeline-right-content .mec-timeline-event-image{text-align:center}.mec-timeline-right-content .mec-timeline-event-image img{max-width:300px;border-radius:10px;margin-top:35px}}@media (max-width:440px){.mec-timeline-right-content .mec-timeline-event-image img{margin-top:0}}@media (max-width:320px){.mec-timeline-event-content,.mec-timeline-event-date{float:none;width:100%}.mec-timeline-event-date{margin-bottom:8px}.mec-timeline-event-content:after{display:none}.mec-timeline-main-content{padding:23px 0}.mec-timeline-main-content p{font-size:13px}.mec-timeline-main-content h4 a{font-size:23px;line-height:24px}.mec-time-details span{font-size:11px}.mec-timeline-event-location address span{font-size:12px}a.mec-timeline-readmore{line-height:44px;font-size:14px}}.mec-event-tile-view article.mec-tile-item{height:400px;margin:15px 0;border-radius:22px;padding:35px 25px;position:relative;color:#fff;background-size:cover!important;background-position:center!important;box-shadow:0 2px 9px rgba(0,0,0,.25);transition:all .22s ease}.mec-event-tile-view article.mec-tile-item:hover{box-shadow:0 4px 19px rgba(0,0,0,.5)}.mec-event-tile-view article.mec-tile-item div{position:relative;z-index:3}.mec-event-tile-view article.mec-tile-item:after,.mec-event-tile-view article.mec-tile-item:before{position:absolute;background:-moz-linear-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);background:-webkit-gradient(left top,right top,color-stop(0,rgba(0,0,0,.35)),color-stop(65%,rgba(0,0,0,.48)),color-stop(100%,rgba(0,0,0,.72)));background:-webkit-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);background:linear-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);content:"";left:0;right:0;bottom:0;top:0;width:100%;height:100%;display:block;border-radius:22px;z-index:1}.mec-event-tile-view article.mec-tile-item:after{background-color:inherit;background-image:none;top:35px;bottom:auto;height:40px;border-radius:0 3px 3px 0;width:97px;z-index:2;box-shadow:2px 1px 7px rgba(0,0,0,.1)}.mec-event-tile-view article.mec-tile-item .event-tile-view-head{padding:8px 3px;font-size:16px;font-weight:700;margin-bottom:50px;text-transform:uppercase}.mec-event-tile-view article.mec-tile-item .mec-event-time{color:#d6d6d6;font-size:15px;font-weight:400;line-height:1;padding-top:4px;position:absolute;right:1px;top:10px}.mec-event-tile-view article.mec-tile-item .mec-event-time i{vertical-align:baseline;font-size:14px;float:left}.mec-event-tile-view article.mec-tile-item i{margin-right:5px}.mec-event-tile-view article.mec-tile-item .mec-event-title{color:#fff;font-weight:700;font-size:23px;padding-top:12px}.mec-event-tile-view article.mec-tile-item .mec-event-title a{color:#fff}.mec-event-tile-view article.mec-tile-item .mec-event-title a:hover{text-decoration:underline}.mec-event-tile-view article.mec-tile-item .mec-event-content{position:absolute;bottom:25px;left:25px;right:25px}.mec-skin-tile-month-navigator-container{position:relative;text-align:center;font-size:12px;height:80px;background:#f7f7f7;padding:28px;border-radius:11px;margin-bottom:20px}.mec-skin-tile-month-navigator-container:after,.mec-skin-tile-month-navigator-container:before{content:'';display:block;position:absolute;left:50%;margin-left:-10px;width:0;height:0;border-style:solid;border-width:10px}.mec-skin-tile-month-navigator-container:after{bottom:-20px;border-color:#f7f7f7 transparent transparent transparent}.mec-skin-tile-month-navigator-container:before{bottom:-21px;border-color:#fff transparent transparent transparent}@media only screen and (max-width:480px){.mec-skin-tile-month-navigator-container{height:110px;padding-top:68px}}.mec-skin-tile-month-navigator-container h2{font-size:23px;font-weight:700}.mec-skin-tile-month-navigator-container .mec-next-month,.mec-skin-tile-month-navigator-container .mec-previous-month{position:absolute;top:28px;left:20px;cursor:pointer;padding:3px 12px;line-height:23px;background:#fff;border-radius:32px;box-shadow:0 1px 3px rgba(0,0,0,.02);transition:all .22s ease}.mec-skin-tile-month-navigator-container .mec-next-month{left:auto;right:20px}.mec-skin-tile-month-navigator-container .mec-next-month:hover,.mec-skin-tile-month-navigator-container .mec-previous-month:hover{box-shadow:0 2px 5px rgba(0,0,0,.1);color:#000}.mec-wrap .mec-event-tile-view article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view article.mec-label-featured:before{position:absolute;bottom:auto;text-align:center;right:auto;font-size:10px}.mec-wrap .mec-event-tile-view .col-md-3 article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view .col-md-3 article.mec-label-featured:before{top:12px;left:103px}.mec-wrap .mec-event-tile-view .col-md-4 article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view .col-md-4 article.mec-label-featured:before{top:18px;left:125px}.mec-wrap .mec-event-tile-view .col-md-6 article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view .col-md-6 article.mec-label-featured:before{top:20px;left:200px}.mec-wrap .mec-label-normal{display:none}
|
@@ -95,6 +95,14 @@ var mecSingleEventDisplayer = {
|
|
95 |
search();
|
96 |
});
|
97 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
98 |
function search() {
|
99 |
var s = $("#mec_sf_s_" + settings.id).length ? $("#mec_sf_s_" + settings.id).val() : '';
|
100 |
var category = $("#mec_sf_category_" + settings.id).length ? $("#mec_sf_category_" + settings.id).val() : '';
|
@@ -108,341 +116,24 @@ var mecSingleEventDisplayer = {
|
|
108 |
var event_type = $("#mec_sf_event_type_" + settings.id).length ? $("#mec_sf_event_type_" + settings.id).val() : '';
|
109 |
var event_type_2 = $("#mec_sf_event_type_2_" + settings.id).length ? $("#mec_sf_event_type_2_" + settings.id).val() : '';
|
110 |
|
111 |
-
if(year === 'none' && month === 'none')
|
112 |
-
{
|
113 |
year = '';
|
114 |
month = '';
|
115 |
}
|
116 |
|
117 |
-
var
|
118 |
-
settings.callback(atts);
|
119 |
-
}
|
120 |
-
};
|
121 |
-
|
122 |
-
}(jQuery));
|
123 |
-
|
124 |
-
// MEC GOOGLE MAPS PLUGIN
|
125 |
-
(function ($) {
|
126 |
-
$.fn.mecGoogleMaps = function (options) {
|
127 |
-
// Default Options
|
128 |
-
var settings = $.extend({
|
129 |
-
// These are the defaults.
|
130 |
-
latitude: 0,
|
131 |
-
longitude: 0,
|
132 |
-
autoinit: true,
|
133 |
-
zoom: 14,
|
134 |
-
icon: '../img/m-01.png',
|
135 |
-
markers: {},
|
136 |
-
sf: {},
|
137 |
-
HTML5geolocation: 0,
|
138 |
-
getDirection: 0,
|
139 |
-
directionOptions: {
|
140 |
-
form: '#mec_get_direction_form',
|
141 |
-
reset: '.mec-map-get-direction-reset',
|
142 |
-
addr: '#mec_get_direction_addr',
|
143 |
-
destination: {},
|
144 |
-
},
|
145 |
-
}, options);
|
146 |
-
|
147 |
-
var bounds;
|
148 |
-
var map;
|
149 |
-
var infowindow;
|
150 |
-
var loadedMarkers = new Array();
|
151 |
-
var markerCluster;
|
152 |
-
|
153 |
-
var canvas = this;
|
154 |
-
var DOM = canvas[0];
|
155 |
-
|
156 |
-
// Init the Map
|
157 |
-
if (settings.autoinit) init();
|
158 |
-
|
159 |
-
function init() {
|
160 |
-
// Search Widget
|
161 |
-
if (settings.sf.container !== '') {
|
162 |
-
$(settings.sf.container).mecSearchForm({
|
163 |
-
id: settings.id,
|
164 |
-
atts: settings.atts,
|
165 |
-
callback: function (atts) {
|
166 |
-
settings.atts = atts;
|
167 |
-
getMarkers();
|
168 |
-
}
|
169 |
-
});
|
170 |
-
}
|
171 |
-
|
172 |
-
// Create the options
|
173 |
-
bounds = new google.maps.LatLngBounds();
|
174 |
-
var center = new google.maps.LatLng(settings.latitude, settings.longitude);
|
175 |
-
|
176 |
-
var mapOptions = {
|
177 |
-
scrollwheel: false,
|
178 |
-
mapTypeId: google.maps.MapTypeId.ROADMAP,
|
179 |
-
center: center,
|
180 |
-
zoom: settings.zoom,
|
181 |
-
styles: settings.styles,
|
182 |
-
};
|
183 |
-
|
184 |
-
// Init map
|
185 |
-
map = new google.maps.Map(DOM, mapOptions);
|
186 |
-
|
187 |
-
// Init Infowindow
|
188 |
-
infowindow = new google.maps.InfoWindow({
|
189 |
-
pixelOffset: new google.maps.Size(0, -37)
|
190 |
-
});
|
191 |
-
|
192 |
-
// Load Markers
|
193 |
-
loadMarkers(settings.markers);
|
194 |
-
|
195 |
-
var clusterCalculator = function (markers, numStyles) {
|
196 |
-
var weight = 0;
|
197 |
-
|
198 |
-
for (var i = 0; i < markers.length; ++i) {
|
199 |
-
weight += markers[i].weight;
|
200 |
-
}
|
201 |
-
|
202 |
-
return {
|
203 |
-
text: weight,
|
204 |
-
index: Math.min(String(weight).length, numStyles)
|
205 |
-
};
|
206 |
-
};
|
207 |
-
|
208 |
-
markerClusterOptions = {
|
209 |
-
styles: [{
|
210 |
-
height: 53,
|
211 |
-
url: settings.clustering_images + '1.png',
|
212 |
-
width: 53,
|
213 |
-
textColor: '#fff'
|
214 |
-
},
|
215 |
-
{
|
216 |
-
height: 56,
|
217 |
-
url: settings.clustering_images + '2.png',
|
218 |
-
width: 56,
|
219 |
-
textColor: '#000'
|
220 |
-
},
|
221 |
-
{
|
222 |
-
height: 66,
|
223 |
-
url: settings.clustering_images + '3.png',
|
224 |
-
width: 66,
|
225 |
-
textColor: '#fff'
|
226 |
-
},
|
227 |
-
{
|
228 |
-
height: 78,
|
229 |
-
url: settings.clustering_images + '4.png',
|
230 |
-
width: 78,
|
231 |
-
textColor: '#fff'
|
232 |
-
},
|
233 |
-
{
|
234 |
-
height: 90,
|
235 |
-
url: settings.clustering_images + '5.png',
|
236 |
-
width: 90,
|
237 |
-
textColor: '#fff'
|
238 |
-
}
|
239 |
-
]
|
240 |
-
}
|
241 |
-
|
242 |
-
markerCluster = new MarkerClusterer(map, null, markerClusterOptions);
|
243 |
-
|
244 |
-
markerCluster.setCalculator(clusterCalculator);
|
245 |
-
markerCluster.addMarkers(loadedMarkers);
|
246 |
-
|
247 |
-
// Initialize get direction feature
|
248 |
-
if (settings.getDirection === 1) initSimpleGetDirection();
|
249 |
-
else if (settings.getDirection === 2) initAdvancedGetDirection();
|
250 |
-
|
251 |
-
// Geolocation
|
252 |
-
if ((settings.HTML5geolocation || (options.geolocation !== 'undefined' && options.geolocation == true)) && navigator.geolocation) {
|
253 |
-
navigator.geolocation.getCurrentPosition(function (position) {
|
254 |
-
var center = new google.maps.LatLng(position.coords.latitude, position.coords.longitude);
|
255 |
-
var zoom = map.getZoom();
|
256 |
-
|
257 |
-
if (zoom <= 6) zoom = zoom + 5;
|
258 |
-
else if (zoom <= 10) zoom = zoom + 3;
|
259 |
-
else if (zoom <= 14) zoom = zoom + 2;
|
260 |
-
else if (zoom <= 18) zoom = zoom + 1;
|
261 |
-
|
262 |
-
map.panTo(center);
|
263 |
-
map.setZoom(zoom);
|
264 |
-
});
|
265 |
-
}
|
266 |
-
}
|
267 |
-
|
268 |
-
function loadMarkers(markers) {
|
269 |
-
var f = 0;
|
270 |
-
for (var i in markers) {
|
271 |
-
f++;
|
272 |
-
var dataMarker = markers[i];
|
273 |
-
|
274 |
-
var marker = new RichMarker({
|
275 |
-
position: new google.maps.LatLng(dataMarker.latitude, dataMarker.longitude),
|
276 |
-
map: map,
|
277 |
-
event_ids: dataMarker.event_ids,
|
278 |
-
infowindow: dataMarker.infowindow,
|
279 |
-
lightbox: dataMarker.lightbox,
|
280 |
-
icon: (dataMarker.icon ? dataMarker.icon : settings.icon),
|
281 |
-
content: '<div class="mec-marker-container"><span class="mec-marker-wrap"><span class="mec-marker">' + dataMarker.count + '</span><span class="mec-marker-pulse-wrap"><span class="mec-marker-pulse"></span></span></span></div>',
|
282 |
-
shadow: 'none',
|
283 |
-
weight: dataMarker.count
|
284 |
-
});
|
285 |
-
|
286 |
-
// Marker Info-Window
|
287 |
-
if (Math.max(document.documentElement.clientWidth, window.innerWidth || 0) > 960) {
|
288 |
-
google.maps.event.addListener(marker, 'mouseover', function (event) {
|
289 |
-
infowindow.close();
|
290 |
-
infowindow.setContent(this.infowindow);
|
291 |
-
infowindow.open(map, this);
|
292 |
-
});
|
293 |
-
|
294 |
-
// Marker Lightbox
|
295 |
-
google.maps.event.addListener(marker, 'click', function (event) {
|
296 |
-
lity(this.lightbox);
|
297 |
-
});
|
298 |
-
} else if (Math.max(document.documentElement.clientWidth, window.innerWidth || 0) <= 960){
|
299 |
-
google.maps.event.addListener(marker, 'click', function (event) {
|
300 |
-
infowindow.close();
|
301 |
-
infowindow.setContent(this.infowindow);
|
302 |
-
infowindow.open(map, this);
|
303 |
-
lity(this.lightbox);
|
304 |
-
});
|
305 |
-
}
|
306 |
-
|
307 |
-
// extend the bounds to include each marker's position
|
308 |
-
bounds.extend(marker.position);
|
309 |
-
|
310 |
-
// Added to Markers
|
311 |
-
loadedMarkers.push(marker);
|
312 |
-
}
|
313 |
-
|
314 |
-
if (f > 1) map.fitBounds(bounds);
|
315 |
-
|
316 |
-
// Set map center if only 1 marker found
|
317 |
-
if (f === 1) {
|
318 |
-
map.setCenter(new google.maps.LatLng(dataMarker.latitude, dataMarker.longitude));
|
319 |
-
}
|
320 |
-
}
|
321 |
-
|
322 |
-
function getMarkers() {
|
323 |
-
// Add loader
|
324 |
-
$("#mec_googlemap_canvas" + settings.id).addClass("mec-loading");
|
325 |
-
|
326 |
-
$.ajax({
|
327 |
-
url: settings.ajax_url,
|
328 |
-
data: "action=mec_map_get_markers&" + settings.atts,
|
329 |
-
dataType: "json",
|
330 |
-
type: "post",
|
331 |
-
success: function (response) {
|
332 |
-
// Remove Markers
|
333 |
-
removeMarkers();
|
334 |
-
|
335 |
-
// Load Markers
|
336 |
-
loadMarkers(response.markers);
|
337 |
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
$("#mec_googlemap_canvas" + settings.id).removeClass("mec-loading");
|
344 |
-
},
|
345 |
-
error: function () {
|
346 |
-
// Remove loader
|
347 |
-
$("#mec_googlemap_canvas" + settings.id).removeClass("mec-loading");
|
348 |
}
|
349 |
-
});
|
350 |
-
}
|
351 |
-
|
352 |
-
function removeMarkers() {
|
353 |
-
bounds = new google.maps.LatLngBounds();
|
354 |
-
|
355 |
-
if (loadedMarkers) {
|
356 |
-
for (i = 0; i < loadedMarkers.length; i++) loadedMarkers[i].setMap(null);
|
357 |
-
loadedMarkers.length = 0;
|
358 |
}
|
359 |
-
}
|
360 |
-
|
361 |
-
var directionsDisplay;
|
362 |
-
var directionsService;
|
363 |
-
var startMarker;
|
364 |
-
var endMarker;
|
365 |
-
|
366 |
-
function initSimpleGetDirection() {
|
367 |
-
$(settings.directionOptions.form).on('submit', function (event) {
|
368 |
-
event.preventDefault();
|
369 |
-
|
370 |
-
var from = $(settings.directionOptions.addr).val();
|
371 |
-
var dest = new google.maps.LatLng(settings.directionOptions.destination.latitude, settings.directionOptions.destination.longitude);
|
372 |
-
|
373 |
-
// Reset the direction
|
374 |
-
if (typeof directionsDisplay !== 'undefined') {
|
375 |
-
directionsDisplay.setMap(null);
|
376 |
-
startMarker.setMap(null);
|
377 |
-
endMarker.setMap(null);
|
378 |
-
}
|
379 |
-
|
380 |
-
// Fade Google Maps canvas
|
381 |
-
$(canvas).fadeTo(300, .4);
|
382 |
-
|
383 |
-
directionsDisplay = new google.maps.DirectionsRenderer({
|
384 |
-
suppressMarkers: true
|
385 |
-
});
|
386 |
-
directionsService = new google.maps.DirectionsService();
|
387 |
-
|
388 |
-
var request = {
|
389 |
-
origin: from,
|
390 |
-
destination: dest,
|
391 |
-
travelMode: google.maps.DirectionsTravelMode.DRIVING
|
392 |
-
};
|
393 |
-
|
394 |
-
directionsService.route(request, function (response, status) {
|
395 |
-
if (status === google.maps.DirectionsStatus.OK) {
|
396 |
-
directionsDisplay.setDirections(response);
|
397 |
-
directionsDisplay.setMap(map);
|
398 |
-
|
399 |
-
var leg = response.routes[0].legs[0];
|
400 |
-
startMarker = new google.maps.Marker({
|
401 |
-
position: leg.start_location,
|
402 |
-
map: map,
|
403 |
-
icon: settings.directionOptions.startMarker,
|
404 |
-
});
|
405 |
-
|
406 |
-
endMarker = new google.maps.Marker({
|
407 |
-
position: leg.end_location,
|
408 |
-
map: map,
|
409 |
-
icon: settings.directionOptions.endMarker,
|
410 |
-
});
|
411 |
-
}
|
412 |
|
413 |
-
|
414 |
-
|
415 |
-
});
|
416 |
-
|
417 |
-
// Show reset button
|
418 |
-
$(settings.directionOptions.reset).removeClass('mec-util-hidden');
|
419 |
-
});
|
420 |
-
|
421 |
-
$(settings.directionOptions.reset).on('click', function (event) {
|
422 |
-
$(settings.directionOptions.addr).val('');
|
423 |
-
$(settings.directionOptions.form).submit();
|
424 |
-
|
425 |
-
// Hide reset button
|
426 |
-
$(settings.directionOptions.reset).addClass('mec-util-hidden');
|
427 |
-
});
|
428 |
-
}
|
429 |
-
|
430 |
-
function initAdvancedGetDirection() {
|
431 |
-
$(settings.directionOptions.form).on('submit', function (event) {
|
432 |
-
event.preventDefault();
|
433 |
-
|
434 |
-
var from = $(settings.directionOptions.addr).val();
|
435 |
-
var url = 'https://maps.google.com/?saddr=' + encodeURIComponent(from) + '&daddr=' + settings.directionOptions.destination.latitude + ',' + settings.directionOptions.destination.longitude;
|
436 |
-
|
437 |
-
window.open(url);
|
438 |
-
});
|
439 |
}
|
440 |
-
|
441 |
-
return {
|
442 |
-
init: function () {
|
443 |
-
init();
|
444 |
-
}
|
445 |
-
};
|
446 |
};
|
447 |
|
448 |
}(jQuery));
|
95 |
search();
|
96 |
});
|
97 |
|
98 |
+
if (settings.fields && settings.fields != null && settings.fields.length > 0) {
|
99 |
+
for (var k in settings.fields) {
|
100 |
+
$("#mec_sf_" + settings.fields[k] + '_' + settings.id).on('change', function (e) {
|
101 |
+
search();
|
102 |
+
});
|
103 |
+
}
|
104 |
+
}
|
105 |
+
|
106 |
function search() {
|
107 |
var s = $("#mec_sf_s_" + settings.id).length ? $("#mec_sf_s_" + settings.id).val() : '';
|
108 |
var category = $("#mec_sf_category_" + settings.id).length ? $("#mec_sf_category_" + settings.id).val() : '';
|
116 |
var event_type = $("#mec_sf_event_type_" + settings.id).length ? $("#mec_sf_event_type_" + settings.id).val() : '';
|
117 |
var event_type_2 = $("#mec_sf_event_type_2_" + settings.id).length ? $("#mec_sf_event_type_2_" + settings.id).val() : '';
|
118 |
|
119 |
+
if (year === 'none' && month === 'none') {
|
|
|
120 |
year = '';
|
121 |
month = '';
|
122 |
}
|
123 |
|
124 |
+
var addation_attr = '';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
125 |
|
126 |
+
if (settings.fields && settings.fields != null && settings.fields.length > 0) {
|
127 |
+
for (var k in settings.fields) {
|
128 |
+
var field = '#mec_sf_' + settings.fields[k] + '_' + settings.id;
|
129 |
+
var val = $(field).length ? $(field).val() : '';
|
130 |
+
addation_attr += '&sf[' + settings.fields[k] + ']=' + val;
|
|
|
|
|
|
|
|
|
|
|
131 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
132 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
133 |
|
134 |
+
var atts = settings.atts + '&sf[s]=' + s + '&sf[month]=' + month + '&sf[year]=' + year + '&sf[category]=' + category + '&sf[location]=' + location + '&sf[organizer]=' + organizer + '&sf[speaker]=' + speaker + '&sf[tag]=' + tag + '&sf[label]=' + label + '&sf[event_type]=' + event_type + '&sf[event_type_2]=' + event_type_2 + addation_attr;
|
135 |
+
settings.callback(atts);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
136 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
137 |
};
|
138 |
|
139 |
}(jQuery));
|
@@ -0,0 +1,325 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
// MEC GOOGLE MAPS PLUGIN
|
2 |
+
(function ($) {
|
3 |
+
$.fn.mecGoogleMaps = function (options) {
|
4 |
+
// Default Options
|
5 |
+
var settings = $.extend({
|
6 |
+
// These are the defaults.
|
7 |
+
latitude: 0,
|
8 |
+
longitude: 0,
|
9 |
+
autoinit: true,
|
10 |
+
zoom: 14,
|
11 |
+
icon: '../img/m-01.png',
|
12 |
+
markers: {},
|
13 |
+
sf: {},
|
14 |
+
HTML5geolocation: 0,
|
15 |
+
getDirection: 0,
|
16 |
+
directionOptions: {
|
17 |
+
form: '#mec_get_direction_form',
|
18 |
+
reset: '.mec-map-get-direction-reset',
|
19 |
+
addr: '#mec_get_direction_addr',
|
20 |
+
destination: {},
|
21 |
+
},
|
22 |
+
}, options);
|
23 |
+
|
24 |
+
var bounds;
|
25 |
+
var map;
|
26 |
+
var infowindow;
|
27 |
+
var loadedMarkers = new Array();
|
28 |
+
var markerCluster;
|
29 |
+
|
30 |
+
var canvas = this;
|
31 |
+
var DOM = canvas[0];
|
32 |
+
|
33 |
+
// Init the Map
|
34 |
+
if (settings.autoinit) init();
|
35 |
+
|
36 |
+
function init() {
|
37 |
+
// Search Widget
|
38 |
+
if (settings.sf.container !== '') {
|
39 |
+
$(settings.sf.container).mecSearchForm({
|
40 |
+
id: settings.id,
|
41 |
+
atts: settings.atts,
|
42 |
+
callback: function (atts) {
|
43 |
+
settings.atts = atts;
|
44 |
+
getMarkers();
|
45 |
+
}
|
46 |
+
});
|
47 |
+
}
|
48 |
+
|
49 |
+
// Create the options
|
50 |
+
bounds = new google.maps.LatLngBounds();
|
51 |
+
var center = new google.maps.LatLng(settings.latitude, settings.longitude);
|
52 |
+
|
53 |
+
var mapOptions = {
|
54 |
+
scrollwheel: false,
|
55 |
+
mapTypeId: google.maps.MapTypeId.ROADMAP,
|
56 |
+
center: center,
|
57 |
+
zoom: settings.zoom,
|
58 |
+
styles: settings.styles,
|
59 |
+
};
|
60 |
+
|
61 |
+
// Init map
|
62 |
+
map = new google.maps.Map(DOM, mapOptions);
|
63 |
+
|
64 |
+
// Init Infowindow
|
65 |
+
infowindow = new google.maps.InfoWindow({
|
66 |
+
pixelOffset: new google.maps.Size(0, -37)
|
67 |
+
});
|
68 |
+
|
69 |
+
// Load Markers
|
70 |
+
loadMarkers(settings.markers);
|
71 |
+
|
72 |
+
var clusterCalculator = function (markers, numStyles) {
|
73 |
+
var weight = 0;
|
74 |
+
|
75 |
+
for (var i = 0; i < markers.length; ++i) {
|
76 |
+
weight += markers[i].weight;
|
77 |
+
}
|
78 |
+
|
79 |
+
return {
|
80 |
+
text: weight,
|
81 |
+
index: Math.min(String(weight).length, numStyles)
|
82 |
+
};
|
83 |
+
};
|
84 |
+
|
85 |
+
markerClusterOptions = {
|
86 |
+
styles: [{
|
87 |
+
height: 53,
|
88 |
+
url: settings.clustering_images + '1.png',
|
89 |
+
width: 53,
|
90 |
+
textColor: '#fff'
|
91 |
+
},
|
92 |
+
{
|
93 |
+
height: 56,
|
94 |
+
url: settings.clustering_images + '2.png',
|
95 |
+
width: 56,
|
96 |
+
textColor: '#000'
|
97 |
+
},
|
98 |
+
{
|
99 |
+
height: 66,
|
100 |
+
url: settings.clustering_images + '3.png',
|
101 |
+
width: 66,
|
102 |
+
textColor: '#fff'
|
103 |
+
},
|
104 |
+
{
|
105 |
+
height: 78,
|
106 |
+
url: settings.clustering_images + '4.png',
|
107 |
+
width: 78,
|
108 |
+
textColor: '#fff'
|
109 |
+
},
|
110 |
+
{
|
111 |
+
height: 90,
|
112 |
+
url: settings.clustering_images + '5.png',
|
113 |
+
width: 90,
|
114 |
+
textColor: '#fff'
|
115 |
+
}
|
116 |
+
]
|
117 |
+
}
|
118 |
+
|
119 |
+
markerCluster = new MarkerClusterer(map, null, markerClusterOptions);
|
120 |
+
|
121 |
+
markerCluster.setCalculator(clusterCalculator);
|
122 |
+
markerCluster.addMarkers(loadedMarkers);
|
123 |
+
|
124 |
+
// Initialize get direction feature
|
125 |
+
if (settings.getDirection === 1) initSimpleGetDirection();
|
126 |
+
else if (settings.getDirection === 2) initAdvancedGetDirection();
|
127 |
+
|
128 |
+
// Geolocation
|
129 |
+
if ((settings.HTML5geolocation || (options.geolocation !== 'undefined' && options.geolocation == true)) && navigator.geolocation) {
|
130 |
+
navigator.geolocation.getCurrentPosition(function (position) {
|
131 |
+
var center = new google.maps.LatLng(position.coords.latitude, position.coords.longitude);
|
132 |
+
var zoom = map.getZoom();
|
133 |
+
|
134 |
+
if (zoom <= 6) zoom = zoom + 5;
|
135 |
+
else if (zoom <= 10) zoom = zoom + 3;
|
136 |
+
else if (zoom <= 14) zoom = zoom + 2;
|
137 |
+
else if (zoom <= 18) zoom = zoom + 1;
|
138 |
+
|
139 |
+
map.panTo(center);
|
140 |
+
map.setZoom(zoom);
|
141 |
+
});
|
142 |
+
}
|
143 |
+
}
|
144 |
+
|
145 |
+
function loadMarkers(markers) {
|
146 |
+
var f = 0;
|
147 |
+
for (var i in markers) {
|
148 |
+
f++;
|
149 |
+
var dataMarker = markers[i];
|
150 |
+
|
151 |
+
var marker = new RichMarker({
|
152 |
+
position: new google.maps.LatLng(dataMarker.latitude, dataMarker.longitude),
|
153 |
+
map: map,
|
154 |
+
event_ids: dataMarker.event_ids,
|
155 |
+
infowindow: dataMarker.infowindow,
|
156 |
+
lightbox: dataMarker.lightbox,
|
157 |
+
icon: (dataMarker.icon ? dataMarker.icon : settings.icon),
|
158 |
+
content: '<div class="mec-marker-container"><span class="mec-marker-wrap"><span class="mec-marker">' + dataMarker.count + '</span><span class="mec-marker-pulse-wrap"><span class="mec-marker-pulse"></span></span></span></div>',
|
159 |
+
shadow: 'none',
|
160 |
+
weight: dataMarker.count
|
161 |
+
});
|
162 |
+
|
163 |
+
// Marker Info-Window
|
164 |
+
if (Math.max(document.documentElement.clientWidth, window.innerWidth || 0) > 960) {
|
165 |
+
google.maps.event.addListener(marker, 'mouseover', function (event) {
|
166 |
+
infowindow.close();
|
167 |
+
infowindow.setContent(this.infowindow);
|
168 |
+
infowindow.open(map, this);
|
169 |
+
});
|
170 |
+
|
171 |
+
// Marker Lightbox
|
172 |
+
google.maps.event.addListener(marker, 'click', function (event) {
|
173 |
+
lity(this.lightbox);
|
174 |
+
});
|
175 |
+
} else if (Math.max(document.documentElement.clientWidth, window.innerWidth || 0) <= 960){
|
176 |
+
google.maps.event.addListener(marker, 'click', function (event) {
|
177 |
+
infowindow.close();
|
178 |
+
infowindow.setContent(this.infowindow);
|
179 |
+
infowindow.open(map, this);
|
180 |
+
lity(this.lightbox);
|
181 |
+
});
|
182 |
+
}
|
183 |
+
|
184 |
+
// extend the bounds to include each marker's position
|
185 |
+
bounds.extend(marker.position);
|
186 |
+
|
187 |
+
// Added to Markers
|
188 |
+
loadedMarkers.push(marker);
|
189 |
+
}
|
190 |
+
|
191 |
+
if (f > 1) map.fitBounds(bounds);
|
192 |
+
|
193 |
+
// Set map center if only 1 marker found
|
194 |
+
if (f === 1) {
|
195 |
+
map.setCenter(new google.maps.LatLng(dataMarker.latitude, dataMarker.longitude));
|
196 |
+
}
|
197 |
+
}
|
198 |
+
|
199 |
+
function getMarkers() {
|
200 |
+
// Add loader
|
201 |
+
$("#mec_googlemap_canvas" + settings.id).addClass("mec-loading");
|
202 |
+
|
203 |
+
$.ajax({
|
204 |
+
url: settings.ajax_url,
|
205 |
+
data: "action=mec_map_get_markers&" + settings.atts,
|
206 |
+
dataType: "json",
|
207 |
+
type: "post",
|
208 |
+
success: function (response) {
|
209 |
+
// Remove Markers
|
210 |
+
removeMarkers();
|
211 |
+
|
212 |
+
// Load Markers
|
213 |
+
loadMarkers(response.markers);
|
214 |
+
|
215 |
+
markerCluster.clearMarkers();
|
216 |
+
markerCluster.addMarkers(loadedMarkers, false);
|
217 |
+
markerCluster.redraw();
|
218 |
+
|
219 |
+
// Remove loader
|
220 |
+
$("#mec_googlemap_canvas" + settings.id).removeClass("mec-loading");
|
221 |
+
},
|
222 |
+
error: function () {
|
223 |
+
// Remove loader
|
224 |
+
$("#mec_googlemap_canvas" + settings.id).removeClass("mec-loading");
|
225 |
+
}
|
226 |
+
});
|
227 |
+
}
|
228 |
+
|
229 |
+
function removeMarkers() {
|
230 |
+
bounds = new google.maps.LatLngBounds();
|
231 |
+
|
232 |
+
if (loadedMarkers) {
|
233 |
+
for (i = 0; i < loadedMarkers.length; i++) loadedMarkers[i].setMap(null);
|
234 |
+
loadedMarkers.length = 0;
|
235 |
+
}
|
236 |
+
}
|
237 |
+
|
238 |
+
var directionsDisplay;
|
239 |
+
var directionsService;
|
240 |
+
var startMarker;
|
241 |
+
var endMarker;
|
242 |
+
|
243 |
+
function initSimpleGetDirection() {
|
244 |
+
$(settings.directionOptions.form).on('submit', function (event) {
|
245 |
+
event.preventDefault();
|
246 |
+
|
247 |
+
var from = $(settings.directionOptions.addr).val();
|
248 |
+
var dest = new google.maps.LatLng(settings.directionOptions.destination.latitude, settings.directionOptions.destination.longitude);
|
249 |
+
|
250 |
+
// Reset the direction
|
251 |
+
if (typeof directionsDisplay !== 'undefined') {
|
252 |
+
directionsDisplay.setMap(null);
|
253 |
+
startMarker.setMap(null);
|
254 |
+
endMarker.setMap(null);
|
255 |
+
}
|
256 |
+
|
257 |
+
// Fade Google Maps canvas
|
258 |
+
$(canvas).fadeTo(300, .4);
|
259 |
+
|
260 |
+
directionsDisplay = new google.maps.DirectionsRenderer({
|
261 |
+
suppressMarkers: true
|
262 |
+
});
|
263 |
+
directionsService = new google.maps.DirectionsService();
|
264 |
+
|
265 |
+
var request = {
|
266 |
+
origin: from,
|
267 |
+
destination: dest,
|
268 |
+
travelMode: google.maps.DirectionsTravelMode.DRIVING
|
269 |
+
};
|
270 |
+
|
271 |
+
directionsService.route(request, function (response, status) {
|
272 |
+
if (status === google.maps.DirectionsStatus.OK) {
|
273 |
+
directionsDisplay.setDirections(response);
|
274 |
+
directionsDisplay.setMap(map);
|
275 |
+
|
276 |
+
var leg = response.routes[0].legs[0];
|
277 |
+
startMarker = new google.maps.Marker({
|
278 |
+
position: leg.start_location,
|
279 |
+
map: map,
|
280 |
+
icon: settings.directionOptions.startMarker,
|
281 |
+
});
|
282 |
+
|
283 |
+
endMarker = new google.maps.Marker({
|
284 |
+
position: leg.end_location,
|
285 |
+
map: map,
|
286 |
+
icon: settings.directionOptions.endMarker,
|
287 |
+
});
|
288 |
+
}
|
289 |
+
|
290 |
+
// Fade Google Maps canvas
|
291 |
+
$(canvas).fadeTo(300, 1);
|
292 |
+
});
|
293 |
+
|
294 |
+
// Show reset button
|
295 |
+
$(settings.directionOptions.reset).removeClass('mec-util-hidden');
|
296 |
+
});
|
297 |
+
|
298 |
+
$(settings.directionOptions.reset).on('click', function (event) {
|
299 |
+
$(settings.directionOptions.addr).val('');
|
300 |
+
$(settings.directionOptions.form).submit();
|
301 |
+
|
302 |
+
// Hide reset button
|
303 |
+
$(settings.directionOptions.reset).addClass('mec-util-hidden');
|
304 |
+
});
|
305 |
+
}
|
306 |
+
|
307 |
+
function initAdvancedGetDirection() {
|
308 |
+
$(settings.directionOptions.form).on('submit', function (event) {
|
309 |
+
event.preventDefault();
|
310 |
+
|
311 |
+
var from = $(settings.directionOptions.addr).val();
|
312 |
+
var url = 'https://maps.google.com/?saddr=' + encodeURIComponent(from) + '&daddr=' + settings.directionOptions.destination.latitude + ',' + settings.directionOptions.destination.longitude;
|
313 |
+
|
314 |
+
window.open(url);
|
315 |
+
});
|
316 |
+
}
|
317 |
+
|
318 |
+
return {
|
319 |
+
init: function () {
|
320 |
+
init();
|
321 |
+
}
|
322 |
+
};
|
323 |
+
};
|
324 |
+
|
325 |
+
}(jQuery));
|
@@ -1,4 +1,21 @@
|
|
1 |
-
v 5.1.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
- Added: Shortcode wizard - hard-refresh is required
|
3 |
- Removed: Back button after payment in booking module (pro)
|
4 |
- Fixed: Read more link in single event page
|
1 |
+
v 5.1.5 – 12 February 2020
|
2 |
+
- Added: An option to disable "Auto Confirmation" for Pay Locally gateway (pro)
|
3 |
+
- Added: Used coupons in booking details view and booking invoice (pro)
|
4 |
+
- Added: An option to save Start and End dates of Google calendar import
|
5 |
+
- Added: An option to disable / enable sending confirmation email in auto confirm mode (pro)
|
6 |
+
- Added: Use WordPress time format in local time module
|
7 |
+
- Added: An Organizer and other organizer description options
|
8 |
+
- Changed: "All of the day" to "All Day"
|
9 |
+
- Fixed: Thank you page of "Frontend Event Submission"
|
10 |
+
- Fixed: a PHP warning in export
|
11 |
+
- Fixed: Event time in 0 hour
|
12 |
+
- Fixed: Close div tag in grid view skin
|
13 |
+
- Fixed: Tile view overlay style
|
14 |
+
- Fixed: The dates when day light saving happens
|
15 |
+
- Fixed: Monthly calendar skin simple view responsive mobile size
|
16 |
+
- Fixed: Some minor issues
|
17 |
+
|
18 |
+
v 5.1.0 – 5 February 2020
|
19 |
- Added: Shortcode wizard - hard-refresh is required
|
20 |
- Removed: Back button after payment in booking module (pro)
|
21 |
- Fixed: Read more link in single event page
|
Binary file
|
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar Lite\n"
|
4 |
-
"POT-Creation-Date: 2020-02-
|
5 |
-
"PO-Revision-Date: 2020-02-
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: cs_CZ\n"
|
@@ -73,8 +73,8 @@ msgstr "Barva události"
|
|
73 |
msgid "Settings"
|
74 |
msgstr "Nastavení"
|
75 |
|
76 |
-
#: app/features/contextual.php:62 app/features/events.php:
|
77 |
-
#: app/features/mec/booking.php:
|
78 |
#: app/libraries/main.php:560
|
79 |
msgid "Booking Form"
|
80 |
msgstr "Rezervační formulář"
|
@@ -94,7 +94,7 @@ msgstr ""
|
|
94 |
"www.youtube.com/embed/YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></"
|
95 |
"iframe>"
|
96 |
|
97 |
-
#: app/features/contextual.php:70 app/features/mec/booking.php:
|
98 |
#: app/features/mec/support.php:36 app/libraries/main.php:561
|
99 |
msgid "Payment Gateways"
|
100 |
msgstr "Platební brány"
|
@@ -218,12 +218,12 @@ msgstr "Možnosti Google Maps"
|
|
218 |
msgid "Google Recaptcha Options"
|
219 |
msgstr "Možnosti Google Recaptcha"
|
220 |
|
221 |
-
#: app/features/contextual.php:258 app/features/mec/single.php:
|
222 |
#: app/libraries/main.php:548
|
223 |
msgid "Countdown Options"
|
224 |
msgstr "Možnosti Odpočítávání"
|
225 |
|
226 |
-
#: app/features/contextual.php:268 app/features/mec/modules.php:
|
227 |
#: app/libraries/main.php:571
|
228 |
msgid "Social Networks"
|
229 |
msgstr "Sociální sítě"
|
@@ -249,12 +249,12 @@ msgstr "Výjimečné dny"
|
|
249 |
msgid "Booking"
|
250 |
msgstr "Rezervace"
|
251 |
|
252 |
-
#: app/features/contextual.php:318 app/features/mec/booking.php:
|
253 |
#: app/libraries/main.php:557
|
254 |
msgid "Coupons"
|
255 |
msgstr "Kupóny"
|
256 |
|
257 |
-
#: app/features/contextual.php:326 app/features/mec/modules.php:
|
258 |
#: app/libraries/main.php:573
|
259 |
msgid "BuddyPress Integration"
|
260 |
msgstr "Integrace BuddyPress"
|
@@ -276,9 +276,9 @@ msgid "Events"
|
|
276 |
msgstr "Události"
|
277 |
|
278 |
#: app/features/events.php:158 app/features/fes.php:223
|
279 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
280 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
281 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
282 |
#: app/features/profile/profile.php:50 app/skins/daily_view/tpl.php:80
|
283 |
#: app/skins/monthly_view/tpl.php:71 app/skins/tile/tpl.php:70
|
284 |
#: app/skins/yearly_view/tpl.php:69
|
@@ -293,8 +293,9 @@ msgstr "Přidat událost"
|
|
293 |
msgid "Add New Event"
|
294 |
msgstr "Přidat novou událost"
|
295 |
|
296 |
-
#: app/features/events.php:161 app/features/ix.php:
|
297 |
-
#: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:
|
|
|
298 |
msgid "No events found!"
|
299 |
msgstr "Nebyly nalezeny žádné události!"
|
300 |
|
@@ -314,8 +315,8 @@ msgstr "Zobrazit událost"
|
|
314 |
msgid "No events found in Trash!"
|
315 |
msgstr "V koši nebyly nalezeny žádné události!"
|
316 |
|
317 |
-
#: app/features/events.php:182 app/features/events.php:
|
318 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
319 |
#: app/features/mec/meta_boxes/search_form.php:31
|
320 |
#: app/features/mec/meta_boxes/search_form.php:93
|
321 |
#: app/features/mec/meta_boxes/search_form.php:155
|
@@ -327,18 +328,18 @@ msgstr "V koši nebyly nalezeny žádné události!"
|
|
327 |
#: app/features/mec/meta_boxes/search_form.php:514
|
328 |
#: app/features/mec/meta_boxes/search_form.php:575
|
329 |
#: app/features/mec/meta_boxes/search_form.php:672
|
330 |
-
#: app/features/mec/settings.php:808 app/features/mec/single.php:
|
331 |
-
#: app/features/search.php:68 app/libraries/main.php:
|
332 |
-
#: app/libraries/skins.php:
|
333 |
-
#: app/skins/single/default.php:192 app/skins/single/default.php:
|
334 |
-
#: app/skins/single/m1.php:
|
335 |
-
#: app/skins/single/modern.php:
|
336 |
msgid "Category"
|
337 |
msgstr "Kategorie"
|
338 |
|
339 |
-
#: app/features/events.php:183 app/features/events.php:
|
340 |
#: app/features/fes/form.php:757 app/features/mec.php:403
|
341 |
-
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:
|
342 |
msgid "Categories"
|
343 |
msgstr "Kategorie"
|
344 |
|
@@ -426,8 +427,8 @@ msgstr "Datum a čas"
|
|
426 |
msgid "Event Repeating"
|
427 |
msgstr "Opakování události"
|
428 |
|
429 |
-
#: app/features/events.php:333 app/features/events.php:
|
430 |
-
#: app/features/mec/settings.php:718 app/skins/single.php:
|
431 |
msgid "Hourly Schedule"
|
432 |
msgstr "Hodinový rozvrh"
|
433 |
|
@@ -443,10 +444,10 @@ msgstr "Umístění"
|
|
443 |
msgid "Links"
|
444 |
msgstr "Odkaz"
|
445 |
|
446 |
-
#: app/features/events.php:336 app/features/events.php:
|
447 |
-
#: app/features/events.php:
|
448 |
-
#: app/features/ix.php:
|
449 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
450 |
#: app/features/mec/meta_boxes/search_form.php:45
|
451 |
#: app/features/mec/meta_boxes/search_form.php:107
|
452 |
#: app/features/mec/meta_boxes/search_form.php:169
|
@@ -458,67 +459,67 @@ msgstr "Odkaz"
|
|
458 |
#: app/features/mec/meta_boxes/search_form.php:528
|
459 |
#: app/features/mec/meta_boxes/search_form.php:589
|
460 |
#: app/features/mec/meta_boxes/search_form.php:686
|
461 |
-
#: app/features/mec/settings.php:820 app/features/mec/single.php:
|
462 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
463 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
464 |
#: app/features/organizers.php:271 app/features/search.php:78
|
465 |
-
#: app/libraries/main.php:
|
466 |
#: app/skins/single.php:812 app/skins/single/default.php:217
|
467 |
-
#: app/skins/single/default.php:
|
468 |
#: app/skins/single/m2.php:25 app/skins/single/modern.php:34
|
469 |
msgid "Organizer"
|
470 |
msgstr "Organizátor"
|
471 |
|
472 |
-
#: app/features/events.php:337 app/features/events.php:
|
473 |
-
#: app/features/fes/form.php:730 app/libraries/main.php:
|
474 |
#: app/skins/single.php:589 app/skins/single/default.php:126
|
475 |
-
#: app/skins/single/default.php:
|
476 |
-
#: app/skins/single/modern.php:
|
477 |
msgid "Cost"
|
478 |
msgstr "Cena"
|
479 |
|
480 |
-
#: app/features/events.php:
|
481 |
msgid "Note for reviewer"
|
482 |
msgstr "Poznámka pro recenzenta"
|
483 |
|
484 |
-
#: app/features/events.php:
|
485 |
msgid "Guest Data"
|
486 |
msgstr "Údaje hosta"
|
487 |
|
488 |
-
#: app/features/events.php:
|
489 |
-
#: app/features/events.php:
|
490 |
#: app/features/fes/form.php:689 app/features/labels.php:178
|
491 |
#: app/features/mec/booking.php:45 app/features/organizers.php:279
|
492 |
-
#: app/features/profile/profile.php:180 app/libraries/notifications.php:
|
493 |
#: app/modules/booking/steps/form.php:37
|
494 |
msgid "Name"
|
495 |
msgstr "Jméno"
|
496 |
|
497 |
-
#: app/features/events.php:
|
498 |
-
#: app/features/events.php:
|
499 |
#: app/features/fes.php:223 app/features/fes/form.php:685
|
500 |
-
#: app/features/mec/booking.php:57 app/features/mec/booking.php:
|
501 |
#: app/features/organizers.php:111 app/features/organizers.php:152
|
502 |
#: app/features/profile/profile.php:183 app/features/speakers.php:127
|
503 |
-
#: app/features/speakers.php:196 app/libraries/main.php:
|
504 |
-
#: app/libraries/main.php:
|
505 |
-
#: app/libraries/notifications.php:
|
506 |
#: app/modules/booking/steps/form.php:83 app/skins/single.php:829
|
507 |
#: app/skins/single.php:884 app/skins/single/default.php:234
|
508 |
-
#: app/skins/single/default.php:
|
509 |
#: app/skins/single/m2.php:42 app/skins/single/modern.php:51
|
510 |
msgid "Email"
|
511 |
msgstr "Email"
|
512 |
|
513 |
-
#: app/features/events.php:
|
514 |
msgid "Date and Time"
|
515 |
msgstr "Datum a čas"
|
516 |
|
517 |
-
#: app/features/events.php:
|
518 |
-
#: app/features/events.php:
|
519 |
-
#: app/features/events.php:
|
520 |
-
#: app/features/fes/form.php:251 app/features/ix.php:
|
521 |
-
#: app/features/ix.php:
|
522 |
#: app/features/mec/dashboard.php:401
|
523 |
#: app/features/mec/meta_boxes/display_options.php:49
|
524 |
#: app/features/mec/meta_boxes/display_options.php:229
|
@@ -527,58 +528,58 @@ msgstr "Datum a čas"
|
|
527 |
#: app/features/mec/meta_boxes/display_options.php:598
|
528 |
#: app/features/mec/meta_boxes/display_options.php:652
|
529 |
#: app/features/mec/meta_boxes/display_options.php:699
|
530 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
531 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
532 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
533 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
534 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
535 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
536 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
537 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
538 |
msgid "Start Date"
|
539 |
msgstr "Počátečná den"
|
540 |
|
541 |
-
#: app/features/events.php:
|
542 |
-
#: app/features/events.php:
|
543 |
-
#: app/features/events.php:
|
544 |
#: app/features/fes/form.php:279 app/features/fes/form.php:319
|
545 |
msgid "AM"
|
546 |
msgstr "dop."
|
547 |
|
548 |
-
#: app/features/events.php:
|
549 |
-
#: app/features/events.php:
|
550 |
-
#: app/features/events.php:
|
551 |
#: app/features/fes/form.php:280 app/features/fes/form.php:320
|
552 |
msgid "PM"
|
553 |
msgstr "odp."
|
554 |
|
555 |
-
#: app/features/events.php:
|
556 |
-
#: app/features/events.php:
|
557 |
-
#: app/features/events.php:
|
558 |
-
#: app/features/fes/form.php:291 app/features/ix.php:
|
559 |
-
#: app/features/ix.php:
|
560 |
#: app/features/mec/dashboard.php:402
|
561 |
msgid "End Date"
|
562 |
msgstr "Konečný den"
|
563 |
|
564 |
-
#: app/features/events.php:
|
565 |
msgid "All Day Event"
|
566 |
msgstr "Celodenní událost"
|
567 |
|
568 |
-
#: app/features/events.php:
|
569 |
msgid "Hide Event Time"
|
570 |
msgstr "Skrýt čas události"
|
571 |
|
572 |
-
#: app/features/events.php:
|
573 |
msgid "Hide Event End Time"
|
574 |
msgstr "Skrýt čas ukončení události"
|
575 |
|
576 |
-
#: app/features/events.php:
|
577 |
#: app/features/fes/form.php:336
|
578 |
msgid "Time Comment"
|
579 |
msgstr "Časový komentář"
|
580 |
|
581 |
-
#: app/features/events.php:
|
582 |
msgid ""
|
583 |
"It shows next to event time on single event page. You can insert Timezone "
|
584 |
"etc. in this field."
|
@@ -586,20 +587,20 @@ msgstr ""
|
|
586 |
"Zobrazuje se vedle času události na stránce jedné události. Do tohoto pole "
|
587 |
"můžete vložit časové pásmo atd."
|
588 |
|
589 |
-
#: app/features/events.php:
|
590 |
-
#: app/features/events.php:
|
591 |
-
#: app/features/events.php:
|
592 |
-
#: app/features/events.php:
|
593 |
-
#: app/features/events.php:
|
594 |
-
#: app/features/events.php:
|
595 |
-
#: app/features/events.php:
|
596 |
-
#: app/features/events.php:
|
597 |
-
#: app/features/fes/form.php:641 app/features/locations.php:
|
598 |
#: app/features/mec/booking.php:108 app/features/mec/booking.php:158
|
599 |
#: app/features/mec/booking.php:171 app/features/mec/booking.php:187
|
600 |
-
#: app/features/mec/booking.php:
|
601 |
-
#: app/features/mec/booking.php:
|
602 |
-
#: app/features/mec/booking.php:
|
603 |
#: app/features/mec/dashboard.php:71
|
604 |
#: app/features/mec/meta_boxes/display_options.php:80
|
605 |
#: app/features/mec/meta_boxes/display_options.php:93
|
@@ -615,27 +616,27 @@ msgstr ""
|
|
615 |
#: app/features/mec/meta_boxes/display_options.php:332
|
616 |
#: app/features/mec/meta_boxes/display_options.php:439
|
617 |
#: app/features/mec/meta_boxes/display_options.php:615
|
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/meta_boxes/display_options.php:
|
625 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
626 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
627 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
628 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
629 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
630 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
631 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
632 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
633 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
634 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
635 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
636 |
#: app/features/mec/modules.php:53 app/features/mec/modules.php:86
|
637 |
#: app/features/mec/modules.php:103 app/features/mec/modules.php:138
|
638 |
-
#: app/features/mec/modules.php:154 app/features/mec/modules.php:
|
639 |
#: app/features/mec/notifications.php:88 app/features/mec/notifications.php:185
|
640 |
#: app/features/mec/notifications.php:277
|
641 |
#: app/features/mec/notifications.php:380
|
@@ -656,113 +657,113 @@ msgstr ""
|
|
656 |
#: app/features/mec/settings.php:899 app/features/mec/single.php:42
|
657 |
#: app/features/mec/single.php:58 app/features/mec/single.php:77
|
658 |
#: app/features/mec/single.php:94 app/features/mec/single.php:110
|
659 |
-
#: app/features/mec/single.php:
|
660 |
#: app/features/mec/styling.php:203 app/features/mec/styling.php:220
|
661 |
#: app/features/mec/styling.php:233 app/features/organizers.php:272
|
662 |
#: app/skins/single.php:674 app/skins/single/default.php:141
|
663 |
-
#: app/skins/single/default.php:
|
664 |
-
#: app/skins/single/m2.php:
|
665 |
msgid "Read More"
|
666 |
msgstr "Číst více"
|
667 |
|
668 |
-
#: app/features/events.php:
|
669 |
msgid "Repeating"
|
670 |
msgstr "Opakování"
|
671 |
|
672 |
-
#: app/features/events.php:
|
673 |
msgid "Event Repeating (Recurring events)"
|
674 |
msgstr "Opakování události (opakující se události)"
|
675 |
|
676 |
-
#: app/features/events.php:
|
677 |
msgid "Repeats"
|
678 |
msgstr "Opakování"
|
679 |
|
680 |
-
#: app/features/events.php:
|
681 |
#: app/features/mec/dashboard.php:404
|
682 |
#: app/skins/default_full_calendar/tpl.php:69
|
683 |
#: app/skins/full_calendar/tpl.php:110
|
684 |
msgid "Daily"
|
685 |
msgstr "Děnně"
|
686 |
|
687 |
-
#: app/features/events.php:
|
688 |
msgid "Every Weekday"
|
689 |
msgstr "Každý všední den"
|
690 |
|
691 |
-
#: app/features/events.php:
|
692 |
msgid "Every Weekend"
|
693 |
msgstr "Každý víkend"
|
694 |
|
695 |
-
#: app/features/events.php:
|
696 |
msgid "Certain Weekdays"
|
697 |
msgstr "Určité pracovní dny"
|
698 |
|
699 |
-
#: app/features/events.php:
|
700 |
#: app/skins/default_full_calendar/tpl.php:68
|
701 |
#: app/skins/full_calendar/tpl.php:109
|
702 |
msgid "Weekly"
|
703 |
msgstr "Týdně"
|
704 |
|
705 |
-
#: app/features/events.php:
|
706 |
#: app/features/mec/dashboard.php:405
|
707 |
#: app/skins/default_full_calendar/tpl.php:67
|
708 |
#: app/skins/full_calendar/tpl.php:108
|
709 |
msgid "Monthly"
|
710 |
msgstr "Měsíčně"
|
711 |
|
712 |
-
#: app/features/events.php:
|
713 |
#: app/features/mec/dashboard.php:406
|
714 |
#: app/skins/default_full_calendar/tpl.php:66
|
715 |
#: app/skins/full_calendar/tpl.php:107
|
716 |
msgid "Yearly"
|
717 |
msgstr "Ročně"
|
718 |
|
719 |
-
#: app/features/events.php:
|
720 |
msgid "Custom Days"
|
721 |
msgstr "Vlastní dny"
|
722 |
|
723 |
-
#: app/features/events.php:
|
724 |
msgid "Advanced"
|
725 |
msgstr "Pokročilé"
|
726 |
|
727 |
-
#: app/features/events.php:
|
728 |
msgid "Repeat Interval"
|
729 |
msgstr "Interval opakování"
|
730 |
|
731 |
-
#: app/features/events.php:
|
732 |
msgid "Repeat interval"
|
733 |
msgstr "Interval opakování"
|
734 |
|
735 |
-
#: app/features/events.php:
|
736 |
msgid "Week Days"
|
737 |
msgstr "Dny v týdnu"
|
738 |
|
739 |
-
#: app/features/events.php:
|
740 |
-
#: app/features/events.php:
|
741 |
#: app/features/fes/form.php:377 app/features/ix/import_f_calendar.php:42
|
742 |
#: app/features/ix/import_g_calendar.php:51
|
743 |
#: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
|
744 |
msgid "Start"
|
745 |
msgstr "Začátek"
|
746 |
|
747 |
-
#: app/features/events.php:
|
748 |
-
#: app/features/events.php:
|
749 |
#: app/features/fes/form.php:378
|
750 |
msgid "End"
|
751 |
msgstr "Konec"
|
752 |
|
753 |
-
#: app/features/events.php:
|
754 |
-
#: app/features/events.php:
|
755 |
-
#: app/features/events.php:
|
756 |
-
#: app/features/events.php:
|
757 |
#: app/features/fes/form.php:379 app/features/fes/form.php:855
|
758 |
msgid "Add"
|
759 |
msgstr "Přidat"
|
760 |
|
761 |
-
#: app/features/events.php:
|
762 |
msgid "Custom Days Repeating"
|
763 |
msgstr "Opakování vlastních dnů"
|
764 |
|
765 |
-
#: app/features/events.php:
|
766 |
msgid ""
|
767 |
"Add certain days to event occurrence dates. If you have single day event, "
|
768 |
"start and end date should be the same, If you have multiple day event the "
|
@@ -772,49 +773,49 @@ msgstr ""
|
|
772 |
"datum zahájení a ukončení by mělo být stejné. Pokud máte vícedenní událost, "
|
773 |
"datum zahájení a ukončení musí odpovídat počátečnímu datu."
|
774 |
|
775 |
-
#: app/features/events.php:
|
776 |
msgid "First"
|
777 |
msgstr "První"
|
778 |
|
779 |
-
#: app/features/events.php:
|
780 |
msgid "Second"
|
781 |
msgstr "Druhá"
|
782 |
|
783 |
-
#: app/features/events.php:
|
784 |
msgid "Third"
|
785 |
msgstr "Třetí"
|
786 |
|
787 |
-
#: app/features/events.php:
|
788 |
msgid "Fourth"
|
789 |
msgstr "Čtvrtá"
|
790 |
|
791 |
-
#: app/features/events.php:
|
792 |
msgid "Last"
|
793 |
msgstr "Poslední"
|
794 |
|
795 |
-
#: app/features/events.php:
|
796 |
msgid "Ends Repeat"
|
797 |
msgstr "Ukončení opakování"
|
798 |
|
799 |
-
#: app/features/events.php:
|
800 |
msgid "Never"
|
801 |
msgstr "Nikdy"
|
802 |
|
803 |
# Možná Zapnuto
|
804 |
-
#: app/features/events.php:
|
805 |
msgid "On"
|
806 |
msgstr "Na"
|
807 |
|
808 |
-
#: app/features/events.php:
|
809 |
msgid "After"
|
810 |
msgstr "Po"
|
811 |
|
812 |
-
#: app/features/events.php:
|
813 |
#: app/features/fes/form.php:637 app/features/fes/form.php:640
|
814 |
msgid "Occurrences times"
|
815 |
msgstr "Časy výskytu"
|
816 |
|
817 |
-
#: app/features/events.php:
|
818 |
msgid ""
|
819 |
"The event will finish after certain repeats. For example if you set it to "
|
820 |
"10, the event will finish after 10 repeats."
|
@@ -822,39 +823,39 @@ msgstr ""
|
|
822 |
"Událost bude ukončena po určitých opakováních. Pokud například nastavíte "
|
823 |
"hodnotu 10, událost skončí po 10 opakováních."
|
824 |
|
825 |
-
#: app/features/events.php:
|
826 |
#, fuzzy
|
827 |
#| msgid "Next Occurrence of Other Events"
|
828 |
msgid "Show only one occurrence of this event"
|
829 |
msgstr "Další výskyt dalších událostí"
|
830 |
|
831 |
-
#: app/features/events.php:
|
832 |
-
#: app/features/events.php:
|
833 |
-
#: app/features/ix.php:
|
834 |
-
#: app/features/mec/settings.php:664 app/libraries/main.php:
|
835 |
#: app/widgets/single.php:103
|
836 |
msgid "Event Cost"
|
837 |
msgstr "Cena události"
|
838 |
|
839 |
-
#: app/features/events.php:
|
840 |
msgid "Exceptional Days (Exclude Dates)"
|
841 |
msgstr "Výjimečné dny (vyjma dat)"
|
842 |
|
843 |
-
#: app/features/events.php:
|
844 |
msgid "Exclude certain days"
|
845 |
msgstr "Vyloučit určité dny"
|
846 |
|
847 |
-
#: app/features/events.php:
|
848 |
-
#: app/features/fes.php:223 app/features/mec/booking.php:
|
849 |
-
#: app/features/profile/profile.php:53 app/libraries/main.php:
|
850 |
-
#: app/libraries/main.php:
|
851 |
#: app/modules/next-event/details.php:93 app/skins/single.php:648
|
852 |
-
#: app/skins/single/default.php:85 app/skins/single/default.php:
|
853 |
-
#: app/skins/single/m1.php:20 app/skins/single/modern.php:
|
854 |
msgid "Date"
|
855 |
msgstr "Datum"
|
856 |
|
857 |
-
#: app/features/events.php:
|
858 |
msgid ""
|
859 |
"Exclude certain days from event occurrence dates. Please note that you can "
|
860 |
"exclude only single day occurrences and you cannot exclude one day from "
|
@@ -864,15 +865,15 @@ msgstr ""
|
|
864 |
"můžete vyloučit pouze výskyty za jeden den a nelze vyloučit jeden den z "
|
865 |
"vícedenních výskytů."
|
866 |
|
867 |
-
#: app/features/events.php:
|
868 |
msgid "Day 1"
|
869 |
msgstr "Den 1"
|
870 |
|
871 |
-
#: app/features/events.php:
|
872 |
msgid "Add Day"
|
873 |
msgstr "Přidat den"
|
874 |
|
875 |
-
#: app/features/events.php:
|
876 |
msgid ""
|
877 |
"Add new days for schedule. For example if your event is multiple days, you "
|
878 |
"can add a different schedule for each day!"
|
@@ -880,89 +881,89 @@ msgstr ""
|
|
880 |
"Přidat nové dny pro rozvrh. Pokud je například vaše akce vícedenní, můžete "
|
881 |
"pro každý den přidat jiný rozvrh!"
|
882 |
|
883 |
-
#: app/features/events.php:
|
884 |
#, php-format
|
885 |
msgid "Day %s"
|
886 |
msgstr "Den %s"
|
887 |
|
888 |
-
#: app/features/events.php:
|
889 |
-
#: app/features/events.php:
|
890 |
-
#: app/features/events.php:
|
891 |
-
#: app/features/events.php:
|
892 |
-
#: app/features/events.php:
|
893 |
-
#: app/features/fes/form.php:236 app/features/ix.php:
|
894 |
-
#: app/features/ix.php:
|
895 |
-
#: app/features/mec/booking.php:
|
896 |
msgid "Title"
|
897 |
msgstr "Název"
|
898 |
|
899 |
-
#: app/features/events.php:
|
900 |
-
#: app/features/events.php:
|
901 |
-
#: app/features/events.php:
|
902 |
-
#: app/features/events.php:
|
903 |
-
#: app/features/events.php:
|
904 |
-
#: app/features/events.php:
|
905 |
-
#: app/features/mec/booking.php:
|
906 |
-
#: app/features/mec/booking.php:
|
907 |
-
#: app/libraries/main.php:
|
908 |
-
#: app/libraries/main.php:
|
909 |
-
#: app/libraries/main.php:
|
910 |
-
#: app/libraries/main.php:
|
911 |
-
#: app/libraries/main.php:
|
912 |
-
#: app/libraries/main.php:
|
913 |
-
#: app/libraries/main.php:
|
914 |
msgid "Remove"
|
915 |
msgstr "Odstranit"
|
916 |
|
917 |
-
#: app/features/events.php:
|
918 |
msgid "Add new hourly schedule row"
|
919 |
msgstr "Přidejte nový řádek rozvrhu hodin"
|
920 |
|
921 |
-
#: app/features/events.php:
|
922 |
-
#: app/features/events.php:
|
923 |
msgid "From e.g. 8:15"
|
924 |
msgstr "Od např. 8:15"
|
925 |
|
926 |
-
#: app/features/events.php:
|
927 |
-
#: app/features/events.php:
|
928 |
msgid "To e.g. 8:45"
|
929 |
msgstr "Do např. 8:45"
|
930 |
|
931 |
-
#: app/features/events.php:
|
932 |
-
#: app/features/events.php:
|
933 |
-
#: app/features/events.php:
|
934 |
msgid "Description"
|
935 |
msgstr "Popis"
|
936 |
|
937 |
-
#: app/features/events.php:
|
938 |
-
#: app/features/events.php:
|
939 |
#: app/features/mec.php:411 app/features/mec/modules.php:52
|
940 |
#: app/features/mec/settings.php:712 app/features/speakers.php:62
|
941 |
-
#: app/libraries/main.php:565 app/libraries/main.php:
|
942 |
#: app/modules/speakers/details.php:18
|
943 |
msgid "Speakers"
|
944 |
msgstr "Řečníci"
|
945 |
|
946 |
-
#: app/features/events.php:
|
947 |
msgid "New Day"
|
948 |
msgstr "Nový den"
|
949 |
|
950 |
-
#: app/features/events.php:
|
951 |
#: app/features/mec/settings.php:658
|
952 |
msgid "Event Links"
|
953 |
msgstr "Odkazy na událost"
|
954 |
|
955 |
-
#: app/features/events.php:
|
956 |
-
#: app/features/fes/form.php:706 app/libraries/main.php:
|
957 |
msgid "Event Link"
|
958 |
msgstr "Odkaz na událost"
|
959 |
|
960 |
-
#: app/features/events.php:
|
961 |
#: app/features/fes/form.php:707 app/features/fes/form.php:712
|
962 |
msgid "eg. http://yoursite.com/your-event"
|
963 |
msgstr "např. http://yoursite.com/vase-udalost"
|
964 |
|
965 |
-
#: app/features/events.php:
|
966 |
msgid ""
|
967 |
"If you fill it, it will be replaced instead of default event page link. "
|
968 |
"Insert full link including http(s):// - Also, if you use advertising URL, "
|
@@ -972,32 +973,32 @@ msgstr ""
|
|
972 |
"Vložte úplný odkaz včetně http (s): // - Pokud používáte reklamní adresu "
|
973 |
"URL, můžete také použít zkracovač URL"
|
974 |
|
975 |
-
#: app/features/events.php:
|
976 |
msgid "URL Shortener"
|
977 |
msgstr "Zkracovač URL"
|
978 |
|
979 |
-
#: app/features/events.php:
|
980 |
-
#: app/features/fes/form.php:711 app/libraries/main.php:
|
981 |
#: app/skins/single.php:673 app/skins/single/default.php:140
|
982 |
-
#: app/skins/single/default.php:
|
983 |
-
#: app/skins/single/m2.php:
|
984 |
#: app/widgets/single.php:107
|
985 |
msgid "More Info"
|
986 |
msgstr "Více info"
|
987 |
|
988 |
-
#: app/features/events.php:
|
989 |
msgid "More Information"
|
990 |
msgstr "Více informací"
|
991 |
|
992 |
-
#: app/features/events.php:
|
993 |
msgid "Current Window"
|
994 |
msgstr "Aktuální okno"
|
995 |
|
996 |
-
#: app/features/events.php:
|
997 |
msgid "New Window"
|
998 |
msgstr "Nové okno"
|
999 |
|
1000 |
-
#: app/features/events.php:
|
1001 |
msgid ""
|
1002 |
"If you fill it, it will be shown in event details page as an optional link. "
|
1003 |
"Insert full link including http(s)://"
|
@@ -1005,18 +1006,18 @@ msgstr ""
|
|
1005 |
"Pokud ji vyplníte, zobrazí se jako volitelný odkaz na stránce s podrobnostmi "
|
1006 |
"o události. Vložte celý odkaz včetně http (s): //"
|
1007 |
|
1008 |
-
#: app/features/events.php:
|
1009 |
msgid "Total booking limits"
|
1010 |
msgstr "Celkové limity rezervace"
|
1011 |
|
1012 |
-
#: app/features/events.php:
|
1013 |
-
#: app/features/events.php:
|
1014 |
#: app/modules/booking/steps/tickets.php:40
|
1015 |
#: app/skins/available_spot/tpl.php:158
|
1016 |
msgid "Unlimited"
|
1017 |
msgstr "Neomezené"
|
1018 |
|
1019 |
-
#: app/features/events.php:
|
1020 |
msgid ""
|
1021 |
"If you want to set a limit to all tickets, uncheck this checkbox and put a "
|
1022 |
"limitation number."
|
@@ -1024,33 +1025,33 @@ msgstr ""
|
|
1024 |
"Pokud chcete nastavit limit na všechny lístky, zrušte zaškrtnutí tohoto "
|
1025 |
"políčka a zadejte číslo omezení."
|
1026 |
|
1027 |
-
#: app/features/events.php:
|
1028 |
msgid "Read About A Booking System"
|
1029 |
msgstr "Přečtěte si o rezervačním systému"
|
1030 |
|
1031 |
-
#: app/features/events.php:
|
1032 |
msgid "100"
|
1033 |
msgstr "100"
|
1034 |
|
1035 |
-
#: app/features/events.php:
|
1036 |
msgid "Total user booking limits"
|
1037 |
msgstr "Celkové limity rezervace uživatelů"
|
1038 |
|
1039 |
-
#: app/features/events.php:
|
1040 |
-
#: app/features/events.php:
|
1041 |
msgid "Inherit from global options"
|
1042 |
msgstr "Zdědí z globálních možností"
|
1043 |
|
1044 |
-
#: app/features/events.php:
|
1045 |
msgid "12"
|
1046 |
msgstr "12"
|
1047 |
|
1048 |
-
#: app/features/events.php:
|
1049 |
-
#: app/libraries/main.php:
|
1050 |
msgid "Tickets"
|
1051 |
msgstr "Vstupenky"
|
1052 |
|
1053 |
-
#: app/features/events.php:
|
1054 |
msgid ""
|
1055 |
"You're translating an event so MEC will use the original event for tickets "
|
1056 |
"and booking. You can only translate the ticket name and description. Please "
|
@@ -1060,98 +1061,98 @@ msgstr ""
|
|
1060 |
"vstupenek a rezervace. Můžete přeložit pouze název a popis vstupenky. Prosím "
|
1061 |
"definujte určité vstupenky, které jste definovali v původní události."
|
1062 |
|
1063 |
-
#: app/features/events.php:
|
1064 |
#, fuzzy
|
1065 |
#| msgid "Ticket"
|
1066 |
msgid "Add Ticket"
|
1067 |
msgstr "Vstupenka"
|
1068 |
|
1069 |
-
#: app/features/events.php:
|
1070 |
msgid "Ticket Name"
|
1071 |
msgstr "Název vstupenky"
|
1072 |
|
1073 |
-
#: app/features/events.php:
|
1074 |
-
#: app/features/events.php:
|
1075 |
-
#: app/features/ix.php:
|
1076 |
msgid "Start Time"
|
1077 |
msgstr "Začátek"
|
1078 |
|
1079 |
-
#: app/features/events.php:
|
1080 |
-
#: app/features/events.php:
|
1081 |
-
#: app/features/ix.php:
|
1082 |
msgid "End Time"
|
1083 |
msgstr "Konec"
|
1084 |
|
1085 |
-
#: app/features/events.php:
|
1086 |
-
#: app/features/events.php:
|
1087 |
-
#: app/features/events.php:
|
1088 |
-
#: app/features/events.php:
|
1089 |
-
#: app/features/events.php:
|
1090 |
-
#: app/features/events.php:
|
1091 |
-
#: app/features/mec/booking.php:
|
1092 |
-
#: app/features/mec/booking.php:
|
1093 |
msgid "Price"
|
1094 |
msgstr "Cena"
|
1095 |
|
1096 |
-
#: app/features/events.php:
|
1097 |
msgid "Insert 0 for free ticket. Only numbers please."
|
1098 |
msgstr "Vložte 0 pro vstupenku zdarma. Prosím pouze čísla."
|
1099 |
|
1100 |
-
#: app/features/events.php:
|
1101 |
-
#: app/features/events.php:
|
1102 |
msgid "Price Label"
|
1103 |
msgstr "Cenový štítek"
|
1104 |
|
1105 |
-
#: app/features/events.php:
|
1106 |
msgid "For showing on website. e.g. $15"
|
1107 |
msgstr "Pro zobrazení na webu. např. 15 $"
|
1108 |
|
1109 |
-
#: app/features/events.php:
|
1110 |
msgid "Available Tickets"
|
1111 |
msgstr "Dostupné vstupenky"
|
1112 |
|
1113 |
-
#: app/features/events.php:
|
1114 |
#, fuzzy
|
1115 |
#| msgid "Maximum Per Ticket"
|
1116 |
msgid "Minimum Ticket e.g. 3"
|
1117 |
msgstr "Maximum na jednu vstupenku"
|
1118 |
|
1119 |
-
#: app/features/events.php:
|
1120 |
#, fuzzy
|
1121 |
#| msgid "Maximum Per Ticket"
|
1122 |
msgid "MinimumTicket"
|
1123 |
msgstr "Maximum na jednu vstupenku"
|
1124 |
|
1125 |
-
#: app/features/events.php:
|
1126 |
msgid "Set a number for the minimum ticket reservation"
|
1127 |
msgstr ""
|
1128 |
|
1129 |
-
#: app/features/events.php:
|
1130 |
msgid "e.g. 0"
|
1131 |
msgstr ""
|
1132 |
|
1133 |
-
#: app/features/events.php:
|
1134 |
#, fuzzy
|
1135 |
#| msgid "Days"
|
1136 |
msgid "Day"
|
1137 |
msgstr "Dny"
|
1138 |
|
1139 |
-
#: app/features/events.php:
|
1140 |
msgid "Hour"
|
1141 |
msgstr ""
|
1142 |
|
1143 |
-
#: app/features/events.php:
|
1144 |
#, php-format
|
1145 |
msgid "Stop selling ticket %s before event start."
|
1146 |
msgstr ""
|
1147 |
|
1148 |
-
#: app/features/events.php:
|
1149 |
msgid "Price per Date"
|
1150 |
msgstr "Cena za datum"
|
1151 |
|
1152 |
-
#: app/features/events.php:
|
1153 |
-
#: app/features/events.php:
|
1154 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1155 |
#: app/features/mec/meta_boxes/search_form.php:66
|
1156 |
#: app/features/mec/meta_boxes/search_form.php:128
|
1157 |
#: app/features/mec/meta_boxes/search_form.php:190
|
@@ -1163,29 +1164,29 @@ msgstr "Cena za datum"
|
|
1163 |
#: app/features/mec/meta_boxes/search_form.php:549
|
1164 |
#: app/features/mec/meta_boxes/search_form.php:610
|
1165 |
#: app/features/mec/meta_boxes/search_form.php:707
|
1166 |
-
#: app/features/mec/settings.php:840 app/features/mec/single.php:
|
1167 |
-
#: app/libraries/skins.php:
|
1168 |
msgid "Label"
|
1169 |
msgstr "Štítek"
|
1170 |
|
1171 |
-
#: app/features/events.php:
|
1172 |
msgid "Fees"
|
1173 |
msgstr "Poplatky"
|
1174 |
|
1175 |
-
#: app/features/events.php:
|
1176 |
-
#: app/features/mec/booking.php:
|
1177 |
msgid "Fee Title"
|
1178 |
msgstr "Název poplatku"
|
1179 |
|
1180 |
-
#: app/features/events.php:
|
1181 |
-
#: app/features/events.php:
|
1182 |
-
#: app/features/mec/booking.php:
|
1183 |
-
#: app/features/mec/booking.php:
|
1184 |
msgid "Amount"
|
1185 |
msgstr "Množství"
|
1186 |
|
1187 |
-
#: app/features/events.php:
|
1188 |
-
#: app/features/mec/booking.php:
|
1189 |
msgid ""
|
1190 |
"Fee amount, considered as fixed amount if you set the type to amount "
|
1191 |
"otherwise considered as percentage"
|
@@ -1193,85 +1194,85 @@ msgstr ""
|
|
1193 |
"Výše poplatku, je považovaná za pevnou částku, pokud nastavíte typ na částku "
|
1194 |
"odpovídající procentuální hodnotě"
|
1195 |
|
1196 |
-
#: app/features/events.php:
|
1197 |
-
#: app/features/mec/booking.php:
|
1198 |
msgid "Percent"
|
1199 |
msgstr "Procent"
|
1200 |
|
1201 |
-
#: app/features/events.php:
|
1202 |
-
#: app/features/mec/booking.php:
|
1203 |
msgid "Amount (Per Ticket)"
|
1204 |
msgstr "Částka (za vstupenku)"
|
1205 |
|
1206 |
-
#: app/features/events.php:
|
1207 |
-
#: app/features/mec/booking.php:
|
1208 |
msgid "Amount (Per Booking)"
|
1209 |
msgstr "Částka (za rezervaci)"
|
1210 |
|
1211 |
-
#: app/features/events.php:
|
1212 |
msgid "Ticket Variations / Options"
|
1213 |
msgstr "Varianty vstupenky / možnosti"
|
1214 |
|
1215 |
-
#: app/features/events.php:
|
1216 |
-
#: app/features/mec/booking.php:
|
1217 |
msgid "Option Price"
|
1218 |
msgstr "Možnosti ceny"
|
1219 |
|
1220 |
-
#: app/features/events.php:
|
1221 |
-
#: app/features/events.php:
|
1222 |
-
#: app/features/mec/booking.php:
|
1223 |
-
#: app/features/mec/booking.php:
|
1224 |
msgid "Maximum Per Ticket"
|
1225 |
msgstr "Maximum na jednu vstupenku"
|
1226 |
|
1227 |
-
#: app/features/events.php:
|
1228 |
-
#: app/features/mec/booking.php:
|
1229 |
msgid "Maximum Per Ticket. Leave it blank for unlimited."
|
1230 |
msgstr "Maximum na jednu vstupenku. Ponechte to prázdné pro neomezené."
|
1231 |
|
1232 |
-
#: app/features/events.php:
|
1233 |
-
#: app/libraries/main.php:
|
1234 |
msgid "MEC Name"
|
1235 |
msgstr "MEC Jméno"
|
1236 |
|
1237 |
-
#: app/features/events.php:
|
1238 |
-
#: app/libraries/main.php:
|
1239 |
msgid "MEC Email"
|
1240 |
msgstr "MEC Email"
|
1241 |
|
1242 |
-
#: app/features/events.php:
|
1243 |
-
#: app/libraries/main.php:
|
1244 |
msgid "Text"
|
1245 |
msgstr "Text"
|
1246 |
|
1247 |
-
#: app/features/events.php:
|
1248 |
#: app/features/organizers.php:103 app/features/organizers.php:148
|
1249 |
#: app/features/speakers.php:119 app/features/speakers.php:192
|
1250 |
-
#: app/features/speakers.php:271 app/libraries/main.php:
|
1251 |
msgid "Tel"
|
1252 |
msgstr "Tel"
|
1253 |
|
1254 |
-
#: app/features/events.php:
|
1255 |
-
#: app/libraries/main.php:
|
1256 |
msgid "File"
|
1257 |
msgstr "Soubor"
|
1258 |
|
1259 |
-
#: app/features/events.php:
|
1260 |
-
#: app/libraries/main.php:
|
1261 |
msgid "Textarea"
|
1262 |
msgstr "Plocha textu"
|
1263 |
|
1264 |
-
#: app/features/events.php:
|
1265 |
-
#: app/libraries/main.php:
|
1266 |
msgid "Checkboxes"
|
1267 |
msgstr "Zatržítko"
|
1268 |
|
1269 |
-
#: app/features/events.php:
|
1270 |
-
#: app/libraries/main.php:
|
1271 |
msgid "Radio Buttons"
|
1272 |
msgstr "Přepínače"
|
1273 |
|
1274 |
-
#: app/features/events.php:
|
1275 |
#: app/features/mec/meta_boxes/search_form.php:34
|
1276 |
#: app/features/mec/meta_boxes/search_form.php:41
|
1277 |
#: app/features/mec/meta_boxes/search_form.php:48
|
@@ -1347,50 +1348,50 @@ msgstr "Přepínače"
|
|
1347 |
#: app/features/mec/meta_boxes/search_form.php:696
|
1348 |
#: app/features/mec/meta_boxes/search_form.php:703
|
1349 |
#: app/features/mec/meta_boxes/search_form.php:710
|
1350 |
-
#: app/features/mec/meta_boxes/search_form.php:717 app/libraries/main.php:
|
1351 |
msgid "Dropdown"
|
1352 |
msgstr "Rozbalovací"
|
1353 |
|
1354 |
-
#: app/features/events.php:
|
1355 |
-
#: app/libraries/main.php:
|
1356 |
msgid "Agreement"
|
1357 |
msgstr "Smlouva"
|
1358 |
|
1359 |
-
#: app/features/events.php:
|
1360 |
-
#: app/libraries/main.php:
|
1361 |
msgid "Paragraph"
|
1362 |
msgstr "Paragraf"
|
1363 |
|
1364 |
-
#: app/features/events.php:
|
1365 |
-
#: app/features/events.php:
|
1366 |
#, php-format
|
1367 |
msgid "Show all %s"
|
1368 |
msgstr "Ukázat všechny %s"
|
1369 |
|
1370 |
-
#: app/features/events.php:
|
1371 |
msgid "labels"
|
1372 |
msgstr "štítky"
|
1373 |
|
1374 |
-
#: app/features/events.php:
|
1375 |
msgid "locations"
|
1376 |
msgstr "umístění"
|
1377 |
|
1378 |
-
#: app/features/events.php:
|
1379 |
msgid "organizers"
|
1380 |
msgstr "organizátoři"
|
1381 |
|
1382 |
-
#: app/features/events.php:
|
1383 |
#, fuzzy
|
1384 |
#| msgid "Attendees Limit"
|
1385 |
msgid "Attendees List"
|
1386 |
msgstr "Limit účastníků"
|
1387 |
|
1388 |
-
#: app/features/events.php:
|
1389 |
-
#: app/features/events.php:
|
1390 |
-
#: app/features/ix.php:
|
1391 |
-
#: app/features/locations.php:
|
1392 |
-
#: app/features/locations.php:
|
1393 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1394 |
#: app/features/mec/meta_boxes/search_form.php:38
|
1395 |
#: app/features/mec/meta_boxes/search_form.php:100
|
1396 |
#: app/features/mec/meta_boxes/search_form.php:162
|
@@ -1402,86 +1403,86 @@ msgstr "Limit účastníků"
|
|
1402 |
#: app/features/mec/meta_boxes/search_form.php:521
|
1403 |
#: app/features/mec/meta_boxes/search_form.php:582
|
1404 |
#: app/features/mec/meta_boxes/search_form.php:679
|
1405 |
-
#: app/features/mec/settings.php:814 app/features/mec/single.php:
|
1406 |
-
#: app/features/search.php:73 app/libraries/main.php:
|
1407 |
-
#: app/libraries/main.php:
|
1408 |
-
#: app/skins/single.php:493 app/skins/single.php:
|
1409 |
-
#: app/skins/single/default.php:176 app/skins/single/default.php:
|
1410 |
-
#: app/skins/single/m1.php:
|
1411 |
-
#: app/skins/single/modern.php:
|
1412 |
msgid "Location"
|
1413 |
msgstr "Umístění"
|
1414 |
|
1415 |
-
#: app/features/events.php:
|
1416 |
msgid "Repeat"
|
1417 |
msgstr "Opakovat"
|
1418 |
|
1419 |
-
#: app/features/events.php:
|
1420 |
msgid "Author"
|
1421 |
msgstr "Autor"
|
1422 |
|
1423 |
-
#: app/features/events.php:
|
1424 |
msgid "iCal Export"
|
1425 |
msgstr "iCal Export"
|
1426 |
|
1427 |
-
#: app/features/events.php:
|
1428 |
msgid "CSV Export"
|
1429 |
msgstr "CSV Export"
|
1430 |
|
1431 |
-
#: app/features/events.php:
|
1432 |
msgid "MS Excel Export"
|
1433 |
msgstr "MS Excel Export"
|
1434 |
|
1435 |
-
#: app/features/events.php:
|
1436 |
msgid "XML Export"
|
1437 |
msgstr "XML Export"
|
1438 |
|
1439 |
-
#: app/features/events.php:
|
1440 |
msgid "JSON Export"
|
1441 |
msgstr "JSON Export"
|
1442 |
|
1443 |
-
#: app/features/events.php:
|
1444 |
-
#: app/features/events.php:
|
1445 |
msgid "Duplicate"
|
1446 |
msgstr "Duplikát"
|
1447 |
|
1448 |
-
#: app/features/events.php:
|
1449 |
-
#: app/features/fes.php:223 app/features/ix.php:
|
1450 |
-
#: app/features/labels.php:177 app/features/locations.php:
|
1451 |
#: app/features/organizers.php:203 app/features/speakers.php:268
|
1452 |
msgid "ID"
|
1453 |
msgstr "ID"
|
1454 |
|
1455 |
-
#: app/features/events.php:
|
1456 |
-
#: app/features/ix.php:
|
1457 |
msgid "Link"
|
1458 |
msgstr "Odkaz"
|
1459 |
|
1460 |
-
#: app/features/events.php:
|
1461 |
#, php-format
|
1462 |
msgid "%s Tel"
|
1463 |
msgstr "%s Tel"
|
1464 |
|
1465 |
-
#: app/features/events.php:
|
1466 |
#, php-format
|
1467 |
msgid "%s Email"
|
1468 |
msgstr "%s Email"
|
1469 |
|
1470 |
-
#: app/features/events.php:
|
1471 |
-
#: app/features/profile/profile.php:186 app/libraries/main.php:
|
1472 |
-
#: app/libraries/main.php:
|
1473 |
msgid "Ticket"
|
1474 |
msgstr "Vstupenka"
|
1475 |
|
1476 |
-
#: app/features/events.php:
|
1477 |
msgid "Variations"
|
1478 |
msgstr "Variace"
|
1479 |
|
1480 |
-
#: app/features/events.php:
|
1481 |
msgid "Unknown"
|
1482 |
msgstr "Neznámý"
|
1483 |
|
1484 |
-
#: app/features/events.php:
|
1485 |
#, fuzzy
|
1486 |
#| msgid "Attendees Form"
|
1487 |
msgid "No Attendees Found!"
|
@@ -1518,7 +1519,7 @@ msgstr "Prosím %s/%s v pořadí pro správu událostí."
|
|
1518 |
msgid "The event removed!"
|
1519 |
msgstr "Událost byla odebrána!"
|
1520 |
|
1521 |
-
#: app/features/fes.php:223 app/libraries/main.php:
|
1522 |
msgid "Transaction ID"
|
1523 |
msgstr "ID transakce"
|
1524 |
|
@@ -1565,43 +1566,43 @@ msgid "Go back to events list"
|
|
1565 |
msgstr "Přejít zpět na seznam událostí"
|
1566 |
|
1567 |
#: app/features/fes/form.php:366
|
1568 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1569 |
#: app/libraries/main.php:410
|
1570 |
msgid "Monday"
|
1571 |
msgstr "Pondělí"
|
1572 |
|
1573 |
#: app/features/fes/form.php:367
|
1574 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1575 |
#: app/libraries/main.php:410
|
1576 |
msgid "Tuesday"
|
1577 |
msgstr "Úterý"
|
1578 |
|
1579 |
#: app/features/fes/form.php:368
|
1580 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1581 |
#: app/libraries/main.php:410
|
1582 |
msgid "Wednesday"
|
1583 |
msgstr "Středa"
|
1584 |
|
1585 |
#: app/features/fes/form.php:369
|
1586 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1587 |
#: app/libraries/main.php:410
|
1588 |
msgid "Thursday"
|
1589 |
msgstr "Čtvrtek"
|
1590 |
|
1591 |
#: app/features/fes/form.php:370
|
1592 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1593 |
#: app/libraries/main.php:410
|
1594 |
msgid "Friday"
|
1595 |
msgstr "Pátek"
|
1596 |
|
1597 |
#: app/features/fes/form.php:371
|
1598 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1599 |
#: app/libraries/main.php:410
|
1600 |
msgid "Saturday"
|
1601 |
msgstr "Sobota"
|
1602 |
|
1603 |
#: app/features/fes/form.php:372
|
1604 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1605 |
#: app/libraries/main.php:410
|
1606 |
msgid "Sunday"
|
1607 |
msgstr "Neděle"
|
@@ -1645,10 +1646,10 @@ msgstr "Odebrat obrázek"
|
|
1645 |
|
1646 |
#: app/features/fes/form.php:783 app/features/labels.php:61
|
1647 |
#: app/features/labels.php:221 app/features/mec.php:404
|
1648 |
-
#: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:
|
1649 |
#: app/skins/single.php:702 app/skins/single/default.php:155
|
1650 |
-
#: app/skins/single/default.php:
|
1651 |
-
#: app/skins/single/modern.php:
|
1652 |
msgid "Labels"
|
1653 |
msgstr "Štítky"
|
1654 |
|
@@ -1731,7 +1732,7 @@ msgstr "Plugin třetí strany je neplatný!"
|
|
1731 |
msgid "Both of API key and Calendar ID are required!"
|
1732 |
msgstr "Obě hodnoty: klíč API a ID kalendáře jsou povinné!"
|
1733 |
|
1734 |
-
#: app/features/ix.php:2770 app/features/ix.php:3189 app/features/ix.php:
|
1735 |
msgid "Please select some events to import!"
|
1736 |
msgstr "Vyberte události, které chcete importovat!"
|
1737 |
|
@@ -1743,51 +1744,51 @@ msgstr "Obě hodnoty: klíč API a skupina URL jsou povinné!"
|
|
1743 |
msgid "Check at Meetup"
|
1744 |
msgstr "Ověřit Meetup"
|
1745 |
|
1746 |
-
#: app/features/ix.php:
|
1747 |
msgid "Organizer Tel"
|
1748 |
msgstr "Organizátor Tel"
|
1749 |
|
1750 |
-
#: app/features/ix.php:
|
1751 |
msgid "Organizer Email"
|
1752 |
msgstr "Organizátor Email"
|
1753 |
|
1754 |
# Client Secret dle kontextu
|
1755 |
-
#: app/features/ix.php:
|
1756 |
msgid "All of Client ID, Client Secret and Calendar ID are required!"
|
1757 |
msgstr ""
|
1758 |
"Vyžadují se všechny klientské ID, tajné informace klienta a ID kalendáře!"
|
1759 |
|
1760 |
-
#: app/features/ix.php:
|
1761 |
#, php-format
|
1762 |
msgid "All seems good! Please click %s for authenticating your app."
|
1763 |
msgstr "Vše vypadá dobře! Klikněte na % s pro ověření vaší aplikace."
|
1764 |
|
1765 |
-
#: app/features/ix.php:
|
1766 |
msgid "All of Client App, Client Secret and Calendar ID are required!"
|
1767 |
msgstr ""
|
1768 |
"Všechny klientské aplikace, tajné informace klienta a ID kalendáře jsou "
|
1769 |
"povinné!"
|
1770 |
|
1771 |
-
#: app/features/ix.php:
|
1772 |
#, php-format
|
1773 |
msgid "%s events added to Google Calendar successfully."
|
1774 |
msgstr "% s události byly přidané do Google kalendáře úspěšně."
|
1775 |
|
1776 |
-
#: app/features/ix.php:
|
1777 |
#, php-format
|
1778 |
msgid "%s previously added events get updated."
|
1779 |
msgstr "% s dříve přidané události byly aktualizovány."
|
1780 |
|
1781 |
-
#: app/features/ix.php:
|
1782 |
#, php-format
|
1783 |
msgid "%s events failed to add for following reasons: %s"
|
1784 |
msgstr "% s události se nepodařilo přidat z následujících důvodů: % s"
|
1785 |
|
1786 |
-
#: app/features/ix.php:
|
1787 |
msgid "Please insert your Facebook page's link."
|
1788 |
msgstr "Vložte prosím odkaz na svou stránku na Facebooku."
|
1789 |
|
1790 |
-
#: app/features/ix.php:
|
1791 |
msgid ""
|
1792 |
"We couldn't recognize your Facebook page. Please check it and provide us a "
|
1793 |
"valid Facebook page link."
|
@@ -1795,11 +1796,11 @@ msgstr ""
|
|
1795 |
"Vaši facebookovou stránku jsme nemohli rozpoznat. Zkontrolujte to a "
|
1796 |
"poskytněte nám platný odkaz na stránku Facebooku."
|
1797 |
|
1798 |
-
#: app/features/ix.php:
|
1799 |
msgid "Please insert your facebook page's link."
|
1800 |
msgstr "Vložte prosím odkaz na svou facebookovou stránku."
|
1801 |
|
1802 |
-
#: app/features/ix.php:
|
1803 |
msgid ""
|
1804 |
"We couldn't recognize your Facebook page. Please check it and provide us a "
|
1805 |
"valid facebook page link."
|
@@ -1868,7 +1869,7 @@ msgstr ""
|
|
1868 |
"Tímto se exportují všechna data vašich webových událostí do požadovaného "
|
1869 |
"formátu."
|
1870 |
|
1871 |
-
#: app/features/ix/export.php:25 app/features/mec/modules.php:
|
1872 |
msgid "iCal"
|
1873 |
msgstr "iCal"
|
1874 |
|
@@ -1977,9 +1978,9 @@ msgstr "Přepnout"
|
|
1977 |
msgid "Add to Google Calendar"
|
1978 |
msgstr "Přidat do Google kalendáře"
|
1979 |
|
1980 |
-
#: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:
|
1981 |
-
#: app/features/mec/modules.php:
|
1982 |
-
#: app/features/mec/settings.php:1054 app/features/mec/single.php:
|
1983 |
msgid "Checking ..."
|
1984 |
msgstr "Ověřování ..."
|
1985 |
|
@@ -2027,30 +2028,30 @@ msgid "ICS Feed"
|
|
2027 |
msgstr "ICS Feed"
|
2028 |
|
2029 |
#: app/features/ix/import.php:46 app/features/mec/booking.php:91
|
2030 |
-
#: app/features/mec/booking.php:
|
2031 |
-
#: app/features/mec/booking.php:
|
2032 |
#: app/features/mec/meta_boxes/display_options.php:176
|
2033 |
#: app/features/mec/meta_boxes/display_options.php:368
|
2034 |
-
#: app/features/mec/modules.php:70 app/features/mec/modules.php:
|
2035 |
-
#: app/features/mec/modules.php:
|
2036 |
#, php-format
|
2037 |
msgid "%s is required to use this feature."
|
2038 |
msgstr "% s je vyžadováno pro použití této funkce."
|
2039 |
|
2040 |
#: app/features/ix/import.php:46 app/features/ix/sync.php:22
|
2041 |
-
#: app/features/mec/booking.php:91 app/features/mec/booking.php:
|
2042 |
-
#: app/features/mec/booking.php:
|
2043 |
#: app/features/mec/meta_boxes/display_options.php:176
|
2044 |
#: app/features/mec/meta_boxes/display_options.php:368
|
2045 |
#: app/features/mec/meta_boxes/display_options.php:396
|
2046 |
#: app/features/mec/meta_boxes/display_options.php:536
|
2047 |
#: app/features/mec/meta_boxes/display_options.php:587
|
2048 |
#: app/features/mec/meta_boxes/display_options.php:694
|
2049 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2050 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2051 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2052 |
-
#: app/features/mec/modules.php:70 app/features/mec/modules.php:
|
2053 |
-
#: app/features/mec/modules.php:
|
2054 |
msgid "Pro version of Modern Events Calendar"
|
2055 |
msgstr "Pro verze doplňku Modern Events Calendar"
|
2056 |
|
@@ -2222,7 +2223,7 @@ msgid "Auto Synchronization"
|
|
2222 |
msgstr "Automatická synchronizace"
|
2223 |
|
2224 |
#: app/features/ix/sync.php:22
|
2225 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2226 |
#, php-format
|
2227 |
msgid "%s is required to use synchronization feature."
|
2228 |
msgstr "%s je vyžadováno pro použití vlastností synchronizace."
|
@@ -2391,11 +2392,11 @@ msgstr "Vybrat barvu štítku"
|
|
2391 |
#: app/features/mec/meta_boxes/display_options.php:401
|
2392 |
#: app/features/mec/meta_boxes/display_options.php:592
|
2393 |
#: app/features/mec/meta_boxes/display_options.php:642
|
2394 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2395 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2396 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2397 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2398 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2399 |
msgid "Style"
|
2400 |
msgstr "Styl"
|
2401 |
|
@@ -2419,7 +2420,7 @@ msgid "Featured"
|
|
2419 |
msgstr "Ztvárněná"
|
2420 |
|
2421 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2422 |
-
#: app/libraries/main.php:
|
2423 |
#: app/skins/available_spot/tpl.php:40 app/skins/carousel/render.php:46
|
2424 |
#: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:33
|
2425 |
#: app/skins/daily_view/render.php:29 app/skins/grid/render.php:55
|
@@ -2437,110 +2438,110 @@ msgstr "Zrušená"
|
|
2437 |
msgid "You can show featured and canceled events by a different style!"
|
2438 |
msgstr "Vybrané a zrušené události můžete zobrazit jiným stylem!"
|
2439 |
|
2440 |
-
#: app/features/labels.php:180 app/features/locations.php:
|
2441 |
#: app/features/organizers.php:206 app/features/speakers.php:272
|
2442 |
#: app/modules/booking/steps/tickets.php:38
|
2443 |
msgid "Count"
|
2444 |
msgstr "Spočítat"
|
2445 |
|
2446 |
# Nenanpadá mě správný český termín
|
2447 |
-
#: app/features/labels.php:181 app/features/locations.php:
|
2448 |
#: app/features/organizers.php:207
|
2449 |
msgid "Slug"
|
2450 |
msgstr "Slug"
|
2451 |
|
2452 |
-
#: app/features/labels.php:221 app/features/locations.php:
|
2453 |
#, php-format
|
2454 |
msgid "Event %s"
|
2455 |
msgstr "Událost %s"
|
2456 |
|
2457 |
#: app/features/locations.php:59 app/features/mec.php:405
|
2458 |
#: app/features/mec/dashboard.php:271 app/features/mec/meta_boxes/filter.php:96
|
2459 |
-
#: app/libraries/main.php:
|
2460 |
msgid "Locations"
|
2461 |
msgstr "Umístění"
|
2462 |
|
2463 |
-
#: app/features/locations.php:105 app/features/locations.php:
|
2464 |
-
#: app/features/locations.php:
|
2465 |
msgid "Address"
|
2466 |
msgstr "Adresa"
|
2467 |
|
2468 |
-
#: app/features/locations.php:108 app/features/locations.php:
|
2469 |
msgid "Enter the location address"
|
2470 |
msgstr "Vložit adresu místa"
|
2471 |
|
2472 |
-
#: app/features/locations.php:122 app/features/locations.php:
|
2473 |
-
#: app/features/locations.php:
|
2474 |
msgid "Latitude"
|
2475 |
msgstr "Zeměpisná šířka"
|
2476 |
|
2477 |
-
#: app/features/locations.php:125 app/features/locations.php:
|
2478 |
msgid "Geo latitude (Optional)"
|
2479 |
msgstr "Zeměpisná šířka (volitelné)"
|
2480 |
|
2481 |
-
#: app/features/locations.php:130 app/features/locations.php:
|
2482 |
-
#: app/features/locations.php:
|
2483 |
msgid "Longitude"
|
2484 |
msgstr "Zeměpisná délka"
|
2485 |
|
2486 |
-
#: app/features/locations.php:133 app/features/locations.php:
|
2487 |
msgid "Geo longitude (Optional)"
|
2488 |
msgstr "Zeměpisná délka (volitelné)"
|
2489 |
|
2490 |
-
#: app/features/locations.php:
|
2491 |
#: app/features/organizers.php:127 app/features/organizers.php:160
|
2492 |
#: app/features/speakers.php:167 app/features/speakers.php:216
|
2493 |
msgid "Thumbnail"
|
2494 |
msgstr "Náhled"
|
2495 |
|
2496 |
-
#: app/features/locations.php:
|
2497 |
#: app/features/organizers.php:132 app/features/organizers.php:163
|
2498 |
#: app/features/speakers.php:172 app/features/speakers.php:219
|
2499 |
msgid "Upload/Add image"
|
2500 |
msgstr "Nahrát / přidat obrázek"
|
2501 |
|
2502 |
-
#: app/features/locations.php:
|
2503 |
-
#: app/features/locations.php:
|
2504 |
#: app/features/organizers.php:133 app/features/organizers.php:164
|
2505 |
#: app/features/organizers.php:299 app/features/organizers.php:306
|
2506 |
#: app/features/speakers.php:173 app/features/speakers.php:220
|
2507 |
msgid "Remove image"
|
2508 |
msgstr "Odebrat obrázek"
|
2509 |
|
2510 |
-
#: app/features/locations.php:
|
2511 |
msgid "Hide location"
|
2512 |
msgstr "Skrýt místo"
|
2513 |
|
2514 |
-
#: app/features/locations.php:
|
2515 |
msgid "Insert a new location"
|
2516 |
msgstr "Vložit nové místo"
|
2517 |
|
2518 |
-
#: app/features/locations.php:
|
2519 |
msgid "Choose one of saved locations or insert new one below."
|
2520 |
msgstr "Vyberte jedno z uložených míst nebo vložte nové."
|
2521 |
|
2522 |
-
#: app/features/locations.php:
|
2523 |
msgid "Location Name"
|
2524 |
msgstr "Název místa"
|
2525 |
|
2526 |
-
#: app/features/locations.php:
|
2527 |
msgid "eg. City Hall"
|
2528 |
msgstr "např. Radnice"
|
2529 |
|
2530 |
-
#: app/features/locations.php:
|
2531 |
#: app/widgets/single.php:115
|
2532 |
msgid "Event Location"
|
2533 |
msgstr "Místo události"
|
2534 |
|
2535 |
-
#: app/features/locations.php:
|
2536 |
msgid "eg. City hall, Manhattan, New York"
|
2537 |
msgstr "např. Radnice, Dominikánská 2, Brno"
|
2538 |
|
2539 |
-
#: app/features/locations.php:
|
2540 |
msgid "Latitude/Longitude"
|
2541 |
msgstr "Zeměpisná šířka / délka"
|
2542 |
|
2543 |
-
#: app/features/locations.php:
|
2544 |
msgid ""
|
2545 |
"If you leave the latitude and longitude empty, Modern Events Calendar tries "
|
2546 |
"to convert the location address to geopoint, Latitude and Longitude are the "
|
@@ -2554,23 +2555,23 @@ msgstr ""
|
|
2554 |
"místo, použijte název místa, města, státu nebo adresy nebo klikněte na místo "
|
2555 |
"na mapě a vyhledejte souřadnice délky a šířky."
|
2556 |
|
2557 |
-
#: app/features/locations.php:
|
2558 |
msgid "Get Latitude and Longitude"
|
2559 |
msgstr "Získejte šířku a délku"
|
2560 |
|
2561 |
-
#: app/features/locations.php:
|
2562 |
msgid "Choose image"
|
2563 |
msgstr "Vyberte obrázek"
|
2564 |
|
2565 |
-
#: app/features/locations.php:
|
2566 |
msgid "Don't show map in single event page"
|
2567 |
msgstr "Nezobrazovat mapu na jednostránkové události"
|
2568 |
|
2569 |
-
#: app/features/locations.php:
|
2570 |
msgid "Other Locations"
|
2571 |
msgstr "Další místa"
|
2572 |
|
2573 |
-
#: app/features/locations.php:
|
2574 |
msgid ""
|
2575 |
"You can select extra locations in addition to main location if you like."
|
2576 |
msgstr "Pokud chcete, můžete kromě hlavního místa vybrat i další místa."
|
@@ -2592,7 +2593,7 @@ msgstr ""
|
|
2592 |
msgid "Troubleshooting"
|
2593 |
msgstr "Odstraňování problémů"
|
2594 |
|
2595 |
-
#: app/features/mec.php:256 app/libraries/notifications.php:
|
2596 |
#, php-format
|
2597 |
msgid "%s to %s"
|
2598 |
msgstr ""
|
@@ -2624,7 +2625,7 @@ msgstr "Podpora"
|
|
2624 |
|
2625 |
#: app/features/mec.php:406 app/features/mec/dashboard.php:278
|
2626 |
#: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
|
2627 |
-
#: app/libraries/main.php:
|
2628 |
msgid "Organizers"
|
2629 |
msgstr "Organizátoři"
|
2630 |
|
@@ -2736,24 +2737,24 @@ msgstr ""
|
|
2736 |
msgid "Search..."
|
2737 |
msgstr "Vyhledávání ..."
|
2738 |
|
2739 |
-
#: app/features/mec/booking.php:72 app/features/mec/booking.php:
|
2740 |
-
#: app/features/mec/booking.php:
|
2741 |
-
#: app/features/mec/booking.php:
|
2742 |
-
#: app/features/mec/booking.php:
|
2743 |
#: app/features/mec/messages.php:51 app/features/mec/messages.php:60
|
2744 |
#: app/features/mec/messages.php:94 app/features/mec/messages.php:103
|
2745 |
-
#: app/features/mec/modules.php:25 app/features/mec/modules.php:
|
2746 |
-
#: app/features/mec/modules.php:
|
2747 |
-
#: app/features/mec/modules.php:
|
2748 |
#: app/features/mec/notifications.php:816
|
2749 |
#: app/features/mec/notifications.php:828
|
2750 |
#: app/features/mec/notifications.php:924
|
2751 |
#: app/features/mec/notifications.php:938 app/features/mec/settings.php:39
|
2752 |
#: app/features/mec/settings.php:1003 app/features/mec/settings.php:1013
|
2753 |
#: app/features/mec/settings.php:1071 app/features/mec/settings.php:1085
|
2754 |
-
#: app/features/mec/single.php:17 app/features/mec/single.php:
|
2755 |
-
#: app/features/mec/single.php:
|
2756 |
-
#: app/features/mec/single.php:
|
2757 |
#: app/features/mec/styles.php:31 app/features/mec/styles.php:40
|
2758 |
#: app/features/mec/styles.php:77 app/features/mec/styles.php:86
|
2759 |
#: app/features/mec/styling.php:37 app/features/mec/styling.php:242
|
@@ -2775,7 +2776,7 @@ msgstr ""
|
|
2775 |
"přidá „platební brána“ a nová položka nabídky na řídícím panelu"
|
2776 |
|
2777 |
#: app/features/mec/booking.php:102 app/features/mec/booking.php:107
|
2778 |
-
#: app/features/mec/modules.php:
|
2779 |
msgid "Date Format"
|
2780 |
msgstr "Formát data"
|
2781 |
|
@@ -2787,10 +2788,10 @@ msgstr "Výchozí je Y-m-d"
|
|
2787 |
#: app/features/mec/meta_boxes/display_options.php:135
|
2788 |
#: app/features/mec/meta_boxes/display_options.php:349
|
2789 |
#: app/features/mec/meta_boxes/display_options.php:445
|
2790 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2791 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2792 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2793 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2794 |
msgid "Limit"
|
2795 |
msgstr "Limit"
|
2796 |
|
@@ -2916,11 +2917,15 @@ msgstr "Automatické potvrzení pro rezervace zdarma"
|
|
2916 |
msgid "Auto confirmation for paid bookings"
|
2917 |
msgstr "Automatické ověření pro placené rezervace"
|
2918 |
|
2919 |
-
#: app/features/mec/booking.php:
|
|
|
|
|
|
|
|
|
2920 |
msgid "Enable coupons module"
|
2921 |
msgstr "Povolit modul vstupenek"
|
2922 |
|
2923 |
-
#: app/features/mec/booking.php:
|
2924 |
msgid ""
|
2925 |
"After enabling and saving the settings,, you should reload the page to see a "
|
2926 |
"new menu on the Dashboard > Booking"
|
@@ -2928,39 +2933,39 @@ msgstr ""
|
|
2928 |
"Po povolení a uložení nastavení byste měli stránku znovu načíst a zobrazit "
|
2929 |
"novou nabídku na řídícím panelu > Rezervace"
|
2930 |
|
2931 |
-
#: app/features/mec/booking.php:
|
2932 |
msgid "Taxes / Fees"
|
2933 |
msgstr "Daně / poplatky"
|
2934 |
|
2935 |
-
#: app/features/mec/booking.php:
|
2936 |
msgid "Enable taxes / fees module"
|
2937 |
msgstr "Povolit modul daní / poplatků"
|
2938 |
|
2939 |
-
#: app/features/mec/booking.php:
|
2940 |
msgid "Add Fee"
|
2941 |
msgstr "Přidat poplatek"
|
2942 |
|
2943 |
-
#: app/features/mec/booking.php:
|
2944 |
msgid "Ticket Variations & Options"
|
2945 |
msgstr "Varianty a možnosti vstupenek"
|
2946 |
|
2947 |
-
#: app/features/mec/booking.php:
|
2948 |
msgid "Enable ticket options module"
|
2949 |
msgstr "Povolit modul možností vstupenek"
|
2950 |
|
2951 |
-
#: app/features/mec/booking.php:
|
2952 |
msgid "Add Variation / Option"
|
2953 |
msgstr "Přidat varianty / možnosti"
|
2954 |
|
2955 |
-
#: app/features/mec/booking.php:
|
2956 |
msgid "Enable Organizer Payment Module"
|
2957 |
msgstr "Povolit platební modul organizátora"
|
2958 |
|
2959 |
-
#: app/features/mec/booking.php:
|
2960 |
msgid "Organizer Payment"
|
2961 |
msgstr "Platba organizátora"
|
2962 |
|
2963 |
-
#: app/features/mec/booking.php:
|
2964 |
msgid ""
|
2965 |
"By enabling this module, organizers are able to insert their own payment "
|
2966 |
"credentials for enabled gateways per event and receive the payments directly!"
|
@@ -2968,32 +2973,32 @@ msgstr ""
|
|
2968 |
"Po aktivaci tohoto modulu mohou organizátoři vkládat své vlastní platební "
|
2969 |
"údaje pro povolené brány pro události a přijímat platby přímo!"
|
2970 |
|
2971 |
-
#: app/features/mec/booking.php:
|
2972 |
-
#: app/features/mec/modules.php:
|
2973 |
-
#: app/features/mec/settings.php:1049 app/features/mec/single.php:
|
2974 |
#: app/features/mec/styles.php:60 app/features/mec/styling.php:296
|
2975 |
msgid "Saved"
|
2976 |
msgstr "Uloženo"
|
2977 |
|
2978 |
-
#: app/features/mec/booking.php:
|
2979 |
-
#: app/features/mec/modules.php:
|
2980 |
-
#: app/features/mec/settings.php:1050 app/features/mec/single.php:
|
2981 |
#: app/features/mec/styles.php:61 app/features/mec/styling.php:297
|
2982 |
msgid "Settings Saved!"
|
2983 |
msgstr "Nastavení uložena!"
|
2984 |
|
2985 |
-
#: app/features/mec/booking.php:
|
2986 |
-
#: app/features/mec/modules.php:
|
2987 |
#: app/features/mec/notifications.php:905
|
2988 |
#: app/features/mec/notifications.php:927 app/features/mec/settings.php:1052
|
2989 |
-
#: app/features/mec/settings.php:1074 app/features/mec/single.php:
|
2990 |
-
#: app/features/mec/single.php:
|
2991 |
msgid "Verified"
|
2992 |
msgstr "Ověřeno"
|
2993 |
|
2994 |
-
#: app/features/mec/booking.php:
|
2995 |
#: app/features/mec/notifications.php:929 app/features/mec/settings.php:1076
|
2996 |
-
#: app/features/mec/single.php:
|
2997 |
msgid "Please Refresh Page"
|
2998 |
msgstr "Prosím obnovte stránku"
|
2999 |
|
@@ -3194,8 +3199,8 @@ msgstr "Vzhled"
|
|
3194 |
#: app/features/mec/meta_boxes/display_options.php:41
|
3195 |
#: app/features/mec/meta_boxes/display_options.php:218
|
3196 |
#: app/features/mec/meta_boxes/display_options.php:644
|
3197 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3198 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3199 |
#: app/features/mec/settings.php:267 app/features/mec/settings.php:291
|
3200 |
#: app/features/mec/settings.php:300 app/features/mec/settings.php:341
|
3201 |
#: app/features/mec/settings.php:365 app/features/mec/settings.php:374
|
@@ -3216,8 +3221,8 @@ msgstr "Minimální"
|
|
3216 |
#: app/features/mec/meta_boxes/display_options.php:221
|
3217 |
#: app/features/mec/meta_boxes/display_options.php:594
|
3218 |
#: app/features/mec/meta_boxes/display_options.php:646
|
3219 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3220 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3221 |
#: app/features/mec/settings.php:269 app/features/mec/settings.php:282
|
3222 |
#: app/features/mec/settings.php:293 app/features/mec/settings.php:303
|
3223 |
#: app/features/mec/settings.php:343 app/features/mec/settings.php:356
|
@@ -3244,11 +3249,11 @@ msgstr "Akordeon"
|
|
3244 |
#: app/features/mec/meta_boxes/display_options.php:231
|
3245 |
#: app/features/mec/meta_boxes/display_options.php:409
|
3246 |
#: app/features/mec/meta_boxes/display_options.php:701
|
3247 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3248 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3249 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3250 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3251 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3252 |
msgid "Today"
|
3253 |
msgstr "Dnes"
|
3254 |
|
@@ -3256,11 +3261,11 @@ msgstr "Dnes"
|
|
3256 |
#: app/features/mec/meta_boxes/display_options.php:232
|
3257 |
#: app/features/mec/meta_boxes/display_options.php:410
|
3258 |
#: app/features/mec/meta_boxes/display_options.php:702
|
3259 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3260 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3261 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3262 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3263 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3264 |
msgid "Tomorrow"
|
3265 |
msgstr "Zítra"
|
3266 |
|
@@ -3270,14 +3275,14 @@ msgstr "Zítra"
|
|
3270 |
#: app/features/mec/meta_boxes/display_options.php:477
|
3271 |
#: app/features/mec/meta_boxes/display_options.php:654
|
3272 |
#: app/features/mec/meta_boxes/display_options.php:703
|
3273 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3274 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3275 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3276 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3277 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
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 |
msgid "Start of Current Month"
|
3282 |
msgstr "Začátek aktuálního měsíce"
|
3283 |
|
@@ -3287,14 +3292,14 @@ msgstr "Začátek aktuálního měsíce"
|
|
3287 |
#: app/features/mec/meta_boxes/display_options.php:478
|
3288 |
#: app/features/mec/meta_boxes/display_options.php:655
|
3289 |
#: app/features/mec/meta_boxes/display_options.php:704
|
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 Next Month"
|
3299 |
msgstr "Začátek dalšího měsíce"
|
3300 |
|
@@ -3305,14 +3310,14 @@ msgstr "Začátek dalšího měsíce"
|
|
3305 |
#: app/features/mec/meta_boxes/display_options.php:602
|
3306 |
#: app/features/mec/meta_boxes/display_options.php:656
|
3307 |
#: app/features/mec/meta_boxes/display_options.php:705
|
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 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3314 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3315 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3316 |
msgid "On a certain date"
|
3317 |
msgstr "K určitému datu"
|
3318 |
|
@@ -3323,14 +3328,14 @@ msgstr "K určitému datu"
|
|
3323 |
#: app/features/mec/meta_boxes/display_options.php:605
|
3324 |
#: app/features/mec/meta_boxes/display_options.php:659
|
3325 |
#: app/features/mec/meta_boxes/display_options.php:708
|
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 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3330 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3331 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3332 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3333 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3334 |
#, php-format
|
3335 |
msgid "eg. %s"
|
3336 |
msgstr "např. %s"
|
@@ -3344,12 +3349,12 @@ msgstr "např. %s"
|
|
3344 |
#: app/features/mec/meta_boxes/display_options.php:421
|
3345 |
#: app/features/mec/meta_boxes/display_options.php:422
|
3346 |
#: app/features/mec/meta_boxes/display_options.php:425
|
3347 |
-
#: app/features/mec/meta_boxes/display_options.php:927
|
3348 |
#: app/features/mec/meta_boxes/display_options.php:928
|
3349 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3350 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3351 |
#: app/features/mec/meta_boxes/display_options.php:1356
|
3352 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
|
|
3353 |
#, fuzzy
|
3354 |
#| msgid "Maximum Dates"
|
3355 |
msgid "Maximum Date"
|
@@ -3358,8 +3363,8 @@ msgstr "Maximum termínů"
|
|
3358 |
#: app/features/mec/meta_boxes/display_options.php:68
|
3359 |
#: app/features/mec/meta_boxes/display_options.php:248
|
3360 |
#: app/features/mec/meta_boxes/display_options.php:426
|
3361 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3362 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3363 |
#, fuzzy
|
3364 |
#| msgid "Show events based on created shortcodes."
|
3365 |
msgid "Show events before the specified date."
|
@@ -3393,43 +3398,43 @@ msgstr "Zobrazit události na základě vytvořených zkrácených kódů."
|
|
3393 |
#: app/features/mec/meta_boxes/display_options.php:438
|
3394 |
#: app/features/mec/meta_boxes/display_options.php:609
|
3395 |
#: app/features/mec/meta_boxes/display_options.php:614
|
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 |
-
#: 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 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3410 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3411 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3412 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3413 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3414 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3415 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3416 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3417 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3418 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3419 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3420 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3421 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3422 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3423 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
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 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3430 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3431 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3432 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3433 |
msgid "Date Formats"
|
3434 |
msgstr "Formát data"
|
3435 |
|
@@ -3445,11 +3450,11 @@ msgstr "Výchozí hodnoty jsou d, M a l"
|
|
3445 |
#: app/features/mec/meta_boxes/display_options.php:106
|
3446 |
#: app/features/mec/meta_boxes/display_options.php:297
|
3447 |
#: app/features/mec/meta_boxes/display_options.php:321
|
3448 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3449 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
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 |
msgid "Default values are d, F and l"
|
3454 |
msgstr "Výchozí hodnoty jsou d, F a I"
|
3455 |
|
@@ -3467,12 +3472,12 @@ msgstr "TVýchozí hodnoty jsou d a F"
|
|
3467 |
#: app/features/mec/meta_boxes/display_options.php:446
|
3468 |
#: app/features/mec/meta_boxes/display_options.php:622
|
3469 |
#: app/features/mec/meta_boxes/display_options.php:664
|
3470 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3471 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3472 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3473 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3474 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3475 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3476 |
msgid "eg. 6"
|
3477 |
msgstr "např. 6"
|
3478 |
|
@@ -3485,14 +3490,14 @@ msgstr "Skrýt čas události"
|
|
3485 |
#: app/features/mec/meta_boxes/display_options.php:152
|
3486 |
#: app/features/mec/meta_boxes/display_options.php:354
|
3487 |
#: app/features/mec/meta_boxes/display_options.php:450
|
3488 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3489 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3490 |
msgid "Load More Button"
|
3491 |
msgstr "Načíst tlačítko Další"
|
3492 |
|
3493 |
#: app/features/mec/meta_boxes/display_options.php:162
|
3494 |
#: app/features/mec/meta_boxes/display_options.php:460
|
3495 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3496 |
msgid "Show Month Divider"
|
3497 |
msgstr "Zobrazit oddělovník měsíce"
|
3498 |
|
@@ -3515,8 +3520,8 @@ msgstr "Přepínač pro oddělovník měsíce"
|
|
3515 |
#: app/features/mec/meta_boxes/display_options.php:403
|
3516 |
#: app/features/mec/meta_boxes/display_options.php:498
|
3517 |
#: app/features/mec/meta_boxes/display_options.php:645
|
3518 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3519 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3520 |
#: app/features/mec/settings.php:268 app/features/mec/settings.php:283
|
3521 |
#: app/features/mec/settings.php:301 app/features/mec/settings.php:342
|
3522 |
#: app/features/mec/settings.php:357 app/features/mec/settings.php:375
|
@@ -3552,7 +3557,7 @@ msgid "Novel"
|
|
3552 |
msgstr "Novela"
|
3553 |
|
3554 |
#: app/features/mec/meta_boxes/display_options.php:260
|
3555 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3556 |
msgid "Default value is \"d F Y"
|
3557 |
msgstr "Výchozí hodnota je \"d F Y"
|
3558 |
|
@@ -3569,16 +3574,16 @@ msgid "Default value is \"d F Y\""
|
|
3569 |
msgstr "Výchozí hodnota je \"d F Y\""
|
3570 |
|
3571 |
#: app/features/mec/meta_boxes/display_options.php:338
|
3572 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3573 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3574 |
msgid "Count in row"
|
3575 |
msgstr "Počet v řadě"
|
3576 |
|
3577 |
#: app/features/mec/meta_boxes/display_options.php:396
|
3578 |
#: app/features/mec/meta_boxes/display_options.php:587
|
3579 |
#: app/features/mec/meta_boxes/display_options.php:694
|
3580 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3581 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3582 |
#, php-format
|
3583 |
msgid "%s is required to use this skin."
|
3584 |
msgstr "%s je nutné použít tento vzhled."
|
@@ -3594,15 +3599,15 @@ msgstr "Výchozí zobrazení"
|
|
3594 |
|
3595 |
#: app/features/mec/meta_boxes/display_options.php:488
|
3596 |
#: app/features/mec/meta_boxes/display_options.php:509
|
3597 |
-
#: app/libraries/main.php:330 app/libraries/main.php:
|
3598 |
-
#: app/libraries/main.php:
|
3599 |
msgid "List View"
|
3600 |
msgstr "Zobrazení seznamu"
|
3601 |
|
3602 |
#: app/features/mec/meta_boxes/display_options.php:489
|
3603 |
#: app/features/mec/meta_boxes/display_options.php:519
|
3604 |
-
#: app/libraries/main.php:334 app/libraries/main.php:
|
3605 |
-
#: app/libraries/main.php:
|
3606 |
msgid "Yearly View"
|
3607 |
msgstr "Roční zobrazení"
|
3608 |
|
@@ -3613,15 +3618,15 @@ msgstr "Měsíční / kalendářní zobrazení"
|
|
3613 |
|
3614 |
#: app/features/mec/meta_boxes/display_options.php:491
|
3615 |
#: app/features/mec/meta_boxes/display_options.php:551
|
3616 |
-
#: app/libraries/main.php:337 app/libraries/main.php:
|
3617 |
-
#: app/libraries/main.php:
|
3618 |
msgid "Weekly View"
|
3619 |
msgstr "Týdenní zobrazení"
|
3620 |
|
3621 |
#: app/features/mec/meta_boxes/display_options.php:492
|
3622 |
#: app/features/mec/meta_boxes/display_options.php:561
|
3623 |
-
#: app/libraries/main.php:336 app/libraries/main.php:
|
3624 |
-
#: app/libraries/main.php:
|
3625 |
msgid "Daily View"
|
3626 |
msgstr "Denní zobrazení"
|
3627 |
|
@@ -3653,18 +3658,18 @@ msgstr "Začátek příštího roku"
|
|
3653 |
|
3654 |
#: app/features/mec/meta_boxes/display_options.php:621
|
3655 |
#: app/features/mec/meta_boxes/display_options.php:663
|
3656 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3657 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3658 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3659 |
msgid "Events per day"
|
3660 |
msgstr "Události za den"
|
3661 |
|
3662 |
#: app/features/mec/meta_boxes/display_options.php:626
|
3663 |
#: app/features/mec/meta_boxes/display_options.php:668
|
3664 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3665 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3666 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3667 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3668 |
msgid "Next/Previous Buttons"
|
3669 |
msgstr "Tlačítka Další / Předchozí"
|
3670 |
|
@@ -3677,10 +3682,10 @@ msgid "Uppercase Text"
|
|
3677 |
msgstr "Text velkými písmeny"
|
3678 |
|
3679 |
#: app/features/mec/meta_boxes/display_options.php:686
|
3680 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3681 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3682 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3683 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3684 |
msgid "For showing next/previous month navigation."
|
3685 |
msgstr "Pro zobrazení navigace další / předchozí měsíc."
|
3686 |
|
@@ -3696,146 +3701,146 @@ msgstr "např. 200"
|
|
3696 |
msgid "The geolocation feature works only in secure (https) websites."
|
3697 |
msgstr "Funkce geolokace funguje pouze na zabezpečených (https) webech."
|
3698 |
|
3699 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3700 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3701 |
msgid "Current Week"
|
3702 |
msgstr "Aktuální týden"
|
3703 |
|
3704 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3705 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3706 |
msgid "Next Week"
|
3707 |
msgstr "Další týden"
|
3708 |
|
3709 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3710 |
msgid "Number of Days"
|
3711 |
msgstr "Počet dnů"
|
3712 |
|
3713 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3714 |
msgid "Week Start"
|
3715 |
msgstr "Začátek týdne"
|
3716 |
|
3717 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3718 |
msgid "Inherite from WordPress options"
|
3719 |
msgstr "Zdědit z možností WordPressu"
|
3720 |
|
3721 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3722 |
msgid "1:00"
|
3723 |
msgstr ""
|
3724 |
|
3725 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3726 |
msgid "2:00"
|
3727 |
msgstr ""
|
3728 |
|
3729 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3730 |
msgid "3:00"
|
3731 |
msgstr ""
|
3732 |
|
3733 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3734 |
msgid "4:00"
|
3735 |
msgstr ""
|
3736 |
|
3737 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3738 |
msgid "5:00"
|
3739 |
msgstr ""
|
3740 |
|
3741 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3742 |
msgid "6:00"
|
3743 |
msgstr ""
|
3744 |
|
3745 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3746 |
msgid "7:00"
|
3747 |
msgstr ""
|
3748 |
|
3749 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3750 |
msgid "8:00"
|
3751 |
msgstr ""
|
3752 |
|
3753 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3754 |
msgid "9:00"
|
3755 |
msgstr ""
|
3756 |
|
3757 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3758 |
msgid "10:00"
|
3759 |
msgstr ""
|
3760 |
|
3761 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3762 |
msgid "11:00"
|
3763 |
msgstr ""
|
3764 |
|
3765 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3766 |
msgid "12:00"
|
3767 |
msgstr ""
|
3768 |
|
3769 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3770 |
msgid "13:00"
|
3771 |
msgstr ""
|
3772 |
|
3773 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3774 |
msgid "14:00"
|
3775 |
msgstr ""
|
3776 |
|
3777 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3778 |
msgid "15:00"
|
3779 |
msgstr ""
|
3780 |
|
3781 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3782 |
msgid "16:00"
|
3783 |
msgstr ""
|
3784 |
|
3785 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3786 |
msgid "17:00"
|
3787 |
msgstr ""
|
3788 |
|
3789 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3790 |
msgid "18:00"
|
3791 |
msgstr ""
|
3792 |
|
3793 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3794 |
msgid "19:00"
|
3795 |
msgstr ""
|
3796 |
|
3797 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3798 |
msgid "20:00"
|
3799 |
msgstr ""
|
3800 |
|
3801 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3802 |
msgid "21:00"
|
3803 |
msgstr ""
|
3804 |
|
3805 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3806 |
msgid "22:00"
|
3807 |
msgstr ""
|
3808 |
|
3809 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3810 |
msgid "23:00"
|
3811 |
msgstr ""
|
3812 |
|
3813 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3814 |
msgid "24:00"
|
3815 |
msgstr ""
|
3816 |
|
3817 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3818 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3819 |
msgid "Default values are j and F"
|
3820 |
msgstr "Výchozí hodnoty jsou j a F"
|
3821 |
|
3822 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3823 |
msgid "eg. 24"
|
3824 |
msgstr "např. 24"
|
3825 |
|
3826 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3827 |
msgid "Filter By"
|
3828 |
msgstr "Filtrovat podle"
|
3829 |
|
3830 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3831 |
msgid "None"
|
3832 |
msgstr "Žádný"
|
3833 |
|
3834 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3835 |
msgid "Fit to row"
|
3836 |
msgstr "Přizpůsobit řádku"
|
3837 |
|
3838 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3839 |
msgid ""
|
3840 |
"Items are arranged into rows. Rows progress vertically. Similar to what you "
|
3841 |
"would expect from a layout that uses CSS floats."
|
@@ -3843,116 +3848,116 @@ msgstr ""
|
|
3843 |
"Položky jsou uspořádány do řádků. Řádky postupují svisle. Podobně, co byste "
|
3844 |
"očekávali od rozložení používajícího plovoucí CSS."
|
3845 |
|
3846 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3847 |
msgid "Convert Masonry to Grid"
|
3848 |
msgstr "Převést zdivo na mřížku"
|
3849 |
|
3850 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3851 |
msgid "For using this option, your events should come with image"
|
3852 |
msgstr "Pro použití této možnosti by vaše události měly přijít s obrázkem"
|
3853 |
|
3854 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3855 |
msgid "Default values are d, M and Y"
|
3856 |
msgstr "Výchozí hodnoty jsou d, M a Y"
|
3857 |
|
3858 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3859 |
msgid "Default values are \"F d\" and l"
|
3860 |
msgstr "Výchozí hodnota je \"F d\" a I"
|
3861 |
|
3862 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3863 |
msgid "Default value is \"l, F d Y\""
|
3864 |
msgstr "Výchozí hodnota je \"I, F d Y\""
|
3865 |
|
3866 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3867 |
#: app/features/popup/shortcode.php:228
|
3868 |
msgid "Style 1"
|
3869 |
msgstr "Styl 1"
|
3870 |
|
3871 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3872 |
#: app/features/popup/shortcode.php:233
|
3873 |
msgid "Style 2"
|
3874 |
msgstr "Styl 2"
|
3875 |
|
3876 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3877 |
#: app/features/popup/shortcode.php:238
|
3878 |
msgid "Style 3"
|
3879 |
msgstr "Styl 3"
|
3880 |
|
3881 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3882 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3883 |
msgid "Default value is \"j F Y\""
|
3884 |
msgstr "Výchozí hodnota je \"j F Y\""
|
3885 |
|
3886 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3887 |
msgid "Default values are j, F and Y"
|
3888 |
msgstr "Výchozí hodnoty jsou j, F a Y"
|
3889 |
|
3890 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3891 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3892 |
msgid " -- Next Upcoming Event -- "
|
3893 |
msgstr " -- Další nadcházející událost -- "
|
3894 |
|
3895 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3896 |
msgid "Background Color"
|
3897 |
msgstr "Barva pozadí"
|
3898 |
|
3899 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3900 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3901 |
#: app/features/popup/shortcode.php:247 app/features/popup/shortcode.php:269
|
3902 |
msgid "Type 1"
|
3903 |
msgstr "Typ 1"
|
3904 |
|
3905 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3906 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3907 |
#: app/features/popup/shortcode.php:252 app/features/popup/shortcode.php:274
|
3908 |
msgid "Type 2"
|
3909 |
msgstr "Typ 2"
|
3910 |
|
3911 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3912 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3913 |
#: app/features/popup/shortcode.php:257 app/features/popup/shortcode.php:279
|
3914 |
msgid "Type 3"
|
3915 |
msgstr "Typ 3"
|
3916 |
|
3917 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3918 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3919 |
#: app/features/popup/shortcode.php:262 app/features/popup/shortcode.php:284
|
3920 |
msgid "Type 4"
|
3921 |
msgstr "Typ 4"
|
3922 |
|
3923 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3924 |
msgid "Default values are d, F and Y"
|
3925 |
msgstr "Výchozí hodnoty jsou d, F a Y"
|
3926 |
|
3927 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3928 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3929 |
msgid "Default value is \"M d, Y\""
|
3930 |
msgstr "Výchozí hodnota je \"M d, Y\""
|
3931 |
|
3932 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3933 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3934 |
msgid "Auto Play Time"
|
3935 |
msgstr "Čas automatického přehrávání"
|
3936 |
|
3937 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3938 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3939 |
msgid "eg. 3000 default is 3 second"
|
3940 |
msgstr "např. výchozí hodnota 3000 jsou 3 vteřiny"
|
3941 |
|
3942 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3943 |
msgid "Archive Link"
|
3944 |
msgstr "Odkaz na archiv"
|
3945 |
|
3946 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3947 |
msgid "Head Text"
|
3948 |
msgstr "Text hlavičky"
|
3949 |
|
3950 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3951 |
#: app/features/popup/shortcode.php:289
|
3952 |
msgid "Type 5"
|
3953 |
msgstr "Typ 5"
|
3954 |
|
3955 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3956 |
#, fuzzy
|
3957 |
#| msgid "Default values are j and F"
|
3958 |
msgid "Default values are j and M"
|
@@ -4149,10 +4154,10 @@ msgstr "Zakázaný"
|
|
4149 |
#: app/features/mec/meta_boxes/search_form.php:535
|
4150 |
#: app/features/mec/meta_boxes/search_form.php:596
|
4151 |
#: app/features/mec/meta_boxes/search_form.php:693
|
4152 |
-
#: app/features/mec/settings.php:827 app/features/mec/single.php:
|
4153 |
#: app/features/search.php:83 app/features/speakers.php:61
|
4154 |
-
#: app/features/speakers.php:269 app/libraries/main.php:
|
4155 |
-
#: app/libraries/skins.php:
|
4156 |
msgid "Speaker"
|
4157 |
msgstr "Řečník"
|
4158 |
|
@@ -4167,8 +4172,8 @@ msgstr "Řečník"
|
|
4167 |
#: app/features/mec/meta_boxes/search_form.php:542
|
4168 |
#: app/features/mec/meta_boxes/search_form.php:603
|
4169 |
#: app/features/mec/meta_boxes/search_form.php:700
|
4170 |
-
#: app/features/mec/settings.php:834 app/features/mec/single.php:
|
4171 |
-
#: app/features/search.php:88 app/libraries/skins.php:
|
4172 |
msgid "Tag"
|
4173 |
msgstr "Štítek"
|
4174 |
|
@@ -4251,7 +4256,7 @@ msgstr ""
|
|
4251 |
msgid "Show Google Maps on event page"
|
4252 |
msgstr "Zobrazit Mapy Google na stránce události"
|
4253 |
|
4254 |
-
#: app/features/mec/modules.php:80 app/features/mec/modules.php:
|
4255 |
#: app/features/mec/settings.php:864 app/features/mec/settings.php:869
|
4256 |
#: app/features/mec/settings.php:917 app/features/mec/settings.php:941
|
4257 |
#: app/features/mec/settings.php:965
|
@@ -4317,106 +4322,106 @@ msgstr ""
|
|
4317 |
"Zkontrolujte to, pouze pokud jiný plugin / motiv načítá rozhraní Google Maps "
|
4318 |
"API"
|
4319 |
|
4320 |
-
#: app/features/mec/modules.php:
|
4321 |
msgid "Export Options"
|
4322 |
msgstr "Možnosti exportu"
|
4323 |
|
4324 |
-
#: app/features/mec/modules.php:
|
4325 |
msgid ""
|
4326 |
"Show export module (iCal export and add to Google calendars) on event page"
|
4327 |
msgstr ""
|
4328 |
"Zobrazit modul exportu (export iCal a přidání do kalendářů Google) na "
|
4329 |
"stránce události"
|
4330 |
|
4331 |
-
#: app/features/mec/modules.php:
|
4332 |
msgid "Google Calendar"
|
4333 |
msgstr "Kalendář Google"
|
4334 |
|
4335 |
-
#: app/features/mec/modules.php:
|
4336 |
-
#: app/modules/local-time/details.php:
|
4337 |
msgid "Local Time"
|
4338 |
msgstr "Místní čas"
|
4339 |
|
4340 |
-
#: app/features/mec/modules.php:
|
4341 |
msgid "Show event time based on local time of visitor on event page"
|
4342 |
msgstr ""
|
4343 |
"Zobrazit čas události na základě místního času návštěvníka na stránce "
|
4344 |
"události"
|
4345 |
|
4346 |
-
#: app/features/mec/modules.php:
|
4347 |
#: app/modules/qrcode/details.php:38 app/widgets/single.php:155
|
4348 |
msgid "QR Code"
|
4349 |
msgstr "QR kód"
|
4350 |
|
4351 |
-
#: app/features/mec/modules.php:
|
4352 |
msgid "Show QR code of event in details page and booking invoice"
|
4353 |
msgstr ""
|
4354 |
"Zobrazte QR kód události na stránce s podrobnostmi a fakturaci za rezervaci"
|
4355 |
|
4356 |
-
#: app/features/mec/modules.php:
|
4357 |
#: app/modules/weather/details.php:37
|
4358 |
msgid "Weather"
|
4359 |
msgstr "Počasí"
|
4360 |
|
4361 |
-
#: app/features/mec/modules.php:
|
4362 |
msgid "Show weather module on event page"
|
4363 |
msgstr "Zobrazit modul počasí na stránce události"
|
4364 |
|
4365 |
-
#: app/features/mec/modules.php:
|
4366 |
#, php-format
|
4367 |
msgid "You can get a free API Key from %s"
|
4368 |
msgstr "Zdarma můžete získat klíč API od % s"
|
4369 |
|
4370 |
-
#: app/features/mec/modules.php:
|
4371 |
msgid "Show weather imperial units"
|
4372 |
msgstr "Zobrazit britské jednotky počasí"
|
4373 |
|
4374 |
-
#: app/features/mec/modules.php:
|
4375 |
msgid "Show weather change units button"
|
4376 |
msgstr "Zobrazit tlačítko Změna jednotek počasí"
|
4377 |
|
4378 |
-
#: app/features/mec/modules.php:
|
4379 |
msgid "Show social network module"
|
4380 |
msgstr "Zobrazit modul sociální sítě"
|
4381 |
|
4382 |
-
#: app/features/mec/modules.php:
|
4383 |
#: app/modules/next-event/details.php:86
|
4384 |
msgid "Next Event"
|
4385 |
msgstr "Další událost"
|
4386 |
|
4387 |
-
#: app/features/mec/modules.php:
|
4388 |
msgid "Show next event module on event page"
|
4389 |
msgstr "Zobrazit další modul události na stránce události"
|
4390 |
|
4391 |
-
#: app/features/mec/modules.php:
|
4392 |
msgid "Method"
|
4393 |
msgstr "Metoda"
|
4394 |
|
4395 |
-
#: app/features/mec/modules.php:
|
4396 |
msgid "Next Occurrence of Current Event"
|
4397 |
msgstr "Další výskyt aktuální události"
|
4398 |
|
4399 |
-
#: app/features/mec/modules.php:
|
4400 |
msgid "Next Occurrence of Other Events"
|
4401 |
msgstr "Další výskyt dalších událostí"
|
4402 |
|
4403 |
-
#: app/features/mec/modules.php:
|
4404 |
msgid "Default is M d Y"
|
4405 |
msgstr "Výchozí je M d Y"
|
4406 |
|
4407 |
-
#: app/features/mec/modules.php:
|
4408 |
msgid "Enable BuddyPress Integration"
|
4409 |
msgstr "Povolit integraci BuddyPress"
|
4410 |
|
4411 |
-
#: app/features/mec/modules.php:
|
4412 |
msgid "Show \"Attendees Module\" in event details page"
|
4413 |
msgstr "Zobrazit \"Účastnický modul\" na stránce s podrobnostmi o události"
|
4414 |
|
4415 |
-
#: app/features/mec/modules.php:
|
4416 |
msgid "Attendees Limit"
|
4417 |
msgstr "Limit účastníků"
|
4418 |
|
4419 |
-
#: app/features/mec/modules.php:
|
4420 |
msgid "Add booking activity to user profile"
|
4421 |
msgstr "Přidejte do uživatelského profilu rezervační aktivitu"
|
4422 |
|
@@ -4870,7 +4875,7 @@ msgid "It sends to admin to notify him/her that a new booking received."
|
|
4870 |
msgstr "Zašle správci informaci o přijetí nové rezervace."
|
4871 |
|
4872 |
#: app/features/mec/notifications.php:530 app/libraries/main.php:581
|
4873 |
-
#: app/libraries/notifications.php:
|
4874 |
msgid "Booking Reminder"
|
4875 |
msgstr "Připomenutí rezervace"
|
4876 |
|
@@ -5125,7 +5130,7 @@ msgid "You can enable/disable Schema scripts"
|
|
5125 |
msgstr "Můžete povolit nebo zakázat skripty schématu"
|
5126 |
|
5127 |
#: app/features/mec/settings.php:160 app/features/mec/settings.php:170
|
5128 |
-
#: app/libraries/main.php:
|
5129 |
msgid "Weekdays"
|
5130 |
msgstr "Pracovní dny"
|
5131 |
|
@@ -5717,55 +5722,72 @@ msgstr ""
|
|
5717 |
"Pokud chcete použít nový editor bloků WordPress, měli byste ponechat toto "
|
5718 |
"políčko prázdné."
|
5719 |
|
5720 |
-
#: app/features/mec/single.php:
|
5721 |
msgid "Breadcrumbs"
|
5722 |
msgstr "Drobečková navigace"
|
5723 |
|
5724 |
-
#: app/features/mec/single.php:
|
5725 |
msgid "Enable Breadcrumbs."
|
5726 |
msgstr "Povolit drobečkovou navigaci."
|
5727 |
|
5728 |
-
#: app/features/mec/single.php:
|
5729 |
msgid "Check this option, for showing the breadcrumbs on single event page"
|
5730 |
msgstr ""
|
5731 |
"Zaškrtněte tuto možnost, chcete-li zobrazit drobečkovou navigaci na stránce "
|
5732 |
"jedné události"
|
5733 |
|
5734 |
-
#: app/features/mec/single.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5735 |
msgid "Show countdown module on event page"
|
5736 |
msgstr "Zobrazit modul odpočítávání na stránce události"
|
5737 |
|
5738 |
-
#: app/features/mec/single.php:
|
5739 |
msgid "Countdown Style"
|
5740 |
msgstr "Styl Odpočítávání"
|
5741 |
|
5742 |
-
#: app/features/mec/single.php:
|
5743 |
msgid "Plain Style"
|
5744 |
msgstr "Prostý styl"
|
5745 |
|
5746 |
-
#: app/features/mec/single.php:
|
5747 |
msgid "Flip Style"
|
5748 |
msgstr "Styl překlopení"
|
5749 |
|
5750 |
-
#: app/features/mec/single.php:
|
5751 |
msgid "Exceptional days (Exclude Dates)"
|
5752 |
msgstr "Výjimečné dny (kromě dat)"
|
5753 |
|
5754 |
-
#: app/features/mec/single.php:
|
5755 |
msgid "Show exceptional days option on Add/Edit events page"
|
5756 |
msgstr "Zobrazit možnost výjimečných dnů na stránce Přidat / Upravit události"
|
5757 |
|
5758 |
-
#: app/features/mec/single.php:
|
5759 |
msgid ""
|
5760 |
"Using this option you can exclude certain days from event occurrence dates."
|
5761 |
msgstr ""
|
5762 |
"Pomocí této možnosti můžete vyloučit určité dny z dat výskytu událostí."
|
5763 |
|
5764 |
-
#: app/features/mec/single.php:
|
5765 |
msgid "Additional Organizers"
|
5766 |
msgstr "Další organizátoři"
|
5767 |
|
5768 |
-
#: app/features/mec/single.php:
|
5769 |
msgid ""
|
5770 |
"Show additional organizers option on Add/Edit events page and single event "
|
5771 |
"page."
|
@@ -5773,11 +5795,15 @@ msgstr ""
|
|
5773 |
"Zobrazit další možnost organizátorů na stránce Přidat / Upravit události a "
|
5774 |
"na stránce jedné události."
|
5775 |
|
5776 |
-
#: app/features/mec/single.php:
|
|
|
|
|
|
|
|
|
5777 |
msgid "Additional locations"
|
5778 |
msgstr "Další místa"
|
5779 |
|
5780 |
-
#: app/features/mec/single.php:
|
5781 |
msgid ""
|
5782 |
"Show additional locations option on Add/Edit events page and single event "
|
5783 |
"page."
|
@@ -5785,18 +5811,18 @@ msgstr ""
|
|
5785 |
"Zobrazit další umístění na stránce Přidat / Upravit události a na stránce "
|
5786 |
"jediné události."
|
5787 |
|
5788 |
-
#: app/features/mec/single.php:
|
5789 |
#: app/skins/single.php:163
|
5790 |
msgid "Related Events"
|
5791 |
msgstr "Související události"
|
5792 |
|
5793 |
-
#: app/features/mec/single.php:
|
5794 |
msgid "Display related events based on taxonomy in single event page."
|
5795 |
msgstr ""
|
5796 |
"Zobrazte související události na základě taxonomie na stránce s jednou "
|
5797 |
"událostí."
|
5798 |
|
5799 |
-
#: app/features/mec/single.php:
|
5800 |
msgid "Select Taxonomies:"
|
5801 |
msgstr "Vyberte taxonomie:"
|
5802 |
|
@@ -6363,7 +6389,7 @@ msgstr "např. info@itreseni.cz"
|
|
6363 |
msgid "eg. https://webnus.net"
|
6364 |
msgstr "např. https://webnus.net"
|
6365 |
|
6366 |
-
#: app/features/organizers.php:312 app/libraries/main.php:
|
6367 |
#: app/skins/single.php:862
|
6368 |
msgid "Other Organizers"
|
6369 |
msgstr "Další organizátoři"
|
@@ -6439,7 +6465,7 @@ msgstr "Přidat nový zkrácený kód"
|
|
6439 |
msgid "Please %s/%s in order to see your bookings / profile."
|
6440 |
msgstr "Prosím %s/%s za účelem zobrazení vašich rezervací / profilu."
|
6441 |
|
6442 |
-
#: app/features/profile/profile.php:18 app/libraries/main.php:
|
6443 |
msgid "Your booking already canceled!"
|
6444 |
msgstr "Vaše rezervace již byla zrušena!"
|
6445 |
|
@@ -6447,11 +6473,11 @@ msgstr "Vaše rezervace již byla zrušena!"
|
|
6447 |
msgid "#"
|
6448 |
msgstr "#"
|
6449 |
|
6450 |
-
#: app/features/profile/profile.php:56 app/libraries/main.php:
|
6451 |
msgid "Status"
|
6452 |
msgstr "Stav"
|
6453 |
|
6454 |
-
#: app/features/profile/profile.php:59 app/libraries/main.php:
|
6455 |
msgid "Attendees"
|
6456 |
msgstr "Účastníci"
|
6457 |
|
@@ -6480,7 +6506,7 @@ msgstr "<i class=\"mec-sl-eye\"></i> %s"
|
|
6480 |
msgid "No bookings found!"
|
6481 |
msgstr "Nebyly nalezeny žádné rezervace!"
|
6482 |
|
6483 |
-
#: app/features/search.php:93 app/libraries/main.php:
|
6484 |
msgid "label"
|
6485 |
msgstr "štítek"
|
6486 |
|
@@ -6505,13 +6531,15 @@ msgid "No search result."
|
|
6505 |
msgstr "Žádný výsledek vyhledávání."
|
6506 |
|
6507 |
#: app/features/search_bar/search_result.php:11
|
6508 |
-
#: app/libraries/notifications.php:
|
6509 |
-
#: app/modules/local-time/details.php:
|
6510 |
#: app/skins/single.php:160 app/skins/single.php:753
|
6511 |
-
#: app/skins/single/default.php:108 app/skins/single/default.php:
|
6512 |
-
#: app/skins/single/m1.php:43 app/skins/single/modern.php:
|
6513 |
-
|
6514 |
-
|
|
|
|
|
6515 |
|
6516 |
#: app/features/speakers.php:111 app/features/speakers.php:188
|
6517 |
#: app/features/speakers.php:270
|
@@ -6589,11 +6617,11 @@ msgstr ""
|
|
6589 |
msgid "%s Price"
|
6590 |
msgstr "%s Cena"
|
6591 |
|
6592 |
-
#: app/libraries/book.php:
|
6593 |
msgid "Discount"
|
6594 |
msgstr "Sleva"
|
6595 |
|
6596 |
-
#: app/libraries/book.php:
|
6597 |
#: app/modules/booking/default.php:401
|
6598 |
msgid "Download Invoice"
|
6599 |
msgstr "Stáhnout fakturu"
|
@@ -6621,7 +6649,7 @@ msgstr "Upgrade"
|
|
6621 |
msgid "day"
|
6622 |
msgstr "den"
|
6623 |
|
6624 |
-
#: app/libraries/factory.php:363 app/modules/countdown/details.php:
|
6625 |
#: app/skins/available_spot/tpl.php:165 app/skins/countdown/tpl.php:158
|
6626 |
#: app/skins/countdown/tpl.php:202 app/skins/countdown/tpl.php:251
|
6627 |
msgid "days"
|
@@ -6631,7 +6659,7 @@ msgstr "dny"
|
|
6631 |
msgid "hour"
|
6632 |
msgstr "hodina"
|
6633 |
|
6634 |
-
#: app/libraries/factory.php:365 app/modules/countdown/details.php:
|
6635 |
#: app/skins/available_spot/tpl.php:169 app/skins/countdown/tpl.php:164
|
6636 |
#: app/skins/countdown/tpl.php:208 app/skins/countdown/tpl.php:257
|
6637 |
msgid "hours"
|
@@ -6641,7 +6669,7 @@ msgstr "hodiny"
|
|
6641 |
msgid "minute"
|
6642 |
msgstr "minuta"
|
6643 |
|
6644 |
-
#: app/libraries/factory.php:367 app/modules/countdown/details.php:
|
6645 |
#: app/skins/available_spot/tpl.php:173 app/skins/countdown/tpl.php:170
|
6646 |
#: app/skins/countdown/tpl.php:214 app/skins/countdown/tpl.php:263
|
6647 |
msgid "minutes"
|
@@ -6651,7 +6679,7 @@ msgstr "minuty"
|
|
6651 |
msgid "second"
|
6652 |
msgstr "vteřina"
|
6653 |
|
6654 |
-
#: app/libraries/factory.php:369 app/modules/countdown/details.php:
|
6655 |
#: app/skins/available_spot/tpl.php:177 app/skins/countdown/tpl.php:176
|
6656 |
#: app/skins/countdown/tpl.php:220 app/skins/countdown/tpl.php:269
|
6657 |
msgid "seconds"
|
@@ -6669,38 +6697,38 @@ msgstr "Vlastní postranní panel pro jednu a modální stránku MEC."
|
|
6669 |
msgid "There is no excerpt because this is a protected post."
|
6670 |
msgstr "Neexistuje výňatek, protože se jedná o chráněný příspěvek."
|
6671 |
|
6672 |
-
#: app/libraries/main.php:331 app/libraries/main.php:
|
6673 |
-
#: app/libraries/main.php:
|
6674 |
msgid "Grid View"
|
6675 |
msgstr "Zobrazení mřížky"
|
6676 |
|
6677 |
-
#: app/libraries/main.php:332 app/libraries/main.php:
|
6678 |
-
#: app/libraries/main.php:
|
6679 |
msgid "Agenda View"
|
6680 |
msgstr "Zobrazení agendy"
|
6681 |
|
6682 |
-
#: app/libraries/main.php:333 app/libraries/main.php:
|
6683 |
-
#: app/libraries/main.php:
|
6684 |
msgid "Full Calendar"
|
6685 |
msgstr "Plný kalendář"
|
6686 |
|
6687 |
-
#: app/libraries/main.php:335 app/libraries/main.php:
|
6688 |
-
#: app/libraries/main.php:
|
6689 |
msgid "Calendar/Monthly View"
|
6690 |
msgstr "Kalendář / zobrazení měsíce"
|
6691 |
|
6692 |
-
#: app/libraries/main.php:338 app/libraries/main.php:
|
6693 |
-
#: app/libraries/main.php:
|
6694 |
msgid "Timetable View"
|
6695 |
msgstr "Zobrazení rozvrhu"
|
6696 |
|
6697 |
-
#: app/libraries/main.php:339 app/libraries/main.php:
|
6698 |
-
#: app/libraries/main.php:
|
6699 |
msgid "Masonry View"
|
6700 |
msgstr "Zobrazení zdi"
|
6701 |
|
6702 |
-
#: app/libraries/main.php:340 app/libraries/main.php:
|
6703 |
-
#: app/libraries/main.php:
|
6704 |
msgid "Map View"
|
6705 |
msgstr "Zobrazení mapy"
|
6706 |
|
@@ -6737,31 +6765,31 @@ msgstr "Zobrazení rozvrhu"
|
|
6737 |
msgid "Tile View"
|
6738 |
msgstr "Zobrazení rozvrhu"
|
6739 |
|
6740 |
-
#: app/libraries/main.php:385 app/libraries/main.php:
|
6741 |
msgid "SU"
|
6742 |
msgstr "NE"
|
6743 |
|
6744 |
-
#: app/libraries/main.php:386 app/libraries/main.php:
|
6745 |
msgid "MO"
|
6746 |
msgstr "PO"
|
6747 |
|
6748 |
-
#: app/libraries/main.php:387 app/libraries/main.php:
|
6749 |
msgid "TU"
|
6750 |
msgstr "ÚT"
|
6751 |
|
6752 |
-
#: app/libraries/main.php:388 app/libraries/main.php:
|
6753 |
msgid "WE"
|
6754 |
msgstr "ST"
|
6755 |
|
6756 |
-
#: app/libraries/main.php:389 app/libraries/main.php:
|
6757 |
msgid "TH"
|
6758 |
msgstr "ČT"
|
6759 |
|
6760 |
-
#: app/libraries/main.php:390 app/libraries/main.php:
|
6761 |
msgid "FR"
|
6762 |
msgstr "PÁ"
|
6763 |
|
6764 |
-
#: app/libraries/main.php:391 app/libraries/main.php:
|
6765 |
msgid "SA"
|
6766 |
msgstr "SO"
|
6767 |
|
@@ -6828,364 +6856,370 @@ msgid ""
|
|
6828 |
"events. Users can now log in to purchase tickets."
|
6829 |
msgstr ""
|
6830 |
|
6831 |
-
#: app/libraries/main.php:
|
6832 |
msgid "Events at this location"
|
6833 |
msgstr "Události na tomto místě"
|
6834 |
|
6835 |
-
#: app/libraries/main.php:
|
6836 |
msgid "Event at this location"
|
6837 |
msgstr "Událost na tomto místě"
|
6838 |
|
6839 |
-
#: app/libraries/main.php:
|
6840 |
msgid "Facebook"
|
6841 |
msgstr "Facebook"
|
6842 |
|
6843 |
-
#: app/libraries/main.php:
|
6844 |
msgid "Twitter"
|
6845 |
msgstr "Twitter"
|
6846 |
|
6847 |
-
#: app/libraries/main.php:
|
6848 |
msgid "Linkedin"
|
6849 |
msgstr "Linkedin"
|
6850 |
|
6851 |
-
#: app/libraries/main.php:
|
6852 |
msgid "VK"
|
6853 |
msgstr "VK"
|
6854 |
|
6855 |
-
#: app/libraries/main.php:
|
6856 |
msgid "Tumblr"
|
6857 |
msgstr ""
|
6858 |
|
6859 |
-
#: app/libraries/main.php:
|
6860 |
msgid "Pinterest"
|
6861 |
msgstr ""
|
6862 |
|
6863 |
-
#: app/libraries/main.php:
|
6864 |
msgid "Flipboard"
|
6865 |
msgstr ""
|
6866 |
|
6867 |
-
#: app/libraries/main.php:
|
6868 |
#, fuzzy
|
6869 |
#| msgid "Tickets"
|
6870 |
msgid "GetPocket"
|
6871 |
msgstr "Vstupenky"
|
6872 |
|
6873 |
-
#: app/libraries/main.php:
|
6874 |
msgid "Reddit"
|
6875 |
msgstr ""
|
6876 |
|
6877 |
-
#: app/libraries/main.php:
|
6878 |
msgid "WhatsApp"
|
6879 |
msgstr ""
|
6880 |
|
6881 |
-
#: app/libraries/main.php:
|
6882 |
msgid "Telegram"
|
6883 |
msgstr ""
|
6884 |
|
6885 |
-
#: app/libraries/main.php:
|
6886 |
msgid "Share on Facebook"
|
6887 |
msgstr "Sdílet na Facebooku"
|
6888 |
|
6889 |
-
#: app/libraries/main.php:
|
6890 |
msgid "Tweet"
|
6891 |
msgstr "Tweet"
|
6892 |
|
6893 |
-
#: app/libraries/main.php:
|
6894 |
#, fuzzy
|
6895 |
#| msgid "Share on Facebook"
|
6896 |
msgid "Share on Tumblr"
|
6897 |
msgstr "Sdílet na Facebooku"
|
6898 |
|
6899 |
-
#: app/libraries/main.php:
|
6900 |
msgid "Share on Pinterest"
|
6901 |
msgstr ""
|
6902 |
|
6903 |
-
#: app/libraries/main.php:
|
6904 |
#, fuzzy
|
6905 |
#| msgid "Share on Facebook"
|
6906 |
msgid "Share on Flipboard"
|
6907 |
msgstr "Sdílet na Facebooku"
|
6908 |
|
6909 |
-
#: app/libraries/main.php:
|
6910 |
#, fuzzy
|
6911 |
#| msgid "Share on Facebook"
|
6912 |
msgid "Share on GetPocket"
|
6913 |
msgstr "Sdílet na Facebooku"
|
6914 |
|
6915 |
-
#: app/libraries/main.php:
|
6916 |
#, fuzzy
|
6917 |
#| msgid "Share on Facebook"
|
6918 |
msgid "Share on Reddit"
|
6919 |
msgstr "Sdílet na Facebooku"
|
6920 |
|
6921 |
-
#: app/libraries/main.php:
|
6922 |
msgid "Share on Telegram"
|
6923 |
msgstr ""
|
6924 |
|
6925 |
-
#: app/libraries/main.php:
|
6926 |
msgid "Share on WhatsApp"
|
6927 |
msgstr ""
|
6928 |
|
6929 |
-
#: app/libraries/main.php:
|
6930 |
msgid "Custom Shortcode"
|
6931 |
msgstr "Uživatelské zkrácené kódy"
|
6932 |
|
6933 |
-
#: app/libraries/main.php:
|
6934 |
msgid "Your booking already verified!"
|
6935 |
msgstr "Vaše rezervace již byla ověřena!"
|
6936 |
|
6937 |
-
#: app/libraries/main.php:
|
6938 |
msgid "Your booking successfully verified."
|
6939 |
msgstr "Vaše rezervace byla úspěšně ověřena."
|
6940 |
|
6941 |
-
#: app/libraries/main.php:
|
6942 |
msgid "Your booking cannot verify!"
|
6943 |
msgstr "Vaši rezervaci nelze ověřit!"
|
6944 |
|
6945 |
-
#: app/libraries/main.php:
|
6946 |
msgid "Your booking successfully canceled."
|
6947 |
msgstr "Vaše rezervace byla úspěšně zrušena."
|
6948 |
|
6949 |
-
#: app/libraries/main.php:
|
6950 |
msgid "Your booking cannot be canceled."
|
6951 |
msgstr "Vaši rezervaci nelze zrušit."
|
6952 |
|
6953 |
-
#: app/libraries/main.php:
|
6954 |
msgid "You canceled the payment successfully."
|
6955 |
msgstr "Platbu jste úspěšně zrušili."
|
6956 |
|
6957 |
-
#: app/libraries/main.php:
|
6958 |
msgid "You returned from payment gateway successfully."
|
6959 |
msgstr "Úspěšně jste se vrátili z platební brány."
|
6960 |
|
6961 |
-
#: app/libraries/main.php:
|
6962 |
msgid "Cannot find the invoice!"
|
6963 |
msgstr "Fakturu nelze najít!"
|
6964 |
|
6965 |
-
#: app/libraries/main.php:
|
6966 |
msgid "Invoice is invalid."
|
6967 |
msgstr "Faktura je neplatná."
|
6968 |
|
6969 |
-
#: app/libraries/main.php:
|
6970 |
msgid ""
|
6971 |
"Your booking still is not confirmed. You able download it after confirmation!"
|
6972 |
msgstr ""
|
6973 |
"Vaše rezervace stále není potvrzena. Můžete si ji stáhnout po potvrzení!"
|
6974 |
|
6975 |
-
#: app/libraries/main.php:
|
6976 |
msgid "Booking Not Confirmed."
|
6977 |
msgstr "Rezervace nebyla potvrzena."
|
6978 |
|
6979 |
-
#: app/libraries/main.php:
|
6980 |
msgid "Cannot find the booking!"
|
6981 |
msgstr "Nemohu najít rezervaci!"
|
6982 |
|
6983 |
-
#: app/libraries/main.php:
|
6984 |
msgid "Booking is invalid."
|
6985 |
msgstr "Rezervace není platná."
|
6986 |
|
6987 |
-
#: app/libraries/main.php:
|
6988 |
#, php-format
|
6989 |
msgid "%s Invoice"
|
6990 |
msgstr "%s Faktura"
|
6991 |
|
6992 |
-
#: app/libraries/main.php:
|
6993 |
msgid "Billing"
|
6994 |
msgstr "Fakturace"
|
6995 |
|
6996 |
-
#: app/libraries/main.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
6997 |
msgid "Total"
|
6998 |
msgstr "Celkem"
|
6999 |
|
7000 |
-
#: app/libraries/main.php:
|
7001 |
#, fuzzy
|
7002 |
#| msgid "Payment Gateways"
|
7003 |
msgid "Payment"
|
7004 |
msgstr "Platební brány"
|
7005 |
|
7006 |
-
#: app/libraries/main.php:
|
7007 |
#, fuzzy
|
7008 |
#| msgid "Payment Gateways"
|
7009 |
msgid "Gateway"
|
7010 |
msgstr "Platební brány"
|
7011 |
|
7012 |
-
#: app/libraries/main.php:
|
7013 |
#, fuzzy
|
7014 |
#| msgid "Payment Gateways"
|
7015 |
msgid "Payment Time"
|
7016 |
msgstr "Platební brány"
|
7017 |
|
7018 |
-
#: app/libraries/main.php:
|
7019 |
msgid "Request is not valid."
|
7020 |
msgstr "Požadavek není platný."
|
7021 |
|
7022 |
-
#: app/libraries/main.php:
|
7023 |
msgid "iCal export stopped!"
|
7024 |
msgstr "iCal export byl zastaven!"
|
7025 |
|
7026 |
-
#: app/libraries/main.php:
|
7027 |
-
#: app/libraries/main.php:
|
7028 |
-
#: app/libraries/main.php:
|
7029 |
-
#: app/libraries/main.php:
|
7030 |
-
#: app/libraries/main.php:
|
7031 |
-
#: app/libraries/main.php:
|
7032 |
-
#: app/libraries/main.php:
|
7033 |
msgid "Sort"
|
7034 |
msgstr "Seřadit"
|
7035 |
|
7036 |
-
#: app/libraries/main.php:
|
7037 |
-
#: app/libraries/main.php:
|
7038 |
-
#: app/libraries/main.php:
|
7039 |
-
#: app/libraries/main.php:
|
7040 |
-
#: app/libraries/main.php:
|
7041 |
-
#: app/libraries/main.php:
|
7042 |
msgid "Required Field"
|
7043 |
msgstr "Požadovaná pole"
|
7044 |
|
7045 |
-
#: app/libraries/main.php:
|
7046 |
-
#: app/libraries/main.php:
|
7047 |
-
#: app/libraries/main.php:
|
7048 |
-
#: app/libraries/main.php:
|
7049 |
-
#: app/libraries/main.php:
|
7050 |
-
#: app/libraries/main.php:
|
7051 |
msgid "Insert a label for this field"
|
7052 |
msgstr "Vložte štítek pro toto pole"
|
7053 |
|
7054 |
-
#: app/libraries/main.php:
|
7055 |
msgid "HTML and shortcode are allowed."
|
7056 |
msgstr "HTML a zkrácené kódy jsou povoleny."
|
7057 |
|
7058 |
-
#: app/libraries/main.php:
|
7059 |
-
#: app/libraries/main.php:
|
7060 |
msgid "Option"
|
7061 |
msgstr "Možnost"
|
7062 |
|
7063 |
-
#: app/libraries/main.php:
|
7064 |
#, php-format
|
7065 |
msgid "Instead of %s, the page title with a link will be show."
|
7066 |
msgstr "Místo%s se zobrazí název stránky s odkazem."
|
7067 |
|
7068 |
-
#: app/libraries/main.php:
|
7069 |
msgid "Agreement Page"
|
7070 |
msgstr "Stránka smlouvy"
|
7071 |
|
7072 |
-
#: app/libraries/main.php:
|
7073 |
msgid "Checked by default"
|
7074 |
msgstr "Ve výchozím nastavení zaškrtnuto"
|
7075 |
|
7076 |
-
#: app/libraries/main.php:
|
7077 |
msgid "Unchecked by default"
|
7078 |
msgstr "Ve výchozím nastavení není zaškrtnuto"
|
7079 |
|
7080 |
-
#: app/libraries/main.php:
|
7081 |
msgid "Insert a label for this option"
|
7082 |
msgstr "Vložte štítek pro tuto možnost"
|
7083 |
|
7084 |
-
#: app/libraries/main.php:
|
7085 |
msgid "Free"
|
7086 |
msgstr "Zdarma"
|
7087 |
|
7088 |
-
#: app/libraries/main.php:
|
7089 |
msgid "M.E. Calender"
|
7090 |
msgstr "M.E. Kalendář"
|
7091 |
|
7092 |
-
#: app/libraries/main.php:
|
7093 |
#, php-format
|
7094 |
msgid "Copy of %s"
|
7095 |
msgstr "Kopie %s"
|
7096 |
|
7097 |
-
#: app/libraries/main.php:
|
7098 |
msgid "Booked an event."
|
7099 |
msgstr "Událost byla rezervována."
|
7100 |
|
7101 |
-
#: app/libraries/main.php:
|
7102 |
#, php-format
|
7103 |
msgid "%s booked %s event."
|
7104 |
msgstr "%s zarezervoval %s událost."
|
7105 |
|
7106 |
-
#: app/libraries/main.php:
|
7107 |
msgid "Taxonomies"
|
7108 |
msgstr "Taxonomie"
|
7109 |
|
7110 |
# Mrknout na kontext
|
7111 |
-
#: app/libraries/main.php:
|
7112 |
msgid "Category Plural Label"
|
7113 |
msgstr "Štítek množné kategorie"
|
7114 |
|
7115 |
# Mrknout na kontext
|
7116 |
-
#: app/libraries/main.php:
|
7117 |
msgid "Category Singular Label"
|
7118 |
msgstr "Štítek jednotné kategorie"
|
7119 |
|
7120 |
-
#: app/libraries/main.php:
|
7121 |
msgid "Label Plural Label"
|
7122 |
msgstr "Štítek množného štítku"
|
7123 |
|
7124 |
-
#: app/libraries/main.php:
|
7125 |
msgid "Label Singular Label"
|
7126 |
msgstr "Štítek jednotného štítku"
|
7127 |
|
7128 |
-
#: app/libraries/main.php:
|
7129 |
msgid "Location Plural Label"
|
7130 |
msgstr "Štítek množného umístění"
|
7131 |
|
7132 |
-
#: app/libraries/main.php:
|
7133 |
msgid "Location Singular Label"
|
7134 |
msgstr "Štítek jednotného umístění"
|
7135 |
|
7136 |
-
#: app/libraries/main.php:
|
7137 |
msgid "Organizer Plural Label"
|
7138 |
msgstr "Štítek množného organizátora"
|
7139 |
|
7140 |
-
#: app/libraries/main.php:
|
7141 |
msgid "Organizer Singular Label"
|
7142 |
msgstr "Štítek jednotného organizátora"
|
7143 |
|
7144 |
-
#: app/libraries/main.php:
|
7145 |
msgid "Speaker Plural Label"
|
7146 |
msgstr "Štítek množného řečníka"
|
7147 |
|
7148 |
-
#: app/libraries/main.php:
|
7149 |
msgid "Speaker Singular Label"
|
7150 |
msgstr "Štítek jednotného řečníka"
|
7151 |
|
7152 |
-
#: app/libraries/main.php:
|
7153 |
msgid "Sunday abbreviation"
|
7154 |
msgstr "Neděle zkratka"
|
7155 |
|
7156 |
-
#: app/libraries/main.php:
|
7157 |
msgid "Monday abbreviation"
|
7158 |
msgstr "Pondělí zkratka"
|
7159 |
|
7160 |
-
#: app/libraries/main.php:
|
7161 |
msgid "Tuesday abbreviation"
|
7162 |
msgstr "Úterý zkratka"
|
7163 |
|
7164 |
-
#: app/libraries/main.php:
|
7165 |
msgid "Wednesday abbreviation"
|
7166 |
msgstr "Středa zkratka"
|
7167 |
|
7168 |
-
#: app/libraries/main.php:
|
7169 |
msgid "Thursday abbreviation"
|
7170 |
msgstr "Čtvrtek zkratka"
|
7171 |
|
7172 |
-
#: app/libraries/main.php:
|
7173 |
msgid "Friday abbreviation"
|
7174 |
msgstr "Pátek zkratka"
|
7175 |
|
7176 |
-
#: app/libraries/main.php:
|
7177 |
msgid "Saturday abbreviation"
|
7178 |
msgstr "Sobota zkratka"
|
7179 |
|
7180 |
-
#: app/libraries/main.php:
|
7181 |
msgid "Others"
|
7182 |
msgstr "Další"
|
7183 |
|
7184 |
-
#: app/libraries/main.php:
|
7185 |
msgid "Booking Success Message"
|
7186 |
msgstr "Zpráva o úspěchu rezervace"
|
7187 |
|
7188 |
-
#: app/libraries/main.php:
|
7189 |
msgid ""
|
7190 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
7191 |
"needed, please check your email."
|
@@ -7193,32 +7227,32 @@ msgstr ""
|
|
7193 |
"Děkujeme za vaši rezervaci. Vaše vstupenky jsou rezervovány, může být nutné "
|
7194 |
"ověřit rezervaci. Zkontrolujte prosím svůj e-mail."
|
7195 |
|
7196 |
-
#: app/libraries/main.php:
|
7197 |
msgid "Register Button"
|
7198 |
msgstr "Registrační tlačítko"
|
7199 |
|
7200 |
-
#: app/libraries/main.php:
|
7201 |
#: app/skins/carousel/render.php:160 app/skins/carousel/render.php:197
|
7202 |
#: app/skins/grid/render.php:124 app/skins/grid/render.php:171
|
7203 |
#: app/skins/grid/render.php:215 app/skins/grid/render.php:244
|
7204 |
#: app/skins/list/render.php:109 app/skins/list/render.php:195
|
7205 |
#: app/skins/masonry/render.php:188 app/skins/single.php:774
|
7206 |
-
#: app/skins/single.php:777 app/skins/single/default.php:
|
7207 |
-
#: app/skins/single/default.php:
|
7208 |
-
#: app/skins/single/default.php:
|
7209 |
-
#: app/skins/single/m1.php:
|
7210 |
-
#: app/skins/single/m2.php:
|
7211 |
-
#: app/skins/single/modern.php:
|
7212 |
#: app/skins/slider/render.php:163 app/skins/slider/render.php:211
|
7213 |
#: app/skins/slider/render.php:260 app/skins/slider/render.php:320
|
7214 |
msgid "REGISTER"
|
7215 |
msgstr "REGISTROVAT"
|
7216 |
|
7217 |
-
#: app/libraries/main.php:
|
7218 |
msgid "View Detail Button"
|
7219 |
msgstr "Tlačítko Zobrazit detail"
|
7220 |
|
7221 |
-
#: app/libraries/main.php:
|
7222 |
#: app/skins/carousel/render.php:197 app/skins/grid/render.php:124
|
7223 |
#: app/skins/grid/render.php:171 app/skins/grid/render.php:215
|
7224 |
#: app/skins/grid/render.php:244 app/skins/list/render.php:109
|
@@ -7229,86 +7263,86 @@ msgstr "Tlačítko Zobrazit detail"
|
|
7229 |
msgid "View Detail"
|
7230 |
msgstr "Zobrazit detail"
|
7231 |
|
7232 |
-
#: app/libraries/main.php:
|
7233 |
msgid "Event Detail Button"
|
7234 |
msgstr "Tlačítko Detail události"
|
7235 |
|
7236 |
-
#: app/libraries/main.php:
|
7237 |
msgid "Event Detail"
|
7238 |
msgstr "Zobrazit událost"
|
7239 |
|
7240 |
-
#: app/libraries/main.php:
|
7241 |
msgid "More Info Link"
|
7242 |
msgstr "Odkaz na více informací"
|
7243 |
|
7244 |
-
#: app/libraries/main.php:
|
7245 |
msgid "Ticket (Singular)"
|
7246 |
msgstr "Vstupenka (Jednotné)"
|
7247 |
|
7248 |
-
#: app/libraries/main.php:
|
7249 |
msgid "Tickets (Plural)"
|
7250 |
msgstr "Vstupenky (Množné)"
|
7251 |
|
7252 |
-
#: app/libraries/main.php:
|
7253 |
msgid "EventON"
|
7254 |
msgstr "EventON"
|
7255 |
|
7256 |
-
#: app/libraries/main.php:
|
7257 |
msgid "The Events Calendar"
|
7258 |
msgstr "The Events Calendar"
|
7259 |
|
7260 |
-
#: app/libraries/main.php:
|
7261 |
msgid "Events Schedule WP Plugin"
|
7262 |
msgstr "Events Schedule WP Plugin"
|
7263 |
|
7264 |
-
#: app/libraries/main.php:
|
7265 |
msgid "Calendarize It"
|
7266 |
msgstr "Calendarize It"
|
7267 |
|
7268 |
-
#: app/libraries/main.php:
|
7269 |
#, fuzzy
|
7270 |
#| msgid "Event Speakers"
|
7271 |
msgid "Event Espresso"
|
7272 |
msgstr "Řečník události"
|
7273 |
|
7274 |
-
#: app/libraries/main.php:
|
7275 |
#, fuzzy
|
7276 |
#| msgid "Event Repeating (Recurring events)"
|
7277 |
msgid "Events Manager (Recurring)"
|
7278 |
msgstr "Opakování události (opakující se události)"
|
7279 |
|
7280 |
-
#: app/libraries/main.php:
|
7281 |
#, fuzzy
|
7282 |
#| msgid "Modern Events Calendar (Lite)"
|
7283 |
msgid "Events Manager (Single)"
|
7284 |
msgstr "Modern Events Calendar (Lite)"
|
7285 |
|
7286 |
-
#: app/libraries/main.php:
|
7287 |
msgid "Confirmed"
|
7288 |
msgstr "Potvrzeno"
|
7289 |
|
7290 |
-
#: app/libraries/main.php:
|
7291 |
msgid "Rejected"
|
7292 |
msgstr "Odmítnuto"
|
7293 |
|
7294 |
-
#: app/libraries/main.php:
|
7295 |
msgid "Pending"
|
7296 |
msgstr "Nevyřízený"
|
7297 |
|
7298 |
-
#: app/libraries/main.php:
|
7299 |
msgid "Waiting"
|
7300 |
msgstr "Čekající"
|
7301 |
|
7302 |
-
#: app/libraries/main.php:
|
7303 |
#: app/libraries/render.php:418
|
7304 |
msgid "Skin controller does not exist."
|
7305 |
msgstr "Ovladač vzhledu neexistuje."
|
7306 |
|
7307 |
-
#: app/libraries/main.php:
|
7308 |
msgid "Sold Out"
|
7309 |
msgstr "Vyprodáno"
|
7310 |
|
7311 |
-
#: app/libraries/main.php:
|
7312 |
#, fuzzy
|
7313 |
#| msgid "Ticket"
|
7314 |
msgid "Last Few Tickets"
|
@@ -7322,48 +7356,48 @@ msgstr "Prosím, ověřte svůj e-mail."
|
|
7322 |
msgid "Your booking is received."
|
7323 |
msgstr "Vaše rezervace je přijata."
|
7324 |
|
7325 |
-
#: app/libraries/notifications.php:
|
7326 |
msgid "Your booking is confirmed."
|
7327 |
msgstr "Vaše rezervace je potvrzena."
|
7328 |
|
7329 |
-
#: app/libraries/notifications.php:
|
7330 |
msgid "booking canceled."
|
7331 |
msgstr "rezervace zrušena."
|
7332 |
|
7333 |
-
#: app/libraries/notifications.php:
|
7334 |
msgid "A new booking is received."
|
7335 |
msgstr "Je přijata nová rezervace."
|
7336 |
|
7337 |
-
#: app/libraries/notifications.php:
|
7338 |
msgid "A new event is added."
|
7339 |
msgstr "Je přidána se nová událost."
|
7340 |
|
7341 |
-
#: app/libraries/notifications.php:
|
7342 |
msgid "Your event is published."
|
7343 |
msgstr "Vaše událost je zveřejněna."
|
7344 |
|
7345 |
-
#: app/libraries/notifications.php:
|
7346 |
-
#: app/libraries/notifications.php:
|
7347 |
msgid "to"
|
7348 |
msgstr "do"
|
7349 |
|
7350 |
-
#: app/libraries/notifications.php:
|
7351 |
msgid "+ Add to Google Calendar"
|
7352 |
msgstr "+ Přidat do Google kalendáře"
|
7353 |
|
7354 |
-
#: app/libraries/notifications.php:
|
7355 |
msgid "+ iCal export"
|
7356 |
msgstr "+ iCal export"
|
7357 |
|
7358 |
-
#: app/libraries/notifications.php:
|
7359 |
msgid "Yes"
|
7360 |
msgstr "Ano"
|
7361 |
|
7362 |
-
#: app/libraries/notifications.php:
|
7363 |
msgid "No"
|
7364 |
msgstr "Ne"
|
7365 |
|
7366 |
-
#: app/libraries/skins.php:
|
7367 |
#, fuzzy
|
7368 |
#| msgid "Select All"
|
7369 |
msgid "Select"
|
@@ -7395,12 +7429,12 @@ msgstr "Slevový kupon"
|
|
7395 |
msgid "Apply Coupon"
|
7396 |
msgstr "Aplikovat kupon"
|
7397 |
|
7398 |
-
#: app/modules/booking/steps/checkout.php:
|
7399 |
#: app/modules/booking/steps/form.php:180
|
7400 |
msgid "Back"
|
7401 |
msgstr ""
|
7402 |
|
7403 |
-
#: app/modules/booking/steps/checkout.php:
|
7404 |
msgid "Free Booking"
|
7405 |
msgstr "Rezervace zdarma"
|
7406 |
|
@@ -7438,19 +7472,19 @@ msgid "The %s ticket is sold out. You can try another ticket or another date."
|
|
7438 |
msgstr ""
|
7439 |
"Vstupenka %s je vyprodána. Můžete vyzkoušet jinou vstupenku nebo jiné datum."
|
7440 |
|
7441 |
-
#: app/modules/countdown/details.php:
|
7442 |
msgid "The event is finished."
|
7443 |
msgstr "Událost je ukončena."
|
7444 |
|
7445 |
-
#: app/modules/countdown/details.php:
|
7446 |
msgid "The event is ongoing."
|
7447 |
msgstr "Událost právě probíhá."
|
7448 |
|
7449 |
-
#: app/modules/googlemap/details.php:
|
7450 |
msgid "Address from ..."
|
7451 |
msgstr "Adresa od ..."
|
7452 |
|
7453 |
-
#: app/modules/googlemap/details.php:
|
7454 |
msgid "Get Directions"
|
7455 |
msgstr "Získat směr"
|
7456 |
|
@@ -7458,17 +7492,17 @@ msgstr "Získat směr"
|
|
7458 |
msgid "Share this event"
|
7459 |
msgstr "Sdílet tuto událost"
|
7460 |
|
7461 |
-
#: app/modules/local-time/details.php:
|
7462 |
#, php-format
|
7463 |
msgid "Timezone: %s"
|
7464 |
msgstr "Časové pásmo: %s"
|
7465 |
|
7466 |
-
#: app/modules/local-time/details.php:
|
7467 |
#, php-format
|
7468 |
msgid "Date: %s"
|
7469 |
msgstr "Datum: %s"
|
7470 |
|
7471 |
-
#: app/modules/local-time/details.php:
|
7472 |
#, php-format
|
7473 |
msgid "Time: %s"
|
7474 |
msgstr "Čas: %s"
|
@@ -7482,8 +7516,8 @@ msgid "Go to occurrence page"
|
|
7482 |
msgstr "Přejít na stránku výskytu"
|
7483 |
|
7484 |
#: app/modules/next-event/details.php:98 app/skins/single.php:747
|
7485 |
-
#: app/skins/single/default.php:102 app/skins/single/default.php:
|
7486 |
-
#: app/skins/single/m1.php:37 app/skins/single/modern.php:
|
7487 |
msgid "Time"
|
7488 |
msgstr "Čas"
|
7489 |
|
@@ -7608,31 +7642,31 @@ msgid "Home"
|
|
7608 |
msgstr "Domů"
|
7609 |
|
7610 |
#: app/skins/single.php:544 app/skins/single/default.php:51
|
7611 |
-
#: app/skins/single/m1.php:
|
7612 |
-
#: app/skins/single/modern.php:
|
7613 |
msgid "Sold out!"
|
7614 |
msgstr "Vyprodáno!"
|
7615 |
|
7616 |
#: app/skins/single.php:822 app/skins/single.php:877
|
7617 |
-
#: app/skins/single/default.php:227 app/skins/single/default.php:
|
7618 |
#: app/skins/single/m1.php:109 app/skins/single/m2.php:35
|
7619 |
#: app/skins/single/modern.php:44
|
7620 |
msgid "Phone"
|
7621 |
msgstr "Telefon"
|
7622 |
|
7623 |
#: app/skins/single.php:836 app/skins/single.php:891
|
7624 |
-
#: app/skins/single/default.php:241 app/skins/single/default.php:
|
7625 |
#: app/skins/single/m1.php:123 app/skins/single/m2.php:49
|
7626 |
#: app/skins/single/modern.php:58
|
7627 |
msgid "Website"
|
7628 |
msgstr "Webová stránka"
|
7629 |
|
7630 |
-
#: app/skins/single.php:
|
7631 |
msgid "Speakers:"
|
7632 |
msgstr "Řečník:"
|
7633 |
|
7634 |
-
#: app/skins/single/default.php:69 app/skins/single/m1.php:
|
7635 |
-
#: app/skins/single/m2.php:
|
7636 |
msgid "Tags: "
|
7637 |
msgstr "Značky: "
|
7638 |
|
@@ -8052,6 +8086,11 @@ msgstr "http://webnus.net"
|
|
8052 |
#~ msgid "User get connected sucessfully!"
|
8053 |
#~ msgstr "Události byly úspěšně importovány!"
|
8054 |
|
|
|
|
|
|
|
|
|
|
|
8055 |
#, fuzzy
|
8056 |
#~| msgid "Modern"
|
8057 |
#~ msgid "Mode"
|
@@ -8097,6 +8136,9 @@ msgstr "http://webnus.net"
|
|
8097 |
#~ msgid "Organizer Payment Credentials"
|
8098 |
#~ msgstr "Platba organizátora"
|
8099 |
|
|
|
|
|
|
|
8100 |
#, fuzzy
|
8101 |
#~| msgid "Enable booking reminder notification"
|
8102 |
#~ msgid "Booking reminder notification is not enabled!"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar Lite\n"
|
4 |
+
"POT-Creation-Date: 2020-02-12 17:40+0330\n"
|
5 |
+
"PO-Revision-Date: 2020-02-12 17:43+0330\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: cs_CZ\n"
|
73 |
msgid "Settings"
|
74 |
msgstr "Nastavení"
|
75 |
|
76 |
+
#: app/features/contextual.php:62 app/features/events.php:2453
|
77 |
+
#: app/features/mec/booking.php:448 app/features/mec/support.php:29
|
78 |
#: app/libraries/main.php:560
|
79 |
msgid "Booking Form"
|
80 |
msgstr "Rezervační formulář"
|
94 |
"www.youtube.com/embed/YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></"
|
95 |
"iframe>"
|
96 |
|
97 |
+
#: app/features/contextual.php:70 app/features/mec/booking.php:566
|
98 |
#: app/features/mec/support.php:36 app/libraries/main.php:561
|
99 |
msgid "Payment Gateways"
|
100 |
msgstr "Platební brány"
|
218 |
msgid "Google Recaptcha Options"
|
219 |
msgstr "Možnosti Google Recaptcha"
|
220 |
|
221 |
+
#: app/features/contextual.php:258 app/features/mec/single.php:149
|
222 |
#: app/libraries/main.php:548
|
223 |
msgid "Countdown Options"
|
224 |
msgstr "Možnosti Odpočítávání"
|
225 |
|
226 |
+
#: app/features/contextual.php:268 app/features/mec/modules.php:264
|
227 |
#: app/libraries/main.php:571
|
228 |
msgid "Social Networks"
|
229 |
msgstr "Sociální sítě"
|
249 |
msgid "Booking"
|
250 |
msgstr "Rezervace"
|
251 |
|
252 |
+
#: app/features/contextual.php:318 app/features/mec/booking.php:270
|
253 |
#: app/libraries/main.php:557
|
254 |
msgid "Coupons"
|
255 |
msgstr "Kupóny"
|
256 |
|
257 |
+
#: app/features/contextual.php:326 app/features/mec/modules.php:330
|
258 |
#: app/libraries/main.php:573
|
259 |
msgid "BuddyPress Integration"
|
260 |
msgstr "Integrace BuddyPress"
|
276 |
msgstr "Události"
|
277 |
|
278 |
#: app/features/events.php:158 app/features/fes.php:223
|
279 |
+
#: app/features/mec/meta_boxes/display_options.php:1048
|
280 |
+
#: app/features/mec/meta_boxes/display_options.php:1104
|
281 |
+
#: app/features/mec/meta_boxes/display_options.php:1139
|
282 |
#: app/features/profile/profile.php:50 app/skins/daily_view/tpl.php:80
|
283 |
#: app/skins/monthly_view/tpl.php:71 app/skins/tile/tpl.php:70
|
284 |
#: app/skins/yearly_view/tpl.php:69
|
293 |
msgid "Add New Event"
|
294 |
msgstr "Přidat novou událost"
|
295 |
|
296 |
+
#: app/features/events.php:161 app/features/ix.php:3879
|
297 |
+
#: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:66
|
298 |
+
#: app/skins/map/tpl.php:85
|
299 |
msgid "No events found!"
|
300 |
msgstr "Nebyly nalezeny žádné události!"
|
301 |
|
315 |
msgid "No events found in Trash!"
|
316 |
msgstr "V koši nebyly nalezeny žádné události!"
|
317 |
|
318 |
+
#: app/features/events.php:182 app/features/events.php:3302
|
319 |
+
#: app/features/mec/meta_boxes/display_options.php:959
|
320 |
#: app/features/mec/meta_boxes/search_form.php:31
|
321 |
#: app/features/mec/meta_boxes/search_form.php:93
|
322 |
#: app/features/mec/meta_boxes/search_form.php:155
|
328 |
#: app/features/mec/meta_boxes/search_form.php:514
|
329 |
#: app/features/mec/meta_boxes/search_form.php:575
|
330 |
#: app/features/mec/meta_boxes/search_form.php:672
|
331 |
+
#: app/features/mec/settings.php:808 app/features/mec/single.php:232
|
332 |
+
#: app/features/search.php:68 app/libraries/main.php:5335
|
333 |
+
#: app/libraries/skins.php:865 app/skins/single.php:566
|
334 |
+
#: app/skins/single/default.php:192 app/skins/single/default.php:415
|
335 |
+
#: app/skins/single/m1.php:184 app/skins/single/m2.php:110
|
336 |
+
#: app/skins/single/modern.php:118
|
337 |
msgid "Category"
|
338 |
msgstr "Kategorie"
|
339 |
|
340 |
+
#: app/features/events.php:183 app/features/events.php:3257
|
341 |
#: app/features/fes/form.php:757 app/features/mec.php:403
|
342 |
+
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5334
|
343 |
msgid "Categories"
|
344 |
msgstr "Kategorie"
|
345 |
|
427 |
msgid "Event Repeating"
|
428 |
msgstr "Opakování události"
|
429 |
|
430 |
+
#: app/features/events.php:333 app/features/events.php:1268
|
431 |
+
#: app/features/mec/settings.php:718 app/skins/single.php:953
|
432 |
msgid "Hourly Schedule"
|
433 |
msgstr "Hodinový rozvrh"
|
434 |
|
444 |
msgid "Links"
|
445 |
msgstr "Odkaz"
|
446 |
|
447 |
+
#: app/features/events.php:336 app/features/events.php:3304
|
448 |
+
#: app/features/events.php:3495 app/features/events.php:3537
|
449 |
+
#: app/features/ix.php:3506 app/features/ix.php:3547
|
450 |
+
#: app/features/mec/meta_boxes/display_options.php:962
|
451 |
#: app/features/mec/meta_boxes/search_form.php:45
|
452 |
#: app/features/mec/meta_boxes/search_form.php:107
|
453 |
#: app/features/mec/meta_boxes/search_form.php:169
|
459 |
#: app/features/mec/meta_boxes/search_form.php:528
|
460 |
#: app/features/mec/meta_boxes/search_form.php:589
|
461 |
#: app/features/mec/meta_boxes/search_form.php:686
|
462 |
+
#: app/features/mec/settings.php:820 app/features/mec/single.php:236
|
463 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
464 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
465 |
#: app/features/organizers.php:271 app/features/search.php:78
|
466 |
+
#: app/libraries/main.php:5341 app/libraries/skins.php:917
|
467 |
#: app/skins/single.php:812 app/skins/single/default.php:217
|
468 |
+
#: app/skins/single/default.php:440 app/skins/single/m1.php:99
|
469 |
#: app/skins/single/m2.php:25 app/skins/single/modern.php:34
|
470 |
msgid "Organizer"
|
471 |
msgstr "Organizátor"
|
472 |
|
473 |
+
#: app/features/events.php:337 app/features/events.php:1154
|
474 |
+
#: app/features/fes/form.php:730 app/libraries/main.php:5368
|
475 |
#: app/skins/single.php:589 app/skins/single/default.php:126
|
476 |
+
#: app/skins/single/default.php:349 app/skins/single/m1.php:58
|
477 |
+
#: app/skins/single/modern.php:213
|
478 |
msgid "Cost"
|
479 |
msgstr "Cena"
|
480 |
|
481 |
+
#: app/features/events.php:454
|
482 |
msgid "Note for reviewer"
|
483 |
msgstr "Poznámka pro recenzenta"
|
484 |
|
485 |
+
#: app/features/events.php:460
|
486 |
msgid "Guest Data"
|
487 |
msgstr "Údaje hosta"
|
488 |
|
489 |
+
#: app/features/events.php:461 app/features/events.php:2435
|
490 |
+
#: app/features/events.php:3784 app/features/fes.php:223
|
491 |
#: app/features/fes/form.php:689 app/features/labels.php:178
|
492 |
#: app/features/mec/booking.php:45 app/features/organizers.php:279
|
493 |
+
#: app/features/profile/profile.php:180 app/libraries/notifications.php:1117
|
494 |
#: app/modules/booking/steps/form.php:37
|
495 |
msgid "Name"
|
496 |
msgstr "Jméno"
|
497 |
|
498 |
+
#: app/features/events.php:462 app/features/events.php:2446
|
499 |
+
#: app/features/events.php:2522 app/features/events.php:3787
|
500 |
#: app/features/fes.php:223 app/features/fes/form.php:685
|
501 |
+
#: app/features/mec/booking.php:57 app/features/mec/booking.php:499
|
502 |
#: app/features/organizers.php:111 app/features/organizers.php:152
|
503 |
#: app/features/profile/profile.php:183 app/features/speakers.php:127
|
504 |
+
#: app/features/speakers.php:196 app/libraries/main.php:1547
|
505 |
+
#: app/libraries/main.php:1616 app/libraries/main.php:2843
|
506 |
+
#: app/libraries/notifications.php:1118 app/modules/booking/steps/form.php:46
|
507 |
#: app/modules/booking/steps/form.php:83 app/skins/single.php:829
|
508 |
#: app/skins/single.php:884 app/skins/single/default.php:234
|
509 |
+
#: app/skins/single/default.php:457 app/skins/single/m1.php:116
|
510 |
#: app/skins/single/m2.php:42 app/skins/single/modern.php:51
|
511 |
msgid "Email"
|
512 |
msgstr "Email"
|
513 |
|
514 |
+
#: app/features/events.php:470 app/features/fes/form.php:243
|
515 |
msgid "Date and Time"
|
516 |
msgstr "Datum a čas"
|
517 |
|
518 |
+
#: app/features/events.php:473 app/features/events.php:479
|
519 |
+
#: app/features/events.php:3305 app/features/events.php:3495
|
520 |
+
#: app/features/events.php:3537 app/features/fes/form.php:247
|
521 |
+
#: app/features/fes/form.php:251 app/features/ix.php:3506
|
522 |
+
#: app/features/ix.php:3547 app/features/ix/import_g_calendar.php:38
|
523 |
#: app/features/mec/dashboard.php:401
|
524 |
#: app/features/mec/meta_boxes/display_options.php:49
|
525 |
#: app/features/mec/meta_boxes/display_options.php:229
|
528 |
#: app/features/mec/meta_boxes/display_options.php:598
|
529 |
#: app/features/mec/meta_boxes/display_options.php:652
|
530 |
#: app/features/mec/meta_boxes/display_options.php:699
|
531 |
+
#: app/features/mec/meta_boxes/display_options.php:733
|
532 |
+
#: app/features/mec/meta_boxes/display_options.php:768
|
533 |
+
#: app/features/mec/meta_boxes/display_options.php:815
|
534 |
+
#: app/features/mec/meta_boxes/display_options.php:914
|
535 |
+
#: app/features/mec/meta_boxes/display_options.php:1162
|
536 |
+
#: app/features/mec/meta_boxes/display_options.php:1250
|
537 |
+
#: app/features/mec/meta_boxes/display_options.php:1342
|
538 |
+
#: app/features/mec/meta_boxes/display_options.php:1409
|
539 |
msgid "Start Date"
|
540 |
msgstr "Počátečná den"
|
541 |
|
542 |
+
#: app/features/events.php:551 app/features/events.php:643
|
543 |
+
#: app/features/events.php:1708 app/features/events.php:1767
|
544 |
+
#: app/features/events.php:1960 app/features/events.php:1999
|
545 |
#: app/features/fes/form.php:279 app/features/fes/form.php:319
|
546 |
msgid "AM"
|
547 |
msgstr "dop."
|
548 |
|
549 |
+
#: app/features/events.php:558 app/features/events.php:650
|
550 |
+
#: app/features/events.php:1715 app/features/events.php:1774
|
551 |
+
#: app/features/events.php:1961 app/features/events.php:2000
|
552 |
#: app/features/fes/form.php:280 app/features/fes/form.php:320
|
553 |
msgid "PM"
|
554 |
msgstr "odp."
|
555 |
|
556 |
+
#: app/features/events.php:565 app/features/events.php:570
|
557 |
+
#: app/features/events.php:3306 app/features/events.php:3495
|
558 |
+
#: app/features/events.php:3537 app/features/fes/form.php:287
|
559 |
+
#: app/features/fes/form.php:291 app/features/ix.php:3506
|
560 |
+
#: app/features/ix.php:3547 app/features/ix/import_g_calendar.php:44
|
561 |
#: app/features/mec/dashboard.php:402
|
562 |
msgid "End Date"
|
563 |
msgstr "Konečný den"
|
564 |
|
565 |
+
#: app/features/events.php:664 app/features/fes/form.php:326
|
566 |
msgid "All Day Event"
|
567 |
msgstr "Celodenní událost"
|
568 |
|
569 |
+
#: app/features/events.php:674 app/features/fes/form.php:329
|
570 |
msgid "Hide Event Time"
|
571 |
msgstr "Skrýt čas události"
|
572 |
|
573 |
+
#: app/features/events.php:684 app/features/fes/form.php:332
|
574 |
msgid "Hide Event End Time"
|
575 |
msgstr "Skrýt čas ukončení události"
|
576 |
|
577 |
+
#: app/features/events.php:689 app/features/events.php:693
|
578 |
#: app/features/fes/form.php:336
|
579 |
msgid "Time Comment"
|
580 |
msgstr "Časový komentář"
|
581 |
|
582 |
+
#: app/features/events.php:694 app/features/fes/form.php:337
|
583 |
msgid ""
|
584 |
"It shows next to event time on single event page. You can insert Timezone "
|
585 |
"etc. in this field."
|
587 |
"Zobrazuje se vedle času události na stránce jedné události. Do tohoto pole "
|
588 |
"můžete vložit časové pásmo atd."
|
589 |
|
590 |
+
#: app/features/events.php:696 app/features/events.php:817
|
591 |
+
#: app/features/events.php:1117 app/features/events.php:1194
|
592 |
+
#: app/features/events.php:1493 app/features/events.php:1585
|
593 |
+
#: app/features/events.php:1795 app/features/events.php:1810
|
594 |
+
#: app/features/events.php:2019 app/features/events.php:2032
|
595 |
+
#: app/features/events.php:2183 app/features/events.php:2219
|
596 |
+
#: app/features/events.php:2317 app/features/events.php:2332
|
597 |
+
#: app/features/events.php:2362 app/features/events.php:2375
|
598 |
+
#: app/features/fes/form.php:641 app/features/locations.php:301
|
599 |
#: app/features/mec/booking.php:108 app/features/mec/booking.php:158
|
600 |
#: app/features/mec/booking.php:171 app/features/mec/booking.php:187
|
601 |
+
#: app/features/mec/booking.php:315 app/features/mec/booking.php:344
|
602 |
+
#: app/features/mec/booking.php:392 app/features/mec/booking.php:402
|
603 |
+
#: app/features/mec/booking.php:424 app/features/mec/booking.php:434
|
604 |
#: app/features/mec/dashboard.php:71
|
605 |
#: app/features/mec/meta_boxes/display_options.php:80
|
606 |
#: app/features/mec/meta_boxes/display_options.php:93
|
616 |
#: app/features/mec/meta_boxes/display_options.php:332
|
617 |
#: app/features/mec/meta_boxes/display_options.php:439
|
618 |
#: app/features/mec/meta_boxes/display_options.php:615
|
619 |
+
#: app/features/mec/meta_boxes/display_options.php:946
|
620 |
+
#: app/features/mec/meta_boxes/display_options.php:1019
|
621 |
+
#: app/features/mec/meta_boxes/display_options.php:1031
|
622 |
+
#: app/features/mec/meta_boxes/display_options.php:1042
|
623 |
+
#: app/features/mec/meta_boxes/display_options.php:1074
|
624 |
+
#: app/features/mec/meta_boxes/display_options.php:1085
|
625 |
+
#: app/features/mec/meta_boxes/display_options.php:1098
|
626 |
+
#: app/features/mec/meta_boxes/display_options.php:1133
|
627 |
+
#: app/features/mec/meta_boxes/display_options.php:1182
|
628 |
+
#: app/features/mec/meta_boxes/display_options.php:1193
|
629 |
+
#: app/features/mec/meta_boxes/display_options.php:1204
|
630 |
+
#: app/features/mec/meta_boxes/display_options.php:1270
|
631 |
+
#: app/features/mec/meta_boxes/display_options.php:1283
|
632 |
+
#: app/features/mec/meta_boxes/display_options.php:1296
|
633 |
+
#: app/features/mec/meta_boxes/display_options.php:1309
|
634 |
+
#: app/features/mec/meta_boxes/display_options.php:1322
|
635 |
+
#: app/features/mec/meta_boxes/display_options.php:1373
|
636 |
+
#: app/features/mec/meta_boxes/display_options.php:1426
|
637 |
#: app/features/mec/modules.php:53 app/features/mec/modules.php:86
|
638 |
#: app/features/mec/modules.php:103 app/features/mec/modules.php:138
|
639 |
+
#: app/features/mec/modules.php:154 app/features/mec/modules.php:318
|
640 |
#: app/features/mec/notifications.php:88 app/features/mec/notifications.php:185
|
641 |
#: app/features/mec/notifications.php:277
|
642 |
#: app/features/mec/notifications.php:380
|
657 |
#: app/features/mec/settings.php:899 app/features/mec/single.php:42
|
658 |
#: app/features/mec/single.php:58 app/features/mec/single.php:77
|
659 |
#: app/features/mec/single.php:94 app/features/mec/single.php:110
|
660 |
+
#: app/features/mec/single.php:125 app/features/mec/single.php:178
|
661 |
#: app/features/mec/styling.php:203 app/features/mec/styling.php:220
|
662 |
#: app/features/mec/styling.php:233 app/features/organizers.php:272
|
663 |
#: app/skins/single.php:674 app/skins/single/default.php:141
|
664 |
+
#: app/skins/single/default.php:364 app/skins/single/m1.php:206
|
665 |
+
#: app/skins/single/m2.php:133 app/skins/single/modern.php:141
|
666 |
msgid "Read More"
|
667 |
msgstr "Číst více"
|
668 |
|
669 |
+
#: app/features/events.php:704
|
670 |
msgid "Repeating"
|
671 |
msgstr "Opakování"
|
672 |
|
673 |
+
#: app/features/events.php:713
|
674 |
msgid "Event Repeating (Recurring events)"
|
675 |
msgstr "Opakování události (opakující se události)"
|
676 |
|
677 |
+
#: app/features/events.php:717 app/features/fes/form.php:347
|
678 |
msgid "Repeats"
|
679 |
msgstr "Opakování"
|
680 |
|
681 |
+
#: app/features/events.php:725 app/features/fes/form.php:349
|
682 |
#: app/features/mec/dashboard.php:404
|
683 |
#: app/skins/default_full_calendar/tpl.php:69
|
684 |
#: app/skins/full_calendar/tpl.php:110
|
685 |
msgid "Daily"
|
686 |
msgstr "Děnně"
|
687 |
|
688 |
+
#: app/features/events.php:732 app/features/fes/form.php:350
|
689 |
msgid "Every Weekday"
|
690 |
msgstr "Každý všední den"
|
691 |
|
692 |
+
#: app/features/events.php:739 app/features/fes/form.php:351
|
693 |
msgid "Every Weekend"
|
694 |
msgstr "Každý víkend"
|
695 |
|
696 |
+
#: app/features/events.php:746 app/features/fes/form.php:352
|
697 |
msgid "Certain Weekdays"
|
698 |
msgstr "Určité pracovní dny"
|
699 |
|
700 |
+
#: app/features/events.php:753 app/features/fes/form.php:353
|
701 |
#: app/skins/default_full_calendar/tpl.php:68
|
702 |
#: app/skins/full_calendar/tpl.php:109
|
703 |
msgid "Weekly"
|
704 |
msgstr "Týdně"
|
705 |
|
706 |
+
#: app/features/events.php:760 app/features/fes/form.php:354
|
707 |
#: app/features/mec/dashboard.php:405
|
708 |
#: app/skins/default_full_calendar/tpl.php:67
|
709 |
#: app/skins/full_calendar/tpl.php:108
|
710 |
msgid "Monthly"
|
711 |
msgstr "Měsíčně"
|
712 |
|
713 |
+
#: app/features/events.php:767 app/features/fes/form.php:355
|
714 |
#: app/features/mec/dashboard.php:406
|
715 |
#: app/skins/default_full_calendar/tpl.php:66
|
716 |
#: app/skins/full_calendar/tpl.php:107
|
717 |
msgid "Yearly"
|
718 |
msgstr "Ročně"
|
719 |
|
720 |
+
#: app/features/events.php:774 app/features/fes/form.php:356
|
721 |
msgid "Custom Days"
|
722 |
msgstr "Vlastní dny"
|
723 |
|
724 |
+
#: app/features/events.php:781 app/features/fes/form.php:357
|
725 |
msgid "Advanced"
|
726 |
msgstr "Pokročilé"
|
727 |
|
728 |
+
#: app/features/events.php:786 app/features/fes/form.php:361
|
729 |
msgid "Repeat Interval"
|
730 |
msgstr "Interval opakování"
|
731 |
|
732 |
+
#: app/features/events.php:788 app/features/fes/form.php:362
|
733 |
msgid "Repeat interval"
|
734 |
msgstr "Interval opakování"
|
735 |
|
736 |
+
#: app/features/events.php:792 app/features/fes/form.php:365
|
737 |
msgid "Week Days"
|
738 |
msgstr "Dny v týdnu"
|
739 |
|
740 |
+
#: app/features/events.php:807 app/features/events.php:1879
|
741 |
+
#: app/features/events.php:1907 app/features/events.php:2087
|
742 |
#: app/features/fes/form.php:377 app/features/ix/import_f_calendar.php:42
|
743 |
#: app/features/ix/import_g_calendar.php:51
|
744 |
#: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
|
745 |
msgid "Start"
|
746 |
msgstr "Začátek"
|
747 |
|
748 |
+
#: app/features/events.php:809 app/features/events.php:1883
|
749 |
+
#: app/features/events.php:1911 app/features/events.php:2091
|
750 |
#: app/features/fes/form.php:378
|
751 |
msgid "End"
|
752 |
msgstr "Konec"
|
753 |
|
754 |
+
#: app/features/events.php:811 app/features/events.php:1188
|
755 |
+
#: app/features/events.php:1299 app/features/events.php:1404
|
756 |
+
#: app/features/events.php:1862 app/features/events.php:2076
|
757 |
+
#: app/features/events.php:2156 app/features/events.php:2289
|
758 |
#: app/features/fes/form.php:379 app/features/fes/form.php:855
|
759 |
msgid "Add"
|
760 |
msgstr "Přidat"
|
761 |
|
762 |
+
#: app/features/events.php:814
|
763 |
msgid "Custom Days Repeating"
|
764 |
msgstr "Opakování vlastních dnů"
|
765 |
|
766 |
+
#: app/features/events.php:815
|
767 |
msgid ""
|
768 |
"Add certain days to event occurrence dates. If you have single day event, "
|
769 |
"start and end date should be the same, If you have multiple day event the "
|
773 |
"datum zahájení a ukončení by mělo být stejné. Pokud máte vícedenní událost, "
|
774 |
"datum zahájení a ukončení musí odpovídat počátečnímu datu."
|
775 |
|
776 |
+
#: app/features/events.php:851 app/features/fes/form.php:405
|
777 |
msgid "First"
|
778 |
msgstr "První"
|
779 |
|
780 |
+
#: app/features/events.php:893 app/features/fes/form.php:447
|
781 |
msgid "Second"
|
782 |
msgstr "Druhá"
|
783 |
|
784 |
+
#: app/features/events.php:935 app/features/fes/form.php:489
|
785 |
msgid "Third"
|
786 |
msgstr "Třetí"
|
787 |
|
788 |
+
#: app/features/events.php:977 app/features/fes/form.php:531
|
789 |
msgid "Fourth"
|
790 |
msgstr "Čtvrtá"
|
791 |
|
792 |
+
#: app/features/events.php:1019 app/features/fes/form.php:573
|
793 |
msgid "Last"
|
794 |
msgstr "Poslední"
|
795 |
|
796 |
+
#: app/features/events.php:1066 app/features/fes/form.php:619
|
797 |
msgid "Ends Repeat"
|
798 |
msgstr "Ukončení opakování"
|
799 |
|
800 |
+
#: app/features/events.php:1078 app/features/fes/form.php:623
|
801 |
msgid "Never"
|
802 |
msgstr "Nikdy"
|
803 |
|
804 |
# Možná Zapnuto
|
805 |
+
#: app/features/events.php:1090 app/features/fes/form.php:628
|
806 |
msgid "On"
|
807 |
msgstr "Na"
|
808 |
|
809 |
+
#: app/features/events.php:1106 app/features/fes/form.php:635
|
810 |
msgid "After"
|
811 |
msgstr "Po"
|
812 |
|
813 |
+
#: app/features/events.php:1110 app/features/events.php:1114
|
814 |
#: app/features/fes/form.php:637 app/features/fes/form.php:640
|
815 |
msgid "Occurrences times"
|
816 |
msgstr "Časy výskytu"
|
817 |
|
818 |
+
#: app/features/events.php:1115 app/features/fes/form.php:641
|
819 |
msgid ""
|
820 |
"The event will finish after certain repeats. For example if you set it to "
|
821 |
"10, the event will finish after 10 repeats."
|
823 |
"Událost bude ukončena po určitých opakováních. Pokud například nastavíte "
|
824 |
"hodnotu 10, událost skončí po 10 opakováních."
|
825 |
|
826 |
+
#: app/features/events.php:1130 app/features/fes/form.php:654
|
827 |
#, fuzzy
|
828 |
#| msgid "Next Occurrence of Other Events"
|
829 |
msgid "Show only one occurrence of this event"
|
830 |
msgstr "Další výskyt dalších událostí"
|
831 |
|
832 |
+
#: app/features/events.php:1150 app/features/events.php:3495
|
833 |
+
#: app/features/events.php:3537 app/features/fes/form.php:727
|
834 |
+
#: app/features/ix.php:3506 app/features/ix.php:3547
|
835 |
+
#: app/features/mec/settings.php:664 app/libraries/main.php:5367
|
836 |
#: app/widgets/single.php:103
|
837 |
msgid "Event Cost"
|
838 |
msgstr "Cena události"
|
839 |
|
840 |
+
#: app/features/events.php:1175
|
841 |
msgid "Exceptional Days (Exclude Dates)"
|
842 |
msgstr "Výjimečné dny (vyjma dat)"
|
843 |
|
844 |
+
#: app/features/events.php:1181 app/features/events.php:1191
|
845 |
msgid "Exclude certain days"
|
846 |
msgstr "Vyloučit určité dny"
|
847 |
|
848 |
+
#: app/features/events.php:1186 app/features/events.php:2523
|
849 |
+
#: app/features/fes.php:223 app/features/mec/booking.php:500
|
850 |
+
#: app/features/profile/profile.php:53 app/libraries/main.php:2253
|
851 |
+
#: app/libraries/main.php:2901 app/modules/booking/steps/tickets.php:22
|
852 |
#: app/modules/next-event/details.php:93 app/skins/single.php:648
|
853 |
+
#: app/skins/single/default.php:85 app/skins/single/default.php:308
|
854 |
+
#: app/skins/single/m1.php:20 app/skins/single/modern.php:175
|
855 |
msgid "Date"
|
856 |
msgstr "Datum"
|
857 |
|
858 |
+
#: app/features/events.php:1192
|
859 |
msgid ""
|
860 |
"Exclude certain days from event occurrence dates. Please note that you can "
|
861 |
"exclude only single day occurrences and you cannot exclude one day from "
|
865 |
"můžete vyloučit pouze výskyty za jeden den a nelze vyloučit jeden den z "
|
866 |
"vícedenních výskytů."
|
867 |
|
868 |
+
#: app/features/events.php:1246 app/libraries/render.php:506
|
869 |
msgid "Day 1"
|
870 |
msgstr "Den 1"
|
871 |
|
872 |
+
#: app/features/events.php:1272
|
873 |
msgid "Add Day"
|
874 |
msgstr "Přidat den"
|
875 |
|
876 |
+
#: app/features/events.php:1273
|
877 |
msgid ""
|
878 |
"Add new days for schedule. For example if your event is multiple days, you "
|
879 |
"can add a different schedule for each day!"
|
881 |
"Přidat nové dny pro rozvrh. Pokud je například vaše akce vícedenní, můžete "
|
882 |
"pro každý den přidat jiný rozvrh!"
|
883 |
|
884 |
+
#: app/features/events.php:1280
|
885 |
#, php-format
|
886 |
msgid "Day %s"
|
887 |
msgstr "Den %s"
|
888 |
|
889 |
+
#: app/features/events.php:1284 app/features/events.php:1323
|
890 |
+
#: app/features/events.php:1358 app/features/events.php:1390
|
891 |
+
#: app/features/events.php:1419 app/features/events.php:2304
|
892 |
+
#: app/features/events.php:2351 app/features/events.php:3301
|
893 |
+
#: app/features/events.php:3495 app/features/events.php:3537
|
894 |
+
#: app/features/fes/form.php:236 app/features/ix.php:3506
|
895 |
+
#: app/features/ix.php:3547 app/features/mec/booking.php:384
|
896 |
+
#: app/features/mec/booking.php:416 app/features/mec/styling.php:115
|
897 |
msgid "Title"
|
898 |
msgstr "Název"
|
899 |
|
900 |
+
#: app/features/events.php:1293 app/features/events.php:1330
|
901 |
+
#: app/features/events.php:1363 app/features/events.php:1398
|
902 |
+
#: app/features/events.php:1424 app/features/events.php:1893
|
903 |
+
#: app/features/events.php:1919 app/features/events.php:2097
|
904 |
+
#: app/features/events.php:2196 app/features/events.php:2232
|
905 |
+
#: app/features/events.php:2339 app/features/events.php:2381
|
906 |
+
#: app/features/mec/booking.php:327 app/features/mec/booking.php:356
|
907 |
+
#: app/features/mec/booking.php:407 app/features/mec/booking.php:439
|
908 |
+
#: app/libraries/main.php:2762 app/libraries/main.php:2792
|
909 |
+
#: app/libraries/main.php:2821 app/libraries/main.php:2851
|
910 |
+
#: app/libraries/main.php:2880 app/libraries/main.php:2909
|
911 |
+
#: app/libraries/main.php:2938 app/libraries/main.php:2967
|
912 |
+
#: app/libraries/main.php:2989 app/libraries/main.php:3020
|
913 |
+
#: app/libraries/main.php:3064 app/libraries/main.php:3108
|
914 |
+
#: app/libraries/main.php:3155 app/libraries/main.php:3194
|
915 |
msgid "Remove"
|
916 |
msgstr "Odstranit"
|
917 |
|
918 |
+
#: app/features/events.php:1300 app/features/events.php:1405
|
919 |
msgid "Add new hourly schedule row"
|
920 |
msgstr "Přidejte nový řádek rozvrhu hodin"
|
921 |
|
922 |
+
#: app/features/events.php:1315 app/features/events.php:1352
|
923 |
+
#: app/features/events.php:1414
|
924 |
msgid "From e.g. 8:15"
|
925 |
msgstr "Od např. 8:15"
|
926 |
|
927 |
+
#: app/features/events.php:1319 app/features/events.php:1355
|
928 |
+
#: app/features/events.php:1416
|
929 |
msgid "To e.g. 8:45"
|
930 |
msgstr "Do např. 8:45"
|
931 |
|
932 |
+
#: app/features/events.php:1327 app/features/events.php:1361
|
933 |
+
#: app/features/events.php:1422 app/features/events.php:1783
|
934 |
+
#: app/features/events.php:2008
|
935 |
msgid "Description"
|
936 |
msgstr "Popis"
|
937 |
|
938 |
+
#: app/features/events.php:1333 app/features/events.php:1366
|
939 |
+
#: app/features/events.php:1427 app/features/fes/form.php:851
|
940 |
#: app/features/mec.php:411 app/features/mec/modules.php:52
|
941 |
#: app/features/mec/settings.php:712 app/features/speakers.php:62
|
942 |
+
#: app/libraries/main.php:565 app/libraries/main.php:5342
|
943 |
#: app/modules/speakers/details.php:18
|
944 |
msgid "Speakers"
|
945 |
msgstr "Řečníci"
|
946 |
|
947 |
+
#: app/features/events.php:1386 app/features/events.php:1394
|
948 |
msgid "New Day"
|
949 |
msgstr "Nový den"
|
950 |
|
951 |
+
#: app/features/events.php:1458 app/features/fes/form.php:704
|
952 |
#: app/features/mec/settings.php:658
|
953 |
msgid "Event Links"
|
954 |
msgstr "Odkazy na událost"
|
955 |
|
956 |
+
#: app/features/events.php:1461 app/features/events.php:1467
|
957 |
+
#: app/features/fes/form.php:706 app/libraries/main.php:5365
|
958 |
msgid "Event Link"
|
959 |
msgstr "Odkaz na událost"
|
960 |
|
961 |
+
#: app/features/events.php:1464 app/features/events.php:1480
|
962 |
#: app/features/fes/form.php:707 app/features/fes/form.php:712
|
963 |
msgid "eg. http://yoursite.com/your-event"
|
964 |
msgstr "např. http://yoursite.com/vase-udalost"
|
965 |
|
966 |
+
#: app/features/events.php:1468
|
967 |
msgid ""
|
968 |
"If you fill it, it will be replaced instead of default event page link. "
|
969 |
"Insert full link including http(s):// - Also, if you use advertising URL, "
|
973 |
"Vložte úplný odkaz včetně http (s): // - Pokud používáte reklamní adresu "
|
974 |
"URL, můžete také použít zkracovač URL"
|
975 |
|
976 |
+
#: app/features/events.php:1470
|
977 |
msgid "URL Shortener"
|
978 |
msgstr "Zkracovač URL"
|
979 |
|
980 |
+
#: app/features/events.php:1477 app/features/events.php:1490
|
981 |
+
#: app/features/fes/form.php:711 app/libraries/main.php:5366
|
982 |
#: app/skins/single.php:673 app/skins/single/default.php:140
|
983 |
+
#: app/skins/single/default.php:363 app/skins/single/m1.php:205
|
984 |
+
#: app/skins/single/m2.php:132 app/skins/single/modern.php:140
|
985 |
#: app/widgets/single.php:107
|
986 |
msgid "More Info"
|
987 |
msgstr "Více info"
|
988 |
|
989 |
+
#: app/features/events.php:1483 app/features/fes/form.php:713
|
990 |
msgid "More Information"
|
991 |
msgstr "Více informací"
|
992 |
|
993 |
+
#: app/features/events.php:1485 app/features/fes/form.php:715
|
994 |
msgid "Current Window"
|
995 |
msgstr "Aktuální okno"
|
996 |
|
997 |
+
#: app/features/events.php:1486 app/features/fes/form.php:716
|
998 |
msgid "New Window"
|
999 |
msgstr "Nové okno"
|
1000 |
|
1001 |
+
#: app/features/events.php:1491 app/features/fes/form.php:718
|
1002 |
msgid ""
|
1003 |
"If you fill it, it will be shown in event details page as an optional link. "
|
1004 |
"Insert full link including http(s)://"
|
1006 |
"Pokud ji vyplníte, zobrazí se jako volitelný odkaz na stránce s podrobnostmi "
|
1007 |
"o události. Vložte celý odkaz včetně http (s): //"
|
1008 |
|
1009 |
+
#: app/features/events.php:1566 app/features/events.php:1581
|
1010 |
msgid "Total booking limits"
|
1011 |
msgstr "Celkové limity rezervace"
|
1012 |
|
1013 |
+
#: app/features/events.php:1578 app/features/events.php:1831
|
1014 |
+
#: app/features/events.php:2046 app/modules/booking/default.php:85
|
1015 |
#: app/modules/booking/steps/tickets.php:40
|
1016 |
#: app/skins/available_spot/tpl.php:158
|
1017 |
msgid "Unlimited"
|
1018 |
msgstr "Neomezené"
|
1019 |
|
1020 |
+
#: app/features/events.php:1584
|
1021 |
msgid ""
|
1022 |
"If you want to set a limit to all tickets, uncheck this checkbox and put a "
|
1023 |
"limitation number."
|
1025 |
"Pokud chcete nastavit limit na všechny lístky, zrušte zaškrtnutí tohoto "
|
1026 |
"políčka a zadejte číslo omezení."
|
1027 |
|
1028 |
+
#: app/features/events.php:1586
|
1029 |
msgid "Read About A Booking System"
|
1030 |
msgstr "Přečtěte si o rezervačním systému"
|
1031 |
|
1032 |
+
#: app/features/events.php:1594
|
1033 |
msgid "100"
|
1034 |
msgstr "100"
|
1035 |
|
1036 |
+
#: app/features/events.php:1599
|
1037 |
msgid "Total user booking limits"
|
1038 |
msgstr "Celkové limity rezervace uživatelů"
|
1039 |
|
1040 |
+
#: app/features/events.php:1611 app/features/events.php:2145
|
1041 |
+
#: app/features/events.php:2277 app/features/events.php:2465
|
1042 |
msgid "Inherit from global options"
|
1043 |
msgstr "Zdědí z globálních možností"
|
1044 |
|
1045 |
+
#: app/features/events.php:1614
|
1046 |
msgid "12"
|
1047 |
msgstr "12"
|
1048 |
|
1049 |
+
#: app/features/events.php:1635 app/libraries/book.php:60
|
1050 |
+
#: app/libraries/main.php:5370 app/modules/booking/steps/tickets.php:40
|
1051 |
msgid "Tickets"
|
1052 |
msgstr "Vstupenky"
|
1053 |
|
1054 |
+
#: app/features/events.php:1638
|
1055 |
msgid ""
|
1056 |
"You're translating an event so MEC will use the original event for tickets "
|
1057 |
"and booking. You can only translate the ticket name and description. Please "
|
1061 |
"vstupenek a rezervace. Můžete přeložit pouze název a popis vstupenky. Prosím "
|
1062 |
"definujte určité vstupenky, které jste definovali v původní události."
|
1063 |
|
1064 |
+
#: app/features/events.php:1643
|
1065 |
#, fuzzy
|
1066 |
#| msgid "Ticket"
|
1067 |
msgid "Add Ticket"
|
1068 |
msgstr "Vstupenka"
|
1069 |
|
1070 |
+
#: app/features/events.php:1657 app/features/events.php:1933
|
1071 |
msgid "Ticket Name"
|
1072 |
msgstr "Název vstupenky"
|
1073 |
|
1074 |
+
#: app/features/events.php:1662 app/features/events.php:1937
|
1075 |
+
#: app/features/events.php:3495 app/features/events.php:3537
|
1076 |
+
#: app/features/ix.php:3506 app/features/ix.php:3547
|
1077 |
msgid "Start Time"
|
1078 |
msgstr "Začátek"
|
1079 |
|
1080 |
+
#: app/features/events.php:1721 app/features/events.php:1967
|
1081 |
+
#: app/features/events.php:3495 app/features/events.php:3537
|
1082 |
+
#: app/features/ix.php:3506 app/features/ix.php:3547
|
1083 |
msgid "End Time"
|
1084 |
msgstr "Konec"
|
1085 |
|
1086 |
+
#: app/features/events.php:1788 app/features/events.php:1792
|
1087 |
+
#: app/features/events.php:1887 app/features/events.php:1914
|
1088 |
+
#: app/features/events.php:2013 app/features/events.php:2016
|
1089 |
+
#: app/features/events.php:2093 app/features/events.php:2310
|
1090 |
+
#: app/features/events.php:2314 app/features/events.php:2356
|
1091 |
+
#: app/features/events.php:2359 app/features/mec/booking.php:388
|
1092 |
+
#: app/features/mec/booking.php:391 app/features/mec/booking.php:420
|
1093 |
+
#: app/features/mec/booking.php:423
|
1094 |
msgid "Price"
|
1095 |
msgstr "Cena"
|
1096 |
|
1097 |
+
#: app/features/events.php:1793 app/features/events.php:2017
|
1098 |
msgid "Insert 0 for free ticket. Only numbers please."
|
1099 |
msgstr "Vložte 0 pro vstupenku zdarma. Prosím pouze čísla."
|
1100 |
|
1101 |
+
#: app/features/events.php:1802 app/features/events.php:1807
|
1102 |
+
#: app/features/events.php:2026 app/features/events.php:2029
|
1103 |
msgid "Price Label"
|
1104 |
msgstr "Cenový štítek"
|
1105 |
|
1106 |
+
#: app/features/events.php:1808 app/features/events.php:2030
|
1107 |
msgid "For showing on website. e.g. $15"
|
1108 |
msgstr "Pro zobrazení na webu. např. 15 $"
|
1109 |
|
1110 |
+
#: app/features/events.php:1818 app/features/events.php:2040
|
1111 |
msgid "Available Tickets"
|
1112 |
msgstr "Dostupné vstupenky"
|
1113 |
|
1114 |
+
#: app/features/events.php:1835 app/features/events.php:2050
|
1115 |
#, fuzzy
|
1116 |
#| msgid "Maximum Per Ticket"
|
1117 |
msgid "Minimum Ticket e.g. 3"
|
1118 |
msgstr "Maximum na jednu vstupenku"
|
1119 |
|
1120 |
+
#: app/features/events.php:1838 app/features/events.php:2053
|
1121 |
#, fuzzy
|
1122 |
#| msgid "Maximum Per Ticket"
|
1123 |
msgid "MinimumTicket"
|
1124 |
msgstr "Maximum na jednu vstupenku"
|
1125 |
|
1126 |
+
#: app/features/events.php:1840 app/features/events.php:2055
|
1127 |
msgid "Set a number for the minimum ticket reservation"
|
1128 |
msgstr ""
|
1129 |
|
1130 |
+
#: app/features/events.php:1848 app/features/events.php:2063
|
1131 |
msgid "e.g. 0"
|
1132 |
msgstr ""
|
1133 |
|
1134 |
+
#: app/features/events.php:1850 app/features/events.php:2065
|
1135 |
#, fuzzy
|
1136 |
#| msgid "Days"
|
1137 |
msgid "Day"
|
1138 |
msgstr "Dny"
|
1139 |
|
1140 |
+
#: app/features/events.php:1851 app/features/events.php:2066
|
1141 |
msgid "Hour"
|
1142 |
msgstr ""
|
1143 |
|
1144 |
+
#: app/features/events.php:1853 app/features/events.php:2068
|
1145 |
#, php-format
|
1146 |
msgid "Stop selling ticket %s before event start."
|
1147 |
msgstr ""
|
1148 |
|
1149 |
+
#: app/features/events.php:1860 app/features/events.php:2074
|
1150 |
msgid "Price per Date"
|
1151 |
msgstr "Cena za datum"
|
1152 |
|
1153 |
+
#: app/features/events.php:1891 app/features/events.php:1917
|
1154 |
+
#: app/features/events.php:2095 app/features/labels.php:60
|
1155 |
+
#: app/features/mec/meta_boxes/display_options.php:960
|
1156 |
#: app/features/mec/meta_boxes/search_form.php:66
|
1157 |
#: app/features/mec/meta_boxes/search_form.php:128
|
1158 |
#: app/features/mec/meta_boxes/search_form.php:190
|
1164 |
#: app/features/mec/meta_boxes/search_form.php:549
|
1165 |
#: app/features/mec/meta_boxes/search_form.php:610
|
1166 |
#: app/features/mec/meta_boxes/search_form.php:707
|
1167 |
+
#: app/features/mec/settings.php:840 app/features/mec/single.php:250
|
1168 |
+
#: app/libraries/skins.php:995
|
1169 |
msgid "Label"
|
1170 |
msgstr "Štítek"
|
1171 |
|
1172 |
+
#: app/features/events.php:2133
|
1173 |
msgid "Fees"
|
1174 |
msgstr "Poplatky"
|
1175 |
|
1176 |
+
#: app/features/events.php:2170 app/features/events.php:2208
|
1177 |
+
#: app/features/mec/booking.php:307 app/features/mec/booking.php:336
|
1178 |
msgid "Fee Title"
|
1179 |
msgstr "Název poplatku"
|
1180 |
|
1181 |
+
#: app/features/events.php:2176 app/features/events.php:2180
|
1182 |
+
#: app/features/events.php:2213 app/features/events.php:2216
|
1183 |
+
#: app/features/mec/booking.php:311 app/features/mec/booking.php:314
|
1184 |
+
#: app/features/mec/booking.php:340 app/features/mec/booking.php:343
|
1185 |
msgid "Amount"
|
1186 |
msgstr "Množství"
|
1187 |
|
1188 |
+
#: app/features/events.php:2181 app/features/events.php:2217
|
1189 |
+
#: app/features/mec/booking.php:315 app/features/mec/booking.php:344
|
1190 |
msgid ""
|
1191 |
"Fee amount, considered as fixed amount if you set the type to amount "
|
1192 |
"otherwise considered as percentage"
|
1194 |
"Výše poplatku, je považovaná za pevnou částku, pokud nastavíte typ na částku "
|
1195 |
"odpovídající procentuální hodnotě"
|
1196 |
|
1197 |
+
#: app/features/events.php:2190 app/features/events.php:2226
|
1198 |
+
#: app/features/mec/booking.php:322 app/features/mec/booking.php:351
|
1199 |
msgid "Percent"
|
1200 |
msgstr "Procent"
|
1201 |
|
1202 |
+
#: app/features/events.php:2191 app/features/events.php:2227
|
1203 |
+
#: app/features/mec/booking.php:323 app/features/mec/booking.php:352
|
1204 |
msgid "Amount (Per Ticket)"
|
1205 |
msgstr "Částka (za vstupenku)"
|
1206 |
|
1207 |
+
#: app/features/events.php:2192 app/features/events.php:2228
|
1208 |
+
#: app/features/mec/booking.php:324 app/features/mec/booking.php:353
|
1209 |
msgid "Amount (Per Booking)"
|
1210 |
msgstr "Částka (za rezervaci)"
|
1211 |
|
1212 |
+
#: app/features/events.php:2265 app/features/mec/settings.php:736
|
1213 |
msgid "Ticket Variations / Options"
|
1214 |
msgstr "Varianty vstupenky / možnosti"
|
1215 |
|
1216 |
+
#: app/features/events.php:2315 app/features/events.php:2360
|
1217 |
+
#: app/features/mec/booking.php:392 app/features/mec/booking.php:424
|
1218 |
msgid "Option Price"
|
1219 |
msgstr "Možnosti ceny"
|
1220 |
|
1221 |
+
#: app/features/events.php:2325 app/features/events.php:2329
|
1222 |
+
#: app/features/events.php:2369 app/features/events.php:2372
|
1223 |
+
#: app/features/mec/booking.php:398 app/features/mec/booking.php:401
|
1224 |
+
#: app/features/mec/booking.php:430 app/features/mec/booking.php:433
|
1225 |
msgid "Maximum Per Ticket"
|
1226 |
msgstr "Maximum na jednu vstupenku"
|
1227 |
|
1228 |
+
#: app/features/events.php:2330 app/features/events.php:2373
|
1229 |
+
#: app/features/mec/booking.php:402 app/features/mec/booking.php:434
|
1230 |
msgid "Maximum Per Ticket. Leave it blank for unlimited."
|
1231 |
msgstr "Maximum na jednu vstupenku. Ponechte to prázdné pro neomezené."
|
1232 |
|
1233 |
+
#: app/features/events.php:2519 app/features/mec/booking.php:496
|
1234 |
+
#: app/libraries/main.php:2784
|
1235 |
msgid "MEC Name"
|
1236 |
msgstr "MEC Jméno"
|
1237 |
|
1238 |
+
#: app/features/events.php:2520 app/features/mec/booking.php:497
|
1239 |
+
#: app/libraries/main.php:2813
|
1240 |
msgid "MEC Email"
|
1241 |
msgstr "MEC Email"
|
1242 |
|
1243 |
+
#: app/features/events.php:2521 app/features/mec/booking.php:498
|
1244 |
+
#: app/libraries/main.php:2754
|
1245 |
msgid "Text"
|
1246 |
msgstr "Text"
|
1247 |
|
1248 |
+
#: app/features/events.php:2524 app/features/mec/booking.php:501
|
1249 |
#: app/features/organizers.php:103 app/features/organizers.php:148
|
1250 |
#: app/features/speakers.php:119 app/features/speakers.php:192
|
1251 |
+
#: app/features/speakers.php:271 app/libraries/main.php:2930
|
1252 |
msgid "Tel"
|
1253 |
msgstr "Tel"
|
1254 |
|
1255 |
+
#: app/features/events.php:2525 app/features/mec/booking.php:502
|
1256 |
+
#: app/libraries/main.php:2872
|
1257 |
msgid "File"
|
1258 |
msgstr "Soubor"
|
1259 |
|
1260 |
+
#: app/features/events.php:2526 app/features/mec/booking.php:503
|
1261 |
+
#: app/libraries/main.php:2959
|
1262 |
msgid "Textarea"
|
1263 |
msgstr "Plocha textu"
|
1264 |
|
1265 |
+
#: app/features/events.php:2527 app/features/mec/booking.php:504
|
1266 |
+
#: app/libraries/main.php:3012
|
1267 |
msgid "Checkboxes"
|
1268 |
msgstr "Zatržítko"
|
1269 |
|
1270 |
+
#: app/features/events.php:2528 app/features/mec/booking.php:505
|
1271 |
+
#: app/libraries/main.php:3056
|
1272 |
msgid "Radio Buttons"
|
1273 |
msgstr "Přepínače"
|
1274 |
|
1275 |
+
#: app/features/events.php:2529 app/features/mec/booking.php:506
|
1276 |
#: app/features/mec/meta_boxes/search_form.php:34
|
1277 |
#: app/features/mec/meta_boxes/search_form.php:41
|
1278 |
#: app/features/mec/meta_boxes/search_form.php:48
|
1348 |
#: app/features/mec/meta_boxes/search_form.php:696
|
1349 |
#: app/features/mec/meta_boxes/search_form.php:703
|
1350 |
#: app/features/mec/meta_boxes/search_form.php:710
|
1351 |
+
#: app/features/mec/meta_boxes/search_form.php:717 app/libraries/main.php:3100
|
1352 |
msgid "Dropdown"
|
1353 |
msgstr "Rozbalovací"
|
1354 |
|
1355 |
+
#: app/features/events.php:2530 app/features/mec/booking.php:507
|
1356 |
+
#: app/libraries/main.php:3147
|
1357 |
msgid "Agreement"
|
1358 |
msgstr "Smlouva"
|
1359 |
|
1360 |
+
#: app/features/events.php:2531 app/features/mec/booking.php:508
|
1361 |
+
#: app/libraries/main.php:2988
|
1362 |
msgid "Paragraph"
|
1363 |
msgstr "Paragraf"
|
1364 |
|
1365 |
+
#: app/features/events.php:3203 app/features/events.php:3221
|
1366 |
+
#: app/features/events.php:3239 app/features/events.php:3257
|
1367 |
#, php-format
|
1368 |
msgid "Show all %s"
|
1369 |
msgstr "Ukázat všechny %s"
|
1370 |
|
1371 |
+
#: app/features/events.php:3203
|
1372 |
msgid "labels"
|
1373 |
msgstr "štítky"
|
1374 |
|
1375 |
+
#: app/features/events.php:3221
|
1376 |
msgid "locations"
|
1377 |
msgstr "umístění"
|
1378 |
|
1379 |
+
#: app/features/events.php:3239
|
1380 |
msgid "organizers"
|
1381 |
msgstr "organizátoři"
|
1382 |
|
1383 |
+
#: app/features/events.php:3273
|
1384 |
#, fuzzy
|
1385 |
#| msgid "Attendees Limit"
|
1386 |
msgid "Attendees List"
|
1387 |
msgstr "Limit účastníků"
|
1388 |
|
1389 |
+
#: app/features/events.php:3303 app/features/events.php:3495
|
1390 |
+
#: app/features/events.php:3537 app/features/ix.php:3506
|
1391 |
+
#: app/features/ix.php:3547 app/features/locations.php:58
|
1392 |
+
#: app/features/locations.php:232 app/features/locations.php:289
|
1393 |
+
#: app/features/locations.php:291 app/features/locations.php:300
|
1394 |
+
#: app/features/mec/meta_boxes/display_options.php:961
|
1395 |
#: app/features/mec/meta_boxes/search_form.php:38
|
1396 |
#: app/features/mec/meta_boxes/search_form.php:100
|
1397 |
#: app/features/mec/meta_boxes/search_form.php:162
|
1403 |
#: app/features/mec/meta_boxes/search_form.php:521
|
1404 |
#: app/features/mec/meta_boxes/search_form.php:582
|
1405 |
#: app/features/mec/meta_boxes/search_form.php:679
|
1406 |
+
#: app/features/mec/settings.php:814 app/features/mec/single.php:240
|
1407 |
+
#: app/features/search.php:73 app/libraries/main.php:2247
|
1408 |
+
#: app/libraries/main.php:5339 app/libraries/skins.php:891
|
1409 |
+
#: app/skins/single.php:493 app/skins/single.php:930
|
1410 |
+
#: app/skins/single/default.php:176 app/skins/single/default.php:399
|
1411 |
+
#: app/skins/single/m1.php:169 app/skins/single/m2.php:95
|
1412 |
+
#: app/skins/single/modern.php:102
|
1413 |
msgid "Location"
|
1414 |
msgstr "Umístění"
|
1415 |
|
1416 |
+
#: app/features/events.php:3308
|
1417 |
msgid "Repeat"
|
1418 |
msgstr "Opakovat"
|
1419 |
|
1420 |
+
#: app/features/events.php:3309
|
1421 |
msgid "Author"
|
1422 |
msgstr "Autor"
|
1423 |
|
1424 |
+
#: app/features/events.php:3430 app/features/events.php:3431
|
1425 |
msgid "iCal Export"
|
1426 |
msgstr "iCal Export"
|
1427 |
|
1428 |
+
#: app/features/events.php:3433 app/features/events.php:3434
|
1429 |
msgid "CSV Export"
|
1430 |
msgstr "CSV Export"
|
1431 |
|
1432 |
+
#: app/features/events.php:3436 app/features/events.php:3437
|
1433 |
msgid "MS Excel Export"
|
1434 |
msgstr "MS Excel Export"
|
1435 |
|
1436 |
+
#: app/features/events.php:3439 app/features/events.php:3440
|
1437 |
msgid "XML Export"
|
1438 |
msgstr "XML Export"
|
1439 |
|
1440 |
+
#: app/features/events.php:3442 app/features/events.php:3443
|
1441 |
msgid "JSON Export"
|
1442 |
msgstr "JSON Export"
|
1443 |
|
1444 |
+
#: app/features/events.php:3445 app/features/events.php:3446
|
1445 |
+
#: app/features/events.php:3628
|
1446 |
msgid "Duplicate"
|
1447 |
msgstr "Duplikát"
|
1448 |
|
1449 |
+
#: app/features/events.php:3495 app/features/events.php:3537
|
1450 |
+
#: app/features/fes.php:223 app/features/ix.php:3506 app/features/ix.php:3547
|
1451 |
+
#: app/features/labels.php:177 app/features/locations.php:231
|
1452 |
#: app/features/organizers.php:203 app/features/speakers.php:268
|
1453 |
msgid "ID"
|
1454 |
msgstr "ID"
|
1455 |
|
1456 |
+
#: app/features/events.php:3495 app/features/events.php:3537
|
1457 |
+
#: app/features/ix.php:3506 app/features/ix.php:3547
|
1458 |
msgid "Link"
|
1459 |
msgstr "Odkaz"
|
1460 |
|
1461 |
+
#: app/features/events.php:3495 app/features/events.php:3537
|
1462 |
#, php-format
|
1463 |
msgid "%s Tel"
|
1464 |
msgstr "%s Tel"
|
1465 |
|
1466 |
+
#: app/features/events.php:3495 app/features/events.php:3537
|
1467 |
#, php-format
|
1468 |
msgid "%s Email"
|
1469 |
msgstr "%s Email"
|
1470 |
|
1471 |
+
#: app/features/events.php:3790 app/features/fes.php:223
|
1472 |
+
#: app/features/profile/profile.php:186 app/libraries/main.php:2282
|
1473 |
+
#: app/libraries/main.php:5369
|
1474 |
msgid "Ticket"
|
1475 |
msgstr "Vstupenka"
|
1476 |
|
1477 |
+
#: app/features/events.php:3793 app/features/profile/profile.php:189
|
1478 |
msgid "Variations"
|
1479 |
msgstr "Variace"
|
1480 |
|
1481 |
+
#: app/features/events.php:3808 app/features/fes.php:303
|
1482 |
msgid "Unknown"
|
1483 |
msgstr "Neznámý"
|
1484 |
|
1485 |
+
#: app/features/events.php:3841
|
1486 |
#, fuzzy
|
1487 |
#| msgid "Attendees Form"
|
1488 |
msgid "No Attendees Found!"
|
1519 |
msgid "The event removed!"
|
1520 |
msgstr "Událost byla odebrána!"
|
1521 |
|
1522 |
+
#: app/features/fes.php:223 app/libraries/main.php:2259
|
1523 |
msgid "Transaction ID"
|
1524 |
msgstr "ID transakce"
|
1525 |
|
1566 |
msgstr "Přejít zpět na seznam událostí"
|
1567 |
|
1568 |
#: app/features/fes/form.php:366
|
1569 |
+
#: app/features/mec/meta_boxes/display_options.php:845
|
1570 |
#: app/libraries/main.php:410
|
1571 |
msgid "Monday"
|
1572 |
msgstr "Pondělí"
|
1573 |
|
1574 |
#: app/features/fes/form.php:367
|
1575 |
+
#: app/features/mec/meta_boxes/display_options.php:846
|
1576 |
#: app/libraries/main.php:410
|
1577 |
msgid "Tuesday"
|
1578 |
msgstr "Úterý"
|
1579 |
|
1580 |
#: app/features/fes/form.php:368
|
1581 |
+
#: app/features/mec/meta_boxes/display_options.php:847
|
1582 |
#: app/libraries/main.php:410
|
1583 |
msgid "Wednesday"
|
1584 |
msgstr "Středa"
|
1585 |
|
1586 |
#: app/features/fes/form.php:369
|
1587 |
+
#: app/features/mec/meta_boxes/display_options.php:848
|
1588 |
#: app/libraries/main.php:410
|
1589 |
msgid "Thursday"
|
1590 |
msgstr "Čtvrtek"
|
1591 |
|
1592 |
#: app/features/fes/form.php:370
|
1593 |
+
#: app/features/mec/meta_boxes/display_options.php:849
|
1594 |
#: app/libraries/main.php:410
|
1595 |
msgid "Friday"
|
1596 |
msgstr "Pátek"
|
1597 |
|
1598 |
#: app/features/fes/form.php:371
|
1599 |
+
#: app/features/mec/meta_boxes/display_options.php:850
|
1600 |
#: app/libraries/main.php:410
|
1601 |
msgid "Saturday"
|
1602 |
msgstr "Sobota"
|
1603 |
|
1604 |
#: app/features/fes/form.php:372
|
1605 |
+
#: app/features/mec/meta_boxes/display_options.php:844
|
1606 |
#: app/libraries/main.php:410
|
1607 |
msgid "Sunday"
|
1608 |
msgstr "Neděle"
|
1646 |
|
1647 |
#: app/features/fes/form.php:783 app/features/labels.php:61
|
1648 |
#: app/features/labels.php:221 app/features/mec.php:404
|
1649 |
+
#: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:5336
|
1650 |
#: app/skins/single.php:702 app/skins/single/default.php:155
|
1651 |
+
#: app/skins/single/default.php:378 app/skins/single/m1.php:73
|
1652 |
+
#: app/skins/single/modern.php:228
|
1653 |
msgid "Labels"
|
1654 |
msgstr "Štítky"
|
1655 |
|
1732 |
msgid "Both of API key and Calendar ID are required!"
|
1733 |
msgstr "Obě hodnoty: klíč API a ID kalendáře jsou povinné!"
|
1734 |
|
1735 |
+
#: app/features/ix.php:2770 app/features/ix.php:3189 app/features/ix.php:3886
|
1736 |
msgid "Please select some events to import!"
|
1737 |
msgstr "Vyberte události, které chcete importovat!"
|
1738 |
|
1744 |
msgid "Check at Meetup"
|
1745 |
msgstr "Ověřit Meetup"
|
1746 |
|
1747 |
+
#: app/features/ix.php:3506 app/features/ix.php:3547
|
1748 |
msgid "Organizer Tel"
|
1749 |
msgstr "Organizátor Tel"
|
1750 |
|
1751 |
+
#: app/features/ix.php:3506 app/features/ix.php:3547
|
1752 |
msgid "Organizer Email"
|
1753 |
msgstr "Organizátor Email"
|
1754 |
|
1755 |
# Client Secret dle kontextu
|
1756 |
+
#: app/features/ix.php:3622
|
1757 |
msgid "All of Client ID, Client Secret and Calendar ID are required!"
|
1758 |
msgstr ""
|
1759 |
"Vyžadují se všechny klientské ID, tajné informace klienta a ID kalendáře!"
|
1760 |
|
1761 |
+
#: app/features/ix.php:3645
|
1762 |
#, php-format
|
1763 |
msgid "All seems good! Please click %s for authenticating your app."
|
1764 |
msgstr "Vše vypadá dobře! Klikněte na % s pro ověření vaší aplikace."
|
1765 |
|
1766 |
+
#: app/features/ix.php:3699
|
1767 |
msgid "All of Client App, Client Secret and Calendar ID are required!"
|
1768 |
msgstr ""
|
1769 |
"Všechny klientské aplikace, tajné informace klienta a ID kalendáře jsou "
|
1770 |
"povinné!"
|
1771 |
|
1772 |
+
#: app/features/ix.php:3815
|
1773 |
#, php-format
|
1774 |
msgid "%s events added to Google Calendar successfully."
|
1775 |
msgstr "% s události byly přidané do Google kalendáře úspěšně."
|
1776 |
|
1777 |
+
#: app/features/ix.php:3816
|
1778 |
#, php-format
|
1779 |
msgid "%s previously added events get updated."
|
1780 |
msgstr "% s dříve přidané události byly aktualizovány."
|
1781 |
|
1782 |
+
#: app/features/ix.php:3817
|
1783 |
#, php-format
|
1784 |
msgid "%s events failed to add for following reasons: %s"
|
1785 |
msgstr "% s události se nepodařilo přidat z následujících důvodů: % s"
|
1786 |
|
1787 |
+
#: app/features/ix.php:3849
|
1788 |
msgid "Please insert your Facebook page's link."
|
1789 |
msgstr "Vložte prosím odkaz na svou stránku na Facebooku."
|
1790 |
|
1791 |
+
#: app/features/ix.php:3858
|
1792 |
msgid ""
|
1793 |
"We couldn't recognize your Facebook page. Please check it and provide us a "
|
1794 |
"valid Facebook page link."
|
1796 |
"Vaši facebookovou stránku jsme nemohli rozpoznat. Zkontrolujte to a "
|
1797 |
"poskytněte nám platný odkaz na stránku Facebooku."
|
1798 |
|
1799 |
+
#: app/features/ix.php:3890
|
1800 |
msgid "Please insert your facebook page's link."
|
1801 |
msgstr "Vložte prosím odkaz na svou facebookovou stránku."
|
1802 |
|
1803 |
+
#: app/features/ix.php:3895
|
1804 |
msgid ""
|
1805 |
"We couldn't recognize your Facebook page. Please check it and provide us a "
|
1806 |
"valid facebook page link."
|
1869 |
"Tímto se exportují všechna data vašich webových událostí do požadovaného "
|
1870 |
"formátu."
|
1871 |
|
1872 |
+
#: app/features/ix/export.php:25 app/features/mec/modules.php:179
|
1873 |
msgid "iCal"
|
1874 |
msgstr "iCal"
|
1875 |
|
1978 |
msgid "Add to Google Calendar"
|
1979 |
msgstr "Přidat do Google kalendáře"
|
1980 |
|
1981 |
+
#: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:638
|
1982 |
+
#: app/features/mec/modules.php:398 app/features/mec/notifications.php:907
|
1983 |
+
#: app/features/mec/settings.php:1054 app/features/mec/single.php:297
|
1984 |
msgid "Checking ..."
|
1985 |
msgstr "Ověřování ..."
|
1986 |
|
2028 |
msgstr "ICS Feed"
|
2029 |
|
2030 |
#: app/features/ix/import.php:46 app/features/mec/booking.php:91
|
2031 |
+
#: app/features/mec/booking.php:273 app/features/mec/booking.php:291
|
2032 |
+
#: app/features/mec/booking.php:368
|
2033 |
#: app/features/mec/meta_boxes/display_options.php:176
|
2034 |
#: app/features/mec/meta_boxes/display_options.php:368
|
2035 |
+
#: app/features/mec/modules.php:70 app/features/mec/modules.php:212
|
2036 |
+
#: app/features/mec/modules.php:229
|
2037 |
#, php-format
|
2038 |
msgid "%s is required to use this feature."
|
2039 |
msgstr "% s je vyžadováno pro použití této funkce."
|
2040 |
|
2041 |
#: app/features/ix/import.php:46 app/features/ix/sync.php:22
|
2042 |
+
#: app/features/mec/booking.php:91 app/features/mec/booking.php:273
|
2043 |
+
#: app/features/mec/booking.php:291 app/features/mec/booking.php:368
|
2044 |
#: app/features/mec/meta_boxes/display_options.php:176
|
2045 |
#: app/features/mec/meta_boxes/display_options.php:368
|
2046 |
#: app/features/mec/meta_boxes/display_options.php:396
|
2047 |
#: app/features/mec/meta_boxes/display_options.php:536
|
2048 |
#: app/features/mec/meta_boxes/display_options.php:587
|
2049 |
#: app/features/mec/meta_boxes/display_options.php:694
|
2050 |
+
#: app/features/mec/meta_boxes/display_options.php:802
|
2051 |
+
#: app/features/mec/meta_boxes/display_options.php:909
|
2052 |
+
#: app/features/mec/meta_boxes/display_options.php:1122
|
2053 |
+
#: app/features/mec/modules.php:70 app/features/mec/modules.php:212
|
2054 |
+
#: app/features/mec/modules.php:229
|
2055 |
msgid "Pro version of Modern Events Calendar"
|
2056 |
msgstr "Pro verze doplňku Modern Events Calendar"
|
2057 |
|
2223 |
msgstr "Automatická synchronizace"
|
2224 |
|
2225 |
#: app/features/ix/sync.php:22
|
2226 |
+
#: app/features/mec/meta_boxes/display_options.php:909
|
2227 |
#, php-format
|
2228 |
msgid "%s is required to use synchronization feature."
|
2229 |
msgstr "%s je vyžadováno pro použití vlastností synchronizace."
|
2392 |
#: app/features/mec/meta_boxes/display_options.php:401
|
2393 |
#: app/features/mec/meta_boxes/display_options.php:592
|
2394 |
#: app/features/mec/meta_boxes/display_options.php:642
|
2395 |
+
#: app/features/mec/meta_boxes/display_options.php:807
|
2396 |
+
#: app/features/mec/meta_boxes/display_options.php:1004
|
2397 |
+
#: app/features/mec/meta_boxes/display_options.php:1061
|
2398 |
+
#: app/features/mec/meta_boxes/display_options.php:1153
|
2399 |
+
#: app/features/mec/meta_boxes/display_options.php:1240
|
2400 |
msgid "Style"
|
2401 |
msgstr "Styl"
|
2402 |
|
2420 |
msgstr "Ztvárněná"
|
2421 |
|
2422 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2423 |
+
#: app/libraries/main.php:5585 app/skins/agenda/render.php:43
|
2424 |
#: app/skins/available_spot/tpl.php:40 app/skins/carousel/render.php:46
|
2425 |
#: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:33
|
2426 |
#: app/skins/daily_view/render.php:29 app/skins/grid/render.php:55
|
2438 |
msgid "You can show featured and canceled events by a different style!"
|
2439 |
msgstr "Vybrané a zrušené události můžete zobrazit jiným stylem!"
|
2440 |
|
2441 |
+
#: app/features/labels.php:180 app/features/locations.php:234
|
2442 |
#: app/features/organizers.php:206 app/features/speakers.php:272
|
2443 |
#: app/modules/booking/steps/tickets.php:38
|
2444 |
msgid "Count"
|
2445 |
msgstr "Spočítat"
|
2446 |
|
2447 |
# Nenanpadá mě správný český termín
|
2448 |
+
#: app/features/labels.php:181 app/features/locations.php:235
|
2449 |
#: app/features/organizers.php:207
|
2450 |
msgid "Slug"
|
2451 |
msgstr "Slug"
|
2452 |
|
2453 |
+
#: app/features/labels.php:221 app/features/locations.php:289
|
2454 |
#, php-format
|
2455 |
msgid "Event %s"
|
2456 |
msgstr "Událost %s"
|
2457 |
|
2458 |
#: app/features/locations.php:59 app/features/mec.php:405
|
2459 |
#: app/features/mec/dashboard.php:271 app/features/mec/meta_boxes/filter.php:96
|
2460 |
+
#: app/libraries/main.php:5338
|
2461 |
msgid "Locations"
|
2462 |
msgstr "Umístění"
|
2463 |
|
2464 |
+
#: app/features/locations.php:105 app/features/locations.php:160
|
2465 |
+
#: app/features/locations.php:233
|
2466 |
msgid "Address"
|
2467 |
msgstr "Adresa"
|
2468 |
|
2469 |
+
#: app/features/locations.php:108 app/features/locations.php:161
|
2470 |
msgid "Enter the location address"
|
2471 |
msgstr "Vložit adresu místa"
|
2472 |
|
2473 |
+
#: app/features/locations.php:122 app/features/locations.php:173
|
2474 |
+
#: app/features/locations.php:327
|
2475 |
msgid "Latitude"
|
2476 |
msgstr "Zeměpisná šířka"
|
2477 |
|
2478 |
+
#: app/features/locations.php:125 app/features/locations.php:174
|
2479 |
msgid "Geo latitude (Optional)"
|
2480 |
msgstr "Zeměpisná šířka (volitelné)"
|
2481 |
|
2482 |
+
#: app/features/locations.php:130 app/features/locations.php:177
|
2483 |
+
#: app/features/locations.php:328
|
2484 |
msgid "Longitude"
|
2485 |
msgstr "Zeměpisná délka"
|
2486 |
|
2487 |
+
#: app/features/locations.php:133 app/features/locations.php:178
|
2488 |
msgid "Geo longitude (Optional)"
|
2489 |
msgstr "Zeměpisná délka (volitelné)"
|
2490 |
|
2491 |
+
#: app/features/locations.php:139 app/features/locations.php:182
|
2492 |
#: app/features/organizers.php:127 app/features/organizers.php:160
|
2493 |
#: app/features/speakers.php:167 app/features/speakers.php:216
|
2494 |
msgid "Thumbnail"
|
2495 |
msgstr "Náhled"
|
2496 |
|
2497 |
+
#: app/features/locations.php:144 app/features/locations.php:185
|
2498 |
#: app/features/organizers.php:132 app/features/organizers.php:163
|
2499 |
#: app/features/speakers.php:172 app/features/speakers.php:219
|
2500 |
msgid "Upload/Add image"
|
2501 |
msgstr "Nahrát / přidat obrázek"
|
2502 |
|
2503 |
+
#: app/features/locations.php:145 app/features/locations.php:186
|
2504 |
+
#: app/features/locations.php:343 app/features/locations.php:350
|
2505 |
#: app/features/organizers.php:133 app/features/organizers.php:164
|
2506 |
#: app/features/organizers.php:299 app/features/organizers.php:306
|
2507 |
#: app/features/speakers.php:173 app/features/speakers.php:220
|
2508 |
msgid "Remove image"
|
2509 |
msgstr "Odebrat obrázek"
|
2510 |
|
2511 |
+
#: app/features/locations.php:292
|
2512 |
msgid "Hide location"
|
2513 |
msgstr "Skrýt místo"
|
2514 |
|
2515 |
+
#: app/features/locations.php:293
|
2516 |
msgid "Insert a new location"
|
2517 |
msgstr "Vložit nové místo"
|
2518 |
|
2519 |
+
#: app/features/locations.php:301
|
2520 |
msgid "Choose one of saved locations or insert new one below."
|
2521 |
msgstr "Vyberte jedno z uložených míst nebo vložte nové."
|
2522 |
|
2523 |
+
#: app/features/locations.php:308
|
2524 |
msgid "Location Name"
|
2525 |
msgstr "Název místa"
|
2526 |
|
2527 |
+
#: app/features/locations.php:309
|
2528 |
msgid "eg. City Hall"
|
2529 |
msgstr "např. Radnice"
|
2530 |
|
2531 |
+
#: app/features/locations.php:312 app/features/mec/settings.php:700
|
2532 |
#: app/widgets/single.php:115
|
2533 |
msgid "Event Location"
|
2534 |
msgstr "Místo události"
|
2535 |
|
2536 |
+
#: app/features/locations.php:313
|
2537 |
msgid "eg. City hall, Manhattan, New York"
|
2538 |
msgstr "např. Radnice, Dominikánská 2, Brno"
|
2539 |
|
2540 |
+
#: app/features/locations.php:331
|
2541 |
msgid "Latitude/Longitude"
|
2542 |
msgstr "Zeměpisná šířka / délka"
|
2543 |
|
2544 |
+
#: app/features/locations.php:332
|
2545 |
msgid ""
|
2546 |
"If you leave the latitude and longitude empty, Modern Events Calendar tries "
|
2547 |
"to convert the location address to geopoint, Latitude and Longitude are the "
|
2555 |
"místo, použijte název místa, města, státu nebo adresy nebo klikněte na místo "
|
2556 |
"na mapě a vyhledejte souřadnice délky a šířky."
|
2557 |
|
2558 |
+
#: app/features/locations.php:332
|
2559 |
msgid "Get Latitude and Longitude"
|
2560 |
msgstr "Získejte šířku a délku"
|
2561 |
|
2562 |
+
#: app/features/locations.php:342 app/features/organizers.php:298
|
2563 |
msgid "Choose image"
|
2564 |
msgstr "Vyberte obrázek"
|
2565 |
|
2566 |
+
#: app/features/locations.php:356
|
2567 |
msgid "Don't show map in single event page"
|
2568 |
msgstr "Nezobrazovat mapu na jednostránkové události"
|
2569 |
|
2570 |
+
#: app/features/locations.php:359 app/libraries/main.php:5372
|
2571 |
msgid "Other Locations"
|
2572 |
msgstr "Další místa"
|
2573 |
|
2574 |
+
#: app/features/locations.php:361
|
2575 |
msgid ""
|
2576 |
"You can select extra locations in addition to main location if you like."
|
2577 |
msgstr "Pokud chcete, můžete kromě hlavního místa vybrat i další místa."
|
2593 |
msgid "Troubleshooting"
|
2594 |
msgstr "Odstraňování problémů"
|
2595 |
|
2596 |
+
#: app/features/mec.php:256 app/libraries/notifications.php:937
|
2597 |
#, php-format
|
2598 |
msgid "%s to %s"
|
2599 |
msgstr ""
|
2625 |
|
2626 |
#: app/features/mec.php:406 app/features/mec/dashboard.php:278
|
2627 |
#: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
|
2628 |
+
#: app/libraries/main.php:5340
|
2629 |
msgid "Organizers"
|
2630 |
msgstr "Organizátoři"
|
2631 |
|
2737 |
msgid "Search..."
|
2738 |
msgstr "Vyhledávání ..."
|
2739 |
|
2740 |
+
#: app/features/mec/booking.php:72 app/features/mec/booking.php:514
|
2741 |
+
#: app/features/mec/booking.php:594 app/features/mec/booking.php:603
|
2742 |
+
#: app/features/mec/booking.php:613 app/features/mec/booking.php:655
|
2743 |
+
#: app/features/mec/booking.php:669 app/features/mec/messages.php:15
|
2744 |
#: app/features/mec/messages.php:51 app/features/mec/messages.php:60
|
2745 |
#: app/features/mec/messages.php:94 app/features/mec/messages.php:103
|
2746 |
+
#: app/features/mec/modules.php:25 app/features/mec/modules.php:363
|
2747 |
+
#: app/features/mec/modules.php:373 app/features/mec/modules.php:415
|
2748 |
+
#: app/features/mec/modules.php:429 app/features/mec/notifications.php:14
|
2749 |
#: app/features/mec/notifications.php:816
|
2750 |
#: app/features/mec/notifications.php:828
|
2751 |
#: app/features/mec/notifications.php:924
|
2752 |
#: app/features/mec/notifications.php:938 app/features/mec/settings.php:39
|
2753 |
#: app/features/mec/settings.php:1003 app/features/mec/settings.php:1013
|
2754 |
#: app/features/mec/settings.php:1071 app/features/mec/settings.php:1085
|
2755 |
+
#: app/features/mec/single.php:17 app/features/mec/single.php:262
|
2756 |
+
#: app/features/mec/single.php:272 app/features/mec/single.php:314
|
2757 |
+
#: app/features/mec/single.php:328 app/features/mec/styles.php:11
|
2758 |
#: app/features/mec/styles.php:31 app/features/mec/styles.php:40
|
2759 |
#: app/features/mec/styles.php:77 app/features/mec/styles.php:86
|
2760 |
#: app/features/mec/styling.php:37 app/features/mec/styling.php:242
|
2776 |
"přidá „platební brána“ a nová položka nabídky na řídícím panelu"
|
2777 |
|
2778 |
#: app/features/mec/booking.php:102 app/features/mec/booking.php:107
|
2779 |
+
#: app/features/mec/modules.php:312 app/features/mec/modules.php:317
|
2780 |
msgid "Date Format"
|
2781 |
msgstr "Formát data"
|
2782 |
|
2788 |
#: app/features/mec/meta_boxes/display_options.php:135
|
2789 |
#: app/features/mec/meta_boxes/display_options.php:349
|
2790 |
#: app/features/mec/meta_boxes/display_options.php:445
|
2791 |
+
#: app/features/mec/meta_boxes/display_options.php:952
|
2792 |
+
#: app/features/mec/meta_boxes/display_options.php:1219
|
2793 |
+
#: app/features/mec/meta_boxes/display_options.php:1328
|
2794 |
+
#: app/features/mec/meta_boxes/display_options.php:1379
|
2795 |
msgid "Limit"
|
2796 |
msgstr "Limit"
|
2797 |
|
2917 |
msgid "Auto confirmation for paid bookings"
|
2918 |
msgstr "Automatické ověření pro placené rezervace"
|
2919 |
|
2920 |
+
#: app/features/mec/booking.php:259
|
2921 |
+
msgid "Send confirmation email in auto confirmation mode"
|
2922 |
+
msgstr ""
|
2923 |
+
|
2924 |
+
#: app/features/mec/booking.php:278
|
2925 |
msgid "Enable coupons module"
|
2926 |
msgstr "Povolit modul vstupenek"
|
2927 |
|
2928 |
+
#: app/features/mec/booking.php:280
|
2929 |
msgid ""
|
2930 |
"After enabling and saving the settings,, you should reload the page to see a "
|
2931 |
"new menu on the Dashboard > Booking"
|
2933 |
"Po povolení a uložení nastavení byste měli stránku znovu načíst a zobrazit "
|
2934 |
"novou nabídku na řídícím panelu > Rezervace"
|
2935 |
|
2936 |
+
#: app/features/mec/booking.php:288 app/libraries/main.php:558
|
2937 |
msgid "Taxes / Fees"
|
2938 |
msgstr "Daně / poplatky"
|
2939 |
|
2940 |
+
#: app/features/mec/booking.php:296
|
2941 |
msgid "Enable taxes / fees module"
|
2942 |
msgstr "Povolit modul daní / poplatků"
|
2943 |
|
2944 |
+
#: app/features/mec/booking.php:301
|
2945 |
msgid "Add Fee"
|
2946 |
msgstr "Přidat poplatek"
|
2947 |
|
2948 |
+
#: app/features/mec/booking.php:365 app/libraries/main.php:559
|
2949 |
msgid "Ticket Variations & Options"
|
2950 |
msgstr "Varianty a možnosti vstupenek"
|
2951 |
|
2952 |
+
#: app/features/mec/booking.php:373
|
2953 |
msgid "Enable ticket options module"
|
2954 |
msgstr "Povolit modul možností vstupenek"
|
2955 |
|
2956 |
+
#: app/features/mec/booking.php:378
|
2957 |
msgid "Add Variation / Option"
|
2958 |
msgstr "Přidat varianty / možnosti"
|
2959 |
|
2960 |
+
#: app/features/mec/booking.php:581
|
2961 |
msgid "Enable Organizer Payment Module"
|
2962 |
msgstr "Povolit platební modul organizátora"
|
2963 |
|
2964 |
+
#: app/features/mec/booking.php:585
|
2965 |
msgid "Organizer Payment"
|
2966 |
msgstr "Platba organizátora"
|
2967 |
|
2968 |
+
#: app/features/mec/booking.php:586
|
2969 |
msgid ""
|
2970 |
"By enabling this module, organizers are able to insert their own payment "
|
2971 |
"credentials for enabled gateways per event and receive the payments directly!"
|
2973 |
"Po aktivaci tohoto modulu mohou organizátoři vkládat své vlastní platební "
|
2974 |
"údaje pro povolené brány pro události a přijímat platby přímo!"
|
2975 |
|
2976 |
+
#: app/features/mec/booking.php:633 app/features/mec/messages.php:78
|
2977 |
+
#: app/features/mec/modules.php:393 app/features/mec/notifications.php:902
|
2978 |
+
#: app/features/mec/settings.php:1049 app/features/mec/single.php:292
|
2979 |
#: app/features/mec/styles.php:60 app/features/mec/styling.php:296
|
2980 |
msgid "Saved"
|
2981 |
msgstr "Uloženo"
|
2982 |
|
2983 |
+
#: app/features/mec/booking.php:634 app/features/mec/messages.php:79
|
2984 |
+
#: app/features/mec/modules.php:394 app/features/mec/notifications.php:903
|
2985 |
+
#: app/features/mec/settings.php:1050 app/features/mec/single.php:293
|
2986 |
#: app/features/mec/styles.php:61 app/features/mec/styling.php:297
|
2987 |
msgid "Settings Saved!"
|
2988 |
msgstr "Nastavení uložena!"
|
2989 |
|
2990 |
+
#: app/features/mec/booking.php:636 app/features/mec/booking.php:658
|
2991 |
+
#: app/features/mec/modules.php:396 app/features/mec/modules.php:418
|
2992 |
#: app/features/mec/notifications.php:905
|
2993 |
#: app/features/mec/notifications.php:927 app/features/mec/settings.php:1052
|
2994 |
+
#: app/features/mec/settings.php:1074 app/features/mec/single.php:295
|
2995 |
+
#: app/features/mec/single.php:317 app/libraries/main.php:5584
|
2996 |
msgid "Verified"
|
2997 |
msgstr "Ověřeno"
|
2998 |
|
2999 |
+
#: app/features/mec/booking.php:660 app/features/mec/modules.php:420
|
3000 |
#: app/features/mec/notifications.php:929 app/features/mec/settings.php:1076
|
3001 |
+
#: app/features/mec/single.php:319
|
3002 |
msgid "Please Refresh Page"
|
3003 |
msgstr "Prosím obnovte stránku"
|
3004 |
|
3199 |
#: app/features/mec/meta_boxes/display_options.php:41
|
3200 |
#: app/features/mec/meta_boxes/display_options.php:218
|
3201 |
#: app/features/mec/meta_boxes/display_options.php:644
|
3202 |
+
#: app/features/mec/meta_boxes/display_options.php:811
|
3203 |
+
#: app/features/mec/meta_boxes/display_options.php:1006
|
3204 |
#: app/features/mec/settings.php:267 app/features/mec/settings.php:291
|
3205 |
#: app/features/mec/settings.php:300 app/features/mec/settings.php:341
|
3206 |
#: app/features/mec/settings.php:365 app/features/mec/settings.php:374
|
3221 |
#: app/features/mec/meta_boxes/display_options.php:221
|
3222 |
#: app/features/mec/meta_boxes/display_options.php:594
|
3223 |
#: app/features/mec/meta_boxes/display_options.php:646
|
3224 |
+
#: app/features/mec/meta_boxes/display_options.php:809
|
3225 |
+
#: app/features/mec/meta_boxes/display_options.php:1008
|
3226 |
#: app/features/mec/settings.php:269 app/features/mec/settings.php:282
|
3227 |
#: app/features/mec/settings.php:293 app/features/mec/settings.php:303
|
3228 |
#: app/features/mec/settings.php:343 app/features/mec/settings.php:356
|
3249 |
#: app/features/mec/meta_boxes/display_options.php:231
|
3250 |
#: app/features/mec/meta_boxes/display_options.php:409
|
3251 |
#: app/features/mec/meta_boxes/display_options.php:701
|
3252 |
+
#: app/features/mec/meta_boxes/display_options.php:735
|
3253 |
+
#: app/features/mec/meta_boxes/display_options.php:916
|
3254 |
+
#: app/features/mec/meta_boxes/display_options.php:1164
|
3255 |
+
#: app/features/mec/meta_boxes/display_options.php:1252
|
3256 |
+
#: app/features/mec/meta_boxes/display_options.php:1344
|
3257 |
msgid "Today"
|
3258 |
msgstr "Dnes"
|
3259 |
|
3261 |
#: app/features/mec/meta_boxes/display_options.php:232
|
3262 |
#: app/features/mec/meta_boxes/display_options.php:410
|
3263 |
#: app/features/mec/meta_boxes/display_options.php:702
|
3264 |
+
#: app/features/mec/meta_boxes/display_options.php:736
|
3265 |
+
#: app/features/mec/meta_boxes/display_options.php:917
|
3266 |
+
#: app/features/mec/meta_boxes/display_options.php:1165
|
3267 |
+
#: app/features/mec/meta_boxes/display_options.php:1253
|
3268 |
+
#: app/features/mec/meta_boxes/display_options.php:1345
|
3269 |
msgid "Tomorrow"
|
3270 |
msgstr "Zítra"
|
3271 |
|
3275 |
#: app/features/mec/meta_boxes/display_options.php:477
|
3276 |
#: app/features/mec/meta_boxes/display_options.php:654
|
3277 |
#: app/features/mec/meta_boxes/display_options.php:703
|
3278 |
+
#: app/features/mec/meta_boxes/display_options.php:737
|
3279 |
+
#: app/features/mec/meta_boxes/display_options.php:772
|
3280 |
+
#: app/features/mec/meta_boxes/display_options.php:819
|
3281 |
+
#: app/features/mec/meta_boxes/display_options.php:918
|
3282 |
+
#: app/features/mec/meta_boxes/display_options.php:1166
|
3283 |
+
#: app/features/mec/meta_boxes/display_options.php:1254
|
3284 |
+
#: app/features/mec/meta_boxes/display_options.php:1346
|
3285 |
+
#: app/features/mec/meta_boxes/display_options.php:1411
|
3286 |
msgid "Start of Current Month"
|
3287 |
msgstr "Začátek aktuálního měsíce"
|
3288 |
|
3292 |
#: app/features/mec/meta_boxes/display_options.php:478
|
3293 |
#: app/features/mec/meta_boxes/display_options.php:655
|
3294 |
#: app/features/mec/meta_boxes/display_options.php:704
|
3295 |
+
#: app/features/mec/meta_boxes/display_options.php:738
|
3296 |
+
#: app/features/mec/meta_boxes/display_options.php:773
|
3297 |
+
#: app/features/mec/meta_boxes/display_options.php:820
|
3298 |
+
#: app/features/mec/meta_boxes/display_options.php:919
|
3299 |
+
#: app/features/mec/meta_boxes/display_options.php:1167
|
3300 |
+
#: app/features/mec/meta_boxes/display_options.php:1255
|
3301 |
+
#: app/features/mec/meta_boxes/display_options.php:1347
|
3302 |
+
#: app/features/mec/meta_boxes/display_options.php:1412
|
3303 |
msgid "Start of Next Month"
|
3304 |
msgstr "Začátek dalšího měsíce"
|
3305 |
|
3310 |
#: app/features/mec/meta_boxes/display_options.php:602
|
3311 |
#: app/features/mec/meta_boxes/display_options.php:656
|
3312 |
#: app/features/mec/meta_boxes/display_options.php:705
|
3313 |
+
#: app/features/mec/meta_boxes/display_options.php:739
|
3314 |
+
#: app/features/mec/meta_boxes/display_options.php:774
|
3315 |
+
#: app/features/mec/meta_boxes/display_options.php:821
|
3316 |
+
#: app/features/mec/meta_boxes/display_options.php:920
|
3317 |
+
#: app/features/mec/meta_boxes/display_options.php:1168
|
3318 |
+
#: app/features/mec/meta_boxes/display_options.php:1256
|
3319 |
+
#: app/features/mec/meta_boxes/display_options.php:1348
|
3320 |
+
#: app/features/mec/meta_boxes/display_options.php:1413
|
3321 |
msgid "On a certain date"
|
3322 |
msgstr "K určitému datu"
|
3323 |
|
3328 |
#: app/features/mec/meta_boxes/display_options.php:605
|
3329 |
#: app/features/mec/meta_boxes/display_options.php:659
|
3330 |
#: app/features/mec/meta_boxes/display_options.php:708
|
3331 |
+
#: app/features/mec/meta_boxes/display_options.php:743
|
3332 |
+
#: app/features/mec/meta_boxes/display_options.php:777
|
3333 |
+
#: app/features/mec/meta_boxes/display_options.php:824
|
3334 |
+
#: app/features/mec/meta_boxes/display_options.php:923
|
3335 |
+
#: app/features/mec/meta_boxes/display_options.php:1171
|
3336 |
+
#: app/features/mec/meta_boxes/display_options.php:1259
|
3337 |
+
#: app/features/mec/meta_boxes/display_options.php:1351
|
3338 |
+
#: app/features/mec/meta_boxes/display_options.php:1416
|
3339 |
#, php-format
|
3340 |
msgid "eg. %s"
|
3341 |
msgstr "např. %s"
|
3349 |
#: app/features/mec/meta_boxes/display_options.php:421
|
3350 |
#: app/features/mec/meta_boxes/display_options.php:422
|
3351 |
#: app/features/mec/meta_boxes/display_options.php:425
|
|
|
3352 |
#: app/features/mec/meta_boxes/display_options.php:928
|
3353 |
+
#: app/features/mec/meta_boxes/display_options.php:929
|
3354 |
+
#: app/features/mec/meta_boxes/display_options.php:932
|
3355 |
#: app/features/mec/meta_boxes/display_options.php:1356
|
3356 |
+
#: app/features/mec/meta_boxes/display_options.php:1357
|
3357 |
+
#: app/features/mec/meta_boxes/display_options.php:1360
|
3358 |
#, fuzzy
|
3359 |
#| msgid "Maximum Dates"
|
3360 |
msgid "Maximum Date"
|
3363 |
#: app/features/mec/meta_boxes/display_options.php:68
|
3364 |
#: app/features/mec/meta_boxes/display_options.php:248
|
3365 |
#: app/features/mec/meta_boxes/display_options.php:426
|
3366 |
+
#: app/features/mec/meta_boxes/display_options.php:933
|
3367 |
+
#: app/features/mec/meta_boxes/display_options.php:1361
|
3368 |
#, fuzzy
|
3369 |
#| msgid "Show events based on created shortcodes."
|
3370 |
msgid "Show events before the specified date."
|
3398 |
#: app/features/mec/meta_boxes/display_options.php:438
|
3399 |
#: app/features/mec/meta_boxes/display_options.php:609
|
3400 |
#: app/features/mec/meta_boxes/display_options.php:614
|
3401 |
+
#: app/features/mec/meta_boxes/display_options.php:856
|
3402 |
+
#: app/features/mec/meta_boxes/display_options.php:940
|
3403 |
+
#: app/features/mec/meta_boxes/display_options.php:945
|
3404 |
+
#: app/features/mec/meta_boxes/display_options.php:1012
|
3405 |
+
#: app/features/mec/meta_boxes/display_options.php:1018
|
3406 |
+
#: app/features/mec/meta_boxes/display_options.php:1025
|
3407 |
+
#: app/features/mec/meta_boxes/display_options.php:1030
|
3408 |
+
#: app/features/mec/meta_boxes/display_options.php:1037
|
3409 |
+
#: app/features/mec/meta_boxes/display_options.php:1041
|
3410 |
+
#: app/features/mec/meta_boxes/display_options.php:1069
|
3411 |
+
#: app/features/mec/meta_boxes/display_options.php:1073
|
3412 |
+
#: app/features/mec/meta_boxes/display_options.php:1080
|
3413 |
+
#: app/features/mec/meta_boxes/display_options.php:1084
|
3414 |
+
#: app/features/mec/meta_boxes/display_options.php:1091
|
3415 |
+
#: app/features/mec/meta_boxes/display_options.php:1097
|
3416 |
+
#: app/features/mec/meta_boxes/display_options.php:1127
|
3417 |
+
#: app/features/mec/meta_boxes/display_options.php:1132
|
3418 |
+
#: app/features/mec/meta_boxes/display_options.php:1175
|
3419 |
+
#: app/features/mec/meta_boxes/display_options.php:1181
|
3420 |
+
#: app/features/mec/meta_boxes/display_options.php:1188
|
3421 |
+
#: app/features/mec/meta_boxes/display_options.php:1192
|
3422 |
+
#: app/features/mec/meta_boxes/display_options.php:1199
|
3423 |
+
#: app/features/mec/meta_boxes/display_options.php:1203
|
3424 |
+
#: app/features/mec/meta_boxes/display_options.php:1263
|
3425 |
+
#: app/features/mec/meta_boxes/display_options.php:1269
|
3426 |
+
#: app/features/mec/meta_boxes/display_options.php:1276
|
3427 |
+
#: app/features/mec/meta_boxes/display_options.php:1282
|
3428 |
+
#: app/features/mec/meta_boxes/display_options.php:1289
|
3429 |
+
#: app/features/mec/meta_boxes/display_options.php:1295
|
3430 |
+
#: app/features/mec/meta_boxes/display_options.php:1302
|
3431 |
+
#: app/features/mec/meta_boxes/display_options.php:1308
|
3432 |
+
#: app/features/mec/meta_boxes/display_options.php:1315
|
3433 |
+
#: app/features/mec/meta_boxes/display_options.php:1321
|
3434 |
+
#: app/features/mec/meta_boxes/display_options.php:1368
|
3435 |
+
#: app/features/mec/meta_boxes/display_options.php:1372
|
3436 |
+
#: app/features/mec/meta_boxes/display_options.php:1420
|
3437 |
+
#: app/features/mec/meta_boxes/display_options.php:1425
|
3438 |
msgid "Date Formats"
|
3439 |
msgstr "Formát data"
|
3440 |
|
3450 |
#: app/features/mec/meta_boxes/display_options.php:106
|
3451 |
#: app/features/mec/meta_boxes/display_options.php:297
|
3452 |
#: app/features/mec/meta_boxes/display_options.php:321
|
3453 |
+
#: app/features/mec/meta_boxes/display_options.php:1270
|
3454 |
+
#: app/features/mec/meta_boxes/display_options.php:1283
|
3455 |
+
#: app/features/mec/meta_boxes/display_options.php:1296
|
3456 |
+
#: app/features/mec/meta_boxes/display_options.php:1309
|
3457 |
+
#: app/features/mec/meta_boxes/display_options.php:1322
|
3458 |
msgid "Default values are d, F and l"
|
3459 |
msgstr "Výchozí hodnoty jsou d, F a I"
|
3460 |
|
3472 |
#: app/features/mec/meta_boxes/display_options.php:446
|
3473 |
#: app/features/mec/meta_boxes/display_options.php:622
|
3474 |
#: app/features/mec/meta_boxes/display_options.php:664
|
3475 |
+
#: app/features/mec/meta_boxes/display_options.php:748
|
3476 |
+
#: app/features/mec/meta_boxes/display_options.php:782
|
3477 |
+
#: app/features/mec/meta_boxes/display_options.php:829
|
3478 |
+
#: app/features/mec/meta_boxes/display_options.php:1220
|
3479 |
+
#: app/features/mec/meta_boxes/display_options.php:1329
|
3480 |
+
#: app/features/mec/meta_boxes/display_options.php:1380
|
3481 |
msgid "eg. 6"
|
3482 |
msgstr "např. 6"
|
3483 |
|
3490 |
#: app/features/mec/meta_boxes/display_options.php:152
|
3491 |
#: app/features/mec/meta_boxes/display_options.php:354
|
3492 |
#: app/features/mec/meta_boxes/display_options.php:450
|
3493 |
+
#: app/features/mec/meta_boxes/display_options.php:989
|
3494 |
+
#: app/features/mec/meta_boxes/display_options.php:1384
|
3495 |
msgid "Load More Button"
|
3496 |
msgstr "Načíst tlačítko Další"
|
3497 |
|
3498 |
#: app/features/mec/meta_boxes/display_options.php:162
|
3499 |
#: app/features/mec/meta_boxes/display_options.php:460
|
3500 |
+
#: app/features/mec/meta_boxes/display_options.php:1394
|
3501 |
msgid "Show Month Divider"
|
3502 |
msgstr "Zobrazit oddělovník měsíce"
|
3503 |
|
3520 |
#: app/features/mec/meta_boxes/display_options.php:403
|
3521 |
#: app/features/mec/meta_boxes/display_options.php:498
|
3522 |
#: app/features/mec/meta_boxes/display_options.php:645
|
3523 |
+
#: app/features/mec/meta_boxes/display_options.php:810
|
3524 |
+
#: app/features/mec/meta_boxes/display_options.php:1007
|
3525 |
#: app/features/mec/settings.php:268 app/features/mec/settings.php:283
|
3526 |
#: app/features/mec/settings.php:301 app/features/mec/settings.php:342
|
3527 |
#: app/features/mec/settings.php:357 app/features/mec/settings.php:375
|
3557 |
msgstr "Novela"
|
3558 |
|
3559 |
#: app/features/mec/meta_boxes/display_options.php:260
|
3560 |
+
#: app/features/mec/meta_boxes/display_options.php:1373
|
3561 |
msgid "Default value is \"d F Y"
|
3562 |
msgstr "Výchozí hodnota je \"d F Y"
|
3563 |
|
3574 |
msgstr "Výchozí hodnota je \"d F Y\""
|
3575 |
|
3576 |
#: app/features/mec/meta_boxes/display_options.php:338
|
3577 |
+
#: app/features/mec/meta_boxes/display_options.php:1210
|
3578 |
+
#: app/features/mec/meta_boxes/display_options.php:1432
|
3579 |
msgid "Count in row"
|
3580 |
msgstr "Počet v řadě"
|
3581 |
|
3582 |
#: app/features/mec/meta_boxes/display_options.php:396
|
3583 |
#: app/features/mec/meta_boxes/display_options.php:587
|
3584 |
#: app/features/mec/meta_boxes/display_options.php:694
|
3585 |
+
#: app/features/mec/meta_boxes/display_options.php:802
|
3586 |
+
#: app/features/mec/meta_boxes/display_options.php:1122
|
3587 |
#, php-format
|
3588 |
msgid "%s is required to use this skin."
|
3589 |
msgstr "%s je nutné použít tento vzhled."
|
3599 |
|
3600 |
#: app/features/mec/meta_boxes/display_options.php:488
|
3601 |
#: app/features/mec/meta_boxes/display_options.php:509
|
3602 |
+
#: app/libraries/main.php:330 app/libraries/main.php:1765
|
3603 |
+
#: app/libraries/main.php:1790
|
3604 |
msgid "List View"
|
3605 |
msgstr "Zobrazení seznamu"
|
3606 |
|
3607 |
#: app/features/mec/meta_boxes/display_options.php:489
|
3608 |
#: app/features/mec/meta_boxes/display_options.php:519
|
3609 |
+
#: app/libraries/main.php:334 app/libraries/main.php:1759
|
3610 |
+
#: app/libraries/main.php:1784
|
3611 |
msgid "Yearly View"
|
3612 |
msgstr "Roční zobrazení"
|
3613 |
|
3618 |
|
3619 |
#: app/features/mec/meta_boxes/display_options.php:491
|
3620 |
#: app/features/mec/meta_boxes/display_options.php:551
|
3621 |
+
#: app/libraries/main.php:337 app/libraries/main.php:1761
|
3622 |
+
#: app/libraries/main.php:1786
|
3623 |
msgid "Weekly View"
|
3624 |
msgstr "Týdenní zobrazení"
|
3625 |
|
3626 |
#: app/features/mec/meta_boxes/display_options.php:492
|
3627 |
#: app/features/mec/meta_boxes/display_options.php:561
|
3628 |
+
#: app/libraries/main.php:336 app/libraries/main.php:1762
|
3629 |
+
#: app/libraries/main.php:1787
|
3630 |
msgid "Daily View"
|
3631 |
msgstr "Denní zobrazení"
|
3632 |
|
3658 |
|
3659 |
#: app/features/mec/meta_boxes/display_options.php:621
|
3660 |
#: app/features/mec/meta_boxes/display_options.php:663
|
3661 |
+
#: app/features/mec/meta_boxes/display_options.php:747
|
3662 |
+
#: app/features/mec/meta_boxes/display_options.php:781
|
3663 |
+
#: app/features/mec/meta_boxes/display_options.php:828
|
3664 |
msgid "Events per day"
|
3665 |
msgstr "Události za den"
|
3666 |
|
3667 |
#: app/features/mec/meta_boxes/display_options.php:626
|
3668 |
#: app/features/mec/meta_boxes/display_options.php:668
|
3669 |
+
#: app/features/mec/meta_boxes/display_options.php:752
|
3670 |
+
#: app/features/mec/meta_boxes/display_options.php:786
|
3671 |
+
#: app/features/mec/meta_boxes/display_options.php:890
|
3672 |
+
#: app/features/mec/meta_boxes/display_options.php:1441
|
3673 |
msgid "Next/Previous Buttons"
|
3674 |
msgstr "Tlačítka Další / Předchozí"
|
3675 |
|
3682 |
msgstr "Text velkými písmeny"
|
3683 |
|
3684 |
#: app/features/mec/meta_boxes/display_options.php:686
|
3685 |
+
#: app/features/mec/meta_boxes/display_options.php:760
|
3686 |
+
#: app/features/mec/meta_boxes/display_options.php:794
|
3687 |
+
#: app/features/mec/meta_boxes/display_options.php:898
|
3688 |
+
#: app/features/mec/meta_boxes/display_options.php:1449
|
3689 |
msgid "For showing next/previous month navigation."
|
3690 |
msgstr "Pro zobrazení navigace další / předchozí měsíc."
|
3691 |
|
3701 |
msgid "The geolocation feature works only in secure (https) websites."
|
3702 |
msgstr "Funkce geolokace funguje pouze na zabezpečených (https) webech."
|
3703 |
|
3704 |
+
#: app/features/mec/meta_boxes/display_options.php:770
|
3705 |
+
#: app/features/mec/meta_boxes/display_options.php:817
|
3706 |
msgid "Current Week"
|
3707 |
msgstr "Aktuální týden"
|
3708 |
|
3709 |
+
#: app/features/mec/meta_boxes/display_options.php:771
|
3710 |
+
#: app/features/mec/meta_boxes/display_options.php:818
|
3711 |
msgid "Next Week"
|
3712 |
msgstr "Další týden"
|
3713 |
|
3714 |
+
#: app/features/mec/meta_boxes/display_options.php:833
|
3715 |
msgid "Number of Days"
|
3716 |
msgstr "Počet dnů"
|
3717 |
|
3718 |
+
#: app/features/mec/meta_boxes/display_options.php:841
|
3719 |
msgid "Week Start"
|
3720 |
msgstr "Začátek týdne"
|
3721 |
|
3722 |
+
#: app/features/mec/meta_boxes/display_options.php:843
|
3723 |
msgid "Inherite from WordPress options"
|
3724 |
msgstr "Zdědit z možností WordPressu"
|
3725 |
|
3726 |
+
#: app/features/mec/meta_boxes/display_options.php:858
|
3727 |
msgid "1:00"
|
3728 |
msgstr ""
|
3729 |
|
3730 |
+
#: app/features/mec/meta_boxes/display_options.php:859
|
3731 |
msgid "2:00"
|
3732 |
msgstr ""
|
3733 |
|
3734 |
+
#: app/features/mec/meta_boxes/display_options.php:860
|
3735 |
msgid "3:00"
|
3736 |
msgstr ""
|
3737 |
|
3738 |
+
#: app/features/mec/meta_boxes/display_options.php:861
|
3739 |
msgid "4:00"
|
3740 |
msgstr ""
|
3741 |
|
3742 |
+
#: app/features/mec/meta_boxes/display_options.php:862
|
3743 |
msgid "5:00"
|
3744 |
msgstr ""
|
3745 |
|
3746 |
+
#: app/features/mec/meta_boxes/display_options.php:863
|
3747 |
msgid "6:00"
|
3748 |
msgstr ""
|
3749 |
|
3750 |
+
#: app/features/mec/meta_boxes/display_options.php:864
|
3751 |
msgid "7:00"
|
3752 |
msgstr ""
|
3753 |
|
3754 |
+
#: app/features/mec/meta_boxes/display_options.php:865
|
3755 |
msgid "8:00"
|
3756 |
msgstr ""
|
3757 |
|
3758 |
+
#: app/features/mec/meta_boxes/display_options.php:866
|
3759 |
msgid "9:00"
|
3760 |
msgstr ""
|
3761 |
|
3762 |
+
#: app/features/mec/meta_boxes/display_options.php:867
|
3763 |
msgid "10:00"
|
3764 |
msgstr ""
|
3765 |
|
3766 |
+
#: app/features/mec/meta_boxes/display_options.php:868
|
3767 |
msgid "11:00"
|
3768 |
msgstr ""
|
3769 |
|
3770 |
+
#: app/features/mec/meta_boxes/display_options.php:869
|
3771 |
msgid "12:00"
|
3772 |
msgstr ""
|
3773 |
|
3774 |
+
#: app/features/mec/meta_boxes/display_options.php:872
|
3775 |
msgid "13:00"
|
3776 |
msgstr ""
|
3777 |
|
3778 |
+
#: app/features/mec/meta_boxes/display_options.php:873
|
3779 |
msgid "14:00"
|
3780 |
msgstr ""
|
3781 |
|
3782 |
+
#: app/features/mec/meta_boxes/display_options.php:874
|
3783 |
msgid "15:00"
|
3784 |
msgstr ""
|
3785 |
|
3786 |
+
#: app/features/mec/meta_boxes/display_options.php:875
|
3787 |
msgid "16:00"
|
3788 |
msgstr ""
|
3789 |
|
3790 |
+
#: app/features/mec/meta_boxes/display_options.php:876
|
3791 |
msgid "17:00"
|
3792 |
msgstr ""
|
3793 |
|
3794 |
+
#: app/features/mec/meta_boxes/display_options.php:877
|
3795 |
msgid "18:00"
|
3796 |
msgstr ""
|
3797 |
|
3798 |
+
#: app/features/mec/meta_boxes/display_options.php:878
|
3799 |
msgid "19:00"
|
3800 |
msgstr ""
|
3801 |
|
3802 |
+
#: app/features/mec/meta_boxes/display_options.php:879
|
3803 |
msgid "20:00"
|
3804 |
msgstr ""
|
3805 |
|
3806 |
+
#: app/features/mec/meta_boxes/display_options.php:880
|
3807 |
msgid "21:00"
|
3808 |
msgstr ""
|
3809 |
|
3810 |
+
#: app/features/mec/meta_boxes/display_options.php:881
|
3811 |
msgid "22:00"
|
3812 |
msgstr ""
|
3813 |
|
3814 |
+
#: app/features/mec/meta_boxes/display_options.php:882
|
3815 |
msgid "23:00"
|
3816 |
msgstr ""
|
3817 |
|
3818 |
+
#: app/features/mec/meta_boxes/display_options.php:883
|
3819 |
msgid "24:00"
|
3820 |
msgstr ""
|
3821 |
|
3822 |
+
#: app/features/mec/meta_boxes/display_options.php:946
|
3823 |
+
#: app/features/mec/meta_boxes/display_options.php:1133
|
3824 |
msgid "Default values are j and F"
|
3825 |
msgstr "Výchozí hodnoty jsou j a F"
|
3826 |
|
3827 |
+
#: app/features/mec/meta_boxes/display_options.php:953
|
3828 |
msgid "eg. 24"
|
3829 |
msgstr "např. 24"
|
3830 |
|
3831 |
+
#: app/features/mec/meta_boxes/display_options.php:956
|
3832 |
msgid "Filter By"
|
3833 |
msgstr "Filtrovat podle"
|
3834 |
|
3835 |
+
#: app/features/mec/meta_boxes/display_options.php:958
|
3836 |
msgid "None"
|
3837 |
msgstr "Žádný"
|
3838 |
|
3839 |
+
#: app/features/mec/meta_boxes/display_options.php:967
|
3840 |
msgid "Fit to row"
|
3841 |
msgstr "Přizpůsobit řádku"
|
3842 |
|
3843 |
+
#: app/features/mec/meta_boxes/display_options.php:968
|
3844 |
msgid ""
|
3845 |
"Items are arranged into rows. Rows progress vertically. Similar to what you "
|
3846 |
"would expect from a layout that uses CSS floats."
|
3848 |
"Položky jsou uspořádány do řádků. Řádky postupují svisle. Podobně, co byste "
|
3849 |
"očekávali od rozložení používajícího plovoucí CSS."
|
3850 |
|
3851 |
+
#: app/features/mec/meta_boxes/display_options.php:978
|
3852 |
msgid "Convert Masonry to Grid"
|
3853 |
msgstr "Převést zdivo na mřížku"
|
3854 |
|
3855 |
+
#: app/features/mec/meta_boxes/display_options.php:979
|
3856 |
msgid "For using this option, your events should come with image"
|
3857 |
msgstr "Pro použití této možnosti by vaše události měly přijít s obrázkem"
|
3858 |
|
3859 |
+
#: app/features/mec/meta_boxes/display_options.php:1019
|
3860 |
msgid "Default values are d, M and Y"
|
3861 |
msgstr "Výchozí hodnoty jsou d, M a Y"
|
3862 |
|
3863 |
+
#: app/features/mec/meta_boxes/display_options.php:1031
|
3864 |
msgid "Default values are \"F d\" and l"
|
3865 |
msgstr "Výchozí hodnota je \"F d\" a I"
|
3866 |
|
3867 |
+
#: app/features/mec/meta_boxes/display_options.php:1042
|
3868 |
msgid "Default value is \"l, F d Y\""
|
3869 |
msgstr "Výchozí hodnota je \"I, F d Y\""
|
3870 |
|
3871 |
+
#: app/features/mec/meta_boxes/display_options.php:1063
|
3872 |
#: app/features/popup/shortcode.php:228
|
3873 |
msgid "Style 1"
|
3874 |
msgstr "Styl 1"
|
3875 |
|
3876 |
+
#: app/features/mec/meta_boxes/display_options.php:1064
|
3877 |
#: app/features/popup/shortcode.php:233
|
3878 |
msgid "Style 2"
|
3879 |
msgstr "Styl 2"
|
3880 |
|
3881 |
+
#: app/features/mec/meta_boxes/display_options.php:1065
|
3882 |
#: app/features/popup/shortcode.php:238
|
3883 |
msgid "Style 3"
|
3884 |
msgstr "Styl 3"
|
3885 |
|
3886 |
+
#: app/features/mec/meta_boxes/display_options.php:1074
|
3887 |
+
#: app/features/mec/meta_boxes/display_options.php:1085
|
3888 |
msgid "Default value is \"j F Y\""
|
3889 |
msgstr "Výchozí hodnota je \"j F Y\""
|
3890 |
|
3891 |
+
#: app/features/mec/meta_boxes/display_options.php:1098
|
3892 |
msgid "Default values are j, F and Y"
|
3893 |
msgstr "Výchozí hodnoty jsou j, F a Y"
|
3894 |
|
3895 |
+
#: app/features/mec/meta_boxes/display_options.php:1106
|
3896 |
+
#: app/features/mec/meta_boxes/display_options.php:1141
|
3897 |
msgid " -- Next Upcoming Event -- "
|
3898 |
msgstr " -- Další nadcházející událost -- "
|
3899 |
|
3900 |
+
#: app/features/mec/meta_boxes/display_options.php:1113
|
3901 |
msgid "Background Color"
|
3902 |
msgstr "Barva pozadí"
|
3903 |
|
3904 |
+
#: app/features/mec/meta_boxes/display_options.php:1155
|
3905 |
+
#: app/features/mec/meta_boxes/display_options.php:1242
|
3906 |
#: app/features/popup/shortcode.php:247 app/features/popup/shortcode.php:269
|
3907 |
msgid "Type 1"
|
3908 |
msgstr "Typ 1"
|
3909 |
|
3910 |
+
#: app/features/mec/meta_boxes/display_options.php:1156
|
3911 |
+
#: app/features/mec/meta_boxes/display_options.php:1243
|
3912 |
#: app/features/popup/shortcode.php:252 app/features/popup/shortcode.php:274
|
3913 |
msgid "Type 2"
|
3914 |
msgstr "Typ 2"
|
3915 |
|
3916 |
+
#: app/features/mec/meta_boxes/display_options.php:1157
|
3917 |
+
#: app/features/mec/meta_boxes/display_options.php:1244
|
3918 |
#: app/features/popup/shortcode.php:257 app/features/popup/shortcode.php:279
|
3919 |
msgid "Type 3"
|
3920 |
msgstr "Typ 3"
|
3921 |
|
3922 |
+
#: app/features/mec/meta_boxes/display_options.php:1158
|
3923 |
+
#: app/features/mec/meta_boxes/display_options.php:1245
|
3924 |
#: app/features/popup/shortcode.php:262 app/features/popup/shortcode.php:284
|
3925 |
msgid "Type 4"
|
3926 |
msgstr "Typ 4"
|
3927 |
|
3928 |
+
#: app/features/mec/meta_boxes/display_options.php:1182
|
3929 |
msgid "Default values are d, F and Y"
|
3930 |
msgstr "Výchozí hodnoty jsou d, F a Y"
|
3931 |
|
3932 |
+
#: app/features/mec/meta_boxes/display_options.php:1193
|
3933 |
+
#: app/features/mec/meta_boxes/display_options.php:1204
|
3934 |
msgid "Default value is \"M d, Y\""
|
3935 |
msgstr "Výchozí hodnota je \"M d, Y\""
|
3936 |
|
3937 |
+
#: app/features/mec/meta_boxes/display_options.php:1223
|
3938 |
+
#: app/features/mec/meta_boxes/display_options.php:1332
|
3939 |
msgid "Auto Play Time"
|
3940 |
msgstr "Čas automatického přehrávání"
|
3941 |
|
3942 |
+
#: app/features/mec/meta_boxes/display_options.php:1224
|
3943 |
+
#: app/features/mec/meta_boxes/display_options.php:1333
|
3944 |
msgid "eg. 3000 default is 3 second"
|
3945 |
msgstr "např. výchozí hodnota 3000 jsou 3 vteřiny"
|
3946 |
|
3947 |
+
#: app/features/mec/meta_boxes/display_options.php:1227
|
3948 |
msgid "Archive Link"
|
3949 |
msgstr "Odkaz na archiv"
|
3950 |
|
3951 |
+
#: app/features/mec/meta_boxes/display_options.php:1231
|
3952 |
msgid "Head Text"
|
3953 |
msgstr "Text hlavičky"
|
3954 |
|
3955 |
+
#: app/features/mec/meta_boxes/display_options.php:1246
|
3956 |
#: app/features/popup/shortcode.php:289
|
3957 |
msgid "Type 5"
|
3958 |
msgstr "Typ 5"
|
3959 |
|
3960 |
+
#: app/features/mec/meta_boxes/display_options.php:1426
|
3961 |
#, fuzzy
|
3962 |
#| msgid "Default values are j and F"
|
3963 |
msgid "Default values are j and M"
|
4154 |
#: app/features/mec/meta_boxes/search_form.php:535
|
4155 |
#: app/features/mec/meta_boxes/search_form.php:596
|
4156 |
#: app/features/mec/meta_boxes/search_form.php:693
|
4157 |
+
#: app/features/mec/settings.php:827 app/features/mec/single.php:245
|
4158 |
#: app/features/search.php:83 app/features/speakers.php:61
|
4159 |
+
#: app/features/speakers.php:269 app/libraries/main.php:5343
|
4160 |
+
#: app/libraries/skins.php:943
|
4161 |
msgid "Speaker"
|
4162 |
msgstr "Řečník"
|
4163 |
|
4172 |
#: app/features/mec/meta_boxes/search_form.php:542
|
4173 |
#: app/features/mec/meta_boxes/search_form.php:603
|
4174 |
#: app/features/mec/meta_boxes/search_form.php:700
|
4175 |
+
#: app/features/mec/settings.php:834 app/features/mec/single.php:254
|
4176 |
+
#: app/features/search.php:88 app/libraries/skins.php:969
|
4177 |
msgid "Tag"
|
4178 |
msgstr "Štítek"
|
4179 |
|
4256 |
msgid "Show Google Maps on event page"
|
4257 |
msgstr "Zobrazit Mapy Google na stránce události"
|
4258 |
|
4259 |
+
#: app/features/mec/modules.php:80 app/features/mec/modules.php:239
|
4260 |
#: app/features/mec/settings.php:864 app/features/mec/settings.php:869
|
4261 |
#: app/features/mec/settings.php:917 app/features/mec/settings.php:941
|
4262 |
#: app/features/mec/settings.php:965
|
4322 |
"Zkontrolujte to, pouze pokud jiný plugin / motiv načítá rozhraní Google Maps "
|
4323 |
"API"
|
4324 |
|
4325 |
+
#: app/features/mec/modules.php:168 app/libraries/main.php:567
|
4326 |
msgid "Export Options"
|
4327 |
msgstr "Možnosti exportu"
|
4328 |
|
4329 |
+
#: app/features/mec/modules.php:172
|
4330 |
msgid ""
|
4331 |
"Show export module (iCal export and add to Google calendars) on event page"
|
4332 |
msgstr ""
|
4333 |
"Zobrazit modul exportu (export iCal a přidání do kalendářů Google) na "
|
4334 |
"stránce události"
|
4335 |
|
4336 |
+
#: app/features/mec/modules.php:179
|
4337 |
msgid "Google Calendar"
|
4338 |
msgstr "Kalendář Google"
|
4339 |
|
4340 |
+
#: app/features/mec/modules.php:195 app/libraries/main.php:568
|
4341 |
+
#: app/modules/local-time/details.php:43 app/widgets/single.php:99
|
4342 |
msgid "Local Time"
|
4343 |
msgstr "Místní čas"
|
4344 |
|
4345 |
+
#: app/features/mec/modules.php:199
|
4346 |
msgid "Show event time based on local time of visitor on event page"
|
4347 |
msgstr ""
|
4348 |
"Zobrazit čas události na základě místního času návštěvníka na stránce "
|
4349 |
"události"
|
4350 |
|
4351 |
+
#: app/features/mec/modules.php:209 app/libraries/main.php:569
|
4352 |
#: app/modules/qrcode/details.php:38 app/widgets/single.php:155
|
4353 |
msgid "QR Code"
|
4354 |
msgstr "QR kód"
|
4355 |
|
4356 |
+
#: app/features/mec/modules.php:217
|
4357 |
msgid "Show QR code of event in details page and booking invoice"
|
4358 |
msgstr ""
|
4359 |
"Zobrazte QR kód události na stránce s podrobnostmi a fakturaci za rezervaci"
|
4360 |
|
4361 |
+
#: app/features/mec/modules.php:227 app/libraries/main.php:570
|
4362 |
#: app/modules/weather/details.php:37
|
4363 |
msgid "Weather"
|
4364 |
msgstr "Počasí"
|
4365 |
|
4366 |
+
#: app/features/mec/modules.php:234
|
4367 |
msgid "Show weather module on event page"
|
4368 |
msgstr "Zobrazit modul počasí na stránce události"
|
4369 |
|
4370 |
+
#: app/features/mec/modules.php:242
|
4371 |
#, php-format
|
4372 |
msgid "You can get a free API Key from %s"
|
4373 |
msgstr "Zdarma můžete získat klíč API od % s"
|
4374 |
|
4375 |
+
#: app/features/mec/modules.php:248
|
4376 |
msgid "Show weather imperial units"
|
4377 |
msgstr "Zobrazit britské jednotky počasí"
|
4378 |
|
4379 |
+
#: app/features/mec/modules.php:254
|
4380 |
msgid "Show weather change units button"
|
4381 |
msgstr "Zobrazit tlačítko Změna jednotek počasí"
|
4382 |
|
4383 |
+
#: app/features/mec/modules.php:268
|
4384 |
msgid "Show social network module"
|
4385 |
msgstr "Zobrazit modul sociální sítě"
|
4386 |
|
4387 |
+
#: app/features/mec/modules.php:294 app/libraries/main.php:572
|
4388 |
#: app/modules/next-event/details.php:86
|
4389 |
msgid "Next Event"
|
4390 |
msgstr "Další událost"
|
4391 |
|
4392 |
+
#: app/features/mec/modules.php:298
|
4393 |
msgid "Show next event module on event page"
|
4394 |
msgstr "Zobrazit další modul události na stránce události"
|
4395 |
|
4396 |
+
#: app/features/mec/modules.php:303
|
4397 |
msgid "Method"
|
4398 |
msgstr "Metoda"
|
4399 |
|
4400 |
+
#: app/features/mec/modules.php:306
|
4401 |
msgid "Next Occurrence of Current Event"
|
4402 |
msgstr "Další výskyt aktuální události"
|
4403 |
|
4404 |
+
#: app/features/mec/modules.php:307
|
4405 |
msgid "Next Occurrence of Other Events"
|
4406 |
msgstr "Další výskyt dalších událostí"
|
4407 |
|
4408 |
+
#: app/features/mec/modules.php:318 app/features/mec/single.php:42
|
4409 |
msgid "Default is M d Y"
|
4410 |
msgstr "Výchozí je M d Y"
|
4411 |
|
4412 |
+
#: app/features/mec/modules.php:334
|
4413 |
msgid "Enable BuddyPress Integration"
|
4414 |
msgstr "Povolit integraci BuddyPress"
|
4415 |
|
4416 |
+
#: app/features/mec/modules.php:341
|
4417 |
msgid "Show \"Attendees Module\" in event details page"
|
4418 |
msgstr "Zobrazit \"Účastnický modul\" na stránce s podrobnostmi o události"
|
4419 |
|
4420 |
+
#: app/features/mec/modules.php:345
|
4421 |
msgid "Attendees Limit"
|
4422 |
msgstr "Limit účastníků"
|
4423 |
|
4424 |
+
#: app/features/mec/modules.php:353
|
4425 |
msgid "Add booking activity to user profile"
|
4426 |
msgstr "Přidejte do uživatelského profilu rezervační aktivitu"
|
4427 |
|
4875 |
msgstr "Zašle správci informaci o přijetí nové rezervace."
|
4876 |
|
4877 |
#: app/features/mec/notifications.php:530 app/libraries/main.php:581
|
4878 |
+
#: app/libraries/notifications.php:607
|
4879 |
msgid "Booking Reminder"
|
4880 |
msgstr "Připomenutí rezervace"
|
4881 |
|
5130 |
msgstr "Můžete povolit nebo zakázat skripty schématu"
|
5131 |
|
5132 |
#: app/features/mec/settings.php:160 app/features/mec/settings.php:170
|
5133 |
+
#: app/libraries/main.php:5347
|
5134 |
msgid "Weekdays"
|
5135 |
msgstr "Pracovní dny"
|
5136 |
|
5722 |
"Pokud chcete použít nový editor bloků WordPress, měli byste ponechat toto "
|
5723 |
"políčko prázdné."
|
5724 |
|
5725 |
+
#: app/features/mec/single.php:117 app/features/mec/single.php:124
|
5726 |
msgid "Breadcrumbs"
|
5727 |
msgstr "Drobečková navigace"
|
5728 |
|
5729 |
+
#: app/features/mec/single.php:120
|
5730 |
msgid "Enable Breadcrumbs."
|
5731 |
msgstr "Povolit drobečkovou navigaci."
|
5732 |
|
5733 |
+
#: app/features/mec/single.php:125
|
5734 |
msgid "Check this option, for showing the breadcrumbs on single event page"
|
5735 |
msgstr ""
|
5736 |
"Zaškrtněte tuto možnost, chcete-li zobrazit drobečkovou navigaci na stránce "
|
5737 |
"jedné události"
|
5738 |
|
5739 |
+
#: app/features/mec/single.php:132 app/features/mec/single.php:139
|
5740 |
+
#, fuzzy
|
5741 |
+
#| msgid "Description"
|
5742 |
+
msgid "Organizer Description"
|
5743 |
+
msgstr "Popis"
|
5744 |
+
|
5745 |
+
#: app/features/mec/single.php:135
|
5746 |
+
msgid "Enable Description For Organizer."
|
5747 |
+
msgstr ""
|
5748 |
+
|
5749 |
+
#: app/features/mec/single.php:140
|
5750 |
+
msgid ""
|
5751 |
+
"If you want to turn on description for other organizer plase go to "
|
5752 |
+
"'Additional Organizers - After enabling and saving the settings, reloading "
|
5753 |
+
"the settings page.' tab"
|
5754 |
+
msgstr ""
|
5755 |
+
|
5756 |
+
#: app/features/mec/single.php:153
|
5757 |
msgid "Show countdown module on event page"
|
5758 |
msgstr "Zobrazit modul odpočítávání na stránce události"
|
5759 |
|
5760 |
+
#: app/features/mec/single.php:158
|
5761 |
msgid "Countdown Style"
|
5762 |
msgstr "Styl Odpočítávání"
|
5763 |
|
5764 |
+
#: app/features/mec/single.php:161
|
5765 |
msgid "Plain Style"
|
5766 |
msgstr "Prostý styl"
|
5767 |
|
5768 |
+
#: app/features/mec/single.php:162
|
5769 |
msgid "Flip Style"
|
5770 |
msgstr "Styl překlopení"
|
5771 |
|
5772 |
+
#: app/features/mec/single.php:170 app/features/mec/single.php:177
|
5773 |
msgid "Exceptional days (Exclude Dates)"
|
5774 |
msgstr "Výjimečné dny (kromě dat)"
|
5775 |
|
5776 |
+
#: app/features/mec/single.php:174
|
5777 |
msgid "Show exceptional days option on Add/Edit events page"
|
5778 |
msgstr "Zobrazit možnost výjimečných dnů na stránce Přidat / Upravit události"
|
5779 |
|
5780 |
+
#: app/features/mec/single.php:178
|
5781 |
msgid ""
|
5782 |
"Using this option you can exclude certain days from event occurrence dates."
|
5783 |
msgstr ""
|
5784 |
"Pomocí této možnosti můžete vyloučit určité dny z dat výskytu událostí."
|
5785 |
|
5786 |
+
#: app/features/mec/single.php:187 app/libraries/main.php:550
|
5787 |
msgid "Additional Organizers"
|
5788 |
msgstr "Další organizátoři"
|
5789 |
|
5790 |
+
#: app/features/mec/single.php:192
|
5791 |
msgid ""
|
5792 |
"Show additional organizers option on Add/Edit events page and single event "
|
5793 |
"page."
|
5795 |
"Zobrazit další možnost organizátorů na stránce Přidat / Upravit události a "
|
5796 |
"na stránce jedné události."
|
5797 |
|
5798 |
+
#: app/features/mec/single.php:201
|
5799 |
+
msgid "Enable Description For Other Organizers."
|
5800 |
+
msgstr ""
|
5801 |
+
|
5802 |
+
#: app/features/mec/single.php:209
|
5803 |
msgid "Additional locations"
|
5804 |
msgstr "Další místa"
|
5805 |
|
5806 |
+
#: app/features/mec/single.php:213
|
5807 |
msgid ""
|
5808 |
"Show additional locations option on Add/Edit events page and single event "
|
5809 |
"page."
|
5811 |
"Zobrazit další umístění na stránce Přidat / Upravit události a na stránce "
|
5812 |
"jediné události."
|
5813 |
|
5814 |
+
#: app/features/mec/single.php:219 app/libraries/main.php:552
|
5815 |
#: app/skins/single.php:163
|
5816 |
msgid "Related Events"
|
5817 |
msgstr "Související události"
|
5818 |
|
5819 |
+
#: app/features/mec/single.php:223
|
5820 |
msgid "Display related events based on taxonomy in single event page."
|
5821 |
msgstr ""
|
5822 |
"Zobrazte související události na základě taxonomie na stránce s jednou "
|
5823 |
"událostí."
|
5824 |
|
5825 |
+
#: app/features/mec/single.php:229
|
5826 |
msgid "Select Taxonomies:"
|
5827 |
msgstr "Vyberte taxonomie:"
|
5828 |
|
6389 |
msgid "eg. https://webnus.net"
|
6390 |
msgstr "např. https://webnus.net"
|
6391 |
|
6392 |
+
#: app/features/organizers.php:312 app/libraries/main.php:5371
|
6393 |
#: app/skins/single.php:862
|
6394 |
msgid "Other Organizers"
|
6395 |
msgstr "Další organizátoři"
|
6465 |
msgid "Please %s/%s in order to see your bookings / profile."
|
6466 |
msgstr "Prosím %s/%s za účelem zobrazení vašich rezervací / profilu."
|
6467 |
|
6468 |
+
#: app/features/profile/profile.php:18 app/libraries/main.php:2150
|
6469 |
msgid "Your booking already canceled!"
|
6470 |
msgstr "Vaše rezervace již byla zrušena!"
|
6471 |
|
6473 |
msgid "#"
|
6474 |
msgstr "#"
|
6475 |
|
6476 |
+
#: app/features/profile/profile.php:56 app/libraries/main.php:3169
|
6477 |
msgid "Status"
|
6478 |
msgstr "Stav"
|
6479 |
|
6480 |
+
#: app/features/profile/profile.php:59 app/libraries/main.php:2268
|
6481 |
msgid "Attendees"
|
6482 |
msgstr "Účastníci"
|
6483 |
|
6506 |
msgid "No bookings found!"
|
6507 |
msgstr "Nebyly nalezeny žádné rezervace!"
|
6508 |
|
6509 |
+
#: app/features/search.php:93 app/libraries/main.php:5337
|
6510 |
msgid "label"
|
6511 |
msgstr "štítek"
|
6512 |
|
6531 |
msgstr "Žádný výsledek vyhledávání."
|
6532 |
|
6533 |
#: app/features/search_bar/search_result.php:11
|
6534 |
+
#: app/libraries/notifications.php:951 app/libraries/render.php:488
|
6535 |
+
#: app/modules/local-time/details.php:48 app/modules/next-event/details.php:104
|
6536 |
#: app/skins/single.php:160 app/skins/single.php:753
|
6537 |
+
#: app/skins/single/default.php:108 app/skins/single/default.php:331
|
6538 |
+
#: app/skins/single/m1.php:43 app/skins/single/modern.php:198
|
6539 |
+
#, fuzzy
|
6540 |
+
#| msgid "Add Day"
|
6541 |
+
msgid "All Day"
|
6542 |
+
msgstr "Přidat den"
|
6543 |
|
6544 |
#: app/features/speakers.php:111 app/features/speakers.php:188
|
6545 |
#: app/features/speakers.php:270
|
6617 |
msgid "%s Price"
|
6618 |
msgstr "%s Cena"
|
6619 |
|
6620 |
+
#: app/libraries/book.php:588
|
6621 |
msgid "Discount"
|
6622 |
msgstr "Sleva"
|
6623 |
|
6624 |
+
#: app/libraries/book.php:678 app/modules/booking/default.php:303
|
6625 |
#: app/modules/booking/default.php:401
|
6626 |
msgid "Download Invoice"
|
6627 |
msgstr "Stáhnout fakturu"
|
6649 |
msgid "day"
|
6650 |
msgstr "den"
|
6651 |
|
6652 |
+
#: app/libraries/factory.php:363 app/modules/countdown/details.php:138
|
6653 |
#: app/skins/available_spot/tpl.php:165 app/skins/countdown/tpl.php:158
|
6654 |
#: app/skins/countdown/tpl.php:202 app/skins/countdown/tpl.php:251
|
6655 |
msgid "days"
|
6659 |
msgid "hour"
|
6660 |
msgstr "hodina"
|
6661 |
|
6662 |
+
#: app/libraries/factory.php:365 app/modules/countdown/details.php:145
|
6663 |
#: app/skins/available_spot/tpl.php:169 app/skins/countdown/tpl.php:164
|
6664 |
#: app/skins/countdown/tpl.php:208 app/skins/countdown/tpl.php:257
|
6665 |
msgid "hours"
|
6669 |
msgid "minute"
|
6670 |
msgstr "minuta"
|
6671 |
|
6672 |
+
#: app/libraries/factory.php:367 app/modules/countdown/details.php:152
|
6673 |
#: app/skins/available_spot/tpl.php:173 app/skins/countdown/tpl.php:170
|
6674 |
#: app/skins/countdown/tpl.php:214 app/skins/countdown/tpl.php:263
|
6675 |
msgid "minutes"
|
6679 |
msgid "second"
|
6680 |
msgstr "vteřina"
|
6681 |
|
6682 |
+
#: app/libraries/factory.php:369 app/modules/countdown/details.php:159
|
6683 |
#: app/skins/available_spot/tpl.php:177 app/skins/countdown/tpl.php:176
|
6684 |
#: app/skins/countdown/tpl.php:220 app/skins/countdown/tpl.php:269
|
6685 |
msgid "seconds"
|
6697 |
msgid "There is no excerpt because this is a protected post."
|
6698 |
msgstr "Neexistuje výňatek, protože se jedná o chráněný příspěvek."
|
6699 |
|
6700 |
+
#: app/libraries/main.php:331 app/libraries/main.php:1766
|
6701 |
+
#: app/libraries/main.php:1791
|
6702 |
msgid "Grid View"
|
6703 |
msgstr "Zobrazení mřížky"
|
6704 |
|
6705 |
+
#: app/libraries/main.php:332 app/libraries/main.php:1767
|
6706 |
+
#: app/libraries/main.php:1792
|
6707 |
msgid "Agenda View"
|
6708 |
msgstr "Zobrazení agendy"
|
6709 |
|
6710 |
+
#: app/libraries/main.php:333 app/libraries/main.php:1758
|
6711 |
+
#: app/libraries/main.php:1783
|
6712 |
msgid "Full Calendar"
|
6713 |
msgstr "Plný kalendář"
|
6714 |
|
6715 |
+
#: app/libraries/main.php:335 app/libraries/main.php:1760
|
6716 |
+
#: app/libraries/main.php:1785
|
6717 |
msgid "Calendar/Monthly View"
|
6718 |
msgstr "Kalendář / zobrazení měsíce"
|
6719 |
|
6720 |
+
#: app/libraries/main.php:338 app/libraries/main.php:1763
|
6721 |
+
#: app/libraries/main.php:1788
|
6722 |
msgid "Timetable View"
|
6723 |
msgstr "Zobrazení rozvrhu"
|
6724 |
|
6725 |
+
#: app/libraries/main.php:339 app/libraries/main.php:1764
|
6726 |
+
#: app/libraries/main.php:1789
|
6727 |
msgid "Masonry View"
|
6728 |
msgstr "Zobrazení zdi"
|
6729 |
|
6730 |
+
#: app/libraries/main.php:340 app/libraries/main.php:1768
|
6731 |
+
#: app/libraries/main.php:1793
|
6732 |
msgid "Map View"
|
6733 |
msgstr "Zobrazení mapy"
|
6734 |
|
6765 |
msgid "Tile View"
|
6766 |
msgstr "Zobrazení rozvrhu"
|
6767 |
|
6768 |
+
#: app/libraries/main.php:385 app/libraries/main.php:5349
|
6769 |
msgid "SU"
|
6770 |
msgstr "NE"
|
6771 |
|
6772 |
+
#: app/libraries/main.php:386 app/libraries/main.php:5350
|
6773 |
msgid "MO"
|
6774 |
msgstr "PO"
|
6775 |
|
6776 |
+
#: app/libraries/main.php:387 app/libraries/main.php:5351
|
6777 |
msgid "TU"
|
6778 |
msgstr "ÚT"
|
6779 |
|
6780 |
+
#: app/libraries/main.php:388 app/libraries/main.php:5352
|
6781 |
msgid "WE"
|
6782 |
msgstr "ST"
|
6783 |
|
6784 |
+
#: app/libraries/main.php:389 app/libraries/main.php:5353
|
6785 |
msgid "TH"
|
6786 |
msgstr "ČT"
|
6787 |
|
6788 |
+
#: app/libraries/main.php:390 app/libraries/main.php:5354
|
6789 |
msgid "FR"
|
6790 |
msgstr "PÁ"
|
6791 |
|
6792 |
+
#: app/libraries/main.php:391 app/libraries/main.php:5355
|
6793 |
msgid "SA"
|
6794 |
msgstr "SO"
|
6795 |
|
6856 |
"events. Users can now log in to purchase tickets."
|
6857 |
msgstr ""
|
6858 |
|
6859 |
+
#: app/libraries/main.php:1493
|
6860 |
msgid "Events at this location"
|
6861 |
msgstr "Události na tomto místě"
|
6862 |
|
6863 |
+
#: app/libraries/main.php:1493
|
6864 |
msgid "Event at this location"
|
6865 |
msgstr "Událost na tomto místě"
|
6866 |
|
6867 |
+
#: app/libraries/main.php:1536
|
6868 |
msgid "Facebook"
|
6869 |
msgstr "Facebook"
|
6870 |
|
6871 |
+
#: app/libraries/main.php:1537
|
6872 |
msgid "Twitter"
|
6873 |
msgstr "Twitter"
|
6874 |
|
6875 |
+
#: app/libraries/main.php:1538 app/libraries/main.php:1595
|
6876 |
msgid "Linkedin"
|
6877 |
msgstr "Linkedin"
|
6878 |
|
6879 |
+
#: app/libraries/main.php:1539 app/libraries/main.php:1631
|
6880 |
msgid "VK"
|
6881 |
msgstr "VK"
|
6882 |
|
6883 |
+
#: app/libraries/main.php:1540
|
6884 |
msgid "Tumblr"
|
6885 |
msgstr ""
|
6886 |
|
6887 |
+
#: app/libraries/main.php:1541
|
6888 |
msgid "Pinterest"
|
6889 |
msgstr ""
|
6890 |
|
6891 |
+
#: app/libraries/main.php:1542
|
6892 |
msgid "Flipboard"
|
6893 |
msgstr ""
|
6894 |
|
6895 |
+
#: app/libraries/main.php:1543
|
6896 |
#, fuzzy
|
6897 |
#| msgid "Tickets"
|
6898 |
msgid "GetPocket"
|
6899 |
msgstr "Vstupenky"
|
6900 |
|
6901 |
+
#: app/libraries/main.php:1544
|
6902 |
msgid "Reddit"
|
6903 |
msgstr ""
|
6904 |
|
6905 |
+
#: app/libraries/main.php:1545
|
6906 |
msgid "WhatsApp"
|
6907 |
msgstr ""
|
6908 |
|
6909 |
+
#: app/libraries/main.php:1546
|
6910 |
msgid "Telegram"
|
6911 |
msgstr ""
|
6912 |
|
6913 |
+
#: app/libraries/main.php:1565
|
6914 |
msgid "Share on Facebook"
|
6915 |
msgstr "Sdílet na Facebooku"
|
6916 |
|
6917 |
+
#: app/libraries/main.php:1580
|
6918 |
msgid "Tweet"
|
6919 |
msgstr "Tweet"
|
6920 |
|
6921 |
+
#: app/libraries/main.php:1646
|
6922 |
#, fuzzy
|
6923 |
#| msgid "Share on Facebook"
|
6924 |
msgid "Share on Tumblr"
|
6925 |
msgstr "Sdílet na Facebooku"
|
6926 |
|
6927 |
+
#: app/libraries/main.php:1662
|
6928 |
msgid "Share on Pinterest"
|
6929 |
msgstr ""
|
6930 |
|
6931 |
+
#: app/libraries/main.php:1678
|
6932 |
#, fuzzy
|
6933 |
#| msgid "Share on Facebook"
|
6934 |
msgid "Share on Flipboard"
|
6935 |
msgstr "Sdílet na Facebooku"
|
6936 |
|
6937 |
+
#: app/libraries/main.php:1696
|
6938 |
#, fuzzy
|
6939 |
#| msgid "Share on Facebook"
|
6940 |
msgid "Share on GetPocket"
|
6941 |
msgstr "Sdílet na Facebooku"
|
6942 |
|
6943 |
+
#: app/libraries/main.php:1712
|
6944 |
#, fuzzy
|
6945 |
#| msgid "Share on Facebook"
|
6946 |
msgid "Share on Reddit"
|
6947 |
msgstr "Sdílet na Facebooku"
|
6948 |
|
6949 |
+
#: app/libraries/main.php:1728
|
6950 |
msgid "Share on Telegram"
|
6951 |
msgstr ""
|
6952 |
|
6953 |
+
#: app/libraries/main.php:1746
|
6954 |
msgid "Share on WhatsApp"
|
6955 |
msgstr ""
|
6956 |
|
6957 |
+
#: app/libraries/main.php:1769
|
6958 |
msgid "Custom Shortcode"
|
6959 |
msgstr "Uživatelské zkrácené kódy"
|
6960 |
|
6961 |
+
#: app/libraries/main.php:2130
|
6962 |
msgid "Your booking already verified!"
|
6963 |
msgstr "Vaše rezervace již byla ověřena!"
|
6964 |
|
6965 |
+
#: app/libraries/main.php:2135
|
6966 |
msgid "Your booking successfully verified."
|
6967 |
msgstr "Vaše rezervace byla úspěšně ověřena."
|
6968 |
|
6969 |
+
#: app/libraries/main.php:2136
|
6970 |
msgid "Your booking cannot verify!"
|
6971 |
msgstr "Vaši rezervaci nelze ověřit!"
|
6972 |
|
6973 |
+
#: app/libraries/main.php:2155
|
6974 |
msgid "Your booking successfully canceled."
|
6975 |
msgstr "Vaše rezervace byla úspěšně zrušena."
|
6976 |
|
6977 |
+
#: app/libraries/main.php:2156
|
6978 |
msgid "Your booking cannot be canceled."
|
6979 |
msgstr "Vaši rezervaci nelze zrušit."
|
6980 |
|
6981 |
+
#: app/libraries/main.php:2160
|
6982 |
msgid "You canceled the payment successfully."
|
6983 |
msgstr "Platbu jste úspěšně zrušili."
|
6984 |
|
6985 |
+
#: app/libraries/main.php:2164
|
6986 |
msgid "You returned from payment gateway successfully."
|
6987 |
msgstr "Úspěšně jste se vrátili z platební brány."
|
6988 |
|
6989 |
+
#: app/libraries/main.php:2180
|
6990 |
msgid "Cannot find the invoice!"
|
6991 |
msgstr "Fakturu nelze najít!"
|
6992 |
|
6993 |
+
#: app/libraries/main.php:2180
|
6994 |
msgid "Invoice is invalid."
|
6995 |
msgstr "Faktura je neplatná."
|
6996 |
|
6997 |
+
#: app/libraries/main.php:2200
|
6998 |
msgid ""
|
6999 |
"Your booking still is not confirmed. You able download it after confirmation!"
|
7000 |
msgstr ""
|
7001 |
"Vaše rezervace stále není potvrzena. Můžete si ji stáhnout po potvrzení!"
|
7002 |
|
7003 |
+
#: app/libraries/main.php:2200
|
7004 |
msgid "Booking Not Confirmed."
|
7005 |
msgstr "Rezervace nebyla potvrzena."
|
7006 |
|
7007 |
+
#: app/libraries/main.php:2206
|
7008 |
msgid "Cannot find the booking!"
|
7009 |
msgstr "Nemohu najít rezervaci!"
|
7010 |
|
7011 |
+
#: app/libraries/main.php:2206
|
7012 |
msgid "Booking is invalid."
|
7013 |
msgstr "Rezervace není platná."
|
7014 |
|
7015 |
+
#: app/libraries/main.php:2238
|
7016 |
#, php-format
|
7017 |
msgid "%s Invoice"
|
7018 |
msgstr "%s Faktura"
|
7019 |
|
7020 |
+
#: app/libraries/main.php:2312
|
7021 |
msgid "Billing"
|
7022 |
msgstr "Fakturace"
|
7023 |
|
7024 |
+
#: app/libraries/main.php:2324
|
7025 |
+
#, fuzzy
|
7026 |
+
#| msgid "Coupons"
|
7027 |
+
msgid "Coupon Code"
|
7028 |
+
msgstr "Kupóny"
|
7029 |
+
|
7030 |
+
#: app/libraries/main.php:2329
|
7031 |
msgid "Total"
|
7032 |
msgstr "Celkem"
|
7033 |
|
7034 |
+
#: app/libraries/main.php:2336
|
7035 |
#, fuzzy
|
7036 |
#| msgid "Payment Gateways"
|
7037 |
msgid "Payment"
|
7038 |
msgstr "Platební brány"
|
7039 |
|
7040 |
+
#: app/libraries/main.php:2340
|
7041 |
#, fuzzy
|
7042 |
#| msgid "Payment Gateways"
|
7043 |
msgid "Gateway"
|
7044 |
msgstr "Platební brány"
|
7045 |
|
7046 |
+
#: app/libraries/main.php:2348
|
7047 |
#, fuzzy
|
7048 |
#| msgid "Payment Gateways"
|
7049 |
msgid "Payment Time"
|
7050 |
msgstr "Platební brány"
|
7051 |
|
7052 |
+
#: app/libraries/main.php:2409
|
7053 |
msgid "Request is not valid."
|
7054 |
msgstr "Požadavek není platný."
|
7055 |
|
7056 |
+
#: app/libraries/main.php:2409
|
7057 |
msgid "iCal export stopped!"
|
7058 |
msgstr "iCal export byl zastaven!"
|
7059 |
|
7060 |
+
#: app/libraries/main.php:2753 app/libraries/main.php:2783
|
7061 |
+
#: app/libraries/main.php:2812 app/libraries/main.php:2842
|
7062 |
+
#: app/libraries/main.php:2871 app/libraries/main.php:2900
|
7063 |
+
#: app/libraries/main.php:2929 app/libraries/main.php:2958
|
7064 |
+
#: app/libraries/main.php:2987 app/libraries/main.php:3011
|
7065 |
+
#: app/libraries/main.php:3055 app/libraries/main.php:3099
|
7066 |
+
#: app/libraries/main.php:3146 app/libraries/main.php:3193
|
7067 |
msgid "Sort"
|
7068 |
msgstr "Seřadit"
|
7069 |
|
7070 |
+
#: app/libraries/main.php:2759 app/libraries/main.php:2789
|
7071 |
+
#: app/libraries/main.php:2818 app/libraries/main.php:2848
|
7072 |
+
#: app/libraries/main.php:2877 app/libraries/main.php:2906
|
7073 |
+
#: app/libraries/main.php:2935 app/libraries/main.php:2964
|
7074 |
+
#: app/libraries/main.php:3017 app/libraries/main.php:3061
|
7075 |
+
#: app/libraries/main.php:3105 app/libraries/main.php:3152
|
7076 |
msgid "Required Field"
|
7077 |
msgstr "Požadovaná pole"
|
7078 |
|
7079 |
+
#: app/libraries/main.php:2765 app/libraries/main.php:2795
|
7080 |
+
#: app/libraries/main.php:2824 app/libraries/main.php:2854
|
7081 |
+
#: app/libraries/main.php:2883 app/libraries/main.php:2912
|
7082 |
+
#: app/libraries/main.php:2941 app/libraries/main.php:2970
|
7083 |
+
#: app/libraries/main.php:3023 app/libraries/main.php:3067
|
7084 |
+
#: app/libraries/main.php:3111 app/libraries/main.php:3158
|
7085 |
msgid "Insert a label for this field"
|
7086 |
msgstr "Vložte štítek pro toto pole"
|
7087 |
|
7088 |
+
#: app/libraries/main.php:2993
|
7089 |
msgid "HTML and shortcode are allowed."
|
7090 |
msgstr "HTML a zkrácené kódy jsou povoleny."
|
7091 |
|
7092 |
+
#: app/libraries/main.php:3036 app/libraries/main.php:3080
|
7093 |
+
#: app/libraries/main.php:3124
|
7094 |
msgid "Option"
|
7095 |
msgstr "Možnost"
|
7096 |
|
7097 |
+
#: app/libraries/main.php:3158
|
7098 |
#, php-format
|
7099 |
msgid "Instead of %s, the page title with a link will be show."
|
7100 |
msgstr "Místo%s se zobrazí název stránky s odkazem."
|
7101 |
|
7102 |
+
#: app/libraries/main.php:3160
|
7103 |
msgid "Agreement Page"
|
7104 |
msgstr "Stránka smlouvy"
|
7105 |
|
7106 |
+
#: app/libraries/main.php:3171
|
7107 |
msgid "Checked by default"
|
7108 |
msgstr "Ve výchozím nastavení zaškrtnuto"
|
7109 |
|
7110 |
+
#: app/libraries/main.php:3172
|
7111 |
msgid "Unchecked by default"
|
7112 |
msgstr "Ve výchozím nastavení není zaškrtnuto"
|
7113 |
|
7114 |
+
#: app/libraries/main.php:3195
|
7115 |
msgid "Insert a label for this option"
|
7116 |
msgstr "Vložte štítek pro tuto možnost"
|
7117 |
|
7118 |
+
#: app/libraries/main.php:3210
|
7119 |
msgid "Free"
|
7120 |
msgstr "Zdarma"
|
7121 |
|
7122 |
+
#: app/libraries/main.php:3816 app/libraries/main.php:5599
|
7123 |
msgid "M.E. Calender"
|
7124 |
msgstr "M.E. Kalendář"
|
7125 |
|
7126 |
+
#: app/libraries/main.php:3971
|
7127 |
#, php-format
|
7128 |
msgid "Copy of %s"
|
7129 |
msgstr "Kopie %s"
|
7130 |
|
7131 |
+
#: app/libraries/main.php:4712
|
7132 |
msgid "Booked an event."
|
7133 |
msgstr "Událost byla rezervována."
|
7134 |
|
7135 |
+
#: app/libraries/main.php:4753
|
7136 |
#, php-format
|
7137 |
msgid "%s booked %s event."
|
7138 |
msgstr "%s zarezervoval %s událost."
|
7139 |
|
7140 |
+
#: app/libraries/main.php:5332
|
7141 |
msgid "Taxonomies"
|
7142 |
msgstr "Taxonomie"
|
7143 |
|
7144 |
# Mrknout na kontext
|
7145 |
+
#: app/libraries/main.php:5334
|
7146 |
msgid "Category Plural Label"
|
7147 |
msgstr "Štítek množné kategorie"
|
7148 |
|
7149 |
# Mrknout na kontext
|
7150 |
+
#: app/libraries/main.php:5335
|
7151 |
msgid "Category Singular Label"
|
7152 |
msgstr "Štítek jednotné kategorie"
|
7153 |
|
7154 |
+
#: app/libraries/main.php:5336
|
7155 |
msgid "Label Plural Label"
|
7156 |
msgstr "Štítek množného štítku"
|
7157 |
|
7158 |
+
#: app/libraries/main.php:5337
|
7159 |
msgid "Label Singular Label"
|
7160 |
msgstr "Štítek jednotného štítku"
|
7161 |
|
7162 |
+
#: app/libraries/main.php:5338
|
7163 |
msgid "Location Plural Label"
|
7164 |
msgstr "Štítek množného umístění"
|
7165 |
|
7166 |
+
#: app/libraries/main.php:5339
|
7167 |
msgid "Location Singular Label"
|
7168 |
msgstr "Štítek jednotného umístění"
|
7169 |
|
7170 |
+
#: app/libraries/main.php:5340
|
7171 |
msgid "Organizer Plural Label"
|
7172 |
msgstr "Štítek množného organizátora"
|
7173 |
|
7174 |
+
#: app/libraries/main.php:5341
|
7175 |
msgid "Organizer Singular Label"
|
7176 |
msgstr "Štítek jednotného organizátora"
|
7177 |
|
7178 |
+
#: app/libraries/main.php:5342
|
7179 |
msgid "Speaker Plural Label"
|
7180 |
msgstr "Štítek množného řečníka"
|
7181 |
|
7182 |
+
#: app/libraries/main.php:5343
|
7183 |
msgid "Speaker Singular Label"
|
7184 |
msgstr "Štítek jednotného řečníka"
|
7185 |
|
7186 |
+
#: app/libraries/main.php:5349
|
7187 |
msgid "Sunday abbreviation"
|
7188 |
msgstr "Neděle zkratka"
|
7189 |
|
7190 |
+
#: app/libraries/main.php:5350
|
7191 |
msgid "Monday abbreviation"
|
7192 |
msgstr "Pondělí zkratka"
|
7193 |
|
7194 |
+
#: app/libraries/main.php:5351
|
7195 |
msgid "Tuesday abbreviation"
|
7196 |
msgstr "Úterý zkratka"
|
7197 |
|
7198 |
+
#: app/libraries/main.php:5352
|
7199 |
msgid "Wednesday abbreviation"
|
7200 |
msgstr "Středa zkratka"
|
7201 |
|
7202 |
+
#: app/libraries/main.php:5353
|
7203 |
msgid "Thursday abbreviation"
|
7204 |
msgstr "Čtvrtek zkratka"
|
7205 |
|
7206 |
+
#: app/libraries/main.php:5354
|
7207 |
msgid "Friday abbreviation"
|
7208 |
msgstr "Pátek zkratka"
|
7209 |
|
7210 |
+
#: app/libraries/main.php:5355
|
7211 |
msgid "Saturday abbreviation"
|
7212 |
msgstr "Sobota zkratka"
|
7213 |
|
7214 |
+
#: app/libraries/main.php:5359
|
7215 |
msgid "Others"
|
7216 |
msgstr "Další"
|
7217 |
|
7218 |
+
#: app/libraries/main.php:5361
|
7219 |
msgid "Booking Success Message"
|
7220 |
msgstr "Zpráva o úspěchu rezervace"
|
7221 |
|
7222 |
+
#: app/libraries/main.php:5361
|
7223 |
msgid ""
|
7224 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
7225 |
"needed, please check your email."
|
7227 |
"Děkujeme za vaši rezervaci. Vaše vstupenky jsou rezervovány, může být nutné "
|
7228 |
"ověřit rezervaci. Zkontrolujte prosím svůj e-mail."
|
7229 |
|
7230 |
+
#: app/libraries/main.php:5362 app/widgets/single.php:131
|
7231 |
msgid "Register Button"
|
7232 |
msgstr "Registrační tlačítko"
|
7233 |
|
7234 |
+
#: app/libraries/main.php:5362 app/skins/available_spot/tpl.php:223
|
7235 |
#: app/skins/carousel/render.php:160 app/skins/carousel/render.php:197
|
7236 |
#: app/skins/grid/render.php:124 app/skins/grid/render.php:171
|
7237 |
#: app/skins/grid/render.php:215 app/skins/grid/render.php:244
|
7238 |
#: app/skins/list/render.php:109 app/skins/list/render.php:195
|
7239 |
#: app/skins/masonry/render.php:188 app/skins/single.php:774
|
7240 |
+
#: app/skins/single.php:777 app/skins/single/default.php:260
|
7241 |
+
#: app/skins/single/default.php:262 app/skins/single/default.php:483
|
7242 |
+
#: app/skins/single/default.php:485 app/skins/single/m1.php:140
|
7243 |
+
#: app/skins/single/m1.php:142 app/skins/single/m2.php:66
|
7244 |
+
#: app/skins/single/m2.php:68 app/skins/single/modern.php:76
|
7245 |
+
#: app/skins/single/modern.php:78 app/skins/slider/render.php:114
|
7246 |
#: app/skins/slider/render.php:163 app/skins/slider/render.php:211
|
7247 |
#: app/skins/slider/render.php:260 app/skins/slider/render.php:320
|
7248 |
msgid "REGISTER"
|
7249 |
msgstr "REGISTROVAT"
|
7250 |
|
7251 |
+
#: app/libraries/main.php:5363
|
7252 |
msgid "View Detail Button"
|
7253 |
msgstr "Tlačítko Zobrazit detail"
|
7254 |
|
7255 |
+
#: app/libraries/main.php:5363 app/skins/carousel/render.php:160
|
7256 |
#: app/skins/carousel/render.php:197 app/skins/grid/render.php:124
|
7257 |
#: app/skins/grid/render.php:171 app/skins/grid/render.php:215
|
7258 |
#: app/skins/grid/render.php:244 app/skins/list/render.php:109
|
7263 |
msgid "View Detail"
|
7264 |
msgstr "Zobrazit detail"
|
7265 |
|
7266 |
+
#: app/libraries/main.php:5364
|
7267 |
msgid "Event Detail Button"
|
7268 |
msgstr "Tlačítko Detail události"
|
7269 |
|
7270 |
+
#: app/libraries/main.php:5364 app/skins/countdown/tpl.php:244
|
7271 |
msgid "Event Detail"
|
7272 |
msgstr "Zobrazit událost"
|
7273 |
|
7274 |
+
#: app/libraries/main.php:5366
|
7275 |
msgid "More Info Link"
|
7276 |
msgstr "Odkaz na více informací"
|
7277 |
|
7278 |
+
#: app/libraries/main.php:5369
|
7279 |
msgid "Ticket (Singular)"
|
7280 |
msgstr "Vstupenka (Jednotné)"
|
7281 |
|
7282 |
+
#: app/libraries/main.php:5370
|
7283 |
msgid "Tickets (Plural)"
|
7284 |
msgstr "Vstupenky (Množné)"
|
7285 |
|
7286 |
+
#: app/libraries/main.php:5456
|
7287 |
msgid "EventON"
|
7288 |
msgstr "EventON"
|
7289 |
|
7290 |
+
#: app/libraries/main.php:5457
|
7291 |
msgid "The Events Calendar"
|
7292 |
msgstr "The Events Calendar"
|
7293 |
|
7294 |
+
#: app/libraries/main.php:5458
|
7295 |
msgid "Events Schedule WP Plugin"
|
7296 |
msgstr "Events Schedule WP Plugin"
|
7297 |
|
7298 |
+
#: app/libraries/main.php:5459
|
7299 |
msgid "Calendarize It"
|
7300 |
msgstr "Calendarize It"
|
7301 |
|
7302 |
+
#: app/libraries/main.php:5460
|
7303 |
#, fuzzy
|
7304 |
#| msgid "Event Speakers"
|
7305 |
msgid "Event Espresso"
|
7306 |
msgstr "Řečník události"
|
7307 |
|
7308 |
+
#: app/libraries/main.php:5461
|
7309 |
#, fuzzy
|
7310 |
#| msgid "Event Repeating (Recurring events)"
|
7311 |
msgid "Events Manager (Recurring)"
|
7312 |
msgstr "Opakování události (opakující se události)"
|
7313 |
|
7314 |
+
#: app/libraries/main.php:5462
|
7315 |
#, fuzzy
|
7316 |
#| msgid "Modern Events Calendar (Lite)"
|
7317 |
msgid "Events Manager (Single)"
|
7318 |
msgstr "Modern Events Calendar (Lite)"
|
7319 |
|
7320 |
+
#: app/libraries/main.php:5536 app/libraries/main.php:5556
|
7321 |
msgid "Confirmed"
|
7322 |
msgstr "Potvrzeno"
|
7323 |
|
7324 |
+
#: app/libraries/main.php:5537 app/libraries/main.php:5564
|
7325 |
msgid "Rejected"
|
7326 |
msgstr "Odmítnuto"
|
7327 |
|
7328 |
+
#: app/libraries/main.php:5538 app/libraries/main.php:5560
|
7329 |
msgid "Pending"
|
7330 |
msgstr "Nevyřízený"
|
7331 |
|
7332 |
+
#: app/libraries/main.php:5586
|
7333 |
msgid "Waiting"
|
7334 |
msgstr "Čekající"
|
7335 |
|
7336 |
+
#: app/libraries/main.php:5791 app/libraries/render.php:80
|
7337 |
#: app/libraries/render.php:418
|
7338 |
msgid "Skin controller does not exist."
|
7339 |
msgstr "Ovladač vzhledu neexistuje."
|
7340 |
|
7341 |
+
#: app/libraries/main.php:5905
|
7342 |
msgid "Sold Out"
|
7343 |
msgstr "Vyprodáno"
|
7344 |
|
7345 |
+
#: app/libraries/main.php:5913
|
7346 |
#, fuzzy
|
7347 |
#| msgid "Ticket"
|
7348 |
msgid "Last Few Tickets"
|
7356 |
msgid "Your booking is received."
|
7357 |
msgstr "Vaše rezervace je přijata."
|
7358 |
|
7359 |
+
#: app/libraries/notifications.php:272
|
7360 |
msgid "Your booking is confirmed."
|
7361 |
msgstr "Vaše rezervace je potvrzena."
|
7362 |
|
7363 |
+
#: app/libraries/notifications.php:439
|
7364 |
msgid "booking canceled."
|
7365 |
msgstr "rezervace zrušena."
|
7366 |
|
7367 |
+
#: app/libraries/notifications.php:514
|
7368 |
msgid "A new booking is received."
|
7369 |
msgstr "Je přijata nová rezervace."
|
7370 |
|
7371 |
+
#: app/libraries/notifications.php:738
|
7372 |
msgid "A new event is added."
|
7373 |
msgstr "Je přidána se nová událost."
|
7374 |
|
7375 |
+
#: app/libraries/notifications.php:807
|
7376 |
msgid "Your event is published."
|
7377 |
msgstr "Vaše událost je zveřejněna."
|
7378 |
|
7379 |
+
#: app/libraries/notifications.php:1043 app/libraries/notifications.php:1054
|
7380 |
+
#: app/libraries/notifications.php:1056
|
7381 |
msgid "to"
|
7382 |
msgstr "do"
|
7383 |
|
7384 |
+
#: app/libraries/notifications.php:1071 app/modules/export/details.php:46
|
7385 |
msgid "+ Add to Google Calendar"
|
7386 |
msgstr "+ Přidat do Google kalendáře"
|
7387 |
|
7388 |
+
#: app/libraries/notifications.php:1072 app/modules/export/details.php:47
|
7389 |
msgid "+ iCal export"
|
7390 |
msgstr "+ iCal export"
|
7391 |
|
7392 |
+
#: app/libraries/notifications.php:1135
|
7393 |
msgid "Yes"
|
7394 |
msgstr "Ano"
|
7395 |
|
7396 |
+
#: app/libraries/notifications.php:1135
|
7397 |
msgid "No"
|
7398 |
msgstr "Ne"
|
7399 |
|
7400 |
+
#: app/libraries/skins.php:1015
|
7401 |
#, fuzzy
|
7402 |
#| msgid "Select All"
|
7403 |
msgid "Select"
|
7429 |
msgid "Apply Coupon"
|
7430 |
msgstr "Aplikovat kupon"
|
7431 |
|
7432 |
+
#: app/modules/booking/steps/checkout.php:69
|
7433 |
#: app/modules/booking/steps/form.php:180
|
7434 |
msgid "Back"
|
7435 |
msgstr ""
|
7436 |
|
7437 |
+
#: app/modules/booking/steps/checkout.php:77
|
7438 |
msgid "Free Booking"
|
7439 |
msgstr "Rezervace zdarma"
|
7440 |
|
7472 |
msgstr ""
|
7473 |
"Vstupenka %s je vyprodána. Můžete vyzkoušet jinou vstupenku nebo jiné datum."
|
7474 |
|
7475 |
+
#: app/modules/countdown/details.php:53
|
7476 |
msgid "The event is finished."
|
7477 |
msgstr "Událost je ukončena."
|
7478 |
|
7479 |
+
#: app/modules/countdown/details.php:58
|
7480 |
msgid "The event is ongoing."
|
7481 |
msgstr "Událost právě probíhá."
|
7482 |
|
7483 |
+
#: app/modules/googlemap/details.php:125
|
7484 |
msgid "Address from ..."
|
7485 |
msgstr "Adresa od ..."
|
7486 |
|
7487 |
+
#: app/modules/googlemap/details.php:129
|
7488 |
msgid "Get Directions"
|
7489 |
msgstr "Získat směr"
|
7490 |
|
7492 |
msgid "Share this event"
|
7493 |
msgstr "Sdílet tuto událost"
|
7494 |
|
7495 |
+
#: app/modules/local-time/details.php:45
|
7496 |
#, php-format
|
7497 |
msgid "Timezone: %s"
|
7498 |
msgstr "Časové pásmo: %s"
|
7499 |
|
7500 |
+
#: app/modules/local-time/details.php:46
|
7501 |
#, php-format
|
7502 |
msgid "Date: %s"
|
7503 |
msgstr "Datum: %s"
|
7504 |
|
7505 |
+
#: app/modules/local-time/details.php:48
|
7506 |
#, php-format
|
7507 |
msgid "Time: %s"
|
7508 |
msgstr "Čas: %s"
|
7516 |
msgstr "Přejít na stránku výskytu"
|
7517 |
|
7518 |
#: app/modules/next-event/details.php:98 app/skins/single.php:747
|
7519 |
+
#: app/skins/single/default.php:102 app/skins/single/default.php:325
|
7520 |
+
#: app/skins/single/m1.php:37 app/skins/single/modern.php:192
|
7521 |
msgid "Time"
|
7522 |
msgstr "Čas"
|
7523 |
|
7642 |
msgstr "Domů"
|
7643 |
|
7644 |
#: app/skins/single.php:544 app/skins/single/default.php:51
|
7645 |
+
#: app/skins/single/m1.php:261 app/skins/single/m2.php:182
|
7646 |
+
#: app/skins/single/modern.php:270
|
7647 |
msgid "Sold out!"
|
7648 |
msgstr "Vyprodáno!"
|
7649 |
|
7650 |
#: app/skins/single.php:822 app/skins/single.php:877
|
7651 |
+
#: app/skins/single/default.php:227 app/skins/single/default.php:450
|
7652 |
#: app/skins/single/m1.php:109 app/skins/single/m2.php:35
|
7653 |
#: app/skins/single/modern.php:44
|
7654 |
msgid "Phone"
|
7655 |
msgstr "Telefon"
|
7656 |
|
7657 |
#: app/skins/single.php:836 app/skins/single.php:891
|
7658 |
+
#: app/skins/single/default.php:241 app/skins/single/default.php:464
|
7659 |
#: app/skins/single/m1.php:123 app/skins/single/m2.php:49
|
7660 |
#: app/skins/single/modern.php:58
|
7661 |
msgid "Website"
|
7662 |
msgstr "Webová stránka"
|
7663 |
|
7664 |
+
#: app/skins/single.php:967
|
7665 |
msgid "Speakers:"
|
7666 |
msgstr "Řečník:"
|
7667 |
|
7668 |
+
#: app/skins/single/default.php:69 app/skins/single/m1.php:278
|
7669 |
+
#: app/skins/single/m2.php:199 app/skins/single/modern.php:288
|
7670 |
msgid "Tags: "
|
7671 |
msgstr "Značky: "
|
7672 |
|
8086 |
#~ msgid "User get connected sucessfully!"
|
8087 |
#~ msgstr "Události byly úspěšně importovány!"
|
8088 |
|
8089 |
+
#, fuzzy
|
8090 |
+
#~| msgid "Confirmation"
|
8091 |
+
#~ msgid "Disable Auto Confirmation"
|
8092 |
+
#~ msgstr "Potvrzení"
|
8093 |
+
|
8094 |
#, fuzzy
|
8095 |
#~| msgid "Modern"
|
8096 |
#~ msgid "Mode"
|
8136 |
#~ msgid "Organizer Payment Credentials"
|
8137 |
#~ msgstr "Platba organizátora"
|
8138 |
|
8139 |
+
#~ msgid "All of the day"
|
8140 |
+
#~ msgstr "Celý den"
|
8141 |
+
|
8142 |
#, fuzzy
|
8143 |
#~| msgid "Enable booking reminder notification"
|
8144 |
#~ msgid "Booking reminder notification is not enabled!"
|
Binary file
|
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: ME Calender\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2020-02-
|
6 |
-
"PO-Revision-Date: 2020-02-
|
7 |
"Last-Translator: Jogon <koenig@kafinanz.de>\n"
|
8 |
"Language-Team: German\n"
|
9 |
"Language: de_DE\n"
|
@@ -79,8 +79,8 @@ msgstr "Farbe der Veranstaltung"
|
|
79 |
msgid "Settings"
|
80 |
msgstr "Einstellungen"
|
81 |
|
82 |
-
#: app/features/contextual.php:62 app/features/events.php:
|
83 |
-
#: app/features/mec/booking.php:
|
84 |
#: app/libraries/main.php:560
|
85 |
msgid "Booking Form"
|
86 |
msgstr "Buchungsformular"
|
@@ -99,7 +99,7 @@ msgstr ""
|
|
99 |
"<iframe width=\"600\" height=\"300\" src=\"https://www.youtube.com/embed/"
|
100 |
"YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></iframe>"
|
101 |
|
102 |
-
#: app/features/contextual.php:70 app/features/mec/booking.php:
|
103 |
#: app/features/mec/support.php:36 app/libraries/main.php:561
|
104 |
msgid "Payment Gateways"
|
105 |
msgstr "Zahlungs-Gateways"
|
@@ -223,12 +223,12 @@ msgstr "Google Maps Einstellungen"
|
|
223 |
msgid "Google Recaptcha Options"
|
224 |
msgstr "Google Recaptcha Einstellungen"
|
225 |
|
226 |
-
#: app/features/contextual.php:258 app/features/mec/single.php:
|
227 |
#: app/libraries/main.php:548
|
228 |
msgid "Countdown Options"
|
229 |
msgstr "Countdown Einstellungsoptionen"
|
230 |
|
231 |
-
#: app/features/contextual.php:268 app/features/mec/modules.php:
|
232 |
#: app/libraries/main.php:571
|
233 |
msgid "Social Networks"
|
234 |
msgstr "Soziale Netzwerke"
|
@@ -254,12 +254,12 @@ msgstr "Herausgenommene Tage "
|
|
254 |
msgid "Booking"
|
255 |
msgstr "Buchung / Reservierung"
|
256 |
|
257 |
-
#: app/features/contextual.php:318 app/features/mec/booking.php:
|
258 |
#: app/libraries/main.php:557
|
259 |
msgid "Coupons"
|
260 |
msgstr "Gutscheine"
|
261 |
|
262 |
-
#: app/features/contextual.php:326 app/features/mec/modules.php:
|
263 |
#: app/libraries/main.php:573
|
264 |
msgid "BuddyPress Integration"
|
265 |
msgstr "Buddy Press Integration"
|
@@ -281,9 +281,9 @@ msgid "Events"
|
|
281 |
msgstr "Veranstaltungen"
|
282 |
|
283 |
#: app/features/events.php:158 app/features/fes.php:223
|
284 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
285 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
286 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
287 |
#: app/features/profile/profile.php:50 app/skins/daily_view/tpl.php:80
|
288 |
#: app/skins/monthly_view/tpl.php:71 app/skins/tile/tpl.php:70
|
289 |
#: app/skins/yearly_view/tpl.php:69
|
@@ -298,8 +298,9 @@ msgstr "Veranstaltung hinzufügen"
|
|
298 |
msgid "Add New Event"
|
299 |
msgstr "Neue Veranstaltung hinzufügen"
|
300 |
|
301 |
-
#: app/features/events.php:161 app/features/ix.php:
|
302 |
-
#: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:
|
|
|
303 |
msgid "No events found!"
|
304 |
msgstr "Keine Veranstaltungen gefunden!"
|
305 |
|
@@ -319,8 +320,8 @@ msgstr "Veranstaltung ansehen"
|
|
319 |
msgid "No events found in Trash!"
|
320 |
msgstr "Keine Veranstaltungen im Papierkorb gefunden!"
|
321 |
|
322 |
-
#: app/features/events.php:182 app/features/events.php:
|
323 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
324 |
#: app/features/mec/meta_boxes/search_form.php:31
|
325 |
#: app/features/mec/meta_boxes/search_form.php:93
|
326 |
#: app/features/mec/meta_boxes/search_form.php:155
|
@@ -332,18 +333,18 @@ msgstr "Keine Veranstaltungen im Papierkorb gefunden!"
|
|
332 |
#: app/features/mec/meta_boxes/search_form.php:514
|
333 |
#: app/features/mec/meta_boxes/search_form.php:575
|
334 |
#: app/features/mec/meta_boxes/search_form.php:672
|
335 |
-
#: app/features/mec/settings.php:808 app/features/mec/single.php:
|
336 |
-
#: app/features/search.php:68 app/libraries/main.php:
|
337 |
-
#: app/libraries/skins.php:
|
338 |
-
#: app/skins/single/default.php:192 app/skins/single/default.php:
|
339 |
-
#: app/skins/single/m1.php:
|
340 |
-
#: app/skins/single/modern.php:
|
341 |
msgid "Category"
|
342 |
msgstr "Kategorie"
|
343 |
|
344 |
-
#: app/features/events.php:183 app/features/events.php:
|
345 |
#: app/features/fes/form.php:757 app/features/mec.php:403
|
346 |
-
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:
|
347 |
msgid "Categories"
|
348 |
msgstr "Kategorien"
|
349 |
|
@@ -431,8 +432,8 @@ msgstr "Datum und Uhrzeit"
|
|
431 |
msgid "Event Repeating"
|
432 |
msgstr "Wiederholende Veranstaltung"
|
433 |
|
434 |
-
#: app/features/events.php:333 app/features/events.php:
|
435 |
-
#: app/features/mec/settings.php:718 app/skins/single.php:
|
436 |
msgid "Hourly Schedule"
|
437 |
msgstr "Stundenplan"
|
438 |
|
@@ -448,10 +449,10 @@ msgstr "Ort"
|
|
448 |
msgid "Links"
|
449 |
msgstr "Link"
|
450 |
|
451 |
-
#: app/features/events.php:336 app/features/events.php:
|
452 |
-
#: app/features/events.php:
|
453 |
-
#: app/features/ix.php:
|
454 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
455 |
#: app/features/mec/meta_boxes/search_form.php:45
|
456 |
#: app/features/mec/meta_boxes/search_form.php:107
|
457 |
#: app/features/mec/meta_boxes/search_form.php:169
|
@@ -463,67 +464,67 @@ msgstr "Link"
|
|
463 |
#: app/features/mec/meta_boxes/search_form.php:528
|
464 |
#: app/features/mec/meta_boxes/search_form.php:589
|
465 |
#: app/features/mec/meta_boxes/search_form.php:686
|
466 |
-
#: app/features/mec/settings.php:820 app/features/mec/single.php:
|
467 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
468 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
469 |
#: app/features/organizers.php:271 app/features/search.php:78
|
470 |
-
#: app/libraries/main.php:
|
471 |
#: app/skins/single.php:812 app/skins/single/default.php:217
|
472 |
-
#: app/skins/single/default.php:
|
473 |
#: app/skins/single/m2.php:25 app/skins/single/modern.php:34
|
474 |
msgid "Organizer"
|
475 |
msgstr "Veranstalter"
|
476 |
|
477 |
-
#: app/features/events.php:337 app/features/events.php:
|
478 |
-
#: app/features/fes/form.php:730 app/libraries/main.php:
|
479 |
#: app/skins/single.php:589 app/skins/single/default.php:126
|
480 |
-
#: app/skins/single/default.php:
|
481 |
-
#: app/skins/single/modern.php:
|
482 |
msgid "Cost"
|
483 |
msgstr " Preis"
|
484 |
|
485 |
-
#: app/features/events.php:
|
486 |
msgid "Note for reviewer"
|
487 |
msgstr "Zusätzliche Anmerkungen zum Event "
|
488 |
|
489 |
-
#: app/features/events.php:
|
490 |
msgid "Guest Data"
|
491 |
msgstr "Gäste Daten"
|
492 |
|
493 |
-
#: app/features/events.php:
|
494 |
-
#: app/features/events.php:
|
495 |
#: app/features/fes/form.php:689 app/features/labels.php:178
|
496 |
#: app/features/mec/booking.php:45 app/features/organizers.php:279
|
497 |
-
#: app/features/profile/profile.php:180 app/libraries/notifications.php:
|
498 |
#: app/modules/booking/steps/form.php:37
|
499 |
msgid "Name"
|
500 |
msgstr "Name"
|
501 |
|
502 |
-
#: app/features/events.php:
|
503 |
-
#: app/features/events.php:
|
504 |
#: app/features/fes.php:223 app/features/fes/form.php:685
|
505 |
-
#: app/features/mec/booking.php:57 app/features/mec/booking.php:
|
506 |
#: app/features/organizers.php:111 app/features/organizers.php:152
|
507 |
#: app/features/profile/profile.php:183 app/features/speakers.php:127
|
508 |
-
#: app/features/speakers.php:196 app/libraries/main.php:
|
509 |
-
#: app/libraries/main.php:
|
510 |
-
#: app/libraries/notifications.php:
|
511 |
#: app/modules/booking/steps/form.php:83 app/skins/single.php:829
|
512 |
#: app/skins/single.php:884 app/skins/single/default.php:234
|
513 |
-
#: app/skins/single/default.php:
|
514 |
#: app/skins/single/m2.php:42 app/skins/single/modern.php:51
|
515 |
msgid "Email"
|
516 |
msgstr "Email"
|
517 |
|
518 |
-
#: app/features/events.php:
|
519 |
msgid "Date and Time"
|
520 |
msgstr "Datum und Uhrzeit"
|
521 |
|
522 |
-
#: app/features/events.php:
|
523 |
-
#: app/features/events.php:
|
524 |
-
#: app/features/events.php:
|
525 |
-
#: app/features/fes/form.php:251 app/features/ix.php:
|
526 |
-
#: app/features/ix.php:
|
527 |
#: app/features/mec/dashboard.php:401
|
528 |
#: app/features/mec/meta_boxes/display_options.php:49
|
529 |
#: app/features/mec/meta_boxes/display_options.php:229
|
@@ -532,58 +533,58 @@ msgstr "Datum und Uhrzeit"
|
|
532 |
#: app/features/mec/meta_boxes/display_options.php:598
|
533 |
#: app/features/mec/meta_boxes/display_options.php:652
|
534 |
#: app/features/mec/meta_boxes/display_options.php:699
|
535 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
536 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
537 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
538 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
539 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
540 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
541 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
542 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
543 |
msgid "Start Date"
|
544 |
msgstr "Start Datum"
|
545 |
|
546 |
-
#: app/features/events.php:
|
547 |
-
#: app/features/events.php:
|
548 |
-
#: app/features/events.php:
|
549 |
#: app/features/fes/form.php:279 app/features/fes/form.php:319
|
550 |
msgid "AM"
|
551 |
msgstr "AM"
|
552 |
|
553 |
-
#: app/features/events.php:
|
554 |
-
#: app/features/events.php:
|
555 |
-
#: app/features/events.php:
|
556 |
#: app/features/fes/form.php:280 app/features/fes/form.php:320
|
557 |
msgid "PM"
|
558 |
msgstr "PM"
|
559 |
|
560 |
-
#: app/features/events.php:
|
561 |
-
#: app/features/events.php:
|
562 |
-
#: app/features/events.php:
|
563 |
-
#: app/features/fes/form.php:291 app/features/ix.php:
|
564 |
-
#: app/features/ix.php:
|
565 |
#: app/features/mec/dashboard.php:402
|
566 |
msgid "End Date"
|
567 |
msgstr "Ende Datum"
|
568 |
|
569 |
-
#: app/features/events.php:
|
570 |
msgid "All Day Event"
|
571 |
msgstr "Ganztägige Veranstaltung"
|
572 |
|
573 |
-
#: app/features/events.php:
|
574 |
msgid "Hide Event Time"
|
575 |
msgstr "Event / Veranstaltungszeit verbergen"
|
576 |
|
577 |
-
#: app/features/events.php:
|
578 |
msgid "Hide Event End Time"
|
579 |
msgstr "Ende-Zeit der Veranstaltung verbergen"
|
580 |
|
581 |
-
#: app/features/events.php:
|
582 |
#: app/features/fes/form.php:336
|
583 |
msgid "Time Comment"
|
584 |
msgstr "z.B. MEZ "
|
585 |
|
586 |
-
#: app/features/events.php:
|
587 |
#, fuzzy
|
588 |
#| msgid ""
|
589 |
#| "It shows next to event time on calendar. You can insert Timezone etc. in "
|
@@ -595,20 +596,20 @@ msgstr ""
|
|
595 |
"Neben der Zeit im Kalender wird diese Angabe angezeigt. In diesem Feld "
|
596 |
"können Sie z.B. eine Zeitzone wie z.B. \"MEZ\" usw. einfügen. "
|
597 |
|
598 |
-
#: app/features/events.php:
|
599 |
-
#: app/features/events.php:
|
600 |
-
#: app/features/events.php:
|
601 |
-
#: app/features/events.php:
|
602 |
-
#: app/features/events.php:
|
603 |
-
#: app/features/events.php:
|
604 |
-
#: app/features/events.php:
|
605 |
-
#: app/features/events.php:
|
606 |
-
#: app/features/fes/form.php:641 app/features/locations.php:
|
607 |
#: app/features/mec/booking.php:108 app/features/mec/booking.php:158
|
608 |
#: app/features/mec/booking.php:171 app/features/mec/booking.php:187
|
609 |
-
#: app/features/mec/booking.php:
|
610 |
-
#: app/features/mec/booking.php:
|
611 |
-
#: app/features/mec/booking.php:
|
612 |
#: app/features/mec/dashboard.php:71
|
613 |
#: app/features/mec/meta_boxes/display_options.php:80
|
614 |
#: app/features/mec/meta_boxes/display_options.php:93
|
@@ -624,27 +625,27 @@ msgstr ""
|
|
624 |
#: app/features/mec/meta_boxes/display_options.php:332
|
625 |
#: app/features/mec/meta_boxes/display_options.php:439
|
626 |
#: app/features/mec/meta_boxes/display_options.php:615
|
627 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
628 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
629 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
630 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
631 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
632 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
633 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
634 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
635 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
636 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
637 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
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/modules.php:53 app/features/mec/modules.php:86
|
646 |
#: app/features/mec/modules.php:103 app/features/mec/modules.php:138
|
647 |
-
#: app/features/mec/modules.php:154 app/features/mec/modules.php:
|
648 |
#: app/features/mec/notifications.php:88 app/features/mec/notifications.php:185
|
649 |
#: app/features/mec/notifications.php:277
|
650 |
#: app/features/mec/notifications.php:380
|
@@ -665,179 +666,179 @@ msgstr ""
|
|
665 |
#: app/features/mec/settings.php:899 app/features/mec/single.php:42
|
666 |
#: app/features/mec/single.php:58 app/features/mec/single.php:77
|
667 |
#: app/features/mec/single.php:94 app/features/mec/single.php:110
|
668 |
-
#: app/features/mec/single.php:
|
669 |
#: app/features/mec/styling.php:203 app/features/mec/styling.php:220
|
670 |
#: app/features/mec/styling.php:233 app/features/organizers.php:272
|
671 |
#: app/skins/single.php:674 app/skins/single/default.php:141
|
672 |
-
#: app/skins/single/default.php:
|
673 |
-
#: app/skins/single/m2.php:
|
674 |
msgid "Read More"
|
675 |
msgstr "Mehr lesen"
|
676 |
|
677 |
-
#: app/features/events.php:
|
678 |
#, fuzzy
|
679 |
#| msgid "Repeat"
|
680 |
msgid "Repeating"
|
681 |
msgstr "Wiederholen"
|
682 |
|
683 |
-
#: app/features/events.php:
|
684 |
#, fuzzy
|
685 |
#| msgid "Event Repeating"
|
686 |
msgid "Event Repeating (Recurring events)"
|
687 |
msgstr "Wiederholende Veranstaltung"
|
688 |
|
689 |
-
#: app/features/events.php:
|
690 |
msgid "Repeats"
|
691 |
msgstr "Wiederholend"
|
692 |
|
693 |
-
#: app/features/events.php:
|
694 |
#: app/features/mec/dashboard.php:404
|
695 |
#: app/skins/default_full_calendar/tpl.php:69
|
696 |
#: app/skins/full_calendar/tpl.php:110
|
697 |
msgid "Daily"
|
698 |
msgstr "Täglich"
|
699 |
|
700 |
-
#: app/features/events.php:
|
701 |
msgid "Every Weekday"
|
702 |
msgstr "An jedem Wochentag"
|
703 |
|
704 |
-
#: app/features/events.php:
|
705 |
msgid "Every Weekend"
|
706 |
msgstr "An jedem Wochenende"
|
707 |
|
708 |
-
#: app/features/events.php:
|
709 |
msgid "Certain Weekdays"
|
710 |
msgstr "Bestimmte Wochentage"
|
711 |
|
712 |
-
#: app/features/events.php:
|
713 |
#: app/skins/default_full_calendar/tpl.php:68
|
714 |
#: app/skins/full_calendar/tpl.php:109
|
715 |
msgid "Weekly"
|
716 |
msgstr "Wöchentlich"
|
717 |
|
718 |
-
#: app/features/events.php:
|
719 |
#: app/features/mec/dashboard.php:405
|
720 |
#: app/skins/default_full_calendar/tpl.php:67
|
721 |
#: app/skins/full_calendar/tpl.php:108
|
722 |
msgid "Monthly"
|
723 |
msgstr "Monatlich"
|
724 |
|
725 |
-
#: app/features/events.php:
|
726 |
#: app/features/mec/dashboard.php:406
|
727 |
#: app/skins/default_full_calendar/tpl.php:66
|
728 |
#: app/skins/full_calendar/tpl.php:107
|
729 |
msgid "Yearly"
|
730 |
msgstr "Jährlich"
|
731 |
|
732 |
-
#: app/features/events.php:
|
733 |
msgid "Custom Days"
|
734 |
msgstr "Benutzerdefinierte Tage"
|
735 |
|
736 |
-
#: app/features/events.php:
|
737 |
#, fuzzy
|
738 |
#| msgid "Advanced Method"
|
739 |
msgid "Advanced"
|
740 |
msgstr "Fortgeschrittene Methode"
|
741 |
|
742 |
-
#: app/features/events.php:
|
743 |
msgid "Repeat Interval"
|
744 |
msgstr "Wiederholungsintervall"
|
745 |
|
746 |
-
#: app/features/events.php:
|
747 |
msgid "Repeat interval"
|
748 |
msgstr "Wiederholungsintervall"
|
749 |
|
750 |
-
#: app/features/events.php:
|
751 |
msgid "Week Days"
|
752 |
msgstr "Wochentage"
|
753 |
|
754 |
-
#: app/features/events.php:
|
755 |
-
#: app/features/events.php:
|
756 |
#: app/features/fes/form.php:377 app/features/ix/import_f_calendar.php:42
|
757 |
#: app/features/ix/import_g_calendar.php:51
|
758 |
#: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
|
759 |
msgid "Start"
|
760 |
msgstr "Start"
|
761 |
|
762 |
-
#: app/features/events.php:
|
763 |
-
#: app/features/events.php:
|
764 |
#: app/features/fes/form.php:378
|
765 |
#, fuzzy
|
766 |
#| msgid "Enabled"
|
767 |
msgid "End"
|
768 |
msgstr "Aktiviert"
|
769 |
|
770 |
-
#: app/features/events.php:
|
771 |
-
#: app/features/events.php:
|
772 |
-
#: app/features/events.php:
|
773 |
-
#: app/features/events.php:
|
774 |
#: app/features/fes/form.php:379 app/features/fes/form.php:855
|
775 |
msgid "Add"
|
776 |
msgstr "Hinzufügen"
|
777 |
|
778 |
-
#: app/features/events.php:
|
779 |
#, fuzzy
|
780 |
#| msgid "Custom Days"
|
781 |
msgid "Custom Days Repeating"
|
782 |
msgstr "Benutzerdefinierte Tage"
|
783 |
|
784 |
-
#: app/features/events.php:
|
785 |
msgid ""
|
786 |
"Add certain days to event occurrence dates. If you have single day event, "
|
787 |
"start and end date should be the same, If you have multiple day event the "
|
788 |
"start and end dates must be commensurate with the initial date."
|
789 |
msgstr ""
|
790 |
|
791 |
-
#: app/features/events.php:
|
792 |
#, fuzzy
|
793 |
#| msgid "First name"
|
794 |
msgid "First"
|
795 |
msgstr "Vorname"
|
796 |
|
797 |
-
#: app/features/events.php:
|
798 |
#, fuzzy
|
799 |
#| msgid "second"
|
800 |
msgid "Second"
|
801 |
msgstr "Sekunde"
|
802 |
|
803 |
-
#: app/features/events.php:
|
804 |
#, fuzzy
|
805 |
#| msgid "Third Party"
|
806 |
msgid "Third"
|
807 |
msgstr "Dritte Seite"
|
808 |
|
809 |
-
#: app/features/events.php:
|
810 |
msgid "Fourth"
|
811 |
msgstr ""
|
812 |
|
813 |
-
#: app/features/events.php:
|
814 |
#, fuzzy
|
815 |
#| msgid "Last name"
|
816 |
msgid "Last"
|
817 |
msgstr "Nachname"
|
818 |
|
819 |
-
#: app/features/events.php:
|
820 |
msgid "Ends Repeat"
|
821 |
msgstr "Wiederholung endet"
|
822 |
|
823 |
-
#: app/features/events.php:
|
824 |
msgid "Never"
|
825 |
msgstr "Niemals"
|
826 |
|
827 |
-
#: app/features/events.php:
|
828 |
msgid "On"
|
829 |
msgstr "Am"
|
830 |
|
831 |
-
#: app/features/events.php:
|
832 |
msgid "After"
|
833 |
msgstr "Nach"
|
834 |
|
835 |
-
#: app/features/events.php:
|
836 |
#: app/features/fes/form.php:637 app/features/fes/form.php:640
|
837 |
msgid "Occurrences times"
|
838 |
msgstr " mal vorkommen"
|
839 |
|
840 |
-
#: app/features/events.php:
|
841 |
msgid ""
|
842 |
"The event will finish after certain repeats. For example if you set it to "
|
843 |
"10, the event will finish after 10 repeats."
|
@@ -845,147 +846,147 @@ msgstr ""
|
|
845 |
"Das Event ist nach einer bestimmten Anzahl von Wiederholungen zu Ende. Zum "
|
846 |
"Beispiel: Bei Eingabe von 10 wird das Event nach 10 Wiederholungen beendet"
|
847 |
|
848 |
-
#: app/features/events.php:
|
849 |
#, fuzzy
|
850 |
#| msgid "Next Occurrence of Other Events"
|
851 |
msgid "Show only one occurrence of this event"
|
852 |
msgstr "Nächstes Auftreten von anderen Events."
|
853 |
|
854 |
-
#: app/features/events.php:
|
855 |
-
#: app/features/events.php:
|
856 |
-
#: app/features/ix.php:
|
857 |
-
#: app/features/mec/settings.php:664 app/libraries/main.php:
|
858 |
#: app/widgets/single.php:103
|
859 |
msgid "Event Cost"
|
860 |
msgstr ""
|
861 |
"Bruttopreis des Events in Euro, 0 für kostenlos oder z.B. 39, ohne €-Zeichen"
|
862 |
|
863 |
-
#: app/features/events.php:
|
864 |
#, fuzzy
|
865 |
#| msgid "Exceptional Days"
|
866 |
msgid "Exceptional Days (Exclude Dates)"
|
867 |
msgstr "Herausgenommene Tage "
|
868 |
|
869 |
-
#: app/features/events.php:
|
870 |
msgid "Exclude certain days"
|
871 |
msgstr "Ausschluss bestimmter Tage"
|
872 |
|
873 |
-
#: app/features/events.php:
|
874 |
-
#: app/features/fes.php:223 app/features/mec/booking.php:
|
875 |
-
#: app/features/profile/profile.php:53 app/libraries/main.php:
|
876 |
-
#: app/libraries/main.php:
|
877 |
#: app/modules/next-event/details.php:93 app/skins/single.php:648
|
878 |
-
#: app/skins/single/default.php:85 app/skins/single/default.php:
|
879 |
-
#: app/skins/single/m1.php:20 app/skins/single/modern.php:
|
880 |
msgid "Date"
|
881 |
msgstr "Datum"
|
882 |
|
883 |
-
#: app/features/events.php:
|
884 |
msgid ""
|
885 |
"Exclude certain days from event occurrence dates. Please note that you can "
|
886 |
"exclude only single day occurrences and you cannot exclude one day from "
|
887 |
"multiple day occurrences."
|
888 |
msgstr ""
|
889 |
|
890 |
-
#: app/features/events.php:
|
891 |
msgid "Day 1"
|
892 |
msgstr ""
|
893 |
|
894 |
-
#: app/features/events.php:
|
895 |
msgid "Add Day"
|
896 |
msgstr ""
|
897 |
|
898 |
-
#: app/features/events.php:
|
899 |
msgid ""
|
900 |
"Add new days for schedule. For example if your event is multiple days, you "
|
901 |
"can add a different schedule for each day!"
|
902 |
msgstr ""
|
903 |
|
904 |
-
#: app/features/events.php:
|
905 |
#, php-format
|
906 |
msgid "Day %s"
|
907 |
msgstr ""
|
908 |
|
909 |
-
#: app/features/events.php:
|
910 |
-
#: app/features/events.php:
|
911 |
-
#: app/features/events.php:
|
912 |
-
#: app/features/events.php:
|
913 |
-
#: app/features/events.php:
|
914 |
-
#: app/features/fes/form.php:236 app/features/ix.php:
|
915 |
-
#: app/features/ix.php:
|
916 |
-
#: app/features/mec/booking.php:
|
917 |
msgid "Title"
|
918 |
msgstr "Titel"
|
919 |
|
920 |
-
#: app/features/events.php:
|
921 |
-
#: app/features/events.php:
|
922 |
-
#: app/features/events.php:
|
923 |
-
#: app/features/events.php:
|
924 |
-
#: app/features/events.php:
|
925 |
-
#: app/features/events.php:
|
926 |
-
#: app/features/mec/booking.php:
|
927 |
-
#: app/features/mec/booking.php:
|
928 |
-
#: app/libraries/main.php:
|
929 |
-
#: app/libraries/main.php:
|
930 |
-
#: app/libraries/main.php:
|
931 |
-
#: app/libraries/main.php:
|
932 |
-
#: app/libraries/main.php:
|
933 |
-
#: app/libraries/main.php:
|
934 |
-
#: app/libraries/main.php:
|
935 |
msgid "Remove"
|
936 |
msgstr "Entfernen"
|
937 |
|
938 |
-
#: app/features/events.php:
|
939 |
msgid "Add new hourly schedule row"
|
940 |
msgstr "Neue Stundenplan-Zeile hinzufügen"
|
941 |
|
942 |
-
#: app/features/events.php:
|
943 |
-
#: app/features/events.php:
|
944 |
msgid "From e.g. 8:15"
|
945 |
msgstr "Von z.B. 08:15 Uhr"
|
946 |
|
947 |
-
#: app/features/events.php:
|
948 |
-
#: app/features/events.php:
|
949 |
msgid "To e.g. 8:45"
|
950 |
msgstr "bis zum Beispiel 08:45 Uhr"
|
951 |
|
952 |
-
#: app/features/events.php:
|
953 |
-
#: app/features/events.php:
|
954 |
-
#: app/features/events.php:
|
955 |
msgid "Description"
|
956 |
msgstr "Beschreibung"
|
957 |
|
958 |
-
#: app/features/events.php:
|
959 |
-
#: app/features/events.php:
|
960 |
#: app/features/mec.php:411 app/features/mec/modules.php:52
|
961 |
#: app/features/mec/settings.php:712 app/features/speakers.php:62
|
962 |
-
#: app/libraries/main.php:565 app/libraries/main.php:
|
963 |
#: app/modules/speakers/details.php:18
|
964 |
msgid "Speakers"
|
965 |
msgstr ""
|
966 |
|
967 |
-
#: app/features/events.php:
|
968 |
#, fuzzy
|
969 |
#| msgid "Week Days"
|
970 |
msgid "New Day"
|
971 |
msgstr "Wochentage"
|
972 |
|
973 |
-
#: app/features/events.php:
|
974 |
#: app/features/mec/settings.php:658
|
975 |
msgid "Event Links"
|
976 |
msgstr "Veranstaltungslinks"
|
977 |
|
978 |
-
#: app/features/events.php:
|
979 |
-
#: app/features/fes/form.php:706 app/libraries/main.php:
|
980 |
msgid "Event Link"
|
981 |
msgstr "Veranstaltungslink"
|
982 |
|
983 |
-
#: app/features/events.php:
|
984 |
#: app/features/fes/form.php:707 app/features/fes/form.php:712
|
985 |
msgid "eg. http://yoursite.com/your-event"
|
986 |
msgstr "z.B. http://ihreseite.com/ihre-veranstaltung"
|
987 |
|
988 |
-
#: app/features/events.php:
|
989 |
#, fuzzy
|
990 |
#| msgid ""
|
991 |
#| "If you fill it, it will be replaced instead of default event page link. "
|
@@ -999,32 +1000,32 @@ msgstr ""
|
|
999 |
"dieser durch einen neuen link ersetzt werden. Vollständigen Link einfügen, "
|
1000 |
"einschließlich http(s)://"
|
1001 |
|
1002 |
-
#: app/features/events.php:
|
1003 |
msgid "URL Shortener"
|
1004 |
msgstr ""
|
1005 |
|
1006 |
-
#: app/features/events.php:
|
1007 |
-
#: app/features/fes/form.php:711 app/libraries/main.php:
|
1008 |
#: app/skins/single.php:673 app/skins/single/default.php:140
|
1009 |
-
#: app/skins/single/default.php:
|
1010 |
-
#: app/skins/single/m2.php:
|
1011 |
#: app/widgets/single.php:107
|
1012 |
msgid "More Info"
|
1013 |
msgstr "Mehr Informationen"
|
1014 |
|
1015 |
-
#: app/features/events.php:
|
1016 |
msgid "More Information"
|
1017 |
msgstr "z.B. Noch mehr Informationen "
|
1018 |
|
1019 |
-
#: app/features/events.php:
|
1020 |
msgid "Current Window"
|
1021 |
msgstr "Aktuelles Fenster"
|
1022 |
|
1023 |
-
#: app/features/events.php:
|
1024 |
msgid "New Window"
|
1025 |
msgstr "Neues Fenster"
|
1026 |
|
1027 |
-
#: app/features/events.php:
|
1028 |
msgid ""
|
1029 |
"If you fill it, it will be shown in event details page as an optional link. "
|
1030 |
"Insert full link including http(s)://"
|
@@ -1035,154 +1036,154 @@ msgstr ""
|
|
1035 |
"Text angezeigt werden soll: zum Beispiel: Noch mehr Informationen oder Hier "
|
1036 |
"zur Anmeldung (z.B. bei Webinaren sinnvoll) "
|
1037 |
|
1038 |
-
#: app/features/events.php:
|
1039 |
msgid "Total booking limits"
|
1040 |
msgstr "Gesamt Verfügbare Plätze"
|
1041 |
|
1042 |
-
#: app/features/events.php:
|
1043 |
-
#: app/features/events.php:
|
1044 |
#: app/modules/booking/steps/tickets.php:40
|
1045 |
#: app/skins/available_spot/tpl.php:158
|
1046 |
msgid "Unlimited"
|
1047 |
msgstr "Unlimitiert"
|
1048 |
|
1049 |
-
#: app/features/events.php:
|
1050 |
msgid ""
|
1051 |
"If you want to set a limit to all tickets, uncheck this checkbox and put a "
|
1052 |
"limitation number."
|
1053 |
msgstr ""
|
1054 |
|
1055 |
-
#: app/features/events.php:
|
1056 |
#, fuzzy
|
1057 |
#| msgid "Choose your single event style."
|
1058 |
msgid "Read About A Booking System"
|
1059 |
msgstr "Wählen Sie Ihren Single Event Stil"
|
1060 |
|
1061 |
-
#: app/features/events.php:
|
1062 |
msgid "100"
|
1063 |
msgstr "z.B. 100"
|
1064 |
|
1065 |
-
#: app/features/events.php:
|
1066 |
#, fuzzy
|
1067 |
#| msgid "Total booking limits"
|
1068 |
msgid "Total user booking limits"
|
1069 |
msgstr "Gesamt Verfügbare Plätze"
|
1070 |
|
1071 |
-
#: app/features/events.php:
|
1072 |
-
#: app/features/events.php:
|
1073 |
msgid "Inherit from global options"
|
1074 |
msgstr "Aus den globalen Einstellungen übernehmen"
|
1075 |
|
1076 |
-
#: app/features/events.php:
|
1077 |
msgid "12"
|
1078 |
msgstr ""
|
1079 |
|
1080 |
-
#: app/features/events.php:
|
1081 |
-
#: app/libraries/main.php:
|
1082 |
msgid "Tickets"
|
1083 |
msgstr "Tickets"
|
1084 |
|
1085 |
-
#: app/features/events.php:
|
1086 |
msgid ""
|
1087 |
"You're translating an event so MEC will use the original event for tickets "
|
1088 |
"and booking. You can only translate the ticket name and description. Please "
|
1089 |
"define exact tickets that you defined in the original event here."
|
1090 |
msgstr ""
|
1091 |
|
1092 |
-
#: app/features/events.php:
|
1093 |
#, fuzzy
|
1094 |
#| msgid "Ticket"
|
1095 |
msgid "Add Ticket"
|
1096 |
msgstr "Ticket"
|
1097 |
|
1098 |
-
#: app/features/events.php:
|
1099 |
msgid "Ticket Name"
|
1100 |
msgstr "Ticket Name"
|
1101 |
|
1102 |
-
#: app/features/events.php:
|
1103 |
-
#: app/features/events.php:
|
1104 |
-
#: app/features/ix.php:
|
1105 |
msgid "Start Time"
|
1106 |
msgstr "Uhrzeit des Beginns"
|
1107 |
|
1108 |
-
#: app/features/events.php:
|
1109 |
-
#: app/features/events.php:
|
1110 |
-
#: app/features/ix.php:
|
1111 |
msgid "End Time"
|
1112 |
msgstr "Uhrzeit Ende"
|
1113 |
|
1114 |
-
#: app/features/events.php:
|
1115 |
-
#: app/features/events.php:
|
1116 |
-
#: app/features/events.php:
|
1117 |
-
#: app/features/events.php:
|
1118 |
-
#: app/features/events.php:
|
1119 |
-
#: app/features/events.php:
|
1120 |
-
#: app/features/mec/booking.php:
|
1121 |
-
#: app/features/mec/booking.php:
|
1122 |
msgid "Price"
|
1123 |
msgstr "Preis"
|
1124 |
|
1125 |
-
#: app/features/events.php:
|
1126 |
msgid "Insert 0 for free ticket. Only numbers please."
|
1127 |
msgstr "Bitte 0 für kostenloses Ticket eingeben. Bitte nur Zahlen eintragen"
|
1128 |
|
1129 |
-
#: app/features/events.php:
|
1130 |
-
#: app/features/events.php:
|
1131 |
msgid "Price Label"
|
1132 |
msgstr "Preisschild"
|
1133 |
|
1134 |
-
#: app/features/events.php:
|
1135 |
msgid "For showing on website. e.g. $15"
|
1136 |
msgstr "Um das auf der Webseite anzuzeigen zum Beispiel 15 €"
|
1137 |
|
1138 |
-
#: app/features/events.php:
|
1139 |
msgid "Available Tickets"
|
1140 |
msgstr "Verfügbare Tickets: %s "
|
1141 |
|
1142 |
-
#: app/features/events.php:
|
1143 |
#, fuzzy
|
1144 |
#| msgid "Amount (Per Ticket)"
|
1145 |
msgid "Minimum Ticket e.g. 3"
|
1146 |
msgstr "Betrag (pro Ticket)"
|
1147 |
|
1148 |
-
#: app/features/events.php:
|
1149 |
#, fuzzy
|
1150 |
#| msgid "Amount (Per Ticket)"
|
1151 |
msgid "MinimumTicket"
|
1152 |
msgstr "Betrag (pro Ticket)"
|
1153 |
|
1154 |
-
#: app/features/events.php:
|
1155 |
msgid "Set a number for the minimum ticket reservation"
|
1156 |
msgstr ""
|
1157 |
|
1158 |
-
#: app/features/events.php:
|
1159 |
msgid "e.g. 0"
|
1160 |
msgstr ""
|
1161 |
|
1162 |
-
#: app/features/events.php:
|
1163 |
#, fuzzy
|
1164 |
#| msgid "Days"
|
1165 |
msgid "Day"
|
1166 |
msgstr "Tage"
|
1167 |
|
1168 |
-
#: app/features/events.php:
|
1169 |
msgid "Hour"
|
1170 |
msgstr ""
|
1171 |
|
1172 |
-
#: app/features/events.php:
|
1173 |
#, php-format
|
1174 |
msgid "Stop selling ticket %s before event start."
|
1175 |
msgstr ""
|
1176 |
|
1177 |
-
#: app/features/events.php:
|
1178 |
#, fuzzy
|
1179 |
#| msgid "Price Label"
|
1180 |
msgid "Price per Date"
|
1181 |
msgstr "Preisschild"
|
1182 |
|
1183 |
-
#: app/features/events.php:
|
1184 |
-
#: app/features/events.php:
|
1185 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1186 |
#: app/features/mec/meta_boxes/search_form.php:66
|
1187 |
#: app/features/mec/meta_boxes/search_form.php:128
|
1188 |
#: app/features/mec/meta_boxes/search_form.php:190
|
@@ -1194,29 +1195,29 @@ msgstr "Preisschild"
|
|
1194 |
#: app/features/mec/meta_boxes/search_form.php:549
|
1195 |
#: app/features/mec/meta_boxes/search_form.php:610
|
1196 |
#: app/features/mec/meta_boxes/search_form.php:707
|
1197 |
-
#: app/features/mec/settings.php:840 app/features/mec/single.php:
|
1198 |
-
#: app/libraries/skins.php:
|
1199 |
msgid "Label"
|
1200 |
msgstr "Label"
|
1201 |
|
1202 |
-
#: app/features/events.php:
|
1203 |
msgid "Fees"
|
1204 |
msgstr "Gebühren"
|
1205 |
|
1206 |
-
#: app/features/events.php:
|
1207 |
-
#: app/features/mec/booking.php:
|
1208 |
msgid "Fee Title"
|
1209 |
msgstr "Gebühren Name"
|
1210 |
|
1211 |
-
#: app/features/events.php:
|
1212 |
-
#: app/features/events.php:
|
1213 |
-
#: app/features/mec/booking.php:
|
1214 |
-
#: app/features/mec/booking.php:
|
1215 |
msgid "Amount"
|
1216 |
msgstr "Betrag"
|
1217 |
|
1218 |
-
#: app/features/events.php:
|
1219 |
-
#: app/features/mec/booking.php:
|
1220 |
msgid ""
|
1221 |
"Fee amount, considered as fixed amount if you set the type to amount "
|
1222 |
"otherwise considered as percentage"
|
@@ -1224,93 +1225,93 @@ msgstr ""
|
|
1224 |
"Gebührenbetrag, gilt als fester Betrag, wenn Sie die Art auf Betrag setzen, "
|
1225 |
"sonst als Prozentsatz"
|
1226 |
|
1227 |
-
#: app/features/events.php:
|
1228 |
-
#: app/features/mec/booking.php:
|
1229 |
msgid "Percent"
|
1230 |
msgstr "Prozent"
|
1231 |
|
1232 |
-
#: app/features/events.php:
|
1233 |
-
#: app/features/mec/booking.php:
|
1234 |
msgid "Amount (Per Ticket)"
|
1235 |
msgstr "Betrag (pro Ticket)"
|
1236 |
|
1237 |
-
#: app/features/events.php:
|
1238 |
-
#: app/features/mec/booking.php:
|
1239 |
msgid "Amount (Per Booking)"
|
1240 |
msgstr "Betrag (pro Buchung)"
|
1241 |
|
1242 |
-
#: app/features/events.php:
|
1243 |
msgid "Ticket Variations / Options"
|
1244 |
msgstr ""
|
1245 |
|
1246 |
-
#: app/features/events.php:
|
1247 |
-
#: app/features/mec/booking.php:
|
1248 |
#, fuzzy
|
1249 |
#| msgid "Option"
|
1250 |
msgid "Option Price"
|
1251 |
msgstr "Option"
|
1252 |
|
1253 |
-
#: app/features/events.php:
|
1254 |
-
#: app/features/events.php:
|
1255 |
-
#: app/features/mec/booking.php:
|
1256 |
-
#: app/features/mec/booking.php:
|
1257 |
#, fuzzy
|
1258 |
#| msgid "Amount (Per Ticket)"
|
1259 |
msgid "Maximum Per Ticket"
|
1260 |
msgstr "Betrag (pro Ticket)"
|
1261 |
|
1262 |
-
#: app/features/events.php:
|
1263 |
-
#: app/features/mec/booking.php:
|
1264 |
msgid "Maximum Per Ticket. Leave it blank for unlimited."
|
1265 |
msgstr ""
|
1266 |
|
1267 |
-
#: app/features/events.php:
|
1268 |
-
#: app/libraries/main.php:
|
1269 |
#, fuzzy
|
1270 |
#| msgid "Name"
|
1271 |
msgid "MEC Name"
|
1272 |
msgstr "Name"
|
1273 |
|
1274 |
-
#: app/features/events.php:
|
1275 |
-
#: app/libraries/main.php:
|
1276 |
#, fuzzy
|
1277 |
#| msgid "Email"
|
1278 |
msgid "MEC Email"
|
1279 |
msgstr "Email"
|
1280 |
|
1281 |
-
#: app/features/events.php:
|
1282 |
-
#: app/libraries/main.php:
|
1283 |
msgid "Text"
|
1284 |
msgstr "Text"
|
1285 |
|
1286 |
-
#: app/features/events.php:
|
1287 |
#: app/features/organizers.php:103 app/features/organizers.php:148
|
1288 |
#: app/features/speakers.php:119 app/features/speakers.php:192
|
1289 |
-
#: app/features/speakers.php:271 app/libraries/main.php:
|
1290 |
msgid "Tel"
|
1291 |
msgstr "Tel"
|
1292 |
|
1293 |
-
#: app/features/events.php:
|
1294 |
-
#: app/libraries/main.php:
|
1295 |
msgid "File"
|
1296 |
msgstr ""
|
1297 |
|
1298 |
-
#: app/features/events.php:
|
1299 |
-
#: app/libraries/main.php:
|
1300 |
msgid "Textarea"
|
1301 |
msgstr "Textbereich"
|
1302 |
|
1303 |
-
#: app/features/events.php:
|
1304 |
-
#: app/libraries/main.php:
|
1305 |
msgid "Checkboxes"
|
1306 |
msgstr "Checkboxes"
|
1307 |
|
1308 |
-
#: app/features/events.php:
|
1309 |
-
#: app/libraries/main.php:
|
1310 |
msgid "Radio Buttons"
|
1311 |
msgstr "Radio Buttons"
|
1312 |
|
1313 |
-
#: app/features/events.php:
|
1314 |
#: app/features/mec/meta_boxes/search_form.php:34
|
1315 |
#: app/features/mec/meta_boxes/search_form.php:41
|
1316 |
#: app/features/mec/meta_boxes/search_form.php:48
|
@@ -1386,50 +1387,50 @@ msgstr "Radio Buttons"
|
|
1386 |
#: app/features/mec/meta_boxes/search_form.php:696
|
1387 |
#: app/features/mec/meta_boxes/search_form.php:703
|
1388 |
#: app/features/mec/meta_boxes/search_form.php:710
|
1389 |
-
#: app/features/mec/meta_boxes/search_form.php:717 app/libraries/main.php:
|
1390 |
msgid "Dropdown"
|
1391 |
msgstr "Dropdown"
|
1392 |
|
1393 |
-
#: app/features/events.php:
|
1394 |
-
#: app/libraries/main.php:
|
1395 |
msgid "Agreement"
|
1396 |
msgstr "Zustimmung"
|
1397 |
|
1398 |
-
#: app/features/events.php:
|
1399 |
-
#: app/libraries/main.php:
|
1400 |
msgid "Paragraph"
|
1401 |
msgstr "Absatz"
|
1402 |
|
1403 |
-
#: app/features/events.php:
|
1404 |
-
#: app/features/events.php:
|
1405 |
#, php-format
|
1406 |
msgid "Show all %s"
|
1407 |
msgstr "Zeige alle %s"
|
1408 |
|
1409 |
-
#: app/features/events.php:
|
1410 |
msgid "labels"
|
1411 |
msgstr "Labels + Eventstatus"
|
1412 |
|
1413 |
-
#: app/features/events.php:
|
1414 |
msgid "locations"
|
1415 |
msgstr "Orte"
|
1416 |
|
1417 |
-
#: app/features/events.php:
|
1418 |
msgid "organizers"
|
1419 |
msgstr "Veranstalter"
|
1420 |
|
1421 |
-
#: app/features/events.php:
|
1422 |
#, fuzzy
|
1423 |
#| msgid "Attendees Limit"
|
1424 |
msgid "Attendees List"
|
1425 |
msgstr "Teilnehmer Limit, maximale Anzahl"
|
1426 |
|
1427 |
-
#: app/features/events.php:
|
1428 |
-
#: app/features/events.php:
|
1429 |
-
#: app/features/ix.php:
|
1430 |
-
#: app/features/locations.php:
|
1431 |
-
#: app/features/locations.php:
|
1432 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1433 |
#: app/features/mec/meta_boxes/search_form.php:38
|
1434 |
#: app/features/mec/meta_boxes/search_form.php:100
|
1435 |
#: app/features/mec/meta_boxes/search_form.php:162
|
@@ -1441,88 +1442,88 @@ msgstr "Teilnehmer Limit, maximale Anzahl"
|
|
1441 |
#: app/features/mec/meta_boxes/search_form.php:521
|
1442 |
#: app/features/mec/meta_boxes/search_form.php:582
|
1443 |
#: app/features/mec/meta_boxes/search_form.php:679
|
1444 |
-
#: app/features/mec/settings.php:814 app/features/mec/single.php:
|
1445 |
-
#: app/features/search.php:73 app/libraries/main.php:
|
1446 |
-
#: app/libraries/main.php:
|
1447 |
-
#: app/skins/single.php:493 app/skins/single.php:
|
1448 |
-
#: app/skins/single/default.php:176 app/skins/single/default.php:
|
1449 |
-
#: app/skins/single/m1.php:
|
1450 |
-
#: app/skins/single/modern.php:
|
1451 |
msgid "Location"
|
1452 |
msgstr "Ort"
|
1453 |
|
1454 |
-
#: app/features/events.php:
|
1455 |
msgid "Repeat"
|
1456 |
msgstr "Wiederholen"
|
1457 |
|
1458 |
-
#: app/features/events.php:
|
1459 |
msgid "Author"
|
1460 |
msgstr "Autor"
|
1461 |
|
1462 |
-
#: app/features/events.php:
|
1463 |
msgid "iCal Export"
|
1464 |
msgstr "ical Export"
|
1465 |
|
1466 |
-
#: app/features/events.php:
|
1467 |
msgid "CSV Export"
|
1468 |
msgstr "CSV Export"
|
1469 |
|
1470 |
-
#: app/features/events.php:
|
1471 |
msgid "MS Excel Export"
|
1472 |
msgstr "MS Excel Export"
|
1473 |
|
1474 |
-
#: app/features/events.php:
|
1475 |
msgid "XML Export"
|
1476 |
msgstr "XML Export"
|
1477 |
|
1478 |
-
#: app/features/events.php:
|
1479 |
msgid "JSON Export"
|
1480 |
msgstr "JSON Export"
|
1481 |
|
1482 |
-
#: app/features/events.php:
|
1483 |
-
#: app/features/events.php:
|
1484 |
msgid "Duplicate"
|
1485 |
msgstr "Kopie"
|
1486 |
|
1487 |
-
#: app/features/events.php:
|
1488 |
-
#: app/features/fes.php:223 app/features/ix.php:
|
1489 |
-
#: app/features/labels.php:177 app/features/locations.php:
|
1490 |
#: app/features/organizers.php:203 app/features/speakers.php:268
|
1491 |
msgid "ID"
|
1492 |
msgstr "ID"
|
1493 |
|
1494 |
-
#: app/features/events.php:
|
1495 |
-
#: app/features/ix.php:
|
1496 |
msgid "Link"
|
1497 |
msgstr "Link"
|
1498 |
|
1499 |
-
#: app/features/events.php:
|
1500 |
#, php-format
|
1501 |
msgid "%s Tel"
|
1502 |
msgstr "%s Tel"
|
1503 |
|
1504 |
-
#: app/features/events.php:
|
1505 |
#, php-format
|
1506 |
msgid "%s Email"
|
1507 |
msgstr "%s Email"
|
1508 |
|
1509 |
-
#: app/features/events.php:
|
1510 |
-
#: app/features/profile/profile.php:186 app/libraries/main.php:
|
1511 |
-
#: app/libraries/main.php:
|
1512 |
msgid "Ticket"
|
1513 |
msgstr "Ticket"
|
1514 |
|
1515 |
-
#: app/features/events.php:
|
1516 |
#, fuzzy
|
1517 |
#| msgid "Verification"
|
1518 |
msgid "Variations"
|
1519 |
msgstr "Verifizierung"
|
1520 |
|
1521 |
-
#: app/features/events.php:
|
1522 |
msgid "Unknown"
|
1523 |
msgstr "Unbekannt"
|
1524 |
|
1525 |
-
#: app/features/events.php:
|
1526 |
#, fuzzy
|
1527 |
#| msgid "Attendees Form"
|
1528 |
msgid "No Attendees Found!"
|
@@ -1561,7 +1562,7 @@ msgstr "Bitte %s/%s um Veranstaltungen managen zu können."
|
|
1561 |
msgid "The event removed!"
|
1562 |
msgstr "Die Veranstaltung wurde entfernt."
|
1563 |
|
1564 |
-
#: app/features/fes.php:223 app/libraries/main.php:
|
1565 |
msgid "Transaction ID"
|
1566 |
msgstr "Transaktions-ID"
|
1567 |
|
@@ -1612,43 +1613,43 @@ msgid "Go back to events list"
|
|
1612 |
msgstr "Zurück zur Liste der Veranstaltungen"
|
1613 |
|
1614 |
#: app/features/fes/form.php:366
|
1615 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1616 |
#: app/libraries/main.php:410
|
1617 |
msgid "Monday"
|
1618 |
msgstr "Montag"
|
1619 |
|
1620 |
#: app/features/fes/form.php:367
|
1621 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1622 |
#: app/libraries/main.php:410
|
1623 |
msgid "Tuesday"
|
1624 |
msgstr "Dienstag"
|
1625 |
|
1626 |
#: app/features/fes/form.php:368
|
1627 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1628 |
#: app/libraries/main.php:410
|
1629 |
msgid "Wednesday"
|
1630 |
msgstr "Mittwoch"
|
1631 |
|
1632 |
#: app/features/fes/form.php:369
|
1633 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1634 |
#: app/libraries/main.php:410
|
1635 |
msgid "Thursday"
|
1636 |
msgstr "Donnerstag"
|
1637 |
|
1638 |
#: app/features/fes/form.php:370
|
1639 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1640 |
#: app/libraries/main.php:410
|
1641 |
msgid "Friday"
|
1642 |
msgstr "Freitag"
|
1643 |
|
1644 |
#: app/features/fes/form.php:371
|
1645 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1646 |
#: app/libraries/main.php:410
|
1647 |
msgid "Saturday"
|
1648 |
msgstr "Samstag"
|
1649 |
|
1650 |
#: app/features/fes/form.php:372
|
1651 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1652 |
#: app/libraries/main.php:410
|
1653 |
msgid "Sunday"
|
1654 |
msgstr "Sonntag"
|
@@ -1692,10 +1693,10 @@ msgstr "Bild entfernen"
|
|
1692 |
|
1693 |
#: app/features/fes/form.php:783 app/features/labels.php:61
|
1694 |
#: app/features/labels.php:221 app/features/mec.php:404
|
1695 |
-
#: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:
|
1696 |
#: app/skins/single.php:702 app/skins/single/default.php:155
|
1697 |
-
#: app/skins/single/default.php:
|
1698 |
-
#: app/skins/single/modern.php:
|
1699 |
msgid "Labels"
|
1700 |
msgstr "Labels"
|
1701 |
|
@@ -1785,7 +1786,7 @@ msgstr "Drittanbieter-Plugin ist ungültig!"
|
|
1785 |
msgid "Both of API key and Calendar ID are required!"
|
1786 |
msgstr "Beide, API Schlüssel und Calender ID wird benötigt"
|
1787 |
|
1788 |
-
#: app/features/ix.php:2770 app/features/ix.php:3189 app/features/ix.php:
|
1789 |
msgid "Please select some events to import!"
|
1790 |
msgstr "Bitte wählen Sie einige Veranstaltungen aus zum importieren"
|
1791 |
|
@@ -1799,50 +1800,50 @@ msgstr "Beide, API Schlüssel und Calender ID wird benötigt"
|
|
1799 |
msgid "Check at Meetup"
|
1800 |
msgstr ""
|
1801 |
|
1802 |
-
#: app/features/ix.php:
|
1803 |
msgid "Organizer Tel"
|
1804 |
msgstr "Organisator Telefon"
|
1805 |
|
1806 |
-
#: app/features/ix.php:
|
1807 |
msgid "Organizer Email"
|
1808 |
msgstr "Organisator Email"
|
1809 |
|
1810 |
-
#: app/features/ix.php:
|
1811 |
msgid "All of Client ID, Client Secret and Calendar ID are required!"
|
1812 |
msgstr "Dies wird alles benötigt: Client ID, Client Secret und Calender ID!"
|
1813 |
|
1814 |
-
#: app/features/ix.php:
|
1815 |
#, php-format
|
1816 |
msgid "All seems good! Please click %s for authenticating your app."
|
1817 |
msgstr ""
|
1818 |
"Alles scheint gut zu sein! Bitte klicken %s um Ihre App zu authentifizieren."
|
1819 |
|
1820 |
-
#: app/features/ix.php:
|
1821 |
msgid "All of Client App, Client Secret and Calendar ID are required!"
|
1822 |
msgstr "Dies wird alles benötigt: Client ID, Client Secret und Calender ID!"
|
1823 |
|
1824 |
-
#: app/features/ix.php:
|
1825 |
#, php-format
|
1826 |
msgid "%s events added to Google Calendar successfully."
|
1827 |
msgstr "%s Events wurden erfolgreich zum Google Kalender hinzugefügt."
|
1828 |
|
1829 |
-
#: app/features/ix.php:
|
1830 |
#, php-format
|
1831 |
msgid "%s previously added events get updated."
|
1832 |
msgstr "%s vorherige hinzugefügte Events wurden aktualisiert."
|
1833 |
|
1834 |
-
#: app/features/ix.php:
|
1835 |
#, php-format
|
1836 |
msgid "%s events failed to add for following reasons: %s"
|
1837 |
msgstr "%s Events wurde aus folgenden Gründen nicht hinzugefügt: %s"
|
1838 |
|
1839 |
-
#: app/features/ix.php:
|
1840 |
#, fuzzy
|
1841 |
#| msgid "Please insert your facebook page's link."
|
1842 |
msgid "Please insert your Facebook page's link."
|
1843 |
msgstr "Bitte Ihren Facebook Seitenlink eingeben."
|
1844 |
|
1845 |
-
#: app/features/ix.php:
|
1846 |
#, fuzzy
|
1847 |
#| msgid ""
|
1848 |
#| "We couldn't recognize your Facebook page. Please check it and provide us "
|
@@ -1854,11 +1855,11 @@ msgstr ""
|
|
1854 |
"Wir konnten Ihre Facebookseite nicht erkennen. Bitte checken Sie das und "
|
1855 |
"stellen Sie uns einen gültigen Facebookseitenlink zur Verfügung."
|
1856 |
|
1857 |
-
#: app/features/ix.php:
|
1858 |
msgid "Please insert your facebook page's link."
|
1859 |
msgstr "Bitte Ihren Facebook Seitenlink eingeben."
|
1860 |
|
1861 |
-
#: app/features/ix.php:
|
1862 |
msgid ""
|
1863 |
"We couldn't recognize your Facebook page. Please check it and provide us a "
|
1864 |
"valid facebook page link."
|
@@ -1929,7 +1930,7 @@ msgstr ""
|
|
1929 |
"Dies wird alle Ihre Eventdaten von der Webseite in Ihr gewünschtes Format "
|
1930 |
"exportieren."
|
1931 |
|
1932 |
-
#: app/features/ix/export.php:25 app/features/mec/modules.php:
|
1933 |
msgid "iCal"
|
1934 |
msgstr "iCal"
|
1935 |
|
@@ -2039,9 +2040,9 @@ msgstr "Umschalten"
|
|
2039 |
msgid "Add to Google Calendar"
|
2040 |
msgstr "Zum Google Kalender hinzufügen"
|
2041 |
|
2042 |
-
#: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:
|
2043 |
-
#: app/features/mec/modules.php:
|
2044 |
-
#: app/features/mec/settings.php:1054 app/features/mec/single.php:
|
2045 |
msgid "Checking ..."
|
2046 |
msgstr "Überprüfung"
|
2047 |
|
@@ -2086,30 +2087,30 @@ msgid "ICS Feed"
|
|
2086 |
msgstr ""
|
2087 |
|
2088 |
#: app/features/ix/import.php:46 app/features/mec/booking.php:91
|
2089 |
-
#: app/features/mec/booking.php:
|
2090 |
-
#: app/features/mec/booking.php:
|
2091 |
#: app/features/mec/meta_boxes/display_options.php:176
|
2092 |
#: app/features/mec/meta_boxes/display_options.php:368
|
2093 |
-
#: app/features/mec/modules.php:70 app/features/mec/modules.php:
|
2094 |
-
#: app/features/mec/modules.php:
|
2095 |
#, php-format
|
2096 |
msgid "%s is required to use this feature."
|
2097 |
msgstr ""
|
2098 |
|
2099 |
#: app/features/ix/import.php:46 app/features/ix/sync.php:22
|
2100 |
-
#: app/features/mec/booking.php:91 app/features/mec/booking.php:
|
2101 |
-
#: app/features/mec/booking.php:
|
2102 |
#: app/features/mec/meta_boxes/display_options.php:176
|
2103 |
#: app/features/mec/meta_boxes/display_options.php:368
|
2104 |
#: app/features/mec/meta_boxes/display_options.php:396
|
2105 |
#: app/features/mec/meta_boxes/display_options.php:536
|
2106 |
#: app/features/mec/meta_boxes/display_options.php:587
|
2107 |
#: app/features/mec/meta_boxes/display_options.php:694
|
2108 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2109 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2110 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2111 |
-
#: app/features/mec/modules.php:70 app/features/mec/modules.php:
|
2112 |
-
#: app/features/mec/modules.php:
|
2113 |
msgid "Pro version of Modern Events Calendar"
|
2114 |
msgstr ""
|
2115 |
|
@@ -2301,7 +2302,7 @@ msgid "Auto Synchronization"
|
|
2301 |
msgstr "Auto Synchronisation"
|
2302 |
|
2303 |
#: app/features/ix/sync.php:22
|
2304 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2305 |
#, php-format
|
2306 |
msgid "%s is required to use synchronization feature."
|
2307 |
msgstr ""
|
@@ -2486,11 +2487,11 @@ msgstr "Wähle Label Farbe"
|
|
2486 |
#: app/features/mec/meta_boxes/display_options.php:401
|
2487 |
#: app/features/mec/meta_boxes/display_options.php:592
|
2488 |
#: app/features/mec/meta_boxes/display_options.php:642
|
2489 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2490 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2491 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2492 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2493 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2494 |
msgid "Style"
|
2495 |
msgstr "Style"
|
2496 |
|
@@ -2515,7 +2516,7 @@ msgid "Featured"
|
|
2515 |
msgstr "Ausgewähltes Bild"
|
2516 |
|
2517 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2518 |
-
#: app/libraries/main.php:
|
2519 |
#: app/skins/available_spot/tpl.php:40 app/skins/carousel/render.php:46
|
2520 |
#: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:33
|
2521 |
#: app/skins/daily_view/render.php:29 app/skins/grid/render.php:55
|
@@ -2533,116 +2534,116 @@ msgstr "Abgesagt"
|
|
2533 |
msgid "You can show featured and canceled events by a different style!"
|
2534 |
msgstr ""
|
2535 |
|
2536 |
-
#: app/features/labels.php:180 app/features/locations.php:
|
2537 |
#: app/features/organizers.php:206 app/features/speakers.php:272
|
2538 |
#: app/modules/booking/steps/tickets.php:38
|
2539 |
msgid "Count"
|
2540 |
msgstr "Zähler"
|
2541 |
|
2542 |
-
#: app/features/labels.php:181 app/features/locations.php:
|
2543 |
#: app/features/organizers.php:207
|
2544 |
msgid "Slug"
|
2545 |
msgstr "Slug"
|
2546 |
|
2547 |
-
#: app/features/labels.php:221 app/features/locations.php:
|
2548 |
#, php-format
|
2549 |
msgid "Event %s"
|
2550 |
msgstr "Event %s"
|
2551 |
|
2552 |
#: app/features/locations.php:59 app/features/mec.php:405
|
2553 |
#: app/features/mec/dashboard.php:271 app/features/mec/meta_boxes/filter.php:96
|
2554 |
-
#: app/libraries/main.php:
|
2555 |
msgid "Locations"
|
2556 |
msgstr "Orte"
|
2557 |
|
2558 |
-
#: app/features/locations.php:105 app/features/locations.php:
|
2559 |
-
#: app/features/locations.php:
|
2560 |
msgid "Address"
|
2561 |
msgstr "Adresse"
|
2562 |
|
2563 |
-
#: app/features/locations.php:108 app/features/locations.php:
|
2564 |
msgid "Enter the location address"
|
2565 |
msgstr "Geben Sie die Veranstaltungsanschrift ein"
|
2566 |
|
2567 |
-
#: app/features/locations.php:122 app/features/locations.php:
|
2568 |
-
#: app/features/locations.php:
|
2569 |
msgid "Latitude"
|
2570 |
msgstr "Breitengrad z.B. 49.0069646 "
|
2571 |
|
2572 |
-
#: app/features/locations.php:125 app/features/locations.php:
|
2573 |
msgid "Geo latitude (Optional)"
|
2574 |
msgstr "Geologischer Breitengrad (Optional)"
|
2575 |
|
2576 |
-
#: app/features/locations.php:130 app/features/locations.php:
|
2577 |
-
#: app/features/locations.php:
|
2578 |
msgid "Longitude"
|
2579 |
msgstr "Längengrad z.B. 8.4118636 "
|
2580 |
|
2581 |
-
#: app/features/locations.php:133 app/features/locations.php:
|
2582 |
msgid "Geo longitude (Optional)"
|
2583 |
msgstr "Geologischer Längengrad (Optional)"
|
2584 |
|
2585 |
-
#: app/features/locations.php:
|
2586 |
#: app/features/organizers.php:127 app/features/organizers.php:160
|
2587 |
#: app/features/speakers.php:167 app/features/speakers.php:216
|
2588 |
msgid "Thumbnail"
|
2589 |
msgstr "Miniaturansicht"
|
2590 |
|
2591 |
-
#: app/features/locations.php:
|
2592 |
#: app/features/organizers.php:132 app/features/organizers.php:163
|
2593 |
#: app/features/speakers.php:172 app/features/speakers.php:219
|
2594 |
msgid "Upload/Add image"
|
2595 |
msgstr "Bild hochladen/hinzufügen"
|
2596 |
|
2597 |
-
#: app/features/locations.php:
|
2598 |
-
#: app/features/locations.php:
|
2599 |
#: app/features/organizers.php:133 app/features/organizers.php:164
|
2600 |
#: app/features/organizers.php:299 app/features/organizers.php:306
|
2601 |
#: app/features/speakers.php:173 app/features/speakers.php:220
|
2602 |
msgid "Remove image"
|
2603 |
msgstr "Bild entfernen"
|
2604 |
|
2605 |
-
#: app/features/locations.php:
|
2606 |
msgid "Hide location"
|
2607 |
msgstr "Ort verbergen"
|
2608 |
|
2609 |
-
#: app/features/locations.php:
|
2610 |
msgid "Insert a new location"
|
2611 |
msgstr "Neuen Ort hinzufügen"
|
2612 |
|
2613 |
-
#: app/features/locations.php:
|
2614 |
msgid "Choose one of saved locations or insert new one below."
|
2615 |
msgstr ""
|
2616 |
"Wählen Sie einen der gespeicherten Orte aus, oder fügen Sie einen neuen ein."
|
2617 |
|
2618 |
-
#: app/features/locations.php:
|
2619 |
msgid "Location Name"
|
2620 |
msgstr "Name Veranstaltungsort"
|
2621 |
|
2622 |
-
#: app/features/locations.php:
|
2623 |
msgid "eg. City Hall"
|
2624 |
msgstr ""
|
2625 |
"z.B. Karlsruhe Schlosshotel oder Frankfurt Allianz oder Dortmund "
|
2626 |
"Westfalenhalle"
|
2627 |
|
2628 |
-
#: app/features/locations.php:
|
2629 |
#: app/widgets/single.php:115
|
2630 |
msgid "Event Location"
|
2631 |
msgstr "Veranstaltungsort"
|
2632 |
|
2633 |
-
#: app/features/locations.php:
|
2634 |
msgid "eg. City hall, Manhattan, New York"
|
2635 |
msgstr ""
|
2636 |
"z.B. Holiday Inn, Zimmerstraße 8, 76137 Karlsruhe oder Finanzevent, Jenaer "
|
2637 |
"Ring 1, 76297 Stutensee"
|
2638 |
|
2639 |
-
#: app/features/locations.php:
|
2640 |
#, fuzzy
|
2641 |
#| msgid "Longitude"
|
2642 |
msgid "Latitude/Longitude"
|
2643 |
msgstr "Längengrad z.B. 8.4118636 "
|
2644 |
|
2645 |
-
#: app/features/locations.php:
|
2646 |
msgid ""
|
2647 |
"If you leave the latitude and longitude empty, Modern Events Calendar tries "
|
2648 |
"to convert the location address to geopoint, Latitude and Longitude are the "
|
@@ -2651,25 +2652,25 @@ msgid ""
|
|
2651 |
"the location on the map to find lat long coordinates."
|
2652 |
msgstr ""
|
2653 |
|
2654 |
-
#: app/features/locations.php:
|
2655 |
msgid "Get Latitude and Longitude"
|
2656 |
msgstr ""
|
2657 |
|
2658 |
-
#: app/features/locations.php:
|
2659 |
msgid "Choose image"
|
2660 |
msgstr "Bild wählen"
|
2661 |
|
2662 |
-
#: app/features/locations.php:
|
2663 |
msgid "Don't show map in single event page"
|
2664 |
msgstr "Karte in Einzelansicht nicht anzeigen"
|
2665 |
|
2666 |
-
#: app/features/locations.php:
|
2667 |
#, fuzzy
|
2668 |
#| msgid "Locations"
|
2669 |
msgid "Other Locations"
|
2670 |
msgstr "Orte"
|
2671 |
|
2672 |
-
#: app/features/locations.php:
|
2673 |
#, fuzzy
|
2674 |
#| msgid ""
|
2675 |
#| "You can select extra organizers in addition to main organizer if you like."
|
@@ -2693,7 +2694,7 @@ msgstr ""
|
|
2693 |
msgid "Troubleshooting"
|
2694 |
msgstr ""
|
2695 |
|
2696 |
-
#: app/features/mec.php:256 app/libraries/notifications.php:
|
2697 |
#, php-format
|
2698 |
msgid "%s to %s"
|
2699 |
msgstr "%s zu %s"
|
@@ -2729,7 +2730,7 @@ msgstr "Support"
|
|
2729 |
|
2730 |
#: app/features/mec.php:406 app/features/mec/dashboard.php:278
|
2731 |
#: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
|
2732 |
-
#: app/libraries/main.php:
|
2733 |
msgid "Organizers"
|
2734 |
msgstr "Veranstalter"
|
2735 |
|
@@ -2842,24 +2843,24 @@ msgstr ""
|
|
2842 |
msgid "Search..."
|
2843 |
msgstr "Suche %s"
|
2844 |
|
2845 |
-
#: app/features/mec/booking.php:72 app/features/mec/booking.php:
|
2846 |
-
#: app/features/mec/booking.php:
|
2847 |
-
#: app/features/mec/booking.php:
|
2848 |
-
#: app/features/mec/booking.php:
|
2849 |
#: app/features/mec/messages.php:51 app/features/mec/messages.php:60
|
2850 |
#: app/features/mec/messages.php:94 app/features/mec/messages.php:103
|
2851 |
-
#: app/features/mec/modules.php:25 app/features/mec/modules.php:
|
2852 |
-
#: app/features/mec/modules.php:
|
2853 |
-
#: app/features/mec/modules.php:
|
2854 |
#: app/features/mec/notifications.php:816
|
2855 |
#: app/features/mec/notifications.php:828
|
2856 |
#: app/features/mec/notifications.php:924
|
2857 |
#: app/features/mec/notifications.php:938 app/features/mec/settings.php:39
|
2858 |
#: app/features/mec/settings.php:1003 app/features/mec/settings.php:1013
|
2859 |
#: app/features/mec/settings.php:1071 app/features/mec/settings.php:1085
|
2860 |
-
#: app/features/mec/single.php:17 app/features/mec/single.php:
|
2861 |
-
#: app/features/mec/single.php:
|
2862 |
-
#: app/features/mec/single.php:
|
2863 |
#: app/features/mec/styles.php:31 app/features/mec/styles.php:40
|
2864 |
#: app/features/mec/styles.php:77 app/features/mec/styles.php:86
|
2865 |
#: app/features/mec/styling.php:37 app/features/mec/styling.php:242
|
@@ -2879,7 +2880,7 @@ msgid ""
|
|
2879 |
msgstr ""
|
2880 |
|
2881 |
#: app/features/mec/booking.php:102 app/features/mec/booking.php:107
|
2882 |
-
#: app/features/mec/modules.php:
|
2883 |
msgid "Date Format"
|
2884 |
msgstr "Datumsformat"
|
2885 |
|
@@ -2891,10 +2892,10 @@ msgstr "Voreinstellung ist J-M-T"
|
|
2891 |
#: app/features/mec/meta_boxes/display_options.php:135
|
2892 |
#: app/features/mec/meta_boxes/display_options.php:349
|
2893 |
#: app/features/mec/meta_boxes/display_options.php:445
|
2894 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2895 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2896 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2897 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
2898 |
msgid "Limit"
|
2899 |
msgstr "Limit"
|
2900 |
|
@@ -3024,84 +3025,88 @@ msgstr "Automatische Bestätigung für kostenlose Buchungen"
|
|
3024 |
msgid "Auto confirmation for paid bookings"
|
3025 |
msgstr "Automatische Bestätigung für kostenpflichtige Buchungen"
|
3026 |
|
3027 |
-
#: app/features/mec/booking.php:
|
|
|
|
|
|
|
|
|
3028 |
msgid "Enable coupons module"
|
3029 |
msgstr "Gutscheinmodul aktivieren"
|
3030 |
|
3031 |
-
#: app/features/mec/booking.php:
|
3032 |
msgid ""
|
3033 |
"After enabling and saving the settings,, you should reload the page to see a "
|
3034 |
"new menu on the Dashboard > Booking"
|
3035 |
msgstr ""
|
3036 |
|
3037 |
-
#: app/features/mec/booking.php:
|
3038 |
msgid "Taxes / Fees"
|
3039 |
msgstr "Steuern/Gebühren"
|
3040 |
|
3041 |
-
#: app/features/mec/booking.php:
|
3042 |
msgid "Enable taxes / fees module"
|
3043 |
msgstr "Modul für Gebühren/Steuern aktivieren"
|
3044 |
|
3045 |
-
#: app/features/mec/booking.php:
|
3046 |
msgid "Add Fee"
|
3047 |
msgstr "Gebühr hinzufügen"
|
3048 |
|
3049 |
-
#: app/features/mec/booking.php:
|
3050 |
msgid "Ticket Variations & Options"
|
3051 |
msgstr ""
|
3052 |
|
3053 |
-
#: app/features/mec/booking.php:
|
3054 |
#, fuzzy
|
3055 |
#| msgid "Enable coupons module"
|
3056 |
msgid "Enable ticket options module"
|
3057 |
msgstr "Gutscheinmodul aktivieren"
|
3058 |
|
3059 |
-
#: app/features/mec/booking.php:
|
3060 |
msgid "Add Variation / Option"
|
3061 |
msgstr ""
|
3062 |
|
3063 |
-
#: app/features/mec/booking.php:
|
3064 |
msgid "Enable Organizer Payment Module"
|
3065 |
msgstr ""
|
3066 |
|
3067 |
-
#: app/features/mec/booking.php:
|
3068 |
#, fuzzy
|
3069 |
#| msgid "Organizer Tel"
|
3070 |
msgid "Organizer Payment"
|
3071 |
msgstr "Organisator Telefon"
|
3072 |
|
3073 |
-
#: app/features/mec/booking.php:
|
3074 |
msgid ""
|
3075 |
"By enabling this module, organizers are able to insert their own payment "
|
3076 |
"credentials for enabled gateways per event and receive the payments directly!"
|
3077 |
msgstr ""
|
3078 |
|
3079 |
-
#: app/features/mec/booking.php:
|
3080 |
-
#: app/features/mec/modules.php:
|
3081 |
-
#: app/features/mec/settings.php:1049 app/features/mec/single.php:
|
3082 |
#: app/features/mec/styles.php:60 app/features/mec/styling.php:296
|
3083 |
msgid "Saved"
|
3084 |
msgstr "Gesichert"
|
3085 |
|
3086 |
-
#: app/features/mec/booking.php:
|
3087 |
-
#: app/features/mec/modules.php:
|
3088 |
-
#: app/features/mec/settings.php:1050 app/features/mec/single.php:
|
3089 |
#: app/features/mec/styles.php:61 app/features/mec/styling.php:297
|
3090 |
msgid "Settings Saved!"
|
3091 |
msgstr ""
|
3092 |
|
3093 |
-
#: app/features/mec/booking.php:
|
3094 |
-
#: app/features/mec/modules.php:
|
3095 |
#: app/features/mec/notifications.php:905
|
3096 |
#: app/features/mec/notifications.php:927 app/features/mec/settings.php:1052
|
3097 |
-
#: app/features/mec/settings.php:1074 app/features/mec/single.php:
|
3098 |
-
#: app/features/mec/single.php:
|
3099 |
msgid "Verified"
|
3100 |
msgstr "Verifiziert"
|
3101 |
|
3102 |
-
#: app/features/mec/booking.php:
|
3103 |
#: app/features/mec/notifications.php:929 app/features/mec/settings.php:1076
|
3104 |
-
#: app/features/mec/single.php:
|
3105 |
msgid "Please Refresh Page"
|
3106 |
msgstr "Bitte Seiten Refresh vornehmen"
|
3107 |
|
@@ -3305,8 +3310,8 @@ msgstr "Skin"
|
|
3305 |
#: app/features/mec/meta_boxes/display_options.php:41
|
3306 |
#: app/features/mec/meta_boxes/display_options.php:218
|
3307 |
#: app/features/mec/meta_boxes/display_options.php:644
|
3308 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3309 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3310 |
#: app/features/mec/settings.php:267 app/features/mec/settings.php:291
|
3311 |
#: app/features/mec/settings.php:300 app/features/mec/settings.php:341
|
3312 |
#: app/features/mec/settings.php:365 app/features/mec/settings.php:374
|
@@ -3327,8 +3332,8 @@ msgstr "Minimal"
|
|
3327 |
#: app/features/mec/meta_boxes/display_options.php:221
|
3328 |
#: app/features/mec/meta_boxes/display_options.php:594
|
3329 |
#: app/features/mec/meta_boxes/display_options.php:646
|
3330 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3331 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3332 |
#: app/features/mec/settings.php:269 app/features/mec/settings.php:282
|
3333 |
#: app/features/mec/settings.php:293 app/features/mec/settings.php:303
|
3334 |
#: app/features/mec/settings.php:343 app/features/mec/settings.php:356
|
@@ -3355,11 +3360,11 @@ msgstr "Accordion"
|
|
3355 |
#: app/features/mec/meta_boxes/display_options.php:231
|
3356 |
#: app/features/mec/meta_boxes/display_options.php:409
|
3357 |
#: app/features/mec/meta_boxes/display_options.php:701
|
3358 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3359 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
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 "Today"
|
3364 |
msgstr "Heute"
|
3365 |
|
@@ -3367,11 +3372,11 @@ msgstr "Heute"
|
|
3367 |
#: app/features/mec/meta_boxes/display_options.php:232
|
3368 |
#: app/features/mec/meta_boxes/display_options.php:410
|
3369 |
#: app/features/mec/meta_boxes/display_options.php:702
|
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 |
msgid "Tomorrow"
|
3376 |
msgstr "Morgen"
|
3377 |
|
@@ -3381,14 +3386,14 @@ msgstr "Morgen"
|
|
3381 |
#: app/features/mec/meta_boxes/display_options.php:477
|
3382 |
#: app/features/mec/meta_boxes/display_options.php:654
|
3383 |
#: app/features/mec/meta_boxes/display_options.php:703
|
3384 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3385 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3386 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3387 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3388 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
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 |
msgid "Start of Current Month"
|
3393 |
msgstr "Mit Beginn des laufenden Monats"
|
3394 |
|
@@ -3398,14 +3403,14 @@ msgstr "Mit Beginn des laufenden Monats"
|
|
3398 |
#: app/features/mec/meta_boxes/display_options.php:478
|
3399 |
#: app/features/mec/meta_boxes/display_options.php:655
|
3400 |
#: app/features/mec/meta_boxes/display_options.php:704
|
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 "Start of Next Month"
|
3410 |
msgstr "Mit Beginn des kommenden Monats"
|
3411 |
|
@@ -3416,14 +3421,14 @@ msgstr "Mit Beginn des kommenden Monats"
|
|
3416 |
#: app/features/mec/meta_boxes/display_options.php:602
|
3417 |
#: app/features/mec/meta_boxes/display_options.php:656
|
3418 |
#: app/features/mec/meta_boxes/display_options.php:705
|
3419 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3420 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3421 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3422 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3423 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
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 |
msgid "On a certain date"
|
3428 |
msgstr "An einem bestimmten Tag"
|
3429 |
|
@@ -3434,14 +3439,14 @@ msgstr "An einem bestimmten Tag"
|
|
3434 |
#: app/features/mec/meta_boxes/display_options.php:605
|
3435 |
#: app/features/mec/meta_boxes/display_options.php:659
|
3436 |
#: app/features/mec/meta_boxes/display_options.php:708
|
3437 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3438 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3439 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3440 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3441 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3442 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3443 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3444 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3445 |
#, php-format
|
3446 |
msgid "eg. %s"
|
3447 |
msgstr "z.B. %s"
|
@@ -3455,12 +3460,12 @@ msgstr "z.B. %s"
|
|
3455 |
#: app/features/mec/meta_boxes/display_options.php:421
|
3456 |
#: app/features/mec/meta_boxes/display_options.php:422
|
3457 |
#: app/features/mec/meta_boxes/display_options.php:425
|
3458 |
-
#: app/features/mec/meta_boxes/display_options.php:927
|
3459 |
#: app/features/mec/meta_boxes/display_options.php:928
|
3460 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3461 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3462 |
#: app/features/mec/meta_boxes/display_options.php:1356
|
3463 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
|
|
3464 |
#, fuzzy
|
3465 |
#| msgid "Maximum Dates"
|
3466 |
msgid "Maximum Date"
|
@@ -3469,8 +3474,8 @@ msgstr "Maximale Anzahl von Daten"
|
|
3469 |
#: app/features/mec/meta_boxes/display_options.php:68
|
3470 |
#: app/features/mec/meta_boxes/display_options.php:248
|
3471 |
#: app/features/mec/meta_boxes/display_options.php:426
|
3472 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3473 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3474 |
#, fuzzy
|
3475 |
#| msgid "Show events based on created shortcodes."
|
3476 |
msgid "Show events before the specified date."
|
@@ -3504,43 +3509,43 @@ msgstr "Veranstaltungen auf Basis der erstellten shortcodes anzeigen"
|
|
3504 |
#: app/features/mec/meta_boxes/display_options.php:438
|
3505 |
#: app/features/mec/meta_boxes/display_options.php:609
|
3506 |
#: app/features/mec/meta_boxes/display_options.php:614
|
3507 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3508 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3509 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3510 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3511 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3512 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3513 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3514 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3515 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3516 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3517 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3518 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3519 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3520 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3521 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3522 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3523 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3524 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3525 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
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 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3532 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3533 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
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 |
-
#: 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 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3543 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3544 |
msgid "Date Formats"
|
3545 |
msgstr "Datumsformate"
|
3546 |
|
@@ -3556,11 +3561,11 @@ msgstr "Standard Werte sind T, M und J"
|
|
3556 |
#: app/features/mec/meta_boxes/display_options.php:106
|
3557 |
#: app/features/mec/meta_boxes/display_options.php:297
|
3558 |
#: app/features/mec/meta_boxes/display_options.php:321
|
3559 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3560 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3561 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3562 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3563 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3564 |
msgid "Default values are d, F and l"
|
3565 |
msgstr ""
|
3566 |
"Standardwerte sind Tag, Monat als ganzes Wort und Wochentag als ganzes Wort"
|
@@ -3580,12 +3585,12 @@ msgstr "Die Standardwerte sind d and F"
|
|
3580 |
#: app/features/mec/meta_boxes/display_options.php:446
|
3581 |
#: app/features/mec/meta_boxes/display_options.php:622
|
3582 |
#: app/features/mec/meta_boxes/display_options.php:664
|
3583 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3584 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3585 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3586 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3587 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3588 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3589 |
msgid "eg. 6"
|
3590 |
msgstr "z.B. 6"
|
3591 |
|
@@ -3598,14 +3603,14 @@ msgstr "Event / Veranstaltungszeit verbergen"
|
|
3598 |
#: app/features/mec/meta_boxes/display_options.php:152
|
3599 |
#: app/features/mec/meta_boxes/display_options.php:354
|
3600 |
#: app/features/mec/meta_boxes/display_options.php:450
|
3601 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3602 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3603 |
msgid "Load More Button"
|
3604 |
msgstr "Button \"Weitere Veranstaltungen Laden\""
|
3605 |
|
3606 |
#: app/features/mec/meta_boxes/display_options.php:162
|
3607 |
#: app/features/mec/meta_boxes/display_options.php:460
|
3608 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3609 |
msgid "Show Month Divider"
|
3610 |
msgstr "Zeige Monatsteilung"
|
3611 |
|
@@ -3632,8 +3637,8 @@ msgstr "Zeige Monatsteilung"
|
|
3632 |
#: app/features/mec/meta_boxes/display_options.php:403
|
3633 |
#: app/features/mec/meta_boxes/display_options.php:498
|
3634 |
#: app/features/mec/meta_boxes/display_options.php:645
|
3635 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3636 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3637 |
#: app/features/mec/settings.php:268 app/features/mec/settings.php:283
|
3638 |
#: app/features/mec/settings.php:301 app/features/mec/settings.php:342
|
3639 |
#: app/features/mec/settings.php:357 app/features/mec/settings.php:375
|
@@ -3669,7 +3674,7 @@ msgid "Novel"
|
|
3669 |
msgstr ""
|
3670 |
|
3671 |
#: app/features/mec/meta_boxes/display_options.php:260
|
3672 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3673 |
#, fuzzy
|
3674 |
#| msgid "Default value is \"d F Y\""
|
3675 |
msgid "Default value is \"d F Y"
|
@@ -3688,16 +3693,16 @@ msgid "Default value is \"d F Y\""
|
|
3688 |
msgstr "Standardwert ist \"d (Tag) F Y (Jahr)\" "
|
3689 |
|
3690 |
#: app/features/mec/meta_boxes/display_options.php:338
|
3691 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3692 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3693 |
msgid "Count in row"
|
3694 |
msgstr "Zeilen zählen"
|
3695 |
|
3696 |
#: app/features/mec/meta_boxes/display_options.php:396
|
3697 |
#: app/features/mec/meta_boxes/display_options.php:587
|
3698 |
#: app/features/mec/meta_boxes/display_options.php:694
|
3699 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3700 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3701 |
#, php-format
|
3702 |
msgid "%s is required to use this skin."
|
3703 |
msgstr ""
|
@@ -3713,15 +3718,15 @@ msgstr "Standardansicht"
|
|
3713 |
|
3714 |
#: app/features/mec/meta_boxes/display_options.php:488
|
3715 |
#: app/features/mec/meta_boxes/display_options.php:509
|
3716 |
-
#: app/libraries/main.php:330 app/libraries/main.php:
|
3717 |
-
#: app/libraries/main.php:
|
3718 |
msgid "List View"
|
3719 |
msgstr "Listenansicht"
|
3720 |
|
3721 |
#: app/features/mec/meta_boxes/display_options.php:489
|
3722 |
#: app/features/mec/meta_boxes/display_options.php:519
|
3723 |
-
#: app/libraries/main.php:334 app/libraries/main.php:
|
3724 |
-
#: app/libraries/main.php:
|
3725 |
msgid "Yearly View"
|
3726 |
msgstr "Jahresansicht"
|
3727 |
|
@@ -3732,15 +3737,15 @@ msgstr "Monatliche Kalenderansicht"
|
|
3732 |
|
3733 |
#: app/features/mec/meta_boxes/display_options.php:491
|
3734 |
#: app/features/mec/meta_boxes/display_options.php:551
|
3735 |
-
#: app/libraries/main.php:337 app/libraries/main.php:
|
3736 |
-
#: app/libraries/main.php:
|
3737 |
msgid "Weekly View"
|
3738 |
msgstr "Wochenansicht"
|
3739 |
|
3740 |
#: app/features/mec/meta_boxes/display_options.php:492
|
3741 |
#: app/features/mec/meta_boxes/display_options.php:561
|
3742 |
-
#: app/libraries/main.php:336 app/libraries/main.php:
|
3743 |
-
#: app/libraries/main.php:
|
3744 |
msgid "Daily View"
|
3745 |
msgstr "Tagesansicht"
|
3746 |
|
@@ -3774,18 +3779,18 @@ msgstr "Start des nächsten Jahres"
|
|
3774 |
|
3775 |
#: app/features/mec/meta_boxes/display_options.php:621
|
3776 |
#: app/features/mec/meta_boxes/display_options.php:663
|
3777 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3778 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3779 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3780 |
msgid "Events per day"
|
3781 |
msgstr "Veranstaltungen pro Tag"
|
3782 |
|
3783 |
#: app/features/mec/meta_boxes/display_options.php:626
|
3784 |
#: app/features/mec/meta_boxes/display_options.php:668
|
3785 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3786 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3787 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3788 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3789 |
msgid "Next/Previous Buttons"
|
3790 |
msgstr "Schaltfläche \"Nächste/Letzte\""
|
3791 |
|
@@ -3800,10 +3805,10 @@ msgid "Uppercase Text"
|
|
3800 |
msgstr "Text"
|
3801 |
|
3802 |
#: app/features/mec/meta_boxes/display_options.php:686
|
3803 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3804 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3805 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3806 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3807 |
msgid "For showing next/previous month navigation."
|
3808 |
msgstr "Für die Navigation zum nächsten/letzten Monat"
|
3809 |
|
@@ -3819,274 +3824,274 @@ msgstr "z.B. 200"
|
|
3819 |
msgid "The geolocation feature works only in secure (https) websites."
|
3820 |
msgstr ""
|
3821 |
|
3822 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3823 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3824 |
msgid "Current Week"
|
3825 |
msgstr "Aktuelle Woche"
|
3826 |
|
3827 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3828 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3829 |
msgid "Next Week"
|
3830 |
msgstr "Nächste Woche"
|
3831 |
|
3832 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3833 |
msgid "Number of Days"
|
3834 |
msgstr ""
|
3835 |
|
3836 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3837 |
#, fuzzy
|
3838 |
#| msgid "Start"
|
3839 |
msgid "Week Start"
|
3840 |
msgstr "Start"
|
3841 |
|
3842 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3843 |
#, fuzzy
|
3844 |
#| msgid "Inherit from global options"
|
3845 |
msgid "Inherite from WordPress options"
|
3846 |
msgstr "Aus den globalen Einstellungen übernehmen"
|
3847 |
|
3848 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3849 |
msgid "1:00"
|
3850 |
msgstr ""
|
3851 |
|
3852 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3853 |
msgid "2:00"
|
3854 |
msgstr ""
|
3855 |
|
3856 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3857 |
msgid "3:00"
|
3858 |
msgstr ""
|
3859 |
|
3860 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3861 |
msgid "4:00"
|
3862 |
msgstr ""
|
3863 |
|
3864 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3865 |
msgid "5:00"
|
3866 |
msgstr ""
|
3867 |
|
3868 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3869 |
msgid "6:00"
|
3870 |
msgstr ""
|
3871 |
|
3872 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3873 |
msgid "7:00"
|
3874 |
msgstr ""
|
3875 |
|
3876 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3877 |
msgid "8:00"
|
3878 |
msgstr ""
|
3879 |
|
3880 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3881 |
msgid "9:00"
|
3882 |
msgstr ""
|
3883 |
|
3884 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3885 |
msgid "10:00"
|
3886 |
msgstr ""
|
3887 |
|
3888 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3889 |
msgid "11:00"
|
3890 |
msgstr ""
|
3891 |
|
3892 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3893 |
msgid "12:00"
|
3894 |
msgstr ""
|
3895 |
|
3896 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3897 |
msgid "13:00"
|
3898 |
msgstr ""
|
3899 |
|
3900 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3901 |
msgid "14:00"
|
3902 |
msgstr ""
|
3903 |
|
3904 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3905 |
msgid "15:00"
|
3906 |
msgstr ""
|
3907 |
|
3908 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3909 |
msgid "16:00"
|
3910 |
msgstr ""
|
3911 |
|
3912 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3913 |
msgid "17:00"
|
3914 |
msgstr ""
|
3915 |
|
3916 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3917 |
msgid "18:00"
|
3918 |
msgstr ""
|
3919 |
|
3920 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3921 |
msgid "19:00"
|
3922 |
msgstr ""
|
3923 |
|
3924 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3925 |
msgid "20:00"
|
3926 |
msgstr ""
|
3927 |
|
3928 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3929 |
msgid "21:00"
|
3930 |
msgstr ""
|
3931 |
|
3932 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3933 |
msgid "22:00"
|
3934 |
msgstr ""
|
3935 |
|
3936 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3937 |
msgid "23:00"
|
3938 |
msgstr ""
|
3939 |
|
3940 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3941 |
msgid "24:00"
|
3942 |
msgstr ""
|
3943 |
|
3944 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3945 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3946 |
msgid "Default values are j and F"
|
3947 |
msgstr "Standardwerte sind j und F"
|
3948 |
|
3949 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3950 |
msgid "eg. 24"
|
3951 |
msgstr "z.B. 24"
|
3952 |
|
3953 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3954 |
msgid "Filter By"
|
3955 |
msgstr "Filtern nach"
|
3956 |
|
3957 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3958 |
msgid "None"
|
3959 |
msgstr ""
|
3960 |
|
3961 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3962 |
msgid "Fit to row"
|
3963 |
msgstr ""
|
3964 |
|
3965 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3966 |
msgid ""
|
3967 |
"Items are arranged into rows. Rows progress vertically. Similar to what you "
|
3968 |
"would expect from a layout that uses CSS floats."
|
3969 |
msgstr ""
|
3970 |
|
3971 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3972 |
msgid "Convert Masonry to Grid"
|
3973 |
msgstr ""
|
3974 |
|
3975 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3976 |
msgid "For using this option, your events should come with image"
|
3977 |
msgstr ""
|
3978 |
|
3979 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3980 |
msgid "Default values are d, M and Y"
|
3981 |
msgstr "Standardwerte sind T, M und J"
|
3982 |
|
3983 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3984 |
msgid "Default values are \"F d\" and l"
|
3985 |
msgstr ""
|
3986 |
"Standardwerte sind Monat als ganzes Wort, Tag des Monates mit führender Null "
|
3987 |
"und ausgeschriebener Wochentag"
|
3988 |
|
3989 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3990 |
msgid "Default value is \"l, F d Y\""
|
3991 |
msgstr ""
|
3992 |
"Standardwerte sind ausgeschriebener Wochentag, Monat als ganzes Wort, Tag "
|
3993 |
"des Monates mit führender 0, Jahr"
|
3994 |
|
3995 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
3996 |
#: app/features/popup/shortcode.php:228
|
3997 |
msgid "Style 1"
|
3998 |
msgstr "Stil 1"
|
3999 |
|
4000 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
4001 |
#: app/features/popup/shortcode.php:233
|
4002 |
msgid "Style 2"
|
4003 |
msgstr "Stil 2"
|
4004 |
|
4005 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
4006 |
#: app/features/popup/shortcode.php:238
|
4007 |
msgid "Style 3"
|
4008 |
msgstr "Stil 3"
|
4009 |
|
4010 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
4011 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
4012 |
msgid "Default value is \"j F Y\""
|
4013 |
msgstr "Standardwert ist \"j F Y\""
|
4014 |
|
4015 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
4016 |
msgid "Default values are j, F and Y"
|
4017 |
msgstr ""
|
4018 |
"Standardwerte sind j ( Tag des Monats ohne führende Nullen), F und Y (Jahr)"
|
4019 |
|
4020 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
4021 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
4022 |
msgid " -- Next Upcoming Event -- "
|
4023 |
msgstr "-- Nächste Veranstaltung--"
|
4024 |
|
4025 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
4026 |
msgid "Background Color"
|
4027 |
msgstr "Hintergrund Farbe"
|
4028 |
|
4029 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
4030 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
4031 |
#: app/features/popup/shortcode.php:247 app/features/popup/shortcode.php:269
|
4032 |
msgid "Type 1"
|
4033 |
msgstr "Typ 1"
|
4034 |
|
4035 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
4036 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
4037 |
#: app/features/popup/shortcode.php:252 app/features/popup/shortcode.php:274
|
4038 |
msgid "Type 2"
|
4039 |
msgstr "Typ 2"
|
4040 |
|
4041 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
4042 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
4043 |
#: app/features/popup/shortcode.php:257 app/features/popup/shortcode.php:279
|
4044 |
msgid "Type 3"
|
4045 |
msgstr "Type 3"
|
4046 |
|
4047 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
4048 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
4049 |
#: app/features/popup/shortcode.php:262 app/features/popup/shortcode.php:284
|
4050 |
msgid "Type 4"
|
4051 |
msgstr "Typ 4"
|
4052 |
|
4053 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
4054 |
msgid "Default values are d, F and Y"
|
4055 |
msgstr "Standardwert ist d (Tag) F und Y (Jahr)"
|
4056 |
|
4057 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
4058 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
4059 |
msgid "Default value is \"M d, Y\""
|
4060 |
msgstr "Standardwert ist \"M T, J\""
|
4061 |
|
4062 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
4063 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
4064 |
msgid "Auto Play Time"
|
4065 |
msgstr "Auto Play Time"
|
4066 |
|
4067 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
4068 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
4069 |
msgid "eg. 3000 default is 3 second"
|
4070 |
msgstr "z.B. Voreinstellung 3000 sind 3 Sekunden"
|
4071 |
|
4072 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
4073 |
#, fuzzy
|
4074 |
#| msgid "Archive Page Skin"
|
4075 |
msgid "Archive Link"
|
4076 |
msgstr "Skin Seite Archiv"
|
4077 |
|
4078 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
4079 |
#, fuzzy
|
4080 |
#| msgid "Text"
|
4081 |
msgid "Head Text"
|
4082 |
msgstr "Text"
|
4083 |
|
4084 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
4085 |
#: app/features/popup/shortcode.php:289
|
4086 |
msgid "Type 5"
|
4087 |
msgstr "Typ 5"
|
4088 |
|
4089 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
4090 |
#, fuzzy
|
4091 |
#| msgid "Default values are j and F"
|
4092 |
msgid "Default values are j and M"
|
@@ -4281,10 +4286,10 @@ msgstr "Deaktiviert"
|
|
4281 |
#: app/features/mec/meta_boxes/search_form.php:535
|
4282 |
#: app/features/mec/meta_boxes/search_form.php:596
|
4283 |
#: app/features/mec/meta_boxes/search_form.php:693
|
4284 |
-
#: app/features/mec/settings.php:827 app/features/mec/single.php:
|
4285 |
#: app/features/search.php:83 app/features/speakers.php:61
|
4286 |
-
#: app/features/speakers.php:269 app/libraries/main.php:
|
4287 |
-
#: app/libraries/skins.php:
|
4288 |
msgid "Speaker"
|
4289 |
msgstr ""
|
4290 |
|
@@ -4299,8 +4304,8 @@ msgstr ""
|
|
4299 |
#: app/features/mec/meta_boxes/search_form.php:542
|
4300 |
#: app/features/mec/meta_boxes/search_form.php:603
|
4301 |
#: app/features/mec/meta_boxes/search_form.php:700
|
4302 |
-
#: app/features/mec/settings.php:834 app/features/mec/single.php:
|
4303 |
-
#: app/features/search.php:88 app/libraries/skins.php:
|
4304 |
#, fuzzy
|
4305 |
#| msgid "Tags"
|
4306 |
msgid "Tag"
|
@@ -4384,7 +4389,7 @@ msgstr ""
|
|
4384 |
msgid "Show Google Maps on event page"
|
4385 |
msgstr "Google Maps auf der Veranstaltungsseite anzeigen"
|
4386 |
|
4387 |
-
#: app/features/mec/modules.php:80 app/features/mec/modules.php:
|
4388 |
#: app/features/mec/settings.php:864 app/features/mec/settings.php:869
|
4389 |
#: app/features/mec/settings.php:917 app/features/mec/settings.php:941
|
4390 |
#: app/features/mec/settings.php:965
|
@@ -4450,111 +4455,111 @@ msgid "Check it only if another plugin/theme is loading the Google Maps API"
|
|
4450 |
msgstr ""
|
4451 |
"Checken Sie es nur wenn ein anderes plugin/Thema die Google Maps API lädt."
|
4452 |
|
4453 |
-
#: app/features/mec/modules.php:
|
4454 |
#, fuzzy
|
4455 |
#| msgid "Import Options"
|
4456 |
msgid "Export Options"
|
4457 |
msgstr "Import Optionen"
|
4458 |
|
4459 |
-
#: app/features/mec/modules.php:
|
4460 |
msgid ""
|
4461 |
"Show export module (iCal export and add to Google calendars) on event page"
|
4462 |
msgstr ""
|
4463 |
"Exportmodule auf Veranstaltungsseite anzeigen (iCal export und hinzufügen zu "
|
4464 |
"Google calendars)"
|
4465 |
|
4466 |
-
#: app/features/mec/modules.php:
|
4467 |
msgid "Google Calendar"
|
4468 |
msgstr "Google Calendar"
|
4469 |
|
4470 |
-
#: app/features/mec/modules.php:
|
4471 |
-
#: app/modules/local-time/details.php:
|
4472 |
msgid "Local Time"
|
4473 |
msgstr "Lokale Zeit"
|
4474 |
|
4475 |
-
#: app/features/mec/modules.php:
|
4476 |
msgid "Show event time based on local time of visitor on event page"
|
4477 |
msgstr ""
|
4478 |
"Zeige die Eventzeit basierend auf der Ortszeit des Besuchers auf der "
|
4479 |
"Eventseite"
|
4480 |
|
4481 |
-
#: app/features/mec/modules.php:
|
4482 |
#: app/modules/qrcode/details.php:38 app/widgets/single.php:155
|
4483 |
msgid "QR Code"
|
4484 |
msgstr "QR Code"
|
4485 |
|
4486 |
-
#: app/features/mec/modules.php:
|
4487 |
msgid "Show QR code of event in details page and booking invoice"
|
4488 |
msgstr ""
|
4489 |
"Zeigen Sie QR-Code des Events in der Detailseite und in der Buchungsrechnung "
|
4490 |
"an"
|
4491 |
|
4492 |
-
#: app/features/mec/modules.php:
|
4493 |
#: app/modules/weather/details.php:37
|
4494 |
msgid "Weather"
|
4495 |
msgstr "Wetter"
|
4496 |
|
4497 |
-
#: app/features/mec/modules.php:
|
4498 |
msgid "Show weather module on event page"
|
4499 |
msgstr "Wettermodul auf der Eventseite anzeigen"
|
4500 |
|
4501 |
-
#: app/features/mec/modules.php:
|
4502 |
#, php-format
|
4503 |
msgid "You can get a free API Key from %s"
|
4504 |
msgstr "Sie können einen kostenlosen API-Schlüssel von% s erhalten"
|
4505 |
|
4506 |
-
#: app/features/mec/modules.php:
|
4507 |
#, fuzzy
|
4508 |
#| msgid "Show weather module on event page"
|
4509 |
msgid "Show weather imperial units"
|
4510 |
msgstr "Wettermodul auf der Eventseite anzeigen"
|
4511 |
|
4512 |
-
#: app/features/mec/modules.php:
|
4513 |
msgid "Show weather change units button"
|
4514 |
msgstr ""
|
4515 |
|
4516 |
-
#: app/features/mec/modules.php:
|
4517 |
msgid "Show social network module"
|
4518 |
msgstr "Modul für Soziale Netzwerke anzeigen"
|
4519 |
|
4520 |
-
#: app/features/mec/modules.php:
|
4521 |
#: app/modules/next-event/details.php:86
|
4522 |
msgid "Next Event"
|
4523 |
msgstr "Nächstes Event"
|
4524 |
|
4525 |
-
#: app/features/mec/modules.php:
|
4526 |
msgid "Show next event module on event page"
|
4527 |
msgstr "Nächstes Event Modul auf der Eventseite anzeigen"
|
4528 |
|
4529 |
-
#: app/features/mec/modules.php:
|
4530 |
msgid "Method"
|
4531 |
msgstr "Methode"
|
4532 |
|
4533 |
-
#: app/features/mec/modules.php:
|
4534 |
msgid "Next Occurrence of Current Event"
|
4535 |
msgstr "Nächstes Auftreten des aktuellen Events"
|
4536 |
|
4537 |
-
#: app/features/mec/modules.php:
|
4538 |
msgid "Next Occurrence of Other Events"
|
4539 |
msgstr "Nächstes Auftreten von anderen Events."
|
4540 |
|
4541 |
-
#: app/features/mec/modules.php:
|
4542 |
msgid "Default is M d Y"
|
4543 |
msgstr "Standardwert ist M-T-J"
|
4544 |
|
4545 |
-
#: app/features/mec/modules.php:
|
4546 |
msgid "Enable BuddyPress Integration"
|
4547 |
msgstr "Buddy Press Integration deaktivieren"
|
4548 |
|
4549 |
-
#: app/features/mec/modules.php:
|
4550 |
msgid "Show \"Attendees Module\" in event details page"
|
4551 |
msgstr "Zeigt \"Teilnehmermodul\" in Event Details Seite"
|
4552 |
|
4553 |
-
#: app/features/mec/modules.php:
|
4554 |
msgid "Attendees Limit"
|
4555 |
msgstr "Teilnehmer Limit, maximale Anzahl"
|
4556 |
|
4557 |
-
#: app/features/mec/modules.php:
|
4558 |
msgid "Add booking activity to user profile"
|
4559 |
msgstr "Fügt Buchungsaktivitäten dem Benutzerprofil hinzu"
|
4560 |
|
@@ -5041,7 +5046,7 @@ msgstr ""
|
|
5041 |
"Informieren, dass eine neue Buchung eingegangen ist."
|
5042 |
|
5043 |
#: app/features/mec/notifications.php:530 app/libraries/main.php:581
|
5044 |
-
#: app/libraries/notifications.php:
|
5045 |
msgid "Booking Reminder"
|
5046 |
msgstr "Buchungs Erinnerung"
|
5047 |
|
@@ -5309,7 +5314,7 @@ msgid "You can enable/disable Schema scripts"
|
|
5309 |
msgstr ""
|
5310 |
|
5311 |
#: app/features/mec/settings.php:160 app/features/mec/settings.php:170
|
5312 |
-
#: app/libraries/main.php:
|
5313 |
msgid "Weekdays"
|
5314 |
msgstr "Wochentage"
|
5315 |
|
@@ -5936,47 +5941,64 @@ msgid ""
|
|
5936 |
"checkbox unchecked."
|
5937 |
msgstr ""
|
5938 |
|
5939 |
-
#: app/features/mec/single.php:
|
5940 |
msgid "Breadcrumbs"
|
5941 |
msgstr ""
|
5942 |
|
5943 |
-
#: app/features/mec/single.php:
|
5944 |
msgid "Enable Breadcrumbs."
|
5945 |
msgstr ""
|
5946 |
|
5947 |
-
#: app/features/mec/single.php:
|
5948 |
msgid "Check this option, for showing the breadcrumbs on single event page"
|
5949 |
msgstr ""
|
5950 |
|
5951 |
-
#: app/features/mec/single.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5952 |
msgid "Show countdown module on event page"
|
5953 |
msgstr "Countdownmodul auf Veranstaltungsseite anzeigen"
|
5954 |
|
5955 |
-
#: app/features/mec/single.php:
|
5956 |
msgid "Countdown Style"
|
5957 |
msgstr "Countdown Stil"
|
5958 |
|
5959 |
-
#: app/features/mec/single.php:
|
5960 |
msgid "Plain Style"
|
5961 |
msgstr "Einfacher schlichter Stil"
|
5962 |
|
5963 |
-
#: app/features/mec/single.php:
|
5964 |
msgid "Flip Style"
|
5965 |
msgstr "Flip Stil"
|
5966 |
|
5967 |
-
#: app/features/mec/single.php:
|
5968 |
#, fuzzy
|
5969 |
#| msgid "Exceptional days"
|
5970 |
msgid "Exceptional days (Exclude Dates)"
|
5971 |
msgstr "Ausgesuchte ausnehmende Tage"
|
5972 |
|
5973 |
-
#: app/features/mec/single.php:
|
5974 |
msgid "Show exceptional days option on Add/Edit events page"
|
5975 |
msgstr ""
|
5976 |
"Ausnehmende Tage anzeigen auf der Seite Ereignisse hinzufügen / bearbeiten "
|
5977 |
"(Show exceptional days option on Add/Edit events page)"
|
5978 |
|
5979 |
-
#: app/features/mec/single.php:
|
5980 |
#, fuzzy
|
5981 |
#| msgid ""
|
5982 |
#| "Using this option you can include/exclude certain days to/from event "
|
@@ -5987,11 +6009,11 @@ msgstr ""
|
|
5987 |
"Mit dieser Option können Sie bestimmte Tage von vorkommenden Eventdaten ein-/"
|
5988 |
"ausschließen."
|
5989 |
|
5990 |
-
#: app/features/mec/single.php:
|
5991 |
msgid "Additional Organizers"
|
5992 |
msgstr "Zusätzliche Organisatoren"
|
5993 |
|
5994 |
-
#: app/features/mec/single.php:
|
5995 |
msgid ""
|
5996 |
"Show additional organizers option on Add/Edit events page and single event "
|
5997 |
"page."
|
@@ -5999,13 +6021,17 @@ msgstr ""
|
|
5999 |
"Zeigen Sie zusätzliche Organisatoren auf der Seite Events hinzufügen / "
|
6000 |
"bearbeiten und auf der Seite für einzelne Events an."
|
6001 |
|
6002 |
-
#: app/features/mec/single.php:
|
|
|
|
|
|
|
|
|
6003 |
#, fuzzy
|
6004 |
#| msgid "Additional Organizers"
|
6005 |
msgid "Additional locations"
|
6006 |
msgstr "Zusätzliche Organisatoren"
|
6007 |
|
6008 |
-
#: app/features/mec/single.php:
|
6009 |
#, fuzzy
|
6010 |
#| msgid ""
|
6011 |
#| "Show additional organizers option on Add/Edit events page and single "
|
@@ -6017,18 +6043,18 @@ msgstr ""
|
|
6017 |
"Zeigen Sie zusätzliche Organisatoren auf der Seite Events hinzufügen / "
|
6018 |
"bearbeiten und auf der Seite für einzelne Events an."
|
6019 |
|
6020 |
-
#: app/features/mec/single.php:
|
6021 |
#: app/skins/single.php:163
|
6022 |
#, fuzzy
|
6023 |
#| msgid "featured event"
|
6024 |
msgid "Related Events"
|
6025 |
msgstr "Ausgewählte Veranstaltung"
|
6026 |
|
6027 |
-
#: app/features/mec/single.php:
|
6028 |
msgid "Display related events based on taxonomy in single event page."
|
6029 |
msgstr ""
|
6030 |
|
6031 |
-
#: app/features/mec/single.php:
|
6032 |
#, fuzzy
|
6033 |
#| msgid "Taxonomies"
|
6034 |
msgid "Select Taxonomies:"
|
@@ -6614,7 +6640,7 @@ msgstr "z.B.. max@mustermann.com"
|
|
6614 |
msgid "eg. https://webnus.net"
|
6615 |
msgstr "http://webnus.net"
|
6616 |
|
6617 |
-
#: app/features/organizers.php:312 app/libraries/main.php:
|
6618 |
#: app/skins/single.php:862
|
6619 |
msgid "Other Organizers"
|
6620 |
msgstr "Andere Veranstalter"
|
@@ -6692,7 +6718,7 @@ msgstr "Neuen Shortcode hinzufügen"
|
|
6692 |
msgid "Please %s/%s in order to see your bookings / profile."
|
6693 |
msgstr "Um neue Veranstaltungen einzugeben, bitte %s/%s"
|
6694 |
|
6695 |
-
#: app/features/profile/profile.php:18 app/libraries/main.php:
|
6696 |
#, fuzzy
|
6697 |
#| msgid "Your booking cannot be canceled."
|
6698 |
msgid "Your booking already canceled!"
|
@@ -6702,11 +6728,11 @@ msgstr "Ihre Buchung kann nicht storniert werden."
|
|
6702 |
msgid "#"
|
6703 |
msgstr ""
|
6704 |
|
6705 |
-
#: app/features/profile/profile.php:56 app/libraries/main.php:
|
6706 |
msgid "Status"
|
6707 |
msgstr ""
|
6708 |
|
6709 |
-
#: app/features/profile/profile.php:59 app/libraries/main.php:
|
6710 |
msgid "Attendees"
|
6711 |
msgstr "Teilnehmer"
|
6712 |
|
@@ -6739,7 +6765,7 @@ msgstr ""
|
|
6739 |
msgid "No bookings found!"
|
6740 |
msgstr "Keine Buchungen gefunden"
|
6741 |
|
6742 |
-
#: app/features/search.php:93 app/libraries/main.php:
|
6743 |
msgid "label"
|
6744 |
msgstr "label"
|
6745 |
|
@@ -6766,13 +6792,15 @@ msgid "No search result."
|
|
6766 |
msgstr ""
|
6767 |
|
6768 |
#: app/features/search_bar/search_result.php:11
|
6769 |
-
#: app/libraries/notifications.php:
|
6770 |
-
#: app/modules/local-time/details.php:
|
6771 |
#: app/skins/single.php:160 app/skins/single.php:753
|
6772 |
-
#: app/skins/single/default.php:108 app/skins/single/default.php:
|
6773 |
-
#: app/skins/single/m1.php:43 app/skins/single/modern.php:
|
6774 |
-
|
6775 |
-
|
|
|
|
|
6776 |
|
6777 |
#: app/features/speakers.php:111 app/features/speakers.php:188
|
6778 |
#: app/features/speakers.php:270
|
@@ -6864,11 +6892,11 @@ msgstr ""
|
|
6864 |
msgid "%s Price"
|
6865 |
msgstr "%s Preis"
|
6866 |
|
6867 |
-
#: app/libraries/book.php:
|
6868 |
msgid "Discount"
|
6869 |
msgstr "Rabatt"
|
6870 |
|
6871 |
-
#: app/libraries/book.php:
|
6872 |
#: app/modules/booking/default.php:401
|
6873 |
msgid "Download Invoice"
|
6874 |
msgstr "Download Rechnung"
|
@@ -6898,7 +6926,7 @@ msgstr ""
|
|
6898 |
msgid "day"
|
6899 |
msgstr "Tag"
|
6900 |
|
6901 |
-
#: app/libraries/factory.php:363 app/modules/countdown/details.php:
|
6902 |
#: app/skins/available_spot/tpl.php:165 app/skins/countdown/tpl.php:158
|
6903 |
#: app/skins/countdown/tpl.php:202 app/skins/countdown/tpl.php:251
|
6904 |
msgid "days"
|
@@ -6908,7 +6936,7 @@ msgstr "Tage"
|
|
6908 |
msgid "hour"
|
6909 |
msgstr "Stunde"
|
6910 |
|
6911 |
-
#: app/libraries/factory.php:365 app/modules/countdown/details.php:
|
6912 |
#: app/skins/available_spot/tpl.php:169 app/skins/countdown/tpl.php:164
|
6913 |
#: app/skins/countdown/tpl.php:208 app/skins/countdown/tpl.php:257
|
6914 |
msgid "hours"
|
@@ -6918,7 +6946,7 @@ msgstr "Stunden"
|
|
6918 |
msgid "minute"
|
6919 |
msgstr "Minute"
|
6920 |
|
6921 |
-
#: app/libraries/factory.php:367 app/modules/countdown/details.php:
|
6922 |
#: app/skins/available_spot/tpl.php:173 app/skins/countdown/tpl.php:170
|
6923 |
#: app/skins/countdown/tpl.php:214 app/skins/countdown/tpl.php:263
|
6924 |
msgid "minutes"
|
@@ -6928,7 +6956,7 @@ msgstr "Minuten"
|
|
6928 |
msgid "second"
|
6929 |
msgstr "Sekunde"
|
6930 |
|
6931 |
-
#: app/libraries/factory.php:369 app/modules/countdown/details.php:
|
6932 |
#: app/skins/available_spot/tpl.php:177 app/skins/countdown/tpl.php:176
|
6933 |
#: app/skins/countdown/tpl.php:220 app/skins/countdown/tpl.php:269
|
6934 |
msgid "seconds"
|
@@ -6948,38 +6976,38 @@ msgstr ""
|
|
6948 |
"Eine Vorschau kann nicht angezeit werden, da es sich um einen geschützen "
|
6949 |
"Beitrag handelt."
|
6950 |
|
6951 |
-
#: app/libraries/main.php:331 app/libraries/main.php:
|
6952 |
-
#: app/libraries/main.php:
|
6953 |
msgid "Grid View"
|
6954 |
msgstr "Rasterdarstellung"
|
6955 |
|
6956 |
-
#: app/libraries/main.php:332 app/libraries/main.php:
|
6957 |
-
#: app/libraries/main.php:
|
6958 |
msgid "Agenda View"
|
6959 |
msgstr "Agendaansicht"
|
6960 |
|
6961 |
-
#: app/libraries/main.php:333 app/libraries/main.php:
|
6962 |
-
#: app/libraries/main.php:
|
6963 |
msgid "Full Calendar"
|
6964 |
msgstr "Ganzer Kalender"
|
6965 |
|
6966 |
-
#: app/libraries/main.php:335 app/libraries/main.php:
|
6967 |
-
#: app/libraries/main.php:
|
6968 |
msgid "Calendar/Monthly View"
|
6969 |
msgstr "Kalender-/Monatsansicht"
|
6970 |
|
6971 |
-
#: app/libraries/main.php:338 app/libraries/main.php:
|
6972 |
-
#: app/libraries/main.php:
|
6973 |
msgid "Timetable View"
|
6974 |
msgstr "Stundenplan"
|
6975 |
|
6976 |
-
#: app/libraries/main.php:339 app/libraries/main.php:
|
6977 |
-
#: app/libraries/main.php:
|
6978 |
msgid "Masonry View"
|
6979 |
msgstr "Kachel Ansicht"
|
6980 |
|
6981 |
-
#: app/libraries/main.php:340 app/libraries/main.php:
|
6982 |
-
#: app/libraries/main.php:
|
6983 |
msgid "Map View"
|
6984 |
msgstr "Kartenansicht"
|
6985 |
|
@@ -7015,31 +7043,31 @@ msgstr "Stundenplan"
|
|
7015 |
msgid "Tile View"
|
7016 |
msgstr "Stundenplan"
|
7017 |
|
7018 |
-
#: app/libraries/main.php:385 app/libraries/main.php:
|
7019 |
msgid "SU"
|
7020 |
msgstr "SO"
|
7021 |
|
7022 |
-
#: app/libraries/main.php:386 app/libraries/main.php:
|
7023 |
msgid "MO"
|
7024 |
msgstr "MO"
|
7025 |
|
7026 |
-
#: app/libraries/main.php:387 app/libraries/main.php:
|
7027 |
msgid "TU"
|
7028 |
msgstr "DI"
|
7029 |
|
7030 |
-
#: app/libraries/main.php:388 app/libraries/main.php:
|
7031 |
msgid "WE"
|
7032 |
msgstr "MI"
|
7033 |
|
7034 |
-
#: app/libraries/main.php:389 app/libraries/main.php:
|
7035 |
msgid "TH"
|
7036 |
msgstr "DO"
|
7037 |
|
7038 |
-
#: app/libraries/main.php:390 app/libraries/main.php:
|
7039 |
msgid "FR"
|
7040 |
msgstr "FR"
|
7041 |
|
7042 |
-
#: app/libraries/main.php:391 app/libraries/main.php:
|
7043 |
msgid "SA"
|
7044 |
msgstr "SA"
|
7045 |
|
@@ -7106,375 +7134,381 @@ msgid ""
|
|
7106 |
"events. Users can now log in to purchase tickets."
|
7107 |
msgstr ""
|
7108 |
|
7109 |
-
#: app/libraries/main.php:
|
7110 |
msgid "Events at this location"
|
7111 |
msgstr "Veranstaltungen an diesem Ort "
|
7112 |
|
7113 |
-
#: app/libraries/main.php:
|
7114 |
msgid "Event at this location"
|
7115 |
msgstr "Veranstaltung an diesem Ort "
|
7116 |
|
7117 |
-
#: app/libraries/main.php:
|
7118 |
msgid "Facebook"
|
7119 |
msgstr "Facebook"
|
7120 |
|
7121 |
-
#: app/libraries/main.php:
|
7122 |
msgid "Twitter"
|
7123 |
msgstr "Twitter"
|
7124 |
|
7125 |
-
#: app/libraries/main.php:
|
7126 |
msgid "Linkedin"
|
7127 |
msgstr "Linkedin"
|
7128 |
|
7129 |
-
#: app/libraries/main.php:
|
7130 |
msgid "VK"
|
7131 |
msgstr ""
|
7132 |
|
7133 |
-
#: app/libraries/main.php:
|
7134 |
msgid "Tumblr"
|
7135 |
msgstr ""
|
7136 |
|
7137 |
-
#: app/libraries/main.php:
|
7138 |
msgid "Pinterest"
|
7139 |
msgstr ""
|
7140 |
|
7141 |
-
#: app/libraries/main.php:
|
7142 |
msgid "Flipboard"
|
7143 |
msgstr ""
|
7144 |
|
7145 |
-
#: app/libraries/main.php:
|
7146 |
#, fuzzy
|
7147 |
#| msgid "Tickets"
|
7148 |
msgid "GetPocket"
|
7149 |
msgstr "Tickets"
|
7150 |
|
7151 |
-
#: app/libraries/main.php:
|
7152 |
msgid "Reddit"
|
7153 |
msgstr ""
|
7154 |
|
7155 |
-
#: app/libraries/main.php:
|
7156 |
msgid "WhatsApp"
|
7157 |
msgstr ""
|
7158 |
|
7159 |
-
#: app/libraries/main.php:
|
7160 |
msgid "Telegram"
|
7161 |
msgstr ""
|
7162 |
|
7163 |
-
#: app/libraries/main.php:
|
7164 |
msgid "Share on Facebook"
|
7165 |
msgstr "Teilen auf Facebook"
|
7166 |
|
7167 |
-
#: app/libraries/main.php:
|
7168 |
msgid "Tweet"
|
7169 |
msgstr "Tweet"
|
7170 |
|
7171 |
-
#: app/libraries/main.php:
|
7172 |
#, fuzzy
|
7173 |
#| msgid "Share on Facebook"
|
7174 |
msgid "Share on Tumblr"
|
7175 |
msgstr "Teilen auf Facebook"
|
7176 |
|
7177 |
-
#: app/libraries/main.php:
|
7178 |
msgid "Share on Pinterest"
|
7179 |
msgstr ""
|
7180 |
|
7181 |
-
#: app/libraries/main.php:
|
7182 |
#, fuzzy
|
7183 |
#| msgid "Share on Facebook"
|
7184 |
msgid "Share on Flipboard"
|
7185 |
msgstr "Teilen auf Facebook"
|
7186 |
|
7187 |
-
#: app/libraries/main.php:
|
7188 |
#, fuzzy
|
7189 |
#| msgid "Share on Facebook"
|
7190 |
msgid "Share on GetPocket"
|
7191 |
msgstr "Teilen auf Facebook"
|
7192 |
|
7193 |
-
#: app/libraries/main.php:
|
7194 |
#, fuzzy
|
7195 |
#| msgid "Share on Facebook"
|
7196 |
msgid "Share on Reddit"
|
7197 |
msgstr "Teilen auf Facebook"
|
7198 |
|
7199 |
-
#: app/libraries/main.php:
|
7200 |
msgid "Share on Telegram"
|
7201 |
msgstr ""
|
7202 |
|
7203 |
-
#: app/libraries/main.php:
|
7204 |
msgid "Share on WhatsApp"
|
7205 |
msgstr ""
|
7206 |
|
7207 |
-
#: app/libraries/main.php:
|
7208 |
#, fuzzy
|
7209 |
#| msgid "Shortcode"
|
7210 |
msgid "Custom Shortcode"
|
7211 |
msgstr "Shortcode"
|
7212 |
|
7213 |
-
#: app/libraries/main.php:
|
7214 |
#, fuzzy
|
7215 |
#| msgid "Your booking successfully verified."
|
7216 |
msgid "Your booking already verified!"
|
7217 |
msgstr "Ihre Buchung wurde erfolgreich verifiziert."
|
7218 |
|
7219 |
-
#: app/libraries/main.php:
|
7220 |
msgid "Your booking successfully verified."
|
7221 |
msgstr "Ihre Buchung wurde erfolgreich verifiziert."
|
7222 |
|
7223 |
-
#: app/libraries/main.php:
|
7224 |
msgid "Your booking cannot verify!"
|
7225 |
msgstr "Ihre Buchung kann nicht verifiziert werden!"
|
7226 |
|
7227 |
-
#: app/libraries/main.php:
|
7228 |
msgid "Your booking successfully canceled."
|
7229 |
msgstr "Ihre Buchung wurde erfolgreich storniert."
|
7230 |
|
7231 |
-
#: app/libraries/main.php:
|
7232 |
msgid "Your booking cannot be canceled."
|
7233 |
msgstr "Ihre Buchung kann nicht storniert werden."
|
7234 |
|
7235 |
-
#: app/libraries/main.php:
|
7236 |
msgid "You canceled the payment successfully."
|
7237 |
msgstr "Sie haben die Zahlung erfolgreich storniert."
|
7238 |
|
7239 |
-
#: app/libraries/main.php:
|
7240 |
msgid "You returned from payment gateway successfully."
|
7241 |
msgstr "Sie sind vom Bezahlungs-Gateway erfolgreich zurückgekehrt."
|
7242 |
|
7243 |
-
#: app/libraries/main.php:
|
7244 |
#, fuzzy
|
7245 |
#| msgid "Cannot find the booking!"
|
7246 |
msgid "Cannot find the invoice!"
|
7247 |
msgstr "Kann die Buchung nicht finden!"
|
7248 |
|
7249 |
-
#: app/libraries/main.php:
|
7250 |
#, fuzzy
|
7251 |
#| msgid "Booking is invalid."
|
7252 |
msgid "Invoice is invalid."
|
7253 |
msgstr "Buchung ist ungültig."
|
7254 |
|
7255 |
-
#: app/libraries/main.php:
|
7256 |
msgid ""
|
7257 |
"Your booking still is not confirmed. You able download it after confirmation!"
|
7258 |
msgstr ""
|
7259 |
|
7260 |
-
#: app/libraries/main.php:
|
7261 |
#, fuzzy
|
7262 |
#| msgid "Booking Confirmation"
|
7263 |
msgid "Booking Not Confirmed."
|
7264 |
msgstr "Buchungsbestätigung"
|
7265 |
|
7266 |
-
#: app/libraries/main.php:
|
7267 |
msgid "Cannot find the booking!"
|
7268 |
msgstr "Kann die Buchung nicht finden!"
|
7269 |
|
7270 |
-
#: app/libraries/main.php:
|
7271 |
msgid "Booking is invalid."
|
7272 |
msgstr "Buchung ist ungültig."
|
7273 |
|
7274 |
-
#: app/libraries/main.php:
|
7275 |
#, php-format
|
7276 |
msgid "%s Invoice"
|
7277 |
msgstr "% s Rechnung"
|
7278 |
|
7279 |
-
#: app/libraries/main.php:
|
7280 |
msgid "Billing"
|
7281 |
msgstr "Abrechnung"
|
7282 |
|
7283 |
-
#: app/libraries/main.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
7284 |
msgid "Total"
|
7285 |
msgstr "Gesamt"
|
7286 |
|
7287 |
-
#: app/libraries/main.php:
|
7288 |
msgid "Payment"
|
7289 |
msgstr "Bezahlung"
|
7290 |
|
7291 |
-
#: app/libraries/main.php:
|
7292 |
msgid "Gateway"
|
7293 |
msgstr "Gateway"
|
7294 |
|
7295 |
-
#: app/libraries/main.php:
|
7296 |
#, fuzzy
|
7297 |
#| msgid "Payment"
|
7298 |
msgid "Payment Time"
|
7299 |
msgstr "Bezahlung"
|
7300 |
|
7301 |
-
#: app/libraries/main.php:
|
7302 |
#, fuzzy
|
7303 |
#| msgid "Request is invalid!"
|
7304 |
msgid "Request is not valid."
|
7305 |
msgstr "Die Anfrage ist ungültig!"
|
7306 |
|
7307 |
-
#: app/libraries/main.php:
|
7308 |
msgid "iCal export stopped!"
|
7309 |
msgstr "iCal Export wurde unterbrochen!"
|
7310 |
|
7311 |
-
#: app/libraries/main.php:
|
7312 |
-
#: app/libraries/main.php:
|
7313 |
-
#: app/libraries/main.php:
|
7314 |
-
#: app/libraries/main.php:
|
7315 |
-
#: app/libraries/main.php:
|
7316 |
-
#: app/libraries/main.php:
|
7317 |
-
#: app/libraries/main.php:
|
7318 |
msgid "Sort"
|
7319 |
msgstr "Sortieren"
|
7320 |
|
7321 |
-
#: app/libraries/main.php:
|
7322 |
-
#: app/libraries/main.php:
|
7323 |
-
#: app/libraries/main.php:
|
7324 |
-
#: app/libraries/main.php:
|
7325 |
-
#: app/libraries/main.php:
|
7326 |
-
#: app/libraries/main.php:
|
7327 |
msgid "Required Field"
|
7328 |
msgstr "Pflichtfeld"
|
7329 |
|
7330 |
-
#: app/libraries/main.php:
|
7331 |
-
#: app/libraries/main.php:
|
7332 |
-
#: app/libraries/main.php:
|
7333 |
-
#: app/libraries/main.php:
|
7334 |
-
#: app/libraries/main.php:
|
7335 |
-
#: app/libraries/main.php:
|
7336 |
msgid "Insert a label for this field"
|
7337 |
msgstr "Geben Sie eine Bezeichnung (Label) für dieses Feld ein."
|
7338 |
|
7339 |
-
#: app/libraries/main.php:
|
7340 |
msgid "HTML and shortcode are allowed."
|
7341 |
msgstr "HTML und shortcodes sind erlaubt."
|
7342 |
|
7343 |
-
#: app/libraries/main.php:
|
7344 |
-
#: app/libraries/main.php:
|
7345 |
msgid "Option"
|
7346 |
msgstr "Option"
|
7347 |
|
7348 |
-
#: app/libraries/main.php:
|
7349 |
#, php-format
|
7350 |
msgid "Instead of %s, the page title with a link will be show."
|
7351 |
msgstr "Anstelle von %s, wird der Seitentitel mit einem Link gezeigt"
|
7352 |
|
7353 |
-
#: app/libraries/main.php:
|
7354 |
msgid "Agreement Page"
|
7355 |
msgstr "Zustimmungsseite"
|
7356 |
|
7357 |
-
#: app/libraries/main.php:
|
7358 |
msgid "Checked by default"
|
7359 |
msgstr ""
|
7360 |
|
7361 |
-
#: app/libraries/main.php:
|
7362 |
msgid "Unchecked by default"
|
7363 |
msgstr ""
|
7364 |
|
7365 |
-
#: app/libraries/main.php:
|
7366 |
msgid "Insert a label for this option"
|
7367 |
msgstr "Ein neues Label für diese Option einfügen"
|
7368 |
|
7369 |
-
#: app/libraries/main.php:
|
7370 |
msgid "Free"
|
7371 |
msgstr "kostenfrei"
|
7372 |
|
7373 |
-
#: app/libraries/main.php:
|
7374 |
#, fuzzy
|
7375 |
#| msgid "M.E. Calendar"
|
7376 |
msgid "M.E. Calender"
|
7377 |
msgstr "M.E. Calender"
|
7378 |
|
7379 |
-
#: app/libraries/main.php:
|
7380 |
#, php-format
|
7381 |
msgid "Copy of %s"
|
7382 |
msgstr "Kopie von %s"
|
7383 |
|
7384 |
-
#: app/libraries/main.php:
|
7385 |
msgid "Booked an event."
|
7386 |
msgstr "Eine Veranstaltung wurde gebucht."
|
7387 |
|
7388 |
-
#: app/libraries/main.php:
|
7389 |
#, php-format
|
7390 |
msgid "%s booked %s event."
|
7391 |
msgstr "%s gebuchtes %s Event"
|
7392 |
|
7393 |
-
#: app/libraries/main.php:
|
7394 |
msgid "Taxonomies"
|
7395 |
msgstr "Klassifizierung "
|
7396 |
|
7397 |
-
#: app/libraries/main.php:
|
7398 |
msgid "Category Plural Label"
|
7399 |
msgstr "Kategorien"
|
7400 |
|
7401 |
-
#: app/libraries/main.php:
|
7402 |
msgid "Category Singular Label"
|
7403 |
msgstr "Kategorie"
|
7404 |
|
7405 |
-
#: app/libraries/main.php:
|
7406 |
msgid "Label Plural Label"
|
7407 |
msgstr "Labels"
|
7408 |
|
7409 |
-
#: app/libraries/main.php:
|
7410 |
msgid "Label Singular Label"
|
7411 |
msgstr "Label"
|
7412 |
|
7413 |
-
#: app/libraries/main.php:
|
7414 |
msgid "Location Plural Label"
|
7415 |
msgstr "Veranstaltungsorte"
|
7416 |
|
7417 |
-
#: app/libraries/main.php:
|
7418 |
msgid "Location Singular Label"
|
7419 |
msgstr "Veranstaltungsort"
|
7420 |
|
7421 |
-
#: app/libraries/main.php:
|
7422 |
msgid "Organizer Plural Label"
|
7423 |
msgstr "Veranstalter"
|
7424 |
|
7425 |
-
#: app/libraries/main.php:
|
7426 |
msgid "Organizer Singular Label"
|
7427 |
msgstr "Veranstalter"
|
7428 |
|
7429 |
-
#: app/libraries/main.php:
|
7430 |
#, fuzzy
|
7431 |
#| msgid "Label Plural Label"
|
7432 |
msgid "Speaker Plural Label"
|
7433 |
msgstr "Labels"
|
7434 |
|
7435 |
-
#: app/libraries/main.php:
|
7436 |
#, fuzzy
|
7437 |
#| msgid "Label Singular Label"
|
7438 |
msgid "Speaker Singular Label"
|
7439 |
msgstr "Label"
|
7440 |
|
7441 |
-
#: app/libraries/main.php:
|
7442 |
msgid "Sunday abbreviation"
|
7443 |
msgstr "Sonntag Abkürzung"
|
7444 |
|
7445 |
-
#: app/libraries/main.php:
|
7446 |
msgid "Monday abbreviation"
|
7447 |
msgstr "Montag Abkürzung"
|
7448 |
|
7449 |
-
#: app/libraries/main.php:
|
7450 |
msgid "Tuesday abbreviation"
|
7451 |
msgstr "Dienstag Abkürzung"
|
7452 |
|
7453 |
-
#: app/libraries/main.php:
|
7454 |
msgid "Wednesday abbreviation"
|
7455 |
msgstr "Mittwoch Abkürzung"
|
7456 |
|
7457 |
-
#: app/libraries/main.php:
|
7458 |
msgid "Thursday abbreviation"
|
7459 |
msgstr "Donnerstag Abkürzung"
|
7460 |
|
7461 |
-
#: app/libraries/main.php:
|
7462 |
msgid "Friday abbreviation"
|
7463 |
msgstr "Freitag Abkürzung"
|
7464 |
|
7465 |
-
#: app/libraries/main.php:
|
7466 |
msgid "Saturday abbreviation"
|
7467 |
msgstr "Samstag Abkürzung "
|
7468 |
|
7469 |
-
#: app/libraries/main.php:
|
7470 |
msgid "Others"
|
7471 |
msgstr "Andere"
|
7472 |
|
7473 |
-
#: app/libraries/main.php:
|
7474 |
msgid "Booking Success Message"
|
7475 |
msgstr "Buchung erfolgreich Mitteilung"
|
7476 |
|
7477 |
-
#: app/libraries/main.php:
|
7478 |
msgid ""
|
7479 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
7480 |
"needed, please check your email."
|
@@ -7482,32 +7516,32 @@ msgstr ""
|
|
7482 |
"Vielen Dank für Ihre Buchung. Für die gebuchten Tickets ist ggf. eine "
|
7483 |
"Bestätigung durch Sie erforderlich. Bitte überprüfen Sie Ihre Emails."
|
7484 |
|
7485 |
-
#: app/libraries/main.php:
|
7486 |
msgid "Register Button"
|
7487 |
msgstr "Register Button"
|
7488 |
|
7489 |
-
#: app/libraries/main.php:
|
7490 |
#: app/skins/carousel/render.php:160 app/skins/carousel/render.php:197
|
7491 |
#: app/skins/grid/render.php:124 app/skins/grid/render.php:171
|
7492 |
#: app/skins/grid/render.php:215 app/skins/grid/render.php:244
|
7493 |
#: app/skins/list/render.php:109 app/skins/list/render.php:195
|
7494 |
#: app/skins/masonry/render.php:188 app/skins/single.php:774
|
7495 |
-
#: app/skins/single.php:777 app/skins/single/default.php:
|
7496 |
-
#: app/skins/single/default.php:
|
7497 |
-
#: app/skins/single/default.php:
|
7498 |
-
#: app/skins/single/m1.php:
|
7499 |
-
#: app/skins/single/m2.php:
|
7500 |
-
#: app/skins/single/modern.php:
|
7501 |
#: app/skins/slider/render.php:163 app/skins/slider/render.php:211
|
7502 |
#: app/skins/slider/render.php:260 app/skins/slider/render.php:320
|
7503 |
msgid "REGISTER"
|
7504 |
msgstr "ANMELDEN"
|
7505 |
|
7506 |
-
#: app/libraries/main.php:
|
7507 |
msgid "View Detail Button"
|
7508 |
msgstr "Ansicht Detail Button"
|
7509 |
|
7510 |
-
#: app/libraries/main.php:
|
7511 |
#: app/skins/carousel/render.php:197 app/skins/grid/render.php:124
|
7512 |
#: app/skins/grid/render.php:171 app/skins/grid/render.php:215
|
7513 |
#: app/skins/grid/render.php:244 app/skins/list/render.php:109
|
@@ -7518,88 +7552,88 @@ msgstr "Ansicht Detail Button"
|
|
7518 |
msgid "View Detail"
|
7519 |
msgstr "Details "
|
7520 |
|
7521 |
-
#: app/libraries/main.php:
|
7522 |
msgid "Event Detail Button"
|
7523 |
msgstr "Event Detail Button"
|
7524 |
|
7525 |
-
#: app/libraries/main.php:
|
7526 |
msgid "Event Detail"
|
7527 |
msgstr "Veranstaltungsdetails"
|
7528 |
|
7529 |
-
#: app/libraries/main.php:
|
7530 |
msgid "More Info Link"
|
7531 |
msgstr "Link Mehr Informationen"
|
7532 |
|
7533 |
-
#: app/libraries/main.php:
|
7534 |
msgid "Ticket (Singular)"
|
7535 |
msgstr "Ticket"
|
7536 |
|
7537 |
-
#: app/libraries/main.php:
|
7538 |
msgid "Tickets (Plural)"
|
7539 |
msgstr "Tickets"
|
7540 |
|
7541 |
-
#: app/libraries/main.php:
|
7542 |
msgid "EventON"
|
7543 |
msgstr "EventON"
|
7544 |
|
7545 |
-
#: app/libraries/main.php:
|
7546 |
msgid "The Events Calendar"
|
7547 |
msgstr "The Events Calendar"
|
7548 |
|
7549 |
-
#: app/libraries/main.php:
|
7550 |
msgid "Events Schedule WP Plugin"
|
7551 |
msgstr "Event Zeitplan WP-Plugin"
|
7552 |
|
7553 |
-
#: app/libraries/main.php:
|
7554 |
msgid "Calendarize It"
|
7555 |
msgstr ""
|
7556 |
|
7557 |
-
#: app/libraries/main.php:
|
7558 |
#, fuzzy
|
7559 |
#| msgid "No Search Options"
|
7560 |
msgid "Event Espresso"
|
7561 |
msgstr "Keine Suchoptionen"
|
7562 |
|
7563 |
-
#: app/libraries/main.php:
|
7564 |
#, fuzzy
|
7565 |
#| msgid "Event Repeating"
|
7566 |
msgid "Events Manager (Recurring)"
|
7567 |
msgstr "Wiederholende Veranstaltung"
|
7568 |
|
7569 |
-
#: app/libraries/main.php:
|
7570 |
#, fuzzy
|
7571 |
#| msgid "Modern Events Calendar"
|
7572 |
msgid "Events Manager (Single)"
|
7573 |
msgstr "Moderner Event Kalender "
|
7574 |
|
7575 |
-
#: app/libraries/main.php:
|
7576 |
msgid "Confirmed"
|
7577 |
msgstr "Bestätigt"
|
7578 |
|
7579 |
-
#: app/libraries/main.php:
|
7580 |
msgid "Rejected"
|
7581 |
msgstr "Abgelehnt"
|
7582 |
|
7583 |
-
#: app/libraries/main.php:
|
7584 |
msgid "Pending"
|
7585 |
msgstr "Ausstehend"
|
7586 |
|
7587 |
-
#: app/libraries/main.php:
|
7588 |
msgid "Waiting"
|
7589 |
msgstr "in Bearbeitung"
|
7590 |
|
7591 |
-
#: app/libraries/main.php:
|
7592 |
#: app/libraries/render.php:418
|
7593 |
msgid "Skin controller does not exist."
|
7594 |
msgstr "Skin contoller existiert nicht."
|
7595 |
|
7596 |
-
#: app/libraries/main.php:
|
7597 |
#, fuzzy
|
7598 |
#| msgid "Sold out!"
|
7599 |
msgid "Sold Out"
|
7600 |
msgstr "Ausverkauft!"
|
7601 |
|
7602 |
-
#: app/libraries/main.php:
|
7603 |
#, fuzzy
|
7604 |
#| msgid "Ticket"
|
7605 |
msgid "Last Few Tickets"
|
@@ -7613,52 +7647,52 @@ msgstr "Bitte bestätigen Sie Ihre email."
|
|
7613 |
msgid "Your booking is received."
|
7614 |
msgstr "Ihre Buchung ist eingegangen"
|
7615 |
|
7616 |
-
#: app/libraries/notifications.php:
|
7617 |
msgid "Your booking is confirmed."
|
7618 |
msgstr "Ihre Buchung wurde bestätigt."
|
7619 |
|
7620 |
-
#: app/libraries/notifications.php:
|
7621 |
#, fuzzy
|
7622 |
#| msgid "Your booking cannot be canceled."
|
7623 |
msgid "booking canceled."
|
7624 |
msgstr "Ihre Buchung kann nicht storniert werden."
|
7625 |
|
7626 |
-
#: app/libraries/notifications.php:
|
7627 |
msgid "A new booking is received."
|
7628 |
msgstr "Eine neue Buchung ist eingegangen."
|
7629 |
|
7630 |
-
#: app/libraries/notifications.php:
|
7631 |
msgid "A new event is added."
|
7632 |
msgstr "Eine neue Veranstaltung wurde hinzugefügt."
|
7633 |
|
7634 |
-
#: app/libraries/notifications.php:
|
7635 |
#, fuzzy
|
7636 |
#| msgid "The event published."
|
7637 |
msgid "Your event is published."
|
7638 |
msgstr "Die Veranstaltung wurde veröffentlicht."
|
7639 |
|
7640 |
-
#: app/libraries/notifications.php:
|
7641 |
-
#: app/libraries/notifications.php:
|
7642 |
msgid "to"
|
7643 |
msgstr ""
|
7644 |
|
7645 |
-
#: app/libraries/notifications.php:
|
7646 |
msgid "+ Add to Google Calendar"
|
7647 |
msgstr "+ zum Google Calendar hinzufügen"
|
7648 |
|
7649 |
-
#: app/libraries/notifications.php:
|
7650 |
msgid "+ iCal export"
|
7651 |
msgstr "+ zu iCal exportieren"
|
7652 |
|
7653 |
-
#: app/libraries/notifications.php:
|
7654 |
msgid "Yes"
|
7655 |
msgstr "Ja"
|
7656 |
|
7657 |
-
#: app/libraries/notifications.php:
|
7658 |
msgid "No"
|
7659 |
msgstr "Nein"
|
7660 |
|
7661 |
-
#: app/libraries/skins.php:
|
7662 |
#, fuzzy
|
7663 |
#| msgid "Select All"
|
7664 |
msgid "Select"
|
@@ -7690,12 +7724,12 @@ msgstr "Rabattgutschein"
|
|
7690 |
msgid "Apply Coupon"
|
7691 |
msgstr "Gutschein verwenden"
|
7692 |
|
7693 |
-
#: app/modules/booking/steps/checkout.php:
|
7694 |
#: app/modules/booking/steps/form.php:180
|
7695 |
msgid "Back"
|
7696 |
msgstr ""
|
7697 |
|
7698 |
-
#: app/modules/booking/steps/checkout.php:
|
7699 |
msgid "Free Booking"
|
7700 |
msgstr "Kostenlose Buchung"
|
7701 |
|
@@ -7737,19 +7771,19 @@ msgstr ""
|
|
7737 |
"Das% s Ticket ist ausverkauft. Sie können ein anderes Ticket oder ein "
|
7738 |
"anderes Datum ausprobieren."
|
7739 |
|
7740 |
-
#: app/modules/countdown/details.php:
|
7741 |
msgid "The event is finished."
|
7742 |
msgstr "Das Event ist beendet"
|
7743 |
|
7744 |
-
#: app/modules/countdown/details.php:
|
7745 |
msgid "The event is ongoing."
|
7746 |
msgstr "Die Veranstaltung ist im Gange."
|
7747 |
|
7748 |
-
#: app/modules/googlemap/details.php:
|
7749 |
msgid "Address from ..."
|
7750 |
msgstr "Adresse von..."
|
7751 |
|
7752 |
-
#: app/modules/googlemap/details.php:
|
7753 |
msgid "Get Directions"
|
7754 |
msgstr "Wegbeschreibung"
|
7755 |
|
@@ -7757,17 +7791,17 @@ msgstr "Wegbeschreibung"
|
|
7757 |
msgid "Share this event"
|
7758 |
msgstr "Diese Veranstaltung teilen"
|
7759 |
|
7760 |
-
#: app/modules/local-time/details.php:
|
7761 |
#, php-format
|
7762 |
msgid "Timezone: %s"
|
7763 |
msgstr "Zeitzone: %s"
|
7764 |
|
7765 |
-
#: app/modules/local-time/details.php:
|
7766 |
#, php-format
|
7767 |
msgid "Date: %s"
|
7768 |
msgstr "Datum: %s"
|
7769 |
|
7770 |
-
#: app/modules/local-time/details.php:
|
7771 |
#, php-format
|
7772 |
msgid "Time: %s"
|
7773 |
msgstr "Zeit: %s"
|
@@ -7781,8 +7815,8 @@ msgid "Go to occurrence page"
|
|
7781 |
msgstr "Zum Event"
|
7782 |
|
7783 |
#: app/modules/next-event/details.php:98 app/skins/single.php:747
|
7784 |
-
#: app/skins/single/default.php:102 app/skins/single/default.php:
|
7785 |
-
#: app/skins/single/m1.php:37 app/skins/single/modern.php:
|
7786 |
msgid "Time"
|
7787 |
msgstr "Uhrzeit"
|
7788 |
|
@@ -7911,33 +7945,33 @@ msgid "Home"
|
|
7911 |
msgstr ""
|
7912 |
|
7913 |
#: app/skins/single.php:544 app/skins/single/default.php:51
|
7914 |
-
#: app/skins/single/m1.php:
|
7915 |
-
#: app/skins/single/modern.php:
|
7916 |
msgid "Sold out!"
|
7917 |
msgstr "Ausverkauft!"
|
7918 |
|
7919 |
#: app/skins/single.php:822 app/skins/single.php:877
|
7920 |
-
#: app/skins/single/default.php:227 app/skins/single/default.php:
|
7921 |
#: app/skins/single/m1.php:109 app/skins/single/m2.php:35
|
7922 |
#: app/skins/single/modern.php:44
|
7923 |
msgid "Phone"
|
7924 |
msgstr "Phone"
|
7925 |
|
7926 |
#: app/skins/single.php:836 app/skins/single.php:891
|
7927 |
-
#: app/skins/single/default.php:241 app/skins/single/default.php:
|
7928 |
#: app/skins/single/m1.php:123 app/skins/single/m2.php:49
|
7929 |
#: app/skins/single/modern.php:58
|
7930 |
msgid "Website"
|
7931 |
msgstr "Website"
|
7932 |
|
7933 |
-
#: app/skins/single.php:
|
7934 |
#, fuzzy
|
7935 |
#| msgid "No Search Options"
|
7936 |
msgid "Speakers:"
|
7937 |
msgstr "Keine Suchoptionen"
|
7938 |
|
7939 |
-
#: app/skins/single/default.php:69 app/skins/single/m1.php:
|
7940 |
-
#: app/skins/single/m2.php:
|
7941 |
msgid "Tags: "
|
7942 |
msgstr "Tags:"
|
7943 |
|
@@ -8363,6 +8397,11 @@ msgstr "http://webnus.net"
|
|
8363 |
#~ msgid "Pay Locally"
|
8364 |
#~ msgstr "Vor Ort bezahlen"
|
8365 |
|
|
|
|
|
|
|
|
|
|
|
8366 |
#~ msgid "PayPal Express"
|
8367 |
#~ msgstr "PayPal Express"
|
8368 |
|
@@ -8457,6 +8496,9 @@ msgstr "http://webnus.net"
|
|
8457 |
#~ msgid "Organizer Payment Credentials"
|
8458 |
#~ msgstr "Name des Veranstalters des gebuchten Events"
|
8459 |
|
|
|
|
|
|
|
8460 |
#~ msgid "Booking reminder notification is not enabled!"
|
8461 |
#~ msgstr "Die Erinnerung für die Buchungserinnerung ist nicht aktiviert!"
|
8462 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: ME Calender\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2020-02-12 17:40+0330\n"
|
6 |
+
"PO-Revision-Date: 2020-02-12 17:43+0330\n"
|
7 |
"Last-Translator: Jogon <koenig@kafinanz.de>\n"
|
8 |
"Language-Team: German\n"
|
9 |
"Language: de_DE\n"
|
79 |
msgid "Settings"
|
80 |
msgstr "Einstellungen"
|
81 |
|
82 |
+
#: app/features/contextual.php:62 app/features/events.php:2453
|
83 |
+
#: app/features/mec/booking.php:448 app/features/mec/support.php:29
|
84 |
#: app/libraries/main.php:560
|
85 |
msgid "Booking Form"
|
86 |
msgstr "Buchungsformular"
|
99 |
"<iframe width=\"600\" height=\"300\" src=\"https://www.youtube.com/embed/"
|
100 |
"YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></iframe>"
|
101 |
|
102 |
+
#: app/features/contextual.php:70 app/features/mec/booking.php:566
|
103 |
#: app/features/mec/support.php:36 app/libraries/main.php:561
|
104 |
msgid "Payment Gateways"
|
105 |
msgstr "Zahlungs-Gateways"
|
223 |
msgid "Google Recaptcha Options"
|
224 |
msgstr "Google Recaptcha Einstellungen"
|
225 |
|
226 |
+
#: app/features/contextual.php:258 app/features/mec/single.php:149
|
227 |
#: app/libraries/main.php:548
|
228 |
msgid "Countdown Options"
|
229 |
msgstr "Countdown Einstellungsoptionen"
|
230 |
|
231 |
+
#: app/features/contextual.php:268 app/features/mec/modules.php:264
|
232 |
#: app/libraries/main.php:571
|
233 |
msgid "Social Networks"
|
234 |
msgstr "Soziale Netzwerke"
|
254 |
msgid "Booking"
|
255 |
msgstr "Buchung / Reservierung"
|
256 |
|
257 |
+
#: app/features/contextual.php:318 app/features/mec/booking.php:270
|
258 |
#: app/libraries/main.php:557
|
259 |
msgid "Coupons"
|
260 |
msgstr "Gutscheine"
|
261 |
|
262 |
+
#: app/features/contextual.php:326 app/features/mec/modules.php:330
|
263 |
#: app/libraries/main.php:573
|
264 |
msgid "BuddyPress Integration"
|
265 |
msgstr "Buddy Press Integration"
|
281 |
msgstr "Veranstaltungen"
|
282 |
|
283 |
#: app/features/events.php:158 app/features/fes.php:223
|
284 |
+
#: app/features/mec/meta_boxes/display_options.php:1048
|
285 |
+
#: app/features/mec/meta_boxes/display_options.php:1104
|
286 |
+
#: app/features/mec/meta_boxes/display_options.php:1139
|
287 |
#: app/features/profile/profile.php:50 app/skins/daily_view/tpl.php:80
|
288 |
#: app/skins/monthly_view/tpl.php:71 app/skins/tile/tpl.php:70
|
289 |
#: app/skins/yearly_view/tpl.php:69
|
298 |
msgid "Add New Event"
|
299 |
msgstr "Neue Veranstaltung hinzufügen"
|
300 |
|
301 |
+
#: app/features/events.php:161 app/features/ix.php:3879
|
302 |
+
#: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:66
|
303 |
+
#: app/skins/map/tpl.php:85
|
304 |
msgid "No events found!"
|
305 |
msgstr "Keine Veranstaltungen gefunden!"
|
306 |
|
320 |
msgid "No events found in Trash!"
|
321 |
msgstr "Keine Veranstaltungen im Papierkorb gefunden!"
|
322 |
|
323 |
+
#: app/features/events.php:182 app/features/events.php:3302
|
324 |
+
#: app/features/mec/meta_boxes/display_options.php:959
|
325 |
#: app/features/mec/meta_boxes/search_form.php:31
|
326 |
#: app/features/mec/meta_boxes/search_form.php:93
|
327 |
#: app/features/mec/meta_boxes/search_form.php:155
|
333 |
#: app/features/mec/meta_boxes/search_form.php:514
|
334 |
#: app/features/mec/meta_boxes/search_form.php:575
|
335 |
#: app/features/mec/meta_boxes/search_form.php:672
|
336 |
+
#: app/features/mec/settings.php:808 app/features/mec/single.php:232
|
337 |
+
#: app/features/search.php:68 app/libraries/main.php:5335
|
338 |
+
#: app/libraries/skins.php:865 app/skins/single.php:566
|
339 |
+
#: app/skins/single/default.php:192 app/skins/single/default.php:415
|
340 |
+
#: app/skins/single/m1.php:184 app/skins/single/m2.php:110
|
341 |
+
#: app/skins/single/modern.php:118
|
342 |
msgid "Category"
|
343 |
msgstr "Kategorie"
|
344 |
|
345 |
+
#: app/features/events.php:183 app/features/events.php:3257
|
346 |
#: app/features/fes/form.php:757 app/features/mec.php:403
|
347 |
+
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5334
|
348 |
msgid "Categories"
|
349 |
msgstr "Kategorien"
|
350 |
|
432 |
msgid "Event Repeating"
|
433 |
msgstr "Wiederholende Veranstaltung"
|
434 |
|
435 |
+
#: app/features/events.php:333 app/features/events.php:1268
|
436 |
+
#: app/features/mec/settings.php:718 app/skins/single.php:953
|
437 |
msgid "Hourly Schedule"
|
438 |
msgstr "Stundenplan"
|
439 |
|
449 |
msgid "Links"
|
450 |
msgstr "Link"
|
451 |
|
452 |
+
#: app/features/events.php:336 app/features/events.php:3304
|
453 |
+
#: app/features/events.php:3495 app/features/events.php:3537
|
454 |
+
#: app/features/ix.php:3506 app/features/ix.php:3547
|
455 |
+
#: app/features/mec/meta_boxes/display_options.php:962
|
456 |
#: app/features/mec/meta_boxes/search_form.php:45
|
457 |
#: app/features/mec/meta_boxes/search_form.php:107
|
458 |
#: app/features/mec/meta_boxes/search_form.php:169
|
464 |
#: app/features/mec/meta_boxes/search_form.php:528
|
465 |
#: app/features/mec/meta_boxes/search_form.php:589
|
466 |
#: app/features/mec/meta_boxes/search_form.php:686
|
467 |
+
#: app/features/mec/settings.php:820 app/features/mec/single.php:236
|
468 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
469 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
470 |
#: app/features/organizers.php:271 app/features/search.php:78
|
471 |
+
#: app/libraries/main.php:5341 app/libraries/skins.php:917
|
472 |
#: app/skins/single.php:812 app/skins/single/default.php:217
|
473 |
+
#: app/skins/single/default.php:440 app/skins/single/m1.php:99
|
474 |
#: app/skins/single/m2.php:25 app/skins/single/modern.php:34
|
475 |
msgid "Organizer"
|
476 |
msgstr "Veranstalter"
|
477 |
|
478 |
+
#: app/features/events.php:337 app/features/events.php:1154
|
479 |
+
#: app/features/fes/form.php:730 app/libraries/main.php:5368
|
480 |
#: app/skins/single.php:589 app/skins/single/default.php:126
|
481 |
+
#: app/skins/single/default.php:349 app/skins/single/m1.php:58
|
482 |
+
#: app/skins/single/modern.php:213
|
483 |
msgid "Cost"
|
484 |
msgstr " Preis"
|
485 |
|
486 |
+
#: app/features/events.php:454
|
487 |
msgid "Note for reviewer"
|
488 |
msgstr "Zusätzliche Anmerkungen zum Event "
|
489 |
|
490 |
+
#: app/features/events.php:460
|
491 |
msgid "Guest Data"
|
492 |
msgstr "Gäste Daten"
|
493 |
|
494 |
+
#: app/features/events.php:461 app/features/events.php:2435
|
495 |
+
#: app/features/events.php:3784 app/features/fes.php:223
|
496 |
#: app/features/fes/form.php:689 app/features/labels.php:178
|
497 |
#: app/features/mec/booking.php:45 app/features/organizers.php:279
|
498 |
+
#: app/features/profile/profile.php:180 app/libraries/notifications.php:1117
|
499 |
#: app/modules/booking/steps/form.php:37
|
500 |
msgid "Name"
|
501 |
msgstr "Name"
|
502 |
|
503 |
+
#: app/features/events.php:462 app/features/events.php:2446
|
504 |
+
#: app/features/events.php:2522 app/features/events.php:3787
|
505 |
#: app/features/fes.php:223 app/features/fes/form.php:685
|
506 |
+
#: app/features/mec/booking.php:57 app/features/mec/booking.php:499
|
507 |
#: app/features/organizers.php:111 app/features/organizers.php:152
|
508 |
#: app/features/profile/profile.php:183 app/features/speakers.php:127
|
509 |
+
#: app/features/speakers.php:196 app/libraries/main.php:1547
|
510 |
+
#: app/libraries/main.php:1616 app/libraries/main.php:2843
|
511 |
+
#: app/libraries/notifications.php:1118 app/modules/booking/steps/form.php:46
|
512 |
#: app/modules/booking/steps/form.php:83 app/skins/single.php:829
|
513 |
#: app/skins/single.php:884 app/skins/single/default.php:234
|
514 |
+
#: app/skins/single/default.php:457 app/skins/single/m1.php:116
|
515 |
#: app/skins/single/m2.php:42 app/skins/single/modern.php:51
|
516 |
msgid "Email"
|
517 |
msgstr "Email"
|
518 |
|
519 |
+
#: app/features/events.php:470 app/features/fes/form.php:243
|
520 |
msgid "Date and Time"
|
521 |
msgstr "Datum und Uhrzeit"
|
522 |
|
523 |
+
#: app/features/events.php:473 app/features/events.php:479
|
524 |
+
#: app/features/events.php:3305 app/features/events.php:3495
|
525 |
+
#: app/features/events.php:3537 app/features/fes/form.php:247
|
526 |
+
#: app/features/fes/form.php:251 app/features/ix.php:3506
|
527 |
+
#: app/features/ix.php:3547 app/features/ix/import_g_calendar.php:38
|
528 |
#: app/features/mec/dashboard.php:401
|
529 |
#: app/features/mec/meta_boxes/display_options.php:49
|
530 |
#: app/features/mec/meta_boxes/display_options.php:229
|
533 |
#: app/features/mec/meta_boxes/display_options.php:598
|
534 |
#: app/features/mec/meta_boxes/display_options.php:652
|
535 |
#: app/features/mec/meta_boxes/display_options.php:699
|
536 |
+
#: app/features/mec/meta_boxes/display_options.php:733
|
537 |
+
#: app/features/mec/meta_boxes/display_options.php:768
|
538 |
+
#: app/features/mec/meta_boxes/display_options.php:815
|
539 |
+
#: app/features/mec/meta_boxes/display_options.php:914
|
540 |
+
#: app/features/mec/meta_boxes/display_options.php:1162
|
541 |
+
#: app/features/mec/meta_boxes/display_options.php:1250
|
542 |
+
#: app/features/mec/meta_boxes/display_options.php:1342
|
543 |
+
#: app/features/mec/meta_boxes/display_options.php:1409
|
544 |
msgid "Start Date"
|
545 |
msgstr "Start Datum"
|
546 |
|
547 |
+
#: app/features/events.php:551 app/features/events.php:643
|
548 |
+
#: app/features/events.php:1708 app/features/events.php:1767
|
549 |
+
#: app/features/events.php:1960 app/features/events.php:1999
|
550 |
#: app/features/fes/form.php:279 app/features/fes/form.php:319
|
551 |
msgid "AM"
|
552 |
msgstr "AM"
|
553 |
|
554 |
+
#: app/features/events.php:558 app/features/events.php:650
|
555 |
+
#: app/features/events.php:1715 app/features/events.php:1774
|
556 |
+
#: app/features/events.php:1961 app/features/events.php:2000
|
557 |
#: app/features/fes/form.php:280 app/features/fes/form.php:320
|
558 |
msgid "PM"
|
559 |
msgstr "PM"
|
560 |
|
561 |
+
#: app/features/events.php:565 app/features/events.php:570
|
562 |
+
#: app/features/events.php:3306 app/features/events.php:3495
|
563 |
+
#: app/features/events.php:3537 app/features/fes/form.php:287
|
564 |
+
#: app/features/fes/form.php:291 app/features/ix.php:3506
|
565 |
+
#: app/features/ix.php:3547 app/features/ix/import_g_calendar.php:44
|
566 |
#: app/features/mec/dashboard.php:402
|
567 |
msgid "End Date"
|
568 |
msgstr "Ende Datum"
|
569 |
|
570 |
+
#: app/features/events.php:664 app/features/fes/form.php:326
|
571 |
msgid "All Day Event"
|
572 |
msgstr "Ganztägige Veranstaltung"
|
573 |
|
574 |
+
#: app/features/events.php:674 app/features/fes/form.php:329
|
575 |
msgid "Hide Event Time"
|
576 |
msgstr "Event / Veranstaltungszeit verbergen"
|
577 |
|
578 |
+
#: app/features/events.php:684 app/features/fes/form.php:332
|
579 |
msgid "Hide Event End Time"
|
580 |
msgstr "Ende-Zeit der Veranstaltung verbergen"
|
581 |
|
582 |
+
#: app/features/events.php:689 app/features/events.php:693
|
583 |
#: app/features/fes/form.php:336
|
584 |
msgid "Time Comment"
|
585 |
msgstr "z.B. MEZ "
|
586 |
|
587 |
+
#: app/features/events.php:694 app/features/fes/form.php:337
|
588 |
#, fuzzy
|
589 |
#| msgid ""
|
590 |
#| "It shows next to event time on calendar. You can insert Timezone etc. in "
|
596 |
"Neben der Zeit im Kalender wird diese Angabe angezeigt. In diesem Feld "
|
597 |
"können Sie z.B. eine Zeitzone wie z.B. \"MEZ\" usw. einfügen. "
|
598 |
|
599 |
+
#: app/features/events.php:696 app/features/events.php:817
|
600 |
+
#: app/features/events.php:1117 app/features/events.php:1194
|
601 |
+
#: app/features/events.php:1493 app/features/events.php:1585
|
602 |
+
#: app/features/events.php:1795 app/features/events.php:1810
|
603 |
+
#: app/features/events.php:2019 app/features/events.php:2032
|
604 |
+
#: app/features/events.php:2183 app/features/events.php:2219
|
605 |
+
#: app/features/events.php:2317 app/features/events.php:2332
|
606 |
+
#: app/features/events.php:2362 app/features/events.php:2375
|
607 |
+
#: app/features/fes/form.php:641 app/features/locations.php:301
|
608 |
#: app/features/mec/booking.php:108 app/features/mec/booking.php:158
|
609 |
#: app/features/mec/booking.php:171 app/features/mec/booking.php:187
|
610 |
+
#: app/features/mec/booking.php:315 app/features/mec/booking.php:344
|
611 |
+
#: app/features/mec/booking.php:392 app/features/mec/booking.php:402
|
612 |
+
#: app/features/mec/booking.php:424 app/features/mec/booking.php:434
|
613 |
#: app/features/mec/dashboard.php:71
|
614 |
#: app/features/mec/meta_boxes/display_options.php:80
|
615 |
#: app/features/mec/meta_boxes/display_options.php:93
|
625 |
#: app/features/mec/meta_boxes/display_options.php:332
|
626 |
#: app/features/mec/meta_boxes/display_options.php:439
|
627 |
#: app/features/mec/meta_boxes/display_options.php:615
|
628 |
+
#: app/features/mec/meta_boxes/display_options.php:946
|
629 |
+
#: app/features/mec/meta_boxes/display_options.php:1019
|
630 |
+
#: app/features/mec/meta_boxes/display_options.php:1031
|
631 |
+
#: app/features/mec/meta_boxes/display_options.php:1042
|
632 |
+
#: app/features/mec/meta_boxes/display_options.php:1074
|
633 |
+
#: app/features/mec/meta_boxes/display_options.php:1085
|
634 |
+
#: app/features/mec/meta_boxes/display_options.php:1098
|
635 |
+
#: app/features/mec/meta_boxes/display_options.php:1133
|
636 |
+
#: app/features/mec/meta_boxes/display_options.php:1182
|
637 |
+
#: app/features/mec/meta_boxes/display_options.php:1193
|
638 |
+
#: app/features/mec/meta_boxes/display_options.php:1204
|
639 |
+
#: app/features/mec/meta_boxes/display_options.php:1270
|
640 |
+
#: app/features/mec/meta_boxes/display_options.php:1283
|
641 |
+
#: app/features/mec/meta_boxes/display_options.php:1296
|
642 |
+
#: app/features/mec/meta_boxes/display_options.php:1309
|
643 |
+
#: app/features/mec/meta_boxes/display_options.php:1322
|
644 |
+
#: app/features/mec/meta_boxes/display_options.php:1373
|
645 |
+
#: app/features/mec/meta_boxes/display_options.php:1426
|
646 |
#: app/features/mec/modules.php:53 app/features/mec/modules.php:86
|
647 |
#: app/features/mec/modules.php:103 app/features/mec/modules.php:138
|
648 |
+
#: app/features/mec/modules.php:154 app/features/mec/modules.php:318
|
649 |
#: app/features/mec/notifications.php:88 app/features/mec/notifications.php:185
|
650 |
#: app/features/mec/notifications.php:277
|
651 |
#: app/features/mec/notifications.php:380
|
666 |
#: app/features/mec/settings.php:899 app/features/mec/single.php:42
|
667 |
#: app/features/mec/single.php:58 app/features/mec/single.php:77
|
668 |
#: app/features/mec/single.php:94 app/features/mec/single.php:110
|
669 |
+
#: app/features/mec/single.php:125 app/features/mec/single.php:178
|
670 |
#: app/features/mec/styling.php:203 app/features/mec/styling.php:220
|
671 |
#: app/features/mec/styling.php:233 app/features/organizers.php:272
|
672 |
#: app/skins/single.php:674 app/skins/single/default.php:141
|
673 |
+
#: app/skins/single/default.php:364 app/skins/single/m1.php:206
|
674 |
+
#: app/skins/single/m2.php:133 app/skins/single/modern.php:141
|
675 |
msgid "Read More"
|
676 |
msgstr "Mehr lesen"
|
677 |
|
678 |
+
#: app/features/events.php:704
|
679 |
#, fuzzy
|
680 |
#| msgid "Repeat"
|
681 |
msgid "Repeating"
|
682 |
msgstr "Wiederholen"
|
683 |
|
684 |
+
#: app/features/events.php:713
|
685 |
#, fuzzy
|
686 |
#| msgid "Event Repeating"
|
687 |
msgid "Event Repeating (Recurring events)"
|
688 |
msgstr "Wiederholende Veranstaltung"
|
689 |
|
690 |
+
#: app/features/events.php:717 app/features/fes/form.php:347
|
691 |
msgid "Repeats"
|
692 |
msgstr "Wiederholend"
|
693 |
|
694 |
+
#: app/features/events.php:725 app/features/fes/form.php:349
|
695 |
#: app/features/mec/dashboard.php:404
|
696 |
#: app/skins/default_full_calendar/tpl.php:69
|
697 |
#: app/skins/full_calendar/tpl.php:110
|
698 |
msgid "Daily"
|
699 |
msgstr "Täglich"
|
700 |
|
701 |
+
#: app/features/events.php:732 app/features/fes/form.php:350
|
702 |
msgid "Every Weekday"
|
703 |
msgstr "An jedem Wochentag"
|
704 |
|
705 |
+
#: app/features/events.php:739 app/features/fes/form.php:351
|
706 |
msgid "Every Weekend"
|
707 |
msgstr "An jedem Wochenende"
|
708 |
|
709 |
+
#: app/features/events.php:746 app/features/fes/form.php:352
|
710 |
msgid "Certain Weekdays"
|
711 |
msgstr "Bestimmte Wochentage"
|
712 |
|
713 |
+
#: app/features/events.php:753 app/features/fes/form.php:353
|
714 |
#: app/skins/default_full_calendar/tpl.php:68
|
715 |
#: app/skins/full_calendar/tpl.php:109
|
716 |
msgid "Weekly"
|
717 |
msgstr "Wöchentlich"
|
718 |
|
719 |
+
#: app/features/events.php:760 app/features/fes/form.php:354
|
720 |
#: app/features/mec/dashboard.php:405
|
721 |
#: app/skins/default_full_calendar/tpl.php:67
|
722 |
#: app/skins/full_calendar/tpl.php:108
|
723 |
msgid "Monthly"
|
724 |
msgstr "Monatlich"
|
725 |
|
726 |
+
#: app/features/events.php:767 app/features/fes/form.php:355
|
727 |
#: app/features/mec/dashboard.php:406
|
728 |
#: app/skins/default_full_calendar/tpl.php:66
|
729 |
#: app/skins/full_calendar/tpl.php:107
|
730 |
msgid "Yearly"
|
731 |
msgstr "Jährlich"
|
732 |
|
733 |
+
#: app/features/events.php:774 app/features/fes/form.php:356
|
734 |
msgid "Custom Days"
|
735 |
msgstr "Benutzerdefinierte Tage"
|
736 |
|
737 |
+
#: app/features/events.php:781 app/features/fes/form.php:357
|
738 |
#, fuzzy
|
739 |
#| msgid "Advanced Method"
|
740 |
msgid "Advanced"
|
741 |
msgstr "Fortgeschrittene Methode"
|
742 |
|
743 |
+
#: app/features/events.php:786 app/features/fes/form.php:361
|
744 |
msgid "Repeat Interval"
|
745 |
msgstr "Wiederholungsintervall"
|
746 |
|
747 |
+
#: app/features/events.php:788 app/features/fes/form.php:362
|
748 |
msgid "Repeat interval"
|
749 |
msgstr "Wiederholungsintervall"
|
750 |
|
751 |
+
#: app/features/events.php:792 app/features/fes/form.php:365
|
752 |
msgid "Week Days"
|
753 |
msgstr "Wochentage"
|
754 |
|
755 |
+
#: app/features/events.php:807 app/features/events.php:1879
|
756 |
+
#: app/features/events.php:1907 app/features/events.php:2087
|
757 |
#: app/features/fes/form.php:377 app/features/ix/import_f_calendar.php:42
|
758 |
#: app/features/ix/import_g_calendar.php:51
|
759 |
#: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
|
760 |
msgid "Start"
|
761 |
msgstr "Start"
|
762 |
|
763 |
+
#: app/features/events.php:809 app/features/events.php:1883
|
764 |
+
#: app/features/events.php:1911 app/features/events.php:2091
|
765 |
#: app/features/fes/form.php:378
|
766 |
#, fuzzy
|
767 |
#| msgid "Enabled"
|
768 |
msgid "End"
|
769 |
msgstr "Aktiviert"
|
770 |
|
771 |
+
#: app/features/events.php:811 app/features/events.php:1188
|
772 |
+
#: app/features/events.php:1299 app/features/events.php:1404
|
773 |
+
#: app/features/events.php:1862 app/features/events.php:2076
|
774 |
+
#: app/features/events.php:2156 app/features/events.php:2289
|
775 |
#: app/features/fes/form.php:379 app/features/fes/form.php:855
|
776 |
msgid "Add"
|
777 |
msgstr "Hinzufügen"
|
778 |
|
779 |
+
#: app/features/events.php:814
|
780 |
#, fuzzy
|
781 |
#| msgid "Custom Days"
|
782 |
msgid "Custom Days Repeating"
|
783 |
msgstr "Benutzerdefinierte Tage"
|
784 |
|
785 |
+
#: app/features/events.php:815
|
786 |
msgid ""
|
787 |
"Add certain days to event occurrence dates. If you have single day event, "
|
788 |
"start and end date should be the same, If you have multiple day event the "
|
789 |
"start and end dates must be commensurate with the initial date."
|
790 |
msgstr ""
|
791 |
|
792 |
+
#: app/features/events.php:851 app/features/fes/form.php:405
|
793 |
#, fuzzy
|
794 |
#| msgid "First name"
|
795 |
msgid "First"
|
796 |
msgstr "Vorname"
|
797 |
|
798 |
+
#: app/features/events.php:893 app/features/fes/form.php:447
|
799 |
#, fuzzy
|
800 |
#| msgid "second"
|
801 |
msgid "Second"
|
802 |
msgstr "Sekunde"
|
803 |
|
804 |
+
#: app/features/events.php:935 app/features/fes/form.php:489
|
805 |
#, fuzzy
|
806 |
#| msgid "Third Party"
|
807 |
msgid "Third"
|
808 |
msgstr "Dritte Seite"
|
809 |
|
810 |
+
#: app/features/events.php:977 app/features/fes/form.php:531
|
811 |
msgid "Fourth"
|
812 |
msgstr ""
|
813 |
|
814 |
+
#: app/features/events.php:1019 app/features/fes/form.php:573
|
815 |
#, fuzzy
|
816 |
#| msgid "Last name"
|
817 |
msgid "Last"
|
818 |
msgstr "Nachname"
|
819 |
|
820 |
+
#: app/features/events.php:1066 app/features/fes/form.php:619
|
821 |
msgid "Ends Repeat"
|
822 |
msgstr "Wiederholung endet"
|
823 |
|
824 |
+
#: app/features/events.php:1078 app/features/fes/form.php:623
|
825 |
msgid "Never"
|
826 |
msgstr "Niemals"
|
827 |
|
828 |
+
#: app/features/events.php:1090 app/features/fes/form.php:628
|
829 |
msgid "On"
|
830 |
msgstr "Am"
|
831 |
|
832 |
+
#: app/features/events.php:1106 app/features/fes/form.php:635
|
833 |
msgid "After"
|
834 |
msgstr "Nach"
|
835 |
|
836 |
+
#: app/features/events.php:1110 app/features/events.php:1114
|
837 |
#: app/features/fes/form.php:637 app/features/fes/form.php:640
|
838 |
msgid "Occurrences times"
|
839 |
msgstr " mal vorkommen"
|
840 |
|
841 |
+
#: app/features/events.php:1115 app/features/fes/form.php:641
|
842 |
msgid ""
|
843 |
"The event will finish after certain repeats. For example if you set it to "
|
844 |
"10, the event will finish after 10 repeats."
|
846 |
"Das Event ist nach einer bestimmten Anzahl von Wiederholungen zu Ende. Zum "
|
847 |
"Beispiel: Bei Eingabe von 10 wird das Event nach 10 Wiederholungen beendet"
|
848 |
|
849 |
+
#: app/features/events.php:1130 app/features/fes/form.php:654
|
850 |
#, fuzzy
|
851 |
#| msgid "Next Occurrence of Other Events"
|
852 |
msgid "Show only one occurrence of this event"
|
853 |
msgstr "Nächstes Auftreten von anderen Events."
|
854 |
|
855 |
+
#: app/features/events.php:1150 app/features/events.php:3495
|
856 |
+
#: app/features/events.php:3537 app/features/fes/form.php:727
|
857 |
+
#: app/features/ix.php:3506 app/features/ix.php:3547
|
858 |
+
#: app/features/mec/settings.php:664 app/libraries/main.php:5367
|
859 |
#: app/widgets/single.php:103
|
860 |
msgid "Event Cost"
|
861 |
msgstr ""
|
862 |
"Bruttopreis des Events in Euro, 0 für kostenlos oder z.B. 39, ohne €-Zeichen"
|
863 |
|
864 |
+
#: app/features/events.php:1175
|
865 |
#, fuzzy
|
866 |
#| msgid "Exceptional Days"
|
867 |
msgid "Exceptional Days (Exclude Dates)"
|
868 |
msgstr "Herausgenommene Tage "
|
869 |
|
870 |
+
#: app/features/events.php:1181 app/features/events.php:1191
|
871 |
msgid "Exclude certain days"
|
872 |
msgstr "Ausschluss bestimmter Tage"
|
873 |
|
874 |
+
#: app/features/events.php:1186 app/features/events.php:2523
|
875 |
+
#: app/features/fes.php:223 app/features/mec/booking.php:500
|
876 |
+
#: app/features/profile/profile.php:53 app/libraries/main.php:2253
|
877 |
+
#: app/libraries/main.php:2901 app/modules/booking/steps/tickets.php:22
|
878 |
#: app/modules/next-event/details.php:93 app/skins/single.php:648
|
879 |
+
#: app/skins/single/default.php:85 app/skins/single/default.php:308
|
880 |
+
#: app/skins/single/m1.php:20 app/skins/single/modern.php:175
|
881 |
msgid "Date"
|
882 |
msgstr "Datum"
|
883 |
|
884 |
+
#: app/features/events.php:1192
|
885 |
msgid ""
|
886 |
"Exclude certain days from event occurrence dates. Please note that you can "
|
887 |
"exclude only single day occurrences and you cannot exclude one day from "
|
888 |
"multiple day occurrences."
|
889 |
msgstr ""
|
890 |
|
891 |
+
#: app/features/events.php:1246 app/libraries/render.php:506
|
892 |
msgid "Day 1"
|
893 |
msgstr ""
|
894 |
|
895 |
+
#: app/features/events.php:1272
|
896 |
msgid "Add Day"
|
897 |
msgstr ""
|
898 |
|
899 |
+
#: app/features/events.php:1273
|
900 |
msgid ""
|
901 |
"Add new days for schedule. For example if your event is multiple days, you "
|
902 |
"can add a different schedule for each day!"
|
903 |
msgstr ""
|
904 |
|
905 |
+
#: app/features/events.php:1280
|
906 |
#, php-format
|
907 |
msgid "Day %s"
|
908 |
msgstr ""
|
909 |
|
910 |
+
#: app/features/events.php:1284 app/features/events.php:1323
|
911 |
+
#: app/features/events.php:1358 app/features/events.php:1390
|
912 |
+
#: app/features/events.php:1419 app/features/events.php:2304
|
913 |
+
#: app/features/events.php:2351 app/features/events.php:3301
|
914 |
+
#: app/features/events.php:3495 app/features/events.php:3537
|
915 |
+
#: app/features/fes/form.php:236 app/features/ix.php:3506
|
916 |
+
#: app/features/ix.php:3547 app/features/mec/booking.php:384
|
917 |
+
#: app/features/mec/booking.php:416 app/features/mec/styling.php:115
|
918 |
msgid "Title"
|
919 |
msgstr "Titel"
|
920 |
|
921 |
+
#: app/features/events.php:1293 app/features/events.php:1330
|
922 |
+
#: app/features/events.php:1363 app/features/events.php:1398
|
923 |
+
#: app/features/events.php:1424 app/features/events.php:1893
|
924 |
+
#: app/features/events.php:1919 app/features/events.php:2097
|
925 |
+
#: app/features/events.php:2196 app/features/events.php:2232
|
926 |
+
#: app/features/events.php:2339 app/features/events.php:2381
|
927 |
+
#: app/features/mec/booking.php:327 app/features/mec/booking.php:356
|
928 |
+
#: app/features/mec/booking.php:407 app/features/mec/booking.php:439
|
929 |
+
#: app/libraries/main.php:2762 app/libraries/main.php:2792
|
930 |
+
#: app/libraries/main.php:2821 app/libraries/main.php:2851
|
931 |
+
#: app/libraries/main.php:2880 app/libraries/main.php:2909
|
932 |
+
#: app/libraries/main.php:2938 app/libraries/main.php:2967
|
933 |
+
#: app/libraries/main.php:2989 app/libraries/main.php:3020
|
934 |
+
#: app/libraries/main.php:3064 app/libraries/main.php:3108
|
935 |
+
#: app/libraries/main.php:3155 app/libraries/main.php:3194
|
936 |
msgid "Remove"
|
937 |
msgstr "Entfernen"
|
938 |
|
939 |
+
#: app/features/events.php:1300 app/features/events.php:1405
|
940 |
msgid "Add new hourly schedule row"
|
941 |
msgstr "Neue Stundenplan-Zeile hinzufügen"
|
942 |
|
943 |
+
#: app/features/events.php:1315 app/features/events.php:1352
|
944 |
+
#: app/features/events.php:1414
|
945 |
msgid "From e.g. 8:15"
|
946 |
msgstr "Von z.B. 08:15 Uhr"
|
947 |
|
948 |
+
#: app/features/events.php:1319 app/features/events.php:1355
|
949 |
+
#: app/features/events.php:1416
|
950 |
msgid "To e.g. 8:45"
|
951 |
msgstr "bis zum Beispiel 08:45 Uhr"
|
952 |
|
953 |
+
#: app/features/events.php:1327 app/features/events.php:1361
|
954 |
+
#: app/features/events.php:1422 app/features/events.php:1783
|
955 |
+
#: app/features/events.php:2008
|
956 |
msgid "Description"
|
957 |
msgstr "Beschreibung"
|
958 |
|
959 |
+
#: app/features/events.php:1333 app/features/events.php:1366
|
960 |
+
#: app/features/events.php:1427 app/features/fes/form.php:851
|
961 |
#: app/features/mec.php:411 app/features/mec/modules.php:52
|
962 |
#: app/features/mec/settings.php:712 app/features/speakers.php:62
|
963 |
+
#: app/libraries/main.php:565 app/libraries/main.php:5342
|
964 |
#: app/modules/speakers/details.php:18
|
965 |
msgid "Speakers"
|
966 |
msgstr ""
|
967 |
|
968 |
+
#: app/features/events.php:1386 app/features/events.php:1394
|
969 |
#, fuzzy
|
970 |
#| msgid "Week Days"
|
971 |
msgid "New Day"
|
972 |
msgstr "Wochentage"
|
973 |
|
974 |
+
#: app/features/events.php:1458 app/features/fes/form.php:704
|
975 |
#: app/features/mec/settings.php:658
|
976 |
msgid "Event Links"
|
977 |
msgstr "Veranstaltungslinks"
|
978 |
|
979 |
+
#: app/features/events.php:1461 app/features/events.php:1467
|
980 |
+
#: app/features/fes/form.php:706 app/libraries/main.php:5365
|
981 |
msgid "Event Link"
|
982 |
msgstr "Veranstaltungslink"
|
983 |
|
984 |
+
#: app/features/events.php:1464 app/features/events.php:1480
|
985 |
#: app/features/fes/form.php:707 app/features/fes/form.php:712
|
986 |
msgid "eg. http://yoursite.com/your-event"
|
987 |
msgstr "z.B. http://ihreseite.com/ihre-veranstaltung"
|
988 |
|
989 |
+
#: app/features/events.php:1468
|
990 |
#, fuzzy
|
991 |
#| msgid ""
|
992 |
#| "If you fill it, it will be replaced instead of default event page link. "
|
1000 |
"dieser durch einen neuen link ersetzt werden. Vollständigen Link einfügen, "
|
1001 |
"einschließlich http(s)://"
|
1002 |
|
1003 |
+
#: app/features/events.php:1470
|
1004 |
msgid "URL Shortener"
|
1005 |
msgstr ""
|
1006 |
|
1007 |
+
#: app/features/events.php:1477 app/features/events.php:1490
|
1008 |
+
#: app/features/fes/form.php:711 app/libraries/main.php:5366
|
1009 |
#: app/skins/single.php:673 app/skins/single/default.php:140
|
1010 |
+
#: app/skins/single/default.php:363 app/skins/single/m1.php:205
|
1011 |
+
#: app/skins/single/m2.php:132 app/skins/single/modern.php:140
|
1012 |
#: app/widgets/single.php:107
|
1013 |
msgid "More Info"
|
1014 |
msgstr "Mehr Informationen"
|
1015 |
|
1016 |
+
#: app/features/events.php:1483 app/features/fes/form.php:713
|
1017 |
msgid "More Information"
|
1018 |
msgstr "z.B. Noch mehr Informationen "
|
1019 |
|
1020 |
+
#: app/features/events.php:1485 app/features/fes/form.php:715
|
1021 |
msgid "Current Window"
|
1022 |
msgstr "Aktuelles Fenster"
|
1023 |
|
1024 |
+
#: app/features/events.php:1486 app/features/fes/form.php:716
|
1025 |
msgid "New Window"
|
1026 |
msgstr "Neues Fenster"
|
1027 |
|
1028 |
+
#: app/features/events.php:1491 app/features/fes/form.php:718
|
1029 |
msgid ""
|
1030 |
"If you fill it, it will be shown in event details page as an optional link. "
|
1031 |
"Insert full link including http(s)://"
|
1036 |
"Text angezeigt werden soll: zum Beispiel: Noch mehr Informationen oder Hier "
|
1037 |
"zur Anmeldung (z.B. bei Webinaren sinnvoll) "
|
1038 |
|
1039 |
+
#: app/features/events.php:1566 app/features/events.php:1581
|
1040 |
msgid "Total booking limits"
|
1041 |
msgstr "Gesamt Verfügbare Plätze"
|
1042 |
|
1043 |
+
#: app/features/events.php:1578 app/features/events.php:1831
|
1044 |
+
#: app/features/events.php:2046 app/modules/booking/default.php:85
|
1045 |
#: app/modules/booking/steps/tickets.php:40
|
1046 |
#: app/skins/available_spot/tpl.php:158
|
1047 |
msgid "Unlimited"
|
1048 |
msgstr "Unlimitiert"
|
1049 |
|
1050 |
+
#: app/features/events.php:1584
|
1051 |
msgid ""
|
1052 |
"If you want to set a limit to all tickets, uncheck this checkbox and put a "
|
1053 |
"limitation number."
|
1054 |
msgstr ""
|
1055 |
|
1056 |
+
#: app/features/events.php:1586
|
1057 |
#, fuzzy
|
1058 |
#| msgid "Choose your single event style."
|
1059 |
msgid "Read About A Booking System"
|
1060 |
msgstr "Wählen Sie Ihren Single Event Stil"
|
1061 |
|
1062 |
+
#: app/features/events.php:1594
|
1063 |
msgid "100"
|
1064 |
msgstr "z.B. 100"
|
1065 |
|
1066 |
+
#: app/features/events.php:1599
|
1067 |
#, fuzzy
|
1068 |
#| msgid "Total booking limits"
|
1069 |
msgid "Total user booking limits"
|
1070 |
msgstr "Gesamt Verfügbare Plätze"
|
1071 |
|
1072 |
+
#: app/features/events.php:1611 app/features/events.php:2145
|
1073 |
+
#: app/features/events.php:2277 app/features/events.php:2465
|
1074 |
msgid "Inherit from global options"
|
1075 |
msgstr "Aus den globalen Einstellungen übernehmen"
|
1076 |
|
1077 |
+
#: app/features/events.php:1614
|
1078 |
msgid "12"
|
1079 |
msgstr ""
|
1080 |
|
1081 |
+
#: app/features/events.php:1635 app/libraries/book.php:60
|
1082 |
+
#: app/libraries/main.php:5370 app/modules/booking/steps/tickets.php:40
|
1083 |
msgid "Tickets"
|
1084 |
msgstr "Tickets"
|
1085 |
|
1086 |
+
#: app/features/events.php:1638
|
1087 |
msgid ""
|
1088 |
"You're translating an event so MEC will use the original event for tickets "
|
1089 |
"and booking. You can only translate the ticket name and description. Please "
|
1090 |
"define exact tickets that you defined in the original event here."
|
1091 |
msgstr ""
|
1092 |
|
1093 |
+
#: app/features/events.php:1643
|
1094 |
#, fuzzy
|
1095 |
#| msgid "Ticket"
|
1096 |
msgid "Add Ticket"
|
1097 |
msgstr "Ticket"
|
1098 |
|
1099 |
+
#: app/features/events.php:1657 app/features/events.php:1933
|
1100 |
msgid "Ticket Name"
|
1101 |
msgstr "Ticket Name"
|
1102 |
|
1103 |
+
#: app/features/events.php:1662 app/features/events.php:1937
|
1104 |
+
#: app/features/events.php:3495 app/features/events.php:3537
|
1105 |
+
#: app/features/ix.php:3506 app/features/ix.php:3547
|
1106 |
msgid "Start Time"
|
1107 |
msgstr "Uhrzeit des Beginns"
|
1108 |
|
1109 |
+
#: app/features/events.php:1721 app/features/events.php:1967
|
1110 |
+
#: app/features/events.php:3495 app/features/events.php:3537
|
1111 |
+
#: app/features/ix.php:3506 app/features/ix.php:3547
|
1112 |
msgid "End Time"
|
1113 |
msgstr "Uhrzeit Ende"
|
1114 |
|
1115 |
+
#: app/features/events.php:1788 app/features/events.php:1792
|
1116 |
+
#: app/features/events.php:1887 app/features/events.php:1914
|
1117 |
+
#: app/features/events.php:2013 app/features/events.php:2016
|
1118 |
+
#: app/features/events.php:2093 app/features/events.php:2310
|
1119 |
+
#: app/features/events.php:2314 app/features/events.php:2356
|
1120 |
+
#: app/features/events.php:2359 app/features/mec/booking.php:388
|
1121 |
+
#: app/features/mec/booking.php:391 app/features/mec/booking.php:420
|
1122 |
+
#: app/features/mec/booking.php:423
|
1123 |
msgid "Price"
|
1124 |
msgstr "Preis"
|
1125 |
|
1126 |
+
#: app/features/events.php:1793 app/features/events.php:2017
|
1127 |
msgid "Insert 0 for free ticket. Only numbers please."
|
1128 |
msgstr "Bitte 0 für kostenloses Ticket eingeben. Bitte nur Zahlen eintragen"
|
1129 |
|
1130 |
+
#: app/features/events.php:1802 app/features/events.php:1807
|
1131 |
+
#: app/features/events.php:2026 app/features/events.php:2029
|
1132 |
msgid "Price Label"
|
1133 |
msgstr "Preisschild"
|
1134 |
|
1135 |
+
#: app/features/events.php:1808 app/features/events.php:2030
|
1136 |
msgid "For showing on website. e.g. $15"
|
1137 |
msgstr "Um das auf der Webseite anzuzeigen zum Beispiel 15 €"
|
1138 |
|
1139 |
+
#: app/features/events.php:1818 app/features/events.php:2040
|
1140 |
msgid "Available Tickets"
|
1141 |
msgstr "Verfügbare Tickets: %s "
|
1142 |
|
1143 |
+
#: app/features/events.php:1835 app/features/events.php:2050
|
1144 |
#, fuzzy
|
1145 |
#| msgid "Amount (Per Ticket)"
|
1146 |
msgid "Minimum Ticket e.g. 3"
|
1147 |
msgstr "Betrag (pro Ticket)"
|
1148 |
|
1149 |
+
#: app/features/events.php:1838 app/features/events.php:2053
|
1150 |
#, fuzzy
|
1151 |
#| msgid "Amount (Per Ticket)"
|
1152 |
msgid "MinimumTicket"
|
1153 |
msgstr "Betrag (pro Ticket)"
|
1154 |
|
1155 |
+
#: app/features/events.php:1840 app/features/events.php:2055
|
1156 |
msgid "Set a number for the minimum ticket reservation"
|
1157 |
msgstr ""
|
1158 |
|
1159 |
+
#: app/features/events.php:1848 app/features/events.php:2063
|
1160 |
msgid "e.g. 0"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
+
#: app/features/events.php:1850 app/features/events.php:2065
|
1164 |
#, fuzzy
|
1165 |
#| msgid "Days"
|
1166 |
msgid "Day"
|
1167 |
msgstr "Tage"
|
1168 |
|
1169 |
+
#: app/features/events.php:1851 app/features/events.php:2066
|
1170 |
msgid "Hour"
|
1171 |
msgstr ""
|
1172 |
|
1173 |
+
#: app/features/events.php:1853 app/features/events.php:2068
|
1174 |
#, php-format
|
1175 |
msgid "Stop selling ticket %s before event start."
|
1176 |
msgstr ""
|
1177 |
|
1178 |
+
#: app/features/events.php:1860 app/features/events.php:2074
|
1179 |
#, fuzzy
|
1180 |
#| msgid "Price Label"
|
1181 |
msgid "Price per Date"
|
1182 |
msgstr "Preisschild"
|
1183 |
|
1184 |
+
#: app/features/events.php:1891 app/features/events.php:1917
|
1185 |
+
#: app/features/events.php:2095 app/features/labels.php:60
|
1186 |
+
#: app/features/mec/meta_boxes/display_options.php:960
|
1187 |
#: app/features/mec/meta_boxes/search_form.php:66
|
1188 |
#: app/features/mec/meta_boxes/search_form.php:128
|
1189 |
#: app/features/mec/meta_boxes/search_form.php:190
|
1195 |
#: app/features/mec/meta_boxes/search_form.php:549
|
1196 |
#: app/features/mec/meta_boxes/search_form.php:610
|
1197 |
#: app/features/mec/meta_boxes/search_form.php:707
|
1198 |
+
#: app/features/mec/settings.php:840 app/features/mec/single.php:250
|
1199 |
+
#: app/libraries/skins.php:995
|
1200 |
msgid "Label"
|
1201 |
msgstr "Label"
|
1202 |
|
1203 |
+
#: app/features/events.php:2133
|
1204 |
msgid "Fees"
|
1205 |
msgstr "Gebühren"
|
1206 |
|
1207 |
+
#: app/features/events.php:2170 app/features/events.php:2208
|
1208 |
+
#: app/features/mec/booking.php:307 app/features/mec/booking.php:336
|
1209 |
msgid "Fee Title"
|
1210 |
msgstr "Gebühren Name"
|
1211 |
|
1212 |
+
#: app/features/events.php:2176 app/features/events.php:2180
|
1213 |
+
#: app/features/events.php:2213 app/features/events.php:2216
|
1214 |
+
#: app/features/mec/booking.php:311 app/features/mec/booking.php:314
|
1215 |
+
#: app/features/mec/booking.php:340 app/features/mec/booking.php:343
|
1216 |
msgid "Amount"
|
1217 |
msgstr "Betrag"
|
1218 |
|
1219 |
+
#: app/features/events.php:2181 app/features/events.php:2217
|
1220 |
+
#: app/features/mec/booking.php:315 app/features/mec/booking.php:344
|
1221 |
msgid ""
|
1222 |
"Fee amount, considered as fixed amount if you set the type to amount "
|
1223 |
"otherwise considered as percentage"
|
1225 |
"Gebührenbetrag, gilt als fester Betrag, wenn Sie die Art auf Betrag setzen, "
|
1226 |
"sonst als Prozentsatz"
|
1227 |
|
1228 |
+
#: app/features/events.php:2190 app/features/events.php:2226
|
1229 |
+
#: app/features/mec/booking.php:322 app/features/mec/booking.php:351
|
1230 |
msgid "Percent"
|
1231 |
msgstr "Prozent"
|
1232 |
|
1233 |
+
#: app/features/events.php:2191 app/features/events.php:2227
|
1234 |
+
#: app/features/mec/booking.php:323 app/features/mec/booking.php:352
|
1235 |
msgid "Amount (Per Ticket)"
|
1236 |
msgstr "Betrag (pro Ticket)"
|
1237 |
|
1238 |
+
#: app/features/events.php:2192 app/features/events.php:2228
|
1239 |
+
#: app/features/mec/booking.php:324 app/features/mec/booking.php:353
|
1240 |
msgid "Amount (Per Booking)"
|
1241 |
msgstr "Betrag (pro Buchung)"
|
1242 |
|
1243 |
+
#: app/features/events.php:2265 app/features/mec/settings.php:736
|
1244 |
msgid "Ticket Variations / Options"
|
1245 |
msgstr ""
|
1246 |
|
1247 |
+
#: app/features/events.php:2315 app/features/events.php:2360
|
1248 |
+
#: app/features/mec/booking.php:392 app/features/mec/booking.php:424
|
1249 |
#, fuzzy
|
1250 |
#| msgid "Option"
|
1251 |
msgid "Option Price"
|
1252 |
msgstr "Option"
|
1253 |
|
1254 |
+
#: app/features/events.php:2325 app/features/events.php:2329
|
1255 |
+
#: app/features/events.php:2369 app/features/events.php:2372
|
1256 |
+
#: app/features/mec/booking.php:398 app/features/mec/booking.php:401
|
1257 |
+
#: app/features/mec/booking.php:430 app/features/mec/booking.php:433
|
1258 |
#, fuzzy
|
1259 |
#| msgid "Amount (Per Ticket)"
|
1260 |
msgid "Maximum Per Ticket"
|
1261 |
msgstr "Betrag (pro Ticket)"
|
1262 |
|
1263 |
+
#: app/features/events.php:2330 app/features/events.php:2373
|
1264 |
+
#: app/features/mec/booking.php:402 app/features/mec/booking.php:434
|
1265 |
msgid "Maximum Per Ticket. Leave it blank for unlimited."
|
1266 |
msgstr ""
|
1267 |
|
1268 |
+
#: app/features/events.php:2519 app/features/mec/booking.php:496
|
1269 |
+
#: app/libraries/main.php:2784
|
1270 |
#, fuzzy
|
1271 |
#| msgid "Name"
|
1272 |
msgid "MEC Name"
|
1273 |
msgstr "Name"
|
1274 |
|
1275 |
+
#: app/features/events.php:2520 app/features/mec/booking.php:497
|
1276 |
+
#: app/libraries/main.php:2813
|
1277 |
#, fuzzy
|
1278 |
#| msgid "Email"
|
1279 |
msgid "MEC Email"
|
1280 |
msgstr "Email"
|
1281 |
|
1282 |
+
#: app/features/events.php:2521 app/features/mec/booking.php:498
|
1283 |
+
#: app/libraries/main.php:2754
|
1284 |
msgid "Text"
|
1285 |
msgstr "Text"
|
1286 |
|
1287 |
+
#: app/features/events.php:2524 app/features/mec/booking.php:501
|
1288 |
#: app/features/organizers.php:103 app/features/organizers.php:148
|
1289 |
#: app/features/speakers.php:119 app/features/speakers.php:192
|
1290 |
+
#: app/features/speakers.php:271 app/libraries/main.php:2930
|
1291 |
msgid "Tel"
|
1292 |
msgstr "Tel"
|
1293 |
|
1294 |
+
#: app/features/events.php:2525 app/features/mec/booking.php:502
|
1295 |
+
#: app/libraries/main.php:2872
|
1296 |
msgid "File"
|
1297 |
msgstr ""
|
1298 |
|
1299 |
+
#: app/features/events.php:2526 app/features/mec/booking.php:503
|
1300 |
+
#: app/libraries/main.php:2959
|
1301 |
msgid "Textarea"
|
1302 |
msgstr "Textbereich"
|
1303 |
|
1304 |
+
#: app/features/events.php:2527 app/features/mec/booking.php:504
|
1305 |
+
#: app/libraries/main.php:3012
|
1306 |
msgid "Checkboxes"
|
1307 |
msgstr "Checkboxes"
|
1308 |
|
1309 |
+
#: app/features/events.php:2528 app/features/mec/booking.php:505
|
1310 |
+
#: app/libraries/main.php:3056
|
1311 |
msgid "Radio Buttons"
|
1312 |
msgstr "Radio Buttons"
|
1313 |
|
1314 |
+
#: app/features/events.php:2529 app/features/mec/booking.php:506
|
1315 |
#: app/features/mec/meta_boxes/search_form.php:34
|
1316 |
#: app/features/mec/meta_boxes/search_form.php:41
|
1317 |
#: app/features/mec/meta_boxes/search_form.php:48
|
1387 |
#: app/features/mec/meta_boxes/search_form.php:696
|
1388 |
#: app/features/mec/meta_boxes/search_form.php:703
|
1389 |
#: app/features/mec/meta_boxes/search_form.php:710
|
1390 |
+
#: app/features/mec/meta_boxes/search_form.php:717 app/libraries/main.php:3100
|
1391 |
msgid "Dropdown"
|
1392 |
msgstr "Dropdown"
|
1393 |
|
1394 |
+
#: app/features/events.php:2530 app/features/mec/booking.php:507
|
1395 |
+
#: app/libraries/main.php:3147
|
1396 |
msgid "Agreement"
|
1397 |
msgstr "Zustimmung"
|
1398 |
|
1399 |
+
#: app/features/events.php:2531 app/features/mec/booking.php:508
|
1400 |
+
#: app/libraries/main.php:2988
|
1401 |
msgid "Paragraph"
|
1402 |
msgstr "Absatz"
|
1403 |
|
1404 |
+
#: app/features/events.php:3203 app/features/events.php:3221
|
1405 |
+
#: app/features/events.php:3239 app/features/events.php:3257
|
1406 |
#, php-format
|
1407 |
msgid "Show all %s"
|
1408 |
msgstr "Zeige alle %s"
|
1409 |
|
1410 |
+
#: app/features/events.php:3203
|
1411 |
msgid "labels"
|
1412 |
msgstr "Labels + Eventstatus"
|
1413 |
|
1414 |
+
#: app/features/events.php:3221
|
1415 |
msgid "locations"
|
1416 |
msgstr "Orte"
|
1417 |
|
1418 |
+
#: app/features/events.php:3239
|
1419 |
msgid "organizers"
|
1420 |
msgstr "Veranstalter"
|
1421 |
|
1422 |
+
#: app/features/events.php:3273
|
1423 |
#, fuzzy
|
1424 |
#| msgid "Attendees Limit"
|
1425 |
msgid "Attendees List"
|
1426 |
msgstr "Teilnehmer Limit, maximale Anzahl"
|
1427 |
|
1428 |
+
#: app/features/events.php:3303 app/features/events.php:3495
|
1429 |
+
#: app/features/events.php:3537 app/features/ix.php:3506
|
1430 |
+
#: app/features/ix.php:3547 app/features/locations.php:58
|
1431 |
+
#: app/features/locations.php:232 app/features/locations.php:289
|
1432 |
+
#: app/features/locations.php:291 app/features/locations.php:300
|
1433 |
+
#: app/features/mec/meta_boxes/display_options.php:961
|
1434 |
#: app/features/mec/meta_boxes/search_form.php:38
|
1435 |
#: app/features/mec/meta_boxes/search_form.php:100
|
1436 |
#: app/features/mec/meta_boxes/search_form.php:162
|
1442 |
#: app/features/mec/meta_boxes/search_form.php:521
|
1443 |
#: app/features/mec/meta_boxes/search_form.php:582
|
1444 |
#: app/features/mec/meta_boxes/search_form.php:679
|
1445 |
+
#: app/features/mec/settings.php:814 app/features/mec/single.php:240
|
1446 |
+
#: app/features/search.php:73 app/libraries/main.php:2247
|
1447 |
+
#: app/libraries/main.php:5339 app/libraries/skins.php:891
|
1448 |
+
#: app/skins/single.php:493 app/skins/single.php:930
|
1449 |
+
#: app/skins/single/default.php:176 app/skins/single/default.php:399
|
1450 |
+
#: app/skins/single/m1.php:169 app/skins/single/m2.php:95
|
1451 |
+
#: app/skins/single/modern.php:102
|
1452 |
msgid "Location"
|
1453 |
msgstr "Ort"
|
1454 |
|
1455 |
+
#: app/features/events.php:3308
|
1456 |
msgid "Repeat"
|
1457 |
msgstr "Wiederholen"
|
1458 |
|
1459 |
+
#: app/features/events.php:3309
|
1460 |
msgid "Author"
|
1461 |
msgstr "Autor"
|
1462 |
|
1463 |
+
#: app/features/events.php:3430 app/features/events.php:3431
|
1464 |
msgid "iCal Export"
|
1465 |
msgstr "ical Export"
|
1466 |
|
1467 |
+
#: app/features/events.php:3433 app/features/events.php:3434
|
1468 |
msgid "CSV Export"
|
1469 |
msgstr "CSV Export"
|
1470 |
|
1471 |
+
#: app/features/events.php:3436 app/features/events.php:3437
|
1472 |
msgid "MS Excel Export"
|
1473 |
msgstr "MS Excel Export"
|
1474 |
|
1475 |
+
#: app/features/events.php:3439 app/features/events.php:3440
|
1476 |
msgid "XML Export"
|
1477 |
msgstr "XML Export"
|
1478 |
|
1479 |
+
#: app/features/events.php:3442 app/features/events.php:3443
|
1480 |
msgid "JSON Export"
|
1481 |
msgstr "JSON Export"
|
1482 |
|
1483 |
+
#: app/features/events.php:3445 app/features/events.php:3446
|
1484 |
+
#: app/features/events.php:3628
|
1485 |
msgid "Duplicate"
|
1486 |
msgstr "Kopie"
|
1487 |
|
1488 |
+
#: app/features/events.php:3495 app/features/events.php:3537
|
1489 |
+
#: app/features/fes.php:223 app/features/ix.php:3506 app/features/ix.php:3547
|
1490 |
+
#: app/features/labels.php:177 app/features/locations.php:231
|
1491 |
#: app/features/organizers.php:203 app/features/speakers.php:268
|
1492 |
msgid "ID"
|
1493 |
msgstr "ID"
|
1494 |
|
1495 |
+
#: app/features/events.php:3495 app/features/events.php:3537
|
1496 |
+
#: app/features/ix.php:3506 app/features/ix.php:3547
|
1497 |
msgid "Link"
|
1498 |
msgstr "Link"
|
1499 |
|
1500 |
+
#: app/features/events.php:3495 app/features/events.php:3537
|
1501 |
#, php-format
|
1502 |
msgid "%s Tel"
|
1503 |
msgstr "%s Tel"
|
1504 |
|
1505 |
+
#: app/features/events.php:3495 app/features/events.php:3537
|
1506 |
#, php-format
|
1507 |
msgid "%s Email"
|
1508 |
msgstr "%s Email"
|
1509 |
|
1510 |
+
#: app/features/events.php:3790 app/features/fes.php:223
|
1511 |
+
#: app/features/profile/profile.php:186 app/libraries/main.php:2282
|
1512 |
+
#: app/libraries/main.php:5369
|
1513 |
msgid "Ticket"
|
1514 |
msgstr "Ticket"
|
1515 |
|
1516 |
+
#: app/features/events.php:3793 app/features/profile/profile.php:189
|
1517 |
#, fuzzy
|
1518 |
#| msgid "Verification"
|
1519 |
msgid "Variations"
|
1520 |
msgstr "Verifizierung"
|
1521 |
|
1522 |
+
#: app/features/events.php:3808 app/features/fes.php:303
|
1523 |
msgid "Unknown"
|
1524 |
msgstr "Unbekannt"
|
1525 |
|
1526 |
+
#: app/features/events.php:3841
|
1527 |
#, fuzzy
|
1528 |
#| msgid "Attendees Form"
|
1529 |
msgid "No Attendees Found!"
|
1562 |
msgid "The event removed!"
|
1563 |
msgstr "Die Veranstaltung wurde entfernt."
|
1564 |
|
1565 |
+
#: app/features/fes.php:223 app/libraries/main.php:2259
|
1566 |
msgid "Transaction ID"
|
1567 |
msgstr "Transaktions-ID"
|
1568 |
|
1613 |
msgstr "Zurück zur Liste der Veranstaltungen"
|
1614 |
|
1615 |
#: app/features/fes/form.php:366
|
1616 |
+
#: app/features/mec/meta_boxes/display_options.php:845
|
1617 |
#: app/libraries/main.php:410
|
1618 |
msgid "Monday"
|
1619 |
msgstr "Montag"
|
1620 |
|
1621 |
#: app/features/fes/form.php:367
|
1622 |
+
#: app/features/mec/meta_boxes/display_options.php:846
|
1623 |
#: app/libraries/main.php:410
|
1624 |
msgid "Tuesday"
|
1625 |
msgstr "Dienstag"
|
1626 |
|
1627 |
#: app/features/fes/form.php:368
|
1628 |
+
#: app/features/mec/meta_boxes/display_options.php:847
|
1629 |
#: app/libraries/main.php:410
|
1630 |
msgid "Wednesday"
|
1631 |
msgstr "Mittwoch"
|
1632 |
|
1633 |
#: app/features/fes/form.php:369
|
1634 |
+
#: app/features/mec/meta_boxes/display_options.php:848
|
1635 |
#: app/libraries/main.php:410
|
1636 |
msgid "Thursday"
|
1637 |
msgstr "Donnerstag"
|
1638 |
|
1639 |
#: app/features/fes/form.php:370
|
1640 |
+
#: app/features/mec/meta_boxes/display_options.php:849
|
1641 |
#: app/libraries/main.php:410
|
1642 |
msgid "Friday"
|
1643 |
msgstr "Freitag"
|
1644 |
|
1645 |
#: app/features/fes/form.php:371
|
1646 |
+
#: app/features/mec/meta_boxes/display_options.php:850
|
1647 |
#: app/libraries/main.php:410
|
1648 |
msgid "Saturday"
|
1649 |
msgstr "Samstag"
|
1650 |
|
1651 |
#: app/features/fes/form.php:372
|
1652 |
+
#: app/features/mec/meta_boxes/display_options.php:844
|
1653 |
#: app/libraries/main.php:410
|
1654 |
msgid "Sunday"
|
1655 |
msgstr "Sonntag"
|
1693 |
|
1694 |
#: app/features/fes/form.php:783 app/features/labels.php:61
|
1695 |
#: app/features/labels.php:221 app/features/mec.php:404
|
1696 |
+
#: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:5336
|
1697 |
#: app/skins/single.php:702 app/skins/single/default.php:155
|
1698 |
+
#: app/skins/single/default.php:378 app/skins/single/m1.php:73
|
1699 |
+
#: app/skins/single/modern.php:228
|
1700 |
msgid "Labels"
|
1701 |
msgstr "Labels"
|
1702 |
|
1786 |
msgid "Both of API key and Calendar ID are required!"
|
1787 |
msgstr "Beide, API Schlüssel und Calender ID wird benötigt"
|
1788 |
|
1789 |
+
#: app/features/ix.php:2770 app/features/ix.php:3189 app/features/ix.php:3886
|
1790 |
msgid "Please select some events to import!"
|
1791 |
msgstr "Bitte wählen Sie einige Veranstaltungen aus zum importieren"
|
1792 |
|
1800 |
msgid "Check at Meetup"
|
1801 |
msgstr ""
|
1802 |
|
1803 |
+
#: app/features/ix.php:3506 app/features/ix.php:3547
|
1804 |
msgid "Organizer Tel"
|
1805 |
msgstr "Organisator Telefon"
|
1806 |
|
1807 |
+
#: app/features/ix.php:3506 app/features/ix.php:3547
|
1808 |
msgid "Organizer Email"
|
1809 |
msgstr "Organisator Email"
|
1810 |
|
1811 |
+
#: app/features/ix.php:3622
|
1812 |
msgid "All of Client ID, Client Secret and Calendar ID are required!"
|
1813 |
msgstr "Dies wird alles benötigt: Client ID, Client Secret und Calender ID!"
|
1814 |
|
1815 |
+
#: app/features/ix.php:3645
|
1816 |
#, php-format
|
1817 |
msgid "All seems good! Please click %s for authenticating your app."
|
1818 |
msgstr ""
|
1819 |
"Alles scheint gut zu sein! Bitte klicken %s um Ihre App zu authentifizieren."
|
1820 |
|
1821 |
+
#: app/features/ix.php:3699
|
1822 |
msgid "All of Client App, Client Secret and Calendar ID are required!"
|
1823 |
msgstr "Dies wird alles benötigt: Client ID, Client Secret und Calender ID!"
|
1824 |
|
1825 |
+
#: app/features/ix.php:3815
|
1826 |
#, php-format
|
1827 |
msgid "%s events added to Google Calendar successfully."
|
1828 |
msgstr "%s Events wurden erfolgreich zum Google Kalender hinzugefügt."
|
1829 |
|
1830 |
+
#: app/features/ix.php:3816
|
1831 |
#, php-format
|
1832 |
msgid "%s previously added events get updated."
|
1833 |
msgstr "%s vorherige hinzugefügte Events wurden aktualisiert."
|
1834 |
|
1835 |
+
#: app/features/ix.php:3817
|
1836 |
#, php-format
|
1837 |
msgid "%s events failed to add for following reasons: %s"
|
1838 |
msgstr "%s Events wurde aus folgenden Gründen nicht hinzugefügt: %s"
|
1839 |
|
1840 |
+
#: app/features/ix.php:3849
|
1841 |
#, fuzzy
|
1842 |
#| msgid "Please insert your facebook page's link."
|
1843 |
msgid "Please insert your Facebook page's link."
|
1844 |
msgstr "Bitte Ihren Facebook Seitenlink eingeben."
|
1845 |
|
1846 |
+
#: app/features/ix.php:3858
|
1847 |
#, fuzzy
|
1848 |
#| msgid ""
|
1849 |
#| "We couldn't recognize your Facebook page. Please check it and provide us "
|
1855 |
"Wir konnten Ihre Facebookseite nicht erkennen. Bitte checken Sie das und "
|
1856 |
"stellen Sie uns einen gültigen Facebookseitenlink zur Verfügung."
|
1857 |
|
1858 |
+
#: app/features/ix.php:3890
|
1859 |
msgid "Please insert your facebook page's link."
|
1860 |
msgstr "Bitte Ihren Facebook Seitenlink eingeben."
|
1861 |
|
1862 |
+
#: app/features/ix.php:3895
|
1863 |
msgid ""
|
1864 |
"We couldn't recognize your Facebook page. Please check it and provide us a "
|
1865 |
"valid facebook page link."
|
1930 |
"Dies wird alle Ihre Eventdaten von der Webseite in Ihr gewünschtes Format "
|
1931 |
"exportieren."
|
1932 |
|
1933 |
+
#: app/features/ix/export.php:25 app/features/mec/modules.php:179
|
1934 |
msgid "iCal"
|
1935 |
msgstr "iCal"
|
1936 |
|
2040 |
msgid "Add to Google Calendar"
|
2041 |
msgstr "Zum Google Kalender hinzufügen"
|
2042 |
|
2043 |
+
#: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:638
|
2044 |
+
#: app/features/mec/modules.php:398 app/features/mec/notifications.php:907
|
2045 |
+
#: app/features/mec/settings.php:1054 app/features/mec/single.php:297
|
2046 |
msgid "Checking ..."
|
2047 |
msgstr "Überprüfung"
|
2048 |
|
2087 |
msgstr ""
|
2088 |
|
2089 |
#: app/features/ix/import.php:46 app/features/mec/booking.php:91
|
2090 |
+
#: app/features/mec/booking.php:273 app/features/mec/booking.php:291
|
2091 |
+
#: app/features/mec/booking.php:368
|
2092 |
#: app/features/mec/meta_boxes/display_options.php:176
|
2093 |
#: app/features/mec/meta_boxes/display_options.php:368
|
2094 |
+
#: app/features/mec/modules.php:70 app/features/mec/modules.php:212
|
2095 |
+
#: app/features/mec/modules.php:229
|
2096 |
#, php-format
|
2097 |
msgid "%s is required to use this feature."
|
2098 |
msgstr ""
|
2099 |
|
2100 |
#: app/features/ix/import.php:46 app/features/ix/sync.php:22
|
2101 |
+
#: app/features/mec/booking.php:91 app/features/mec/booking.php:273
|
2102 |
+
#: app/features/mec/booking.php:291 app/features/mec/booking.php:368
|
2103 |
#: app/features/mec/meta_boxes/display_options.php:176
|
2104 |
#: app/features/mec/meta_boxes/display_options.php:368
|
2105 |
#: app/features/mec/meta_boxes/display_options.php:396
|
2106 |
#: app/features/mec/meta_boxes/display_options.php:536
|
2107 |
#: app/features/mec/meta_boxes/display_options.php:587
|
2108 |
#: app/features/mec/meta_boxes/display_options.php:694
|
2109 |
+
#: app/features/mec/meta_boxes/display_options.php:802
|
2110 |
+
#: app/features/mec/meta_boxes/display_options.php:909
|
2111 |
+
#: app/features/mec/meta_boxes/display_options.php:1122
|
2112 |
+
#: app/features/mec/modules.php:70 app/features/mec/modules.php:212
|
2113 |
+
#: app/features/mec/modules.php:229
|
2114 |
msgid "Pro version of Modern Events Calendar"
|
2115 |
msgstr ""
|
2116 |
|
2302 |
msgstr "Auto Synchronisation"
|
2303 |
|
2304 |
#: app/features/ix/sync.php:22
|
2305 |
+
#: app/features/mec/meta_boxes/display_options.php:909
|
2306 |
#, php-format
|
2307 |
msgid "%s is required to use synchronization feature."
|
2308 |
msgstr ""
|
2487 |
#: app/features/mec/meta_boxes/display_options.php:401
|
2488 |
#: app/features/mec/meta_boxes/display_options.php:592
|
2489 |
#: app/features/mec/meta_boxes/display_options.php:642
|
2490 |
+
#: app/features/mec/meta_boxes/display_options.php:807
|
2491 |
+
#: app/features/mec/meta_boxes/display_options.php:1004
|
2492 |
+
#: app/features/mec/meta_boxes/display_options.php:1061
|
2493 |
+
#: app/features/mec/meta_boxes/display_options.php:1153
|
2494 |
+
#: app/features/mec/meta_boxes/display_options.php:1240
|
2495 |
msgid "Style"
|
2496 |
msgstr "Style"
|
2497 |
|
2516 |
msgstr "Ausgewähltes Bild"
|
2517 |
|
2518 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2519 |
+
#: app/libraries/main.php:5585 app/skins/agenda/render.php:43
|
2520 |
#: app/skins/available_spot/tpl.php:40 app/skins/carousel/render.php:46
|
2521 |
#: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:33
|
2522 |
#: app/skins/daily_view/render.php:29 app/skins/grid/render.php:55
|
2534 |
msgid "You can show featured and canceled events by a different style!"
|
2535 |
msgstr ""
|
2536 |
|
2537 |
+
#: app/features/labels.php:180 app/features/locations.php:234
|
2538 |
#: app/features/organizers.php:206 app/features/speakers.php:272
|
2539 |
#: app/modules/booking/steps/tickets.php:38
|
2540 |
msgid "Count"
|
2541 |
msgstr "Zähler"
|
2542 |
|
2543 |
+
#: app/features/labels.php:181 app/features/locations.php:235
|
2544 |
#: app/features/organizers.php:207
|
2545 |
msgid "Slug"
|
2546 |
msgstr "Slug"
|
2547 |
|
2548 |
+
#: app/features/labels.php:221 app/features/locations.php:289
|
2549 |
#, php-format
|
2550 |
msgid "Event %s"
|
2551 |
msgstr "Event %s"
|
2552 |
|
2553 |
#: app/features/locations.php:59 app/features/mec.php:405
|
2554 |
#: app/features/mec/dashboard.php:271 app/features/mec/meta_boxes/filter.php:96
|
2555 |
+
#: app/libraries/main.php:5338
|
2556 |
msgid "Locations"
|
2557 |
msgstr "Orte"
|
2558 |
|
2559 |
+
#: app/features/locations.php:105 app/features/locations.php:160
|
2560 |
+
#: app/features/locations.php:233
|
2561 |
msgid "Address"
|
2562 |
msgstr "Adresse"
|
2563 |
|
2564 |
+
#: app/features/locations.php:108 app/features/locations.php:161
|
2565 |
msgid "Enter the location address"
|
2566 |
msgstr "Geben Sie die Veranstaltungsanschrift ein"
|
2567 |
|
2568 |
+
#: app/features/locations.php:122 app/features/locations.php:173
|
2569 |
+
#: app/features/locations.php:327
|
2570 |
msgid "Latitude"
|
2571 |
msgstr "Breitengrad z.B. 49.0069646 "
|
2572 |
|
2573 |
+
#: app/features/locations.php:125 app/features/locations.php:174
|
2574 |
msgid "Geo latitude (Optional)"
|
2575 |
msgstr "Geologischer Breitengrad (Optional)"
|
2576 |
|
2577 |
+
#: app/features/locations.php:130 app/features/locations.php:177
|
2578 |
+
#: app/features/locations.php:328
|
2579 |
msgid "Longitude"
|
2580 |
msgstr "Längengrad z.B. 8.4118636 "
|
2581 |
|
2582 |
+
#: app/features/locations.php:133 app/features/locations.php:178
|
2583 |
msgid "Geo longitude (Optional)"
|
2584 |
msgstr "Geologischer Längengrad (Optional)"
|
2585 |
|
2586 |
+
#: app/features/locations.php:139 app/features/locations.php:182
|
2587 |
#: app/features/organizers.php:127 app/features/organizers.php:160
|
2588 |
#: app/features/speakers.php:167 app/features/speakers.php:216
|
2589 |
msgid "Thumbnail"
|
2590 |
msgstr "Miniaturansicht"
|
2591 |
|
2592 |
+
#: app/features/locations.php:144 app/features/locations.php:185
|
2593 |
#: app/features/organizers.php:132 app/features/organizers.php:163
|
2594 |
#: app/features/speakers.php:172 app/features/speakers.php:219
|
2595 |
msgid "Upload/Add image"
|
2596 |
msgstr "Bild hochladen/hinzufügen"
|
2597 |
|
2598 |
+
#: app/features/locations.php:145 app/features/locations.php:186
|
2599 |
+
#: app/features/locations.php:343 app/features/locations.php:350
|
2600 |
#: app/features/organizers.php:133 app/features/organizers.php:164
|
2601 |
#: app/features/organizers.php:299 app/features/organizers.php:306
|
2602 |
#: app/features/speakers.php:173 app/features/speakers.php:220
|
2603 |
msgid "Remove image"
|
2604 |
msgstr "Bild entfernen"
|
2605 |
|
2606 |
+
#: app/features/locations.php:292
|
2607 |
msgid "Hide location"
|
2608 |
msgstr "Ort verbergen"
|
2609 |
|
2610 |
+
#: app/features/locations.php:293
|
2611 |
msgid "Insert a new location"
|
2612 |
msgstr "Neuen Ort hinzufügen"
|
2613 |
|
2614 |
+
#: app/features/locations.php:301
|
2615 |
msgid "Choose one of saved locations or insert new one below."
|
2616 |
msgstr ""
|
2617 |
"Wählen Sie einen der gespeicherten Orte aus, oder fügen Sie einen neuen ein."
|
2618 |
|
2619 |
+
#: app/features/locations.php:308
|
2620 |
msgid "Location Name"
|
2621 |
msgstr "Name Veranstaltungsort"
|
2622 |
|
2623 |
+
#: app/features/locations.php:309
|
2624 |
msgid "eg. City Hall"
|
2625 |
msgstr ""
|
2626 |
"z.B. Karlsruhe Schlosshotel oder Frankfurt Allianz oder Dortmund "
|
2627 |
"Westfalenhalle"
|
2628 |
|
2629 |
+
#: app/features/locations.php:312 app/features/mec/settings.php:700
|
2630 |
#: app/widgets/single.php:115
|
2631 |
msgid "Event Location"
|
2632 |
msgstr "Veranstaltungsort"
|
2633 |
|
2634 |
+
#: app/features/locations.php:313
|
2635 |
msgid "eg. City hall, Manhattan, New York"
|
2636 |
msgstr ""
|
2637 |
"z.B. Holiday Inn, Zimmerstraße 8, 76137 Karlsruhe oder Finanzevent, Jenaer "
|
2638 |
"Ring 1, 76297 Stutensee"
|
2639 |
|
2640 |
+
#: app/features/locations.php:331
|
2641 |
#, fuzzy
|
2642 |
#| msgid "Longitude"
|
2643 |
msgid "Latitude/Longitude"
|
2644 |
msgstr "Längengrad z.B. 8.4118636 "
|
2645 |
|
2646 |
+
#: app/features/locations.php:332
|
2647 |
msgid ""
|
2648 |
"If you leave the latitude and longitude empty, Modern Events Calendar tries "
|
2649 |
"to convert the location address to geopoint, Latitude and Longitude are the "
|
2652 |
"the location on the map to find lat long coordinates."
|
2653 |
msgstr ""
|
2654 |
|
2655 |
+
#: app/features/locations.php:332
|
2656 |
msgid "Get Latitude and Longitude"
|
2657 |
msgstr ""
|
2658 |
|
2659 |
+
#: app/features/locations.php:342 app/features/organizers.php:298
|
2660 |
msgid "Choose image"
|
2661 |
msgstr "Bild wählen"
|
2662 |
|
2663 |
+
#: app/features/locations.php:356
|
2664 |
msgid "Don't show map in single event page"
|
2665 |
msgstr "Karte in Einzelansicht nicht anzeigen"
|
2666 |
|
2667 |
+
#: app/features/locations.php:359 app/libraries/main.php:5372
|
2668 |
#, fuzzy
|
2669 |
#| msgid "Locations"
|
2670 |
msgid "Other Locations"
|
2671 |
msgstr "Orte"
|
2672 |
|
2673 |
+
#: app/features/locations.php:361
|
2674 |
#, fuzzy
|
2675 |
#| msgid ""
|
2676 |
#| "You can select extra organizers in addition to main organizer if you like."
|
2694 |
msgid "Troubleshooting"
|
2695 |
msgstr ""
|
2696 |
|
2697 |
+
#: app/features/mec.php:256 app/libraries/notifications.php:937
|
2698 |
#, php-format
|
2699 |
msgid "%s to %s"
|
2700 |
msgstr "%s zu %s"
|
2730 |
|
2731 |
#: app/features/mec.php:406 app/features/mec/dashboard.php:278
|
2732 |
#: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
|
2733 |
+
#: app/libraries/main.php:5340
|
2734 |
msgid "Organizers"
|
2735 |
msgstr "Veranstalter"
|
2736 |
|
2843 |
msgid "Search..."
|
2844 |
msgstr "Suche %s"
|
2845 |
|
2846 |
+
#: app/features/mec/booking.php:72 app/features/mec/booking.php:514
|
2847 |
+
#: app/features/mec/booking.php:594 app/features/mec/booking.php:603
|
2848 |
+
#: app/features/mec/booking.php:613 app/features/mec/booking.php:655
|
2849 |
+
#: app/features/mec/booking.php:669 app/features/mec/messages.php:15
|
2850 |
#: app/features/mec/messages.php:51 app/features/mec/messages.php:60
|
2851 |
#: app/features/mec/messages.php:94 app/features/mec/messages.php:103
|
2852 |
+
#: app/features/mec/modules.php:25 app/features/mec/modules.php:363
|
2853 |
+
#: app/features/mec/modules.php:373 app/features/mec/modules.php:415
|
2854 |
+
#: app/features/mec/modules.php:429 app/features/mec/notifications.php:14
|
2855 |
#: app/features/mec/notifications.php:816
|
2856 |
#: app/features/mec/notifications.php:828
|
2857 |
#: app/features/mec/notifications.php:924
|
2858 |
#: app/features/mec/notifications.php:938 app/features/mec/settings.php:39
|
2859 |
#: app/features/mec/settings.php:1003 app/features/mec/settings.php:1013
|
2860 |
#: app/features/mec/settings.php:1071 app/features/mec/settings.php:1085
|
2861 |
+
#: app/features/mec/single.php:17 app/features/mec/single.php:262
|
2862 |
+
#: app/features/mec/single.php:272 app/features/mec/single.php:314
|
2863 |
+
#: app/features/mec/single.php:328 app/features/mec/styles.php:11
|
2864 |
#: app/features/mec/styles.php:31 app/features/mec/styles.php:40
|
2865 |
#: app/features/mec/styles.php:77 app/features/mec/styles.php:86
|
2866 |
#: app/features/mec/styling.php:37 app/features/mec/styling.php:242
|
2880 |
msgstr ""
|
2881 |
|
2882 |
#: app/features/mec/booking.php:102 app/features/mec/booking.php:107
|
2883 |
+
#: app/features/mec/modules.php:312 app/features/mec/modules.php:317
|
2884 |
msgid "Date Format"
|
2885 |
msgstr "Datumsformat"
|
2886 |
|
2892 |
#: app/features/mec/meta_boxes/display_options.php:135
|
2893 |
#: app/features/mec/meta_boxes/display_options.php:349
|
2894 |
#: app/features/mec/meta_boxes/display_options.php:445
|
2895 |
+
#: app/features/mec/meta_boxes/display_options.php:952
|
2896 |
+
#: app/features/mec/meta_boxes/display_options.php:1219
|
2897 |
+
#: app/features/mec/meta_boxes/display_options.php:1328
|
2898 |
+
#: app/features/mec/meta_boxes/display_options.php:1379
|
2899 |
msgid "Limit"
|
2900 |
msgstr "Limit"
|
2901 |
|
3025 |
msgid "Auto confirmation for paid bookings"
|
3026 |
msgstr "Automatische Bestätigung für kostenpflichtige Buchungen"
|
3027 |
|
3028 |
+
#: app/features/mec/booking.php:259
|
3029 |
+
msgid "Send confirmation email in auto confirmation mode"
|
3030 |
+
msgstr ""
|
3031 |
+
|
3032 |
+
#: app/features/mec/booking.php:278
|
3033 |
msgid "Enable coupons module"
|
3034 |
msgstr "Gutscheinmodul aktivieren"
|
3035 |
|
3036 |
+
#: app/features/mec/booking.php:280
|
3037 |
msgid ""
|
3038 |
"After enabling and saving the settings,, you should reload the page to see a "
|
3039 |
"new menu on the Dashboard > Booking"
|
3040 |
msgstr ""
|
3041 |
|
3042 |
+
#: app/features/mec/booking.php:288 app/libraries/main.php:558
|
3043 |
msgid "Taxes / Fees"
|
3044 |
msgstr "Steuern/Gebühren"
|
3045 |
|
3046 |
+
#: app/features/mec/booking.php:296
|
3047 |
msgid "Enable taxes / fees module"
|
3048 |
msgstr "Modul für Gebühren/Steuern aktivieren"
|
3049 |
|
3050 |
+
#: app/features/mec/booking.php:301
|
3051 |
msgid "Add Fee"
|
3052 |
msgstr "Gebühr hinzufügen"
|
3053 |
|
3054 |
+
#: app/features/mec/booking.php:365 app/libraries/main.php:559
|
3055 |
msgid "Ticket Variations & Options"
|
3056 |
msgstr ""
|
3057 |
|
3058 |
+
#: app/features/mec/booking.php:373
|
3059 |
#, fuzzy
|
3060 |
#| msgid "Enable coupons module"
|
3061 |
msgid "Enable ticket options module"
|
3062 |
msgstr "Gutscheinmodul aktivieren"
|
3063 |
|
3064 |
+
#: app/features/mec/booking.php:378
|
3065 |
msgid "Add Variation / Option"
|
3066 |
msgstr ""
|
3067 |
|
3068 |
+
#: app/features/mec/booking.php:581
|
3069 |
msgid "Enable Organizer Payment Module"
|
3070 |
msgstr ""
|
3071 |
|
3072 |
+
#: app/features/mec/booking.php:585
|
3073 |
#, fuzzy
|
3074 |
#| msgid "Organizer Tel"
|
3075 |
msgid "Organizer Payment"
|
3076 |
msgstr "Organisator Telefon"
|
3077 |
|
3078 |
+
#: app/features/mec/booking.php:586
|
3079 |
msgid ""
|
3080 |
"By enabling this module, organizers are able to insert their own payment "
|
3081 |
"credentials for enabled gateways per event and receive the payments directly!"
|
3082 |
msgstr ""
|
3083 |
|
3084 |
+
#: app/features/mec/booking.php:633 app/features/mec/messages.php:78
|
3085 |
+
#: app/features/mec/modules.php:393 app/features/mec/notifications.php:902
|
3086 |
+
#: app/features/mec/settings.php:1049 app/features/mec/single.php:292
|
3087 |
#: app/features/mec/styles.php:60 app/features/mec/styling.php:296
|
3088 |
msgid "Saved"
|
3089 |
msgstr "Gesichert"
|
3090 |
|
3091 |
+
#: app/features/mec/booking.php:634 app/features/mec/messages.php:79
|
3092 |
+
#: app/features/mec/modules.php:394 app/features/mec/notifications.php:903
|
3093 |
+
#: app/features/mec/settings.php:1050 app/features/mec/single.php:293
|
3094 |
#: app/features/mec/styles.php:61 app/features/mec/styling.php:297
|
3095 |
msgid "Settings Saved!"
|
3096 |
msgstr ""
|
3097 |
|
3098 |
+
#: app/features/mec/booking.php:636 app/features/mec/booking.php:658
|
3099 |
+
#: app/features/mec/modules.php:396 app/features/mec/modules.php:418
|
3100 |
#: app/features/mec/notifications.php:905
|
3101 |
#: app/features/mec/notifications.php:927 app/features/mec/settings.php:1052
|
3102 |
+
#: app/features/mec/settings.php:1074 app/features/mec/single.php:295
|
3103 |
+
#: app/features/mec/single.php:317 app/libraries/main.php:5584
|
3104 |
msgid "Verified"
|
3105 |
msgstr "Verifiziert"
|
3106 |
|
3107 |
+
#: app/features/mec/booking.php:660 app/features/mec/modules.php:420
|
3108 |
#: app/features/mec/notifications.php:929 app/features/mec/settings.php:1076
|
3109 |
+
#: app/features/mec/single.php:319
|
3110 |
msgid "Please Refresh Page"
|
3111 |
msgstr "Bitte Seiten Refresh vornehmen"
|
3112 |
|
3310 |
#: app/features/mec/meta_boxes/display_options.php:41
|
3311 |
#: app/features/mec/meta_boxes/display_options.php:218
|
3312 |
#: app/features/mec/meta_boxes/display_options.php:644
|
3313 |
+
#: app/features/mec/meta_boxes/display_options.php:811
|
3314 |
+
#: app/features/mec/meta_boxes/display_options.php:1006
|
3315 |
#: app/features/mec/settings.php:267 app/features/mec/settings.php:291
|
3316 |
#: app/features/mec/settings.php:300 app/features/mec/settings.php:341
|
3317 |
#: app/features/mec/settings.php:365 app/features/mec/settings.php:374
|
3332 |
#: app/features/mec/meta_boxes/display_options.php:221
|
3333 |
#: app/features/mec/meta_boxes/display_options.php:594
|
3334 |
#: app/features/mec/meta_boxes/display_options.php:646
|
3335 |
+
#: app/features/mec/meta_boxes/display_options.php:809
|
3336 |
+
#: app/features/mec/meta_boxes/display_options.php:1008
|
3337 |
#: app/features/mec/settings.php:269 app/features/mec/settings.php:282
|
3338 |
#: app/features/mec/settings.php:293 app/features/mec/settings.php:303
|
3339 |
#: app/features/mec/settings.php:343 app/features/mec/settings.php:356
|
3360 |
#: app/features/mec/meta_boxes/display_options.php:231
|
3361 |
#: app/features/mec/meta_boxes/display_options.php:409
|
3362 |
#: app/features/mec/meta_boxes/display_options.php:701
|
3363 |
+
#: app/features/mec/meta_boxes/display_options.php:735
|
3364 |
+
#: app/features/mec/meta_boxes/display_options.php:916
|
3365 |
+
#: app/features/mec/meta_boxes/display_options.php:1164
|
3366 |
+
#: app/features/mec/meta_boxes/display_options.php:1252
|
3367 |
+
#: app/features/mec/meta_boxes/display_options.php:1344
|
3368 |
msgid "Today"
|
3369 |
msgstr "Heute"
|
3370 |
|
3372 |
#: app/features/mec/meta_boxes/display_options.php:232
|
3373 |
#: app/features/mec/meta_boxes/display_options.php:410
|
3374 |
#: app/features/mec/meta_boxes/display_options.php:702
|
3375 |
+
#: app/features/mec/meta_boxes/display_options.php:736
|
3376 |
+
#: app/features/mec/meta_boxes/display_options.php:917
|
3377 |
+
#: app/features/mec/meta_boxes/display_options.php:1165
|
3378 |
+
#: app/features/mec/meta_boxes/display_options.php:1253
|
3379 |
+
#: app/features/mec/meta_boxes/display_options.php:1345
|
3380 |
msgid "Tomorrow"
|
3381 |
msgstr "Morgen"
|
3382 |
|
3386 |
#: app/features/mec/meta_boxes/display_options.php:477
|
3387 |
#: app/features/mec/meta_boxes/display_options.php:654
|
3388 |
#: app/features/mec/meta_boxes/display_options.php:703
|
3389 |
+
#: app/features/mec/meta_boxes/display_options.php:737
|
3390 |
+
#: app/features/mec/meta_boxes/display_options.php:772
|
3391 |
+
#: app/features/mec/meta_boxes/display_options.php:819
|
3392 |
+
#: app/features/mec/meta_boxes/display_options.php:918
|
3393 |
+
#: app/features/mec/meta_boxes/display_options.php:1166
|
3394 |
+
#: app/features/mec/meta_boxes/display_options.php:1254
|
3395 |
+
#: app/features/mec/meta_boxes/display_options.php:1346
|
3396 |
+
#: app/features/mec/meta_boxes/display_options.php:1411
|
3397 |
msgid "Start of Current Month"
|
3398 |
msgstr "Mit Beginn des laufenden Monats"
|
3399 |
|
3403 |
#: app/features/mec/meta_boxes/display_options.php:478
|
3404 |
#: app/features/mec/meta_boxes/display_options.php:655
|
3405 |
#: app/features/mec/meta_boxes/display_options.php:704
|
3406 |
+
#: app/features/mec/meta_boxes/display_options.php:738
|
3407 |
+
#: app/features/mec/meta_boxes/display_options.php:773
|
3408 |
+
#: app/features/mec/meta_boxes/display_options.php:820
|
3409 |
+
#: app/features/mec/meta_boxes/display_options.php:919
|
3410 |
+
#: app/features/mec/meta_boxes/display_options.php:1167
|
3411 |
+
#: app/features/mec/meta_boxes/display_options.php:1255
|
3412 |
+
#: app/features/mec/meta_boxes/display_options.php:1347
|
3413 |
+
#: app/features/mec/meta_boxes/display_options.php:1412
|
3414 |
msgid "Start of Next Month"
|
3415 |
msgstr "Mit Beginn des kommenden Monats"
|
3416 |
|
3421 |
#: app/features/mec/meta_boxes/display_options.php:602
|
3422 |
#: app/features/mec/meta_boxes/display_options.php:656
|
3423 |
#: app/features/mec/meta_boxes/display_options.php:705
|
3424 |
+
#: app/features/mec/meta_boxes/display_options.php:739
|
3425 |
+
#: app/features/mec/meta_boxes/display_options.php:774
|
3426 |
+
#: app/features/mec/meta_boxes/display_options.php:821
|
3427 |
+
#: app/features/mec/meta_boxes/display_options.php:920
|
3428 |
+
#: app/features/mec/meta_boxes/display_options.php:1168
|
3429 |
+
#: app/features/mec/meta_boxes/display_options.php:1256
|
3430 |
+
#: app/features/mec/meta_boxes/display_options.php:1348
|
3431 |
+
#: app/features/mec/meta_boxes/display_options.php:1413
|
3432 |
msgid "On a certain date"
|
3433 |
msgstr "An einem bestimmten Tag"
|
3434 |
|
3439 |
#: app/features/mec/meta_boxes/display_options.php:605
|
3440 |
#: app/features/mec/meta_boxes/display_options.php:659
|
3441 |
#: app/features/mec/meta_boxes/display_options.php:708
|
3442 |
+
#: app/features/mec/meta_boxes/display_options.php:743
|
3443 |
+
#: app/features/mec/meta_boxes/display_options.php:777
|
3444 |
+
#: app/features/mec/meta_boxes/display_options.php:824
|
3445 |
+
#: app/features/mec/meta_boxes/display_options.php:923
|
3446 |
+
#: app/features/mec/meta_boxes/display_options.php:1171
|
3447 |
+
#: app/features/mec/meta_boxes/display_options.php:1259
|
3448 |
+
#: app/features/mec/meta_boxes/display_options.php:1351
|
3449 |
+
#: app/features/mec/meta_boxes/display_options.php:1416
|
3450 |
#, php-format
|
3451 |
msgid "eg. %s"
|
3452 |
msgstr "z.B. %s"
|
3460 |
#: app/features/mec/meta_boxes/display_options.php:421
|
3461 |
#: app/features/mec/meta_boxes/display_options.php:422
|
3462 |
#: app/features/mec/meta_boxes/display_options.php:425
|
|
|
3463 |
#: app/features/mec/meta_boxes/display_options.php:928
|
3464 |
+
#: app/features/mec/meta_boxes/display_options.php:929
|
3465 |
+
#: app/features/mec/meta_boxes/display_options.php:932
|
3466 |
#: app/features/mec/meta_boxes/display_options.php:1356
|
3467 |
+
#: app/features/mec/meta_boxes/display_options.php:1357
|
3468 |
+
#: app/features/mec/meta_boxes/display_options.php:1360
|
3469 |
#, fuzzy
|
3470 |
#| msgid "Maximum Dates"
|
3471 |
msgid "Maximum Date"
|
3474 |
#: app/features/mec/meta_boxes/display_options.php:68
|
3475 |
#: app/features/mec/meta_boxes/display_options.php:248
|
3476 |
#: app/features/mec/meta_boxes/display_options.php:426
|
3477 |
+
#: app/features/mec/meta_boxes/display_options.php:933
|
3478 |
+
#: app/features/mec/meta_boxes/display_options.php:1361
|
3479 |
#, fuzzy
|
3480 |
#| msgid "Show events based on created shortcodes."
|
3481 |
msgid "Show events before the specified date."
|
3509 |
#: app/features/mec/meta_boxes/display_options.php:438
|
3510 |
#: app/features/mec/meta_boxes/display_options.php:609
|
3511 |
#: app/features/mec/meta_boxes/display_options.php:614
|
3512 |
+
#: app/features/mec/meta_boxes/display_options.php:856
|
3513 |
+
#: app/features/mec/meta_boxes/display_options.php:940
|
3514 |
+
#: app/features/mec/meta_boxes/display_options.php:945
|
3515 |
+
#: app/features/mec/meta_boxes/display_options.php:1012
|
3516 |
+
#: app/features/mec/meta_boxes/display_options.php:1018
|
3517 |
+
#: app/features/mec/meta_boxes/display_options.php:1025
|
3518 |
+
#: app/features/mec/meta_boxes/display_options.php:1030
|
3519 |
+
#: app/features/mec/meta_boxes/display_options.php:1037
|
3520 |
+
#: app/features/mec/meta_boxes/display_options.php:1041
|
3521 |
+
#: app/features/mec/meta_boxes/display_options.php:1069
|
3522 |
+
#: app/features/mec/meta_boxes/display_options.php:1073
|
3523 |
+
#: app/features/mec/meta_boxes/display_options.php:1080
|
3524 |
+
#: app/features/mec/meta_boxes/display_options.php:1084
|
3525 |
+
#: app/features/mec/meta_boxes/display_options.php:1091
|
3526 |
+
#: app/features/mec/meta_boxes/display_options.php:1097
|
3527 |
+
#: app/features/mec/meta_boxes/display_options.php:1127
|
3528 |
+
#: app/features/mec/meta_boxes/display_options.php:1132
|
3529 |
+
#: app/features/mec/meta_boxes/display_options.php:1175
|
3530 |
+
#: app/features/mec/meta_boxes/display_options.php:1181
|
3531 |
+
#: app/features/mec/meta_boxes/display_options.php:1188
|
3532 |
+
#: app/features/mec/meta_boxes/display_options.php:1192
|
3533 |
+
#: app/features/mec/meta_boxes/display_options.php:1199
|
3534 |
+
#: app/features/mec/meta_boxes/display_options.php:1203
|
3535 |
+
#: app/features/mec/meta_boxes/display_options.php:1263
|
3536 |
+
#: app/features/mec/meta_boxes/display_options.php:1269
|
3537 |
+
#: app/features/mec/meta_boxes/display_options.php:1276
|
3538 |
+
#: app/features/mec/meta_boxes/display_options.php:1282
|
3539 |
+
#: app/features/mec/meta_boxes/display_options.php:1289
|
3540 |
+
#: app/features/mec/meta_boxes/display_options.php:1295
|
3541 |
+
#: app/features/mec/meta_boxes/display_options.php:1302
|
3542 |
+
#: app/features/mec/meta_boxes/display_options.php:1308
|
3543 |
+
#: app/features/mec/meta_boxes/display_options.php:1315
|
3544 |
+
#: app/features/mec/meta_boxes/display_options.php:1321
|
3545 |
+
#: app/features/mec/meta_boxes/display_options.php:1368
|
3546 |
+
#: app/features/mec/meta_boxes/display_options.php:1372
|
3547 |
+
#: app/features/mec/meta_boxes/display_options.php:1420
|
3548 |
+
#: app/features/mec/meta_boxes/display_options.php:1425
|
3549 |
msgid "Date Formats"
|
3550 |
msgstr "Datumsformate"
|
3551 |
|
3561 |
#: app/features/mec/meta_boxes/display_options.php:106
|
3562 |
#: app/features/mec/meta_boxes/display_options.php:297
|
3563 |
#: app/features/mec/meta_boxes/display_options.php:321
|
3564 |
+
#: app/features/mec/meta_boxes/display_options.php:1270
|
3565 |
+
#: app/features/mec/meta_boxes/display_options.php:1283
|
3566 |
+
#: app/features/mec/meta_boxes/display_options.php:1296
|
3567 |
+
#: app/features/mec/meta_boxes/display_options.php:1309
|
3568 |
+
#: app/features/mec/meta_boxes/display_options.php:1322
|
3569 |
msgid "Default values are d, F and l"
|
3570 |
msgstr ""
|
3571 |
"Standardwerte sind Tag, Monat als ganzes Wort und Wochentag als ganzes Wort"
|
3585 |
#: app/features/mec/meta_boxes/display_options.php:446
|
3586 |
#: app/features/mec/meta_boxes/display_options.php:622
|
3587 |
#: app/features/mec/meta_boxes/display_options.php:664
|
3588 |
+
#: app/features/mec/meta_boxes/display_options.php:748
|
3589 |
+
#: app/features/mec/meta_boxes/display_options.php:782
|
3590 |
+
#: app/features/mec/meta_boxes/display_options.php:829
|
3591 |
+
#: app/features/mec/meta_boxes/display_options.php:1220
|
3592 |
+
#: app/features/mec/meta_boxes/display_options.php:1329
|
3593 |
+
#: app/features/mec/meta_boxes/display_options.php:1380
|
3594 |
msgid "eg. 6"
|
3595 |
msgstr "z.B. 6"
|
3596 |
|
3603 |
#: app/features/mec/meta_boxes/display_options.php:152
|
3604 |
#: app/features/mec/meta_boxes/display_options.php:354
|
3605 |
#: app/features/mec/meta_boxes/display_options.php:450
|
3606 |
+
#: app/features/mec/meta_boxes/display_options.php:989
|
3607 |
+
#: app/features/mec/meta_boxes/display_options.php:1384
|
3608 |
msgid "Load More Button"
|
3609 |
msgstr "Button \"Weitere Veranstaltungen Laden\""
|
3610 |
|
3611 |
#: app/features/mec/meta_boxes/display_options.php:162
|
3612 |
#: app/features/mec/meta_boxes/display_options.php:460
|
3613 |
+
#: app/features/mec/meta_boxes/display_options.php:1394
|
3614 |
msgid "Show Month Divider"
|
3615 |
msgstr "Zeige Monatsteilung"
|
3616 |
|
3637 |
#: app/features/mec/meta_boxes/display_options.php:403
|
3638 |
#: app/features/mec/meta_boxes/display_options.php:498
|
3639 |
#: app/features/mec/meta_boxes/display_options.php:645
|
3640 |
+
#: app/features/mec/meta_boxes/display_options.php:810
|
3641 |
+
#: app/features/mec/meta_boxes/display_options.php:1007
|
3642 |
#: app/features/mec/settings.php:268 app/features/mec/settings.php:283
|
3643 |
#: app/features/mec/settings.php:301 app/features/mec/settings.php:342
|
3644 |
#: app/features/mec/settings.php:357 app/features/mec/settings.php:375
|
3674 |
msgstr ""
|
3675 |
|
3676 |
#: app/features/mec/meta_boxes/display_options.php:260
|
3677 |
+
#: app/features/mec/meta_boxes/display_options.php:1373
|
3678 |
#, fuzzy
|
3679 |
#| msgid "Default value is \"d F Y\""
|
3680 |
msgid "Default value is \"d F Y"
|
3693 |
msgstr "Standardwert ist \"d (Tag) F Y (Jahr)\" "
|
3694 |
|
3695 |
#: app/features/mec/meta_boxes/display_options.php:338
|
3696 |
+
#: app/features/mec/meta_boxes/display_options.php:1210
|
3697 |
+
#: app/features/mec/meta_boxes/display_options.php:1432
|
3698 |
msgid "Count in row"
|
3699 |
msgstr "Zeilen zählen"
|
3700 |
|
3701 |
#: app/features/mec/meta_boxes/display_options.php:396
|
3702 |
#: app/features/mec/meta_boxes/display_options.php:587
|
3703 |
#: app/features/mec/meta_boxes/display_options.php:694
|
3704 |
+
#: app/features/mec/meta_boxes/display_options.php:802
|
3705 |
+
#: app/features/mec/meta_boxes/display_options.php:1122
|
3706 |
#, php-format
|
3707 |
msgid "%s is required to use this skin."
|
3708 |
msgstr ""
|
3718 |
|
3719 |
#: app/features/mec/meta_boxes/display_options.php:488
|
3720 |
#: app/features/mec/meta_boxes/display_options.php:509
|
3721 |
+
#: app/libraries/main.php:330 app/libraries/main.php:1765
|
3722 |
+
#: app/libraries/main.php:1790
|
3723 |
msgid "List View"
|
3724 |
msgstr "Listenansicht"
|
3725 |
|
3726 |
#: app/features/mec/meta_boxes/display_options.php:489
|
3727 |
#: app/features/mec/meta_boxes/display_options.php:519
|
3728 |
+
#: app/libraries/main.php:334 app/libraries/main.php:1759
|
3729 |
+
#: app/libraries/main.php:1784
|
3730 |
msgid "Yearly View"
|
3731 |
msgstr "Jahresansicht"
|
3732 |
|
3737 |
|
3738 |
#: app/features/mec/meta_boxes/display_options.php:491
|
3739 |
#: app/features/mec/meta_boxes/display_options.php:551
|
3740 |
+
#: app/libraries/main.php:337 app/libraries/main.php:1761
|
3741 |
+
#: app/libraries/main.php:1786
|
3742 |
msgid "Weekly View"
|
3743 |
msgstr "Wochenansicht"
|
3744 |
|
3745 |
#: app/features/mec/meta_boxes/display_options.php:492
|
3746 |
#: app/features/mec/meta_boxes/display_options.php:561
|
3747 |
+
#: app/libraries/main.php:336 app/libraries/main.php:1762
|
3748 |
+
#: app/libraries/main.php:1787
|
3749 |
msgid "Daily View"
|
3750 |
msgstr "Tagesansicht"
|
3751 |
|
3779 |
|
3780 |
#: app/features/mec/meta_boxes/display_options.php:621
|
3781 |
#: app/features/mec/meta_boxes/display_options.php:663
|
3782 |
+
#: app/features/mec/meta_boxes/display_options.php:747
|
3783 |
+
#: app/features/mec/meta_boxes/display_options.php:781
|
3784 |
+
#: app/features/mec/meta_boxes/display_options.php:828
|
3785 |
msgid "Events per day"
|
3786 |
msgstr "Veranstaltungen pro Tag"
|
3787 |
|
3788 |
#: app/features/mec/meta_boxes/display_options.php:626
|
3789 |
#: app/features/mec/meta_boxes/display_options.php:668
|
3790 |
+
#: app/features/mec/meta_boxes/display_options.php:752
|
3791 |
+
#: app/features/mec/meta_boxes/display_options.php:786
|
3792 |
+
#: app/features/mec/meta_boxes/display_options.php:890
|
3793 |
+
#: app/features/mec/meta_boxes/display_options.php:1441
|
3794 |
msgid "Next/Previous Buttons"
|
3795 |
msgstr "Schaltfläche \"Nächste/Letzte\""
|
3796 |
|
3805 |
msgstr "Text"
|
3806 |
|
3807 |
#: app/features/mec/meta_boxes/display_options.php:686
|
3808 |
+
#: app/features/mec/meta_boxes/display_options.php:760
|
3809 |
+
#: app/features/mec/meta_boxes/display_options.php:794
|
3810 |
+
#: app/features/mec/meta_boxes/display_options.php:898
|
3811 |
+
#: app/features/mec/meta_boxes/display_options.php:1449
|
3812 |
msgid "For showing next/previous month navigation."
|
3813 |
msgstr "Für die Navigation zum nächsten/letzten Monat"
|
3814 |
|
3824 |
msgid "The geolocation feature works only in secure (https) websites."
|
3825 |
msgstr ""
|
3826 |
|
3827 |
+
#: app/features/mec/meta_boxes/display_options.php:770
|
3828 |
+
#: app/features/mec/meta_boxes/display_options.php:817
|
3829 |
msgid "Current Week"
|
3830 |
msgstr "Aktuelle Woche"
|
3831 |
|
3832 |
+
#: app/features/mec/meta_boxes/display_options.php:771
|
3833 |
+
#: app/features/mec/meta_boxes/display_options.php:818
|
3834 |
msgid "Next Week"
|
3835 |
msgstr "Nächste Woche"
|
3836 |
|
3837 |
+
#: app/features/mec/meta_boxes/display_options.php:833
|
3838 |
msgid "Number of Days"
|
3839 |
msgstr ""
|
3840 |
|
3841 |
+
#: app/features/mec/meta_boxes/display_options.php:841
|
3842 |
#, fuzzy
|
3843 |
#| msgid "Start"
|
3844 |
msgid "Week Start"
|
3845 |
msgstr "Start"
|
3846 |
|
3847 |
+
#: app/features/mec/meta_boxes/display_options.php:843
|
3848 |
#, fuzzy
|
3849 |
#| msgid "Inherit from global options"
|
3850 |
msgid "Inherite from WordPress options"
|
3851 |
msgstr "Aus den globalen Einstellungen übernehmen"
|
3852 |
|
3853 |
+
#: app/features/mec/meta_boxes/display_options.php:858
|
3854 |
msgid "1:00"
|
3855 |
msgstr ""
|
3856 |
|
3857 |
+
#: app/features/mec/meta_boxes/display_options.php:859
|
3858 |
msgid "2:00"
|
3859 |
msgstr ""
|
3860 |
|
3861 |
+
#: app/features/mec/meta_boxes/display_options.php:860
|
3862 |
msgid "3:00"
|
3863 |
msgstr ""
|
3864 |
|
3865 |
+
#: app/features/mec/meta_boxes/display_options.php:861
|
3866 |
msgid "4:00"
|
3867 |
msgstr ""
|
3868 |
|
3869 |
+
#: app/features/mec/meta_boxes/display_options.php:862
|
3870 |
msgid "5:00"
|
3871 |
msgstr ""
|
3872 |
|
3873 |
+
#: app/features/mec/meta_boxes/display_options.php:863
|
3874 |
msgid "6:00"
|
3875 |
msgstr ""
|
3876 |
|
3877 |
+
#: app/features/mec/meta_boxes/display_options.php:864
|
3878 |
msgid "7:00"
|
3879 |
msgstr ""
|
3880 |
|
3881 |
+
#: app/features/mec/meta_boxes/display_options.php:865
|
3882 |
msgid "8:00"
|
3883 |
msgstr ""
|
3884 |
|
3885 |
+
#: app/features/mec/meta_boxes/display_options.php:866
|
3886 |
msgid "9:00"
|
3887 |
msgstr ""
|
3888 |
|
3889 |
+
#: app/features/mec/meta_boxes/display_options.php:867
|
3890 |
msgid "10:00"
|
3891 |
msgstr ""
|
3892 |
|
3893 |
+
#: app/features/mec/meta_boxes/display_options.php:868
|
3894 |
msgid "11:00"
|
3895 |
msgstr ""
|
3896 |
|
3897 |
+
#: app/features/mec/meta_boxes/display_options.php:869
|
3898 |
msgid "12:00"
|
3899 |
msgstr ""
|
3900 |
|
3901 |
+
#: app/features/mec/meta_boxes/display_options.php:872
|
3902 |
msgid "13:00"
|
3903 |
msgstr ""
|
3904 |
|
3905 |
+
#: app/features/mec/meta_boxes/display_options.php:873
|
3906 |
msgid "14:00"
|
3907 |
msgstr ""
|
3908 |
|
3909 |
+
#: app/features/mec/meta_boxes/display_options.php:874
|
3910 |
msgid "15:00"
|
3911 |
msgstr ""
|
3912 |
|
3913 |
+
#: app/features/mec/meta_boxes/display_options.php:875
|
3914 |
msgid "16:00"
|
3915 |
msgstr ""
|
3916 |
|
3917 |
+
#: app/features/mec/meta_boxes/display_options.php:876
|
3918 |
msgid "17:00"
|
3919 |
msgstr ""
|
3920 |
|
3921 |
+
#: app/features/mec/meta_boxes/display_options.php:877
|
3922 |
msgid "18:00"
|
3923 |
msgstr ""
|
3924 |
|
3925 |
+
#: app/features/mec/meta_boxes/display_options.php:878
|
3926 |
msgid "19:00"
|
3927 |
msgstr ""
|
3928 |
|
3929 |
+
#: app/features/mec/meta_boxes/display_options.php:879
|
3930 |
msgid "20:00"
|
3931 |
msgstr ""
|
3932 |
|
3933 |
+
#: app/features/mec/meta_boxes/display_options.php:880
|
3934 |
msgid "21:00"
|
3935 |
msgstr ""
|
3936 |
|
3937 |
+
#: app/features/mec/meta_boxes/display_options.php:881
|
3938 |
msgid "22:00"
|
3939 |
msgstr ""
|
3940 |
|
3941 |
+
#: app/features/mec/meta_boxes/display_options.php:882
|
3942 |
msgid "23:00"
|
3943 |
msgstr ""
|
3944 |
|
3945 |
+
#: app/features/mec/meta_boxes/display_options.php:883
|
3946 |
msgid "24:00"
|
3947 |
msgstr ""
|
3948 |
|
3949 |
+
#: app/features/mec/meta_boxes/display_options.php:946
|
3950 |
+
#: app/features/mec/meta_boxes/display_options.php:1133
|
3951 |
msgid "Default values are j and F"
|
3952 |
msgstr "Standardwerte sind j und F"
|
3953 |
|
3954 |
+
#: app/features/mec/meta_boxes/display_options.php:953
|
3955 |
msgid "eg. 24"
|
3956 |
msgstr "z.B. 24"
|
3957 |
|
3958 |
+
#: app/features/mec/meta_boxes/display_options.php:956
|
3959 |
msgid "Filter By"
|
3960 |
msgstr "Filtern nach"
|
3961 |
|
3962 |
+
#: app/features/mec/meta_boxes/display_options.php:958
|
3963 |
msgid "None"
|
3964 |
msgstr ""
|
3965 |
|
3966 |
+
#: app/features/mec/meta_boxes/display_options.php:967
|
3967 |
msgid "Fit to row"
|
3968 |
msgstr ""
|
3969 |
|
3970 |
+
#: app/features/mec/meta_boxes/display_options.php:968
|
3971 |
msgid ""
|
3972 |
"Items are arranged into rows. Rows progress vertically. Similar to what you "
|
3973 |
"would expect from a layout that uses CSS floats."
|
3974 |
msgstr ""
|
3975 |
|
3976 |
+
#: app/features/mec/meta_boxes/display_options.php:978
|
3977 |
msgid "Convert Masonry to Grid"
|
3978 |
msgstr ""
|
3979 |
|
3980 |
+
#: app/features/mec/meta_boxes/display_options.php:979
|
3981 |
msgid "For using this option, your events should come with image"
|
3982 |
msgstr ""
|
3983 |
|
3984 |
+
#: app/features/mec/meta_boxes/display_options.php:1019
|
3985 |
msgid "Default values are d, M and Y"
|
3986 |
msgstr "Standardwerte sind T, M und J"
|
3987 |
|
3988 |
+
#: app/features/mec/meta_boxes/display_options.php:1031
|
3989 |
msgid "Default values are \"F d\" and l"
|
3990 |
msgstr ""
|
3991 |
"Standardwerte sind Monat als ganzes Wort, Tag des Monates mit führender Null "
|
3992 |
"und ausgeschriebener Wochentag"
|
3993 |
|
3994 |
+
#: app/features/mec/meta_boxes/display_options.php:1042
|
3995 |
msgid "Default value is \"l, F d Y\""
|
3996 |
msgstr ""
|
3997 |
"Standardwerte sind ausgeschriebener Wochentag, Monat als ganzes Wort, Tag "
|
3998 |
"des Monates mit führender 0, Jahr"
|
3999 |
|
4000 |
+
#: app/features/mec/meta_boxes/display_options.php:1063
|
4001 |
#: app/features/popup/shortcode.php:228
|
4002 |
msgid "Style 1"
|
4003 |
msgstr "Stil 1"
|
4004 |
|
4005 |
+
#: app/features/mec/meta_boxes/display_options.php:1064
|
4006 |
#: app/features/popup/shortcode.php:233
|
4007 |
msgid "Style 2"
|
4008 |
msgstr "Stil 2"
|
4009 |
|
4010 |
+
#: app/features/mec/meta_boxes/display_options.php:1065
|
4011 |
#: app/features/popup/shortcode.php:238
|
4012 |
msgid "Style 3"
|
4013 |
msgstr "Stil 3"
|
4014 |
|
4015 |
+
#: app/features/mec/meta_boxes/display_options.php:1074
|
4016 |
+
#: app/features/mec/meta_boxes/display_options.php:1085
|
4017 |
msgid "Default value is \"j F Y\""
|
4018 |
msgstr "Standardwert ist \"j F Y\""
|
4019 |
|
4020 |
+
#: app/features/mec/meta_boxes/display_options.php:1098
|
4021 |
msgid "Default values are j, F and Y"
|
4022 |
msgstr ""
|
4023 |
"Standardwerte sind j ( Tag des Monats ohne führende Nullen), F und Y (Jahr)"
|
4024 |
|
4025 |
+
#: app/features/mec/meta_boxes/display_options.php:1106
|
4026 |
+
#: app/features/mec/meta_boxes/display_options.php:1141
|
4027 |
msgid " -- Next Upcoming Event -- "
|
4028 |
msgstr "-- Nächste Veranstaltung--"
|
4029 |
|
4030 |
+
#: app/features/mec/meta_boxes/display_options.php:1113
|
4031 |
msgid "Background Color"
|
4032 |
msgstr "Hintergrund Farbe"
|
4033 |
|
4034 |
+
#: app/features/mec/meta_boxes/display_options.php:1155
|
4035 |
+
#: app/features/mec/meta_boxes/display_options.php:1242
|
4036 |
#: app/features/popup/shortcode.php:247 app/features/popup/shortcode.php:269
|
4037 |
msgid "Type 1"
|
4038 |
msgstr "Typ 1"
|
4039 |
|
4040 |
+
#: app/features/mec/meta_boxes/display_options.php:1156
|
4041 |
+
#: app/features/mec/meta_boxes/display_options.php:1243
|
4042 |
#: app/features/popup/shortcode.php:252 app/features/popup/shortcode.php:274
|
4043 |
msgid "Type 2"
|
4044 |
msgstr "Typ 2"
|
4045 |
|
4046 |
+
#: app/features/mec/meta_boxes/display_options.php:1157
|
4047 |
+
#: app/features/mec/meta_boxes/display_options.php:1244
|
4048 |
#: app/features/popup/shortcode.php:257 app/features/popup/shortcode.php:279
|
4049 |
msgid "Type 3"
|
4050 |
msgstr "Type 3"
|
4051 |
|
4052 |
+
#: app/features/mec/meta_boxes/display_options.php:1158
|
4053 |
+
#: app/features/mec/meta_boxes/display_options.php:1245
|
4054 |
#: app/features/popup/shortcode.php:262 app/features/popup/shortcode.php:284
|
4055 |
msgid "Type 4"
|
4056 |
msgstr "Typ 4"
|
4057 |
|
4058 |
+
#: app/features/mec/meta_boxes/display_options.php:1182
|
4059 |
msgid "Default values are d, F and Y"
|
4060 |
msgstr "Standardwert ist d (Tag) F und Y (Jahr)"
|
4061 |
|
4062 |
+
#: app/features/mec/meta_boxes/display_options.php:1193
|
4063 |
+
#: app/features/mec/meta_boxes/display_options.php:1204
|
4064 |
msgid "Default value is \"M d, Y\""
|
4065 |
msgstr "Standardwert ist \"M T, J\""
|
4066 |
|
4067 |
+
#: app/features/mec/meta_boxes/display_options.php:1223
|
4068 |
+
#: app/features/mec/meta_boxes/display_options.php:1332
|
4069 |
msgid "Auto Play Time"
|
4070 |
msgstr "Auto Play Time"
|
4071 |
|
4072 |
+
#: app/features/mec/meta_boxes/display_options.php:1224
|
4073 |
+
#: app/features/mec/meta_boxes/display_options.php:1333
|
4074 |
msgid "eg. 3000 default is 3 second"
|
4075 |
msgstr "z.B. Voreinstellung 3000 sind 3 Sekunden"
|
4076 |
|
4077 |
+
#: app/features/mec/meta_boxes/display_options.php:1227
|
4078 |
#, fuzzy
|
4079 |
#| msgid "Archive Page Skin"
|
4080 |
msgid "Archive Link"
|
4081 |
msgstr "Skin Seite Archiv"
|
4082 |
|
4083 |
+
#: app/features/mec/meta_boxes/display_options.php:1231
|
4084 |
#, fuzzy
|
4085 |
#| msgid "Text"
|
4086 |
msgid "Head Text"
|
4087 |
msgstr "Text"
|
4088 |
|
4089 |
+
#: app/features/mec/meta_boxes/display_options.php:1246
|
4090 |
#: app/features/popup/shortcode.php:289
|
4091 |
msgid "Type 5"
|
4092 |
msgstr "Typ 5"
|
4093 |
|
4094 |
+
#: app/features/mec/meta_boxes/display_options.php:1426
|
4095 |
#, fuzzy
|
4096 |
#| msgid "Default values are j and F"
|
4097 |
msgid "Default values are j and M"
|
4286 |
#: app/features/mec/meta_boxes/search_form.php:535
|
4287 |
#: app/features/mec/meta_boxes/search_form.php:596
|
4288 |
#: app/features/mec/meta_boxes/search_form.php:693
|
4289 |
+
#: app/features/mec/settings.php:827 app/features/mec/single.php:245
|
4290 |
#: app/features/search.php:83 app/features/speakers.php:61
|
4291 |
+
#: app/features/speakers.php:269 app/libraries/main.php:5343
|
4292 |
+
#: app/libraries/skins.php:943
|
4293 |
msgid "Speaker"
|
4294 |
msgstr ""
|
4295 |
|
4304 |
#: app/features/mec/meta_boxes/search_form.php:542
|
4305 |
#: app/features/mec/meta_boxes/search_form.php:603
|
4306 |
#: app/features/mec/meta_boxes/search_form.php:700
|
4307 |
+
#: app/features/mec/settings.php:834 app/features/mec/single.php:254
|
4308 |
+
#: app/features/search.php:88 app/libraries/skins.php:969
|
4309 |
#, fuzzy
|
4310 |
#| msgid "Tags"
|
4311 |
msgid "Tag"
|
4389 |
msgid "Show Google Maps on event page"
|
4390 |
msgstr "Google Maps auf der Veranstaltungsseite anzeigen"
|
4391 |
|
4392 |
+
#: app/features/mec/modules.php:80 app/features/mec/modules.php:239
|
4393 |
#: app/features/mec/settings.php:864 app/features/mec/settings.php:869
|
4394 |
#: app/features/mec/settings.php:917 app/features/mec/settings.php:941
|
4395 |
#: app/features/mec/settings.php:965
|
4455 |
msgstr ""
|
4456 |
"Checken Sie es nur wenn ein anderes plugin/Thema die Google Maps API lädt."
|
4457 |
|
4458 |
+
#: app/features/mec/modules.php:168 app/libraries/main.php:567
|
4459 |
#, fuzzy
|
4460 |
#| msgid "Import Options"
|
4461 |
msgid "Export Options"
|
4462 |
msgstr "Import Optionen"
|
4463 |
|
4464 |
+
#: app/features/mec/modules.php:172
|
4465 |
msgid ""
|
4466 |
"Show export module (iCal export and add to Google calendars) on event page"
|
4467 |
msgstr ""
|
4468 |
"Exportmodule auf Veranstaltungsseite anzeigen (iCal export und hinzufügen zu "
|
4469 |
"Google calendars)"
|
4470 |
|
4471 |
+
#: app/features/mec/modules.php:179
|
4472 |
msgid "Google Calendar"
|
4473 |
msgstr "Google Calendar"
|
4474 |
|
4475 |
+
#: app/features/mec/modules.php:195 app/libraries/main.php:568
|
4476 |
+
#: app/modules/local-time/details.php:43 app/widgets/single.php:99
|
4477 |
msgid "Local Time"
|
4478 |
msgstr "Lokale Zeit"
|
4479 |
|
4480 |
+
#: app/features/mec/modules.php:199
|
4481 |
msgid "Show event time based on local time of visitor on event page"
|
4482 |
msgstr ""
|
4483 |
"Zeige die Eventzeit basierend auf der Ortszeit des Besuchers auf der "
|
4484 |
"Eventseite"
|
4485 |
|
4486 |
+
#: app/features/mec/modules.php:209 app/libraries/main.php:569
|
4487 |
#: app/modules/qrcode/details.php:38 app/widgets/single.php:155
|
4488 |
msgid "QR Code"
|
4489 |
msgstr "QR Code"
|
4490 |
|
4491 |
+
#: app/features/mec/modules.php:217
|
4492 |
msgid "Show QR code of event in details page and booking invoice"
|
4493 |
msgstr ""
|
4494 |
"Zeigen Sie QR-Code des Events in der Detailseite und in der Buchungsrechnung "
|
4495 |
"an"
|
4496 |
|
4497 |
+
#: app/features/mec/modules.php:227 app/libraries/main.php:570
|
4498 |
#: app/modules/weather/details.php:37
|
4499 |
msgid "Weather"
|
4500 |
msgstr "Wetter"
|
4501 |
|
4502 |
+
#: app/features/mec/modules.php:234
|
4503 |
msgid "Show weather module on event page"
|
4504 |
msgstr "Wettermodul auf der Eventseite anzeigen"
|
4505 |
|
4506 |
+
#: app/features/mec/modules.php:242
|
4507 |
#, php-format
|
4508 |
msgid "You can get a free API Key from %s"
|
4509 |
msgstr "Sie können einen kostenlosen API-Schlüssel von% s erhalten"
|
4510 |
|
4511 |
+
#: app/features/mec/modules.php:248
|
4512 |
#, fuzzy
|
4513 |
#| msgid "Show weather module on event page"
|
4514 |
msgid "Show weather imperial units"
|
4515 |
msgstr "Wettermodul auf der Eventseite anzeigen"
|
4516 |
|
4517 |
+
#: app/features/mec/modules.php:254
|
4518 |
msgid "Show weather change units button"
|
4519 |
msgstr ""
|
4520 |
|
4521 |
+
#: app/features/mec/modules.php:268
|
4522 |
msgid "Show social network module"
|
4523 |
msgstr "Modul für Soziale Netzwerke anzeigen"
|
4524 |
|
4525 |
+
#: app/features/mec/modules.php:294 app/libraries/main.php:572
|
4526 |
#: app/modules/next-event/details.php:86
|
4527 |
msgid "Next Event"
|
4528 |
msgstr "Nächstes Event"
|
4529 |
|
4530 |
+
#: app/features/mec/modules.php:298
|
4531 |
msgid "Show next event module on event page"
|
4532 |
msgstr "Nächstes Event Modul auf der Eventseite anzeigen"
|
4533 |
|
4534 |
+
#: app/features/mec/modules.php:303
|
4535 |
msgid "Method"
|
4536 |
msgstr "Methode"
|
4537 |
|
4538 |
+
#: app/features/mec/modules.php:306
|
4539 |
msgid "Next Occurrence of Current Event"
|
4540 |
msgstr "Nächstes Auftreten des aktuellen Events"
|
4541 |
|
4542 |
+
#: app/features/mec/modules.php:307
|
4543 |
msgid "Next Occurrence of Other Events"
|
4544 |
msgstr "Nächstes Auftreten von anderen Events."
|
4545 |
|
4546 |
+
#: app/features/mec/modules.php:318 app/features/mec/single.php:42
|
4547 |
msgid "Default is M d Y"
|
4548 |
msgstr "Standardwert ist M-T-J"
|
4549 |
|
4550 |
+
#: app/features/mec/modules.php:334
|
4551 |
msgid "Enable BuddyPress Integration"
|
4552 |
msgstr "Buddy Press Integration deaktivieren"
|
4553 |
|
4554 |
+
#: app/features/mec/modules.php:341
|
4555 |
msgid "Show \"Attendees Module\" in event details page"
|
4556 |
msgstr "Zeigt \"Teilnehmermodul\" in Event Details Seite"
|
4557 |
|
4558 |
+
#: app/features/mec/modules.php:345
|
4559 |
msgid "Attendees Limit"
|
4560 |
msgstr "Teilnehmer Limit, maximale Anzahl"
|
4561 |
|
4562 |
+
#: app/features/mec/modules.php:353
|
4563 |
msgid "Add booking activity to user profile"
|
4564 |
msgstr "Fügt Buchungsaktivitäten dem Benutzerprofil hinzu"
|
4565 |
|
5046 |
"Informieren, dass eine neue Buchung eingegangen ist."
|
5047 |
|
5048 |
#: app/features/mec/notifications.php:530 app/libraries/main.php:581
|
5049 |
+
#: app/libraries/notifications.php:607
|
5050 |
msgid "Booking Reminder"
|
5051 |
msgstr "Buchungs Erinnerung"
|
5052 |
|
5314 |
msgstr ""
|
5315 |
|
5316 |
#: app/features/mec/settings.php:160 app/features/mec/settings.php:170
|
5317 |
+
#: app/libraries/main.php:5347
|
5318 |
msgid "Weekdays"
|
5319 |
msgstr "Wochentage"
|
5320 |
|
5941 |
"checkbox unchecked."
|
5942 |
msgstr ""
|
5943 |
|
5944 |
+
#: app/features/mec/single.php:117 app/features/mec/single.php:124
|
5945 |
msgid "Breadcrumbs"
|
5946 |
msgstr ""
|
5947 |
|
5948 |
+
#: app/features/mec/single.php:120
|
5949 |
msgid "Enable Breadcrumbs."
|
5950 |
msgstr ""
|
5951 |
|
5952 |
+
#: app/features/mec/single.php:125
|
5953 |
msgid "Check this option, for showing the breadcrumbs on single event page"
|
5954 |
msgstr ""
|
5955 |
|
5956 |
+
#: app/features/mec/single.php:132 app/features/mec/single.php:139
|
5957 |
+
#, fuzzy
|
5958 |
+
#| msgid "Description"
|
5959 |
+
msgid "Organizer Description"
|
5960 |
+
msgstr "Beschreibung"
|
5961 |
+
|
5962 |
+
#: app/features/mec/single.php:135
|
5963 |
+
msgid "Enable Description For Organizer."
|
5964 |
+
msgstr ""
|
5965 |
+
|
5966 |
+
#: app/features/mec/single.php:140
|
5967 |
+
msgid ""
|
5968 |
+
"If you want to turn on description for other organizer plase go to "
|
5969 |
+
"'Additional Organizers - After enabling and saving the settings, reloading "
|
5970 |
+
"the settings page.' tab"
|
5971 |
+
msgstr ""
|
5972 |
+
|
5973 |
+
#: app/features/mec/single.php:153
|
5974 |
msgid "Show countdown module on event page"
|
5975 |
msgstr "Countdownmodul auf Veranstaltungsseite anzeigen"
|
5976 |
|
5977 |
+
#: app/features/mec/single.php:158
|
5978 |
msgid "Countdown Style"
|
5979 |
msgstr "Countdown Stil"
|
5980 |
|
5981 |
+
#: app/features/mec/single.php:161
|
5982 |
msgid "Plain Style"
|
5983 |
msgstr "Einfacher schlichter Stil"
|
5984 |
|
5985 |
+
#: app/features/mec/single.php:162
|
5986 |
msgid "Flip Style"
|
5987 |
msgstr "Flip Stil"
|
5988 |
|
5989 |
+
#: app/features/mec/single.php:170 app/features/mec/single.php:177
|
5990 |
#, fuzzy
|
5991 |
#| msgid "Exceptional days"
|
5992 |
msgid "Exceptional days (Exclude Dates)"
|
5993 |
msgstr "Ausgesuchte ausnehmende Tage"
|
5994 |
|
5995 |
+
#: app/features/mec/single.php:174
|
5996 |
msgid "Show exceptional days option on Add/Edit events page"
|
5997 |
msgstr ""
|
5998 |
"Ausnehmende Tage anzeigen auf der Seite Ereignisse hinzufügen / bearbeiten "
|
5999 |
"(Show exceptional days option on Add/Edit events page)"
|
6000 |
|
6001 |
+
#: app/features/mec/single.php:178
|
6002 |
#, fuzzy
|
6003 |
#| msgid ""
|
6004 |
#| "Using this option you can include/exclude certain days to/from event "
|
6009 |
"Mit dieser Option können Sie bestimmte Tage von vorkommenden Eventdaten ein-/"
|
6010 |
"ausschließen."
|
6011 |
|
6012 |
+
#: app/features/mec/single.php:187 app/libraries/main.php:550
|
6013 |
msgid "Additional Organizers"
|
6014 |
msgstr "Zusätzliche Organisatoren"
|
6015 |
|
6016 |
+
#: app/features/mec/single.php:192
|
6017 |
msgid ""
|
6018 |
"Show additional organizers option on Add/Edit events page and single event "
|
6019 |
"page."
|
6021 |
"Zeigen Sie zusätzliche Organisatoren auf der Seite Events hinzufügen / "
|
6022 |
"bearbeiten und auf der Seite für einzelne Events an."
|
6023 |
|
6024 |
+
#: app/features/mec/single.php:201
|
6025 |
+
msgid "Enable Description For Other Organizers."
|
6026 |
+
msgstr ""
|
6027 |
+
|
6028 |
+
#: app/features/mec/single.php:209
|
6029 |
#, fuzzy
|
6030 |
#| msgid "Additional Organizers"
|
6031 |
msgid "Additional locations"
|
6032 |
msgstr "Zusätzliche Organisatoren"
|
6033 |
|
6034 |
+
#: app/features/mec/single.php:213
|
6035 |
#, fuzzy
|
6036 |
#| msgid ""
|
6037 |
#| "Show additional organizers option on Add/Edit events page and single "
|
6043 |
"Zeigen Sie zusätzliche Organisatoren auf der Seite Events hinzufügen / "
|
6044 |
"bearbeiten und auf der Seite für einzelne Events an."
|
6045 |
|
6046 |
+
#: app/features/mec/single.php:219 app/libraries/main.php:552
|
6047 |
#: app/skins/single.php:163
|
6048 |
#, fuzzy
|
6049 |
#| msgid "featured event"
|
6050 |
msgid "Related Events"
|
6051 |
msgstr "Ausgewählte Veranstaltung"
|
6052 |
|
6053 |
+
#: app/features/mec/single.php:223
|
6054 |
msgid "Display related events based on taxonomy in single event page."
|
6055 |
msgstr ""
|
6056 |
|
6057 |
+
#: app/features/mec/single.php:229
|
6058 |
#, fuzzy
|
6059 |
#| msgid "Taxonomies"
|
6060 |
msgid "Select Taxonomies:"
|
6640 |
msgid "eg. https://webnus.net"
|
6641 |
msgstr "http://webnus.net"
|
6642 |
|
6643 |
+
#: app/features/organizers.php:312 app/libraries/main.php:5371
|
6644 |
#: app/skins/single.php:862
|
6645 |
msgid "Other Organizers"
|
6646 |
msgstr "Andere Veranstalter"
|
6718 |
msgid "Please %s/%s in order to see your bookings / profile."
|
6719 |
msgstr "Um neue Veranstaltungen einzugeben, bitte %s/%s"
|
6720 |
|
6721 |
+
#: app/features/profile/profile.php:18 app/libraries/main.php:2150
|
6722 |
#, fuzzy
|
6723 |
#| msgid "Your booking cannot be canceled."
|
6724 |
msgid "Your booking already canceled!"
|
6728 |
msgid "#"
|
6729 |
msgstr ""
|
6730 |
|
6731 |
+
#: app/features/profile/profile.php:56 app/libraries/main.php:3169
|
6732 |
msgid "Status"
|
6733 |
msgstr ""
|
6734 |
|
6735 |
+
#: app/features/profile/profile.php:59 app/libraries/main.php:2268
|
6736 |
msgid "Attendees"
|
6737 |
msgstr "Teilnehmer"
|
6738 |
|
6765 |
msgid "No bookings found!"
|
6766 |
msgstr "Keine Buchungen gefunden"
|
6767 |
|
6768 |
+
#: app/features/search.php:93 app/libraries/main.php:5337
|
6769 |
msgid "label"
|
6770 |
msgstr "label"
|
6771 |
|
6792 |
msgstr ""
|
6793 |
|
6794 |
#: app/features/search_bar/search_result.php:11
|
6795 |
+
#: app/libraries/notifications.php:951 app/libraries/render.php:488
|
6796 |
+
#: app/modules/local-time/details.php:48 app/modules/next-event/details.php:104
|
6797 |
#: app/skins/single.php:160 app/skins/single.php:753
|
6798 |
+
#: app/skins/single/default.php:108 app/skins/single/default.php:331
|
6799 |
+
#: app/skins/single/m1.php:43 app/skins/single/modern.php:198
|
6800 |
+
#, fuzzy
|
6801 |
+
#| msgid "All Day Event"
|
6802 |
+
msgid "All Day"
|
6803 |
+
msgstr "Ganztägige Veranstaltung"
|
6804 |
|
6805 |
#: app/features/speakers.php:111 app/features/speakers.php:188
|
6806 |
#: app/features/speakers.php:270
|
6892 |
msgid "%s Price"
|
6893 |
msgstr "%s Preis"
|
6894 |
|
6895 |
+
#: app/libraries/book.php:588
|
6896 |
msgid "Discount"
|
6897 |
msgstr "Rabatt"
|
6898 |
|
6899 |
+
#: app/libraries/book.php:678 app/modules/booking/default.php:303
|
6900 |
#: app/modules/booking/default.php:401
|
6901 |
msgid "Download Invoice"
|
6902 |
msgstr "Download Rechnung"
|
6926 |
msgid "day"
|
6927 |
msgstr "Tag"
|
6928 |
|
6929 |
+
#: app/libraries/factory.php:363 app/modules/countdown/details.php:138
|
6930 |
#: app/skins/available_spot/tpl.php:165 app/skins/countdown/tpl.php:158
|
6931 |
#: app/skins/countdown/tpl.php:202 app/skins/countdown/tpl.php:251
|
6932 |
msgid "days"
|
6936 |
msgid "hour"
|
6937 |
msgstr "Stunde"
|
6938 |
|
6939 |
+
#: app/libraries/factory.php:365 app/modules/countdown/details.php:145
|
6940 |
#: app/skins/available_spot/tpl.php:169 app/skins/countdown/tpl.php:164
|
6941 |
#: app/skins/countdown/tpl.php:208 app/skins/countdown/tpl.php:257
|
6942 |
msgid "hours"
|
6946 |
msgid "minute"
|
6947 |
msgstr "Minute"
|
6948 |
|
6949 |
+
#: app/libraries/factory.php:367 app/modules/countdown/details.php:152
|
6950 |
#: app/skins/available_spot/tpl.php:173 app/skins/countdown/tpl.php:170
|
6951 |
#: app/skins/countdown/tpl.php:214 app/skins/countdown/tpl.php:263
|
6952 |
msgid "minutes"
|
6956 |
msgid "second"
|
6957 |
msgstr "Sekunde"
|
6958 |
|
6959 |
+
#: app/libraries/factory.php:369 app/modules/countdown/details.php:159
|
6960 |
#: app/skins/available_spot/tpl.php:177 app/skins/countdown/tpl.php:176
|
6961 |
#: app/skins/countdown/tpl.php:220 app/skins/countdown/tpl.php:269
|
6962 |
msgid "seconds"
|
6976 |
"Eine Vorschau kann nicht angezeit werden, da es sich um einen geschützen "
|
6977 |
"Beitrag handelt."
|
6978 |
|
6979 |
+
#: app/libraries/main.php:331 app/libraries/main.php:1766
|
6980 |
+
#: app/libraries/main.php:1791
|
6981 |
msgid "Grid View"
|
6982 |
msgstr "Rasterdarstellung"
|
6983 |
|
6984 |
+
#: app/libraries/main.php:332 app/libraries/main.php:1767
|
6985 |
+
#: app/libraries/main.php:1792
|
6986 |
msgid "Agenda View"
|
6987 |
msgstr "Agendaansicht"
|
6988 |
|
6989 |
+
#: app/libraries/main.php:333 app/libraries/main.php:1758
|
6990 |
+
#: app/libraries/main.php:1783
|
6991 |
msgid "Full Calendar"
|
6992 |
msgstr "Ganzer Kalender"
|
6993 |
|
6994 |
+
#: app/libraries/main.php:335 app/libraries/main.php:1760
|
6995 |
+
#: app/libraries/main.php:1785
|
6996 |
msgid "Calendar/Monthly View"
|
6997 |
msgstr "Kalender-/Monatsansicht"
|
6998 |
|
6999 |
+
#: app/libraries/main.php:338 app/libraries/main.php:1763
|
7000 |
+
#: app/libraries/main.php:1788
|
7001 |
msgid "Timetable View"
|
7002 |
msgstr "Stundenplan"
|
7003 |
|
7004 |
+
#: app/libraries/main.php:339 app/libraries/main.php:1764
|
7005 |
+
#: app/libraries/main.php:1789
|
7006 |
msgid "Masonry View"
|
7007 |
msgstr "Kachel Ansicht"
|
7008 |
|
7009 |
+
#: app/libraries/main.php:340 app/libraries/main.php:1768
|
7010 |
+
#: app/libraries/main.php:1793
|
7011 |
msgid "Map View"
|
7012 |
msgstr "Kartenansicht"
|
7013 |
|
7043 |
msgid "Tile View"
|
7044 |
msgstr "Stundenplan"
|
7045 |
|
7046 |
+
#: app/libraries/main.php:385 app/libraries/main.php:5349
|
7047 |
msgid "SU"
|
7048 |
msgstr "SO"
|
7049 |
|
7050 |
+
#: app/libraries/main.php:386 app/libraries/main.php:5350
|
7051 |
msgid "MO"
|
7052 |
msgstr "MO"
|
7053 |
|
7054 |
+
#: app/libraries/main.php:387 app/libraries/main.php:5351
|
7055 |
msgid "TU"
|
7056 |
msgstr "DI"
|
7057 |
|
7058 |
+
#: app/libraries/main.php:388 app/libraries/main.php:5352
|
7059 |
msgid "WE"
|
7060 |
msgstr "MI"
|
7061 |
|
7062 |
+
#: app/libraries/main.php:389 app/libraries/main.php:5353
|
7063 |
msgid "TH"
|
7064 |
msgstr "DO"
|
7065 |
|
7066 |
+
#: app/libraries/main.php:390 app/libraries/main.php:5354
|
7067 |
msgid "FR"
|
7068 |
msgstr "FR"
|
7069 |
|
7070 |
+
#: app/libraries/main.php:391 app/libraries/main.php:5355
|
7071 |
msgid "SA"
|
7072 |
msgstr "SA"
|
7073 |
|
7134 |
"events. Users can now log in to purchase tickets."
|
7135 |
msgstr ""
|
7136 |
|
7137 |
+
#: app/libraries/main.php:1493
|
7138 |
msgid "Events at this location"
|
7139 |
msgstr "Veranstaltungen an diesem Ort "
|
7140 |
|
7141 |
+
#: app/libraries/main.php:1493
|
7142 |
msgid "Event at this location"
|
7143 |
msgstr "Veranstaltung an diesem Ort "
|
7144 |
|
7145 |
+
#: app/libraries/main.php:1536
|
7146 |
msgid "Facebook"
|
7147 |
msgstr "Facebook"
|
7148 |
|
7149 |
+
#: app/libraries/main.php:1537
|
7150 |
msgid "Twitter"
|
7151 |
msgstr "Twitter"
|
7152 |
|
7153 |
+
#: app/libraries/main.php:1538 app/libraries/main.php:1595
|
7154 |
msgid "Linkedin"
|
7155 |
msgstr "Linkedin"
|
7156 |
|
7157 |
+
#: app/libraries/main.php:1539 app/libraries/main.php:1631
|
7158 |
msgid "VK"
|
7159 |
msgstr ""
|
7160 |
|
7161 |
+
#: app/libraries/main.php:1540
|
7162 |
msgid "Tumblr"
|
7163 |
msgstr ""
|
7164 |
|
7165 |
+
#: app/libraries/main.php:1541
|
7166 |
msgid "Pinterest"
|
7167 |
msgstr ""
|
7168 |
|
7169 |
+
#: app/libraries/main.php:1542
|
7170 |
msgid "Flipboard"
|
7171 |
msgstr ""
|
7172 |
|
7173 |
+
#: app/libraries/main.php:1543
|
7174 |
#, fuzzy
|
7175 |
#| msgid "Tickets"
|
7176 |
msgid "GetPocket"
|
7177 |
msgstr "Tickets"
|
7178 |
|
7179 |
+
#: app/libraries/main.php:1544
|
7180 |
msgid "Reddit"
|
7181 |
msgstr ""
|
7182 |
|
7183 |
+
#: app/libraries/main.php:1545
|
7184 |
msgid "WhatsApp"
|
7185 |
msgstr ""
|
7186 |
|
7187 |
+
#: app/libraries/main.php:1546
|
7188 |
msgid "Telegram"
|
7189 |
msgstr ""
|
7190 |
|
7191 |
+
#: app/libraries/main.php:1565
|
7192 |
msgid "Share on Facebook"
|
7193 |
msgstr "Teilen auf Facebook"
|
7194 |
|
7195 |
+
#: app/libraries/main.php:1580
|
7196 |
msgid "Tweet"
|
7197 |
msgstr "Tweet"
|
7198 |
|
7199 |
+
#: app/libraries/main.php:1646
|
7200 |
#, fuzzy
|
7201 |
#| msgid "Share on Facebook"
|
7202 |
msgid "Share on Tumblr"
|
7203 |
msgstr "Teilen auf Facebook"
|
7204 |
|
7205 |
+
#: app/libraries/main.php:1662
|
7206 |
msgid "Share on Pinterest"
|
7207 |
msgstr ""
|
7208 |
|
7209 |
+
#: app/libraries/main.php:1678
|
7210 |
#, fuzzy
|
7211 |
#| msgid "Share on Facebook"
|
7212 |
msgid "Share on Flipboard"
|
7213 |
msgstr "Teilen auf Facebook"
|
7214 |
|
7215 |
+
#: app/libraries/main.php:1696
|
7216 |
#, fuzzy
|
7217 |
#| msgid "Share on Facebook"
|
7218 |
msgid "Share on GetPocket"
|
7219 |
msgstr "Teilen auf Facebook"
|
7220 |
|
7221 |
+
#: app/libraries/main.php:1712
|
7222 |
#, fuzzy
|
7223 |
#| msgid "Share on Facebook"
|
7224 |
msgid "Share on Reddit"
|
7225 |
msgstr "Teilen auf Facebook"
|
7226 |
|
7227 |
+
#: app/libraries/main.php:1728
|
7228 |
msgid "Share on Telegram"
|
7229 |
msgstr ""
|
7230 |
|
7231 |
+
#: app/libraries/main.php:1746
|
7232 |
msgid "Share on WhatsApp"
|
7233 |
msgstr ""
|
7234 |
|
7235 |
+
#: app/libraries/main.php:1769
|
7236 |
#, fuzzy
|
7237 |
#| msgid "Shortcode"
|
7238 |
msgid "Custom Shortcode"
|
7239 |
msgstr "Shortcode"
|
7240 |
|
7241 |
+
#: app/libraries/main.php:2130
|
7242 |
#, fuzzy
|
7243 |
#| msgid "Your booking successfully verified."
|
7244 |
msgid "Your booking already verified!"
|
7245 |
msgstr "Ihre Buchung wurde erfolgreich verifiziert."
|
7246 |
|
7247 |
+
#: app/libraries/main.php:2135
|
7248 |
msgid "Your booking successfully verified."
|
7249 |
msgstr "Ihre Buchung wurde erfolgreich verifiziert."
|
7250 |
|
7251 |
+
#: app/libraries/main.php:2136
|
7252 |
msgid "Your booking cannot verify!"
|
7253 |
msgstr "Ihre Buchung kann nicht verifiziert werden!"
|
7254 |
|
7255 |
+
#: app/libraries/main.php:2155
|
7256 |
msgid "Your booking successfully canceled."
|
7257 |
msgstr "Ihre Buchung wurde erfolgreich storniert."
|
7258 |
|
7259 |
+
#: app/libraries/main.php:2156
|
7260 |
msgid "Your booking cannot be canceled."
|
7261 |
msgstr "Ihre Buchung kann nicht storniert werden."
|
7262 |
|
7263 |
+
#: app/libraries/main.php:2160
|
7264 |
msgid "You canceled the payment successfully."
|
7265 |
msgstr "Sie haben die Zahlung erfolgreich storniert."
|
7266 |
|
7267 |
+
#: app/libraries/main.php:2164
|
7268 |
msgid "You returned from payment gateway successfully."
|
7269 |
msgstr "Sie sind vom Bezahlungs-Gateway erfolgreich zurückgekehrt."
|
7270 |
|
7271 |
+
#: app/libraries/main.php:2180
|
7272 |
#, fuzzy
|
7273 |
#| msgid "Cannot find the booking!"
|
7274 |
msgid "Cannot find the invoice!"
|
7275 |
msgstr "Kann die Buchung nicht finden!"
|
7276 |
|
7277 |
+
#: app/libraries/main.php:2180
|
7278 |
#, fuzzy
|
7279 |
#| msgid "Booking is invalid."
|
7280 |
msgid "Invoice is invalid."
|
7281 |
msgstr "Buchung ist ungültig."
|
7282 |
|
7283 |
+
#: app/libraries/main.php:2200
|
7284 |
msgid ""
|
7285 |
"Your booking still is not confirmed. You able download it after confirmation!"
|
7286 |
msgstr ""
|
7287 |
|
7288 |
+
#: app/libraries/main.php:2200
|
7289 |
#, fuzzy
|
7290 |
#| msgid "Booking Confirmation"
|
7291 |
msgid "Booking Not Confirmed."
|
7292 |
msgstr "Buchungsbestätigung"
|
7293 |
|
7294 |
+
#: app/libraries/main.php:2206
|
7295 |
msgid "Cannot find the booking!"
|
7296 |
msgstr "Kann die Buchung nicht finden!"
|
7297 |
|
7298 |
+
#: app/libraries/main.php:2206
|
7299 |
msgid "Booking is invalid."
|
7300 |
msgstr "Buchung ist ungültig."
|
7301 |
|
7302 |
+
#: app/libraries/main.php:2238
|
7303 |
#, php-format
|
7304 |
msgid "%s Invoice"
|
7305 |
msgstr "% s Rechnung"
|
7306 |
|
7307 |
+
#: app/libraries/main.php:2312
|
7308 |
msgid "Billing"
|
7309 |
msgstr "Abrechnung"
|
7310 |
|
7311 |
+
#: app/libraries/main.php:2324
|
7312 |
+
#, fuzzy
|
7313 |
+
#| msgid "Coupon"
|
7314 |
+
msgid "Coupon Code"
|
7315 |
+
msgstr "Gutschein"
|
7316 |
+
|
7317 |
+
#: app/libraries/main.php:2329
|
7318 |
msgid "Total"
|
7319 |
msgstr "Gesamt"
|
7320 |
|
7321 |
+
#: app/libraries/main.php:2336
|
7322 |
msgid "Payment"
|
7323 |
msgstr "Bezahlung"
|
7324 |
|
7325 |
+
#: app/libraries/main.php:2340
|
7326 |
msgid "Gateway"
|
7327 |
msgstr "Gateway"
|
7328 |
|
7329 |
+
#: app/libraries/main.php:2348
|
7330 |
#, fuzzy
|
7331 |
#| msgid "Payment"
|
7332 |
msgid "Payment Time"
|
7333 |
msgstr "Bezahlung"
|
7334 |
|
7335 |
+
#: app/libraries/main.php:2409
|
7336 |
#, fuzzy
|
7337 |
#| msgid "Request is invalid!"
|
7338 |
msgid "Request is not valid."
|
7339 |
msgstr "Die Anfrage ist ungültig!"
|
7340 |
|
7341 |
+
#: app/libraries/main.php:2409
|
7342 |
msgid "iCal export stopped!"
|
7343 |
msgstr "iCal Export wurde unterbrochen!"
|
7344 |
|
7345 |
+
#: app/libraries/main.php:2753 app/libraries/main.php:2783
|
7346 |
+
#: app/libraries/main.php:2812 app/libraries/main.php:2842
|
7347 |
+
#: app/libraries/main.php:2871 app/libraries/main.php:2900
|
7348 |
+
#: app/libraries/main.php:2929 app/libraries/main.php:2958
|
7349 |
+
#: app/libraries/main.php:2987 app/libraries/main.php:3011
|
7350 |
+
#: app/libraries/main.php:3055 app/libraries/main.php:3099
|
7351 |
+
#: app/libraries/main.php:3146 app/libraries/main.php:3193
|
7352 |
msgid "Sort"
|
7353 |
msgstr "Sortieren"
|
7354 |
|
7355 |
+
#: app/libraries/main.php:2759 app/libraries/main.php:2789
|
7356 |
+
#: app/libraries/main.php:2818 app/libraries/main.php:2848
|
7357 |
+
#: app/libraries/main.php:2877 app/libraries/main.php:2906
|
7358 |
+
#: app/libraries/main.php:2935 app/libraries/main.php:2964
|
7359 |
+
#: app/libraries/main.php:3017 app/libraries/main.php:3061
|
7360 |
+
#: app/libraries/main.php:3105 app/libraries/main.php:3152
|
7361 |
msgid "Required Field"
|
7362 |
msgstr "Pflichtfeld"
|
7363 |
|
7364 |
+
#: app/libraries/main.php:2765 app/libraries/main.php:2795
|
7365 |
+
#: app/libraries/main.php:2824 app/libraries/main.php:2854
|
7366 |
+
#: app/libraries/main.php:2883 app/libraries/main.php:2912
|
7367 |
+
#: app/libraries/main.php:2941 app/libraries/main.php:2970
|
7368 |
+
#: app/libraries/main.php:3023 app/libraries/main.php:3067
|
7369 |
+
#: app/libraries/main.php:3111 app/libraries/main.php:3158
|
7370 |
msgid "Insert a label for this field"
|
7371 |
msgstr "Geben Sie eine Bezeichnung (Label) für dieses Feld ein."
|
7372 |
|
7373 |
+
#: app/libraries/main.php:2993
|
7374 |
msgid "HTML and shortcode are allowed."
|
7375 |
msgstr "HTML und shortcodes sind erlaubt."
|
7376 |
|
7377 |
+
#: app/libraries/main.php:3036 app/libraries/main.php:3080
|
7378 |
+
#: app/libraries/main.php:3124
|
7379 |
msgid "Option"
|
7380 |
msgstr "Option"
|
7381 |
|
7382 |
+
#: app/libraries/main.php:3158
|
7383 |
#, php-format
|
7384 |
msgid "Instead of %s, the page title with a link will be show."
|
7385 |
msgstr "Anstelle von %s, wird der Seitentitel mit einem Link gezeigt"
|
7386 |
|
7387 |
+
#: app/libraries/main.php:3160
|
7388 |
msgid "Agreement Page"
|
7389 |
msgstr "Zustimmungsseite"
|
7390 |
|
7391 |
+
#: app/libraries/main.php:3171
|
7392 |
msgid "Checked by default"
|
7393 |
msgstr ""
|
7394 |
|
7395 |
+
#: app/libraries/main.php:3172
|
7396 |
msgid "Unchecked by default"
|
7397 |
msgstr ""
|
7398 |
|
7399 |
+
#: app/libraries/main.php:3195
|
7400 |
msgid "Insert a label for this option"
|
7401 |
msgstr "Ein neues Label für diese Option einfügen"
|
7402 |
|
7403 |
+
#: app/libraries/main.php:3210
|
7404 |
msgid "Free"
|
7405 |
msgstr "kostenfrei"
|
7406 |
|
7407 |
+
#: app/libraries/main.php:3816 app/libraries/main.php:5599
|
7408 |
#, fuzzy
|
7409 |
#| msgid "M.E. Calendar"
|
7410 |
msgid "M.E. Calender"
|
7411 |
msgstr "M.E. Calender"
|
7412 |
|
7413 |
+
#: app/libraries/main.php:3971
|
7414 |
#, php-format
|
7415 |
msgid "Copy of %s"
|
7416 |
msgstr "Kopie von %s"
|
7417 |
|
7418 |
+
#: app/libraries/main.php:4712
|
7419 |
msgid "Booked an event."
|
7420 |
msgstr "Eine Veranstaltung wurde gebucht."
|
7421 |
|
7422 |
+
#: app/libraries/main.php:4753
|
7423 |
#, php-format
|
7424 |
msgid "%s booked %s event."
|
7425 |
msgstr "%s gebuchtes %s Event"
|
7426 |
|
7427 |
+
#: app/libraries/main.php:5332
|
7428 |
msgid "Taxonomies"
|
7429 |
msgstr "Klassifizierung "
|
7430 |
|
7431 |
+
#: app/libraries/main.php:5334
|
7432 |
msgid "Category Plural Label"
|
7433 |
msgstr "Kategorien"
|
7434 |
|
7435 |
+
#: app/libraries/main.php:5335
|
7436 |
msgid "Category Singular Label"
|
7437 |
msgstr "Kategorie"
|
7438 |
|
7439 |
+
#: app/libraries/main.php:5336
|
7440 |
msgid "Label Plural Label"
|
7441 |
msgstr "Labels"
|
7442 |
|
7443 |
+
#: app/libraries/main.php:5337
|
7444 |
msgid "Label Singular Label"
|
7445 |
msgstr "Label"
|
7446 |
|
7447 |
+
#: app/libraries/main.php:5338
|
7448 |
msgid "Location Plural Label"
|
7449 |
msgstr "Veranstaltungsorte"
|
7450 |
|
7451 |
+
#: app/libraries/main.php:5339
|
7452 |
msgid "Location Singular Label"
|
7453 |
msgstr "Veranstaltungsort"
|
7454 |
|
7455 |
+
#: app/libraries/main.php:5340
|
7456 |
msgid "Organizer Plural Label"
|
7457 |
msgstr "Veranstalter"
|
7458 |
|
7459 |
+
#: app/libraries/main.php:5341
|
7460 |
msgid "Organizer Singular Label"
|
7461 |
msgstr "Veranstalter"
|
7462 |
|
7463 |
+
#: app/libraries/main.php:5342
|
7464 |
#, fuzzy
|
7465 |
#| msgid "Label Plural Label"
|
7466 |
msgid "Speaker Plural Label"
|
7467 |
msgstr "Labels"
|
7468 |
|
7469 |
+
#: app/libraries/main.php:5343
|
7470 |
#, fuzzy
|
7471 |
#| msgid "Label Singular Label"
|
7472 |
msgid "Speaker Singular Label"
|
7473 |
msgstr "Label"
|
7474 |
|
7475 |
+
#: app/libraries/main.php:5349
|
7476 |
msgid "Sunday abbreviation"
|
7477 |
msgstr "Sonntag Abkürzung"
|
7478 |
|
7479 |
+
#: app/libraries/main.php:5350
|
7480 |
msgid "Monday abbreviation"
|
7481 |
msgstr "Montag Abkürzung"
|
7482 |
|
7483 |
+
#: app/libraries/main.php:5351
|
7484 |
msgid "Tuesday abbreviation"
|
7485 |
msgstr "Dienstag Abkürzung"
|
7486 |
|
7487 |
+
#: app/libraries/main.php:5352
|
7488 |
msgid "Wednesday abbreviation"
|
7489 |
msgstr "Mittwoch Abkürzung"
|
7490 |
|
7491 |
+
#: app/libraries/main.php:5353
|
7492 |
msgid "Thursday abbreviation"
|
7493 |
msgstr "Donnerstag Abkürzung"
|
7494 |
|
7495 |
+
#: app/libraries/main.php:5354
|
7496 |
msgid "Friday abbreviation"
|
7497 |
msgstr "Freitag Abkürzung"
|
7498 |
|
7499 |
+
#: app/libraries/main.php:5355
|
7500 |
msgid "Saturday abbreviation"
|
7501 |
msgstr "Samstag Abkürzung "
|
7502 |
|
7503 |
+
#: app/libraries/main.php:5359
|
7504 |
msgid "Others"
|
7505 |
msgstr "Andere"
|
7506 |
|
7507 |
+
#: app/libraries/main.php:5361
|
7508 |
msgid "Booking Success Message"
|
7509 |
msgstr "Buchung erfolgreich Mitteilung"
|
7510 |
|
7511 |
+
#: app/libraries/main.php:5361
|
7512 |
msgid ""
|
7513 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
7514 |
"needed, please check your email."
|
7516 |
"Vielen Dank für Ihre Buchung. Für die gebuchten Tickets ist ggf. eine "
|
7517 |
"Bestätigung durch Sie erforderlich. Bitte überprüfen Sie Ihre Emails."
|
7518 |
|
7519 |
+
#: app/libraries/main.php:5362 app/widgets/single.php:131
|
7520 |
msgid "Register Button"
|
7521 |
msgstr "Register Button"
|
7522 |
|
7523 |
+
#: app/libraries/main.php:5362 app/skins/available_spot/tpl.php:223
|
7524 |
#: app/skins/carousel/render.php:160 app/skins/carousel/render.php:197
|
7525 |
#: app/skins/grid/render.php:124 app/skins/grid/render.php:171
|
7526 |
#: app/skins/grid/render.php:215 app/skins/grid/render.php:244
|
7527 |
#: app/skins/list/render.php:109 app/skins/list/render.php:195
|
7528 |
#: app/skins/masonry/render.php:188 app/skins/single.php:774
|
7529 |
+
#: app/skins/single.php:777 app/skins/single/default.php:260
|
7530 |
+
#: app/skins/single/default.php:262 app/skins/single/default.php:483
|
7531 |
+
#: app/skins/single/default.php:485 app/skins/single/m1.php:140
|
7532 |
+
#: app/skins/single/m1.php:142 app/skins/single/m2.php:66
|
7533 |
+
#: app/skins/single/m2.php:68 app/skins/single/modern.php:76
|
7534 |
+
#: app/skins/single/modern.php:78 app/skins/slider/render.php:114
|
7535 |
#: app/skins/slider/render.php:163 app/skins/slider/render.php:211
|
7536 |
#: app/skins/slider/render.php:260 app/skins/slider/render.php:320
|
7537 |
msgid "REGISTER"
|
7538 |
msgstr "ANMELDEN"
|
7539 |
|
7540 |
+
#: app/libraries/main.php:5363
|
7541 |
msgid "View Detail Button"
|
7542 |
msgstr "Ansicht Detail Button"
|
7543 |
|
7544 |
+
#: app/libraries/main.php:5363 app/skins/carousel/render.php:160
|
7545 |
#: app/skins/carousel/render.php:197 app/skins/grid/render.php:124
|
7546 |
#: app/skins/grid/render.php:171 app/skins/grid/render.php:215
|
7547 |
#: app/skins/grid/render.php:244 app/skins/list/render.php:109
|
7552 |
msgid "View Detail"
|
7553 |
msgstr "Details "
|
7554 |
|
7555 |
+
#: app/libraries/main.php:5364
|
7556 |
msgid "Event Detail Button"
|
7557 |
msgstr "Event Detail Button"
|
7558 |
|
7559 |
+
#: app/libraries/main.php:5364 app/skins/countdown/tpl.php:244
|
7560 |
msgid "Event Detail"
|
7561 |
msgstr "Veranstaltungsdetails"
|
7562 |
|
7563 |
+
#: app/libraries/main.php:5366
|
7564 |
msgid "More Info Link"
|
7565 |
msgstr "Link Mehr Informationen"
|
7566 |
|
7567 |
+
#: app/libraries/main.php:5369
|
7568 |
msgid "Ticket (Singular)"
|
7569 |
msgstr "Ticket"
|
7570 |
|
7571 |
+
#: app/libraries/main.php:5370
|
7572 |
msgid "Tickets (Plural)"
|
7573 |
msgstr "Tickets"
|
7574 |
|
7575 |
+
#: app/libraries/main.php:5456
|
7576 |
msgid "EventON"
|
7577 |
msgstr "EventON"
|
7578 |
|
7579 |
+
#: app/libraries/main.php:5457
|
7580 |
msgid "The Events Calendar"
|
7581 |
msgstr "The Events Calendar"
|
7582 |
|
7583 |
+
#: app/libraries/main.php:5458
|
7584 |
msgid "Events Schedule WP Plugin"
|
7585 |
msgstr "Event Zeitplan WP-Plugin"
|
7586 |
|
7587 |
+
#: app/libraries/main.php:5459
|
7588 |
msgid "Calendarize It"
|
7589 |
msgstr ""
|
7590 |
|
7591 |
+
#: app/libraries/main.php:5460
|
7592 |
#, fuzzy
|
7593 |
#| msgid "No Search Options"
|
7594 |
msgid "Event Espresso"
|
7595 |
msgstr "Keine Suchoptionen"
|
7596 |
|
7597 |
+
#: app/libraries/main.php:5461
|
7598 |
#, fuzzy
|
7599 |
#| msgid "Event Repeating"
|
7600 |
msgid "Events Manager (Recurring)"
|
7601 |
msgstr "Wiederholende Veranstaltung"
|
7602 |
|
7603 |
+
#: app/libraries/main.php:5462
|
7604 |
#, fuzzy
|
7605 |
#| msgid "Modern Events Calendar"
|
7606 |
msgid "Events Manager (Single)"
|
7607 |
msgstr "Moderner Event Kalender "
|
7608 |
|
7609 |
+
#: app/libraries/main.php:5536 app/libraries/main.php:5556
|
7610 |
msgid "Confirmed"
|
7611 |
msgstr "Bestätigt"
|
7612 |
|
7613 |
+
#: app/libraries/main.php:5537 app/libraries/main.php:5564
|
7614 |
msgid "Rejected"
|
7615 |
msgstr "Abgelehnt"
|
7616 |
|
7617 |
+
#: app/libraries/main.php:5538 app/libraries/main.php:5560
|
7618 |
msgid "Pending"
|
7619 |
msgstr "Ausstehend"
|
7620 |
|
7621 |
+
#: app/libraries/main.php:5586
|
7622 |
msgid "Waiting"
|
7623 |
msgstr "in Bearbeitung"
|
7624 |
|
7625 |
+
#: app/libraries/main.php:5791 app/libraries/render.php:80
|
7626 |
#: app/libraries/render.php:418
|
7627 |
msgid "Skin controller does not exist."
|
7628 |
msgstr "Skin contoller existiert nicht."
|
7629 |
|
7630 |
+
#: app/libraries/main.php:5905
|
7631 |
#, fuzzy
|
7632 |
#| msgid "Sold out!"
|
7633 |
msgid "Sold Out"
|
7634 |
msgstr "Ausverkauft!"
|
7635 |
|
7636 |
+
#: app/libraries/main.php:5913
|
7637 |
#, fuzzy
|
7638 |
#| msgid "Ticket"
|
7639 |
msgid "Last Few Tickets"
|
7647 |
msgid "Your booking is received."
|
7648 |
msgstr "Ihre Buchung ist eingegangen"
|
7649 |
|
7650 |
+
#: app/libraries/notifications.php:272
|
7651 |
msgid "Your booking is confirmed."
|
7652 |
msgstr "Ihre Buchung wurde bestätigt."
|
7653 |
|
7654 |
+
#: app/libraries/notifications.php:439
|
7655 |
#, fuzzy
|
7656 |
#| msgid "Your booking cannot be canceled."
|
7657 |
msgid "booking canceled."
|
7658 |
msgstr "Ihre Buchung kann nicht storniert werden."
|
7659 |
|
7660 |
+
#: app/libraries/notifications.php:514
|
7661 |
msgid "A new booking is received."
|
7662 |
msgstr "Eine neue Buchung ist eingegangen."
|
7663 |
|
7664 |
+
#: app/libraries/notifications.php:738
|
7665 |
msgid "A new event is added."
|
7666 |
msgstr "Eine neue Veranstaltung wurde hinzugefügt."
|
7667 |
|
7668 |
+
#: app/libraries/notifications.php:807
|
7669 |
#, fuzzy
|
7670 |
#| msgid "The event published."
|
7671 |
msgid "Your event is published."
|
7672 |
msgstr "Die Veranstaltung wurde veröffentlicht."
|
7673 |
|
7674 |
+
#: app/libraries/notifications.php:1043 app/libraries/notifications.php:1054
|
7675 |
+
#: app/libraries/notifications.php:1056
|
7676 |
msgid "to"
|
7677 |
msgstr ""
|
7678 |
|
7679 |
+
#: app/libraries/notifications.php:1071 app/modules/export/details.php:46
|
7680 |
msgid "+ Add to Google Calendar"
|
7681 |
msgstr "+ zum Google Calendar hinzufügen"
|
7682 |
|
7683 |
+
#: app/libraries/notifications.php:1072 app/modules/export/details.php:47
|
7684 |
msgid "+ iCal export"
|
7685 |
msgstr "+ zu iCal exportieren"
|
7686 |
|
7687 |
+
#: app/libraries/notifications.php:1135
|
7688 |
msgid "Yes"
|
7689 |
msgstr "Ja"
|
7690 |
|
7691 |
+
#: app/libraries/notifications.php:1135
|
7692 |
msgid "No"
|
7693 |
msgstr "Nein"
|
7694 |
|
7695 |
+
#: app/libraries/skins.php:1015
|
7696 |
#, fuzzy
|
7697 |
#| msgid "Select All"
|
7698 |
msgid "Select"
|
7724 |
msgid "Apply Coupon"
|
7725 |
msgstr "Gutschein verwenden"
|
7726 |
|
7727 |
+
#: app/modules/booking/steps/checkout.php:69
|
7728 |
#: app/modules/booking/steps/form.php:180
|
7729 |
msgid "Back"
|
7730 |
msgstr ""
|
7731 |
|
7732 |
+
#: app/modules/booking/steps/checkout.php:77
|
7733 |
msgid "Free Booking"
|
7734 |
msgstr "Kostenlose Buchung"
|
7735 |
|
7771 |
"Das% s Ticket ist ausverkauft. Sie können ein anderes Ticket oder ein "
|
7772 |
"anderes Datum ausprobieren."
|
7773 |
|
7774 |
+
#: app/modules/countdown/details.php:53
|
7775 |
msgid "The event is finished."
|
7776 |
msgstr "Das Event ist beendet"
|
7777 |
|
7778 |
+
#: app/modules/countdown/details.php:58
|
7779 |
msgid "The event is ongoing."
|
7780 |
msgstr "Die Veranstaltung ist im Gange."
|
7781 |
|
7782 |
+
#: app/modules/googlemap/details.php:125
|
7783 |
msgid "Address from ..."
|
7784 |
msgstr "Adresse von..."
|
7785 |
|
7786 |
+
#: app/modules/googlemap/details.php:129
|
7787 |
msgid "Get Directions"
|
7788 |
msgstr "Wegbeschreibung"
|
7789 |
|
7791 |
msgid "Share this event"
|
7792 |
msgstr "Diese Veranstaltung teilen"
|
7793 |
|
7794 |
+
#: app/modules/local-time/details.php:45
|
7795 |
#, php-format
|
7796 |
msgid "Timezone: %s"
|
7797 |
msgstr "Zeitzone: %s"
|
7798 |
|
7799 |
+
#: app/modules/local-time/details.php:46
|
7800 |
#, php-format
|
7801 |
msgid "Date: %s"
|
7802 |
msgstr "Datum: %s"
|
7803 |
|
7804 |
+
#: app/modules/local-time/details.php:48
|
7805 |
#, php-format
|
7806 |
msgid "Time: %s"
|
7807 |
msgstr "Zeit: %s"
|
7815 |
msgstr "Zum Event"
|
7816 |
|
7817 |
#: app/modules/next-event/details.php:98 app/skins/single.php:747
|
7818 |
+
#: app/skins/single/default.php:102 app/skins/single/default.php:325
|
7819 |
+
#: app/skins/single/m1.php:37 app/skins/single/modern.php:192
|
7820 |
msgid "Time"
|
7821 |
msgstr "Uhrzeit"
|
7822 |
|
7945 |
msgstr ""
|
7946 |
|
7947 |
#: app/skins/single.php:544 app/skins/single/default.php:51
|
7948 |
+
#: app/skins/single/m1.php:261 app/skins/single/m2.php:182
|
7949 |
+
#: app/skins/single/modern.php:270
|
7950 |
msgid "Sold out!"
|
7951 |
msgstr "Ausverkauft!"
|
7952 |
|
7953 |
#: app/skins/single.php:822 app/skins/single.php:877
|
7954 |
+
#: app/skins/single/default.php:227 app/skins/single/default.php:450
|
7955 |
#: app/skins/single/m1.php:109 app/skins/single/m2.php:35
|
7956 |
#: app/skins/single/modern.php:44
|
7957 |
msgid "Phone"
|
7958 |
msgstr "Phone"
|
7959 |
|
7960 |
#: app/skins/single.php:836 app/skins/single.php:891
|
7961 |
+
#: app/skins/single/default.php:241 app/skins/single/default.php:464
|
7962 |
#: app/skins/single/m1.php:123 app/skins/single/m2.php:49
|
7963 |
#: app/skins/single/modern.php:58
|
7964 |
msgid "Website"
|
7965 |
msgstr "Website"
|
7966 |
|
7967 |
+
#: app/skins/single.php:967
|
7968 |
#, fuzzy
|
7969 |
#| msgid "No Search Options"
|
7970 |
msgid "Speakers:"
|
7971 |
msgstr "Keine Suchoptionen"
|
7972 |
|
7973 |
+
#: app/skins/single/default.php:69 app/skins/single/m1.php:278
|
7974 |
+
#: app/skins/single/m2.php:199 app/skins/single/modern.php:288
|
7975 |
msgid "Tags: "
|
7976 |
msgstr "Tags:"
|
7977 |
|
8397 |
#~ msgid "Pay Locally"
|
8398 |
#~ msgstr "Vor Ort bezahlen"
|
8399 |
|
8400 |
+
#, fuzzy
|
8401 |
+
#~| msgid "Confirmation"
|
8402 |
+
#~ msgid "Disable Auto Confirmation"
|
8403 |
+
#~ msgstr "Bestätigung"
|
8404 |
+
|
8405 |
#~ msgid "PayPal Express"
|
8406 |
#~ msgstr "PayPal Express"
|
8407 |
|
8496 |
#~ msgid "Organizer Payment Credentials"
|
8497 |
#~ msgstr "Name des Veranstalters des gebuchten Events"
|
8498 |
|
8499 |
+
#~ msgid "All of the day"
|
8500 |
+
#~ msgstr "Den ganzen Tag"
|
8501 |
+
|
8502 |
#~ msgid "Booking reminder notification is not enabled!"
|
8503 |
#~ msgstr "Die Erinnerung für die Buchungserinnerung ist nicht aktiviert!"
|
8504 |
|
Binary file
|
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: modern-events-calendar\n"
|
4 |
-
"POT-Creation-Date: 2020-02-
|
5 |
-
"PO-Revision-Date: 2020-02-
|
6 |
"Last-Translator: Howard <howard@realtyna.com>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: en_US\n"
|
@@ -67,8 +67,8 @@ msgstr ""
|
|
67 |
msgid "Settings"
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: app/features/contextual.php:62 app/features/events.php:
|
71 |
-
#: app/features/mec/booking.php:
|
72 |
#: app/libraries/main.php:560
|
73 |
msgid "Booking Form"
|
74 |
msgstr ""
|
@@ -82,7 +82,7 @@ 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/support.php:36 app/libraries/main.php:561
|
87 |
msgid "Payment Gateways"
|
88 |
msgstr ""
|
@@ -187,12 +187,12 @@ msgstr ""
|
|
187 |
msgid "Google Recaptcha Options"
|
188 |
msgstr ""
|
189 |
|
190 |
-
#: app/features/contextual.php:258 app/features/mec/single.php:
|
191 |
#: app/libraries/main.php:548
|
192 |
msgid "Countdown Options"
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: app/features/contextual.php:268 app/features/mec/modules.php:
|
196 |
#: app/libraries/main.php:571
|
197 |
msgid "Social Networks"
|
198 |
msgstr ""
|
@@ -218,12 +218,12 @@ msgstr ""
|
|
218 |
msgid "Booking"
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: app/features/contextual.php:318 app/features/mec/booking.php:
|
222 |
#: app/libraries/main.php:557
|
223 |
msgid "Coupons"
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: app/features/contextual.php:326 app/features/mec/modules.php:
|
227 |
#: app/libraries/main.php:573
|
228 |
msgid "BuddyPress Integration"
|
229 |
msgstr ""
|
@@ -245,9 +245,9 @@ msgid "Events"
|
|
245 |
msgstr ""
|
246 |
|
247 |
#: app/features/events.php:158 app/features/fes.php:223
|
248 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
249 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
250 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
251 |
#: app/features/profile/profile.php:50 app/skins/daily_view/tpl.php:80
|
252 |
#: app/skins/monthly_view/tpl.php:71 app/skins/tile/tpl.php:70
|
253 |
#: app/skins/yearly_view/tpl.php:69
|
@@ -262,8 +262,9 @@ msgstr ""
|
|
262 |
msgid "Add New Event"
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: app/features/events.php:161 app/features/ix.php:
|
266 |
-
#: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:
|
|
|
267 |
msgid "No events found!"
|
268 |
msgstr ""
|
269 |
|
@@ -283,8 +284,8 @@ msgstr ""
|
|
283 |
msgid "No events found in Trash!"
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: app/features/events.php:182 app/features/events.php:
|
287 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
288 |
#: app/features/mec/meta_boxes/search_form.php:31
|
289 |
#: app/features/mec/meta_boxes/search_form.php:93
|
290 |
#: app/features/mec/meta_boxes/search_form.php:155
|
@@ -296,18 +297,18 @@ msgstr ""
|
|
296 |
#: app/features/mec/meta_boxes/search_form.php:514
|
297 |
#: app/features/mec/meta_boxes/search_form.php:575
|
298 |
#: app/features/mec/meta_boxes/search_form.php:672
|
299 |
-
#: app/features/mec/settings.php:808 app/features/mec/single.php:
|
300 |
-
#: app/features/search.php:68 app/libraries/main.php:
|
301 |
-
#: app/libraries/skins.php:
|
302 |
-
#: app/skins/single/default.php:192 app/skins/single/default.php:
|
303 |
-
#: app/skins/single/m1.php:
|
304 |
-
#: app/skins/single/modern.php:
|
305 |
msgid "Category"
|
306 |
msgstr ""
|
307 |
|
308 |
-
#: app/features/events.php:183 app/features/events.php:
|
309 |
#: app/features/fes/form.php:757 app/features/mec.php:403
|
310 |
-
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:
|
311 |
msgid "Categories"
|
312 |
msgstr ""
|
313 |
|
@@ -391,8 +392,8 @@ msgstr ""
|
|
391 |
msgid "Event Repeating"
|
392 |
msgstr ""
|
393 |
|
394 |
-
#: app/features/events.php:333 app/features/events.php:
|
395 |
-
#: app/features/mec/settings.php:718 app/skins/single.php:
|
396 |
msgid "Hourly Schedule"
|
397 |
msgstr ""
|
398 |
|
@@ -404,10 +405,10 @@ msgstr ""
|
|
404 |
msgid "Links"
|
405 |
msgstr ""
|
406 |
|
407 |
-
#: app/features/events.php:336 app/features/events.php:
|
408 |
-
#: app/features/events.php:
|
409 |
-
#: app/features/ix.php:
|
410 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
411 |
#: app/features/mec/meta_boxes/search_form.php:45
|
412 |
#: app/features/mec/meta_boxes/search_form.php:107
|
413 |
#: app/features/mec/meta_boxes/search_form.php:169
|
@@ -419,67 +420,67 @@ msgstr ""
|
|
419 |
#: app/features/mec/meta_boxes/search_form.php:528
|
420 |
#: app/features/mec/meta_boxes/search_form.php:589
|
421 |
#: app/features/mec/meta_boxes/search_form.php:686
|
422 |
-
#: app/features/mec/settings.php:820 app/features/mec/single.php:
|
423 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
424 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
425 |
#: app/features/organizers.php:271 app/features/search.php:78
|
426 |
-
#: app/libraries/main.php:
|
427 |
#: app/skins/single.php:812 app/skins/single/default.php:217
|
428 |
-
#: app/skins/single/default.php:
|
429 |
#: app/skins/single/m2.php:25 app/skins/single/modern.php:34
|
430 |
msgid "Organizer"
|
431 |
msgstr ""
|
432 |
|
433 |
-
#: app/features/events.php:337 app/features/events.php:
|
434 |
-
#: app/features/fes/form.php:730 app/libraries/main.php:
|
435 |
#: app/skins/single.php:589 app/skins/single/default.php:126
|
436 |
-
#: app/skins/single/default.php:
|
437 |
-
#: app/skins/single/modern.php:
|
438 |
msgid "Cost"
|
439 |
msgstr ""
|
440 |
|
441 |
-
#: app/features/events.php:
|
442 |
msgid "Note for reviewer"
|
443 |
msgstr ""
|
444 |
|
445 |
-
#: app/features/events.php:
|
446 |
msgid "Guest Data"
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: app/features/events.php:
|
450 |
-
#: app/features/events.php:
|
451 |
#: app/features/fes/form.php:689 app/features/labels.php:178
|
452 |
#: app/features/mec/booking.php:45 app/features/organizers.php:279
|
453 |
-
#: app/features/profile/profile.php:180 app/libraries/notifications.php:
|
454 |
#: app/modules/booking/steps/form.php:37
|
455 |
msgid "Name"
|
456 |
msgstr ""
|
457 |
|
458 |
-
#: app/features/events.php:
|
459 |
-
#: app/features/events.php:
|
460 |
#: app/features/fes.php:223 app/features/fes/form.php:685
|
461 |
-
#: app/features/mec/booking.php:57 app/features/mec/booking.php:
|
462 |
#: app/features/organizers.php:111 app/features/organizers.php:152
|
463 |
#: app/features/profile/profile.php:183 app/features/speakers.php:127
|
464 |
-
#: app/features/speakers.php:196 app/libraries/main.php:
|
465 |
-
#: app/libraries/main.php:
|
466 |
-
#: app/libraries/notifications.php:
|
467 |
#: app/modules/booking/steps/form.php:83 app/skins/single.php:829
|
468 |
#: app/skins/single.php:884 app/skins/single/default.php:234
|
469 |
-
#: app/skins/single/default.php:
|
470 |
#: app/skins/single/m2.php:42 app/skins/single/modern.php:51
|
471 |
msgid "Email"
|
472 |
msgstr ""
|
473 |
|
474 |
-
#: app/features/events.php:
|
475 |
msgid "Date and Time"
|
476 |
msgstr ""
|
477 |
|
478 |
-
#: app/features/events.php:
|
479 |
-
#: app/features/events.php:
|
480 |
-
#: app/features/events.php:
|
481 |
-
#: app/features/fes/form.php:251 app/features/ix.php:
|
482 |
-
#: app/features/ix.php:
|
483 |
#: app/features/mec/dashboard.php:401
|
484 |
#: app/features/mec/meta_boxes/display_options.php:49
|
485 |
#: app/features/mec/meta_boxes/display_options.php:229
|
@@ -488,77 +489,77 @@ msgstr ""
|
|
488 |
#: app/features/mec/meta_boxes/display_options.php:598
|
489 |
#: app/features/mec/meta_boxes/display_options.php:652
|
490 |
#: app/features/mec/meta_boxes/display_options.php:699
|
491 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
492 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
493 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
494 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
495 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
496 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
497 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
498 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
499 |
msgid "Start Date"
|
500 |
msgstr ""
|
501 |
|
502 |
-
#: app/features/events.php:
|
503 |
-
#: app/features/events.php:
|
504 |
-
#: app/features/events.php:
|
505 |
#: app/features/fes/form.php:279 app/features/fes/form.php:319
|
506 |
msgid "AM"
|
507 |
msgstr ""
|
508 |
|
509 |
-
#: app/features/events.php:
|
510 |
-
#: app/features/events.php:
|
511 |
-
#: app/features/events.php:
|
512 |
#: app/features/fes/form.php:280 app/features/fes/form.php:320
|
513 |
msgid "PM"
|
514 |
msgstr ""
|
515 |
|
516 |
-
#: app/features/events.php:
|
517 |
-
#: app/features/events.php:
|
518 |
-
#: app/features/events.php:
|
519 |
-
#: app/features/fes/form.php:291 app/features/ix.php:
|
520 |
-
#: app/features/ix.php:
|
521 |
#: app/features/mec/dashboard.php:402
|
522 |
msgid "End Date"
|
523 |
msgstr ""
|
524 |
|
525 |
-
#: app/features/events.php:
|
526 |
msgid "All Day Event"
|
527 |
msgstr ""
|
528 |
|
529 |
-
#: app/features/events.php:
|
530 |
msgid "Hide Event Time"
|
531 |
msgstr ""
|
532 |
|
533 |
-
#: app/features/events.php:
|
534 |
msgid "Hide Event End Time"
|
535 |
msgstr ""
|
536 |
|
537 |
-
#: app/features/events.php:
|
538 |
#: app/features/fes/form.php:336
|
539 |
msgid "Time Comment"
|
540 |
msgstr ""
|
541 |
|
542 |
-
#: app/features/events.php:
|
543 |
msgid ""
|
544 |
"It shows next to event time on single event page. You can insert Timezone "
|
545 |
"etc. in this field."
|
546 |
msgstr ""
|
547 |
|
548 |
-
#: app/features/events.php:
|
549 |
-
#: app/features/events.php:
|
550 |
-
#: app/features/events.php:
|
551 |
-
#: app/features/events.php:
|
552 |
-
#: app/features/events.php:
|
553 |
-
#: app/features/events.php:
|
554 |
-
#: app/features/events.php:
|
555 |
-
#: app/features/events.php:
|
556 |
-
#: app/features/fes/form.php:641 app/features/locations.php:
|
557 |
#: app/features/mec/booking.php:108 app/features/mec/booking.php:158
|
558 |
#: app/features/mec/booking.php:171 app/features/mec/booking.php:187
|
559 |
-
#: app/features/mec/booking.php:
|
560 |
-
#: app/features/mec/booking.php:
|
561 |
-
#: app/features/mec/booking.php:
|
562 |
#: app/features/mec/dashboard.php:71
|
563 |
#: app/features/mec/meta_boxes/display_options.php:80
|
564 |
#: app/features/mec/meta_boxes/display_options.php:93
|
@@ -574,27 +575,27 @@ msgstr ""
|
|
574 |
#: app/features/mec/meta_boxes/display_options.php:332
|
575 |
#: app/features/mec/meta_boxes/display_options.php:439
|
576 |
#: app/features/mec/meta_boxes/display_options.php:615
|
577 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
578 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
579 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
580 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
581 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
582 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
583 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
584 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
585 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
586 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
587 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
588 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
589 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
590 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
591 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
592 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
593 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
594 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
595 |
#: app/features/mec/modules.php:53 app/features/mec/modules.php:86
|
596 |
#: app/features/mec/modules.php:103 app/features/mec/modules.php:138
|
597 |
-
#: app/features/mec/modules.php:154 app/features/mec/modules.php:
|
598 |
#: app/features/mec/notifications.php:88 app/features/mec/notifications.php:185
|
599 |
#: app/features/mec/notifications.php:277
|
600 |
#: app/features/mec/notifications.php:380
|
@@ -615,471 +616,471 @@ msgstr ""
|
|
615 |
#: app/features/mec/settings.php:899 app/features/mec/single.php:42
|
616 |
#: app/features/mec/single.php:58 app/features/mec/single.php:77
|
617 |
#: app/features/mec/single.php:94 app/features/mec/single.php:110
|
618 |
-
#: app/features/mec/single.php:
|
619 |
#: app/features/mec/styling.php:203 app/features/mec/styling.php:220
|
620 |
#: app/features/mec/styling.php:233 app/features/organizers.php:272
|
621 |
#: app/skins/single.php:674 app/skins/single/default.php:141
|
622 |
-
#: app/skins/single/default.php:
|
623 |
-
#: app/skins/single/m2.php:
|
624 |
msgid "Read More"
|
625 |
msgstr ""
|
626 |
|
627 |
-
#: app/features/events.php:
|
628 |
msgid "Repeating"
|
629 |
msgstr ""
|
630 |
|
631 |
-
#: app/features/events.php:
|
632 |
msgid "Event Repeating (Recurring events)"
|
633 |
msgstr ""
|
634 |
|
635 |
-
#: app/features/events.php:
|
636 |
msgid "Repeats"
|
637 |
msgstr ""
|
638 |
|
639 |
-
#: app/features/events.php:
|
640 |
#: app/features/mec/dashboard.php:404
|
641 |
#: app/skins/default_full_calendar/tpl.php:69
|
642 |
#: app/skins/full_calendar/tpl.php:110
|
643 |
msgid "Daily"
|
644 |
msgstr ""
|
645 |
|
646 |
-
#: app/features/events.php:
|
647 |
msgid "Every Weekday"
|
648 |
msgstr ""
|
649 |
|
650 |
-
#: app/features/events.php:
|
651 |
msgid "Every Weekend"
|
652 |
msgstr ""
|
653 |
|
654 |
-
#: app/features/events.php:
|
655 |
msgid "Certain Weekdays"
|
656 |
msgstr ""
|
657 |
|
658 |
-
#: app/features/events.php:
|
659 |
#: app/skins/default_full_calendar/tpl.php:68
|
660 |
#: app/skins/full_calendar/tpl.php:109
|
661 |
msgid "Weekly"
|
662 |
msgstr ""
|
663 |
|
664 |
-
#: app/features/events.php:
|
665 |
#: app/features/mec/dashboard.php:405
|
666 |
#: app/skins/default_full_calendar/tpl.php:67
|
667 |
#: app/skins/full_calendar/tpl.php:108
|
668 |
msgid "Monthly"
|
669 |
msgstr ""
|
670 |
|
671 |
-
#: app/features/events.php:
|
672 |
#: app/features/mec/dashboard.php:406
|
673 |
#: app/skins/default_full_calendar/tpl.php:66
|
674 |
#: app/skins/full_calendar/tpl.php:107
|
675 |
msgid "Yearly"
|
676 |
msgstr ""
|
677 |
|
678 |
-
#: app/features/events.php:
|
679 |
msgid "Custom Days"
|
680 |
msgstr ""
|
681 |
|
682 |
-
#: app/features/events.php:
|
683 |
msgid "Advanced"
|
684 |
msgstr ""
|
685 |
|
686 |
-
#: app/features/events.php:
|
687 |
msgid "Repeat Interval"
|
688 |
msgstr ""
|
689 |
|
690 |
-
#: app/features/events.php:
|
691 |
msgid "Repeat interval"
|
692 |
msgstr ""
|
693 |
|
694 |
-
#: app/features/events.php:
|
695 |
msgid "Week Days"
|
696 |
msgstr ""
|
697 |
|
698 |
-
#: app/features/events.php:
|
699 |
-
#: app/features/events.php:
|
700 |
#: app/features/fes/form.php:377 app/features/ix/import_f_calendar.php:42
|
701 |
#: app/features/ix/import_g_calendar.php:51
|
702 |
#: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
|
703 |
msgid "Start"
|
704 |
msgstr ""
|
705 |
|
706 |
-
#: app/features/events.php:
|
707 |
-
#: app/features/events.php:
|
708 |
#: app/features/fes/form.php:378
|
709 |
msgid "End"
|
710 |
msgstr ""
|
711 |
|
712 |
-
#: app/features/events.php:
|
713 |
-
#: app/features/events.php:
|
714 |
-
#: app/features/events.php:
|
715 |
-
#: app/features/events.php:
|
716 |
#: app/features/fes/form.php:379 app/features/fes/form.php:855
|
717 |
msgid "Add"
|
718 |
msgstr ""
|
719 |
|
720 |
-
#: app/features/events.php:
|
721 |
msgid "Custom Days Repeating"
|
722 |
msgstr ""
|
723 |
|
724 |
-
#: app/features/events.php:
|
725 |
msgid ""
|
726 |
"Add certain days to event occurrence dates. If you have single day event, "
|
727 |
"start and end date should be the same, If you have multiple day event the "
|
728 |
"start and end dates must be commensurate with the initial date."
|
729 |
msgstr ""
|
730 |
|
731 |
-
#: app/features/events.php:
|
732 |
msgid "First"
|
733 |
msgstr ""
|
734 |
|
735 |
-
#: app/features/events.php:
|
736 |
msgid "Second"
|
737 |
msgstr ""
|
738 |
|
739 |
-
#: app/features/events.php:
|
740 |
msgid "Third"
|
741 |
msgstr ""
|
742 |
|
743 |
-
#: app/features/events.php:
|
744 |
msgid "Fourth"
|
745 |
msgstr ""
|
746 |
|
747 |
-
#: app/features/events.php:
|
748 |
msgid "Last"
|
749 |
msgstr ""
|
750 |
|
751 |
-
#: app/features/events.php:
|
752 |
msgid "Ends Repeat"
|
753 |
msgstr ""
|
754 |
|
755 |
-
#: app/features/events.php:
|
756 |
msgid "Never"
|
757 |
msgstr ""
|
758 |
|
759 |
-
#: app/features/events.php:
|
760 |
msgid "On"
|
761 |
msgstr ""
|
762 |
|
763 |
-
#: app/features/events.php:
|
764 |
msgid "After"
|
765 |
msgstr ""
|
766 |
|
767 |
-
#: app/features/events.php:
|
768 |
#: app/features/fes/form.php:637 app/features/fes/form.php:640
|
769 |
msgid "Occurrences times"
|
770 |
msgstr ""
|
771 |
|
772 |
-
#: app/features/events.php:
|
773 |
msgid ""
|
774 |
"The event will finish after certain repeats. For example if you set it to "
|
775 |
"10, the event will finish after 10 repeats."
|
776 |
msgstr ""
|
777 |
|
778 |
-
#: app/features/events.php:
|
779 |
msgid "Show only one occurrence of this event"
|
780 |
msgstr ""
|
781 |
|
782 |
-
#: app/features/events.php:
|
783 |
-
#: app/features/events.php:
|
784 |
-
#: app/features/ix.php:
|
785 |
-
#: app/features/mec/settings.php:664 app/libraries/main.php:
|
786 |
#: app/widgets/single.php:103
|
787 |
msgid "Event Cost"
|
788 |
msgstr ""
|
789 |
|
790 |
-
#: app/features/events.php:
|
791 |
msgid "Exceptional Days (Exclude Dates)"
|
792 |
msgstr ""
|
793 |
|
794 |
-
#: app/features/events.php:
|
795 |
msgid "Exclude certain days"
|
796 |
msgstr ""
|
797 |
|
798 |
-
#: app/features/events.php:
|
799 |
-
#: app/features/fes.php:223 app/features/mec/booking.php:
|
800 |
-
#: app/features/profile/profile.php:53 app/libraries/main.php:
|
801 |
-
#: app/libraries/main.php:
|
802 |
#: app/modules/next-event/details.php:93 app/skins/single.php:648
|
803 |
-
#: app/skins/single/default.php:85 app/skins/single/default.php:
|
804 |
-
#: app/skins/single/m1.php:20 app/skins/single/modern.php:
|
805 |
msgid "Date"
|
806 |
msgstr ""
|
807 |
|
808 |
-
#: app/features/events.php:
|
809 |
msgid ""
|
810 |
"Exclude certain days from event occurrence dates. Please note that you can "
|
811 |
"exclude only single day occurrences and you cannot exclude one day from "
|
812 |
"multiple day occurrences."
|
813 |
msgstr ""
|
814 |
|
815 |
-
#: app/features/events.php:
|
816 |
msgid "Day 1"
|
817 |
msgstr ""
|
818 |
|
819 |
-
#: app/features/events.php:
|
820 |
msgid "Add Day"
|
821 |
msgstr ""
|
822 |
|
823 |
-
#: app/features/events.php:
|
824 |
msgid ""
|
825 |
"Add new days for schedule. For example if your event is multiple days, you "
|
826 |
"can add a different schedule for each day!"
|
827 |
msgstr ""
|
828 |
|
829 |
-
#: app/features/events.php:
|
830 |
#, php-format
|
831 |
msgid "Day %s"
|
832 |
msgstr ""
|
833 |
|
834 |
-
#: app/features/events.php:
|
835 |
-
#: app/features/events.php:
|
836 |
-
#: app/features/events.php:
|
837 |
-
#: app/features/events.php:
|
838 |
-
#: app/features/events.php:
|
839 |
-
#: app/features/fes/form.php:236 app/features/ix.php:
|
840 |
-
#: app/features/ix.php:
|
841 |
-
#: app/features/mec/booking.php:
|
842 |
msgid "Title"
|
843 |
msgstr ""
|
844 |
|
845 |
-
#: app/features/events.php:
|
846 |
-
#: app/features/events.php:
|
847 |
-
#: app/features/events.php:
|
848 |
-
#: app/features/events.php:
|
849 |
-
#: app/features/events.php:
|
850 |
-
#: app/features/events.php:
|
851 |
-
#: app/features/mec/booking.php:
|
852 |
-
#: app/features/mec/booking.php:
|
853 |
-
#: app/libraries/main.php:
|
854 |
-
#: app/libraries/main.php:
|
855 |
-
#: app/libraries/main.php:
|
856 |
-
#: app/libraries/main.php:
|
857 |
-
#: app/libraries/main.php:
|
858 |
-
#: app/libraries/main.php:
|
859 |
-
#: app/libraries/main.php:
|
860 |
msgid "Remove"
|
861 |
msgstr ""
|
862 |
|
863 |
-
#: app/features/events.php:
|
864 |
msgid "Add new hourly schedule row"
|
865 |
msgstr ""
|
866 |
|
867 |
-
#: app/features/events.php:
|
868 |
-
#: app/features/events.php:
|
869 |
msgid "From e.g. 8:15"
|
870 |
msgstr ""
|
871 |
|
872 |
-
#: app/features/events.php:
|
873 |
-
#: app/features/events.php:
|
874 |
msgid "To e.g. 8:45"
|
875 |
msgstr ""
|
876 |
|
877 |
-
#: app/features/events.php:
|
878 |
-
#: app/features/events.php:
|
879 |
-
#: app/features/events.php:
|
880 |
msgid "Description"
|
881 |
msgstr ""
|
882 |
|
883 |
-
#: app/features/events.php:
|
884 |
-
#: app/features/events.php:
|
885 |
#: app/features/mec.php:411 app/features/mec/modules.php:52
|
886 |
#: app/features/mec/settings.php:712 app/features/speakers.php:62
|
887 |
-
#: app/libraries/main.php:565 app/libraries/main.php:
|
888 |
#: app/modules/speakers/details.php:18
|
889 |
msgid "Speakers"
|
890 |
msgstr ""
|
891 |
|
892 |
-
#: app/features/events.php:
|
893 |
msgid "New Day"
|
894 |
msgstr ""
|
895 |
|
896 |
-
#: app/features/events.php:
|
897 |
#: app/features/mec/settings.php:658
|
898 |
msgid "Event Links"
|
899 |
msgstr ""
|
900 |
|
901 |
-
#: app/features/events.php:
|
902 |
-
#: app/features/fes/form.php:706 app/libraries/main.php:
|
903 |
msgid "Event Link"
|
904 |
msgstr ""
|
905 |
|
906 |
-
#: app/features/events.php:
|
907 |
#: app/features/fes/form.php:707 app/features/fes/form.php:712
|
908 |
msgid "eg. http://yoursite.com/your-event"
|
909 |
msgstr ""
|
910 |
|
911 |
-
#: app/features/events.php:
|
912 |
msgid ""
|
913 |
"If you fill it, it will be replaced instead of default event page link. "
|
914 |
"Insert full link including http(s):// - Also, if you use advertising URL, "
|
915 |
"can use URL Shortener"
|
916 |
msgstr ""
|
917 |
|
918 |
-
#: app/features/events.php:
|
919 |
msgid "URL Shortener"
|
920 |
msgstr ""
|
921 |
|
922 |
-
#: app/features/events.php:
|
923 |
-
#: app/features/fes/form.php:711 app/libraries/main.php:
|
924 |
#: app/skins/single.php:673 app/skins/single/default.php:140
|
925 |
-
#: app/skins/single/default.php:
|
926 |
-
#: app/skins/single/m2.php:
|
927 |
#: app/widgets/single.php:107
|
928 |
msgid "More Info"
|
929 |
msgstr ""
|
930 |
|
931 |
-
#: app/features/events.php:
|
932 |
msgid "More Information"
|
933 |
msgstr ""
|
934 |
|
935 |
-
#: app/features/events.php:
|
936 |
msgid "Current Window"
|
937 |
msgstr ""
|
938 |
|
939 |
-
#: app/features/events.php:
|
940 |
msgid "New Window"
|
941 |
msgstr ""
|
942 |
|
943 |
-
#: app/features/events.php:
|
944 |
msgid ""
|
945 |
"If you fill it, it will be shown in event details page as an optional link. "
|
946 |
"Insert full link including http(s)://"
|
947 |
msgstr ""
|
948 |
|
949 |
-
#: app/features/events.php:
|
950 |
msgid "Total booking limits"
|
951 |
msgstr ""
|
952 |
|
953 |
-
#: app/features/events.php:
|
954 |
-
#: app/features/events.php:
|
955 |
#: app/modules/booking/steps/tickets.php:40
|
956 |
#: app/skins/available_spot/tpl.php:158
|
957 |
msgid "Unlimited"
|
958 |
msgstr ""
|
959 |
|
960 |
-
#: app/features/events.php:
|
961 |
msgid ""
|
962 |
"If you want to set a limit to all tickets, uncheck this checkbox and put a "
|
963 |
"limitation number."
|
964 |
msgstr ""
|
965 |
|
966 |
-
#: app/features/events.php:
|
967 |
msgid "Read About A Booking System"
|
968 |
msgstr ""
|
969 |
|
970 |
-
#: app/features/events.php:
|
971 |
msgid "100"
|
972 |
msgstr ""
|
973 |
|
974 |
-
#: app/features/events.php:
|
975 |
msgid "Total user booking limits"
|
976 |
msgstr ""
|
977 |
|
978 |
-
#: app/features/events.php:
|
979 |
-
#: app/features/events.php:
|
980 |
msgid "Inherit from global options"
|
981 |
msgstr ""
|
982 |
|
983 |
-
#: app/features/events.php:
|
984 |
msgid "12"
|
985 |
msgstr ""
|
986 |
|
987 |
-
#: app/features/events.php:
|
988 |
-
#: app/libraries/main.php:
|
989 |
msgid "Tickets"
|
990 |
msgstr ""
|
991 |
|
992 |
-
#: app/features/events.php:
|
993 |
msgid ""
|
994 |
"You're translating an event so MEC will use the original event for tickets "
|
995 |
"and booking. You can only translate the ticket name and description. Please "
|
996 |
"define exact tickets that you defined in the original event here."
|
997 |
msgstr ""
|
998 |
|
999 |
-
#: app/features/events.php:
|
1000 |
msgid "Add Ticket"
|
1001 |
msgstr ""
|
1002 |
|
1003 |
-
#: app/features/events.php:
|
1004 |
msgid "Ticket Name"
|
1005 |
msgstr ""
|
1006 |
|
1007 |
-
#: app/features/events.php:
|
1008 |
-
#: app/features/events.php:
|
1009 |
-
#: app/features/ix.php:
|
1010 |
msgid "Start Time"
|
1011 |
msgstr ""
|
1012 |
|
1013 |
-
#: app/features/events.php:
|
1014 |
-
#: app/features/events.php:
|
1015 |
-
#: app/features/ix.php:
|
1016 |
msgid "End Time"
|
1017 |
msgstr ""
|
1018 |
|
1019 |
-
#: app/features/events.php:
|
1020 |
-
#: app/features/events.php:
|
1021 |
-
#: app/features/events.php:
|
1022 |
-
#: app/features/events.php:
|
1023 |
-
#: app/features/events.php:
|
1024 |
-
#: app/features/events.php:
|
1025 |
-
#: app/features/mec/booking.php:
|
1026 |
-
#: app/features/mec/booking.php:
|
1027 |
msgid "Price"
|
1028 |
msgstr ""
|
1029 |
|
1030 |
-
#: app/features/events.php:
|
1031 |
msgid "Insert 0 for free ticket. Only numbers please."
|
1032 |
msgstr ""
|
1033 |
|
1034 |
-
#: app/features/events.php:
|
1035 |
-
#: app/features/events.php:
|
1036 |
msgid "Price Label"
|
1037 |
msgstr ""
|
1038 |
|
1039 |
-
#: app/features/events.php:
|
1040 |
msgid "For showing on website. e.g. $15"
|
1041 |
msgstr ""
|
1042 |
|
1043 |
-
#: app/features/events.php:
|
1044 |
msgid "Available Tickets"
|
1045 |
msgstr ""
|
1046 |
|
1047 |
-
#: app/features/events.php:
|
1048 |
msgid "Minimum Ticket e.g. 3"
|
1049 |
msgstr ""
|
1050 |
|
1051 |
-
#: app/features/events.php:
|
1052 |
msgid "MinimumTicket"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
-
#: app/features/events.php:
|
1056 |
msgid "Set a number for the minimum ticket reservation"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
-
#: app/features/events.php:
|
1060 |
msgid "e.g. 0"
|
1061 |
msgstr ""
|
1062 |
|
1063 |
-
#: app/features/events.php:
|
1064 |
msgid "Day"
|
1065 |
msgstr ""
|
1066 |
|
1067 |
-
#: app/features/events.php:
|
1068 |
msgid "Hour"
|
1069 |
msgstr ""
|
1070 |
|
1071 |
-
#: app/features/events.php:
|
1072 |
#, php-format
|
1073 |
msgid "Stop selling ticket %s before event start."
|
1074 |
msgstr ""
|
1075 |
|
1076 |
-
#: app/features/events.php:
|
1077 |
msgid "Price per Date"
|
1078 |
msgstr ""
|
1079 |
|
1080 |
-
#: app/features/events.php:
|
1081 |
-
#: app/features/events.php:
|
1082 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1083 |
#: app/features/mec/meta_boxes/search_form.php:66
|
1084 |
#: app/features/mec/meta_boxes/search_form.php:128
|
1085 |
#: app/features/mec/meta_boxes/search_form.php:190
|
@@ -1091,113 +1092,113 @@ msgstr ""
|
|
1091 |
#: app/features/mec/meta_boxes/search_form.php:549
|
1092 |
#: app/features/mec/meta_boxes/search_form.php:610
|
1093 |
#: app/features/mec/meta_boxes/search_form.php:707
|
1094 |
-
#: app/features/mec/settings.php:840 app/features/mec/single.php:
|
1095 |
-
#: app/libraries/skins.php:
|
1096 |
msgid "Label"
|
1097 |
msgstr ""
|
1098 |
|
1099 |
-
#: app/features/events.php:
|
1100 |
msgid "Fees"
|
1101 |
msgstr ""
|
1102 |
|
1103 |
-
#: app/features/events.php:
|
1104 |
-
#: app/features/mec/booking.php:
|
1105 |
msgid "Fee Title"
|
1106 |
msgstr ""
|
1107 |
|
1108 |
-
#: app/features/events.php:
|
1109 |
-
#: app/features/events.php:
|
1110 |
-
#: app/features/mec/booking.php:
|
1111 |
-
#: app/features/mec/booking.php:
|
1112 |
msgid "Amount"
|
1113 |
msgstr ""
|
1114 |
|
1115 |
-
#: app/features/events.php:
|
1116 |
-
#: app/features/mec/booking.php:
|
1117 |
msgid ""
|
1118 |
"Fee amount, considered as fixed amount if you set the type to amount "
|
1119 |
"otherwise considered as percentage"
|
1120 |
msgstr ""
|
1121 |
|
1122 |
-
#: app/features/events.php:
|
1123 |
-
#: app/features/mec/booking.php:
|
1124 |
msgid "Percent"
|
1125 |
msgstr ""
|
1126 |
|
1127 |
-
#: app/features/events.php:
|
1128 |
-
#: app/features/mec/booking.php:
|
1129 |
msgid "Amount (Per Ticket)"
|
1130 |
msgstr ""
|
1131 |
|
1132 |
-
#: app/features/events.php:
|
1133 |
-
#: app/features/mec/booking.php:
|
1134 |
msgid "Amount (Per Booking)"
|
1135 |
msgstr ""
|
1136 |
|
1137 |
-
#: app/features/events.php:
|
1138 |
msgid "Ticket Variations / Options"
|
1139 |
msgstr ""
|
1140 |
|
1141 |
-
#: app/features/events.php:
|
1142 |
-
#: app/features/mec/booking.php:
|
1143 |
msgid "Option Price"
|
1144 |
msgstr ""
|
1145 |
|
1146 |
-
#: app/features/events.php:
|
1147 |
-
#: app/features/events.php:
|
1148 |
-
#: app/features/mec/booking.php:
|
1149 |
-
#: app/features/mec/booking.php:
|
1150 |
msgid "Maximum Per Ticket"
|
1151 |
msgstr ""
|
1152 |
|
1153 |
-
#: app/features/events.php:
|
1154 |
-
#: app/features/mec/booking.php:
|
1155 |
msgid "Maximum Per Ticket. Leave it blank for unlimited."
|
1156 |
msgstr ""
|
1157 |
|
1158 |
-
#: app/features/events.php:
|
1159 |
-
#: app/libraries/main.php:
|
1160 |
msgid "MEC Name"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
-
#: app/features/events.php:
|
1164 |
-
#: app/libraries/main.php:
|
1165 |
msgid "MEC Email"
|
1166 |
msgstr ""
|
1167 |
|
1168 |
-
#: app/features/events.php:
|
1169 |
-
#: app/libraries/main.php:
|
1170 |
msgid "Text"
|
1171 |
msgstr ""
|
1172 |
|
1173 |
-
#: app/features/events.php:
|
1174 |
#: app/features/organizers.php:103 app/features/organizers.php:148
|
1175 |
#: app/features/speakers.php:119 app/features/speakers.php:192
|
1176 |
-
#: app/features/speakers.php:271 app/libraries/main.php:
|
1177 |
msgid "Tel"
|
1178 |
msgstr ""
|
1179 |
|
1180 |
-
#: app/features/events.php:
|
1181 |
-
#: app/libraries/main.php:
|
1182 |
msgid "File"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
-
#: app/features/events.php:
|
1186 |
-
#: app/libraries/main.php:
|
1187 |
msgid "Textarea"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
-
#: app/features/events.php:
|
1191 |
-
#: app/libraries/main.php:
|
1192 |
msgid "Checkboxes"
|
1193 |
msgstr ""
|
1194 |
|
1195 |
-
#: app/features/events.php:
|
1196 |
-
#: app/libraries/main.php:
|
1197 |
msgid "Radio Buttons"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
-
#: app/features/events.php:
|
1201 |
#: app/features/mec/meta_boxes/search_form.php:34
|
1202 |
#: app/features/mec/meta_boxes/search_form.php:41
|
1203 |
#: app/features/mec/meta_boxes/search_form.php:48
|
@@ -1273,48 +1274,48 @@ msgstr ""
|
|
1273 |
#: app/features/mec/meta_boxes/search_form.php:696
|
1274 |
#: app/features/mec/meta_boxes/search_form.php:703
|
1275 |
#: app/features/mec/meta_boxes/search_form.php:710
|
1276 |
-
#: app/features/mec/meta_boxes/search_form.php:717 app/libraries/main.php:
|
1277 |
msgid "Dropdown"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
-
#: app/features/events.php:
|
1281 |
-
#: app/libraries/main.php:
|
1282 |
msgid "Agreement"
|
1283 |
msgstr ""
|
1284 |
|
1285 |
-
#: app/features/events.php:
|
1286 |
-
#: app/libraries/main.php:
|
1287 |
msgid "Paragraph"
|
1288 |
msgstr ""
|
1289 |
|
1290 |
-
#: app/features/events.php:
|
1291 |
-
#: app/features/events.php:
|
1292 |
#, php-format
|
1293 |
msgid "Show all %s"
|
1294 |
msgstr ""
|
1295 |
|
1296 |
-
#: app/features/events.php:
|
1297 |
msgid "labels"
|
1298 |
msgstr ""
|
1299 |
|
1300 |
-
#: app/features/events.php:
|
1301 |
msgid "locations"
|
1302 |
msgstr ""
|
1303 |
|
1304 |
-
#: app/features/events.php:
|
1305 |
msgid "organizers"
|
1306 |
msgstr ""
|
1307 |
|
1308 |
-
#: app/features/events.php:
|
1309 |
msgid "Attendees List"
|
1310 |
msgstr ""
|
1311 |
|
1312 |
-
#: app/features/events.php:
|
1313 |
-
#: app/features/events.php:
|
1314 |
-
#: app/features/ix.php:
|
1315 |
-
#: app/features/locations.php:
|
1316 |
-
#: app/features/locations.php:
|
1317 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1318 |
#: app/features/mec/meta_boxes/search_form.php:38
|
1319 |
#: app/features/mec/meta_boxes/search_form.php:100
|
1320 |
#: app/features/mec/meta_boxes/search_form.php:162
|
@@ -1326,86 +1327,86 @@ msgstr ""
|
|
1326 |
#: app/features/mec/meta_boxes/search_form.php:521
|
1327 |
#: app/features/mec/meta_boxes/search_form.php:582
|
1328 |
#: app/features/mec/meta_boxes/search_form.php:679
|
1329 |
-
#: app/features/mec/settings.php:814 app/features/mec/single.php:
|
1330 |
-
#: app/features/search.php:73 app/libraries/main.php:
|
1331 |
-
#: app/libraries/main.php:
|
1332 |
-
#: app/skins/single.php:493 app/skins/single.php:
|
1333 |
-
#: app/skins/single/default.php:176 app/skins/single/default.php:
|
1334 |
-
#: app/skins/single/m1.php:
|
1335 |
-
#: app/skins/single/modern.php:
|
1336 |
msgid "Location"
|
1337 |
msgstr ""
|
1338 |
|
1339 |
-
#: app/features/events.php:
|
1340 |
msgid "Repeat"
|
1341 |
msgstr ""
|
1342 |
|
1343 |
-
#: app/features/events.php:
|
1344 |
msgid "Author"
|
1345 |
msgstr ""
|
1346 |
|
1347 |
-
#: app/features/events.php:
|
1348 |
msgid "iCal Export"
|
1349 |
msgstr ""
|
1350 |
|
1351 |
-
#: app/features/events.php:
|
1352 |
msgid "CSV Export"
|
1353 |
msgstr ""
|
1354 |
|
1355 |
-
#: app/features/events.php:
|
1356 |
msgid "MS Excel Export"
|
1357 |
msgstr ""
|
1358 |
|
1359 |
-
#: app/features/events.php:
|
1360 |
msgid "XML Export"
|
1361 |
msgstr ""
|
1362 |
|
1363 |
-
#: app/features/events.php:
|
1364 |
msgid "JSON Export"
|
1365 |
msgstr ""
|
1366 |
|
1367 |
-
#: app/features/events.php:
|
1368 |
-
#: app/features/events.php:
|
1369 |
msgid "Duplicate"
|
1370 |
msgstr ""
|
1371 |
|
1372 |
-
#: app/features/events.php:
|
1373 |
-
#: app/features/fes.php:223 app/features/ix.php:
|
1374 |
-
#: app/features/labels.php:177 app/features/locations.php:
|
1375 |
#: app/features/organizers.php:203 app/features/speakers.php:268
|
1376 |
msgid "ID"
|
1377 |
msgstr ""
|
1378 |
|
1379 |
-
#: app/features/events.php:
|
1380 |
-
#: app/features/ix.php:
|
1381 |
msgid "Link"
|
1382 |
msgstr ""
|
1383 |
|
1384 |
-
#: app/features/events.php:
|
1385 |
#, php-format
|
1386 |
msgid "%s Tel"
|
1387 |
msgstr ""
|
1388 |
|
1389 |
-
#: app/features/events.php:
|
1390 |
#, php-format
|
1391 |
msgid "%s Email"
|
1392 |
msgstr ""
|
1393 |
|
1394 |
-
#: app/features/events.php:
|
1395 |
-
#: app/features/profile/profile.php:186 app/libraries/main.php:
|
1396 |
-
#: app/libraries/main.php:
|
1397 |
msgid "Ticket"
|
1398 |
msgstr ""
|
1399 |
|
1400 |
-
#: app/features/events.php:
|
1401 |
msgid "Variations"
|
1402 |
msgstr ""
|
1403 |
|
1404 |
-
#: app/features/events.php:
|
1405 |
msgid "Unknown"
|
1406 |
msgstr ""
|
1407 |
|
1408 |
-
#: app/features/events.php:
|
1409 |
msgid "No Attendees Found!"
|
1410 |
msgstr ""
|
1411 |
|
@@ -1439,7 +1440,7 @@ msgstr ""
|
|
1439 |
msgid "The event removed!"
|
1440 |
msgstr ""
|
1441 |
|
1442 |
-
#: app/features/fes.php:223 app/libraries/main.php:
|
1443 |
msgid "Transaction ID"
|
1444 |
msgstr ""
|
1445 |
|
@@ -1484,43 +1485,43 @@ msgid "Go back to events list"
|
|
1484 |
msgstr ""
|
1485 |
|
1486 |
#: app/features/fes/form.php:366
|
1487 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1488 |
#: app/libraries/main.php:410
|
1489 |
msgid "Monday"
|
1490 |
msgstr ""
|
1491 |
|
1492 |
#: app/features/fes/form.php:367
|
1493 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1494 |
#: app/libraries/main.php:410
|
1495 |
msgid "Tuesday"
|
1496 |
msgstr ""
|
1497 |
|
1498 |
#: app/features/fes/form.php:368
|
1499 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1500 |
#: app/libraries/main.php:410
|
1501 |
msgid "Wednesday"
|
1502 |
msgstr ""
|
1503 |
|
1504 |
#: app/features/fes/form.php:369
|
1505 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1506 |
#: app/libraries/main.php:410
|
1507 |
msgid "Thursday"
|
1508 |
msgstr ""
|
1509 |
|
1510 |
#: app/features/fes/form.php:370
|
1511 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1512 |
#: app/libraries/main.php:410
|
1513 |
msgid "Friday"
|
1514 |
msgstr ""
|
1515 |
|
1516 |
#: app/features/fes/form.php:371
|
1517 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1518 |
#: app/libraries/main.php:410
|
1519 |
msgid "Saturday"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
#: app/features/fes/form.php:372
|
1523 |
-
#: app/features/mec/meta_boxes/display_options.php:
|
1524 |
#: app/libraries/main.php:410
|
1525 |
msgid "Sunday"
|
1526 |
msgstr ""
|
@@ -1561,10 +1562,10 @@ msgstr ""
|
|
1561 |
|
1562 |
#: app/features/fes/form.php:783 app/features/labels.php:61
|
1563 |
#: app/features/labels.php:221 app/features/mec.php:404
|
1564 |
-
#: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:
|
1565 |
#: app/skins/single.php:702 app/skins/single/default.php:155
|
1566 |
-
#: app/skins/single/default.php:
|
1567 |
-
#: app/skins/single/modern.php:
|
1568 |
msgid "Labels"
|
1569 |
msgstr ""
|
1570 |
|
@@ -1647,7 +1648,7 @@ msgstr ""
|
|
1647 |
msgid "Both of API key and Calendar ID are required!"
|
1648 |
msgstr ""
|
1649 |
|
1650 |
-
#: app/features/ix.php:2770 app/features/ix.php:3189 app/features/ix.php:
|
1651 |
msgid "Please select some events to import!"
|
1652 |
msgstr ""
|
1653 |
|
@@ -1659,57 +1660,57 @@ msgstr ""
|
|
1659 |
msgid "Check at Meetup"
|
1660 |
msgstr ""
|
1661 |
|
1662 |
-
#: app/features/ix.php:
|
1663 |
msgid "Organizer Tel"
|
1664 |
msgstr ""
|
1665 |
|
1666 |
-
#: app/features/ix.php:
|
1667 |
msgid "Organizer Email"
|
1668 |
msgstr ""
|
1669 |
|
1670 |
-
#: app/features/ix.php:
|
1671 |
msgid "All of Client ID, Client Secret and Calendar ID are required!"
|
1672 |
msgstr ""
|
1673 |
|
1674 |
-
#: app/features/ix.php:
|
1675 |
#, php-format
|
1676 |
msgid "All seems good! Please click %s for authenticating your app."
|
1677 |
msgstr ""
|
1678 |
|
1679 |
-
#: app/features/ix.php:
|
1680 |
msgid "All of Client App, Client Secret and Calendar ID are required!"
|
1681 |
msgstr ""
|
1682 |
|
1683 |
-
#: app/features/ix.php:
|
1684 |
#, php-format
|
1685 |
msgid "%s events added to Google Calendar successfully."
|
1686 |
msgstr ""
|
1687 |
|
1688 |
-
#: app/features/ix.php:
|
1689 |
#, php-format
|
1690 |
msgid "%s previously added events get updated."
|
1691 |
msgstr ""
|
1692 |
|
1693 |
-
#: app/features/ix.php:
|
1694 |
#, php-format
|
1695 |
msgid "%s events failed to add for following reasons: %s"
|
1696 |
msgstr ""
|
1697 |
|
1698 |
-
#: app/features/ix.php:
|
1699 |
msgid "Please insert your Facebook page's link."
|
1700 |
msgstr ""
|
1701 |
|
1702 |
-
#: app/features/ix.php:
|
1703 |
msgid ""
|
1704 |
"We couldn't recognize your Facebook page. Please check it and provide us a "
|
1705 |
"valid Facebook page link."
|
1706 |
msgstr ""
|
1707 |
|
1708 |
-
#: app/features/ix.php:
|
1709 |
msgid "Please insert your facebook page's link."
|
1710 |
msgstr ""
|
1711 |
|
1712 |
-
#: app/features/ix.php:
|
1713 |
msgid ""
|
1714 |
"We couldn't recognize your Facebook page. Please check it and provide us a "
|
1715 |
"valid facebook page link."
|
@@ -1774,7 +1775,7 @@ msgid ""
|
|
1774 |
"This will export all of your website events' data into your desired format."
|
1775 |
msgstr ""
|
1776 |
|
1777 |
-
#: app/features/ix/export.php:25 app/features/mec/modules.php:
|
1778 |
msgid "iCal"
|
1779 |
msgstr ""
|
1780 |
|
@@ -1879,9 +1880,9 @@ msgstr ""
|
|
1879 |
msgid "Add to Google Calendar"
|
1880 |
msgstr ""
|
1881 |
|
1882 |
-
#: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:
|
1883 |
-
#: app/features/mec/modules.php:
|
1884 |
-
#: app/features/mec/settings.php:1054 app/features/mec/single.php:
|
1885 |
msgid "Checking ..."
|
1886 |
msgstr ""
|
1887 |
|
@@ -1924,30 +1925,30 @@ msgid "ICS Feed"
|
|
1924 |
msgstr ""
|
1925 |
|
1926 |
#: app/features/ix/import.php:46 app/features/mec/booking.php:91
|
1927 |
-
#: app/
|
1928 |
-
#: app/features/mec/booking.php:359
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: modern-events-calendar\n"
|
4 |
+
"POT-Creation-Date: 2020-02-12 17:40+0330\n"
|
5 |
+
"PO-Revision-Date: 2020-02-12 17:43+0330\n"
|
6 |
"Last-Translator: Howard <howard@realtyna.com>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: en_US\n"
|
67 |
msgid "Settings"
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: app/features/contextual.php:62 app/features/events.php:2453
|
71 |
+
#: app/features/mec/booking.php:448 app/features/mec/support.php:29
|
72 |
#: app/libraries/main.php:560
|
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:566
|
86 |
#: app/features/mec/support.php:36 app/libraries/main.php:561
|
87 |
msgid "Payment Gateways"
|
88 |
msgstr ""
|
187 |
msgid "Google Recaptcha Options"
|
188 |
msgstr ""
|
189 |
|
190 |
+
#: app/features/contextual.php:258 app/features/mec/single.php:149
|
191 |
#: app/libraries/main.php:548
|
192 |
msgid "Countdown Options"
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: app/features/contextual.php:268 app/features/mec/modules.php:264
|
196 |
#: app/libraries/main.php:571
|
197 |
msgid "Social Networks"
|
198 |
msgstr ""
|
218 |
msgid "Booking"
|
219 |
msgstr ""
|
220 |
|
221 |
+
#: app/features/contextual.php:318 app/features/mec/booking.php:270
|
222 |
#: app/libraries/main.php:557
|
223 |
msgid "Coupons"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: app/features/contextual.php:326 app/features/mec/modules.php:330
|
227 |
#: app/libraries/main.php:573
|
228 |
msgid "BuddyPress Integration"
|
229 |
msgstr ""
|
245 |
msgstr ""
|
246 |
|
247 |
#: app/features/events.php:158 app/features/fes.php:223
|
248 |
+
#: app/features/mec/meta_boxes/display_options.php:1048
|
249 |
+
#: app/features/mec/meta_boxes/display_options.php:1104
|
250 |
+
#: app/features/mec/meta_boxes/display_options.php:1139
|
251 |
#: app/features/profile/profile.php:50 app/skins/daily_view/tpl.php:80
|
252 |
#: app/skins/monthly_view/tpl.php:71 app/skins/tile/tpl.php:70
|
253 |
#: app/skins/yearly_view/tpl.php:69
|
262 |
msgid "Add New Event"
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: app/features/events.php:161 app/features/ix.php:3879
|
266 |
+
#: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:66
|
267 |
+
#: app/skins/map/tpl.php:85
|
268 |
msgid "No events found!"
|
269 |
msgstr ""
|
270 |
|
284 |
msgid "No events found in Trash!"
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: app/features/events.php:182 app/features/events.php:3302
|
288 |
+
#: app/features/mec/meta_boxes/display_options.php:959
|
289 |
#: app/features/mec/meta_boxes/search_form.php:31
|
290 |
#: app/features/mec/meta_boxes/search_form.php:93
|
291 |
#: app/features/mec/meta_boxes/search_form.php:155
|
297 |
#: app/features/mec/meta_boxes/search_form.php:514
|
298 |
#: app/features/mec/meta_boxes/search_form.php:575
|
299 |
#: app/features/mec/meta_boxes/search_form.php:672
|
300 |
+
#: app/features/mec/settings.php:808 app/features/mec/single.php:232
|
301 |
+
#: app/features/search.php:68 app/libraries/main.php:5335
|
302 |
+
#: app/libraries/skins.php:865 app/skins/single.php:566
|
303 |
+
#: app/skins/single/default.php:192 app/skins/single/default.php:415
|
304 |
+
#: app/skins/single/m1.php:184 app/skins/single/m2.php:110
|
305 |
+
#: app/skins/single/modern.php:118
|
306 |
msgid "Category"
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: app/features/events.php:183 app/features/events.php:3257
|
310 |
#: app/features/fes/form.php:757 app/features/mec.php:403
|
311 |
+
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5334
|
312 |
msgid "Categories"
|
313 |
msgstr ""
|
314 |
|
392 |
msgid "Event Repeating"
|
393 |
msgstr ""
|
394 |
|
395 |
+
#: app/features/events.php:333 app/features/events.php:1268
|
396 |
+
#: app/features/mec/settings.php:718 app/skins/single.php:953
|
397 |
msgid "Hourly Schedule"
|
398 |
msgstr ""
|
399 |
|
405 |
msgid "Links"
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: app/features/events.php:336 app/features/events.php:3304
|
409 |
+
#: app/features/events.php:3495 app/features/events.php:3537
|
410 |
+
#: app/features/ix.php:3506 app/features/ix.php:3547
|
411 |
+
#: app/features/mec/meta_boxes/display_options.php:962
|
412 |
#: app/features/mec/meta_boxes/search_form.php:45
|
413 |
#: app/features/mec/meta_boxes/search_form.php:107
|
414 |
#: app/features/mec/meta_boxes/search_form.php:169
|
420 |
#: app/features/mec/meta_boxes/search_form.php:528
|
421 |
#: app/features/mec/meta_boxes/search_form.php:589
|
422 |
#: app/features/mec/meta_boxes/search_form.php:686
|
423 |
+
#: app/features/mec/settings.php:820 app/features/mec/single.php:236
|
424 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
425 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
426 |
#: app/features/organizers.php:271 app/features/search.php:78
|
427 |
+
#: app/libraries/main.php:5341 app/libraries/skins.php:917
|
428 |
#: app/skins/single.php:812 app/skins/single/default.php:217
|
429 |
+
#: app/skins/single/default.php:440 app/skins/single/m1.php:99
|
430 |
#: app/skins/single/m2.php:25 app/skins/single/modern.php:34
|
431 |
msgid "Organizer"
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: app/features/events.php:337 app/features/events.php:1154
|
435 |
+
#: app/features/fes/form.php:730 app/libraries/main.php:5368
|
436 |
#: app/skins/single.php:589 app/skins/single/default.php:126
|
437 |
+
#: app/skins/single/default.php:349 app/skins/single/m1.php:58
|
438 |
+
#: app/skins/single/modern.php:213
|
439 |
msgid "Cost"
|
440 |
msgstr ""
|
441 |
|
442 |
+
#: app/features/events.php:454
|
443 |
msgid "Note for reviewer"
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: app/features/events.php:460
|
447 |
msgid "Guest Data"
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: app/features/events.php:461 app/features/events.php:2435
|
451 |
+
#: app/features/events.php:3784 app/features/fes.php:223
|
452 |
#: app/features/fes/form.php:689 app/features/labels.php:178
|
453 |
#: app/features/mec/booking.php:45 app/features/organizers.php:279
|
454 |
+
#: app/features/profile/profile.php:180 app/libraries/notifications.php:1117
|
455 |
#: app/modules/booking/steps/form.php:37
|
456 |
msgid "Name"
|
457 |
msgstr ""
|
458 |
|
459 |
+
#: app/features/events.php:462 app/features/events.php:2446
|
460 |
+
#: app/features/events.php:2522 app/features/events.php:3787
|
461 |
#: app/features/fes.php:223 app/features/fes/form.php:685
|
462 |
+
#: app/features/mec/booking.php:57 app/features/mec/booking.php:499
|
463 |
#: app/features/organizers.php:111 app/features/organizers.php:152
|
464 |
#: app/features/profile/profile.php:183 app/features/speakers.php:127
|
465 |
+
#: app/features/speakers.php:196 app/libraries/main.php:1547
|
466 |
+
#: app/libraries/main.php:1616 app/libraries/main.php:2843
|
467 |
+
#: app/libraries/notifications.php:1118 app/modules/booking/steps/form.php:46
|
468 |
#: app/modules/booking/steps/form.php:83 app/skins/single.php:829
|
469 |
#: app/skins/single.php:884 app/skins/single/default.php:234
|
470 |
+
#: app/skins/single/default.php:457 app/skins/single/m1.php:116
|
471 |
#: app/skins/single/m2.php:42 app/skins/single/modern.php:51
|
472 |
msgid "Email"
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: app/features/events.php:470 app/features/fes/form.php:243
|
476 |
msgid "Date and Time"
|
477 |
msgstr ""
|
478 |
|
479 |
+
#: app/features/events.php:473 app/features/events.php:479
|
480 |
+
#: app/features/events.php:3305 app/features/events.php:3495
|
481 |
+
#: app/features/events.php:3537 app/features/fes/form.php:247
|
482 |
+
#: app/features/fes/form.php:251 app/features/ix.php:3506
|
483 |
+
#: app/features/ix.php:3547 app/features/ix/import_g_calendar.php:38
|
484 |
#: app/features/mec/dashboard.php:401
|
485 |
#: app/features/mec/meta_boxes/display_options.php:49
|
486 |
#: app/features/mec/meta_boxes/display_options.php:229
|
489 |
#: app/features/mec/meta_boxes/display_options.php:598
|
490 |
#: app/features/mec/meta_boxes/display_options.php:652
|
491 |
#: app/features/mec/meta_boxes/display_options.php:699
|
492 |
+
#: app/features/mec/meta_boxes/display_options.php:733
|
493 |
+
#: app/features/mec/meta_boxes/display_options.php:768
|
494 |
+
#: app/features/mec/meta_boxes/display_options.php:815
|
495 |
+
#: app/features/mec/meta_boxes/display_options.php:914
|
496 |
+
#: app/features/mec/meta_boxes/display_options.php:1162
|
497 |
+
#: app/features/mec/meta_boxes/display_options.php:1250
|
498 |
+
#: app/features/mec/meta_boxes/display_options.php:1342
|
499 |
+
#: app/features/mec/meta_boxes/display_options.php:1409
|
500 |
msgid "Start Date"
|
501 |
msgstr ""
|
502 |
|
503 |
+
#: app/features/events.php:551 app/features/events.php:643
|
504 |
+
#: app/features/events.php:1708 app/features/events.php:1767
|
505 |
+
#: app/features/events.php:1960 app/features/events.php:1999
|
506 |
#: app/features/fes/form.php:279 app/features/fes/form.php:319
|
507 |
msgid "AM"
|
508 |
msgstr ""
|
509 |
|
510 |
+
#: app/features/events.php:558 app/features/events.php:650
|
511 |
+
#: app/features/events.php:1715 app/features/events.php:1774
|
512 |
+
#: app/features/events.php:1961 app/features/events.php:2000
|
513 |
#: app/features/fes/form.php:280 app/features/fes/form.php:320
|
514 |
msgid "PM"
|
515 |
msgstr ""
|
516 |
|
517 |
+
#: app/features/events.php:565 app/features/events.php:570
|
518 |
+
#: app/features/events.php:3306 app/features/events.php:3495
|
519 |
+
#: app/features/events.php:3537 app/features/fes/form.php:287
|
520 |
+
#: app/features/fes/form.php:291 app/features/ix.php:3506
|
521 |
+
#: app/features/ix.php:3547 app/features/ix/import_g_calendar.php:44
|
522 |
#: app/features/mec/dashboard.php:402
|
523 |
msgid "End Date"
|
524 |
msgstr ""
|
525 |
|
526 |
+
#: app/features/events.php:664 app/features/fes/form.php:326
|
527 |
msgid "All Day Event"
|
528 |
msgstr ""
|
529 |
|
530 |
+
#: app/features/events.php:674 app/features/fes/form.php:329
|
531 |
msgid "Hide Event Time"
|
532 |
msgstr ""
|
533 |
|
534 |
+
#: app/features/events.php:684 app/features/fes/form.php:332
|
535 |
msgid "Hide Event End Time"
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: app/features/events.php:689 app/features/events.php:693
|
539 |
#: app/features/fes/form.php:336
|
540 |
msgid "Time Comment"
|
541 |
msgstr ""
|
542 |
|
543 |
+
#: app/features/events.php:694 app/features/fes/form.php:337
|
544 |
msgid ""
|
545 |
"It shows next to event time on single event page. You can insert Timezone "
|
546 |
"etc. in this field."
|
547 |
msgstr ""
|
548 |
|
549 |
+
#: app/features/events.php:696 app/features/events.php:817
|
550 |
+
#: app/features/events.php:1117 app/features/events.php:1194
|
551 |
+
#: app/features/events.php:1493 app/features/events.php:1585
|
552 |
+
#: app/features/events.php:1795 app/features/events.php:1810
|
553 |
+
#: app/features/events.php:2019 app/features/events.php:2032
|
554 |
+
#: app/features/events.php:2183 app/features/events.php:2219
|
555 |
+
#: app/features/events.php:2317 app/features/events.php:2332
|
556 |
+
#: app/features/events.php:2362 app/features/events.php:2375
|
557 |
+
#: app/features/fes/form.php:641 app/features/locations.php:301
|
558 |
#: app/features/mec/booking.php:108 app/features/mec/booking.php:158
|
559 |
#: app/features/mec/booking.php:171 app/features/mec/booking.php:187
|
560 |
+
#: app/features/mec/booking.php:315 app/features/mec/booking.php:344
|
561 |
+
#: app/features/mec/booking.php:392 app/features/mec/booking.php:402
|
562 |
+
#: app/features/mec/booking.php:424 app/features/mec/booking.php:434
|
563 |
#: app/features/mec/dashboard.php:71
|
564 |
#: app/features/mec/meta_boxes/display_options.php:80
|
565 |
#: app/features/mec/meta_boxes/display_options.php:93
|
575 |
#: app/features/mec/meta_boxes/display_options.php:332
|
576 |
#: app/features/mec/meta_boxes/display_options.php:439
|
577 |
#: app/features/mec/meta_boxes/display_options.php:615
|
578 |
+
#: app/features/mec/meta_boxes/display_options.php:946
|
579 |
+
#: app/features/mec/meta_boxes/display_options.php:1019
|
580 |
+
#: app/features/mec/meta_boxes/display_options.php:1031
|
581 |
+
#: app/features/mec/meta_boxes/display_options.php:1042
|
582 |
+
#: app/features/mec/meta_boxes/display_options.php:1074
|
583 |
+
#: app/features/mec/meta_boxes/display_options.php:1085
|
584 |
+
#: app/features/mec/meta_boxes/display_options.php:1098
|
585 |
+
#: app/features/mec/meta_boxes/display_options.php:1133
|
586 |
+
#: app/features/mec/meta_boxes/display_options.php:1182
|
587 |
+
#: app/features/mec/meta_boxes/display_options.php:1193
|
588 |
+
#: app/features/mec/meta_boxes/display_options.php:1204
|
589 |
+
#: app/features/mec/meta_boxes/display_options.php:1270
|
590 |
+
#: app/features/mec/meta_boxes/display_options.php:1283
|
591 |
+
#: app/features/mec/meta_boxes/display_options.php:1296
|
592 |
+
#: app/features/mec/meta_boxes/display_options.php:1309
|
593 |
+
#: app/features/mec/meta_boxes/display_options.php:1322
|
594 |
+
#: app/features/mec/meta_boxes/display_options.php:1373
|
595 |
+
#: app/features/mec/meta_boxes/display_options.php:1426
|
596 |
#: app/features/mec/modules.php:53 app/features/mec/modules.php:86
|
597 |
#: app/features/mec/modules.php:103 app/features/mec/modules.php:138
|
598 |
+
#: app/features/mec/modules.php:154 app/features/mec/modules.php:318
|
599 |
#: app/features/mec/notifications.php:88 app/features/mec/notifications.php:185
|
600 |
#: app/features/mec/notifications.php:277
|
601 |
#: app/features/mec/notifications.php:380
|
616 |
#: app/features/mec/settings.php:899 app/features/mec/single.php:42
|
617 |
#: app/features/mec/single.php:58 app/features/mec/single.php:77
|
618 |
#: app/features/mec/single.php:94 app/features/mec/single.php:110
|
619 |
+
#: app/features/mec/single.php:125 app/features/mec/single.php:178
|
620 |
#: app/features/mec/styling.php:203 app/features/mec/styling.php:220
|
621 |
#: app/features/mec/styling.php:233 app/features/organizers.php:272
|
622 |
#: app/skins/single.php:674 app/skins/single/default.php:141
|
623 |
+
#: app/skins/single/default.php:364 app/skins/single/m1.php:206
|
624 |
+
#: app/skins/single/m2.php:133 app/skins/single/modern.php:141
|
625 |
msgid "Read More"
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: app/features/events.php:704
|
629 |
msgid "Repeating"
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: app/features/events.php:713
|
633 |
msgid "Event Repeating (Recurring events)"
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: app/features/events.php:717 app/features/fes/form.php:347
|
637 |
msgid "Repeats"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: app/features/events.php:725 app/features/fes/form.php:349
|
641 |
#: app/features/mec/dashboard.php:404
|
642 |
#: app/skins/default_full_calendar/tpl.php:69
|
643 |
#: app/skins/full_calendar/tpl.php:110
|
644 |
msgid "Daily"
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: app/features/events.php:732 app/features/fes/form.php:350
|
648 |
msgid "Every Weekday"
|
649 |
msgstr ""
|
650 |
|
651 |
+
#: app/features/events.php:739 app/features/fes/form.php:351
|
652 |
msgid "Every Weekend"
|
653 |
msgstr ""
|
654 |
|
655 |
+
#: app/features/events.php:746 app/features/fes/form.php:352
|
656 |
msgid "Certain Weekdays"
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: app/features/events.php:753 app/features/fes/form.php:353
|
660 |
#: app/skins/default_full_calendar/tpl.php:68
|
661 |
#: app/skins/full_calendar/tpl.php:109
|
662 |
msgid "Weekly"
|
663 |
msgstr ""
|
664 |
|
665 |
+
#: app/features/events.php:760 app/features/fes/form.php:354
|
666 |
#: app/features/mec/dashboard.php:405
|
667 |
#: app/skins/default_full_calendar/tpl.php:67
|
668 |
#: app/skins/full_calendar/tpl.php:108
|
669 |
msgid "Monthly"
|
670 |
msgstr ""
|
671 |
|
672 |
+
#: app/features/events.php:767 app/features/fes/form.php:355
|
673 |
#: app/features/mec/dashboard.php:406
|
674 |
#: app/skins/default_full_calendar/tpl.php:66
|
675 |
#: app/skins/full_calendar/tpl.php:107
|
676 |
msgid "Yearly"
|
677 |
msgstr ""
|
678 |
|
679 |
+
#: app/features/events.php:774 app/features/fes/form.php:356
|
680 |
msgid "Custom Days"
|
681 |
msgstr ""
|
682 |
|
683 |
+
#: app/features/events.php:781 app/features/fes/form.php:357
|
684 |
msgid "Advanced"
|
685 |
msgstr ""
|
686 |
|
687 |
+
#: app/features/events.php:786 app/features/fes/form.php:361
|
688 |
msgid "Repeat Interval"
|
689 |
msgstr ""
|
690 |
|
691 |
+
#: app/features/events.php:788 app/features/fes/form.php:362
|
692 |
msgid "Repeat interval"
|
693 |
msgstr ""
|
694 |
|
695 |
+
#: app/features/events.php:792 app/features/fes/form.php:365
|
696 |
msgid "Week Days"
|
697 |
msgstr ""
|
698 |
|
699 |
+
#: app/features/events.php:807 app/features/events.php:1879
|
700 |
+
#: app/features/events.php:1907 app/features/events.php:2087
|
701 |
#: app/features/fes/form.php:377 app/features/ix/import_f_calendar.php:42
|
702 |
#: app/features/ix/import_g_calendar.php:51
|
703 |
#: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
|
704 |
msgid "Start"
|
705 |
msgstr ""
|
706 |
|
707 |
+
#: app/features/events.php:809 app/features/events.php:1883
|
708 |
+
#: app/features/events.php:1911 app/features/events.php:2091
|
709 |
#: app/features/fes/form.php:378
|
710 |
msgid "End"
|
711 |
msgstr ""
|
712 |
|
713 |
+
#: app/features/events.php:811 app/features/events.php:1188
|
714 |
+
#: app/features/events.php:1299 app/features/events.php:1404
|
715 |
+
#: app/features/events.php:1862 app/features/events.php:2076
|
716 |
+
#: app/features/events.php:2156 app/features/events.php:2289
|
717 |
#: app/features/fes/form.php:379 app/features/fes/form.php:855
|
718 |
msgid "Add"
|
719 |
msgstr ""
|
720 |
|
721 |
+
#: app/features/events.php:814
|
722 |
msgid "Custom Days Repeating"
|
723 |
msgstr ""
|
724 |
|
725 |
+
#: app/features/events.php:815
|
726 |
msgid ""
|
727 |
"Add certain days to event occurrence dates. If you have single day event, "
|
728 |
"start and end date should be the same, If you have multiple day event the "
|
729 |
"start and end dates must be commensurate with the initial date."
|
730 |
msgstr ""
|
731 |
|
732 |
+
#: app/features/events.php:851 app/features/fes/form.php:405
|
733 |
msgid "First"
|
734 |
msgstr ""
|
735 |
|
736 |
+
#: app/features/events.php:893 app/features/fes/form.php:447
|
737 |
msgid "Second"
|
738 |
msgstr ""
|
739 |
|
740 |
+
#: app/features/events.php:935 app/features/fes/form.php:489
|
741 |
msgid "Third"
|
742 |
msgstr ""
|
743 |
|
744 |
+
#: app/features/events.php:977 app/features/fes/form.php:531
|
745 |
msgid "Fourth"
|
746 |
msgstr ""
|
747 |
|
748 |
+
#: app/features/events.php:1019 app/features/fes/form.php:573
|
749 |
msgid "Last"
|
750 |
msgstr ""
|
751 |
|
752 |
+
#: app/features/events.php:1066 app/features/fes/form.php:619
|
753 |
msgid "Ends Repeat"
|
754 |
msgstr ""
|
755 |
|
756 |
+
#: app/features/events.php:1078 app/features/fes/form.php:623
|
757 |
msgid "Never"
|
758 |
msgstr ""
|
759 |
|
760 |
+
#: app/features/events.php:1090 app/features/fes/form.php:628
|
761 |
msgid "On"
|
762 |
msgstr ""
|
763 |
|
764 |
+
#: app/features/events.php:1106 app/features/fes/form.php:635
|
765 |
msgid "After"
|
766 |
msgstr ""
|
767 |
|
768 |
+
#: app/features/events.php:1110 app/features/events.php:1114
|
769 |
#: app/features/fes/form.php:637 app/features/fes/form.php:640
|
770 |
msgid "Occurrences times"
|
771 |
msgstr ""
|
772 |
|
773 |
+
#: app/features/events.php:1115 app/features/fes/form.php:641
|
774 |
msgid ""
|
775 |
"The event will finish after certain repeats. For example if you set it to "
|
776 |
"10, the event will finish after 10 repeats."
|
777 |
msgstr ""
|
778 |
|
779 |
+
#: app/features/events.php:1130 app/features/fes/form.php:654
|
780 |
msgid "Show only one occurrence of this event"
|
781 |
msgstr ""
|
782 |
|
783 |
+
#: app/features/events.php:1150 app/features/events.php:3495
|
784 |
+
#: app/features/events.php:3537 app/features/fes/form.php:727
|
785 |
+
#: app/features/ix.php:3506 app/features/ix.php:3547
|
786 |
+
#: app/features/mec/settings.php:664 app/libraries/main.php:5367
|
787 |
#: app/widgets/single.php:103
|
788 |
msgid "Event Cost"
|
789 |
msgstr ""
|
790 |
|
791 |
+
#: app/features/events.php:1175
|
792 |
msgid "Exceptional Days (Exclude Dates)"
|
793 |
msgstr ""
|
794 |
|
795 |
+
#: app/features/events.php:1181 app/features/events.php:1191
|
796 |
msgid "Exclude certain days"
|
797 |
msgstr ""
|
798 |
|
799 |
+
#: app/features/events.php:1186 app/features/events.php:2523
|
800 |
+
#: app/features/fes.php:223 app/features/mec/booking.php:500
|
801 |
+
#: app/features/profile/profile.php:53 app/libraries/main.php:2253
|
802 |
+
#: app/libraries/main.php:2901 app/modules/booking/steps/tickets.php:22
|
803 |
#: app/modules/next-event/details.php:93 app/skins/single.php:648
|
804 |
+
#: app/skins/single/default.php:85 app/skins/single/default.php:308
|
805 |
+
#: app/skins/single/m1.php:20 app/skins/single/modern.php:175
|
806 |
msgid "Date"
|
807 |
msgstr ""
|
808 |
|
809 |
+
#: app/features/events.php:1192
|
810 |
msgid ""
|
811 |
"Exclude certain days from event occurrence dates. Please note that you can "
|
812 |
"exclude only single day occurrences and you cannot exclude one day from "
|
813 |
"multiple day occurrences."
|
814 |
msgstr ""
|
815 |
|
816 |
+
#: app/features/events.php:1246 app/libraries/render.php:506
|
817 |
msgid "Day 1"
|
818 |
msgstr ""
|
819 |
|
820 |
+
#: app/features/events.php:1272
|
821 |
msgid "Add Day"
|
822 |
msgstr ""
|
823 |
|
824 |
+
#: app/features/events.php:1273
|
825 |
msgid ""
|
826 |
"Add new days for schedule. For example if your event is multiple days, you "
|
827 |
"can add a different schedule for each day!"
|
828 |
msgstr ""
|
829 |
|
830 |
+
#: app/features/events.php:1280
|
831 |
#, php-format
|
832 |
msgid "Day %s"
|
833 |
msgstr ""
|
834 |
|
835 |
+
#: app/features/events.php:1284 app/features/events.php:1323
|
836 |
+
#: app/features/events.php:1358 app/features/events.php:1390
|
837 |
+
#: app/features/events.php:1419 app/features/events.php:2304
|
838 |
+
#: app/features/events.php:2351 app/features/events.php:3301
|
839 |
+
#: app/features/events.php:3495 app/features/events.php:3537
|
840 |
+
#: app/features/fes/form.php:236 app/features/ix.php:3506
|
841 |
+
#: app/features/ix.php:3547 app/features/mec/booking.php:384
|
842 |
+
#: app/features/mec/booking.php:416 app/features/mec/styling.php:115
|
843 |
msgid "Title"
|
844 |
msgstr ""
|
845 |
|
846 |
+
#: app/features/events.php:1293 app/features/events.php:1330
|
847 |
+
#: app/features/events.php:1363 app/features/events.php:1398
|
848 |
+
#: app/features/events.php:1424 app/features/events.php:1893
|
849 |
+
#: app/features/events.php:1919 app/features/events.php:2097
|
850 |
+
#: app/features/events.php:2196 app/features/events.php:2232
|
851 |
+
#: app/features/events.php:2339 app/features/events.php:2381
|
852 |
+
#: app/features/mec/booking.php:327 app/features/mec/booking.php:356
|
853 |
+
#: app/features/mec/booking.php:407 app/features/mec/booking.php:439
|
854 |
+
#: app/libraries/main.php:2762 app/libraries/main.php:2792
|
855 |
+
#: app/libraries/main.php:2821 app/libraries/main.php:2851
|
856 |
+
#: app/libraries/main.php:2880 app/libraries/main.php:2909
|
857 |
+
#: app/libraries/main.php:2938 app/libraries/main.php:2967
|
858 |
+
#: app/libraries/main.php:2989 app/libraries/main.php:3020
|
859 |
+
#: app/libraries/main.php:3064 app/libraries/main.php:3108
|
860 |
+
#: app/libraries/main.php:3155 app/libraries/main.php:3194
|
861 |
msgid "Remove"
|
862 |
msgstr ""
|
863 |
|
864 |
+
#: app/features/events.php:1300 app/features/events.php:1405
|
865 |
msgid "Add new hourly schedule row"
|
866 |
msgstr ""
|
867 |
|
868 |
+
#: app/features/events.php:1315 app/features/events.php:1352
|
869 |
+
#: app/features/events.php:1414
|
870 |
msgid "From e.g. 8:15"
|
871 |
msgstr ""
|
872 |
|
873 |
+
#: app/features/events.php:1319 app/features/events.php:1355
|
874 |
+
#: app/features/events.php:1416
|
875 |
msgid "To e.g. 8:45"
|
876 |
msgstr ""
|
877 |
|
878 |
+
#: app/features/events.php:1327 app/features/events.php:1361
|
879 |
+
#: app/features/events.php:1422 app/features/events.php:1783
|
880 |
+
#: app/features/events.php:2008
|
881 |
msgid "Description"
|
882 |
msgstr ""
|
883 |
|
884 |
+
#: app/features/events.php:1333 app/features/events.php:1366
|
885 |
+
#: app/features/events.php:1427 app/features/fes/form.php:851
|
886 |
#: app/features/mec.php:411 app/features/mec/modules.php:52
|
887 |
#: app/features/mec/settings.php:712 app/features/speakers.php:62
|
888 |
+
#: app/libraries/main.php:565 app/libraries/main.php:5342
|
889 |
#: app/modules/speakers/details.php:18
|
890 |
msgid "Speakers"
|
891 |
msgstr ""
|
892 |
|
893 |
+
#: app/features/events.php:1386 app/features/events.php:1394
|
894 |
msgid "New Day"
|
895 |
msgstr ""
|
896 |
|
897 |
+
#: app/features/events.php:1458 app/features/fes/form.php:704
|
898 |
#: app/features/mec/settings.php:658
|
899 |
msgid "Event Links"
|
900 |
msgstr ""
|
901 |
|
902 |
+
#: app/features/events.php:1461 app/features/events.php:1467
|
903 |
+
#: app/features/fes/form.php:706 app/libraries/main.php:5365
|
904 |
msgid "Event Link"
|
905 |
msgstr ""
|
906 |
|
907 |
+
#: app/features/events.php:1464 app/features/events.php:1480
|
908 |
#: app/features/fes/form.php:707 app/features/fes/form.php:712
|
909 |
msgid "eg. http://yoursite.com/your-event"
|
910 |
msgstr ""
|
911 |
|
912 |
+
#: app/features/events.php:1468
|
913 |
msgid ""
|
914 |
"If you fill it, it will be replaced instead of default event page link. "
|
915 |
"Insert full link including http(s):// - Also, if you use advertising URL, "
|
916 |
"can use URL Shortener"
|
917 |
msgstr ""
|
918 |
|
919 |
+
#: app/features/events.php:1470
|
920 |
msgid "URL Shortener"
|
921 |
msgstr ""
|
922 |
|
923 |
+
#: app/features/events.php:1477 app/features/events.php:1490
|
924 |
+
#: app/features/fes/form.php:711 app/libraries/main.php:5366
|
925 |
#: app/skins/single.php:673 app/skins/single/default.php:140
|
926 |
+
#: app/skins/single/default.php:363 app/skins/single/m1.php:205
|
927 |
+
#: app/skins/single/m2.php:132 app/skins/single/modern.php:140
|
928 |
#: app/widgets/single.php:107
|
929 |
msgid "More Info"
|
930 |
msgstr ""
|
931 |
|
932 |
+
#: app/features/events.php:1483 app/features/fes/form.php:713
|
933 |
msgid "More Information"
|
934 |
msgstr ""
|
935 |
|
936 |
+
#: app/features/events.php:1485 app/features/fes/form.php:715
|
937 |
msgid "Current Window"
|
938 |
msgstr ""
|
939 |
|
940 |
+
#: app/features/events.php:1486 app/features/fes/form.php:716
|
941 |
msgid "New Window"
|
942 |
msgstr ""
|
943 |
|
944 |
+
#: app/features/events.php:1491 app/features/fes/form.php:718
|
945 |
msgid ""
|
946 |
"If you fill it, it will be shown in event details page as an optional link. "
|
947 |
"Insert full link including http(s)://"
|
948 |
msgstr ""
|
949 |
|
950 |
+
#: app/features/events.php:1566 app/features/events.php:1581
|
951 |
msgid "Total booking limits"
|
952 |
msgstr ""
|
953 |
|
954 |
+
#: app/features/events.php:1578 app/features/events.php:1831
|
955 |
+
#: app/features/events.php:2046 app/modules/booking/default.php:85
|
956 |
#: app/modules/booking/steps/tickets.php:40
|
957 |
#: app/skins/available_spot/tpl.php:158
|
958 |
msgid "Unlimited"
|
959 |
msgstr ""
|
960 |
|
961 |
+
#: app/features/events.php:1584
|
962 |
msgid ""
|
963 |
"If you want to set a limit to all tickets, uncheck this checkbox and put a "
|
964 |
"limitation number."
|
965 |
msgstr ""
|
966 |
|
967 |
+
#: app/features/events.php:1586
|
968 |
msgid "Read About A Booking System"
|
969 |
msgstr ""
|
970 |
|
971 |
+
#: app/features/events.php:1594
|
972 |
msgid "100"
|
973 |
msgstr ""
|
974 |
|
975 |
+
#: app/features/events.php:1599
|
976 |
msgid "Total user booking limits"
|
977 |
msgstr ""
|
978 |
|
979 |
+
#: app/features/events.php:1611 app/features/events.php:2145
|
980 |
+
#: app/features/events.php:2277 app/features/events.php:2465
|
981 |
msgid "Inherit from global options"
|
982 |
msgstr ""
|
983 |
|
984 |
+
#: app/features/events.php:1614
|
985 |
msgid "12"
|
986 |
msgstr ""
|
987 |
|
988 |
+
#: app/features/events.php:1635 app/libraries/book.php:60
|
989 |
+
#: app/libraries/main.php:5370 app/modules/booking/steps/tickets.php:40
|
990 |
msgid "Tickets"
|
991 |
msgstr ""
|
992 |
|
993 |
+
#: app/features/events.php:1638
|
994 |
msgid ""
|
995 |
"You're translating an event so MEC will use the original event for tickets "
|
996 |
"and booking. You can only translate the ticket name and description. Please "
|
997 |
"define exact tickets that you defined in the original event here."
|
998 |
msgstr ""
|
999 |
|
1000 |
+
#: app/features/events.php:1643
|
1001 |
msgid "Add Ticket"
|
1002 |
msgstr ""
|
1003 |
|
1004 |
+
#: app/features/events.php:1657 app/features/events.php:1933
|
1005 |
msgid "Ticket Name"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
+
#: app/features/events.php:1662 app/features/events.php:1937
|
1009 |
+
#: app/features/events.php:3495 app/features/events.php:3537
|
1010 |
+
#: app/features/ix.php:3506 app/features/ix.php:3547
|
1011 |
msgid "Start Time"
|
1012 |
msgstr ""
|
1013 |
|
1014 |
+
#: app/features/events.php:1721 app/features/events.php:1967
|
1015 |
+
#: app/features/events.php:3495 app/features/events.php:3537
|
1016 |
+
#: app/features/ix.php:3506 app/features/ix.php:3547
|
1017 |
msgid "End Time"
|
1018 |
msgstr ""
|
1019 |
|
1020 |
+
#: app/features/events.php:1788 app/features/events.php:1792
|
1021 |
+
#: app/features/events.php:1887 app/features/events.php:1914
|
1022 |
+
#: app/features/events.php:2013 app/features/events.php:2016
|
1023 |
+
#: app/features/events.php:2093 app/features/events.php:2310
|
1024 |
+
#: app/features/events.php:2314 app/features/events.php:2356
|
1025 |
+
#: app/features/events.php:2359 app/features/mec/booking.php:388
|
1026 |
+
#: app/features/mec/booking.php:391 app/features/mec/booking.php:420
|
1027 |
+
#: app/features/mec/booking.php:423
|
1028 |
msgid "Price"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
+
#: app/features/events.php:1793 app/features/events.php:2017
|
1032 |
msgid "Insert 0 for free ticket. Only numbers please."
|
1033 |
msgstr ""
|
1034 |
|
1035 |
+
#: app/features/events.php:1802 app/features/events.php:1807
|
1036 |
+
#: app/features/events.php:2026 app/features/events.php:2029
|
1037 |
msgid "Price Label"
|
1038 |
msgstr ""
|
1039 |
|
1040 |
+
#: app/features/events.php:1808 app/features/events.php:2030
|
1041 |
msgid "For showing on website. e.g. $15"
|
1042 |
msgstr ""
|
1043 |
|
1044 |
+
#: app/features/events.php:1818 app/features/events.php:2040
|
1045 |
msgid "Available Tickets"
|
1046 |
msgstr ""
|
1047 |
|
1048 |
+
#: app/features/events.php:1835 app/features/events.php:2050
|
1049 |
msgid "Minimum Ticket e.g. 3"
|
1050 |
msgstr ""
|
1051 |
|
1052 |
+
#: app/features/events.php:1838 app/features/events.php:2053
|
1053 |
msgid "MinimumTicket"
|
1054 |
msgstr ""
|
1055 |
|
1056 |
+
#: app/features/events.php:1840 app/features/events.php:2055
|
1057 |
msgid "Set a number for the minimum ticket reservation"
|
1058 |
msgstr ""
|
1059 |
|
1060 |
+
#: app/features/events.php:1848 app/features/events.php:2063
|
1061 |
msgid "e.g. 0"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
+
#: app/features/events.php:1850 app/features/events.php:2065
|
1065 |
msgid "Day"
|
1066 |
msgstr ""
|
1067 |
|
1068 |
+
#: app/features/events.php:1851 app/features/events.php:2066
|
1069 |
msgid "Hour"
|
1070 |
msgstr ""
|
1071 |
|
1072 |
+
#: app/features/events.php:1853 app/features/events.php:2068
|
1073 |
#, php-format
|
1074 |
msgid "Stop selling ticket %s before event start."
|
1075 |
msgstr ""
|
1076 |
|
1077 |
+
#: app/features/events.php:1860 app/features/events.php:2074
|
1078 |
msgid "Price per Date"
|
1079 |
msgstr ""
|
1080 |
|
1081 |
+
#: app/features/events.php:1891 app/features/events.php:1917
|
1082 |
+
#: app/features/events.php:2095 app/features/labels.php:60
|
1083 |
+
#: app/features/mec/meta_boxes/display_options.php:960
|
1084 |
#: app/features/mec/meta_boxes/search_form.php:66
|
1085 |
#: app/features/mec/meta_boxes/search_form.php:128
|
1086 |
#: app/features/mec/meta_boxes/search_form.php:190
|
1092 |
#: app/features/mec/meta_boxes/search_form.php:549
|
1093 |
#: app/features/mec/meta_boxes/search_form.php:610
|
1094 |
#: app/features/mec/meta_boxes/search_form.php:707
|
1095 |
+
#: app/features/mec/settings.php:840 app/features/mec/single.php:250
|
1096 |
+
#: app/libraries/skins.php:995
|
1097 |
msgid "Label"
|
1098 |
msgstr ""
|
1099 |
|
1100 |
+
#: app/features/events.php:2133
|
1101 |
msgid "Fees"
|
1102 |
msgstr ""
|
1103 |
|
1104 |
+
#: app/features/events.php:2170 app/features/events.php:2208
|
1105 |
+
#: app/features/mec/booking.php:307 app/features/mec/booking.php:336
|
1106 |
msgid "Fee Title"
|
1107 |
msgstr ""
|
1108 |
|
1109 |
+
#: app/features/events.php:2176 app/features/events.php:2180
|
1110 |
+
#: app/features/events.php:2213 app/features/events.php:2216
|
1111 |
+
#: app/features/mec/booking.php:311 app/features/mec/booking.php:314
|
1112 |
+
#: app/features/mec/booking.php:340 app/features/mec/booking.php:343
|
1113 |
msgid "Amount"
|
1114 |
msgstr ""
|
1115 |
|
1116 |
+
#: app/features/events.php:2181 app/features/events.php:2217
|
1117 |
+
#: app/features/mec/booking.php:315 app/features/mec/booking.php:344
|
1118 |
msgid ""
|
1119 |
"Fee amount, considered as fixed amount if you set the type to amount "
|
1120 |
"otherwise considered as percentage"
|
1121 |
msgstr ""
|
1122 |
|
1123 |
+
#: app/features/events.php:2190 app/features/events.php:2226
|
1124 |
+
#: app/features/mec/booking.php:322 app/features/mec/booking.php:351
|
1125 |
msgid "Percent"
|
1126 |
msgstr ""
|
1127 |
|
1128 |
+
#: app/features/events.php:2191 app/features/events.php:2227
|
1129 |
+
#: app/features/mec/booking.php:323 app/features/mec/booking.php:352
|
1130 |
msgid "Amount (Per Ticket)"
|
1131 |
msgstr ""
|
1132 |
|
1133 |
+
#: app/features/events.php:2192 app/features/events.php:2228
|
1134 |
+
#: app/features/mec/booking.php:324 app/features/mec/booking.php:353
|
1135 |
msgid "Amount (Per Booking)"
|
1136 |
msgstr ""
|
1137 |
|
1138 |
+
#: app/features/events.php:2265 app/features/mec/settings.php:736
|
1139 |
msgid "Ticket Variations / Options"
|
1140 |
msgstr ""
|
1141 |
|
1142 |
+
#: app/features/events.php:2315 app/features/events.php:2360
|
1143 |
+
#: app/features/mec/booking.php:392 app/features/mec/booking.php:424
|
1144 |
msgid "Option Price"
|
1145 |
msgstr ""
|
1146 |
|
1147 |
+
#: app/features/events.php:2325 app/features/events.php:2329
|
1148 |
+
#: app/features/events.php:2369 app/features/events.php:2372
|
1149 |
+
#: app/features/mec/booking.php:398 app/features/mec/booking.php:401
|
1150 |
+
#: app/features/mec/booking.php:430 app/features/mec/booking.php:433
|
1151 |
msgid "Maximum Per Ticket"
|
1152 |
msgstr ""
|
1153 |
|
1154 |
+
#: app/features/events.php:2330 app/features/events.php:2373
|
1155 |
+
#: app/features/mec/booking.php:402 app/features/mec/booking.php:434
|
1156 |
msgid "Maximum Per Ticket. Leave it blank for unlimited."
|
1157 |
msgstr ""
|
1158 |
|
1159 |
+
#: app/features/events.php:2519 app/features/mec/booking.php:496
|
1160 |
+
#: app/libraries/main.php:2784
|
1161 |
msgid "MEC Name"
|
1162 |
msgstr ""
|
1163 |
|
1164 |
+
#: app/features/events.php:2520 app/features/mec/booking.php:497
|
1165 |
+
#: app/libraries/main.php:2813
|
1166 |
msgid "MEC Email"
|
1167 |
msgstr ""
|
1168 |
|
1169 |
+
#: app/features/events.php:2521 app/features/mec/booking.php:498
|
1170 |
+
#: app/libraries/main.php:2754
|
1171 |
msgid "Text"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
+
#: app/features/events.php:2524 app/features/mec/booking.php:501
|
1175 |
#: app/features/organizers.php:103 app/features/organizers.php:148
|
1176 |
#: app/features/speakers.php:119 app/features/speakers.php:192
|
1177 |
+
#: app/features/speakers.php:271 app/libraries/main.php:2930
|
1178 |
msgid "Tel"
|
1179 |
msgstr ""
|
1180 |
|
1181 |
+
#: app/features/events.php:2525 app/features/mec/booking.php:502
|
1182 |
+
#: app/libraries/main.php:2872
|
1183 |
msgid "File"
|
1184 |
msgstr ""
|
1185 |
|
1186 |
+
#: app/features/events.php:2526 app/features/mec/booking.php:503
|
1187 |
+
#: app/libraries/main.php:2959
|
1188 |
msgid "Textarea"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
+
#: app/features/events.php:2527 app/features/mec/booking.php:504
|
1192 |
+
#: app/libraries/main.php:3012
|
1193 |
msgid "Checkboxes"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
+
#: app/features/events.php:2528 app/features/mec/booking.php:505
|
1197 |
+
#: app/libraries/main.php:3056
|
1198 |
msgid "Radio Buttons"
|
1199 |
msgstr ""
|
1200 |
|
1201 |
+
#: app/features/events.php:2529 app/features/mec/booking.php:506
|
1202 |
#: app/features/mec/meta_boxes/search_form.php:34
|
1203 |
#: app/features/mec/meta_boxes/search_form.php:41
|
1204 |
#: app/features/mec/meta_boxes/search_form.php:48
|
1274 |
#: app/features/mec/meta_boxes/search_form.php:696
|
1275 |
#: app/features/mec/meta_boxes/search_form.php:703
|
1276 |
#: app/features/mec/meta_boxes/search_form.php:710
|
1277 |
+
#: app/features/mec/meta_boxes/search_form.php:717 app/libraries/main.php:3100
|
1278 |
msgid "Dropdown"
|
1279 |
msgstr ""
|
1280 |
|
1281 |
+
#: app/features/events.php:2530 app/features/mec/booking.php:507
|
1282 |
+
#: app/libraries/main.php:3147
|
1283 |
msgid "Agreement"
|
1284 |
msgstr ""
|
1285 |
|
1286 |
+
#: app/features/events.php:2531 app/features/mec/booking.php:508
|
1287 |
+
#: app/libraries/main.php:2988
|
1288 |
msgid "Paragraph"
|
1289 |
msgstr ""
|
1290 |
|
1291 |
+
#: app/features/events.php:3203 app/features/events.php:3221
|
1292 |
+
#: app/features/events.php:3239 app/features/events.php:3257
|
1293 |
#, php-format
|
1294 |
msgid "Show all %s"
|
1295 |
msgstr ""
|
1296 |
|
1297 |
+
#: app/features/events.php:3203
|
1298 |
msgid "labels"
|
1299 |
msgstr ""
|
1300 |
|
1301 |
+
#: app/features/events.php:3221
|
1302 |
msgid "locations"
|
1303 |
msgstr ""
|
1304 |
|
1305 |
+
#: app/features/events.php:3239
|
1306 |
msgid "organizers"
|
1307 |
msgstr ""
|
1308 |
|
1309 |
+
#: app/features/events.php:3273
|
1310 |
msgid "Attendees List"
|
1311 |
msgstr ""
|
1312 |
|
1313 |
+
#: app/features/events.php:3303 app/features/events.php:3495
|
1314 |
+
#: app/features/events.php:3537 app/features/ix.php:3506
|
1315 |
+
#: app/features/ix.php:3547 app/features/locations.php:58
|
1316 |
+
#: app/features/locations.php:232 app/features/locations.php:289
|
1317 |
+
#: app/features/locations.php:291 app/features/locations.php:300
|
1318 |
+
#: app/features/mec/meta_boxes/display_options.php:961
|
1319 |
#: app/features/mec/meta_boxes/search_form.php:38
|
1320 |
#: app/features/mec/meta_boxes/search_form.php:100
|
1321 |
#: app/features/mec/meta_boxes/search_form.php:162
|
1327 |
#: app/features/mec/meta_boxes/search_form.php:521
|
1328 |
#: app/features/mec/meta_boxes/search_form.php:582
|
1329 |
#: app/features/mec/meta_boxes/search_form.php:679
|
1330 |
+
#: app/features/mec/settings.php:814 app/features/mec/single.php:240
|
1331 |
+
#: app/features/search.php:73 app/libraries/main.php:2247
|
1332 |
+
#: app/libraries/main.php:5339 app/libraries/skins.php:891
|
1333 |
+
#: app/skins/single.php:493 app/skins/single.php:930
|
1334 |
+
#: app/skins/single/default.php:176 app/skins/single/default.php:399
|
1335 |
+
#: app/skins/single/m1.php:169 app/skins/single/m2.php:95
|
1336 |
+
#: app/skins/single/modern.php:102
|
1337 |
msgid "Location"
|
1338 |
msgstr ""
|
1339 |
|
1340 |
+
#: app/features/events.php:3308
|
1341 |
msgid "Repeat"
|
1342 |
msgstr ""
|
1343 |
|
1344 |
+
#: app/features/events.php:3309
|
1345 |
msgid "Author"
|
1346 |
msgstr ""
|
1347 |
|
1348 |
+
#: app/features/events.php:3430 app/features/events.php:3431
|
1349 |
msgid "iCal Export"
|
1350 |
msgstr ""
|
1351 |
|
1352 |
+
#: app/features/events.php:3433 app/features/events.php:3434
|
1353 |
msgid "CSV Export"
|
1354 |
msgstr ""
|
1355 |
|
1356 |
+
#: app/features/events.php:3436 app/features/events.php:3437
|
1357 |
msgid "MS Excel Export"
|
1358 |
msgstr ""
|
1359 |
|
1360 |
+
#: app/features/events.php:3439 app/features/events.php:3440
|
1361 |
msgid "XML Export"
|
1362 |
msgstr ""
|
1363 |
|
1364 |
+
#: app/features/events.php:3442 app/features/events.php:3443
|
1365 |
msgid "JSON Export"
|
1366 |
msgstr ""
|
1367 |
|
1368 |
+
#: app/features/events.php:3445 app/features/events.php:3446
|
1369 |
+
#: app/features/events.php:3628
|
1370 |
msgid "Duplicate"
|
1371 |
msgstr ""
|
1372 |
|
1373 |
+
#: app/features/events.php:3495 app/features/events.php:3537
|
1374 |
+
#: app/features/fes.php:223 app/features/ix.php:3506 app/features/ix.php:3547
|
1375 |
+
#: app/features/labels.php:177 app/features/locations.php:231
|
1376 |
#: app/features/organizers.php:203 app/features/speakers.php:268
|
1377 |
msgid "ID"
|
1378 |
msgstr ""
|
1379 |
|
1380 |
+
#: app/features/events.php:3495 app/features/events.php:3537
|
1381 |
+
#: app/features/ix.php:3506 app/features/ix.php:3547
|
1382 |
msgid "Link"
|
1383 |
msgstr ""
|
1384 |
|
1385 |
+
#: app/features/events.php:3495 app/features/events.php:3537
|
1386 |
#, php-format
|
1387 |
msgid "%s Tel"
|
1388 |
msgstr ""
|
1389 |
|
1390 |
+
#: app/features/events.php:3495 app/features/events.php:3537
|
1391 |
#, php-format
|
1392 |
msgid "%s Email"
|
1393 |
msgstr ""
|
1394 |
|
1395 |
+
#: app/features/events.php:3790 app/features/fes.php:223
|
1396 |
+
#: app/features/profile/profile.php:186 app/libraries/main.php:2282
|
1397 |
+
#: app/libraries/main.php:5369
|
1398 |
msgid "Ticket"
|
1399 |
msgstr ""
|
1400 |
|
1401 |
+
#: app/features/events.php:3793 app/features/profile/profile.php:189
|
1402 |
msgid "Variations"
|
1403 |
msgstr ""
|
1404 |
|
1405 |
+
#: app/features/events.php:3808 app/features/fes.php:303
|
1406 |
msgid "Unknown"
|
1407 |
msgstr ""
|
1408 |
|
1409 |
+
#: app/features/events.php:3841
|
1410 |
msgid "No Attendees Found!"
|
1411 |
msgstr ""
|
1412 |
|
1440 |
msgid "The event removed!"
|
1441 |
msgstr ""
|
1442 |
|
1443 |
+
#: app/features/fes.php:223 app/libraries/main.php:2259
|
1444 |
msgid "Transaction ID"
|
1445 |
msgstr ""
|
1446 |
|
1485 |
msgstr ""
|
1486 |
|
1487 |
#: app/features/fes/form.php:366
|
1488 |
+
#: app/features/mec/meta_boxes/display_options.php:845
|
1489 |
#: app/libraries/main.php:410
|
1490 |
msgid "Monday"
|
1491 |
msgstr ""
|
1492 |
|
1493 |
#: app/features/fes/form.php:367
|
1494 |
+
#: app/features/mec/meta_boxes/display_options.php:846
|
1495 |
#: app/libraries/main.php:410
|
1496 |
msgid "Tuesday"
|
1497 |
msgstr ""
|
1498 |
|
1499 |
#: app/features/fes/form.php:368
|
1500 |
+
#: app/features/mec/meta_boxes/display_options.php:847
|
1501 |
#: app/libraries/main.php:410
|
1502 |
msgid "Wednesday"
|
1503 |
msgstr ""
|
1504 |
|
1505 |
#: app/features/fes/form.php:369
|
1506 |
+
#: app/features/mec/meta_boxes/display_options.php:848
|
1507 |
#: app/libraries/main.php:410
|
1508 |
msgid "Thursday"
|
1509 |
msgstr ""
|
1510 |
|
1511 |
#: app/features/fes/form.php:370
|
1512 |
+
#: app/features/mec/meta_boxes/display_options.php:849
|
1513 |
#: app/libraries/main.php:410
|
1514 |
msgid "Friday"
|
1515 |
msgstr ""
|
1516 |
|
1517 |
#: app/features/fes/form.php:371
|
1518 |
+
#: app/features/mec/meta_boxes/display_options.php:850
|
1519 |
#: app/libraries/main.php:410
|
1520 |
msgid "Saturday"
|
1521 |
msgstr ""
|
1522 |
|
1523 |
#: app/features/fes/form.php:372
|
1524 |
+
#: app/features/mec/meta_boxes/display_options.php:844
|
1525 |
#: app/libraries/main.php:410
|
1526 |
msgid "Sunday"
|
1527 |
msgstr ""
|
1562 |
|
1563 |
#: app/features/fes/form.php:783 app/features/labels.php:61
|
1564 |
#: app/features/labels.php:221 app/features/mec.php:404
|
1565 |
+
#: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:5336
|
1566 |
#: app/skins/single.php:702 app/skins/single/default.php:155
|
1567 |
+
#: app/skins/single/default.php:378 app/skins/single/m1.php:73
|
1568 |
+
#: app/skins/single/modern.php:228
|
1569 |
msgid "Labels"
|
1570 |
msgstr ""
|
1571 |
|
1648 |
msgid "Both of API key and Calendar ID are required!"
|
1649 |
msgstr ""
|
1650 |
|
1651 |
+
#: app/features/ix.php:2770 app/features/ix.php:3189 app/features/ix.php:3886
|
1652 |
msgid "Please select some events to import!"
|
1653 |
msgstr ""
|
1654 |
|
1660 |
msgid "Check at Meetup"
|
1661 |
msgstr ""
|
1662 |
|
1663 |
+
#: app/features/ix.php:3506 app/features/ix.php:3547
|
1664 |
msgid "Organizer Tel"
|
1665 |
msgstr ""
|
1666 |
|
1667 |
+
#: app/features/ix.php:3506 app/features/ix.php:3547
|
1668 |
msgid "Organizer Email"
|
1669 |
msgstr ""
|
1670 |
|
1671 |
+
#: app/features/ix.php:3622
|
1672 |
msgid "All of Client ID, Client Secret and Calendar ID are required!"
|
1673 |
msgstr ""
|
1674 |
|
1675 |
+
#: app/features/ix.php:3645
|
1676 |
#, php-format
|
1677 |
msgid "All seems good! Please click %s for authenticating your app."
|
1678 |
msgstr ""
|
1679 |
|
1680 |
+
#: app/features/ix.php:3699
|
1681 |
msgid "All of Client App, Client Secret and Calendar ID are required!"
|
1682 |
msgstr ""
|
1683 |
|
1684 |
+
#: app/features/ix.php:3815
|
1685 |
#, php-format
|
1686 |
msgid "%s events added to Google Calendar successfully."
|
1687 |
msgstr ""
|
1688 |
|
1689 |
+
#: app/features/ix.php:3816
|
1690 |
#, php-format
|
1691 |
msgid "%s previously added events get updated."
|
1692 |
msgstr ""
|
1693 |
|
1694 |
+
#: app/features/ix.php:3817
|
1695 |
#, php-format
|
1696 |
msgid "%s events failed to add for following reasons: %s"
|
1697 |
msgstr ""
|
1698 |
|
1699 |
+
#: app/features/ix.php:3849
|
1700 |
msgid "Please insert your Facebook page's link."
|
1701 |
msgstr ""
|
1702 |
|
1703 |
+
#: app/features/ix.php:3858
|
1704 |
msgid ""
|
1705 |
"We couldn't recognize your Facebook page. Please check it and provide us a "
|
1706 |
"valid Facebook page link."
|
1707 |
msgstr ""
|
1708 |
|
1709 |
+
#: app/features/ix.php:3890
|
1710 |
msgid "Please insert your facebook page's link."
|
1711 |
msgstr ""
|
1712 |
|
1713 |
+
#: app/features/ix.php:3895
|
1714 |
msgid ""
|
1715 |
"We couldn't recognize your Facebook page. Please check it and provide us a "
|
1716 |
"valid facebook page link."
|
1775 |
"This will export all of your website events' data into your desired format."
|
1776 |
msgstr ""
|
1777 |
|
1778 |
+
#: app/features/ix/export.php:25 app/features/mec/modules.php:179
|
1779 |
msgid "iCal"
|
1780 |
msgstr ""
|
1781 |
|
1880 |
msgid "Add to Google Calendar"
|
1881 |
msgstr ""
|
1882 |
|
1883 |
+
#: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:638
|
1884 |
+
#: app/features/mec/modules.php:398 app/features/mec/notifications.php:907
|
1885 |
+
#: app/features/mec/settings.php:1054 app/features/mec/single.php:297
|
1886 |
msgid "Checking ..."
|
1887 |
msgstr ""
|
1888 |
|
1925 |
msgstr ""
|
1926 |
|
1927 |
#: app/features/ix/import.php:46 app/features/mec/booking.php:91
|
1928 |
+
#: app/fea
|
|