Modern Events Calendar Lite - Version 4.6.0

Version Description

  • 18 September 2019
  • Added: Billing info to booking details page in backend (pro)
  • Added: An option to enable booking while event is on going (pro)
  • Added: Ticket time compatibility for 24 hours (pro)
  • Improved: Admin dashboard styles (Settings, Shortcodes, Add event - hard-refresh required)
  • Changed: Modern Events calendar icon in backend
  • Fixed: NiceSelect on frontend event submission
  • Fixed: ACF plugin conflict on shortcode page
  • Fixed: Event bulk edit
  • Fixed: Time dropdown in search form
  • Fixed: Some minor issues
Download this release

Release Info

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

Code changes from version 4.5.1 to 4.6.0

app/features/events.php CHANGED
@@ -129,6 +129,7 @@ class MEC_feature_events extends MEC_base
129
 
130
  $this->factory->action('admin_footer-edit.php', array($this, 'add_bulk_actions'));
131
  $this->factory->action('load-edit.php', array($this, 'do_bulk_actions'));
 
132
  }
133
 
134
  /**
@@ -157,7 +158,7 @@ class MEC_feature_events extends MEC_base
157
  ),
158
  'public' => true,
159
  'has_archive' => ($this->main->get_archive_status() ? true : false),
160
- 'menu_icon' => 'dashicons-calendar',
161
  'menu_position' => 26,
162
  'show_in_menu' => 'mec-intro',
163
  'rewrite' => array(
@@ -305,7 +306,41 @@ class MEC_feature_events extends MEC_base
305
  */
306
  public function meta_box_details($post)
307
  {
308
- do_action('mec_metabox_details', $post);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
309
  }
310
 
311
  /**
@@ -319,28 +354,7 @@ class MEC_feature_events extends MEC_base
319
  wp_nonce_field('mec_event_data', 'mec_event_nonce');
320
  }
321
 
322
- /**
323
- * Show cost option of event into the Add/Edit event page
324
- *
325
- * @author Webnus <info@webnus.biz>
326
- * @param object $post
327
- */
328
- public function meta_box_cost($post)
329
- {
330
- $cost = get_post_meta($post->ID, 'mec_cost', true);
331
- ?>
332
- <div class="mec-meta-box-fields" id="mec-cost">
333
- <h4><?php echo $this->main->m('event_cost', __('Event Cost', 'modern-events-calendar-lite')); ?></h4>
334
- <div id="mec_meta_box_cost_form">
335
- <div class="mec-form-row">
336
- <input type="text" class="mec-col-6" name="mec[cost]" id="mec_cost"
337
- value="<?php echo esc_attr($cost); ?>" placeholder="<?php _e('Cost', 'modern-events-calendar-lite'); ?>"/>
338
- </div>
339
- </div>
340
- </div>
341
- <?php
342
- }
343
-
344
  /**
345
  * Show date options of event into the Add/Edit event page
346
  *
@@ -429,14 +443,18 @@ class MEC_feature_events extends MEC_base
429
  $fes_guest_name = get_post_meta($post->ID, 'fes_guest_name', true);
430
  ?>
431
  <div class="mec-meta-box-fields" id="mec-date-time">
432
-
 
 
433
  <?php if ($note_visibility and trim($note)) : ?>
434
  <div class="mec-event-note">
435
  <h4><?php _e('Note for reviewer', 'modern-events-calendar-lite'); ?></h4>
436
  <p><?php echo $note; ?></p>
437
  </div>
438
  <?php endif; ?>
439
-
 
 
440
  <?php if (trim($fes_guest_email) and trim($fes_guest_name)) : ?>
441
  <div class="mec-guest-data">
442
  <h4><?php _e('Guest Data', 'modern-events-calendar-lite'); ?></h4>
@@ -445,8 +463,8 @@ class MEC_feature_events extends MEC_base
445
  </div>
446
  <?php endif; ?>
447
  <?php do_action('start_mec_custom_fields', $post); ?>
448
- <h4><?php _e('Date and Time', 'modern-events-calendar-lite'); ?></h4>
449
- <div id="mec_meta_box_date_form">
450
  <div class="mec-title">
451
  <span class="mec-dashicons dashicons dashicons-calendar-alt"></span>
452
  <label for="mec_start_date"><?php _e('Start Date', 'modern-events-calendar-lite'); ?></label>
@@ -679,7 +697,8 @@ class MEC_feature_events extends MEC_base
679
  </div>
680
  </div>
681
  </div>
682
- <div id="mec_meta_box_repeat_form">
 
683
  <div class="mec-form-row">
684
  <input
685
  <?php
@@ -1052,8 +1071,9 @@ class MEC_feature_events extends MEC_base
1052
  </div>
1053
  <div id="mec_end_wrapper">
1054
  <div class="mec-form-row">
1055
- <label for="mec_repeat_ends_never"><h4
1056
- class="mec-title"><?php _e('Ends Repeat', 'modern-events-calendar-lite'); ?></h4></label>
 
1057
  </div>
1058
  <div class="mec-form-row">
1059
  <input
@@ -1115,6 +1135,30 @@ class MEC_feature_events extends MEC_base
1115
  <?php
1116
  }
1117
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1118
  /**
1119
  * Show exceptions options of event into the Add/Edit event page
1120
  *
@@ -1126,7 +1170,7 @@ class MEC_feature_events extends MEC_base
1126
  $not_in_days_str = get_post_meta($post->ID, 'mec_not_in_days', true);
1127
  $not_in_days = trim($not_in_days_str) ? explode(',', $not_in_days_str) : array();
1128
  ?>
1129
- <div class="mec-meta-box-fields" id="mec-exceptional-days">
1130
  <h4><?php _e('Exceptional Days', 'modern-events-calendar-lite'); ?></h4>
1131
  <div id="mec_meta_box_exceptions_form">
1132
 
@@ -1219,7 +1263,7 @@ class MEC_feature_events extends MEC_base
1219
  )
1220
  );
1221
  ?>
1222
- <div class="mec-meta-box-fields" id="mec-hourly-schedule">
1223
  <h4><?php _e('Hourly Schedule', 'modern-events-calendar-lite'); ?></h4>
1224
  <div id="mec_meta_box_hourly_schedule_day_form">
1225
  <div class="mec-form-row">
@@ -1409,7 +1453,7 @@ class MEC_feature_events extends MEC_base
1409
  $more_info_title = get_post_meta($post->ID, 'mec_more_info_title', true);
1410
  $more_info_target = get_post_meta($post->ID, 'mec_more_info_target', true);
1411
  ?>
1412
- <div class="mec-meta-box-fields" id="mec-read-more">
1413
  <h4><?php _e('Event Links', 'modern-events-calendar-lite'); ?></h4>
1414
  <div class="mec-form-row">
1415
  <label class="mec-col-2"
@@ -1462,7 +1506,39 @@ class MEC_feature_events extends MEC_base
1462
  */
1463
  public function meta_box_booking($post)
1464
  {
1465
- do_action('mec_metabox_booking', $post);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1466
  }
1467
 
1468
  /**
@@ -1484,7 +1560,7 @@ class MEC_feature_events extends MEC_base
1484
  $bookings_user_limit_unlimited = isset($booking_options['bookings_user_limit_unlimited']) ? $booking_options['bookings_user_limit_unlimited'] : true;
1485
  ?>
1486
  <div id="mec-booking">
1487
- <div class="mec-meta-box-fields" id="mec_meta_box_booking_options_form">
1488
  <label for="mec_bookings_limit"><h4 class="mec-title"><?php _e('Total booking limits', 'modern-events-calendar-lite'); ?></h4>
1489
  </label>
1490
  <div class="mec-form-row">
@@ -1516,7 +1592,7 @@ class MEC_feature_events extends MEC_base
1516
  value="<?php echo esc_attr($bookings_limit); ?>" placeholder="<?php _e('100', 'modern-events-calendar-lite'); ?>"/>
1517
  </div>
1518
  </div>
1519
- <div class="mec-meta-box-fields" id="mec_meta_box_booking_options_form">
1520
  <label for="mec_bookings_user_limit">
1521
  <h4 class="mec-title"><?php _e('Total user booking limits', 'modern-events-calendar-lite'); ?></h4>
1522
  </label>
@@ -1553,7 +1629,7 @@ class MEC_feature_events extends MEC_base
1553
  $tickets = array();
1554
  }
1555
  ?>
1556
- <div class="mec-meta-box-fields" id="mec-tickets">
1557
  <h4 class="mec-meta-box-header"><?php echo $this->main->m('tickets', __('Tickets', 'modern-events-calendar-lite')); ?></h4>
1558
 
1559
  <?php if ($post->ID != $this->main->get_original_event($post->ID)) : ?>
@@ -1583,14 +1659,27 @@ class MEC_feature_events extends MEC_base
1583
  <div class="mec-ticket-start-time mec-col-12">
1584
  <span><?php esc_html_e('Start Time', 'modern-events-calendar-lite'); ?></span>
1585
  <select name="mec[tickets][<?php echo $key; ?>][ticket_start_time_hour]">
1586
- <?php for ($j = 1; $j <= 12; $j++) : ?>
 
 
 
 
 
 
 
 
 
 
 
 
1587
  <option
1588
  <?php
1589
- if ($ticket['ticket_start_time_hour'] == $j) {
 
1590
  echo 'selected="selected"';
1591
  }
1592
  ?>
1593
- value="<?php echo $j; ?>"><?php echo $j; ?></option>
1594
  <?php endfor; ?>
1595
  </select>
1596
  <span class="time-dv">:</span>
@@ -1605,6 +1694,8 @@ class MEC_feature_events extends MEC_base
1605
  value="<?php echo($k * 5); ?>"><?php echo sprintf('%02d', ($k * 5)); ?></option>
1606
  <?php endfor; ?>
1607
  </select>
 
 
1608
  <select name="mec[tickets][<?php echo $key; ?>][ticket_start_time_ampm]">
1609
  <option
1610
  <?php
@@ -1621,19 +1712,34 @@ class MEC_feature_events extends MEC_base
1621
  ?>
1622
  value="PM"><?php _e('PM', 'modern-events-calendar-lite'); ?></option>
1623
  </select>
 
 
1624
  </div>
1625
  <div class="mec-ticket-end-time mec-col-12">
1626
  <span><?php esc_html_e('End Time', 'modern-events-calendar-lite'); ?></span>
1627
  <select name="mec[tickets][<?php echo $key; ?>][ticket_end_time_hour]">
1628
- <?php for ($j = 1; $j <= 12; $j++) : ?>
 
 
 
 
 
 
 
 
 
 
 
 
1629
  <option
1630
  <?php
1631
- if ($ticket['ticket_end_time_hour'] == $j) {
 
1632
  echo 'selected="selected"';
1633
  }
1634
  ?>
1635
- value="<?php echo $j; ?>"><?php echo $j; ?></option>
1636
- <?php endfor; ?>
1637
  </select>
1638
  <span class="time-dv">:</span>
1639
  <select name="mec[tickets][<?php echo $key; ?>][ticket_end_time_minute]">
@@ -1647,6 +1753,8 @@ class MEC_feature_events extends MEC_base
1647
  value="<?php echo($k * 5); ?>"><?php echo sprintf('%02d', ($k * 5)); ?></option>
1648
  <?php endfor; ?>
1649
  </select>
 
 
1650
  <select name="mec[tickets][<?php echo $key; ?>][ticket_end_time_ampm]">
1651
  <option
1652
  <?php
@@ -1663,6 +1771,8 @@ class MEC_feature_events extends MEC_base
1663
  ?>
1664
  value="PM"><?php _e('PM', 'modern-events-calendar-lite'); ?></option>
1665
  </select>
 
 
1666
  </div>
1667
  </div>
1668
  <div class="mec-form-row">
@@ -1804,15 +1914,17 @@ class MEC_feature_events extends MEC_base
1804
  <div class="mec-ticket-start-time mec-col-12">
1805
  <span><?php esc_html_e('Start Time', 'modern-events-calendar-lite'); ?></span>
1806
  <select name="mec[tickets][:i:][ticket_start_time_hour]">
1807
- <?php for ($j = 1; $j <= 12; $j++) : ?>
 
 
1808
  <option
1809
  <?php
1810
  if (8 == $j) {
1811
  echo 'selected="selected"';
1812
  }
1813
  ?>
1814
- value="<?php echo $j; ?>"><?php echo $j; ?></option>
1815
- <?php endfor; ?>
1816
  </select>
1817
  <span class="time-dv">:</span>
1818
  <select name="mec[tickets][:i:][ticket_start_time_minute]">
@@ -1820,23 +1932,38 @@ class MEC_feature_events extends MEC_base
1820
  <option value="<?php echo($k * 5); ?>"><?php echo sprintf('%02d', ($k * 5)); ?></option>
1821
  <?php endfor; ?>
1822
  </select>
 
 
1823
  <select name="mec[tickets][:i:][ticket_start_time_ampm]">
1824
  <option selected="selected" value="AM"><?php _e('AM', 'modern-events-calendar-lite'); ?></option>
1825
  <option value="PM"><?php _e('PM', 'modern-events-calendar-lite'); ?></option>
1826
  </select>
 
 
1827
  </div>
1828
  <div class="mec-ticket-start-time mec-col-12">
1829
  <span><?php esc_html_e('End Time', 'modern-events-calendar-lite'); ?></span>
1830
  <select name="mec[tickets][:i:][ticket_end_time_hour]">
1831
- <?php for ($j = 1; $j <= 12; $j++) : ?>
1832
- <option
1833
- <?php
1834
- if (6 == $j) {
1835
- echo 'selected="selected"';
1836
- }
1837
- ?>
1838
- value="<?php echo $j; ?>"><?php echo $j; ?></option>
1839
- <?php endfor; ?>
 
 
 
 
 
 
 
 
 
 
 
1840
  </select>
1841
  <span class="time-dv">:</span>
1842
  <select name="mec[tickets][:i:][ticket_end_time_minute]">
@@ -1844,10 +1971,14 @@ class MEC_feature_events extends MEC_base
1844
  <option value="<?php echo($k * 5); ?>"><?php echo sprintf('%02d', ($k * 5)); ?></option>
1845
  <?php endfor; ?>
1846
  </select>
 
 
1847
  <select name="mec[tickets][:i:][ticket_end_time_ampm]">
1848
  <option value="AM"><?php _e('AM', 'modern-events-calendar-lite'); ?></option>
1849
  <option selected="selected" value="PM"><?php _e('PM', 'modern-events-calendar-lite'); ?></option>
1850
  </select>
 
 
1851
  </div>
1852
  </div>
1853
  <div class="mec-form-row">
@@ -1955,7 +2086,7 @@ class MEC_feature_events extends MEC_base
1955
  $fees = array();
1956
  }
1957
  ?>
1958
- <div class="mec-meta-box-fields" id="mec-fees">
1959
  <h4 class="mec-meta-box-header"><?php _e('Fees', 'modern-events-calendar-lite'); ?></h4>
1960
  <div id="mec_meta_box_fees_form">
1961
  <div class="mec-form-row">
@@ -2087,7 +2218,7 @@ class MEC_feature_events extends MEC_base
2087
  $ticket_variations = array();
2088
  }
2089
  ?>
2090
- <div class="mec-meta-box-fields" id="mec-ticket-variations">
2091
  <h4 class="mec-meta-box-header"><?php _e('Ticket Variations / Options', 'modern-events-calendar-lite'); ?></h4>
2092
  <div id="mec_meta_box_ticket_variations_form">
2093
  <div class="mec-form-row">
@@ -2275,7 +2406,7 @@ class MEC_feature_events extends MEC_base
2275
  }
2276
 
2277
  ?>
2278
- <div class="mec-meta-box-fields" id="mec-reg-fields">
2279
  <h4 class="mec-meta-box-header"><?php _e('Booking Form', 'modern-events-calendar-lite'); ?></h4>
2280
  <div id="mec_meta_box_reg_fields_form">
2281
  <div class="mec-form-row">
@@ -2859,16 +2990,28 @@ class MEC_feature_events extends MEC_base
2859
  unset($tickets[':i:']);
2860
 
2861
  // Unset Ticket Dats
2862
- if (count($tickets)) {
 
2863
  $new_tickets = array();
2864
- foreach ($tickets as $key => $ticket) {
 
2865
  unset($ticket['dates'][':j:']);
 
 
 
 
 
 
 
 
 
 
2866
  $new_tickets[$key] = $ticket;
2867
  }
2868
 
2869
  $tickets = $new_tickets;
2870
  }
2871
-
2872
  update_post_meta($post_id, 'mec_tickets', $tickets);
2873
 
2874
  // Fee options
@@ -3413,4 +3556,76 @@ class MEC_feature_events extends MEC_base
3413
  wp_redirect('post.php?post=' . $new_post_id . '&action=edit');
3414
  exit;
3415
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3416
  }
129
 
130
  $this->factory->action('admin_footer-edit.php', array($this, 'add_bulk_actions'));
131
  $this->factory->action('load-edit.php', array($this, 'do_bulk_actions'));
132
+ $this->factory->action('pre_post_update', array($this, 'bulk_edit'), 10);
133
  }
134
 
135
  /**
158
  ),
159
  'public' => true,
160
  'has_archive' => ($this->main->get_archive_status() ? true : false),
161
+ 'menu_icon' => plugin_dir_url(__FILE__ ) . '../../assets/img/mec.svg',
162
  'menu_position' => 26,
163
  'show_in_menu' => 'mec-intro',
164
  'rewrite' => array(
306
  */
307
  public function meta_box_details($post)
308
  {
309
+ global $post;
310
+ $note = get_post_meta($post->ID, 'mec_note', true);
311
+ $note_visibility = $this->main->is_note_visible($post->post_status);
312
+
313
+ $fes_guest_email = get_post_meta($post->ID, 'fes_guest_email', true);
314
+ $fes_guest_name = get_post_meta($post->ID, 'fes_guest_name', true);
315
+ ?>
316
+ <div class="mec-add-event-tabs-wrap">
317
+ <div class="mec-add-event-tabs-left">
318
+ <?php if ( ($note_visibility and trim($note)) || (trim($fes_guest_email) and trim($fes_guest_name)) ) : ?>
319
+ <a class="mec-add-event-tabs-link" data-href="mec_meta_box_fes_form" href="#"><?php echo esc_html('FES Details' ,'modern-events-calendar-lite'); ?></a>
320
+ <?php endif; ?>
321
+ <a class="mec-add-event-tabs-link mec-tab-active" data-href="mec_meta_box_date_form" href="#"><?php echo esc_html('Date And Time' ,'modern-events-calendar-lite'); ?></a>
322
+ <a class="mec-add-event-tabs-link" data-href="mec_meta_box_repeat_form" href="#"><?php echo esc_html('Event Repeating' ,'modern-events-calendar-lite'); ?></a>
323
+ <a class="mec-add-event-tabs-link" data-href="mec-exceptional-days" href="#"><?php echo esc_html('Exceptional Days' ,'modern-events-calendar-lite'); ?></a>
324
+ <a class="mec-add-event-tabs-link" data-href="mec-hourly-schedule" href="#"><?php echo esc_html('Hourly Schedule' ,'modern-events-calendar-lite'); ?></a>
325
+ <a class="mec-add-event-tabs-link" data-href="mec-location" href="#"><?php echo esc_html('Location/Venue' ,'modern-events-calendar-lite'); ?></a>
326
+ <a class="mec-add-event-tabs-link" data-href="mec-read-more" href="#"><?php echo esc_html('Links' ,'modern-events-calendar-lite'); ?></a>
327
+ <a class="mec-add-event-tabs-link" data-href="mec-organizer" href="#"><?php echo esc_html('Organizer' ,'modern-events-calendar-lite'); ?></a>
328
+ <a class="mec-add-event-tabs-link" data-href="mec-cost" href="#"><?php echo esc_html('Cost' ,'modern-events-calendar-lite'); ?></a>
329
+ </div>
330
+ <div class="mec-add-event-tabs-right">
331
+ <?php do_action('mec_metabox_details', $post); ?>
332
+ </div>
333
+ </div>
334
+ <script>
335
+ jQuery(".mec-add-event-tabs-link").on("click", function (e) {
336
+ e.preventDefault();
337
+ var href = jQuery(this).attr("data-href");
338
+ jQuery(".mec-event-tab-content,.mec-add-event-tabs-link").removeClass("mec-tab-active");
339
+ jQuery(this).addClass("mec-tab-active");
340
+ jQuery("#" + href ).addClass("mec-tab-active");
341
+ });
342
+ </script>
343
+ <?php
344
  }
345
 
346
  /**
354
  wp_nonce_field('mec_event_data', 'mec_event_nonce');
355
  }
356
 
357
+
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
358
  /**
359
  * Show date options of event into the Add/Edit event page
360
  *
443
  $fes_guest_name = get_post_meta($post->ID, 'fes_guest_name', true);
444
  ?>
445
  <div class="mec-meta-box-fields" id="mec-date-time">
446
+ <?php if ( ($note_visibility and trim($note)) || (trim($fes_guest_email) and trim($fes_guest_name)) ) : ?>
447
+ <div id="mec_meta_box_fes_form" class="mec-event-tab-content">
448
+ <?php endif; ?>
449
  <?php if ($note_visibility and trim($note)) : ?>
450
  <div class="mec-event-note">
451
  <h4><?php _e('Note for reviewer', 'modern-events-calendar-lite'); ?></h4>
452
  <p><?php echo $note; ?></p>
453
  </div>
454
  <?php endif; ?>
455
+ <?php if ( ($note_visibility and trim($note)) || (trim($fes_guest_email) and trim($fes_guest_name)) ) : ?>
456
+ </div>
457
+ <?php endif; ?>
458
  <?php if (trim($fes_guest_email) and trim($fes_guest_name)) : ?>
459
  <div class="mec-guest-data">
460
  <h4><?php _e('Guest Data', 'modern-events-calendar-lite'); ?></h4>
463
  </div>
464
  <?php endif; ?>
465
  <?php do_action('start_mec_custom_fields', $post); ?>
466
+ <div id="mec_meta_box_date_form" class="mec-tab-active mec-event-tab-content">
467
+ <h4><?php _e('Date and Time', 'modern-events-calendar-lite'); ?></h4>
468
  <div class="mec-title">
469
  <span class="mec-dashicons dashicons dashicons-calendar-alt"></span>
470
  <label for="mec_start_date"><?php _e('Start Date', 'modern-events-calendar-lite'); ?></label>
697
  </div>
698
  </div>
699
  </div>
700
+ <div id="mec_meta_box_repeat_form" class="mec-event-tab-content">
701
+ <h4><?php _e('Repeating', 'modern-events-calendar-lite'); ?></h4>
702
  <div class="mec-form-row">
703
  <input
704
  <?php
1071
  </div>
1072
  <div id="mec_end_wrapper">
1073
  <div class="mec-form-row">
1074
+ <label for="mec_repeat_ends_never">
1075
+ <h4 class="mec-title"><?php _e('Ends Repeat', 'modern-events-calendar-lite'); ?></h4>
1076
+ </label>
1077
  </div>
1078
  <div class="mec-form-row">
1079
  <input
1135
  <?php
1136
  }
1137
 
1138
+ /**
1139
+ * Show cost option of event into the Add/Edit event page
1140
+ *
1141
+ * @author Webnus <info@webnus.biz>
1142
+ * @param object $post
1143
+ */
1144
+ public function meta_box_cost($post)
1145
+ {
1146
+ $cost = get_post_meta($post->ID, 'mec_cost', true);
1147
+ ?>
1148
+ <div class="mec-meta-box-fields mec-event-tab-content" id="mec-cost">
1149
+ <h4><?php echo $this->main->m('event_cost', __('Event Cost', 'modern-events-calendar-lite')); ?></h4>
1150
+ <div id="mec_meta_box_cost_form">
1151
+ <div class="mec-form-row">
1152
+ <input type="text" class="mec-col-6" name="mec[cost]" id="mec_cost"
1153
+ value="<?php echo esc_attr($cost); ?>" placeholder="<?php _e('Cost', 'modern-events-calendar-lite'); ?>"/>
1154
+ </div>
1155
+ </div>
1156
+ </div>
1157
+ <?php
1158
+ }
1159
+
1160
+
1161
+
1162
  /**
1163
  * Show exceptions options of event into the Add/Edit event page
1164
  *
1170
  $not_in_days_str = get_post_meta($post->ID, 'mec_not_in_days', true);
1171
  $not_in_days = trim($not_in_days_str) ? explode(',', $not_in_days_str) : array();
1172
  ?>
1173
+ <div class="mec-meta-box-fields mec-event-tab-content" id="mec-exceptional-days">
1174
  <h4><?php _e('Exceptional Days', 'modern-events-calendar-lite'); ?></h4>
1175
  <div id="mec_meta_box_exceptions_form">
1176
 
1263
  )
1264
  );
1265
  ?>
1266
+ <div class="mec-meta-box-fields mec-event-tab-content" id="mec-hourly-schedule">
1267
  <h4><?php _e('Hourly Schedule', 'modern-events-calendar-lite'); ?></h4>
1268
  <div id="mec_meta_box_hourly_schedule_day_form">
1269
  <div class="mec-form-row">
1453
  $more_info_title = get_post_meta($post->ID, 'mec_more_info_title', true);
1454
  $more_info_target = get_post_meta($post->ID, 'mec_more_info_target', true);
1455
  ?>
1456
+ <div class="mec-meta-box-fields mec-event-tab-content" id="mec-read-more">
1457
  <h4><?php _e('Event Links', 'modern-events-calendar-lite'); ?></h4>
1458
  <div class="mec-form-row">
1459
  <label class="mec-col-2"
1506
  */
1507
  public function meta_box_booking($post)
1508
  {
1509
+ $gateway_settings = $this->main->get_gateways_options()
1510
+ ?>
1511
+ <div class="mec-add-booking-tabs-wrap">
1512
+ <div class="mec-add-booking-tabs-left">
1513
+ <a class="mec-add-booking-tabs-link mec-tab-active" data-href="mec_meta_box_booking_options_form_1" href="#"><?php echo esc_html('Total Booking Limits' ,'modern-events-calendar-lite'); ?></a>
1514
+ <a class="mec-add-booking-tabs-link" data-href="mec_meta_box_booking_options_form_2" href="#"><?php echo esc_html('Total User Booking Limits' ,'modern-events-calendar-lite'); ?></a>
1515
+ <a class="mec-add-booking-tabs-link" data-href="mec-tickets" href="#"><?php echo esc_html('Tickets' ,'modern-events-calendar-lite'); ?></a>
1516
+ <?php if(isset($this->settings['taxes_fees_status']) and $this->settings['taxes_fees_status']) : ?>
1517
+ <a class="mec-add-booking-tabs-link" data-href="mec-fees" href="#"><?php echo esc_html('Fees' ,'modern-events-calendar-lite'); ?></a>
1518
+ <?php endif; ?>
1519
+ <?php if(isset($this->settings['ticket_variations_status']) and $this->settings['ticket_variations_status']) : ?>
1520
+ <a class="mec-add-booking-tabs-link" data-href="mec-ticket-variations" href="#"><?php echo esc_html('Ticket Variations / Options' ,'modern-events-calendar-lite'); ?></a>
1521
+ <?php endif; ?>
1522
+ <a class="mec-add-booking-tabs-link" data-href="mec-reg-fields" href="#"><?php echo esc_html('Booking Form' ,'modern-events-calendar-lite'); ?></a>
1523
+ <?php if ( isset( $gateway_settings['op_status'] ) && $gateway_settings['op_status'] == 1 ) : ?>
1524
+ <a class="mec-add-booking-tabs-link" data-href="mec_meta_box_op_form" href="#"><?php echo esc_html('Organizer Payment' ,'modern-events-calendar-lite'); ?></a>
1525
+ <?php endif; ?>
1526
+ </div>
1527
+ <div class="mec-add-booking-tabs-right">
1528
+ <?php do_action('mec_metabox_booking', $post); ?>
1529
+ </div>
1530
+ </div>
1531
+ <script>
1532
+ jQuery(".mec-add-booking-tabs-link").on("click", function (e) {
1533
+ console.log(jQuery(this));
1534
+ e.preventDefault();
1535
+ var href = jQuery(this).attr("data-href");
1536
+ jQuery(".mec-booking-tab-content,.mec-add-booking-tabs-link").removeClass("mec-tab-active");
1537
+ jQuery(this).addClass("mec-tab-active");
1538
+ jQuery("#" + href ).addClass("mec-tab-active");
1539
+ });
1540
+ </script>
1541
+ <?php
1542
  }
1543
 
1544
  /**
1560
  $bookings_user_limit_unlimited = isset($booking_options['bookings_user_limit_unlimited']) ? $booking_options['bookings_user_limit_unlimited'] : true;
1561
  ?>
1562
  <div id="mec-booking">
1563
+ <div class="mec-meta-box-fields mec-booking-tab-content mec-tab-active" id="mec_meta_box_booking_options_form_1">
1564
  <label for="mec_bookings_limit"><h4 class="mec-title"><?php _e('Total booking limits', 'modern-events-calendar-lite'); ?></h4>
1565
  </label>
1566
  <div class="mec-form-row">
1592
  value="<?php echo esc_attr($bookings_limit); ?>" placeholder="<?php _e('100', 'modern-events-calendar-lite'); ?>"/>
1593
  </div>
1594
  </div>
1595
+ <div class="mec-meta-box-fields mec-booking-tab-content" id="mec_meta_box_booking_options_form_2">
1596
  <label for="mec_bookings_user_limit">
1597
  <h4 class="mec-title"><?php _e('Total user booking limits', 'modern-events-calendar-lite'); ?></h4>
1598
  </label>
1629
  $tickets = array();
1630
  }
1631
  ?>
1632
+ <div class="mec-meta-box-fields mec-booking-tab-content" id="mec-tickets">
1633
  <h4 class="mec-meta-box-header"><?php echo $this->main->m('tickets', __('Tickets', 'modern-events-calendar-lite')); ?></h4>
1634
 
1635
  <?php if ($post->ID != $this->main->get_original_event($post->ID)) : ?>
1659
  <div class="mec-ticket-start-time mec-col-12">
1660
  <span><?php esc_html_e('Start Time', 'modern-events-calendar-lite'); ?></span>
1661
  <select name="mec[tickets][<?php echo $key; ?>][ticket_start_time_hour]">
1662
+ <?php if(!isset($this->settings['time_format']) or (isset($this->settings['time_format']) and $this->settings['time_format'] != 24))
1663
+ {
1664
+ $hour_format = 'h';
1665
+ $count_info = array('start'=>1, 'length'=>12);
1666
+ }
1667
+ else
1668
+ {
1669
+ $hour_format = 'H';
1670
+ $count_info = array('start'=>0, 'length'=>23);
1671
+ }
1672
+
1673
+ $render_hour = date($hour_format, strtotime(sprintf('%02d', $ticket['ticket_start_time_hour']) . ':' . sprintf('%02d', $ticket['ticket_start_time_minute']) . strtoupper($ticket['ticket_start_time_ampm'])));
1674
+ for ($j = $count_info['start']; $j <= $count_info['length']; $j++) : ?>
1675
  <option
1676
  <?php
1677
+ if ($render_hour == $j)
1678
+ {
1679
  echo 'selected="selected"';
1680
  }
1681
  ?>
1682
+ value="<?php echo $j; ?>"><?php echo sprintf('%02d', $j); ?></option>
1683
  <?php endfor; ?>
1684
  </select>
1685
  <span class="time-dv">:</span>
1694
  value="<?php echo($k * 5); ?>"><?php echo sprintf('%02d', ($k * 5)); ?></option>
1695
  <?php endfor; ?>
1696
  </select>
1697
+ <!-----Start AM/PM Section----->
1698
+ <?php if(!isset($this->settings['time_format']) or (isset($this->settings['time_format']) and $this->settings['time_format'] != 24)): ?>
1699
  <select name="mec[tickets][<?php echo $key; ?>][ticket_start_time_ampm]">
1700
  <option
1701
  <?php
1712
  ?>
1713
  value="PM"><?php _e('PM', 'modern-events-calendar-lite'); ?></option>
1714
  </select>
1715
+ <?php endif; ?>
1716
+ <!-----End AM/PM Section----->
1717
  </div>
1718
  <div class="mec-ticket-end-time mec-col-12">
1719
  <span><?php esc_html_e('End Time', 'modern-events-calendar-lite'); ?></span>
1720
  <select name="mec[tickets][<?php echo $key; ?>][ticket_end_time_hour]">
1721
+ <?php if(!isset($this->settings['time_format']) or (isset($this->settings['time_format']) and $this->settings['time_format'] != 24))
1722
+ {
1723
+ $hour_format = 'h';
1724
+ $count_info = array('start'=>1, 'length'=>12);
1725
+ }
1726
+ else
1727
+ {
1728
+ $hour_format = 'H';
1729
+ $count_info = array('start'=>0, 'length'=>23);
1730
+ }
1731
+
1732
+ $render_hour = date($hour_format, strtotime(sprintf('%02d', $ticket['ticket_end_time_hour']) . ':' . sprintf('%02d', $ticket['ticket_end_time_minute']) . strtoupper($ticket['ticket_end_time_ampm'])));
1733
+ for ($j = $count_info['start']; $j <= $count_info['length']; $j++) : ?>
1734
  <option
1735
  <?php
1736
+ if ($render_hour == $j)
1737
+ {
1738
  echo 'selected="selected"';
1739
  }
1740
  ?>
1741
+ value="<?php echo $j; ?>"><?php echo sprintf('%02d', $j); ?></option>
1742
+ <?php endfor; ?>
1743
  </select>
1744
  <span class="time-dv">:</span>
1745
  <select name="mec[tickets][<?php echo $key; ?>][ticket_end_time_minute]">
1753
  value="<?php echo($k * 5); ?>"><?php echo sprintf('%02d', ($k * 5)); ?></option>
1754
  <?php endfor; ?>
1755
  </select>
1756
+ <!-----Start AM/PM Section----->
1757
+ <?php if(!isset($this->settings['time_format']) or (isset($this->settings['time_format']) and $this->settings['time_format'] != 24)): ?>
1758
  <select name="mec[tickets][<?php echo $key; ?>][ticket_end_time_ampm]">
1759
  <option
1760
  <?php
1771
  ?>
1772
  value="PM"><?php _e('PM', 'modern-events-calendar-lite'); ?></option>
1773
  </select>
1774
+ <?php endif; ?>
1775
+ <!-----End AM/PM Section----->
1776
  </div>
1777
  </div>
1778
  <div class="mec-form-row">
1914
  <div class="mec-ticket-start-time mec-col-12">
1915
  <span><?php esc_html_e('Start Time', 'modern-events-calendar-lite'); ?></span>
1916
  <select name="mec[tickets][:i:][ticket_start_time_hour]">
1917
+ <?php if(!isset($this->settings['time_format']) or (isset($this->settings['time_format']) and $this->settings['time_format'] != 24)) $count_info = array('start' => 1, 'length' => 12);
1918
+ else $count_info = array('start' => 0, 'length' => 23);
1919
+ for ($j = $count_info['start']; $j <= $count_info['length']; $j++) : ?>
1920
  <option
1921
  <?php
1922
  if (8 == $j) {
1923
  echo 'selected="selected"';
1924
  }
1925
  ?>
1926
+ value="<?php echo $j; ?>"><?php echo sprintf('%02d', $j); ?></option>
1927
+ <?php endfor;?>
1928
  </select>
1929
  <span class="time-dv">:</span>
1930
  <select name="mec[tickets][:i:][ticket_start_time_minute]">
1932
  <option value="<?php echo($k * 5); ?>"><?php echo sprintf('%02d', ($k * 5)); ?></option>
1933
  <?php endfor; ?>
1934
  </select>
1935
+ <!------ Start Ticket AM/PM Section ------>
1936
+ <?php if(!isset($this->settings['time_format']) or (isset($this->settings['time_format']) and $this->settings['time_format'] != 24)): ?>
1937
  <select name="mec[tickets][:i:][ticket_start_time_ampm]">
1938
  <option selected="selected" value="AM"><?php _e('AM', 'modern-events-calendar-lite'); ?></option>
1939
  <option value="PM"><?php _e('PM', 'modern-events-calendar-lite'); ?></option>
1940
  </select>
1941
+ <?php endif; ?>
1942
+ <!------ End Ticket AM/PM Section ------>
1943
  </div>
1944
  <div class="mec-ticket-start-time mec-col-12">
1945
  <span><?php esc_html_e('End Time', 'modern-events-calendar-lite'); ?></span>
1946
  <select name="mec[tickets][:i:][ticket_end_time_hour]">
1947
+ <?php if(!isset($this->settings['time_format']) or (isset($this->settings['time_format']) and $this->settings['time_format'] != 24))
1948
+ {
1949
+ $count_info = array('start' => 1, 'length' => 12);
1950
+ $end_selected = 6;
1951
+ }
1952
+ else
1953
+ {
1954
+ $count_info = array('start' => 0, 'length' => 23);
1955
+ $end_selected = 18;
1956
+ }
1957
+ for ($j = $count_info['start']; $j <= $count_info['length']; $j++) : ?>
1958
+ <option
1959
+ <?php
1960
+ if ($end_selected == $j)
1961
+ {
1962
+ echo 'selected="selected"';
1963
+ }
1964
+ ?>
1965
+ value="<?php echo $j; ?>"><?php echo sprintf('%02d', $j); ?></option>
1966
+ <?php endfor;?>
1967
  </select>
1968
  <span class="time-dv">:</span>
1969
  <select name="mec[tickets][:i:][ticket_end_time_minute]">
1971
  <option value="<?php echo($k * 5); ?>"><?php echo sprintf('%02d', ($k * 5)); ?></option>
1972
  <?php endfor; ?>
1973
  </select>
1974
+ <!------ Start Ticket AM/PM Section ------>
1975
+ <?php if(!isset($this->settings['time_format']) or (isset($this->settings['time_format']) and $this->settings['time_format'] != 24)): ?>
1976
  <select name="mec[tickets][:i:][ticket_end_time_ampm]">
1977
  <option value="AM"><?php _e('AM', 'modern-events-calendar-lite'); ?></option>
1978
  <option selected="selected" value="PM"><?php _e('PM', 'modern-events-calendar-lite'); ?></option>
1979
  </select>
1980
+ <?php endif; ?>
1981
+ <!------ End Ticket AM/PM Section ------>
1982
  </div>
1983
  </div>
1984
  <div class="mec-form-row">
2086
  $fees = array();
2087
  }
2088
  ?>
2089
+ <div class="mec-meta-box-fields mec-booking-tab-content" id="mec-fees">
2090
  <h4 class="mec-meta-box-header"><?php _e('Fees', 'modern-events-calendar-lite'); ?></h4>
2091
  <div id="mec_meta_box_fees_form">
2092
  <div class="mec-form-row">
2218
  $ticket_variations = array();
2219
  }
2220
  ?>
2221
+ <div class="mec-meta-box-fields mec-booking-tab-content" id="mec-ticket-variations">
2222
  <h4 class="mec-meta-box-header"><?php _e('Ticket Variations / Options', 'modern-events-calendar-lite'); ?></h4>
2223
  <div id="mec_meta_box_ticket_variations_form">
2224
  <div class="mec-form-row">
2406
  }
2407
 
2408
  ?>
2409
+ <div class="mec-meta-box-fields mec-booking-tab-content" id="mec-reg-fields">
2410
  <h4 class="mec-meta-box-header"><?php _e('Booking Form', 'modern-events-calendar-lite'); ?></h4>
2411
  <div id="mec_meta_box_reg_fields_form">
2412
  <div class="mec-form-row">
2990
  unset($tickets[':i:']);
2991
 
2992
  // Unset Ticket Dats
2993
+ if (count($tickets))
2994
+ {
2995
  $new_tickets = array();
2996
+ foreach ($tickets as $key => $ticket)
2997
+ {
2998
  unset($ticket['dates'][':j:']);
2999
+ $ticket_start_time_ampm = ((intval($ticket['ticket_start_time_hour']) > 0 and intval($ticket['ticket_start_time_hour']) < 13) and isset($ticket['ticket_start_time_ampm'])) ? $ticket['ticket_start_time_ampm'] : '';
3000
+ $ticket_render_start_time = date('h:ia', strtotime(sprintf('%02d', $ticket['ticket_start_time_hour']) . ':' . sprintf('%02d', $ticket['ticket_start_time_minute']) . $ticket_start_time_ampm));
3001
+ $ticket_end_time_ampm = ((intval($ticket['ticket_end_time_hour']) > 0 and intval($ticket['ticket_end_time_hour']) < 13) and isset($ticket['ticket_end_time_ampm'])) ? $ticket['ticket_end_time_ampm'] : '';
3002
+ $ticket_render_end_time = date('h:ia', strtotime(sprintf('%02d', $ticket['ticket_end_time_hour']) . ':' . sprintf('%02d', $ticket['ticket_end_time_minute']) . $ticket_end_time_ampm));
3003
+
3004
+ $ticket['ticket_start_time_hour'] = substr($ticket_render_start_time, 0, 2);
3005
+ $ticket['ticket_start_time_ampm'] = strtoupper(substr($ticket_render_start_time, 5, 6));
3006
+ $ticket['ticket_end_time_hour'] = substr($ticket_render_end_time, 0, 2);
3007
+ $ticket['ticket_end_time_ampm'] = strtoupper(substr($ticket_render_end_time, 5, 6));
3008
+
3009
  $new_tickets[$key] = $ticket;
3010
  }
3011
 
3012
  $tickets = $new_tickets;
3013
  }
3014
+
3015
  update_post_meta($post_id, 'mec_tickets', $tickets);
3016
 
3017
  // Fee options
3556
  wp_redirect('post.php?post=' . $new_post_id . '&action=edit');
3557
  exit;
3558
  }
3559
+
3560
+ /**
3561
+ * Do bulk edit Action
3562
+ *
3563
+ * @author Webnus <info@webnus.biz>
3564
+ * @return void
3565
+ */
3566
+ public function bulk_edit()
3567
+ {
3568
+ $post_ids = (isset($_GET['post']) and !empty($_GET['post'])) ? array_map('sanitize_text_field', wp_unslash($_GET['post'])) : array();
3569
+ if(!is_array($post_ids) or !count($post_ids)) return;
3570
+
3571
+ $mec_locations = (isset($_GET['tax_input']['mec_location']) and trim($_GET['tax_input']['mec_location'])) ? array_filter(explode(',', sanitize_text_field($_GET['tax_input']['mec_location']))) : NULL;
3572
+ $mec_organizers = (isset($_GET['tax_input']['mec_organizer']) and trim($_GET['tax_input']['mec_organizer'])) ? array_filter(explode(',', sanitize_text_field($_GET['tax_input']['mec_organizer']))) : NULL;
3573
+
3574
+ foreach($post_ids as $post_id)
3575
+ {
3576
+ // MEC Location Bulk Edit
3577
+ if(!is_null($mec_locations))
3578
+ {
3579
+ $term_location = current($mec_locations);
3580
+ if(!term_exists($term_location, 'mec_location')) wp_insert_term($term_location, 'mec_location', array());
3581
+
3582
+ $location_id = get_term_by('name', $term_location, 'mec_location')->term_id;
3583
+ update_post_meta($post_id, 'mec_location_id', $location_id);
3584
+
3585
+ if(count($mec_locations) > 1)
3586
+ {
3587
+ // Additional locations
3588
+ $additional_location_ids = array();
3589
+
3590
+ for($i = 1; $i < count($mec_locations); $i++)
3591
+ {
3592
+ if(!term_exists($mec_locations[$i], 'mec_location')) wp_insert_term($mec_locations[$i], 'mec_location', array());
3593
+
3594
+ $additional_location_id = get_term_by('name', $mec_locations[$i], 'mec_location')->term_id;
3595
+ wp_set_object_terms($post_id, (int)$additional_location_id, 'mec_location', true);
3596
+ $additional_location_ids[] = (int)$additional_location_id;
3597
+ }
3598
+
3599
+ update_post_meta($post_id, 'mec_additional_location_ids', $additional_location_ids);
3600
+ }
3601
+ }
3602
+
3603
+ // MEC Organizer Bulk Edit
3604
+ if(!is_null($mec_organizers))
3605
+ {
3606
+ $term_organizer = current($mec_organizers);
3607
+ if(!term_exists($term_organizer, 'mec_organizer')) wp_insert_term($term_organizer, 'mec_organizer', array());
3608
+
3609
+ $organizer_id = get_term_by('name', current($mec_organizers), 'mec_organizer')->term_id;
3610
+ update_post_meta($post_id, 'mec_organizer_id', $organizer_id);
3611
+
3612
+ if(count($mec_organizers) > 1)
3613
+ {
3614
+ // Additional organizers
3615
+ $additional_organizer_ids = array();
3616
+
3617
+ for($i = 1; $i < count($mec_organizers); $i++)
3618
+ {
3619
+ if(!term_exists($mec_organizers[$i], 'mec_organizer')) wp_insert_term($mec_organizers[$i], 'mec_organizer', array());
3620
+
3621
+ $additional_organizer_id = get_term_by('name', $mec_organizers[$i], 'mec_organizer')->term_id;
3622
+ wp_set_object_terms($post_id, (int)$additional_organizer_id, 'mec_organizer', true);
3623
+ $additional_organizer_ids[] = (int)$additional_organizer_id;
3624
+ }
3625
+
3626
+ update_post_meta($post_id, 'mec_additional_organizer_ids', $additional_organizer_ids);
3627
+ }
3628
+ }
3629
+ }
3630
+ }
3631
  }
app/features/locations.php CHANGED
@@ -283,7 +283,7 @@ class MEC_feature_locations extends MEC_base
283
 
284
  $additional_locations_status = (!isset($this->settings['additional_locations']) or (isset($this->settings['additional_locations']) and $this->settings['additional_locations'])) ? true : false;
285
  ?>
286
- <div class="mec-meta-box-fields" id="mec-location">
287
  <h4><?php echo sprintf(__('Event %s', 'modern-events-calendar-lite'), $this->main->m('taxonomy_location', __('Location', 'modern-events-calendar-lite'))); ?></h4>
288
  <div class="mec-form-row">
289
  <select name="mec[location_id]" id="mec_location_id" title="<?php echo esc_attr__($this->main->m('taxonomy_location', __('Location', 'modern-events-calendar-lite')), 'modern-events-calendar-lite'); ?>">
283
 
284
  $additional_locations_status = (!isset($this->settings['additional_locations']) or (isset($this->settings['additional_locations']) and $this->settings['additional_locations'])) ? true : false;
285
  ?>
286
+ <div class="mec-meta-box-fields mec-event-tab-content" id="mec-location">
287
  <h4><?php echo sprintf(__('Event %s', 'modern-events-calendar-lite'), $this->main->m('taxonomy_location', __('Location', 'modern-events-calendar-lite'))); ?></h4>
288
  <div class="mec-form-row">
289
  <select name="mec[location_id]" id="mec_location_id" title="<?php echo esc_attr__($this->main->m('taxonomy_location', __('Location', 'modern-events-calendar-lite')), 'modern-events-calendar-lite'); ?>">
app/features/mec/addons.php CHANGED
@@ -68,7 +68,7 @@ wp_enqueue_script('mec-lity-script', $this->main->asset('packages/lity/lity.min.
68
  <div class="w-box addon">
69
  <div class="w-box-child mec-addon-box">
70
  <div class="mec-addon-box-head">
71
- <div class="mec-addon-box-title"><a href="#"><span><?php esc_html_e($value->name); ?></span></a></div>
72
  <?php if ( $value->comingsoon == 'false' ) : ?>
73
  <div class="mec-addon-box-version"><span><?php esc_html_e('Version' , 'modern-events-calendar-lite'); ?> <strong><?php esc_html_e($value->version); ?></strong></span></div>
74
  <?php endif; ?>
68
  <div class="w-box addon">
69
  <div class="w-box-child mec-addon-box">
70
  <div class="mec-addon-box-head">
71
+ <div class="mec-addon-box-title"><a href="<?php esc_html_e($value->page); ?>" target="_blank"><span><?php esc_html_e($value->name); ?></span></a></div>
72
  <?php if ( $value->comingsoon == 'false' ) : ?>
73
  <div class="mec-addon-box-version"><span><?php esc_html_e('Version' , 'modern-events-calendar-lite'); ?> <strong><?php esc_html_e($value->version); ?></strong></span></div>
74
  <?php endif; ?>
app/features/mec/booking.php CHANGED
@@ -65,7 +65,10 @@ $gateways_options = $this->main->get_gateways_options();
65
  ?>
66
  <div class="wns-be-container wns-be-container-sticky">
67
  <div id="wns-be-infobar">
68
- <input id="mec-search-settings" type="text" placeholder="Search..">
 
 
 
69
  <a id="" class="dpr-btn dpr-save-btn"><?php _e('Save Changes', 'modern-events-calendar-lite'); ?></a>
70
  </div>
71
 
@@ -172,6 +175,17 @@ $gateways_options = $this->main->get_gateways_options();
172
  </label>
173
  </div>
174
  </div>
 
 
 
 
 
 
 
 
 
 
 
175
  <h5 class="mec-form-subtitle"><?php _e('Email verification', 'modern-events-calendar-lite'); ?></h5>
176
  <div class="mec-form-row">
177
  <div class="mec-col-12">
65
  ?>
66
  <div class="wns-be-container wns-be-container-sticky">
67
  <div id="wns-be-infobar">
68
+ <div class="mec-search-settings-wrap">
69
+ <i class="mec-sl-magnifier"></i>
70
+ <input id="mec-search-settings" type="text" placeholder="<?php esc_html_e('Search...' ,'modern-events-calendar-lite'); ?>">
71
+ </div>
72
  <a id="" class="dpr-btn dpr-save-btn"><?php _e('Save Changes', 'modern-events-calendar-lite'); ?></a>
73
  </div>
74
 
175
  </label>
176
  </div>
177
  </div>
178
+ <div class="mec-form-row">
179
+ <div class="mec-col-12">
180
+ <label for="mec_settings_booking_ongoing">
181
+ <input type="hidden" name="mec[settings][booking_ongoing]" value="0" />
182
+ <input type="checkbox" name="mec[settings][booking_ongoing]" id="mec_settings_booking_ongoing"
183
+ <?php echo ((isset($settings['booking_ongoing']) and $settings['booking_ongoing'] == '1') ? 'checked="checked"' : ''); ?>
184
+ value="1" />
185
+ <?php _e('Enable Booking for Ongoing Events', 'modern-events-calendar-lite'); ?>
186
+ </label>
187
+ </div>
188
+ </div>
189
  <h5 class="mec-form-subtitle"><?php _e('Email verification', 'modern-events-calendar-lite'); ?></h5>
190
  <div class="mec-form-row">
191
  <div class="mec-col-12">
app/features/mec/messages.php CHANGED
@@ -28,15 +28,17 @@ $values = $this->main->get_messages_options();
28
  <div class="mec-form-row" id="mec_messages_form_container">
29
  <ul class="mec-accordion mec-message-categories" id="mec_message_categories_wp">
30
  <?php foreach($messages as $cat_key=>$category): ?>
31
- <li class="mec-acc-label" data-key="<?php echo $cat_key; ?>" data-status="close"><?php echo $category['category']['name']; ?></li>
32
- <ul id="mec-acc-<?php echo $cat_key; ?>">
33
- <?php foreach($category['messages'] as $key=>$message): ?>
34
- <li>
35
- <label for="<?php echo 'mec_m_'.$key; ?>"><?php echo $message['label']; ?></label>
36
- <input id="<?php echo 'mec_m_'.$key; ?>" name="mec[messages][<?php echo $key; ?>]" type="text" placeholder="<?php echo esc_attr($message['default']); ?>" value="<?php echo (isset($values[$key]) and trim($values[$key])) ? esc_attr($values[$key]) : ''; ?>" />
37
- </li>
38
- <?php endforeach; ?>
39
- </ul>
 
 
40
  <?php endforeach; ?>
41
  </ul>
42
  </div>
28
  <div class="mec-form-row" id="mec_messages_form_container">
29
  <ul class="mec-accordion mec-message-categories" id="mec_message_categories_wp">
30
  <?php foreach($messages as $cat_key=>$category): ?>
31
+ <li class="mec-acc-label" data-key="<?php echo $cat_key; ?>" data-status="close">
32
+ <?php echo $category['category']['name']; ?>
33
+ <ul id="mec-acc-<?php echo $cat_key; ?>">
34
+ <?php foreach($category['messages'] as $key=>$message): ?>
35
+ <li>
36
+ <label for="<?php echo 'mec_m_'.$key; ?>"><?php echo $message['label']; ?></label>
37
+ <input id="<?php echo 'mec_m_'.$key; ?>" name="mec[messages][<?php echo $key; ?>]" type="text" placeholder="<?php echo esc_attr($message['default']); ?>" value="<?php echo (isset($values[$key]) and trim($values[$key])) ? esc_attr($values[$key]) : ''; ?>" />
38
+ </li>
39
+ <?php endforeach; ?>
40
+ </ul>
41
+ </li>
42
  <?php endforeach; ?>
43
  </ul>
44
  </div>
app/features/mec/meta_boxes/display_options.php CHANGED
@@ -2,6 +2,10 @@
2
  /** no direct access **/
3
  defined('MECEXEC') or die();
4
 
 
 
 
 
5
  // Skin Options
6
  $skins = $this->main->get_skins();
7
  $selected_skin = get_post_meta($post->ID, 'skin', true);
2
  /** no direct access **/
3
  defined('MECEXEC') or die();
4
 
5
+ // Fix conflict between ACF and niceSelect
6
+ include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
7
+ if (is_plugin_active('advanced-custom-fields/acf.php')) remove_action('admin_footer', 'acf_enqueue_uploader', 5);
8
+
9
  // Skin Options
10
  $skins = $this->main->get_skins();
11
  $selected_skin = get_post_meta($post->ID, 'skin', true);
app/features/mec/meta_boxes/filter.php CHANGED
@@ -66,144 +66,169 @@ $MEC_tax_walker = new MEC_tax_walker();
66
  <p><?php _e('No filter options applicable for this skin.', 'modern-events-calendar-lite'); ?></p>
67
  </div>
68
  <div class="mec-meta-box-fields" id="mec_meta_box_calendar_filter">
69
- <div class="mec-form-row">
70
- <h4><?php echo $this->main->m('taxonomy_categories', __('Categories', 'modern-events-calendar-lite')); ?></h4>
71
- <ul>
72
- <?php
73
- $selected_categories = explode(',', get_post_meta($post->ID, 'category', true));
74
- wp_terms_checklist(0, array(
75
- 'descendants_and_self'=>0,
76
- 'taxonomy'=>'mec_category',
77
- 'selected_cats'=>$selected_categories,
78
- 'popular_cats'=>false,
79
- 'checked_ontop'=>false,
80
- 'walker'=>$MEC_tax_walker
81
- ));
82
- ?>
83
- </ul>
84
- <p class="description"><?php _e('Choose your desired categories for filtering the events.', 'modern-events-calendar-lite'); ?></p>
85
- </div>
86
- <div class="mec-form-row">
87
- <h4><?php echo $this->main->m('taxonomy_locations', __('Locations', 'modern-events-calendar-lite')); ?></h4>
88
- <ul>
89
- <?php
90
- $selected_locations = explode(',', get_post_meta($post->ID, 'location', true));
91
- wp_terms_checklist(0, array(
92
- 'descendants_and_self'=>0,
93
- 'taxonomy'=>'mec_location',
94
- 'selected_cats'=>$selected_locations,
95
- 'popular_cats'=>false,
96
- 'checked_ontop'=>false,
97
- 'walker'=>$MEC_tax_walker
98
- ));
99
- ?>
100
- </ul>
101
- <p class="description"><?php _e('Choose your desired locations for filtering the events.', 'modern-events-calendar-lite'); ?></p>
102
- </div>
103
- <div class="mec-form-row">
104
- <h4><?php echo $this->main->m('taxonomy_organizers', __('Organizers', 'modern-events-calendar-lite')); ?></h4>
105
- <ul>
106
- <?php
107
- $selected_organizers = explode(',', get_post_meta($post->ID, 'organizer', true));
108
- wp_terms_checklist(0, array(
109
- 'descendants_and_self'=>0,
110
- 'taxonomy'=>'mec_organizer',
111
- 'selected_cats'=>$selected_organizers,
112
- 'popular_cats'=>false,
113
- 'checked_ontop'=>false,
114
- 'walker'=>$MEC_tax_walker
115
- ));
116
- ?>
117
- </ul>
118
- <p class="description"><?php _e('Choose your desired organizers for filtering the events.', 'modern-events-calendar-lite'); ?></p>
119
- </div>
120
- <div class="mec-form-row">
121
- <h4><?php echo $this->main->m('taxonomy_labels', __('Labels', 'modern-events-calendar-lite')); ?></h4>
122
- <ul>
123
- <?php
124
- $selected_labels = explode(',', get_post_meta($post->ID, 'label', true));
125
- wp_terms_checklist(0, array(
126
- 'descendants_and_self'=>0,
127
- 'taxonomy'=>'mec_label',
128
- 'selected_cats'=>$selected_labels,
129
- 'popular_cats'=>false,
130
- 'checked_ontop'=>false,
131
- 'walker'=>$MEC_tax_walker
132
- ));
133
- ?>
134
- </ul>
135
- <p class="description"><?php _e('Choose your desired labels for filtering the events.', 'modern-events-calendar-lite'); ?></p>
136
- </div>
137
- <div class="mec-form-row">
138
- <h4><?php _e('Tags', 'modern-events-calendar-lite'); ?></h4>
139
- <?php $selected_tags = get_post_meta($post->ID, 'tag', true); ?>
140
- <input type="text" name="mec_tax_input[mec_tag]" value="<?php echo $selected_tags; ?>" class="widefat" />
141
- <p class="description"><?php _e('Insert your desired tags comma separated.', 'modern-events-calendar-lite'); ?></p>
142
- </div>
143
- <div class="mec-form-row">
144
- <h4><?php _e('Authors', 'modern-events-calendar-lite'); ?></h4>
145
- <ul>
146
- <?php
147
- $selected_authors = explode(',', get_post_meta($post->ID, 'author', true));
148
- $authors = get_users(array(
149
- 'role__not_in'=>array('subscriber', 'contributor'),
150
- 'orderby'=>'post_count',
151
- 'order'=>'DESC',
152
- 'number'=>'-1',
153
- 'fields'=>array('ID', 'display_name')
154
- ));
155
-
156
- foreach($authors as $author)
157
- {
158
- echo '<li><label><input id="in-mec_author-'.$author->ID.'" name="mec_tax_input[mec_author][]" type="checkbox" value="'.$author->ID.'" '.(in_array($author->ID, $selected_authors) ? 'checked="checked"' : '').' /> '.$author->display_name.'</label></li>';
159
- }
160
- ?>
161
- </ul>
162
- <p class="description"><?php _e('Choose your desired authors for filtering the events.', 'modern-events-calendar-lite'); ?></p>
163
- </div>
164
- <?php do_action('mec_shortcode_filters' , $post->ID , $MEC_tax_walker ); ?>
165
- <div class="mec-form-row">
166
- <h4><?php _e('Dates', 'modern-events-calendar-lite'); ?></h4>
167
- <div class="mec-form-row mec-switcher">
168
- <?php $show_past_events = get_post_meta($post->ID, 'show_past_events', true); ?>
169
- <div class="mec-col-4">
170
- <label for="mec_show_past_events"><?php _e('Include Expired Events', 'modern-events-calendar-lite'); ?></label>
171
- </div>
172
- <div class="mec-col-4">
173
- <input type="hidden" name="mec[show_past_events]" value="0" />
174
- <input type="checkbox" name="mec[show_past_events]" class="mec-checkbox-toggle" id="mec_show_past_events" value="1" <?php if($show_past_events == '' or $show_past_events == 1) echo 'checked="checked"'; ?> />
175
- <label for="mec_show_past_events"></label>
176
- </div>
177
  </div>
178
- <p class="description"><?php _e('You have ability to include past/expired events if you like so it will show upcoming and expired events based on start date that you selected.', 'modern-events-calendar-lite'); ?></p>
179
- <div id="mec_date_only_past_filter">
180
- <div class="mec-form-row mec-switcher">
181
- <?php $show_only_past_events = get_post_meta($post->ID, 'show_only_past_events', true); ?>
182
- <div class="mec-col-4">
183
- <label for="mec_show_only_past_events"><?php _e('Show Only Expired Events', 'modern-events-calendar-lite'); ?></label>
184
- </div>
185
- <div class="mec-col-4">
186
- <input type="hidden" name="mec[show_only_past_events]" value="0" />
187
- <input type="checkbox" name="mec[show_only_past_events]" class="mec-checkbox-toggle" id="mec_show_only_past_events" value="1" <?php if($show_only_past_events == 1) echo 'checked="checked"'; ?> />
188
- <label for="mec_show_only_past_events"></label>
189
- </div>
 
 
 
 
 
190
  </div>
191
- <p class="description"><?php _e('It shows only expired/past events.', 'modern-events-calendar-lite'); ?></p>
192
- </div>
193
- <div id="mec_date_ongoing_filter">
194
- <div class="mec-form-row mec-switcher">
195
- <?php $show_only_ongoing_events = get_post_meta($post->ID, 'show_only_ongoing_events', true); ?>
196
- <div class="mec-col-4">
197
- <label for="mec_show_only_ongoing_events"><?php _e('Show Only Ongoing Events', 'modern-events-calendar-lite'); ?></label>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
198
  </div>
199
- <div class="mec-col-4">
200
- <input type="hidden" name="mec[show_only_ongoing_events]" value="0" />
201
- <input type="checkbox" name="mec[show_only_ongoing_events]" class="mec-checkbox-toggle" id="mec_show_only_ongoing_events" value="1" <?php if($show_only_ongoing_events == 1) echo 'checked="checked"'; ?> />
202
- <label for="mec_show_only_ongoing_events"></label>
 
 
 
 
 
 
 
 
 
203
  </div>
204
  </div>
205
- <p class="description"><?php _e('It shows only ongoing events on List and Grid skins.', 'modern-events-calendar-lite'); ?></p>
206
  </div>
207
  </div>
208
  </div>
209
- </div>
 
 
 
 
 
 
 
 
 
 
66
  <p><?php _e('No filter options applicable for this skin.', 'modern-events-calendar-lite'); ?></p>
67
  </div>
68
  <div class="mec-meta-box-fields" id="mec_meta_box_calendar_filter">
69
+ <div class="mec-create-shortcode-tabs-wrap">
70
+ <div class="mec-create-shortcode-tabs-left">
71
+ <a class="mec-create-shortcode-tabs-link mec-tab-active" data-href="mec_select_categories" href="#"><?php echo esc_html('Categories' ,'modern-events-calendar-lite'); ?></a>
72
+ <a class="mec-create-shortcode-tabs-link" data-href="mec_select_locations" href="#"><?php echo esc_html('Locations' ,'modern-events-calendar-lite'); ?></a>
73
+ <a class="mec-create-shortcode-tabs-link" data-href="mec_select_organizers" href="#"><?php echo esc_html('Organizers' ,'modern-events-calendar-lite'); ?></a>
74
+ <a class="mec-create-shortcode-tabs-link" data-href="mec_select_labels" href="#"><?php echo esc_html('Labels' ,'modern-events-calendar-lite'); ?></a>
75
+ <a class="mec-create-shortcode-tabs-link" data-href="mec_select_tags" href="#"><?php echo esc_html('Tags' ,'modern-events-calendar-lite'); ?></a>
76
+ <a class="mec-create-shortcode-tabs-link" data-href="mec_select_authors" href="#"><?php echo esc_html('Authors' ,'modern-events-calendar-lite'); ?></a>
77
+ <a class="mec-create-shortcode-tabs-link" data-href="mec_select_dates" href="#"><?php echo esc_html('Dates' ,'modern-events-calendar-lite'); ?></a>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
78
  </div>
79
+ <div class="mec-add-booking-tabs-right">
80
+ <div class="mec-form-row mec-create-shortcode-tab-content mec-tab-active" id="mec_select_categories">
81
+ <h4><?php echo $this->main->m('taxonomy_categories', __('Categories', 'modern-events-calendar-lite')); ?></h4>
82
+ <p class="description"><?php _e('Choose your desired categories for filtering the events.', 'modern-events-calendar-lite'); ?></p>
83
+ <ul>
84
+ <?php
85
+ $selected_categories = explode(',', get_post_meta($post->ID, 'category', true));
86
+ wp_terms_checklist(0, array(
87
+ 'descendants_and_self'=>0,
88
+ 'taxonomy'=>'mec_category',
89
+ 'selected_cats'=>$selected_categories,
90
+ 'popular_cats'=>false,
91
+ 'checked_ontop'=>false,
92
+ 'walker'=>$MEC_tax_walker
93
+ ));
94
+ ?>
95
+ </ul>
96
  </div>
97
+ <div class="mec-form-row mec-create-shortcode-tab-content" id="mec_select_locations">
98
+ <h4><?php echo $this->main->m('taxonomy_locations', __('Locations', 'modern-events-calendar-lite')); ?></h4>
99
+ <p class="description"><?php _e('Choose your desired locations for filtering the events.', 'modern-events-calendar-lite'); ?></p>
100
+ <ul>
101
+ <?php
102
+ $selected_locations = explode(',', get_post_meta($post->ID, 'location', true));
103
+ wp_terms_checklist(0, array(
104
+ 'descendants_and_self'=>0,
105
+ 'taxonomy'=>'mec_location',
106
+ 'selected_cats'=>$selected_locations,
107
+ 'popular_cats'=>false,
108
+ 'checked_ontop'=>false,
109
+ 'walker'=>$MEC_tax_walker
110
+ ));
111
+ ?>
112
+ </ul>
113
+ </div>
114
+ <div class="mec-form-row mec-create-shortcode-tab-content" id="mec_select_organizers">
115
+ <h4><?php echo $this->main->m('taxonomy_organizers', __('Organizers', 'modern-events-calendar-lite')); ?></h4>
116
+ <p class="description"><?php _e('Choose your desired organizers for filtering the events.', 'modern-events-calendar-lite'); ?></p>
117
+ <ul>
118
+ <?php
119
+ $selected_organizers = explode(',', get_post_meta($post->ID, 'organizer', true));
120
+ wp_terms_checklist(0, array(
121
+ 'descendants_and_self'=>0,
122
+ 'taxonomy'=>'mec_organizer',
123
+ 'selected_cats'=>$selected_organizers,
124
+ 'popular_cats'=>false,
125
+ 'checked_ontop'=>false,
126
+ 'walker'=>$MEC_tax_walker
127
+ ));
128
+ ?>
129
+ </ul>
130
+ </div>
131
+ <div class="mec-form-row mec-create-shortcode-tab-content" id="mec_select_labels">
132
+ <h4><?php echo $this->main->m('taxonomy_labels', __('Labels', 'modern-events-calendar-lite')); ?></h4>
133
+ <p class="description"><?php _e('Choose your desired labels for filtering the events.', 'modern-events-calendar-lite'); ?></p>
134
+ <ul>
135
+ <?php
136
+ $selected_labels = explode(',', get_post_meta($post->ID, 'label', true));
137
+ wp_terms_checklist(0, array(
138
+ 'descendants_and_self'=>0,
139
+ 'taxonomy'=>'mec_label',
140
+ 'selected_cats'=>$selected_labels,
141
+ 'popular_cats'=>false,
142
+ 'checked_ontop'=>false,
143
+ 'walker'=>$MEC_tax_walker
144
+ ));
145
+ ?>
146
+ </ul>
147
+ </div>
148
+ <div class="mec-form-row mec-create-shortcode-tab-content" id="mec_select_tags">
149
+ <h4><?php _e('Tags', 'modern-events-calendar-lite'); ?></h4>
150
+ <p class="description"><?php _e('Insert your desired tags comma separated.', 'modern-events-calendar-lite'); ?></p>
151
+ <?php $selected_tags = get_post_meta($post->ID, 'tag', true); ?>
152
+ <input type="text" name="mec_tax_input[mec_tag]" value="<?php echo $selected_tags; ?>" class="widefat" />
153
+ </div>
154
+ <div class="mec-form-row mec-create-shortcode-tab-content" id="mec_select_authors">
155
+ <h4><?php _e('Authors', 'modern-events-calendar-lite'); ?></h4>
156
+ <p class="description"><?php _e('Choose your desired authors for filtering the events.', 'modern-events-calendar-lite'); ?></p>
157
+ <ul>
158
+ <?php
159
+ $selected_authors = explode(',', get_post_meta($post->ID, 'author', true));
160
+ $authors = get_users(array(
161
+ 'role__not_in'=>array('subscriber', 'contributor'),
162
+ 'orderby'=>'post_count',
163
+ 'order'=>'DESC',
164
+ 'number'=>'-1',
165
+ 'fields'=>array('ID', 'display_name')
166
+ ));
167
+
168
+ foreach($authors as $author)
169
+ {
170
+ echo '<li><label><input id="in-mec_author-'.$author->ID.'" name="mec_tax_input[mec_author][]" type="checkbox" value="'.$author->ID.'" '.(in_array($author->ID, $selected_authors) ? 'checked="checked"' : '').' /> '.$author->display_name.'</label></li>';
171
+ }
172
+ ?>
173
+ </ul>
174
+ </div>
175
+ <?php do_action('mec_shortcode_filters' , $post->ID , $MEC_tax_walker ); ?>
176
+ <div class="mec-form-row mec-create-shortcode-tab-content" id="mec_select_dates">
177
+ <h4><?php _e('Dates', 'modern-events-calendar-lite'); ?></h4>
178
+ <div class="mec-form-row mec-switcher">
179
+ <?php $show_past_events = get_post_meta($post->ID, 'show_past_events', true); ?>
180
+ <div class="mec-col-4">
181
+ <label for="mec_show_past_events"><?php _e('Include Expired Events', 'modern-events-calendar-lite'); ?></label>
182
+ </div>
183
+ <div class="mec-col-4">
184
+ <input type="hidden" name="mec[show_past_events]" value="0" />
185
+ <input type="checkbox" name="mec[show_past_events]" class="mec-checkbox-toggle" id="mec_show_past_events" value="1" <?php if($show_past_events == '' or $show_past_events == 1) echo 'checked="checked"'; ?> />
186
+ <label for="mec_show_past_events"></label>
187
+ </div>
188
+ <p class="description"><?php _e('You have ability to include past/expired events if you like so it will show upcoming and expired events based on start date that you selected.', 'modern-events-calendar-lite'); ?></p>
189
+ <br />
190
+ </div>
191
+ <div id="mec_date_only_past_filter">
192
+ <div class="mec-form-row mec-switcher">
193
+ <?php $show_only_past_events = get_post_meta($post->ID, 'show_only_past_events', true); ?>
194
+ <div class="mec-col-4">
195
+ <label for="mec_show_only_past_events"><?php _e('Show Only Expired Events', 'modern-events-calendar-lite'); ?></label>
196
+ </div>
197
+ <div class="mec-col-4">
198
+ <input type="hidden" name="mec[show_only_past_events]" value="0" />
199
+ <input type="checkbox" name="mec[show_only_past_events]" class="mec-checkbox-toggle" id="mec_show_only_past_events" value="1" <?php if($show_only_past_events == 1) echo 'checked="checked"'; ?> />
200
+ <label for="mec_show_only_past_events"></label>
201
+ </div>
202
+ <p class="description"><?php _e('It shows only expired/past events.', 'modern-events-calendar-lite'); ?></p>
203
+ </div>
204
+ <br />
205
  </div>
206
+ <div id="mec_date_ongoing_filter">
207
+ <div class="mec-form-row mec-switcher">
208
+ <?php $show_only_ongoing_events = get_post_meta($post->ID, 'show_only_ongoing_events', true); ?>
209
+ <div class="mec-col-4">
210
+ <label for="mec_show_only_ongoing_events"><?php _e('Show Only Ongoing Events', 'modern-events-calendar-lite'); ?></label>
211
+ </div>
212
+ <div class="mec-col-4">
213
+ <input type="hidden" name="mec[show_only_ongoing_events]" value="0" />
214
+ <input type="checkbox" name="mec[show_only_ongoing_events]" class="mec-checkbox-toggle" id="mec_show_only_ongoing_events" value="1" <?php if($show_only_ongoing_events == 1) echo 'checked="checked"'; ?> />
215
+ <label for="mec_show_only_ongoing_events"></label>
216
+ </div>
217
+ <p class="description"><?php _e('It shows only ongoing events on List and Grid skins.', 'modern-events-calendar-lite'); ?></p>
218
+ </div>
219
  </div>
220
  </div>
 
221
  </div>
222
  </div>
223
  </div>
224
+ </div>
225
+ <script>
226
+ jQuery(".mec-create-shortcode-tabs-link").on("click", function (e) {
227
+ console.log(jQuery(this));
228
+ e.preventDefault();
229
+ var href = jQuery(this).attr("data-href");
230
+ jQuery(".mec-create-shortcode-tab-content,.mec-create-shortcode-tabs-link").removeClass("mec-tab-active");
231
+ jQuery(this).addClass("mec-tab-active");
232
+ jQuery("#" + href ).addClass("mec-tab-active");
233
+ });
234
+ </script>
app/features/mec/modules.php CHANGED
@@ -18,7 +18,10 @@ if($this->getPRO())
18
  ?>
19
  <div class="wns-be-container wns-be-container-sticky">
20
  <div id="wns-be-infobar">
21
- <input id="mec-search-settings" type="text" placeholder="Search..">
 
 
 
22
  <a id="" class="dpr-btn dpr-save-btn"><?php _e('Save Changes', 'modern-events-calendar-lite'); ?></a>
23
  </div>
24
 
18
  ?>
19
  <div class="wns-be-container wns-be-container-sticky">
20
  <div id="wns-be-infobar">
21
+ <div class="mec-search-settings-wrap">
22
+ <i class="mec-sl-magnifier"></i>
23
+ <input id="mec-search-settings" type="text" placeholder="<?php esc_html_e('Search...' ,'modern-events-calendar-lite'); ?>">
24
+ </div>
25
  <a id="" class="dpr-btn dpr-save-btn"><?php _e('Save Changes', 'modern-events-calendar-lite'); ?></a>
26
  </div>
27
 
app/features/mec/settings.php CHANGED
@@ -27,7 +27,10 @@ $get_n_option = get_option('mec_addons_notification_option');
27
  <?php endif; ?>
28
  <div class="wns-be-container wns-be-container-sticky">
29
  <div id="wns-be-infobar">
30
- <input id="mec-search-settings" type="text" placeholder="Search..">
 
 
 
31
  <a id="" class="dpr-btn dpr-save-btn"><?php _e('Save Changes', 'modern-events-calendar-lite'); ?></a>
32
  </div>
33
 
@@ -833,6 +836,8 @@ $get_n_option = get_option('mec_addons_notification_option');
833
  </div>
834
  </div>
835
 
 
 
836
  <div class="mec-options-fields">
837
  <?php wp_nonce_field('mec_options_form'); ?>
838
  <button style="display: none;" id="mec_settings_form_button" class="button button-primary mec-button-primary" type="submit"><?php _e('Save Changes', 'modern-events-calendar-lite'); ?></button>
27
  <?php endif; ?>
28
  <div class="wns-be-container wns-be-container-sticky">
29
  <div id="wns-be-infobar">
30
+ <div class="mec-search-settings-wrap">
31
+ <i class="mec-sl-magnifier"></i>
32
+ <input id="mec-search-settings" type="text" placeholder="<?php esc_html_e('Search...' ,'modern-events-calendar-lite'); ?>">
33
+ </div>
34
  <a id="" class="dpr-btn dpr-save-btn"><?php _e('Save Changes', 'modern-events-calendar-lite'); ?></a>
35
  </div>
36
 
836
  </div>
837
  </div>
838
 
839
+ <?php do_action('mec-settings-page-before-form-end',$settings) ?>
840
+
841
  <div class="mec-options-fields">
842
  <?php wp_nonce_field('mec_options_form'); ?>
843
  <button style="display: none;" id="mec_settings_form_button" class="button button-primary mec-button-primary" type="submit"><?php _e('Save Changes', 'modern-events-calendar-lite'); ?></button>
app/features/mec/single.php CHANGED
@@ -10,7 +10,10 @@ $pages = get_pages();
10
  ?>
11
  <div class="wns-be-container wns-be-container-sticky">
12
  <div id="wns-be-infobar">
13
- <input id="mec-search-settings" type="text" placeholder="Search..">
 
 
 
14
  <a id="" class="dpr-btn dpr-save-btn"><?php _e('Save Changes', 'modern-events-calendar-lite'); ?></a>
15
  </div>
16
 
10
  ?>
11
  <div class="wns-be-container wns-be-container-sticky">
12
  <div id="wns-be-infobar">
13
+ <div class="mec-search-settings-wrap">
14
+ <i class="mec-sl-magnifier"></i>
15
+ <input id="mec-search-settings" type="text" placeholder="<?php esc_html_e('Search...' ,'modern-events-calendar-lite'); ?>">
16
+ </div>
17
  <a id="" class="dpr-btn dpr-save-btn"><?php _e('Save Changes', 'modern-events-calendar-lite'); ?></a>
18
  </div>
19
 
app/features/mec/support-page.php CHANGED
@@ -10,7 +10,7 @@ wp_enqueue_script('mec-lity-script', $this->main->asset('packages/lity/lity.min.
10
  <div class="w-welcome">
11
  <div class="support-page-links link-to-doc"><a href="https://webnus.net/dox/modern-events-calendar/" target="_blank"><?php esc_html_e('Documentation' , 'modern-events-calendar-lite'); ?></a></div>
12
  <div class="support-page-links link-to-videos"><a href="https://webnus.net/dox/modern-events-calendar/video-tutorials/" target="_blank"><?php esc_html_e('All videos' , 'modern-events-calendar-lite'); ?></a></div>
13
- <div class="support-page-links link-to-articles"><a href="https://webnus.ticksy.com/articles/100004962/" target="_blank"><?php esc_html_e('View all Articles' , 'modern-events-calendar-lite'); ?></a></div>
14
  <p>
15
  <?php esc_html_e('If you have any questions regarding Modern Events Calendar and how to use it, you can use the following four methods we have prepared in this page. The detailed documentations of MEC along with its instructional videos will help you have a great experience working with it.So, if you need futher instructions using the plugin, please first refer to the following to find your answers.' , 'modern-events-calendar-lite'); ?>
16
  </p>
10
  <div class="w-welcome">
11
  <div class="support-page-links link-to-doc"><a href="https://webnus.net/dox/modern-events-calendar/" target="_blank"><?php esc_html_e('Documentation' , 'modern-events-calendar-lite'); ?></a></div>
12
  <div class="support-page-links link-to-videos"><a href="https://webnus.net/dox/modern-events-calendar/video-tutorials/" target="_blank"><?php esc_html_e('All videos' , 'modern-events-calendar-lite'); ?></a></div>
13
+ <div class="support-page-links link-to-articles"><a href="https://webnus.ticksy.com/articles/100004962/" target="_blank"><?php esc_html_e('All Articles' , 'modern-events-calendar-lite'); ?></a></div>
14
  <p>
15
  <?php esc_html_e('If you have any questions regarding Modern Events Calendar and how to use it, you can use the following four methods we have prepared in this page. The detailed documentations of MEC along with its instructional videos will help you have a great experience working with it.So, if you need futher instructions using the plugin, please first refer to the following to find your answers.' , 'modern-events-calendar-lite'); ?>
16
  </p>
app/features/mec/support.php CHANGED
@@ -144,7 +144,7 @@ defined('MECEXEC') or die();
144
  <li><a href="https://webnus.ticksy.com/article/8601/"><?php _e("How to export events in iCal format?", 'modern-events-calendar-lite'); ?></a></li>
145
  <li><a href="https://webnus.ticksy.com/article/8603/"><?php _e("How to override MEC template files?", 'modern-events-calendar-lite'); ?></a></li>
146
  <li><a href="https://webnus.ticksy.com/article/8599/"><?php _e("How to add/manage shortcodes?", 'modern-events-calendar-lite'); ?></a></li>
147
- <li class="mec-view-all-articles"><a href="https://webnus.ticksy.com/articles/100004962/"><?php _e("View all Articles", 'modern-events-calendar-lite'); ?></a></li>
148
  </ul>
149
  </div>
150
  </div>
144
  <li><a href="https://webnus.ticksy.com/article/8601/"><?php _e("How to export events in iCal format?", 'modern-events-calendar-lite'); ?></a></li>
145
  <li><a href="https://webnus.ticksy.com/article/8603/"><?php _e("How to override MEC template files?", 'modern-events-calendar-lite'); ?></a></li>
146
  <li><a href="https://webnus.ticksy.com/article/8599/"><?php _e("How to add/manage shortcodes?", 'modern-events-calendar-lite'); ?></a></li>
147
+ <li class="mec-view-all-articles"><a href="https://webnus.ticksy.com/articles/100004962/"><?php _e("All Articles", 'modern-events-calendar-lite'); ?></a></li>
148
  </ul>
149
  </div>
150
  </div>
app/features/organizers.php CHANGED
@@ -256,7 +256,7 @@ class MEC_feature_organizers extends MEC_base
256
 
257
  $additional_organizers_status = (!isset($this->settings['additional_organizers']) or (isset($this->settings['additional_organizers']) and $this->settings['additional_organizers'])) ? true : false;
258
  ?>
259
- <div class="mec-meta-box-fields" id="mec-organizer">
260
  <h4><?php echo sprintf(__('Event Main %s', 'modern-events-calendar-lite'), $this->main->m('taxonomy_organizer', __('Organizer', 'modern-events-calendar-lite'))); ?></h4>
261
  <div class="mec-form-row">
262
  <select name="mec[organizer_id]" id="mec_organizer_id" title="<?php echo esc_attr__($this->main->m('taxonomy_organizer', __('Organizer', 'modern-events-calendar-lite')), 'modern-events-calendar-lite'); ?>">
256
 
257
  $additional_organizers_status = (!isset($this->settings['additional_organizers']) or (isset($this->settings['additional_organizers']) and $this->settings['additional_organizers'])) ? true : false;
258
  ?>
259
+ <div class="mec-meta-box-fields mec-event-tab-content" id="mec-organizer">
260
  <h4><?php echo sprintf(__('Event Main %s', 'modern-events-calendar-lite'), $this->main->m('taxonomy_organizer', __('Organizer', 'modern-events-calendar-lite'))); ?></h4>
261
  <div class="mec-form-row">
262
  <select name="mec[organizer_id]" id="mec_organizer_id" title="<?php echo esc_attr__($this->main->m('taxonomy_organizer', __('Organizer', 'modern-events-calendar-lite')), 'modern-events-calendar-lite'); ?>">
app/features/profile/profile.php CHANGED
@@ -6,6 +6,7 @@ defined('MECEXEC') or die();
6
  $render = $this->getRender();
7
 
8
  // The Query
 
9
  $query = new WP_Query(array(
10
  'post_type'=>$this->PT,
11
  'author'=>get_current_user_id(),
@@ -40,7 +41,7 @@ $id = 1;
40
  <?php esc_html_e('Invoice' , 'modern-events-calendar-lite'); ?>
41
  </td>
42
  </tr>
43
- <?php while($query->have_posts()): $query->the_post(); $ID = get_the_ID(); ?>
44
  <?php
45
  $transaction_id = $this->book->get_transaction_id_book_id($ID);
46
  $event_id = get_post_meta($ID, 'mec_event_id', true);
6
  $render = $this->getRender();
7
 
8
  // The Query
9
+ var_dump($this->PT);
10
  $query = new WP_Query(array(
11
  'post_type'=>$this->PT,
12
  'author'=>get_current_user_id(),
41
  <?php esc_html_e('Invoice' , 'modern-events-calendar-lite'); ?>
42
  </td>
43
  </tr>
44
+ <?php while($query->have_posts()): $query->the_post(); $ID = get_the_ID(); var_dump($ID); ?>
45
  <?php
46
  $transaction_id = $this->book->get_transaction_id_book_id($ID);
47
  $event_id = get_post_meta($ID, 'mec_event_id', true);
app/libraries/factory.php CHANGED
@@ -153,7 +153,7 @@ class MEC_factory extends MEC_base
153
  */
154
  public function load_menus()
155
  {
156
- add_menu_page(__('M.E. Calendar', 'modern-events-calendar-lite'), __('M.E. Calendar', 'modern-events-calendar-lite'), 'edit_posts', 'mec-intro', array($this->main, 'dashboard'), 'dashicons-calendar', 26);
157
  }
158
 
159
  /**
@@ -853,7 +853,7 @@ class MEC_factory extends MEC_base
853
  foreach($calendars as $calendar)
854
  {
855
  // Calendar exists
856
- if(post_exists($calendar['title'], 'modern-events-calendar-lite')) continue;
857
 
858
  $post = array('post_title'=>$calendar['title'], 'post_content'=>'MEC', 'post_type'=>'mec_calendars', 'post_status'=>'publish');
859
  $post_id = wp_insert_post($post);
153
  */
154
  public function load_menus()
155
  {
156
+ add_menu_page(__('M.E. Calendar', 'modern-events-calendar-lite'), __('M.E. Calendar', 'modern-events-calendar-lite'), 'edit_posts', 'mec-intro', array($this->main, 'dashboard'), plugin_dir_url(__FILE__ ) . '../../assets/img/mec.svg', 26);
157
  }
158
 
159
  /**
853
  foreach($calendars as $calendar)
854
  {
855
  // Calendar exists
856
+ if(post_exists($calendar['title'], 'MEC')) continue;
857
 
858
  $post = array('post_title'=>$calendar['title'], 'post_content'=>'MEC', 'post_type'=>'mec_calendars', 'post_status'=>'publish');
859
  $post_id = wp_insert_post($post);
app/libraries/main.php CHANGED
@@ -524,7 +524,7 @@ class MEC_main extends MEC_base
524
  public function get_sidebar_menu($active_menu = 'settings')
525
  {
526
  $options = $this->get_settings();
527
- $settings = array(
528
  __('General Options', 'modern-events-calendar-lite') => 'general_option',
529
  __('Archive Pages', 'modern-events-calendar-lite') => 'archive_options',
530
  __('Slugs/Permalinks', 'modern-events-calendar-lite') => 'slug_option',
@@ -535,27 +535,27 @@ class MEC_main extends MEC_base
535
  __('Search Bar', 'modern-events-calendar-lite') => 'search_bar_options',
536
  __('Mailchimp Integration', 'modern-events-calendar-lite') => 'mailchimp_option',
537
  __('Upload Field', 'modern-events-calendar-lite') => 'uploadfield_option',
538
- );
539
 
540
- $single_event = array(
541
  __('Single Event Page', 'modern-events-calendar-lite') => 'event_options',
542
  __('Countdown Options', 'modern-events-calendar-lite') => 'countdown_option',
543
  __('Exceptional Days', 'modern-events-calendar-lite') => 'exceptional_option',
544
  __('Additional Organizers', 'modern-events-calendar-lite') => 'additional_organizers',
545
  __('Additional Locations', 'modern-events-calendar-lite') => 'additional_locations',
546
  __('Related Events', 'modern-events-calendar-lite') => 'related_events',
547
- );
548
 
549
- $booking = array(
550
  __('Booking', 'modern-events-calendar-lite') => 'booking_option',
551
  __('Coupons', 'modern-events-calendar-lite') => 'coupon_option',
552
  __('Taxes / Fees', 'modern-events-calendar-lite') => 'taxes_option',
553
  __('Ticket Variations & Options', 'modern-events-calendar-lite') => 'ticket_variations_option',
554
  __('Booking Form', 'modern-events-calendar-lite') => 'booking_form_option',
555
  __('Payment Gateways', 'modern-events-calendar-lite') => 'payment_gateways_option',
556
- );
557
 
558
- $modules = array(
559
  __('Speakers', 'modern-events-calendar-lite') => 'speakers_option',
560
  __('Google Maps Options', 'modern-events-calendar-lite') => 'googlemap_option',
561
  __('Export Options', 'modern-events-calendar-lite') => 'export_module_option',
@@ -565,9 +565,9 @@ class MEC_main extends MEC_base
565
  __('Social Networks', 'modern-events-calendar-lite') => 'social_options',
566
  __('Next Event', 'modern-events-calendar-lite') => 'next_event_option',
567
  __('BuddyPress Integration', 'modern-events-calendar-lite') => 'buddy_option',
568
- );
569
 
570
- $notifications = array(
571
  __('Booking', 'modern-events-calendar-lite') => 'booking_notification',
572
  __('Booking Verification', 'modern-events-calendar-lite') => 'booking_verification',
573
  __('Booking Confirmation', 'modern-events-calendar-lite') => 'booking_confirmation',
@@ -575,7 +575,7 @@ class MEC_main extends MEC_base
575
  __('Booking Reminder', 'modern-events-calendar-lite') => 'booking_reminder',
576
  __('Admin', 'modern-events-calendar-lite') => 'admin_notification',
577
  __('New Event', 'modern-events-calendar-lite') => 'new_event',
578
- );
579
 
580
  ?>
581
  <ul class="wns-be-group-menu">
@@ -1200,7 +1200,7 @@ class MEC_main extends MEC_base
1200
  {
1201
  if(!is_numeric($end)) $end = strtotime($end);
1202
  if(!is_numeric($now)) $now = strtotime($now);
1203
-
1204
  // Never End
1205
  if($end <= 0) return 0;
1206
 
@@ -3174,9 +3174,19 @@ class MEC_main extends MEC_base
3174
 
3175
  // No Dates or no Tickets
3176
  if(!count($dates) or !count($tickets)) return false;
3177
-
 
 
 
3178
  // The event is Expired/Passed
3179
- if(!isset($next_date['start']) or (isset($next_date['start']) and $this->is_past($next_date['start']['date'], date('Y-m-d')))) return false;
 
 
 
 
 
 
 
3180
 
3181
  // MEC payment gateways
3182
  $gateways = $this->get_gateways();
524
  public function get_sidebar_menu($active_menu = 'settings')
525
  {
526
  $options = $this->get_settings();
527
+ $settings = apply_filters('mec-settings-items-settings', array(
528
  __('General Options', 'modern-events-calendar-lite') => 'general_option',
529
  __('Archive Pages', 'modern-events-calendar-lite') => 'archive_options',
530
  __('Slugs/Permalinks', 'modern-events-calendar-lite') => 'slug_option',
535
  __('Search Bar', 'modern-events-calendar-lite') => 'search_bar_options',
536
  __('Mailchimp Integration', 'modern-events-calendar-lite') => 'mailchimp_option',
537
  __('Upload Field', 'modern-events-calendar-lite') => 'uploadfield_option',
538
+ ), $active_menu);
539
 
540
+ $single_event = apply_filters('mec-settings-item-single_event', array(
541
  __('Single Event Page', 'modern-events-calendar-lite') => 'event_options',
542
  __('Countdown Options', 'modern-events-calendar-lite') => 'countdown_option',
543
  __('Exceptional Days', 'modern-events-calendar-lite') => 'exceptional_option',
544
  __('Additional Organizers', 'modern-events-calendar-lite') => 'additional_organizers',
545
  __('Additional Locations', 'modern-events-calendar-lite') => 'additional_locations',
546
  __('Related Events', 'modern-events-calendar-lite') => 'related_events',
547
+ ), $active_menu);
548
 
549
+ $booking = apply_filters('mec-settings-item-booking', array(
550
  __('Booking', 'modern-events-calendar-lite') => 'booking_option',
551
  __('Coupons', 'modern-events-calendar-lite') => 'coupon_option',
552
  __('Taxes / Fees', 'modern-events-calendar-lite') => 'taxes_option',
553
  __('Ticket Variations & Options', 'modern-events-calendar-lite') => 'ticket_variations_option',
554
  __('Booking Form', 'modern-events-calendar-lite') => 'booking_form_option',
555
  __('Payment Gateways', 'modern-events-calendar-lite') => 'payment_gateways_option',
556
+ ), $active_menu);
557
 
558
+ $modules = apply_filters('mec-settings-item-modules', array(
559
  __('Speakers', 'modern-events-calendar-lite') => 'speakers_option',
560
  __('Google Maps Options', 'modern-events-calendar-lite') => 'googlemap_option',
561
  __('Export Options', 'modern-events-calendar-lite') => 'export_module_option',
565
  __('Social Networks', 'modern-events-calendar-lite') => 'social_options',
566
  __('Next Event', 'modern-events-calendar-lite') => 'next_event_option',
567
  __('BuddyPress Integration', 'modern-events-calendar-lite') => 'buddy_option',
568
+ ), $active_menu);
569
 
570
+ $notifications = apply_filters('mec-settings-item-notifications', array(
571
  __('Booking', 'modern-events-calendar-lite') => 'booking_notification',
572
  __('Booking Verification', 'modern-events-calendar-lite') => 'booking_verification',
573
  __('Booking Confirmation', 'modern-events-calendar-lite') => 'booking_confirmation',
575
  __('Booking Reminder', 'modern-events-calendar-lite') => 'booking_reminder',
576
  __('Admin', 'modern-events-calendar-lite') => 'admin_notification',
577
  __('New Event', 'modern-events-calendar-lite') => 'new_event',
578
+ ), $active_menu);
579
 
580
  ?>
581
  <ul class="wns-be-group-menu">
1200
  {
1201
  if(!is_numeric($end)) $end = strtotime($end);
1202
  if(!is_numeric($now)) $now = strtotime($now);
1203
+
1204
  // Never End
1205
  if($end <= 0) return 0;
1206
 
3174
 
3175
  // No Dates or no Tickets
3176
  if(!count($dates) or !count($tickets)) return false;
3177
+
3178
+ // Booking OnGoing Event Option
3179
+ $ongoing_event_book = (isset($settings['booking_ongoing']) and $settings['booking_ongoing'] == '1') ? true : false;
3180
+
3181
  // The event is Expired/Passed
3182
+ if($ongoing_event_book)
3183
+ {
3184
+ if(!isset($next_date['end']) or (isset($next_date['end']) and $this->is_past($next_date['end']['date'], current_time('Y-m-d')))) return false;
3185
+ }
3186
+ else
3187
+ {
3188
+ if(!isset($next_date['start']) or (isset($next_date['start']) and $this->is_past($next_date['start']['date'], current_time('Y-m-d')))) return false;
3189
+ }
3190
 
3191
  // MEC payment gateways
3192
  $gateways = $this->get_gateways();
app/skins/custom.php ADDED
@@ -0,0 +1,279 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /** no direct access **/
3
+ defined('MECEXEC') or die();
4
+
5
+ /**
6
+ * Webnus MEC custom class.
7
+ * @author Webnus <info@webnus.biz>
8
+ */
9
+ class MEC_skin_custom extends MEC_skins
10
+ {
11
+ /**
12
+ * @var string
13
+ */
14
+ public $skin = 'custom';
15
+
16
+ public $date_format_classic_1;
17
+ public $date_format_clean_1;
18
+ public $date_format_clean_2;
19
+ public $date_format_minimal_1;
20
+ public $date_format_minimal_2;
21
+ public $date_format_modern_1;
22
+ public $date_format_modern_2;
23
+ public $date_format_modern_3;
24
+ public $date_format_simple_1;
25
+ public $date_format_novel_1;
26
+
27
+ /**
28
+ * Constructor method
29
+ * @author Webnus <info@webnus.biz>
30
+ */
31
+ public function __construct()
32
+ {
33
+ parent::__construct();
34
+ }
35
+
36
+ /**
37
+ * Registers skin actions into WordPress
38
+ * @author Webnus <info@webnus.biz>
39
+ */
40
+ public function actions()
41
+ {
42
+ $this->factory->action('wp_ajax_mec_custom_load_more', array($this, 'load_more'));
43
+ $this->factory->action('wp_ajax_nopriv_mec_custom_load_more', array($this, 'load_more'));
44
+ }
45
+
46
+ /**
47
+ * Initialize the skin
48
+ * @author Webnus <info@webnus.biz>
49
+ * @param array $atts
50
+ */
51
+ public function initialize($atts)
52
+ {
53
+ $this->atts = $atts;
54
+
55
+ // Skin Options
56
+ $this->skin_options = (isset($this->atts['sk-options']) and isset($this->atts['sk-options'][$this->skin])) ? $this->atts['sk-options'][$this->skin] : array();
57
+
58
+ // The style
59
+ $this->style = isset($this->skin_options['style']) ? $this->skin_options['style'] : 'modern';
60
+
61
+ // Date Formats
62
+ $this->date_format_classic_1 = (isset($this->skin_options['classic_date_format1']) and trim($this->skin_options['classic_date_format1'])) ? $this->skin_options['classic_date_format1'] : 'd F Y';
63
+
64
+ $this->date_format_clean_1 = (isset($this->skin_options['clean_date_format1']) and trim($this->skin_options['clean_date_format1'])) ? $this->skin_options['clean_date_format1'] : 'd';
65
+ $this->date_format_clean_2 = (isset($this->skin_options['clean_date_format2']) and trim($this->skin_options['clean_date_format2'])) ? $this->skin_options['clean_date_format2'] : 'F';
66
+
67
+ $this->date_format_minimal_1 = (isset($this->skin_options['minimal_date_format1']) and trim($this->skin_options['minimal_date_format1'])) ? $this->skin_options['minimal_date_format1'] : 'd';
68
+ $this->date_format_minimal_2 = (isset($this->skin_options['minimal_date_format2']) and trim($this->skin_options['minimal_date_format2'])) ? $this->skin_options['minimal_date_format2'] : 'M';
69
+
70
+ $this->date_format_modern_1 = (isset($this->skin_options['modern_date_format1']) and trim($this->skin_options['modern_date_format1'])) ? $this->skin_options['modern_date_format1'] : 'd';
71
+ $this->date_format_modern_2 = (isset($this->skin_options['modern_date_format2']) and trim($this->skin_options['modern_date_format2'])) ? $this->skin_options['modern_date_format2'] : 'F';
72
+ $this->date_format_modern_3 = (isset($this->skin_options['modern_date_format3']) and trim($this->skin_options['modern_date_format3'])) ? $this->skin_options['modern_date_format3'] : 'l';
73
+
74
+ $this->date_format_simple_1 = (isset($this->skin_options['simple_date_format1']) and trim($this->skin_options['simple_date_format1'])) ? $this->skin_options['simple_date_format1'] : 'M d Y';
75
+
76
+ $this->date_format_novel_1 = (isset($this->skin_options['novel_date_format1']) and trim($this->skin_options['novel_date_format1'])) ? $this->skin_options['novel_date_format1'] : 'd F Y';
77
+
78
+ // Date Formats of colorful style
79
+ if($this->style == 'colorful')
80
+ {
81
+ $this->date_format_modern_1 = (isset($this->skin_options['colorful_date_format1']) and trim($this->skin_options['colorful_date_format1'])) ? $this->skin_options['colorful_date_format1'] : 'd';
82
+ $this->date_format_modern_2 = (isset($this->skin_options['colorful_date_format2']) and trim($this->skin_options['colorful_date_format2'])) ? $this->skin_options['colorful_date_format2'] : 'F';
83
+ $this->date_format_modern_3 = (isset($this->skin_options['colorful_date_format3']) and trim($this->skin_options['colorful_date_format3'])) ? $this->skin_options['colorful_date_format3'] : 'l';
84
+ }
85
+
86
+ // Search Form Options
87
+ $this->sf_options = (isset($this->atts['sf-options']) and isset($this->atts['sf-options'][$this->skin])) ? $this->atts['sf-options'][$this->skin] : array();
88
+
89
+ // Search Form Status
90
+ $this->sf_status = isset($this->atts['sf_status']) ? $this->atts['sf_status'] : true;
91
+
92
+ // Generate an ID for the sking
93
+ $this->id = isset($this->atts['id']) ? $this->atts['id'] : mt_rand(100, 999);
94
+
95
+ // Set the ID
96
+ if(!isset($this->atts['id'])) $this->atts['id'] = $this->id;
97
+
98
+ // Show "Load More" button or not
99
+ $this->load_more_button = isset($this->skin_options['load_more_button']) ? $this->skin_options['load_more_button'] : true;
100
+
101
+ // Override the style if the style forced by us in a widget etc
102
+ if(isset($this->atts['style']) and trim($this->atts['style']) != '') $this->style = $this->atts['style'];
103
+
104
+ // HTML class
105
+ $this->html_class = '';
106
+ if(isset($this->atts['html-class']) and trim($this->atts['html-class']) != '') $this->html_class = $this->atts['html-class'];
107
+
108
+ // SED Method
109
+ $this->sed_method = isset($this->skin_options['sed_method']) ? $this->skin_options['sed_method'] : '0';
110
+
111
+ // Image popup
112
+ $this->image_popup = isset($this->skin_options['image_popup']) ? $this->skin_options['image_popup'] : '0';
113
+
114
+ // From Widget
115
+ $this->widget = (isset($this->atts['widget']) and trim($this->atts['widget'])) ? true : false;
116
+ if($this->widget)
117
+ {
118
+ $this->skin_options['count'] = '1';
119
+ $this->load_more_button = false;
120
+ }
121
+
122
+ // The count in row
123
+ $this->count = isset($this->skin_options['count']) ? $this->skin_options['count'] : '3';
124
+
125
+ // Map on top
126
+ $this->map_on_top = isset($this->skin_options['map_on_top']) ? $this->skin_options['map_on_top'] : false;
127
+
128
+ // Init MEC
129
+ $this->args['mec-init'] = true;
130
+ $this->args['mec-skin'] = $this->skin;
131
+
132
+ // Post Type
133
+ $this->args['post_type'] = $this->main->get_main_post_type();
134
+
135
+ // Post Status
136
+ $this->args['post_status'] = 'publish';
137
+
138
+ // Keyword Query
139
+ $this->args['s'] = $this->keyword_query();
140
+
141
+ // Taxonomy
142
+ $this->args['tax_query'] = $this->tax_query();
143
+
144
+ // Meta
145
+ $this->args['meta_query'] = $this->meta_query();
146
+
147
+ // Tag
148
+ $this->args['tag'] = $this->tag_query();
149
+
150
+ // Author
151
+ $this->args['author'] = $this->author_query();
152
+
153
+ // Pagination Options
154
+ $this->paged = get_query_var('paged', 1);
155
+ $this->limit = (isset($this->skin_options['limit']) and trim($this->skin_options['limit'])) ? $this->skin_options['limit'] : 12;
156
+
157
+ $this->args['posts_per_page'] = $this->limit;
158
+ $this->args['paged'] = $this->paged;
159
+
160
+ // Sort Options
161
+ $this->args['orderby'] = 'meta_value_num';
162
+ $this->args['order'] = 'ASC';
163
+ $this->args['meta_key'] = 'mec_start_day_seconds';
164
+
165
+ // Exclude Posts
166
+ if(isset($this->atts['exclude']) and is_array($this->atts['exclude']) and count($this->atts['exclude'])) $this->args['post__not_in'] = $this->atts['exclude'];
167
+
168
+ // Include Posts
169
+ if(isset($this->atts['include']) and is_array($this->atts['include']) and count($this->atts['include'])) $this->args['post__in'] = $this->atts['include'];
170
+
171
+ // Show Only Expired Events
172
+ $this->show_only_expired_events = (isset($this->atts['show_only_past_events']) and trim($this->atts['show_only_past_events'])) ? '1' : '0';
173
+
174
+ // Show Past Events
175
+ if($this->show_only_expired_events)
176
+ {
177
+ $this->atts['show_past_events'] = '1';
178
+ $this->args['order'] = 'DESC';
179
+ }
180
+
181
+ // Show Past Events
182
+ $this->args['mec-past-events'] = isset($this->atts['show_past_events']) ? $this->atts['show_past_events'] : '0';
183
+
184
+ // Start Date
185
+ $this->start_date = $this->get_start_date();
186
+
187
+ // We will extend the end date in the loop
188
+ $this->end_date = $this->start_date;
189
+
190
+ // Show Ongoing Events
191
+ $this->show_ongoing_events = (isset($this->atts['show_only_ongoing_events']) and trim($this->atts['show_only_ongoing_events'])) ? '1' : '0';
192
+ if($this->show_ongoing_events)
193
+ {
194
+ $this->args['mec-show-ongoing-events'] = $this->show_ongoing_events;
195
+ $this->maximum_date = $this->start_date;
196
+ }
197
+
198
+ // Set start time
199
+ if(isset($this->atts['seconds']))
200
+ {
201
+ $this->args['mec-seconds'] = $this->atts['seconds'];
202
+ $this->args['mec-seconds-date'] = isset($this->atts['seconds_date']) ? $this->atts['seconds_date'] : $this->start_date;
203
+ }
204
+
205
+ // Apply Maximum Date
206
+ if($this->request->getVar('apply_sf_date', 0) == 1 and isset($this->sf) and isset($this->sf['month']) and trim($this->sf['month'])) $this->maximum_date = date('Y-m-t', strtotime($this->start_date));
207
+
208
+ // Found Events
209
+ $this->found = 0;
210
+ }
211
+
212
+ /**
213
+ * Returns start day of skin for filtering events
214
+ * @author Webnus <info@webnus.biz>
215
+ * @return string
216
+ */
217
+ public function get_start_date()
218
+ {
219
+ // Default date
220
+ $date = current_time('Y-m-d');
221
+
222
+ if(isset($this->skin_options['start_date_type']) and $this->skin_options['start_date_type'] == 'today') $date = current_time('Y-m-d');
223
+ elseif(isset($this->skin_options['start_date_type']) and $this->skin_options['start_date_type'] == 'tomorrow') $date = date('Y-m-d', strtotime('Tomorrow'));
224
+ elseif(isset($this->skin_options['start_date_type']) and $this->skin_options['start_date_type'] == 'start_current_month') $date = date('Y-m-d', strtotime('first day of this month'));
225
+ elseif(isset($this->skin_options['start_date_type']) and $this->skin_options['start_date_type'] == 'start_next_month') $date = date('Y-m-d', strtotime('first day of next month'));
226
+ elseif(isset($this->skin_options['start_date_type']) and $this->skin_options['start_date_type'] == 'date') $date = date('Y-m-d', strtotime($this->skin_options['start_date']));
227
+
228
+ // Hide past events
229
+ if(isset($this->atts['show_past_events']) and !trim($this->atts['show_past_events']))
230
+ {
231
+ $today = current_time('Y-m-d');
232
+ if(strtotime($date) < strtotime($today)) $date = $today;
233
+ }
234
+
235
+ // Show only expired events
236
+ if(isset($this->show_only_expired_events) and $this->show_only_expired_events)
237
+ {
238
+ $yesterday = date('Y-m-d', strtotime('Yesterday'));
239
+ if(strtotime($date) > strtotime($yesterday)) $date = $yesterday;
240
+ }
241
+
242
+ return $date;
243
+ }
244
+
245
+ /**
246
+ * Load more events for AJAX requert
247
+ * @author Webnus <info@webnus.biz>
248
+ * @return void
249
+ */
250
+ public function load_more()
251
+ {
252
+ $this->sf = $this->request->getVar('sf', array());
253
+ $apply_sf_date = $this->request->getVar('apply_sf_date', 1);
254
+ $atts = $this->sf_apply($this->request->getVar('atts', array()), $this->sf, $apply_sf_date);
255
+
256
+ // Initialize the skin
257
+ $this->initialize($atts);
258
+
259
+ // Override variables
260
+ $this->start_date = $this->request->getVar('mec_start_date', date('y-m-d'));
261
+ $this->end_date = $this->start_date;
262
+ $this->offset = $this->request->getVar('mec_offset', 0);
263
+
264
+ // Apply Maximum Date
265
+ if($apply_sf_date == 1 and isset($this->sf) and isset($this->sf['month']) and trim($this->sf['month'])) $this->maximum_date = date('Y-m-t', strtotime($this->start_date));
266
+
267
+ // Return the events
268
+ $this->atts['return_items'] = true;
269
+
270
+ // Fetch the events
271
+ $this->fetch();
272
+
273
+ // Return the output
274
+ $output = $this->output();
275
+
276
+ echo json_encode($output);
277
+ exit;
278
+ }
279
+ }
app/skins/custom/index.html ADDED
File without changes
app/skins/custom/render.php ADDED
@@ -0,0 +1,61 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /** no direct access **/
3
+ defined('MECEXEC') or die();
4
+
5
+ $styling = $this->main->get_styling();
6
+ $event_colorskin = (isset($styling['mec_colorskin'] ) || isset($styling['color'])) ? 'colorskin-custom' : '';
7
+ $settings = $this->main->get_settings();
8
+
9
+ // colorful
10
+ $colorful_flag = $colorful_class = '';
11
+ if($this->style == 'colorful') {
12
+ $colorful_flag = true;
13
+ $this->style = 'modern';
14
+ $colorful_class = ' mec-event-custom-colorful';
15
+ }
16
+
17
+ ?>
18
+ <div class="mec-wrap <?php echo $event_colorskin . $colorful_class; ?>">
19
+ <div class="mec-event-custom-<?php echo $this->style; ?>">
20
+ <article class="mec-event-article mec-clear" itemscope>
21
+ <?php
22
+ $ids = [
23
+ 'style_id' => $this->style,
24
+ 'shortcode_id' => $this->id,
25
+ ];
26
+ do_action( 'mec_custom_skin_loop', $ids ); ?>
27
+ </article>
28
+ </div>
29
+ </div>
30
+
31
+ <?php
32
+ if ( isset($this->map_on_top) and $this->map_on_top ) :
33
+ if(isset($map_events) and !empty($map_events))
34
+ {
35
+ // Include Map Assets such as JS and CSS libraries
36
+ $this->main->load_map_assets();
37
+
38
+ $map_javascript = '<script type="text/javascript">
39
+ jQuery(document).ready(function()
40
+ {
41
+ var jsonPush = gmapSkin('.json_encode($this->render->markers($map_events)).');
42
+ jQuery("#mec_googlemap_canvas'.$this->id.'").mecGoogleMaps(
43
+ {
44
+ id: "'.$this->id.'",
45
+ atts: "'.http_build_query(array('atts'=>$this->atts), '', '&').'",
46
+ zoom: '.(isset($settings['google_maps_zoomlevel']) ? $settings['google_maps_zoomlevel'] : 14).',
47
+ icon: "'.apply_filters('mec_marker_icon', $this->main->asset('img/m-04.png')).'",
48
+ styles: '.((isset($settings['google_maps_style']) and trim($settings['google_maps_style']) != '') ? $this->main->get_googlemap_style($settings['google_maps_style']) : "''").',
49
+ markers: jsonPush,
50
+ clustering_images: "'.$this->main->asset('img/cluster1/m').'",
51
+ getDirection: 0,
52
+ ajax_url: "'.admin_url('admin-ajax.php', NULL).'",
53
+ });
54
+ });
55
+ </script>';
56
+
57
+ // Include javascript code into the page
58
+ if($this->main->is_ajax()) echo $map_javascript;
59
+ else $this->factory->params('footer', $map_javascript);
60
+ }
61
+ endif;
app/skins/custom/tpl.php ADDED
@@ -0,0 +1,73 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /** no direct access **/
3
+ defined('MECEXEC') or die();
4
+
5
+ // Get layout path
6
+ $render_path = $this->get_render_path();
7
+
8
+ ob_start();
9
+ include $render_path;
10
+ $items_html = ob_get_clean();
11
+
12
+ if(isset($this->atts['return_items']) and $this->atts['return_items'])
13
+ {
14
+ echo json_encode(array('html'=>$items_html, 'end_date'=>$this->end_date, 'offset'=>$this->next_offset, 'count'=>$this->found));
15
+ exit;
16
+ }
17
+
18
+ // Generating javascript code tpl
19
+ $javascript = '<script type="text/javascript">
20
+ jQuery(document).ready(function()
21
+ {
22
+ jQuery("#mec_skin_'.$this->id.'").mecCustomView(
23
+ {
24
+ id: "'.$this->id.'",
25
+ start_date: "'.$this->start_date.'",
26
+ end_date: "'.$this->end_date.'",
27
+ offset: "'.$this->next_offset.'",
28
+ limit: "'.$this->limit.'",
29
+ atts: "'.http_build_query(array('atts'=>$this->atts), '', '&').'",
30
+ ajax_url: "'.admin_url('admin-ajax.php', NULL).'",
31
+ sed_method: "'.$this->sed_method.'",
32
+ image_popup: "'.$this->image_popup.'",
33
+ sf:
34
+ {
35
+ container: "'.($this->sf_status ? '#mec_search_form_'.$this->id : '').'",
36
+ },
37
+ });
38
+ });
39
+ </script>';
40
+
41
+ // Include javascript code into the page
42
+ if($this->main->is_ajax()) echo $javascript;
43
+ else $this->factory->params('footer', $javascript);
44
+ do_action('mec_custom_skin_head');
45
+ ?>
46
+ <div class="mec-wrap mec-skin-custom-container <?php echo $this->html_class; ?>" id="mec_skin_<?php echo $this->id; ?>">
47
+
48
+ <?php if($this->sf_status) echo $this->sf_search_form(); ?>
49
+
50
+ <?php if($this->found): ?>
51
+ <?php if ( $this->map_on_top == '1' ) : ?>
52
+ <div class="mec-wrap mec-skin-map-container <?php echo $this->html_class; ?>" id="mec_skin_<?php echo $this->id; ?>">
53
+ <div class="mec-googlemap-skin" id="mec_googlemap_canvas<?php echo $this->id; ?>" style="height: 500px;"></div>
54
+ <input type="hidden" id="gmap-data" value="">
55
+ </div>
56
+ <?php endif; ?>
57
+ <div class="mec-skin-custom-events-container" id="mec_skin_events_<?php echo $this->id; ?>">
58
+ <?php echo $items_html; ?>
59
+ </div>
60
+ <div class="mec-skin-custom-no-events-container mec-util-hidden" id="mec_skin_no_events_<?php echo $this->id; ?>">
61
+ <?php _e('No event found!', 'modern-events-calendar-lite'); ?>
62
+ </div>
63
+ <?php else: ?>
64
+ <div class="mec-skin-custom-events-container" id="mec_skin_events_<?php echo $this->id; ?>">
65
+ <?php _e('No event found!', 'modern-events-calendar-lite'); ?>
66
+ </div>
67
+ <?php endif; ?>
68
+
69
+ <?php if($this->load_more_button and $this->found >= $this->limit): ?>
70
+ <div class="mec-load-more-wrap"><div class="mec-load-more-button" onclick=""><?php echo __('Load More', 'modern-events-calendar-lite'); ?></div></div>
71
+ <?php endif; ?>
72
+
73
+ </div>
app/skins/single.php CHANGED
@@ -242,7 +242,8 @@ class MEC_skin_single extends MEC_skins
242
  // Remove First Date if it is already started!
243
  if(!isset($_GET['occurrence']) or (isset($_GET['occurrence']) and !trim($_GET['occurrence'])))
244
  {
245
- $start_date = (isset($dates[0]['start']) and isset($dates[0]['start']['date'])) ? $dates[0]['start']['date'] : current_time('Y-m-d');
 
246
 
247
  $s_time = '';
248
  $s_time .= sprintf("%02d", $dates[0]['start']['hour']).':';
@@ -251,15 +252,42 @@ class MEC_skin_single extends MEC_skins
251
 
252
  $start_time = date('D M j Y G:i:s', strtotime($start_date.' '.$s_time));
253
 
 
 
 
 
 
 
 
254
  $d1 = new DateTime($start_time);
255
  $d2 = new DateTime(current_time("D M j Y G:i:s"));
 
 
 
 
256
 
257
- if($d1 < $d2)
 
 
 
258
  {
259
- unset($dates[0]);
 
 
260
 
261
- // Get Event Dates
262
- $dates = $this->render->dates($this->id, $rendered, $this->maximum_dates);
 
 
 
 
 
 
 
 
 
 
 
263
  }
264
  }
265
 
@@ -715,11 +743,14 @@ class MEC_skin_single extends MEC_skins
715
  }
716
 
717
  /**
718
- * @param object register_button Widget
719
  * @return void
720
  */
721
  public function display_register_button_widget($event)
722
  {
 
 
 
723
  if ($this->main->can_show_booking_module($event)) : ?>
724
  <div class="mec-reg-btn mec-frontbox">
725
  <?php $data_lity = $data_lity_class = ''; if( isset($settings['single_booking_style']) and $settings['single_booking_style'] == 'modal' ){ $data_lity = 'data-lity'; $data_lity_class = 'mec-booking-data-lity'; } ?>
242
  // Remove First Date if it is already started!
243
  if(!isset($_GET['occurrence']) or (isset($_GET['occurrence']) and !trim($_GET['occurrence'])))
244
  {
245
+ $start_date = (isset($dates[0]['start']) and isset($dates[0]['start']['date'])) ? $dates[0]['start']['date'] : current_time('Y-m-d H:i:s');
246
+ $end_date = (isset($dates[0]['end']) and isset($dates[0]['end']['date'])) ? $dates[0]['end']['date'] : current_time('Y-m-d H:i:s');
247
 
248
  $s_time = '';
249
  $s_time .= sprintf("%02d", $dates[0]['start']['hour']).':';
252
 
253
  $start_time = date('D M j Y G:i:s', strtotime($start_date.' '.$s_time));
254
 
255
+ $e_time = '';
256
+ $e_time .= sprintf("%02d", $dates[0]['end']['hour']).':';
257
+ $e_time .= sprintf("%02d", $dates[0]['end']['minutes']);
258
+ $e_time .= trim($dates[0]['end']['ampm']);
259
+
260
+ $end_time = date('D M j Y G:i:s', strtotime($end_date.' '.$e_time));
261
+
262
  $d1 = new DateTime($start_time);
263
  $d2 = new DateTime(current_time("D M j Y G:i:s"));
264
+ $d3 = new DateTime($end_time);
265
+
266
+ // MEC Settings
267
+ $settings = $this->main->get_settings();
268
 
269
+ // Booking OnGoing Event Option
270
+ $ongoing_event_book = (isset($settings['booking_ongoing']) and $settings['booking_ongoing'] == '1') ? true : false;
271
+
272
+ if($ongoing_event_book)
273
  {
274
+ if($d3 < $d2)
275
+ {
276
+ unset($dates[0]);
277
 
278
+ // Get Event Dates
279
+ $dates = $this->render->dates($this->id, $rendered, $this->maximum_dates);
280
+ }
281
+ }
282
+ else
283
+ {
284
+ if($d1 < $d2)
285
+ {
286
+ unset($dates[0]);
287
+
288
+ // Get Event Dates
289
+ $dates = $this->render->dates($this->id, $rendered, $this->maximum_dates);
290
+ }
291
  }
292
  }
293
 
743
  }
744
 
745
  /**
746
+ * @param object
747
  * @return void
748
  */
749
  public function display_register_button_widget($event)
750
  {
751
+ // MEC Settings
752
+ $settings = $this->main->get_settings();
753
+
754
  if ($this->main->can_show_booking_module($event)) : ?>
755
  <div class="mec-reg-btn mec-frontbox">
756
  <?php $data_lity = $data_lity_class = ''; if( isset($settings['single_booking_style']) and $settings['single_booking_style'] == 'modal' ){ $data_lity = 'data-lity'; $data_lity_class = 'mec-booking-data-lity'; } ?>
assets/css/backend.css CHANGED
@@ -268,9 +268,10 @@
268
  .wns-be-sidebar li a i {
269
  color: #a0abb5;
270
  vertical-align: middle;
271
- font-size: 16px;
272
  position: absolute;
273
- margin-top: 0
 
274
  }
275
 
276
  .wns-be-sidebar .wns-be-group-menu li.active>a i {
@@ -367,6 +368,29 @@
367
  text-shadow: 0 1px 0 rgba(255,255,255,.5)
368
  }
369
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
370
  body.post-type-mec-events th.column-primary {
371
  width: 35%
372
  }
@@ -455,8 +479,8 @@ body.post-type-mec-books th.column-author {
455
 
456
  .mec-tooltip .dashicons-before:before {
457
  font-size: 24px;
458
- color: #008aff;
459
- line-height: 37px
460
  }
461
 
462
  .mec-tooltip a:focus {
@@ -804,13 +828,13 @@ body.post-type-mec-books th.column-author {
804
  }
805
 
806
  .mec-form-row {
807
- margin: 0 auto 10px
808
  }
809
 
810
  .mec-options-fields {
811
  padding-top: 25px;
812
  overflow: hidden;
813
- animation: fadeEffect 1s
814
  }
815
 
816
  #mec_booking_form .mec-options-fields,#mec_modules_form .mec-options-fields,#mec_notifications_form .mec-options-fields,#mec_settings_form .mec-options-fields,#mec_single_form .mec-options-fields {
@@ -823,11 +847,13 @@ body.post-type-mec-books th.column-author {
823
 
824
  @keyframes fadeEffect {
825
  from {
826
- opacity: 0
 
827
  }
828
 
829
  to {
830
- opacity: 1
 
831
  }
832
  }
833
 
@@ -840,14 +866,17 @@ body.post-type-mec-books th.column-author {
840
  clear: both
841
  }
842
 
843
- .mec-form-row input[type=number],.mec-form-row input[type=text],.mec-form-row select {
 
 
 
844
  height: 38px;
845
  box-sizing: border-box;
846
  margin-bottom: 8px;
847
  padding: 0 6px;
848
  box-shadow: none;
849
  border-radius: 2px;
850
- box-shadow: inset 0 1px 5px rgba(0,0,0,.05)
851
  }
852
 
853
  .mec-form-row input[type=radio] {
@@ -892,17 +921,20 @@ body.post-type-mec-books th.column-author {
892
  font: 400 24px/1 dashicons
893
  }
894
 
895
- .mec-form-row .mec-col-4 input[type=text],.mec-form-row .mec-col-4 select {
896
- width: 75%
 
 
897
  }
898
 
899
  .mec-form-row .description {
900
  display: inline-block;
901
  border-left: 1px dashed #ccc;
902
  margin-left: 12px;
903
- line-height: 26px;
904
  padding-left: 12px;
905
- color: #555
 
906
  }
907
 
908
  .mec-form-row .time-dv {
@@ -1021,7 +1053,7 @@ body.post-type-mec-books th.column-author {
1021
  color: #008aff;
1022
  font-weight: 600;
1023
  cursor: default;
1024
- box-shadow: 0 0 8px rgba(1,138,255,.5) inset
1025
  }
1026
 
1027
  .mec-switcher input+label {
@@ -1095,14 +1127,19 @@ body.post-type-mec-books th.column-author {
1095
  }
1096
 
1097
  .mec-message-categories li.mec-acc-label {
1098
- font-size: 18px;
1099
- font-weight: 700;
1100
- padding: 10px;
1101
  cursor: pointer;
1102
- background-color: #f1f1f1;
1103
- border: 1px solid #ccc
 
 
 
 
1104
  }
1105
 
 
1106
  .mec-message-categories ul {
1107
  margin: 15px 5px
1108
  }
@@ -1194,9 +1231,11 @@ body.post-type-mec-books th.column-author {
1194
  transition: margin .4s
1195
  }
1196
 
1197
- .wns-be-group-tab .mec-switcher input[value="1"]+label,.wns-be-group-tab .mec-switcher input[value="1"]+label:before {
 
1198
  background-color: #008aff;
1199
- box-shadow: 0 3px 22px -7px #008aff
 
1200
  }
1201
 
1202
  .wns-be-group-tab .mec-switcher input[value="1"]+label:after {
@@ -1204,11 +1243,12 @@ body.post-type-mec-books th.column-author {
1204
  }
1205
 
1206
  .mec-switcher input:checked+label {
1207
- background-color: #008aff
1208
  }
1209
 
1210
  .mec-switcher input:checked+label:before {
1211
- background-color: #008aff
 
1212
  }
1213
 
1214
  .mec-switcher input:checked+label:after {
@@ -1290,13 +1330,18 @@ body.post-type-mec-books th.column-author {
1290
  width: 35px;
1291
  height: 35px;
1292
  display: block;
1293
- border: 3px solid transparent
 
 
 
1294
  }
1295
 
1296
  .mec-image-select-wrap li input:checked+span {
1297
- border-color: #e3e3e3
 
1298
  }
1299
 
 
1300
  .mec-image-select-wrap li input:checked+span:after {
1301
  content: "\f00c";
1302
  font-family: fontawesome;
@@ -1885,10 +1930,22 @@ p.mec_dash_count {
1885
  }
1886
 
1887
  .mec-not-in-days-remove {
1888
- border: 1px solid #f99170;
1889
  border-radius: 20px;
1890
- padding: 0 0 0 2px;
1891
- color: #f99170
 
 
 
 
 
 
 
 
 
 
 
 
1892
  }
1893
 
1894
  .mec-xi-facebook-import-events .mec-success,.mec-xi-google-import-events .mec-success {
@@ -3002,32 +3059,7 @@ hr {
3002
  z-index: 999999999999999999
3003
  }
3004
 
3005
- #mec-search-settings {
3006
- border-radius: 2px;
3007
- min-height: 32px;
3008
- box-shadow: 0 3px 14px -5px rgba(0,0,0,.2),inset 0 1px 2px rgba(0,0,0,.07);
3009
- padding: 9px 10px 11px;
3010
- margin-right: 6px;
3011
- color: #7c7772;
3012
- font-size: 12px;
3013
- width: 200px
3014
- }
3015
 
3016
- #mec-search-settings::-webkit-input-placeholder {
3017
- color: #7c7772
3018
- }
3019
-
3020
- #mec-search-settings::-moz-placeholder {
3021
- color: #7c7772
3022
- }
3023
-
3024
- #mec-search-settings:-ms-input-placeholder {
3025
- color: #7c7772
3026
- }
3027
-
3028
- #mec-search-settings:-moz-placeholder {
3029
- color: #7c7772
3030
- }
3031
 
3032
  .mec-export-settings,.mec-import-settings {
3033
  font-weight: 700;
@@ -4249,13 +4281,13 @@ a.mec-intro-section-link-tag.button.button-secondary.button-hero {
4249
  font-size: 17px;
4250
  font-weight: 600;
4251
  margin: -30px -20px;
4252
- padding: 20px 0;
4253
  text-align: center;
4254
  margin-bottom: 10px;
4255
  background: #3a3f44;
4256
- border-bottom: 1px solid #32363a;
4257
  border-radius: 6px 6px 0 0;
4258
- z-index: 9999
4259
  }
4260
 
4261
  #webnus-dashboard .mec-tooltip .box p a,.mec-tooltip .box p a {
@@ -4671,10 +4703,6 @@ body.rtl #mec_gateways_form .mec-tooltip {
4671
  }
4672
 
4673
  /* Details Page */
4674
- div#plugin-information-content .section {
4675
- margin-top: -600px;
4676
- }
4677
-
4678
  .mec-details-addons-container {
4679
  margin-top: 20px;
4680
  }
@@ -5124,14 +5152,15 @@ li.wns-be-group-menu-li.mec-settings-menu:hover > .mec-settings-submenu {
5124
  .wn-mec-select .option .wn-hover-img-sh img {
5125
  position: absolute;
5126
  padding: 3px;
5127
- top: 0;
5128
- left: 140px;
5129
- box-shadow: 0 3px 42px -8px rgba(0,0,0,.3);
5130
  visibility: hidden;
5131
  opacity: 0;
5132
- border: 1px solid #dbdbdb;
5133
- z-index: 999999;
5134
- background: #fff
 
5135
  }
5136
 
5137
  .wn-mec-select .option:hover .wn-hover-img-sh img {
@@ -5189,23 +5218,22 @@ li.wns-be-group-menu-li.mec-settings-menu:hover > .mec-settings-submenu {
5189
  }
5190
 
5191
  .mec-custom-nice-select ul.list {
5192
- min-width: 600px!important;
5193
- margin-left: -132px!important;
5194
- padding: 20px 10px!important;
5195
  background: #fcfbfd;
5196
  border: 1px solid #e9e9e9;
5197
- box-shadow: 0 1px 4px rgba(0,0,0,.05)
5198
  }
5199
 
5200
  .mec-custom-nice-select ul.list li.option.selected {
5201
- border: 1px solid #008aff;
5202
- box-shadow: 0 1px 8px -3px #008aff inset;
5203
- color: #008aff;
5204
- padding: 12px 0 0 0!important
5205
  }
5206
 
5207
  .mec-custom-nice-select .wn-img-sh img {
5208
- margin: 4px 0 1px;
5209
  line-height: 1;
5210
  max-width: 68px;
5211
  max-height: 56px;
@@ -5324,3 +5352,513 @@ li.wns-be-group-menu-li.mec-settings-menu:hover > .mec-settings-submenu {
5324
  background: #fff;
5325
  box-shadow: 0 3px 16px -3px #008aff
5326
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
268
  .wns-be-sidebar li a i {
269
  color: #a0abb5;
270
  vertical-align: middle;
271
+ font-size: 18px;
272
  position: absolute;
273
+ margin-top: 0;
274
+ margin-left: -4px;
275
  }
276
 
277
  .wns-be-sidebar .wns-be-group-menu li.active>a i {
368
  text-shadow: 0 1px 0 rgba(255,255,255,.5)
369
  }
370
 
371
+ @media(max-width: 480px){
372
+ a.dpr-btn.dpr-save-btn {
373
+ display: block !important;
374
+ text-align: center !important;
375
+ margin-top: 20px !important;
376
+ }
377
+
378
+ .mec-search-settings-wrap {
379
+ margin-top: 73px !important;
380
+ text-align: center !important;
381
+ display: block !important;
382
+ }
383
+
384
+ #mec-search-settings {
385
+ margin: 0 !important;
386
+ width: 100% !important;
387
+ }
388
+ .wns-be-container #wns-be-infobar {
389
+ height: auto !important;
390
+ }
391
+ }
392
+
393
+
394
  body.post-type-mec-events th.column-primary {
395
  width: 35%
396
  }
479
 
480
  .mec-tooltip .dashicons-before:before {
481
  font-size: 24px;
482
+ color: #40d9f1;
483
+ line-height: 37px;
484
  }
485
 
486
  .mec-tooltip a:focus {
828
  }
829
 
830
  .mec-form-row {
831
+ margin: 0 auto 16px;
832
  }
833
 
834
  .mec-options-fields {
835
  padding-top: 25px;
836
  overflow: hidden;
837
+ animation: fadeEffect 0.31s
838
  }
839
 
840
  #mec_booking_form .mec-options-fields,#mec_modules_form .mec-options-fields,#mec_notifications_form .mec-options-fields,#mec_settings_form .mec-options-fields,#mec_single_form .mec-options-fields {
847
 
848
  @keyframes fadeEffect {
849
  from {
850
+ opacity: 0;
851
+ margin-left: 12px
852
  }
853
 
854
  to {
855
+ opacity: 1;
856
+ margin-left: 0px
857
  }
858
  }
859
 
866
  clear: both
867
  }
868
 
869
+ .mec-form-row input[type=number],
870
+ .mec-form-row input[type=text],
871
+ .mec-form-row select,
872
+ .mec-form-row textarea {
873
  height: 38px;
874
  box-sizing: border-box;
875
  margin-bottom: 8px;
876
  padding: 0 6px;
877
  box-shadow: none;
878
  border-radius: 2px;
879
+ box-shadow: inset 0 1px 5px rgba(0, 0, 0, .05);
880
  }
881
 
882
  .mec-form-row input[type=radio] {
921
  font: 400 24px/1 dashicons
922
  }
923
 
924
+ .mec-form-row .mec-col-4 input[type=text],
925
+ .mec-form-row .mec-col-4 select,
926
+ .mec-form-row .mec-col-4 textarea {
927
+ width: 75%;
928
  }
929
 
930
  .mec-form-row .description {
931
  display: inline-block;
932
  border-left: 1px dashed #ccc;
933
  margin-left: 12px;
934
+ line-height: 32px;
935
  padding-left: 12px;
936
+ margin-top: 5px;
937
+ color: #555;
938
  }
939
 
940
  .mec-form-row .time-dv {
1053
  color: #008aff;
1054
  font-weight: 600;
1055
  cursor: default;
1056
+ box-shadow: 0 0 4px rgba(1, 138, 255, .3) inset;
1057
  }
1058
 
1059
  .mec-switcher input+label {
1127
  }
1128
 
1129
  .mec-message-categories li.mec-acc-label {
1130
+ font-size: 15px;
1131
+ font-weight: 600;
1132
+ padding: 25px 30px;
1133
  cursor: pointer;
1134
+ background-color: #fff;
1135
+ border: none;
1136
+ border-bottom: 1px solid #e6e6e6;
1137
+ margin: 0;
1138
+ letter-spacing: 0.5px;
1139
+ position: relative;
1140
  }
1141
 
1142
+
1143
  .mec-message-categories ul {
1144
  margin: 15px 5px
1145
  }
1231
  transition: margin .4s
1232
  }
1233
 
1234
+ .wns-be-group-tab .mec-switcher input[value="1"]+label,
1235
+ .wns-be-group-tab .mec-switcher input[value="1"]+label:before {
1236
  background-color: #008aff;
1237
+ background: linear-gradient(95deg, #4dacfd 0, #0d90ff 50%, #008aff 100%);
1238
+ box-shadow: 0 3px 11px -7px #008aff;
1239
  }
1240
 
1241
  .wns-be-group-tab .mec-switcher input[value="1"]+label:after {
1243
  }
1244
 
1245
  .mec-switcher input:checked+label {
1246
+ box-shadow: 0 3px 11px -7px #008aff;
1247
  }
1248
 
1249
  .mec-switcher input:checked+label:before {
1250
+ background-color: #008aff;
1251
+ background: linear-gradient(95deg, #4dacfd 0, #0d90ff 50%, #008aff 100%);
1252
  }
1253
 
1254
  .mec-switcher input:checked+label:after {
1330
  width: 35px;
1331
  height: 35px;
1332
  display: block;
1333
+ margin: 3px;
1334
+ border-radius: 2px;
1335
+ border: 3px solid transparent;
1336
+ transition: all 0.2s ease;
1337
  }
1338
 
1339
  .mec-image-select-wrap li input:checked+span {
1340
+ border-color: #ffffff;
1341
+ box-shadow: 0 0 14px rgba(0, 0, 0, 0.25);
1342
  }
1343
 
1344
+
1345
  .mec-image-select-wrap li input:checked+span:after {
1346
  content: "\f00c";
1347
  font-family: fontawesome;
1930
  }
1931
 
1932
  .mec-not-in-days-remove {
1933
+ border: 1px solid #ff4b64;
1934
  border-radius: 20px;
1935
+ padding: 0 0 0 1px;
1936
+ color: #ff4b64;
1937
+ width: 11px;
1938
+ height: 12px;
1939
+ text-align: center;
1940
+ line-height: 12px;
1941
+ display: inline-block;
1942
+ margin-right: -5px;
1943
+ margin-left: 6px;
1944
+ }
1945
+
1946
+ div#mec_not_in_days_row2:hover {
1947
+ border-color: #e2e2e2 !important;
1948
+ box-shadow: none !important;
1949
  }
1950
 
1951
  .mec-xi-facebook-import-events .mec-success,.mec-xi-google-import-events .mec-success {
3059
  z-index: 999999999999999999
3060
  }
3061
 
 
 
 
 
 
 
 
 
 
 
3062
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3063
 
3064
  .mec-export-settings,.mec-import-settings {
3065
  font-weight: 700;
4281
  font-size: 17px;
4282
  font-weight: 600;
4283
  margin: -30px -20px;
4284
+ padding: 15px 0;
4285
  text-align: center;
4286
  margin-bottom: 10px;
4287
  background: #3a3f44;
4288
+ border-bottom: 1px solid #30353a;
4289
  border-radius: 6px 6px 0 0;
4290
+ z-index: 9999;
4291
  }
4292
 
4293
  #webnus-dashboard .mec-tooltip .box p a,.mec-tooltip .box p a {
4703
  }
4704
 
4705
  /* Details Page */
 
 
 
 
4706
  .mec-details-addons-container {
4707
  margin-top: 20px;
4708
  }
5152
  .wn-mec-select .option .wn-hover-img-sh img {
5153
  position: absolute;
5154
  padding: 3px;
5155
+ top: -1px;
5156
+ left: 100%;
5157
+ box-shadow: 0 4px 42px -5px rgba(0, 0, 0, .16);
5158
  visibility: hidden;
5159
  opacity: 0;
5160
+ border: 1px solid #e3e3e3;
5161
+ border-radius: 2px;
5162
+ z-index: 99999999;
5163
+ background: #fff;
5164
  }
5165
 
5166
  .wn-mec-select .option:hover .wn-hover-img-sh img {
5218
  }
5219
 
5220
  .mec-custom-nice-select ul.list {
5221
+ min-width: 600px !important;
5222
+ padding: 20px 10px !important;
 
5223
  background: #fcfbfd;
5224
  border: 1px solid #e9e9e9;
5225
+ box-shadow: 0 1px 4px rgba(0, 0, 0, .05);
5226
  }
5227
 
5228
  .mec-custom-nice-select ul.list li.option.selected {
5229
+ border: 1px solid #40d9f1;
5230
+ box-shadow: 0 1px 8px -3px #40d9f1 inset;
5231
+ color: #00cae6;
5232
+ padding: 12px 0 0 0 !important;
5233
  }
5234
 
5235
  .mec-custom-nice-select .wn-img-sh img {
5236
+ margin: 4px 0 1px 1px;
5237
  line-height: 1;
5238
  max-width: 68px;
5239
  max-height: 56px;
5352
  background: #fff;
5353
  box-shadow: 0 3px 16px -3px #008aff
5354
  }
5355
+
5356
+ /* Fix Svg icon */
5357
+ .toplevel_page_mec-intro .wp-menu-image img,
5358
+ .menu-icon-mec-books .wp-menu-image img {
5359
+ width: 18px !important;
5360
+ padding-top: 7px !important;
5361
+ }
5362
+
5363
+ /* Add event tabs */
5364
+ .mec-add-event-tabs-wrap,
5365
+ .mec-add-booking-tabs-wrap,
5366
+ .mec-create-shortcode-tabs-wrap {
5367
+ display: flex;
5368
+ display: -webkit-box;
5369
+ display: -webkit-flex;
5370
+ display: -ms-flexbox;
5371
+ }
5372
+
5373
+ .mec-add-event-tabs-left,
5374
+ .mec-add-booking-tabs-left,
5375
+ .mec-create-shortcode-tabs-left {
5376
+ flex: 1;
5377
+ }
5378
+
5379
+ .mec-add-event-tabs-right,
5380
+ .mec-add-booking-tabs-right,
5381
+ .mec-create-shortcode-tabs-right {
5382
+ flex: 6;
5383
+ }
5384
+ a.mec-add-event-tabs-link,
5385
+ a.mec-add-booking-tabs-link,
5386
+ a.mec-create-shortcode-tabs-link {
5387
+ display: block;
5388
+ }
5389
+
5390
+ .mec-event-tab-content,
5391
+ .mec-booking-tab-content,
5392
+ .mec-create-shortcode-tab-content {
5393
+ display: none;
5394
+ transition: all 0.3s ease;
5395
+ }
5396
+
5397
+ .mec-event-tab-content.mec-tab-active,
5398
+ .mec-booking-tab-content.mec-tab-active,
5399
+ .mec-create-shortcode-tab-content.mec-tab-active {
5400
+ display: block;
5401
+ }
5402
+
5403
+ .mec-add-event-tabs-wrap,
5404
+ .mec-add-booking-tabs-wrap {
5405
+ background: #fff;
5406
+ margin: -6px -12px -12px;
5407
+ }
5408
+
5409
+ .mec-create-shortcode-tabs-wrap {
5410
+ margin: -30px -22px -42px;
5411
+ }
5412
+
5413
+ .mec-add-event-tabs-left,
5414
+ .mec-add-booking-tabs-left,
5415
+ .mec-create-shortcode-tabs-left {
5416
+ padding: 0 0 38px;
5417
+ background: #fff;
5418
+ min-width: 210px
5419
+ }
5420
+
5421
+ .mec-add-event-tabs-left a,
5422
+ .mec-add-booking-tabs-left a,
5423
+ .mec-create-shortcode-tabs-left a {
5424
+ line-height: 16px;
5425
+ font-size: 13px;
5426
+ font-weight: 600;
5427
+ letter-spacing: 0.3px;
5428
+ color: #6a6f77;
5429
+ text-decoration: none;
5430
+ background: #f7f7f7;
5431
+ padding: 13px 20px;
5432
+ border-bottom: 1px solid #e3e3e3;
5433
+ outline: none;
5434
+ box-shadow: none;
5435
+ transition: all 0.2s ease;
5436
+ }
5437
+
5438
+ .mec-add-event-tabs-left a:hover,
5439
+ .mec-add-booking-tabs-left a:hover,
5440
+ .mec-create-shortcode-tabs-left a:hover {
5441
+ color: #008aff;
5442
+ background: #fff;
5443
+ }
5444
+
5445
+ .mec-add-event-tabs-left a.mec-tab-active,
5446
+ .mec-add-booking-tabs-left a.mec-tab-active,
5447
+ .mec-create-shortcode-tabs-left a.mec-tab-active {
5448
+ background: #008aff;
5449
+ background: linear-gradient(95deg, #36a2ff 0, #008aff 50%, #0072ff 100%);
5450
+ color: #fff;
5451
+ margin: 0 -6px;
5452
+ border-radius: 5px;
5453
+ box-shadow: 0 2px 12px -5px #36a2ff;
5454
+ border-bottom-color: transparent;
5455
+ position: relative;
5456
+ }
5457
+
5458
+ .mec-add-event-tabs-right,
5459
+ .mec-add-booking-tabs-right,
5460
+ .mec-create-shortcode-tabs-right {
5461
+ padding: 0 30px 40px;
5462
+ border-left: 1px solid #e2e2e2;
5463
+ }
5464
+
5465
+ .mec-event-tab-content.mec-tab-active,
5466
+ .mec-booking-tab-content.mec-tab-active,
5467
+ .mec-create-shortcode-tab-content.mec-tab-active {
5468
+ animation: fadeEffect2 0.31s
5469
+ }
5470
+
5471
+ @media (max-width: 550px) {
5472
+
5473
+ .mec-add-booking-tabs-left,
5474
+ .mec-add-event-tabs-left,
5475
+ .mec-create-shortcode-tabs-left {
5476
+ min-width: 100px;
5477
+ }
5478
+
5479
+ .mec-add-booking-tabs-left a,
5480
+ .mec-add-event-tabs-left a,
5481
+ .mec-create-shortcode-tabs-left a {
5482
+ font-size: 11px;
5483
+ padding: 12px 8px;
5484
+ line-height: 1.2;
5485
+ letter-spacing: 0;
5486
+ }
5487
+ }
5488
+
5489
+ @keyframes fadeEffect2 {
5490
+ from {
5491
+ opacity: 0;
5492
+ transform: translateX(11px)
5493
+ }
5494
+
5495
+ to {
5496
+ opacity: 1;
5497
+ transform: translateX(0px)
5498
+ }
5499
+ }
5500
+
5501
+ /* New Admin CSS */
5502
+ .mec-form-row .mec-col-8 label {
5503
+ padding-right: 20px;
5504
+ }
5505
+
5506
+ .mec-calendar-metabox .wn-mec-select {
5507
+ border: solid 1px #ddd;
5508
+ border-radius: 2px;
5509
+ height: 40px;
5510
+ line-height: 38px;
5511
+ padding-left: 10px;
5512
+ box-shadow: 0 3px 10px -2px rgba(0, 0, 0, .05), inset 0 1px 2px rgba(0, 0, 0, .02);
5513
+ }
5514
+
5515
+ .mec-calendar-metabox .wn-mec-select.open .list {
5516
+ border-radius: 0 0 2px 2px;
5517
+ box-shadow: 0 0 0 1px #ddd, 0 2px 6px rgba(0, 0, 0, 0.07);
5518
+ }
5519
+
5520
+ .mec-calendar-metabox .mec-custom-nice-select.open ul.list {
5521
+ border-radius: 3px;
5522
+ box-shadow: 0 2px 6px rgba(0, 0, 0, 0.07);
5523
+ margin-left: 0 !important;
5524
+ transform: translateX(-50%);
5525
+ left: 50%;
5526
+ }
5527
+
5528
+ .mec-custom-nice-select ul.list li.option.selected .wn-mec-text:after {
5529
+ border: 6px solid #40d9f1;
5530
+ box-shadow: 0 3px 16px -3px #40d9f1;
5531
+ }
5532
+
5533
+ .mec-form-row input[type=checkbox] {
5534
+ background-color: #fff;
5535
+ border: 1px solid #cacece;
5536
+ box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
5537
+ padding: 9px;
5538
+ border-radius: 3px;
5539
+ min-width: 24px;
5540
+ min-height: 24px;
5541
+ display: inline-block;
5542
+ transition: all 0.18s ease;
5543
+ outline: none;
5544
+ margin: 2px 4px 4px 0;
5545
+ }
5546
+
5547
+ .mec-form-row input[type=checkbox]:focus {
5548
+ outline: none;
5549
+ }
5550
+
5551
+ .mec-form-row input[type=checkbox]:hover {
5552
+ border-color: #62b6ff;
5553
+ }
5554
+
5555
+ .mec-form-row input[type=checkbox]:checked {
5556
+ box-shadow: 0 1px 6px -2px #008aff;
5557
+ border-color: #008aff;
5558
+ background: #008aff;
5559
+ border-radius: 2px;
5560
+ position: relative;
5561
+ }
5562
+
5563
+ .mec-form-row.mec-switcher input[type=checkbox] {
5564
+ position: absolute;
5565
+ }
5566
+
5567
+ .mec-form-row input[type=checkbox]:checked:before {
5568
+ content: "";
5569
+ font: normal;
5570
+ position: absolute;
5571
+ top: 12px;
5572
+ left: 8px;
5573
+ border-right: 2px solid transparent;
5574
+ border-bottom: 2px solid transparent;
5575
+ transform: rotate(45deg);
5576
+ transform-origin: 0% 100%;
5577
+ color: #fff;
5578
+ animation: checkbox-check 130ms 140ms cubic-bezier(.4, .0, .23, 1) forwards;
5579
+ }
5580
+
5581
+ @keyframes checkbox-check {
5582
+ 0% {
5583
+ width: 0;
5584
+ height: 0;
5585
+ border-color: #fff;
5586
+ transform: translate3d(0, 0, 0) rotate(45deg);
5587
+ }
5588
+
5589
+ 33% {
5590
+ width: 5px;
5591
+ height: 0;
5592
+ transform: translate3d(0, 0, 0) rotate(45deg);
5593
+ }
5594
+
5595
+ 100% {
5596
+ width: 5px;
5597
+ height: 11px;
5598
+ border-color: #fff;
5599
+ transform: translate3d(0, -11px, 0) rotate(45deg);
5600
+ }
5601
+ }
5602
+
5603
+
5604
+
5605
+ .mec-form-row select+span.mec-tooltip,
5606
+ .mec-form-row input+span.mec-tooltip {
5607
+ bottom: 10px;
5608
+ }
5609
+
5610
+ .mec-form-row label+span.mec-tooltip {
5611
+ bottom: 8px;
5612
+ }
5613
+
5614
+ .mec-form-row textarea+span.mec-tooltip {
5615
+ bottom: auto;
5616
+ vertical-align: top;
5617
+ top: 12px;
5618
+ }
5619
+
5620
+ .mec-form-row span+span.mec-tooltip {
5621
+ bottom: 0;
5622
+ vertical-align: middle;
5623
+ }
5624
+
5625
+ .mec-form-row .mec-col-8 span.mec-archive-skins,
5626
+ .mec-form-row .mec-col-8 select,
5627
+ .mec-form-row .mec-col-8 input[type="text"] {
5628
+ vertical-align: top;
5629
+ }
5630
+
5631
+ .mec-form-row input:disabled {
5632
+ opacity: 0.6;
5633
+ background: #f6f6f6;
5634
+ }
5635
+
5636
+ .wns-be-group-tab h5 {
5637
+ font-size: 16px;
5638
+ font-weight: 600;
5639
+ color: #444;
5640
+ margin: 45px 0 25px;
5641
+ }
5642
+
5643
+ .mec-form-row textarea {
5644
+ height: auto;
5645
+ margin-bottom: 0;
5646
+ min-height: 60px;
5647
+ }
5648
+
5649
+ .mec-form-row .wp-picker-container input[type=text].wp-color-picker {
5650
+ height: 25px;
5651
+ vertical-align: top;
5652
+ margin: 0;
5653
+ }
5654
+
5655
+ .mec-form-row .wp-picker-container label {
5656
+ margin: 0;
5657
+ }
5658
+
5659
+ .mec-image-select-wrap li span:hover {
5660
+ border-color: #fff;
5661
+ box-shadow: 0 1px 8px rgba(0, 0, 0, 0.12);
5662
+ }
5663
+
5664
+ .mec-message-categories li.mec-acc-label:after {
5665
+ content: "\e604";
5666
+ font-family: simple-line-icons;
5667
+ speak: none;
5668
+ font-style: normal;
5669
+ font-weight: 400;
5670
+ display: block;
5671
+ font-size: 13px;
5672
+ color: #999;
5673
+ position: absolute;
5674
+ right: 27px;
5675
+ top: 26px;
5676
+ }
5677
+
5678
+ .mec-message-categories>li.mec-acc-label[data-status="open"]:after {
5679
+ content: "\e607";
5680
+ color: #008aff;
5681
+ }
5682
+
5683
+ .mec-message-categories>li.mec-acc-label[data-status="open"] {
5684
+ color: #008aff;
5685
+ }
5686
+
5687
+ .mec-message-categories>li.mec-acc-label:last-of-type {
5688
+ border-bottom: none;
5689
+ }
5690
+
5691
+ .mec-message-categories>li.mec-acc-label[data-status="open"] {
5692
+ border-bottom: 1px solid #e6e6e6;
5693
+ }
5694
+
5695
+ .mec-form-row ul.mec-message-categories {
5696
+ box-shadow: 0 2px 16px rgba(0, 0, 0, 0.03);
5697
+ border-radius: 5px;
5698
+ overflow: hidden;
5699
+ margin-top: 30px;
5700
+ background: #f5f5f5;
5701
+ border: 2px solid #e6e6e6;
5702
+ max-width: 700px
5703
+ }
5704
+
5705
+ .mec-form-row ul.mec-message-categories li ul {
5706
+ padding: 10px 40px 40px;
5707
+ margin: 25px -30px -25px;
5708
+ background: #f5f5f5;
5709
+ box-shadow: inset 0 4px 7px rgba(0, 0, 0, 0.04);
5710
+ cursor: default;
5711
+ }
5712
+
5713
+ .mec-form-row ul.mec-message-categories ul label {
5714
+ margin: 25px 8px 7px;
5715
+ font-weight: 600 !important;
5716
+ font-size: 13px;
5717
+ color: #888;
5718
+ cursor: default;
5719
+ }
5720
+
5721
+ .wns-be-sidebar>li:hover a,
5722
+ .wns-be-sidebar li:hover a i {
5723
+ color: #008aff;
5724
+ }
5725
+
5726
+ .mec-form-row.mec-skin-list-date-format-container input[type=text] {
5727
+ margin-right: 2px;
5728
+ }
5729
+
5730
+ .mec-form-row.mec-skin-list-date-format-container span.mec-tooltip {
5731
+ top: 2px;
5732
+ }
5733
+
5734
+ .mec-calendar-metabox .mec-form-row input[type=checkbox],
5735
+ .mec-meta-box-fields .mec-form-row input[type=checkbox] {
5736
+ margin-right: 6px;
5737
+ }
5738
+
5739
+ .mec-meta-box-fields .mec-form-row .button:not(.wp-color-result) {
5740
+ height: 37px;
5741
+ margin-top: 1px;
5742
+ box-shadow: inset 0 2px 4px #fff, inset 0 -2px 4px rgba(0, 0, 0, .05), 0 2px 2px rgba(0, 0, 0, .06);
5743
+ }
5744
+
5745
+ #mec-read-more .mec-form-row span.mec-tooltip {
5746
+ top: 2px;
5747
+ left: -4px;
5748
+ }
5749
+
5750
+ /* Search Setting */
5751
+ #mec-search-settings {
5752
+ border-radius: 21px;
5753
+ min-height: 32px;
5754
+ box-shadow: inset 0 1px 2px rgba(0, 0, 0, .06);
5755
+ padding: 9px 10px 12px 34px;
5756
+ margin-right: 10px;
5757
+ color: #7c838a;
5758
+ font-size: 13px;
5759
+ width: 260px;
5760
+ background: #f5f5f5;
5761
+ border: none;
5762
+ z-index: 1;
5763
+ transition: all 0.18s ease;
5764
+ outline: none;
5765
+ }
5766
+
5767
+ #mec-search-settings:focus {
5768
+ background: #fff;
5769
+ box-shadow: 0 1px 6px rgba(0, 0, 0, .07), 0 0 0 1px #e6e6e6;
5770
+ width: 270px;
5771
+ }
5772
+
5773
+ .mec-search-settings-wrap {
5774
+ display: inline-block;
5775
+ position: relative;
5776
+ }
5777
+
5778
+ .mec-search-settings-wrap i {
5779
+ position: absolute;
5780
+ left: 14px;
5781
+ top: 14px;
5782
+ font-size: 13px;
5783
+ color: #7e8c98;
5784
+ display: block;
5785
+ z-index: 2;
5786
+ }
5787
+
5788
+ #mec-search-settings::-webkit-input-placeholder {
5789
+ color: #7c838a
5790
+ }
5791
+
5792
+ #mec-search-settings::-moz-placeholder {
5793
+ color: #7c838a
5794
+ }
5795
+
5796
+ #mec-search-settings:-ms-input-placeholder {
5797
+ color: #7c838a
5798
+ }
5799
+
5800
+ #mec-search-settings:-moz-placeholder {
5801
+ color: #7c838a
5802
+ }
5803
+
5804
+ /* Fix datepicker */
5805
+ .ui-datepicker.ui-widget {
5806
+ border: 1px solid #e8e8e8;
5807
+ box-shadow: 0 1px 9px rgba(0, 0, 0, 0.12);
5808
+ }
5809
+
5810
+ .ui-datepicker.ui-widget select {
5811
+ font-weight: 600;
5812
+ font-size: 12px;
5813
+ border-radius: 2px;
5814
+ padding: 2px 10px;
5815
+ margin: 1px 3px 5px;
5816
+ }
5817
+
5818
+ .ui-datepicker.ui-widget table {
5819
+ border-spacing: 2px;
5820
+ }
5821
+
5822
+ .ui-datepicker.ui-widget td,
5823
+ .ui-datepicker.ui-widget tr {
5824
+ padding: 0;
5825
+ background: none !important;
5826
+ }
5827
+
5828
+ .ui-datepicker.ui-widget td a {
5829
+ color: #777;
5830
+ font-weight: 600;
5831
+ width: 30px;
5832
+ height: 30px;
5833
+ line-height: 30px;
5834
+ display: inline-block;
5835
+ border-radius: 33px;
5836
+ padding: 0;
5837
+ background: #fff;
5838
+ transition: all 0.2s ease;
5839
+ }
5840
+
5841
+ .ui-datepicker.ui-widget td a:hover,
5842
+ .ui-datepicker.ui-widget td a.ui-state-active {
5843
+ background: #40d9f1;
5844
+ color: #fff;
5845
+ }
5846
+
5847
+ .ui-datepicker.ui-widget .ui-datepicker-next,
5848
+ .ui-datepicker.ui-widget .ui-datepicker-prev {
5849
+ color: #40d9f1;
5850
+ width: 30px;
5851
+ height: 30px;
5852
+ line-height: 30px;
5853
+ display: inline-block;
5854
+ text-align: center;
5855
+ border-radius: 33px;
5856
+ background: #ecfcff;
5857
+ transition: all 0.2s ease;
5858
+ }
5859
+
5860
+ .ui-datepicker.ui-widget .ui-datepicker-next:hover,
5861
+ .ui-datepicker.ui-widget .ui-datepicker-prev:hover {
5862
+ background: #fff;
5863
+ box-shadow: 0 0 7px -3px rgba(0, 0, 0, 0.4);
5864
+ }
assets/css/backend.min.css CHANGED
@@ -1,5 +1,5 @@
1
- #mec_location_thumbnail_img img,#mec_organizer_thumbnail_img img,#mec_thumbnail_img img{max-width:250px}.taxonomy-mec_label .column-id,.taxonomy-mec_location .column-id,.taxonomy-mec_organizer .column-id,.taxonomy-mec_speaker .column-id{width:40px}.taxonomy-mec_label .column-primary,.taxonomy-mec_location .column-primary,.taxonomy-mec_organizer .column-primary,.taxonomy-mec_speaker .column-primary{width:250px}.mec-color{margin:10px;width:14px;height:14px;display:inline-block;margin-right:6px;border-radius:20px 20px 20px 20px;vertical-align:middle}.mec-event-color-container,.mec-event-title-container{display:inline-block}.mec-available-color-row{margin-top:15px}.mec-available-color-row .mec-color{cursor:pointer}.mec-widget-container a{text-decoration:none}.mec-widget-container label{padding-right:15px}.mec-util-hidden{display:none}.button.mec-util-hidden{display:none}.wns-be-container{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Oxygen,Roboto,sans-serif;max-width:100%;background-color:#f6f6f6;border:1px solid #c1cad2;box-shadow:0 1px 1px rgba(0,0,0,.04);margin-top:5px;margin-right:15px;overflow:hidden}.wns-be-sidebar{width:260px;float:left;position:relative}.wns-be-sidebar ul.wns-be-group-menu,.wns-be-sidebar ul.wns-be-group-menu li{list-style:none;margin:0}.wns-be-sidebar .wns-be-group-menu li a{display:block;position:relative;outline:0;padding:13px 4px 13px 20px;background:#e0e0e0;background:0 0;border:none;color:#3f454a;font-size:13px;font-weight:600;text-decoration:none;-webkit-transition:none;transition:none}.wns-be-sidebar .wns-be-group-menu li a:hover{background:#fff;color:#008aff;opacity:1}.wns-be-sidebar .wns-be-group-menu>li.active>a,.wns-be-sidebar .wns-be-group-menu>li.active>a:hover{background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff}.wns-be-sidebar .wns-be-group-menu>li.active>a{box-shadow:0 2px 12px -5px #008aff}.wns-be-sidebar .wns-be-group-menu li a:first-child{border-top:none}.wns-be-main{background:#fff;margin-left:260px;border-left:1px solid #dedede;padding-bottom:84px;box-shadow:inset 0 1px 0 #fff;min-height:1120px;position:relative}.wns-be-main .wns-saved-settings{margin:0;border-bottom:1px solid #dedede;background:#dff0d8;color:#468847;padding:8px 35px 8px 14px;text-shadow:0 1px 0 rgba(255,255,255,.6)}.wns-be-container .dpr-btn{display:inline-block;font-size:13px;padding:0 16px 1px;height:36px;margin-right:3px;line-height:35px;color:#555;border:1px solid #ccc;background:#f7f7f7;text-decoration:none;transition:.24s all ease;-webkit-transition:.24s all ease}.wns-be-container .dpr-btn:hover{background:#fcfcfc;border-color:#999;color:#303030}.wns-be-container .dpr-btn.dpr-save-btn{color:#fff;font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s}.wns-be-container .dpr-btn.dpr-save-btn:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5);cursor:pointer}.wns-be-container .wns-be-group-tab h2,.wns-be-container .wns-be-group-tab h4{color:#000;margin-bottom:25px;padding:15px;background:#f5f5f5;font-size:21px;line-height:23px;letter-spacing:.4px;font-weight:700;position:relative}.wns-be-container .wns-be-group-tab h2{margin-top:10px}.wns-be-container .wns-be-group-tab h2:before,.wns-be-container .wns-be-group-tab h4:before{content:"";width:4px;height:16px;margin-right:5px;background-color:#008aff;display:block;position:absolute;left:0;top:18px}.wns-be-container .wns-be-group-tab h4:before{width:2px;top:16px}.wns-be-container .wns-be-group-tab h4{font-size:16px;font-weight:600;background:#f8f8f8;border:none;padding:12px 15px 12px 15px}.wns-be-container .wns-be-group-tab p{font-size:13px;color:#888}.wns-be-sidebar .wns-be-group-tab-link-a:hover{cursor:pointer}.wns-be-sidebar .wns-be-group-tab-link-a span{display:block}.wns-be-sidebar .wns-be-group-tab-link-a span.wns-be-group-menu-title{padding-left:24px}.wns-be-sidebar li.active ul.subsection{padding-top:8px;padding-bottom:12px;background:#fff;border-bottom:1px solid #dedede;margin:0}.wns-be-sidebar li .subsection a{background:#fff;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 46px}.wns-be-sidebar li .subsection a:hover{background:#f6f6f6;color:#222}.wns-be-sidebar .wns-be-group-menu li .subsection li.active a{color:#008aff}.wns-be-sidebar .wns-be-group-menu li .subsection li.active a:after,.wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;right:-1px;top:10px}.wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{border-right-color:#c5c5c5;right:0}.wns-be-sidebar li a i{color:#a0abb5;vertical-align:middle;font-size:16px;position:absolute;margin-top:0}.wns-be-sidebar .wns-be-group-menu li.active>a i{color:#fff}.wns-be-sidebar .has-sub span.extra-icon{display:inline-block;float:right;padding:4px 7px 4px;margin-left:4px;margin-right:10px;font-family:sans-serif;font-size:9px;font-weight:600;line-height:9px;border-radius:10px;-moz-border-radius:10px;-webkit-border-radius:10px;border:0 solid transparent}.wns-be-sidebar .has-sub span.extra-icon i{margin-left:-3px;margin-top:2px;color:#bac6d0;font-size:10px}.wns-be-sidebar .wns-be-group-tab-link-a span.extra-icon i{right:10px;font-size:10px}.wns-be-sidebar .wns-be-group-menu li.active>a span.extra-icon i{margin-top:1px}.wns-be-container #wns-be-footer{border-top:1px solid #dedede;z-index:999;padding:25px 20px 20px;background:#fafafa!important;height:44px;text-align:right}.wns-be-container #wns-be-content{padding:5px 40px 40px}.wns-be-container #wns-be-infobar{background:#fff;border-bottom:1px solid #dedede;padding:20px;text-align:right;box-shadow:inset 0 1px 0 #fcfcfc;height:79px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;position:relative}.wns-be-container #wns-be-infobar:before{content:"";width:261px;height:78px;display:block;position:absolute;left:0;top:0;background:#fff url(../img/webnus-logo.png) no-repeat center;border-bottom:1px solid #dedede;background-size:220px;z-index:997}.wns-be-container .notice-yellow{margin:0;border-bottom:1px solid #dedede;background-color:#fcf8e3;color:#c09853;padding:8px 35px 8px 14px;text-shadow:0 1px 0 rgba(255,255,255,.5)}.wns-be-container .notice-red,.wns-be-container .wns-be-field-errors{margin:0;border-bottom:1px solid #dedede;background-color:#f2dede;color:#b94a48;padding:8px 35px 8px 14px;text-shadow:0 1px 0 rgba(255,255,255,.5)}body.post-type-mec-events th.column-primary{width:35%}body.post-type-mec-events th.column-start_date{width:100px}body.post-type-mec-events th.column-end_date{width:100px}body.post-type-mec-events th.column-repeat{width:75px}body.post-type-mec-events th.column-author{width:150px}body.post-type-mec-books th.column-primary{width:20%}body.post-type-mec-books th.column-event{width:170px}body.post-type-mec-books th.column-bdate{width:120px}body.post-type-mec-books th.column-confirmation{width:120px}body.post-type-mec-books th.column-verification{width:120px}body.post-type-mec-books th.column-author{width:150px}.mec-meta-box-labels-container .mec-form-row{height:100px;overflow:auto}.mec-tooltip{display:inline;position:relative;margin-right:10px;cursor:help;bottom:5px;left:3px}.mec-tooltip:last-child{margin-right:0}.mec-tooltip:hover:after{background:#313130;border-radius:5px;bottom:24px;color:#fff;content:attr(title);left:-75px;padding:10px;position:absolute;z-index:98;width:240px}.mec-tooltip:hover:before{border:solid;border-color:#313130 transparent;border-width:6px 6px 0;bottom:18px;content:"";left:30%;position:absolute;z-index:99}.mec-tooltip .dashicons-before:before{font-size:24px;color:#008aff;line-height:37px}.mec-tooltip a:focus{box-shadow:none}.mec-form-row .bootstrap_unvalid{display:block;border:2px solid red;position:relative;display:inline-block;border-bottom:1px dotted #000}.mec-tooltiptext{visibility:hidden;width:120px;background-color:red;color:#fff;text-align:center;border-radius:6px;padding:5px 0;position:absolute;z-index:1}.ui-datepicker{background-color:#fff;border:1px solid #66afe9;border-radius:4px;box-shadow:0 0 8px rgba(102,175,233,.6);display:none;margin-top:4px;padding:10px;width:240px}.ui-datepicker a,.ui-datepicker a:hover{text-decoration:none;cursor:pointer}.ui-datepicker a:hover,.ui-datepicker td:hover a{color:#2c6396;-webkit-transition:color .1s ease-in-out;-moz-transition:color .1s ease-in-out;-o-transition:color .1s ease-in-out;transition:color .1s ease-in-out}.ui-datepicker .ui-datepicker-header{margin-bottom:4px;text-align:center}.ui-datepicker .ui-datepicker-title{font-weight:700}.ui-datepicker .ui-datepicker-next,.ui-datepicker .ui-datepicker-prev{cursor:default;font-family:dashicons;-webkit-font-smoothing:antialiased;font-style:normal;font-weight:400;height:20px;line-height:1.4;margin-top:2px;width:20px}.ui-datepicker .ui-datepicker-prev{float:left;text-align:left}.ui-datepicker .ui-datepicker-next{float:right;text-align:center}.ui-datepicker .ui-datepicker-prev:before{content:"\f341"}.ui-datepicker .ui-datepicker-next:before{content:"\f345"}.ui-datepicker .ui-icon{display:none}.ui-datepicker .ui-datepicker-calendar{table-layout:fixed;width:100%}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker .ui-datepicker-calendar th{text-align:center;padding:4px 0}.ui-datepicker .ui-datepicker-calendar td{border-radius:4px;-webkit-transition:background-color .1s ease-in-out,color .1s ease-in-out;-moz-transition:background-color .1s ease-in-out,color .1s ease-in-out;-o-transition:background-color .1s ease-in-out,color .1s ease-in-out;transition:background-color .1s ease-in-out,color .1s ease-in-out}.ui-datepicker .ui-datepicker-calendar td:hover{background-color:#eee;cursor:pointer}.ui-datepicker .ui-datepicker-calendar td a{text-decoration:none}.ui-datepicker .ui-datepicker-current-day{background-color:#4289cc}.ui-datepicker .ui-datepicker-current-day a{color:#fff}.ui-datepicker .ui-datepicker-calendar .ui-datepicker-unselectable:hover{background-color:#fff;cursor:default}.mec-col-1,.mec-col-10,.mec-col-11,.mec-col-12,.mec-col-2,.mec-col-3,.mec-col-4,.mec-col-5,.mec-col-6,.mec-col-7,.mec-col-8,.mec-col-9{position:relative;min-height:1px;padding:0;margin:0 1% 0 0}@media (min-width:783px){.mec-col-1,.mec-col-10,.mec-col-11,.mec-col-12,.mec-col-2,.mec-col-3,.mec-col-4,.mec-col-5,.mec-col-6,.mec-col-7,.mec-col-8,.mec-col-9{float:left}.mec-col-12{width:99%}.mec-col-11{width:90.66666667%}.mec-col-10{width:82.33333333%}.mec-col-9{width:74%}.mec-col-8{width:65.66666667%}.mec-col-7{width:57.33333333%}.mec-col-6{width:49%}.mec-col-5{width:40.66666667%}.mec-col-4{width:32.33333333%}.mec-col-3{width:24%}.mec-col-2{width:15.66666667%}.mec-col-1{width:7.33333333%}}#mec_reg_form_fields{background:#eee;padding:20px}#mec_reg_form_fields li{margin:4px;border-radius:2px;padding:20px 34px 24px;background:#fff;position:relative;transition:all .3s ease}#mec_reg_form_fields li ul{padding-top:15px;padding-bottom:15px;margin:1px}#mec_reg_form_fields li ul li{padding:7px 30px 7px 46px}#mec_reg_form_fields span.mec_reg_field_type{font-size:11px;font-weight:600;color:#8a8a8a;text-transform:uppercase;letter-spacing:2px}#mec_reg_form_fields span.mec_reg_field_option_sort,#mec_reg_form_fields span.mec_reg_field_remove,#mec_reg_form_fields span.mec_reg_field_sort{font-size:0;color:#fff}#mec_reg_form_fields span.mec_reg_field_remove{position:absolute;right:0;top:0}#mec_reg_form_fields span.mec_reg_field_option_sort:before,#mec_reg_form_fields span.mec_reg_field_remove:before,#mec_reg_form_fields span.mec_reg_field_sort:before{position:absolute;left:10px;top:20px;width:80px;height:20px;display:block;cursor:move;font-family:simple-line-icons;content:"\e023";font-size:18px;color:#888}#mec_reg_form_fields span.mec_reg_field_remove:before{content:"\e082";width:20px;height:20px;left:auto;right:15px;color:#f96666;cursor:pointer}#mec_reg_form_fields span.mec_reg_field_option_sort:before{font-size:13px;left:2px;top:23px;width:14px;height:14px}#mec_reg_form_fields li ul li span.mec_reg_field_remove{right:auto;left:60px;top:2px}#mec_reg_form_fields p.mec_reg_field_options{margin:6px 0 8px}#mec_reg_form_fields input[type=number],#mec_reg_form_fields input[type=text],#mec_reg_form_fields select,#mec_reg_form_fields textarea{min-width:260px;min-height:34px;margin-bottom:7px;margin-top:7px}#mec_reg_form_fields textarea{min-height:66px}#mec_reg_form_field_types button,#mec_reg_form_fields button{position:relative;outline:0;background:#fff;border:1px solid #e2e2e2;border-radius:50px;padding:11px 21px 11px 31px;line-height:1;font-size:11px;font-weight:600;color:#444;letter-spacing:2px;height:auto;cursor:pointer;margin-top:5px;text-transform:uppercase;box-shadow:0 0 3px rgba(0,0,0,.03)}#mec_reg_form_field_types button:hover,#mec_reg_form_fields button:hover{border-color:#008aff;box-shadow:0 0 7px rgba(0,0,0,.1)}#mec_reg_form_field_types button:before,#mec_reg_form_fields button:before{position:absolute;left:12px;color:#008aff;content:"\e095";font-family:simple-line-icons;font-size:13px;display:inline-block}#mec_reg_form_field_types button.red:hover,#mec_reg_form_fields button.red:hover{border-color:red;box-shadow:0 0 7px rgba(0,0,0,.1)}#mec_reg_form_field_types button.red:before,#mec_reg_form_fields button.red:before{position:absolute;left:12px;color:red;content:"\e095";font-family:simple-line-icons;font-size:13px;display:inline-block}@media (max-width:768px){#mec_reg_form_fields input[type=number],#mec_reg_form_fields input[type=text],#mec_reg_form_fields select,#mec_reg_form_fields textarea{min-width:80px;width:100%}}.mec-form-row{margin:0 auto 10px}.mec-options-fields{padding-top:25px;overflow:hidden;animation:fadeEffect 1s}#mec_booking_form .mec-options-fields,#mec_modules_form .mec-options-fields,#mec_notifications_form .mec-options-fields,#mec_settings_form .mec-options-fields,#mec_single_form .mec-options-fields{display:none}.mec-options-fields.active{display:block!important}@keyframes fadeEffect{from{opacity:0}to{opacity:1}}.mec-form-row:after,.mec-form-row:before{content:" ";display:table}.mec-form-row:after{clear:both}.mec-form-row input[type=number],.mec-form-row input[type=text],.mec-form-row select{height:38px;box-sizing:border-box;margin-bottom:8px;padding:0 6px;box-shadow:none;border-radius:2px;box-shadow:inset 0 1px 5px rgba(0,0,0,.05)}.mec-form-row input[type=radio]{margin:5px 0}.mec-form-row select{margin-top:1px}.mec-book-status-form select{display:block;width:99%;margin-top:10px;margin-bottom:10px}.mec-form-row label{margin:10px 0}.mec-form-row input[type=checkbox]{background-color:#fafafa;border:1px solid #cacece;box-shadow:0 1px 2px rgba(0,0,0,.05),inset 0 -15px 10px -12px rgba(0,0,0,.05);padding:9px;border-radius:3px;min-width:20px;min-height:20px;display:inline-block}.mec-form-row input[type=checkbox]:checked{box-shadow:0 3px 11px -4px #008aff;border-color:#008aff;background:#fff}.mec-form-row input[type=checkbox]:checked:before{color:#008aff;width:20px;font:400 24px/1 dashicons}.mec-form-row .mec-col-4 input[type=text],.mec-form-row .mec-col-4 select{width:75%}.mec-form-row .description{display:inline-block;border-left:1px dashed #ccc;margin-left:12px;line-height:26px;padding-left:12px;color:#555}.mec-form-row .time-dv{font-size:14px;font-weight:700}.mec-meta-box-fields{margin:30px 10px}.mec-meta-box-fields>.mec-meta-box-fields{margin-left:0}.mec-meta-box-fields .mec-title{margin:5px 0}.mec-meta-box-fields h4.mec-title{margin:40px 0 16px}.mec-meta-box-fields .mec-dashicons{font-size:20px;line-height:22px;color:#008aff}.mec-form-row .mec-box,.mec-meta-box-fields .mec-box{background:#f7f7f7;padding:10px;margin:10px 0;border-radius:2px;border:1px solid #e6e6e6}.mec-form-row .mec-box{max-width:960px}.mec-form-row .mec-box .button,.mec-meta-box-fields .mec-box .button{float:right}#mec_gateways_form .mec-form-row:first-child,#mec_notifications_form_container .mec-form-row:nth-child(2){overflow:hidden}#mec_gateways_form .mec-tooltip{float:right}.mec-container{background:#fff;padding:15px}.nav-tab-active{background:#fff;border-bottom:1px solid #fff}#mec_social_networks .mec-form-row{margin-bottom:0}#mec_gateways_form h4,.mec-meta-box-fields h4,.mec-options-fields h4,h4.mec-form-subtitle{text-transform:capitalize;border-bottom:1px solid #e5e5e5;padding-bottom:6px;margin:40px 0 16px;font-size:15px;font-weight:600}#mec_gateways_form h4{margin-bottom:0}#mec_styles_form #mec_styles_CSS{height:200px;margin-bottom:5px;font-family:Consolas,Monaco,monospace;font-size:13px;width:97%;background:#f9f9f9;outline:0}#mec_calendar_filter .description,#mec_styles_form .description{max-width:500px;display:block;margin:0 0 5px 0;padding:0;border:none}.mec-sed-methods li{display:inline-block;padding:8px 12px;border:1px solid #ddd;margin:0 5px 5px 0;cursor:pointer;border-radius:3px;box-shadow:0 2px 15px -2px rgba(0,0,0,.1)}.mec-sed-methods li:hover{border-color:#008aff}.mec-sed-methods li.active{border-color:#008aff;background-color:#fff;color:#008aff;font-weight:600;cursor:default;box-shadow:0 0 8px rgba(1,138,255,.5) inset}.mec-switcher input+label{display:block;position:relative;cursor:pointer;outline:0;padding:2px;width:38px;height:22px;background-color:#ddd;border-radius:60px}.mec-switcher input:checked+label{background-color:#008aff;box-shadow:0 3px 22px -6px #008aff}.mec-switcher input:checked+label:after{margin-left:16px}#mec_gateways_form input[type=text],#mec_gateways_form select,#mec_gateways_form textarea{width:calc(100% - 30px)}#mec_gateways_form textarea{min-height:65px}#mec_gateways_form li .mec-gateway-options-form,#payment_gateways_option li .mec-gateway-options-form{padding:15px 20px;background-color:#f7f7f7;border-left:6px solid #e3e3e3;margin-bottom:20px}#mec_notifications_form label{display:inline-block;min-width:160px}#mec_notifications_form input[type=text],#mec_notifications_form select{min-width:300px}@media (max-width:536px){#mec_notifications_form input[type=text],#mec_notifications_form select{min-width:100%}}#mec_notifications_form .wp-editor-container{margin-bottom:45px}#mec_notifications_form ul li:last-child .wp-editor-container{margin-bottom:0}#mec_messages_form_container ul li label{display:block;font-weight:700}#mec_messages_form_container ul li input{display:block;width:100%}.mec-message-categories li.mec-acc-label{font-size:18px;font-weight:700;padding:10px;cursor:pointer;background-color:#f1f1f1;border:1px solid #ccc}.mec-message-categories ul{margin:15px 5px}.webnus-icons-list li{width:40px;display:inline-block;list-style:none;padding:0}.webnus-icons-list input{visibility:hidden;margin:0;padding:0;width:1px;height:1px;-moz-opacity:0;-khtml-opacity:0;opacity:0;cursor:pointer}.webnus-icons-list li label{color:#777;display:inline-block!important;float:none!important;width:33px!important;text-align:center;font-size:23px!important;font-weight:400!important;padding:5px 0!important;border:1px solid #eee!important}.mec-webnus-icon{float:left;margin-right:10px}.mec-webnus-icon i{font-size:24px;color:#222}.mec-accordion ul{display:none}.mec-switcher input{position:absolute;margin-left:-9999px;visibility:hidden}.mec-switcher input+label{display:block;position:relative;cursor:pointer;outline:0;padding:2px;width:50px;height:22px;background-color:#ddd;border-radius:60px}.mec-switcher input+label:after,.mec-switcher input+label:before{display:block;position:absolute;top:1px;left:1px;bottom:1px;content:""}.mec-switcher input+label:before{right:1px;background-color:#f1f1f1;border-radius:60px;transition:background .4s}.mec-switcher input+label:after{width:24px;background-color:#fff;border-radius:100%;box-shadow:0 2px 3px rgba(0,0,0,.1);transition:margin .4s}.wns-be-group-tab .mec-switcher input[value="1"]+label,.wns-be-group-tab .mec-switcher input[value="1"]+label:before{background-color:#008aff;box-shadow:0 3px 22px -7px #008aff}.wns-be-group-tab .mec-switcher input[value="1"]+label:after{margin-left:28px}.mec-switcher input:checked+label{background-color:#008aff}.mec-switcher input:checked+label:before{background-color:#008aff}.mec-switcher input:checked+label:after{margin-left:28px}.mec-switcher label{display:block}.mec-sed-methods li{display:inline-block;padding:10px;border:1px solid #ddd;margin:0 5px 5px 0;cursor:pointer}#wpwrap .mec-button-primary{border-bottom:none;letter-spacing:.5px;line-height:18px;height:46px;transition:all .5s ease;color:#fff;padding:12px 25px;display:block;text-align:center;font-size:14px;background:0 0;background-color:#008aff;text-shadow:none;border:0;box-shadow:none;display:inline-block;margin:25px 0 12px;min-width:146px}#wpwrap .mec-button-primary:hover{background-color:#41c9de}#wpwrap .mec-button-primary.loading{background-color:#73c02a}#wpwrap .mec-button-primary:before{content:"\f00c";font-family:fontawesome;margin-right:4px;font-size:16px;display:none}#wpwrap .mec-button-primary.loading:before{display:inline-block}.mec-image-select-wrap{clear:both;overflow:hidden;padding:10px 0;margin:0}.mec-image-select-wrap li{float:left;display:block;margin-right:15px;margin-bottom:15px}.mec-image-select-wrap li input{display:none}.mec-image-select-wrap li span{width:35px;height:35px;display:block;border:3px solid transparent}.mec-image-select-wrap li input:checked+span{border-color:#e3e3e3}.mec-image-select-wrap li input:checked+span:after{content:"\f00c";font-family:fontawesome;font-size:20px;display:inline-block;color:#fff;padding:8px;max-width:100%;max-height:100%}.mec-image-select-wrap .mec-colorskin-1{background-color:#008aff}.mec-image-select-wrap .mec-colorskin-2{background-color:#0093d0}.mec-image-select-wrap .mec-colorskin-3{background-color:#e53f51}.mec-image-select-wrap .mec-colorskin-4{background-color:#f1c40f}.mec-image-select-wrap .mec-colorskin-5{background-color:#e64883}.mec-image-select-wrap .mec-colorskin-6{background-color:#45ab48}.mec-image-select-wrap .mec-colorskin-7{background-color:#9661ab}.mec-image-select-wrap .mec-colorskin-8{background-color:#0aad80}.mec-image-select-wrap .mec-colorskin-9{background-color:#0ab1f0}.mec-image-select-wrap .mec-colorskin-10{background-color:#ff5a00}.mec-image-select-wrap .mec-colorskin-11{background-color:#c3512f}.mec-image-select-wrap .mec-colorskin-12{background-color:#55606e}.mec-image-select-wrap .mec-colorskin-13{background-color:#fe8178}.mec-image-select-wrap .mec-colorskin-14{background-color:#7c6853}.mec-image-select-wrap .mec-colorskin-15{background-color:#bed431}.mec-image-select-wrap .mec-colorskin-16{background-color:#2d5c88}.mec-image-select-wrap .mec-colorskin-17{background-color:#77da55}.mec-image-select-wrap .mec-colorskin-18{background-color:#2997ab}.mec-image-select-wrap .mec-colorskin-19{background-color:#734854}.mec-image-select-wrap .mec-colorskin-20{background-color:#a81010}.mec-image-select-wrap .mec-colorskin-21{background-color:#4ccfad}.mec-image-select-wrap .mec-colorskin-22{background-color:#3a609f}@media screen and (max-width:782px){.mec-form-row .description{max-width:500px;display:block;margin:0 0 5px 0;padding:0;border:none}.mec-col-1,.mec-col-10,.mec-col-11,.mec-col-12,.mec-col-2,.mec-col-3,.mec-col-4,.mec-col-5,.mec-col-6,.mec-col-7,.mec-col-8,.mec-col-9{margin-bottom:5px;display:block}.mec-form-row .mec-box .button,.mec-meta-box-fields .mec-box .button{float:left}.mec-form-row .time-dv{padding:0 4px}.mec-form-row .mec-col-4 input[type=text],.mec-form-row .mec-col-4 select{width:auto;min-width:192px}.mec-tooltip .dashicons-before:before{font-size:32px}}#frmb-0-clear-all,#frmb-0-save,#frmb-0-view-data{display:none}#mec_sn_googlecal{margin-bottom:0}#mec_fee_row1 .button{margin-right:10px}h4.mec-form-subtitle{font-size:15px;margin-top:0}h5.mec-form-second-title{font-size:15px;margin-top:0}#webnus-dashboard *{box-sizing:border-box}#webnus-dashboard.about-wrap{max-width:1240px;margin:25px auto 20px}#webnus-dashboard .change-log{word-wrap:break-word}#webnus-dashboard .welcome-head img{border:none}.w-welcome{position:relative;margin-top:30px;margin-bottom:10px}.w-box{position:relative;background:#fff;padding:5px 25px;margin-top:30px}.w-theme-version{box-shadow:0 3px 30px -4px #40d8f0;text-shadow:none;background:#40d8f0;background:linear-gradient(95deg,#40d8f0 0,#2dd1ea 50%,#13cbe8 100%);text-align:center;display:block;padding:10px 0;color:#fff;font-weight:600;margin-top:10px;border-radius:2px}.w-box{padding:0;min-height:310px;box-shadow:0 1px 16px rgba(0,0,0,.034);border-radius:2px}.w-box-head{font-weight:600;padding:20px 72px;position:relative;border-bottom:2px solid #008aff;font-size:20px}.w-box-head span{position:absolute;left:0;padding:0 25px;line-height:58px;background:#008aff;height:100%;top:0;color:#fff}.w-box-child,.w-box-content{padding:18px;line-height:24px;font-size:14px}.mec-count-child{width:50%;margin:0 auto}#webnus-dashboard .w-button a{color:#fff!important;border-radius:0;padding:10px 24px;font-size:12px;letter-spacing:1px;font-weight:600;background:#008aff;margin:10px 0;display:inline-block;text-transform:uppercase}#webnus-dashboard .w-box .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}.w-system-info{margin-bottom:7px}.w-system-info:first-child{margin-top:20px}.w-system-info>span{display:inline-block;min-width:145px;line-height:20px;font-size:13px}#webnus-dashboard .w-current{min-width:110px}#webnus-dashboard .w-min{min-width:65px}.w-icon{color:#fff;padding:3px;border-radius:4px;margin-right:10px;vertical-align:middle}.w-icon-green{background:#27ae60}.w-icon-red{background:#e74c3c}.extra .w-box-head{padding:20px;border-bottom:1px solid #ededed}.doc .w-box-head{color:#4cbf67}#webnus-dashboard .doc .w-button a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);margin:35px 0 17px;box-shadow:0 5px 10px -5px #4cbf67;background-color:#fff}#webnus-dashboard .support .w-button a{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);margin:13px 0 18px;box-shadow:0 5px 10px -5px #ff876c}.doc .w-box-content{background:url(../img/document.png) no-repeat right center}.doc .w-box-content p,.w-box.support .w-box-content p{width:54%;color:#666;margin-top:10px;max-width:380px}.w-box-child p{color:#666;margin-top:10px}.w-box.support{background:#fff url(../img/support.png) no-repeat top right}.w-box.support .w-box-head{width:50%;color:#ff876c}.w-box-content pre{text-align:left;background:#f5f5f5;font-size:13px;padding:20px 25px;height:480px;overflow-y:scroll}.w-box.change-log .w-box-head{color:#01c6d9}#webnus-dashboard .button:not(.mec-intro-section-link-tag){border:0;background:0 0;box-shadow:none;color:#e74c3c;font-weight:700}.w-box .state{position:absolute;top:0;left:-100vw}#webnus-dashboard .button:hover{color:#222}.w-box .state:checked~.content{-webkit-transform:none;-ms-transform:none;transform:none}.w-box .state:checked~.backdrop{bottom:0;opacity:1;z-index:1}.w-box .lightbox{position:fixed;top:0;right:0;left:0;height:0;padding:0 20px}.w-box .lightbox .content{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;overflow:hidden;position:relative;z-index:2;max-width:500px;max-height:95vh;margin:20px auto;padding:20px;background:#fff;-webkit-transform:translateY(-200%);-ms-transform:translateY(-200%);transform:translateY(-200%);-webkit-transition:.3s -webkit-transform ease-in-out;transition:.3s transform ease-in-out;border:1px solid rgba(0,0,0,.1)}.w-box .lightbox .main{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1}.w-box .lightbox .backdrop{position:fixed;z-index:-1;top:0;right:0;bottom:100%;left:0;opacity:0;background:rgba(0,0,0,.3);-webkit-transition:.3s opacity ease-in-out;transition:.3s opacity ease-in-out}.content .main p{color:#bf3737}p.mec_dash_count{font-size:60px;font-weight:600;margin:0;color:#01c6d9}.w-col-sm-3 .w-box.doc{text-align:center;min-height:auto}.w-Knowledgebase{color:#8e5cea}.mec-view-all-articles a{margin:30px 0 17px;display:inline-block;color:#fff!important;border-radius:0;padding:10px 24px;font-size:12px;letter-spacing:1px;font-weight:600;background:#8e5cea;display:inline-block;text-transform:uppercase;transition:all .24s ease;-webkit-transition:all .24s ease}.mec-view-all-articles a:hover{background-color:#222}.w-box.upcoming-events .mec-event-article{margin-bottom:22px;border-bottom:1px solid #eee;padding-bottom:16px}.w-box.upcoming-events .mec-event-article .mec-event-date{font-size:14px;color:#666}.w-box.upcoming-events .mec-event-article .mec-event-date span{font-weight:600;margin-right:4px}.w-box.upcoming-events .mec-event-article h4.mec-event-title{margin:0;font-size:15px}.w-box.upcoming-events .mec-event-article .mec-event-detail{font-size:13px;color:#999}.w-box.upcoming-events .mec-event-article .mec-detail-button{font-size:10px;font-weight:600;letter-spacing:1px;padding:4px 12px;background:#f2f2f2;float:right}.w-box.total-bookings ul li{display:inline-block;padding:4px 12px;background:#f1f1f1;margin-right:5px;border-radius:3px}.w-box.total-bookings ul li.selected{background:#fff;border:1px solid #e9e9e9}.info-msg,.mec-error,.mec-success,.warning-msg{margin:10px 0;padding:10px;border-radius:3px 3px 3px 3px}.info-msg{color:#059;background-color:#bef}.info-msg-link{background:#fff;padding:4px 12px 6px;border-radius:3px;line-height:1;font-weight:600;color:#008aff}.mec-success{color:#270;background-color:#dff2bf}.warning-msg{color:#9f6000;background-color:#feefb3}.mec-error{color:#d8000c;background-color:#ffbaba}.mec-certain-day>div,.mec-select-deselect-actions li,.mec-xi-facebook-import-events .mec-select-deselect-actions li,.mec-xi-google-import-events .mec-select-deselect-actions li{display:inline-block;position:relative;outline:0;background:#fff;border:1px solid #e2e2e2;border-radius:50px;padding:11px 21px 11px 21px;line-height:1;font-size:11px;font-weight:600;color:#444;letter-spacing:2px;height:auto;cursor:pointer;margin-top:5px;text-transform:uppercase;box-shadow:0 0 3px rgba(0,0,0,.03)}.mec-certain-day>div:hover,.mec-select-deselect-actions li:hover,.mec-xi-facebook-import-events .mec-select-deselect-actions li:hover,.mec-xi-google-import-events .mec-select-deselect-actions li:hover{border-color:#008aff;box-shadow:0 0 7px rgba(0,0,0,.1)}.mec-not-in-days-remove{border:1px solid #f99170;border-radius:20px;padding:0 0 0 2px;color:#f99170}.mec-xi-facebook-import-events .mec-success,.mec-xi-google-import-events .mec-success{width:460px}.mec-xi-facebook-import-events .mec-select-deselect-actions li,.mec-xi-google-import-events .mec-select-deselect-actions li{display:inline-block;cursor:pointer}.lity-content>div{overflow:auto}.mce-mec-mce-items{text-transform:capitalize!important}#mec_setting_contextual li{list-style:none!important;font-size:12px;margin:0;padding:6px}.mec-bbf-field-container{margin-bottom:10px}.mec-bbf-field-container label{display:block}.kc-components ul.kc-components-list li .cpicon.mec-kingcomposer-icon,.kc-element-icon .cpicon.mec-kingcomposer-icon{background:url(../img/ico-mec-vc.png) no-repeat center center;background-size:auto;background-repeat:no-repeat}.mec-archive-skinsm.mec-category-skins,.mec-carousel-archive-link,.mec-carousel-head-text,.mec-toggle-month-divider{display:none}span.mec-archive-skins,span.mec-category-skins{margin-left:10px;vertical-align:text-bottom}.mec-archive-skins input,.mec-archive-skins select,.mec-category-skins input,.mec-category-skins select{min-width:225px;vertical-align:baseline}#mec_settings_default_skin_archive,#mec_settings_default_skin_category{min-width:225px}.w-welcome p span{background:#fff;padding:4px 10px}#mec_masonry_skin_options_container .mec-form-row .description{margin-left:0;padding-left:0;border:none;margin-top:-4px}@media (max-width:1280px){span.mec-archive-skins,span.mec-category-skins{margin-left:0}}/*!
2
  * Bootstrap v3.3.7 (http://getbootstrap.com)
3
  * Copyright 2011-2016 Twitter, Inc.
4
  * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
5
- */#webnus-dashboard button,#webnus-dashboard input,#webnus-dashboard select,#webnus-dashboard textarea{font-family:inherit;font-size:inherit;line-height:inherit}#webnus-dashboard a{color:#337ab7;text-decoration:none}#webnus-dashboard a:focus,#webnus-dashboard a:hover{color:#23527c}#webnus-dashboard a:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}#webnus-dashboard figure{margin:0}#webnus-dashboard img{vertical-align:middle}.w-img-responsive{display:block;max-width:100%;height:auto}.w-img-rounded{border-radius:6px}.w-img-thumbnail{padding:4px;line-height:1w-42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all 0w-2s ease-in-out;-o-transition:all 0w-2s ease-in-out;transition:all 0w-2s ease-in-out;display:inline-block;max-width:100%;height:auto}.w-img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.w-sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.w-sr-only-focusable:active,.w-sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.w-container,.w-container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}[role=button]{cursor:pointer}@media (min-width:768px){.w-container{width:750px}}@media (min-width:992px){.w-container{width:970px}}@media (min-width:1200px){.w-container{width:1170px}}.w-row{margin-left:-15px;margin-right:-15px}.w-col-lg-1,.w-col-lg-10,.w-col-lg-11,.w-col-lg-12,.w-col-lg-2,.w-col-lg-3,.w-col-lg-4,.w-col-lg-5,.w-col-lg-6,.w-col-lg-7,.w-col-lg-8,.w-col-lg-9,.w-col-md-1,.w-col-md-10,.w-col-md-11,.w-col-md-12,.w-col-md-2,.w-col-md-3,.w-col-md-4,.w-col-md-5,.w-col-md-6,.w-col-md-7,.w-col-md-8,.w-col-md-9,.w-col-sm-1,.w-col-sm-10,.w-col-sm-11,.w-col-sm-12,.w-col-sm-2,.w-col-sm-3,.w-col-sm-4,.w-col-sm-5,.w-col-sm-6,.w-col-sm-7,.w-col-sm-8,.w-col-sm-9,.w-col-xs-1,.w-col-xs-10,.w-col-xs-11,.w-col-xs-12,.w-col-xs-2,.w-col-xs-3,.w-col-xs-4,.w-col-xs-5,.w-col-xs-6,.w-col-xs-7,.w-col-xs-8,.w-col-xs-9{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.w-col-xs-1,.w-col-xs-10,.w-col-xs-11,.w-col-xs-12,.w-col-xs-2,.w-col-xs-3,.w-col-xs-4,.w-col-xs-5,.w-col-xs-6,.w-col-xs-7,.w-col-xs-8,.w-col-xs-9{float:left}.w-col-xs-12{width:100%}.w-col-xs-11{width:91.66666667%}.w-col-xs-10{width:83.33333333%}.w-col-xs-9{width:75%}.w-col-xs-8{width:66.66666667%}.w-col-xs-7{width:58.33333333%}.w-col-xs-6{width:50%}.w-col-xs-5{width:41.66666667%}.w-col-xs-4{width:33.33333333%}.w-col-xs-3{width:25%}.w-col-xs-2{width:16.66666667%}.w-col-xs-1{width:8w-33333333%}.w-col-xs-pull-12{right:100%}.w-col-xs-pull-11{right:91.66666667%}.w-col-xs-pull-10{right:83.33333333%}.w-col-xs-pull-9{right:75%}.w-col-xs-pull-8{right:66.66666667%}.w-col-xs-pull-7{right:58.33333333%}.w-col-xs-pull-6{right:50%}.w-col-xs-pull-5{right:41.66666667%}.w-col-xs-pull-4{right:33.33333333%}.w-col-xs-pull-3{right:25%}.w-col-xs-pull-2{right:16.66666667%}.w-col-xs-pull-1{right:8w-33333333%}.w-col-xs-pull-0{right:auto}.w-col-xs-push-12{left:100%}.w-col-xs-push-11{left:91.66666667%}.w-col-xs-push-10{left:83.33333333%}.w-col-xs-push-9{left:75%}.w-col-xs-push-8{left:66.66666667%}.w-col-xs-push-7{left:58.33333333%}.w-col-xs-push-6{left:50%}.w-col-xs-push-5{left:41.66666667%}.w-col-xs-push-4{left:33.33333333%}.w-col-xs-push-3{left:25%}.w-col-xs-push-2{left:16.66666667%}.w-col-xs-push-1{left:8w-33333333%}.w-col-xs-push-0{left:auto}.w-col-xs-offset-12{margin-left:100%}.w-col-xs-offset-11{margin-left:91.66666667%}.w-col-xs-offset-10{margin-left:83.33333333%}.w-col-xs-offset-9{margin-left:75%}.w-col-xs-offset-8{margin-left:66.66666667%}.w-col-xs-offset-7{margin-left:58.33333333%}.w-col-xs-offset-6{margin-left:50%}.w-col-xs-offset-5{margin-left:41.66666667%}.w-col-xs-offset-4{margin-left:33.33333333%}.w-col-xs-offset-3{margin-left:25%}.w-col-xs-offset-2{margin-left:16.66666667%}.w-col-xs-offset-1{margin-left:8w-33333333%}.w-col-xs-offset-0{margin-left:0}@media (min-width:768px){.w-col-sm-1,.w-col-sm-10,.w-col-sm-11,.w-col-sm-12,.w-col-sm-2,.w-col-sm-3,.w-col-sm-4,.w-col-sm-5,.w-col-sm-6,.w-col-sm-7,.w-col-sm-8,.w-col-sm-9{float:left}.w-col-sm-12{width:100%}.w-col-sm-11{width:91.66666667%}.w-col-sm-10{width:83.33333333%}.w-col-sm-9{width:75%}.w-col-sm-8{width:66.66666667%}.w-col-sm-7{width:58.33333333%}.w-col-sm-6{width:50%}.w-col-sm-5{width:41.66666667%}.w-col-sm-4{width:33.33333333%}.w-col-sm-3{width:25%}.w-col-sm-2{width:16.66666667%}.w-col-sm-1{width:8w-33333333%}.w-col-sm-pull-12{right:100%}.w-col-sm-pull-11{right:91.66666667%}.w-col-sm-pull-10{right:83.33333333%}.w-col-sm-pull-9{right:75%}.w-col-sm-pull-8{right:66.66666667%}.w-col-sm-pull-7{right:58.33333333%}.w-col-sm-pull-6{right:50%}.w-col-sm-pull-5{right:41.66666667%}.w-col-sm-pull-4{right:33.33333333%}.w-col-sm-pull-3{right:25%}.w-col-sm-pull-2{right:16.66666667%}.w-col-sm-pull-1{right:8w-33333333%}.w-col-sm-pull-0{right:auto}.w-col-sm-push-12{left:100%}.w-col-sm-push-11{left:91.66666667%}.w-col-sm-push-10{left:83.33333333%}.w-col-sm-push-9{left:75%}.w-col-sm-push-8{left:66.66666667%}.w-col-sm-push-7{left:58.33333333%}.w-col-sm-push-6{left:50%}.w-col-sm-push-5{left:41.66666667%}.w-col-sm-push-4{left:33.33333333%}.w-col-sm-push-3{left:25%}.w-col-sm-push-2{left:16.66666667%}.w-col-sm-push-1{left:8w-33333333%}.w-col-sm-push-0{left:auto}.w-col-sm-offset-12{margin-left:100%}.w-col-sm-offset-11{margin-left:91.66666667%}.w-col-sm-offset-10{margin-left:83.33333333%}.w-col-sm-offset-9{margin-left:75%}.w-col-sm-offset-8{margin-left:66.66666667%}.w-col-sm-offset-7{margin-left:58.33333333%}.w-col-sm-offset-6{margin-left:50%}.w-col-sm-offset-5{margin-left:41.66666667%}.w-col-sm-offset-4{margin-left:33.33333333%}.w-col-sm-offset-3{margin-left:25%}.w-col-sm-offset-2{margin-left:16.66666667%}.w-col-sm-offset-1{margin-left:8w-33333333%}.w-col-sm-offset-0{margin-left:0}}@media (min-width:992px){.w-col-md-1,.w-col-md-10,.w-col-md-11,.w-col-md-12,.w-col-md-2,.w-col-md-3,.w-col-md-4,.w-col-md-5,.w-col-md-6,.w-col-md-7,.w-col-md-8,.w-col-md-9{float:left}.w-col-md-12{width:100%}.w-col-md-11{width:91.66666667%}.w-col-md-10{width:83.33333333%}.w-col-md-9{width:75%}.w-col-md-8{width:66.66666667%}.w-col-md-7{width:58.33333333%}.w-col-md-6{width:50%}.w-col-md-5{width:41.66666667%}.w-col-md-4{width:33.33333333%}.w-col-md-3{width:25%}.w-col-md-2{width:16.66666667%}.w-col-md-1{width:8w-33333333%}.w-col-md-pull-12{right:100%}.w-col-md-pull-11{right:91.66666667%}.w-col-md-pull-10{right:83.33333333%}.w-col-md-pull-9{right:75%}.w-col-md-pull-8{right:66.66666667%}.w-col-md-pull-7{right:58.33333333%}.w-col-md-pull-6{right:50%}.w-col-md-pull-5{right:41.66666667%}.w-col-md-pull-4{right:33.33333333%}.w-col-md-pull-3{right:25%}.w-col-md-pull-2{right:16.66666667%}.w-col-md-pull-1{right:8w-33333333%}.w-col-md-pull-0{right:auto}.w-col-md-push-12{left:100%}.w-col-md-push-11{left:91.66666667%}.w-col-md-push-10{left:83.33333333%}.w-col-md-push-9{left:75%}.w-col-md-push-8{left:66.66666667%}.w-col-md-push-7{left:58.33333333%}.w-col-md-push-6{left:50%}.w-col-md-push-5{left:41.66666667%}.w-col-md-push-4{left:33.33333333%}.w-col-md-push-3{left:25%}.w-col-md-push-2{left:16.66666667%}.w-col-md-push-1{left:8w-33333333%}.w-col-md-push-0{left:auto}.w-col-md-offset-12{margin-left:100%}.w-col-md-offset-11{margin-left:91.66666667%}.w-col-md-offset-10{margin-left:83.33333333%}.w-col-md-offset-9{margin-left:75%}.w-col-md-offset-8{margin-left:66.66666667%}.w-col-md-offset-7{margin-left:58.33333333%}.w-col-md-offset-6{margin-left:50%}.w-col-md-offset-5{margin-left:41.66666667%}.w-col-md-offset-4{margin-left:33.33333333%}.w-col-md-offset-3{margin-left:25%}.w-col-md-offset-2{margin-left:16.66666667%}.w-col-md-offset-1{margin-left:8w-33333333%}.w-col-md-offset-0{margin-left:0}}@media (min-width:1200px){.w-col-lg-1,.w-col-lg-10,.w-col-lg-11,.w-col-lg-12,.w-col-lg-2,.w-col-lg-3,.w-col-lg-4,.w-col-lg-5,.w-col-lg-6,.w-col-lg-7,.w-col-lg-8,.w-col-lg-9{float:left}.w-col-lg-12{width:100%}.w-col-lg-11{width:91.66666667%}.w-col-lg-10{width:83.33333333%}.w-col-lg-9{width:75%}.w-col-lg-8{width:66.66666667%}.w-col-lg-7{width:58.33333333%}.w-col-lg-6{width:50%}.w-col-lg-5{width:41.66666667%}.w-col-lg-4{width:33.33333333%}.w-col-lg-3{width:25%}.w-col-lg-2{width:16.66666667%}.w-col-lg-1{width:8w-33333333%}.w-col-lg-pull-12{right:100%}.w-col-lg-pull-11{right:91.66666667%}.w-col-lg-pull-10{right:83.33333333%}.w-col-lg-pull-9{right:75%}.w-col-lg-pull-8{right:66.66666667%}.w-col-lg-pull-7{right:58.33333333%}.w-col-lg-pull-6{right:50%}.w-col-lg-pull-5{right:41.66666667%}.w-col-lg-pull-4{right:33.33333333%}.w-col-lg-pull-3{right:25%}.w-col-lg-pull-2{right:16.66666667%}.w-col-lg-pull-1{right:8w-33333333%}.w-col-lg-pull-0{right:auto}.w-col-lg-push-12{left:100%}.w-col-lg-push-11{left:91.66666667%}.w-col-lg-push-10{left:83.33333333%}.w-col-lg-push-9{left:75%}.w-col-lg-push-8{left:66.66666667%}.w-col-lg-push-7{left:58.33333333%}.w-col-lg-push-6{left:50%}.w-col-lg-push-5{left:41.66666667%}.w-col-lg-push-4{left:33.33333333%}.w-col-lg-push-3{left:25%}.w-col-lg-push-2{left:16.66666667%}.w-col-lg-push-1{left:8w-33333333%}.w-col-lg-push-0{left:auto}.w-col-lg-offset-12{margin-left:100%}.w-col-lg-offset-11{margin-left:91.66666667%}.w-col-lg-offset-10{margin-left:83.33333333%}.w-col-lg-offset-9{margin-left:75%}.w-col-lg-offset-8{margin-left:66.66666667%}.w-col-lg-offset-7{margin-left:58.33333333%}.w-col-lg-offset-6{margin-left:50%}.w-col-lg-offset-5{margin-left:41.66666667%}.w-col-lg-offset-4{margin-left:33.33333333%}.w-col-lg-offset-3{margin-left:25%}.w-col-lg-offset-2{margin-left:16.66666667%}.w-col-lg-offset-1{margin-left:8w-33333333%}.w-col-lg-offset-0{margin-left:0}}.w-clearfix:after,.w-clearfix:before,.w-container-fluid:after,.w-container-fluid:before,.w-container:after,.w-container:before,.w-row:after,.w-row:before{content:" ";display:table}.w-clearfix:after,.w-container-fluid:after,.w-container:after,.w-row:after{clear:both}.w-center-block{display:block;margin-left:auto;margin-right:auto}.w-pull-right{float:right!important}.w-pull-left{float:left!important}.w-hide{display:none!important}.w-show{display:block!important}.w-invisible{visibility:hidden}.w-text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.w-hidden{display:none!important}.w-affix{position:fixed}.mec-image-popup-wrap{display:none}#wns-be-infobar.sticky{position:fixed;top:32px;background:#fff;z-index:9999;width:82%}.wns-be-main .wns-saved-settings.sticky{position:fixed;width:62.5%;top:111px;z-index:999999999999999999}#mec-search-settings{border-radius:2px;min-height:32px;box-shadow:0 3px 14px -5px rgba(0,0,0,.2),inset 0 1px 2px rgba(0,0,0,.07);padding:9px 10px 11px;margin-right:6px;color:#7c7772;font-size:12px;width:200px}#mec-search-settings::-webkit-input-placeholder{color:#7c7772}#mec-search-settings::-moz-placeholder{color:#7c7772}#mec-search-settings:-ms-input-placeholder{color:#7c7772}#mec-search-settings:-moz-placeholder{color:#7c7772}.mec-export-settings,.mec-import-settings{font-weight:700;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:8px 32px;height:36px;letter-spacing:.2px;line-height:36px;font-size:13px;color:#fff;text-decoration:none;display:inline-block}.mec-export-settings:hover,.mec-import-settings:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5);color:#fff}textarea.mec-import-settings-content{display:block;width:100%;min-height:120px;margin-bottom:25px;padding:10px 15px}.mec-import-options-notification{display:inline-block}.mec-import-options-notification .mec-message-import-error,.mec-import-options-notification .mec-message-import-success{display:inline-block;padding:15px 12px;margin-left:12px;opacity:0;visibility:hidden;font-weight:700}.mec-import-options-notification .mec-message-import-success{opacity:1;visibility:visible;border:2px solid green}.mec-import-options-notification .mec-message-import-error{opacity:1;visibility:visible;border:2px solid #e62117}.mec-export-settings:focus,.mec-import-settings:focus{color:#fff}.mec-import-settings-wrap{position:relative}.mec-loarder-wrap{position:absolute;top:0;bottom:0;left:0;right:0;background:rgba(202,202,202,.7);z-index:9999}.mec-loarder-wrap.mec-settings-loader{top:34px}.mec-loarder{position:absolute;width:64px;height:64px;top:calc(50% - 32px);left:calc(50% - 36px)}.mec-loarder div{display:inline-block;position:absolute;left:6px;width:4px;background:#fff;animation:mec-loarder 1.2s cubic-bezier(0,.5,.5,1) infinite}.mec-loarder div:nth-child(1){left:27px;animation-delay:-.24s;background:#0075ff}.mec-loarder div:nth-child(2){left:36px;animation-delay:-.12s;background:#028bff}.mec-loarder div:nth-child(3){left:45px;animation-delay:0;background:#32a0ff}@keyframes mec-loarder{0%{top:6px;height:51px}100%,50%{top:19px;height:26px}}.w-box.support-page.searchbox{background:#008aff;background:linear-gradient(180deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff;min-height:260px;text-align:center;border-radius:2px}#webnus-dashboard .search-form input{background:rgba(255,255,255,.2);border:none;width:50%;outline:0;color:rgba(255,255,255,.7);font-size:18px;border-radius:4px 0 0 4px;box-shadow:0 1px 2px 0 rgba(0,0,0,.03);-webkit-transition:background .4s,box-shadow .2s;transition:background .4s,box-shadow .2s;padding:20px 32px;margin:0}#webnus-dashboard .search-form button{background:rgba(255,255,255,.2);border:none;padding:20px 32px;margin-left:-2px;color:#fff;border-radius:0 4px 4px 0;font-size:18px;cursor:pointer;-webkit-transition:background .4s,box-shadow .2s;transition:background .4s,box-shadow .2s}#webnus-dashboard .search-form button:hover{background:#fff;color:#3a3c4c}.w-box.support-page.searchbox p{font-size:30px}.search-form input::-webkit-input-placeholder{color:rgba(255,255,255,.7)}.search-form input::-moz-placeholder{color:rgba(255,255,255,.7)}.search-form input:-ms-input-placeholder{color:rgba(255,255,255,.7)}.search-form input:-moz-placeholder{color:rgba(255,255,255,.7)}#webnus-dashboard .search-form input:active,#webnus-dashboard .search-form input:focus{box-shadow:0 10px 20px rgba(0,0,0,.14);background:#fff;color:#3a3c4c}#webnus-dashboard .search-form input:active::-webkit-input-placeholder,#webnus-dashboard .search-form input:focus::-webkit-input-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active::-moz-placeholder,#webnus-dashboard .search-form input:focus::-moz-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active:-ms-input-placeholder,#webnus-dashboard .search-form input:focus:-ms-input-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active:-moz-placeholder,#webnus-dashboard .search-form input:focus:-moz-placeholder{color:#3a3c4c}#webnus-dashboard .w-box.support-page.mec-ticksy{text-align:center;min-height:260px}#webnus-dashboard .w-box.support-page.mec-ticksy p{font-size:20px;width:70%;margin:0 auto;margin-bottom:40px;margin-top:40px}#webnus-dashboard .w-box.support-page.mec-ticksy a{color:#fff;font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:12px 20px;cursor:pointer;margin-bottom:40px;display:inline-block}#webnus-dashboard .w-box.support-page.mec-ticksy a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5)}.mec-faq-accordion>.mec-faq-accordion-content{display:none}#webnus-dashboard .mec-faq-accordion-trigger a{font-size:16px;padding:12px;background:#f1f1f1;display:block;color:#222;line-height:17px;outline:0}.mec-faq-accordion-trigger{margin-bottom:5px;position:relative}#webnus-dashboard .mec-faq-accordion-trigger a:after{font-family:simple-line-icons;content:"\e095";position:absolute;right:12px;font-weight:700}.mec-faq-accordion-content{padding:5px 14px 25px}#webnus-dashboard .mec-faq-accordion-trigger a.active:after{content:"\e082"}#webnus-dashboard .support-page-links a{background-color:#fff;color:#fff;border-radius:2px;padding:13px 24px;font-size:12px;letter-spacing:1px;font-weight:600;text-transform:uppercase}#webnus-dashboard .support-page-links a:hover,#webnus-dashboard .w-box.support-page.videobox .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}#webnus-dashboard .support-page-links{display:inline-block;margin:12px 4px 16px 0}.support-page-links.link-to-doc a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.support-page-links.link-to-videos a{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);box-shadow:0 5px 10px -5px #ff876c}.support-page-links.link-to-articles a{background:#b092e6;background:linear-gradient(95deg,#b092e6 0,#9b70e8 50%,#8e5cea 100%);box-shadow:0 5px 10px -5px #b092e6}.w-box.support-page.articles-box .w-box-content a{display:block;padding:6px 0}#webnus-dashboard .w-box.support-page.videobox .w-button a{color:#fff;font-size:10px;padding:5px 15px;min-height:10px;font-weight:500;border-radius:22px;box-shadow:0 3px 10px -4px #ff5a35;text-shadow:none;background:#ff5a35;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);border:none;transition:.24s}.w-box.support-page.articles-box,.w-box.support-page.faq-box{min-height:500px}.w-box.support-page.videobox{border-radius:2px;min-height:282px;box-shadow:0 1px 6px rgba(0,0,0,.039)!important}#webnus-dashboard .w-box.support-page.videobox .w-button a i{margin-right:6px}.support-page .w-box-content ul{margin-top:5px;padding-left:5px}.support-page .w-box-content ul li{font-size:13px}.support-page .w-box-content ul li i{font-size:17px;vertical-align:text-bottom;margin-right:7px;color:#999}.w-box.mec-activation{background:#fff url(../img/dp-dsb-support.jpg) no-repeat top right}.w-box.mec-activation .w-box-head{color:#40d8f0;width:75%}.w-box.mec-activation .w-box-content{padding:10px 30px}.w-box.mec-activation input[type=radio]{display:none}.w-box.mec-activation input[type=radio]+label{color:#000;font-size:13px;line-height:14px!important;color:#7b7b7b}.w-box.mec-activation input[type=radio].checked+label{color:#40d8f0}.w-box.mec-activation input[type=radio]+label span{display:inline-block;margin:-2px 6px 0 0;vertical-align:middle;cursor:pointer;height:14px;width:14px;text-align:center;background-color:#fff;border:1px solid #d4d4d4;border-radius:100%;box-shadow:0 2px 16px -2px rgba(0,0,0,.2);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;position:relative}.w-box.mec-activation input[type=radio].checked+label span{background-color:#40d8f0;border-color:#40d8f0;box-shadow:0 2px 14px -3px #40d8f0}.w-box.mec-activation input[type=radio].checked+label span:after{content:'';display:block;position:absolute;top:4px;left:4px;width:4px;height:4px;background:#fff;border-radius:100%}.w-box.mec-activation .LicenseType label{padding-right:20px;font-weight:500}.w-box.mec-activation .LicenseField{display:inline-block;position:relative;margin-top:20px}.w-box.mec-activation input[name=MECPurchaseCode]{box-shadow:inset 0 1px 2px rgba(0,0,0,.07);min-width:220px;background:#f4f4f4;border:none;border-radius:33px;width:500px;min-height:50px;margin:0;padding-left:20px;text-align:left}#webnus-dashboard .w-box.mec-activation input[type=submit]{height:40px;line-height:40px;font-weight:600;border:none;cursor:pointer;padding:0 30px;border-radius:33px;color:#fff;letter-spacing:1px;text-transform:uppercase;font-size:12px;background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67;transition:all .28s ease;position:absolute;right:5px;top:4px;font-size:12px}#webnus-dashboard .w-box.mec-activation input[type=submit]:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5)}#MECActivation .MECPurchaseStatus,.addon-activation-form .MECPurchaseStatus{display:inline-block;width:40px;height:40px;text-align:center;padding-top:9px;color:#fff;font-weight:700;font-size:18px;border-radius:50%;padding-top:8px;position:absolute;right:-51px;top:calc(50% - 20px)}.MECPurchaseStatus:after,.MECPurchaseStatus:before{position:absolute;border-radius:50px;background:#fff;content:'';transform:rotate(45deg)}.MECPurchaseStatus.PurchaseError:before{width:22px;height:4px;right:9px;top:18px;transform:rotate(45deg)}.MECPurchaseStatus.PurchaseError:after{width:22px;height:4px;right:9px;top:18px;transform:rotate(-45deg)}.MECPurchaseStatus.PurchaseSuccess:before{width:13px;height:4px;right:19px;top:21px;transform:rotate(45deg)}.MECPurchaseStatus.PurchaseSuccess:after{width:22px;height:4px;right:5px;top:18px;transform:rotate(-45deg)}#MECActivation .MECPurchaseStatus.PurchaseError,.addon-activation-form .MECPurchaseStatus.PurchaseError{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);box-shadow:0 5px 10px -5px #ff876c}#MECActivation .MECPurchaseStatus.PurchaseSuccess,.addon-activation-form .MECPurchaseStatus.PurchaseSuccess{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.wna-spinner-wrap{position:absolute;background:#000;width:509px;height:64px;top:-8px;border-radius:50px;z-index:999;background-color:#fff;opacity:.9}.wna-spinner{width:40px;height:40px;position:relative;margin:6px auto}.wna-spinner .double-bounce1,.wna-spinner .double-bounce2{width:100%;height:100%;border-radius:50%;background-color:#40d8f0;opacity:.6;position:absolute;top:0;left:0;-webkit-animation:sk-bounce 2s infinite ease-in-out;animation:sk-bounce 2s infinite ease-in-out}.wna-spinner .double-bounce2{-webkit-animation-delay:-1s;animation-delay:-1s}#MECActivation .MECLicenseMessage,.addon-activation-form .MECLicenseMessage{margin-top:24px;color:#f64;max-width:570px}.box-addon-activation-toggle-content,.box-addon-activation-toggle-head{display:none}.addon-activation-form h3{font-size:15px;font-weight:400;margin:34px 0 -7px}.box-addon-activation-toggle-head{line-height:1.5;font-size:16px;margin-top:20px;cursor:pointer}.box-addon-activation-toggle-head i{margin-right:7px;cursor:pointer;font-weight:700}#mec-advanced-wraper div:first-child>ul{display:block;margin:5px 0;padding:5px 0;width:390px;border:1px solid #e1e2e3;border-radius:2px;box-shadow:0 1px 3px rgba(0,0,0,.05)}#mec-advanced-wraper div:first-child>ul span{display:none}#mec-advanced-wraper div:first-child>ul *{display:inline-block;background:#fff;font-size:12px;color:#717273;text-align:center}#mec-advanced-wraper div:first-child>ul>li{width:60px;font-weight:700;margin:0 10px 0 0;padding:4px 0;border-right:1px solid #e1e2e3}#mec-advanced-wraper div:first-child>ul>ul>li{margin:0;padding:2px 10px;cursor:pointer;border-radius:2px;transition:all .18s ease}#mec-advanced-wraper div:first-child>ul>ul>li:hover,.mec-active{background:#008aff!important;color:#fff!important}@-webkit-keyframes sk-bounce{0%,100%{-webkit-transform:scale(0)}50%{-webkit-transform:scale(1)}}@keyframes sk-bounce{0%,100%{transform:scale(0);-webkit-transform:scale(0)}50%{transform:scale(1);-webkit-transform:scale(1)}}.w-col-sm-3 .w-box.addon{min-height:auto;box-shadow:0 3px 16px -5px rgba(0,0,0,.1);border-radius:2px}.w-box-child.mec-addon-box{padding:20px 20px}.mec-addon-box-head{border-bottom:1px solid #e8e8e8;padding-bottom:5px;margin-bottom:14px;position:relative}.mec-addon-box-version{position:relative;background:#eaeaea;border-radius:1px;padding:0 8px;color:#5a5a5a;font-size:11px;letter-spacing:.2px;line-height:21px;display:inline-block;margin:3px 0}.mec-addon-box-title{font-weight:700;font-size:18px;line-height:25px}.mec-addon-box-title a span{color:#444;font-size:15px}.mec-addon-box-content p{color:#777;font-size:13px}.mec-addon-box-mec-version{background:#f3f3f3;padding:10px;font-size:13px}#webnus-dashboard .addons-page-links{display:inline-block;margin:12px 4px 16px 0}#webnus-dashboard .addons-page-links a{background-color:#fff;color:#fff;border-radius:2px;padding:13px 24px;font-size:12px;letter-spacing:1px;font-weight:600;text-transform:uppercase}.addons-page-links.link-to-purchase a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.addons-page-links.link-to-install-addons a{background:#b092e6;background:linear-gradient(95deg,#b092e6 0,#9b70e8 50%,#8e5cea 100%);box-shadow:0 5px 10px -5px #b092e6}#webnus-dashboard .addons-page-links a:hover,#webnus-dashboard .w-box.addons-page.videobox .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}.mec-addon-box-footer{margin-top:25px}#webnus-dashboard .mec-addon-box-footer a{font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:7px 19px;margin-top:10px;display:inline-block;letter-spacing:.2px;color:#fff;width:100%;text-align:center}#webnus-dashboard .mec-addon-box-footer a.mec-addon-box-intro{box-shadow:0 3px 10px -4px #ff5a35;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%)}#webnus-dashboard .mec-addon-box-footer a:hover{background:#222!important;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%)!important;box-shadow:0 5px 23px -7px rgba(0,0,0,.5)!important;cursor:pointer!important}#webnus-dashboard .mec-addon-box-footer a i{margin-right:6px;color:#fff}@media(max-width:1366px){.wns-be-container #wns-be-content{padding:5px 15px 0}.mec-form-row .mec-col-8 label{font-size:10px}#webnus-dashboard .mec-tooltip .box p,.mec-tooltip .box p{font-size:10px}}@media (max-width:780px){.wns-be-container #wns-be-content{padding:10px 0}.wns-be-container .mec-form-row .mec-col-8 label{width:50%;display:block}.wns-be-container .mec-form-row input[type=checkbox]{width:14px;height:14px}.wns-be-container .wns-be-sidebar li .subsection a{padding-left:30px}.wns-be-container .wns-be-sidebar{width:200px}.wns-be-container .wns-be-main{margin-left:200px}.wns-be-container .mec-tooltip .box{min-width:235px!important}.wns-be-container .mec-tooltip .box p{font-size:12px!important}#wns-be-infobar.sticky{position:unset}}@media (max-width:480px){.wns-be-container .wns-be-sidebar{width:100%;position:unset;float:none}.wns-be-container .wns-be-main{margin-left:0;width:100%;position:unset}.wns-be-container{margin-top:50px}.wns-be-container #wns-be-infobar:before{width:100%}.wns-be-container #wns-be-infobar{height:150px}#mec-search-settings{margin-top:80px;width:181px}}.addons-page-error,.addons-page-notice{display:block;margin-top:15px;margin-bottom:0;background:#fff;border-left:4px solid #00a0d2;box-shadow:0 1px 1px 0 rgba(0,0,0,.1);padding:1px 12px}.addons-page-error p,.addons-page-notice p{margin:.5em 0;padding:2px;font-size:13px}.addons-page-error{border-left-color:#dc3232}.mec-addon-box-comingsoon{background:#eaeaea;padding:8px 11px;color:#5a5a5a;font-size:14px;font-weight:500;text-align:center}.mec-addons .w-row .w-col-sm-3:nth-child(4n+1){clear:left}@media (min-width:960px){#webnus-dashboard .mec-addon-box-footer .w-button{text-align:right}}@media (min-width:1401px){.mec-addon-box-title a span{font-size:17px}}.mec-pro-notice{margin-top:24px;line-height:30px}.mec-pro-notice .info-msg{padding:50px 30px;margin-bottom:0}#webnus-dashboard .mec-pro-notice .info-msg{background:#fff;box-shadow:0 1px 16px rgba(0,0,0,.034);text-align:center;color:#000}#webnus-dashboard a.info-msg-link{background:#e66f52;background:linear-gradient(95deg,#ff8162 0,#e66f52 50%,#ff4c20 100%);box-shadow:0 5px 10px -5px #e66f52;border-radius:2px;padding:12px 50px;font-size:16px;line-height:24px;border:none;margin:20px auto 0;color:#fff;transition:all .3s ease;display:inline-block}#webnus-dashboard a.info-msg-link:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}#webnus-dashboard .info-msg p{width:70%;margin:0 auto;line-height:1.8}#webnus-dashboard .info-msg-coupon{font-size:13px;color:#777;max-width:600px;line-height:1.68;margin:25px auto 0}#webnus-dashboard .info-msg-coupon strong{font-weight:700;color:#19ce18}.info-msg .socialfollow{padding-top:20px}.info-msg .socialfollow a{margin:0 2px;display:inline-block}.info-msg .socialfollow a i{background:#96a4b1;color:#fff;padding:6px;border-radius:3px;font-size:18px;box-shadow:0 2px 3px rgba(0,0,0,.1);transition:all .25s}.info-msg .socialfollow a:hover i{background:#008aff}.mec-intro-section .w-box-content{text-align:center}.mec-intro-section .w-box-content.mec-intro-section-welcome{max-width:600px;margin:0 auto}.mec-intro-section .w-box-content.mec-intro-section-welcome h3{font-size:27px}a.mec-intro-section-link-tag.button.button-hero{margin:0 10px 40px}a.mec-intro-section-link-tag.button.button-primary.button-hero{color:#fff!important}a.mec-intro-section-link-tag.button.button-secondary.button-hero{color:#000!important}.mec-intro-section-ifarme iframe{border:1px solid #e7e7e7;border-radius:3px;padding:10px;box-shadow:0 3px 10px -6px rgba(0,0,0,.2)}.w-box-content.mec-intro-section-welcome p{margin-bottom:0}.mec-tooltip a:focus{box-shadow:none}#mec_booking_form .mec-options-fields,#mec_modules_form .mec-options-fields,#mec_settings_form .mec-options-fields,#mec_single_form .mec-options-fields{padding-bottom:150px!important}#mec_taxes_fees_container_toggle{margin-bottom:60px}#mec_taxes_fees_container_toggle{margin-bottom:60px}.wns-be-sidebar li{position:relative}.wns-be-sidebar li .submneu-hover{position:absolute;top:-1px;right:-222px;width:220px;z-index:9;background:#fff;border:1px;border-style:solid;border-color:#dedede;margin:0;overflow:visible;opacity:0;visibility:hidden;transition:all .23s ease;padding-top:8px;padding-bottom:12px}.wns-be-sidebar li:hover{background:#fff}.wns-be-sidebar li:hover .submneu-hover{opacity:1;visibility:visible}.wns-be-sidebar li .submneu-hover a{background:#fff;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 26px}.wns-be-sidebar li .submneu-hover a:hover{background:#f6f6f6;color:#222}.wns-be-sidebar li .submneu-hover:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-15px;top:14px;border-right-color:#c5c5c5;right:0}.wns-be-sidebar li .submneu-hover:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-14px;top:14px}.wns-be-sidebar li a:focus,.wns-be-sidebar li:focus{outline:-webkit-focus-ring-color auto 0;border:0;box-shadow:none}@media (max-width:480px){.wns-be-sidebar li .submneu-hover{width:175px;right:0}.wns-be-sidebar li .submneu-hover a{font-size:11px;padding:5px 5px 5px 20px}}.mec-tooltip:hover:after,.mec-tooltip:hover:before{display:none}.mec-tooltip{display:inline-flex;bottom:7px}.mec-tooltip .box{min-width:300px;max-width:600px;display:inline-block;left:26px;top:50%;transform:translateY(-50%);padding:0;margin-top:8px;background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.3;position:absolute;z-index:9999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s}#webnus-dashboard .mec-tooltip .box p,.mec-tooltip .box p{color:#fff;font-size:14px;line-height:1.3;margin:0}.mec-tooltip:hover .box{visibility:visible;opacity:1}.mec-tooltip:hover .box{padding:20px;border-radius:8px}.mec-tooltip .box h5{color:#fff;font-size:17px;font-weight:600;margin:-30px -20px;padding:20px 0;text-align:center;margin-bottom:10px;background:#3a3f44;border-bottom:1px solid #32363a;border-radius:6px 6px 0 0;z-index:9999}#webnus-dashboard .mec-tooltip .box p a,.mec-tooltip .box p a{color:#40d9f1;margin-top:10px;margin-left:0;font-weight:400;position:relative;text-decoration:none;display:block;width:max-content}.mec-tooltip .box a:hover{color:#f90}.mec-tooltip .box:after{display:block;position:absolute!important;top:100%!important;right:50%!important;margin-top:-6px!important;margin-right:-6px!important;width:12px!important;height:24px!important;overflow:hidden!important;transform:rotate(-90deg)!important}.mec-tooltip .box:before{display:block;content:''!important;position:absolute!important;width:12px;height:12px;left:-10px!important;top:50%!important;transform:translate(50%,-50%) rotate(-45deg)!important;background-color:#535a61!important;box-shadow:0 8px 9px -4px #535a61!important;z-index:0!important}.mec-tooltip .box.top{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-tooltip .box.top:after{top:50%!important;right:100%!important}.mec-tooltip .box.top:before{left:50%!important;top:100%!important}.mec-tooltip .box.bottom{left:50%;top:auto;bottom:0;transform:translate(-50%,100%);margin-bottom:-20px;margin-left:-10px}.mec-tooltip .box.bottom:after{top:0!important;right:50%!important;background-color:#3a3f44!important}.mec-tooltip .box.bottom:before{left:50%!important;top:-7px!important;transform:translateX(-50%);background-color:#3a3f44!important}.mec-tooltip .box.left{left:auto;right:26px;top:50%;transform:translateY(-50%)}.mec-tooltip .box.left:before{right:0!important;left:auto!important;top:50%!important}form#mec_reg_fields_form input[type=radio]:before{content:"";display:inline-block;background:#fff;border-radius:18px;width:14px;height:14px;margin:-1px 0 0 -2px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32)}form#mec_reg_fields_form input[type=radio]:checked:before{border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff;width:4px;height:4px}form#mec_reg_fields_form input[type=radio]{min-height:0;margin-right:6px}form#mec_reg_fields_form label{margin-right:20px}@media(min-width:1200px) and (max-width:1366px){.mec-tooltip .box.left{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-tooltip .box.left:after{top:50%!important;right:100%!important}.mec-tooltip .box.left:before{left:50%!important;top:100%!important}.mec-tooltip .box{min-width:225px}.mec-tooltip .box h5{font-size:15px}.mec-tooltip .box .content{font-size:12px}}@media(max-width:1366px){.wns-be-container .wns-be-group-tab p{margin-top:0}}.mec-addons-notification-box-wrap .w-col-sm-12{padding:0}.mec-addons-notification-box-wrap img{width:auto}.mec-addons-notification-box-image{width:555px;display:inline-block;vertical-align:top}.mec-addons-notification-box-content{width:calc(100% - 559px);display:inline-block}.mec-addons-notification-box-content p{margin-top:1%;line-height:1.5;font-size:16px}.mec-addons-notification-box-content .w-box-content{padding-top:0;padding-bottom:0}.mec-addons-notification-box-content ol{font-size:16px}.mec-addons-notification-box-content a{background:#38d5ed;color:#fff!important;padding:10px 26px;margin-top:5px;display:inline-block;border-radius:3px;text-transform:capitalize;font-size:16px;letter-spacing:.4px;transition:all .1s ease;font-weight:600;text-decoration:none}.mec-addons-notification-box-content a:hover{background:#000}.w-clearfix.w-box.mec-addons-notification-box-wrap span{right:0;left:unset;cursor:pointer;background:#fff;padding:0 16px}.w-clearfix.w-box.mec-addons-notification-box-wrap span i{font-size:28px;vertical-align:sub;color:#f2113e}.wns-be-container .mec-addons-notification-wrap{padding:0;margin:0}.wns-be-container .mec-addons-notification-wrap .w-col-sm-12{padding:0}.wns-be-container .w-box{margin-top:0}.wns-be-container.mec-addons-notification-set-box{margin-right:15px;margin-top:50px;margin-bottom:27px}@media(max-width:1200px){.mec-addons-notification-box-content,.mec-addons-notification-box-image{width:100%;display:block}.mec-addons-notification-box-image{text-align:center}}@media(max-width:768px){.mec-addons-notification-box-image img{width:100%;height:auto}}body.rtl .wns-be-sidebar{width:260px;float:right;position:relative}body.rtl .wns-be-main{margin-left:0;border-left:0;margin-right:260px;border-right:1px solid #dedede}body.rtl .w-box.mec-activation .LicenseField{direction:rtl}body.rtl .w-box.mec-activation input[name=MECPurchaseCode]{text-align:right;padding-right:20px}body.rtl #MECActivation .MECPurchaseStatus,body.rtl .addon-activation-form .MECPurchaseStatus{right:auto;left:-51px}body.rtl #webnus-dashboard .w-box.mec-activation input[type=submit]{right:auto;left:5px}body.rtl .wns-be-sidebar .wns-be-group-menu li a{padding:13px 20px 13px 4px}body.rtl .wns-be-sidebar .wns-be-group-tab-link-a span.wns-be-group-menu-title{padding-left:0;padding-right:24px}body.rtl .wns-be-sidebar .has-sub span.extra-icon{float:left}body.rtl .wns-be-sidebar .wns-be-group-tab-link-a span.extra-icon i{right:auto;left:10px}body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:after,body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:transparent;border-left-color:#fff;right:auto;left:-1px;top:10px}body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{border-right-color:transparent;border-left-color:#c5c5c5;right:auto;left:0}body.rtl .mec-col-1,body.rtl .mec-col-10,body.rtl .mec-col-11,body.rtl .mec-col-12,body.rtl .mec-col-2,body.rtl .mec-col-3,body.rtl .mec-col-4,body.rtl .mec-col-5,body.rtl .mec-col-6,body.rtl .mec-col-7,body.rtl .mec-col-8,body.rtl .mec-col-9{float:right;margin:0 1% 0 0}body.rtl .wns-be-sidebar li .submneu-hover{right:auto;left:-222px}body.rtl .wns-be-sidebar li .submneu-hover:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:auto;right:-1px;top:14px}body.rtl #mec_styles_form #mec_styles_CSS{direction:ltr}body.rtl .w-box.mec-activation{-moz-transform:scaleY(-1);-o-transform:scaleY(-1);-webkit-transform:scaleY(-1);transform:scaleX(-1)}body.rtl .w-box.mec-activation .w-box-content,body.rtl .w-box.mec-activation .w-box-head{-moz-transform:scaleY(-1);-o-transform:scaleY(-1);-webkit-transform:scaleY(-1);transform:scaleX(-1);display:block}body.rtl .w-box.mec-activation .w-box-head{width:100%}body.rtl .wns-be-container #wns-be-infobar:before{left:auto;right:0}body.rtl .wns-be-container .dpr-btn.dpr-save-btn{float:left}body.rtl .wns-be-container .wns-be-group-tab h2:before,body.rtl .wns-be-container .wns-be-group-tab h4:before{left:auto;right:0;margin-right:0;margin-left:5px}body.rtl #mec_gateways_form .mec-tooltip{float:left}div#plugin-information-content .section{margin-top:-600px}.mec-details-addons-container{margin-top:20px}.mec-details-addons-wrap img{float:left;width:19%;margin-right:17px}.mec-details-addons-wrap{clear:both;margin-bottom:80px;display:block;position:relative}.mec-details-addons-wrap a{text-decoration:none}.mec-details-addons-wrap p{float:left;width:340px;margin-top:0;margin-bottom:30px}.mec-details-addons-title{font-weight:700}.mec-details-addons-title a{color:#444}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx{border-radius:10px!important;box-shadow:0 4px 38px rgba(0,0,0,.14)!important}body .crisp-client .crisp-1rjpbb7 .crisp-13qutdl,body .crisp-client .crisp-1rjpbb7 .crisp-13qutdl *,body .crisp-client .crisp-1rjpbb7 .crisp-9dgo7z,body .crisp-client .crisp-1rjpbb7 .crisp-9dgo7z *{font-family:proxima-nova,-apple-system,BlinkMacSystemFont,"Segoe UI",Catamaran,sans-serif!important}body .crisp-client .crisp-1rjpbb7 .crisp-145mbcr,body .crisp-client .crisp-1rjpbb7 .crisp-1jrqqbm:hover{background-color:#fff!important}body .crisp-client .crisp-1rjpbb7 .crisp-14u434g{border-color:#e7e8e9!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-1bkorcf .crisp-1vzg1qq{font-size:20px!important;width:14px!important;height:19px!important;opacity:.85}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-1bkorcf .crisp-1vzg1qq:hover{opacity:.99}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-1sps3eb .crisp-1vd2grm .crisp-12w4w1a{font-size:13px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-1sps3eb .crisp-1vd2grm .crisp-12w4w1a::-webkit-input-placeholder{color:#717273!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=visitor] .crisp-z89v5n .crisp-162m9xf{background-color:#008aff!important;color:#fff!important;box-shadow:none!important;border-radius:5px!important;padding:15px 25px 15px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=visitor] .crisp-z89v5n .crisp-162m9xf .crisp-1o2g4mc{color:#fff!important;font-size:13px!important;letter-spacing:.3px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-z89v5n .crisp-162m9xf{background-color:#f1f2f3!important;border-radius:5px!important;padding:15px 25px 15px!important;box-shadow:none!important;color:#121314!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-type=audio] .crisp-z89v5n .crisp-162m9xf{background-color:#d1d7dc!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=operator] .crisp-z89v5n .crisp-1o2g4mc{color:#121314!important;-webkit-text-fill-color:#121314!important;font-size:13px!important;letter-spacing:.3px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-mkirz6 .crisp-12qaym5 .crisp-39hskb{opacity:.4;margin-right:5px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-mkirz6 .crisp-12qaym5 .crisp-ehr6mw{opacity:.68;font-size:12px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg{background-image:linear-gradient(125deg,#008aff -10%,#0066b1 100%)!important;height:110px!important;padding-top:35px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-1uw6f17,body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-85evuk,body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-nu40j6{font-size:17px!important;line-height:28px!important;padding-top:10px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-kquevr .crisp-x94m06{background-color:#008aff!important;background-image:linear-gradient(125deg,#008aff -10%,#008af0 100%)!important;box-shadow:0 5px 34px -6px #008aff!important}body .crisp-client .crisp-1rjpbb7 .crisp-4oo1n4{background-color:transparent!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx[data-chat-status=ongoing] .crisp-1784wh6 .crisp-1xmtdlg .crisp-172kolj{margin-top:-10px!important}body .crisp-client .crisp-1rjpbb7[data-last-operator-face=false] .crisp-1rf4xdh .crisp-kquevr .crisp-x94m06 .crisp-16qgsyi .crisp-101bp3x[data-is-ongoing=false]{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1OCIgaGVpZ2h0PSI1NSIgdmlld0JveD0iMCAwIDU4IDU1Ij4NCiAgPGcgaWQ9ImNoYXQtc3ZncmVwby1jb21fMV8iIGRhdGEtbmFtZT0iY2hhdC1zdmdyZXBvLWNvbSAoMSkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgLTEuNSkiPg0KICAgIDxwYXRoIGlkPSJQYXRoXzEiIGRhdGEtbmFtZT0iUGF0aCAxIiBkPSJNMjksMS41YzE2LjAxNiwwLDI5LDExLjY0MSwyOSwyNmEyNC4wMSwyNC4wMSwwLDAsMS00LjgsMTQuMzE4Yy40LDQuNzQ1LDEuNTQyLDExLjQyOCw0LjgsMTQuNjgyLDAsMC05Ljk0My0xLjQtMTYuNjc3LTUuNDYybC0uMDIyLjAwOWMtMi43NjQtMS44LTUuNTMyLTMuNjU2LTYuMS00LjEyNmExLDEsMCwwLDAtMS4zMy0uMjc3LDEuMDE3LDEuMDE3LDAsMCwwLS40ODkuODQ4Yy0uMDEuNjIyLjAwNS43ODQsNS41ODUsNC40MjFBMzEuOTE0LDMxLjkxNCwwLDAsMSwyOSw1My41Yy0xNi4wMTYsMC0yOS0xMS42NDEtMjktMjZTMTIuOTg0LDEuNSwyOSwxLjVaIiBmaWxsPSIjZmZmIi8+DQogICAgPGNpcmNsZSBpZD0iRWxsaXBzZV8xIiBkYXRhLW5hbWU9IkVsbGlwc2UgMSIgY3g9IjMiIGN5PSIzIiByPSIzIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMiAyNC41KSIgZmlsbD0iIzAwOGFmZiIvPg0KICAgIDxjaXJjbGUgaWQ9IkVsbGlwc2VfMiIgZGF0YS1uYW1lPSJFbGxpcHNlIDIiIGN4PSIzIiBjeT0iMyIgcj0iMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjYgMjQuNSkiIGZpbGw9IiMwMDhhZmYiLz4NCiAgICA8Y2lyY2xlIGlkPSJFbGxpcHNlXzMiIGRhdGEtbmFtZT0iRWxsaXBzZSAzIiBjeD0iMyIgY3k9IjMiIHI9IjMiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQwIDI0LjUpIiBmaWxsPSIjMDA4YWZmIi8+DQogIDwvZz4NCjwvc3ZnPg0K)!important;height:31px!important;top:16px!important;left:14px!important}body .csh-category-item a h6{text-align:left}.mec-form-row.mec-syn-schedule{background:#f7f7f7;padding:20px;border:1px solid #eee;box-shadow:0 1px 11px rgba(0,0,0,.034);margin-bottom:20px}.mec-form-row.mec-syn-schedule p{padding-left:26px}.mec-form-row.mec-syn-schedule h2{margin-top:0}.mec-form-row.mec-syn-schedule h4{margin:10px 0}li.wns-be-group-menu-li.mec-settings-menu .mec-settings-submenu{position:absolute;top:-1px;right:-222px;width:220px;z-index:9;background:#fff;border:1px;border-style:solid;border-color:#dedede;margin:0;overflow:visible;opacity:0;visibility:hidden;transition:all .23s ease;padding-top:8px;padding-bottom:12px}li.wns-be-group-menu-li.mec-settings-menu:hover>.mec-settings-submenu{visibility:visible;opacity:1}.mec-settings-menu .mec-settings-submenu:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-15px;top:14px;border-right-color:#c5c5c5;right:0}.mec-settings-menu .mec-settings-submenu:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-14px;top:14px}.wns-be-sidebar .mec-settings-menu .mec-settings-submenu a{background:#fff;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 26px}.wn-mec-select{width:32.33333333%!important;clear:unset!important}.wn-mec-select{-webkit-tap-highlight-color:transparent;background-color:#fff;border-radius:3px;border:1px solid #ddd;margin-bottom:8px;position:relative;text-align:left!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;box-shadow:0 3px 13px -5px rgba(0,0,0,.1),inset 0 1px 2px rgba(0,0,0,.07)}.wn-mec-select:hover{border-color:#dbdbdb}.wn-mec-select.open .list{overflow:unset;width:100%;margin:0}.wn-mec-select .list{background-color:#fff;border-radius:2px;box-shadow:0 2px 33px -2px rgba(0,0,0,.2),inset 0 1px 2px rgba(0,0,0,.07);box-sizing:border-box;margin-top:4px;opacity:0;overflow:hidden;padding:0;pointer-events:none;position:absolute;top:100%;left:0;-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0;transform-origin:50% 0;-webkit-transform:scale(.75) translateY(-21px);-ms-transform:scale(.75) translateY(-21px);transform:scale(.75) translateY(-21px);-webkit-transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;z-index:9}.wn-mec-select{-webkit-tap-highlight-color:transparent;background-color:#fff;border-radius:5px;border:solid 1px #e8e8e8;box-sizing:border-box;clear:both;cursor:pointer;display:block;float:left;font-family:inherit;font-size:14px;font-weight:400;height:42px;line-height:40px;outline:0;padding-left:18px;padding-right:30px;position:relative;text-align:left!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap;width:auto}.wn-mec-select:hover{border-color:#dbdbdb}.wn-mec-select:after{border-bottom:2px solid #999;border-right:2px solid #999;content:'';display:block;height:5px;margin-top:-4px;pointer-events:none;position:absolute;right:12px;top:50%;-webkit-transform-origin:66% 66%;-ms-transform-origin:66% 66%;transform-origin:66% 66%;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition:all .15s ease-in-out;transition:all .15s ease-in-out;width:5px}.wn-mec-select.open:after{-webkit-transform:rotate(-135deg);-ms-transform:rotate(-135deg);transform:rotate(-135deg)}.wn-mec-select.open .list{opacity:1;pointer-events:auto;-webkit-transform:scale(1) translateY(0);-ms-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}.wn-mec-select.disabled{border-color:#ededed;color:#999;pointer-events:none}.wn-mec-select.disabled:after{border-color:#ccc}.wn-mec-select.wide{width:100%}.wn-mec-select.wide .list{left:0!important;right:0!important}.wn-mec-select.right{float:right}.wn-mec-select.right .list{left:auto;right:0}.wn-mec-select.small{font-size:12px;height:36px;line-height:34px}.wn-mec-select.small:after{height:4px;width:4px}.wn-mec-select .list{background-color:#fff;border-radius:5px;box-shadow:0 0 0 1px rgba(68,68,68,.11);box-sizing:border-box;margin-top:4px;opacity:0;overflow:hidden;padding:0;pointer-events:none;position:absolute;top:100%;left:0;-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0;transform-origin:50% 0;-webkit-transform:scale(.75) translateY(-21px);-ms-transform:scale(.75) translateY(-21px);transform:scale(.75) translateY(-21px);-webkit-transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;z-index:9}.wn-mec-select .list:hover .option:not(:hover){background-color:transparent!important}.wn-mec-select .option{cursor:pointer;font-weight:400;list-style:none;min-height:40px;outline:0;text-align:left;position:relative;font-size:12px!important;padding:1px 12px!important;margin:0!important;line-height:28px!important;min-height:28px!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.wn-mec-select .option .wn-hover-img-sh img{position:absolute;padding:3px;top:0;left:140px;box-shadow:0 3px 42px -8px rgba(0,0,0,.3);visibility:hidden;opacity:0;border:1px solid #dbdbdb;z-index:999999;background:#fff}.wn-mec-select .option:hover .wn-hover-img-sh img{visibility:visible;opacity:1}.wn-mec-select .option.focus,.wn-mec-select .option.selected.focus,.wn-mec-select .option:hover{background-color:#f6f6f6}.wn-mec-select .option.selected{font-weight:700}.wn-mec-select .option.disabled{background-color:transparent;color:#999;cursor:default}.no-csspointerevents .wn-mec-select .list{display:none}.no-csspointerevents .wn-mec-select.open .list{display:block}.mec-custom-nice-select ul.list li.option{width:30%!important;float:left!important;min-height:135px!important;height:135px;margin:1.66%!important;box-sizing:border-box;text-align:center;padding:10px!important;border-radius:3px;border:1px solid #eee;box-shadow:0 1px 3px rgba(0,0,0,.025);background:#fff!important}.mec-custom-nice-select ul.list li.option:hover{box-shadow:0 2px 7px rgba(0,0,0,.06);borde-color:#e0e0e0}.mec-custom-nice-select .list:hover .option:not(:hover),.mec-custom-nice-select ul.list:hover li.option{background:#fff!important}.mec-custom-nice-select ul.list{min-width:600px!important;margin-left:-132px!important;padding:20px 10px!important;background:#fcfbfd;border:1px solid #e9e9e9;box-shadow:0 1px 4px rgba(0,0,0,.05)}.mec-custom-nice-select ul.list li.option.selected{border:1px solid #008aff;box-shadow:0 1px 8px -3px #008aff inset;color:#008aff;padding:12px 0 0 0!important}.mec-custom-nice-select .wn-img-sh img{margin:4px 0 1px;line-height:1;max-width:68px;max-height:56px;filter:grayscale(1);-webkit-filter:grayscale(1);transition:all .22s ease;-webkit-transition:all .22s ease;-moz-transition:all .22s ease;-ms-transition:all .22s ease;-o-transition:all .22s ease}.wn-mec-select .option.focus .wn-img-sh img,.wn-mec-select .option.selected.focus .wn-img-sh img,.wn-mec-select .option:hover .wn-img-sh img{background-color:#f6f6f6;filter:grayscale(0);-webkit-filter:grayscale(0)}@media(max-width:768px){.wn-mec-select{width:45%!important}.mec-custom-nice-select ul.list{margin-left:-24px!important;min-width:404px!important}.mec-custom-nice-select ul.list li.option{width:46.6%!important}.wn-hover-img-sh{display:none}}@media(max-width:480px){.wn-mec-select{width:100%!important}.mec-custom-nice-select ul.list{min-width:337px!important}}@media(max-width:320px){.mec-custom-nice-select ul.list li.option{width:100%!important}.mec-custom-nice-select ul.list{min-width:298px!important}}.mec-sed-methods li{line-height:28px;padding-left:38px;position:relative}.mec-sed-methods li:before{margin-right:0}.mec-sed-methods li:before{border-radius:18px}.mec-custom-nice-select ul.list li .wn-mec-text:after,.mec-sed-methods li:before{content:"";position:absolute;display:inline-block;background:#fff;border-radius:2px;width:12px;height:12px;margin:-1px 0 0 -1px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32);border-radius:50%}.mec-custom-nice-select ul.list li .wn-mec-text{position:relative;padding-top:0;padding-bottom:28px}.mec-custom-nice-select ul.list li .wn-mec-text:after{left:calc(50% - 7px);top:auto;bottom:1px}.mec-custom-nice-select ul.list li .wn-img-sh{line-height:1}.mec-sed-methods li:before{left:9px;top:calc(50% - 7px)}.mec-custom-nice-select ul.list li.option.selected .wn-mec-text:after,.mec-sed-methods li.active:before{width:4px;height:4px;border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff}
1
+ #mec_location_thumbnail_img img,#mec_organizer_thumbnail_img img,#mec_thumbnail_img img{max-width:250px}.taxonomy-mec_label .column-id,.taxonomy-mec_location .column-id,.taxonomy-mec_organizer .column-id,.taxonomy-mec_speaker .column-id{width:40px}.taxonomy-mec_label .column-primary,.taxonomy-mec_location .column-primary,.taxonomy-mec_organizer .column-primary,.taxonomy-mec_speaker .column-primary{width:250px}.mec-color{margin:10px;width:14px;height:14px;display:inline-block;margin-right:6px;border-radius:20px 20px 20px 20px;vertical-align:middle}.mec-event-color-container,.mec-event-title-container{display:inline-block}.mec-available-color-row{margin-top:15px}.mec-available-color-row .mec-color{cursor:pointer}.mec-widget-container a{text-decoration:none}.mec-widget-container label{padding-right:15px}.mec-util-hidden{display:none}.button.mec-util-hidden{display:none}.wns-be-container{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Oxygen,Roboto,sans-serif;max-width:100%;background-color:#f6f6f6;border:1px solid #c1cad2;box-shadow:0 1px 1px rgba(0,0,0,.04);margin-top:5px;margin-right:15px;overflow:hidden}.wns-be-sidebar{width:260px;float:left;position:relative}.wns-be-sidebar ul.wns-be-group-menu,.wns-be-sidebar ul.wns-be-group-menu li{list-style:none;margin:0}.wns-be-sidebar .wns-be-group-menu li a{display:block;position:relative;outline:0;padding:13px 4px 13px 20px;background:#e0e0e0;background:0 0;border:none;color:#3f454a;font-size:13px;font-weight:600;text-decoration:none;-webkit-transition:none;transition:none}.wns-be-sidebar .wns-be-group-menu li a:hover{background:#fff;color:#008aff;opacity:1}.wns-be-sidebar .wns-be-group-menu>li.active>a,.wns-be-sidebar .wns-be-group-menu>li.active>a:hover{background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff}.wns-be-sidebar .wns-be-group-menu>li.active>a{box-shadow:0 2px 12px -5px #008aff}.wns-be-sidebar .wns-be-group-menu li a:first-child{border-top:none}.wns-be-main{background:#fff;margin-left:260px;border-left:1px solid #dedede;padding-bottom:84px;box-shadow:inset 0 1px 0 #fff;min-height:1120px;position:relative}.wns-be-main .wns-saved-settings{margin:0;border-bottom:1px solid #dedede;background:#dff0d8;color:#468847;padding:8px 35px 8px 14px;text-shadow:0 1px 0 rgba(255,255,255,.6)}.wns-be-container .dpr-btn{display:inline-block;font-size:13px;padding:0 16px 1px;height:36px;margin-right:3px;line-height:35px;color:#555;border:1px solid #ccc;background:#f7f7f7;text-decoration:none;transition:.24s all ease;-webkit-transition:.24s all ease}.wns-be-container .dpr-btn:hover{background:#fcfcfc;border-color:#999;color:#303030}.wns-be-container .dpr-btn.dpr-save-btn{color:#fff;font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s}.wns-be-container .dpr-btn.dpr-save-btn:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5);cursor:pointer}.wns-be-container .wns-be-group-tab h2,.wns-be-container .wns-be-group-tab h4{color:#000;margin-bottom:25px;padding:15px;background:#f5f5f5;font-size:21px;line-height:23px;letter-spacing:.4px;font-weight:700;position:relative}.wns-be-container .wns-be-group-tab h2{margin-top:10px}.wns-be-container .wns-be-group-tab h2:before,.wns-be-container .wns-be-group-tab h4:before{content:"";width:4px;height:16px;margin-right:5px;background-color:#008aff;display:block;position:absolute;left:0;top:18px}.wns-be-container .wns-be-group-tab h4:before{width:2px;top:16px}.wns-be-container .wns-be-group-tab h4{font-size:16px;font-weight:600;background:#f8f8f8;border:none;padding:12px 15px 12px 15px}.wns-be-container .wns-be-group-tab p{font-size:13px;color:#888}.wns-be-sidebar .wns-be-group-tab-link-a:hover{cursor:pointer}.wns-be-sidebar .wns-be-group-tab-link-a span{display:block}.wns-be-sidebar .wns-be-group-tab-link-a span.wns-be-group-menu-title{padding-left:24px}.wns-be-sidebar li.active ul.subsection{padding-top:8px;padding-bottom:12px;background:#fff;border-bottom:1px solid #dedede;margin:0}.wns-be-sidebar li .subsection a{background:#fff;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 46px}.wns-be-sidebar li .subsection a:hover{background:#f6f6f6;color:#222}.wns-be-sidebar .wns-be-group-menu li .subsection li.active a{color:#008aff}.wns-be-sidebar .wns-be-group-menu li .subsection li.active a:after,.wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;right:-1px;top:10px}.wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{border-right-color:#c5c5c5;right:0}.wns-be-sidebar li a i{color:#a0abb5;vertical-align:middle;font-size:18px;position:absolute;margin-top:0;margin-left:-4px}.wns-be-sidebar .wns-be-group-menu li.active>a i{color:#fff}.wns-be-sidebar .has-sub span.extra-icon{display:inline-block;float:right;padding:4px 7px 4px;margin-left:4px;margin-right:10px;font-family:sans-serif;font-size:9px;font-weight:600;line-height:9px;border-radius:10px;-moz-border-radius:10px;-webkit-border-radius:10px;border:0 solid transparent}.wns-be-sidebar .has-sub span.extra-icon i{margin-left:-3px;margin-top:2px;color:#bac6d0;font-size:10px}.wns-be-sidebar .wns-be-group-tab-link-a span.extra-icon i{right:10px;font-size:10px}.wns-be-sidebar .wns-be-group-menu li.active>a span.extra-icon i{margin-top:1px}.wns-be-container #wns-be-footer{border-top:1px solid #dedede;z-index:999;padding:25px 20px 20px;background:#fafafa!important;height:44px;text-align:right}.wns-be-container #wns-be-content{padding:5px 40px 40px}.wns-be-container #wns-be-infobar{background:#fff;border-bottom:1px solid #dedede;padding:20px;text-align:right;box-shadow:inset 0 1px 0 #fcfcfc;height:79px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;position:relative}.wns-be-container #wns-be-infobar:before{content:"";width:261px;height:78px;display:block;position:absolute;left:0;top:0;background:#fff url(../img/webnus-logo.png) no-repeat center;border-bottom:1px solid #dedede;background-size:220px;z-index:997}.wns-be-container .notice-yellow{margin:0;border-bottom:1px solid #dedede;background-color:#fcf8e3;color:#c09853;padding:8px 35px 8px 14px;text-shadow:0 1px 0 rgba(255,255,255,.5)}.wns-be-container .notice-red,.wns-be-container .wns-be-field-errors{margin:0;border-bottom:1px solid #dedede;background-color:#f2dede;color:#b94a48;padding:8px 35px 8px 14px;text-shadow:0 1px 0 rgba(255,255,255,.5)}@media(max-width:480px){a.dpr-btn.dpr-save-btn{display:block!important;text-align:center!important;margin-top:20px!important}.mec-search-settings-wrap{margin-top:73px!important;text-align:center!important;display:block!important}#mec-search-settings{margin:0!important;width:100%!important}.wns-be-container #wns-be-infobar{height:auto!important}}body.post-type-mec-events th.column-primary{width:35%}body.post-type-mec-events th.column-start_date{width:100px}body.post-type-mec-events th.column-end_date{width:100px}body.post-type-mec-events th.column-repeat{width:75px}body.post-type-mec-events th.column-author{width:150px}body.post-type-mec-books th.column-primary{width:20%}body.post-type-mec-books th.column-event{width:170px}body.post-type-mec-books th.column-bdate{width:120px}body.post-type-mec-books th.column-confirmation{width:120px}body.post-type-mec-books th.column-verification{width:120px}body.post-type-mec-books th.column-author{width:150px}.mec-meta-box-labels-container .mec-form-row{height:100px;overflow:auto}.mec-tooltip{display:inline;position:relative;margin-right:10px;cursor:help;bottom:5px;left:3px}.mec-tooltip:last-child{margin-right:0}.mec-tooltip:hover:after{background:#313130;border-radius:5px;bottom:24px;color:#fff;content:attr(title);left:-75px;padding:10px;position:absolute;z-index:98;width:240px}.mec-tooltip:hover:before{border:solid;border-color:#313130 transparent;border-width:6px 6px 0;bottom:18px;content:"";left:30%;position:absolute;z-index:99}.mec-tooltip .dashicons-before:before{font-size:24px;color:#40d9f1;line-height:37px}.mec-tooltip a:focus{box-shadow:none}.mec-form-row .bootstrap_unvalid{display:block;border:2px solid red;position:relative;display:inline-block;border-bottom:1px dotted #000}.mec-tooltiptext{visibility:hidden;width:120px;background-color:red;color:#fff;text-align:center;border-radius:6px;padding:5px 0;position:absolute;z-index:1}.ui-datepicker{background-color:#fff;border:1px solid #66afe9;border-radius:4px;box-shadow:0 0 8px rgba(102,175,233,.6);display:none;margin-top:4px;padding:10px;width:240px}.ui-datepicker a,.ui-datepicker a:hover{text-decoration:none;cursor:pointer}.ui-datepicker a:hover,.ui-datepicker td:hover a{color:#2c6396;-webkit-transition:color .1s ease-in-out;-moz-transition:color .1s ease-in-out;-o-transition:color .1s ease-in-out;transition:color .1s ease-in-out}.ui-datepicker .ui-datepicker-header{margin-bottom:4px;text-align:center}.ui-datepicker .ui-datepicker-title{font-weight:700}.ui-datepicker .ui-datepicker-next,.ui-datepicker .ui-datepicker-prev{cursor:default;font-family:dashicons;-webkit-font-smoothing:antialiased;font-style:normal;font-weight:400;height:20px;line-height:1.4;margin-top:2px;width:20px}.ui-datepicker .ui-datepicker-prev{float:left;text-align:left}.ui-datepicker .ui-datepicker-next{float:right;text-align:center}.ui-datepicker .ui-datepicker-prev:before{content:"\f341"}.ui-datepicker .ui-datepicker-next:before{content:"\f345"}.ui-datepicker .ui-icon{display:none}.ui-datepicker .ui-datepicker-calendar{table-layout:fixed;width:100%}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker .ui-datepicker-calendar th{text-align:center;padding:4px 0}.ui-datepicker .ui-datepicker-calendar td{border-radius:4px;-webkit-transition:background-color .1s ease-in-out,color .1s ease-in-out;-moz-transition:background-color .1s ease-in-out,color .1s ease-in-out;-o-transition:background-color .1s ease-in-out,color .1s ease-in-out;transition:background-color .1s ease-in-out,color .1s ease-in-out}.ui-datepicker .ui-datepicker-calendar td:hover{background-color:#eee;cursor:pointer}.ui-datepicker .ui-datepicker-calendar td a{text-decoration:none}.ui-datepicker .ui-datepicker-current-day{background-color:#4289cc}.ui-datepicker .ui-datepicker-current-day a{color:#fff}.ui-datepicker .ui-datepicker-calendar .ui-datepicker-unselectable:hover{background-color:#fff;cursor:default}.mec-col-1,.mec-col-10,.mec-col-11,.mec-col-12,.mec-col-2,.mec-col-3,.mec-col-4,.mec-col-5,.mec-col-6,.mec-col-7,.mec-col-8,.mec-col-9{position:relative;min-height:1px;padding:0;margin:0 1% 0 0}@media (min-width:783px){.mec-col-1,.mec-col-10,.mec-col-11,.mec-col-12,.mec-col-2,.mec-col-3,.mec-col-4,.mec-col-5,.mec-col-6,.mec-col-7,.mec-col-8,.mec-col-9{float:left}.mec-col-12{width:99%}.mec-col-11{width:90.66666667%}.mec-col-10{width:82.33333333%}.mec-col-9{width:74%}.mec-col-8{width:65.66666667%}.mec-col-7{width:57.33333333%}.mec-col-6{width:49%}.mec-col-5{width:40.66666667%}.mec-col-4{width:32.33333333%}.mec-col-3{width:24%}.mec-col-2{width:15.66666667%}.mec-col-1{width:7.33333333%}}#mec_reg_form_fields{background:#eee;padding:20px}#mec_reg_form_fields li{margin:4px;border-radius:2px;padding:20px 34px 24px;background:#fff;position:relative;transition:all .3s ease}#mec_reg_form_fields li ul{padding-top:15px;padding-bottom:15px;margin:1px}#mec_reg_form_fields li ul li{padding:7px 30px 7px 46px}#mec_reg_form_fields span.mec_reg_field_type{font-size:11px;font-weight:600;color:#8a8a8a;text-transform:uppercase;letter-spacing:2px}#mec_reg_form_fields span.mec_reg_field_option_sort,#mec_reg_form_fields span.mec_reg_field_remove,#mec_reg_form_fields span.mec_reg_field_sort{font-size:0;color:#fff}#mec_reg_form_fields span.mec_reg_field_remove{position:absolute;right:0;top:0}#mec_reg_form_fields span.mec_reg_field_option_sort:before,#mec_reg_form_fields span.mec_reg_field_remove:before,#mec_reg_form_fields span.mec_reg_field_sort:before{position:absolute;left:10px;top:20px;width:80px;height:20px;display:block;cursor:move;font-family:simple-line-icons;content:"\e023";font-size:18px;color:#888}#mec_reg_form_fields span.mec_reg_field_remove:before{content:"\e082";width:20px;height:20px;left:auto;right:15px;color:#f96666;cursor:pointer}#mec_reg_form_fields span.mec_reg_field_option_sort:before{font-size:13px;left:2px;top:23px;width:14px;height:14px}#mec_reg_form_fields li ul li span.mec_reg_field_remove{right:auto;left:60px;top:2px}#mec_reg_form_fields p.mec_reg_field_options{margin:6px 0 8px}#mec_reg_form_fields input[type=number],#mec_reg_form_fields input[type=text],#mec_reg_form_fields select,#mec_reg_form_fields textarea{min-width:260px;min-height:34px;margin-bottom:7px;margin-top:7px}#mec_reg_form_fields textarea{min-height:66px}#mec_reg_form_field_types button,#mec_reg_form_fields button{position:relative;outline:0;background:#fff;border:1px solid #e2e2e2;border-radius:50px;padding:11px 21px 11px 31px;line-height:1;font-size:11px;font-weight:600;color:#444;letter-spacing:2px;height:auto;cursor:pointer;margin-top:5px;text-transform:uppercase;box-shadow:0 0 3px rgba(0,0,0,.03)}#mec_reg_form_field_types button:hover,#mec_reg_form_fields button:hover{border-color:#008aff;box-shadow:0 0 7px rgba(0,0,0,.1)}#mec_reg_form_field_types button:before,#mec_reg_form_fields button:before{position:absolute;left:12px;color:#008aff;content:"\e095";font-family:simple-line-icons;font-size:13px;display:inline-block}#mec_reg_form_field_types button.red:hover,#mec_reg_form_fields button.red:hover{border-color:red;box-shadow:0 0 7px rgba(0,0,0,.1)}#mec_reg_form_field_types button.red:before,#mec_reg_form_fields button.red:before{position:absolute;left:12px;color:red;content:"\e095";font-family:simple-line-icons;font-size:13px;display:inline-block}@media (max-width:768px){#mec_reg_form_fields input[type=number],#mec_reg_form_fields input[type=text],#mec_reg_form_fields select,#mec_reg_form_fields textarea{min-width:80px;width:100%}}.mec-form-row{margin:0 auto 16px}.mec-options-fields{padding-top:25px;overflow:hidden;animation:fadeEffect .31s}#mec_booking_form .mec-options-fields,#mec_modules_form .mec-options-fields,#mec_notifications_form .mec-options-fields,#mec_settings_form .mec-options-fields,#mec_single_form .mec-options-fields{display:none}.mec-options-fields.active{display:block!important}@keyframes fadeEffect{from{opacity:0;margin-left:12px}to{opacity:1;margin-left:0}}.mec-form-row:after,.mec-form-row:before{content:" ";display:table}.mec-form-row:after{clear:both}.mec-form-row input[type=number],.mec-form-row input[type=text],.mec-form-row select,.mec-form-row textarea{height:38px;box-sizing:border-box;margin-bottom:8px;padding:0 6px;box-shadow:none;border-radius:2px;box-shadow:inset 0 1px 5px rgba(0,0,0,.05)}.mec-form-row input[type=radio]{margin:5px 0}.mec-form-row select{margin-top:1px}.mec-book-status-form select{display:block;width:99%;margin-top:10px;margin-bottom:10px}.mec-form-row label{margin:10px 0}.mec-form-row input[type=checkbox]{background-color:#fafafa;border:1px solid #cacece;box-shadow:0 1px 2px rgba(0,0,0,.05),inset 0 -15px 10px -12px rgba(0,0,0,.05);padding:9px;border-radius:3px;min-width:20px;min-height:20px;display:inline-block}.mec-form-row input[type=checkbox]:checked{box-shadow:0 3px 11px -4px #008aff;border-color:#008aff;background:#fff}.mec-form-row input[type=checkbox]:checked:before{color:#008aff;width:20px;font:400 24px/1 dashicons}.mec-form-row .mec-col-4 input[type=text],.mec-form-row .mec-col-4 select,.mec-form-row .mec-col-4 textarea{width:75%}.mec-form-row .description{display:inline-block;border-left:1px dashed #ccc;margin-left:12px;line-height:32px;padding-left:12px;margin-top:5px;color:#555}.mec-form-row .time-dv{font-size:14px;font-weight:700}.mec-meta-box-fields{margin:30px 10px}.mec-meta-box-fields>.mec-meta-box-fields{margin-left:0}.mec-meta-box-fields .mec-title{margin:5px 0}.mec-meta-box-fields h4.mec-title{margin:40px 0 16px}.mec-meta-box-fields .mec-dashicons{font-size:20px;line-height:22px;color:#008aff}.mec-form-row .mec-box,.mec-meta-box-fields .mec-box{background:#f7f7f7;padding:10px;margin:10px 0;border-radius:2px;border:1px solid #e6e6e6}.mec-form-row .mec-box{max-width:960px}.mec-form-row .mec-box .button,.mec-meta-box-fields .mec-box .button{float:right}#mec_gateways_form .mec-form-row:first-child,#mec_notifications_form_container .mec-form-row:nth-child(2){overflow:hidden}#mec_gateways_form .mec-tooltip{float:right}.mec-container{background:#fff;padding:15px}.nav-tab-active{background:#fff;border-bottom:1px solid #fff}#mec_social_networks .mec-form-row{margin-bottom:0}#mec_gateways_form h4,.mec-meta-box-fields h4,.mec-options-fields h4,h4.mec-form-subtitle{text-transform:capitalize;border-bottom:1px solid #e5e5e5;padding-bottom:6px;margin:40px 0 16px;font-size:15px;font-weight:600}#mec_gateways_form h4{margin-bottom:0}#mec_styles_form #mec_styles_CSS{height:200px;margin-bottom:5px;font-family:Consolas,Monaco,monospace;font-size:13px;width:97%;background:#f9f9f9;outline:0}#mec_calendar_filter .description,#mec_styles_form .description{max-width:500px;display:block;margin:0 0 5px 0;padding:0;border:none}.mec-sed-methods li{display:inline-block;padding:8px 12px;border:1px solid #ddd;margin:0 5px 5px 0;cursor:pointer;border-radius:3px;box-shadow:0 2px 15px -2px rgba(0,0,0,.1)}.mec-sed-methods li:hover{border-color:#008aff}.mec-sed-methods li.active{border-color:#008aff;background-color:#fff;color:#008aff;font-weight:600;cursor:default;box-shadow:0 0 4px rgba(1,138,255,.3) inset}.mec-switcher input+label{display:block;position:relative;cursor:pointer;outline:0;padding:2px;width:38px;height:22px;background-color:#ddd;border-radius:60px}.mec-switcher input:checked+label{background-color:#008aff;box-shadow:0 3px 22px -6px #008aff}.mec-switcher input:checked+label:after{margin-left:16px}#mec_gateways_form input[type=text],#mec_gateways_form select,#mec_gateways_form textarea{width:calc(100% - 30px)}#mec_gateways_form textarea{min-height:65px}#mec_gateways_form li .mec-gateway-options-form,#payment_gateways_option li .mec-gateway-options-form{padding:15px 20px;background-color:#f7f7f7;border-left:6px solid #e3e3e3;margin-bottom:20px}#mec_notifications_form label{display:inline-block;min-width:160px}#mec_notifications_form input[type=text],#mec_notifications_form select{min-width:300px}@media (max-width:536px){#mec_notifications_form input[type=text],#mec_notifications_form select{min-width:100%}}#mec_notifications_form .wp-editor-container{margin-bottom:45px}#mec_notifications_form ul li:last-child .wp-editor-container{margin-bottom:0}#mec_messages_form_container ul li label{display:block;font-weight:700}#mec_messages_form_container ul li input{display:block;width:100%}.mec-message-categories li.mec-acc-label{font-size:15px;font-weight:600;padding:25px 30px;cursor:pointer;background-color:#fff;border:none;border-bottom:1px solid #e6e6e6;margin:0;letter-spacing:.5px;position:relative}.mec-message-categories ul{margin:15px 5px}.webnus-icons-list li{width:40px;display:inline-block;list-style:none;padding:0}.webnus-icons-list input{visibility:hidden;margin:0;padding:0;width:1px;height:1px;-moz-opacity:0;-khtml-opacity:0;opacity:0;cursor:pointer}.webnus-icons-list li label{color:#777;display:inline-block!important;float:none!important;width:33px!important;text-align:center;font-size:23px!important;font-weight:400!important;padding:5px 0!important;border:1px solid #eee!important}.mec-webnus-icon{float:left;margin-right:10px}.mec-webnus-icon i{font-size:24px;color:#222}.mec-accordion ul{display:none}.mec-switcher input{position:absolute;margin-left:-9999px;visibility:hidden}.mec-switcher input+label{display:block;position:relative;cursor:pointer;outline:0;padding:2px;width:50px;height:22px;background-color:#ddd;border-radius:60px}.mec-switcher input+label:after,.mec-switcher input+label:before{display:block;position:absolute;top:1px;left:1px;bottom:1px;content:""}.mec-switcher input+label:before{right:1px;background-color:#f1f1f1;border-radius:60px;transition:background .4s}.mec-switcher input+label:after{width:24px;background-color:#fff;border-radius:100%;box-shadow:0 2px 3px rgba(0,0,0,.1);transition:margin .4s}.wns-be-group-tab .mec-switcher input[value="1"]+label,.wns-be-group-tab .mec-switcher input[value="1"]+label:before{background-color:#008aff;background:linear-gradient(95deg,#4dacfd 0,#0d90ff 50%,#008aff 100%);box-shadow:0 3px 11px -7px #008aff}.wns-be-group-tab .mec-switcher input[value="1"]+label:after{margin-left:28px}.mec-switcher input:checked+label{box-shadow:0 3px 11px -7px #008aff}.mec-switcher input:checked+label:before{background-color:#008aff;background:linear-gradient(95deg,#4dacfd 0,#0d90ff 50%,#008aff 100%)}.mec-switcher input:checked+label:after{margin-left:28px}.mec-switcher label{display:block}.mec-sed-methods li{display:inline-block;padding:10px;border:1px solid #ddd;margin:0 5px 5px 0;cursor:pointer}#wpwrap .mec-button-primary{border-bottom:none;letter-spacing:.5px;line-height:18px;height:46px;transition:all .5s ease;color:#fff;padding:12px 25px;display:block;text-align:center;font-size:14px;background:0 0;background-color:#008aff;text-shadow:none;border:0;box-shadow:none;display:inline-block;margin:25px 0 12px;min-width:146px}#wpwrap .mec-button-primary:hover{background-color:#41c9de}#wpwrap .mec-button-primary.loading{background-color:#73c02a}#wpwrap .mec-button-primary:before{content:"\f00c";font-family:fontawesome;margin-right:4px;font-size:16px;display:none}#wpwrap .mec-button-primary.loading:before{display:inline-block}.mec-image-select-wrap{clear:both;overflow:hidden;padding:10px 0;margin:0}.mec-image-select-wrap li{float:left;display:block;margin-right:15px;margin-bottom:15px}.mec-image-select-wrap li input{display:none}.mec-image-select-wrap li span{width:35px;height:35px;display:block;margin:3px;border-radius:2px;border:3px solid transparent;transition:all .2s ease}.mec-image-select-wrap li input:checked+span{border-color:#fff;box-shadow:0 0 14px rgba(0,0,0,.25)}.mec-image-select-wrap li input:checked+span:after{content:"\f00c";font-family:fontawesome;font-size:20px;display:inline-block;color:#fff;padding:8px;max-width:100%;max-height:100%}.mec-image-select-wrap .mec-colorskin-1{background-color:#008aff}.mec-image-select-wrap .mec-colorskin-2{background-color:#0093d0}.mec-image-select-wrap .mec-colorskin-3{background-color:#e53f51}.mec-image-select-wrap .mec-colorskin-4{background-color:#f1c40f}.mec-image-select-wrap .mec-colorskin-5{background-color:#e64883}.mec-image-select-wrap .mec-colorskin-6{background-color:#45ab48}.mec-image-select-wrap .mec-colorskin-7{background-color:#9661ab}.mec-image-select-wrap .mec-colorskin-8{background-color:#0aad80}.mec-image-select-wrap .mec-colorskin-9{background-color:#0ab1f0}.mec-image-select-wrap .mec-colorskin-10{background-color:#ff5a00}.mec-image-select-wrap .mec-colorskin-11{background-color:#c3512f}.mec-image-select-wrap .mec-colorskin-12{background-color:#55606e}.mec-image-select-wrap .mec-colorskin-13{background-color:#fe8178}.mec-image-select-wrap .mec-colorskin-14{background-color:#7c6853}.mec-image-select-wrap .mec-colorskin-15{background-color:#bed431}.mec-image-select-wrap .mec-colorskin-16{background-color:#2d5c88}.mec-image-select-wrap .mec-colorskin-17{background-color:#77da55}.mec-image-select-wrap .mec-colorskin-18{background-color:#2997ab}.mec-image-select-wrap .mec-colorskin-19{background-color:#734854}.mec-image-select-wrap .mec-colorskin-20{background-color:#a81010}.mec-image-select-wrap .mec-colorskin-21{background-color:#4ccfad}.mec-image-select-wrap .mec-colorskin-22{background-color:#3a609f}@media screen and (max-width:782px){.mec-form-row .description{max-width:500px;display:block;margin:0 0 5px 0;padding:0;border:none}.mec-col-1,.mec-col-10,.mec-col-11,.mec-col-12,.mec-col-2,.mec-col-3,.mec-col-4,.mec-col-5,.mec-col-6,.mec-col-7,.mec-col-8,.mec-col-9{margin-bottom:5px;display:block}.mec-form-row .mec-box .button,.mec-meta-box-fields .mec-box .button{float:left}.mec-form-row .time-dv{padding:0 4px}.mec-form-row .mec-col-4 input[type=text],.mec-form-row .mec-col-4 select{width:auto;min-width:192px}.mec-tooltip .dashicons-before:before{font-size:32px}}#frmb-0-clear-all,#frmb-0-save,#frmb-0-view-data{display:none}#mec_sn_googlecal{margin-bottom:0}#mec_fee_row1 .button{margin-right:10px}h4.mec-form-subtitle{font-size:15px;margin-top:0}h5.mec-form-second-title{font-size:15px;margin-top:0}#webnus-dashboard *{box-sizing:border-box}#webnus-dashboard.about-wrap{max-width:1240px;margin:25px auto 20px}#webnus-dashboard .change-log{word-wrap:break-word}#webnus-dashboard .welcome-head img{border:none}.w-welcome{position:relative;margin-top:30px;margin-bottom:10px}.w-box{position:relative;background:#fff;padding:5px 25px;margin-top:30px}.w-theme-version{box-shadow:0 3px 30px -4px #40d8f0;text-shadow:none;background:#40d8f0;background:linear-gradient(95deg,#40d8f0 0,#2dd1ea 50%,#13cbe8 100%);text-align:center;display:block;padding:10px 0;color:#fff;font-weight:600;margin-top:10px;border-radius:2px}.w-box{padding:0;min-height:310px;box-shadow:0 1px 16px rgba(0,0,0,.034);border-radius:2px}.w-box-head{font-weight:600;padding:20px 72px;position:relative;border-bottom:2px solid #008aff;font-size:20px}.w-box-head span{position:absolute;left:0;padding:0 25px;line-height:58px;background:#008aff;height:100%;top:0;color:#fff}.w-box-child,.w-box-content{padding:18px;line-height:24px;font-size:14px}.mec-count-child{width:50%;margin:0 auto}#webnus-dashboard .w-button a{color:#fff!important;border-radius:0;padding:10px 24px;font-size:12px;letter-spacing:1px;font-weight:600;background:#008aff;margin:10px 0;display:inline-block;text-transform:uppercase}#webnus-dashboard .w-box .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}.w-system-info{margin-bottom:7px}.w-system-info:first-child{margin-top:20px}.w-system-info>span{display:inline-block;min-width:145px;line-height:20px;font-size:13px}#webnus-dashboard .w-current{min-width:110px}#webnus-dashboard .w-min{min-width:65px}.w-icon{color:#fff;padding:3px;border-radius:4px;margin-right:10px;vertical-align:middle}.w-icon-green{background:#27ae60}.w-icon-red{background:#e74c3c}.extra .w-box-head{padding:20px;border-bottom:1px solid #ededed}.doc .w-box-head{color:#4cbf67}#webnus-dashboard .doc .w-button a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);margin:35px 0 17px;box-shadow:0 5px 10px -5px #4cbf67;background-color:#fff}#webnus-dashboard .support .w-button a{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);margin:13px 0 18px;box-shadow:0 5px 10px -5px #ff876c}.doc .w-box-content{background:url(../img/document.png) no-repeat right center}.doc .w-box-content p,.w-box.support .w-box-content p{width:54%;color:#666;margin-top:10px;max-width:380px}.w-box-child p{color:#666;margin-top:10px}.w-box.support{background:#fff url(../img/support.png) no-repeat top right}.w-box.support .w-box-head{width:50%;color:#ff876c}.w-box-content pre{text-align:left;background:#f5f5f5;font-size:13px;padding:20px 25px;height:480px;overflow-y:scroll}.w-box.change-log .w-box-head{color:#01c6d9}#webnus-dashboard .button:not(.mec-intro-section-link-tag){border:0;background:0 0;box-shadow:none;color:#e74c3c;font-weight:700}.w-box .state{position:absolute;top:0;left:-100vw}#webnus-dashboard .button:hover{color:#222}.w-box .state:checked~.content{-webkit-transform:none;-ms-transform:none;transform:none}.w-box .state:checked~.backdrop{bottom:0;opacity:1;z-index:1}.w-box .lightbox{position:fixed;top:0;right:0;left:0;height:0;padding:0 20px}.w-box .lightbox .content{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;overflow:hidden;position:relative;z-index:2;max-width:500px;max-height:95vh;margin:20px auto;padding:20px;background:#fff;-webkit-transform:translateY(-200%);-ms-transform:translateY(-200%);transform:translateY(-200%);-webkit-transition:.3s -webkit-transform ease-in-out;transition:.3s transform ease-in-out;border:1px solid rgba(0,0,0,.1)}.w-box .lightbox .main{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1}.w-box .lightbox .backdrop{position:fixed;z-index:-1;top:0;right:0;bottom:100%;left:0;opacity:0;background:rgba(0,0,0,.3);-webkit-transition:.3s opacity ease-in-out;transition:.3s opacity ease-in-out}.content .main p{color:#bf3737}p.mec_dash_count{font-size:60px;font-weight:600;margin:0;color:#01c6d9}.w-col-sm-3 .w-box.doc{text-align:center;min-height:auto}.w-Knowledgebase{color:#8e5cea}.mec-view-all-articles a{margin:30px 0 17px;display:inline-block;color:#fff!important;border-radius:0;padding:10px 24px;font-size:12px;letter-spacing:1px;font-weight:600;background:#8e5cea;display:inline-block;text-transform:uppercase;transition:all .24s ease;-webkit-transition:all .24s ease}.mec-view-all-articles a:hover{background-color:#222}.w-box.upcoming-events .mec-event-article{margin-bottom:22px;border-bottom:1px solid #eee;padding-bottom:16px}.w-box.upcoming-events .mec-event-article .mec-event-date{font-size:14px;color:#666}.w-box.upcoming-events .mec-event-article .mec-event-date span{font-weight:600;margin-right:4px}.w-box.upcoming-events .mec-event-article h4.mec-event-title{margin:0;font-size:15px}.w-box.upcoming-events .mec-event-article .mec-event-detail{font-size:13px;color:#999}.w-box.upcoming-events .mec-event-article .mec-detail-button{font-size:10px;font-weight:600;letter-spacing:1px;padding:4px 12px;background:#f2f2f2;float:right}.w-box.total-bookings ul li{display:inline-block;padding:4px 12px;background:#f1f1f1;margin-right:5px;border-radius:3px}.w-box.total-bookings ul li.selected{background:#fff;border:1px solid #e9e9e9}.info-msg,.mec-error,.mec-success,.warning-msg{margin:10px 0;padding:10px;border-radius:3px 3px 3px 3px}.info-msg{color:#059;background-color:#bef}.info-msg-link{background:#fff;padding:4px 12px 6px;border-radius:3px;line-height:1;font-weight:600;color:#008aff}.mec-success{color:#270;background-color:#dff2bf}.warning-msg{color:#9f6000;background-color:#feefb3}.mec-error{color:#d8000c;background-color:#ffbaba}.mec-certain-day>div,.mec-select-deselect-actions li,.mec-xi-facebook-import-events .mec-select-deselect-actions li,.mec-xi-google-import-events .mec-select-deselect-actions li{display:inline-block;position:relative;outline:0;background:#fff;border:1px solid #e2e2e2;border-radius:50px;padding:11px 21px 11px 21px;line-height:1;font-size:11px;font-weight:600;color:#444;letter-spacing:2px;height:auto;cursor:pointer;margin-top:5px;text-transform:uppercase;box-shadow:0 0 3px rgba(0,0,0,.03)}.mec-certain-day>div:hover,.mec-select-deselect-actions li:hover,.mec-xi-facebook-import-events .mec-select-deselect-actions li:hover,.mec-xi-google-import-events .mec-select-deselect-actions li:hover{border-color:#008aff;box-shadow:0 0 7px rgba(0,0,0,.1)}.mec-not-in-days-remove{border:1px solid #ff4b64;border-radius:20px;padding:0 0 0 1px;color:#ff4b64;width:11px;height:12px;text-align:center;line-height:12px;display:inline-block;margin-right:-5px;margin-left:6px}div#mec_not_in_days_row2:hover{border-color:#e2e2e2!important;box-shadow:none!important}.mec-xi-facebook-import-events .mec-success,.mec-xi-google-import-events .mec-success{width:460px}.mec-xi-facebook-import-events .mec-select-deselect-actions li,.mec-xi-google-import-events .mec-select-deselect-actions li{display:inline-block;cursor:pointer}.lity-content>div{overflow:auto}.mce-mec-mce-items{text-transform:capitalize!important}#mec_setting_contextual li{list-style:none!important;font-size:12px;margin:0;padding:6px}.mec-bbf-field-container{margin-bottom:10px}.mec-bbf-field-container label{display:block}.kc-components ul.kc-components-list li .cpicon.mec-kingcomposer-icon,.kc-element-icon .cpicon.mec-kingcomposer-icon{background:url(../img/ico-mec-vc.png) no-repeat center center;background-size:auto;background-repeat:no-repeat}.mec-archive-skinsm.mec-category-skins,.mec-carousel-archive-link,.mec-carousel-head-text,.mec-toggle-month-divider{display:none}span.mec-archive-skins,span.mec-category-skins{margin-left:10px;vertical-align:text-bottom}.mec-archive-skins input,.mec-archive-skins select,.mec-category-skins input,.mec-category-skins select{min-width:225px;vertical-align:baseline}#mec_settings_default_skin_archive,#mec_settings_default_skin_category{min-width:225px}.w-welcome p span{background:#fff;padding:4px 10px}#mec_masonry_skin_options_container .mec-form-row .description{margin-left:0;padding-left:0;border:none;margin-top:-4px}@media (max-width:1280px){span.mec-archive-skins,span.mec-category-skins{margin-left:0}}/*!
2
  * Bootstrap v3.3.7 (http://getbootstrap.com)
3
  * Copyright 2011-2016 Twitter, Inc.
4
  * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
5
+ */#webnus-dashboard button,#webnus-dashboard input,#webnus-dashboard select,#webnus-dashboard textarea{font-family:inherit;font-size:inherit;line-height:inherit}#webnus-dashboard a{color:#337ab7;text-decoration:none}#webnus-dashboard a:focus,#webnus-dashboard a:hover{color:#23527c}#webnus-dashboard a:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}#webnus-dashboard figure{margin:0}#webnus-dashboard img{vertical-align:middle}.w-img-responsive{display:block;max-width:100%;height:auto}.w-img-rounded{border-radius:6px}.w-img-thumbnail{padding:4px;line-height:1w-42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all 0w-2s ease-in-out;-o-transition:all 0w-2s ease-in-out;transition:all 0w-2s ease-in-out;display:inline-block;max-width:100%;height:auto}.w-img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.w-sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.w-sr-only-focusable:active,.w-sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.w-container,.w-container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}[role=button]{cursor:pointer}@media (min-width:768px){.w-container{width:750px}}@media (min-width:992px){.w-container{width:970px}}@media (min-width:1200px){.w-container{width:1170px}}.w-row{margin-left:-15px;margin-right:-15px}.w-col-lg-1,.w-col-lg-10,.w-col-lg-11,.w-col-lg-12,.w-col-lg-2,.w-col-lg-3,.w-col-lg-4,.w-col-lg-5,.w-col-lg-6,.w-col-lg-7,.w-col-lg-8,.w-col-lg-9,.w-col-md-1,.w-col-md-10,.w-col-md-11,.w-col-md-12,.w-col-md-2,.w-col-md-3,.w-col-md-4,.w-col-md-5,.w-col-md-6,.w-col-md-7,.w-col-md-8,.w-col-md-9,.w-col-sm-1,.w-col-sm-10,.w-col-sm-11,.w-col-sm-12,.w-col-sm-2,.w-col-sm-3,.w-col-sm-4,.w-col-sm-5,.w-col-sm-6,.w-col-sm-7,.w-col-sm-8,.w-col-sm-9,.w-col-xs-1,.w-col-xs-10,.w-col-xs-11,.w-col-xs-12,.w-col-xs-2,.w-col-xs-3,.w-col-xs-4,.w-col-xs-5,.w-col-xs-6,.w-col-xs-7,.w-col-xs-8,.w-col-xs-9{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.w-col-xs-1,.w-col-xs-10,.w-col-xs-11,.w-col-xs-12,.w-col-xs-2,.w-col-xs-3,.w-col-xs-4,.w-col-xs-5,.w-col-xs-6,.w-col-xs-7,.w-col-xs-8,.w-col-xs-9{float:left}.w-col-xs-12{width:100%}.w-col-xs-11{width:91.66666667%}.w-col-xs-10{width:83.33333333%}.w-col-xs-9{width:75%}.w-col-xs-8{width:66.66666667%}.w-col-xs-7{width:58.33333333%}.w-col-xs-6{width:50%}.w-col-xs-5{width:41.66666667%}.w-col-xs-4{width:33.33333333%}.w-col-xs-3{width:25%}.w-col-xs-2{width:16.66666667%}.w-col-xs-1{width:8w-33333333%}.w-col-xs-pull-12{right:100%}.w-col-xs-pull-11{right:91.66666667%}.w-col-xs-pull-10{right:83.33333333%}.w-col-xs-pull-9{right:75%}.w-col-xs-pull-8{right:66.66666667%}.w-col-xs-pull-7{right:58.33333333%}.w-col-xs-pull-6{right:50%}.w-col-xs-pull-5{right:41.66666667%}.w-col-xs-pull-4{right:33.33333333%}.w-col-xs-pull-3{right:25%}.w-col-xs-pull-2{right:16.66666667%}.w-col-xs-pull-1{right:8w-33333333%}.w-col-xs-pull-0{right:auto}.w-col-xs-push-12{left:100%}.w-col-xs-push-11{left:91.66666667%}.w-col-xs-push-10{left:83.33333333%}.w-col-xs-push-9{left:75%}.w-col-xs-push-8{left:66.66666667%}.w-col-xs-push-7{left:58.33333333%}.w-col-xs-push-6{left:50%}.w-col-xs-push-5{left:41.66666667%}.w-col-xs-push-4{left:33.33333333%}.w-col-xs-push-3{left:25%}.w-col-xs-push-2{left:16.66666667%}.w-col-xs-push-1{left:8w-33333333%}.w-col-xs-push-0{left:auto}.w-col-xs-offset-12{margin-left:100%}.w-col-xs-offset-11{margin-left:91.66666667%}.w-col-xs-offset-10{margin-left:83.33333333%}.w-col-xs-offset-9{margin-left:75%}.w-col-xs-offset-8{margin-left:66.66666667%}.w-col-xs-offset-7{margin-left:58.33333333%}.w-col-xs-offset-6{margin-left:50%}.w-col-xs-offset-5{margin-left:41.66666667%}.w-col-xs-offset-4{margin-left:33.33333333%}.w-col-xs-offset-3{margin-left:25%}.w-col-xs-offset-2{margin-left:16.66666667%}.w-col-xs-offset-1{margin-left:8w-33333333%}.w-col-xs-offset-0{margin-left:0}@media (min-width:768px){.w-col-sm-1,.w-col-sm-10,.w-col-sm-11,.w-col-sm-12,.w-col-sm-2,.w-col-sm-3,.w-col-sm-4,.w-col-sm-5,.w-col-sm-6,.w-col-sm-7,.w-col-sm-8,.w-col-sm-9{float:left}.w-col-sm-12{width:100%}.w-col-sm-11{width:91.66666667%}.w-col-sm-10{width:83.33333333%}.w-col-sm-9{width:75%}.w-col-sm-8{width:66.66666667%}.w-col-sm-7{width:58.33333333%}.w-col-sm-6{width:50%}.w-col-sm-5{width:41.66666667%}.w-col-sm-4{width:33.33333333%}.w-col-sm-3{width:25%}.w-col-sm-2{width:16.66666667%}.w-col-sm-1{width:8w-33333333%}.w-col-sm-pull-12{right:100%}.w-col-sm-pull-11{right:91.66666667%}.w-col-sm-pull-10{right:83.33333333%}.w-col-sm-pull-9{right:75%}.w-col-sm-pull-8{right:66.66666667%}.w-col-sm-pull-7{right:58.33333333%}.w-col-sm-pull-6{right:50%}.w-col-sm-pull-5{right:41.66666667%}.w-col-sm-pull-4{right:33.33333333%}.w-col-sm-pull-3{right:25%}.w-col-sm-pull-2{right:16.66666667%}.w-col-sm-pull-1{right:8w-33333333%}.w-col-sm-pull-0{right:auto}.w-col-sm-push-12{left:100%}.w-col-sm-push-11{left:91.66666667%}.w-col-sm-push-10{left:83.33333333%}.w-col-sm-push-9{left:75%}.w-col-sm-push-8{left:66.66666667%}.w-col-sm-push-7{left:58.33333333%}.w-col-sm-push-6{left:50%}.w-col-sm-push-5{left:41.66666667%}.w-col-sm-push-4{left:33.33333333%}.w-col-sm-push-3{left:25%}.w-col-sm-push-2{left:16.66666667%}.w-col-sm-push-1{left:8w-33333333%}.w-col-sm-push-0{left:auto}.w-col-sm-offset-12{margin-left:100%}.w-col-sm-offset-11{margin-left:91.66666667%}.w-col-sm-offset-10{margin-left:83.33333333%}.w-col-sm-offset-9{margin-left:75%}.w-col-sm-offset-8{margin-left:66.66666667%}.w-col-sm-offset-7{margin-left:58.33333333%}.w-col-sm-offset-6{margin-left:50%}.w-col-sm-offset-5{margin-left:41.66666667%}.w-col-sm-offset-4{margin-left:33.33333333%}.w-col-sm-offset-3{margin-left:25%}.w-col-sm-offset-2{margin-left:16.66666667%}.w-col-sm-offset-1{margin-left:8w-33333333%}.w-col-sm-offset-0{margin-left:0}}@media (min-width:992px){.w-col-md-1,.w-col-md-10,.w-col-md-11,.w-col-md-12,.w-col-md-2,.w-col-md-3,.w-col-md-4,.w-col-md-5,.w-col-md-6,.w-col-md-7,.w-col-md-8,.w-col-md-9{float:left}.w-col-md-12{width:100%}.w-col-md-11{width:91.66666667%}.w-col-md-10{width:83.33333333%}.w-col-md-9{width:75%}.w-col-md-8{width:66.66666667%}.w-col-md-7{width:58.33333333%}.w-col-md-6{width:50%}.w-col-md-5{width:41.66666667%}.w-col-md-4{width:33.33333333%}.w-col-md-3{width:25%}.w-col-md-2{width:16.66666667%}.w-col-md-1{width:8w-33333333%}.w-col-md-pull-12{right:100%}.w-col-md-pull-11{right:91.66666667%}.w-col-md-pull-10{right:83.33333333%}.w-col-md-pull-9{right:75%}.w-col-md-pull-8{right:66.66666667%}.w-col-md-pull-7{right:58.33333333%}.w-col-md-pull-6{right:50%}.w-col-md-pull-5{right:41.66666667%}.w-col-md-pull-4{right:33.33333333%}.w-col-md-pull-3{right:25%}.w-col-md-pull-2{right:16.66666667%}.w-col-md-pull-1{right:8w-33333333%}.w-col-md-pull-0{right:auto}.w-col-md-push-12{left:100%}.w-col-md-push-11{left:91.66666667%}.w-col-md-push-10{left:83.33333333%}.w-col-md-push-9{left:75%}.w-col-md-push-8{left:66.66666667%}.w-col-md-push-7{left:58.33333333%}.w-col-md-push-6{left:50%}.w-col-md-push-5{left:41.66666667%}.w-col-md-push-4{left:33.33333333%}.w-col-md-push-3{left:25%}.w-col-md-push-2{left:16.66666667%}.w-col-md-push-1{left:8w-33333333%}.w-col-md-push-0{left:auto}.w-col-md-offset-12{margin-left:100%}.w-col-md-offset-11{margin-left:91.66666667%}.w-col-md-offset-10{margin-left:83.33333333%}.w-col-md-offset-9{margin-left:75%}.w-col-md-offset-8{margin-left:66.66666667%}.w-col-md-offset-7{margin-left:58.33333333%}.w-col-md-offset-6{margin-left:50%}.w-col-md-offset-5{margin-left:41.66666667%}.w-col-md-offset-4{margin-left:33.33333333%}.w-col-md-offset-3{margin-left:25%}.w-col-md-offset-2{margin-left:16.66666667%}.w-col-md-offset-1{margin-left:8w-33333333%}.w-col-md-offset-0{margin-left:0}}@media (min-width:1200px){.w-col-lg-1,.w-col-lg-10,.w-col-lg-11,.w-col-lg-12,.w-col-lg-2,.w-col-lg-3,.w-col-lg-4,.w-col-lg-5,.w-col-lg-6,.w-col-lg-7,.w-col-lg-8,.w-col-lg-9{float:left}.w-col-lg-12{width:100%}.w-col-lg-11{width:91.66666667%}.w-col-lg-10{width:83.33333333%}.w-col-lg-9{width:75%}.w-col-lg-8{width:66.66666667%}.w-col-lg-7{width:58.33333333%}.w-col-lg-6{width:50%}.w-col-lg-5{width:41.66666667%}.w-col-lg-4{width:33.33333333%}.w-col-lg-3{width:25%}.w-col-lg-2{width:16.66666667%}.w-col-lg-1{width:8w-33333333%}.w-col-lg-pull-12{right:100%}.w-col-lg-pull-11{right:91.66666667%}.w-col-lg-pull-10{right:83.33333333%}.w-col-lg-pull-9{right:75%}.w-col-lg-pull-8{right:66.66666667%}.w-col-lg-pull-7{right:58.33333333%}.w-col-lg-pull-6{right:50%}.w-col-lg-pull-5{right:41.66666667%}.w-col-lg-pull-4{right:33.33333333%}.w-col-lg-pull-3{right:25%}.w-col-lg-pull-2{right:16.66666667%}.w-col-lg-pull-1{right:8w-33333333%}.w-col-lg-pull-0{right:auto}.w-col-lg-push-12{left:100%}.w-col-lg-push-11{left:91.66666667%}.w-col-lg-push-10{left:83.33333333%}.w-col-lg-push-9{left:75%}.w-col-lg-push-8{left:66.66666667%}.w-col-lg-push-7{left:58.33333333%}.w-col-lg-push-6{left:50%}.w-col-lg-push-5{left:41.66666667%}.w-col-lg-push-4{left:33.33333333%}.w-col-lg-push-3{left:25%}.w-col-lg-push-2{left:16.66666667%}.w-col-lg-push-1{left:8w-33333333%}.w-col-lg-push-0{left:auto}.w-col-lg-offset-12{margin-left:100%}.w-col-lg-offset-11{margin-left:91.66666667%}.w-col-lg-offset-10{margin-left:83.33333333%}.w-col-lg-offset-9{margin-left:75%}.w-col-lg-offset-8{margin-left:66.66666667%}.w-col-lg-offset-7{margin-left:58.33333333%}.w-col-lg-offset-6{margin-left:50%}.w-col-lg-offset-5{margin-left:41.66666667%}.w-col-lg-offset-4{margin-left:33.33333333%}.w-col-lg-offset-3{margin-left:25%}.w-col-lg-offset-2{margin-left:16.66666667%}.w-col-lg-offset-1{margin-left:8w-33333333%}.w-col-lg-offset-0{margin-left:0}}.w-clearfix:after,.w-clearfix:before,.w-container-fluid:after,.w-container-fluid:before,.w-container:after,.w-container:before,.w-row:after,.w-row:before{content:" ";display:table}.w-clearfix:after,.w-container-fluid:after,.w-container:after,.w-row:after{clear:both}.w-center-block{display:block;margin-left:auto;margin-right:auto}.w-pull-right{float:right!important}.w-pull-left{float:left!important}.w-hide{display:none!important}.w-show{display:block!important}.w-invisible{visibility:hidden}.w-text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.w-hidden{display:none!important}.w-affix{position:fixed}.mec-image-popup-wrap{display:none}#wns-be-infobar.sticky{position:fixed;top:32px;background:#fff;z-index:9999;width:82%}.wns-be-main .wns-saved-settings.sticky{position:fixed;width:62.5%;top:111px;z-index:999999999999999999}.mec-export-settings,.mec-import-settings{font-weight:700;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:8px 32px;height:36px;letter-spacing:.2px;line-height:36px;font-size:13px;color:#fff;text-decoration:none;display:inline-block}.mec-export-settings:hover,.mec-import-settings:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5);color:#fff}textarea.mec-import-settings-content{display:block;width:100%;min-height:120px;margin-bottom:25px;padding:10px 15px}.mec-import-options-notification{display:inline-block}.mec-import-options-notification .mec-message-import-error,.mec-import-options-notification .mec-message-import-success{display:inline-block;padding:15px 12px;margin-left:12px;opacity:0;visibility:hidden;font-weight:700}.mec-import-options-notification .mec-message-import-success{opacity:1;visibility:visible;border:2px solid green}.mec-import-options-notification .mec-message-import-error{opacity:1;visibility:visible;border:2px solid #e62117}.mec-export-settings:focus,.mec-import-settings:focus{color:#fff}.mec-import-settings-wrap{position:relative}.mec-loarder-wrap{position:absolute;top:0;bottom:0;left:0;right:0;background:rgba(202,202,202,.7);z-index:9999}.mec-loarder-wrap.mec-settings-loader{top:34px}.mec-loarder{position:absolute;width:64px;height:64px;top:calc(50% - 32px);left:calc(50% - 36px)}.mec-loarder div{display:inline-block;position:absolute;left:6px;width:4px;background:#fff;animation:mec-loarder 1.2s cubic-bezier(0,.5,.5,1) infinite}.mec-loarder div:nth-child(1){left:27px;animation-delay:-.24s;background:#0075ff}.mec-loarder div:nth-child(2){left:36px;animation-delay:-.12s;background:#028bff}.mec-loarder div:nth-child(3){left:45px;animation-delay:0;background:#32a0ff}@keyframes mec-loarder{0%{top:6px;height:51px}100%,50%{top:19px;height:26px}}.w-box.support-page.searchbox{background:#008aff;background:linear-gradient(180deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff;min-height:260px;text-align:center;border-radius:2px}#webnus-dashboard .search-form input{background:rgba(255,255,255,.2);border:none;width:50%;outline:0;color:rgba(255,255,255,.7);font-size:18px;border-radius:4px 0 0 4px;box-shadow:0 1px 2px 0 rgba(0,0,0,.03);-webkit-transition:background .4s,box-shadow .2s;transition:background .4s,box-shadow .2s;padding:20px 32px;margin:0}#webnus-dashboard .search-form button{background:rgba(255,255,255,.2);border:none;padding:20px 32px;margin-left:-2px;color:#fff;border-radius:0 4px 4px 0;font-size:18px;cursor:pointer;-webkit-transition:background .4s,box-shadow .2s;transition:background .4s,box-shadow .2s}#webnus-dashboard .search-form button:hover{background:#fff;color:#3a3c4c}.w-box.support-page.searchbox p{font-size:30px}.search-form input::-webkit-input-placeholder{color:rgba(255,255,255,.7)}.search-form input::-moz-placeholder{color:rgba(255,255,255,.7)}.search-form input:-ms-input-placeholder{color:rgba(255,255,255,.7)}.search-form input:-moz-placeholder{color:rgba(255,255,255,.7)}#webnus-dashboard .search-form input:active,#webnus-dashboard .search-form input:focus{box-shadow:0 10px 20px rgba(0,0,0,.14);background:#fff;color:#3a3c4c}#webnus-dashboard .search-form input:active::-webkit-input-placeholder,#webnus-dashboard .search-form input:focus::-webkit-input-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active::-moz-placeholder,#webnus-dashboard .search-form input:focus::-moz-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active:-ms-input-placeholder,#webnus-dashboard .search-form input:focus:-ms-input-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active:-moz-placeholder,#webnus-dashboard .search-form input:focus:-moz-placeholder{color:#3a3c4c}#webnus-dashboard .w-box.support-page.mec-ticksy{text-align:center;min-height:260px}#webnus-dashboard .w-box.support-page.mec-ticksy p{font-size:20px;width:70%;margin:0 auto;margin-bottom:40px;margin-top:40px}#webnus-dashboard .w-box.support-page.mec-ticksy a{color:#fff;font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:12px 20px;cursor:pointer;margin-bottom:40px;display:inline-block}#webnus-dashboard .w-box.support-page.mec-ticksy a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5)}.mec-faq-accordion>.mec-faq-accordion-content{display:none}#webnus-dashboard .mec-faq-accordion-trigger a{font-size:16px;padding:12px;background:#f1f1f1;display:block;color:#222;line-height:17px;outline:0}.mec-faq-accordion-trigger{margin-bottom:5px;position:relative}#webnus-dashboard .mec-faq-accordion-trigger a:after{font-family:simple-line-icons;content:"\e095";position:absolute;right:12px;font-weight:700}.mec-faq-accordion-content{padding:5px 14px 25px}#webnus-dashboard .mec-faq-accordion-trigger a.active:after{content:"\e082"}#webnus-dashboard .support-page-links a{background-color:#fff;color:#fff;border-radius:2px;padding:13px 24px;font-size:12px;letter-spacing:1px;font-weight:600;text-transform:uppercase}#webnus-dashboard .support-page-links a:hover,#webnus-dashboard .w-box.support-page.videobox .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}#webnus-dashboard .support-page-links{display:inline-block;margin:12px 4px 16px 0}.support-page-links.link-to-doc a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.support-page-links.link-to-videos a{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);box-shadow:0 5px 10px -5px #ff876c}.support-page-links.link-to-articles a{background:#b092e6;background:linear-gradient(95deg,#b092e6 0,#9b70e8 50%,#8e5cea 100%);box-shadow:0 5px 10px -5px #b092e6}.w-box.support-page.articles-box .w-box-content a{display:block;padding:6px 0}#webnus-dashboard .w-box.support-page.videobox .w-button a{color:#fff;font-size:10px;padding:5px 15px;min-height:10px;font-weight:500;border-radius:22px;box-shadow:0 3px 10px -4px #ff5a35;text-shadow:none;background:#ff5a35;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);border:none;transition:.24s}.w-box.support-page.articles-box,.w-box.support-page.faq-box{min-height:500px}.w-box.support-page.videobox{border-radius:2px;min-height:282px;box-shadow:0 1px 6px rgba(0,0,0,.039)!important}#webnus-dashboard .w-box.support-page.videobox .w-button a i{margin-right:6px}.support-page .w-box-content ul{margin-top:5px;padding-left:5px}.support-page .w-box-content ul li{font-size:13px}.support-page .w-box-content ul li i{font-size:17px;vertical-align:text-bottom;margin-right:7px;color:#999}.w-box.mec-activation{background:#fff url(../img/dp-dsb-support.jpg) no-repeat top right}.w-box.mec-activation .w-box-head{color:#40d8f0;width:75%}.w-box.mec-activation .w-box-content{padding:10px 30px}.w-box.mec-activation input[type=radio]{display:none}.w-box.mec-activation input[type=radio]+label{color:#000;font-size:13px;line-height:14px!important;color:#7b7b7b}.w-box.mec-activation input[type=radio].checked+label{color:#40d8f0}.w-box.mec-activation input[type=radio]+label span{display:inline-block;margin:-2px 6px 0 0;vertical-align:middle;cursor:pointer;height:14px;width:14px;text-align:center;background-color:#fff;border:1px solid #d4d4d4;border-radius:100%;box-shadow:0 2px 16px -2px rgba(0,0,0,.2);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;position:relative}.w-box.mec-activation input[type=radio].checked+label span{background-color:#40d8f0;border-color:#40d8f0;box-shadow:0 2px 14px -3px #40d8f0}.w-box.mec-activation input[type=radio].checked+label span:after{content:'';display:block;position:absolute;top:4px;left:4px;width:4px;height:4px;background:#fff;border-radius:100%}.w-box.mec-activation .LicenseType label{padding-right:20px;font-weight:500}.w-box.mec-activation .LicenseField{display:inline-block;position:relative;margin-top:20px}.w-box.mec-activation input[name=MECPurchaseCode]{box-shadow:inset 0 1px 2px rgba(0,0,0,.07);min-width:220px;background:#f4f4f4;border:none;border-radius:33px;width:500px;min-height:50px;margin:0;padding-left:20px;text-align:left}#webnus-dashboard .w-box.mec-activation input[type=submit]{height:40px;line-height:40px;font-weight:600;border:none;cursor:pointer;padding:0 30px;border-radius:33px;color:#fff;letter-spacing:1px;text-transform:uppercase;font-size:12px;background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67;transition:all .28s ease;position:absolute;right:5px;top:4px;font-size:12px}#webnus-dashboard .w-box.mec-activation input[type=submit]:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5)}#MECActivation .MECPurchaseStatus,.addon-activation-form .MECPurchaseStatus{display:inline-block;width:40px;height:40px;text-align:center;padding-top:9px;color:#fff;font-weight:700;font-size:18px;border-radius:50%;padding-top:8px;position:absolute;right:-51px;top:calc(50% - 20px)}.MECPurchaseStatus:after,.MECPurchaseStatus:before{position:absolute;border-radius:50px;background:#fff;content:'';transform:rotate(45deg)}.MECPurchaseStatus.PurchaseError:before{width:22px;height:4px;right:9px;top:18px;transform:rotate(45deg)}.MECPurchaseStatus.PurchaseError:after{width:22px;height:4px;right:9px;top:18px;transform:rotate(-45deg)}.MECPurchaseStatus.PurchaseSuccess:before{width:13px;height:4px;right:19px;top:21px;transform:rotate(45deg)}.MECPurchaseStatus.PurchaseSuccess:after{width:22px;height:4px;right:5px;top:18px;transform:rotate(-45deg)}#MECActivation .MECPurchaseStatus.PurchaseError,.addon-activation-form .MECPurchaseStatus.PurchaseError{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);box-shadow:0 5px 10px -5px #ff876c}#MECActivation .MECPurchaseStatus.PurchaseSuccess,.addon-activation-form .MECPurchaseStatus.PurchaseSuccess{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.wna-spinner-wrap{position:absolute;background:#000;width:509px;height:64px;top:-8px;border-radius:50px;z-index:999;background-color:#fff;opacity:.9}.wna-spinner{width:40px;height:40px;position:relative;margin:6px auto}.wna-spinner .double-bounce1,.wna-spinner .double-bounce2{width:100%;height:100%;border-radius:50%;background-color:#40d8f0;opacity:.6;position:absolute;top:0;left:0;-webkit-animation:sk-bounce 2s infinite ease-in-out;animation:sk-bounce 2s infinite ease-in-out}.wna-spinner .double-bounce2{-webkit-animation-delay:-1s;animation-delay:-1s}#MECActivation .MECLicenseMessage,.addon-activation-form .MECLicenseMessage{margin-top:24px;color:#f64;max-width:570px}.box-addon-activation-toggle-content,.box-addon-activation-toggle-head{display:none}.addon-activation-form h3{font-size:15px;font-weight:400;margin:34px 0 -7px}.box-addon-activation-toggle-head{line-height:1.5;font-size:16px;margin-top:20px;cursor:pointer}.box-addon-activation-toggle-head i{margin-right:7px;cursor:pointer;font-weight:700}#mec-advanced-wraper div:first-child>ul{display:block;margin:5px 0;padding:5px 0;width:390px;border:1px solid #e1e2e3;border-radius:2px;box-shadow:0 1px 3px rgba(0,0,0,.05)}#mec-advanced-wraper div:first-child>ul span{display:none}#mec-advanced-wraper div:first-child>ul *{display:inline-block;background:#fff;font-size:12px;color:#717273;text-align:center}#mec-advanced-wraper div:first-child>ul>li{width:60px;font-weight:700;margin:0 10px 0 0;padding:4px 0;border-right:1px solid #e1e2e3}#mec-advanced-wraper div:first-child>ul>ul>li{margin:0;padding:2px 10px;cursor:pointer;border-radius:2px;transition:all .18s ease}#mec-advanced-wraper div:first-child>ul>ul>li:hover,.mec-active{background:#008aff!important;color:#fff!important}@-webkit-keyframes sk-bounce{0%,100%{-webkit-transform:scale(0)}50%{-webkit-transform:scale(1)}}@keyframes sk-bounce{0%,100%{transform:scale(0);-webkit-transform:scale(0)}50%{transform:scale(1);-webkit-transform:scale(1)}}.w-col-sm-3 .w-box.addon{min-height:auto;box-shadow:0 3px 16px -5px rgba(0,0,0,.1);border-radius:2px}.w-box-child.mec-addon-box{padding:20px 20px}.mec-addon-box-head{border-bottom:1px solid #e8e8e8;padding-bottom:5px;margin-bottom:14px;position:relative}.mec-addon-box-version{position:relative;background:#eaeaea;border-radius:1px;padding:0 8px;color:#5a5a5a;font-size:11px;letter-spacing:.2px;line-height:21px;display:inline-block;margin:3px 0}.mec-addon-box-title{font-weight:700;font-size:18px;line-height:25px}.mec-addon-box-title a span{color:#444;font-size:15px}.mec-addon-box-content p{color:#777;font-size:13px}.mec-addon-box-mec-version{background:#f3f3f3;padding:10px;font-size:13px}#webnus-dashboard .addons-page-links{display:inline-block;margin:12px 4px 16px 0}#webnus-dashboard .addons-page-links a{background-color:#fff;color:#fff;border-radius:2px;padding:13px 24px;font-size:12px;letter-spacing:1px;font-weight:600;text-transform:uppercase}.addons-page-links.link-to-purchase a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.addons-page-links.link-to-install-addons a{background:#b092e6;background:linear-gradient(95deg,#b092e6 0,#9b70e8 50%,#8e5cea 100%);box-shadow:0 5px 10px -5px #b092e6}#webnus-dashboard .addons-page-links a:hover,#webnus-dashboard .w-box.addons-page.videobox .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}.mec-addon-box-footer{margin-top:25px}#webnus-dashboard .mec-addon-box-footer a{font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:7px 19px;margin-top:10px;display:inline-block;letter-spacing:.2px;color:#fff;width:100%;text-align:center}#webnus-dashboard .mec-addon-box-footer a.mec-addon-box-intro{box-shadow:0 3px 10px -4px #ff5a35;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%)}#webnus-dashboard .mec-addon-box-footer a:hover{background:#222!important;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%)!important;box-shadow:0 5px 23px -7px rgba(0,0,0,.5)!important;cursor:pointer!important}#webnus-dashboard .mec-addon-box-footer a i{margin-right:6px;color:#fff}@media(max-width:1366px){.wns-be-container #wns-be-content{padding:5px 15px 0}.mec-form-row .mec-col-8 label{font-size:10px}#webnus-dashboard .mec-tooltip .box p,.mec-tooltip .box p{font-size:10px}}@media (max-width:780px){.wns-be-container #wns-be-content{padding:10px 0}.wns-be-container .mec-form-row .mec-col-8 label{width:50%;display:block}.wns-be-container .mec-form-row input[type=checkbox]{width:14px;height:14px}.wns-be-container .wns-be-sidebar li .subsection a{padding-left:30px}.wns-be-container .wns-be-sidebar{width:200px}.wns-be-container .wns-be-main{margin-left:200px}.wns-be-container .mec-tooltip .box{min-width:235px!important}.wns-be-container .mec-tooltip .box p{font-size:12px!important}#wns-be-infobar.sticky{position:unset}}@media (max-width:480px){.wns-be-container .wns-be-sidebar{width:100%;position:unset;float:none}.wns-be-container .wns-be-main{margin-left:0;width:100%;position:unset}.wns-be-container{margin-top:50px}.wns-be-container #wns-be-infobar:before{width:100%}.wns-be-container #wns-be-infobar{height:150px}#mec-search-settings{margin-top:80px;width:181px}}.addons-page-error,.addons-page-notice{display:block;margin-top:15px;margin-bottom:0;background:#fff;border-left:4px solid #00a0d2;box-shadow:0 1px 1px 0 rgba(0,0,0,.1);padding:1px 12px}.addons-page-error p,.addons-page-notice p{margin:.5em 0;padding:2px;font-size:13px}.addons-page-error{border-left-color:#dc3232}.mec-addon-box-comingsoon{background:#eaeaea;padding:8px 11px;color:#5a5a5a;font-size:14px;font-weight:500;text-align:center}.mec-addons .w-row .w-col-sm-3:nth-child(4n+1){clear:left}@media (min-width:960px){#webnus-dashboard .mec-addon-box-footer .w-button{text-align:right}}@media (min-width:1401px){.mec-addon-box-title a span{font-size:17px}}.mec-pro-notice{margin-top:24px;line-height:30px}.mec-pro-notice .info-msg{padding:50px 30px;margin-bottom:0}#webnus-dashboard .mec-pro-notice .info-msg{background:#fff;box-shadow:0 1px 16px rgba(0,0,0,.034);text-align:center;color:#000}#webnus-dashboard a.info-msg-link{background:#e66f52;background:linear-gradient(95deg,#ff8162 0,#e66f52 50%,#ff4c20 100%);box-shadow:0 5px 10px -5px #e66f52;border-radius:2px;padding:12px 50px;font-size:16px;line-height:24px;border:none;margin:20px auto 0;color:#fff;transition:all .3s ease;display:inline-block}#webnus-dashboard a.info-msg-link:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}#webnus-dashboard .info-msg p{width:70%;margin:0 auto;line-height:1.8}#webnus-dashboard .info-msg-coupon{font-size:13px;color:#777;max-width:600px;line-height:1.68;margin:25px auto 0}#webnus-dashboard .info-msg-coupon strong{font-weight:700;color:#19ce18}.info-msg .socialfollow{padding-top:20px}.info-msg .socialfollow a{margin:0 2px;display:inline-block}.info-msg .socialfollow a i{background:#96a4b1;color:#fff;padding:6px;border-radius:3px;font-size:18px;box-shadow:0 2px 3px rgba(0,0,0,.1);transition:all .25s}.info-msg .socialfollow a:hover i{background:#008aff}.mec-intro-section .w-box-content{text-align:center}.mec-intro-section .w-box-content.mec-intro-section-welcome{max-width:600px;margin:0 auto}.mec-intro-section .w-box-content.mec-intro-section-welcome h3{font-size:27px}a.mec-intro-section-link-tag.button.button-hero{margin:0 10px 40px}a.mec-intro-section-link-tag.button.button-primary.button-hero{color:#fff!important}a.mec-intro-section-link-tag.button.button-secondary.button-hero{color:#000!important}.mec-intro-section-ifarme iframe{border:1px solid #e7e7e7;border-radius:3px;padding:10px;box-shadow:0 3px 10px -6px rgba(0,0,0,.2)}.w-box-content.mec-intro-section-welcome p{margin-bottom:0}.mec-tooltip a:focus{box-shadow:none}#mec_booking_form .mec-options-fields,#mec_modules_form .mec-options-fields,#mec_settings_form .mec-options-fields,#mec_single_form .mec-options-fields{padding-bottom:150px!important}#mec_taxes_fees_container_toggle{margin-bottom:60px}#mec_taxes_fees_container_toggle{margin-bottom:60px}.wns-be-sidebar li{position:relative}.wns-be-sidebar li .submneu-hover{position:absolute;top:-1px;right:-222px;width:220px;z-index:9;background:#fff;border:1px;border-style:solid;border-color:#dedede;margin:0;overflow:visible;opacity:0;visibility:hidden;transition:all .23s ease;padding-top:8px;padding-bottom:12px}.wns-be-sidebar li:hover{background:#fff}.wns-be-sidebar li:hover .submneu-hover{opacity:1;visibility:visible}.wns-be-sidebar li .submneu-hover a{background:#fff;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 26px}.wns-be-sidebar li .submneu-hover a:hover{background:#f6f6f6;color:#222}.wns-be-sidebar li .submneu-hover:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-15px;top:14px;border-right-color:#c5c5c5;right:0}.wns-be-sidebar li .submneu-hover:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-14px;top:14px}.wns-be-sidebar li a:focus,.wns-be-sidebar li:focus{outline:-webkit-focus-ring-color auto 0;border:0;box-shadow:none}@media (max-width:480px){.wns-be-sidebar li .submneu-hover{width:175px;right:0}.wns-be-sidebar li .submneu-hover a{font-size:11px;padding:5px 5px 5px 20px}}.mec-tooltip:hover:after,.mec-tooltip:hover:before{display:none}.mec-tooltip{display:inline-flex;bottom:7px}.mec-tooltip .box{min-width:300px;max-width:600px;display:inline-block;left:26px;top:50%;transform:translateY(-50%);padding:0;margin-top:8px;background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.3;position:absolute;z-index:9999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s}#webnus-dashboard .mec-tooltip .box p,.mec-tooltip .box p{color:#fff;font-size:14px;line-height:1.3;margin:0}.mec-tooltip:hover .box{visibility:visible;opacity:1}.mec-tooltip:hover .box{padding:20px;border-radius:8px}.mec-tooltip .box h5{color:#fff;font-size:17px;font-weight:600;margin:-30px -20px;padding:15px 0;text-align:center;margin-bottom:10px;background:#3a3f44;border-bottom:1px solid #30353a;border-radius:6px 6px 0 0;z-index:9999}#webnus-dashboard .mec-tooltip .box p a,.mec-tooltip .box p a{color:#40d9f1;margin-top:10px;margin-left:0;font-weight:400;position:relative;text-decoration:none;display:block;width:max-content}.mec-tooltip .box a:hover{color:#f90}.mec-tooltip .box:after{display:block;position:absolute!important;top:100%!important;right:50%!important;margin-top:-6px!important;margin-right:-6px!important;width:12px!important;height:24px!important;overflow:hidden!important;transform:rotate(-90deg)!important}.mec-tooltip .box:before{display:block;content:''!important;position:absolute!important;width:12px;height:12px;left:-10px!important;top:50%!important;transform:translate(50%,-50%) rotate(-45deg)!important;background-color:#535a61!important;box-shadow:0 8px 9px -4px #535a61!important;z-index:0!important}.mec-tooltip .box.top{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-tooltip .box.top:after{top:50%!important;right:100%!important}.mec-tooltip .box.top:before{left:50%!important;top:100%!important}.mec-tooltip .box.bottom{left:50%;top:auto;bottom:0;transform:translate(-50%,100%);margin-bottom:-20px;margin-left:-10px}.mec-tooltip .box.bottom:after{top:0!important;right:50%!important;background-color:#3a3f44!important}.mec-tooltip .box.bottom:before{left:50%!important;top:-7px!important;transform:translateX(-50%);background-color:#3a3f44!important}.mec-tooltip .box.left{left:auto;right:26px;top:50%;transform:translateY(-50%)}.mec-tooltip .box.left:before{right:0!important;left:auto!important;top:50%!important}form#mec_reg_fields_form input[type=radio]:before{content:"";display:inline-block;background:#fff;border-radius:18px;width:14px;height:14px;margin:-1px 0 0 -2px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32)}form#mec_reg_fields_form input[type=radio]:checked:before{border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff;width:4px;height:4px}form#mec_reg_fields_form input[type=radio]{min-height:0;margin-right:6px}form#mec_reg_fields_form label{margin-right:20px}@media(min-width:1200px) and (max-width:1366px){.mec-tooltip .box.left{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-tooltip .box.left:after{top:50%!important;right:100%!important}.mec-tooltip .box.left:before{left:50%!important;top:100%!important}.mec-tooltip .box{min-width:225px}.mec-tooltip .box h5{font-size:15px}.mec-tooltip .box .content{font-size:12px}}@media(max-width:1366px){.wns-be-container .wns-be-group-tab p{margin-top:0}}.mec-addons-notification-box-wrap .w-col-sm-12{padding:0}.mec-addons-notification-box-wrap img{width:auto}.mec-addons-notification-box-image{width:555px;display:inline-block;vertical-align:top}.mec-addons-notification-box-content{width:calc(100% - 559px);display:inline-block}.mec-addons-notification-box-content p{margin-top:1%;line-height:1.5;font-size:16px}.mec-addons-notification-box-content .w-box-content{padding-top:0;padding-bottom:0}.mec-addons-notification-box-content ol{font-size:16px}.mec-addons-notification-box-content a{background:#38d5ed;color:#fff!important;padding:10px 26px;margin-top:5px;display:inline-block;border-radius:3px;text-transform:capitalize;font-size:16px;letter-spacing:.4px;transition:all .1s ease;font-weight:600;text-decoration:none}.mec-addons-notification-box-content a:hover{background:#000}.w-clearfix.w-box.mec-addons-notification-box-wrap span{right:0;left:unset;cursor:pointer;background:#fff;padding:0 16px}.w-clearfix.w-box.mec-addons-notification-box-wrap span i{font-size:28px;vertical-align:sub;color:#f2113e}.wns-be-container .mec-addons-notification-wrap{padding:0;margin:0}.wns-be-container .mec-addons-notification-wrap .w-col-sm-12{padding:0}.wns-be-container .w-box{margin-top:0}.wns-be-container.mec-addons-notification-set-box{margin-right:15px;margin-top:50px;margin-bottom:27px}@media(max-width:1200px){.mec-addons-notification-box-content,.mec-addons-notification-box-image{width:100%;display:block}.mec-addons-notification-box-image{text-align:center}}@media(max-width:768px){.mec-addons-notification-box-image img{width:100%;height:auto}}body.rtl .wns-be-sidebar{width:260px;float:right;position:relative}body.rtl .wns-be-main{margin-left:0;border-left:0;margin-right:260px;border-right:1px solid #dedede}body.rtl .w-box.mec-activation .LicenseField{direction:rtl}body.rtl .w-box.mec-activation input[name=MECPurchaseCode]{text-align:right;padding-right:20px}body.rtl #MECActivation .MECPurchaseStatus,body.rtl .addon-activation-form .MECPurchaseStatus{right:auto;left:-51px}body.rtl #webnus-dashboard .w-box.mec-activation input[type=submit]{right:auto;left:5px}body.rtl .wns-be-sidebar .wns-be-group-menu li a{padding:13px 20px 13px 4px}body.rtl .wns-be-sidebar .wns-be-group-tab-link-a span.wns-be-group-menu-title{padding-left:0;padding-right:24px}body.rtl .wns-be-sidebar .has-sub span.extra-icon{float:left}body.rtl .wns-be-sidebar .wns-be-group-tab-link-a span.extra-icon i{right:auto;left:10px}body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:after,body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:transparent;border-left-color:#fff;right:auto;left:-1px;top:10px}body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{border-right-color:transparent;border-left-color:#c5c5c5;right:auto;left:0}body.rtl .mec-col-1,body.rtl .mec-col-10,body.rtl .mec-col-11,body.rtl .mec-col-12,body.rtl .mec-col-2,body.rtl .mec-col-3,body.rtl .mec-col-4,body.rtl .mec-col-5,body.rtl .mec-col-6,body.rtl .mec-col-7,body.rtl .mec-col-8,body.rtl .mec-col-9{float:right;margin:0 1% 0 0}body.rtl .wns-be-sidebar li .submneu-hover{right:auto;left:-222px}body.rtl .wns-be-sidebar li .submneu-hover:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:auto;right:-1px;top:14px}body.rtl #mec_styles_form #mec_styles_CSS{direction:ltr}body.rtl .w-box.mec-activation{-moz-transform:scaleY(-1);-o-transform:scaleY(-1);-webkit-transform:scaleY(-1);transform:scaleX(-1)}body.rtl .w-box.mec-activation .w-box-content,body.rtl .w-box.mec-activation .w-box-head{-moz-transform:scaleY(-1);-o-transform:scaleY(-1);-webkit-transform:scaleY(-1);transform:scaleX(-1);display:block}body.rtl .w-box.mec-activation .w-box-head{width:100%}body.rtl .wns-be-container #wns-be-infobar:before{left:auto;right:0}body.rtl .wns-be-container .dpr-btn.dpr-save-btn{float:left}body.rtl .wns-be-container .wns-be-group-tab h2:before,body.rtl .wns-be-container .wns-be-group-tab h4:before{left:auto;right:0;margin-right:0;margin-left:5px}body.rtl #mec_gateways_form .mec-tooltip{float:left}.mec-details-addons-container{margin-top:20px}.mec-details-addons-wrap img{float:left;width:19%;margin-right:17px}.mec-details-addons-wrap{clear:both;margin-bottom:80px;display:block;position:relative}.mec-details-addons-wrap a{text-decoration:none}.mec-details-addons-wrap p{float:left;width:340px;margin-top:0;margin-bottom:30px}.mec-details-addons-title{font-weight:700}.mec-details-addons-title a{color:#444}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx{border-radius:10px!important;box-shadow:0 4px 38px rgba(0,0,0,.14)!important}body .crisp-client .crisp-1rjpbb7 .crisp-13qutdl,body .crisp-client .crisp-1rjpbb7 .crisp-13qutdl *,body .crisp-client .crisp-1rjpbb7 .crisp-9dgo7z,body .crisp-client .crisp-1rjpbb7 .crisp-9dgo7z *{font-family:proxima-nova,-apple-system,BlinkMacSystemFont,"Segoe UI",Catamaran,sans-serif!important}body .crisp-client .crisp-1rjpbb7 .crisp-145mbcr,body .crisp-client .crisp-1rjpbb7 .crisp-1jrqqbm:hover{background-color:#fff!important}body .crisp-client .crisp-1rjpbb7 .crisp-14u434g{border-color:#e7e8e9!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-1bkorcf .crisp-1vzg1qq{font-size:20px!important;width:14px!important;height:19px!important;opacity:.85}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-1bkorcf .crisp-1vzg1qq:hover{opacity:.99}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-1sps3eb .crisp-1vd2grm .crisp-12w4w1a{font-size:13px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-1sps3eb .crisp-1vd2grm .crisp-12w4w1a::-webkit-input-placeholder{color:#717273!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=visitor] .crisp-z89v5n .crisp-162m9xf{background-color:#008aff!important;color:#fff!important;box-shadow:none!important;border-radius:5px!important;padding:15px 25px 15px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=visitor] .crisp-z89v5n .crisp-162m9xf .crisp-1o2g4mc{color:#fff!important;font-size:13px!important;letter-spacing:.3px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-z89v5n .crisp-162m9xf{background-color:#f1f2f3!important;border-radius:5px!important;padding:15px 25px 15px!important;box-shadow:none!important;color:#121314!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-type=audio] .crisp-z89v5n .crisp-162m9xf{background-color:#d1d7dc!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=operator] .crisp-z89v5n .crisp-1o2g4mc{color:#121314!important;-webkit-text-fill-color:#121314!important;font-size:13px!important;letter-spacing:.3px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-mkirz6 .crisp-12qaym5 .crisp-39hskb{opacity:.4;margin-right:5px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-mkirz6 .crisp-12qaym5 .crisp-ehr6mw{opacity:.68;font-size:12px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg{background-image:linear-gradient(125deg,#008aff -10%,#0066b1 100%)!important;height:110px!important;padding-top:35px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-1uw6f17,body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-85evuk,body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-nu40j6{font-size:17px!important;line-height:28px!important;padding-top:10px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-kquevr .crisp-x94m06{background-color:#008aff!important;background-image:linear-gradient(125deg,#008aff -10%,#008af0 100%)!important;box-shadow:0 5px 34px -6px #008aff!important}body .crisp-client .crisp-1rjpbb7 .crisp-4oo1n4{background-color:transparent!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx[data-chat-status=ongoing] .crisp-1784wh6 .crisp-1xmtdlg .crisp-172kolj{margin-top:-10px!important}body .crisp-client .crisp-1rjpbb7[data-last-operator-face=false] .crisp-1rf4xdh .crisp-kquevr .crisp-x94m06 .crisp-16qgsyi .crisp-101bp3x[data-is-ongoing=false]{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1OCIgaGVpZ2h0PSI1NSIgdmlld0JveD0iMCAwIDU4IDU1Ij4NCiAgPGcgaWQ9ImNoYXQtc3ZncmVwby1jb21fMV8iIGRhdGEtbmFtZT0iY2hhdC1zdmdyZXBvLWNvbSAoMSkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgLTEuNSkiPg0KICAgIDxwYXRoIGlkPSJQYXRoXzEiIGRhdGEtbmFtZT0iUGF0aCAxIiBkPSJNMjksMS41YzE2LjAxNiwwLDI5LDExLjY0MSwyOSwyNmEyNC4wMSwyNC4wMSwwLDAsMS00LjgsMTQuMzE4Yy40LDQuNzQ1LDEuNTQyLDExLjQyOCw0LjgsMTQuNjgyLDAsMC05Ljk0My0xLjQtMTYuNjc3LTUuNDYybC0uMDIyLjAwOWMtMi43NjQtMS44LTUuNTMyLTMuNjU2LTYuMS00LjEyNmExLDEsMCwwLDAtMS4zMy0uMjc3LDEuMDE3LDEuMDE3LDAsMCwwLS40ODkuODQ4Yy0uMDEuNjIyLjAwNS43ODQsNS41ODUsNC40MjFBMzEuOTE0LDMxLjkxNCwwLDAsMSwyOSw1My41Yy0xNi4wMTYsMC0yOS0xMS42NDEtMjktMjZTMTIuOTg0LDEuNSwyOSwxLjVaIiBmaWxsPSIjZmZmIi8+DQogICAgPGNpcmNsZSBpZD0iRWxsaXBzZV8xIiBkYXRhLW5hbWU9IkVsbGlwc2UgMSIgY3g9IjMiIGN5PSIzIiByPSIzIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMiAyNC41KSIgZmlsbD0iIzAwOGFmZiIvPg0KICAgIDxjaXJjbGUgaWQ9IkVsbGlwc2VfMiIgZGF0YS1uYW1lPSJFbGxpcHNlIDIiIGN4PSIzIiBjeT0iMyIgcj0iMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjYgMjQuNSkiIGZpbGw9IiMwMDhhZmYiLz4NCiAgICA8Y2lyY2xlIGlkPSJFbGxpcHNlXzMiIGRhdGEtbmFtZT0iRWxsaXBzZSAzIiBjeD0iMyIgY3k9IjMiIHI9IjMiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQwIDI0LjUpIiBmaWxsPSIjMDA4YWZmIi8+DQogIDwvZz4NCjwvc3ZnPg0K)!important;height:31px!important;top:16px!important;left:14px!important}body .csh-category-item a h6{text-align:left}.mec-form-row.mec-syn-schedule{background:#f7f7f7;padding:20px;border:1px solid #eee;box-shadow:0 1px 11px rgba(0,0,0,.034);margin-bottom:20px}.mec-form-row.mec-syn-schedule p{padding-left:26px}.mec-form-row.mec-syn-schedule h2{margin-top:0}.mec-form-row.mec-syn-schedule h4{margin:10px 0}li.wns-be-group-menu-li.mec-settings-menu .mec-settings-submenu{position:absolute;top:-1px;right:-222px;width:220px;z-index:9;background:#fff;border:1px;border-style:solid;border-color:#dedede;margin:0;overflow:visible;opacity:0;visibility:hidden;transition:all .23s ease;padding-top:8px;padding-bottom:12px}li.wns-be-group-menu-li.mec-settings-menu:hover>.mec-settings-submenu{visibility:visible;opacity:1}.mec-settings-menu .mec-settings-submenu:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-15px;top:14px;border-right-color:#c5c5c5;right:0}.mec-settings-menu .mec-settings-submenu:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-14px;top:14px}.wns-be-sidebar .mec-settings-menu .mec-settings-submenu a{background:#fff;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 26px}.wn-mec-select{width:32.33333333%!important;clear:unset!important}.wn-mec-select{-webkit-tap-highlight-color:transparent;background-color:#fff;border-radius:3px;border:1px solid #ddd;margin-bottom:8px;position:relative;text-align:left!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;box-shadow:0 3px 13px -5px rgba(0,0,0,.1),inset 0 1px 2px rgba(0,0,0,.07)}.wn-mec-select:hover{border-color:#dbdbdb}.wn-mec-select.open .list{overflow:unset;width:100%;margin:0}.wn-mec-select .list{background-color:#fff;border-radius:2px;box-shadow:0 2px 33px -2px rgba(0,0,0,.2),inset 0 1px 2px rgba(0,0,0,.07);box-sizing:border-box;margin-top:4px;opacity:0;overflow:hidden;padding:0;pointer-events:none;position:absolute;top:100%;left:0;-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0;transform-origin:50% 0;-webkit-transform:scale(.75) translateY(-21px);-ms-transform:scale(.75) translateY(-21px);transform:scale(.75) translateY(-21px);-webkit-transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;z-index:9}.wn-mec-select{-webkit-tap-highlight-color:transparent;background-color:#fff;border-radius:5px;border:solid 1px #e8e8e8;box-sizing:border-box;clear:both;cursor:pointer;display:block;float:left;font-family:inherit;font-size:14px;font-weight:400;height:42px;line-height:40px;outline:0;padding-left:18px;padding-right:30px;position:relative;text-align:left!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap;width:auto}.wn-mec-select:hover{border-color:#dbdbdb}.wn-mec-select:after{border-bottom:2px solid #999;border-right:2px solid #999;content:'';display:block;height:5px;margin-top:-4px;pointer-events:none;position:absolute;right:12px;top:50%;-webkit-transform-origin:66% 66%;-ms-transform-origin:66% 66%;transform-origin:66% 66%;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition:all .15s ease-in-out;transition:all .15s ease-in-out;width:5px}.wn-mec-select.open:after{-webkit-transform:rotate(-135deg);-ms-transform:rotate(-135deg);transform:rotate(-135deg)}.wn-mec-select.open .list{opacity:1;pointer-events:auto;-webkit-transform:scale(1) translateY(0);-ms-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}.wn-mec-select.disabled{border-color:#ededed;color:#999;pointer-events:none}.wn-mec-select.disabled:after{border-color:#ccc}.wn-mec-select.wide{width:100%}.wn-mec-select.wide .list{left:0!important;right:0!important}.wn-mec-select.right{float:right}.wn-mec-select.right .list{left:auto;right:0}.wn-mec-select.small{font-size:12px;height:36px;line-height:34px}.wn-mec-select.small:after{height:4px;width:4px}.wn-mec-select .list{background-color:#fff;border-radius:5px;box-shadow:0 0 0 1px rgba(68,68,68,.11);box-sizing:border-box;margin-top:4px;opacity:0;overflow:hidden;padding:0;pointer-events:none;position:absolute;top:100%;left:0;-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0;transform-origin:50% 0;-webkit-transform:scale(.75) translateY(-21px);-ms-transform:scale(.75) translateY(-21px);transform:scale(.75) translateY(-21px);-webkit-transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;z-index:9}.wn-mec-select .list:hover .option:not(:hover){background-color:transparent!important}.wn-mec-select .option{cursor:pointer;font-weight:400;list-style:none;min-height:40px;outline:0;text-align:left;position:relative;font-size:12px!important;padding:1px 12px!important;margin:0!important;line-height:28px!important;min-height:28px!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.wn-mec-select .option .wn-hover-img-sh img{position:absolute;padding:3px;top:-1px;left:100%;box-shadow:0 4px 42px -5px rgba(0,0,0,.16);visibility:hidden;opacity:0;border:1px solid #e3e3e3;border-radius:2px;z-index:99999999;background:#fff}.wn-mec-select .option:hover .wn-hover-img-sh img{visibility:visible;opacity:1}.wn-mec-select .option.focus,.wn-mec-select .option.selected.focus,.wn-mec-select .option:hover{background-color:#f6f6f6}.wn-mec-select .option.selected{font-weight:700}.wn-mec-select .option.disabled{background-color:transparent;color:#999;cursor:default}.no-csspointerevents .wn-mec-select .list{display:none}.no-csspointerevents .wn-mec-select.open .list{display:block}.mec-custom-nice-select ul.list li.option{width:30%!important;float:left!important;min-height:135px!important;height:135px;margin:1.66%!important;box-sizing:border-box;text-align:center;padding:10px!important;border-radius:3px;border:1px solid #eee;box-shadow:0 1px 3px rgba(0,0,0,.025);background:#fff!important}.mec-custom-nice-select ul.list li.option:hover{box-shadow:0 2px 7px rgba(0,0,0,.06);borde-color:#e0e0e0}.mec-custom-nice-select .list:hover .option:not(:hover),.mec-custom-nice-select ul.list:hover li.option{background:#fff!important}.mec-custom-nice-select ul.list{min-width:600px!important;padding:20px 10px!important;background:#fcfbfd;border:1px solid #e9e9e9;box-shadow:0 1px 4px rgba(0,0,0,.05)}.mec-custom-nice-select ul.list li.option.selected{border:1px solid #40d9f1;box-shadow:0 1px 8px -3px #40d9f1 inset;color:#00cae6;padding:12px 0 0 0!important}.mec-custom-nice-select .wn-img-sh img{margin:4px 0 1px 1px;line-height:1;max-width:68px;max-height:56px;filter:grayscale(1);-webkit-filter:grayscale(1);transition:all .22s ease;-webkit-transition:all .22s ease;-moz-transition:all .22s ease;-ms-transition:all .22s ease;-o-transition:all .22s ease}.wn-mec-select .option.focus .wn-img-sh img,.wn-mec-select .option.selected.focus .wn-img-sh img,.wn-mec-select .option:hover .wn-img-sh img{background-color:#f6f6f6;filter:grayscale(0);-webkit-filter:grayscale(0)}@media(max-width:768px){.wn-mec-select{width:45%!important}.mec-custom-nice-select ul.list{margin-left:-24px!important;min-width:404px!important}.mec-custom-nice-select ul.list li.option{width:46.6%!important}.wn-hover-img-sh{display:none}}@media(max-width:480px){.wn-mec-select{width:100%!important}.mec-custom-nice-select ul.list{min-width:337px!important}}@media(max-width:320px){.mec-custom-nice-select ul.list li.option{width:100%!important}.mec-custom-nice-select ul.list{min-width:298px!important}}.mec-sed-methods li{line-height:28px;padding-left:38px;position:relative}.mec-sed-methods li:before{margin-right:0}.mec-sed-methods li:before{border-radius:18px}.mec-custom-nice-select ul.list li .wn-mec-text:after,.mec-sed-methods li:before{content:"";position:absolute;display:inline-block;background:#fff;border-radius:2px;width:12px;height:12px;margin:-1px 0 0 -1px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32);border-radius:50%}.mec-custom-nice-select ul.list li .wn-mec-text{position:relative;padding-top:0;padding-bottom:28px}.mec-custom-nice-select ul.list li .wn-mec-text:after{left:calc(50% - 7px);top:auto;bottom:1px}.mec-custom-nice-select ul.list li .wn-img-sh{line-height:1}.mec-sed-methods li:before{left:9px;top:calc(50% - 7px)}.mec-custom-nice-select ul.list li.option.selected .wn-mec-text:after,.mec-sed-methods li.active:before{width:4px;height:4px;border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff}.menu-icon-mec-books .wp-menu-image img,.toplevel_page_mec-intro .wp-menu-image img{width:18px!important;padding-top:7px!important}.mec-add-booking-tabs-wrap,.mec-add-event-tabs-wrap,.mec-create-shortcode-tabs-wrap{display:flex;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox}.mec-add-booking-tabs-left,.mec-add-event-tabs-left,.mec-create-shortcode-tabs-left{flex:1}.mec-add-booking-tabs-right,.mec-add-event-tabs-right,.mec-create-shortcode-tabs-right{flex:6}a.mec-add-booking-tabs-link,a.mec-add-event-tabs-link,a.mec-create-shortcode-tabs-link{display:block}.mec-booking-tab-content,.mec-create-shortcode-tab-content,.mec-event-tab-content{display:none;transition:all .3s ease}.mec-booking-tab-content.mec-tab-active,.mec-create-shortcode-tab-content.mec-tab-active,.mec-event-tab-content.mec-tab-active{display:block}.mec-add-booking-tabs-wrap,.mec-add-event-tabs-wrap{background:#fff;margin:-6px -12px -12px}.mec-create-shortcode-tabs-wrap{margin:-30px -22px -42px}.mec-add-booking-tabs-left,.mec-add-event-tabs-left,.mec-create-shortcode-tabs-left{padding:0 0 38px;background:#fff;min-width:210px}.mec-add-booking-tabs-left a,.mec-add-event-tabs-left a,.mec-create-shortcode-tabs-left a{line-height:16px;font-size:13px;font-weight:600;letter-spacing:.3px;color:#6a6f77;text-decoration:none;background:#f7f7f7;padding:13px 20px;border-bottom:1px solid #e3e3e3;outline:0;box-shadow:none;transition:all .2s ease}.mec-add-booking-tabs-left a:hover,.mec-add-event-tabs-left a:hover,.mec-create-shortcode-tabs-left a:hover{color:#008aff;background:#fff}.mec-add-booking-tabs-left a.mec-tab-active,.mec-add-event-tabs-left a.mec-tab-active,.mec-create-shortcode-tabs-left a.mec-tab-active{background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff;margin:0 -6px;border-radius:5px;box-shadow:0 2px 12px -5px #36a2ff;border-bottom-color:transparent;position:relative}.mec-add-booking-tabs-right,.mec-add-event-tabs-right,.mec-create-shortcode-tabs-right{padding:0 30px 40px;border-left:1px solid #e2e2e2}.mec-booking-tab-content.mec-tab-active,.mec-create-shortcode-tab-content.mec-tab-active,.mec-event-tab-content.mec-tab-active{animation:fadeEffect2 .31s}@media (max-width:550px){.mec-add-booking-tabs-left,.mec-add-event-tabs-left,.mec-create-shortcode-tabs-left{min-width:100px}.mec-add-booking-tabs-left a,.mec-add-event-tabs-left a,.mec-create-shortcode-tabs-left a{font-size:11px;padding:12px 8px;line-height:1.2;letter-spacing:0}}@keyframes fadeEffect2{from{opacity:0;transform:translateX(11px)}to{opacity:1;transform:translateX(0)}}.mec-form-row .mec-col-8 label{padding-right:20px}.mec-calendar-metabox .wn-mec-select{border:solid 1px #ddd;border-radius:2px;height:40px;line-height:38px;padding-left:10px;box-shadow:0 3px 10px -2px rgba(0,0,0,.05),inset 0 1px 2px rgba(0,0,0,.02)}.mec-calendar-metabox .wn-mec-select.open .list{border-radius:0 0 2px 2px;box-shadow:0 0 0 1px #ddd,0 2px 6px rgba(0,0,0,.07)}.mec-calendar-metabox .mec-custom-nice-select.open ul.list{border-radius:3px;box-shadow:0 2px 6px rgba(0,0,0,.07);margin-left:0!important;transform:translateX(-50%);left:50%}.mec-custom-nice-select ul.list li.option.selected .wn-mec-text:after{border:6px solid #40d9f1;box-shadow:0 3px 16px -3px #40d9f1}.mec-form-row input[type=checkbox]{background-color:#fff;border:1px solid #cacece;box-shadow:0 1px 2px rgba(0,0,0,.05);padding:9px;border-radius:3px;min-width:24px;min-height:24px;display:inline-block;transition:all .18s ease;outline:0;margin:2px 4px 4px 0}.mec-form-row input[type=checkbox]:focus{outline:0}.mec-form-row input[type=checkbox]:hover{border-color:#62b6ff}.mec-form-row input[type=checkbox]:checked{box-shadow:0 1px 6px -2px #008aff;border-color:#008aff;background:#008aff;border-radius:2px;position:relative}.mec-form-row.mec-switcher input[type=checkbox]{position:absolute}.mec-form-row input[type=checkbox]:checked:before{content:"";font:normal;position:absolute;top:12px;left:8px;border-right:2px solid transparent;border-bottom:2px solid transparent;transform:rotate(45deg);transform-origin:0 100%;color:#fff;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards}@keyframes checkbox-check{0%{width:0;height:0;border-color:#fff;transform:translate3d(0,0,0) rotate(45deg)}33%{width:5px;height:0;transform:translate3d(0,0,0) rotate(45deg)}100%{width:5px;height:11px;border-color:#fff;transform:translate3d(0,-11px,0) rotate(45deg)}}.mec-form-row input+span.mec-tooltip,.mec-form-row select+span.mec-tooltip{bottom:10px}.mec-form-row label+span.mec-tooltip{bottom:8px}.mec-form-row textarea+span.mec-tooltip{bottom:auto;vertical-align:top;top:12px}.mec-form-row span+span.mec-tooltip{bottom:0;vertical-align:middle}.mec-form-row .mec-col-8 input[type=text],.mec-form-row .mec-col-8 select,.mec-form-row .mec-col-8 span.mec-archive-skins{vertical-align:top}.mec-form-row input:disabled{opacity:.6;background:#f6f6f6}.wns-be-group-tab h5{font-size:16px;font-weight:600;color:#444;margin:45px 0 25px}.mec-form-row textarea{height:auto;margin-bottom:0;min-height:60px}.mec-form-row .wp-picker-container input[type=text].wp-color-picker{height:25px;vertical-align:top;margin:0}.mec-form-row .wp-picker-container label{margin:0}.mec-image-select-wrap li span:hover{border-color:#fff;box-shadow:0 1px 8px rgba(0,0,0,.12)}.mec-message-categories li.mec-acc-label:after{content:"\e604";font-family:simple-line-icons;speak:none;font-style:normal;font-weight:400;display:block;font-size:13px;color:#999;position:absolute;right:27px;top:26px}.mec-message-categories>li.mec-acc-label[data-status=open]:after{content:"\e607";color:#008aff}.mec-message-categories>li.mec-acc-label[data-status=open]{color:#008aff}.mec-message-categories>li.mec-acc-label:last-of-type{border-bottom:none}.mec-message-categories>li.mec-acc-label[data-status=open]{border-bottom:1px solid #e6e6e6}.mec-form-row ul.mec-message-categories{box-shadow:0 2px 16px rgba(0,0,0,.03);border-radius:5px;overflow:hidden;margin-top:30px;background:#f5f5f5;border:2px solid #e6e6e6;max-width:700px}.mec-form-row ul.mec-message-categories li ul{padding:10px 40px 40px;margin:25px -30px -25px;background:#f5f5f5;box-shadow:inset 0 4px 7px rgba(0,0,0,.04);cursor:default}.mec-form-row ul.mec-message-categories ul label{margin:25px 8px 7px;font-weight:600!important;font-size:13px;color:#888;cursor:default}.wns-be-sidebar li:hover a i,.wns-be-sidebar>li:hover a{color:#008aff}.mec-form-row.mec-skin-list-date-format-container input[type=text]{margin-right:2px}.mec-form-row.mec-skin-list-date-format-container span.mec-tooltip{top:2px}.mec-calendar-metabox .mec-form-row input[type=checkbox],.mec-meta-box-fields .mec-form-row input[type=checkbox]{margin-right:6px}.mec-meta-box-fields .mec-form-row .button:not(.wp-color-result){height:37px;margin-top:1px;box-shadow:inset 0 2px 4px #fff,inset 0 -2px 4px rgba(0,0,0,.05),0 2px 2px rgba(0,0,0,.06)}#mec-read-more .mec-form-row span.mec-tooltip{top:2px;left:-4px}#mec-search-settings{border-radius:21px;min-height:32px;box-shadow:inset 0 1px 2px rgba(0,0,0,.06);padding:9px 10px 12px 34px;margin-right:10px;color:#7c838a;font-size:13px;width:260px;background:#f5f5f5;border:none;z-index:1;transition:all .18s ease;outline:0}#mec-search-settings:focus{background:#fff;box-shadow:0 1px 6px rgba(0,0,0,.07),0 0 0 1px #e6e6e6;width:270px}.mec-search-settings-wrap{display:inline-block;position:relative}.mec-search-settings-wrap i{position:absolute;left:14px;top:14px;font-size:13px;color:#7e8c98;display:block;z-index:2}#mec-search-settings::-webkit-input-placeholder{color:#7c838a}#mec-search-settings::-moz-placeholder{color:#7c838a}#mec-search-settings:-ms-input-placeholder{color:#7c838a}#mec-search-settings:-moz-placeholder{color:#7c838a}.ui-datepicker.ui-widget{border:1px solid #e8e8e8;box-shadow:0 1px 9px rgba(0,0,0,.12)}.ui-datepicker.ui-widget select{font-weight:600;font-size:12px;border-radius:2px;padding:2px 10px;margin:1px 3px 5px}.ui-datepicker.ui-widget table{border-spacing:2px}.ui-datepicker.ui-widget td,.ui-datepicker.ui-widget tr{padding:0;background:0 0!important}.ui-datepicker.ui-widget td a{color:#777;font-weight:600;width:30px;height:30px;line-height:30px;display:inline-block;border-radius:33px;padding:0;background:#fff;transition:all .2s ease}.ui-datepicker.ui-widget td a.ui-state-active,.ui-datepicker.ui-widget td a:hover{background:#40d9f1;color:#fff}.ui-datepicker.ui-widget .ui-datepicker-next,.ui-datepicker.ui-widget .ui-datepicker-prev{color:#40d9f1;width:30px;height:30px;line-height:30px;display:inline-block;text-align:center;border-radius:33px;background:#ecfcff;transition:all .2s ease}.ui-datepicker.ui-widget .ui-datepicker-next:hover,.ui-datepicker.ui-widget .ui-datepicker-prev:hover{background:#fff;box-shadow:0 0 7px -3px rgba(0,0,0,.4)}
assets/img/mec-booking.svg ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 22.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 20 20" style="enable-background:new 0 0 20 20;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:url(#SVGID_1_);}
7
+ .st1{fill:#FFFFFF;}
8
+ .st2{fill:url(#SVGID_2_);}
9
+ .st3{fill:url(#SVGID_3_);}
10
+ .st4{fill:url(#SVGID_4_);}
11
+ </style>
12
+ <g>
13
+
14
+ <linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="0.1966" y1="19.6" x2="19.8403" y2="19.6" gradientTransform="matrix(1 0 0 -1 0 22)">
15
+ <stop offset="0" style="stop-color:#0061AA"/>
16
+ <stop offset="1" style="stop-color:#008AFF"/>
17
+ </linearGradient>
18
+ <path class="st0" d="M19.1,0C19.1,0,19,0,19.1,0H1C0.7,0,0.4,0.1,0.3,0.3C0.1,0.5,0,0.7,0,1v3.8c0.3-0.2,0.6-0.3,1-0.3h18
19
+ c0.3,0,0.7,0.1,0.9,0.3V1C20,0.4,19.6,0,19.1,0z M4,3.5c-0.7,0-1.3-0.6-1.3-1.3S3.3,0.8,4,0.8s1.3,0.6,1.3,1.3S4.8,3.5,4,3.5z
20
+ M16,3.5c-0.7,0-1.3-0.6-1.3-1.3s0.6-1.3,1.3-1.3c0.7,0,1.3,0.6,1.3,1.3S16.7,3.5,16,3.5z"/>
21
+ <linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="0" y1="12.65" x2="19.9618" y2="12.65">
22
+ <stop offset="0" style="stop-color:#40D9F1"/>
23
+ <stop offset="1" style="stop-color:#73F2FF"/>
24
+ </linearGradient>
25
+ <path class="st2" d="M19.1,5.3C19.1,5.3,19,5.3,19.1,5.3H1c-0.6,0-1,0.4-1,1V19c0,0.6,0.4,1,0.9,1H19c0.5,0,0.9-0.4,0.9-0.9V6.3
26
+ C20,5.8,19.6,5.3,19.1,5.3z M15.3,9.9l-6.8,6.8C8.3,16.9,8.1,17,7.9,17c-0.2,0-0.4-0.1-0.6-0.3L4.7,14c-0.3-0.3-0.3-0.9,0-1.2
27
+ s0.9-0.3,1.2,0l2,2l6.2-6.2c0.3-0.3,0.9-0.3,1.2,0C15.7,9,15.7,9.5,15.3,9.9z"/>
28
+ <path class="st1" d="M4,3.5c-0.7,0-1.3-0.6-1.3-1.3S3.3,0.8,4,0.8s1.3,0.6,1.3,1.3S4.8,3.5,4,3.5z"/>
29
+ <circle class="st1" cx="16" cy="2.2" r="1.3"/>
30
+ </g>
31
+ </svg>
assets/img/mec.svg ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 22.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 20 20" style="enable-background:new 0 0 20 20;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:url(#SVGID_1_);}
7
+ .st1{fill:#FFFFFF;}
8
+ .st2{fill:url(#SVGID_2_);}
9
+ .st3{fill:url(#SVGID_3_);}
10
+ .st4{fill:url(#SVGID_4_);}
11
+ </style>
12
+ <g>
13
+
14
+ <linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="0.2389" y1="19.6" x2="19.8826" y2="19.6" gradientTransform="matrix(1 0 0 -1 0 22)">
15
+ <stop offset="0" style="stop-color:#0061AA"/>
16
+ <stop offset="1" style="stop-color:#008AFF"/>
17
+ </linearGradient>
18
+ <path class="st0" d="M19.1,0C19.1,0,19,0,19.1,0H1C0.7,0,0.4,0.1,0.3,0.3C0.1,0.5,0,0.7,0,1v3.8c0.3-0.2,0.6-0.3,1-0.3h18
19
+ c0.3,0,0.7,0.1,0.9,0.3V1C20,0.4,19.6,0,19.1,0z M4,3.5c-0.7,0-1.3-0.6-1.3-1.3S3.3,0.8,4,0.8s1.3,0.6,1.3,1.3S4.8,3.5,4,3.5z
20
+ M16,3.5c-0.7,0-1.3-0.6-1.3-1.3s0.6-1.3,1.3-1.3s1.3,0.6,1.3,1.3S16.7,3.5,16,3.5z"/>
21
+ <path class="st1" d="M4,3.5c-0.7,0-1.3-0.6-1.3-1.3S3.3,0.8,4,0.8s1.3,0.6,1.3,1.3S4.8,3.5,4,3.5z"/>
22
+ <circle class="st1" cx="16" cy="2.2" r="1.3"/>
23
+ <linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="4.230801e-02" y1="12.65" x2="20.0041" y2="12.65">
24
+ <stop offset="0" style="stop-color:#40D9F1"/>
25
+ <stop offset="1" style="stop-color:#73F2FF"/>
26
+ </linearGradient>
27
+ <path class="st2" d="M19.1,5.3C19.1,5.3,19.1,5.3,19.1,5.3H1c-0.6,0-1,0.4-1,1V19c0,0.6,0.4,1,0.9,1H19c0.5,0,0.9-0.4,0.9-0.9V6.3
28
+ C20,5.8,19.6,5.3,19.1,5.3z M5.3,17.5H4V7.9h1.3V17.5z M9.3,17.5V7.9h1.3v9.6H9.3z M16,17.5h-1.3V7.9H16V17.5z"/>
29
+ </g>
30
+ </svg>
assets/js/backend.js CHANGED
@@ -22,24 +22,25 @@ jQuery(document).ready(function($)
22
  });
23
 
24
  // MEC Accordion
25
- $('.mec-accordion li').on('click', function()
26
  {
27
- var key = $(this).data('key');
28
- var status = $(this).data('status');
29
 
30
  // Open the accordion
31
  if(status === 'close')
32
  {
33
- $(this).parent().find('ul').hide();
34
-
 
35
  $('#mec-acc-'+key).show();
36
- $(this).data('status', 'open');
37
  }
38
  // Close the opened accordion
39
  else
40
  {
 
 
41
  $('#mec-acc-'+key).hide();
42
- $(this).data('status', 'close');
43
  }
44
  });
45
 
@@ -398,7 +399,8 @@ function mec_show_widget_check(context)
398
 
399
  // Niceselect
400
  jQuery(document).ready(function() {
401
- jQuery('.wn-mec-select').niceSelect();
 
402
  });
403
 
404
  // TinyMce Plugins
22
  });
23
 
24
  // MEC Accordion
25
+ $('.mec-accordion > li').on('click', function()
26
  {
27
+ var key = $(this).attr('data-key');
28
+ var status = $(this).attr('data-status');
29
 
30
  // Open the accordion
31
  if(status === 'close')
32
  {
33
+ $('.mec-accordion > li ul').hide();
34
+ $('.mec-accordion > li').attr('data-status', 'close');
35
+ $(this).attr('data-status', 'open');
36
  $('#mec-acc-'+key).show();
 
37
  }
38
  // Close the opened accordion
39
  else
40
  {
41
+ $('.mec-accordion > li').attr('data-status', 'close');
42
+ $(this).attr('data-status', 'close');
43
  $('#mec-acc-'+key).hide();
 
44
  }
45
  });
46
 
399
 
400
  // Niceselect
401
  jQuery(document).ready(function() {
402
+
403
+ if (jQuery('.wn-mec-select').length > 0) jQuery('.wn-mec-select').niceSelect();
404
  });
405
 
406
  // TinyMce Plugins
assets/js/frontend.js CHANGED
@@ -1,72 +1,57 @@
1
  // MEC Single Event Displayer
2
  var mecSingleEventDisplayer = {
3
- getSinglePage: function(id, occurrence, ajaxurl, layout,image_popup)
4
- {
5
- if(jQuery('.mec-modal-result').length === 0) jQuery('.mec-wrap').append('<div class="mec-modal-result"></div>');
6
  jQuery('.mec-modal-result').addClass('mec-modal-preloader');
7
 
8
- jQuery.ajax(
9
- {
10
  url: ajaxurl,
11
- data: "action=mec_load_single_page&id="+id+(occurrence != null ? "&occurrence="+occurrence : "")+"&layout="+layout,
12
  type: "get",
13
- success: function(response)
14
- {
15
  jQuery('.mec-modal-result').removeClass("mec-modal-preloader");
16
  lity(response);
17
 
18
- setTimeout(function()
19
- {
20
- grecaptcha.render("g-recaptcha", {sitekey: mecdata.recapcha_key});
 
21
  }, 1000);
22
 
23
- if(image_popup != 0)
24
- {
25
- if(jQuery('.lity-content .mec-events-content a img').length > 0)
26
- {
27
- jQuery('.lity-content .mec-events-content a img').each(function()
28
- {
29
  jQuery(this).closest('a').attr('data-lity', '');
30
  });
31
  }
32
  }
33
  },
34
- error: function()
35
- {
36
- }
37
  });
38
  }
39
  };
40
 
41
  // MEC SEARCH FORM PLUGIN
42
- (function($)
43
- {
44
- $.fn.mecSearchForm = function(options)
45
- {
46
  // Default Options
47
- var settings = $.extend(
48
- {
49
  // These are the defaults.
50
  id: 0,
51
  search_form_element: '',
52
  atts: '',
53
- callback: function()
54
- {
55
- }
56
  }, options);
57
-
58
- $("#mec_sf_category_"+settings.id).on('change', function(e)
59
- {
60
  search();
61
  });
62
-
63
- $("#mec_sf_location_"+settings.id).on('change', function(e)
64
- {
65
  search();
66
  });
67
-
68
- $("#mec_sf_organizer_"+settings.id).on('change', function(e)
69
- {
70
  search();
71
  });
72
 
@@ -78,19 +63,16 @@ var mecSingleEventDisplayer = {
78
  search();
79
  });
80
 
81
-
82
- $("#mec_sf_label_"+settings.id).on('change', function(e)
83
- {
84
  search();
85
  });
86
-
87
- $("#mec_sf_s_"+settings.id).on('change', function(e)
88
- {
89
  search();
90
  });
91
 
92
- $("#mec_sf_month_"+settings.id).on('change', function(e)
93
- {
94
  search();
95
  });
96
 
@@ -127,17 +109,14 @@ var mecSingleEventDisplayer = {
127
  settings.callback(atts);
128
  }
129
  };
130
-
131
  }(jQuery));
132
 
133
  // MEC GOOGLE MAPS PLUGIN
134
- (function($)
135
- {
136
- $.fn.mecGoogleMaps = function(options)
137
- {
138
  // Default Options
139
- var settings = $.extend(
140
- {
141
  // These are the defaults.
142
  latitude: 0,
143
  longitude: 0,
@@ -148,8 +127,7 @@ var mecSingleEventDisplayer = {
148
  sf: {},
149
  HTML5geolocation: 0,
150
  getDirection: 0,
151
- directionOptions:
152
- {
153
  form: '#mec_get_direction_form',
154
  reset: '.mec-map-get-direction-reset',
155
  addr: '#mec_get_direction_addr',
@@ -167,19 +145,15 @@ var mecSingleEventDisplayer = {
167
  var DOM = canvas[0];
168
 
169
  // Init the Map
170
- if(settings.autoinit) init();
171
-
172
- function init()
173
- {
174
  // Search Widget
175
- if(settings.sf.container !== '')
176
- {
177
- $(settings.sf.container).mecSearchForm(
178
- {
179
  id: settings.id,
180
  atts: settings.atts,
181
- callback: function(atts)
182
- {
183
  settings.atts = atts;
184
  getMarkers();
185
  }
@@ -202,20 +176,17 @@ var mecSingleEventDisplayer = {
202
  map = new google.maps.Map(DOM, mapOptions);
203
 
204
  // Init Infowindow
205
- infowindow = new google.maps.InfoWindow(
206
- {
207
  pixelOffset: new google.maps.Size(0, -37)
208
  });
209
 
210
  // Load Markers
211
  loadMarkers(settings.markers);
212
 
213
- var clusterCalculator = function(markers, numStyles)
214
- {
215
  var weight = 0;
216
 
217
- for(var i = 0; i < markers.length; ++i)
218
- {
219
  weight += markers[i].weight;
220
  }
221
 
@@ -227,35 +198,35 @@ var mecSingleEventDisplayer = {
227
 
228
  markerClusterOptions = {
229
  styles: [{
230
- height: 53,
231
- url: settings.clustering_images + '1.png',
232
- width: 53,
233
- textColor: '#fff'
234
- },
235
- {
236
- height: 56,
237
- url: settings.clustering_images + '2.png',
238
- width: 56,
239
- textColor: '#000'
240
- },
241
- {
242
- height: 66,
243
- url: settings.clustering_images + '3.png',
244
- width: 66,
245
- textColor: '#fff'
246
- },
247
- {
248
- height: 78,
249
- url: settings.clustering_images + '4.png',
250
- width: 78,
251
- textColor: '#fff'
252
- },
253
- {
254
- height: 90,
255
- url: settings.clustering_images + '5.png',
256
- width: 90,
257
- textColor: '#fff'
258
- }
259
  ]
260
  }
261
 
@@ -265,141 +236,124 @@ var mecSingleEventDisplayer = {
265
  markerCluster.addMarkers(loadedMarkers);
266
 
267
  // Initialize get direction feature
268
- if(settings.getDirection === 1) initSimpleGetDirection();
269
- else if(settings.getDirection === 2) initAdvancedGetDirection();
270
 
271
  // Geolocation
272
- if(settings.HTML5geolocation && navigator.geolocation)
273
- {
274
- navigator.geolocation.getCurrentPosition(function(position)
275
- {
276
  var center = new google.maps.LatLng(position.coords.latitude, position.coords.longitude);
277
  var zoom = map.getZoom();
278
 
279
- if(zoom <= 6) zoom = zoom + 5;
280
- else if(zoom <= 10) zoom = zoom + 3;
281
- else if(zoom <= 14) zoom = zoom + 2;
282
- else if(zoom <= 18) zoom = zoom + 1;
283
 
284
  map.panTo(center);
285
  map.setZoom(zoom);
286
  });
287
  }
288
  }
289
-
290
- function loadMarkers(markers)
291
- {
292
  var f = 0;
293
- for(var i in markers)
294
- {
295
  f++;
296
  var dataMarker = markers[i];
297
 
298
- var marker = new RichMarker(
299
- {
300
  position: new google.maps.LatLng(dataMarker.latitude, dataMarker.longitude),
301
  map: map,
302
  event_ids: dataMarker.event_ids,
303
  infowindow: dataMarker.infowindow,
304
  lightbox: dataMarker.lightbox,
305
  icon: (dataMarker.icon ? dataMarker.icon : settings.icon),
306
- 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>',
307
  shadow: 'none',
308
  weight: dataMarker.count
309
  });
310
 
311
  // Marker Info-Window
312
- google.maps.event.addListener(marker, 'mouseover', function(event)
313
- {
314
  infowindow.close();
315
  infowindow.setContent(this.infowindow);
316
  infowindow.open(map, this);
317
  });
318
 
319
  // Marker Lightbox
320
- google.maps.event.addListener(marker, 'click', function(event)
321
- {
322
  lity(this.lightbox);
323
  });
324
 
325
  // extend the bounds to include each marker's position
326
  bounds.extend(marker.position);
327
-
328
  // Added to Markers
329
  loadedMarkers.push(marker);
330
  }
331
-
332
- if(f > 1) map.fitBounds(bounds);
333
 
334
  // Set map center if only 1 marker found
335
- if(f === 1)
336
- {
337
  map.setCenter(new google.maps.LatLng(dataMarker.latitude, dataMarker.longitude));
338
  }
339
  }
340
-
341
- function getMarkers()
342
- {
343
  // Add loader
344
- $("#mec_googlemap_canvas"+settings.id).addClass("mec-loading");
345
-
346
- $.ajax(
347
- {
348
  url: settings.ajax_url,
349
- data: "action=mec_map_get_markers&"+settings.atts,
350
  dataType: "json",
351
  type: "post",
352
- success: function(response)
353
- {
354
  // Remove Markers
355
  removeMarkers();
356
-
357
  // Load Markers
358
  loadMarkers(response.markers);
359
 
360
  markerCluster.clearMarkers();
361
  markerCluster.addMarkers(loadedMarkers, false);
362
  markerCluster.redraw();
363
-
364
  // Remove loader
365
- $("#mec_googlemap_canvas"+settings.id).removeClass("mec-loading");
366
  },
367
- error: function()
368
- {
369
  // Remove loader
370
- $("#mec_googlemap_canvas"+settings.id).removeClass("mec-loading");
371
  }
372
  });
373
  }
374
-
375
- function removeMarkers()
376
- {
377
  bounds = new google.maps.LatLngBounds();
378
-
379
- if(loadedMarkers)
380
- {
381
- for(i=0; i < loadedMarkers.length; i++) loadedMarkers[i].setMap(null);
382
  loadedMarkers.length = 0;
383
  }
384
  }
385
-
386
  var directionsDisplay;
387
  var directionsService;
388
  var startMarker;
389
  var endMarker;
390
 
391
- function initSimpleGetDirection()
392
- {
393
- $(settings.directionOptions.form).on('submit', function(event)
394
- {
395
  event.preventDefault();
396
 
397
  var from = $(settings.directionOptions.addr).val();
398
  var dest = new google.maps.LatLng(settings.directionOptions.destination.latitude, settings.directionOptions.destination.longitude);
399
 
400
  // Reset the direction
401
- if(typeof directionsDisplay !== 'undefined')
402
- {
403
  directionsDisplay.setMap(null);
404
  startMarker.setMap(null);
405
  endMarker.setMap(null);
@@ -408,32 +362,30 @@ var mecSingleEventDisplayer = {
408
  // Fade Google Maps canvas
409
  $(canvas).fadeTo(300, .4);
410
 
411
- directionsDisplay = new google.maps.DirectionsRenderer({suppressMarkers: true});
 
 
412
  directionsService = new google.maps.DirectionsService();
413
 
414
  var request = {
415
- origin: from,
416
  destination: dest,
417
  travelMode: google.maps.DirectionsTravelMode.DRIVING
418
  };
419
 
420
- directionsService.route(request, function(response, status)
421
- {
422
- if(status === google.maps.DirectionsStatus.OK)
423
- {
424
  directionsDisplay.setDirections(response);
425
  directionsDisplay.setMap(map);
426
 
427
  var leg = response.routes[0].legs[0];
428
- startMarker = new google.maps.Marker(
429
- {
430
  position: leg.start_location,
431
  map: map,
432
  icon: settings.directionOptions.startMarker,
433
  });
434
 
435
- endMarker = new google.maps.Marker(
436
- {
437
  position: leg.end_location,
438
  map: map,
439
  icon: settings.directionOptions.endMarker,
@@ -448,8 +400,7 @@ var mecSingleEventDisplayer = {
448
  $(settings.directionOptions.reset).removeClass('mec-util-hidden');
449
  });
450
 
451
- $(settings.directionOptions.reset).on('click', function(event)
452
- {
453
  $(settings.directionOptions.addr).val('');
454
  $(settings.directionOptions.form).submit();
455
 
@@ -458,37 +409,31 @@ var mecSingleEventDisplayer = {
458
  });
459
  }
460
 
461
- function initAdvancedGetDirection()
462
- {
463
- $(settings.directionOptions.form).on('submit', function(event)
464
- {
465
  event.preventDefault();
466
 
467
  var from = $(settings.directionOptions.addr).val();
468
- var url = 'https://maps.google.com/?saddr='+encodeURIComponent(from)+'&daddr='+settings.directionOptions.destination.latitude+','+settings.directionOptions.destination.longitude;
469
 
470
  window.open(url);
471
  });
472
  }
473
 
474
  return {
475
- init: function()
476
- {
477
  init();
478
  }
479
  };
480
  };
481
-
482
  }(jQuery));
483
 
484
  // MEC FULL CALENDAR PLUGIN
485
- (function($)
486
- {
487
- $.fn.mecFullCalendar = function(options)
488
- {
489
  // Default Options
490
- var settings = $.extend(
491
- {
492
  // These are the defaults.
493
  id: 0,
494
  atts: '',
@@ -496,59 +441,52 @@ var mecSingleEventDisplayer = {
496
  sf: {},
497
  skin: '',
498
  }, options);
499
-
500
  // Set onclick Listeners
501
  setListeners();
502
-
503
  var sf;
504
- function setListeners()
505
- {
506
  // Search Widget
507
- if(settings.sf.container !== '')
508
- {
509
- sf = $(settings.sf.container).mecSearchForm(
510
- {
511
  id: settings.id,
512
  atts: settings.atts,
513
- callback: function(atts)
514
- {
515
  settings.atts = atts;
516
  search();
517
  }
518
  });
519
  }
520
-
521
  // Add the onclick event
522
- $("#mec_skin_"+settings.id+" .mec-totalcal-box .mec-totalcal-view span").on('click', function(e)
523
- {
524
  e.preventDefault();
525
  var skin = $(this).data('skin');
526
 
527
  $(this).addClass('mec-totalcalview-selected').siblings().removeClass('mec-totalcalview-selected');
528
-
529
  loadSkin(skin);
530
  });
531
  }
532
-
533
- function loadSkin(skin)
534
- {
535
  // Set new Skin
536
  settings.skin = skin;
537
-
538
  // Add Loading Class
539
- if(jQuery('.mec-modal-result').length === 0) jQuery('.mec-wrap').append('<div class="mec-modal-result"></div>');
540
  jQuery('.mec-modal-result').addClass('mec-month-navigator-loading');
541
 
542
- $.ajax(
543
- {
544
  url: settings.ajax_url,
545
- data: "action=mec_full_calendar_switch_skin&skin="+skin+"&"+settings.atts+"&apply_sf_date=1&sed="+settings.sed_method,
546
  dataType: "json",
547
  type: "post",
548
- success: function(response)
549
- {
550
- $("#mec_full_calendar_container_"+settings.id).html(response);
551
-
552
  // Remove loader
553
  $('.mec-modal-result').removeClass("mec-month-navigator-loading");
554
 
@@ -558,28 +496,23 @@ var mecSingleEventDisplayer = {
558
  // Focus First Active Week
559
  mec_focus_week(settings.id);
560
  },
561
- error: function()
562
- {
563
- }
564
  });
565
  }
566
-
567
- function search()
568
- {
569
  // Add Loading Class
570
- if(jQuery('.mec-modal-result').length === 0) jQuery('.mec-wrap').append('<div class="mec-modal-result"></div>');
571
  jQuery('.mec-modal-result').addClass('mec-month-navigator-loading');
572
-
573
- $.ajax(
574
- {
575
  url: settings.ajax_url,
576
- data: "action=mec_full_calendar_switch_skin&skin="+settings.skin+"&"+settings.atts+"&apply_sf_date=1",
577
  dataType: "json",
578
  type: "post",
579
- success: function(response)
580
- {
581
- $("#mec_full_calendar_container_"+settings.id).html(response);
582
-
583
  // Remove loader
584
  $('.mec-modal-result').removeClass("mec-month-navigator-loading");
585
 
@@ -589,18 +522,15 @@ var mecSingleEventDisplayer = {
589
  // Focus First Active Week
590
  mec_focus_week(settings.id);
591
  },
592
- error: function()
593
- {
594
- }
595
  });
596
  }
597
  };
598
-
599
  }(jQuery));
600
 
601
  // MEC Woocommerce Add to Cart BTN
602
- (function($)
603
- {
604
  // console.log($('#mec_woo_add_to_cart_btn'));
605
  $(document).on('DOMNodeInserted', function (e) {
606
  if ($(e.target).find('#mec_woo_add_to_cart_btn').length) {
@@ -624,15 +554,12 @@ var mecSingleEventDisplayer = {
624
  }(jQuery));
625
 
626
  // MEC YEARLY VIEW PLUGIN
627
- (function($)
628
- {
629
- $.fn.mecYearlyView = function(options)
630
- {
631
  var active_year;
632
 
633
  // Default Options
634
- var settings = $.extend(
635
- {
636
  // These are the defaults.
637
  today: null,
638
  id: 0,
@@ -646,33 +573,28 @@ var mecSingleEventDisplayer = {
646
  }, options);
647
 
648
  // Initialize Year Navigator
649
- if(settings.year_navigator) initYearNavigator();
650
 
651
  // Load Next Year in background
652
- if(settings.year_navigator) setYear(settings.next_year.year, true);
653
 
654
  // Set onclick Listeners
655
  setListeners();
656
 
657
  // load more
658
- $(document).on("click", "#mec_skin_events_"+settings.id+" .mec-load-more-button", function()
659
- {
660
  var year = $(this).parent().parent().parent().data('year-id');
661
  loadMoreButton(year);
662
  });
663
 
664
  // Search Widget
665
- if(settings.sf.container !== '')
666
- {
667
- sf = $(settings.sf.container).mecSearchForm(
668
- {
669
  id: settings.id,
670
  atts: settings.atts,
671
- callback: function(atts)
672
- {
673
  settings.atts = atts;
674
- active_year = $('.mec-yearly-view-wrap .mec-year-navigator').filter(function()
675
- {
676
  return $(this).css('display') == "block";
677
  });
678
  active_year = parseInt(active_year.find('h2').text());
@@ -681,40 +603,35 @@ var mecSingleEventDisplayer = {
681
  });
682
  }
683
 
684
- function initYearNavigator()
685
- {
686
  // Remove the onclick event
687
- $("#mec_skin_"+settings.id+" .mec-load-year").off("click");
688
 
689
  // Add onclick event
690
- $("#mec_skin_"+settings.id+" .mec-load-year").on("click", function()
691
- {
692
  var year = $(this).data("mec-year");
693
  setYear(year);
694
  });
695
  }
696
 
697
- function search(year)
698
- {
699
  // Add Loading Class
700
- if(jQuery('.mec-modal-result').length === 0) jQuery('.mec-wrap').append('<div class="mec-modal-result"></div>');
701
  jQuery('.mec-modal-result').addClass('mec-month-navigator-loading');
702
 
703
- $.ajax(
704
- {
705
  url: settings.ajax_url,
706
- data: "action=mec_yearly_view_load_year&mec_year="+year+"&"+settings.atts+"&apply_sf_date=1",
707
  dataType: "json",
708
  type: "post",
709
- success: function(response)
710
- {
711
  active_year = response.current_year.year;
712
 
713
  // Append Year
714
- $("#mec_skin_events_"+settings.id).html('<div class="mec-year-container" id="mec_yearly_view_year_'+settings.id+'_'+response.current_year.id+'" data-year-id="'+response.current_year.id+'">'+response.year+'</div>');
715
 
716
  // Append Year Navigator
717
- $("#mec_skin_"+settings.id+" .mec-yearly-title-sec").append('<div class="mec-year-navigator" id="mec_year_navigator_'+settings.id+'_'+response.current_year.id+'">'+response.navigator+'</div>');
718
 
719
  // Re-initialize Year Navigator
720
  initYearNavigator();
@@ -727,49 +644,40 @@ var mecSingleEventDisplayer = {
727
 
728
  // Remove loading Class
729
  $('.mec-modal-result').removeClass("mec-month-navigator-loading");
730
-
731
  },
732
- error: function()
733
- {
734
- }
735
  });
736
  }
737
 
738
- function setYear(year, do_in_background)
739
- {
740
- if(typeof do_in_background === "undefined") do_in_background = false;
741
 
742
  var year_id = year;
743
  active_year = year;
744
 
745
  // Year exists so we just show it
746
- if($("#mec_yearly_view_year_"+settings.id+"_"+year_id).length)
747
- {
748
  // Toggle Year
749
  toggleYear(year_id);
750
- }
751
- else
752
- {
753
- if(!do_in_background)
754
- {
755
  // Add Loading Class
756
- if(jQuery('.mec-modal-result').length === 0) jQuery('.mec-wrap').append('<div class="mec-modal-result"></div>');
757
  jQuery('.mec-modal-result').addClass('mec-month-navigator-loading');
758
  }
759
 
760
- $.ajax(
761
- {
762
  url: settings.ajax_url,
763
- data: "action=mec_yearly_view_load_year&mec_year="+year+"&"+settings.atts+"&apply_sf_date=0",
764
  dataType: "json",
765
  type: "post",
766
- success: function(response)
767
- {
768
  // Append Year
769
- $("#mec_skin_events_"+settings.id).append('<div class="mec-year-container" id="mec_yearly_view_year_'+settings.id+'_'+response.current_year.id+'" data-year-id="'+response.current_year.id+'">'+response.year+'</div>');
770
 
771
  // Append Year Navigator
772
- $("#mec_skin_"+settings.id+" .mec-yearly-title-sec").append('<div class="mec-year-navigator" id="mec_year_navigator_'+settings.id+'_'+response.current_year.id+'">'+response.navigator+'</div>');
773
 
774
  // Re-initialize Year Navigator
775
  initYearNavigator();
@@ -777,8 +685,7 @@ var mecSingleEventDisplayer = {
777
  // Set onclick Listeners
778
  setListeners();
779
 
780
- if(!do_in_background)
781
- {
782
  // Toggle Year
783
  toggleYear(response.current_year.id);
784
 
@@ -786,47 +693,39 @@ var mecSingleEventDisplayer = {
786
  $('.mec-modal-result').removeClass("mec-month-navigator-loading");
787
 
788
  // Set Year Filter values in search widget
789
- $("#mec_sf_year_"+settings.id).val(year);
790
- }
791
- else
792
- {
793
- $("#mec_yearly_view_year_"+settings.id+"_"+response.current_year.id).hide();
794
- $("#mec_year_navigator_"+settings.id+"_"+response.current_year.id).hide();
795
  }
796
  },
797
- error: function()
798
- {
799
- }
800
  });
801
  }
802
  }
803
 
804
- function toggleYear(year_id)
805
- {
806
  // Toggle Year Navigator
807
- $("#mec_skin_"+settings.id+" .mec-year-navigator").hide();
808
- $("#mec_year_navigator_"+settings.id+"_"+year_id).show();
809
 
810
  // Toggle Year
811
- $("#mec_skin_"+settings.id+" .mec-year-container").hide();
812
- $("#mec_yearly_view_year_"+settings.id+"_"+year_id).show();
813
  }
814
 
815
  var sf;
816
- function setListeners()
817
- {
818
  // Single Event Method
819
- if(settings.sed_method != '0')
820
- {
821
  sed();
822
  }
823
  }
824
 
825
- function sed()
826
- {
827
  // Single Event Display
828
- $("#mec_skin_"+settings.id+" .mec-agenda-event-title a").off('click').on('click', function(e)
829
- {
830
  e.preventDefault();
831
  var href = $(this).attr('href');
832
 
@@ -836,31 +735,24 @@ var mecSingleEventDisplayer = {
836
  });
837
  }
838
 
839
- function loadMoreButton(year)
840
- {
841
  var $max_count, $current_count = 0;
842
- $max_count = $("#mec_yearly_view_year_"+settings.id+"_"+year+ " .mec-yearly-max").data('count');
843
- $current_count = $("#mec_yearly_view_year_"+settings.id+"_"+year+ " .mec-util-hidden").length;
844
-
845
- if($current_count > 10)
846
- {
847
- for(var i = 0; i < 10; i++)
848
- {
849
- $("#mec_yearly_view_year_"+settings.id+"_"+year+ " .mec-util-hidden").slice(0, 2).each(function()
850
- {
851
  $(this).removeClass('mec-util-hidden');
852
  });
853
  }
854
  }
855
 
856
- if($current_count < 10 && $current_count != 0)
857
- {
858
- for(var j = 0; j < $current_count; j++)
859
- {
860
- $("#mec_yearly_view_year_"+settings.id+"_"+year+ " .mec-util-hidden").slice(0, 2).each(function()
861
- {
862
  $(this).removeClass('mec-util-hidden');
863
- $("#mec_yearly_view_year_"+settings.id+"_"+year+ " .mec-load-more-wrap").css('display', 'none');
864
  });
865
  }
866
  }
@@ -870,16 +762,13 @@ var mecSingleEventDisplayer = {
870
  }(jQuery));
871
 
872
  // MEC MONTHLY VIEW PLUGIN
873
- (function($)
874
- {
875
- $.fn.mecMonthlyView = function(options)
876
- {
877
  var active_month;
878
  var active_year;
879
-
880
  // Default Options
881
- var settings = $.extend(
882
- {
883
  // These are the defaults.
884
  today: null,
885
  id: 0,
@@ -894,72 +783,64 @@ var mecSingleEventDisplayer = {
894
  }, options);
895
 
896
  // Initialize Month Navigator
897
- if(settings.month_navigator) initMonthNavigator();
898
-
899
  // Load Next Month in background
900
  setMonth(settings.next_month.year, settings.next_month.month, true);
901
 
902
  active_month = settings.active_month.month;
903
  active_year = settings.active_month.year;
904
-
905
  // Set onclick Listeners
906
  setListeners();
907
-
908
  // Search Widget
909
- if(settings.sf.container !== '')
910
- {
911
- sf = $(settings.sf.container).mecSearchForm(
912
- {
913
  id: settings.id,
914
  atts: settings.atts,
915
- callback: function(atts)
916
- {
917
  settings.atts = atts;
918
  search(active_year, active_month);
919
  }
920
  });
921
  }
922
-
923
- function initMonthNavigator()
924
- {
925
  // Remove the onclick event
926
- $("#mec_skin_"+settings.id+" .mec-load-month").off("click");
927
 
928
  // Add onclick event
929
- $("#mec_skin_"+settings.id+" .mec-load-month").on("click", function()
930
- {
931
  var year = $(this).data("mec-year");
932
  var month = $(this).data("mec-month");
933
 
934
  setMonth(year, month, false, true);
935
  });
936
  }
937
-
938
- function search(year, month)
939
- {
940
  // Add Loading Class
941
- if(jQuery('.mec-modal-result').length === 0) jQuery('.mec-wrap').append('<div class="mec-modal-result"></div>');
942
  jQuery('.mec-modal-result').addClass('mec-month-navigator-loading');
943
-
944
- $.ajax(
945
- {
946
  url: settings.ajax_url,
947
- data: "action=mec_monthly_view_load_month&mec_year="+year+"&mec_month="+month+"&"+settings.atts+"&apply_sf_date=1",
948
  dataType: "json",
949
  type: "post",
950
- success: function(response)
951
- {
952
  active_month = response.current_month.month;
953
  active_year = response.current_month.year;
954
-
955
  // Append Month
956
- $("#mec_skin_events_"+settings.id).html('<div class="mec-month-container" id="mec_monthly_view_month_'+settings.id+'_'+response.current_month.id+'" data-month-id="'+response.current_month.id+'">'+response.month+'</div>');
957
 
958
  // Append Month Navigator
959
- $("#mec_skin_"+settings.id+" .mec-skin-monthly-view-month-navigator-container").html('<div class="mec-month-navigator" id="mec_month_navigator_'+settings.id+'_'+response.current_month.id+'">'+response.navigator+'</div>');
960
 
961
  // Append Events Side
962
- $("#mec_skin_"+settings.id+" .mec-calendar-events-side").html('<div class="mec-month-side" id="mec_month_side_'+settings.id+'_'+response.current_month.id+'">'+response.events_side+'</div>');
963
 
964
  // Re-initialize Month Navigator
965
  initMonthNavigator();
@@ -974,56 +855,46 @@ var mecSingleEventDisplayer = {
974
  $('.mec-modal-result').removeClass("mec-month-navigator-loading");
975
 
976
  },
977
- error: function()
978
- {
979
- }
980
  });
981
  }
982
-
983
- function setMonth(year, month, do_in_background, navigator_click)
984
- {
985
- if(typeof do_in_background === "undefined") do_in_background = false;
986
  navigator_click = navigator_click || false;
987
- var month_id = year+""+month;
988
 
989
- if(!do_in_background)
990
- {
991
  active_month = month;
992
  active_year = year;
993
  }
994
-
995
  // Month exists so we just show it
996
- if($("#mec_monthly_view_month_"+settings.id+"_"+month_id).length)
997
- {
998
  // Toggle Month
999
  toggleMonth(month_id);
1000
- }
1001
- else
1002
- {
1003
- if(!do_in_background)
1004
- {
1005
 
1006
- // Add Loading Class
1007
- if(jQuery('.mec-modal-result').length === 0) jQuery('.mec-wrap').append('<div class="mec-modal-result"></div>');
1008
- jQuery('.mec-modal-result').addClass('mec-month-navigator-loading');
1009
  }
1010
 
1011
- $.ajax(
1012
- {
1013
  url: settings.ajax_url,
1014
- data: "action=mec_monthly_view_load_month&mec_year="+year+"&mec_month="+month+"&"+settings.atts+"&apply_sf_date=0"+"&navigator_click="+navigator_click,
1015
  dataType: "json",
1016
  type: "post",
1017
- success: function(response)
1018
- {
1019
  // Append Month
1020
- $("#mec_skin_events_"+settings.id).append('<div class="mec-month-container" id="mec_monthly_view_month_'+settings.id+'_'+response.current_month.id+'" data-month-id="'+response.current_month.id+'">'+response.month+'</div>');
1021
-
1022
  // Append Month Navigator
1023
- $("#mec_skin_"+settings.id+" .mec-skin-monthly-view-month-navigator-container").append('<div class="mec-month-navigator" id="mec_month_navigator_'+settings.id+'_'+response.current_month.id+'">'+response.navigator+'</div>');
1024
 
1025
  // Append Events Side
1026
- $("#mec_skin_"+settings.id+" .mec-calendar-events-side").append('<div class="mec-month-side" id="mec_month_side_'+settings.id+'_'+response.current_month.id+'">'+response.events_side+'</div>');
1027
 
1028
  // Re-initialize Month Navigator
1029
  initMonthNavigator();
@@ -1031,104 +902,94 @@ var mecSingleEventDisplayer = {
1031
  // Set onclick Listeners
1032
  setListeners();
1033
 
1034
- if(!do_in_background)
1035
- {
1036
  // Toggle Month
1037
  toggleMonth(response.current_month.id);
1038
 
1039
  // Remove loading Class
1040
  $('.mec-modal-result').removeClass("mec-month-navigator-loading");
1041
 
1042
-
1043
  // Set Month Filter values in search widget
1044
- $("#mec_sf_month_"+settings.id).val(month);
1045
- $("#mec_sf_year_"+settings.id).val(year);
1046
- }
1047
- else
1048
- {
1049
- $("#mec_monthly_view_month_"+settings.id+"_"+response.current_month.id).hide();
1050
- $("#mec_month_navigator_"+settings.id+"_"+response.current_month.id).hide();
1051
- $("#mec_month_side_"+settings.id+"_"+response.current_month.id).hide();
1052
  }
1053
  if (typeof custom_month !== undefined) var custom_month;
1054
- if (typeof custom_month != undefined)
1055
- {
1056
- if (custom_month == 'true')
1057
- {
1058
  $(".mec-month-container .mec-calendar-day").removeClass('mec-has-event');
1059
  $(".mec-month-container .mec-calendar-day").removeClass('mec-selected-day');
1060
  $('.mec-calendar-day').unbind('click');
1061
  }
1062
  }
1063
-
1064
  },
1065
- error: function()
1066
- {
1067
- }
1068
  });
1069
  }
1070
  }
1071
 
1072
- function toggleMonth(month_id)
1073
- {
1074
- var active_month = $("#mec_skin_"+settings.id+" .mec-month-container-selected").data("month-id");
1075
- var active_day = $("#mec_monthly_view_month_"+settings.id+"_"+active_month+" .mec-selected-day").data("day");
1076
 
1077
- if(active_day <= 9) active_day = "0"+active_day;
1078
 
1079
  // Toggle Month Navigator
1080
- $("#mec_skin_"+settings.id+" .mec-month-navigator").hide();
1081
- $("#mec_month_navigator_"+settings.id+"_"+month_id).show();
1082
 
1083
  // Toggle Month
1084
- $("#mec_skin_"+settings.id+" .mec-month-container").hide();
1085
- $("#mec_monthly_view_month_"+settings.id+"_"+month_id).show();
1086
 
1087
  // Add selected class
1088
- $("#mec_skin_"+settings.id+" .mec-month-container").removeClass("mec-month-container-selected");
1089
- $("#mec_monthly_view_month_"+settings.id+"_"+month_id).addClass("mec-month-container-selected");
1090
 
1091
  // Toggle Events Side
1092
- $("#mec_skin_"+settings.id+" .mec-month-side").hide();
1093
- $("#mec_month_side_"+settings.id+"_"+month_id).show();
1094
  }
1095
-
1096
  var sf;
1097
- function setListeners()
1098
- {
1099
  // Remove the onclick event
1100
- $("#mec_skin_"+settings.id+" .mec-has-event").off("click");
1101
 
1102
  // Add the onclick event
1103
- $("#mec_skin_"+settings.id+" .mec-has-event").on('click', function(e)
1104
- {
1105
  e.preventDefault();
1106
-
1107
  // define variables
1108
- var $this = $(this), data_mec_cell = $this.data('mec-cell'), month_id = $this.data('month');
 
 
1109
 
1110
- $("#mec_monthly_view_month_"+settings.id+"_"+month_id+" .mec-calendar-day").removeClass('mec-selected-day');
1111
  $this.addClass('mec-selected-day');
1112
 
1113
- $('#mec_month_side_'+settings.id+'_'+month_id+' .mec-calendar-events-sec:not([data-mec-cell=' + data_mec_cell + '])').slideUp();
1114
- $('#mec_month_side_'+settings.id+'_'+month_id+' .mec-calendar-events-sec[data-mec-cell=' + data_mec_cell + ']').slideDown();
1115
 
1116
- $('#mec_monthly_view_month_'+settings.id+'_'+month_id+' .mec-calendar-events-sec:not([data-mec-cell=' + data_mec_cell + '])').slideUp();
1117
- $('#mec_monthly_view_month_'+settings.id+'_'+month_id+' .mec-calendar-events-sec[data-mec-cell=' + data_mec_cell + ']').slideDown();
1118
  });
1119
 
1120
  mec_tooltip();
1121
-
1122
  // Single Event Method
1123
- if(settings.sed_method != '0')
1124
- {
1125
  sed();
1126
  }
1127
 
1128
- if (settings.style == 'novel')
1129
- {
1130
- if ($('.mec-single-event-novel').length > 0)
1131
- {
1132
  $('.mec-single-event-novel').colourBrightness();
1133
  $('.mec-single-event-novel').each(function () {
1134
  $(this).colourBrightness()
@@ -1136,12 +997,10 @@ var mecSingleEventDisplayer = {
1136
  }
1137
  }
1138
  }
1139
-
1140
- function sed()
1141
- {
1142
  // Single Event Display
1143
- $("#mec_skin_" + settings.id + " .mec-event-title a,#mec_skin_" + settings.id +" .event-single-link-novel").off('click').on('click', function(e)
1144
- {
1145
  e.preventDefault();
1146
  var href = $(this).attr('href');
1147
 
@@ -1149,11 +1008,10 @@ var mecSingleEventDisplayer = {
1149
  var occurrence = get_parameter_by_name('occurrence', href);
1150
  mecSingleEventDisplayer.getSinglePage(id, occurrence, settings.ajax_url, settings.sed_method, settings.image_popup);
1151
  });
1152
-
1153
  }
1154
 
1155
- function mec_tooltip()
1156
- {
1157
  if ($('.mec-monthly-tooltip').length > 1) {
1158
  if (Math.max(document.documentElement.clientWidth, window.innerWidth || 0) > 768) {
1159
  $('.mec-monthly-tooltip').tooltipster({
@@ -1204,18 +1062,15 @@ var mecSingleEventDisplayer = {
1204
  }(jQuery));
1205
 
1206
  // MEC WEEKLY VIEW PLUGIN
1207
- (function($)
1208
- {
1209
- $.fn.mecWeeklyView = function(options)
1210
- {
1211
  var active_year;
1212
  var active_month;
1213
  var active_week;
1214
  var active_week_number;
1215
-
1216
  // Default Options
1217
- var settings = $.extend(
1218
- {
1219
  // These are the defaults.
1220
  today: null,
1221
  week: 1,
@@ -1234,148 +1089,139 @@ var mecSingleEventDisplayer = {
1234
  active_month = settings.current_month;
1235
 
1236
  // Search Widget
1237
- if(settings.sf.container !== '')
1238
- {
1239
- $(settings.sf.container).mecSearchForm(
1240
- {
1241
  id: settings.id,
1242
  atts: settings.atts,
1243
- callback: function(atts)
1244
- {
1245
  settings.atts = atts;
1246
  search(active_year, active_month, active_week);
1247
  }
1248
  });
1249
  }
1250
-
1251
  // Set The Week
1252
- setThisWeek(settings.month_id+settings.week);
1253
-
1254
  // Set Listeners
1255
  setListeners();
1256
-
1257
  // Initialize Month Navigator
1258
- if(settings.month_navigator) initMonthNavigator(settings.month_id);
1259
-
1260
- function setListeners()
1261
- {
1262
- $(settings.changeWeekElement).off('click').on('click', function(e)
1263
- {
1264
- var week = $('#mec_skin_'+settings.id+' .mec-weekly-view-week-active').data('week-id');
1265
- var max_weeks = $('#mec_skin_'+settings.id+' .mec-weekly-view-week-active').data('max-weeks');
1266
  var new_week_number = active_week_number;
1267
-
1268
- if($(this).hasClass('mec-previous-month'))
1269
- {
1270
- week = parseInt(week)-1;
1271
  new_week_number--;
1272
- }
1273
- else
1274
- {
1275
- week = parseInt(week)+1;
1276
  new_week_number++;
1277
  }
1278
-
1279
- if(new_week_number <= 1 || new_week_number >= max_weeks)
1280
- {
1281
  // Disable Next/Previous Button
1282
- $(this).css({'opacity': .6, 'cursor': 'default'});
1283
- $(this).find('i').css({'opacity': .6, 'cursor': 'default'});
1284
- }
1285
- else
1286
- {
 
 
 
 
1287
  // Enable Next/Previous Buttons
1288
- $('#mec_skin_'+settings.id+' .mec-load-week, #mec_skin_'+settings.id+' .mec-load-week i').css({'opacity': 1, 'cursor': 'pointer'});
 
 
 
1289
  }
1290
-
1291
  // Week is not in valid range
1292
- if(new_week_number === 0 || new_week_number > max_weeks)
1293
- {
1294
- }
1295
- else
1296
- {
1297
  setThisWeek(week);
1298
  }
1299
  });
1300
-
1301
  // Single Event Method
1302
- if(settings.sed_method != '0')
1303
- {
1304
  sed();
1305
  }
1306
  }
1307
-
1308
- function setThisWeek(week, auto_focus)
1309
- {
1310
- if(typeof auto_focus === 'undefined') auto_focus = false;
1311
 
1312
  // Week is not exists
1313
- if(!$('#mec_weekly_view_week_'+settings.id+'_'+week).length)
1314
- {
1315
- return setThisWeek((parseInt(week)-1));
1316
  }
1317
 
1318
  // Set week to active in week list
1319
- $('#mec_skin_'+settings.id+' .mec-weekly-view-week').removeClass('mec-weekly-view-week-active');
1320
- $('#mec_weekly_view_week_'+settings.id+'_'+week).addClass('mec-weekly-view-week-active');
1321
-
1322
  // Show related events
1323
- $('#mec_skin_'+settings.id+' .mec-weekly-view-date-events').addClass('mec-util-hidden');
1324
- $('.mec-weekly-view-week-'+settings.id+'-'+week).removeClass('mec-util-hidden');
1325
 
1326
  active_week = week;
1327
- active_week_number = $('#mec_skin_'+settings.id+' .mec-weekly-view-week-active').data('week-number');
1328
 
1329
- $('#mec_skin_'+settings.id+' .mec-calendar-d-top').find('.mec-current-week').find('span').remove();
1330
- $('#mec_skin_'+settings.id+' .mec-calendar-d-top').find('.mec-current-week').append('<span>'+active_week_number+'</span>');
1331
 
1332
- if(active_week_number === 1)
1333
- {
1334
  // Disable Previous Button
1335
- $('#mec_skin_'+settings.id+' .mec-previous-month.mec-load-week').css({'opacity': .6, 'cursor': 'default'});
1336
- $('#mec_skin_'+settings.id+' .mec-previous-month.mec-load-week').find('i').css({'opacity': .6, 'cursor': 'default'});
 
 
 
 
 
 
1337
  }
1338
-
1339
  // Go To Event Week
1340
- if(auto_focus) mec_focus_week(settings.id);
1341
  }
1342
 
1343
- function initMonthNavigator(month_id)
1344
- {
1345
- $('#mec_month_navigator'+settings.id+'_'+month_id+' .mec-load-month').off('click');
1346
- $('#mec_month_navigator'+settings.id+'_'+month_id+' .mec-load-month').on('click', function()
1347
- {
1348
  var year = $(this).data('mec-year');
1349
  var month = $(this).data('mec-month');
1350
 
1351
  setMonth(year, month, active_week, true);
1352
  });
1353
  }
1354
-
1355
- function search(year, month, week, navigation_click)
1356
- {
1357
  var week_number = (String(week).slice(-1));
1358
 
1359
  // Add Loading Class
1360
- if(jQuery('.mec-modal-result').length === 0) jQuery('.mec-wrap').append('<div class="mec-modal-result"></div>');
1361
  jQuery('.mec-modal-result').addClass('mec-month-navigator-loading');
1362
 
1363
- $.ajax(
1364
- {
1365
  url: settings.ajax_url,
1366
- data: "action=mec_weekly_view_load_month&mec_year="+year+"&mec_month="+month+"&mec_week="+week_number+"&"+settings.atts+"&apply_sf_date=1",
1367
  dataType: "json",
1368
  type: "post",
1369
- success: function(response)
1370
- {
1371
  // Remove Loading Class
1372
  $('.mec-modal-result').removeClass("mec-month-navigator-loading");
1373
 
1374
  // Append Month
1375
- $("#mec_skin_events_"+settings.id).html('<div class="mec-month-container" id="mec_weekly_view_month_'+settings.id+'_'+response.current_month.id+'">'+response.month+'</div>');
1376
 
1377
  // Append Month Navigator
1378
- $("#mec_skin_"+settings.id+" .mec-skin-weekly-view-month-navigator-container").html('<div class="mec-month-navigator" id="mec_month_navigator'+settings.id+'_'+response.current_month.id+'">'+response.navigator+'</div>');
1379
 
1380
  // Set Listeners
1381
  setListeners();
@@ -1386,52 +1232,44 @@ var mecSingleEventDisplayer = {
1386
  // Set active week
1387
  setThisWeek(active_week, true);
1388
  },
1389
- error: function()
1390
- {
1391
- }
1392
  });
1393
  }
1394
-
1395
- function setMonth(year, month, week, navigation_click)
1396
- {
1397
- var month_id = ''+year+month;
1398
  var week_number = (String(week).slice(-1));
1399
-
1400
  active_month = month;
1401
  active_year = year;
1402
  navigation_click = navigation_click || false;
1403
-
1404
  // Month exists so we just show it
1405
- if($("#mec_weekly_view_month_"+settings.id+"_"+month_id).length)
1406
- {
1407
  // Toggle Month
1408
  toggleMonth(month_id);
1409
 
1410
  // Set active week
1411
- setThisWeek(''+month_id+week_number);
1412
- }
1413
- else
1414
- {
1415
  // Add Loading Class
1416
- if(jQuery('.mec-modal-result').length === 0) jQuery('.mec-wrap').append('<div class="mec-modal-result"></div>');
1417
  jQuery('.mec-modal-result').addClass('mec-month-navigator-loading');
1418
 
1419
- $.ajax(
1420
- {
1421
  url: settings.ajax_url,
1422
- data: "action=mec_weekly_view_load_month&mec_year="+year+"&mec_month="+month+"&mec_week="+week_number+"&"+settings.atts+"&apply_sf_date=0"+"&navigator_click="+navigation_click,
1423
  dataType: "json",
1424
  type: "post",
1425
- success: function(response)
1426
- {
1427
  // Remove Loading Class
1428
- $('.mec-modal-result').removeClass("mec-month-navigator-loading");
1429
 
1430
  // Append Month
1431
- $("#mec_skin_events_"+settings.id).append('<div class="mec-month-container" id="mec_weekly_view_month_'+settings.id+'_'+response.current_month.id+'">'+response.month+'</div>');
1432
 
1433
  // Append Month Navigator
1434
- $("#mec_skin_"+settings.id+" .mec-skin-weekly-view-month-navigator-container").append('<div class="mec-month-navigator" id="mec_month_navigator'+settings.id+'_'+response.current_month.id+'">'+response.navigator+'</div>');
1435
 
1436
  // Set Listeners
1437
  setListeners();
@@ -1441,36 +1279,31 @@ var mecSingleEventDisplayer = {
1441
 
1442
  // Set active week
1443
  setThisWeek(response.week_id, true);
1444
-
1445
  // Set Month Filter values in search widget
1446
- $("#mec_sf_month_"+settings.id).val(month);
1447
- $("#mec_sf_year_"+settings.id).val(year);
1448
  },
1449
- error: function()
1450
- {
1451
- }
1452
  });
1453
  }
1454
  }
1455
 
1456
- function toggleMonth(month_id)
1457
- {
1458
  // Show related events
1459
- $('#mec_skin_'+settings.id+' .mec-month-container').addClass('mec-util-hidden');
1460
- $('#mec_weekly_view_month_'+settings.id+'_'+month_id).removeClass('mec-util-hidden');
1461
 
1462
- $('#mec_skin_'+settings.id+' .mec-month-navigator').addClass('mec-util-hidden');
1463
- $('#mec_month_navigator'+settings.id+'_'+month_id).removeClass('mec-util-hidden');
1464
 
1465
  // Initialize Month Navigator
1466
- if(settings.month_navigator) initMonthNavigator(month_id);
1467
  }
1468
-
1469
- function sed()
1470
- {
1471
  // Single Event Display
1472
- $("#mec_skin_"+settings.id+" .mec-event-title a").off('click').on('click', function(e)
1473
- {
1474
  e.preventDefault();
1475
  var href = $(this).attr('href');
1476
 
@@ -1481,21 +1314,18 @@ var mecSingleEventDisplayer = {
1481
  });
1482
  }
1483
  };
1484
-
1485
  }(jQuery));
1486
 
1487
  // MEC DAILY VIEW PLUGIN
1488
- (function($)
1489
- {
1490
- $.fn.mecDailyView = function(options)
1491
- {
1492
  var active_month;
1493
  var active_year;
1494
  var active_day;
1495
-
1496
  // Default Options
1497
- var settings = $.extend(
1498
- {
1499
  // These are the defaults.
1500
  today: null,
1501
  id: 0,
@@ -1507,11 +1337,11 @@ var mecSingleEventDisplayer = {
1507
  ajax_url: '',
1508
  sf: {},
1509
  }, options);
1510
-
1511
  active_month = settings.month;
1512
  active_year = settings.year;
1513
  active_day = settings.day;
1514
-
1515
  // Set Today
1516
  setToday(settings.today);
1517
 
@@ -1519,76 +1349,67 @@ var mecSingleEventDisplayer = {
1519
  setListeners();
1520
 
1521
  // Initialize Month Navigator
1522
- if(settings.month_navigator) initMonthNavigator(settings.month_id);
1523
-
1524
  // Initialize Days Slider
1525
  initDaysSlider(settings.month_id);
1526
 
1527
  // Search Widget
1528
- if(settings.sf.container !== '')
1529
- {
1530
- $(settings.sf.container).mecSearchForm(
1531
- {
1532
  id: settings.id,
1533
  atts: settings.atts,
1534
- callback: function(atts)
1535
- {
1536
  settings.atts = atts;
1537
  search(active_year, active_month, active_day);
1538
  }
1539
  });
1540
  }
1541
-
1542
- function setListeners()
1543
- {
1544
- $(settings.changeDayElement).on('click', function()
1545
- {
1546
  var today = $(this).data('day-id');
1547
  setToday(today);
1548
  });
1549
-
1550
  // Single Event Method
1551
- if(settings.sed_method != '0')
1552
- {
1553
  sed();
1554
  }
1555
  }
1556
 
1557
  var current_monthday;
1558
- function setToday(today)
1559
- {
1560
  // For caring about 31st, 30th and 29th of some months
1561
- if(!$('#mec_daily_view_day'+settings.id+'_'+today).length)
1562
- {
1563
- setToday(parseInt(today)-1);
1564
  return false;
1565
  }
1566
 
1567
  // Set day to active in day list
1568
  $('.mec-daily-view-day').removeClass('mec-daily-view-day-active mec-color');
1569
- $('#mec_daily_view_day'+settings.id+'_'+today).addClass('mec-daily-view-day-active mec-color');
1570
 
1571
  // Show related events
1572
  $('.mec-daily-view-date-events').addClass('mec-util-hidden');
1573
- $('#mec_daily_view_date_events'+settings.id+'_'+today).removeClass('mec-util-hidden');
1574
 
1575
  // Set today label
1576
- var weekday = $('#mec_daily_view_day'+settings.id+'_'+today).data('day-weekday');
1577
- var monthday = $('#mec_daily_view_day'+settings.id+'_'+today).data('day-monthday');
1578
- var count = $('#mec_daily_view_day'+settings.id+'_'+today).data('events-count');
1579
- var month_id = $('#mec_daily_view_day'+settings.id+'_'+today).data('month-id');
1580
 
1581
- $('#mec_today_container'+settings.id+'_'+month_id).html('<h2>'+monthday+'</h2><h3>'+weekday+'</h3><div class="mec-today-count">'+count+' '+(count > 1 ? settings.events_label : settings.event_label)+'</div>');
1582
 
1583
- if(monthday <= 9) current_monthday = '0'+monthday;
1584
  else current_monthday = monthday;
1585
  }
1586
 
1587
- function initMonthNavigator(month_id)
1588
- {
1589
- $('#mec_month_navigator'+settings.id+'_'+month_id+' .mec-load-month').off('click');
1590
- $('#mec_month_navigator'+settings.id+'_'+month_id+' .mec-load-month').on('click', function()
1591
- {
1592
  var year = $(this).data('mec-year');
1593
  var month = $(this).data('mec-month');
1594
 
@@ -1596,8 +1417,7 @@ var mecSingleEventDisplayer = {
1596
  });
1597
  }
1598
 
1599
- function initDaysSlider(month_id, day_id)
1600
- {
1601
  // Set Global Month Id
1602
  mec_g_month_id = month_id;
1603
 
@@ -1605,9 +1425,8 @@ var mecSingleEventDisplayer = {
1605
  var owl_rtl = $('body').hasClass('rtl') ? true : false;
1606
 
1607
  // Init Days slider
1608
- var owl = $("#mec-owl-calendar-d-table-"+settings.id+"-"+month_id);
1609
- owl.owlCarousel(
1610
- {
1611
  responsiveClass: true,
1612
  responsive: {
1613
  0: {
@@ -1635,142 +1454,126 @@ var mecSingleEventDisplayer = {
1635
  });
1636
 
1637
  // Custom Navigation Events
1638
- $("#mec_daily_view_month_"+settings.id+"_"+month_id+" .mec-table-d-next").click(function(e)
1639
- {
1640
  e.preventDefault();
1641
  owl.trigger('next.owl.carousel');
1642
  });
1643
 
1644
- $("#mec_daily_view_month_"+settings.id+"_"+month_id+" .mec-table-d-prev").click(function(e)
1645
- {
1646
  e.preventDefault();
1647
  owl.trigger('prev.owl.carousel');
1648
  });
1649
 
1650
- if(typeof day_id === 'undefined') day_id = $('.mec-daily-view-day-active').data('day-id');
1651
 
1652
- var today_str = day_id.toString().substring(6,8);
1653
  var today_int = parseInt(today_str);
1654
 
1655
  owl.trigger('owl.goTo', [today_int]);
1656
  }
1657
-
1658
- function search(year, month, day)
1659
- {
1660
  // Add Loading Class
1661
- if(jQuery('.mec-modal-result').length === 0) jQuery('.mec-wrap').append('<div class="mec-modal-result"></div>');
1662
  jQuery('.mec-modal-result').addClass('mec-month-navigator-loading');
1663
 
1664
- $.ajax(
1665
- {
1666
  url: settings.ajax_url,
1667
- data: "action=mec_daily_view_load_month&mec_year="+year+"&mec_month="+month+"&mec_day="+day+"&"+settings.atts+"&apply_sf_date=1",
1668
  dataType: "json",
1669
  type: "post",
1670
- success: function(response)
1671
- {
1672
  // Remove Loading Class
1673
  $('.mec-modal-result').removeClass("mec-month-navigator-loading");
1674
 
1675
  // Append Month
1676
- $("#mec_skin_events_"+settings.id).html('<div class="mec-month-container" id="mec_daily_view_month_'+settings.id+'_'+response.current_month.id+'">'+response.month+'</div>');
1677
 
1678
  // Append Month Navigator
1679
- $("#mec_skin_"+settings.id+" .mec-calendar-a-month.mec-clear").html('<div class="mec-month-navigator" id="mec_month_navigator'+settings.id+'_'+response.current_month.id+'">'+response.navigator+'</div>');
1680
 
1681
  // Set Listeners
1682
  setListeners();
1683
-
1684
  active_year = response.current_month.year;
1685
  active_month = response.current_month.month;
1686
-
1687
  // Toggle Month
1688
- toggleMonth(response.current_month.id, ''+active_year+active_month+active_day);
1689
 
1690
  // Set Today
1691
- setToday(''+active_year+active_month+active_day);
1692
 
1693
  // Focus First Active Day
1694
  mec_focus_day(settings.id);
1695
  },
1696
- error: function()
1697
- {
1698
- }
1699
  });
1700
  }
1701
-
1702
- function setMonth(year, month, day, navigation_click)
1703
- {
1704
  var month_id = '' + year + month;
1705
-
1706
  active_month = month;
1707
  active_year = year;
1708
  active_day = day;
1709
  navigation_click = navigation_click || false;
1710
 
1711
  // Month exists so we just show it
1712
- if($("#mec_daily_view_month_"+settings.id+"_"+month_id).length)
1713
- {
1714
  // Toggle Month
1715
  toggleMonth(month_id);
1716
 
1717
  // Set Today
1718
- setToday(''+month_id+day);
1719
- }
1720
- else
1721
- {
1722
  // Add Loading Class
1723
- if(jQuery('.mec-modal-result').length === 0) jQuery('.mec-wrap').append('<div class="mec-modal-result"></div>');
1724
  jQuery('.mec-modal-result').addClass('mec-month-navigator-loading');
1725
 
1726
- $.ajax(
1727
- {
1728
  url: settings.ajax_url,
1729
- data: "action=mec_daily_view_load_month&mec_year="+year+"&mec_month="+month+"&mec_day="+day+"&"+settings.atts+"&apply_sf_date=0"+"&navigator_click="+navigation_click,
1730
  dataType: "json",
1731
  type: "post",
1732
- success: function(response)
1733
- {
1734
  // Remove Loading Class
1735
  $('.mec-modal-result').removeClass("mec-month-navigator-loading");
1736
 
1737
  // Append Month
1738
- $("#mec_skin_events_"+settings.id).append('<div class="mec-month-container" id="mec_daily_view_month_'+settings.id+'_'+response.current_month.id+'">'+response.month+'</div>');
1739
 
1740
  // Append Month Navigator
1741
- $("#mec_skin_"+settings.id+" .mec-calendar-a-month.mec-clear").append('<div class="mec-month-navigator" id="mec_month_navigator'+settings.id+'_'+response.current_month.id+'">'+response.navigator+'</div>');
1742
 
1743
  // Set Listeners
1744
  setListeners();
1745
 
1746
  // Toggle Month
1747
- toggleMonth(response.current_month.id, ''+year+month+'01');
1748
 
1749
  // Set Today
1750
- setToday(''+year+month+'01');
1751
-
1752
  // Set Month Filter values in search widget
1753
- $("#mec_sf_month_"+settings.id).val(month);
1754
- $("#mec_sf_year_"+settings.id).val(year);
1755
  },
1756
- error: function()
1757
- {
1758
- }
1759
  });
1760
  }
1761
  }
1762
 
1763
- function toggleMonth(month_id, day_id)
1764
- {
1765
  // Show related events
1766
- $('#mec_skin_'+settings.id+' .mec-month-container').addClass('mec-util-hidden');
1767
- $('#mec_daily_view_month_'+settings.id+'_'+month_id).removeClass('mec-util-hidden');
1768
 
1769
- $('#mec_skin_'+settings.id+' .mec-month-navigator').addClass('mec-util-hidden');
1770
- $('#mec_month_navigator'+settings.id+'_'+month_id).removeClass('mec-util-hidden');
1771
 
1772
  // Initialize Month Navigator
1773
- if(settings.month_navigator) initMonthNavigator(month_id);
1774
 
1775
  // Initialize Days Slider
1776
  initDaysSlider(month_id, day_id);
@@ -1778,12 +1581,10 @@ var mecSingleEventDisplayer = {
1778
  // Focus First Active Day
1779
  mec_focus_day(settings.id);
1780
  }
1781
-
1782
- function sed()
1783
- {
1784
  // Single Event Display
1785
- $("#mec_skin_"+settings.id+" .mec-event-title a").off('click').on('click', function(e)
1786
- {
1787
  e.preventDefault();
1788
  var href = $(this).attr('href');
1789
 
@@ -1794,14 +1595,12 @@ var mecSingleEventDisplayer = {
1794
  });
1795
  }
1796
  };
1797
-
1798
  }(jQuery));
1799
 
1800
  // MEC TIMETABLE PLUGIN
1801
- (function($)
1802
- {
1803
- $.fn.mecTimeTable = function(options)
1804
- {
1805
  var active_year;
1806
  var active_month;
1807
  var active_week;
@@ -1809,8 +1608,7 @@ var mecSingleEventDisplayer = {
1809
  var active_day;
1810
 
1811
  // Default Options
1812
- var settings = $.extend(
1813
- {
1814
  // These are the defaults.
1815
  today: null,
1816
  week: 1,
@@ -1824,14 +1622,11 @@ var mecSingleEventDisplayer = {
1824
  }, options);
1825
 
1826
  // Search Widget
1827
- if(settings.sf.container !== '')
1828
- {
1829
- $(settings.sf.container).mecSearchForm(
1830
- {
1831
  id: settings.id,
1832
  atts: settings.atts,
1833
- callback: function(atts)
1834
- {
1835
  settings.atts = atts;
1836
  search(active_year, active_month, active_week, active_day);
1837
  }
@@ -1839,119 +1634,113 @@ var mecSingleEventDisplayer = {
1839
  }
1840
 
1841
  // Set The Week
1842
- setThisWeek(settings.month_id+settings.week, settings.active_day);
1843
 
1844
  // Set Listeners
1845
  setListeners();
1846
 
1847
  // Initialize Month Navigator
1848
- if(settings.month_navigator) initMonthNavigator(settings.month_id);
1849
 
1850
- function setListeners()
1851
- {
1852
  // Change Week Listener
1853
- $(settings.changeWeekElement).off('click').on('click', function()
1854
- {
1855
- var week = $('#mec_skin_'+settings.id+' .mec-weekly-view-week-active').data('week-id');
1856
- var max_weeks = $('#mec_skin_'+settings.id+' .mec-weekly-view-week-active').data('max-weeks');
1857
  var new_week_number = active_week_number;
1858
 
1859
- if($(this).hasClass('mec-previous-month'))
1860
- {
1861
- week = parseInt(week)-1;
1862
  new_week_number--;
1863
- }
1864
- else
1865
- {
1866
- week = parseInt(week)+1;
1867
  new_week_number++;
1868
  }
1869
 
1870
- if(new_week_number <= 1 || new_week_number >= max_weeks)
1871
- {
1872
  // Disable Next/Previous Button
1873
- $(this).css({'opacity': .6, 'cursor': 'default'});
1874
- $(this).find('i').css({'opacity': .6, 'cursor': 'default'});
1875
- }
1876
- else
1877
- {
 
 
 
 
1878
  // Enable Next/Previous Buttons
1879
- $('#mec_skin_'+settings.id+' .mec-load-week, #mec_skin_'+settings.id+' .mec-load-week i').css({'opacity': 1, 'cursor': 'pointer'});
 
 
 
1880
  }
1881
 
1882
  // Week is not in valid range
1883
- if(new_week_number === 0 || new_week_number > max_weeks)
1884
- {
1885
- }
1886
- else
1887
- {
1888
  setThisWeek(week);
1889
  }
1890
  });
1891
 
1892
  // Change Day Listener
1893
- $('#mec_skin_'+settings.id+' .mec-weekly-view-week dt').not('.mec-timetable-has-no-event').off('click').on('click', function()
1894
- {
1895
  var day = $(this).data('date-id');
1896
  setDay(day);
1897
  });
1898
 
1899
  // Single Event Method
1900
- if(settings.sed_method != '0')
1901
- {
1902
  sed();
1903
  }
1904
  }
1905
 
1906
- function setThisWeek(week, day)
1907
- {
1908
  // Week is not exists
1909
- if(!$('#mec_weekly_view_week_'+settings.id+'_'+week).length)
1910
- {
1911
- return setThisWeek((parseInt(week)-1), day);
1912
  }
1913
 
1914
  // Set week to active in week list
1915
- $('#mec_skin_'+settings.id+' .mec-weekly-view-week').removeClass('mec-weekly-view-week-active');
1916
- $('#mec_weekly_view_week_'+settings.id+'_'+week).addClass('mec-weekly-view-week-active');
1917
 
1918
  setDay(day);
1919
 
1920
  active_week = week;
1921
- active_week_number = $('#mec_skin_'+settings.id+' .mec-weekly-view-week-active').data('week-number');
1922
 
1923
- $('#mec_skin_'+settings.id+' .mec-calendar-d-top').find('.mec-current-week').find('span').remove();
1924
- $('#mec_skin_'+settings.id+' .mec-calendar-d-top').find('.mec-current-week').append('<span>'+active_week_number+'</span>');
1925
 
1926
- if(active_week_number === 1)
1927
- {
1928
  // Disable Previous Button
1929
- $('#mec_skin_'+settings.id+' .mec-previous-month.mec-load-week').css({'opacity': .6, 'cursor': 'default'});
1930
- $('#mec_skin_'+settings.id+' .mec-previous-month.mec-load-week').find('i').css({'opacity': .6, 'cursor': 'default'});
 
 
 
 
 
 
1931
  }
1932
  }
1933
 
1934
- function setDay(day)
1935
- {
1936
  // Find the date automatically
1937
- if(typeof day === 'undefined')
1938
- {
1939
- day = $('#mec_skin_'+settings.id+' .mec-weekly-view-week-active dt').not('.mec-timetable-has-no-event').first().data('date-id');
1940
  }
1941
 
1942
  // Activate the date element
1943
- $('#mec_skin_'+settings.id+' dt').removeClass('mec-timetable-day-active');
1944
- $('#mec_skin_'+settings.id+' .mec-weekly-view-week-active dt[data-date-id="'+day+'"]').addClass('mec-timetable-day-active');
1945
 
1946
  // Show related events
1947
- $('#mec_skin_'+settings.id+' .mec-weekly-view-date-events').addClass('mec-util-hidden');
1948
- $('#mec_weekly_view_date_events'+settings.id+'_'+day).removeClass('mec-util-hidden');
1949
  }
1950
 
1951
- function initMonthNavigator(month_id)
1952
- {
1953
- $('#mec_month_navigator'+settings.id+'_'+month_id+' .mec-load-month').off('click').on('click', function()
1954
- {
1955
  var year = $(this).data('mec-year');
1956
  var month = $(this).data('mec-month');
1957
 
@@ -1959,30 +1748,27 @@ var mecSingleEventDisplayer = {
1959
  });
1960
  }
1961
 
1962
- function search(year, month, week)
1963
- {
1964
  var week_number = (String(week).slice(-1));
1965
 
1966
  // Add Loading Class
1967
- if(jQuery('.mec-modal-result').length === 0) jQuery('.mec-wrap').append('<div class="mec-modal-result"></div>');
1968
  jQuery('.mec-modal-result').addClass('mec-month-navigator-loading');
1969
 
1970
- $.ajax(
1971
- {
1972
  url: settings.ajax_url,
1973
- data: "action=mec_timetable_load_month&mec_year="+year+"&mec_month="+month+"&mec_week="+week_number+"&"+settings.atts+"&apply_sf_date=1",
1974
  dataType: "json",
1975
  type: "post",
1976
- success: function(response)
1977
- {
1978
  // Remove Loading Class
1979
  $('.mec-modal-result').removeClass("mec-month-navigator-loading");
1980
 
1981
  // Append Month
1982
- $("#mec_skin_events_"+settings.id).html('<div class="mec-month-container" id="mec_timetable_month_'+settings.id+'_'+response.current_month.id+'">'+response.month+'</div>');
1983
 
1984
  // Append Month Navigator
1985
- $("#mec_skin_"+settings.id+" .mec-skin-weekly-view-month-navigator-container").html('<div class="mec-month-navigator" id="mec_month_navigator'+settings.id+'_'+response.current_month.id+'">'+response.navigator+'</div>');
1986
 
1987
  // Set Listeners
1988
  setListeners();
@@ -1993,51 +1779,43 @@ var mecSingleEventDisplayer = {
1993
  // Set active week
1994
  setThisWeek(response.week_id);
1995
  },
1996
- error: function()
1997
- {
1998
- }
1999
  });
2000
  }
2001
 
2002
- function setMonth(year, month, week)
2003
- {
2004
- var month_id = ''+year+month;
2005
  var week_number = (String(week).slice(-1));
2006
 
2007
  active_month = month;
2008
  active_year = year;
2009
 
2010
  // Month exists so we just show it
2011
- if($("#mec_timetable_month_"+settings.id+"_"+month_id).length)
2012
- {
2013
  // Toggle Month
2014
  toggleMonth(month_id);
2015
 
2016
  // Set active week
2017
- setThisWeek(''+month_id+week_number);
2018
- }
2019
- else
2020
- {
2021
  // Add Loading Class
2022
- if(jQuery('.mec-modal-result').length === 0) jQuery('.mec-wrap').append('<div class="mec-modal-result"></div>');
2023
  jQuery('.mec-modal-result').addClass('mec-month-navigator-loading');
2024
 
2025
- $.ajax(
2026
- {
2027
  url: settings.ajax_url,
2028
- data: "action=mec_timetable_load_month&mec_year="+year+"&mec_month="+month+"&mec_week="+week_number+"&"+settings.atts+"&apply_sf_date=0",
2029
  dataType: "json",
2030
  type: "post",
2031
- success: function(response)
2032
- {
2033
  // Remove Loading Class
2034
  $('.mec-modal-result').removeClass("mec-month-navigator-loading");
2035
 
2036
  // Append Month
2037
- $("#mec_skin_events_"+settings.id).append('<div class="mec-month-container" id="mec_timetable_month_'+settings.id+'_'+response.current_month.id+'">'+response.month+'</div>');
2038
 
2039
  // Append Month Navigator
2040
- $("#mec_skin_"+settings.id+" .mec-skin-weekly-view-month-navigator-container").append('<div class="mec-month-navigator" id="mec_month_navigator'+settings.id+'_'+response.current_month.id+'">'+response.navigator+'</div>');
2041
 
2042
  // Set Listeners
2043
  setListeners();
@@ -2049,34 +1827,29 @@ var mecSingleEventDisplayer = {
2049
  setThisWeek(response.week_id);
2050
 
2051
  // Set Month Filter values in search widget
2052
- $("#mec_sf_month_"+settings.id).val(month);
2053
- $("#mec_sf_year_"+settings.id).val(year);
2054
  },
2055
- error: function()
2056
- {
2057
- }
2058
  });
2059
  }
2060
  }
2061
 
2062
- function toggleMonth(month_id)
2063
- {
2064
  // Show related events
2065
- $('#mec_skin_'+settings.id+' .mec-month-container').addClass('mec-util-hidden');
2066
- $('#mec_timetable_month_'+settings.id+'_'+month_id).removeClass('mec-util-hidden');
2067
 
2068
- $('#mec_skin_'+settings.id+' .mec-month-navigator').addClass('mec-util-hidden');
2069
- $('#mec_month_navigator'+settings.id+'_'+month_id).removeClass('mec-util-hidden');
2070
 
2071
  // Initialize Month Navigator
2072
- if(settings.month_navigator) initMonthNavigator(month_id);
2073
  }
2074
 
2075
- function sed()
2076
- {
2077
  // Single Event Display
2078
- $("#mec_skin_"+settings.id+" .mec-timetable-event-title a").off('click').on('click', function(e)
2079
- {
2080
  e.preventDefault();
2081
  var href = $(this).attr('href');
2082
 
@@ -2091,13 +1864,10 @@ var mecSingleEventDisplayer = {
2091
  }(jQuery));
2092
 
2093
  // MEC WEEKLY PROGRAM PLUGIN
2094
- (function($)
2095
- {
2096
- $.fn.mecWeeklyProgram = function(options)
2097
- {
2098
  // Default Options
2099
- var settings = $.extend(
2100
- {
2101
  // These are the defaults.
2102
  id: 0,
2103
  atts: '',
@@ -2105,14 +1875,11 @@ var mecSingleEventDisplayer = {
2105
  }, options);
2106
 
2107
  // Search Widget
2108
- if(settings.sf.container !== '')
2109
- {
2110
- $(settings.sf.container).mecSearchForm(
2111
- {
2112
  id: settings.id,
2113
  atts: settings.atts,
2114
- callback: function(atts)
2115
- {
2116
  settings.atts = atts;
2117
  search();
2118
  }
@@ -2122,51 +1889,42 @@ var mecSingleEventDisplayer = {
2122
  // Set Listeners
2123
  setListeners();
2124
 
2125
- function setListeners()
2126
- {
2127
  // Single Event Method
2128
- if(settings.sed_method != '0')
2129
- {
2130
  sed();
2131
  }
2132
  }
2133
 
2134
- function search()
2135
- {
2136
  var $modal = $('.mec-modal-result');
2137
 
2138
  // Add Loading Class
2139
- if($modal.length === 0) $('.mec-wrap').append('<div class="mec-modal-result"></div>');
2140
  $modal.addClass('mec-month-navigator-loading');
2141
 
2142
- $.ajax(
2143
- {
2144
  url: settings.ajax_url,
2145
- data: "action=mec_weeklyprogram_load&"+settings.atts+"&apply_sf_date=1",
2146
  dataType: "json",
2147
  type: "post",
2148
- success: function(response)
2149
- {
2150
  // Remove Loading Class
2151
  $modal.removeClass("mec-month-navigator-loading");
2152
 
2153
  // Append Month
2154
- $("#mec_skin_events_"+settings.id).html(response.date_events);
2155
 
2156
  // Set Listeners
2157
  setListeners();
2158
  },
2159
- error: function()
2160
- {
2161
- }
2162
  });
2163
  }
2164
 
2165
- function sed()
2166
- {
2167
  // Single Event Display
2168
- $("#mec_skin_"+settings.id+" .mec-event-title a").off('click').on('click', function(e)
2169
- {
2170
  e.preventDefault();
2171
  var href = $(this).attr('href');
2172
 
@@ -2181,13 +1939,10 @@ var mecSingleEventDisplayer = {
2181
  }(jQuery));
2182
 
2183
  // MEC MASONRY VIEW PLUGIN
2184
- (function($)
2185
- {
2186
- $.fn.mecMasonryView = function(options)
2187
- {
2188
  // Default Options
2189
- var settings = $.extend(
2190
- {
2191
  // These are the defaults.
2192
  id: 0,
2193
  atts: '',
@@ -2204,7 +1959,7 @@ var mecSingleEventDisplayer = {
2204
  // Init Masonry
2205
  jQuery(window).load(function () {
2206
  initMasonry();
2207
- if ( typeof custom_dev !== undefined ) var custom_dev;
2208
  if (custom_dev == 'yes') {
2209
  $(".mec-wrap").css("height", "1550");
2210
  if (Math.max(document.documentElement.clientWidth, window.innerWidth || 0) < 768) {
@@ -2244,6 +1999,7 @@ var mecSingleEventDisplayer = {
2244
  })
2245
  }
2246
  });
 
2247
  function initMasonry() {
2248
  var $container = $("#mec_skin_" + settings.id + " .mec-event-masonry");
2249
  var $grid = $container.isotope({
@@ -2260,30 +2016,35 @@ var mecSingleEventDisplayer = {
2260
  },
2261
  });
2262
 
2263
- if (settings.fit_to_row == 1) $grid.isotope({layoutMode: 'fitRows'});
 
 
2264
 
2265
  // Fix Elementor tab
2266
  $('.elementor-tabs').find('.elementor-tab-title').click(function () {
2267
- $grid.isotope({ sortBy: 'date' });
 
 
2268
  });
2269
 
2270
  $("#mec_skin_" + settings.id + " .mec-events-masonry-cats a").click(function () {
2271
  var selector = $(this).attr('data-filter');
2272
- var $grid_cat = $container.isotope(
2273
- {
2274
- filter: selector,
2275
- itemSelector: '.mec-masonry-item-wrap',
2276
- getSortData: {
2277
- date: '[data-sort-masonry]',
2278
- },
2279
- sortBy: 'date',
2280
- animationOptions: {
2281
- duration: 750,
2282
- easing: 'linear',
2283
- queue: false
2284
- },
2285
- });
2286
- if (settings.masonry_like_grid == 1) $grid_cat.isotope({ sortBy: 'date' });
 
2287
  return false;
2288
  });
2289
 
@@ -2302,25 +2063,20 @@ var mecSingleEventDisplayer = {
2302
  });
2303
  }
2304
 
2305
- function setListeners()
2306
- {
2307
- if(settings.sed_method != '0')
2308
- {
2309
  sed();
2310
  }
2311
 
2312
  }
2313
 
2314
- $("#mec_skin_"+settings.id+" .mec-load-more-button").on("click", function()
2315
- {
2316
  loadMore();
2317
  });
2318
 
2319
- function sed()
2320
- {
2321
  // Single Event Display
2322
- $("#mec_skin_"+settings.id+" .mec-event-title a, #mec_skin_"+settings.id+" .mec-booking-button").off('click').on('click', function(e)
2323
- {
2324
  e.preventDefault();
2325
  var href = $(this).attr('href');
2326
 
@@ -2331,60 +2087,51 @@ var mecSingleEventDisplayer = {
2331
  });
2332
  }
2333
 
2334
- function loadMore()
2335
- {
2336
  // Add loading Class
2337
- $("#mec_skin_"+settings.id+" .mec-load-more-button").addClass("mec-load-more-loading");
2338
 
2339
- $.ajax(
2340
- {
2341
  url: settings.ajax_url,
2342
- data: "action=mec_masonry_load_more&mec_start_date="+settings.end_date+"&mec_offset="+settings.offset+"&"+settings.atts+"&apply_sf_date=0",
2343
  dataType: "json",
2344
  type: "post",
2345
- success: function(response)
2346
- {
2347
- if(response.count == "0")
2348
- {
2349
  // Remove loading Class
2350
- $("#mec_skin_"+settings.id+" .mec-load-more-button").removeClass("mec-load-more-loading");
2351
 
2352
  // Hide load more button
2353
- $("#mec_skin_"+settings.id+" .mec-load-more-button").addClass("mec-util-hidden");
2354
- }
2355
- else
2356
- {
2357
  // Show load more button
2358
- $("#mec_skin_"+settings.id+" .mec-load-more-button").removeClass("mec-util-hidden");
2359
-
2360
  // Append Items
2361
- var node = $("#mec_skin_"+settings.id+" .mec-event-masonry");
2362
- var markup = '', newItems = $(response.html).find('.mec-masonry-item-wrap');
 
2363
 
2364
- newItems.each(function(index)
2365
- {
2366
  node.isotope()
2367
  .append(newItems[index])
2368
  .isotope('appended', newItems[index]);
2369
  });
2370
 
2371
  // Remove loading Class
2372
- $("#mec_skin_"+settings.id+" .mec-load-more-button").removeClass("mec-load-more-loading");
2373
 
2374
  // Update the variables
2375
  settings.end_date = response.end_date;
2376
  settings.offset = response.offset;
2377
-
2378
  // Single Event Method
2379
- if(settings.sed_method != '0')
2380
- {
2381
  sed();
2382
  }
2383
  }
2384
  },
2385
- error: function()
2386
- {
2387
- }
2388
  });
2389
  }
2390
  };
@@ -2392,13 +2139,10 @@ var mecSingleEventDisplayer = {
2392
 
2393
 
2394
  // MEC LIST VIEW PLUGIN
2395
- (function($)
2396
- {
2397
- $.fn.mecListView = function(options)
2398
- {
2399
  // Default Options
2400
- var settings = $.extend(
2401
- {
2402
  // These are the defaults.
2403
  id: 0,
2404
  atts: '',
@@ -2409,39 +2153,33 @@ var mecSingleEventDisplayer = {
2409
  offset: 0,
2410
  limit: 0
2411
  }, options);
2412
-
2413
  // Set onclick Listeners
2414
  setListeners();
2415
-
2416
  var sf;
2417
- function setListeners()
2418
- {
2419
  // Search Widget
2420
- if(settings.sf.container !== '')
2421
- {
2422
- sf = $(settings.sf.container).mecSearchForm(
2423
- {
2424
  id: settings.id,
2425
  atts: settings.atts,
2426
- callback: function(atts)
2427
- {
2428
  settings.atts = atts;
2429
  search();
2430
  }
2431
  });
2432
  }
2433
-
2434
- $("#mec_skin_"+settings.id+" .mec-load-more-button").on("click", function()
2435
- {
2436
  loadMore();
2437
  });
2438
 
2439
  // Accordion Toggle
2440
- if(settings.style === 'accordion')
2441
- {
2442
- if(settings.toggle_month_divider)
2443
- {
2444
- $('#mec_skin_'+settings.id+' .mec-month-divider:first-of-type').addClass('active');
2445
  $('#mec_skin_' + settings.id + ' .mec-month-divider:first-of-type').find('i').removeClass('mec-sl-arrow-down').addClass('mec-sl-arrow-up');
2446
 
2447
  toggle();
@@ -2451,80 +2189,67 @@ var mecSingleEventDisplayer = {
2451
  }
2452
 
2453
  // Single Event Method
2454
- if(settings.sed_method != '0')
2455
- {
2456
  sed();
2457
  }
2458
  }
2459
 
2460
- function toggle()
2461
- {
2462
- $('#mec_skin_'+settings.id+' .mec-month-divider').off("click").on("click", function(event)
2463
- {
2464
  event.preventDefault();
2465
 
2466
  var status = $(this).hasClass('active');
2467
 
2468
  // Remove Active Style of Month Divider
2469
- $('#mec_skin_'+settings.id+' .mec-month-divider').removeClass('active');
2470
 
2471
  // Hide All Events
2472
- $('#mec_skin_'+settings.id+' .mec-divider-toggle').slideUp('fast');
2473
 
2474
- if(status)
2475
- {
2476
  $(this).removeClass('active');
2477
  $('.mec-month-divider').find('i').removeClass('mec-sl-arrow-up').addClass('mec-sl-arrow-down');
2478
- }
2479
- else
2480
- {
2481
  $(this).addClass('active');
2482
  $('.mec-month-divider').find('i').removeClass('mec-sl-arrow-up').addClass('mec-sl-arrow-down')
2483
  $(this).find('i').removeClass('mec-sl-arrow-down').addClass('mec-sl-arrow-up');
2484
 
2485
  var month = $(this).data('toggle-divider');
2486
- $('#mec_skin_'+settings.id+' .'+month).slideDown('fast');
2487
  }
2488
  });
2489
  }
2490
 
2491
- function toggleLoadmore()
2492
- {
2493
- $('#mec_skin_'+settings.id+' .mec-month-divider:not(.active)').each(function()
2494
- {
2495
  var month = $(this).data('toggle-divider');
2496
- $('#mec_skin_'+settings.id+' .'+month).slideUp('fast');
2497
  });
2498
 
2499
  // Register Listeners
2500
  toggle();
2501
  }
2502
 
2503
- function accordion()
2504
- {
2505
  // Accordion Toggle
2506
- $("#mec_skin_"+settings.id+" .mec-toggle-item-inner").off("click").on("click", function(event)
2507
- {
2508
  event.preventDefault();
2509
 
2510
  var $this = $(this);
2511
- $(this).parent().find(".mec-content-toggle").slideToggle("fast", function()
2512
- {
2513
  $this.children("i").toggleClass("mec-sl-arrow-down mec-sl-arrow-up");
2514
  });
2515
 
2516
  // Trigger Google Map
2517
  var unique_id = $(this).parent().find(".mec-modal-wrap").data('unique-id');
2518
 
2519
- window['mec_init_gmap'+unique_id]();
2520
  });
2521
  }
2522
-
2523
- function sed()
2524
- {
2525
  // Single Event Display
2526
- $("#mec_skin_"+settings.id+" .mec-event-title a, #mec_skin_"+settings.id+" .mec-booking-button, #mec_skin_"+settings.id+" .mec-detail-button").off('click').on('click', function(e)
2527
- {
2528
  e.preventDefault();
2529
  var href = $(this).attr('href');
2530
 
@@ -2534,8 +2259,7 @@ var mecSingleEventDisplayer = {
2534
  mecSingleEventDisplayer.getSinglePage(id, occurrence, settings.ajax_url, settings.sed_method, settings.image_popup);
2535
  });
2536
 
2537
- $("#mec_skin_"+settings.id+" .mec-event-image a img").off('click').on('click', function(e)
2538
- {
2539
  e.preventDefault();
2540
  var href = $(this).parent().attr('href');
2541
 
@@ -2545,88 +2269,74 @@ var mecSingleEventDisplayer = {
2545
  mecSingleEventDisplayer.getSinglePage(id, occurrence, settings.ajax_url, settings.sed_method, settings.image_popup);
2546
  });
2547
  }
2548
-
2549
- function loadMore()
2550
- {
2551
  // Add loading Class
2552
- $("#mec_skin_"+settings.id+" .mec-load-more-button").addClass("mec-load-more-loading");
2553
 
2554
- $.ajax(
2555
- {
2556
  url: settings.ajax_url,
2557
- data: "action=mec_list_load_more&mec_start_date="+settings.end_date+"&mec_offset="+settings.offset+"&"+settings.atts+"&current_month_divider="+settings.current_month_divider+"&apply_sf_date=0",
2558
  dataType: "json",
2559
  type: "post",
2560
- success: function(response)
2561
- {
2562
- if(response.count == '0')
2563
- {
2564
  // Remove loading Class
2565
- $("#mec_skin_"+settings.id+" .mec-load-more-button").removeClass("mec-load-more-loading");
2566
 
2567
  // Hide load more button
2568
- $("#mec_skin_"+settings.id+" .mec-load-more-button").addClass("mec-util-hidden");
2569
- }
2570
- else
2571
- {
2572
  // Show load more button
2573
- $("#mec_skin_"+settings.id+" .mec-load-more-button").removeClass("mec-util-hidden");
2574
-
2575
  // Append Items
2576
- $("#mec_skin_events_"+settings.id).append(response.html);
2577
 
2578
  // Remove loading Class
2579
- $("#mec_skin_"+settings.id+" .mec-load-more-button").removeClass("mec-load-more-loading");
2580
 
2581
  // Update the variables
2582
  settings.end_date = response.end_date;
2583
  settings.offset = response.offset;
2584
  settings.current_month_divider = response.current_month_divider;
2585
-
2586
  // Single Event Method
2587
- if(settings.sed_method != '0')
2588
- {
2589
  sed();
2590
  }
2591
 
2592
  // Accordion Toggle
2593
- if(settings.style === 'accordion')
2594
- {
2595
- if(settings.toggle_month_divider) toggleLoadmore();
2596
 
2597
  accordion();
2598
  }
2599
  }
2600
  },
2601
- error: function()
2602
- {
2603
- }
2604
  });
2605
  }
2606
-
2607
- function search()
2608
- {
2609
  // Hide no event message
2610
- $("#mec_skin_no_events_"+settings.id).addClass("mec-util-hidden");
2611
-
2612
  // Add loading Class
2613
- if(jQuery('.mec-modal-result').length === 0) jQuery('.mec-wrap').append('<div class="mec-modal-result"></div>');
2614
  jQuery('.mec-modal-result').addClass('mec-month-navigator-loading');
2615
  jQuery("#gmap-data").val("");
2616
 
2617
- $.ajax(
2618
- {
2619
  url: settings.ajax_url,
2620
- data: "action=mec_list_load_more&mec_start_date="+settings.start_date+"&"+settings.atts+"&current_month_divider=0&apply_sf_date=1",
2621
  dataType: "json",
2622
  type: "post",
2623
- success: function(response)
2624
- {
2625
- if(response.count == "0")
2626
- {
2627
  // Append Items
2628
- $("#mec_skin_events_"+settings.id).html('');
2629
-
2630
  // Remove loading Class
2631
  $('.mec-modal-result').removeClass("mec-month-navigator-loading");
2632
 
@@ -2634,15 +2344,13 @@ var mecSingleEventDisplayer = {
2634
  $('.mec-skin-map-container').addClass("mec-util-hidden");
2635
 
2636
  // Hide it
2637
- $("#mec_skin_"+settings.id+" .mec-load-more-button").addClass("mec-util-hidden");
2638
-
2639
  // Show no event message
2640
- $("#mec_skin_no_events_"+settings.id).removeClass("mec-util-hidden");
2641
- }
2642
- else
2643
- {
2644
  // Append Items
2645
- $("#mec_skin_events_"+settings.id).html(response.html);
2646
 
2647
  // Remove loading Class
2648
  $('.mec-modal-result').removeClass("mec-month-navigator-loading");
@@ -2651,47 +2359,40 @@ var mecSingleEventDisplayer = {
2651
  $('.mec-skin-map-container').removeClass("mec-util-hidden");
2652
 
2653
  // Show load more button
2654
- if(response.count >= settings.limit) $("#mec_skin_"+settings.id+" .mec-load-more-button").removeClass("mec-util-hidden");
2655
  // Hide load more button
2656
- else $("#mec_skin_"+settings.id+" .mec-load-more-button").addClass("mec-util-hidden");
2657
 
2658
  // Update the variables
2659
  settings.end_date = response.end_date;
2660
- settings.offset = response.offset;
2661
  settings.current_month_divider = response.current_month_divider;
2662
-
2663
  // Single Event Method
2664
- if(settings.sed_method != '0')
2665
- {
2666
  sed();
2667
  }
2668
 
2669
  // Accordion Toggle
2670
- if(settings.style === 'accordion')
2671
- {
2672
- if(settings.toggle_month_divider) toggle();
2673
 
2674
  accordion();
2675
  }
2676
  }
2677
  },
2678
- error: function()
2679
- {
2680
- }
2681
  });
2682
  }
2683
  };
2684
-
2685
  }(jQuery));
2686
 
2687
  // MEC GRID VIEW PLUGIN
2688
- (function($)
2689
- {
2690
- $.fn.mecGridView = function(options)
2691
- {
2692
  // Default Options
2693
- var settings = $.extend(
2694
- {
2695
  // These are the defaults.
2696
  id: 0,
2697
  atts: '',
@@ -2701,45 +2402,38 @@ var mecSingleEventDisplayer = {
2701
  offset: 0,
2702
  start_date: '',
2703
  }, options);
2704
-
2705
  // Set onclick Listeners
2706
  setListeners();
2707
-
2708
  var sf;
2709
- function setListeners()
2710
- {
2711
  // Search Widget
2712
- if(settings.sf.container !== '')
2713
- {
2714
- sf = $(settings.sf.container).mecSearchForm(
2715
- {
2716
  id: settings.id,
2717
  atts: settings.atts,
2718
- callback: function(atts)
2719
- {
2720
  settings.atts = atts;
2721
  search();
2722
  }
2723
  });
2724
  }
2725
-
2726
- $("#mec_skin_"+settings.id+" .mec-load-more-button").on("click", function()
2727
- {
2728
  loadMore();
2729
  });
2730
-
2731
  // Single Event Method
2732
- if(settings.sed_method != '0')
2733
- {
2734
  sed();
2735
  }
2736
  }
2737
-
2738
- function sed()
2739
- {
2740
  // Single Event Display
2741
- $("#mec_skin_"+settings.id+" .mec-event-title a, #mec_skin_"+settings.id+" .mec-booking-button").off('click').on('click', function(e)
2742
- {
2743
  e.preventDefault();
2744
  var href = $(this).attr('href');
2745
 
@@ -2748,8 +2442,7 @@ var mecSingleEventDisplayer = {
2748
 
2749
  mecSingleEventDisplayer.getSinglePage(id, occurrence, settings.ajax_url, settings.sed_method, settings.image_popup);
2750
  });
2751
- $("#mec_skin_"+settings.id+" .mec-event-image a img").off('click').on('click', function(e)
2752
- {
2753
  e.preventDefault();
2754
  var href = $(this).parent().attr('href');
2755
 
@@ -2759,79 +2452,66 @@ var mecSingleEventDisplayer = {
2759
  mecSingleEventDisplayer.getSinglePage(id, occurrence, settings.ajax_url, settings.sed_method, settings.image_popup);
2760
  });
2761
  }
2762
-
2763
- function loadMore()
2764
- {
2765
  // Add loading Class
2766
- $("#mec_skin_"+settings.id+" .mec-load-more-button").addClass("mec-load-more-loading");
2767
 
2768
- $.ajax(
2769
- {
2770
  url: settings.ajax_url,
2771
- data: "action=mec_grid_load_more&mec_start_date="+settings.end_date+"&mec_offset="+settings.offset+"&"+settings.atts+"&apply_sf_date=0",
2772
  dataType: "json",
2773
  type: "post",
2774
- success: function(response)
2775
- {
2776
- if(response.count == "0")
2777
- {
2778
  // Remove loading Class
2779
- $("#mec_skin_"+settings.id+" .mec-load-more-button").removeClass("mec-load-more-loading");
2780
 
2781
  // Hide load more button
2782
- $("#mec_skin_"+settings.id+" .mec-load-more-button").addClass("mec-util-hidden");
2783
- }
2784
- else
2785
- {
2786
  // Show load more button
2787
- $("#mec_skin_"+settings.id+" .mec-load-more-button").removeClass("mec-util-hidden");
2788
-
2789
  // Append Items
2790
- $("#mec_skin_events_"+settings.id).append(response.html);
2791
 
2792
  // Remove loading Class
2793
- $("#mec_skin_"+settings.id+" .mec-load-more-button").removeClass("mec-load-more-loading");
2794
 
2795
  // Update the variables
2796
  settings.end_date = response.end_date;
2797
  settings.offset = response.offset;
2798
-
2799
  // Single Event Method
2800
- if(settings.sed_method != '0')
2801
- {
2802
  sed();
2803
  }
2804
  }
2805
  },
2806
- error: function()
2807
- {
2808
- }
2809
  });
2810
  }
2811
-
2812
- function search()
2813
- {
2814
  // Hide no event message
2815
- $("#mec_skin_no_events_"+settings.id).addClass("mec-util-hidden");
2816
-
2817
  // Add loading Class
2818
- if(jQuery('.mec-modal-result').length === 0) jQuery('.mec-wrap').append('<div class="mec-modal-result"></div>');
2819
  jQuery('.mec-modal-result').addClass('mec-month-navigator-loading');
2820
  jQuery("#gmap-data").val("");
2821
-
2822
- $.ajax(
2823
- {
2824
  url: settings.ajax_url,
2825
- data: "action=mec_grid_load_more&mec_start_date="+settings.start_date+"&"+settings.atts+"&apply_sf_date=1",
2826
  dataType: "json",
2827
  type: "post",
2828
- success: function(response)
2829
- {
2830
- if(response.count == "0")
2831
- {
2832
  // Append Items
2833
- $("#mec_skin_events_"+settings.id).html('');
2834
-
2835
  // Remove loading Class
2836
  $('.mec-modal-result').removeClass("mec-month-navigator-loading");
2837
 
@@ -2839,15 +2519,180 @@ var mecSingleEventDisplayer = {
2839
  $('.mec-skin-map-container').addClass("mec-util-hidden");
2840
 
2841
  // Hide it
2842
- $("#mec_skin_"+settings.id+" .mec-load-more-button").addClass("mec-util-hidden");
2843
-
2844
  // Show no event message
2845
- $("#mec_skin_no_events_"+settings.id).removeClass("mec-util-hidden");
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2846
  }
2847
- else
2848
- {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2849
  // Append Items
2850
- $("#mec_skin_events_"+settings.id).html(response.html);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2851
 
2852
  // Remove loading Class
2853
  $('.mec-modal-result').removeClass("mec-month-navigator-loading");
@@ -2856,38 +2701,32 @@ var mecSingleEventDisplayer = {
2856
  $('.mec-skin-map-container').removeClass("mec-util-hidden");
2857
 
2858
  // Show load more button
2859
- if(response.count >= settings.limit) $("#mec_skin_"+settings.id+" .mec-load-more-button").removeClass("mec-util-hidden");
2860
  // Hide load more button
2861
- else $("#mec_skin_"+settings.id+" .mec-load-more-button").addClass("mec-util-hidden");
2862
 
2863
  // Update the variables
2864
  settings.end_date = response.end_date;
2865
- settings.offset = response.offset;
2866
-
2867
  // Single Event Method
2868
- if(settings.sed_method != '0')
2869
- {
2870
  sed();
2871
  }
2872
  }
2873
  },
2874
- error: function()
2875
- {
2876
- }
2877
  });
2878
  }
2879
  };
2880
-
2881
  }(jQuery));
2882
 
2883
  // MEC AGENDA VIEW PLUGIN
2884
- (function($)
2885
- {
2886
- $.fn.mecAgendaView = function(options)
2887
- {
2888
  // Default Options
2889
- var settings = $.extend(
2890
- {
2891
  // These are the defaults.
2892
  id: 0,
2893
  atts: '',
@@ -2902,40 +2741,33 @@ var mecSingleEventDisplayer = {
2902
  setListeners();
2903
 
2904
  var sf;
2905
- function setListeners()
2906
- {
2907
  // Search Widget
2908
- if(settings.sf.container !== '')
2909
- {
2910
- sf = $(settings.sf.container).mecSearchForm(
2911
- {
2912
  id: settings.id,
2913
  atts: settings.atts,
2914
- callback: function(atts)
2915
- {
2916
  settings.atts = atts;
2917
  search();
2918
  }
2919
  });
2920
  }
2921
 
2922
- $("#mec_skin_"+settings.id+" .mec-load-more-button").on("click", function()
2923
- {
2924
  loadMore();
2925
  });
2926
 
2927
  // Single Event Method
2928
- if(settings.sed_method != '0')
2929
- {
2930
  sed();
2931
  }
2932
  }
2933
 
2934
- function sed()
2935
- {
2936
  // Single Event Display
2937
- $("#mec_skin_"+settings.id+" .mec-agenda-event-title a").off('click').on('click', function(e)
2938
- {
2939
  e.preventDefault();
2940
  var href = $(this).attr('href');
2941
 
@@ -2946,37 +2778,31 @@ var mecSingleEventDisplayer = {
2946
  });
2947
  }
2948
 
2949
- function loadMore()
2950
- {
2951
  // Add loading Class
2952
- $("#mec_skin_"+settings.id+" .mec-load-more-button").addClass("mec-load-more-loading");
2953
 
2954
- $.ajax(
2955
- {
2956
  url: settings.ajax_url,
2957
- data: "action=mec_agenda_load_more&mec_start_date="+settings.end_date+"&mec_offset="+settings.offset+"&"+settings.atts+"&current_month_divider="+settings.current_month_divider+"&apply_sf_date=0",
2958
  dataType: "json",
2959
  type: "post",
2960
- success: function(response)
2961
- {
2962
- if(response.count == "0")
2963
- {
2964
  // Remove loading Class
2965
- $("#mec_skin_"+settings.id+" .mec-load-more-button").removeClass("mec-load-more-loading");
2966
 
2967
  // Hide load more button
2968
- $("#mec_skin_"+settings.id+" .mec-load-more-button").addClass("mec-util-hidden");
2969
- }
2970
- else
2971
- {
2972
  // Show load more button
2973
- $("#mec_skin_"+settings.id+" .mec-load-more-button").removeClass("mec-util-hidden");
2974
 
2975
  // Append Items
2976
- $("#mec_skin_events_"+settings.id+" .mec-events-agenda-container").append(response.html);
2977
 
2978
  // Remove loading Class
2979
- $("#mec_skin_"+settings.id+" .mec-load-more-button").removeClass("mec-load-more-loading");
2980
 
2981
  // Update the variables
2982
  settings.end_date = response.end_date;
@@ -2984,61 +2810,52 @@ var mecSingleEventDisplayer = {
2984
  settings.current_month_divider = response.current_month_divider;
2985
 
2986
  // Single Event Method
2987
- if(settings.sed_method != '0')
2988
- {
2989
  sed();
2990
  }
2991
  }
2992
  },
2993
- error: function()
2994
- {
2995
- }
2996
  });
2997
  }
2998
 
2999
- function search()
3000
- {
3001
  // Hide no event message
3002
- $("#mec_skin_no_events_"+settings.id).addClass("mec-util-hidden");
3003
 
3004
  // Add loading Class
3005
- if(jQuery('.mec-modal-result').length === 0) jQuery('.mec-wrap').append('<div class="mec-modal-result"></div>');
3006
  jQuery('.mec-modal-result').addClass('mec-month-navigator-loading');
3007
 
3008
- $.ajax(
3009
- {
3010
  url: settings.ajax_url,
3011
- data: "action=mec_agenda_load_more&mec_start_date="+settings.start_date+"&"+settings.atts+"&current_month_divider=0&apply_sf_date=1",
3012
  dataType: "json",
3013
  type: "post",
3014
- success: function(response)
3015
- {
3016
- if(response.count == "0")
3017
- {
3018
  // Append Items
3019
- $("#mec_skin_events_"+settings.id+" .mec-events-agenda-container").html('');
3020
 
3021
  // Remove loading Class
3022
  $('.mec-modal-result').removeClass("mec-month-navigator-loading");
3023
-
3024
  // Hide it
3025
- $("#mec_skin_"+settings.id+" .mec-load-more-button").addClass("mec-util-hidden");
3026
 
3027
  // Show no event message
3028
- $("#mec_skin_no_events_"+settings.id).removeClass("mec-util-hidden");
3029
- }
3030
- else
3031
- {
3032
  // Append Items
3033
- $("#mec_skin_events_"+settings.id+" .mec-events-agenda-container").html(response.html);
3034
 
3035
  // Remove loading Class
3036
  $('.mec-modal-result').removeClass("mec-month-navigator-loading");
3037
 
3038
  // Show load more button
3039
- if(response.count >= settings.limit) $("#mec_skin_"+settings.id+" .mec-load-more-button").removeClass("mec-util-hidden");
3040
  // Hide load more button
3041
- else $("#mec_skin_"+settings.id+" .mec-load-more-button").addClass("mec-util-hidden");
3042
 
3043
  // Update the variables
3044
  settings.end_date = response.end_date;
@@ -3046,44 +2863,37 @@ var mecSingleEventDisplayer = {
3046
  settings.current_month_divider = response.current_month_divider;
3047
 
3048
  // Single Event Method
3049
- if(settings.sed_method != '0')
3050
- {
3051
  sed();
3052
  }
3053
  }
3054
  },
3055
- error: function()
3056
- {
3057
- }
3058
  });
3059
  }
3060
  };
3061
  }(jQuery));
3062
 
3063
  // MEC CAROUSEL VIEW PLUGIN
3064
- (function($)
3065
- {
3066
- $.fn.mecCarouselView = function(options)
3067
- {
3068
  // Default Options
3069
- var settings = $.extend(
3070
- {
3071
  // These are the defaults.
3072
  id: 0,
3073
  atts: '',
3074
  ajax_url: '',
3075
  sf: {},
3076
  items: 3,
3077
- autoplay:'',
3078
  style: 'type1',
3079
  start_date: ''
3080
  }, options);
3081
-
3082
  // Init Sliders
3083
  initSlider();
3084
-
3085
- function initSlider()
3086
- {
3087
  // Check RTL website
3088
  if ($('body').hasClass('rtl')) {
3089
  var owl_rtl = true;
@@ -3091,14 +2901,12 @@ var mecSingleEventDisplayer = {
3091
  var owl_rtl = false;
3092
  }
3093
 
3094
- if(settings.style === 'type1')
3095
- {
3096
-
3097
  // Start carousel skin
3098
- var owl = $("#mec_skin_"+settings.id+" .mec-event-carousel-type1 .mec-owl-carousel");
3099
 
3100
- owl.owlCarousel(
3101
- {
3102
  autoplay: true,
3103
  autoplayTimeout: settings.autoplay, // Set AutoPlay to 3 seconds
3104
  loop: true,
@@ -3117,7 +2925,7 @@ var mecSingleEventDisplayer = {
3117
  },
3118
  dots: true,
3119
  nav: false,
3120
- autoplayHoverPause:true,
3121
  rtl: owl_rtl,
3122
  });
3123
  owl.bind(
@@ -3126,45 +2934,39 @@ var mecSingleEventDisplayer = {
3126
  $("#mec_skin_" + settings.id + " .mec-owl-carousel").trigger('play.owl.autoplay');
3127
  }
3128
  );
3129
- }
3130
- else if (settings.style === 'type4')
3131
- {
3132
- $("#mec_skin_" + settings.id + " .mec-owl-carousel").owlCarousel(
3133
- {
3134
- autoplay: true,
3135
- loop: true,
3136
- autoplayTimeout: settings.autoplay,
3137
- items: settings.items,
3138
- dots: false,
3139
- nav: true,
3140
- responsiveClass: true,
3141
- responsive: {
3142
- 0: {
3143
- items: 1,
3144
- stagePadding: 50,
3145
- },
3146
- 979: {
3147
- items: 2,
3148
- },
3149
- 1199: {
3150
- items: settings.count,
3151
- }
3152
  },
3153
- autoplayHoverPause: true,
3154
- navText: ["<i class='mec-sl-arrow-left'></i>", " <i class='mec-sl-arrow-right'></i>"],
3155
- rtl: owl_rtl,
3156
- });
 
 
 
 
 
 
 
3157
  $("#mec_skin_" + settings.id + " .mec-owl-carousel").bind(
3158
  "mouseleave",
3159
  function (event) {
3160
  $("#mec_skin_" + settings.id + " .mec-owl-carousel").trigger('play.owl.autoplay');
3161
  }
3162
  );
3163
- }
3164
- else
3165
- {
3166
- $("#mec_skin_"+settings.id+" .mec-owl-carousel").owlCarousel(
3167
- {
3168
  autoplay: true,
3169
  loop: true,
3170
  autoplayTimeout: settings.autoplay,
@@ -3183,30 +2985,27 @@ var mecSingleEventDisplayer = {
3183
  items: settings.count,
3184
  }
3185
  },
3186
- autoplayHoverPause:true,
3187
- navText: ["<i class='mec-sl-arrow-left'></i>"," <i class='mec-sl-arrow-right'></i>"],
3188
  rtl: owl_rtl,
3189
  });
3190
  $("#mec_skin_" + settings.id + " .mec-owl-carousel").bind(
3191
  "mouseleave",
3192
  function (event) {
3193
- $( "#mec_skin_" + settings.id + " .mec-owl-carousel" ).trigger( 'play.owl.autoplay' );
3194
  }
3195
  );
3196
  }
3197
  }
3198
  };
3199
-
3200
  }(jQuery));
3201
 
3202
  // MEC SLIDER VIEW PLUGIN
3203
- (function($)
3204
- {
3205
- $.fn.mecSliderView = function(options)
3206
- {
3207
  // Default Options
3208
- var settings = $.extend(
3209
- {
3210
  // These are the defaults.
3211
  id: 0,
3212
  atts: '',
@@ -3218,8 +3017,8 @@ var mecSingleEventDisplayer = {
3218
 
3219
  // Init Sliders
3220
  initSlider();
3221
- function initSlider()
3222
- {
3223
  // Check RTL website
3224
  if ($('body').hasClass('rtl')) {
3225
  var owl_rtl = true;
@@ -3227,8 +3026,7 @@ var mecSingleEventDisplayer = {
3227
  var owl_rtl = false;
3228
  }
3229
 
3230
- $("#mec_skin_"+settings.id+" .mec-owl-carousel").owlCarousel(
3231
- {
3232
  autoplay: true,
3233
  autoplayTimeout: settings.autoplay,
3234
  loop: true,
@@ -3257,13 +3055,10 @@ var mecSingleEventDisplayer = {
3257
  }(jQuery));
3258
 
3259
  // MEC COUNTDOWN MODULE
3260
- (function($)
3261
- {
3262
- $.fn.mecCountDown = function(options, callBack)
3263
- {
3264
  // Default Options
3265
- var settings = $.extend(
3266
- {
3267
  // These are the defaults.
3268
  date: null,
3269
  format: null
@@ -3271,120 +3066,105 @@ var mecSingleEventDisplayer = {
3271
 
3272
  var callback = callBack;
3273
  var selector = $(this);
3274
-
3275
  startCountdown();
3276
  var interval = setInterval(startCountdown, 1000);
3277
-
3278
- function startCountdown()
3279
- {
3280
  var eventDate = Date.parse(settings.date) / 1000;
3281
  var currentDate = Math.floor($.now() / 1000);
3282
 
3283
- if(eventDate <= currentDate)
3284
- {
3285
  callback.call(this);
3286
  clearInterval(interval);
3287
  }
3288
 
3289
  var seconds = eventDate - currentDate;
3290
 
3291
- var days = Math.floor(seconds / (60 * 60 * 24));
3292
- seconds -= days * 60 * 60 * 24;
3293
 
3294
  var hours = Math.floor(seconds / (60 * 60));
3295
- seconds -= hours * 60 * 60;
3296
 
3297
  var minutes = Math.floor(seconds / 60);
3298
  seconds -= minutes * 60;
3299
-
3300
- if(days == 1) selector.find(".mec-timeRefDays").text(mecdata.day);
3301
  else selector.find(".mec-timeRefDays").text(mecdata.days);
3302
-
3303
- if(hours == 1) selector.find(".mec-timeRefHours").text(mecdata.hour);
3304
  else selector.find(".mec-timeRefHours").text(mecdata.hours);
3305
-
3306
- if(minutes == 1) selector.find(".mec-timeRefMinutes").text(mecdata.minute);
3307
  else selector.find(".mec-timeRefMinutes").text(mecdata.minutes);
3308
-
3309
- if(seconds == 1) selector.find(".mec-timeRefSeconds").text(mecdata.second);
3310
  else selector.find(".mec-timeRefSeconds").text(mecdata.seconds);
3311
 
3312
- if(settings.format === "on")
3313
- {
3314
  days = (String(days).length >= 2) ? days : "0" + days;
3315
  hours = (String(hours).length >= 2) ? hours : "0" + hours;
3316
  minutes = (String(minutes).length >= 2) ? minutes : "0" + minutes;
3317
  seconds = (String(seconds).length >= 2) ? seconds : "0" + seconds;
3318
  }
3319
 
3320
- if(!isNaN(eventDate))
3321
- {
3322
  selector.find(".mec-days").text(days);
3323
  selector.find(".mec-hours").text(hours);
3324
  selector.find(".mec-minutes").text(minutes);
3325
  selector.find(".mec-seconds").text(seconds);
3326
- }
3327
- else
3328
- {
3329
  clearInterval(interval);
3330
  }
3331
  }
3332
  };
3333
-
3334
  }(jQuery));
3335
 
3336
- function mec_gateway_selected(gateway_id)
3337
- {
3338
  // Hide all gateway forms
3339
  jQuery('.mec-book-form-gateway-checkout').addClass('mec-util-hidden');
3340
-
3341
  // Show selected gateway form
3342
- jQuery('#mec_book_form_gateway_checkout'+gateway_id).removeClass('mec-util-hidden');
3343
  }
3344
 
3345
- function mec_wrap_resize()
3346
- {
3347
- var $mec_wrap = jQuery('.mec-wrap'), mec_width = $mec_wrap.width();
3348
- if(mec_width < 959)
3349
- {
3350
  $mec_wrap.addClass('mec-sm959');
3351
- }
3352
- else
3353
- {
3354
  $mec_wrap.removeClass('mec-sm959');
3355
  }
3356
  }
3357
 
3358
- function get_parameter_by_name(name, url)
3359
- {
3360
- if(!url)
3361
- {
3362
  url = window.location.href;
3363
  }
3364
-
3365
  name = name.replace(/[\[\]]/g, "\\$&");
3366
  var regex = new RegExp("[?&]" + name + "(=([^&#]*)|&|#|$)"),
3367
  results = regex.exec(url);
3368
 
3369
- if(!results) return null;
3370
- if(!results[2]) return '';
3371
-
3372
  return decodeURIComponent(results[2].replace(/\+/g, " "));
3373
  }
3374
 
3375
  // Focus events day
3376
  var mec_g_month_id = null;
3377
- function mec_focus_day(id)
3378
- {
3379
- setTimeout(function()
3380
- {
3381
- var owl_go = jQuery("#mec-owl-calendar-d-table-"+id+"-"+mec_g_month_id);
3382
- owl_go.find('.owl-stage > div').each(function(index)
3383
- {
3384
- if(parseInt(jQuery(this).children('div').data("events-count")) > 0)
3385
- {
3386
- var index_plus = index+1;
3387
- jQuery('#mec_daily_view_day'+id+'_'+mec_g_month_id+(index < 10 ? '0'+index_plus:index_plus)).trigger('click');
3388
  owl_go.trigger('to.owl.carousel', index_plus);
3389
  return false;
3390
  }
@@ -3393,23 +3173,18 @@ function mec_focus_day(id)
3393
  }
3394
 
3395
  // Focus events week
3396
- function mec_focus_week(id)
3397
- {
3398
  var days = jQuery('.mec-weeks-container .mec-weekly-view-week-active').parent().find('dt');
3399
  var days_count = parseInt(days.length);
3400
- days.each(function(index)
3401
- {
3402
- var index_plus = index+1;
3403
  var week = parseInt(jQuery(this).parent().index());
3404
-
3405
- if(jQuery(this).data('events-count') > 0)
3406
- {
3407
- for(var i = 0; i < week; i++)
3408
- {
3409
- setTimeout(function()
3410
- {
3411
  var event = new Event('click');
3412
- jQuery('#mec_skin_'+id+' .mec-next-month.mec-load-week')[0].dispatchEvent(event);
3413
  }, 33);
3414
  }
3415
  return false;
@@ -3418,10 +3193,8 @@ function mec_focus_week(id)
3418
  }
3419
 
3420
  // TODO must be cleaned JS codes
3421
- (function($)
3422
- {
3423
- $(document).ready(function()
3424
- {
3425
  // Check RTL website
3426
  if ($('body').hasClass('rtl')) {
3427
  var owl_rtl = true;
@@ -3431,8 +3204,7 @@ function mec_focus_week(id)
3431
 
3432
  // MEC WIDGET CAROUSEL
3433
  $(".mec-widget .mec-event-grid-classic").addClass('mec-owl-carousel mec-owl-theme');
3434
- $(".mec-widget .mec-event-grid-classic").owlCarousel(
3435
- {
3436
  autoplay: true,
3437
  autoplayTimeout: 3000, // Set AutoPlay to 3 seconds
3438
  autoplayHoverPause: true,
@@ -3445,39 +3217,32 @@ function mec_focus_week(id)
3445
  responsiveClass: true,
3446
  rtl: owl_rtl,
3447
  });
3448
-
3449
  // add mec-sm959 class if mec-wrap div size < 959
3450
  mec_wrap_resize();
3451
-
3452
- jQuery(window).bind('resize', function()
3453
- {
3454
  mec_wrap_resize();
3455
  });
3456
 
3457
  // Fixed: social hover in iphone
3458
- $('.mec-event-sharing-wrap').hover(function()
3459
- {
3460
- $(this).find('.mec-event-sharing').show(0);
3461
- },
3462
- function()
3463
- {
3464
- $(this).find('.mec-event-sharing').hide(0);
3465
- });
3466
 
3467
  // Register Booking Smooth Scroll
3468
- $('a.simple-booking[href^="#mec-events-meta-group-booking"]').click(function()
3469
- {
3470
- if(location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname)
3471
- {
3472
  var target = $(this.hash);
3473
- target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
3474
 
3475
- if(target.length)
3476
- {
3477
  var scrollTopVal = target.offset().top - 30;
3478
 
3479
- $('html, body').animate(
3480
- {
3481
  scrollTop: scrollTopVal
3482
  }, 600);
3483
 
@@ -3501,120 +3266,99 @@ function mec_focus_week(id)
3501
  })(jQuery);
3502
 
3503
  // Weather
3504
- (function($){
3505
- // Convart fahrenheit to centigrade
3506
- function convertToC(value)
3507
- {
3508
- return Math.round(((parseFloat(value) -32) *5 /9));
3509
- }
3510
-
3511
- // Convert centigrade to fahrenheit
3512
- function convertToF(value)
3513
- {
3514
- return Math.round(((1.8 * parseFloat(value)) +32));
3515
- }
3516
-
3517
- // Convert miles to kilometers
3518
- function MPHToKPH(value)
3519
- {
3520
  return Math.round(1.609344 * parseFloat(value));
3521
- }
3522
-
3523
- // Convert kilometers to miles
3524
- function KPHToMPH(value)
3525
- {
3526
  return Math.round((0.6214 * parseFloat(value)));
3527
- }
3528
 
3529
- $(document).ready(function($)
3530
- {
3531
  var degree = $('.mec-weather-summary-temp');
3532
  var weather_extra = $('.mec-weather-extras');
3533
  var wind = weather_extra.children('.mec-weather-wind');
3534
  var visibility = weather_extra.children('.mec-weather-visibility');
3535
 
3536
  // Events
3537
- $('.degrees-mode').click(function()
3538
- {
3539
  var degree_mode = degree.children('var').text().trim();
3540
  var wind_text = wind.text().substring(5);
3541
  var visibility_text = visibility.text().substring(11);
3542
 
3543
- if(degree_mode == degree.data('c').trim())
3544
- {
3545
- degree.html(convertToF(parseInt(degree.text())) +' <var>'+degree.data('f')+'</var>');
3546
- wind.html('<span>Wind:</span> '+ KPHToMPH(parseInt(wind_text)) +'<var>'+wind.data('mph')+'</var>');
3547
- visibility.html('<span>Visibility:</span> ' + KPHToMPH(parseInt(visibility_text)) +'<var>'+visibility.data('mph')+'</var>');
3548
  $(this).text($(this).data('metric'));
3549
- }
3550
- else if(degree_mode == degree.data('f').trim())
3551
- {
3552
- degree.html(convertToC(parseInt(degree.text())) +' <var>'+degree.data('c')+'</var>');
3553
- wind.html('<span>Wind:</span> '+ MPHToKPH(parseInt(wind_text)) +'<var>'+wind.data('kph')+'</var>');
3554
- visibility.html('<span>Visibility:</span> ' + MPHToKPH(parseInt(visibility_text)) +'<var>'+visibility.data('kph')+'</var>');
3555
  $(this).text($(this).data('imperial'));
3556
  }
3557
  });
3558
 
3559
- $('a').on('click', function(){})
3560
-
3561
  // FES Speakers Adding
3562
- $('#mec_add_speaker_button').on('click', function()
3563
- {
3564
  var $this = this;
3565
  var content = $($this).parent().find('input');
3566
  var list = $('#mec-fes-speakers-list');
3567
  var key = list.find('.mec-error').length;
3568
 
3569
  $($this).prop("disabled", true).css('cursor', 'wait');
3570
- $.post(ajaxurl,
3571
- {
3572
- action: "speaker_adding",
3573
- content: content.val(),
3574
- key: key
3575
- })
3576
- .done(function(data)
3577
- {
3578
- if($(data).hasClass('mec-error'))
3579
- {
3580
- list.prepend(data);
3581
- setTimeout(function()
3582
- {
3583
- $('#mec-speaker-error-${key}').remove();
3584
- }, 1500);
3585
- }
3586
- else
3587
- {
3588
- list.html(data);
3589
- content.val('');
3590
- }
3591
 
3592
- $($this).prop("disabled", false).css('cursor', 'pointer');
3593
- });
3594
  });
3595
- });
3596
  })(jQuery);
3597
 
3598
  // Google map Skin
3599
- function gmapSkin(NewJson)
3600
- {
3601
  var gmap_temp = jQuery("#gmap-data");
3602
  var beforeJson = gmap_temp.val();
3603
- if(typeof beforeJson === 'undefined') beforeJson = '';
3604
 
3605
  var newJson = NewJson;
3606
  var jsonPush = (typeof beforeJson != 'undefined' && beforeJson.trim() == "") ? [] : JSON.parse(beforeJson);
3607
  var pushState = jsonPush.length < 1 ? false : true;
3608
 
3609
- for(var key in newJson)
3610
- {
3611
- if(pushState)
3612
- {
3613
- jsonPush.forEach(function(Item, Index)
3614
- {
3615
- var render_location = jsonPush[Index].latitude + "," + jsonPush[Index].longitude;
3616
- if(key.trim() == render_location.trim())
3617
- {
3618
  // LightBox Count Update
3619
  newJson[key].count = newJson[key].count + jsonPush[Index].count;
3620
 
@@ -3627,22 +3371,22 @@ function gmapSkin(NewJson)
3627
  var new_items = jQuery(jsonPush[Index].lightbox).find("div:nth-child(2)").html();
3628
 
3629
  var render_items = dom.html(main_items + new_items).html();
3630
- var new_info_lightbox = '<div><div class="mec-event-detail mec-map-view-event-detail"><i class="mec-sl-map-marker"></i> '+newJson[key].name+'</div><div>'+render_items+'</div></div>';
3631
  newJson[key].lightbox = new_info_lightbox;
3632
 
3633
  // LightBox info
3634
- var new_info_window = '<div class="mec-marker-infowindow-wp"><div class="mec-marker-infowindow-count">'+newJson[key].count+'</div><div class="mec-marker-infowindow-content"><span>Event at this location</span><span>'+newJson[key].name+'</span></div></div>';
3635
  newJson[key].infowindow = new_info_window;
3636
 
3637
  // Remove before values of this location
3638
  jsonPush.splice(Index, 1);
3639
- }
3640
  });
3641
  }
3642
 
3643
  jsonPush.push(newJson[key]);
3644
  }
3645
-
3646
  gmap_temp.val(JSON.stringify(jsonPush));
3647
  return jsonPush;
3648
  }
1
  // MEC Single Event Displayer
2
  var mecSingleEventDisplayer = {
3
+ getSinglePage: function (id, occurrence, ajaxurl, layout, image_popup) {
4
+ if (jQuery('.mec-modal-result').length === 0) jQuery('.mec-wrap').append('<div class="mec-modal-result"></div>');
 
5
  jQuery('.mec-modal-result').addClass('mec-modal-preloader');
6
 
7
+ jQuery.ajax({
 
8
  url: ajaxurl,
9
+ data: "action=mec_load_single_page&id=" + id + (occurrence != null ? "&occurrence=" + occurrence : "") + "&layout=" + layout,
10
  type: "get",
11
+ success: function (response) {
 
12
  jQuery('.mec-modal-result').removeClass("mec-modal-preloader");
13
  lity(response);
14
 
15
+ setTimeout(function () {
16
+ grecaptcha.render("g-recaptcha", {
17
+ sitekey: mecdata.recapcha_key
18
+ });
19
  }, 1000);
20
 
21
+ if (image_popup != 0) {
22
+ if (jQuery('.lity-content .mec-events-content a img').length > 0) {
23
+ jQuery('.lity-content .mec-events-content a img').each(function () {
 
 
 
24
  jQuery(this).closest('a').attr('data-lity', '');
25
  });
26
  }
27
  }
28
  },
29
+ error: function () {}
 
 
30
  });
31
  }
32
  };
33
 
34
  // MEC SEARCH FORM PLUGIN
35
+ (function ($) {
36
+ $.fn.mecSearchForm = function (options) {
 
 
37
  // Default Options
38
+ var settings = $.extend({
 
39
  // These are the defaults.
40
  id: 0,
41
  search_form_element: '',
42
  atts: '',
43
+ callback: function () {}
 
 
44
  }, options);
45
+
46
+ $("#mec_sf_category_" + settings.id).on('change', function (e) {
 
47
  search();
48
  });
49
+
50
+ $("#mec_sf_location_" + settings.id).on('change', function (e) {
 
51
  search();
52
  });
53
+
54
+ $("#mec_sf_organizer_" + settings.id).on('change', function (e) {
 
55
  search();
56
  });
57
 
63
  search();
64
  });
65
 
66
+
67
+ $("#mec_sf_label_" + settings.id).on('change', function (e) {
 
68
  search();
69
  });
70
+
71
+ $("#mec_sf_s_" + settings.id).on('change', function (e) {
 
72
  search();
73
  });
74
 
75
+ $("#mec_sf_month_" + settings.id + ", #mec_sf_year_" + settings.id).on('change', function (e) {
 
76
  search();
77
  });
78
 
109
  settings.callback(atts);
110
  }
111
  };
112
+
113
  }(jQuery));
114
 
115
  // MEC GOOGLE MAPS PLUGIN
116
+ (function ($) {
117
+ $.fn.mecGoogleMaps = function (options) {
 
 
118
  // Default Options
119
+ var settings = $.extend({
 
120
  // These are the defaults.
121
  latitude: 0,
122
  longitude: 0,
127
  sf: {},
128
  HTML5geolocation: 0,
129
  getDirection: 0,
130
+ directionOptions: {
 
131
  form: '#mec_get_direction_form',
132
  reset: '.mec-map-get-direction-reset',
133
  addr: '#mec_get_direction_addr',
145
  var DOM = canvas[0];
146
 
147
  // Init the Map
148
+ if (settings.autoinit) init();
149
+
150
+ function init() {
 
151
  // Search Widget
152
+ if (settings.sf.container !== '') {
153
+ $(settings.sf.container).mecSearchForm({
 
 
154
  id: settings.id,
155
  atts: settings.atts,
156
+ callback: function (atts) {
 
157
  settings.atts = atts;
158
  getMarkers();
159
  }
176
  map = new google.maps.Map(DOM, mapOptions);
177
 
178
  // Init Infowindow
179
+ infowindow = new google.maps.InfoWindow({
 
180
  pixelOffset: new google.maps.Size(0, -37)
181
  });
182
 
183
  // Load Markers
184
  loadMarkers(settings.markers);
185
 
186
+ var clusterCalculator = function (markers, numStyles) {
 
187
  var weight = 0;
188
 
189
+ for (var i = 0; i < markers.length; ++i) {
 
190
  weight += markers[i].weight;
191
  }
192
 
198
 
199
  markerClusterOptions = {
200
  styles: [{
201
+ height: 53,
202
+ url: settings.clustering_images + '1.png',
203
+ width: 53,
204
+ textColor: '#fff'
205
+ },
206
+ {
207
+ height: 56,
208
+ url: settings.clustering_images + '2.png',
209
+ width: 56,
210
+ textColor: '#000'
211
+ },
212
+ {
213
+ height: 66,
214
+ url: settings.clustering_images + '3.png',
215
+ width: 66,
216
+ textColor: '#fff'
217
+ },
218
+ {
219
+ height: 78,
220
+ url: settings.clustering_images + '4.png',
221
+ width: 78,
222
+ textColor: '#fff'
223
+ },
224
+ {
225
+ height: 90,
226
+ url: settings.clustering_images + '5.png',
227
+ width: 90,
228
+ textColor: '#fff'
229
+ }
230
  ]
231
  }
232
 
236
  markerCluster.addMarkers(loadedMarkers);
237
 
238
  // Initialize get direction feature
239
+ if (settings.getDirection === 1) initSimpleGetDirection();
240
+ else if (settings.getDirection === 2) initAdvancedGetDirection();
241
 
242
  // Geolocation
243
+ if (settings.HTML5geolocation && navigator.geolocation) {
244
+ navigator.geolocation.getCurrentPosition(function (position) {
 
 
245
  var center = new google.maps.LatLng(position.coords.latitude, position.coords.longitude);
246
  var zoom = map.getZoom();
247
 
248
+ if (zoom <= 6) zoom = zoom + 5;
249
+ else if (zoom <= 10) zoom = zoom + 3;
250
+ else if (zoom <= 14) zoom = zoom + 2;
251
+ else if (zoom <= 18) zoom = zoom + 1;
252
 
253
  map.panTo(center);
254
  map.setZoom(zoom);
255
  });
256
  }
257
  }
258
+
259
+ function loadMarkers(markers) {
 
260
  var f = 0;
261
+ for (var i in markers) {
 
262
  f++;
263
  var dataMarker = markers[i];
264
 
265
+ var marker = new RichMarker({
 
266
  position: new google.maps.LatLng(dataMarker.latitude, dataMarker.longitude),
267
  map: map,
268
  event_ids: dataMarker.event_ids,
269
  infowindow: dataMarker.infowindow,
270
  lightbox: dataMarker.lightbox,
271
  icon: (dataMarker.icon ? dataMarker.icon : settings.icon),
272
+ 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>',
273
  shadow: 'none',
274
  weight: dataMarker.count
275
  });
276
 
277
  // Marker Info-Window
278
+ google.maps.event.addListener(marker, 'mouseover', function (event) {
 
279
  infowindow.close();
280
  infowindow.setContent(this.infowindow);
281
  infowindow.open(map, this);
282
  });
283
 
284
  // Marker Lightbox
285
+ google.maps.event.addListener(marker, 'click', function (event) {
 
286
  lity(this.lightbox);
287
  });
288
 
289
  // extend the bounds to include each marker's position
290
  bounds.extend(marker.position);
291
+
292
  // Added to Markers
293
  loadedMarkers.push(marker);
294
  }
295
+
296
+ if (f > 1) map.fitBounds(bounds);
297
 
298
  // Set map center if only 1 marker found
299
+ if (f === 1) {
 
300
  map.setCenter(new google.maps.LatLng(dataMarker.latitude, dataMarker.longitude));
301
  }
302
  }
303
+
304
+ function getMarkers() {
 
305
  // Add loader
306
+ $("#mec_googlemap_canvas" + settings.id).addClass("mec-loading");
307
+
308
+ $.ajax({
 
309
  url: settings.ajax_url,
310
+ data: "action=mec_map_get_markers&" + settings.atts,
311
  dataType: "json",
312
  type: "post",
313
+ success: function (response) {
 
314
  // Remove Markers
315
  removeMarkers();
316
+
317
  // Load Markers
318
  loadMarkers(response.markers);
319
 
320
  markerCluster.clearMarkers();
321
  markerCluster.addMarkers(loadedMarkers, false);
322
  markerCluster.redraw();
323
+
324
  // Remove loader
325
+ $("#mec_googlemap_canvas" + settings.id).removeClass("mec-loading");
326
  },
327
+ error: function () {
 
328
  // Remove loader
329
+ $("#mec_googlemap_canvas" + settings.id).removeClass("mec-loading");
330
  }
331
  });
332
  }
333
+
334
+ function removeMarkers() {
 
335
  bounds = new google.maps.LatLngBounds();
336
+
337
+ if (loadedMarkers) {
338
+ for (i = 0; i < loadedMarkers.length; i++) loadedMarkers[i].setMap(null);
 
339
  loadedMarkers.length = 0;
340
  }
341
  }
342
+
343
  var directionsDisplay;
344
  var directionsService;
345
  var startMarker;
346
  var endMarker;
347
 
348
+ function initSimpleGetDirection() {
349
+ $(settings.directionOptions.form).on('submit', function (event) {
 
 
350
  event.preventDefault();
351
 
352
  var from = $(settings.directionOptions.addr).val();
353
  var dest = new google.maps.LatLng(settings.directionOptions.destination.latitude, settings.directionOptions.destination.longitude);
354
 
355
  // Reset the direction
356
+ if (typeof directionsDisplay !== 'undefined') {
 
357
  directionsDisplay.setMap(null);
358
  startMarker.setMap(null);
359
  endMarker.setMap(null);
362
  // Fade Google Maps canvas
363
  $(canvas).fadeTo(300, .4);
364
 
365
+ directionsDisplay = new google.maps.DirectionsRenderer({
366
+ suppressMarkers: true
367
+ });
368
  directionsService = new google.maps.DirectionsService();
369
 
370
  var request = {
371
+ origin: from,
372
  destination: dest,
373
  travelMode: google.maps.DirectionsTravelMode.DRIVING
374
  };
375
 
376
+ directionsService.route(request, function (response, status) {
377
+ if (status === google.maps.DirectionsStatus.OK) {
 
 
378
  directionsDisplay.setDirections(response);
379
  directionsDisplay.setMap(map);
380
 
381
  var leg = response.routes[0].legs[0];
382
+ startMarker = new google.maps.Marker({
 
383
  position: leg.start_location,
384
  map: map,
385
  icon: settings.directionOptions.startMarker,
386
  });
387
 
388
+ endMarker = new google.maps.Marker({
 
389
  position: leg.end_location,
390
  map: map,
391
  icon: settings.directionOptions.endMarker,
400
  $(settings.directionOptions.reset).removeClass('mec-util-hidden');
401
  });
402
 
403
+ $(settings.directionOptions.reset).on('click', function (event) {
 
404
  $(settings.directionOptions.addr).val('');
405
  $(settings.directionOptions.form).submit();
406
 
409
  });
410
  }
411
 
412
+ function initAdvancedGetDirection() {
413
+ $(settings.directionOptions.form).on('submit', function (event) {
 
 
414
  event.preventDefault();
415
 
416
  var from = $(settings.directionOptions.addr).val();
417
+ var url = 'https://maps.google.com/?saddr=' + encodeURIComponent(from) + '&daddr=' + settings.directionOptions.destination.latitude + ',' + settings.directionOptions.destination.longitude;
418
 
419
  window.open(url);
420
  });
421
  }
422
 
423
  return {
424
+ init: function () {
 
425
  init();
426
  }
427
  };
428
  };
429
+
430
  }(jQuery));
431
 
432
  // MEC FULL CALENDAR PLUGIN
433
+ (function ($) {
434
+ $.fn.mecFullCalendar = function (options) {
 
 
435
  // Default Options
436
+ var settings = $.extend({
 
437
  // These are the defaults.
438
  id: 0,
439
  atts: '',
441
  sf: {},
442
  skin: '',
443
  }, options);
444
+
445
  // Set onclick Listeners
446
  setListeners();
447
+
448
  var sf;
449
+
450
+ function setListeners() {
451
  // Search Widget
452
+ if (settings.sf.container !== '') {
453
+ sf = $(settings.sf.container).mecSearchForm({
 
 
454
  id: settings.id,
455
  atts: settings.atts,
456
+ callback: function (atts) {
 
457
  settings.atts = atts;
458
  search();
459
  }
460
  });
461
  }
462
+
463
  // Add the onclick event
464
+ $("#mec_skin_" + settings.id + " .mec-totalcal-box .mec-totalcal-view span").on('click', function (e) {
 
465
  e.preventDefault();
466
  var skin = $(this).data('skin');
467
 
468
  $(this).addClass('mec-totalcalview-selected').siblings().removeClass('mec-totalcalview-selected');
469
+
470
  loadSkin(skin);
471
  });
472
  }
473
+
474
+ function loadSkin(skin) {
 
475
  // Set new Skin
476
  settings.skin = skin;
477
+
478
  // Add Loading Class
479
+ if (jQuery('.mec-modal-result').length === 0) jQuery('.mec-wrap').append('<div class="mec-modal-result"></div>');
480
  jQuery('.mec-modal-result').addClass('mec-month-navigator-loading');
481
 
482
+ $.ajax({
 
483
  url: settings.ajax_url,
484
+ data: "action=mec_full_calendar_switch_skin&skin=" + skin + "&" + settings.atts + "&apply_sf_date=1&sed=" + settings.sed_method,
485
  dataType: "json",
486
  type: "post",
487
+ success: function (response) {
488
+ $("#mec_full_calendar_container_" + settings.id).html(response);
489
+
 
490
  // Remove loader
491
  $('.mec-modal-result').removeClass("mec-month-navigator-loading");
492
 
496
  // Focus First Active Week
497
  mec_focus_week(settings.id);
498
  },
499
+ error: function () {}
 
 
500
  });
501
  }
502
+
503
+ function search() {
 
504
  // Add Loading Class
505
+ if (jQuery('.mec-modal-result').length === 0) jQuery('.mec-wrap').append('<div class="mec-modal-result"></div>');
506
  jQuery('.mec-modal-result').addClass('mec-month-navigator-loading');
507
+
508
+ $.ajax({
 
509
  url: settings.ajax_url,
510
+ data: "action=mec_full_calendar_switch_skin&skin=" + settings.skin + "&" + settings.atts + "&apply_sf_date=1",
511
  dataType: "json",
512
  type: "post",
513
+ success: function (response) {
514
+ $("#mec_full_calendar_container_" + settings.id).html(response);
515
+
 
516
  // Remove loader
517
  $('.mec-modal-result').removeClass("mec-month-navigator-loading");
518
 
522
  // Focus First Active Week
523
  mec_focus_week(settings.id);
524
  },
525
+ error: function () {}
 
 
526
  });
527
  }
528
  };
529
+
530
  }(jQuery));
531
 
532
  // MEC Woocommerce Add to Cart BTN
533
+ (function ($) {
 
534
  // console.log($('#mec_woo_add_to_cart_btn'));
535
  $(document).on('DOMNodeInserted', function (e) {
536
  if ($(e.target).find('#mec_woo_add_to_cart_btn').length) {
554
  }(jQuery));
555
 
556
  // MEC YEARLY VIEW PLUGIN
557
+ (function ($) {
558
+ $.fn.mecYearlyView = function (options) {
 
 
559
  var active_year;
560
 
561
  // Default Options
562
+ var settings = $.extend({
 
563
  // These are the defaults.
564
  today: null,
565
  id: 0,
573
  }, options);
574
 
575
  // Initialize Year Navigator
576
+ if (settings.year_navigator) initYearNavigator();
577
 
578
  // Load Next Year in background
579
+ if (settings.year_navigator) setYear(settings.next_year.year, true);
580
 
581
  // Set onclick Listeners
582
  setListeners();
583
 
584
  // load more
585
+ $(document).on("click", "#mec_skin_events_" + settings.id + " .mec-load-more-button", function () {
 
586
  var year = $(this).parent().parent().parent().data('year-id');
587
  loadMoreButton(year);
588
  });
589
 
590
  // Search Widget
591
+ if (settings.sf.container !== '') {
592
+ sf = $(settings.sf.container).mecSearchForm({
 
 
593
  id: settings.id,
594
  atts: settings.atts,
595
+ callback: function (atts) {
 
596
  settings.atts = atts;
597
+ active_year = $('.mec-yearly-view-wrap .mec-year-navigator').filter(function () {
 
598
  return $(this).css('display') == "block";
599
  });
600
  active_year = parseInt(active_year.find('h2').text());
603
  });
604
  }
605
 
606
+ function initYearNavigator() {
 
607
  // Remove the onclick event
608
+ $("#mec_skin_" + settings.id + " .mec-load-year").off("click");
609
 
610
  // Add onclick event
611
+ $("#mec_skin_" + settings.id + " .mec-load-year").on("click", function () {
 
612
  var year = $(this).data("mec-year");
613
  setYear(year);
614
  });
615
  }
616
 
617
+ function search(year) {
 
618
  // Add Loading Class
619
+ if (jQuery('.mec-modal-result').length === 0) jQuery('.mec-wrap').append('<div class="mec-modal-result"></div>');
620
  jQuery('.mec-modal-result').addClass('mec-month-navigator-loading');
621
 
622
+ $.ajax({
 
623
  url: settings.ajax_url,
624
+ data: "action=mec_yearly_view_load_year&mec_year=" + year + "&" + settings.atts + "&apply_sf_date=1",
625
  dataType: "json",
626
  type: "post",
627
+ success: function (response) {
 
628
  active_year = response.current_year.year;
629
 
630
  // Append Year
631
+ $("#mec_skin_events_" + settings.id).html('<div class="mec-year-container" id="mec_yearly_view_year_' + settings.id + '_' + response.current_year.id + '" data-year-id="' + response.current_year.id + '">' + response.year + '</div>');
632
 
633
  // Append Year Navigator
634
+ $("#mec_skin_" + settings.id + " .mec-yearly-title-sec").append('<div class="mec-year-navigator" id="mec_year_navigator_' + settings.id + '_' + response.current_year.id + '">' + response.navigator + '</div>');
635
 
636
  // Re-initialize Year Navigator
637
  initYearNavigator();
644
 
645
  // Remove loading Class
646
  $('.mec-modal-result').removeClass("mec-month-navigator-loading");
647
+
648
  },
649
+ error: function () {}
 
 
650
  });
651
  }
652
 
653
+ function setYear(year, do_in_background) {
654
+ if (typeof do_in_background === "undefined") do_in_background = false;
 
655
 
656
  var year_id = year;
657
  active_year = year;
658
 
659
  // Year exists so we just show it
660
+ if ($("#mec_yearly_view_year_" + settings.id + "_" + year_id).length) {
 
661
  // Toggle Year
662
  toggleYear(year_id);
663
+ } else {
664
+ if (!do_in_background) {
 
 
 
665
  // Add Loading Class
666
+ if (jQuery('.mec-modal-result').length === 0) jQuery('.mec-wrap').append('<div class="mec-modal-result"></div>');
667
  jQuery('.mec-modal-result').addClass('mec-month-navigator-loading');
668
  }
669
 
670
+ $.ajax({
 
671
  url: settings.ajax_url,
672
+ data: "action=mec_yearly_view_load_year&mec_year=" + year + "&" + settings.atts + "&apply_sf_date=0",
673
  dataType: "json",
674
  type: "post",
675
+ success: function (response) {
 
676
  // Append Year
677
+ $("#mec_skin_events_" + settings.id).append('<div class="mec-year-container" id="mec_yearly_view_year_' + settings.id + '_' + response.current_year.id + '" data-year-id="' + response.current_year.id + '">' + response.year + '</div>');
678
 
679
  // Append Year Navigator
680
+ $("#mec_skin_" + settings.id + " .mec-yearly-title-sec").append('<div class="mec-year-navigator" id="mec_year_navigator_' + settings.id + '_' + response.current_year.id + '">' + response.navigator + '</div>');
681
 
682
  // Re-initialize Year Navigator
683
  initYearNavigator();
685
  // Set onclick Listeners
686
  setListeners();
687
 
688
+ if (!do_in_background) {
 
689
  // Toggle Year
690
  toggleYear(response.current_year.id);
691
 
693
  $('.mec-modal-result').removeClass("mec-month-navigator-loading");
694
 
695
  // Set Year Filter values in search widget
696
+ $("#mec_sf_year_" + settings.id).val(year);
697
+ } else {
698
+ $("#mec_yearly_view_year_" + settings.id + "_" + response.current_year.id).hide();
699
+ $("#mec_year_navigator_" + settings.id + "_" + response.current_year.id).hide();
 
 
700
  }
701
  },
702
+ error: function () {}
 
 
703
  });
704
  }
705
  }
706
 
707
+ function toggleYear(year_id) {
 
708
  // Toggle Year Navigator
709
+ $("#mec_skin_" + settings.id + " .mec-year-navigator").hide();
710
+ $("#mec_year_navigator_" + settings.id + "_" + year_id).show();
711
 
712
  // Toggle Year
713
+ $("#mec_skin_" + settings.id + " .mec-year-container").hide();
714
+ $("#mec_yearly_view_year_" + settings.id + "_" + year_id).show();
715
  }
716
 
717
  var sf;
718
+
719
+ function setListeners() {
720
  // Single Event Method
721
+ if (settings.sed_method != '0') {
 
722
  sed();
723
  }
724
  }
725
 
726
+ function sed() {
 
727
  // Single Event Display
728
+ $("#mec_skin_" + settings.id + " .mec-agenda-event-title a").off('click').on('click', function (e) {
 
729
  e.preventDefault();
730
  var href = $(this).attr('href');
731
 
735
  });
736
  }
737
 
738
+ function loadMoreButton(year) {
 
739
  var $max_count, $current_count = 0;
740
+ $max_count = $("#mec_yearly_view_year_" + settings.id + "_" + year + " .mec-yearly-max").data('count');
741
+ $current_count = $("#mec_yearly_view_year_" + settings.id + "_" + year + " .mec-util-hidden").length;
742
+
743
+ if ($current_count > 10) {
744
+ for (var i = 0; i < 10; i++) {
745
+ $("#mec_yearly_view_year_" + settings.id + "_" + year + " .mec-util-hidden").slice(0, 2).each(function () {
 
 
 
746
  $(this).removeClass('mec-util-hidden');
747
  });
748
  }
749
  }
750
 
751
+ if ($current_count < 10 && $current_count != 0) {
752
+ for (var j = 0; j < $current_count; j++) {
753
+ $("#mec_yearly_view_year_" + settings.id + "_" + year + " .mec-util-hidden").slice(0, 2).each(function () {
 
 
 
754
  $(this).removeClass('mec-util-hidden');
755
+ $("#mec_yearly_view_year_" + settings.id + "_" + year + " .mec-load-more-wrap").css('display', 'none');
756
  });
757
  }
758
  }
762
  }(jQuery));
763
 
764
  // MEC MONTHLY VIEW PLUGIN
765
+ (function ($) {
766
+ $.fn.mecMonthlyView = function (options) {
 
 
767
  var active_month;
768
  var active_year;
769
+
770
  // Default Options
771
+ var settings = $.extend({
 
772
  // These are the defaults.
773
  today: null,
774
  id: 0,
783
  }, options);
784
 
785
  // Initialize Month Navigator
786
+ if (settings.month_navigator) initMonthNavigator();
787
+
788
  // Load Next Month in background
789
  setMonth(settings.next_month.year, settings.next_month.month, true);
790
 
791
  active_month = settings.active_month.month;
792
  active_year = settings.active_month.year;
793
+
794
  // Set onclick Listeners
795
  setListeners();
796
+
797
  // Search Widget
798
+ if (settings.sf.container !== '') {
799
+ sf = $(settings.sf.container).mecSearchForm({
 
 
800
  id: settings.id,
801
  atts: settings.atts,
802
+ callback: function (atts) {
 
803
  settings.atts = atts;
804
  search(active_year, active_month);
805
  }
806
  });
807
  }
808
+
809
+ function initMonthNavigator() {
 
810
  // Remove the onclick event
811
+ $("#mec_skin_" + settings.id + " .mec-load-month").off("click");
812
 
813
  // Add onclick event
814
+ $("#mec_skin_" + settings.id + " .mec-load-month").on("click", function () {
 
815
  var year = $(this).data("mec-year");
816
  var month = $(this).data("mec-month");
817
 
818
  setMonth(year, month, false, true);
819
  });
820
  }
821
+
822
+ function search(year, month) {
 
823
  // Add Loading Class
824
+ if (jQuery('.mec-modal-result').length === 0) jQuery('.mec-wrap').append('<div class="mec-modal-result"></div>');
825
  jQuery('.mec-modal-result').addClass('mec-month-navigator-loading');
826
+
827
+ $.ajax({
 
828
  url: settings.ajax_url,
829
+ data: "action=mec_monthly_view_load_month&mec_year=" + year + "&mec_month=" + month + "&" + settings.atts + "&apply_sf_date=1",
830
  dataType: "json",
831
  type: "post",
832
+ success: function (response) {
 
833
  active_month = response.current_month.month;
834
  active_year = response.current_month.year;
835
+
836
  // Append Month
837
+ $("#mec_skin_events_" + settings.id).html('<div class="mec-month-container" id="mec_monthly_view_month_' + settings.id + '_' + response.current_month.id + '" data-month-id="' + response.current_month.id + '">' + response.month + '</div>');
838
 
839
  // Append Month Navigator
840
+ $("#mec_skin_" + settings.id + " .mec-skin-monthly-view-month-navigator-container").html('<div class="mec-month-navigator" id="mec_month_navigator_' + settings.id + '_' + response.current_month.id + '">' + response.navigator + '</div>');
841
 
842
  // Append Events Side
843
+ $("#mec_skin_" + settings.id + " .mec-calendar-events-side").html('<div class="mec-month-side" id="mec_month_side_' + settings.id + '_' + response.current_month.id + '">' + response.events_side + '</div>');
844
 
845
  // Re-initialize Month Navigator
846
  initMonthNavigator();
855
  $('.mec-modal-result').removeClass("mec-month-navigator-loading");
856
 
857
  },
858
+ error: function () {}
 
 
859
  });
860
  }
861
+
862
+ function setMonth(year, month, do_in_background, navigator_click) {
863
+ if (typeof do_in_background === "undefined") do_in_background = false;
 
864
  navigator_click = navigator_click || false;
865
+ var month_id = year + "" + month;
866
 
867
+ if (!do_in_background) {
 
868
  active_month = month;
869
  active_year = year;
870
  }
871
+
872
  // Month exists so we just show it
873
+ if ($("#mec_monthly_view_month_" + settings.id + "_" + month_id).length) {
 
874
  // Toggle Month
875
  toggleMonth(month_id);
876
+ } else {
877
+ if (!do_in_background) {
 
 
 
878
 
879
+ // Add Loading Class
880
+ if (jQuery('.mec-modal-result').length === 0) jQuery('.mec-wrap').append('<div class="mec-modal-result"></div>');
881
+ jQuery('.mec-modal-result').addClass('mec-month-navigator-loading');
882
  }
883
 
884
+ $.ajax({
 
885
  url: settings.ajax_url,
886
+ data: "action=mec_monthly_view_load_month&mec_year=" + year + "&mec_month=" + month + "&" + settings.atts + "&apply_sf_date=0" + "&navigator_click=" + navigator_click,
887
  dataType: "json",
888
  type: "post",
889
+ success: function (response) {
 
890
  // Append Month
891
+ $("#mec_skin_events_" + settings.id).append('<div class="mec-month-container" id="mec_monthly_view_month_' + settings.id + '_' + response.current_month.id + '" data-month-id="' + response.current_month.id + '">' + response.month + '</div>');
892
+
893
  // Append Month Navigator
894
+ $("#mec_skin_" + settings.id + " .mec-skin-monthly-view-month-navigator-container").append('<div class="mec-month-navigator" id="mec_month_navigator_' + settings.id + '_' + response.current_month.id + '">' + response.navigator + '</div>');
895
 
896
  // Append Events Side
897
+ $("#mec_skin_" + settings.id + " .mec-calendar-events-side").append('<div class="mec-month-side" id="mec_month_side_' + settings.id + '_' + response.current_month.id + '">' + response.events_side + '</div>');
898
 
899
  // Re-initialize Month Navigator
900
  initMonthNavigator();
902
  // Set onclick Listeners
903
  setListeners();
904
 
905
+ if (!do_in_background) {
 
906
  // Toggle Month
907
  toggleMonth(response.current_month.id);
908
 
909
  // Remove loading Class
910
  $('.mec-modal-result').removeClass("mec-month-navigator-loading");
911
 
912
+
913
  // Set Month Filter values in search widget
914
+ $("#mec_sf_month_" + settings.id).val(month);
915
+ $("#mec_sf_year_" + settings.id).val(year);
916
+ } else {
917
+ $("#mec_monthly_view_month_" + settings.id + "_" + response.current_month.id).hide();
918
+ $("#mec_month_navigator_" + settings.id + "_" + response.current_month.id).hide();
919
+ $("#mec_month_side_" + settings.id + "_" + response.current_month.id).hide();
 
 
920
  }
921
  if (typeof custom_month !== undefined) var custom_month;
922
+ if (typeof custom_month != undefined) {
923
+ if (custom_month == 'true') {
 
 
924
  $(".mec-month-container .mec-calendar-day").removeClass('mec-has-event');
925
  $(".mec-month-container .mec-calendar-day").removeClass('mec-selected-day');
926
  $('.mec-calendar-day').unbind('click');
927
  }
928
  }
929
+
930
  },
931
+ error: function () {}
 
 
932
  });
933
  }
934
  }
935
 
936
+ function toggleMonth(month_id) {
937
+ var active_month = $("#mec_skin_" + settings.id + " .mec-month-container-selected").data("month-id");
938
+ var active_day = $("#mec_monthly_view_month_" + settings.id + "_" + active_month + " .mec-selected-day").data("day");
 
939
 
940
+ if (active_day <= 9) active_day = "0" + active_day;
941
 
942
  // Toggle Month Navigator
943
+ $("#mec_skin_" + settings.id + " .mec-month-navigator").hide();
944
+ $("#mec_month_navigator_" + settings.id + "_" + month_id).show();
945
 
946
  // Toggle Month
947
+ $("#mec_skin_" + settings.id + " .mec-month-container").hide();
948
+ $("#mec_monthly_view_month_" + settings.id + "_" + month_id).show();
949
 
950
  // Add selected class
951
+ $("#mec_skin_" + settings.id + " .mec-month-container").removeClass("mec-month-container-selected");
952
+ $("#mec_monthly_view_month_" + settings.id + "_" + month_id).addClass("mec-month-container-selected");
953
 
954
  // Toggle Events Side
955
+ $("#mec_skin_" + settings.id + " .mec-month-side").hide();
956
+ $("#mec_month_side_" + settings.id + "_" + month_id).show();
957
  }
958
+
959
  var sf;
960
+
961
+ function setListeners() {
962
  // Remove the onclick event
963
+ $("#mec_skin_" + settings.id + " .mec-has-event").off("click");
964
 
965
  // Add the onclick event
966
+ $("#mec_skin_" + settings.id + " .mec-has-event").on('click', function (e) {
 
967
  e.preventDefault();
968
+
969
  // define variables
970
+ var $this = $(this),
971
+ data_mec_cell = $this.data('mec-cell'),
972
+ month_id = $this.data('month');
973
 
974
+ $("#mec_monthly_view_month_" + settings.id + "_" + month_id + " .mec-calendar-day").removeClass('mec-selected-day');
975
  $this.addClass('mec-selected-day');
976
 
977
+ $('#mec_month_side_' + settings.id + '_' + month_id + ' .mec-calendar-events-sec:not([data-mec-cell=' + data_mec_cell + '])').slideUp();
978
+ $('#mec_month_side_' + settings.id + '_' + month_id + ' .mec-calendar-events-sec[data-mec-cell=' + data_mec_cell + ']').slideDown();
979
 
980
+ $('#mec_monthly_view_month_' + settings.id + '_' + month_id + ' .mec-calendar-events-sec:not([data-mec-cell=' + data_mec_cell + '])').slideUp();
981
+ $('#mec_monthly_view_month_' + settings.id + '_' + month_id + ' .mec-calendar-events-sec[data-mec-cell=' + data_mec_cell + ']').slideDown();
982
  });
983
 
984
  mec_tooltip();
985
+
986
  // Single Event Method
987
+ if (settings.sed_method != '0') {
 
988
  sed();
989
  }
990
 
991
+ if (settings.style == 'novel') {
992
+ if ($('.mec-single-event-novel').length > 0) {
 
 
993
  $('.mec-single-event-novel').colourBrightness();
994
  $('.mec-single-event-novel').each(function () {
995
  $(this).colourBrightness()
997
  }
998
  }
999
  }
1000
+
1001
+ function sed() {
 
1002
  // Single Event Display
1003
+ $("#mec_skin_" + settings.id + " .mec-event-title a,#mec_skin_" + settings.id + " .event-single-link-novel").off('click').on('click', function (e) {
 
1004
  e.preventDefault();
1005
  var href = $(this).attr('href');
1006
 
1008
  var occurrence = get_parameter_by_name('occurrence', href);
1009
  mecSingleEventDisplayer.getSinglePage(id, occurrence, settings.ajax_url, settings.sed_method, settings.image_popup);
1010
  });
1011
+
1012
  }
1013
 
1014
+ function mec_tooltip() {
 
1015
  if ($('.mec-monthly-tooltip').length > 1) {
1016
  if (Math.max(document.documentElement.clientWidth, window.innerWidth || 0) > 768) {
1017
  $('.mec-monthly-tooltip').tooltipster({
1062
  }(jQuery));
1063
 
1064
  // MEC WEEKLY VIEW PLUGIN
1065
+ (function ($) {
1066
+ $.fn.mecWeeklyView = function (options) {
 
 
1067
  var active_year;
1068
  var active_month;
1069
  var active_week;
1070
  var active_week_number;
1071
+
1072
  // Default Options
1073
+ var settings = $.extend({
 
1074
  // These are the defaults.
1075
  today: null,
1076
  week: 1,
1089
  active_month = settings.current_month;
1090
 
1091
  // Search Widget
1092
+ if (settings.sf.container !== '') {
1093
+ $(settings.sf.container).mecSearchForm({
 
 
1094
  id: settings.id,
1095
  atts: settings.atts,
1096
+ callback: function (atts) {
 
1097
  settings.atts = atts;
1098
  search(active_year, active_month, active_week);
1099
  }
1100
  });
1101
  }
1102
+
1103
  // Set The Week
1104
+ setThisWeek(settings.month_id + settings.week);
1105
+
1106
  // Set Listeners
1107
  setListeners();
1108
+
1109
  // Initialize Month Navigator
1110
+ if (settings.month_navigator) initMonthNavigator(settings.month_id);
1111
+
1112
+ function setListeners() {
1113
+ $(settings.changeWeekElement).off('click').on('click', function (e) {
1114
+ var week = $('#mec_skin_' + settings.id + ' .mec-weekly-view-week-active').data('week-id');
1115
+ var max_weeks = $('#mec_skin_' + settings.id + ' .mec-weekly-view-week-active').data('max-weeks');
 
 
1116
  var new_week_number = active_week_number;
1117
+
1118
+ if ($(this).hasClass('mec-previous-month')) {
1119
+ week = parseInt(week) - 1;
 
1120
  new_week_number--;
1121
+ } else {
1122
+ week = parseInt(week) + 1;
 
 
1123
  new_week_number++;
1124
  }
1125
+
1126
+ if (new_week_number <= 1 || new_week_number >= max_weeks) {
 
1127
  // Disable Next/Previous Button
1128
+ $(this).css({
1129
+ 'opacity': .6,
1130
+ 'cursor': 'default'
1131
+ });
1132
+ $(this).find('i').css({
1133
+ 'opacity': .6,
1134
+ 'cursor': 'default'
1135
+ });
1136
+ } else {
1137
  // Enable Next/Previous Buttons
1138
+ $('#mec_skin_' + settings.id + ' .mec-load-week, #mec_skin_' + settings.id + ' .mec-load-week i').css({
1139
+ 'opacity': 1,
1140
+ 'cursor': 'pointer'
1141
+ });
1142
  }
1143
+
1144
  // Week is not in valid range
1145
+ if (new_week_number === 0 || new_week_number > max_weeks) {} else {
 
 
 
 
1146
  setThisWeek(week);
1147
  }
1148
  });
1149
+
1150
  // Single Event Method
1151
+ if (settings.sed_method != '0') {
 
1152
  sed();
1153
  }
1154
  }
1155
+
1156
+ function setThisWeek(week, auto_focus) {
1157
+ if (typeof auto_focus === 'undefined') auto_focus = false;
 
1158
 
1159
  // Week is not exists
1160
+ if (!$('#mec_weekly_view_week_' + settings.id + '_' + week).length) {
1161
+ return setThisWeek((parseInt(week) - 1));
 
1162
  }
1163
 
1164
  // Set week to active in week list
1165
+ $('#mec_skin_' + settings.id + ' .mec-weekly-view-week').removeClass('mec-weekly-view-week-active');
1166
+ $('#mec_weekly_view_week_' + settings.id + '_' + week).addClass('mec-weekly-view-week-active');
1167
+
1168
  // Show related events
1169
+ $('#mec_skin_' + settings.id + ' .mec-weekly-view-date-events').addClass('mec-util-hidden');
1170
+ $('.mec-weekly-view-week-' + settings.id + '-' + week).removeClass('mec-util-hidden');
1171
 
1172
  active_week = week;
1173
+ active_week_number = $('#mec_skin_' + settings.id + ' .mec-weekly-view-week-active').data('week-number');
1174
 
1175
+ $('#mec_skin_' + settings.id + ' .mec-calendar-d-top').find('.mec-current-week').find('span').remove();
1176
+ $('#mec_skin_' + settings.id + ' .mec-calendar-d-top').find('.mec-current-week').append('<span>' + active_week_number + '</span>');
1177
 
1178
+ if (active_week_number === 1) {
 
1179
  // Disable Previous Button
1180
+ $('#mec_skin_' + settings.id + ' .mec-previous-month.mec-load-week').css({
1181
+ 'opacity': .6,
1182
+ 'cursor': 'default'
1183
+ });
1184
+ $('#mec_skin_' + settings.id + ' .mec-previous-month.mec-load-week').find('i').css({
1185
+ 'opacity': .6,
1186
+ 'cursor': 'default'
1187
+ });
1188
  }
1189
+
1190
  // Go To Event Week
1191
+ if (auto_focus) mec_focus_week(settings.id);
1192
  }
1193
 
1194
+ function initMonthNavigator(month_id) {
1195
+ $('#mec_month_navigator' + settings.id + '_' + month_id + ' .mec-load-month').off('click');
1196
+ $('#mec_month_navigator' + settings.id + '_' + month_id + ' .mec-load-month').on('click', function () {
 
 
1197
  var year = $(this).data('mec-year');
1198
  var month = $(this).data('mec-month');
1199
 
1200
  setMonth(year, month, active_week, true);
1201
  });
1202
  }
1203
+
1204
+ function search(year, month, week, navigation_click) {
 
1205
  var week_number = (String(week).slice(-1));
1206
 
1207
  // Add Loading Class
1208
+ if (jQuery('.mec-modal-result').length === 0) jQuery('.mec-wrap').append('<div class="mec-modal-result"></div>');
1209
  jQuery('.mec-modal-result').addClass('mec-month-navigator-loading');
1210
 
1211
+ $.ajax({
 
1212
  url: settings.ajax_url,
1213
+ data: "action=mec_weekly_view_load_month&mec_year=" + year + "&mec_month=" + month + "&mec_week=" + week_number + "&" + settings.atts + "&apply_sf_date=1",
1214
  dataType: "json",
1215
  type: "post",
1216
+ success: function (response) {
 
1217
  // Remove Loading Class
1218
  $('.mec-modal-result').removeClass("mec-month-navigator-loading");
1219
 
1220
  // Append Month
1221
+ $("#mec_skin_events_" + settings.id).html('<div class="mec-month-container" id="mec_weekly_view_month_' + settings.id + '_' + response.current_month.id + '">' + response.month + '</div>');
1222
 
1223
  // Append Month Navigator
1224
+ $("#mec_skin_" + settings.id + " .mec-skin-weekly-view-month-navigator-container").html('<div class="mec-month-navigator" id="mec_month_navigator' + settings.id + '_' + response.current_month.id + '">' + response.navigator + '</div>');
1225
 
1226
  // Set Listeners
1227
  setListeners();
1232
  // Set active week
1233
  setThisWeek(active_week, true);
1234
  },
1235
+ error: function () {}
 
 
1236
  });
1237
  }
1238
+
1239
+ function setMonth(year, month, week, navigation_click) {
1240
+ var month_id = '' + year + month;
 
1241
  var week_number = (String(week).slice(-1));
1242
+
1243
  active_month = month;
1244
  active_year = year;
1245
  navigation_click = navigation_click || false;
1246
+
1247
  // Month exists so we just show it
1248
+ if ($("#mec_weekly_view_month_" + settings.id + "_" + month_id).length) {
 
1249
  // Toggle Month
1250
  toggleMonth(month_id);
1251
 
1252
  // Set active week
1253
+ setThisWeek('' + month_id + week_number);
1254
+ } else {
 
 
1255
  // Add Loading Class
1256
+ if (jQuery('.mec-modal-result').length === 0) jQuery('.mec-wrap').append('<div class="mec-modal-result"></div>');
1257
  jQuery('.mec-modal-result').addClass('mec-month-navigator-loading');
1258
 
1259
+ $.ajax({
 
1260
  url: settings.ajax_url,
1261
+ data: "action=mec_weekly_view_load_month&mec_year=" + year + "&mec_month=" + month + "&mec_week=" + week_number + "&" + settings.atts + "&apply_sf_date=0" + "&navigator_click=" + navigation_click,
1262
  dataType: "json",
1263
  type: "post",
1264
+ success: function (response) {
 
1265
  // Remove Loading Class
1266
+ $('.mec-modal-result').removeClass("mec-month-navigator-loading");
1267
 
1268
  // Append Month
1269
+ $("#mec_skin_events_" + settings.id).append('<div class="mec-month-container" id="mec_weekly_view_month_' + settings.id + '_' + response.current_month.id + '">' + response.month + '</div>');
1270
 
1271
  // Append Month Navigator
1272
+ $("#mec_skin_" + settings.id + " .mec-skin-weekly-view-month-navigator-container").append('<div class="mec-month-navigator" id="mec_month_navigator' + settings.id + '_' + response.current_month.id + '">' + response.navigator + '</div>');
1273
 
1274
  // Set Listeners
1275
  setListeners();
1279
 
1280
  // Set active week
1281
  setThisWeek(response.week_id, true);
1282
+
1283
  // Set Month Filter values in search widget
1284
+ $("#mec_sf_month_" + settings.id).val(month);
1285
+ $("#mec_sf_year_" + settings.id).val(year);
1286
  },
1287
+ error: function () {}
 
 
1288
  });
1289
  }
1290
  }
1291
 
1292
+ function toggleMonth(month_id) {
 
1293
  // Show related events
1294
+ $('#mec_skin_' + settings.id + ' .mec-month-container').addClass('mec-util-hidden');
1295
+ $('#mec_weekly_view_month_' + settings.id + '_' + month_id).removeClass('mec-util-hidden');
1296
 
1297
+ $('#mec_skin_' + settings.id + ' .mec-month-navigator').addClass('mec-util-hidden');
1298
+ $('#mec_month_navigator' + settings.id + '_' + month_id).removeClass('mec-util-hidden');
1299
 
1300
  // Initialize Month Navigator
1301
+ if (settings.month_navigator) initMonthNavigator(month_id);
1302
  }
1303
+
1304
+ function sed() {
 
1305
  // Single Event Display
1306
+ $("#mec_skin_" + settings.id + " .mec-event-title a").off('click').on('click', function (e) {
 
1307
  e.preventDefault();
1308
  var href = $(this).attr('href');
1309
 
1314
  });
1315
  }
1316
  };
1317
+
1318
  }(jQuery));
1319
 
1320
  // MEC DAILY VIEW PLUGIN
1321
+ (function ($) {
1322
+ $.fn.mecDailyView = function (options) {
 
 
1323
  var active_month;
1324
  var active_year;
1325
  var active_day;
1326
+
1327
  // Default Options
1328
+ var settings = $.extend({
 
1329
  // These are the defaults.
1330
  today: null,
1331
  id: 0,
1337
  ajax_url: '',
1338
  sf: {},
1339
  }, options);
1340
+
1341
  active_month = settings.month;
1342
  active_year = settings.year;
1343
  active_day = settings.day;
1344
+
1345
  // Set Today
1346
  setToday(settings.today);
1347
 
1349
  setListeners();
1350
 
1351
  // Initialize Month Navigator
1352
+ if (settings.month_navigator) initMonthNavigator(settings.month_id);
1353
+
1354
  // Initialize Days Slider
1355
  initDaysSlider(settings.month_id);
1356
 
1357
  // Search Widget
1358
+ if (settings.sf.container !== '') {
1359
+ $(settings.sf.container).mecSearchForm({
 
 
1360
  id: settings.id,
1361
  atts: settings.atts,
1362
+ callback: function (atts) {
 
1363
  settings.atts = atts;
1364
  search(active_year, active_month, active_day);
1365
  }
1366
  });
1367
  }
1368
+
1369
+ function setListeners() {
1370
+ $(settings.changeDayElement).on('click', function () {
 
 
1371
  var today = $(this).data('day-id');
1372
  setToday(today);
1373
  });
1374
+
1375
  // Single Event Method
1376
+ if (settings.sed_method != '0') {
 
1377
  sed();
1378
  }
1379
  }
1380
 
1381
  var current_monthday;
1382
+
1383
+ function setToday(today) {
1384
  // For caring about 31st, 30th and 29th of some months
1385
+ if (!$('#mec_daily_view_day' + settings.id + '_' + today).length) {
1386
+ setToday(parseInt(today) - 1);
 
1387
  return false;
1388
  }
1389
 
1390
  // Set day to active in day list
1391
  $('.mec-daily-view-day').removeClass('mec-daily-view-day-active mec-color');
1392
+ $('#mec_daily_view_day' + settings.id + '_' + today).addClass('mec-daily-view-day-active mec-color');
1393
 
1394
  // Show related events
1395
  $('.mec-daily-view-date-events').addClass('mec-util-hidden');
1396
+ $('#mec_daily_view_date_events' + settings.id + '_' + today).removeClass('mec-util-hidden');
1397
 
1398
  // Set today label
1399
+ var weekday = $('#mec_daily_view_day' + settings.id + '_' + today).data('day-weekday');
1400
+ var monthday = $('#mec_daily_view_day' + settings.id + '_' + today).data('day-monthday');
1401
+ var count = $('#mec_daily_view_day' + settings.id + '_' + today).data('events-count');
1402
+ var month_id = $('#mec_daily_view_day' + settings.id + '_' + today).data('month-id');
1403
 
1404
+ $('#mec_today_container' + settings.id + '_' + month_id).html('<h2>' + monthday + '</h2><h3>' + weekday + '</h3><div class="mec-today-count">' + count + ' ' + (count > 1 ? settings.events_label : settings.event_label) + '</div>');
1405
 
1406
+ if (monthday <= 9) current_monthday = '0' + monthday;
1407
  else current_monthday = monthday;
1408
  }
1409
 
1410
+ function initMonthNavigator(month_id) {
1411
+ $('#mec_month_navigator' + settings.id + '_' + month_id + ' .mec-load-month').off('click');
1412
+ $('#mec_month_navigator' + settings.id + '_' + month_id + ' .mec-load-month').on('click', function () {
 
 
1413
  var year = $(this).data('mec-year');
1414
  var month = $(this).data('mec-month');
1415
 
1417
  });
1418
  }
1419
 
1420
+ function initDaysSlider(month_id, day_id) {
 
1421
  // Set Global Month Id
1422
  mec_g_month_id = month_id;
1423
 
1425
  var owl_rtl = $('body').hasClass('rtl') ? true : false;
1426
 
1427
  // Init Days slider
1428
+ var owl = $("#mec-owl-calendar-d-table-" + settings.id + "-" + month_id);
1429
+ owl.owlCarousel({
 
1430
  responsiveClass: true,
1431
  responsive: {
1432
  0: {
1454
  });
1455
 
1456
  // Custom Navigation Events
1457
+ $("#mec_daily_view_month_" + settings.id + "_" + month_id + " .mec-table-d-next").click(function (e) {
 
1458
  e.preventDefault();
1459
  owl.trigger('next.owl.carousel');
1460
  });
1461
 
1462
+ $("#mec_daily_view_month_" + settings.id + "_" + month_id + " .mec-table-d-prev").click(function (e) {
 
1463
  e.preventDefault();
1464
  owl.trigger('prev.owl.carousel');
1465
  });
1466
 
1467
+ if (typeof day_id === 'undefined') day_id = $('.mec-daily-view-day-active').data('day-id');
1468
 
1469
+ var today_str = day_id.toString().substring(6, 8);
1470
  var today_int = parseInt(today_str);
1471
 
1472
  owl.trigger('owl.goTo', [today_int]);
1473
  }
1474
+
1475
+ function search(year, month, day) {
 
1476
  // Add Loading Class
1477
+ if (jQuery('.mec-modal-result').length === 0) jQuery('.mec-wrap').append('<div class="mec-modal-result"></div>');
1478
  jQuery('.mec-modal-result').addClass('mec-month-navigator-loading');
1479
 
1480
+ $.ajax({
 
1481
  url: settings.ajax_url,
1482
+ data: "action=mec_daily_view_load_month&mec_year=" + year + "&mec_month=" + month + "&mec_day=" + day + "&" + settings.atts + "&apply_sf_date=1",
1483
  dataType: "json",
1484
  type: "post",
1485
+ success: function (response) {
 
1486
  // Remove Loading Class
1487
  $('.mec-modal-result').removeClass("mec-month-navigator-loading");
1488
 
1489
  // Append Month
1490
+ $("#mec_skin_events_" + settings.id).html('<div class="mec-month-container" id="mec_daily_view_month_' + settings.id + '_' + response.current_month.id + '">' + response.month + '</div>');
1491
 
1492
  // Append Month Navigator
1493
+ $("#mec_skin_" + settings.id + " .mec-calendar-a-month.mec-clear").html('<div class="mec-month-navigator" id="mec_month_navigator' + settings.id + '_' + response.current_month.id + '">' + response.navigator + '</div>');
1494
 
1495
  // Set Listeners
1496
  setListeners();
1497
+
1498
  active_year = response.current_month.year;
1499
  active_month = response.current_month.month;
1500
+
1501
  // Toggle Month
1502
+ toggleMonth(response.current_month.id, '' + active_year + active_month + active_day);
1503
 
1504
  // Set Today
1505
+ setToday('' + active_year + active_month + active_day);
1506
 
1507
  // Focus First Active Day
1508
  mec_focus_day(settings.id);
1509
  },
1510
+ error: function () {}
 
 
1511
  });
1512
  }
1513
+
1514
+ function setMonth(year, month, day, navigation_click) {
 
1515
  var month_id = '' + year + month;
1516
+
1517
  active_month = month;
1518
  active_year = year;
1519
  active_day = day;
1520
  navigation_click = navigation_click || false;
1521
 
1522
  // Month exists so we just show it
1523
+ if ($("#mec_daily_view_month_" + settings.id + "_" + month_id).length) {
 
1524
  // Toggle Month
1525
  toggleMonth(month_id);
1526
 
1527
  // Set Today
1528
+ setToday('' + month_id + day);
1529
+ } else {
 
 
1530
  // Add Loading Class
1531
+ if (jQuery('.mec-modal-result').length === 0) jQuery('.mec-wrap').append('<div class="mec-modal-result"></div>');
1532
  jQuery('.mec-modal-result').addClass('mec-month-navigator-loading');
1533
 
1534
+ $.ajax({
 
1535
  url: settings.ajax_url,
1536
+ data: "action=mec_daily_view_load_month&mec_year=" + year + "&mec_month=" + month + "&mec_day=" + day + "&" + settings.atts + "&apply_sf_date=0" + "&navigator_click=" + navigation_click,
1537
  dataType: "json",
1538
  type: "post",
1539
+ success: function (response) {
 
1540
  // Remove Loading Class
1541
  $('.mec-modal-result').removeClass("mec-month-navigator-loading");
1542
 
1543
  // Append Month
1544
+ $("#mec_skin_events_" + settings.id).append('<div class="mec-month-container" id="mec_daily_view_month_' + settings.id + '_' + response.current_month.id + '">' + response.month + '</div>');
1545
 
1546
  // Append Month Navigator
1547
+ $("#mec_skin_" + settings.id + " .mec-calendar-a-month.mec-clear").append('<div class="mec-month-navigator" id="mec_month_navigator' + settings.id + '_' + response.current_month.id + '">' + response.navigator + '</div>');
1548
 
1549
  // Set Listeners
1550
  setListeners();
1551
 
1552
  // Toggle Month
1553
+ toggleMonth(response.current_month.id, '' + year + month + '01');
1554
 
1555
  // Set Today
1556
+ setToday('' + year + month + '01');
1557
+
1558
  // Set Month Filter values in search widget
1559
+ $("#mec_sf_month_" + settings.id).val(month);
1560
+ $("#mec_sf_year_" + settings.id).val(year);
1561
  },
1562
+ error: function () {}
 
 
1563
  });
1564
  }
1565
  }
1566
 
1567
+ function toggleMonth(month_id, day_id) {
 
1568
  // Show related events
1569
+ $('#mec_skin_' + settings.id + ' .mec-month-container').addClass('mec-util-hidden');
1570
+ $('#mec_daily_view_month_' + settings.id + '_' + month_id).removeClass('mec-util-hidden');
1571
 
1572
+ $('#mec_skin_' + settings.id + ' .mec-month-navigator').addClass('mec-util-hidden');
1573
+ $('#mec_month_navigator' + settings.id + '_' + month_id).removeClass('mec-util-hidden');
1574
 
1575
  // Initialize Month Navigator
1576
+ if (settings.month_navigator) initMonthNavigator(month_id);
1577
 
1578
  // Initialize Days Slider
1579
  initDaysSlider(month_id, day_id);
1581
  // Focus First Active Day
1582
  mec_focus_day(settings.id);
1583
  }
1584
+
1585
+ function sed() {
 
1586
  // Single Event Display
1587
+ $("#mec_skin_" + settings.id + " .mec-event-title a").off('click').on('click', function (e) {
 
1588
  e.preventDefault();
1589
  var href = $(this).attr('href');
1590
 
1595
  });
1596
  }
1597
  };
1598
+
1599
  }(jQuery));
1600
 
1601
  // MEC TIMETABLE PLUGIN
1602
+ (function ($) {
1603
+ $.fn.mecTimeTable = function (options) {
 
 
1604
  var active_year;
1605
  var active_month;
1606
  var active_week;
1608
  var active_day;
1609
 
1610
  // Default Options
1611
+ var settings = $.extend({
 
1612
  // These are the defaults.
1613
  today: null,
1614
  week: 1,
1622
  }, options);
1623
 
1624
  // Search Widget
1625
+ if (settings.sf.container !== '') {
1626
+ $(settings.sf.container).mecSearchForm({
 
 
1627
  id: settings.id,
1628
  atts: settings.atts,
1629
+ callback: function (atts) {
 
1630
  settings.atts = atts;
1631
  search(active_year, active_month, active_week, active_day);
1632
  }
1634
  }
1635
 
1636
  // Set The Week
1637
+ setThisWeek(settings.month_id + settings.week, settings.active_day);
1638
 
1639
  // Set Listeners
1640
  setListeners();
1641
 
1642
  // Initialize Month Navigator
1643
+ if (settings.month_navigator) initMonthNavigator(settings.month_id);
1644
 
1645
+ function setListeners() {
 
1646
  // Change Week Listener
1647
+ $(settings.changeWeekElement).off('click').on('click', function () {
1648
+ var week = $('#mec_skin_' + settings.id + ' .mec-weekly-view-week-active').data('week-id');
1649
+ var max_weeks = $('#mec_skin_' + settings.id + ' .mec-weekly-view-week-active').data('max-weeks');
 
1650
  var new_week_number = active_week_number;
1651
 
1652
+ if ($(this).hasClass('mec-previous-month')) {
1653
+ week = parseInt(week) - 1;
 
1654
  new_week_number--;
1655
+ } else {
1656
+ week = parseInt(week) + 1;
 
 
1657
  new_week_number++;
1658
  }
1659
 
1660
+ if (new_week_number <= 1 || new_week_number >= max_weeks) {
 
1661
  // Disable Next/Previous Button
1662
+ $(this).css({
1663
+ 'opacity': .6,
1664
+ 'cursor': 'default'
1665
+ });
1666
+ $(this).find('i').css({
1667
+ 'opacity': .6,
1668
+ 'cursor': 'default'
1669
+ });
1670
+ } else {
1671
  // Enable Next/Previous Buttons
1672
+ $('#mec_skin_' + settings.id + ' .mec-load-week, #mec_skin_' + settings.id + ' .mec-load-week i').css({
1673
+ 'opacity': 1,
1674
+ 'cursor': 'pointer'
1675
+ });
1676
  }
1677
 
1678
  // Week is not in valid range
1679
+ if (new_week_number === 0 || new_week_number > max_weeks) {} else {
 
 
 
 
1680
  setThisWeek(week);
1681
  }
1682
  });
1683
 
1684
  // Change Day Listener
1685
+ $('#mec_skin_' + settings.id + ' .mec-weekly-view-week dt').not('.mec-timetable-has-no-event').off('click').on('click', function () {
 
1686
  var day = $(this).data('date-id');
1687
  setDay(day);
1688
  });
1689
 
1690
  // Single Event Method
1691
+ if (settings.sed_method != '0') {
 
1692
  sed();
1693
  }
1694
  }
1695
 
1696
+ function setThisWeek(week, day) {
 
1697
  // Week is not exists
1698
+ if (!$('#mec_weekly_view_week_' + settings.id + '_' + week).length) {
1699
+ return setThisWeek((parseInt(week) - 1), day);
 
1700
  }
1701
 
1702
  // Set week to active in week list
1703
+ $('#mec_skin_' + settings.id + ' .mec-weekly-view-week').removeClass('mec-weekly-view-week-active');
1704
+ $('#mec_weekly_view_week_' + settings.id + '_' + week).addClass('mec-weekly-view-week-active');
1705
 
1706
  setDay(day);
1707
 
1708
  active_week = week;
1709
+ active_week_number = $('#mec_skin_' + settings.id + ' .mec-weekly-view-week-active').data('week-number');
1710
 
1711
+ $('#mec_skin_' + settings.id + ' .mec-calendar-d-top').find('.mec-current-week').find('span').remove();
1712
+ $('#mec_skin_' + settings.id + ' .mec-calendar-d-top').find('.mec-current-week').append('<span>' + active_week_number + '</span>');
1713
 
1714
+ if (active_week_number === 1) {
 
1715
  // Disable Previous Button
1716
+ $('#mec_skin_' + settings.id + ' .mec-previous-month.mec-load-week').css({
1717
+ 'opacity': .6,
1718
+ 'cursor': 'default'
1719
+ });
1720
+ $('#mec_skin_' + settings.id + ' .mec-previous-month.mec-load-week').find('i').css({
1721
+ 'opacity': .6,
1722
+ 'cursor': 'default'
1723
+ });
1724
  }
1725
  }
1726
 
1727
+ function setDay(day) {
 
1728
  // Find the date automatically
1729
+ if (typeof day === 'undefined') {
1730
+ day = $('#mec_skin_' + settings.id + ' .mec-weekly-view-week-active dt').not('.mec-timetable-has-no-event').first().data('date-id');
 
1731
  }
1732
 
1733
  // Activate the date element
1734
+ $('#mec_skin_' + settings.id + ' dt').removeClass('mec-timetable-day-active');
1735
+ $('#mec_skin_' + settings.id + ' .mec-weekly-view-week-active dt[data-date-id="' + day + '"]').addClass('mec-timetable-day-active');
1736
 
1737
  // Show related events
1738
+ $('#mec_skin_' + settings.id + ' .mec-weekly-view-date-events').addClass('mec-util-hidden');
1739
+ $('#mec_weekly_view_date_events' + settings.id + '_' + day).removeClass('mec-util-hidden');
1740
  }
1741
 
1742
+ function initMonthNavigator(month_id) {
1743
+ $('#mec_month_navigator' + settings.id + '_' + month_id + ' .mec-load-month').off('click').on('click', function () {
 
 
1744
  var year = $(this).data('mec-year');
1745
  var month = $(this).data('mec-month');
1746
 
1748
  });
1749
  }
1750
 
1751
+ function search(year, month, week) {
 
1752
  var week_number = (String(week).slice(-1));
1753
 
1754
  // Add Loading Class
1755
+ if (jQuery('.mec-modal-result').length === 0) jQuery('.mec-wrap').append('<div class="mec-modal-result"></div>');
1756
  jQuery('.mec-modal-result').addClass('mec-month-navigator-loading');
1757
 
1758
+ $.ajax({
 
1759
  url: settings.ajax_url,
1760
+ data: "action=mec_timetable_load_month&mec_year=" + year + "&mec_month=" + month + "&mec_week=" + week_number + "&" + settings.atts + "&apply_sf_date=1",
1761
  dataType: "json",
1762
  type: "post",
1763
+ success: function (response) {
 
1764
  // Remove Loading Class
1765
  $('.mec-modal-result').removeClass("mec-month-navigator-loading");
1766
 
1767
  // Append Month
1768
+ $("#mec_skin_events_" + settings.id).html('<div class="mec-month-container" id="mec_timetable_month_' + settings.id + '_' + response.current_month.id + '">' + response.month + '</div>');
1769
 
1770
  // Append Month Navigator
1771
+ $("#mec_skin_" + settings.id + " .mec-skin-weekly-view-month-navigator-container").html('<div class="mec-month-navigator" id="mec_month_navigator' + settings.id + '_' + response.current_month.id + '">' + response.navigator + '</div>');
1772
 
1773
  // Set Listeners
1774
  setListeners();
1779
  // Set active week
1780
  setThisWeek(response.week_id);
1781
  },
1782
+ error: function () {}
 
 
1783
  });
1784
  }
1785
 
1786
+ function setMonth(year, month, week) {
1787
+ var month_id = '' + year + month;
 
1788
  var week_number = (String(week).slice(-1));
1789
 
1790
  active_month = month;
1791
  active_year = year;
1792
 
1793
  // Month exists so we just show it
1794
+ if ($("#mec_timetable_month_" + settings.id + "_" + month_id).length) {
 
1795
  // Toggle Month
1796
  toggleMonth(month_id);
1797
 
1798
  // Set active week
1799
+ setThisWeek('' + month_id + week_number);
1800
+ } else {
 
 
1801
  // Add Loading Class
1802
+ if (jQuery('.mec-modal-result').length === 0) jQuery('.mec-wrap').append('<div class="mec-modal-result"></div>');
1803
  jQuery('.mec-modal-result').addClass('mec-month-navigator-loading');
1804
 
1805
+ $.ajax({
 
1806
  url: settings.ajax_url,
1807
+ data: "action=mec_timetable_load_month&mec_year=" + year + "&mec_month=" + month + "&mec_week=" + week_number + "&" + settings.atts + "&apply_sf_date=0",
1808
  dataType: "json",
1809
  type: "post",
1810
+ success: function (response) {
 
1811
  // Remove Loading Class
1812
  $('.mec-modal-result').removeClass("mec-month-navigator-loading");
1813
 
1814
  // Append Month
1815
+ $("#mec_skin_events_" + settings.id).append('<div class="mec-month-container" id="mec_timetable_month_' + settings.id + '_' + response.current_month.id + '">' + response.month + '</div>');
1816
 
1817
  // Append Month Navigator
1818
+ $("#mec_skin_" + settings.id + " .mec-skin-weekly-view-month-navigator-container").append('<div class="mec-month-navigator" id="mec_month_navigator' + settings.id + '_' + response.current_month.id + '">' + response.navigator + '</div>');
1819
 
1820
  // Set Listeners
1821
  setListeners();
1827
  setThisWeek(response.week_id);
1828
 
1829
  // Set Month Filter values in search widget
1830
+ $("#mec_sf_month_" + settings.id).val(month);
1831
+ $("#mec_sf_year_" + settings.id).val(year);
1832
  },
1833
+ error: function () {}
 
 
1834
  });
1835
  }
1836
  }
1837
 
1838
+ function toggleMonth(month_id) {
 
1839
  // Show related events
1840
+ $('#mec_skin_' + settings.id + ' .mec-month-container').addClass('mec-util-hidden');
1841
+ $('#mec_timetable_month_' + settings.id + '_' + month_id).removeClass('mec-util-hidden');
1842
 
1843
+ $('#mec_skin_' + settings.id + ' .mec-month-navigator').addClass('mec-util-hidden');
1844
+ $('#mec_month_navigator' + settings.id + '_' + month_id).removeClass('mec-util-hidden');
1845
 
1846
  // Initialize Month Navigator
1847
+ if (settings.month_navigator) initMonthNavigator(month_id);
1848
  }
1849
 
1850
+ function sed() {
 
1851
  // Single Event Display
1852
+ $("#mec_skin_" + settings.id + " .mec-timetable-event-title a").off('click').on('click', function (e) {
 
1853
  e.preventDefault();
1854
  var href = $(this).attr('href');
1855
 
1864
  }(jQuery));
1865
 
1866
  // MEC WEEKLY PROGRAM PLUGIN
1867
+ (function ($) {
1868
+ $.fn.mecWeeklyProgram = function (options) {
 
 
1869
  // Default Options
1870
+ var settings = $.extend({
 
1871
  // These are the defaults.
1872
  id: 0,
1873
  atts: '',
1875
  }, options);
1876
 
1877
  // Search Widget
1878
+ if (settings.sf.container !== '') {
1879
+ $(settings.sf.container).mecSearchForm({
 
 
1880
  id: settings.id,
1881
  atts: settings.atts,
1882
+ callback: function (atts) {
 
1883
  settings.atts = atts;
1884
  search();
1885
  }
1889
  // Set Listeners
1890
  setListeners();
1891
 
1892
+ function setListeners() {
 
1893
  // Single Event Method
1894
+ if (settings.sed_method != '0') {
 
1895
  sed();
1896
  }
1897
  }
1898
 
1899
+ function search() {
 
1900
  var $modal = $('.mec-modal-result');
1901
 
1902
  // Add Loading Class
1903
+ if ($modal.length === 0) $('.mec-wrap').append('<div class="mec-modal-result"></div>');
1904
  $modal.addClass('mec-month-navigator-loading');
1905
 
1906
+ $.ajax({
 
1907
  url: settings.ajax_url,
1908
+ data: "action=mec_weeklyprogram_load&" + settings.atts + "&apply_sf_date=1",
1909
  dataType: "json",
1910
  type: "post",
1911
+ success: function (response) {
 
1912
  // Remove Loading Class
1913
  $modal.removeClass("mec-month-navigator-loading");
1914
 
1915
  // Append Month
1916
+ $("#mec_skin_events_" + settings.id).html(response.date_events);
1917
 
1918
  // Set Listeners
1919
  setListeners();
1920
  },
1921
+ error: function () {}
 
 
1922
  });
1923
  }
1924
 
1925
+ function sed() {
 
1926
  // Single Event Display
1927
+ $("#mec_skin_" + settings.id + " .mec-event-title a").off('click').on('click', function (e) {
 
1928
  e.preventDefault();
1929
  var href = $(this).attr('href');
1930
 
1939
  }(jQuery));
1940
 
1941
  // MEC MASONRY VIEW PLUGIN
1942
+ (function ($) {
1943
+ $.fn.mecMasonryView = function (options) {
 
 
1944
  // Default Options
1945
+ var settings = $.extend({
 
1946
  // These are the defaults.
1947
  id: 0,
1948
  atts: '',
1959
  // Init Masonry
1960
  jQuery(window).load(function () {
1961
  initMasonry();
1962
+ if (typeof custom_dev !== undefined) var custom_dev;
1963
  if (custom_dev == 'yes') {
1964
  $(".mec-wrap").css("height", "1550");
1965
  if (Math.max(document.documentElement.clientWidth, window.innerWidth || 0) < 768) {
1999
  })
2000
  }
2001
  });
2002
+
2003
  function initMasonry() {
2004
  var $container = $("#mec_skin_" + settings.id + " .mec-event-masonry");
2005
  var $grid = $container.isotope({
2016
  },
2017
  });
2018
 
2019
+ if (settings.fit_to_row == 1) $grid.isotope({
2020
+ layoutMode: 'fitRows'
2021
+ });
2022
 
2023
  // Fix Elementor tab
2024
  $('.elementor-tabs').find('.elementor-tab-title').click(function () {
2025
+ $grid.isotope({
2026
+ sortBy: 'date'
2027
+ });
2028
  });
2029
 
2030
  $("#mec_skin_" + settings.id + " .mec-events-masonry-cats a").click(function () {
2031
  var selector = $(this).attr('data-filter');
2032
+ var $grid_cat = $container.isotope({
2033
+ filter: selector,
2034
+ itemSelector: '.mec-masonry-item-wrap',
2035
+ getSortData: {
2036
+ date: '[data-sort-masonry]',
2037
+ },
2038
+ sortBy: 'date',
2039
+ animationOptions: {
2040
+ duration: 750,
2041
+ easing: 'linear',
2042
+ queue: false
2043
+ },
2044
+ });
2045
+ if (settings.masonry_like_grid == 1) $grid_cat.isotope({
2046
+ sortBy: 'date'
2047
+ });
2048
  return false;
2049
  });
2050
 
2063
  });
2064
  }
2065
 
2066
+ function setListeners() {
2067
+ if (settings.sed_method != '0') {
 
 
2068
  sed();
2069
  }
2070
 
2071
  }
2072
 
2073
+ $("#mec_skin_" + settings.id + " .mec-load-more-button").on("click", function () {
 
2074
  loadMore();
2075
  });
2076
 
2077
+ function sed() {
 
2078
  // Single Event Display
2079
+ $("#mec_skin_" + settings.id + " .mec-event-title a, #mec_skin_" + settings.id + " .mec-booking-button").off('click').on('click', function (e) {
 
2080
  e.preventDefault();
2081
  var href = $(this).attr('href');
2082
 
2087
  });
2088
  }
2089
 
2090
+ function loadMore() {
 
2091
  // Add loading Class
2092
+ $("#mec_skin_" + settings.id + " .mec-load-more-button").addClass("mec-load-more-loading");
2093
 
2094
+ $.ajax({
 
2095
  url: settings.ajax_url,
2096
+ data: "action=mec_masonry_load_more&mec_start_date=" + settings.end_date + "&mec_offset=" + settings.offset + "&" + settings.atts + "&apply_sf_date=0",
2097
  dataType: "json",
2098
  type: "post",
2099
+ success: function (response) {
2100
+ if (response.count == "0") {
 
 
2101
  // Remove loading Class
2102
+ $("#mec_skin_" + settings.id + " .mec-load-more-button").removeClass("mec-load-more-loading");
2103
 
2104
  // Hide load more button
2105
+ $("#mec_skin_" + settings.id + " .mec-load-more-button").addClass("mec-util-hidden");
2106
+ } else {
 
 
2107
  // Show load more button
2108
+ $("#mec_skin_" + settings.id + " .mec-load-more-button").removeClass("mec-util-hidden");
2109
+
2110
  // Append Items
2111
+ var node = $("#mec_skin_" + settings.id + " .mec-event-masonry");
2112
+ var markup = '',
2113
+ newItems = $(response.html).find('.mec-masonry-item-wrap');
2114
 
2115
+ newItems.each(function (index) {
 
2116
  node.isotope()
2117
  .append(newItems[index])
2118
  .isotope('appended', newItems[index]);
2119
  });
2120
 
2121
  // Remove loading Class
2122
+ $("#mec_skin_" + settings.id + " .mec-load-more-button").removeClass("mec-load-more-loading");
2123
 
2124
  // Update the variables
2125
  settings.end_date = response.end_date;
2126
  settings.offset = response.offset;
2127
+
2128
  // Single Event Method
2129
+ if (settings.sed_method != '0') {
 
2130
  sed();
2131
  }
2132
  }
2133
  },
2134
+ error: function () {}
 
 
2135
  });
2136
  }
2137
  };
2139
 
2140
 
2141
  // MEC LIST VIEW PLUGIN
2142
+ (function ($) {
2143
+ $.fn.mecListView = function (options) {
 
 
2144
  // Default Options
2145
+ var settings = $.extend({
 
2146
  // These are the defaults.
2147
  id: 0,
2148
  atts: '',
2153
  offset: 0,
2154
  limit: 0
2155
  }, options);
2156
+
2157
  // Set onclick Listeners
2158
  setListeners();
2159
+
2160
  var sf;
2161
+
2162
+ function setListeners() {
2163
  // Search Widget
2164
+ if (settings.sf.container !== '') {
2165
+ sf = $(settings.sf.container).mecSearchForm({
 
 
2166
  id: settings.id,
2167
  atts: settings.atts,
2168
+ callback: function (atts) {
 
2169
  settings.atts = atts;
2170
  search();
2171
  }
2172
  });
2173
  }
2174
+
2175
+ $("#mec_skin_" + settings.id + " .mec-load-more-button").on("click", function () {
 
2176
  loadMore();
2177
  });
2178
 
2179
  // Accordion Toggle
2180
+ if (settings.style === 'accordion') {
2181
+ if (settings.toggle_month_divider) {
2182
+ $('#mec_skin_' + settings.id + ' .mec-month-divider:first-of-type').addClass('active');
 
 
2183
  $('#mec_skin_' + settings.id + ' .mec-month-divider:first-of-type').find('i').removeClass('mec-sl-arrow-down').addClass('mec-sl-arrow-up');
2184
 
2185
  toggle();
2189
  }
2190
 
2191
  // Single Event Method
2192
+ if (settings.sed_method != '0') {
 
2193
  sed();
2194
  }
2195
  }
2196
 
2197
+ function toggle() {
2198
+ $('#mec_skin_' + settings.id + ' .mec-month-divider').off("click").on("click", function (event) {
 
 
2199
  event.preventDefault();
2200
 
2201
  var status = $(this).hasClass('active');
2202
 
2203
  // Remove Active Style of Month Divider
2204
+ $('#mec_skin_' + settings.id + ' .mec-month-divider').removeClass('active');
2205
 
2206
  // Hide All Events
2207
+ $('#mec_skin_' + settings.id + ' .mec-divider-toggle').slideUp('fast');
2208
 
2209
+ if (status) {
 
2210
  $(this).removeClass('active');
2211
  $('.mec-month-divider').find('i').removeClass('mec-sl-arrow-up').addClass('mec-sl-arrow-down');
2212
+ } else {
 
 
2213
  $(this).addClass('active');
2214
  $('.mec-month-divider').find('i').removeClass('mec-sl-arrow-up').addClass('mec-sl-arrow-down')
2215
  $(this).find('i').removeClass('mec-sl-arrow-down').addClass('mec-sl-arrow-up');
2216
 
2217
  var month = $(this).data('toggle-divider');
2218
+ $('#mec_skin_' + settings.id + ' .' + month).slideDown('fast');
2219
  }
2220
  });
2221
  }
2222
 
2223
+ function toggleLoadmore() {
2224
+ $('#mec_skin_' + settings.id + ' .mec-month-divider:not(.active)').each(function () {
 
 
2225
  var month = $(this).data('toggle-divider');
2226
+ $('#mec_skin_' + settings.id + ' .' + month).slideUp('fast');
2227
  });
2228
 
2229
  // Register Listeners
2230
  toggle();
2231
  }
2232
 
2233
+ function accordion() {
 
2234
  // Accordion Toggle
2235
+ $("#mec_skin_" + settings.id + " .mec-toggle-item-inner").off("click").on("click", function (event) {
 
2236
  event.preventDefault();
2237
 
2238
  var $this = $(this);
2239
+ $(this).parent().find(".mec-content-toggle").slideToggle("fast", function () {
 
2240
  $this.children("i").toggleClass("mec-sl-arrow-down mec-sl-arrow-up");
2241
  });
2242
 
2243
  // Trigger Google Map
2244
  var unique_id = $(this).parent().find(".mec-modal-wrap").data('unique-id');
2245
 
2246
+ window['mec_init_gmap' + unique_id]();
2247
  });
2248
  }
2249
+
2250
+ function sed() {
 
2251
  // Single Event Display
2252
+ $("#mec_skin_" + settings.id + " .mec-event-title a, #mec_skin_" + settings.id + " .mec-booking-button, #mec_skin_" + settings.id + " .mec-detail-button").off('click').on('click', function (e) {
 
2253
  e.preventDefault();
2254
  var href = $(this).attr('href');
2255
 
2259
  mecSingleEventDisplayer.getSinglePage(id, occurrence, settings.ajax_url, settings.sed_method, settings.image_popup);
2260
  });
2261
 
2262
+ $("#mec_skin_" + settings.id + " .mec-event-image a img").off('click').on('click', function (e) {
 
2263
  e.preventDefault();
2264
  var href = $(this).parent().attr('href');
2265
 
2269
  mecSingleEventDisplayer.getSinglePage(id, occurrence, settings.ajax_url, settings.sed_method, settings.image_popup);
2270
  });
2271
  }
2272
+
2273
+ function loadMore() {
 
2274
  // Add loading Class
2275
+ $("#mec_skin_" + settings.id + " .mec-load-more-button").addClass("mec-load-more-loading");
2276
 
2277
+ $.ajax({
 
2278
  url: settings.ajax_url,
2279
+ data: "action=mec_list_load_more&mec_start_date=" + settings.end_date + "&mec_offset=" + settings.offset + "&" + settings.atts + "&current_month_divider=" + settings.current_month_divider + "&apply_sf_date=0",
2280
  dataType: "json",
2281
  type: "post",
2282
+ success: function (response) {
2283
+ if (response.count == '0') {
 
 
2284
  // Remove loading Class
2285
+ $("#mec_skin_" + settings.id + " .mec-load-more-button").removeClass("mec-load-more-loading");
2286
 
2287
  // Hide load more button
2288
+ $("#mec_skin_" + settings.id + " .mec-load-more-button").addClass("mec-util-hidden");
2289
+ } else {
 
 
2290
  // Show load more button
2291
+ $("#mec_skin_" + settings.id + " .mec-load-more-button").removeClass("mec-util-hidden");
2292
+
2293
  // Append Items
2294
+ $("#mec_skin_events_" + settings.id).append(response.html);
2295
 
2296
  // Remove loading Class
2297
+ $("#mec_skin_" + settings.id + " .mec-load-more-button").removeClass("mec-load-more-loading");
2298
 
2299
  // Update the variables
2300
  settings.end_date = response.end_date;
2301
  settings.offset = response.offset;
2302
  settings.current_month_divider = response.current_month_divider;
2303
+
2304
  // Single Event Method
2305
+ if (settings.sed_method != '0') {
 
2306
  sed();
2307
  }
2308
 
2309
  // Accordion Toggle
2310
+ if (settings.style === 'accordion') {
2311
+ if (settings.toggle_month_divider) toggleLoadmore();
 
2312
 
2313
  accordion();
2314
  }
2315
  }
2316
  },
2317
+ error: function () {}
 
 
2318
  });
2319
  }
2320
+
2321
+ function search() {
 
2322
  // Hide no event message
2323
+ $("#mec_skin_no_events_" + settings.id).addClass("mec-util-hidden");
2324
+
2325
  // Add loading Class
2326
+ if (jQuery('.mec-modal-result').length === 0) jQuery('.mec-wrap').append('<div class="mec-modal-result"></div>');
2327
  jQuery('.mec-modal-result').addClass('mec-month-navigator-loading');
2328
  jQuery("#gmap-data").val("");
2329
 
2330
+ $.ajax({
 
2331
  url: settings.ajax_url,
2332
+ data: "action=mec_list_load_more&mec_start_date=" + settings.start_date + "&" + settings.atts + "&current_month_divider=0&apply_sf_date=1",
2333
  dataType: "json",
2334
  type: "post",
2335
+ success: function (response) {
2336
+ if (response.count == "0") {
 
 
2337
  // Append Items
2338
+ $("#mec_skin_events_" + settings.id).html('');
2339
+
2340
  // Remove loading Class
2341
  $('.mec-modal-result').removeClass("mec-month-navigator-loading");
2342
 
2344
  $('.mec-skin-map-container').addClass("mec-util-hidden");
2345
 
2346
  // Hide it
2347
+ $("#mec_skin_" + settings.id + " .mec-load-more-button").addClass("mec-util-hidden");
2348
+
2349
  // Show no event message
2350
+ $("#mec_skin_no_events_" + settings.id).removeClass("mec-util-hidden");
2351
+ } else {
 
 
2352
  // Append Items
2353
+ $("#mec_skin_events_" + settings.id).html(response.html);
2354
 
2355
  // Remove loading Class
2356
  $('.mec-modal-result').removeClass("mec-month-navigator-loading");
2359
  $('.mec-skin-map-container').removeClass("mec-util-hidden");
2360
 
2361
  // Show load more button
2362
+ if (response.count >= settings.limit) $("#mec_skin_" + settings.id + " .mec-load-more-button").removeClass("mec-util-hidden");
2363
  // Hide load more button
2364
+ else $("#mec_skin_" + settings.id + " .mec-load-more-button").addClass("mec-util-hidden");
2365
 
2366
  // Update the variables
2367
  settings.end_date = response.end_date;
2368
+ settings.offset = response.offset;
2369
  settings.current_month_divider = response.current_month_divider;
2370
+
2371
  // Single Event Method
2372
+ if (settings.sed_method != '0') {
 
2373
  sed();
2374
  }
2375
 
2376
  // Accordion Toggle
2377
+ if (settings.style === 'accordion') {
2378
+ if (settings.toggle_month_divider) toggle();
 
2379
 
2380
  accordion();
2381
  }
2382
  }
2383
  },
2384
+ error: function () {}
 
 
2385
  });
2386
  }
2387
  };
2388
+
2389
  }(jQuery));
2390
 
2391
  // MEC GRID VIEW PLUGIN
2392
+ (function ($) {
2393
+ $.fn.mecGridView = function (options) {
 
 
2394
  // Default Options
2395
+ var settings = $.extend({
 
2396
  // These are the defaults.
2397
  id: 0,
2398
  atts: '',
2402
  offset: 0,
2403
  start_date: '',
2404
  }, options);
2405
+
2406
  // Set onclick Listeners
2407
  setListeners();
2408
+
2409
  var sf;
2410
+
2411
+ function setListeners() {
2412
  // Search Widget
2413
+ if (settings.sf.container !== '') {
2414
+ sf = $(settings.sf.container).mecSearchForm({
 
 
2415
  id: settings.id,
2416
  atts: settings.atts,
2417
+ callback: function (atts) {
 
2418
  settings.atts = atts;
2419
  search();
2420
  }
2421
  });
2422
  }
2423
+
2424
+ $("#mec_skin_" + settings.id + " .mec-load-more-button").on("click", function () {
 
2425
  loadMore();
2426
  });
2427
+
2428
  // Single Event Method
2429
+ if (settings.sed_method != '0') {
 
2430
  sed();
2431
  }
2432
  }
2433
+
2434
+ function sed() {
 
2435
  // Single Event Display
2436
+ $("#mec_skin_" + settings.id + " .mec-event-title a, #mec_skin_" + settings.id + " .mec-booking-button").off('click').on('click', function (e) {
 
2437
  e.preventDefault();
2438
  var href = $(this).attr('href');
2439
 
2442
 
2443
  mecSingleEventDisplayer.getSinglePage(id, occurrence, settings.ajax_url, settings.sed_method, settings.image_popup);
2444
  });
2445
+ $("#mec_skin_" + settings.id + " .mec-event-image a img").off('click').on('click', function (e) {
 
2446
  e.preventDefault();
2447
  var href = $(this).parent().attr('href');
2448
 
2452
  mecSingleEventDisplayer.getSinglePage(id, occurrence, settings.ajax_url, settings.sed_method, settings.image_popup);
2453
  });
2454
  }
2455
+
2456
+ function loadMore() {
 
2457
  // Add loading Class
2458
+ $("#mec_skin_" + settings.id + " .mec-load-more-button").addClass("mec-load-more-loading");
2459
 
2460
+ $.ajax({
 
2461
  url: settings.ajax_url,
2462
+ data: "action=mec_grid_load_more&mec_start_date=" + settings.end_date + "&mec_offset=" + settings.offset + "&" + settings.atts + "&apply_sf_date=0",
2463
  dataType: "json",
2464
  type: "post",
2465
+ success: function (response) {
2466
+ if (response.count == "0") {
 
 
2467
  // Remove loading Class
2468
+ $("#mec_skin_" + settings.id + " .mec-load-more-button").removeClass("mec-load-more-loading");
2469
 
2470
  // Hide load more button
2471
+ $("#mec_skin_" + settings.id + " .mec-load-more-button").addClass("mec-util-hidden");
2472
+ } else {
 
 
2473
  // Show load more button
2474
+ $("#mec_skin_" + settings.id + " .mec-load-more-button").removeClass("mec-util-hidden");
2475
+
2476
  // Append Items
2477
+ $("#mec_skin_events_" + settings.id).append(response.html);
2478
 
2479
  // Remove loading Class
2480
+ $("#mec_skin_" + settings.id + " .mec-load-more-button").removeClass("mec-load-more-loading");
2481
 
2482
  // Update the variables
2483
  settings.end_date = response.end_date;
2484
  settings.offset = response.offset;
2485
+
2486
  // Single Event Method
2487
+ if (settings.sed_method != '0') {
 
2488
  sed();
2489
  }
2490
  }
2491
  },
2492
+ error: function () {}
 
 
2493
  });
2494
  }
2495
+
2496
+ function search() {
 
2497
  // Hide no event message
2498
+ $("#mec_skin_no_events_" + settings.id).addClass("mec-util-hidden");
2499
+
2500
  // Add loading Class
2501
+ if (jQuery('.mec-modal-result').length === 0) jQuery('.mec-wrap').append('<div class="mec-modal-result"></div>');
2502
  jQuery('.mec-modal-result').addClass('mec-month-navigator-loading');
2503
  jQuery("#gmap-data").val("");
2504
+
2505
+ $.ajax({
 
2506
  url: settings.ajax_url,
2507
+ data: "action=mec_grid_load_more&mec_start_date=" + settings.start_date + "&" + settings.atts + "&apply_sf_date=1",
2508
  dataType: "json",
2509
  type: "post",
2510
+ success: function (response) {
2511
+ if (response.count == "0") {
 
 
2512
  // Append Items
2513
+ $("#mec_skin_events_" + settings.id).html('');
2514
+
2515
  // Remove loading Class
2516
  $('.mec-modal-result').removeClass("mec-month-navigator-loading");
2517
 
2519
  $('.mec-skin-map-container').addClass("mec-util-hidden");
2520
 
2521
  // Hide it
2522
+ $("#mec_skin_" + settings.id + " .mec-load-more-button").addClass("mec-util-hidden");
2523
+
2524
  // Show no event message
2525
+ $("#mec_skin_no_events_" + settings.id).removeClass("mec-util-hidden");
2526
+ } else {
2527
+ // Append Items
2528
+ $("#mec_skin_events_" + settings.id).html(response.html);
2529
+
2530
+ // Remove loading Class
2531
+ $('.mec-modal-result').removeClass("mec-month-navigator-loading");
2532
+
2533
+ // Show Map
2534
+ $('.mec-skin-map-container').removeClass("mec-util-hidden");
2535
+
2536
+ // Show load more button
2537
+ if (response.count >= settings.limit) $("#mec_skin_" + settings.id + " .mec-load-more-button").removeClass("mec-util-hidden");
2538
+ // Hide load more button
2539
+ else $("#mec_skin_" + settings.id + " .mec-load-more-button").addClass("mec-util-hidden");
2540
+
2541
+ // Update the variables
2542
+ settings.end_date = response.end_date;
2543
+ settings.offset = response.offset;
2544
+
2545
+ // Single Event Method
2546
+ if (settings.sed_method != '0') {
2547
+ sed();
2548
+ }
2549
  }
2550
+ },
2551
+ error: function () {}
2552
+ });
2553
+ }
2554
+ };
2555
+
2556
+ }(jQuery));
2557
+
2558
+ // MEC CUSTOM VIEW PLUGIN
2559
+ (function ($) {
2560
+ $.fn.mecCustomView = function (options) {
2561
+ // Default Options
2562
+ var settings = $.extend({
2563
+ // These are the defaults.
2564
+ id: 0,
2565
+ atts: '',
2566
+ ajax_url: '',
2567
+ sf: {},
2568
+ end_date: '',
2569
+ offset: 0,
2570
+ start_date: '',
2571
+ }, options);
2572
+
2573
+ // Set onclick Listeners
2574
+ setListeners();
2575
+
2576
+ var sf;
2577
+
2578
+ function setListeners() {
2579
+ // Search Widget
2580
+ if (settings.sf.container !== '') {
2581
+ sf = $(settings.sf.container).mecSearchForm({
2582
+ id: settings.id,
2583
+ atts: settings.atts,
2584
+ callback: function (atts) {
2585
+ settings.atts = atts;
2586
+ search();
2587
+ }
2588
+ });
2589
+ }
2590
+
2591
+ $("#mec_skin_" + settings.id + " .mec-load-more-button").on("click", function () {
2592
+ loadMore();
2593
+ });
2594
+
2595
+ // Single Event Method
2596
+ if (settings.sed_method != '0') {
2597
+ sed();
2598
+ }
2599
+ }
2600
+
2601
+ function sed() {
2602
+ // Single Event Display
2603
+ $("#mec_skin_" + settings.id + " .mec-event-title a, #mec_skin_" + settings.id + " .mec-booking-button").off('click').on('click', function (e) {
2604
+ e.preventDefault();
2605
+ var href = $(this).attr('href');
2606
+
2607
+ var id = $(this).data('event-id');
2608
+ var occurrence = get_parameter_by_name('occurrence', href);
2609
+
2610
+ mecSingleEventDisplayer.getSinglePage(id, occurrence, settings.ajax_url, settings.sed_method, settings.image_popup);
2611
+ });
2612
+ $("#mec_skin_" + settings.id + " .mec-event-image a img").off('click').on('click', function (e) {
2613
+ e.preventDefault();
2614
+ var href = $(this).parent().attr('href');
2615
+
2616
+ var id = $(this).parent().data('event-id');
2617
+ var occurrence = get_parameter_by_name('occurrence', href);
2618
+
2619
+ mecSingleEventDisplayer.getSinglePage(id, occurrence, settings.ajax_url, settings.sed_method, settings.image_popup);
2620
+ });
2621
+ }
2622
+
2623
+ function loadMore() {
2624
+ // Add loading Class
2625
+ $("#mec_skin_" + settings.id + " .mec-load-more-button").addClass("mec-load-more-loading");
2626
+
2627
+ $.ajax({
2628
+ url: settings.ajax_url,
2629
+ data: "action=mec_custom_load_more&mec_start_date=" + settings.end_date + "&mec_offset=" + settings.offset + "&" + settings.atts + "&apply_sf_date=0",
2630
+ dataType: "json",
2631
+ type: "post",
2632
+ success: function (response) {
2633
+ if (response.count == "0") {
2634
+ // Remove loading Class
2635
+ $("#mec_skin_" + settings.id + " .mec-load-more-button").removeClass("mec-load-more-loading");
2636
+
2637
+ // Hide load more button
2638
+ $("#mec_skin_" + settings.id + " .mec-load-more-button").addClass("mec-util-hidden");
2639
+ } else {
2640
+ // Show load more button
2641
+ $("#mec_skin_" + settings.id + " .mec-load-more-button").removeClass("mec-util-hidden");
2642
+
2643
  // Append Items
2644
+ $("#mec_skin_events_" + settings.id).append(response.html);
2645
+
2646
+ // Remove loading Class
2647
+ $("#mec_skin_" + settings.id + " .mec-load-more-button").removeClass("mec-load-more-loading");
2648
+
2649
+ // Update the variables
2650
+ settings.end_date = response.end_date;
2651
+ settings.offset = response.offset;
2652
+
2653
+ // Single Event Method
2654
+ if (settings.sed_method != '0') {
2655
+ sed();
2656
+ }
2657
+ }
2658
+ },
2659
+ error: function () {}
2660
+ });
2661
+ }
2662
+
2663
+ function search() {
2664
+ // Hide no event message
2665
+ $("#mec_skin_no_events_" + settings.id).addClass("mec-util-hidden");
2666
+
2667
+ // Add loading Class
2668
+ if (jQuery('.mec-modal-result').length === 0) jQuery('.mec-wrap').append('<div class="mec-modal-result"></div>');
2669
+ jQuery('.mec-modal-result').addClass('mec-month-navigator-loading');
2670
+ jQuery("#gmap-data").val("");
2671
+
2672
+ $.ajax({
2673
+ url: settings.ajax_url,
2674
+ data: "action=mec_custom_load_more&mec_start_date=" + settings.start_date + "&" + settings.atts + "&apply_sf_date=1",
2675
+ dataType: "json",
2676
+ type: "post",
2677
+ success: function (response) {
2678
+ if (response.count == "0") {
2679
+ // Append Items
2680
+ $("#mec_skin_events_" + settings.id).html('');
2681
+
2682
+ // Remove loading Class
2683
+ $('.mec-modal-result').removeClass("mec-month-navigator-loading");
2684
+
2685
+ // Hide Map
2686
+ $('.mec-skin-map-container').addClass("mec-util-hidden");
2687
+
2688
+ // Hide it
2689
+ $("#mec_skin_" + settings.id + " .mec-load-more-button").addClass("mec-util-hidden");
2690
+
2691
+ // Show no event message
2692
+ $("#mec_skin_no_events_" + settings.id).removeClass("mec-util-hidden");
2693
+ } else {
2694
+ // Append Items
2695
+ $("#mec_skin_events_" + settings.id).html(response.html);
2696
 
2697
  // Remove loading Class
2698
  $('.mec-modal-result').removeClass("mec-month-navigator-loading");
2701
  $('.mec-skin-map-container').removeClass("mec-util-hidden");
2702
 
2703
  // Show load more button
2704
+ if (response.count >= settings.limit) $("#mec_skin_" + settings.id + " .mec-load-more-button").removeClass("mec-util-hidden");
2705
  // Hide load more button
2706
+ else $("#mec_skin_" + settings.id + " .mec-load-more-button").addClass("mec-util-hidden");
2707
 
2708
  // Update the variables
2709
  settings.end_date = response.end_date;
2710
+ settings.offset = response.offset;
2711
+
2712
  // Single Event Method
2713
+ if (settings.sed_method != '0') {
 
2714
  sed();
2715
  }
2716
  }
2717
  },
2718
+ error: function () {}
 
 
2719
  });
2720
  }
2721
  };
2722
+
2723
  }(jQuery));
2724
 
2725
  // MEC AGENDA VIEW PLUGIN
2726
+ (function ($) {
2727
+ $.fn.mecAgendaView = function (options) {
 
 
2728
  // Default Options
2729
+ var settings = $.extend({
 
2730
  // These are the defaults.
2731
  id: 0,
2732
  atts: '',
2741
  setListeners();
2742
 
2743
  var sf;
2744
+
2745
+ function setListeners() {
2746
  // Search Widget
2747
+ if (settings.sf.container !== '') {
2748
+ sf = $(settings.sf.container).mecSearchForm({
 
 
2749
  id: settings.id,
2750
  atts: settings.atts,
2751
+ callback: function (atts) {
 
2752
  settings.atts = atts;
2753
  search();
2754
  }
2755
  });
2756
  }
2757
 
2758
+ $("#mec_skin_" + settings.id + " .mec-load-more-button").on("click", function () {
 
2759
  loadMore();
2760
  });
2761
 
2762
  // Single Event Method
2763
+ if (settings.sed_method != '0') {
 
2764
  sed();
2765
  }
2766
  }
2767
 
2768
+ function sed() {
 
2769
  // Single Event Display
2770
+ $("#mec_skin_" + settings.id + " .mec-agenda-event-title a").off('click').on('click', function (e) {
 
2771
  e.preventDefault();
2772
  var href = $(this).attr('href');
2773
 
2778
  });
2779
  }
2780
 
2781
+ function loadMore() {
 
2782
  // Add loading Class
2783
+ $("#mec_skin_" + settings.id + " .mec-load-more-button").addClass("mec-load-more-loading");
2784
 
2785
+ $.ajax({
 
2786
  url: settings.ajax_url,
2787
+ data: "action=mec_agenda_load_more&mec_start_date=" + settings.end_date + "&mec_offset=" + settings.offset + "&" + settings.atts + "&current_month_divider=" + settings.current_month_divider + "&apply_sf_date=0",
2788
  dataType: "json",
2789
  type: "post",
2790
+ success: function (response) {
2791
+ if (response.count == "0") {
 
 
2792
  // Remove loading Class
2793
+ $("#mec_skin_" + settings.id + " .mec-load-more-button").removeClass("mec-load-more-loading");
2794
 
2795
  // Hide load more button
2796
+ $("#mec_skin_" + settings.id + " .mec-load-more-button").addClass("mec-util-hidden");
2797
+ } else {
 
 
2798
  // Show load more button
2799
+ $("#mec_skin_" + settings.id + " .mec-load-more-button").removeClass("mec-util-hidden");
2800
 
2801
  // Append Items
2802
+ $("#mec_skin_events_" + settings.id + " .mec-events-agenda-container").append(response.html);
2803
 
2804
  // Remove loading Class
2805
+ $("#mec_skin_" + settings.id + " .mec-load-more-button").removeClass("mec-load-more-loading");
2806
 
2807
  // Update the variables
2808
  settings.end_date = response.end_date;
2810
  settings.current_month_divider = response.current_month_divider;
2811
 
2812
  // Single Event Method
2813
+ if (settings.sed_method != '0') {
 
2814
  sed();
2815
  }
2816
  }
2817
  },
2818
+ error: function () {}
 
 
2819
  });
2820
  }
2821
 
2822
+ function search() {
 
2823
  // Hide no event message
2824
+ $("#mec_skin_no_events_" + settings.id).addClass("mec-util-hidden");
2825
 
2826
  // Add loading Class
2827
+ if (jQuery('.mec-modal-result').length === 0) jQuery('.mec-wrap').append('<div class="mec-modal-result"></div>');
2828
  jQuery('.mec-modal-result').addClass('mec-month-navigator-loading');
2829
 
2830
+ $.ajax({
 
2831
  url: settings.ajax_url,
2832
+ data: "action=mec_agenda_load_more&mec_start_date=" + settings.start_date + "&" + settings.atts + "&current_month_divider=0&apply_sf_date=1",
2833
  dataType: "json",
2834
  type: "post",
2835
+ success: function (response) {
2836
+ if (response.count == "0") {
 
 
2837
  // Append Items
2838
+ $("#mec_skin_events_" + settings.id + " .mec-events-agenda-container").html('');
2839
 
2840
  // Remove loading Class
2841
  $('.mec-modal-result').removeClass("mec-month-navigator-loading");
2842
+
2843
  // Hide it
2844
+ $("#mec_skin_" + settings.id + " .mec-load-more-button").addClass("mec-util-hidden");
2845
 
2846
  // Show no event message
2847
+ $("#mec_skin_no_events_" + settings.id).removeClass("mec-util-hidden");
2848
+ } else {
 
 
2849
  // Append Items
2850
+ $("#mec_skin_events_" + settings.id + " .mec-events-agenda-container").html(response.html);
2851
 
2852
  // Remove loading Class
2853
  $('.mec-modal-result').removeClass("mec-month-navigator-loading");
2854
 
2855
  // Show load more button
2856
+ if (response.count >= settings.limit) $("#mec_skin_" + settings.id + " .mec-load-more-button").removeClass("mec-util-hidden");
2857
  // Hide load more button
2858
+ else $("#mec_skin_" + settings.id + " .mec-load-more-button").addClass("mec-util-hidden");
2859
 
2860
  // Update the variables
2861
  settings.end_date = response.end_date;
2863
  settings.current_month_divider = response.current_month_divider;
2864
 
2865
  // Single Event Method
2866
+ if (settings.sed_method != '0') {
 
2867
  sed();
2868
  }
2869
  }
2870
  },
2871
+ error: function () {}
 
 
2872
  });
2873
  }
2874
  };
2875
  }(jQuery));
2876
 
2877
  // MEC CAROUSEL VIEW PLUGIN
2878
+ (function ($) {
2879
+ $.fn.mecCarouselView = function (options) {
 
 
2880
  // Default Options
2881
+ var settings = $.extend({
 
2882
  // These are the defaults.
2883
  id: 0,
2884
  atts: '',
2885
  ajax_url: '',
2886
  sf: {},
2887
  items: 3,
2888
+ autoplay: '',
2889
  style: 'type1',
2890
  start_date: ''
2891
  }, options);
2892
+
2893
  // Init Sliders
2894
  initSlider();
2895
+
2896
+ function initSlider() {
 
2897
  // Check RTL website
2898
  if ($('body').hasClass('rtl')) {
2899
  var owl_rtl = true;
2901
  var owl_rtl = false;
2902
  }
2903
 
2904
+ if (settings.style === 'type1') {
2905
+
 
2906
  // Start carousel skin
2907
+ var owl = $("#mec_skin_" + settings.id + " .mec-event-carousel-type1 .mec-owl-carousel");
2908
 
2909
+ owl.owlCarousel({
 
2910
  autoplay: true,
2911
  autoplayTimeout: settings.autoplay, // Set AutoPlay to 3 seconds
2912
  loop: true,
2925
  },
2926
  dots: true,
2927
  nav: false,
2928
+ autoplayHoverPause: true,
2929
  rtl: owl_rtl,
2930
  });
2931
  owl.bind(
2934
  $("#mec_skin_" + settings.id + " .mec-owl-carousel").trigger('play.owl.autoplay');
2935
  }
2936
  );
2937
+ } else if (settings.style === 'type4') {
2938
+ $("#mec_skin_" + settings.id + " .mec-owl-carousel").owlCarousel({
2939
+ autoplay: true,
2940
+ loop: true,
2941
+ autoplayTimeout: settings.autoplay,
2942
+ items: settings.items,
2943
+ dots: false,
2944
+ nav: true,
2945
+ responsiveClass: true,
2946
+ responsive: {
2947
+ 0: {
2948
+ items: 1,
2949
+ stagePadding: 50,
 
 
 
 
 
 
 
 
 
 
2950
  },
2951
+ 979: {
2952
+ items: 2,
2953
+ },
2954
+ 1199: {
2955
+ items: settings.count,
2956
+ }
2957
+ },
2958
+ autoplayHoverPause: true,
2959
+ navText: ["<i class='mec-sl-arrow-left'></i>", " <i class='mec-sl-arrow-right'></i>"],
2960
+ rtl: owl_rtl,
2961
+ });
2962
  $("#mec_skin_" + settings.id + " .mec-owl-carousel").bind(
2963
  "mouseleave",
2964
  function (event) {
2965
  $("#mec_skin_" + settings.id + " .mec-owl-carousel").trigger('play.owl.autoplay');
2966
  }
2967
  );
2968
+ } else {
2969
+ $("#mec_skin_" + settings.id + " .mec-owl-carousel").owlCarousel({
 
 
 
2970
  autoplay: true,
2971
  loop: true,
2972
  autoplayTimeout: settings.autoplay,
2985
  items: settings.count,
2986
  }
2987
  },
2988
+ autoplayHoverPause: true,
2989
+ navText: ["<i class='mec-sl-arrow-left'></i>", " <i class='mec-sl-arrow-right'></i>"],
2990
  rtl: owl_rtl,
2991
  });
2992
  $("#mec_skin_" + settings.id + " .mec-owl-carousel").bind(
2993
  "mouseleave",
2994
  function (event) {
2995
+ $("#mec_skin_" + settings.id + " .mec-owl-carousel").trigger('play.owl.autoplay');
2996
  }
2997
  );
2998
  }
2999
  }
3000
  };
3001
+
3002
  }(jQuery));
3003
 
3004
  // MEC SLIDER VIEW PLUGIN
3005
+ (function ($) {
3006
+ $.fn.mecSliderView = function (options) {
 
 
3007
  // Default Options
3008
+ var settings = $.extend({
 
3009
  // These are the defaults.
3010
  id: 0,
3011
  atts: '',
3017
 
3018
  // Init Sliders
3019
  initSlider();
3020
+
3021
+ function initSlider() {
3022
  // Check RTL website
3023
  if ($('body').hasClass('rtl')) {
3024
  var owl_rtl = true;
3026
  var owl_rtl = false;
3027
  }
3028
 
3029
+ $("#mec_skin_" + settings.id + " .mec-owl-carousel").owlCarousel({
 
3030
  autoplay: true,
3031
  autoplayTimeout: settings.autoplay,
3032
  loop: true,
3055
  }(jQuery));
3056
 
3057
  // MEC COUNTDOWN MODULE
3058
+ (function ($) {
3059
+ $.fn.mecCountDown = function (options, callBack) {
 
 
3060
  // Default Options
3061
+ var settings = $.extend({
 
3062
  // These are the defaults.
3063
  date: null,
3064
  format: null
3066
 
3067
  var callback = callBack;
3068
  var selector = $(this);
3069
+
3070
  startCountdown();
3071
  var interval = setInterval(startCountdown, 1000);
3072
+
3073
+ function startCountdown() {
 
3074
  var eventDate = Date.parse(settings.date) / 1000;
3075
  var currentDate = Math.floor($.now() / 1000);
3076
 
3077
+ if (eventDate <= currentDate) {
 
3078
  callback.call(this);
3079
  clearInterval(interval);
3080
  }
3081
 
3082
  var seconds = eventDate - currentDate;
3083
 
3084
+ var days = Math.floor(seconds / (60 * 60 * 24));
3085
+ seconds -= days * 60 * 60 * 24;
3086
 
3087
  var hours = Math.floor(seconds / (60 * 60));
3088
+ seconds -= hours * 60 * 60;
3089
 
3090
  var minutes = Math.floor(seconds / 60);
3091
  seconds -= minutes * 60;
3092
+
3093
+ if (days == 1) selector.find(".mec-timeRefDays").text(mecdata.day);
3094
  else selector.find(".mec-timeRefDays").text(mecdata.days);
3095
+
3096
+ if (hours == 1) selector.find(".mec-timeRefHours").text(mecdata.hour);
3097
  else selector.find(".mec-timeRefHours").text(mecdata.hours);
3098
+
3099
+ if (minutes == 1) selector.find(".mec-timeRefMinutes").text(mecdata.minute);
3100
  else selector.find(".mec-timeRefMinutes").text(mecdata.minutes);
3101
+
3102
+ if (seconds == 1) selector.find(".mec-timeRefSeconds").text(mecdata.second);
3103
  else selector.find(".mec-timeRefSeconds").text(mecdata.seconds);
3104
 
3105
+ if (settings.format === "on") {
 
3106
  days = (String(days).length >= 2) ? days : "0" + days;
3107
  hours = (String(hours).length >= 2) ? hours : "0" + hours;
3108
  minutes = (String(minutes).length >= 2) ? minutes : "0" + minutes;
3109
  seconds = (String(seconds).length >= 2) ? seconds : "0" + seconds;
3110
  }
3111
 
3112
+ if (!isNaN(eventDate)) {
 
3113
  selector.find(".mec-days").text(days);
3114
  selector.find(".mec-hours").text(hours);
3115
  selector.find(".mec-minutes").text(minutes);
3116
  selector.find(".mec-seconds").text(seconds);
3117
+ } else {
 
 
3118
  clearInterval(interval);
3119
  }
3120
  }
3121
  };
3122
+
3123
  }(jQuery));
3124
 
3125
+ function mec_gateway_selected(gateway_id) {
 
3126
  // Hide all gateway forms
3127
  jQuery('.mec-book-form-gateway-checkout').addClass('mec-util-hidden');
3128
+
3129
  // Show selected gateway form
3130
+ jQuery('#mec_book_form_gateway_checkout' + gateway_id).removeClass('mec-util-hidden');
3131
  }
3132
 
3133
+ function mec_wrap_resize() {
3134
+ var $mec_wrap = jQuery('.mec-wrap'),
3135
+ mec_width = $mec_wrap.width();
3136
+ if (mec_width < 959) {
 
3137
  $mec_wrap.addClass('mec-sm959');
3138
+ } else {
 
 
3139
  $mec_wrap.removeClass('mec-sm959');
3140
  }
3141
  }
3142
 
3143
+ function get_parameter_by_name(name, url) {
3144
+ if (!url) {
 
 
3145
  url = window.location.href;
3146
  }
3147
+
3148
  name = name.replace(/[\[\]]/g, "\\$&");
3149
  var regex = new RegExp("[?&]" + name + "(=([^&#]*)|&|#|$)"),
3150
  results = regex.exec(url);
3151
 
3152
+ if (!results) return null;
3153
+ if (!results[2]) return '';
3154
+
3155
  return decodeURIComponent(results[2].replace(/\+/g, " "));
3156
  }
3157
 
3158
  // Focus events day
3159
  var mec_g_month_id = null;
3160
+
3161
+ function mec_focus_day(id) {
3162
+ setTimeout(function () {
3163
+ var owl_go = jQuery("#mec-owl-calendar-d-table-" + id + "-" + mec_g_month_id);
3164
+ owl_go.find('.owl-stage > div').each(function (index) {
3165
+ if (parseInt(jQuery(this).children('div').data("events-count")) > 0) {
3166
+ var index_plus = index + 1;
3167
+ jQuery('#mec_daily_view_day' + id + '_' + mec_g_month_id + (index < 10 ? '0' + index_plus : index_plus)).trigger('click');
 
 
 
3168
  owl_go.trigger('to.owl.carousel', index_plus);
3169
  return false;
3170
  }
3173
  }
3174
 
3175
  // Focus events week
3176
+ function mec_focus_week(id) {
 
3177
  var days = jQuery('.mec-weeks-container .mec-weekly-view-week-active').parent().find('dt');
3178
  var days_count = parseInt(days.length);
3179
+ days.each(function (index) {
3180
+ var index_plus = index + 1;
 
3181
  var week = parseInt(jQuery(this).parent().index());
3182
+
3183
+ if (jQuery(this).data('events-count') > 0) {
3184
+ for (var i = 0; i < week; i++) {
3185
+ setTimeout(function () {
 
 
 
3186
  var event = new Event('click');
3187
+ jQuery('#mec_skin_' + id + ' .mec-next-month.mec-load-week')[0].dispatchEvent(event);
3188
  }, 33);
3189
  }
3190
  return false;
3193
  }
3194
 
3195
  // TODO must be cleaned JS codes
3196
+ (function ($) {
3197
+ $(document).ready(function () {
 
 
3198
  // Check RTL website
3199
  if ($('body').hasClass('rtl')) {
3200
  var owl_rtl = true;
3204
 
3205
  // MEC WIDGET CAROUSEL
3206
  $(".mec-widget .mec-event-grid-classic").addClass('mec-owl-carousel mec-owl-theme');
3207
+ $(".mec-widget .mec-event-grid-classic").owlCarousel({
 
3208
  autoplay: true,
3209
  autoplayTimeout: 3000, // Set AutoPlay to 3 seconds
3210
  autoplayHoverPause: true,
3217
  responsiveClass: true,
3218
  rtl: owl_rtl,
3219
  });
3220
+
3221
  // add mec-sm959 class if mec-wrap div size < 959
3222
  mec_wrap_resize();
3223
+
3224
+ jQuery(window).bind('resize', function () {
 
3225
  mec_wrap_resize();
3226
  });
3227
 
3228
  // Fixed: social hover in iphone
3229
+ $('.mec-event-sharing-wrap').hover(function () {
3230
+ $(this).find('.mec-event-sharing').show(0);
3231
+ },
3232
+ function () {
3233
+ $(this).find('.mec-event-sharing').hide(0);
3234
+ });
 
 
3235
 
3236
  // Register Booking Smooth Scroll
3237
+ $('a.simple-booking[href^="#mec-events-meta-group-booking"]').click(function () {
3238
+ if (location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '') && location.hostname == this.hostname) {
 
 
3239
  var target = $(this.hash);
3240
+ target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
3241
 
3242
+ if (target.length) {
 
3243
  var scrollTopVal = target.offset().top - 30;
3244
 
3245
+ $('html, body').animate({
 
3246
  scrollTop: scrollTopVal
3247
  }, 600);
3248
 
3266
  })(jQuery);
3267
 
3268
  // Weather
3269
+ (function ($) {
3270
+ // Convart fahrenheit to centigrade
3271
+ function convertToC(value) {
3272
+ return Math.round(((parseFloat(value) - 32) * 5 / 9));
3273
+ }
3274
+
3275
+ // Convert centigrade to fahrenheit
3276
+ function convertToF(value) {
3277
+ return Math.round(((1.8 * parseFloat(value)) + 32));
3278
+ }
3279
+
3280
+ // Convert miles to kilometers
3281
+ function MPHToKPH(value) {
 
 
 
3282
  return Math.round(1.609344 * parseFloat(value));
3283
+ }
3284
+
3285
+ // Convert kilometers to miles
3286
+ function KPHToMPH(value) {
 
3287
  return Math.round((0.6214 * parseFloat(value)));
3288
+ }
3289
 
3290
+ $(document).ready(function ($) {
 
3291
  var degree = $('.mec-weather-summary-temp');
3292
  var weather_extra = $('.mec-weather-extras');
3293
  var wind = weather_extra.children('.mec-weather-wind');
3294
  var visibility = weather_extra.children('.mec-weather-visibility');
3295
 
3296
  // Events
3297
+ $('.degrees-mode').click(function () {
 
3298
  var degree_mode = degree.children('var').text().trim();
3299
  var wind_text = wind.text().substring(5);
3300
  var visibility_text = visibility.text().substring(11);
3301
 
3302
+ if (degree_mode == degree.data('c').trim()) {
3303
+ degree.html(convertToF(parseInt(degree.text())) + ' <var>' + degree.data('f') + '</var>');
3304
+ wind.html('<span>Wind:</span> ' + KPHToMPH(parseInt(wind_text)) + '<var>' + wind.data('mph') + '</var>');
3305
+ visibility.html('<span>Visibility:</span> ' + KPHToMPH(parseInt(visibility_text)) + '<var>' + visibility.data('mph') + '</var>');
 
3306
  $(this).text($(this).data('metric'));
3307
+ } else if (degree_mode == degree.data('f').trim()) {
3308
+ degree.html(convertToC(parseInt(degree.text())) + ' <var>' + degree.data('c') + '</var>');
3309
+ wind.html('<span>Wind:</span> ' + MPHToKPH(parseInt(wind_text)) + '<var>' + wind.data('kph') + '</var>');
3310
+ visibility.html('<span>Visibility:</span> ' + MPHToKPH(parseInt(visibility_text)) + '<var>' + visibility.data('kph') + '</var>');
 
 
3311
  $(this).text($(this).data('imperial'));
3312
  }
3313
  });
3314
 
3315
+ $('a').on('click', function () {})
3316
+
3317
  // FES Speakers Adding
3318
+ $('#mec_add_speaker_button').on('click', function () {
 
3319
  var $this = this;
3320
  var content = $($this).parent().find('input');
3321
  var list = $('#mec-fes-speakers-list');
3322
  var key = list.find('.mec-error').length;
3323
 
3324
  $($this).prop("disabled", true).css('cursor', 'wait');
3325
+ $.post(ajaxurl, {
3326
+ action: "speaker_adding",
3327
+ content: content.val(),
3328
+ key: key
3329
+ })
3330
+ .done(function (data) {
3331
+ if ($(data).hasClass('mec-error')) {
3332
+ list.prepend(data);
3333
+ setTimeout(function () {
3334
+ $('#mec-speaker-error-${key}').remove();
3335
+ }, 1500);
3336
+ } else {
3337
+ list.html(data);
3338
+ content.val('');
3339
+ }
 
 
 
 
 
 
3340
 
3341
+ $($this).prop("disabled", false).css('cursor', 'pointer');
3342
+ });
3343
  });
3344
+ });
3345
  })(jQuery);
3346
 
3347
  // Google map Skin
3348
+ function gmapSkin(NewJson) {
 
3349
  var gmap_temp = jQuery("#gmap-data");
3350
  var beforeJson = gmap_temp.val();
3351
+ if (typeof beforeJson === 'undefined') beforeJson = '';
3352
 
3353
  var newJson = NewJson;
3354
  var jsonPush = (typeof beforeJson != 'undefined' && beforeJson.trim() == "") ? [] : JSON.parse(beforeJson);
3355
  var pushState = jsonPush.length < 1 ? false : true;
3356
 
3357
+ for (var key in newJson) {
3358
+ if (pushState) {
3359
+ jsonPush.forEach(function (Item, Index) {
3360
+ var render_location = jsonPush[Index].latitude + "," + jsonPush[Index].longitude;
3361
+ if (key.trim() == render_location.trim()) {
 
 
 
 
3362
  // LightBox Count Update
3363
  newJson[key].count = newJson[key].count + jsonPush[Index].count;
3364
 
3371
  var new_items = jQuery(jsonPush[Index].lightbox).find("div:nth-child(2)").html();
3372
 
3373
  var render_items = dom.html(main_items + new_items).html();
3374
+ var new_info_lightbox = '<div><div class="mec-event-detail mec-map-view-event-detail"><i class="mec-sl-map-marker"></i> ' + newJson[key].name + '</div><div>' + render_items + '</div></div>';
3375
  newJson[key].lightbox = new_info_lightbox;
3376
 
3377
  // LightBox info
3378
+ var new_info_window = '<div class="mec-marker-infowindow-wp"><div class="mec-marker-infowindow-count">' + newJson[key].count + '</div><div class="mec-marker-infowindow-content"><span>Event at this location</span><span>' + newJson[key].name + '</span></div></div>';
3379
  newJson[key].infowindow = new_info_window;
3380
 
3381
  // Remove before values of this location
3382
  jsonPush.splice(Index, 1);
3383
+ }
3384
  });
3385
  }
3386
 
3387
  jsonPush.push(newJson[key]);
3388
  }
3389
+
3390
  gmap_temp.val(JSON.stringify(jsonPush));
3391
  return jsonPush;
3392
  }
assets/js/jquery.nice-select.min.js CHANGED
@@ -1,4 +1,4 @@
1
- /* jQuery Nice Select - v1.0
2
- https://github.com/hernansartorio/jquery-nice-select
3
- Made by Hernán Sartorio */
4
  !function(e){e.fn.niceSelect=function(t){function s(t){t.after(e("<div></div>").addClass("nice-select").addClass(t.attr("class")||"").addClass(t.attr("disabled")?"disabled":"").attr("tabindex",t.attr("disabled")?null:"0").html('<span class="current"></span><ul class="list"></ul>'));var s=t.next(),n=t.find("option"),i=t.find("option:selected");s.find(".current").html(i.data("display")||i.text()),n.each(function(t){var n=e(this),i=n.data("display");s.find("ul").append(e("<li></li>").attr("data-value",n.val()).attr("data-display",i||null).addClass("option"+(n.is(":selected")?" selected":"")+(n.is(":disabled")?" disabled":"")).html(n.text()))})}if("string"==typeof t)return"update"==t?this.each(function(){var t=e(this),n=e(this).next(".nice-select"),i=n.hasClass("open");n.length&&(n.remove(),s(t),i&&t.next().trigger("click"))}):"destroy"==t?(this.each(function(){var t=e(this),s=e(this).next(".nice-select");s.length&&(s.remove(),t.css("display",""))}),0==e(".nice-select").length&&e(document).off(".nice_select")):console.log('Method "'+t+'" does not exist.'),this;this.hide(),this.each(function(){var t=e(this);t.next().hasClass("nice-select")||s(t)}),e(document).off(".nice_select"),e(document).on("click.nice_select",".nice-select",function(t){var s=e(this);e(".nice-select").not(s).removeClass("open"),s.toggleClass("open"),s.hasClass("open")?(s.find(".option"),s.find(".focus").removeClass("focus"),s.find(".selected").addClass("focus")):s.focus()}),e(document).on("click.nice_select",function(t){0===e(t.target).closest(".nice-select").length&&e(".nice-select").removeClass("open").find(".option")}),e(document).on("click.nice_select",".nice-select .option:not(.disabled)",function(t){var s=e(this),n=s.closest(".nice-select");n.find(".selected").removeClass("selected"),s.addClass("selected");var i=s.data("display")||s.text();n.find(".current").text(i),n.prev("select").val(s.data("value")).trigger("change")}),e(document).on("keydown.nice_select",".nice-select",function(t){var s=e(this),n=e(s.find(".focus")||s.find(".list .option.selected"));if(32==t.keyCode||13==t.keyCode)return s.hasClass("open")?n.trigger("click"):s.trigger("click"),!1;if(40==t.keyCode){if(s.hasClass("open")){var i=n.nextAll(".option:not(.disabled)").first();i.length>0&&(s.find(".focus").removeClass("focus"),i.addClass("focus"))}else s.trigger("click");return!1}if(38==t.keyCode){if(s.hasClass("open")){var l=n.prevAll(".option:not(.disabled)").first();l.length>0&&(s.find(".focus").removeClass("focus"),l.addClass("focus"))}else s.trigger("click");return!1}if(27==t.keyCode)s.hasClass("open")&&s.trigger("click");else if(9==t.keyCode&&s.hasClass("open"))return!1});var n=document.createElement("a").style;return n.cssText="pointer-events:auto","auto"!==n.pointerEvents&&e("html").addClass("no-csspointerevents"),this}}(jQuery);
1
+ /* jQuery Nice Select - v1.0
2
+ https://github.com/hernansartorio/jquery-nice-select
3
+ Made by Hernán Sartorio */
4
  !function(e){e.fn.niceSelect=function(t){function s(t){t.after(e("<div></div>").addClass("nice-select").addClass(t.attr("class")||"").addClass(t.attr("disabled")?"disabled":"").attr("tabindex",t.attr("disabled")?null:"0").html('<span class="current"></span><ul class="list"></ul>'));var s=t.next(),n=t.find("option"),i=t.find("option:selected");s.find(".current").html(i.data("display")||i.text()),n.each(function(t){var n=e(this),i=n.data("display");s.find("ul").append(e("<li></li>").attr("data-value",n.val()).attr("data-display",i||null).addClass("option"+(n.is(":selected")?" selected":"")+(n.is(":disabled")?" disabled":"")).html(n.text()))})}if("string"==typeof t)return"update"==t?this.each(function(){var t=e(this),n=e(this).next(".nice-select"),i=n.hasClass("open");n.length&&(n.remove(),s(t),i&&t.next().trigger("click"))}):"destroy"==t?(this.each(function(){var t=e(this),s=e(this).next(".nice-select");s.length&&(s.remove(),t.css("display",""))}),0==e(".nice-select").length&&e(document).off(".nice_select")):console.log('Method "'+t+'" does not exist.'),this;this.hide(),this.each(function(){var t=e(this);t.next().hasClass("nice-select")||s(t)}),e(document).off(".nice_select"),e(document).on("click.nice_select",".nice-select",function(t){var s=e(this);e(".nice-select").not(s).removeClass("open"),s.toggleClass("open"),s.hasClass("open")?(s.find(".option"),s.find(".focus").removeClass("focus"),s.find(".selected").addClass("focus")):s.focus()}),e(document).on("click.nice_select",function(t){0===e(t.target).closest(".nice-select").length&&e(".nice-select").removeClass("open").find(".option")}),e(document).on("click.nice_select",".nice-select .option:not(.disabled)",function(t){var s=e(this),n=s.closest(".nice-select");n.find(".selected").removeClass("selected"),s.addClass("selected");var i=s.data("display")||s.text();n.find(".current").text(i),n.prev("select").val(s.data("value")).trigger("change")}),e(document).on("keydown.nice_select",".nice-select",function(t){var s=e(this),n=e(s.find(".focus")||s.find(".list .option.selected"));if(32==t.keyCode||13==t.keyCode)return s.hasClass("open")?n.trigger("click"):s.trigger("click"),!1;if(40==t.keyCode){if(s.hasClass("open")){var i=n.nextAll(".option:not(.disabled)").first();i.length>0&&(s.find(".focus").removeClass("focus"),i.addClass("focus"))}else s.trigger("click");return!1}if(38==t.keyCode){if(s.hasClass("open")){var l=n.prevAll(".option:not(.disabled)").first();l.length>0&&(s.find(".focus").removeClass("focus"),l.addClass("focus"))}else s.trigger("click");return!1}if(27==t.keyCode)s.hasClass("open")&&s.trigger("click");else if(9==t.keyCode&&s.hasClass("open"))return!1});var n=document.createElement("a").style;return n.cssText="pointer-events:auto","auto"!==n.pointerEvents&&e("html").addClass("no-csspointerevents"),this}}(jQuery);
changelog.txt CHANGED
@@ -1,4 +1,16 @@
1
- v 4.5.1 - 11 September 2019
 
 
 
 
 
 
 
 
 
 
 
 
2
  - Compatibility: WordPress 5.2.3
3
  - Fixed: Showing multiple names and emails in backend booking form (pro)
4
  - Fixed: Date field in backend of booking form (pro)
1
+ v 4.6.0 - 18 September 2019
2
+ - Added: Billing info to booking details page in backend (pro)
3
+ - Added: An option to enable booking while event is on going (pro)
4
+ - Added: Ticket time compatibility for 24 hours (pro)
5
+ - Improved: Admin dashboard styles (Settings, Shortcodes, Add event - hard-refresh required)
6
+ - Changed: Modern Events calendar icon in backend
7
+ - Fixed: NiceSelect on frontend event submission
8
+ - Fixed: ACF plugin conflict on shortcode page
9
+ - Fixed: Event bulk edit
10
+ - Fixed: Time dropdown in search form
11
+ - Fixed: Some minor issues
12
+
13
+ v 4.5.1 - 11 September 2019
14
  - Compatibility: WordPress 5.2.3
15
  - Fixed: Showing multiple names and emails in backend booking form (pro)
16
  - Fixed: Date field in backend of booking form (pro)
languages/modern-events-calendar-lite-de_DE.mo CHANGED
Binary file
languages/modern-events-calendar-lite-de_DE.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: ME Calender\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2019-09-11 13:21+0430\n"
6
- "PO-Revision-Date: 2019-09-11 13:22+0430\n"
7
  "Last-Translator: Jogon <koenig@kafinanz.de>\n"
8
  "Language-Team: German\n"
9
  "Language: de_DE\n"
@@ -68,7 +68,7 @@ msgid "Select Type"
68
  msgstr "Alles Auswählen"
69
 
70
  #: app/features/colors.php:50 app/features/fes/form.php:794
71
- #: app/features/mec/settings.php:597
72
  msgid "Event Color"
73
  msgstr "Farbe der Veranstaltung"
74
 
@@ -78,8 +78,8 @@ msgstr "Farbe der Veranstaltung"
78
  msgid "Settings"
79
  msgstr "Einstellungen"
80
 
81
- #: app/features/contextual.php:62 app/features/events.php:2279
82
- #: app/features/mec/booking.php:398 app/features/mec/support.php:29
83
  #: app/libraries/main.php:554
84
  msgid "Booking Form"
85
  msgstr "Buchungsformular"
@@ -98,7 +98,7 @@ msgstr ""
98
  "<iframe width=\"600\" height=\"300\" src=\"https://www.youtube.com/embed/"
99
  "YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></iframe>"
100
 
101
- #: app/features/contextual.php:70 app/features/mec/booking.php:516
102
  #: app/features/mec/support.php:36 app/libraries/main.php:555
103
  msgid "Payment Gateways"
104
  msgstr "Zahlungs-Gateways"
@@ -193,12 +193,12 @@ msgstr ""
193
  "height=\"420\" src=\"https://www.youtube.com/embed/dqgt1b8X8hs\" frameborder="
194
  "\"0\" allowfullscreen></iframe>"
195
 
196
- #: app/features/contextual.php:117 app/features/mec/settings.php:49
197
  #: app/libraries/main.php:528
198
  msgid "General Options"
199
  msgstr "Allgemeine Einstellungen"
200
 
201
- #: app/features/contextual.php:139 app/features/mec/settings.php:381
202
  #: app/libraries/main.php:530
203
  msgid "Slugs/Permalinks"
204
  msgstr "Slug/Permalinks"
@@ -207,27 +207,27 @@ msgstr "Slug/Permalinks"
207
  msgid "Event Details/Single Event Page"
208
  msgstr "Event Details / Einzelveranstaltungsseite"
209
 
210
- #: app/features/contextual.php:166 app/features/mec/settings.php:413
211
  #: app/libraries/main.php:531
212
  msgid "Currency Options"
213
  msgstr "Währungseinstellungen"
214
 
215
- #: app/features/contextual.php:182 app/features/mec/modules.php:64
216
- #: app/features/mec/modules.php:82 app/libraries/main.php:560
217
  msgid "Google Maps Options"
218
  msgstr "Google Maps Einstellungen"
219
 
220
- #: app/features/contextual.php:244 app/features/mec/settings.php:470
221
  #: app/libraries/main.php:532
222
  msgid "Google Recaptcha Options"
223
  msgstr "Google Recaptcha Einstellungen"
224
 
225
- #: app/features/contextual.php:258 app/features/mec/single.php:130
226
  #: app/libraries/main.php:542
227
  msgid "Countdown Options"
228
  msgstr "Countdown Einstellungsoptionen"
229
 
230
- #: app/features/contextual.php:268 app/features/mec/modules.php:260
231
  #: app/libraries/main.php:565
232
  msgid "Social Networks"
233
  msgstr "Soziale Netzwerke"
@@ -236,34 +236,34 @@ msgstr "Soziale Netzwerke"
236
  msgid "Next Event Module"
237
  msgstr "Nächstes Veranstaltung Modul"
238
 
239
- #: app/features/contextual.php:286 app/features/mec/settings.php:506
240
  #: app/libraries/main.php:533
241
  msgid "Frontend Event Submission"
242
  msgstr "Erstellung von Veranstaltungen im Frontend"
243
 
244
- #: app/features/contextual.php:298 app/features/events.php:1130
245
  #: app/libraries/main.php:543
246
  msgid "Exceptional Days"
247
  msgstr "Herausgenommene Tage "
248
 
249
- #: app/features/contextual.php:308 app/features/events.php:296
250
- #: app/features/mec/booking.php:85 app/features/mec/notifications.php:31
251
  #: app/libraries/main.php:550 app/libraries/main.php:571
252
  #: app/libraries/main.php:652
253
  msgid "Booking"
254
  msgstr "Buchung / Reservierung"
255
 
256
- #: app/features/contextual.php:318 app/features/mec/booking.php:220
257
  #: app/libraries/main.php:551
258
  msgid "Coupons"
259
  msgstr "Gutscheine"
260
 
261
- #: app/features/contextual.php:326 app/features/mec/modules.php:321
262
  #: app/libraries/main.php:567
263
  msgid "BuddyPress Integration"
264
  msgstr "Buddy Press Integration"
265
 
266
- #: app/features/contextual.php:334 app/features/mec/settings.php:763
267
  #: app/libraries/main.php:536
268
  msgid "Mailchimp Integration"
269
  msgstr "Mailchimp Integration"
@@ -272,52 +272,52 @@ msgstr "Mailchimp Integration"
272
  msgid "MEC Activation"
273
  msgstr "MEC Aktivierung"
274
 
275
- #: app/features/events.php:148 app/features/ix/export.php:34
276
  #: app/features/mec/dashboard.php:229 app/skins/daily_view/tpl.php:79
277
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
278
  msgid "Events"
279
  msgstr "Veranstaltungen"
280
 
281
- #: app/features/events.php:149
282
- #: app/features/mec/meta_boxes/display_options.php:917
283
- #: app/features/mec/meta_boxes/display_options.php:973
284
- #: app/features/mec/meta_boxes/display_options.php:1008
285
- #: app/features/profile/profile.php:28 app/skins/daily_view/tpl.php:80
286
  #: app/skins/monthly_view/tpl.php:71 app/skins/yearly_view/tpl.php:69
287
  msgid "Event"
288
  msgstr "Veranstaltung"
289
 
290
- #: app/features/events.php:150 app/features/mec.php:333
291
  msgid "Add Event"
292
  msgstr "Veranstaltung hinzufügen"
293
 
294
- #: app/features/events.php:151 app/features/mec/dashboard.php:134
295
  msgid "Add New Event"
296
  msgstr "Neue Veranstaltung hinzufügen"
297
 
298
- #: app/features/events.php:152 app/features/ix.php:3122
299
  #: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:57
300
  msgid "No events found!"
301
  msgstr "Keine Veranstaltungen gefunden!"
302
 
303
- #: app/features/events.php:153
304
  msgid "All Events"
305
  msgstr "Alle Veranstaltungen"
306
 
307
- #: app/features/events.php:154
308
  msgid "Edit Event"
309
  msgstr ""
310
 
311
- #: app/features/events.php:155
312
  msgid "View Event"
313
  msgstr "Veranstaltung ansehen"
314
 
315
- #: app/features/events.php:156
316
  msgid "No events found in Trash!"
317
  msgstr "Keine Veranstaltungen im Papierkorb gefunden!"
318
 
319
- #: app/features/events.php:173 app/features/events.php:3072
320
- #: app/features/mec/meta_boxes/display_options.php:828
321
  #: app/features/mec/meta_boxes/search_form.php:31
322
  #: app/features/mec/meta_boxes/search_form.php:93
323
  #: app/features/mec/meta_boxes/search_form.php:155
@@ -328,202 +328,186 @@ msgstr "Keine Veranstaltungen im Papierkorb gefunden!"
328
  #: app/features/mec/meta_boxes/search_form.php:453
329
  #: app/features/mec/meta_boxes/search_form.php:514
330
  #: app/features/mec/meta_boxes/search_form.php:575
331
- #: app/features/mec/settings.php:716 app/features/mec/single.php:201
332
- #: app/libraries/main.php:4835 app/libraries/skins.php:808
333
- #: app/skins/single.php:531 app/skins/single/default.php:170
334
  #: app/skins/single/default.php:382 app/skins/single/m1.php:170
335
  #: app/skins/single/m2.php:102 app/skins/single/modern.php:110
336
  msgid "Category"
337
  msgstr "Kategorie"
338
 
339
- #: app/features/events.php:174 app/features/events.php:3043
340
  #: app/features/fes/form.php:745 app/features/mec.php:335
341
- #: app/features/mec/meta_boxes/filter.php:70 app/libraries/main.php:4834
342
  msgid "Categories"
343
  msgstr "Kategorien"
344
 
345
- #: app/features/events.php:184 app/features/labels.php:71
346
  #: app/features/locations.php:69 app/features/organizers.php:69
347
  #: app/features/speakers.php:70
348
  #, php-format
349
  msgid "All %s"
350
  msgstr "Alle %s"
351
 
352
- #: app/features/events.php:185 app/features/labels.php:72
353
  #: app/features/locations.php:70 app/features/organizers.php:70
354
  #: app/features/speakers.php:71
355
  #, php-format
356
  msgid "Edit %s"
357
  msgstr "Bearbeiten %s"
358
 
359
- #: app/features/events.php:186 app/features/labels.php:73
360
  #: app/features/locations.php:71 app/features/organizers.php:71
361
  #: app/features/speakers.php:72
362
  #, php-format
363
  msgid "View %s"
364
  msgstr "Ansicht %s"
365
 
366
- #: app/features/events.php:187 app/features/labels.php:74
367
  #: app/features/locations.php:72 app/features/organizers.php:72
368
  #: app/features/speakers.php:73
369
  #, php-format
370
  msgid "Update %s"
371
  msgstr "Update %s"
372
 
373
- #: app/features/events.php:188 app/features/labels.php:75
374
  #: app/features/locations.php:73 app/features/organizers.php:73
375
  #: app/features/speakers.php:74
376
  #, php-format
377
  msgid "Add New %s"
378
  msgstr "Neu hinzufügen%s"
379
 
380
- #: app/features/events.php:189 app/features/labels.php:76
381
  #: app/features/locations.php:74 app/features/organizers.php:74
382
  #: app/features/speakers.php:75
383
  #, php-format
384
  msgid "New %s Name"
385
  msgstr "Neuer %s Name"
386
 
387
- #: app/features/events.php:190 app/features/labels.php:77
388
  #: app/features/locations.php:75 app/features/organizers.php:75
389
  #: app/features/speakers.php:76
390
  #, php-format
391
  msgid "Popular %s"
392
  msgstr "Beliebt %s"
393
 
394
- #: app/features/events.php:191 app/features/labels.php:78
395
  #: app/features/locations.php:76 app/features/organizers.php:76
396
  #: app/features/speakers.php:77
397
  #, php-format
398
  msgid "Search %s"
399
  msgstr "Suche %s"
400
 
401
- #: app/features/events.php:216 app/features/events.php:237
402
  msgid "Category Icon"
403
  msgstr "Kategoriesymbol"
404
 
405
- #: app/features/events.php:219 app/features/events.php:242
406
  msgid "Select icon"
407
  msgstr "Wählen Sie ein Symbol"
408
 
409
- #: app/features/events.php:291
410
  msgid "Event Details"
411
  msgstr "Veranstaltungsdetails"
412
 
413
- #: app/features/events.php:333 app/features/events.php:3265
414
- #: app/features/events.php:3307 app/features/fes/form.php:706
415
- #: app/features/ix.php:2743 app/features/ix.php:2784
416
- #: app/features/mec/settings.php:573 app/libraries/main.php:4867
417
- #: app/widgets/single.php:103
418
- msgid "Event Cost"
419
- msgstr ""
420
- "Bruttopreis des Events in Euro, 0 für kostenlos oder z.B. 39, ohne €-Zeichen"
421
-
422
- #: app/features/events.php:337 app/features/fes/form.php:709
423
- #: app/libraries/main.php:4868 app/skins/single.php:554
424
- #: app/skins/single/default.php:104 app/skins/single/default.php:316
425
- #: app/skins/single/m1.php:49 app/skins/single/modern.php:199
426
- msgid "Cost"
427
- msgstr " Preis"
428
-
429
- #: app/features/events.php:435
430
  msgid "Note for reviewer"
431
  msgstr "Zusätzliche Anmerkungen zum Event "
432
 
433
- #: app/features/events.php:442
434
  msgid "Guest Data"
435
  msgstr "Gäste Daten"
436
 
437
- #: app/features/events.php:443 app/features/events.php:2261
438
  #: app/features/fes/form.php:668 app/features/labels.php:178
439
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
440
- #: app/features/profile/profile.php:90 app/libraries/notifications.php:805
441
  #: app/modules/booking/steps/form.php:37
442
  msgid "Name"
443
  msgstr "Name"
444
 
445
- #: app/features/events.php:444 app/features/events.php:2272
446
- #: app/features/events.php:2348 app/features/fes/form.php:664
447
- #: app/features/mec/booking.php:57 app/features/mec/booking.php:449
448
  #: app/features/organizers.php:111 app/features/organizers.php:152
449
- #: app/features/profile/profile.php:93 app/features/speakers.php:124
450
  #: app/features/speakers.php:184 app/libraries/main.php:1471
451
  #: app/libraries/main.php:1537 app/libraries/main.php:2582
452
  #: app/libraries/notifications.php:806 app/modules/booking/steps/form.php:46
453
- #: app/modules/booking/steps/form.php:84 app/skins/single.php:781
454
- #: app/skins/single.php:836 app/skins/single/default.php:212
455
  #: app/skins/single/default.php:424 app/skins/single/m1.php:107
456
  #: app/skins/single/m2.php:39 app/skins/single/modern.php:48
457
  msgid "Email"
458
  msgstr "Email"
459
 
460
- #: app/features/events.php:448 app/features/fes/form.php:232
461
  msgid "Date and Time"
462
  msgstr "Datum und Uhrzeit"
463
 
464
- #: app/features/events.php:452 app/features/events.php:458
465
- #: app/features/events.php:3075 app/features/events.php:3265
466
- #: app/features/events.php:3307 app/features/fes/form.php:236
467
  #: app/features/fes/form.php:240 app/features/ix.php:2743
468
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:38
469
  #: app/features/mec/dashboard.php:373
470
- #: app/features/mec/meta_boxes/display_options.php:44
471
- #: app/features/mec/meta_boxes/display_options.php:185
472
- #: app/features/mec/meta_boxes/display_options.php:337
473
- #: app/features/mec/meta_boxes/display_options.php:392
474
- #: app/features/mec/meta_boxes/display_options.php:515
475
- #: app/features/mec/meta_boxes/display_options.php:569
476
- #: app/features/mec/meta_boxes/display_options.php:616
477
- #: app/features/mec/meta_boxes/display_options.php:649
478
- #: app/features/mec/meta_boxes/display_options.php:684
479
- #: app/features/mec/meta_boxes/display_options.php:730
480
- #: app/features/mec/meta_boxes/display_options.php:796
481
- #: app/features/mec/meta_boxes/display_options.php:1031
482
- #: app/features/mec/meta_boxes/display_options.php:1118
483
  msgid "Start Date"
484
  msgstr "Start Datum"
485
 
486
- #: app/features/events.php:530 app/features/events.php:622
487
- #: app/features/events.php:1615 app/features/events.php:1657
488
- #: app/features/events.php:1824 app/features/events.php:1848
489
  #: app/features/fes/form.php:268 app/features/fes/form.php:308
490
  msgid "AM"
491
  msgstr "AM"
492
 
493
- #: app/features/events.php:537 app/features/events.php:629
494
- #: app/features/events.php:1622 app/features/events.php:1664
495
- #: app/features/events.php:1825 app/features/events.php:1849
496
  #: app/features/fes/form.php:269 app/features/fes/form.php:309
497
  msgid "PM"
498
  msgstr "PM"
499
 
500
- #: app/features/events.php:544 app/features/events.php:549
501
- #: app/features/events.php:3076 app/features/events.php:3265
502
- #: app/features/events.php:3307 app/features/fes/form.php:276
503
  #: app/features/fes/form.php:280 app/features/ix.php:2743
504
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:44
505
  #: app/features/mec/dashboard.php:374
506
  msgid "End Date"
507
  msgstr "Ende Datum"
508
 
509
- #: app/features/events.php:643 app/features/fes/form.php:315
510
  msgid "All Day Event"
511
  msgstr "Ganztägige Veranstaltung"
512
 
513
- #: app/features/events.php:653 app/features/fes/form.php:318
514
  msgid "Hide Event Time"
515
  msgstr "Event / Veranstaltungszeit verbergen"
516
 
517
- #: app/features/events.php:663 app/features/fes/form.php:321
518
  msgid "Hide Event End Time"
519
  msgstr "Ende-Zeit der Veranstaltung verbergen"
520
 
521
- #: app/features/events.php:668 app/features/events.php:672
522
  #: app/features/fes/form.php:325
523
  msgid "Time Comment"
524
  msgstr "z.B. MEZ "
525
 
526
- #: app/features/events.php:673 app/features/fes/form.php:326
527
  #, fuzzy
528
  #| msgid ""
529
  #| "It shows next to event time on calendar. You can insert Timezone etc. in "
@@ -535,273 +519,279 @@ msgstr ""
535
  "Neben der Zeit im Kalender wird diese Angabe angezeigt. In diesem Feld "
536
  "können Sie z.B. eine Zeitzone wie z.B. \"MEZ\" usw. einfügen. "
537
 
538
- #: app/features/events.php:675 app/features/events.php:807
539
- #: app/features/events.php:1106 app/features/events.php:1149
540
- #: app/features/events.php:1448 app/features/events.php:1507
541
- #: app/features/events.php:1684 app/features/events.php:1699
542
- #: app/features/events.php:1866 app/features/events.php:1879
543
- #: app/features/events.php:2009 app/features/events.php:2045
544
- #: app/features/events.php:2143 app/features/events.php:2158
545
- #: app/features/events.php:2188 app/features/events.php:2201
546
  #: app/features/fes/form.php:630 app/features/locations.php:299
547
- #: app/features/mec/booking.php:105 app/features/mec/booking.php:142
548
- #: app/features/mec/booking.php:158 app/features/mec/booking.php:265
549
- #: app/features/mec/booking.php:294 app/features/mec/booking.php:342
550
- #: app/features/mec/booking.php:352 app/features/mec/booking.php:374
551
- #: app/features/mec/booking.php:384 app/features/mec/dashboard.php:71
552
- #: app/features/mec/meta_boxes/display_options.php:62
553
- #: app/features/mec/meta_boxes/display_options.php:75
554
- #: app/features/mec/meta_boxes/display_options.php:88
555
- #: app/features/mec/meta_boxes/display_options.php:99
556
- #: app/features/mec/meta_boxes/display_options.php:111
557
- #: app/features/mec/meta_boxes/display_options.php:203
558
- #: app/features/mec/meta_boxes/display_options.php:215
559
- #: app/features/mec/meta_boxes/display_options.php:227
560
- #: app/features/mec/meta_boxes/display_options.php:240
561
- #: app/features/mec/meta_boxes/display_options.php:251
562
- #: app/features/mec/meta_boxes/display_options.php:264
563
- #: app/features/mec/meta_boxes/display_options.php:275
564
- #: app/features/mec/meta_boxes/display_options.php:356
565
- #: app/features/mec/meta_boxes/display_options.php:532
566
- #: app/features/mec/meta_boxes/display_options.php:815
567
- #: app/features/mec/meta_boxes/display_options.php:888
568
- #: app/features/mec/meta_boxes/display_options.php:900
569
- #: app/features/mec/meta_boxes/display_options.php:911
570
- #: app/features/mec/meta_boxes/display_options.php:943
571
- #: app/features/mec/meta_boxes/display_options.php:954
572
- #: app/features/mec/meta_boxes/display_options.php:967
573
- #: app/features/mec/meta_boxes/display_options.php:1002
574
- #: app/features/mec/meta_boxes/display_options.php:1051
575
- #: app/features/mec/meta_boxes/display_options.php:1062
576
- #: app/features/mec/meta_boxes/display_options.php:1073
577
- #: app/features/mec/meta_boxes/display_options.php:1138
578
- #: app/features/mec/meta_boxes/display_options.php:1151
579
- #: app/features/mec/meta_boxes/display_options.php:1164
580
- #: app/features/mec/meta_boxes/display_options.php:1177
581
- #: app/features/mec/meta_boxes/display_options.php:1190
582
- #: app/features/mec/modules.php:50 app/features/mec/modules.php:83
583
- #: app/features/mec/modules.php:100 app/features/mec/modules.php:135
584
- #: app/features/mec/modules.php:151 app/features/mec/modules.php:309
585
  #: app/features/mec/notifications.php:50 app/features/mec/notifications.php:107
586
  #: app/features/mec/notifications.php:159
587
  #: app/features/mec/notifications.php:218
588
  #: app/features/mec/notifications.php:286
589
  #: app/features/mec/notifications.php:349
590
  #: app/features/mec/notifications.php:360
591
- #: app/features/mec/notifications.php:422 app/features/mec/settings.php:63
592
- #: app/features/mec/settings.php:82 app/features/mec/settings.php:109
593
- #: app/features/mec/settings.php:144 app/features/mec/settings.php:165
594
- #: app/features/mec/settings.php:185 app/features/mec/settings.php:262
595
- #: app/features/mec/settings.php:336 app/features/mec/settings.php:353
596
- #: app/features/mec/settings.php:370 app/features/mec/settings.php:389
597
- #: app/features/mec/settings.php:403 app/features/mec/settings.php:431
598
- #: app/features/mec/settings.php:518 app/features/mec/settings.php:656
599
- #: app/features/mec/settings.php:673 app/features/mec/settings.php:778
600
- #: app/features/mec/settings.php:791 app/features/mec/settings.php:807
601
- #: app/features/mec/single.php:39 app/features/mec/single.php:55
602
- #: app/features/mec/single.php:74 app/features/mec/single.php:91
603
- #: app/features/mec/single.php:107 app/features/mec/single.php:121
604
- #: app/features/mec/single.php:159 app/features/mec/styling.php:199
605
  #: app/features/mec/styling.php:216 app/features/mec/styling.php:229
606
- #: app/features/organizers.php:272 app/skins/single.php:629
607
  #: app/skins/single/default.php:119 app/skins/single/default.php:331
608
  #: app/skins/single/m1.php:192 app/skins/single/m2.php:125
609
  #: app/skins/single/modern.php:133
610
  msgid "Read More"
611
  msgstr "Mehr lesen"
612
 
613
- #: app/features/events.php:691 app/features/fes/form.php:332
 
 
 
 
 
 
614
  msgid "Event Repeating"
615
  msgstr "Wiederholende Veranstaltung"
616
 
617
- #: app/features/events.php:695 app/features/fes/form.php:336
618
  msgid "Repeats"
619
  msgstr "Wiederholend"
620
 
621
- #: app/features/events.php:703 app/features/fes/form.php:338
622
  #: app/features/mec/dashboard.php:376 app/skins/full_calendar/tpl.php:109
623
  msgid "Daily"
624
  msgstr "Täglich"
625
 
626
- #: app/features/events.php:710 app/features/fes/form.php:339
627
  msgid "Every Weekday"
628
  msgstr "An jedem Wochentag"
629
 
630
- #: app/features/events.php:717 app/features/fes/form.php:340
631
  msgid "Every Weekend"
632
  msgstr "An jedem Wochenende"
633
 
634
- #: app/features/events.php:724 app/features/fes/form.php:341
635
  msgid "Certain Weekdays"
636
  msgstr "Bestimmte Wochentage"
637
 
638
- #: app/features/events.php:731 app/features/fes/form.php:342
639
  #: app/skins/full_calendar/tpl.php:108
640
  msgid "Weekly"
641
  msgstr "Wöchentlich"
642
 
643
- #: app/features/events.php:738 app/features/fes/form.php:343
644
  #: app/features/mec/dashboard.php:377 app/skins/full_calendar/tpl.php:107
645
  msgid "Monthly"
646
  msgstr "Monatlich"
647
 
648
- #: app/features/events.php:745 app/features/fes/form.php:344
649
  #: app/features/mec/dashboard.php:378 app/skins/full_calendar/tpl.php:106
650
  msgid "Yearly"
651
  msgstr "Jährlich"
652
 
653
- #: app/features/events.php:752 app/features/fes/form.php:345
654
  msgid "Custom Days"
655
  msgstr "Benutzerdefinierte Tage"
656
 
657
- #: app/features/events.php:759 app/features/fes/form.php:346
658
  #, fuzzy
659
  #| msgid "Advanced Method"
660
  msgid "Advanced"
661
  msgstr "Fortgeschrittene Methode"
662
 
663
- #: app/features/events.php:764 app/features/fes/form.php:350
664
  msgid "Repeat Interval"
665
  msgstr "Wiederholungsintervall"
666
 
667
- #: app/features/events.php:766 app/features/fes/form.php:351
668
  msgid "Repeat interval"
669
  msgstr "Wiederholungsintervall"
670
 
671
- #: app/features/events.php:770 app/features/fes/form.php:354
672
  msgid "Week Days"
673
  msgstr "Wochentage"
674
 
675
- #: app/features/events.php:772 app/features/fes/form.php:355
676
- #: app/features/mec/meta_boxes/display_options.php:760
677
  #: app/libraries/main.php:407
678
  msgid "Monday"
679
  msgstr "Montag"
680
 
681
- #: app/features/events.php:775 app/features/fes/form.php:356
682
- #: app/features/mec/meta_boxes/display_options.php:761
683
  #: app/libraries/main.php:407
684
  msgid "Tuesday"
685
  msgstr "Dienstag"
686
 
687
- #: app/features/events.php:778 app/features/fes/form.php:357
688
- #: app/features/mec/meta_boxes/display_options.php:762
689
  #: app/libraries/main.php:407
690
  msgid "Wednesday"
691
  msgstr "Mittwoch"
692
 
693
- #: app/features/events.php:781 app/features/fes/form.php:358
694
- #: app/features/mec/meta_boxes/display_options.php:763
695
  #: app/libraries/main.php:407
696
  msgid "Thursday"
697
  msgstr "Donnerstag"
698
 
699
- #: app/features/events.php:784 app/features/fes/form.php:359
700
- #: app/features/mec/meta_boxes/display_options.php:764
701
  #: app/libraries/main.php:407
702
  msgid "Friday"
703
  msgstr "Freitag"
704
 
705
- #: app/features/events.php:787 app/features/fes/form.php:360
706
- #: app/features/mec/meta_boxes/display_options.php:765
707
  #: app/libraries/main.php:407
708
  msgid "Saturday"
709
  msgstr "Samstag"
710
 
711
- #: app/features/events.php:790 app/features/fes/form.php:361
712
- #: app/features/mec/meta_boxes/display_options.php:759
713
  #: app/libraries/main.php:407
714
  msgid "Sunday"
715
  msgstr "Sonntag"
716
 
717
- #: app/features/events.php:797 app/features/events.php:1747
718
- #: app/features/events.php:1775 app/features/events.php:1913
719
  #: app/features/fes/form.php:366 app/features/ix/import_f_calendar.php:42
720
  #: app/features/ix/import_g_calendar.php:51
721
  #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
722
  msgid "Start"
723
  msgstr "Start"
724
 
725
- #: app/features/events.php:799 app/features/events.php:1751
726
- #: app/features/events.php:1779 app/features/events.php:1917
727
  #: app/features/fes/form.php:367
728
  #, fuzzy
729
  #| msgid "Enabled"
730
  msgid "End"
731
  msgstr "Aktiviert"
732
 
733
- #: app/features/events.php:801 app/features/events.php:1143
734
- #: app/features/events.php:1254 app/features/events.php:1359
735
- #: app/features/events.php:1565 app/features/events.php:1730
736
- #: app/features/events.php:1902 app/features/events.php:1982
737
- #: app/features/events.php:2115 app/features/fes/form.php:368
738
  #: app/features/fes/form.php:842
739
  msgid "Add"
740
  msgstr "Hinzufügen"
741
 
742
- #: app/features/events.php:804
743
  #, fuzzy
744
  #| msgid "Custom Days"
745
  msgid "Custom Days Repeating"
746
  msgstr "Benutzerdefinierte Tage"
747
 
748
- #: app/features/events.php:805
749
  msgid ""
750
  "Add certain days to event occurrence dates. If you have single day event, "
751
  "start and end date should be the same, If you have multiple day event the "
752
  "start and end dates must be commensurate with the initial date."
753
  msgstr ""
754
 
755
- #: app/features/events.php:841 app/features/fes/form.php:394
756
  #, fuzzy
757
  #| msgid "First name"
758
  msgid "First"
759
  msgstr "Vorname"
760
 
761
- #: app/features/events.php:883 app/features/fes/form.php:436
762
  #, fuzzy
763
  #| msgid "second"
764
  msgid "Second"
765
  msgstr "Sekunde"
766
 
767
- #: app/features/events.php:925 app/features/fes/form.php:478
768
  #, fuzzy
769
  #| msgid "Third Party"
770
  msgid "Third"
771
  msgstr "Dritte Seite"
772
 
773
- #: app/features/events.php:967 app/features/fes/form.php:520
774
  msgid "Fourth"
775
  msgstr ""
776
 
777
- #: app/features/events.php:1009 app/features/fes/form.php:562
778
  #, fuzzy
779
  #| msgid "Last name"
780
  msgid "Last"
781
  msgstr "Nachname"
782
 
783
- #: app/features/events.php:1056 app/features/fes/form.php:608
784
  msgid "Ends Repeat"
785
  msgstr "Wiederholung endet"
786
 
787
- #: app/features/events.php:1067 app/features/fes/form.php:612
788
  msgid "Never"
789
  msgstr "Niemals"
790
 
791
- #: app/features/events.php:1079 app/features/fes/form.php:617
792
  msgid "On"
793
  msgstr "Am"
794
 
795
- #: app/features/events.php:1095 app/features/fes/form.php:624
796
  msgid "After"
797
  msgstr "Nach"
798
 
799
- #: app/features/events.php:1099 app/features/events.php:1103
800
  #: app/features/fes/form.php:626 app/features/fes/form.php:629
801
  msgid "Occurrences times"
802
  msgstr " mal vorkommen"
803
 
804
- #: app/features/events.php:1104 app/features/fes/form.php:630
805
  msgid ""
806
  "The event will finish after certain repeats. For example if you set it to "
807
  "10, the event will finish after 10 repeats."
@@ -809,72 +799,88 @@ msgstr ""
809
  "Das Event ist nach einer bestimmten Anzahl von Wiederholungen zu Ende. Zum "
810
  "Beispiel: Bei Eingabe von 10 wird das Event nach 10 Wiederholungen beendet"
811
 
812
- #: app/features/events.php:1136 app/features/events.php:1146
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
813
  msgid "Exclude certain days"
814
  msgstr "Ausschluss bestimmter Tage"
815
 
816
- #: app/features/events.php:1141 app/features/events.php:2349
817
- #: app/features/mec/booking.php:450 app/features/profile/profile.php:31
818
  #: app/libraries/main.php:2030 app/libraries/main.php:2640
819
  #: app/modules/booking/steps/tickets.php:22
820
- #: app/modules/next-event/details.php:90 app/skins/single.php:609
821
  #: app/skins/single/default.php:68 app/skins/single/default.php:280
822
  #: app/skins/single/m1.php:16 app/skins/single/modern.php:166
823
  msgid "Date"
824
  msgstr "Datum"
825
 
826
- #: app/features/events.php:1147
827
  msgid ""
828
  "Exclude certain days from event occurrence dates. Please note that you can "
829
  "exclude only single day occurrences and you cannot exclude one day from "
830
  "multiple day occurrences."
831
  msgstr ""
832
 
833
- #: app/features/events.php:1201 app/libraries/render.php:455
834
  msgid "Day 1"
835
  msgstr ""
836
 
837
- #: app/features/events.php:1223 app/features/mec/settings.php:627
838
- #: app/skins/single.php:899
839
  msgid "Hourly Schedule"
840
  msgstr "Stundenplan"
841
 
842
- #: app/features/events.php:1227
843
  msgid "Add Day"
844
  msgstr ""
845
 
846
- #: app/features/events.php:1228
847
  msgid ""
848
  "Add new days for schedule. For example if your event is multiple days, you "
849
  "can add a different schedule for each day!"
850
  msgstr ""
851
 
852
- #: app/features/events.php:1235
853
  #, php-format
854
  msgid "Day %s"
855
  msgstr ""
856
 
857
- #: app/features/events.php:1239 app/features/events.php:1278
858
- #: app/features/events.php:1313 app/features/events.php:1345
859
- #: app/features/events.php:1374 app/features/events.php:2130
860
- #: app/features/events.php:2177 app/features/events.php:3071
861
- #: app/features/events.php:3265 app/features/events.php:3307
862
  #: app/features/fes/form.php:225 app/features/ix.php:2743
863
- #: app/features/ix.php:2784 app/features/mec/booking.php:334
864
- #: app/features/mec/booking.php:366 app/features/mec/styling.php:111
865
  msgid "Title"
866
  msgstr "Titel"
867
 
868
- #: app/features/events.php:1248 app/features/events.php:1285
869
- #: app/features/events.php:1318 app/features/events.php:1353
870
- #: app/features/events.php:1379 app/features/events.php:1723
871
- #: app/features/events.php:1761 app/features/events.php:1787
872
- #: app/features/events.php:1896 app/features/events.php:1923
873
- #: app/features/events.php:2022 app/features/events.php:2058
874
- #: app/features/events.php:2165 app/features/events.php:2207
875
- #: app/features/fes/list.php:78 app/features/mec/booking.php:277
876
- #: app/features/mec/booking.php:306 app/features/mec/booking.php:357
877
- #: app/features/mec/booking.php:389 app/libraries/main.php:2501
878
  #: app/libraries/main.php:2531 app/libraries/main.php:2560
879
  #: app/libraries/main.php:2590 app/libraries/main.php:2619
880
  #: app/libraries/main.php:2648 app/libraries/main.php:2677
@@ -885,57 +891,57 @@ msgstr "Titel"
885
  msgid "Remove"
886
  msgstr "Entfernen"
887
 
888
- #: app/features/events.php:1255 app/features/events.php:1360
889
  msgid "Add new hourly schedule row"
890
  msgstr "Neue Stundenplan-Zeile hinzufügen"
891
 
892
- #: app/features/events.php:1270 app/features/events.php:1307
893
- #: app/features/events.php:1369
894
  msgid "From e.g. 8:15"
895
  msgstr "Von z.B. 08:15 Uhr"
896
 
897
- #: app/features/events.php:1274 app/features/events.php:1310
898
- #: app/features/events.php:1371
899
  msgid "To e.g. 8:45"
900
  msgstr "bis zum Beispiel 08:45 Uhr"
901
 
902
- #: app/features/events.php:1282 app/features/events.php:1316
903
- #: app/features/events.php:1377 app/features/events.php:1671
904
- #: app/features/events.php:1855
905
  msgid "Description"
906
  msgstr "Beschreibung"
907
 
908
- #: app/features/events.php:1288 app/features/events.php:1321
909
- #: app/features/events.php:1382 app/features/fes/form.php:838
910
- #: app/features/mec.php:343 app/features/mec/modules.php:49
911
- #: app/features/mec/settings.php:621 app/features/speakers.php:60
912
- #: app/libraries/main.php:559 app/libraries/main.php:4842
913
  #: app/modules/speakers/details.php:18
914
  msgid "Speakers"
915
  msgstr ""
916
 
917
- #: app/features/events.php:1341 app/features/events.php:1349
918
  #, fuzzy
919
  #| msgid "Week Days"
920
  msgid "New Day"
921
  msgstr "Wochentage"
922
 
923
- #: app/features/events.php:1413 app/features/fes/form.php:683
924
- #: app/features/mec/settings.php:567
925
  msgid "Event Links"
926
  msgstr "Veranstaltungslinks"
927
 
928
- #: app/features/events.php:1416 app/features/events.php:1422
929
- #: app/features/fes/form.php:685 app/libraries/main.php:4865
930
  msgid "Event Link"
931
  msgstr "Veranstaltungslink"
932
 
933
- #: app/features/events.php:1419 app/features/events.php:1435
934
  #: app/features/fes/form.php:686 app/features/fes/form.php:691
935
  msgid "eg. http://yoursite.com/your-event"
936
  msgstr "z.B. http://ihreseite.com/ihre-veranstaltung"
937
 
938
- #: app/features/events.php:1423
939
  #, fuzzy
940
  #| msgid ""
941
  #| "If you fill it, it will be replaced instead of default event page link. "
@@ -949,32 +955,32 @@ msgstr ""
949
  "dieser durch einen neuen link ersetzt werden. Vollständigen Link einfügen, "
950
  "einschließlich http(s)://"
951
 
952
- #: app/features/events.php:1425
953
  msgid "URL Shortener"
954
  msgstr ""
955
 
956
- #: app/features/events.php:1432 app/features/events.php:1445
957
- #: app/features/fes/form.php:690 app/libraries/main.php:4866
958
- #: app/skins/single.php:628 app/skins/single/default.php:118
959
  #: app/skins/single/default.php:330 app/skins/single/m1.php:191
960
  #: app/skins/single/m2.php:124 app/skins/single/modern.php:132
961
  #: app/widgets/single.php:107
962
  msgid "More Info"
963
  msgstr "Mehr Informationen"
964
 
965
- #: app/features/events.php:1438 app/features/fes/form.php:692
966
  msgid "More Information"
967
  msgstr "z.B. Noch mehr Informationen "
968
 
969
- #: app/features/events.php:1440 app/features/fes/form.php:694
970
  msgid "Current Window"
971
  msgstr "Aktuelles Fenster"
972
 
973
- #: app/features/events.php:1441 app/features/fes/form.php:695
974
  msgid "New Window"
975
  msgstr "Neues Fenster"
976
 
977
- #: app/features/events.php:1446 app/features/fes/form.php:697
978
  msgid ""
979
  "If you fill it, it will be shown in event details page as an optional link. "
980
  "Insert full link including http(s)://"
@@ -985,113 +991,113 @@ msgstr ""
985
  "Text angezeigt werden soll: zum Beispiel: Noch mehr Informationen oder Hier "
986
  "zur Anmeldung (z.B. bei Webinaren sinnvoll) "
987
 
988
- #: app/features/events.php:1488 app/features/events.php:1503
989
  msgid "Total booking limits"
990
  msgstr "Gesamt Verfügbare Plätze"
991
 
992
- #: app/features/events.php:1500 app/features/events.php:1720
993
- #: app/features/events.php:1893 app/modules/booking/default.php:85
994
  #: app/modules/booking/steps/tickets.php:40
995
  #: app/skins/available_spot/tpl.php:145
996
  msgid "Unlimited"
997
  msgstr "Unlimitiert"
998
 
999
- #: app/features/events.php:1506
1000
  msgid ""
1001
  "If you want to set a limit to all tickets, uncheck this checkbox and put a "
1002
  "limitation number."
1003
  msgstr ""
1004
 
1005
- #: app/features/events.php:1508
1006
  #, fuzzy
1007
  #| msgid "Choose your single event style."
1008
  msgid "Read About A Booking System"
1009
  msgstr "Wählen Sie Ihren Single Event Stil"
1010
 
1011
- #: app/features/events.php:1516
1012
  msgid "100"
1013
  msgstr "z.B. 100"
1014
 
1015
- #: app/features/events.php:1521
1016
  #, fuzzy
1017
  #| msgid "Total booking limits"
1018
  msgid "Total user booking limits"
1019
  msgstr "Gesamt Verfügbare Plätze"
1020
 
1021
- #: app/features/events.php:1533 app/features/events.php:1971
1022
- #: app/features/events.php:2103 app/features/events.php:2291
1023
  msgid "Inherit from global options"
1024
  msgstr "Aus den globalen Einstellungen übernehmen"
1025
 
1026
- #: app/features/events.php:1536
1027
  msgid "12"
1028
  msgstr ""
1029
 
1030
- #: app/features/events.php:1557 app/libraries/book.php:60
1031
- #: app/libraries/main.php:4870 app/modules/booking/steps/tickets.php:40
1032
  msgid "Tickets"
1033
  msgstr "Tickets"
1034
 
1035
- #: app/features/events.php:1560
1036
  msgid ""
1037
  "You're translating an event so MEC will use the original event for tickets "
1038
  "and booking. You can only translate the ticket name and description. Please "
1039
  "define exact tickets that you defined in the original event here."
1040
  msgstr ""
1041
 
1042
- #: app/features/events.php:1579 app/features/events.php:1801
1043
  msgid "Ticket Name"
1044
  msgstr "Ticket Name"
1045
 
1046
- #: app/features/events.php:1584 app/features/events.php:1805
1047
- #: app/features/events.php:3265 app/features/events.php:3307
1048
  #: app/features/ix.php:2743 app/features/ix.php:2784
1049
  msgid "Start Time"
1050
  msgstr "Uhrzeit des Beginns"
1051
 
1052
- #: app/features/events.php:1626 app/features/events.php:1829
1053
- #: app/features/events.php:3265 app/features/events.php:3307
1054
  #: app/features/ix.php:2743 app/features/ix.php:2784
1055
  msgid "End Time"
1056
  msgstr "Uhrzeit Ende"
1057
 
1058
- #: app/features/events.php:1677 app/features/events.php:1681
1059
- #: app/features/events.php:1755 app/features/events.php:1782
1060
- #: app/features/events.php:1860 app/features/events.php:1863
1061
- #: app/features/events.php:1919 app/features/events.php:2136
1062
- #: app/features/events.php:2140 app/features/events.php:2182
1063
- #: app/features/events.php:2185 app/features/mec/booking.php:338
1064
- #: app/features/mec/booking.php:341 app/features/mec/booking.php:370
1065
- #: app/features/mec/booking.php:373
1066
  msgid "Price"
1067
  msgstr "Preis"
1068
 
1069
- #: app/features/events.php:1682 app/features/events.php:1864
1070
  msgid "Insert 0 for free ticket. Only numbers please."
1071
  msgstr "Bitte 0 für kostenloses Ticket eingeben. Bitte nur Zahlen eintragen"
1072
 
1073
- #: app/features/events.php:1691 app/features/events.php:1696
1074
- #: app/features/events.php:1873 app/features/events.php:1876
1075
  msgid "Price Label"
1076
  msgstr "Preisschild"
1077
 
1078
- #: app/features/events.php:1697 app/features/events.php:1877
1079
  msgid "For showing on website. e.g. $15"
1080
  msgstr "Um das auf der Webseite anzuzeigen zum Beispiel 15 €"
1081
 
1082
- #: app/features/events.php:1707 app/features/events.php:1887
1083
  msgid "Available Tickets"
1084
  msgstr "Verfügbare Tickets: %s "
1085
 
1086
- #: app/features/events.php:1728 app/features/events.php:1900
1087
  #, fuzzy
1088
  #| msgid "Price Label"
1089
  msgid "Price per Date"
1090
  msgstr "Preisschild"
1091
 
1092
- #: app/features/events.php:1759 app/features/events.php:1785
1093
- #: app/features/events.php:1921 app/features/labels.php:60
1094
- #: app/features/mec/meta_boxes/display_options.php:829
1095
  #: app/features/mec/meta_boxes/search_form.php:66
1096
  #: app/features/mec/meta_boxes/search_form.php:128
1097
  #: app/features/mec/meta_boxes/search_form.php:190
@@ -1102,29 +1108,29 @@ msgstr "Preisschild"
1102
  #: app/features/mec/meta_boxes/search_form.php:488
1103
  #: app/features/mec/meta_boxes/search_form.php:549
1104
  #: app/features/mec/meta_boxes/search_form.php:610
1105
- #: app/features/mec/settings.php:748 app/features/mec/single.php:219
1106
  #: app/libraries/skins.php:938
1107
  msgid "Label"
1108
  msgstr "Label"
1109
 
1110
- #: app/features/events.php:1959
1111
  msgid "Fees"
1112
  msgstr "Gebühren"
1113
 
1114
- #: app/features/events.php:1996 app/features/events.php:2034
1115
- #: app/features/mec/booking.php:257 app/features/mec/booking.php:286
1116
  msgid "Fee Title"
1117
  msgstr "Gebühren Name"
1118
 
1119
- #: app/features/events.php:2002 app/features/events.php:2006
1120
- #: app/features/events.php:2039 app/features/events.php:2042
1121
- #: app/features/mec/booking.php:261 app/features/mec/booking.php:264
1122
- #: app/features/mec/booking.php:290 app/features/mec/booking.php:293
1123
  msgid "Amount"
1124
  msgstr "Betrag"
1125
 
1126
- #: app/features/events.php:2007 app/features/events.php:2043
1127
- #: app/features/mec/booking.php:265 app/features/mec/booking.php:294
1128
  msgid ""
1129
  "Fee amount, considered as fixed amount if you set the type to amount "
1130
  "otherwise considered as percentage"
@@ -1132,93 +1138,93 @@ msgstr ""
1132
  "Gebührenbetrag, gilt als fester Betrag, wenn Sie die Art auf Betrag setzen, "
1133
  "sonst als Prozentsatz"
1134
 
1135
- #: app/features/events.php:2016 app/features/events.php:2052
1136
- #: app/features/mec/booking.php:272 app/features/mec/booking.php:301
1137
  msgid "Percent"
1138
  msgstr "Prozent"
1139
 
1140
- #: app/features/events.php:2017 app/features/events.php:2053
1141
- #: app/features/mec/booking.php:273 app/features/mec/booking.php:302
1142
  msgid "Amount (Per Ticket)"
1143
  msgstr "Betrag (pro Ticket)"
1144
 
1145
- #: app/features/events.php:2018 app/features/events.php:2054
1146
- #: app/features/mec/booking.php:274 app/features/mec/booking.php:303
1147
  msgid "Amount (Per Booking)"
1148
  msgstr "Betrag (pro Buchung)"
1149
 
1150
- #: app/features/events.php:2091 app/features/mec/settings.php:645
1151
  msgid "Ticket Variations / Options"
1152
  msgstr ""
1153
 
1154
- #: app/features/events.php:2141 app/features/events.php:2186
1155
- #: app/features/mec/booking.php:342 app/features/mec/booking.php:374
1156
  #, fuzzy
1157
  #| msgid "Option"
1158
  msgid "Option Price"
1159
  msgstr "Option"
1160
 
1161
- #: app/features/events.php:2151 app/features/events.php:2155
1162
- #: app/features/events.php:2195 app/features/events.php:2198
1163
- #: app/features/mec/booking.php:348 app/features/mec/booking.php:351
1164
- #: app/features/mec/booking.php:380 app/features/mec/booking.php:383
1165
  #, fuzzy
1166
  #| msgid "Amount (Per Ticket)"
1167
  msgid "Maximum Per Ticket"
1168
  msgstr "Betrag (pro Ticket)"
1169
 
1170
- #: app/features/events.php:2156 app/features/events.php:2199
1171
- #: app/features/mec/booking.php:352 app/features/mec/booking.php:384
1172
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
1173
  msgstr ""
1174
 
1175
- #: app/features/events.php:2345 app/features/mec/booking.php:446
1176
  #: app/libraries/main.php:2523
1177
  #, fuzzy
1178
  #| msgid "Name"
1179
  msgid "MEC Name"
1180
  msgstr "Name"
1181
 
1182
- #: app/features/events.php:2346 app/features/mec/booking.php:447
1183
  #: app/libraries/main.php:2552
1184
  #, fuzzy
1185
  #| msgid "Email"
1186
  msgid "MEC Email"
1187
  msgstr "Email"
1188
 
1189
- #: app/features/events.php:2347 app/features/mec/booking.php:448
1190
  #: app/libraries/main.php:2493
1191
  msgid "Text"
1192
  msgstr "Text"
1193
 
1194
- #: app/features/events.php:2350 app/features/mec/booking.php:451
1195
  #: app/features/organizers.php:103 app/features/organizers.php:148
1196
  #: app/features/speakers.php:116 app/features/speakers.php:180
1197
  #: app/features/speakers.php:249 app/libraries/main.php:2669
1198
  msgid "Tel"
1199
  msgstr "Tel"
1200
 
1201
- #: app/features/events.php:2351 app/features/mec/booking.php:452
1202
  #: app/libraries/main.php:2611
1203
  msgid "File"
1204
  msgstr ""
1205
 
1206
- #: app/features/events.php:2352 app/features/mec/booking.php:453
1207
  #: app/libraries/main.php:2698
1208
  msgid "Textarea"
1209
  msgstr "Textbereich"
1210
 
1211
- #: app/features/events.php:2353 app/features/mec/booking.php:454
1212
  #: app/libraries/main.php:2751
1213
  msgid "Checkboxes"
1214
  msgstr "Checkboxes"
1215
 
1216
- #: app/features/events.php:2354 app/features/mec/booking.php:455
1217
  #: app/libraries/main.php:2795
1218
  msgid "Radio Buttons"
1219
  msgstr "Radio Buttons"
1220
 
1221
- #: app/features/events.php:2355 app/features/mec/booking.php:456
1222
  #: app/features/mec/meta_boxes/search_form.php:34
1223
  #: app/features/mec/meta_boxes/search_form.php:41
1224
  #: app/features/mec/meta_boxes/search_form.php:48
@@ -1291,40 +1297,40 @@ msgstr "Radio Buttons"
1291
  msgid "Dropdown"
1292
  msgstr "Dropdown"
1293
 
1294
- #: app/features/events.php:2356 app/features/mec/booking.php:457
1295
  #: app/libraries/main.php:2886
1296
  msgid "Agreement"
1297
  msgstr "Zustimmung"
1298
 
1299
- #: app/features/events.php:2357 app/features/mec/booking.php:458
1300
  #: app/libraries/main.php:2727
1301
  msgid "Paragraph"
1302
  msgstr "Absatz"
1303
 
1304
- #: app/features/events.php:2992 app/features/events.php:3009
1305
- #: app/features/events.php:3026 app/features/events.php:3043
1306
  #, php-format
1307
  msgid "Show all %s"
1308
  msgstr "Zeige alle %s"
1309
 
1310
- #: app/features/events.php:2992
1311
  msgid "labels"
1312
  msgstr "Labels + Eventstatus"
1313
 
1314
- #: app/features/events.php:3009
1315
  msgid "locations"
1316
  msgstr "Orte"
1317
 
1318
- #: app/features/events.php:3026
1319
  msgid "organizers"
1320
  msgstr "Veranstalter"
1321
 
1322
- #: app/features/events.php:3073 app/features/events.php:3265
1323
- #: app/features/events.php:3307 app/features/ix.php:2743
1324
  #: app/features/ix.php:2784 app/features/locations.php:58
1325
  #: app/features/locations.php:230 app/features/locations.php:287
1326
  #: app/features/locations.php:289 app/features/locations.php:298
1327
- #: app/features/mec/meta_boxes/display_options.php:830
1328
  #: app/features/mec/meta_boxes/search_form.php:38
1329
  #: app/features/mec/meta_boxes/search_form.php:100
1330
  #: app/features/mec/meta_boxes/search_form.php:162
@@ -1335,18 +1341,18 @@ msgstr "Veranstalter"
1335
  #: app/features/mec/meta_boxes/search_form.php:460
1336
  #: app/features/mec/meta_boxes/search_form.php:521
1337
  #: app/features/mec/meta_boxes/search_form.php:582
1338
- #: app/features/mec/settings.php:722 app/features/mec/single.php:209
1339
- #: app/libraries/main.php:2024 app/libraries/main.php:4839
1340
- #: app/libraries/skins.php:834 app/skins/single.php:458
1341
- #: app/skins/single.php:876 app/skins/single/default.php:154
1342
  #: app/skins/single/default.php:366 app/skins/single/m1.php:155
1343
  #: app/skins/single/m2.php:87 app/skins/single/modern.php:94
1344
  msgid "Location"
1345
  msgstr "Ort"
1346
 
1347
- #: app/features/events.php:3074 app/features/events.php:3265
1348
- #: app/features/events.php:3307 app/features/ix.php:2743
1349
- #: app/features/ix.php:2784 app/features/mec/meta_boxes/display_options.php:831
1350
  #: app/features/mec/meta_boxes/search_form.php:45
1351
  #: app/features/mec/meta_boxes/search_form.php:107
1352
  #: app/features/mec/meta_boxes/search_form.php:169
@@ -1357,68 +1363,68 @@ msgstr "Ort"
1357
  #: app/features/mec/meta_boxes/search_form.php:467
1358
  #: app/features/mec/meta_boxes/search_form.php:528
1359
  #: app/features/mec/meta_boxes/search_form.php:589
1360
- #: app/features/mec/settings.php:728 app/features/mec/single.php:205
1361
  #: app/features/organizers.php:58 app/features/organizers.php:204
1362
  #: app/features/organizers.php:260 app/features/organizers.php:262
1363
- #: app/features/organizers.php:271 app/libraries/main.php:4841
1364
- #: app/libraries/skins.php:860 app/skins/single.php:764
1365
  #: app/skins/single/default.php:195 app/skins/single/default.php:407
1366
  #: app/skins/single/m1.php:90 app/skins/single/m2.php:22
1367
  #: app/skins/single/modern.php:31
1368
  msgid "Organizer"
1369
  msgstr "Veranstalter"
1370
 
1371
- #: app/features/events.php:3078
1372
  msgid "Repeat"
1373
  msgstr "Wiederholen"
1374
 
1375
- #: app/features/events.php:3079
1376
  msgid "Author"
1377
  msgstr "Autor"
1378
 
1379
- #: app/features/events.php:3200 app/features/events.php:3201
1380
  msgid "iCal Export"
1381
  msgstr "ical Export"
1382
 
1383
- #: app/features/events.php:3203 app/features/events.php:3204
1384
  msgid "CSV Export"
1385
  msgstr "CSV Export"
1386
 
1387
- #: app/features/events.php:3206 app/features/events.php:3207
1388
  msgid "MS Excel Export"
1389
  msgstr "MS Excel Export"
1390
 
1391
- #: app/features/events.php:3209 app/features/events.php:3210
1392
  msgid "XML Export"
1393
  msgstr "XML Export"
1394
 
1395
- #: app/features/events.php:3212 app/features/events.php:3213
1396
  msgid "JSON Export"
1397
  msgstr "JSON Export"
1398
 
1399
- #: app/features/events.php:3215 app/features/events.php:3216
1400
- #: app/features/events.php:3397
1401
  msgid "Duplicate"
1402
  msgstr "Kopie"
1403
 
1404
- #: app/features/events.php:3265 app/features/events.php:3307
1405
  #: app/features/ix.php:2743 app/features/ix.php:2784
1406
  #: app/features/labels.php:177 app/features/locations.php:229
1407
  #: app/features/organizers.php:203 app/features/speakers.php:246
1408
  msgid "ID"
1409
  msgstr "ID"
1410
 
1411
- #: app/features/events.php:3265 app/features/events.php:3307
1412
  #: app/features/ix.php:2743 app/features/ix.php:2784
1413
  msgid "Link"
1414
  msgstr "Link"
1415
 
1416
- #: app/features/events.php:3265 app/features/events.php:3307
1417
  #, php-format
1418
  msgid "%s Tel"
1419
  msgstr "%s Tel"
1420
 
1421
- #: app/features/events.php:3265 app/features/events.php:3307
1422
  #, php-format
1423
  msgid "%s Email"
1424
  msgstr "%s Email"
@@ -1511,7 +1517,7 @@ msgstr ""
1511
  "dieser durch einen neuen link ersetzt werden. Vollständigen Link einfügen, "
1512
  "einschließlich http(s)://"
1513
 
1514
- #: app/features/fes/form.php:723 app/features/mec/settings.php:579
1515
  msgid "Featured Image"
1516
  msgstr "Ausgewähltes Bild"
1517
 
@@ -1521,15 +1527,15 @@ msgstr "Bild entfernen"
1521
 
1522
  #: app/features/fes/form.php:770 app/features/labels.php:61
1523
  #: app/features/labels.php:221 app/features/mec.php:336
1524
- #: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4836
1525
- #: app/skins/single.php:657 app/skins/single/default.php:133
1526
  #: app/skins/single/default.php:345 app/skins/single/m1.php:64
1527
  #: app/skins/single/modern.php:214
1528
  msgid "Labels"
1529
  msgstr "Labels"
1530
 
1531
  #: app/features/fes/form.php:816 app/features/mec.php:334
1532
- #: app/features/mec/meta_boxes/filter.php:138
1533
  msgid "Tags"
1534
  msgstr "Schlagworte"
1535
 
@@ -1750,7 +1756,7 @@ msgstr ""
1750
  "Dies wird alle Ihre Eventdaten von der Webseite in Ihr gewünschtes Format "
1751
  "exportieren."
1752
 
1753
- #: app/features/ix/export.php:25 app/features/mec/modules.php:175
1754
  msgid "iCal"
1755
  msgstr "iCal"
1756
 
@@ -1859,9 +1865,9 @@ msgstr "Umschalten"
1859
  msgid "Add to Google Calendar"
1860
  msgstr "Zum Google Kalender hinzufügen"
1861
 
1862
- #: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:588
1863
- #: app/features/mec/modules.php:389 app/features/mec/notifications.php:541
1864
- #: app/features/mec/settings.php:889 app/features/mec/single.php:266
1865
  msgid "Checking ..."
1866
  msgstr "Überprüfung"
1867
 
@@ -1905,31 +1911,31 @@ msgstr ""
1905
  msgid "ICS Feed"
1906
  msgstr ""
1907
 
1908
- #: app/features/ix/import.php:46 app/features/mec/booking.php:88
1909
- #: app/features/mec/booking.php:223 app/features/mec/booking.php:241
1910
- #: app/features/mec/booking.php:318
1911
- #: app/features/mec/meta_boxes/display_options.php:146
1912
- #: app/features/mec/meta_boxes/display_options.php:311
1913
- #: app/features/mec/modules.php:67 app/features/mec/modules.php:208
1914
- #: app/features/mec/modules.php:225
1915
  #, php-format
1916
  msgid "%s is required to use this feature."
1917
  msgstr ""
1918
 
1919
  #: app/features/ix/import.php:46 app/features/ix/sync.php:22
1920
- #: app/features/mec/booking.php:88 app/features/mec/booking.php:223
1921
- #: app/features/mec/booking.php:241 app/features/mec/booking.php:318
1922
- #: app/features/mec/meta_boxes/display_options.php:146
1923
- #: app/features/mec/meta_boxes/display_options.php:311
1924
- #: app/features/mec/meta_boxes/display_options.php:326
1925
- #: app/features/mec/meta_boxes/display_options.php:453
1926
- #: app/features/mec/meta_boxes/display_options.php:504
1927
- #: app/features/mec/meta_boxes/display_options.php:611
1928
- #: app/features/mec/meta_boxes/display_options.php:718
1929
- #: app/features/mec/meta_boxes/display_options.php:791
1930
- #: app/features/mec/meta_boxes/display_options.php:991
1931
- #: app/features/mec/modules.php:67 app/features/mec/modules.php:208
1932
- #: app/features/mec/modules.php:225
1933
  msgid "Pro version of Modern Events Calendar"
1934
  msgstr ""
1935
 
@@ -2111,7 +2117,7 @@ msgid "Auto Synchronization"
2111
  msgstr "Auto Synchronisation"
2112
 
2113
  #: app/features/ix/sync.php:22
2114
- #: app/features/mec/meta_boxes/display_options.php:791
2115
  #, php-format
2116
  msgid "%s is required to use synchronization feature."
2117
  msgstr ""
@@ -2291,16 +2297,16 @@ msgid "Select label color"
2291
  msgstr "Wähle Label Farbe"
2292
 
2293
  #: app/features/labels.php:112 app/features/labels.php:139
2294
- #: app/features/mec/meta_boxes/display_options.php:34
2295
- #: app/features/mec/meta_boxes/display_options.php:173
2296
- #: app/features/mec/meta_boxes/display_options.php:331
2297
- #: app/features/mec/meta_boxes/display_options.php:509
2298
- #: app/features/mec/meta_boxes/display_options.php:559
2299
- #: app/features/mec/meta_boxes/display_options.php:723
2300
- #: app/features/mec/meta_boxes/display_options.php:873
2301
- #: app/features/mec/meta_boxes/display_options.php:930
2302
- #: app/features/mec/meta_boxes/display_options.php:1022
2303
- #: app/features/mec/meta_boxes/display_options.php:1108
2304
  msgid "Style"
2305
  msgstr "Style"
2306
 
@@ -2324,7 +2330,7 @@ msgid "Featured"
2324
  msgstr "Ausgewähltes Bild"
2325
 
2326
  #: app/features/labels.php:118 app/features/labels.php:143
2327
- #: app/libraries/main.php:5082 app/skins/agenda/render.php:41
2328
  #: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:45
2329
  #: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
2330
  #: app/skins/daily_view/render.php:52 app/skins/grid/render.php:53
@@ -2358,8 +2364,8 @@ msgid "Event %s"
2358
  msgstr "Event %s"
2359
 
2360
  #: app/features/locations.php:59 app/features/mec.php:337
2361
- #: app/features/mec/dashboard.php:243 app/features/mec/meta_boxes/filter.php:87
2362
- #: app/libraries/main.php:4838
2363
  msgid "Locations"
2364
  msgstr "Orte"
2365
 
@@ -2433,7 +2439,7 @@ msgstr ""
2433
  "z.B. Karlsruhe Schlosshotel oder Frankfurt Allianz oder Dortmund "
2434
  "Westfalenhalle"
2435
 
2436
- #: app/features/locations.php:310 app/features/mec/settings.php:609
2437
  #: app/widgets/single.php:115
2438
  msgid "Event Location"
2439
  msgstr "Veranstaltungsort"
@@ -2471,7 +2477,7 @@ msgstr "Bild wählen"
2471
  msgid "Don't show map in single event page"
2472
  msgstr "Karte in Einzelansicht nicht anzeigen"
2473
 
2474
- #: app/features/locations.php:356 app/libraries/main.php:4872
2475
  #, fuzzy
2476
  #| msgid "Locations"
2477
  msgid "Other Locations"
@@ -2535,8 +2541,8 @@ msgid "Support"
2535
  msgstr "Support"
2536
 
2537
  #: app/features/mec.php:338 app/features/mec/dashboard.php:250
2538
- #: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
2539
- #: app/libraries/main.php:4840
2540
  msgid "Organizers"
2541
  msgstr "Veranstalter"
2542
 
@@ -2641,24 +2647,32 @@ msgid ""
2641
  "your host provider in this regard."
2642
  msgstr ""
2643
 
2644
- #: app/features/mec/booking.php:69 app/features/mec/booking.php:464
2645
- #: app/features/mec/booking.php:544 app/features/mec/booking.php:553
2646
- #: app/features/mec/booking.php:563 app/features/mec/booking.php:605
2647
- #: app/features/mec/booking.php:619 app/features/mec/messages.php:11
2648
- #: app/features/mec/messages.php:45 app/features/mec/messages.php:54
2649
- #: app/features/mec/messages.php:88 app/features/mec/messages.php:97
2650
- #: app/features/mec/modules.php:22 app/features/mec/modules.php:354
2651
- #: app/features/mec/modules.php:364 app/features/mec/modules.php:406
2652
- #: app/features/mec/modules.php:420 app/features/mec/notifications.php:10
 
 
 
 
 
 
 
 
2653
  #: app/features/mec/notifications.php:450
2654
  #: app/features/mec/notifications.php:462
2655
  #: app/features/mec/notifications.php:558
2656
- #: app/features/mec/notifications.php:572 app/features/mec/settings.php:31
2657
- #: app/features/mec/settings.php:838 app/features/mec/settings.php:848
2658
- #: app/features/mec/settings.php:906 app/features/mec/settings.php:920
2659
- #: app/features/mec/single.php:14 app/features/mec/single.php:231
2660
- #: app/features/mec/single.php:241 app/features/mec/single.php:283
2661
- #: app/features/mec/single.php:297 app/features/mec/styles.php:11
2662
  #: app/features/mec/styles.php:31 app/features/mec/styles.php:40
2663
  #: app/features/mec/styles.php:77 app/features/mec/styles.php:86
2664
  #: app/features/mec/styling.php:33 app/features/mec/styling.php:238
@@ -2667,66 +2681,66 @@ msgstr ""
2667
  msgid "Save Changes"
2668
  msgstr "Änderungen sichern"
2669
 
2670
- #: app/features/mec/booking.php:93
2671
  msgid "Enable booking module"
2672
  msgstr "Buchungsmodul aktivieren"
2673
 
2674
- #: app/features/mec/booking.php:94
2675
  msgid ""
2676
  "After enabling and saving the settings, reloading the page will add 'payment "
2677
  "Gateways' to the settings and a new menu item on the Dashboard"
2678
  msgstr ""
2679
 
2680
- #: app/features/mec/booking.php:99 app/features/mec/booking.php:104
2681
- #: app/features/mec/modules.php:303 app/features/mec/modules.php:308
2682
  msgid "Date Format"
2683
  msgstr "Datumsformat"
2684
 
2685
- #: app/features/mec/booking.php:105
2686
  msgid "Default is Y-m-d"
2687
  msgstr "Voreinstellung ist J-M-T"
2688
 
2689
- #: app/features/mec/booking.php:112
2690
- #: app/features/mec/meta_boxes/display_options.php:117
2691
- #: app/features/mec/meta_boxes/display_options.php:292
2692
- #: app/features/mec/meta_boxes/display_options.php:362
2693
- #: app/features/mec/meta_boxes/display_options.php:821
2694
- #: app/features/mec/meta_boxes/display_options.php:1088
2695
- #: app/features/mec/meta_boxes/display_options.php:1196
2696
  msgid "Limit"
2697
  msgstr "Limit"
2698
 
2699
- #: app/features/mec/booking.php:114
2700
  #, fuzzy
2701
  #| msgid "Default is 6"
2702
  msgid "Default is empty"
2703
  msgstr "Die Voreinstellung ist 6"
2704
 
2705
- #: app/features/mec/booking.php:117
2706
  #, fuzzy
2707
  #| msgid "Booking Form"
2708
  msgid "Booking Limit"
2709
  msgstr "Buchungsformular"
2710
 
2711
- #: app/features/mec/booking.php:118
2712
  msgid ""
2713
  "Total tickets that a user can book. It is useful if you're providing free "
2714
  "tickets. Leave it empty for unlimited booking."
2715
  msgstr ""
2716
 
2717
- #: app/features/mec/booking.php:125
2718
  msgid "Maximum Dates"
2719
  msgstr "Maximale Anzahl von Daten"
2720
 
2721
- #: app/features/mec/booking.php:127
2722
  msgid "Default is 6"
2723
  msgstr "Die Voreinstellung ist 6"
2724
 
2725
- #: app/features/mec/booking.php:131 app/features/mec/booking.php:141
2726
  msgid "Thank You Page"
2727
  msgstr "Danke Seite"
2728
 
2729
- #: app/features/mec/booking.php:142
2730
  msgid ""
2731
  "User redirects to this page after booking. Leave it empty if you want to "
2732
  "disable it."
@@ -2734,15 +2748,15 @@ msgstr ""
2734
  "Benutzer werden auf diese Seite nach der Buchung weitergeleitet. Lassen Sie "
2735
  "es leer, wenn Sie es deaktivieren möchten."
2736
 
2737
- #: app/features/mec/booking.php:153
2738
  msgid "Enable Express Attendees Form"
2739
  msgstr "Aktivieren Sie das Express-Teilnehmerformular"
2740
 
2741
- #: app/features/mec/booking.php:157 app/modules/booking/steps/form.php:52
2742
  msgid "Attendees Form"
2743
  msgstr "Teilnahmeformular"
2744
 
2745
- #: app/features/mec/booking.php:158
2746
  msgid ""
2747
  "Users are able to apply first attendee information for other attendees in "
2748
  "the booking form."
@@ -2750,115 +2764,121 @@ msgstr ""
2750
  "Benutzer können erste Teilnehmerinformationen für andere Teilnehmer im "
2751
  "Buchungsformular anwenden."
2752
 
2753
- #: app/features/mec/booking.php:171
2754
  #, fuzzy
2755
  #| msgid "Download Invoice"
2756
  msgid "Enable Invoice"
2757
  msgstr "Download Rechnung"
2758
 
2759
- #: app/features/mec/booking.php:175
 
 
 
 
 
 
2760
  msgid "Email verification"
2761
  msgstr "Email-Verifizierung"
2762
 
2763
- #: app/features/mec/booking.php:181
2764
  msgid "Auto verification for free bookings"
2765
  msgstr "Automatische Verifizierung für kostenlose Buchungen"
2766
 
2767
- #: app/features/mec/booking.php:190
2768
  msgid "Auto verification for paid bookings"
2769
  msgstr "Automatische Verifizierung für kostenpflichtige Buchungen"
2770
 
2771
- #: app/features/mec/booking.php:194 app/features/mec/notifications.php:147
2772
  #: app/libraries/main.php:573
2773
  msgid "Booking Confirmation"
2774
  msgstr "Buchungsbestätigung"
2775
 
2776
- #: app/features/mec/booking.php:200
2777
  msgid "Auto confirmation for free bookings"
2778
  msgstr "Automatische Bestätigung für kostenlose Buchungen"
2779
 
2780
- #: app/features/mec/booking.php:209
2781
  msgid "Auto confirmation for paid bookings"
2782
  msgstr "Automatische Bestätigung für kostenpflichtige Buchungen"
2783
 
2784
- #: app/features/mec/booking.php:228
2785
  msgid "Enable coupons module"
2786
  msgstr "Gutscheinmodul aktivieren"
2787
 
2788
- #: app/features/mec/booking.php:230
2789
  msgid ""
2790
  "After enabling and saving the settings,, you should reload the page to see a "
2791
  "new menu on the Dashboard > Booking"
2792
  msgstr ""
2793
 
2794
- #: app/features/mec/booking.php:238 app/libraries/main.php:552
2795
  msgid "Taxes / Fees"
2796
  msgstr "Steuern/Gebühren"
2797
 
2798
- #: app/features/mec/booking.php:246
2799
  msgid "Enable taxes / fees module"
2800
  msgstr "Modul für Gebühren/Steuern aktivieren"
2801
 
2802
- #: app/features/mec/booking.php:251
2803
  msgid "Add Fee"
2804
  msgstr "Gebühr hinzufügen"
2805
 
2806
- #: app/features/mec/booking.php:315 app/libraries/main.php:553
2807
  msgid "Ticket Variations & Options"
2808
  msgstr ""
2809
 
2810
- #: app/features/mec/booking.php:323
2811
  #, fuzzy
2812
  #| msgid "Enable coupons module"
2813
  msgid "Enable ticket options module"
2814
  msgstr "Gutscheinmodul aktivieren"
2815
 
2816
- #: app/features/mec/booking.php:328
2817
  msgid "Add Variation / Option"
2818
  msgstr ""
2819
 
2820
- #: app/features/mec/booking.php:531
2821
  msgid "Enable Organizer Payment Module"
2822
  msgstr ""
2823
 
2824
- #: app/features/mec/booking.php:535
2825
  #, fuzzy
2826
  #| msgid "Organizer Tel"
2827
  msgid "Organizer Payment"
2828
  msgstr "Organisator Telefon"
2829
 
2830
- #: app/features/mec/booking.php:536
2831
  msgid ""
2832
  "By enabling this module, organizers are able to insert their own payment "
2833
  "credentials for enabled gateways per event and receive the payments directly!"
2834
  msgstr ""
2835
 
2836
- #: app/features/mec/booking.php:583 app/features/mec/messages.php:72
2837
- #: app/features/mec/modules.php:384 app/features/mec/notifications.php:536
2838
- #: app/features/mec/settings.php:884 app/features/mec/single.php:261
2839
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:292
2840
  msgid "Saved"
2841
  msgstr "Gesichert"
2842
 
2843
- #: app/features/mec/booking.php:584 app/features/mec/messages.php:73
2844
- #: app/features/mec/modules.php:385 app/features/mec/notifications.php:537
2845
- #: app/features/mec/settings.php:885 app/features/mec/single.php:262
2846
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:293
2847
  msgid "Settings Saved!"
2848
  msgstr ""
2849
 
2850
- #: app/features/mec/booking.php:586 app/features/mec/booking.php:608
2851
- #: app/features/mec/modules.php:387 app/features/mec/modules.php:409
2852
  #: app/features/mec/notifications.php:539
2853
- #: app/features/mec/notifications.php:561 app/features/mec/settings.php:887
2854
- #: app/features/mec/settings.php:909 app/features/mec/single.php:264
2855
- #: app/features/mec/single.php:286 app/libraries/main.php:5081
2856
  msgid "Verified"
2857
  msgstr "Verifiziert"
2858
 
2859
- #: app/features/mec/booking.php:610 app/features/mec/modules.php:411
2860
- #: app/features/mec/notifications.php:563 app/features/mec/settings.php:911
2861
- #: app/features/mec/single.php:288
2862
  msgid "Please Refresh Page"
2863
  msgstr "Bitte Seiten Refresh vornehmen"
2864
 
@@ -2956,7 +2976,7 @@ msgstr "MEC Aktivierung"
2956
  msgid "You cannot access this section."
2957
  msgstr ""
2958
 
2959
- #: app/features/mec/dashboard.php:261 app/features/mec/settings.php:347
2960
  msgid "Upcoming Events"
2961
  msgstr "Bevorstehende Events"
2962
 
@@ -3050,609 +3070,609 @@ msgstr ""
3050
  "wenn Ihre Website eine mehrsprachige Website ist, empfehlen wir Ihnen, die "
3051
  "Nachrichten / Phrasen aus Sprachdateien zu ändern."
3052
 
3053
- #: app/features/mec/meta_boxes/display_options.php:18
3054
  msgid "Skin"
3055
  msgstr "Skin"
3056
 
3057
- #: app/features/mec/meta_boxes/display_options.php:36
3058
- #: app/features/mec/meta_boxes/display_options.php:175
3059
- #: app/features/mec/meta_boxes/display_options.php:561
3060
- #: app/features/mec/meta_boxes/display_options.php:875
3061
- #: app/features/mec/settings.php:211 app/features/mec/settings.php:235
3062
- #: app/features/mec/settings.php:244 app/features/mec/settings.php:285
3063
- #: app/features/mec/settings.php:309 app/features/mec/settings.php:318
3064
  msgid "Classic"
3065
  msgstr "Klassisch"
3066
 
3067
- #: app/features/mec/meta_boxes/display_options.php:37
3068
- #: app/features/mec/meta_boxes/display_options.php:177
3069
- #: app/features/mec/settings.php:236 app/features/mec/settings.php:246
3070
- #: app/features/mec/settings.php:310 app/features/mec/settings.php:320
3071
  msgid "Minimal"
3072
  msgstr "Minimal"
3073
 
3074
- #: app/features/mec/meta_boxes/display_options.php:38
3075
- #: app/features/mec/meta_boxes/display_options.php:178
3076
- #: app/features/mec/meta_boxes/display_options.php:511
3077
- #: app/features/mec/meta_boxes/display_options.php:563
3078
- #: app/features/mec/meta_boxes/display_options.php:725
3079
- #: app/features/mec/meta_boxes/display_options.php:877
3080
- #: app/features/mec/settings.php:213 app/features/mec/settings.php:226
3081
- #: app/features/mec/settings.php:237 app/features/mec/settings.php:247
3082
- #: app/features/mec/settings.php:287 app/features/mec/settings.php:300
3083
- #: app/features/mec/settings.php:311 app/features/mec/settings.php:321
3084
  msgid "Modern"
3085
  msgstr "Modern"
3086
 
3087
- #: app/features/mec/meta_boxes/display_options.php:39
3088
- #: app/features/mec/settings.php:238 app/features/mec/settings.php:312
3089
  msgid "Standard"
3090
  msgstr "Standard"
3091
 
3092
- #: app/features/mec/meta_boxes/display_options.php:40
3093
- #: app/features/mec/settings.php:239 app/features/mec/settings.php:313
3094
  msgid "Accordion"
3095
  msgstr "Accordion"
3096
 
3097
- #: app/features/mec/meta_boxes/display_options.php:46
3098
- #: app/features/mec/meta_boxes/display_options.php:187
3099
- #: app/features/mec/meta_boxes/display_options.php:339
3100
- #: app/features/mec/meta_boxes/display_options.php:618
3101
- #: app/features/mec/meta_boxes/display_options.php:651
3102
- #: app/features/mec/meta_boxes/display_options.php:798
3103
- #: app/features/mec/meta_boxes/display_options.php:1033
3104
- #: app/features/mec/meta_boxes/display_options.php:1120
3105
- msgid "Today"
3106
- msgstr "Heute"
3107
-
3108
- #: app/features/mec/meta_boxes/display_options.php:47
3109
- #: app/features/mec/meta_boxes/display_options.php:188
3110
- #: app/features/mec/meta_boxes/display_options.php:340
3111
- #: app/features/mec/meta_boxes/display_options.php:619
3112
- #: app/features/mec/meta_boxes/display_options.php:652
3113
- #: app/features/mec/meta_boxes/display_options.php:799
3114
- #: app/features/mec/meta_boxes/display_options.php:1034
3115
- #: app/features/mec/meta_boxes/display_options.php:1121
3116
- msgid "Tomorrow"
3117
- msgstr "Morgen"
3118
-
3119
- #: app/features/mec/meta_boxes/display_options.php:48
3120
- #: app/features/mec/meta_boxes/display_options.php:189
3121
- #: app/features/mec/meta_boxes/display_options.php:341
3122
- #: app/features/mec/meta_boxes/display_options.php:394
3123
- #: app/features/mec/meta_boxes/display_options.php:571
3124
- #: app/features/mec/meta_boxes/display_options.php:620
3125
- #: app/features/mec/meta_boxes/display_options.php:653
3126
- #: app/features/mec/meta_boxes/display_options.php:688
3127
- #: app/features/mec/meta_boxes/display_options.php:734
3128
- #: app/features/mec/meta_boxes/display_options.php:800
3129
- #: app/features/mec/meta_boxes/display_options.php:1035
3130
- #: app/features/mec/meta_boxes/display_options.php:1122
3131
- msgid "Start of Current Month"
3132
- msgstr "Mit Beginn des laufenden Monats"
3133
-
3134
- #: app/features/mec/meta_boxes/display_options.php:49
3135
- #: app/features/mec/meta_boxes/display_options.php:190
3136
- #: app/features/mec/meta_boxes/display_options.php:342
3137
- #: app/features/mec/meta_boxes/display_options.php:395
3138
- #: app/features/mec/meta_boxes/display_options.php:572
3139
- #: app/features/mec/meta_boxes/display_options.php:621
3140
- #: app/features/mec/meta_boxes/display_options.php:654
3141
- #: app/features/mec/meta_boxes/display_options.php:689
3142
- #: app/features/mec/meta_boxes/display_options.php:735
3143
- #: app/features/mec/meta_boxes/display_options.php:801
3144
- #: app/features/mec/meta_boxes/display_options.php:1036
3145
- #: app/features/mec/meta_boxes/display_options.php:1123
3146
- msgid "Start of Next Month"
3147
- msgstr "Mit Beginn des kommenden Monats"
3148
-
3149
  #: app/features/mec/meta_boxes/display_options.php:50
3150
  #: app/features/mec/meta_boxes/display_options.php:191
3151
  #: app/features/mec/meta_boxes/display_options.php:343
3152
- #: app/features/mec/meta_boxes/display_options.php:396
3153
- #: app/features/mec/meta_boxes/display_options.php:519
3154
- #: app/features/mec/meta_boxes/display_options.php:573
3155
  #: app/features/mec/meta_boxes/display_options.php:622
3156
  #: app/features/mec/meta_boxes/display_options.php:655
3157
- #: app/features/mec/meta_boxes/display_options.php:690
3158
- #: app/features/mec/meta_boxes/display_options.php:736
3159
  #: app/features/mec/meta_boxes/display_options.php:802
3160
  #: app/features/mec/meta_boxes/display_options.php:1037
3161
  #: app/features/mec/meta_boxes/display_options.php:1124
3162
- msgid "On a certain date"
3163
- msgstr "An einem bestimmten Tag"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3164
 
3165
  #: app/features/mec/meta_boxes/display_options.php:53
3166
  #: app/features/mec/meta_boxes/display_options.php:194
3167
  #: app/features/mec/meta_boxes/display_options.php:346
3168
  #: app/features/mec/meta_boxes/display_options.php:399
3169
- #: app/features/mec/meta_boxes/display_options.php:522
3170
  #: app/features/mec/meta_boxes/display_options.php:576
3171
  #: app/features/mec/meta_boxes/display_options.php:625
3172
- #: app/features/mec/meta_boxes/display_options.php:659
3173
  #: app/features/mec/meta_boxes/display_options.php:693
3174
  #: app/features/mec/meta_boxes/display_options.php:739
3175
  #: app/features/mec/meta_boxes/display_options.php:805
3176
  #: app/features/mec/meta_boxes/display_options.php:1040
3177
  #: app/features/mec/meta_boxes/display_options.php:1127
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3178
  #, php-format
3179
  msgid "eg. %s"
3180
  msgstr "z.B. %s"
3181
 
3182
- #: app/features/mec/meta_boxes/display_options.php:57
3183
  #: app/features/mec/meta_boxes/display_options.php:61
3184
- #: app/features/mec/meta_boxes/display_options.php:68
3185
- #: app/features/mec/meta_boxes/display_options.php:74
3186
- #: app/features/mec/meta_boxes/display_options.php:81
3187
- #: app/features/mec/meta_boxes/display_options.php:87
3188
- #: app/features/mec/meta_boxes/display_options.php:94
3189
  #: app/features/mec/meta_boxes/display_options.php:98
3190
- #: app/features/mec/meta_boxes/display_options.php:105
3191
- #: app/features/mec/meta_boxes/display_options.php:110
3192
- #: app/features/mec/meta_boxes/display_options.php:198
3193
  #: app/features/mec/meta_boxes/display_options.php:202
3194
- #: app/features/mec/meta_boxes/display_options.php:209
3195
- #: app/features/mec/meta_boxes/display_options.php:214
3196
- #: app/features/mec/meta_boxes/display_options.php:221
3197
- #: app/features/mec/meta_boxes/display_options.php:226
3198
- #: app/features/mec/meta_boxes/display_options.php:233
3199
- #: app/features/mec/meta_boxes/display_options.php:239
3200
- #: app/features/mec/meta_boxes/display_options.php:246
3201
  #: app/features/mec/meta_boxes/display_options.php:250
3202
- #: app/features/mec/meta_boxes/display_options.php:257
3203
- #: app/features/mec/meta_boxes/display_options.php:263
3204
- #: app/features/mec/meta_boxes/display_options.php:270
3205
  #: app/features/mec/meta_boxes/display_options.php:274
3206
- #: app/features/mec/meta_boxes/display_options.php:350
3207
- #: app/features/mec/meta_boxes/display_options.php:355
3208
- #: app/features/mec/meta_boxes/display_options.php:526
3209
- #: app/features/mec/meta_boxes/display_options.php:531
3210
- #: app/features/mec/meta_boxes/display_options.php:809
3211
- #: app/features/mec/meta_boxes/display_options.php:814
3212
- #: app/features/mec/meta_boxes/display_options.php:881
3213
- #: app/features/mec/meta_boxes/display_options.php:887
3214
- #: app/features/mec/meta_boxes/display_options.php:894
3215
- #: app/features/mec/meta_boxes/display_options.php:899
3216
- #: app/features/mec/meta_boxes/display_options.php:906
3217
  #: app/features/mec/meta_boxes/display_options.php:910
3218
- #: app/features/mec/meta_boxes/display_options.php:938
3219
  #: app/features/mec/meta_boxes/display_options.php:942
3220
- #: app/features/mec/meta_boxes/display_options.php:949
3221
  #: app/features/mec/meta_boxes/display_options.php:953
3222
- #: app/features/mec/meta_boxes/display_options.php:960
3223
- #: app/features/mec/meta_boxes/display_options.php:966
3224
- #: app/features/mec/meta_boxes/display_options.php:996
3225
- #: app/features/mec/meta_boxes/display_options.php:1001
3226
- #: app/features/mec/meta_boxes/display_options.php:1044
3227
- #: app/features/mec/meta_boxes/display_options.php:1050
3228
- #: app/features/mec/meta_boxes/display_options.php:1057
3229
  #: app/features/mec/meta_boxes/display_options.php:1061
3230
- #: app/features/mec/meta_boxes/display_options.php:1068
3231
  #: app/features/mec/meta_boxes/display_options.php:1072
3232
- #: app/features/mec/meta_boxes/display_options.php:1131
3233
- #: app/features/mec/meta_boxes/display_options.php:1137
3234
- #: app/features/mec/meta_boxes/display_options.php:1144
3235
- #: app/features/mec/meta_boxes/display_options.php:1150
3236
- #: app/features/mec/meta_boxes/display_options.php:1157
3237
- #: app/features/mec/meta_boxes/display_options.php:1163
3238
- #: app/features/mec/meta_boxes/display_options.php:1170
3239
- #: app/features/mec/meta_boxes/display_options.php:1176
3240
- #: app/features/mec/meta_boxes/display_options.php:1183
3241
- #: app/features/mec/meta_boxes/display_options.php:1189
 
3242
  msgid "Date Formats"
3243
  msgstr "Datumsformate"
3244
 
3245
- #: app/features/mec/meta_boxes/display_options.php:62
3246
- #: app/features/mec/meta_boxes/display_options.php:251
3247
  msgid "Default value is \"M d Y\""
3248
  msgstr "Standard Wert ist \"M T J\""
3249
 
3250
- #: app/features/mec/meta_boxes/display_options.php:75
3251
  msgid "Default values are d, M and l"
3252
  msgstr "Standard Werte sind T, M und J"
3253
 
3254
- #: app/features/mec/meta_boxes/display_options.php:88
3255
- #: app/features/mec/meta_boxes/display_options.php:240
3256
- #: app/features/mec/meta_boxes/display_options.php:264
3257
- #: app/features/mec/meta_boxes/display_options.php:1138
3258
- #: app/features/mec/meta_boxes/display_options.php:1151
3259
- #: app/features/mec/meta_boxes/display_options.php:1164
3260
- #: app/features/mec/meta_boxes/display_options.php:1177
3261
- #: app/features/mec/meta_boxes/display_options.php:1190
3262
  msgid "Default values are d, F and l"
3263
  msgstr ""
3264
  "Standardwerte sind Tag, Monat als ganzes Wort und Wochentag als ganzes Wort"
3265
 
3266
- #: app/features/mec/meta_boxes/display_options.php:99
3267
  msgid "Default value is \"M d\""
3268
  msgstr "Standard Wert ist \"M T\""
3269
 
3270
- #: app/features/mec/meta_boxes/display_options.php:111
3271
  #, fuzzy
3272
  #| msgid "Default values are d and F"
3273
  msgid "TDefault values are d and F"
3274
  msgstr "Die Standardwerte sind d and F"
3275
 
3276
- #: app/features/mec/meta_boxes/display_options.php:118
3277
- #: app/features/mec/meta_boxes/display_options.php:293
3278
- #: app/features/mec/meta_boxes/display_options.php:363
3279
- #: app/features/mec/meta_boxes/display_options.php:539
3280
- #: app/features/mec/meta_boxes/display_options.php:581
3281
- #: app/features/mec/meta_boxes/display_options.php:664
3282
- #: app/features/mec/meta_boxes/display_options.php:698
3283
- #: app/features/mec/meta_boxes/display_options.php:744
3284
- #: app/features/mec/meta_boxes/display_options.php:1089
3285
- #: app/features/mec/meta_boxes/display_options.php:1197
3286
- msgid "eg. 6"
3287
- msgstr "z.B. 6"
3288
-
3289
  #: app/features/mec/meta_boxes/display_options.php:122
3290
  #: app/features/mec/meta_boxes/display_options.php:297
3291
  #: app/features/mec/meta_boxes/display_options.php:367
3292
- #: app/features/mec/meta_boxes/display_options.php:858
 
 
 
 
 
 
 
 
 
 
 
 
 
3293
  msgid "Load More Button"
3294
  msgstr "Button \"Weitere Veranstaltungen Laden\""
3295
 
3296
- #: app/features/mec/meta_boxes/display_options.php:132
3297
- #: app/features/mec/meta_boxes/display_options.php:377
3298
  msgid "Show Month Divider"
3299
  msgstr "Zeige Monatsteilung"
3300
 
3301
- #: app/features/mec/meta_boxes/display_options.php:142
3302
- #: app/features/mec/meta_boxes/display_options.php:307
3303
  #, fuzzy
3304
  #| msgid "Show Google Maps on event page"
3305
  msgid "Show Map on top"
3306
  msgstr "Google Maps auf der Veranstaltungsseite anzeigen"
3307
 
3308
- #: app/features/mec/meta_boxes/display_options.php:159
3309
  #, fuzzy
3310
  #| msgid "Show Month Divider"
3311
  msgid "Toggle for Month Divider"
3312
  msgstr "Zeige Monatsteilung"
3313
 
3314
- #: app/features/mec/meta_boxes/display_options.php:176
3315
- #: app/features/mec/meta_boxes/display_options.php:333
3316
- #: app/features/mec/meta_boxes/display_options.php:415
3317
- #: app/features/mec/meta_boxes/display_options.php:562
3318
- #: app/features/mec/meta_boxes/display_options.php:726
3319
- #: app/features/mec/meta_boxes/display_options.php:876
3320
- #: app/features/mec/settings.php:212 app/features/mec/settings.php:227
3321
- #: app/features/mec/settings.php:245 app/features/mec/settings.php:286
3322
- #: app/features/mec/settings.php:301 app/features/mec/settings.php:319
3323
  msgid "Clean"
3324
  msgstr "Clean"
3325
 
3326
- #: app/features/mec/meta_boxes/display_options.php:179
3327
- #: app/features/mec/meta_boxes/display_options.php:417
3328
- #: app/features/mec/meta_boxes/display_options.php:565
3329
- #: app/features/mec/settings.php:215 app/features/mec/settings.php:248
3330
- #: app/features/mec/settings.php:289 app/features/mec/settings.php:322
3331
  msgid "Simple"
3332
  msgstr "Schlicht"
3333
 
3334
- #: app/features/mec/meta_boxes/display_options.php:180
3335
  msgid "Colorful"
3336
  msgstr "Farbenfroh"
3337
 
3338
- #: app/features/mec/meta_boxes/display_options.php:181
3339
- #: app/features/mec/meta_boxes/display_options.php:416
3340
- #: app/features/mec/meta_boxes/display_options.php:564
3341
- #: app/features/mec/settings.php:214 app/features/mec/settings.php:250
3342
- #: app/features/mec/settings.php:288 app/features/mec/settings.php:324
3343
  msgid "Novel"
3344
  msgstr ""
3345
 
3346
- #: app/features/mec/meta_boxes/display_options.php:203
3347
  #, fuzzy
3348
  #| msgid "Default value is \"d F Y\""
3349
  msgid "Default value is \"d F Y"
3350
  msgstr "Standardwert ist \"d (Tag) F Y (Jahr)\" "
3351
 
3352
- #: app/features/mec/meta_boxes/display_options.php:215
3353
  msgid "Default values are d and F"
3354
  msgstr "Die Standardwerte sind d and F"
3355
 
3356
- #: app/features/mec/meta_boxes/display_options.php:227
3357
  msgid "Default values are d and M"
3358
  msgstr "Standardwerte sind T und M"
3359
 
3360
- #: app/features/mec/meta_boxes/display_options.php:275
3361
  msgid "Default value is \"d F Y\""
3362
  msgstr "Standardwert ist \"d (Tag) F Y (Jahr)\" "
3363
 
3364
- #: app/features/mec/meta_boxes/display_options.php:281
3365
- #: app/features/mec/meta_boxes/display_options.php:1079
3366
  msgid "Count in row"
3367
  msgstr "Zeilen zählen"
3368
 
3369
- #: app/features/mec/meta_boxes/display_options.php:326
3370
- #: app/features/mec/meta_boxes/display_options.php:504
3371
- #: app/features/mec/meta_boxes/display_options.php:611
3372
- #: app/features/mec/meta_boxes/display_options.php:718
3373
- #: app/features/mec/meta_boxes/display_options.php:991
3374
  #, php-format
3375
  msgid "%s is required to use this skin."
3376
  msgstr ""
3377
 
3378
- #: app/features/mec/meta_boxes/display_options.php:356
3379
- #: app/features/mec/meta_boxes/display_options.php:532
3380
  msgid "Default values are l and F j"
3381
  msgstr "Die Standardwerte sind I und F j"
3382
 
3383
- #: app/features/mec/meta_boxes/display_options.php:403
3384
  msgid "Default View"
3385
  msgstr "Standardansicht"
3386
 
3387
- #: app/features/mec/meta_boxes/display_options.php:405
3388
- #: app/features/mec/meta_boxes/display_options.php:426
3389
  #: app/libraries/main.php:329 app/libraries/main.php:1570
3390
  #: app/libraries/main.php:1595
3391
  msgid "List View"
3392
  msgstr "Listenansicht"
3393
 
3394
- #: app/features/mec/meta_boxes/display_options.php:406
3395
- #: app/features/mec/meta_boxes/display_options.php:436
3396
  #: app/libraries/main.php:333 app/libraries/main.php:1564
3397
  #: app/libraries/main.php:1589
3398
  msgid "Yearly View"
3399
  msgstr "Jahresansicht"
3400
 
3401
- #: app/features/mec/meta_boxes/display_options.php:407
3402
- #: app/features/mec/meta_boxes/display_options.php:458
3403
  msgid "Monthly/Calendar View"
3404
  msgstr "Monatliche Kalenderansicht"
3405
 
3406
- #: app/features/mec/meta_boxes/display_options.php:408
3407
- #: app/features/mec/meta_boxes/display_options.php:468
3408
  #: app/libraries/main.php:336 app/libraries/main.php:1566
3409
  #: app/libraries/main.php:1591
3410
  msgid "Weekly View"
3411
  msgstr "Wochenansicht"
3412
 
3413
- #: app/features/mec/meta_boxes/display_options.php:409
3414
- #: app/features/mec/meta_boxes/display_options.php:478
3415
  #: app/libraries/main.php:335 app/libraries/main.php:1567
3416
  #: app/libraries/main.php:1592
3417
  msgid "Daily View"
3418
  msgstr "Tagesansicht"
3419
 
3420
- #: app/features/mec/meta_boxes/display_options.php:413
3421
  #, fuzzy
3422
  #| msgid "Modern Style"
3423
  msgid "Monthly Style"
3424
  msgstr "Moderner Stil"
3425
 
3426
- #: app/features/mec/meta_boxes/display_options.php:453
3427
  #, php-format
3428
  msgid "%s is required to use <b>Yearly View</b> skin."
3429
  msgstr ""
3430
 
3431
- #: app/features/mec/meta_boxes/display_options.php:486
3432
  msgid "The price shows only in List View."
3433
  msgstr ""
3434
 
3435
- #: app/features/mec/meta_boxes/display_options.php:489
3436
  msgid "Display Event Price"
3437
  msgstr ""
3438
 
3439
- #: app/features/mec/meta_boxes/display_options.php:517
3440
  msgid "Start of Current Year"
3441
  msgstr "Mit Beginn des laufenden Jahres"
3442
 
3443
- #: app/features/mec/meta_boxes/display_options.php:518
3444
  msgid "Start of Next Year"
3445
  msgstr "Start des nächsten Jahres"
3446
 
3447
- #: app/features/mec/meta_boxes/display_options.php:538
3448
- #: app/features/mec/meta_boxes/display_options.php:580
3449
- #: app/features/mec/meta_boxes/display_options.php:663
3450
- #: app/features/mec/meta_boxes/display_options.php:697
3451
- #: app/features/mec/meta_boxes/display_options.php:743
3452
  msgid "Events per day"
3453
  msgstr "Veranstaltungen pro Tag"
3454
 
3455
- #: app/features/mec/meta_boxes/display_options.php:543
3456
- #: app/features/mec/meta_boxes/display_options.php:585
3457
- #: app/features/mec/meta_boxes/display_options.php:668
3458
- #: app/features/mec/meta_boxes/display_options.php:702
3459
- #: app/features/mec/meta_boxes/display_options.php:772
3460
  msgid "Next/Previous Buttons"
3461
  msgstr "Schaltfläche \"Nächste/Letzte\""
3462
 
3463
- #: app/features/mec/meta_boxes/display_options.php:551
3464
  msgid "For showing next/previous year navigation."
3465
  msgstr "Navigation anzeigen zum nächsten/letzten Jahr"
3466
 
3467
- #: app/features/mec/meta_boxes/display_options.php:595
3468
  #, fuzzy
3469
  #| msgid "Text"
3470
  msgid "Uppercase Text"
3471
  msgstr "Text"
3472
 
3473
- #: app/features/mec/meta_boxes/display_options.php:603
3474
- #: app/features/mec/meta_boxes/display_options.php:676
3475
- #: app/features/mec/meta_boxes/display_options.php:710
3476
- #: app/features/mec/meta_boxes/display_options.php:780
3477
  msgid "For showing next/previous month navigation."
3478
  msgstr "Für die Navigation zum nächsten/letzten Monat"
3479
 
3480
- #: app/features/mec/meta_boxes/display_options.php:629
3481
  msgid "Maximum events"
3482
  msgstr "Veranstaltungsmaximum"
3483
 
3484
- #: app/features/mec/meta_boxes/display_options.php:630
3485
  msgid "eg. 200"
3486
  msgstr "z.B. 200"
3487
 
3488
- #: app/features/mec/meta_boxes/display_options.php:634
3489
  msgid "Geolocation"
3490
  msgstr ""
3491
 
3492
- #: app/features/mec/meta_boxes/display_options.php:642
3493
  msgid "The geolocation feature works only in secure (https) websites."
3494
  msgstr ""
3495
 
3496
- #: app/features/mec/meta_boxes/display_options.php:686
3497
- #: app/features/mec/meta_boxes/display_options.php:732
3498
  msgid "Current Week"
3499
  msgstr "Aktuelle Woche"
3500
 
3501
- #: app/features/mec/meta_boxes/display_options.php:687
3502
- #: app/features/mec/meta_boxes/display_options.php:733
3503
  msgid "Next Week"
3504
  msgstr "Nächste Woche"
3505
 
3506
- #: app/features/mec/meta_boxes/display_options.php:748
3507
  msgid "Number of Days"
3508
  msgstr ""
3509
 
3510
- #: app/features/mec/meta_boxes/display_options.php:756
3511
  #, fuzzy
3512
  #| msgid "Start"
3513
  msgid "Week Start"
3514
  msgstr "Start"
3515
 
3516
- #: app/features/mec/meta_boxes/display_options.php:758
3517
  #, fuzzy
3518
  #| msgid "Inherit from global options"
3519
  msgid "Inherite from WordPress options"
3520
  msgstr "Aus den globalen Einstellungen übernehmen"
3521
 
3522
- #: app/features/mec/meta_boxes/display_options.php:815
3523
- #: app/features/mec/meta_boxes/display_options.php:1002
3524
  msgid "Default values are j and F"
3525
  msgstr "Standardwerte sind j und F"
3526
 
3527
- #: app/features/mec/meta_boxes/display_options.php:822
3528
  msgid "eg. 24"
3529
  msgstr "z.B. 24"
3530
 
3531
- #: app/features/mec/meta_boxes/display_options.php:825
3532
  msgid "Filter By"
3533
  msgstr "Filtern nach"
3534
 
3535
- #: app/features/mec/meta_boxes/display_options.php:827
3536
  msgid "None"
3537
  msgstr ""
3538
 
3539
- #: app/features/mec/meta_boxes/display_options.php:836
3540
  msgid "Fit to row"
3541
  msgstr ""
3542
 
3543
- #: app/features/mec/meta_boxes/display_options.php:837
3544
  msgid ""
3545
  "Items are arranged into rows. Rows progress vertically. Similar to what you "
3546
  "would expect from a layout that uses CSS floats."
3547
  msgstr ""
3548
 
3549
- #: app/features/mec/meta_boxes/display_options.php:847
3550
  msgid "Convert Masonry to Grid"
3551
  msgstr ""
3552
 
3553
- #: app/features/mec/meta_boxes/display_options.php:848
3554
  msgid "For using this option, your events should come with image"
3555
  msgstr ""
3556
 
3557
- #: app/features/mec/meta_boxes/display_options.php:888
3558
  msgid "Default values are d, M and Y"
3559
  msgstr "Standardwerte sind T, M und J"
3560
 
3561
- #: app/features/mec/meta_boxes/display_options.php:900
3562
  msgid "Default values are \"F d\" and l"
3563
  msgstr ""
3564
  "Standardwerte sind Monat als ganzes Wort, Tag des Monates mit führender Null "
3565
  "und ausgeschriebener Wochentag"
3566
 
3567
- #: app/features/mec/meta_boxes/display_options.php:911
3568
  msgid "Default value is \"l, F d Y\""
3569
  msgstr ""
3570
  "Standardwerte sind ausgeschriebener Wochentag, Monat als ganzes Wort, Tag "
3571
  "des Monates mit führender 0, Jahr"
3572
 
3573
- #: app/features/mec/meta_boxes/display_options.php:932
3574
  msgid "Style 1"
3575
  msgstr "Stil 1"
3576
 
3577
- #: app/features/mec/meta_boxes/display_options.php:933
3578
  msgid "Style 2"
3579
  msgstr "Stil 2"
3580
 
3581
- #: app/features/mec/meta_boxes/display_options.php:934
3582
  msgid "Style 3"
3583
  msgstr "Stil 3"
3584
 
3585
- #: app/features/mec/meta_boxes/display_options.php:943
3586
- #: app/features/mec/meta_boxes/display_options.php:954
3587
  msgid "Default value is \"j F Y\""
3588
  msgstr "Standardwert ist \"j F Y\""
3589
 
3590
- #: app/features/mec/meta_boxes/display_options.php:967
3591
  msgid "Default values are j, F and Y"
3592
  msgstr ""
3593
  "Standardwerte sind j ( Tag des Monats ohne führende Nullen), F und Y (Jahr)"
3594
 
3595
- #: app/features/mec/meta_boxes/display_options.php:975
3596
- #: app/features/mec/meta_boxes/display_options.php:1010
3597
  msgid " -- Next Upcoming Event -- "
3598
  msgstr "-- Nächste Veranstaltung--"
3599
 
3600
- #: app/features/mec/meta_boxes/display_options.php:982
3601
  msgid "Background Color"
3602
  msgstr "Hintergrund Farbe"
3603
 
3604
- #: app/features/mec/meta_boxes/display_options.php:1024
3605
- #: app/features/mec/meta_boxes/display_options.php:1110
3606
  msgid "Type 1"
3607
  msgstr "Typ 1"
3608
 
3609
- #: app/features/mec/meta_boxes/display_options.php:1025
3610
- #: app/features/mec/meta_boxes/display_options.php:1111
3611
  msgid "Type 2"
3612
  msgstr "Typ 2"
3613
 
3614
- #: app/features/mec/meta_boxes/display_options.php:1026
3615
- #: app/features/mec/meta_boxes/display_options.php:1112
3616
  msgid "Type 3"
3617
  msgstr "Type 3"
3618
 
3619
- #: app/features/mec/meta_boxes/display_options.php:1027
3620
- #: app/features/mec/meta_boxes/display_options.php:1113
3621
  msgid "Type 4"
3622
  msgstr "Typ 4"
3623
 
3624
- #: app/features/mec/meta_boxes/display_options.php:1051
3625
  msgid "Default values are d, F and Y"
3626
  msgstr "Standardwert ist d (Tag) F und Y (Jahr)"
3627
 
3628
- #: app/features/mec/meta_boxes/display_options.php:1062
3629
- #: app/features/mec/meta_boxes/display_options.php:1073
3630
  msgid "Default value is \"M d, Y\""
3631
  msgstr "Standardwert ist \"M T, J\""
3632
 
3633
- #: app/features/mec/meta_boxes/display_options.php:1092
3634
- #: app/features/mec/meta_boxes/display_options.php:1200
3635
  msgid "Auto Play Time"
3636
  msgstr "Auto Play Time"
3637
 
3638
- #: app/features/mec/meta_boxes/display_options.php:1093
3639
- #: app/features/mec/meta_boxes/display_options.php:1201
3640
  msgid "eg. 3000 default is 3 second"
3641
  msgstr "z.B. Voreinstellung 3000 sind 3 Sekunden"
3642
 
3643
- #: app/features/mec/meta_boxes/display_options.php:1097
3644
  #, fuzzy
3645
  #| msgid "Archive Page Skin"
3646
  msgid "Archive Link"
3647
  msgstr "Skin Seite Archiv"
3648
 
3649
- #: app/features/mec/meta_boxes/display_options.php:1101
3650
  #, fuzzy
3651
  #| msgid "Text"
3652
  msgid "Head Text"
3653
  msgstr "Text"
3654
 
3655
- #: app/features/mec/meta_boxes/display_options.php:1114
3656
  msgid "Type 5"
3657
  msgstr "Typ 5"
3658
 
@@ -3660,43 +3680,43 @@ msgstr "Typ 5"
3660
  msgid "No filter options applicable for this skin."
3661
  msgstr "Keine Filteroptionen verfügbar für dieses Skin"
3662
 
3663
- #: app/features/mec/meta_boxes/filter.php:84
3664
  msgid "Choose your desired categories for filtering the events."
3665
  msgstr "Wählen Sie die gewünschten Kategorien zum Filtern aus"
3666
 
3667
- #: app/features/mec/meta_boxes/filter.php:101
3668
  msgid "Choose your desired locations for filtering the events."
3669
  msgstr "Wählen Sie die gewünschten Orte zum Filtern aus"
3670
 
3671
- #: app/features/mec/meta_boxes/filter.php:118
3672
  msgid "Choose your desired organizers for filtering the events."
3673
  msgstr "Wählen Sie die gewünschten Veranstalter zum Filtern aus"
3674
 
3675
- #: app/features/mec/meta_boxes/filter.php:135
3676
  msgid "Choose your desired labels for filtering the events."
3677
  msgstr "Wählen Sie den gewünschten Status zum Filtern aus"
3678
 
3679
- #: app/features/mec/meta_boxes/filter.php:141
3680
  msgid "Insert your desired tags comma separated."
3681
  msgstr "Geben Sie die gewünschten Tags (Schlagworte) durch Komma getrennt ein"
3682
 
3683
- #: app/features/mec/meta_boxes/filter.php:144
3684
  msgid "Authors"
3685
  msgstr "Autoren"
3686
 
3687
- #: app/features/mec/meta_boxes/filter.php:162
3688
  msgid "Choose your desired authors for filtering the events."
3689
  msgstr "Wählen Sie die gewünschten Autoren zum Filtern aus"
3690
 
3691
- #: app/features/mec/meta_boxes/filter.php:166
3692
  msgid "Dates"
3693
  msgstr "Daten"
3694
 
3695
- #: app/features/mec/meta_boxes/filter.php:170
3696
  msgid "Include Expired Events"
3697
  msgstr "Inklusive abgelaufene Events"
3698
 
3699
- #: app/features/mec/meta_boxes/filter.php:178
3700
  msgid ""
3701
  "You have ability to include past/expired events if you like so it will show "
3702
  "upcoming and expired events based on start date that you selected."
@@ -3705,19 +3725,19 @@ msgstr ""
3705
  "wenn Sie es mögen, so werden die kommenden und abgelaufenen Events auf der "
3706
  "Grundlage des Starttermins angezeigt, das Sie ausgewählt haben."
3707
 
3708
- #: app/features/mec/meta_boxes/filter.php:183
3709
  msgid "Show Only Expired Events"
3710
  msgstr "Nur abgelaufene Events anzeigen"
3711
 
3712
- #: app/features/mec/meta_boxes/filter.php:191
3713
  msgid "It shows only expired/past events."
3714
  msgstr "Zeigt nur abgelaufene / vergangene Events."
3715
 
3716
- #: app/features/mec/meta_boxes/filter.php:197
3717
  msgid "Show Only Ongoing Events"
3718
  msgstr "Zeigt nur laufende Events"
3719
 
3720
- #: app/features/mec/meta_boxes/filter.php:205
3721
  msgid "It shows only ongoing events on List and Grid skins."
3722
  msgstr "Zeigt nur laufende Events auf Listen und Raster/Grid Skins"
3723
 
@@ -3804,8 +3824,8 @@ msgstr "Such Formular anzeigen"
3804
  #: app/features/mec/meta_boxes/search_form.php:612
3805
  #: app/features/mec/meta_boxes/search_form.php:619
3806
  #: app/features/mec/meta_boxes/search_form.php:626
3807
- #: app/features/mec/modules.php:122 app/features/mec/settings.php:94
3808
- #: app/features/mec/settings.php:365
3809
  msgid "Disabled"
3810
  msgstr "Deaktiviert"
3811
 
@@ -3819,9 +3839,9 @@ msgstr "Deaktiviert"
3819
  #: app/features/mec/meta_boxes/search_form.php:474
3820
  #: app/features/mec/meta_boxes/search_form.php:535
3821
  #: app/features/mec/meta_boxes/search_form.php:596
3822
- #: app/features/mec/settings.php:735 app/features/mec/single.php:214
3823
  #: app/features/speakers.php:59 app/features/speakers.php:247
3824
- #: app/libraries/main.php:4843 app/libraries/skins.php:886
3825
  msgid "Speaker"
3826
  msgstr ""
3827
 
@@ -3835,7 +3855,7 @@ msgstr ""
3835
  #: app/features/mec/meta_boxes/search_form.php:481
3836
  #: app/features/mec/meta_boxes/search_form.php:542
3837
  #: app/features/mec/meta_boxes/search_form.php:603
3838
- #: app/features/mec/settings.php:742 app/features/mec/single.php:223
3839
  #: app/libraries/skins.php:912
3840
  #, fuzzy
3841
  #| msgid "Tags"
@@ -3889,49 +3909,49 @@ msgstr "Text eingeben"
3889
  msgid "No Search Options"
3890
  msgstr "Keine Suchoptionen"
3891
 
3892
- #: app/features/mec/modules.php:40
3893
  #, fuzzy
3894
  #| msgid "No Search Options"
3895
  msgid "Speakers Options"
3896
  msgstr "Keine Suchoptionen"
3897
 
3898
- #: app/features/mec/modules.php:46
3899
  #, fuzzy
3900
  #| msgid "Enable taxes / fees module"
3901
  msgid "Enable speakers feature"
3902
  msgstr "Modul für Gebühren/Steuern aktivieren"
3903
 
3904
- #: app/features/mec/modules.php:50
3905
  msgid ""
3906
  "Enable this option to have speaker in Hourly Schedule in Single. Refresh "
3907
  "after enabling it to see the Speakers menu under MEC dashboard."
3908
  msgstr ""
3909
 
3910
- #: app/features/mec/modules.php:55
3911
  msgid ""
3912
  "After enabling and saving the settings, you should reload the page to see a "
3913
  "new menu on the Dashboard > MEC"
3914
  msgstr ""
3915
 
3916
- #: app/features/mec/modules.php:72
3917
  msgid "Show Google Maps on event page"
3918
  msgstr "Google Maps auf der Veranstaltungsseite anzeigen"
3919
 
3920
- #: app/features/mec/modules.php:77 app/features/mec/modules.php:235
3921
- #: app/features/mec/settings.php:772 app/features/mec/settings.php:777
3922
  msgid "API Key"
3923
  msgstr "API Schlüssel"
3924
 
3925
- #: app/features/mec/modules.php:83 app/features/mec/settings.php:778
3926
- #: app/features/mec/settings.php:791
3927
  msgid "Required!"
3928
  msgstr "Erforderlich (Pflichtfeld)"
3929
 
3930
- #: app/features/mec/modules.php:90 app/features/mec/modules.php:99
3931
  msgid "Zoom level"
3932
  msgstr "Zoom"
3933
 
3934
- #: app/features/mec/modules.php:100
3935
  msgid ""
3936
  "For Google Maps module in single event page. In Google Maps skin, it will "
3937
  "caculate the zoom level automatically based on event boundaries."
@@ -3940,152 +3960,152 @@ msgstr ""
3940
  "es die Zoom-Ebene automatisch kalkulieren, basierend auf den Eventort "
3941
  "Angrenzungen"
3942
 
3943
- #: app/features/mec/modules.php:107
3944
  msgid "Google Maps Style"
3945
  msgstr "Google Maps Stil"
3946
 
3947
- #: app/features/mec/modules.php:111 app/features/mec/single.php:85
3948
  msgid "Default"
3949
  msgstr "Standardeinstellung"
3950
 
3951
- #: app/features/mec/modules.php:119
3952
  msgid "Direction on single event"
3953
  msgstr "Richtung auf einzelne Veranstaltung"
3954
 
3955
- #: app/features/mec/modules.php:123
3956
  msgid "Simple Method"
3957
  msgstr "Einfache Methode"
3958
 
3959
- #: app/features/mec/modules.php:124
3960
  msgid "Advanced Method"
3961
  msgstr "Fortgeschrittene Methode"
3962
 
3963
- #: app/features/mec/modules.php:129 app/features/mec/modules.php:134
3964
  msgid "Lightbox Date Format"
3965
  msgstr "Leuchtkasten Datumsformat"
3966
 
3967
- #: app/features/mec/modules.php:135
3968
  msgid "Default value is M d Y"
3969
  msgstr "Standardwert ist M T J"
3970
 
3971
- #: app/features/mec/modules.php:142 app/features/mec/modules.php:150
3972
  msgid "Google Maps API"
3973
  msgstr "Google Maps API"
3974
 
3975
- #: app/features/mec/modules.php:146
3976
  msgid "Don't load Google Maps API library"
3977
  msgstr "Google Maps API Bibliothek nicht laden"
3978
 
3979
- #: app/features/mec/modules.php:151
3980
  msgid "Check it only if another plugin/theme is loading the Google Maps API"
3981
  msgstr ""
3982
  "Checken Sie es nur wenn ein anderes plugin/Thema die Google Maps API lädt."
3983
 
3984
- #: app/features/mec/modules.php:164 app/libraries/main.php:561
3985
  #, fuzzy
3986
  #| msgid "Import Options"
3987
  msgid "Export Options"
3988
  msgstr "Import Optionen"
3989
 
3990
- #: app/features/mec/modules.php:168
3991
  msgid ""
3992
  "Show export module (iCal export and add to Google calendars) on event page"
3993
  msgstr ""
3994
  "Exportmodule auf Veranstaltungsseite anzeigen (iCal export und hinzufügen zu "
3995
  "Google calendars)"
3996
 
3997
- #: app/features/mec/modules.php:175
3998
  msgid "Google Calendar"
3999
  msgstr "Google Calendar"
4000
 
4001
- #: app/features/mec/modules.php:191 app/libraries/main.php:562
4002
  #: app/modules/local-time/details.php:42 app/widgets/single.php:99
4003
  msgid "Local Time"
4004
  msgstr "Lokale Zeit"
4005
 
4006
- #: app/features/mec/modules.php:195
4007
  msgid "Show event time based on local time of visitor on event page"
4008
  msgstr ""
4009
  "Zeige die Eventzeit basierend auf der Ortszeit des Besuchers auf der "
4010
  "Eventseite"
4011
 
4012
- #: app/features/mec/modules.php:205 app/libraries/main.php:563
4013
  #: app/modules/qrcode/details.php:38 app/widgets/single.php:155
4014
  msgid "QR Code"
4015
  msgstr "QR Code"
4016
 
4017
- #: app/features/mec/modules.php:213
4018
  msgid "Show QR code of event in details page and booking invoice"
4019
  msgstr ""
4020
  "Zeigen Sie QR-Code des Events in der Detailseite und in der Buchungsrechnung "
4021
  "an"
4022
 
4023
- #: app/features/mec/modules.php:223 app/libraries/main.php:564
4024
  #: app/modules/weather/details.php:37
4025
  msgid "Weather"
4026
  msgstr "Wetter"
4027
 
4028
- #: app/features/mec/modules.php:230
4029
  msgid "Show weather module on event page"
4030
  msgstr "Wettermodul auf der Eventseite anzeigen"
4031
 
4032
- #: app/features/mec/modules.php:238
4033
  #, php-format
4034
  msgid "You can get a free API Key from %s"
4035
  msgstr "Sie können einen kostenlosen API-Schlüssel von% s erhalten"
4036
 
4037
- #: app/features/mec/modules.php:244
4038
  #, fuzzy
4039
  #| msgid "Show weather module on event page"
4040
  msgid "Show weather imperial units"
4041
  msgstr "Wettermodul auf der Eventseite anzeigen"
4042
 
4043
- #: app/features/mec/modules.php:250
4044
  msgid "Show weather change units button"
4045
  msgstr ""
4046
 
4047
- #: app/features/mec/modules.php:264
4048
  msgid "Show social network module"
4049
  msgstr "Modul für Soziale Netzwerke anzeigen"
4050
 
4051
- #: app/features/mec/modules.php:285 app/libraries/main.php:566
4052
  #: app/modules/next-event/details.php:82
4053
  msgid "Next Event"
4054
  msgstr "Nächstes Event"
4055
 
4056
- #: app/features/mec/modules.php:289
4057
  msgid "Show next event module on event page"
4058
  msgstr "Nächstes Event Modul auf der Eventseite anzeigen"
4059
 
4060
- #: app/features/mec/modules.php:294
4061
  msgid "Method"
4062
  msgstr "Methode"
4063
 
4064
- #: app/features/mec/modules.php:297
4065
  msgid "Next Occurrence of Current Event"
4066
  msgstr "Nächstes Auftreten des aktuellen Events"
4067
 
4068
- #: app/features/mec/modules.php:298
4069
  msgid "Next Occurrence of Other Events"
4070
  msgstr "Nächstes Auftreten von anderen Events."
4071
 
4072
- #: app/features/mec/modules.php:309 app/features/mec/single.php:39
4073
  msgid "Default is M d Y"
4074
  msgstr "Standardwert ist M-T-J"
4075
 
4076
- #: app/features/mec/modules.php:325
4077
  msgid "Enable BuddyPress Integration"
4078
  msgstr "Buddy Press Integration deaktivieren"
4079
 
4080
- #: app/features/mec/modules.php:332
4081
  msgid "Show \"Attendees Module\" in event details page"
4082
  msgstr "Zeigt \"Teilnehmermodul\" in Event Details Seite"
4083
 
4084
- #: app/features/mec/modules.php:336
4085
  msgid "Attendees Limit"
4086
  msgstr "Teilnehmer Limit, maximale Anzahl"
4087
 
4088
- #: app/features/mec/modules.php:344
4089
  msgid "Add booking activity to user profile"
4090
  msgstr "Fügt Buchungsaktivitäten dem Benutzerprofil hinzu"
4091
 
@@ -4486,8 +4506,8 @@ msgstr "Titel der Veranstaltung"
4486
  msgid "Status of event"
4487
  msgstr "Status der Veranstaltung"
4488
 
4489
- #: app/features/mec/notifications.php:436 app/features/mec/settings.php:651
4490
- #: app/features/mec/settings.php:655
4491
  msgid "Event Note"
4492
  msgstr "Veranstaltungsnotiz"
4493
 
@@ -4495,50 +4515,50 @@ msgstr "Veranstaltungsnotiz"
4495
  msgid "Admin events management link."
4496
  msgstr "Admin-link zur Veranstaltungsverwaltung"
4497
 
4498
- #: app/features/mec/settings.php:52 app/features/mec/settings.php:62
4499
  msgid "Hide Events"
4500
  msgstr "Events verbergen"
4501
 
4502
- #: app/features/mec/settings.php:55
4503
  msgid "On Event Start"
4504
  msgstr "Am Event Start"
4505
 
4506
- #: app/features/mec/settings.php:56
4507
  msgid "+1 Hour after start"
4508
  msgstr "+1 Stunde nach dem Start"
4509
 
4510
- #: app/features/mec/settings.php:57
4511
  msgid "+2 Hours after start"
4512
  msgstr "+2 Stunden nach dem Start"
4513
 
4514
- #: app/features/mec/settings.php:58
4515
  msgid "On Event End"
4516
  msgstr "Am Event Ende"
4517
 
4518
- #: app/features/mec/settings.php:63
4519
  msgid ""
4520
  "This option is for showing start/end time of events on frontend of website."
4521
  msgstr ""
4522
  "Diese Option ist um die Start/Endezeit von Events im Frontend der Webseite "
4523
  "anzuzeigen"
4524
 
4525
- #: app/features/mec/settings.php:72 app/features/mec/settings.php:81
4526
  msgid "Multiple Day Events"
4527
  msgstr "Mehrtagesveranstaltung"
4528
 
4529
- #: app/features/mec/settings.php:75
4530
  msgid "Show only first day on List/Grid/Slider skins"
4531
  msgstr "Zeige nur den ersten Tag auf Listen/Raster(Grid)/Slider skins."
4532
 
4533
- #: app/features/mec/settings.php:76
4534
  msgid "Show only first day on all skins"
4535
  msgstr "Nur den ersten Tag in allen Ansichten zeigen"
4536
 
4537
- #: app/features/mec/settings.php:77
4538
  msgid "Show all days"
4539
  msgstr "Alle Tage anzeigen"
4540
 
4541
- #: app/features/mec/settings.php:82
4542
  msgid ""
4543
  "For showing all days of multiple day events on frontend or only show the "
4544
  "first day."
@@ -4546,54 +4566,54 @@ msgstr ""
4546
  "Um alle Tage anzuzeigen bei Events über mehrere Tage im Frontend oder nur "
4547
  "den ersten Tag anzeigen"
4548
 
4549
- #: app/features/mec/settings.php:91
4550
  msgid "Remove MEC Data on Plugin Uninstall"
4551
  msgstr "Entfernen von MEC Data auf dem Plugin Deinstallierer"
4552
 
4553
- #: app/features/mec/settings.php:95
4554
  msgid "Enabled"
4555
  msgstr "Aktiviert"
4556
 
4557
- #: app/features/mec/settings.php:101
4558
  msgid "Exclude Date Suffix"
4559
  msgstr "Ausschlussdatum Suffix"
4560
 
4561
- #: app/features/mec/settings.php:104
4562
  msgid "Remove suffix from calendars"
4563
  msgstr "Suffix aus den Kalendern entfernen"
4564
 
4565
- #: app/features/mec/settings.php:108
4566
  #, fuzzy
4567
  #| msgid "Remove suffix from calendars"
4568
  msgid "Remove \"Th\" on calendar"
4569
  msgstr "Suffix aus den Kalendern entfernen"
4570
 
4571
- #: app/features/mec/settings.php:109
4572
  msgid ""
4573
  "Checked this checkbox to remove 'Th' on calendar ( ex: '12Th' remove Th, "
4574
  "showing just '12' )"
4575
  msgstr ""
4576
 
4577
- #: app/features/mec/settings.php:116 app/features/mec/settings.php:123
4578
  msgid "Schema"
4579
  msgstr ""
4580
 
4581
- #: app/features/mec/settings.php:119
4582
  #, fuzzy
4583
  #| msgid "Enable coupons module"
4584
  msgid "Enable Schema Code"
4585
  msgstr "Gutscheinmodul aktivieren"
4586
 
4587
- #: app/features/mec/settings.php:124
4588
  msgid "You can enable/disable Schema scripts"
4589
  msgstr ""
4590
 
4591
- #: app/features/mec/settings.php:133 app/features/mec/settings.php:143
4592
- #: app/libraries/main.php:4847
4593
  msgid "Weekdays"
4594
  msgstr "Wochentage"
4595
 
4596
- #: app/features/mec/settings.php:144
4597
  #, fuzzy
4598
  #| msgid ""
4599
  #| "Proceed with caution. Default is set to Monday, Tuesday, Wednesday, "
@@ -4606,109 +4626,109 @@ msgstr ""
4606
  "Vorsichtig vorgehen. Standardwert ist auf Montag, Dienstag, Mittwoch, "
4607
  "Donnerstag und Freitag gesetzt."
4608
 
4609
- #: app/features/mec/settings.php:154 app/features/mec/settings.php:164
4610
  msgid "Weekends"
4611
  msgstr "Wochenenden"
4612
 
4613
- #: app/features/mec/settings.php:165
4614
  msgid ""
4615
  "Proceed with caution. Default is set to Saturday and Sunday ( you can change "
4616
  "'Week Starts' on WordPress Dashboard > Settings > General - bottom of the "
4617
  "page )."
4618
  msgstr ""
4619
 
4620
- #: app/features/mec/settings.php:176 app/libraries/main.php:529
4621
  msgid "Archive Pages"
4622
  msgstr ""
4623
 
4624
- #: app/features/mec/settings.php:179 app/features/mec/settings.php:184
4625
  msgid "Archive Page Title"
4626
  msgstr "Titel der Archivseite"
4627
 
4628
- #: app/features/mec/settings.php:185
4629
  #, fuzzy
4630
  #| msgid "Default value is Events"
4631
  msgid "Default value is Events - It's title of the page"
4632
  msgstr "Der Standardwert ist Ereignisse (Events)"
4633
 
4634
- #: app/features/mec/settings.php:193 app/features/mec/settings.php:261
4635
  msgid "Archive Page Skin"
4636
  msgstr "Skin Seite Archiv"
4637
 
4638
- #: app/features/mec/settings.php:201
4639
  #, fuzzy
4640
  #| msgid "Edit shortcodes"
4641
  msgid "Put shortcode..."
4642
  msgstr "Shortcode ändern"
4643
 
4644
- #: app/features/mec/settings.php:204 app/features/mec/settings.php:219
4645
- #: app/features/mec/settings.php:222 app/features/mec/settings.php:231
4646
- #: app/features/mec/settings.php:257 app/features/mec/settings.php:278
4647
- #: app/features/mec/settings.php:293 app/features/mec/settings.php:296
4648
- #: app/features/mec/settings.php:305 app/features/mec/settings.php:331
4649
  #, fuzzy
4650
  #| msgid "The event is ongoing."
4651
  msgid "There is no skins"
4652
  msgstr "Die Veranstaltung ist im Gange."
4653
 
4654
- #: app/features/mec/settings.php:207 app/features/mec/settings.php:281
4655
- #: app/features/mec/single.php:66
4656
  msgid "Modern Style"
4657
  msgstr "Moderner Stil"
4658
 
4659
- #: app/features/mec/settings.php:249 app/features/mec/settings.php:323
4660
  #, fuzzy
4661
  #| msgid "Colorful"
4662
  msgid "colorful"
4663
  msgstr "Farbenfroh"
4664
 
4665
- #: app/features/mec/settings.php:254 app/features/mec/settings.php:328
4666
  #, fuzzy
4667
  #| msgid "Plain Style"
4668
  msgid "Clean Style"
4669
  msgstr "Einfacher schlichter Stil"
4670
 
4671
- #: app/features/mec/settings.php:262
4672
  #, fuzzy
4673
  #| msgid "Default value is Calendar/Monthly View"
4674
  msgid "Default value is Calendar/Monthly View, But you can change it "
4675
  msgstr "Der Standardwert ist Kalender / Monatsansicht"
4676
 
4677
- #: app/features/mec/settings.php:262 app/features/mec/settings.php:336
4678
  msgid "See Demo"
4679
  msgstr ""
4680
 
4681
- #: app/features/mec/settings.php:270 app/features/mec/settings.php:335
4682
  msgid "Category Page Skin"
4683
  msgstr "Kategorie Seiten Skin"
4684
 
4685
- #: app/features/mec/settings.php:336
4686
  msgid ""
4687
  "Default value is List View - But you can change it Set a skin for all "
4688
  "categories."
4689
  msgstr ""
4690
 
4691
- #: app/features/mec/settings.php:344 app/features/mec/settings.php:352
4692
  msgid "Category Events Method"
4693
  msgstr ""
4694
 
4695
- #: app/features/mec/settings.php:348
4696
  msgid "Expired Events"
4697
  msgstr ""
4698
 
4699
- #: app/features/mec/settings.php:353
4700
  msgid "Default value is Upcoming Events"
4701
  msgstr ""
4702
 
4703
- #: app/features/mec/settings.php:361 app/features/mec/settings.php:369
4704
  msgid "Events Archive Status"
4705
  msgstr "Events Archiv Status"
4706
 
4707
- #: app/features/mec/settings.php:364
4708
  msgid "Enabled (Recommended)"
4709
  msgstr "Ist aktiviert (empfohlen)"
4710
 
4711
- #: app/features/mec/settings.php:370
4712
  msgid ""
4713
  "If you disable it, then you should create a page as archive page of MEC. "
4714
  "Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
@@ -4718,18 +4738,18 @@ msgstr ""
4718
  "erstellen. Page´s slug muss gleich sein wie \"Main Slug\" von MEC. Außerdem "
4719
  "werden alle MEC-Rewrite-Regeln deaktiviert."
4720
 
4721
- #: app/features/mec/settings.php:383 app/features/mec/settings.php:388
4722
  msgid "Main Slug"
4723
  msgstr "Main Slug"
4724
 
4725
- #: app/features/mec/settings.php:389
4726
  msgid ""
4727
  "Default value is events. You can not have a page with this name. MEC allows "
4728
  "you to create custom URLs for the permalinks and archives to enhance the "
4729
  "applicability and forward-compatibility of the links."
4730
  msgstr ""
4731
 
4732
- #: app/features/mec/settings.php:393 app/features/mec/settings.php:407
4733
  #, fuzzy
4734
  #| msgid ""
4735
  #| "Default value is events. Valid characters are lowercase a-z, - character "
@@ -4739,11 +4759,11 @@ msgstr ""
4739
  "Standardwert ist Events. Gültige Zeichen sind Kleinbuchstaben a-z, - Zeichen "
4740
  "und Zahlen."
4741
 
4742
- #: app/features/mec/settings.php:397 app/features/mec/settings.php:402
4743
  msgid "Category Slug"
4744
  msgstr "Category Slug"
4745
 
4746
- #: app/features/mec/settings.php:403
4747
  #, fuzzy
4748
  #| msgid ""
4749
  #| "It's slug of MEC categories, you can change it to events-cat or something "
@@ -4759,135 +4779,135 @@ msgstr ""
4759
  "für den link. Zum Beispiel example.com/events-cat oder example.com/mec-"
4760
  "category"
4761
 
4762
- #: app/features/mec/settings.php:415
4763
  msgid "Currency"
4764
  msgstr "Währung"
4765
 
4766
- #: app/features/mec/settings.php:425 app/features/mec/settings.php:430
4767
  msgid "Currency Sign"
4768
  msgstr "Währungssymbol"
4769
 
4770
- #: app/features/mec/settings.php:431
4771
  msgid "Default value will be \"currency\" if you leave it empty."
4772
  msgstr "Standardwert wird \"currency\" sein wenn Sie es leer lassen"
4773
 
4774
- #: app/features/mec/settings.php:438
4775
  msgid "Currency Position"
4776
  msgstr "Position des Währungssymbols"
4777
 
4778
- #: app/features/mec/settings.php:441
4779
  msgid "Before $10"
4780
  msgstr "Vor $10"
4781
 
4782
- #: app/features/mec/settings.php:442
4783
  msgid "After 10$"
4784
  msgstr "Nach 10$"
4785
 
4786
- #: app/features/mec/settings.php:447
4787
  msgid "Thousand Separator"
4788
  msgstr "Tausendertrennzeichen"
4789
 
4790
- #: app/features/mec/settings.php:453
4791
  msgid "Decimal Separator"
4792
  msgstr "Dezimaltrennzeichen"
4793
 
4794
- #: app/features/mec/settings.php:463
4795
  msgid "No decimal"
4796
  msgstr "Keine Dezimale"
4797
 
4798
- #: app/features/mec/settings.php:474
4799
  msgid "Enable Google Recaptcha"
4800
  msgstr "Google Recaptcha aktivieren"
4801
 
4802
- #: app/features/mec/settings.php:481
4803
  msgid "Enable on booking form"
4804
  msgstr "Auf dem Buchungsformular aktivieren"
4805
 
4806
- #: app/features/mec/settings.php:487
4807
  #, fuzzy
4808
  #| msgid "Enable on \"Frontend Event Submittion\" form"
4809
  msgid "Enable on \"Frontend Event Submission\" form"
4810
  msgstr "Aktivieren auf dem \"Frontend Event Submittion\" Formular"
4811
 
4812
- #: app/features/mec/settings.php:491
4813
  msgid "Site Key"
4814
  msgstr "Site Key (Seitenschlüssel)"
4815
 
4816
- #: app/features/mec/settings.php:497
4817
  msgid "Secret Key"
4818
  msgstr "Geheimschlüssel"
4819
 
4820
- #: app/features/mec/settings.php:509 app/features/mec/settings.php:517
4821
  msgid "Time Format"
4822
  msgstr "Zeitformat"
4823
 
4824
- #: app/features/mec/settings.php:512
4825
  msgid "12 hours format with AM/PM"
4826
  msgstr "12-Stunden-Format mit AM/FM"
4827
 
4828
- #: app/features/mec/settings.php:513
4829
  msgid "24 hours format"
4830
  msgstr "24-Stunden-Format"
4831
 
4832
- #: app/features/mec/settings.php:518
4833
  msgid "This option, affects the selection of Start/End time."
4834
  msgstr ""
4835
 
4836
- #: app/features/mec/settings.php:526
4837
  msgid "Events List Page"
4838
  msgstr "Seite Liste der Veranstaltungen"
4839
 
4840
- #: app/features/mec/settings.php:535 app/features/mec/settings.php:547
4841
  #, php-format
4842
  msgid "Put %s shortcode into the page."
4843
  msgstr "%s shortcode in die Seite einfügen"
4844
 
4845
- #: app/features/mec/settings.php:538
4846
  msgid "Add/Edit Events Page"
4847
  msgstr "Veranstaltungsseite hinzufügen/bearbeiten"
4848
 
4849
- #: app/features/mec/settings.php:552
4850
  msgid "Enable event submission by guest (Not logged-in) users"
4851
  msgstr ""
4852
  "Das Erstellen von Veranstaltungen durch Gäste (nicht angemeldete Nutzer) "
4853
  "erlauben"
4854
 
4855
- #: app/features/mec/settings.php:559
4856
  msgid "Enable mandatory email and name for guest user"
4857
  msgstr ""
4858
  "Aktivieren Sie die obligatorische E-Mail und den Namen für Gastbenutzer"
4859
 
4860
- #: app/features/mec/settings.php:563
4861
  msgid "Frontend Event Submission Sections"
4862
  msgstr "Frontend Veranstaltungen Einreichung Sektionen"
4863
 
4864
- #: app/features/mec/settings.php:585 app/widgets/single.php:119
4865
  msgid "Event Categories"
4866
  msgstr "Veranstaltungskategorien"
4867
 
4868
- #: app/features/mec/settings.php:591
4869
  msgid "Event Labels"
4870
  msgstr "Event Labels"
4871
 
4872
- #: app/features/mec/settings.php:603
4873
  msgid "Event Tags"
4874
  msgstr "Event Schlagworte"
4875
 
4876
- #: app/features/mec/settings.php:615 app/widgets/single.php:123
4877
  msgid "Event Organizer"
4878
  msgstr "Veranstaltungsmanager"
4879
 
4880
- #: app/features/mec/settings.php:633
4881
  msgid "Booking Options"
4882
  msgstr "Buchungsoptionen"
4883
 
4884
- #: app/features/mec/settings.php:639
4885
  #, fuzzy
4886
  #| msgid "Fees/Taxes Options"
4887
  msgid "Fees / Taxes Options"
4888
  msgstr "Gebühren/Steuer Optionen"
4889
 
4890
- #: app/features/mec/settings.php:656
4891
  #, php-format
4892
  msgid ""
4893
  "Users can put a note for editors while they're submitting the event. Also "
@@ -4899,102 +4919,102 @@ msgstr ""
4899
  "Eventbenachrichtigung setzen, um die Notizen der Benutzer in der E-Mail zu "
4900
  "erhalten."
4901
 
4902
- #: app/features/mec/settings.php:663 app/features/mec/settings.php:672
4903
  msgid "Visibility of Note"
4904
  msgstr "Sichtbarkeit der Anmerkungen zum Event "
4905
 
4906
- #: app/features/mec/settings.php:666
4907
  msgid "Always"
4908
  msgstr "Immer"
4909
 
4910
- #: app/features/mec/settings.php:667
4911
  msgid "While event is not published"
4912
  msgstr "Das Ereignis wird nicht veröffentlicht"
4913
 
4914
- #: app/features/mec/settings.php:673
4915
  msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
4916
  msgstr ""
4917
  "Die Ereignisnotiz wird im Frontend-Einreichungsformular angezeigt und das "
4918
  "Ereignis im Backend bearbeitet."
4919
 
4920
- #: app/features/mec/settings.php:682 app/libraries/main.php:534
4921
  msgid "User Profile"
4922
  msgstr ""
4923
 
4924
- #: app/features/mec/settings.php:684
4925
  #, php-format
4926
  msgid ""
4927
  "Put %s shortcode into your desired page. Then users are able to see history "
4928
  "of their bookings."
4929
  msgstr ""
4930
 
4931
- #: app/features/mec/settings.php:689 app/libraries/main.php:535
4932
  #, fuzzy
4933
  #| msgid "Search Form"
4934
  msgid "Search Bar"
4935
  msgstr "Suche Formular"
4936
 
4937
- #: app/features/mec/settings.php:691
4938
  #, php-format
4939
  msgid ""
4940
  "Put %s shortcode into your desired page. Then users are able to search events"
4941
  msgstr ""
4942
 
4943
- #: app/features/mec/settings.php:695
4944
  msgid "Ajax Live mode"
4945
  msgstr ""
4946
 
4947
- #: app/features/mec/settings.php:699
4948
  msgid "Ajax mode"
4949
  msgstr ""
4950
 
4951
- #: app/features/mec/settings.php:700
4952
  msgid ""
4953
  "if you enable this option, search button disappeared and to use this "
4954
  "feature, text input field must be enabled."
4955
  msgstr ""
4956
 
4957
- #: app/features/mec/settings.php:708
4958
  #, fuzzy
4959
  #| msgid "Modern Style"
4960
  msgid "Modern Type"
4961
  msgstr "Moderner Stil"
4962
 
4963
- #: app/features/mec/settings.php:712
4964
  #, fuzzy
4965
  #| msgid "Search Form"
4966
  msgid "Search bar fields"
4967
  msgstr "Suche Formular"
4968
 
4969
- #: app/features/mec/settings.php:754
4970
  #, fuzzy
4971
  #| msgid "Text Input"
4972
  msgid "Text input"
4973
  msgstr "Text eingeben"
4974
 
4975
- #: app/features/mec/settings.php:767
4976
  msgid "Enable Mailchimp Integration"
4977
  msgstr "Mailchimp Integration deaktivieren"
4978
 
4979
- #: app/features/mec/settings.php:785 app/features/mec/settings.php:790
4980
  msgid "List ID"
4981
  msgstr "List ID"
4982
 
4983
- #: app/features/mec/settings.php:798 app/features/mec/settings.php:806
4984
  msgid "Subscription Status"
4985
  msgstr "Buchungsstatus"
4986
 
4987
- #: app/features/mec/settings.php:801
4988
  msgid "Subscribe automatically"
4989
  msgstr "automatisch Anmelden/Abonnieren"
4990
 
4991
- #: app/features/mec/settings.php:802
4992
  msgid "Subscribe by verification"
4993
  msgstr ""
4994
  "Anmelden/Abonnieren durch Bestätigung\n"
4995
  " "
4996
 
4997
- #: app/features/mec/settings.php:807
4998
  msgid ""
4999
  "If you choose \"Subscribe by verification\" then an email will send to user "
5000
  "by mailchimp for subscription verification."
@@ -5002,57 +5022,57 @@ msgstr ""
5002
  "Wenn Sie \"Anmelden durch Verifizierung\" wählen, wird eine E-Mail an den "
5003
  "Benutzer per Mailchimp zur Bestätigung gesendet."
5004
 
5005
- #: app/features/mec/settings.php:819
5006
  #, fuzzy
5007
  #| msgid "Filter Options"
5008
  msgid "Upload Field Options"
5009
  msgstr "Filteroptionen"
5010
 
5011
- #: app/features/mec/settings.php:821
5012
  msgid "Mime types"
5013
  msgstr ""
5014
 
5015
- #: app/features/mec/settings.php:825
5016
  msgid "Split mime types with \",\"."
5017
  msgstr ""
5018
 
5019
- #: app/features/mec/settings.php:825
5020
  msgid "Default: jpeg,jpg,png,pdf"
5021
  msgstr ""
5022
 
5023
- #: app/features/mec/settings.php:828
5024
  #, fuzzy
5025
  #| msgid "Amount (Per Ticket)"
5026
  msgid "Maximum file size"
5027
  msgstr "Betrag (pro Ticket)"
5028
 
5029
- #: app/features/mec/settings.php:832
5030
  msgid "The unit is Megabyte \"MB\""
5031
  msgstr ""
5032
 
5033
- #: app/features/mec/single.php:31 app/libraries/main.php:541
5034
  #, fuzzy
5035
  #| msgid "Single Event Style"
5036
  msgid "Single Event Page"
5037
  msgstr "Single Event Stil"
5038
 
5039
- #: app/features/mec/single.php:33 app/features/mec/single.php:38
5040
  msgid "Single Event Date Format"
5041
  msgstr "Einzelveranstaltung Datumformat"
5042
 
5043
- #: app/features/mec/single.php:46 app/features/mec/single.php:54
5044
  msgid "Date Method"
5045
  msgstr "Datum Methode"
5046
 
5047
- #: app/features/mec/single.php:49
5048
  msgid "Next occurrence date"
5049
  msgstr "Nächstes vorkommende Datum"
5050
 
5051
- #: app/features/mec/single.php:50
5052
  msgid "Referred date"
5053
  msgstr "Gewünschtes Datum"
5054
 
5055
- #: app/features/mec/single.php:55
5056
  #, fuzzy
5057
  #| msgid ""
5058
  #| "\"Referred date\" shows the event date based on referred date in event "
@@ -5063,99 +5083,99 @@ msgstr ""
5063
  "\"Gewünschtes Datum\" zeigt das Ereignisdatum basierend auf dem angegebenen "
5064
  "Datum in der Eventliste an."
5065
 
5066
- #: app/features/mec/single.php:62 app/features/mec/single.php:73
5067
  msgid "Single Event Style"
5068
  msgstr "Single Event Stil"
5069
 
5070
- #: app/features/mec/single.php:65
5071
  msgid "Default Style"
5072
  msgstr "Standardstil voreingestellt"
5073
 
5074
- #: app/features/mec/single.php:68
5075
  #, fuzzy
5076
  #| msgid "MEC Single Sidebar"
5077
  msgid "Elementor Single Builder"
5078
  msgstr "MEC Single Sidebar"
5079
 
5080
- #: app/features/mec/single.php:74
5081
  msgid "Choose your single event style."
5082
  msgstr "Wählen Sie Ihren Single Event Stil"
5083
 
5084
- #: app/features/mec/single.php:82 app/features/mec/single.php:90
5085
  #, fuzzy
5086
  #| msgid "Booking"
5087
  msgid "Booking Style"
5088
  msgstr "Buchung / Reservierung"
5089
 
5090
- #: app/features/mec/single.php:86
5091
  #, fuzzy
5092
  #| msgid "Modal 1"
5093
  msgid "Modal"
5094
  msgstr "Modal 1"
5095
 
5096
- #: app/features/mec/single.php:91
5097
  msgid ""
5098
  "Choose your Booking style, Please Note: When you set this feature to modal "
5099
  "you can not see booking box if you set popoup module view on shortcodes"
5100
  msgstr ""
5101
 
5102
- #: app/features/mec/single.php:99
5103
  msgid "Disable Block Editor (Gutenberg)"
5104
  msgstr ""
5105
 
5106
- #: app/features/mec/single.php:102
5107
  msgid "Disable Block Editor"
5108
  msgstr ""
5109
 
5110
- #: app/features/mec/single.php:106
5111
  msgid "Block Editor"
5112
  msgstr ""
5113
 
5114
- #: app/features/mec/single.php:107
5115
  msgid ""
5116
  "If you want to use the new WordPress block editor you should keep this "
5117
  "checkbox unchecked."
5118
  msgstr ""
5119
 
5120
- #: app/features/mec/single.php:113 app/features/mec/single.php:120
5121
  msgid "Breadcrumbs"
5122
  msgstr ""
5123
 
5124
- #: app/features/mec/single.php:116
5125
  msgid "Enable Breadcrumbs."
5126
  msgstr ""
5127
 
5128
- #: app/features/mec/single.php:121
5129
  msgid "Check this option, for showing the breadcrumbs on single event page"
5130
  msgstr ""
5131
 
5132
- #: app/features/mec/single.php:134
5133
  msgid "Show countdown module on event page"
5134
  msgstr "Countdownmodul auf Veranstaltungsseite anzeigen"
5135
 
5136
- #: app/features/mec/single.php:139
5137
  msgid "Countdown Style"
5138
  msgstr "Countdown Stil"
5139
 
5140
- #: app/features/mec/single.php:142
5141
  msgid "Plain Style"
5142
  msgstr "Einfacher schlichter Stil"
5143
 
5144
- #: app/features/mec/single.php:143
5145
  msgid "Flip Style"
5146
  msgstr "Flip Stil"
5147
 
5148
- #: app/features/mec/single.php:151 app/features/mec/single.php:158
5149
  msgid "Exceptional days"
5150
  msgstr "Ausgesuchte ausnehmende Tage"
5151
 
5152
- #: app/features/mec/single.php:155
5153
  msgid "Show exceptional days option on Add/Edit events page"
5154
  msgstr ""
5155
  "Ausnehmende Tage anzeigen auf der Seite Ereignisse hinzufügen / bearbeiten "
5156
  "(Show exceptional days option on Add/Edit events page)"
5157
 
5158
- #: app/features/mec/single.php:159
5159
  #, fuzzy
5160
  #| msgid ""
5161
  #| "Using this option you can include/exclude certain days to/from event "
@@ -5166,11 +5186,11 @@ msgstr ""
5166
  "Mit dieser Option können Sie bestimmte Tage von vorkommenden Eventdaten ein-/"
5167
  "ausschließen."
5168
 
5169
- #: app/features/mec/single.php:168 app/libraries/main.php:544
5170
  msgid "Additional Organizers"
5171
  msgstr "Zusätzliche Organisatoren"
5172
 
5173
- #: app/features/mec/single.php:172
5174
  msgid ""
5175
  "Show additional organizers option on Add/Edit events page and single event "
5176
  "page."
@@ -5178,13 +5198,13 @@ msgstr ""
5178
  "Zeigen Sie zusätzliche Organisatoren auf der Seite Events hinzufügen / "
5179
  "bearbeiten und auf der Seite für einzelne Events an."
5180
 
5181
- #: app/features/mec/single.php:178
5182
  #, fuzzy
5183
  #| msgid "Additional Organizers"
5184
  msgid "Additional locations"
5185
  msgstr "Zusätzliche Organisatoren"
5186
 
5187
- #: app/features/mec/single.php:182
5188
  #, fuzzy
5189
  #| msgid ""
5190
  #| "Show additional organizers option on Add/Edit events page and single "
@@ -5196,18 +5216,18 @@ msgstr ""
5196
  "Zeigen Sie zusätzliche Organisatoren auf der Seite Events hinzufügen / "
5197
  "bearbeiten und auf der Seite für einzelne Events an."
5198
 
5199
- #: app/features/mec/single.php:188 app/libraries/main.php:546
5200
  #: app/skins/single.php:163
5201
  #, fuzzy
5202
  #| msgid "featured event"
5203
  msgid "Related Events"
5204
  msgstr "Ausgewählte Veranstaltung"
5205
 
5206
- #: app/features/mec/single.php:192
5207
  msgid "Display related events based on taxonomy in single event page."
5208
  msgstr ""
5209
 
5210
- #: app/features/mec/single.php:198
5211
  #, fuzzy
5212
  #| msgid "Taxonomies"
5213
  msgid "Select Taxonomies:"
@@ -5310,7 +5330,9 @@ msgid "All videos"
5310
  msgstr "Alle Veranstaltungen"
5311
 
5312
  #: app/features/mec/support-page.php:13 app/features/mec/support.php:147
5313
- msgid "View all Articles"
 
 
5314
  msgstr "Alle Artikel anzeigen"
5315
 
5316
  #: app/features/mec/support-page.php:15
@@ -5327,12 +5349,6 @@ msgstr ""
5327
  msgid "Advice and answers from the Webnus Team"
5328
  msgstr ""
5329
 
5330
- #: app/features/mec/support-page.php:34
5331
- #, fuzzy
5332
- #| msgid "Search %s"
5333
- msgid "Search..."
5334
- msgstr "Suche %s"
5335
-
5336
  #: app/features/mec/support-page.php:46
5337
  msgid "Quick Setup"
5338
  msgstr ""
@@ -5780,8 +5796,8 @@ msgstr "z.B.. max@mustermann.com"
5780
  msgid "eg. https://webnus.net"
5781
  msgstr "http://webnus.net"
5782
 
5783
- #: app/features/organizers.php:311 app/libraries/main.php:4871
5784
- #: app/skins/single.php:814
5785
  msgid "Other Organizers"
5786
  msgstr "Andere Veranstalter"
5787
 
@@ -5798,41 +5814,41 @@ msgstr ""
5798
  msgid "Please %s/%s in order to see your bookings / profile."
5799
  msgstr "Um neue Veranstaltungen einzugeben, bitte %s/%s"
5800
 
5801
- #: app/features/profile/profile.php:25 app/features/profile/profile.php:87
5802
  msgid "#"
5803
  msgstr ""
5804
 
5805
- #: app/features/profile/profile.php:34 app/libraries/main.php:2908
5806
  msgid "Status"
5807
  msgstr ""
5808
 
5809
- #: app/features/profile/profile.php:37 app/libraries/main.php:2045
5810
  msgid "Attendees"
5811
  msgstr "Teilnehmer"
5812
 
5813
- #: app/features/profile/profile.php:40
5814
  #, fuzzy
5815
  #| msgid "%s Invoice"
5816
  msgid "Invoice"
5817
  msgstr "% s Rechnung"
5818
 
5819
- #: app/features/profile/profile.php:76
5820
  #, php-format
5821
  msgid "<i class=\"mec-sl-eye\"></i> %s"
5822
  msgstr ""
5823
 
5824
- #: app/features/profile/profile.php:96 app/libraries/main.php:2059
5825
- #: app/libraries/main.php:4869
5826
  msgid "Ticket"
5827
  msgstr "Ticket"
5828
 
5829
- #: app/features/profile/profile.php:99
5830
  #, fuzzy
5831
  #| msgid "Verification"
5832
  msgid "Variations"
5833
  msgstr "Verifizierung"
5834
 
5835
- #: app/features/profile/profile.php:142
5836
  msgid "No bookings found!"
5837
  msgstr "Keine Buchungen gefunden"
5838
 
@@ -5861,7 +5877,7 @@ msgstr ""
5861
  #: app/features/search_bar/search_result.php:11
5862
  #: app/libraries/notifications.php:671 app/libraries/render.php:437
5863
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
5864
- #: app/skins/single.php:160 app/skins/single.php:708
5865
  #: app/skins/single/default.php:86 app/skins/single/default.php:298
5866
  #: app/skins/single/m1.php:34 app/skins/single/modern.php:184
5867
  msgid "All of the day"
@@ -6072,31 +6088,31 @@ msgstr "Karussellansicht"
6072
  msgid "Slider View"
6073
  msgstr "Slideransicht"
6074
 
6075
- #: app/libraries/main.php:382 app/libraries/main.php:4849
6076
  msgid "SU"
6077
  msgstr "SO"
6078
 
6079
- #: app/libraries/main.php:383 app/libraries/main.php:4850
6080
  msgid "MO"
6081
  msgstr "MO"
6082
 
6083
- #: app/libraries/main.php:384 app/libraries/main.php:4851
6084
  msgid "TU"
6085
  msgstr "DI"
6086
 
6087
- #: app/libraries/main.php:385 app/libraries/main.php:4852
6088
  msgid "WE"
6089
  msgstr "MI"
6090
 
6091
- #: app/libraries/main.php:386 app/libraries/main.php:4853
6092
  msgid "TH"
6093
  msgstr "DO"
6094
 
6095
- #: app/libraries/main.php:387 app/libraries/main.php:4854
6096
  msgid "FR"
6097
  msgstr "FR"
6098
 
6099
- #: app/libraries/main.php:388 app/libraries/main.php:4855
6100
  msgid "SA"
6101
  msgstr "SA"
6102
 
@@ -6336,115 +6352,115 @@ msgstr "Ein neues Label für diese Option einfügen"
6336
  msgid "Free"
6337
  msgstr "kostenfrei"
6338
 
6339
- #: app/libraries/main.php:3515 app/libraries/main.php:5096
6340
  #, fuzzy
6341
  #| msgid "M.E. Calendar"
6342
  msgid "M.E. Calender"
6343
  msgstr "M.E. Calender"
6344
 
6345
- #: app/libraries/main.php:3670
6346
  #, php-format
6347
  msgid "Copy of %s"
6348
  msgstr "Kopie von %s"
6349
 
6350
- #: app/libraries/main.php:4343
6351
  msgid "Booked an event."
6352
  msgstr "Eine Veranstaltung wurde gebucht."
6353
 
6354
- #: app/libraries/main.php:4384
6355
  #, php-format
6356
  msgid "%s booked %s event."
6357
  msgstr "%s gebuchtes %s Event"
6358
 
6359
- #: app/libraries/main.php:4832
6360
  msgid "Taxonomies"
6361
  msgstr "Klassifizierung "
6362
 
6363
- #: app/libraries/main.php:4834
6364
  msgid "Category Plural Label"
6365
  msgstr "Kategorien"
6366
 
6367
- #: app/libraries/main.php:4835
6368
  msgid "Category Singular Label"
6369
  msgstr "Kategorie"
6370
 
6371
- #: app/libraries/main.php:4836
6372
  msgid "Label Plural Label"
6373
  msgstr "Labels"
6374
 
6375
- #: app/libraries/main.php:4837
6376
  msgid "Label Singular Label"
6377
  msgstr "Label"
6378
 
6379
- #: app/libraries/main.php:4837
6380
  msgid "label"
6381
  msgstr "label"
6382
 
6383
- #: app/libraries/main.php:4838
6384
  msgid "Location Plural Label"
6385
  msgstr "Veranstaltungsorte"
6386
 
6387
- #: app/libraries/main.php:4839
6388
  msgid "Location Singular Label"
6389
  msgstr "Veranstaltungsort"
6390
 
6391
- #: app/libraries/main.php:4840
6392
  msgid "Organizer Plural Label"
6393
  msgstr "Veranstalter"
6394
 
6395
- #: app/libraries/main.php:4841
6396
  msgid "Organizer Singular Label"
6397
  msgstr "Veranstalter"
6398
 
6399
- #: app/libraries/main.php:4842
6400
  #, fuzzy
6401
  #| msgid "Label Plural Label"
6402
  msgid "Speaker Plural Label"
6403
  msgstr "Labels"
6404
 
6405
- #: app/libraries/main.php:4843
6406
  #, fuzzy
6407
  #| msgid "Label Singular Label"
6408
  msgid "Speaker Singular Label"
6409
  msgstr "Label"
6410
 
6411
- #: app/libraries/main.php:4849
6412
  msgid "Sunday abbreviation"
6413
  msgstr "Sonntag Abkürzung"
6414
 
6415
- #: app/libraries/main.php:4850
6416
  msgid "Monday abbreviation"
6417
  msgstr "Montag Abkürzung"
6418
 
6419
- #: app/libraries/main.php:4851
6420
  msgid "Tuesday abbreviation"
6421
  msgstr "Dienstag Abkürzung"
6422
 
6423
- #: app/libraries/main.php:4852
6424
  msgid "Wednesday abbreviation"
6425
  msgstr "Mittwoch Abkürzung"
6426
 
6427
- #: app/libraries/main.php:4853
6428
  msgid "Thursday abbreviation"
6429
  msgstr "Donnerstag Abkürzung"
6430
 
6431
- #: app/libraries/main.php:4854
6432
  msgid "Friday abbreviation"
6433
  msgstr "Freitag Abkürzung"
6434
 
6435
- #: app/libraries/main.php:4855
6436
  msgid "Saturday abbreviation"
6437
  msgstr "Samstag Abkürzung "
6438
 
6439
- #: app/libraries/main.php:4859
6440
  msgid "Others"
6441
  msgstr "Andere"
6442
 
6443
- #: app/libraries/main.php:4861
6444
  msgid "Booking Success Message"
6445
  msgstr "Buchung erfolgreich Mitteilung"
6446
 
6447
- #: app/libraries/main.php:4861
6448
  msgid ""
6449
  "Thanks for your booking. Your tickets booked, booking verification might be "
6450
  "needed, please check your email."
@@ -6452,17 +6468,17 @@ msgstr ""
6452
  "Vielen Dank für Ihre Buchung. Für die gebuchten Tickets ist ggf. eine "
6453
  "Bestätigung durch Sie erforderlich. Bitte überprüfen Sie Ihre Emails."
6454
 
6455
- #: app/libraries/main.php:4862 app/widgets/single.php:131
6456
  msgid "Register Button"
6457
  msgstr "Register Button"
6458
 
6459
- #: app/libraries/main.php:4862 app/skins/available_spot/tpl.php:210
6460
  #: app/skins/carousel/render.php:156 app/skins/carousel/render.php:192
6461
  #: app/skins/grid/render.php:118 app/skins/grid/render.php:164
6462
  #: app/skins/grid/render.php:206 app/skins/grid/render.php:234
6463
  #: app/skins/list/render.php:107 app/skins/list/render.php:195
6464
- #: app/skins/masonry/render.php:178 app/skins/single.php:726
6465
- #: app/skins/single.php:729 app/skins/single/default.php:233
6466
  #: app/skins/single/default.php:235 app/skins/single/default.php:445
6467
  #: app/skins/single/default.php:447 app/skins/single/m1.php:126
6468
  #: app/skins/single/m1.php:128 app/skins/single/m2.php:58
@@ -6473,11 +6489,11 @@ msgstr "Register Button"
6473
  msgid "REGISTER"
6474
  msgstr "ANMELDEN"
6475
 
6476
- #: app/libraries/main.php:4863
6477
  msgid "View Detail Button"
6478
  msgstr "Ansicht Detail Button"
6479
 
6480
- #: app/libraries/main.php:4863 app/skins/carousel/render.php:156
6481
  #: app/skins/carousel/render.php:192 app/skins/grid/render.php:118
6482
  #: app/skins/grid/render.php:164 app/skins/grid/render.php:206
6483
  #: app/skins/grid/render.php:234 app/skins/list/render.php:107
@@ -6488,59 +6504,59 @@ msgstr "Ansicht Detail Button"
6488
  msgid "View Detail"
6489
  msgstr "Details "
6490
 
6491
- #: app/libraries/main.php:4864
6492
  msgid "Event Detail Button"
6493
  msgstr "Event Detail Button"
6494
 
6495
- #: app/libraries/main.php:4864 app/skins/countdown/tpl.php:224
6496
  msgid "Event Detail"
6497
  msgstr "Veranstaltungsdetails"
6498
 
6499
- #: app/libraries/main.php:4866
6500
  msgid "More Info Link"
6501
  msgstr "Link Mehr Informationen"
6502
 
6503
- #: app/libraries/main.php:4869
6504
  msgid "Ticket (Singular)"
6505
  msgstr "Ticket"
6506
 
6507
- #: app/libraries/main.php:4870
6508
  msgid "Tickets (Plural)"
6509
  msgstr "Tickets"
6510
 
6511
- #: app/libraries/main.php:4956
6512
  msgid "EventON"
6513
  msgstr "EventON"
6514
 
6515
- #: app/libraries/main.php:4957
6516
  msgid "The Events Calendar"
6517
  msgstr "The Events Calendar"
6518
 
6519
- #: app/libraries/main.php:4958
6520
  msgid "Events Schedule WP Plugin"
6521
  msgstr "Event Zeitplan WP-Plugin"
6522
 
6523
- #: app/libraries/main.php:4959
6524
  msgid "Calendarize It"
6525
  msgstr ""
6526
 
6527
- #: app/libraries/main.php:5033 app/libraries/main.php:5053
6528
  msgid "Confirmed"
6529
  msgstr "Bestätigt"
6530
 
6531
- #: app/libraries/main.php:5034 app/libraries/main.php:5061
6532
  msgid "Rejected"
6533
  msgstr "Abgelehnt"
6534
 
6535
- #: app/libraries/main.php:5035 app/libraries/main.php:5057
6536
  msgid "Pending"
6537
  msgstr "Ausstehend"
6538
 
6539
- #: app/libraries/main.php:5083
6540
  msgid "Waiting"
6541
  msgstr "in Bearbeitung"
6542
 
6543
- #: app/libraries/main.php:5288 app/libraries/render.php:367
6544
  msgid "Skin controller does not exist."
6545
  msgstr "Skin contoller existiert nicht."
6546
 
@@ -6672,7 +6688,7 @@ msgstr "Adresse von..."
6672
  msgid "Get Directions"
6673
  msgstr "Wegbeschreibung"
6674
 
6675
- #: app/modules/links/details.php:17 app/skins/single.php:426
6676
  msgid "Share this event"
6677
  msgstr "Diese Veranstaltung teilen"
6678
 
@@ -6699,7 +6715,7 @@ msgstr "Nächstes Event"
6699
  msgid "Go to occurrence page"
6700
  msgstr "Zum Event"
6701
 
6702
- #: app/modules/next-event/details.php:95 app/skins/single.php:702
6703
  #: app/skins/single/default.php:80 app/skins/single/default.php:292
6704
  #: app/skins/single/m1.php:28 app/skins/single/modern.php:178
6705
  msgid "Time"
@@ -6756,16 +6772,17 @@ msgid "Visibility"
6756
  msgstr "Sichtbarkeit"
6757
 
6758
  #: app/skins/agenda/tpl.php:65 app/skins/agenda/tpl.php:69
6759
- #: app/skins/carousel/tpl.php:45 app/skins/grid/tpl.php:61
 
6760
  #: app/skins/grid/tpl.php:65 app/skins/list/tpl.php:66
6761
  #: app/skins/list/tpl.php:70 app/skins/masonry/tpl.php:61
6762
  #: app/skins/masonry/tpl.php:65 app/skins/slider/tpl.php:43
6763
  msgid "No event found!"
6764
  msgstr "Keine Veranstaltung gefunden"
6765
 
6766
- #: app/skins/agenda/tpl.php:74 app/skins/grid/tpl.php:70
6767
- #: app/skins/list/tpl.php:75 app/skins/masonry/tpl.php:70
6768
- #: app/skins/yearly_view/render.php:124
6769
  msgid "Load More"
6770
  msgstr "Weitere anzeigen"
6771
 
@@ -6833,27 +6850,27 @@ msgstr "Keine Veranstaltungen"
6833
  msgid "Home"
6834
  msgstr ""
6835
 
6836
- #: app/skins/single.php:509 app/skins/single/default.php:43
6837
  #: app/skins/single/m1.php:247 app/skins/single/m2.php:174
6838
  #: app/skins/single/modern.php:256
6839
  msgid "Sold out!"
6840
  msgstr "Ausverkauft!"
6841
 
6842
- #: app/skins/single.php:774 app/skins/single.php:829
6843
  #: app/skins/single/default.php:205 app/skins/single/default.php:417
6844
  #: app/skins/single/m1.php:100 app/skins/single/m2.php:32
6845
  #: app/skins/single/modern.php:41
6846
  msgid "Phone"
6847
  msgstr "Phone"
6848
 
6849
- #: app/skins/single.php:788 app/skins/single.php:843
6850
  #: app/skins/single/default.php:219 app/skins/single/default.php:431
6851
  #: app/skins/single/m1.php:114 app/skins/single/m2.php:46
6852
  #: app/skins/single/modern.php:55
6853
  msgid "Website"
6854
  msgstr "Website"
6855
 
6856
- #: app/skins/single.php:913
6857
  #, fuzzy
6858
  #| msgid "No Search Options"
6859
  msgid "Speakers:"
@@ -7347,6 +7364,9 @@ msgstr "http://webnus.net"
7347
  #~ msgid "Organizer Payment Credentials"
7348
  #~ msgstr "Name des Veranstalters des gebuchten Events"
7349
 
 
 
 
7350
  #~ msgid "Card Number"
7351
  #~ msgstr "Kartennummer"
7352
 
2
  msgstr ""
3
  "Project-Id-Version: ME Calender\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2019-09-18 14:18+0430\n"
6
+ "PO-Revision-Date: 2019-09-18 14:22+0430\n"
7
  "Last-Translator: Jogon <koenig@kafinanz.de>\n"
8
  "Language-Team: German\n"
9
  "Language: de_DE\n"
68
  msgstr "Alles Auswählen"
69
 
70
  #: app/features/colors.php:50 app/features/fes/form.php:794
71
+ #: app/features/mec/settings.php:600
72
  msgid "Event Color"
73
  msgstr "Farbe der Veranstaltung"
74
 
78
  msgid "Settings"
79
  msgstr "Einstellungen"
80
 
81
+ #: app/features/contextual.php:62 app/features/events.php:2410
82
+ #: app/features/mec/booking.php:412 app/features/mec/support.php:29
83
  #: app/libraries/main.php:554
84
  msgid "Booking Form"
85
  msgstr "Buchungsformular"
98
  "<iframe width=\"600\" height=\"300\" src=\"https://www.youtube.com/embed/"
99
  "YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></iframe>"
100
 
101
+ #: app/features/contextual.php:70 app/features/mec/booking.php:530
102
  #: app/features/mec/support.php:36 app/libraries/main.php:555
103
  msgid "Payment Gateways"
104
  msgstr "Zahlungs-Gateways"
193
  "height=\"420\" src=\"https://www.youtube.com/embed/dqgt1b8X8hs\" frameborder="
194
  "\"0\" allowfullscreen></iframe>"
195
 
196
+ #: app/features/contextual.php:117 app/features/mec/settings.php:52
197
  #: app/libraries/main.php:528
198
  msgid "General Options"
199
  msgstr "Allgemeine Einstellungen"
200
 
201
+ #: app/features/contextual.php:139 app/features/mec/settings.php:384
202
  #: app/libraries/main.php:530
203
  msgid "Slugs/Permalinks"
204
  msgstr "Slug/Permalinks"
207
  msgid "Event Details/Single Event Page"
208
  msgstr "Event Details / Einzelveranstaltungsseite"
209
 
210
+ #: app/features/contextual.php:166 app/features/mec/settings.php:416
211
  #: app/libraries/main.php:531
212
  msgid "Currency Options"
213
  msgstr "Währungseinstellungen"
214
 
215
+ #: app/features/contextual.php:182 app/features/mec/modules.php:67
216
+ #: app/features/mec/modules.php:85 app/libraries/main.php:560
217
  msgid "Google Maps Options"
218
  msgstr "Google Maps Einstellungen"
219
 
220
+ #: app/features/contextual.php:244 app/features/mec/settings.php:473
221
  #: app/libraries/main.php:532
222
  msgid "Google Recaptcha Options"
223
  msgstr "Google Recaptcha Einstellungen"
224
 
225
+ #: app/features/contextual.php:258 app/features/mec/single.php:133
226
  #: app/libraries/main.php:542
227
  msgid "Countdown Options"
228
  msgstr "Countdown Einstellungsoptionen"
229
 
230
+ #: app/features/contextual.php:268 app/features/mec/modules.php:263
231
  #: app/libraries/main.php:565
232
  msgid "Social Networks"
233
  msgstr "Soziale Netzwerke"
236
  msgid "Next Event Module"
237
  msgstr "Nächstes Veranstaltung Modul"
238
 
239
+ #: app/features/contextual.php:286 app/features/mec/settings.php:509
240
  #: app/libraries/main.php:533
241
  msgid "Frontend Event Submission"
242
  msgstr "Erstellung von Veranstaltungen im Frontend"
243
 
244
+ #: app/features/contextual.php:298 app/features/events.php:1174
245
  #: app/libraries/main.php:543
246
  msgid "Exceptional Days"
247
  msgstr "Herausgenommene Tage "
248
 
249
+ #: app/features/contextual.php:308 app/features/events.php:297
250
+ #: app/features/mec/booking.php:88 app/features/mec/notifications.php:31
251
  #: app/libraries/main.php:550 app/libraries/main.php:571
252
  #: app/libraries/main.php:652
253
  msgid "Booking"
254
  msgstr "Buchung / Reservierung"
255
 
256
+ #: app/features/contextual.php:318 app/features/mec/booking.php:234
257
  #: app/libraries/main.php:551
258
  msgid "Coupons"
259
  msgstr "Gutscheine"
260
 
261
+ #: app/features/contextual.php:326 app/features/mec/modules.php:324
262
  #: app/libraries/main.php:567
263
  msgid "BuddyPress Integration"
264
  msgstr "Buddy Press Integration"
265
 
266
+ #: app/features/contextual.php:334 app/features/mec/settings.php:766
267
  #: app/libraries/main.php:536
268
  msgid "Mailchimp Integration"
269
  msgstr "Mailchimp Integration"
272
  msgid "MEC Activation"
273
  msgstr "MEC Aktivierung"
274
 
275
+ #: app/features/events.php:149 app/features/ix/export.php:34
276
  #: app/features/mec/dashboard.php:229 app/skins/daily_view/tpl.php:79
277
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
278
  msgid "Events"
279
  msgstr "Veranstaltungen"
280
 
281
+ #: app/features/events.php:150
282
+ #: app/features/mec/meta_boxes/display_options.php:921
283
+ #: app/features/mec/meta_boxes/display_options.php:977
284
+ #: app/features/mec/meta_boxes/display_options.php:1012
285
+ #: app/features/profile/profile.php:29 app/skins/daily_view/tpl.php:80
286
  #: app/skins/monthly_view/tpl.php:71 app/skins/yearly_view/tpl.php:69
287
  msgid "Event"
288
  msgstr "Veranstaltung"
289
 
290
+ #: app/features/events.php:151 app/features/mec.php:333
291
  msgid "Add Event"
292
  msgstr "Veranstaltung hinzufügen"
293
 
294
+ #: app/features/events.php:152 app/features/mec/dashboard.php:134
295
  msgid "Add New Event"
296
  msgstr "Neue Veranstaltung hinzufügen"
297
 
298
+ #: app/features/events.php:153 app/features/ix.php:3122
299
  #: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:57
300
  msgid "No events found!"
301
  msgstr "Keine Veranstaltungen gefunden!"
302
 
303
+ #: app/features/events.php:154
304
  msgid "All Events"
305
  msgstr "Alle Veranstaltungen"
306
 
307
+ #: app/features/events.php:155
308
  msgid "Edit Event"
309
  msgstr ""
310
 
311
+ #: app/features/events.php:156
312
  msgid "View Event"
313
  msgstr "Veranstaltung ansehen"
314
 
315
+ #: app/features/events.php:157
316
  msgid "No events found in Trash!"
317
  msgstr "Keine Veranstaltungen im Papierkorb gefunden!"
318
 
319
+ #: app/features/events.php:174 app/features/events.php:3215
320
+ #: app/features/mec/meta_boxes/display_options.php:832
321
  #: app/features/mec/meta_boxes/search_form.php:31
322
  #: app/features/mec/meta_boxes/search_form.php:93
323
  #: app/features/mec/meta_boxes/search_form.php:155
328
  #: app/features/mec/meta_boxes/search_form.php:453
329
  #: app/features/mec/meta_boxes/search_form.php:514
330
  #: app/features/mec/meta_boxes/search_form.php:575
331
+ #: app/features/mec/settings.php:719 app/features/mec/single.php:204
332
+ #: app/libraries/main.php:4845 app/libraries/skins.php:808
333
+ #: app/skins/single.php:559 app/skins/single/default.php:170
334
  #: app/skins/single/default.php:382 app/skins/single/m1.php:170
335
  #: app/skins/single/m2.php:102 app/skins/single/modern.php:110
336
  msgid "Category"
337
  msgstr "Kategorie"
338
 
339
+ #: app/features/events.php:175 app/features/events.php:3186
340
  #: app/features/fes/form.php:745 app/features/mec.php:335
341
+ #: app/features/mec/meta_boxes/filter.php:81 app/libraries/main.php:4844
342
  msgid "Categories"
343
  msgstr "Kategorien"
344
 
345
+ #: app/features/events.php:185 app/features/labels.php:71
346
  #: app/features/locations.php:69 app/features/organizers.php:69
347
  #: app/features/speakers.php:70
348
  #, php-format
349
  msgid "All %s"
350
  msgstr "Alle %s"
351
 
352
+ #: app/features/events.php:186 app/features/labels.php:72
353
  #: app/features/locations.php:70 app/features/organizers.php:70
354
  #: app/features/speakers.php:71
355
  #, php-format
356
  msgid "Edit %s"
357
  msgstr "Bearbeiten %s"
358
 
359
+ #: app/features/events.php:187 app/features/labels.php:73
360
  #: app/features/locations.php:71 app/features/organizers.php:71
361
  #: app/features/speakers.php:72
362
  #, php-format
363
  msgid "View %s"
364
  msgstr "Ansicht %s"
365
 
366
+ #: app/features/events.php:188 app/features/labels.php:74
367
  #: app/features/locations.php:72 app/features/organizers.php:72
368
  #: app/features/speakers.php:73
369
  #, php-format
370
  msgid "Update %s"
371
  msgstr "Update %s"
372
 
373
+ #: app/features/events.php:189 app/features/labels.php:75
374
  #: app/features/locations.php:73 app/features/organizers.php:73
375
  #: app/features/speakers.php:74
376
  #, php-format
377
  msgid "Add New %s"
378
  msgstr "Neu hinzufügen%s"
379
 
380
+ #: app/features/events.php:190 app/features/labels.php:76
381
  #: app/features/locations.php:74 app/features/organizers.php:74
382
  #: app/features/speakers.php:75
383
  #, php-format
384
  msgid "New %s Name"
385
  msgstr "Neuer %s Name"
386
 
387
+ #: app/features/events.php:191 app/features/labels.php:77
388
  #: app/features/locations.php:75 app/features/organizers.php:75
389
  #: app/features/speakers.php:76
390
  #, php-format
391
  msgid "Popular %s"
392
  msgstr "Beliebt %s"
393
 
394
+ #: app/features/events.php:192 app/features/labels.php:78
395
  #: app/features/locations.php:76 app/features/organizers.php:76
396
  #: app/features/speakers.php:77
397
  #, php-format
398
  msgid "Search %s"
399
  msgstr "Suche %s"
400
 
401
+ #: app/features/events.php:217 app/features/events.php:238
402
  msgid "Category Icon"
403
  msgstr "Kategoriesymbol"
404
 
405
+ #: app/features/events.php:220 app/features/events.php:243
406
  msgid "Select icon"
407
  msgstr "Wählen Sie ein Symbol"
408
 
409
+ #: app/features/events.php:292
410
  msgid "Event Details"
411
  msgstr "Veranstaltungsdetails"
412
 
413
+ #: app/features/events.php:451
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
414
  msgid "Note for reviewer"
415
  msgstr "Zusätzliche Anmerkungen zum Event "
416
 
417
+ #: app/features/events.php:460
418
  msgid "Guest Data"
419
  msgstr "Gäste Daten"
420
 
421
+ #: app/features/events.php:461 app/features/events.php:2392
422
  #: app/features/fes/form.php:668 app/features/labels.php:178
423
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
424
+ #: app/features/profile/profile.php:91 app/libraries/notifications.php:805
425
  #: app/modules/booking/steps/form.php:37
426
  msgid "Name"
427
  msgstr "Name"
428
 
429
+ #: app/features/events.php:462 app/features/events.php:2403
430
+ #: app/features/events.php:2479 app/features/fes/form.php:664
431
+ #: app/features/mec/booking.php:57 app/features/mec/booking.php:463
432
  #: app/features/organizers.php:111 app/features/organizers.php:152
433
+ #: app/features/profile/profile.php:94 app/features/speakers.php:124
434
  #: app/features/speakers.php:184 app/libraries/main.php:1471
435
  #: app/libraries/main.php:1537 app/libraries/main.php:2582
436
  #: app/libraries/notifications.php:806 app/modules/booking/steps/form.php:46
437
+ #: app/modules/booking/steps/form.php:84 app/skins/single.php:812
438
+ #: app/skins/single.php:867 app/skins/single/default.php:212
439
  #: app/skins/single/default.php:424 app/skins/single/m1.php:107
440
  #: app/skins/single/m2.php:39 app/skins/single/modern.php:48
441
  msgid "Email"
442
  msgstr "Email"
443
 
444
+ #: app/features/events.php:467 app/features/fes/form.php:232
445
  msgid "Date and Time"
446
  msgstr "Datum und Uhrzeit"
447
 
448
+ #: app/features/events.php:470 app/features/events.php:476
449
+ #: app/features/events.php:3218 app/features/events.php:3408
450
+ #: app/features/events.php:3450 app/features/fes/form.php:236
451
  #: app/features/fes/form.php:240 app/features/ix.php:2743
452
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:38
453
  #: app/features/mec/dashboard.php:373
454
+ #: app/features/mec/meta_boxes/display_options.php:48
455
+ #: app/features/mec/meta_boxes/display_options.php:189
456
+ #: app/features/mec/meta_boxes/display_options.php:341
457
+ #: app/features/mec/meta_boxes/display_options.php:396
458
+ #: app/features/mec/meta_boxes/display_options.php:519
459
+ #: app/features/mec/meta_boxes/display_options.php:573
460
+ #: app/features/mec/meta_boxes/display_options.php:620
461
+ #: app/features/mec/meta_boxes/display_options.php:653
462
+ #: app/features/mec/meta_boxes/display_options.php:688
463
+ #: app/features/mec/meta_boxes/display_options.php:734
464
+ #: app/features/mec/meta_boxes/display_options.php:800
465
+ #: app/features/mec/meta_boxes/display_options.php:1035
466
+ #: app/features/mec/meta_boxes/display_options.php:1122
467
  msgid "Start Date"
468
  msgstr "Start Datum"
469
 
470
+ #: app/features/events.php:548 app/features/events.php:640
471
+ #: app/features/events.php:1706 app/features/events.php:1765
472
+ #: app/features/events.php:1938 app/features/events.php:1977
473
  #: app/features/fes/form.php:268 app/features/fes/form.php:308
474
  msgid "AM"
475
  msgstr "AM"
476
 
477
+ #: app/features/events.php:555 app/features/events.php:647
478
+ #: app/features/events.php:1713 app/features/events.php:1772
479
+ #: app/features/events.php:1939 app/features/events.php:1978
480
  #: app/features/fes/form.php:269 app/features/fes/form.php:309
481
  msgid "PM"
482
  msgstr "PM"
483
 
484
+ #: app/features/events.php:562 app/features/events.php:567
485
+ #: app/features/events.php:3219 app/features/events.php:3408
486
+ #: app/features/events.php:3450 app/features/fes/form.php:276
487
  #: app/features/fes/form.php:280 app/features/ix.php:2743
488
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:44
489
  #: app/features/mec/dashboard.php:374
490
  msgid "End Date"
491
  msgstr "Ende Datum"
492
 
493
+ #: app/features/events.php:661 app/features/fes/form.php:315
494
  msgid "All Day Event"
495
  msgstr "Ganztägige Veranstaltung"
496
 
497
+ #: app/features/events.php:671 app/features/fes/form.php:318
498
  msgid "Hide Event Time"
499
  msgstr "Event / Veranstaltungszeit verbergen"
500
 
501
+ #: app/features/events.php:681 app/features/fes/form.php:321
502
  msgid "Hide Event End Time"
503
  msgstr "Ende-Zeit der Veranstaltung verbergen"
504
 
505
+ #: app/features/events.php:686 app/features/events.php:690
506
  #: app/features/fes/form.php:325
507
  msgid "Time Comment"
508
  msgstr "z.B. MEZ "
509
 
510
+ #: app/features/events.php:691 app/features/fes/form.php:326
511
  #, fuzzy
512
  #| msgid ""
513
  #| "It shows next to event time on calendar. You can insert Timezone etc. in "
519
  "Neben der Zeit im Kalender wird diese Angabe angezeigt. In diesem Feld "
520
  "können Sie z.B. eine Zeitzone wie z.B. \"MEZ\" usw. einfügen. "
521
 
522
+ #: app/features/events.php:693 app/features/events.php:826
523
+ #: app/features/events.php:1126 app/features/events.php:1193
524
+ #: app/features/events.php:1492 app/features/events.php:1583
525
+ #: app/features/events.php:1794 app/features/events.php:1809
526
+ #: app/features/events.php:1997 app/features/events.php:2010
527
+ #: app/features/events.php:2140 app/features/events.php:2176
528
+ #: app/features/events.php:2274 app/features/events.php:2289
529
+ #: app/features/events.php:2319 app/features/events.php:2332
530
  #: app/features/fes/form.php:630 app/features/locations.php:299
531
+ #: app/features/mec/booking.php:108 app/features/mec/booking.php:145
532
+ #: app/features/mec/booking.php:161 app/features/mec/booking.php:279
533
+ #: app/features/mec/booking.php:308 app/features/mec/booking.php:356
534
+ #: app/features/mec/booking.php:366 app/features/mec/booking.php:388
535
+ #: app/features/mec/booking.php:398 app/features/mec/dashboard.php:71
536
+ #: app/features/mec/meta_boxes/display_options.php:66
537
+ #: app/features/mec/meta_boxes/display_options.php:79
538
+ #: app/features/mec/meta_boxes/display_options.php:92
539
+ #: app/features/mec/meta_boxes/display_options.php:103
540
+ #: app/features/mec/meta_boxes/display_options.php:115
541
+ #: app/features/mec/meta_boxes/display_options.php:207
542
+ #: app/features/mec/meta_boxes/display_options.php:219
543
+ #: app/features/mec/meta_boxes/display_options.php:231
544
+ #: app/features/mec/meta_boxes/display_options.php:244
545
+ #: app/features/mec/meta_boxes/display_options.php:255
546
+ #: app/features/mec/meta_boxes/display_options.php:268
547
+ #: app/features/mec/meta_boxes/display_options.php:279
548
+ #: app/features/mec/meta_boxes/display_options.php:360
549
+ #: app/features/mec/meta_boxes/display_options.php:536
550
+ #: app/features/mec/meta_boxes/display_options.php:819
551
+ #: app/features/mec/meta_boxes/display_options.php:892
552
+ #: app/features/mec/meta_boxes/display_options.php:904
553
+ #: app/features/mec/meta_boxes/display_options.php:915
554
+ #: app/features/mec/meta_boxes/display_options.php:947
555
+ #: app/features/mec/meta_boxes/display_options.php:958
556
+ #: app/features/mec/meta_boxes/display_options.php:971
557
+ #: app/features/mec/meta_boxes/display_options.php:1006
558
+ #: app/features/mec/meta_boxes/display_options.php:1055
559
+ #: app/features/mec/meta_boxes/display_options.php:1066
560
+ #: app/features/mec/meta_boxes/display_options.php:1077
561
+ #: app/features/mec/meta_boxes/display_options.php:1142
562
+ #: app/features/mec/meta_boxes/display_options.php:1155
563
+ #: app/features/mec/meta_boxes/display_options.php:1168
564
+ #: app/features/mec/meta_boxes/display_options.php:1181
565
+ #: app/features/mec/meta_boxes/display_options.php:1194
566
+ #: app/features/mec/modules.php:53 app/features/mec/modules.php:86
567
+ #: app/features/mec/modules.php:103 app/features/mec/modules.php:138
568
+ #: app/features/mec/modules.php:154 app/features/mec/modules.php:312
569
  #: app/features/mec/notifications.php:50 app/features/mec/notifications.php:107
570
  #: app/features/mec/notifications.php:159
571
  #: app/features/mec/notifications.php:218
572
  #: app/features/mec/notifications.php:286
573
  #: app/features/mec/notifications.php:349
574
  #: app/features/mec/notifications.php:360
575
+ #: app/features/mec/notifications.php:422 app/features/mec/settings.php:66
576
+ #: app/features/mec/settings.php:85 app/features/mec/settings.php:112
577
+ #: app/features/mec/settings.php:147 app/features/mec/settings.php:168
578
+ #: app/features/mec/settings.php:188 app/features/mec/settings.php:265
579
+ #: app/features/mec/settings.php:339 app/features/mec/settings.php:356
580
+ #: app/features/mec/settings.php:373 app/features/mec/settings.php:392
581
+ #: app/features/mec/settings.php:406 app/features/mec/settings.php:434
582
+ #: app/features/mec/settings.php:521 app/features/mec/settings.php:659
583
+ #: app/features/mec/settings.php:676 app/features/mec/settings.php:781
584
+ #: app/features/mec/settings.php:794 app/features/mec/settings.php:810
585
+ #: app/features/mec/single.php:42 app/features/mec/single.php:58
586
+ #: app/features/mec/single.php:77 app/features/mec/single.php:94
587
+ #: app/features/mec/single.php:110 app/features/mec/single.php:124
588
+ #: app/features/mec/single.php:162 app/features/mec/styling.php:199
589
  #: app/features/mec/styling.php:216 app/features/mec/styling.php:229
590
+ #: app/features/organizers.php:272 app/skins/single.php:657
591
  #: app/skins/single/default.php:119 app/skins/single/default.php:331
592
  #: app/skins/single/m1.php:192 app/skins/single/m2.php:125
593
  #: app/skins/single/modern.php:133
594
  msgid "Read More"
595
  msgstr "Mehr lesen"
596
 
597
+ #: app/features/events.php:701
598
+ #, fuzzy
599
+ #| msgid "Repeat"
600
+ msgid "Repeating"
601
+ msgstr "Wiederholen"
602
+
603
+ #: app/features/events.php:710 app/features/fes/form.php:332
604
  msgid "Event Repeating"
605
  msgstr "Wiederholende Veranstaltung"
606
 
607
+ #: app/features/events.php:714 app/features/fes/form.php:336
608
  msgid "Repeats"
609
  msgstr "Wiederholend"
610
 
611
+ #: app/features/events.php:722 app/features/fes/form.php:338
612
  #: app/features/mec/dashboard.php:376 app/skins/full_calendar/tpl.php:109
613
  msgid "Daily"
614
  msgstr "Täglich"
615
 
616
+ #: app/features/events.php:729 app/features/fes/form.php:339
617
  msgid "Every Weekday"
618
  msgstr "An jedem Wochentag"
619
 
620
+ #: app/features/events.php:736 app/features/fes/form.php:340
621
  msgid "Every Weekend"
622
  msgstr "An jedem Wochenende"
623
 
624
+ #: app/features/events.php:743 app/features/fes/form.php:341
625
  msgid "Certain Weekdays"
626
  msgstr "Bestimmte Wochentage"
627
 
628
+ #: app/features/events.php:750 app/features/fes/form.php:342
629
  #: app/skins/full_calendar/tpl.php:108
630
  msgid "Weekly"
631
  msgstr "Wöchentlich"
632
 
633
+ #: app/features/events.php:757 app/features/fes/form.php:343
634
  #: app/features/mec/dashboard.php:377 app/skins/full_calendar/tpl.php:107
635
  msgid "Monthly"
636
  msgstr "Monatlich"
637
 
638
+ #: app/features/events.php:764 app/features/fes/form.php:344
639
  #: app/features/mec/dashboard.php:378 app/skins/full_calendar/tpl.php:106
640
  msgid "Yearly"
641
  msgstr "Jährlich"
642
 
643
+ #: app/features/events.php:771 app/features/fes/form.php:345
644
  msgid "Custom Days"
645
  msgstr "Benutzerdefinierte Tage"
646
 
647
+ #: app/features/events.php:778 app/features/fes/form.php:346
648
  #, fuzzy
649
  #| msgid "Advanced Method"
650
  msgid "Advanced"
651
  msgstr "Fortgeschrittene Methode"
652
 
653
+ #: app/features/events.php:783 app/features/fes/form.php:350
654
  msgid "Repeat Interval"
655
  msgstr "Wiederholungsintervall"
656
 
657
+ #: app/features/events.php:785 app/features/fes/form.php:351
658
  msgid "Repeat interval"
659
  msgstr "Wiederholungsintervall"
660
 
661
+ #: app/features/events.php:789 app/features/fes/form.php:354
662
  msgid "Week Days"
663
  msgstr "Wochentage"
664
 
665
+ #: app/features/events.php:791 app/features/fes/form.php:355
666
+ #: app/features/mec/meta_boxes/display_options.php:764
667
  #: app/libraries/main.php:407
668
  msgid "Monday"
669
  msgstr "Montag"
670
 
671
+ #: app/features/events.php:794 app/features/fes/form.php:356
672
+ #: app/features/mec/meta_boxes/display_options.php:765
673
  #: app/libraries/main.php:407
674
  msgid "Tuesday"
675
  msgstr "Dienstag"
676
 
677
+ #: app/features/events.php:797 app/features/fes/form.php:357
678
+ #: app/features/mec/meta_boxes/display_options.php:766
679
  #: app/libraries/main.php:407
680
  msgid "Wednesday"
681
  msgstr "Mittwoch"
682
 
683
+ #: app/features/events.php:800 app/features/fes/form.php:358
684
+ #: app/features/mec/meta_boxes/display_options.php:767
685
  #: app/libraries/main.php:407
686
  msgid "Thursday"
687
  msgstr "Donnerstag"
688
 
689
+ #: app/features/events.php:803 app/features/fes/form.php:359
690
+ #: app/features/mec/meta_boxes/display_options.php:768
691
  #: app/libraries/main.php:407
692
  msgid "Friday"
693
  msgstr "Freitag"
694
 
695
+ #: app/features/events.php:806 app/features/fes/form.php:360
696
+ #: app/features/mec/meta_boxes/display_options.php:769
697
  #: app/libraries/main.php:407
698
  msgid "Saturday"
699
  msgstr "Samstag"
700
 
701
+ #: app/features/events.php:809 app/features/fes/form.php:361
702
+ #: app/features/mec/meta_boxes/display_options.php:763
703
  #: app/libraries/main.php:407
704
  msgid "Sunday"
705
  msgstr "Sonntag"
706
 
707
+ #: app/features/events.php:816 app/features/events.php:1857
708
+ #: app/features/events.php:1885 app/features/events.php:2044
709
  #: app/features/fes/form.php:366 app/features/ix/import_f_calendar.php:42
710
  #: app/features/ix/import_g_calendar.php:51
711
  #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
712
  msgid "Start"
713
  msgstr "Start"
714
 
715
+ #: app/features/events.php:818 app/features/events.php:1861
716
+ #: app/features/events.php:1889 app/features/events.php:2048
717
  #: app/features/fes/form.php:367
718
  #, fuzzy
719
  #| msgid "Enabled"
720
  msgid "End"
721
  msgstr "Aktiviert"
722
 
723
+ #: app/features/events.php:820 app/features/events.php:1187
724
+ #: app/features/events.php:1298 app/features/events.php:1403
725
+ #: app/features/events.php:1641 app/features/events.php:1840
726
+ #: app/features/events.php:2033 app/features/events.php:2113
727
+ #: app/features/events.php:2246 app/features/fes/form.php:368
728
  #: app/features/fes/form.php:842
729
  msgid "Add"
730
  msgstr "Hinzufügen"
731
 
732
+ #: app/features/events.php:823
733
  #, fuzzy
734
  #| msgid "Custom Days"
735
  msgid "Custom Days Repeating"
736
  msgstr "Benutzerdefinierte Tage"
737
 
738
+ #: app/features/events.php:824
739
  msgid ""
740
  "Add certain days to event occurrence dates. If you have single day event, "
741
  "start and end date should be the same, If you have multiple day event the "
742
  "start and end dates must be commensurate with the initial date."
743
  msgstr ""
744
 
745
+ #: app/features/events.php:860 app/features/fes/form.php:394
746
  #, fuzzy
747
  #| msgid "First name"
748
  msgid "First"
749
  msgstr "Vorname"
750
 
751
+ #: app/features/events.php:902 app/features/fes/form.php:436
752
  #, fuzzy
753
  #| msgid "second"
754
  msgid "Second"
755
  msgstr "Sekunde"
756
 
757
+ #: app/features/events.php:944 app/features/fes/form.php:478
758
  #, fuzzy
759
  #| msgid "Third Party"
760
  msgid "Third"
761
  msgstr "Dritte Seite"
762
 
763
+ #: app/features/events.php:986 app/features/fes/form.php:520
764
  msgid "Fourth"
765
  msgstr ""
766
 
767
+ #: app/features/events.php:1028 app/features/fes/form.php:562
768
  #, fuzzy
769
  #| msgid "Last name"
770
  msgid "Last"
771
  msgstr "Nachname"
772
 
773
+ #: app/features/events.php:1075 app/features/fes/form.php:608
774
  msgid "Ends Repeat"
775
  msgstr "Wiederholung endet"
776
 
777
+ #: app/features/events.php:1087 app/features/fes/form.php:612
778
  msgid "Never"
779
  msgstr "Niemals"
780
 
781
+ #: app/features/events.php:1099 app/features/fes/form.php:617
782
  msgid "On"
783
  msgstr "Am"
784
 
785
+ #: app/features/events.php:1115 app/features/fes/form.php:624
786
  msgid "After"
787
  msgstr "Nach"
788
 
789
+ #: app/features/events.php:1119 app/features/events.php:1123
790
  #: app/features/fes/form.php:626 app/features/fes/form.php:629
791
  msgid "Occurrences times"
792
  msgstr " mal vorkommen"
793
 
794
+ #: app/features/events.php:1124 app/features/fes/form.php:630
795
  msgid ""
796
  "The event will finish after certain repeats. For example if you set it to "
797
  "10, the event will finish after 10 repeats."
799
  "Das Event ist nach einer bestimmten Anzahl von Wiederholungen zu Ende. Zum "
800
  "Beispiel: Bei Eingabe von 10 wird das Event nach 10 Wiederholungen beendet"
801
 
802
+ #: app/features/events.php:1149 app/features/events.php:3408
803
+ #: app/features/events.php:3450 app/features/fes/form.php:706
804
+ #: app/features/ix.php:2743 app/features/ix.php:2784
805
+ #: app/features/mec/settings.php:576 app/libraries/main.php:4877
806
+ #: app/widgets/single.php:103
807
+ msgid "Event Cost"
808
+ msgstr ""
809
+ "Bruttopreis des Events in Euro, 0 für kostenlos oder z.B. 39, ohne €-Zeichen"
810
+
811
+ #: app/features/events.php:1153 app/features/fes/form.php:709
812
+ #: app/libraries/main.php:4878 app/skins/single.php:582
813
+ #: app/skins/single/default.php:104 app/skins/single/default.php:316
814
+ #: app/skins/single/m1.php:49 app/skins/single/modern.php:199
815
+ msgid "Cost"
816
+ msgstr " Preis"
817
+
818
+ #: app/features/events.php:1180 app/features/events.php:1190
819
  msgid "Exclude certain days"
820
  msgstr "Ausschluss bestimmter Tage"
821
 
822
+ #: app/features/events.php:1185 app/features/events.php:2480
823
+ #: app/features/mec/booking.php:464 app/features/profile/profile.php:32
824
  #: app/libraries/main.php:2030 app/libraries/main.php:2640
825
  #: app/modules/booking/steps/tickets.php:22
826
+ #: app/modules/next-event/details.php:90 app/skins/single.php:637
827
  #: app/skins/single/default.php:68 app/skins/single/default.php:280
828
  #: app/skins/single/m1.php:16 app/skins/single/modern.php:166
829
  msgid "Date"
830
  msgstr "Datum"
831
 
832
+ #: app/features/events.php:1191
833
  msgid ""
834
  "Exclude certain days from event occurrence dates. Please note that you can "
835
  "exclude only single day occurrences and you cannot exclude one day from "
836
  "multiple day occurrences."
837
  msgstr ""
838
 
839
+ #: app/features/events.php:1245 app/libraries/render.php:455
840
  msgid "Day 1"
841
  msgstr ""
842
 
843
+ #: app/features/events.php:1267 app/features/mec/settings.php:630
844
+ #: app/skins/single.php:930
845
  msgid "Hourly Schedule"
846
  msgstr "Stundenplan"
847
 
848
+ #: app/features/events.php:1271
849
  msgid "Add Day"
850
  msgstr ""
851
 
852
+ #: app/features/events.php:1272
853
  msgid ""
854
  "Add new days for schedule. For example if your event is multiple days, you "
855
  "can add a different schedule for each day!"
856
  msgstr ""
857
 
858
+ #: app/features/events.php:1279
859
  #, php-format
860
  msgid "Day %s"
861
  msgstr ""
862
 
863
+ #: app/features/events.php:1283 app/features/events.php:1322
864
+ #: app/features/events.php:1357 app/features/events.php:1389
865
+ #: app/features/events.php:1418 app/features/events.php:2261
866
+ #: app/features/events.php:2308 app/features/events.php:3214
867
+ #: app/features/events.php:3408 app/features/events.php:3450
868
  #: app/features/fes/form.php:225 app/features/ix.php:2743
869
+ #: app/features/ix.php:2784 app/features/mec/booking.php:348
870
+ #: app/features/mec/booking.php:380 app/features/mec/styling.php:111
871
  msgid "Title"
872
  msgstr "Titel"
873
 
874
+ #: app/features/events.php:1292 app/features/events.php:1329
875
+ #: app/features/events.php:1362 app/features/events.php:1397
876
+ #: app/features/events.php:1423 app/features/events.php:1833
877
+ #: app/features/events.php:1871 app/features/events.php:1897
878
+ #: app/features/events.php:2027 app/features/events.php:2054
879
+ #: app/features/events.php:2153 app/features/events.php:2189
880
+ #: app/features/events.php:2296 app/features/events.php:2338
881
+ #: app/features/fes/list.php:78 app/features/mec/booking.php:291
882
+ #: app/features/mec/booking.php:320 app/features/mec/booking.php:371
883
+ #: app/features/mec/booking.php:403 app/libraries/main.php:2501
884
  #: app/libraries/main.php:2531 app/libraries/main.php:2560
885
  #: app/libraries/main.php:2590 app/libraries/main.php:2619
886
  #: app/libraries/main.php:2648 app/libraries/main.php:2677
891
  msgid "Remove"
892
  msgstr "Entfernen"
893
 
894
+ #: app/features/events.php:1299 app/features/events.php:1404
895
  msgid "Add new hourly schedule row"
896
  msgstr "Neue Stundenplan-Zeile hinzufügen"
897
 
898
+ #: app/features/events.php:1314 app/features/events.php:1351
899
+ #: app/features/events.php:1413
900
  msgid "From e.g. 8:15"
901
  msgstr "Von z.B. 08:15 Uhr"
902
 
903
+ #: app/features/events.php:1318 app/features/events.php:1354
904
+ #: app/features/events.php:1415
905
  msgid "To e.g. 8:45"
906
  msgstr "bis zum Beispiel 08:45 Uhr"
907
 
908
+ #: app/features/events.php:1326 app/features/events.php:1360
909
+ #: app/features/events.php:1421 app/features/events.php:1781
910
+ #: app/features/events.php:1986
911
  msgid "Description"
912
  msgstr "Beschreibung"
913
 
914
+ #: app/features/events.php:1332 app/features/events.php:1365
915
+ #: app/features/events.php:1426 app/features/fes/form.php:838
916
+ #: app/features/mec.php:343 app/features/mec/modules.php:52
917
+ #: app/features/mec/settings.php:624 app/features/speakers.php:60
918
+ #: app/libraries/main.php:559 app/libraries/main.php:4852
919
  #: app/modules/speakers/details.php:18
920
  msgid "Speakers"
921
  msgstr ""
922
 
923
+ #: app/features/events.php:1385 app/features/events.php:1393
924
  #, fuzzy
925
  #| msgid "Week Days"
926
  msgid "New Day"
927
  msgstr "Wochentage"
928
 
929
+ #: app/features/events.php:1457 app/features/fes/form.php:683
930
+ #: app/features/mec/settings.php:570
931
  msgid "Event Links"
932
  msgstr "Veranstaltungslinks"
933
 
934
+ #: app/features/events.php:1460 app/features/events.php:1466
935
+ #: app/features/fes/form.php:685 app/libraries/main.php:4875
936
  msgid "Event Link"
937
  msgstr "Veranstaltungslink"
938
 
939
+ #: app/features/events.php:1463 app/features/events.php:1479
940
  #: app/features/fes/form.php:686 app/features/fes/form.php:691
941
  msgid "eg. http://yoursite.com/your-event"
942
  msgstr "z.B. http://ihreseite.com/ihre-veranstaltung"
943
 
944
+ #: app/features/events.php:1467
945
  #, fuzzy
946
  #| msgid ""
947
  #| "If you fill it, it will be replaced instead of default event page link. "
955
  "dieser durch einen neuen link ersetzt werden. Vollständigen Link einfügen, "
956
  "einschließlich http(s)://"
957
 
958
+ #: app/features/events.php:1469
959
  msgid "URL Shortener"
960
  msgstr ""
961
 
962
+ #: app/features/events.php:1476 app/features/events.php:1489
963
+ #: app/features/fes/form.php:690 app/libraries/main.php:4876
964
+ #: app/skins/single.php:656 app/skins/single/default.php:118
965
  #: app/skins/single/default.php:330 app/skins/single/m1.php:191
966
  #: app/skins/single/m2.php:124 app/skins/single/modern.php:132
967
  #: app/widgets/single.php:107
968
  msgid "More Info"
969
  msgstr "Mehr Informationen"
970
 
971
+ #: app/features/events.php:1482 app/features/fes/form.php:692
972
  msgid "More Information"
973
  msgstr "z.B. Noch mehr Informationen "
974
 
975
+ #: app/features/events.php:1484 app/features/fes/form.php:694
976
  msgid "Current Window"
977
  msgstr "Aktuelles Fenster"
978
 
979
+ #: app/features/events.php:1485 app/features/fes/form.php:695
980
  msgid "New Window"
981
  msgstr "Neues Fenster"
982
 
983
+ #: app/features/events.php:1490 app/features/fes/form.php:697
984
  msgid ""
985
  "If you fill it, it will be shown in event details page as an optional link. "
986
  "Insert full link including http(s)://"
991
  "Text angezeigt werden soll: zum Beispiel: Noch mehr Informationen oder Hier "
992
  "zur Anmeldung (z.B. bei Webinaren sinnvoll) "
993
 
994
+ #: app/features/events.php:1564 app/features/events.php:1579
995
  msgid "Total booking limits"
996
  msgstr "Gesamt Verfügbare Plätze"
997
 
998
+ #: app/features/events.php:1576 app/features/events.php:1830
999
+ #: app/features/events.php:2024 app/modules/booking/default.php:85
1000
  #: app/modules/booking/steps/tickets.php:40
1001
  #: app/skins/available_spot/tpl.php:145
1002
  msgid "Unlimited"
1003
  msgstr "Unlimitiert"
1004
 
1005
+ #: app/features/events.php:1582
1006
  msgid ""
1007
  "If you want to set a limit to all tickets, uncheck this checkbox and put a "
1008
  "limitation number."
1009
  msgstr ""
1010
 
1011
+ #: app/features/events.php:1584
1012
  #, fuzzy
1013
  #| msgid "Choose your single event style."
1014
  msgid "Read About A Booking System"
1015
  msgstr "Wählen Sie Ihren Single Event Stil"
1016
 
1017
+ #: app/features/events.php:1592
1018
  msgid "100"
1019
  msgstr "z.B. 100"
1020
 
1021
+ #: app/features/events.php:1597
1022
  #, fuzzy
1023
  #| msgid "Total booking limits"
1024
  msgid "Total user booking limits"
1025
  msgstr "Gesamt Verfügbare Plätze"
1026
 
1027
+ #: app/features/events.php:1609 app/features/events.php:2102
1028
+ #: app/features/events.php:2234 app/features/events.php:2422
1029
  msgid "Inherit from global options"
1030
  msgstr "Aus den globalen Einstellungen übernehmen"
1031
 
1032
+ #: app/features/events.php:1612
1033
  msgid "12"
1034
  msgstr ""
1035
 
1036
+ #: app/features/events.php:1633 app/libraries/book.php:60
1037
+ #: app/libraries/main.php:4880 app/modules/booking/steps/tickets.php:40
1038
  msgid "Tickets"
1039
  msgstr "Tickets"
1040
 
1041
+ #: app/features/events.php:1636
1042
  msgid ""
1043
  "You're translating an event so MEC will use the original event for tickets "
1044
  "and booking. You can only translate the ticket name and description. Please "
1045
  "define exact tickets that you defined in the original event here."
1046
  msgstr ""
1047
 
1048
+ #: app/features/events.php:1655 app/features/events.php:1911
1049
  msgid "Ticket Name"
1050
  msgstr "Ticket Name"
1051
 
1052
+ #: app/features/events.php:1660 app/features/events.php:1915
1053
+ #: app/features/events.php:3408 app/features/events.php:3450
1054
  #: app/features/ix.php:2743 app/features/ix.php:2784
1055
  msgid "Start Time"
1056
  msgstr "Uhrzeit des Beginns"
1057
 
1058
+ #: app/features/events.php:1719 app/features/events.php:1945
1059
+ #: app/features/events.php:3408 app/features/events.php:3450
1060
  #: app/features/ix.php:2743 app/features/ix.php:2784
1061
  msgid "End Time"
1062
  msgstr "Uhrzeit Ende"
1063
 
1064
+ #: app/features/events.php:1787 app/features/events.php:1791
1065
+ #: app/features/events.php:1865 app/features/events.php:1892
1066
+ #: app/features/events.php:1991 app/features/events.php:1994
1067
+ #: app/features/events.php:2050 app/features/events.php:2267
1068
+ #: app/features/events.php:2271 app/features/events.php:2313
1069
+ #: app/features/events.php:2316 app/features/mec/booking.php:352
1070
+ #: app/features/mec/booking.php:355 app/features/mec/booking.php:384
1071
+ #: app/features/mec/booking.php:387
1072
  msgid "Price"
1073
  msgstr "Preis"
1074
 
1075
+ #: app/features/events.php:1792 app/features/events.php:1995
1076
  msgid "Insert 0 for free ticket. Only numbers please."
1077
  msgstr "Bitte 0 für kostenloses Ticket eingeben. Bitte nur Zahlen eintragen"
1078
 
1079
+ #: app/features/events.php:1801 app/features/events.php:1806
1080
+ #: app/features/events.php:2004 app/features/events.php:2007
1081
  msgid "Price Label"
1082
  msgstr "Preisschild"
1083
 
1084
+ #: app/features/events.php:1807 app/features/events.php:2008
1085
  msgid "For showing on website. e.g. $15"
1086
  msgstr "Um das auf der Webseite anzuzeigen zum Beispiel 15 €"
1087
 
1088
+ #: app/features/events.php:1817 app/features/events.php:2018
1089
  msgid "Available Tickets"
1090
  msgstr "Verfügbare Tickets: %s "
1091
 
1092
+ #: app/features/events.php:1838 app/features/events.php:2031
1093
  #, fuzzy
1094
  #| msgid "Price Label"
1095
  msgid "Price per Date"
1096
  msgstr "Preisschild"
1097
 
1098
+ #: app/features/events.php:1869 app/features/events.php:1895
1099
+ #: app/features/events.php:2052 app/features/labels.php:60
1100
+ #: app/features/mec/meta_boxes/display_options.php:833
1101
  #: app/features/mec/meta_boxes/search_form.php:66
1102
  #: app/features/mec/meta_boxes/search_form.php:128
1103
  #: app/features/mec/meta_boxes/search_form.php:190
1108
  #: app/features/mec/meta_boxes/search_form.php:488
1109
  #: app/features/mec/meta_boxes/search_form.php:549
1110
  #: app/features/mec/meta_boxes/search_form.php:610
1111
+ #: app/features/mec/settings.php:751 app/features/mec/single.php:222
1112
  #: app/libraries/skins.php:938
1113
  msgid "Label"
1114
  msgstr "Label"
1115
 
1116
+ #: app/features/events.php:2090
1117
  msgid "Fees"
1118
  msgstr "Gebühren"
1119
 
1120
+ #: app/features/events.php:2127 app/features/events.php:2165
1121
+ #: app/features/mec/booking.php:271 app/features/mec/booking.php:300
1122
  msgid "Fee Title"
1123
  msgstr "Gebühren Name"
1124
 
1125
+ #: app/features/events.php:2133 app/features/events.php:2137
1126
+ #: app/features/events.php:2170 app/features/events.php:2173
1127
+ #: app/features/mec/booking.php:275 app/features/mec/booking.php:278
1128
+ #: app/features/mec/booking.php:304 app/features/mec/booking.php:307
1129
  msgid "Amount"
1130
  msgstr "Betrag"
1131
 
1132
+ #: app/features/events.php:2138 app/features/events.php:2174
1133
+ #: app/features/mec/booking.php:279 app/features/mec/booking.php:308
1134
  msgid ""
1135
  "Fee amount, considered as fixed amount if you set the type to amount "
1136
  "otherwise considered as percentage"
1138
  "Gebührenbetrag, gilt als fester Betrag, wenn Sie die Art auf Betrag setzen, "
1139
  "sonst als Prozentsatz"
1140
 
1141
+ #: app/features/events.php:2147 app/features/events.php:2183
1142
+ #: app/features/mec/booking.php:286 app/features/mec/booking.php:315
1143
  msgid "Percent"
1144
  msgstr "Prozent"
1145
 
1146
+ #: app/features/events.php:2148 app/features/events.php:2184
1147
+ #: app/features/mec/booking.php:287 app/features/mec/booking.php:316
1148
  msgid "Amount (Per Ticket)"
1149
  msgstr "Betrag (pro Ticket)"
1150
 
1151
+ #: app/features/events.php:2149 app/features/events.php:2185
1152
+ #: app/features/mec/booking.php:288 app/features/mec/booking.php:317
1153
  msgid "Amount (Per Booking)"
1154
  msgstr "Betrag (pro Buchung)"
1155
 
1156
+ #: app/features/events.php:2222 app/features/mec/settings.php:648
1157
  msgid "Ticket Variations / Options"
1158
  msgstr ""
1159
 
1160
+ #: app/features/events.php:2272 app/features/events.php:2317
1161
+ #: app/features/mec/booking.php:356 app/features/mec/booking.php:388
1162
  #, fuzzy
1163
  #| msgid "Option"
1164
  msgid "Option Price"
1165
  msgstr "Option"
1166
 
1167
+ #: app/features/events.php:2282 app/features/events.php:2286
1168
+ #: app/features/events.php:2326 app/features/events.php:2329
1169
+ #: app/features/mec/booking.php:362 app/features/mec/booking.php:365
1170
+ #: app/features/mec/booking.php:394 app/features/mec/booking.php:397
1171
  #, fuzzy
1172
  #| msgid "Amount (Per Ticket)"
1173
  msgid "Maximum Per Ticket"
1174
  msgstr "Betrag (pro Ticket)"
1175
 
1176
+ #: app/features/events.php:2287 app/features/events.php:2330
1177
+ #: app/features/mec/booking.php:366 app/features/mec/booking.php:398
1178
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
1179
  msgstr ""
1180
 
1181
+ #: app/features/events.php:2476 app/features/mec/booking.php:460
1182
  #: app/libraries/main.php:2523
1183
  #, fuzzy
1184
  #| msgid "Name"
1185
  msgid "MEC Name"
1186
  msgstr "Name"
1187
 
1188
+ #: app/features/events.php:2477 app/features/mec/booking.php:461
1189
  #: app/libraries/main.php:2552
1190
  #, fuzzy
1191
  #| msgid "Email"
1192
  msgid "MEC Email"
1193
  msgstr "Email"
1194
 
1195
+ #: app/features/events.php:2478 app/features/mec/booking.php:462
1196
  #: app/libraries/main.php:2493
1197
  msgid "Text"
1198
  msgstr "Text"
1199
 
1200
+ #: app/features/events.php:2481 app/features/mec/booking.php:465
1201
  #: app/features/organizers.php:103 app/features/organizers.php:148
1202
  #: app/features/speakers.php:116 app/features/speakers.php:180
1203
  #: app/features/speakers.php:249 app/libraries/main.php:2669
1204
  msgid "Tel"
1205
  msgstr "Tel"
1206
 
1207
+ #: app/features/events.php:2482 app/features/mec/booking.php:466
1208
  #: app/libraries/main.php:2611
1209
  msgid "File"
1210
  msgstr ""
1211
 
1212
+ #: app/features/events.php:2483 app/features/mec/booking.php:467
1213
  #: app/libraries/main.php:2698
1214
  msgid "Textarea"
1215
  msgstr "Textbereich"
1216
 
1217
+ #: app/features/events.php:2484 app/features/mec/booking.php:468
1218
  #: app/libraries/main.php:2751
1219
  msgid "Checkboxes"
1220
  msgstr "Checkboxes"
1221
 
1222
+ #: app/features/events.php:2485 app/features/mec/booking.php:469
1223
  #: app/libraries/main.php:2795
1224
  msgid "Radio Buttons"
1225
  msgstr "Radio Buttons"
1226
 
1227
+ #: app/features/events.php:2486 app/features/mec/booking.php:470
1228
  #: app/features/mec/meta_boxes/search_form.php:34
1229
  #: app/features/mec/meta_boxes/search_form.php:41
1230
  #: app/features/mec/meta_boxes/search_form.php:48
1297
  msgid "Dropdown"
1298
  msgstr "Dropdown"
1299
 
1300
+ #: app/features/events.php:2487 app/features/mec/booking.php:471
1301
  #: app/libraries/main.php:2886
1302
  msgid "Agreement"
1303
  msgstr "Zustimmung"
1304
 
1305
+ #: app/features/events.php:2488 app/features/mec/booking.php:472
1306
  #: app/libraries/main.php:2727
1307
  msgid "Paragraph"
1308
  msgstr "Absatz"
1309
 
1310
+ #: app/features/events.php:3135 app/features/events.php:3152
1311
+ #: app/features/events.php:3169 app/features/events.php:3186
1312
  #, php-format
1313
  msgid "Show all %s"
1314
  msgstr "Zeige alle %s"
1315
 
1316
+ #: app/features/events.php:3135
1317
  msgid "labels"
1318
  msgstr "Labels + Eventstatus"
1319
 
1320
+ #: app/features/events.php:3152
1321
  msgid "locations"
1322
  msgstr "Orte"
1323
 
1324
+ #: app/features/events.php:3169
1325
  msgid "organizers"
1326
  msgstr "Veranstalter"
1327
 
1328
+ #: app/features/events.php:3216 app/features/events.php:3408
1329
+ #: app/features/events.php:3450 app/features/ix.php:2743
1330
  #: app/features/ix.php:2784 app/features/locations.php:58
1331
  #: app/features/locations.php:230 app/features/locations.php:287
1332
  #: app/features/locations.php:289 app/features/locations.php:298
1333
+ #: app/features/mec/meta_boxes/display_options.php:834
1334
  #: app/features/mec/meta_boxes/search_form.php:38
1335
  #: app/features/mec/meta_boxes/search_form.php:100
1336
  #: app/features/mec/meta_boxes/search_form.php:162
1341
  #: app/features/mec/meta_boxes/search_form.php:460
1342
  #: app/features/mec/meta_boxes/search_form.php:521
1343
  #: app/features/mec/meta_boxes/search_form.php:582
1344
+ #: app/features/mec/settings.php:725 app/features/mec/single.php:212
1345
+ #: app/libraries/main.php:2024 app/libraries/main.php:4849
1346
+ #: app/libraries/skins.php:834 app/skins/single.php:486
1347
+ #: app/skins/single.php:907 app/skins/single/default.php:154
1348
  #: app/skins/single/default.php:366 app/skins/single/m1.php:155
1349
  #: app/skins/single/m2.php:87 app/skins/single/modern.php:94
1350
  msgid "Location"
1351
  msgstr "Ort"
1352
 
1353
+ #: app/features/events.php:3217 app/features/events.php:3408
1354
+ #: app/features/events.php:3450 app/features/ix.php:2743
1355
+ #: app/features/ix.php:2784 app/features/mec/meta_boxes/display_options.php:835
1356
  #: app/features/mec/meta_boxes/search_form.php:45
1357
  #: app/features/mec/meta_boxes/search_form.php:107
1358
  #: app/features/mec/meta_boxes/search_form.php:169
1363
  #: app/features/mec/meta_boxes/search_form.php:467
1364
  #: app/features/mec/meta_boxes/search_form.php:528
1365
  #: app/features/mec/meta_boxes/search_form.php:589
1366
+ #: app/features/mec/settings.php:731 app/features/mec/single.php:208
1367
  #: app/features/organizers.php:58 app/features/organizers.php:204
1368
  #: app/features/organizers.php:260 app/features/organizers.php:262
1369
+ #: app/features/organizers.php:271 app/libraries/main.php:4851
1370
+ #: app/libraries/skins.php:860 app/skins/single.php:795
1371
  #: app/skins/single/default.php:195 app/skins/single/default.php:407
1372
  #: app/skins/single/m1.php:90 app/skins/single/m2.php:22
1373
  #: app/skins/single/modern.php:31
1374
  msgid "Organizer"
1375
  msgstr "Veranstalter"
1376
 
1377
+ #: app/features/events.php:3221
1378
  msgid "Repeat"
1379
  msgstr "Wiederholen"
1380
 
1381
+ #: app/features/events.php:3222
1382
  msgid "Author"
1383
  msgstr "Autor"
1384
 
1385
+ #: app/features/events.php:3343 app/features/events.php:3344
1386
  msgid "iCal Export"
1387
  msgstr "ical Export"
1388
 
1389
+ #: app/features/events.php:3346 app/features/events.php:3347
1390
  msgid "CSV Export"
1391
  msgstr "CSV Export"
1392
 
1393
+ #: app/features/events.php:3349 app/features/events.php:3350
1394
  msgid "MS Excel Export"
1395
  msgstr "MS Excel Export"
1396
 
1397
+ #: app/features/events.php:3352 app/features/events.php:3353
1398
  msgid "XML Export"
1399
  msgstr "XML Export"
1400
 
1401
+ #: app/features/events.php:3355 app/features/events.php:3356
1402
  msgid "JSON Export"
1403
  msgstr "JSON Export"
1404
 
1405
+ #: app/features/events.php:3358 app/features/events.php:3359
1406
+ #: app/features/events.php:3540
1407
  msgid "Duplicate"
1408
  msgstr "Kopie"
1409
 
1410
+ #: app/features/events.php:3408 app/features/events.php:3450
1411
  #: app/features/ix.php:2743 app/features/ix.php:2784
1412
  #: app/features/labels.php:177 app/features/locations.php:229
1413
  #: app/features/organizers.php:203 app/features/speakers.php:246
1414
  msgid "ID"
1415
  msgstr "ID"
1416
 
1417
+ #: app/features/events.php:3408 app/features/events.php:3450
1418
  #: app/features/ix.php:2743 app/features/ix.php:2784
1419
  msgid "Link"
1420
  msgstr "Link"
1421
 
1422
+ #: app/features/events.php:3408 app/features/events.php:3450
1423
  #, php-format
1424
  msgid "%s Tel"
1425
  msgstr "%s Tel"
1426
 
1427
+ #: app/features/events.php:3408 app/features/events.php:3450
1428
  #, php-format
1429
  msgid "%s Email"
1430
  msgstr "%s Email"
1517
  "dieser durch einen neuen link ersetzt werden. Vollständigen Link einfügen, "
1518
  "einschließlich http(s)://"
1519
 
1520
+ #: app/features/fes/form.php:723 app/features/mec/settings.php:582
1521
  msgid "Featured Image"
1522
  msgstr "Ausgewähltes Bild"
1523
 
1527
 
1528
  #: app/features/fes/form.php:770 app/features/labels.php:61
1529
  #: app/features/labels.php:221 app/features/mec.php:336
1530
+ #: app/features/mec/meta_boxes/filter.php:132 app/libraries/main.php:4846
1531
+ #: app/skins/single.php:685 app/skins/single/default.php:133
1532
  #: app/skins/single/default.php:345 app/skins/single/m1.php:64
1533
  #: app/skins/single/modern.php:214
1534
  msgid "Labels"
1535
  msgstr "Labels"
1536
 
1537
  #: app/features/fes/form.php:816 app/features/mec.php:334
1538
+ #: app/features/mec/meta_boxes/filter.php:149
1539
  msgid "Tags"
1540
  msgstr "Schlagworte"
1541
 
1756
  "Dies wird alle Ihre Eventdaten von der Webseite in Ihr gewünschtes Format "
1757
  "exportieren."
1758
 
1759
+ #: app/features/ix/export.php:25 app/features/mec/modules.php:178
1760
  msgid "iCal"
1761
  msgstr "iCal"
1762
 
1865
  msgid "Add to Google Calendar"
1866
  msgstr "Zum Google Kalender hinzufügen"
1867
 
1868
+ #: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:602
1869
+ #: app/features/mec/modules.php:392 app/features/mec/notifications.php:541
1870
+ #: app/features/mec/settings.php:894 app/features/mec/single.php:269
1871
  msgid "Checking ..."
1872
  msgstr "Überprüfung"
1873
 
1911
  msgid "ICS Feed"
1912
  msgstr ""
1913
 
1914
+ #: app/features/ix/import.php:46 app/features/mec/booking.php:91
1915
+ #: app/features/mec/booking.php:237 app/features/mec/booking.php:255
1916
+ #: app/features/mec/booking.php:332
1917
+ #: app/features/mec/meta_boxes/display_options.php:150
1918
+ #: app/features/mec/meta_boxes/display_options.php:315
1919
+ #: app/features/mec/modules.php:70 app/features/mec/modules.php:211
1920
+ #: app/features/mec/modules.php:228
1921
  #, php-format
1922
  msgid "%s is required to use this feature."
1923
  msgstr ""
1924
 
1925
  #: app/features/ix/import.php:46 app/features/ix/sync.php:22
1926
+ #: app/features/mec/booking.php:91 app/features/mec/booking.php:237
1927
+ #: app/features/mec/booking.php:255 app/features/mec/booking.php:332
1928
+ #: app/features/mec/meta_boxes/display_options.php:150
1929
+ #: app/features/mec/meta_boxes/display_options.php:315
1930
+ #: app/features/mec/meta_boxes/display_options.php:330
1931
+ #: app/features/mec/meta_boxes/display_options.php:457
1932
+ #: app/features/mec/meta_boxes/display_options.php:508
1933
+ #: app/features/mec/meta_boxes/display_options.php:615
1934
+ #: app/features/mec/meta_boxes/display_options.php:722
1935
+ #: app/features/mec/meta_boxes/display_options.php:795
1936
+ #: app/features/mec/meta_boxes/display_options.php:995
1937
+ #: app/features/mec/modules.php:70 app/features/mec/modules.php:211
1938
+ #: app/features/mec/modules.php:228
1939
  msgid "Pro version of Modern Events Calendar"
1940
  msgstr ""
1941
 
2117
  msgstr "Auto Synchronisation"
2118
 
2119
  #: app/features/ix/sync.php:22
2120
+ #: app/features/mec/meta_boxes/display_options.php:795
2121
  #, php-format
2122
  msgid "%s is required to use synchronization feature."
2123
  msgstr ""
2297
  msgstr "Wähle Label Farbe"
2298
 
2299
  #: app/features/labels.php:112 app/features/labels.php:139
2300
+ #: app/features/mec/meta_boxes/display_options.php:38
2301
+ #: app/features/mec/meta_boxes/display_options.php:177
2302
+ #: app/features/mec/meta_boxes/display_options.php:335
2303
+ #: app/features/mec/meta_boxes/display_options.php:513
2304
+ #: app/features/mec/meta_boxes/display_options.php:563
2305
+ #: app/features/mec/meta_boxes/display_options.php:727
2306
+ #: app/features/mec/meta_boxes/display_options.php:877
2307
+ #: app/features/mec/meta_boxes/display_options.php:934
2308
+ #: app/features/mec/meta_boxes/display_options.php:1026
2309
+ #: app/features/mec/meta_boxes/display_options.php:1112
2310
  msgid "Style"
2311
  msgstr "Style"
2312
 
2330
  msgstr "Ausgewähltes Bild"
2331
 
2332
  #: app/features/labels.php:118 app/features/labels.php:143
2333
+ #: app/libraries/main.php:5092 app/skins/agenda/render.php:41
2334
  #: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:45
2335
  #: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
2336
  #: app/skins/daily_view/render.php:52 app/skins/grid/render.php:53
2364
  msgstr "Event %s"
2365
 
2366
  #: app/features/locations.php:59 app/features/mec.php:337
2367
+ #: app/features/mec/dashboard.php:243 app/features/mec/meta_boxes/filter.php:98
2368
+ #: app/libraries/main.php:4848
2369
  msgid "Locations"
2370
  msgstr "Orte"
2371
 
2439
  "z.B. Karlsruhe Schlosshotel oder Frankfurt Allianz oder Dortmund "
2440
  "Westfalenhalle"
2441
 
2442
+ #: app/features/locations.php:310 app/features/mec/settings.php:612
2443
  #: app/widgets/single.php:115
2444
  msgid "Event Location"
2445
  msgstr "Veranstaltungsort"
2477
  msgid "Don't show map in single event page"
2478
  msgstr "Karte in Einzelansicht nicht anzeigen"
2479
 
2480
+ #: app/features/locations.php:356 app/libraries/main.php:4882
2481
  #, fuzzy
2482
  #| msgid "Locations"
2483
  msgid "Other Locations"
2541
  msgstr "Support"
2542
 
2543
  #: app/features/mec.php:338 app/features/mec/dashboard.php:250
2544
+ #: app/features/mec/meta_boxes/filter.php:115 app/features/organizers.php:59
2545
+ #: app/libraries/main.php:4850
2546
  msgid "Organizers"
2547
  msgstr "Veranstalter"
2548
 
2647
  "your host provider in this regard."
2648
  msgstr ""
2649
 
2650
+ #: app/features/mec/booking.php:70 app/features/mec/modules.php:23
2651
+ #: app/features/mec/settings.php:32 app/features/mec/single.php:15
2652
+ #: app/features/mec/support-page.php:34
2653
+ #, fuzzy
2654
+ #| msgid "Search %s"
2655
+ msgid "Search..."
2656
+ msgstr "Suche %s"
2657
+
2658
+ #: app/features/mec/booking.php:72 app/features/mec/booking.php:478
2659
+ #: app/features/mec/booking.php:558 app/features/mec/booking.php:567
2660
+ #: app/features/mec/booking.php:577 app/features/mec/booking.php:619
2661
+ #: app/features/mec/booking.php:633 app/features/mec/messages.php:11
2662
+ #: app/features/mec/messages.php:47 app/features/mec/messages.php:56
2663
+ #: app/features/mec/messages.php:90 app/features/mec/messages.php:99
2664
+ #: app/features/mec/modules.php:25 app/features/mec/modules.php:357
2665
+ #: app/features/mec/modules.php:367 app/features/mec/modules.php:409
2666
+ #: app/features/mec/modules.php:423 app/features/mec/notifications.php:10
2667
  #: app/features/mec/notifications.php:450
2668
  #: app/features/mec/notifications.php:462
2669
  #: app/features/mec/notifications.php:558
2670
+ #: app/features/mec/notifications.php:572 app/features/mec/settings.php:34
2671
+ #: app/features/mec/settings.php:843 app/features/mec/settings.php:853
2672
+ #: app/features/mec/settings.php:911 app/features/mec/settings.php:925
2673
+ #: app/features/mec/single.php:17 app/features/mec/single.php:234
2674
+ #: app/features/mec/single.php:244 app/features/mec/single.php:286
2675
+ #: app/features/mec/single.php:300 app/features/mec/styles.php:11
2676
  #: app/features/mec/styles.php:31 app/features/mec/styles.php:40
2677
  #: app/features/mec/styles.php:77 app/features/mec/styles.php:86
2678
  #: app/features/mec/styling.php:33 app/features/mec/styling.php:238
2681
  msgid "Save Changes"
2682
  msgstr "Änderungen sichern"
2683
 
2684
+ #: app/features/mec/booking.php:96
2685
  msgid "Enable booking module"
2686
  msgstr "Buchungsmodul aktivieren"
2687
 
2688
+ #: app/features/mec/booking.php:97
2689
  msgid ""
2690
  "After enabling and saving the settings, reloading the page will add 'payment "
2691
  "Gateways' to the settings and a new menu item on the Dashboard"
2692
  msgstr ""
2693
 
2694
+ #: app/features/mec/booking.php:102 app/features/mec/booking.php:107
2695
+ #: app/features/mec/modules.php:306 app/features/mec/modules.php:311
2696
  msgid "Date Format"
2697
  msgstr "Datumsformat"
2698
 
2699
+ #: app/features/mec/booking.php:108
2700
  msgid "Default is Y-m-d"
2701
  msgstr "Voreinstellung ist J-M-T"
2702
 
2703
+ #: app/features/mec/booking.php:115
2704
+ #: app/features/mec/meta_boxes/display_options.php:121
2705
+ #: app/features/mec/meta_boxes/display_options.php:296
2706
+ #: app/features/mec/meta_boxes/display_options.php:366
2707
+ #: app/features/mec/meta_boxes/display_options.php:825
2708
+ #: app/features/mec/meta_boxes/display_options.php:1092
2709
+ #: app/features/mec/meta_boxes/display_options.php:1200
2710
  msgid "Limit"
2711
  msgstr "Limit"
2712
 
2713
+ #: app/features/mec/booking.php:117
2714
  #, fuzzy
2715
  #| msgid "Default is 6"
2716
  msgid "Default is empty"
2717
  msgstr "Die Voreinstellung ist 6"
2718
 
2719
+ #: app/features/mec/booking.php:120
2720
  #, fuzzy
2721
  #| msgid "Booking Form"
2722
  msgid "Booking Limit"
2723
  msgstr "Buchungsformular"
2724
 
2725
+ #: app/features/mec/booking.php:121
2726
  msgid ""
2727
  "Total tickets that a user can book. It is useful if you're providing free "
2728
  "tickets. Leave it empty for unlimited booking."
2729
  msgstr ""
2730
 
2731
+ #: app/features/mec/booking.php:128
2732
  msgid "Maximum Dates"
2733
  msgstr "Maximale Anzahl von Daten"
2734
 
2735
+ #: app/features/mec/booking.php:130
2736
  msgid "Default is 6"
2737
  msgstr "Die Voreinstellung ist 6"
2738
 
2739
+ #: app/features/mec/booking.php:134 app/features/mec/booking.php:144
2740
  msgid "Thank You Page"
2741
  msgstr "Danke Seite"
2742
 
2743
+ #: app/features/mec/booking.php:145
2744
  msgid ""
2745
  "User redirects to this page after booking. Leave it empty if you want to "
2746
  "disable it."
2748
  "Benutzer werden auf diese Seite nach der Buchung weitergeleitet. Lassen Sie "
2749
  "es leer, wenn Sie es deaktivieren möchten."
2750
 
2751
+ #: app/features/mec/booking.php:156
2752
  msgid "Enable Express Attendees Form"
2753
  msgstr "Aktivieren Sie das Express-Teilnehmerformular"
2754
 
2755
+ #: app/features/mec/booking.php:160 app/modules/booking/steps/form.php:52
2756
  msgid "Attendees Form"
2757
  msgstr "Teilnahmeformular"
2758
 
2759
+ #: app/features/mec/booking.php:161
2760
  msgid ""
2761
  "Users are able to apply first attendee information for other attendees in "
2762
  "the booking form."
2764
  "Benutzer können erste Teilnehmerinformationen für andere Teilnehmer im "
2765
  "Buchungsformular anwenden."
2766
 
2767
+ #: app/features/mec/booking.php:174
2768
  #, fuzzy
2769
  #| msgid "Download Invoice"
2770
  msgid "Enable Invoice"
2771
  msgstr "Download Rechnung"
2772
 
2773
+ #: app/features/mec/booking.php:185
2774
+ #, fuzzy
2775
+ #| msgid "Enable booking notification"
2776
+ msgid "Enable Booking for Ongoing Events"
2777
+ msgstr "Buchungsbenachrichtigung aktivieren"
2778
+
2779
+ #: app/features/mec/booking.php:189
2780
  msgid "Email verification"
2781
  msgstr "Email-Verifizierung"
2782
 
2783
+ #: app/features/mec/booking.php:195
2784
  msgid "Auto verification for free bookings"
2785
  msgstr "Automatische Verifizierung für kostenlose Buchungen"
2786
 
2787
+ #: app/features/mec/booking.php:204
2788
  msgid "Auto verification for paid bookings"
2789
  msgstr "Automatische Verifizierung für kostenpflichtige Buchungen"
2790
 
2791
+ #: app/features/mec/booking.php:208 app/features/mec/notifications.php:147
2792
  #: app/libraries/main.php:573
2793
  msgid "Booking Confirmation"
2794
  msgstr "Buchungsbestätigung"
2795
 
2796
+ #: app/features/mec/booking.php:214
2797
  msgid "Auto confirmation for free bookings"
2798
  msgstr "Automatische Bestätigung für kostenlose Buchungen"
2799
 
2800
+ #: app/features/mec/booking.php:223
2801
  msgid "Auto confirmation for paid bookings"
2802
  msgstr "Automatische Bestätigung für kostenpflichtige Buchungen"
2803
 
2804
+ #: app/features/mec/booking.php:242
2805
  msgid "Enable coupons module"
2806
  msgstr "Gutscheinmodul aktivieren"
2807
 
2808
+ #: app/features/mec/booking.php:244
2809
  msgid ""
2810
  "After enabling and saving the settings,, you should reload the page to see a "
2811
  "new menu on the Dashboard > Booking"
2812
  msgstr ""
2813
 
2814
+ #: app/features/mec/booking.php:252 app/libraries/main.php:552
2815
  msgid "Taxes / Fees"
2816
  msgstr "Steuern/Gebühren"
2817
 
2818
+ #: app/features/mec/booking.php:260
2819
  msgid "Enable taxes / fees module"
2820
  msgstr "Modul für Gebühren/Steuern aktivieren"
2821
 
2822
+ #: app/features/mec/booking.php:265
2823
  msgid "Add Fee"
2824
  msgstr "Gebühr hinzufügen"
2825
 
2826
+ #: app/features/mec/booking.php:329 app/libraries/main.php:553
2827
  msgid "Ticket Variations & Options"
2828
  msgstr ""
2829
 
2830
+ #: app/features/mec/booking.php:337
2831
  #, fuzzy
2832
  #| msgid "Enable coupons module"
2833
  msgid "Enable ticket options module"
2834
  msgstr "Gutscheinmodul aktivieren"
2835
 
2836
+ #: app/features/mec/booking.php:342
2837
  msgid "Add Variation / Option"
2838
  msgstr ""
2839
 
2840
+ #: app/features/mec/booking.php:545
2841
  msgid "Enable Organizer Payment Module"
2842
  msgstr ""
2843
 
2844
+ #: app/features/mec/booking.php:549
2845
  #, fuzzy
2846
  #| msgid "Organizer Tel"
2847
  msgid "Organizer Payment"
2848
  msgstr "Organisator Telefon"
2849
 
2850
+ #: app/features/mec/booking.php:550
2851
  msgid ""
2852
  "By enabling this module, organizers are able to insert their own payment "
2853
  "credentials for enabled gateways per event and receive the payments directly!"
2854
  msgstr ""
2855
 
2856
+ #: app/features/mec/booking.php:597 app/features/mec/messages.php:74
2857
+ #: app/features/mec/modules.php:387 app/features/mec/notifications.php:536
2858
+ #: app/features/mec/settings.php:889 app/features/mec/single.php:264
2859
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:292
2860
  msgid "Saved"
2861
  msgstr "Gesichert"
2862
 
2863
+ #: app/features/mec/booking.php:598 app/features/mec/messages.php:75
2864
+ #: app/features/mec/modules.php:388 app/features/mec/notifications.php:537
2865
+ #: app/features/mec/settings.php:890 app/features/mec/single.php:265
2866
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:293
2867
  msgid "Settings Saved!"
2868
  msgstr ""
2869
 
2870
+ #: app/features/mec/booking.php:600 app/features/mec/booking.php:622
2871
+ #: app/features/mec/modules.php:390 app/features/mec/modules.php:412
2872
  #: app/features/mec/notifications.php:539
2873
+ #: app/features/mec/notifications.php:561 app/features/mec/settings.php:892
2874
+ #: app/features/mec/settings.php:914 app/features/mec/single.php:267
2875
+ #: app/features/mec/single.php:289 app/libraries/main.php:5091
2876
  msgid "Verified"
2877
  msgstr "Verifiziert"
2878
 
2879
+ #: app/features/mec/booking.php:624 app/features/mec/modules.php:414
2880
+ #: app/features/mec/notifications.php:563 app/features/mec/settings.php:916
2881
+ #: app/features/mec/single.php:291
2882
  msgid "Please Refresh Page"
2883
  msgstr "Bitte Seiten Refresh vornehmen"
2884
 
2976
  msgid "You cannot access this section."
2977
  msgstr ""
2978
 
2979
+ #: app/features/mec/dashboard.php:261 app/features/mec/settings.php:350
2980
  msgid "Upcoming Events"
2981
  msgstr "Bevorstehende Events"
2982
 
3070
  "wenn Ihre Website eine mehrsprachige Website ist, empfehlen wir Ihnen, die "
3071
  "Nachrichten / Phrasen aus Sprachdateien zu ändern."
3072
 
3073
+ #: app/features/mec/meta_boxes/display_options.php:22
3074
  msgid "Skin"
3075
  msgstr "Skin"
3076
 
3077
+ #: app/features/mec/meta_boxes/display_options.php:40
3078
+ #: app/features/mec/meta_boxes/display_options.php:179
3079
+ #: app/features/mec/meta_boxes/display_options.php:565
3080
+ #: app/features/mec/meta_boxes/display_options.php:879
3081
+ #: app/features/mec/settings.php:214 app/features/mec/settings.php:238
3082
+ #: app/features/mec/settings.php:247 app/features/mec/settings.php:288
3083
+ #: app/features/mec/settings.php:312 app/features/mec/settings.php:321
3084
  msgid "Classic"
3085
  msgstr "Klassisch"
3086
 
3087
+ #: app/features/mec/meta_boxes/display_options.php:41
3088
+ #: app/features/mec/meta_boxes/display_options.php:181
3089
+ #: app/features/mec/settings.php:239 app/features/mec/settings.php:249
3090
+ #: app/features/mec/settings.php:313 app/features/mec/settings.php:323
3091
  msgid "Minimal"
3092
  msgstr "Minimal"
3093
 
3094
+ #: app/features/mec/meta_boxes/display_options.php:42
3095
+ #: app/features/mec/meta_boxes/display_options.php:182
3096
+ #: app/features/mec/meta_boxes/display_options.php:515
3097
+ #: app/features/mec/meta_boxes/display_options.php:567
3098
+ #: app/features/mec/meta_boxes/display_options.php:729
3099
+ #: app/features/mec/meta_boxes/display_options.php:881
3100
+ #: app/features/mec/settings.php:216 app/features/mec/settings.php:229
3101
+ #: app/features/mec/settings.php:240 app/features/mec/settings.php:250
3102
+ #: app/features/mec/settings.php:290 app/features/mec/settings.php:303
3103
+ #: app/features/mec/settings.php:314 app/features/mec/settings.php:324
3104
  msgid "Modern"
3105
  msgstr "Modern"
3106
 
3107
+ #: app/features/mec/meta_boxes/display_options.php:43
3108
+ #: app/features/mec/settings.php:241 app/features/mec/settings.php:315
3109
  msgid "Standard"
3110
  msgstr "Standard"
3111
 
3112
+ #: app/features/mec/meta_boxes/display_options.php:44
3113
+ #: app/features/mec/settings.php:242 app/features/mec/settings.php:316
3114
  msgid "Accordion"
3115
  msgstr "Accordion"
3116
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3117
  #: app/features/mec/meta_boxes/display_options.php:50
3118
  #: app/features/mec/meta_boxes/display_options.php:191
3119
  #: app/features/mec/meta_boxes/display_options.php:343
 
 
 
3120
  #: app/features/mec/meta_boxes/display_options.php:622
3121
  #: app/features/mec/meta_boxes/display_options.php:655
 
 
3122
  #: app/features/mec/meta_boxes/display_options.php:802
3123
  #: app/features/mec/meta_boxes/display_options.php:1037
3124
  #: app/features/mec/meta_boxes/display_options.php:1124
3125
+ msgid "Today"
3126
+ msgstr "Heute"
3127
+
3128
+ #: app/features/mec/meta_boxes/display_options.php:51
3129
+ #: app/features/mec/meta_boxes/display_options.php:192
3130
+ #: app/features/mec/meta_boxes/display_options.php:344
3131
+ #: app/features/mec/meta_boxes/display_options.php:623
3132
+ #: app/features/mec/meta_boxes/display_options.php:656
3133
+ #: app/features/mec/meta_boxes/display_options.php:803
3134
+ #: app/features/mec/meta_boxes/display_options.php:1038
3135
+ #: app/features/mec/meta_boxes/display_options.php:1125
3136
+ msgid "Tomorrow"
3137
+ msgstr "Morgen"
3138
+
3139
+ #: app/features/mec/meta_boxes/display_options.php:52
3140
+ #: app/features/mec/meta_boxes/display_options.php:193
3141
+ #: app/features/mec/meta_boxes/display_options.php:345
3142
+ #: app/features/mec/meta_boxes/display_options.php:398
3143
+ #: app/features/mec/meta_boxes/display_options.php:575
3144
+ #: app/features/mec/meta_boxes/display_options.php:624
3145
+ #: app/features/mec/meta_boxes/display_options.php:657
3146
+ #: app/features/mec/meta_boxes/display_options.php:692
3147
+ #: app/features/mec/meta_boxes/display_options.php:738
3148
+ #: app/features/mec/meta_boxes/display_options.php:804
3149
+ #: app/features/mec/meta_boxes/display_options.php:1039
3150
+ #: app/features/mec/meta_boxes/display_options.php:1126
3151
+ msgid "Start of Current Month"
3152
+ msgstr "Mit Beginn des laufenden Monats"
3153
 
3154
  #: app/features/mec/meta_boxes/display_options.php:53
3155
  #: app/features/mec/meta_boxes/display_options.php:194
3156
  #: app/features/mec/meta_boxes/display_options.php:346
3157
  #: app/features/mec/meta_boxes/display_options.php:399
 
3158
  #: app/features/mec/meta_boxes/display_options.php:576
3159
  #: app/features/mec/meta_boxes/display_options.php:625
3160
+ #: app/features/mec/meta_boxes/display_options.php:658
3161
  #: app/features/mec/meta_boxes/display_options.php:693
3162
  #: app/features/mec/meta_boxes/display_options.php:739
3163
  #: app/features/mec/meta_boxes/display_options.php:805
3164
  #: app/features/mec/meta_boxes/display_options.php:1040
3165
  #: app/features/mec/meta_boxes/display_options.php:1127
3166
+ msgid "Start of Next Month"
3167
+ msgstr "Mit Beginn des kommenden Monats"
3168
+
3169
+ #: app/features/mec/meta_boxes/display_options.php:54
3170
+ #: app/features/mec/meta_boxes/display_options.php:195
3171
+ #: app/features/mec/meta_boxes/display_options.php:347
3172
+ #: app/features/mec/meta_boxes/display_options.php:400
3173
+ #: app/features/mec/meta_boxes/display_options.php:523
3174
+ #: app/features/mec/meta_boxes/display_options.php:577
3175
+ #: app/features/mec/meta_boxes/display_options.php:626
3176
+ #: app/features/mec/meta_boxes/display_options.php:659
3177
+ #: app/features/mec/meta_boxes/display_options.php:694
3178
+ #: app/features/mec/meta_boxes/display_options.php:740
3179
+ #: app/features/mec/meta_boxes/display_options.php:806
3180
+ #: app/features/mec/meta_boxes/display_options.php:1041
3181
+ #: app/features/mec/meta_boxes/display_options.php:1128
3182
+ msgid "On a certain date"
3183
+ msgstr "An einem bestimmten Tag"
3184
+
3185
+ #: app/features/mec/meta_boxes/display_options.php:57
3186
+ #: app/features/mec/meta_boxes/display_options.php:198
3187
+ #: app/features/mec/meta_boxes/display_options.php:350
3188
+ #: app/features/mec/meta_boxes/display_options.php:403
3189
+ #: app/features/mec/meta_boxes/display_options.php:526
3190
+ #: app/features/mec/meta_boxes/display_options.php:580
3191
+ #: app/features/mec/meta_boxes/display_options.php:629
3192
+ #: app/features/mec/meta_boxes/display_options.php:663
3193
+ #: app/features/mec/meta_boxes/display_options.php:697
3194
+ #: app/features/mec/meta_boxes/display_options.php:743
3195
+ #: app/features/mec/meta_boxes/display_options.php:809
3196
+ #: app/features/mec/meta_boxes/display_options.php:1044
3197
+ #: app/features/mec/meta_boxes/display_options.php:1131
3198
  #, php-format
3199
  msgid "eg. %s"
3200
  msgstr "z.B. %s"
3201
 
 
3202
  #: app/features/mec/meta_boxes/display_options.php:61
3203
+ #: app/features/mec/meta_boxes/display_options.php:65
3204
+ #: app/features/mec/meta_boxes/display_options.php:72
3205
+ #: app/features/mec/meta_boxes/display_options.php:78
3206
+ #: app/features/mec/meta_boxes/display_options.php:85
3207
+ #: app/features/mec/meta_boxes/display_options.php:91
3208
  #: app/features/mec/meta_boxes/display_options.php:98
3209
+ #: app/features/mec/meta_boxes/display_options.php:102
3210
+ #: app/features/mec/meta_boxes/display_options.php:109
3211
+ #: app/features/mec/meta_boxes/display_options.php:114
3212
  #: app/features/mec/meta_boxes/display_options.php:202
3213
+ #: app/features/mec/meta_boxes/display_options.php:206
3214
+ #: app/features/mec/meta_boxes/display_options.php:213
3215
+ #: app/features/mec/meta_boxes/display_options.php:218
3216
+ #: app/features/mec/meta_boxes/display_options.php:225
3217
+ #: app/features/mec/meta_boxes/display_options.php:230
3218
+ #: app/features/mec/meta_boxes/display_options.php:237
3219
+ #: app/features/mec/meta_boxes/display_options.php:243
3220
  #: app/features/mec/meta_boxes/display_options.php:250
3221
+ #: app/features/mec/meta_boxes/display_options.php:254
3222
+ #: app/features/mec/meta_boxes/display_options.php:261
3223
+ #: app/features/mec/meta_boxes/display_options.php:267
3224
  #: app/features/mec/meta_boxes/display_options.php:274
3225
+ #: app/features/mec/meta_boxes/display_options.php:278
3226
+ #: app/features/mec/meta_boxes/display_options.php:354
3227
+ #: app/features/mec/meta_boxes/display_options.php:359
3228
+ #: app/features/mec/meta_boxes/display_options.php:530
3229
+ #: app/features/mec/meta_boxes/display_options.php:535
3230
+ #: app/features/mec/meta_boxes/display_options.php:813
3231
+ #: app/features/mec/meta_boxes/display_options.php:818
3232
+ #: app/features/mec/meta_boxes/display_options.php:885
3233
+ #: app/features/mec/meta_boxes/display_options.php:891
3234
+ #: app/features/mec/meta_boxes/display_options.php:898
3235
+ #: app/features/mec/meta_boxes/display_options.php:903
3236
  #: app/features/mec/meta_boxes/display_options.php:910
3237
+ #: app/features/mec/meta_boxes/display_options.php:914
3238
  #: app/features/mec/meta_boxes/display_options.php:942
3239
+ #: app/features/mec/meta_boxes/display_options.php:946
3240
  #: app/features/mec/meta_boxes/display_options.php:953
3241
+ #: app/features/mec/meta_boxes/display_options.php:957
3242
+ #: app/features/mec/meta_boxes/display_options.php:964
3243
+ #: app/features/mec/meta_boxes/display_options.php:970
3244
+ #: app/features/mec/meta_boxes/display_options.php:1000
3245
+ #: app/features/mec/meta_boxes/display_options.php:1005
3246
+ #: app/features/mec/meta_boxes/display_options.php:1048
3247
+ #: app/features/mec/meta_boxes/display_options.php:1054
3248
  #: app/features/mec/meta_boxes/display_options.php:1061
3249
+ #: app/features/mec/meta_boxes/display_options.php:1065
3250
  #: app/features/mec/meta_boxes/display_options.php:1072
3251
+ #: app/features/mec/meta_boxes/display_options.php:1076
3252
+ #: app/features/mec/meta_boxes/display_options.php:1135
3253
+ #: app/features/mec/meta_boxes/display_options.php:1141
3254
+ #: app/features/mec/meta_boxes/display_options.php:1148
3255
+ #: app/features/mec/meta_boxes/display_options.php:1154
3256
+ #: app/features/mec/meta_boxes/display_options.php:1161
3257
+ #: app/features/mec/meta_boxes/display_options.php:1167
3258
+ #: app/features/mec/meta_boxes/display_options.php:1174
3259
+ #: app/features/mec/meta_boxes/display_options.php:1180
3260
+ #: app/features/mec/meta_boxes/display_options.php:1187
3261
+ #: app/features/mec/meta_boxes/display_options.php:1193
3262
  msgid "Date Formats"
3263
  msgstr "Datumsformate"
3264
 
3265
+ #: app/features/mec/meta_boxes/display_options.php:66
3266
+ #: app/features/mec/meta_boxes/display_options.php:255
3267
  msgid "Default value is \"M d Y\""
3268
  msgstr "Standard Wert ist \"M T J\""
3269
 
3270
+ #: app/features/mec/meta_boxes/display_options.php:79
3271
  msgid "Default values are d, M and l"
3272
  msgstr "Standard Werte sind T, M und J"
3273
 
3274
+ #: app/features/mec/meta_boxes/display_options.php:92
3275
+ #: app/features/mec/meta_boxes/display_options.php:244
3276
+ #: app/features/mec/meta_boxes/display_options.php:268
3277
+ #: app/features/mec/meta_boxes/display_options.php:1142
3278
+ #: app/features/mec/meta_boxes/display_options.php:1155
3279
+ #: app/features/mec/meta_boxes/display_options.php:1168
3280
+ #: app/features/mec/meta_boxes/display_options.php:1181
3281
+ #: app/features/mec/meta_boxes/display_options.php:1194
3282
  msgid "Default values are d, F and l"
3283
  msgstr ""
3284
  "Standardwerte sind Tag, Monat als ganzes Wort und Wochentag als ganzes Wort"
3285
 
3286
+ #: app/features/mec/meta_boxes/display_options.php:103
3287
  msgid "Default value is \"M d\""
3288
  msgstr "Standard Wert ist \"M T\""
3289
 
3290
+ #: app/features/mec/meta_boxes/display_options.php:115
3291
  #, fuzzy
3292
  #| msgid "Default values are d and F"
3293
  msgid "TDefault values are d and F"
3294
  msgstr "Die Standardwerte sind d and F"
3295
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3296
  #: app/features/mec/meta_boxes/display_options.php:122
3297
  #: app/features/mec/meta_boxes/display_options.php:297
3298
  #: app/features/mec/meta_boxes/display_options.php:367
3299
+ #: app/features/mec/meta_boxes/display_options.php:543
3300
+ #: app/features/mec/meta_boxes/display_options.php:585
3301
+ #: app/features/mec/meta_boxes/display_options.php:668
3302
+ #: app/features/mec/meta_boxes/display_options.php:702
3303
+ #: app/features/mec/meta_boxes/display_options.php:748
3304
+ #: app/features/mec/meta_boxes/display_options.php:1093
3305
+ #: app/features/mec/meta_boxes/display_options.php:1201
3306
+ msgid "eg. 6"
3307
+ msgstr "z.B. 6"
3308
+
3309
+ #: app/features/mec/meta_boxes/display_options.php:126
3310
+ #: app/features/mec/meta_boxes/display_options.php:301
3311
+ #: app/features/mec/meta_boxes/display_options.php:371
3312
+ #: app/features/mec/meta_boxes/display_options.php:862
3313
  msgid "Load More Button"
3314
  msgstr "Button \"Weitere Veranstaltungen Laden\""
3315
 
3316
+ #: app/features/mec/meta_boxes/display_options.php:136
3317
+ #: app/features/mec/meta_boxes/display_options.php:381
3318
  msgid "Show Month Divider"
3319
  msgstr "Zeige Monatsteilung"
3320
 
3321
+ #: app/features/mec/meta_boxes/display_options.php:146
3322
+ #: app/features/mec/meta_boxes/display_options.php:311
3323
  #, fuzzy
3324
  #| msgid "Show Google Maps on event page"
3325
  msgid "Show Map on top"
3326
  msgstr "Google Maps auf der Veranstaltungsseite anzeigen"
3327
 
3328
+ #: app/features/mec/meta_boxes/display_options.php:163
3329
  #, fuzzy
3330
  #| msgid "Show Month Divider"
3331
  msgid "Toggle for Month Divider"
3332
  msgstr "Zeige Monatsteilung"
3333
 
3334
+ #: app/features/mec/meta_boxes/display_options.php:180
3335
+ #: app/features/mec/meta_boxes/display_options.php:337
3336
+ #: app/features/mec/meta_boxes/display_options.php:419
3337
+ #: app/features/mec/meta_boxes/display_options.php:566
3338
+ #: app/features/mec/meta_boxes/display_options.php:730
3339
+ #: app/features/mec/meta_boxes/display_options.php:880
3340
+ #: app/features/mec/settings.php:215 app/features/mec/settings.php:230
3341
+ #: app/features/mec/settings.php:248 app/features/mec/settings.php:289
3342
+ #: app/features/mec/settings.php:304 app/features/mec/settings.php:322
3343
  msgid "Clean"
3344
  msgstr "Clean"
3345
 
3346
+ #: app/features/mec/meta_boxes/display_options.php:183
3347
+ #: app/features/mec/meta_boxes/display_options.php:421
3348
+ #: app/features/mec/meta_boxes/display_options.php:569
3349
+ #: app/features/mec/settings.php:218 app/features/mec/settings.php:251
3350
+ #: app/features/mec/settings.php:292 app/features/mec/settings.php:325
3351
  msgid "Simple"
3352
  msgstr "Schlicht"
3353
 
3354
+ #: app/features/mec/meta_boxes/display_options.php:184
3355
  msgid "Colorful"
3356
  msgstr "Farbenfroh"
3357
 
3358
+ #: app/features/mec/meta_boxes/display_options.php:185
3359
+ #: app/features/mec/meta_boxes/display_options.php:420
3360
+ #: app/features/mec/meta_boxes/display_options.php:568
3361
+ #: app/features/mec/settings.php:217 app/features/mec/settings.php:253
3362
+ #: app/features/mec/settings.php:291 app/features/mec/settings.php:327
3363
  msgid "Novel"
3364
  msgstr ""
3365
 
3366
+ #: app/features/mec/meta_boxes/display_options.php:207
3367
  #, fuzzy
3368
  #| msgid "Default value is \"d F Y\""
3369
  msgid "Default value is \"d F Y"
3370
  msgstr "Standardwert ist \"d (Tag) F Y (Jahr)\" "
3371
 
3372
+ #: app/features/mec/meta_boxes/display_options.php:219
3373
  msgid "Default values are d and F"
3374
  msgstr "Die Standardwerte sind d and F"
3375
 
3376
+ #: app/features/mec/meta_boxes/display_options.php:231
3377
  msgid "Default values are d and M"
3378
  msgstr "Standardwerte sind T und M"
3379
 
3380
+ #: app/features/mec/meta_boxes/display_options.php:279
3381
  msgid "Default value is \"d F Y\""
3382
  msgstr "Standardwert ist \"d (Tag) F Y (Jahr)\" "
3383
 
3384
+ #: app/features/mec/meta_boxes/display_options.php:285
3385
+ #: app/features/mec/meta_boxes/display_options.php:1083
3386
  msgid "Count in row"
3387
  msgstr "Zeilen zählen"
3388
 
3389
+ #: app/features/mec/meta_boxes/display_options.php:330
3390
+ #: app/features/mec/meta_boxes/display_options.php:508
3391
+ #: app/features/mec/meta_boxes/display_options.php:615
3392
+ #: app/features/mec/meta_boxes/display_options.php:722
3393
+ #: app/features/mec/meta_boxes/display_options.php:995
3394
  #, php-format
3395
  msgid "%s is required to use this skin."
3396
  msgstr ""
3397
 
3398
+ #: app/features/mec/meta_boxes/display_options.php:360
3399
+ #: app/features/mec/meta_boxes/display_options.php:536
3400
  msgid "Default values are l and F j"
3401
  msgstr "Die Standardwerte sind I und F j"
3402
 
3403
+ #: app/features/mec/meta_boxes/display_options.php:407
3404
  msgid "Default View"
3405
  msgstr "Standardansicht"
3406
 
3407
+ #: app/features/mec/meta_boxes/display_options.php:409
3408
+ #: app/features/mec/meta_boxes/display_options.php:430
3409
  #: app/libraries/main.php:329 app/libraries/main.php:1570
3410
  #: app/libraries/main.php:1595
3411
  msgid "List View"
3412
  msgstr "Listenansicht"
3413
 
3414
+ #: app/features/mec/meta_boxes/display_options.php:410
3415
+ #: app/features/mec/meta_boxes/display_options.php:440
3416
  #: app/libraries/main.php:333 app/libraries/main.php:1564
3417
  #: app/libraries/main.php:1589
3418
  msgid "Yearly View"
3419
  msgstr "Jahresansicht"
3420
 
3421
+ #: app/features/mec/meta_boxes/display_options.php:411
3422
+ #: app/features/mec/meta_boxes/display_options.php:462
3423
  msgid "Monthly/Calendar View"
3424
  msgstr "Monatliche Kalenderansicht"
3425
 
3426
+ #: app/features/mec/meta_boxes/display_options.php:412
3427
+ #: app/features/mec/meta_boxes/display_options.php:472
3428
  #: app/libraries/main.php:336 app/libraries/main.php:1566
3429
  #: app/libraries/main.php:1591
3430
  msgid "Weekly View"
3431
  msgstr "Wochenansicht"
3432
 
3433
+ #: app/features/mec/meta_boxes/display_options.php:413
3434
+ #: app/features/mec/meta_boxes/display_options.php:482
3435
  #: app/libraries/main.php:335 app/libraries/main.php:1567
3436
  #: app/libraries/main.php:1592
3437
  msgid "Daily View"
3438
  msgstr "Tagesansicht"
3439
 
3440
+ #: app/features/mec/meta_boxes/display_options.php:417
3441
  #, fuzzy
3442
  #| msgid "Modern Style"
3443
  msgid "Monthly Style"
3444
  msgstr "Moderner Stil"
3445
 
3446
+ #: app/features/mec/meta_boxes/display_options.php:457
3447
  #, php-format
3448
  msgid "%s is required to use <b>Yearly View</b> skin."
3449
  msgstr ""
3450
 
3451
+ #: app/features/mec/meta_boxes/display_options.php:490
3452
  msgid "The price shows only in List View."
3453
  msgstr ""
3454
 
3455
+ #: app/features/mec/meta_boxes/display_options.php:493
3456
  msgid "Display Event Price"
3457
  msgstr ""
3458
 
3459
+ #: app/features/mec/meta_boxes/display_options.php:521
3460
  msgid "Start of Current Year"
3461
  msgstr "Mit Beginn des laufenden Jahres"
3462
 
3463
+ #: app/features/mec/meta_boxes/display_options.php:522
3464
  msgid "Start of Next Year"
3465
  msgstr "Start des nächsten Jahres"
3466
 
3467
+ #: app/features/mec/meta_boxes/display_options.php:542
3468
+ #: app/features/mec/meta_boxes/display_options.php:584
3469
+ #: app/features/mec/meta_boxes/display_options.php:667
3470
+ #: app/features/mec/meta_boxes/display_options.php:701
3471
+ #: app/features/mec/meta_boxes/display_options.php:747
3472
  msgid "Events per day"
3473
  msgstr "Veranstaltungen pro Tag"
3474
 
3475
+ #: app/features/mec/meta_boxes/display_options.php:547
3476
+ #: app/features/mec/meta_boxes/display_options.php:589
3477
+ #: app/features/mec/meta_boxes/display_options.php:672
3478
+ #: app/features/mec/meta_boxes/display_options.php:706
3479
+ #: app/features/mec/meta_boxes/display_options.php:776
3480
  msgid "Next/Previous Buttons"
3481
  msgstr "Schaltfläche \"Nächste/Letzte\""
3482
 
3483
+ #: app/features/mec/meta_boxes/display_options.php:555
3484
  msgid "For showing next/previous year navigation."
3485
  msgstr "Navigation anzeigen zum nächsten/letzten Jahr"
3486
 
3487
+ #: app/features/mec/meta_boxes/display_options.php:599
3488
  #, fuzzy
3489
  #| msgid "Text"
3490
  msgid "Uppercase Text"
3491
  msgstr "Text"
3492
 
3493
+ #: app/features/mec/meta_boxes/display_options.php:607
3494
+ #: app/features/mec/meta_boxes/display_options.php:680
3495
+ #: app/features/mec/meta_boxes/display_options.php:714
3496
+ #: app/features/mec/meta_boxes/display_options.php:784
3497
  msgid "For showing next/previous month navigation."
3498
  msgstr "Für die Navigation zum nächsten/letzten Monat"
3499
 
3500
+ #: app/features/mec/meta_boxes/display_options.php:633
3501
  msgid "Maximum events"
3502
  msgstr "Veranstaltungsmaximum"
3503
 
3504
+ #: app/features/mec/meta_boxes/display_options.php:634
3505
  msgid "eg. 200"
3506
  msgstr "z.B. 200"
3507
 
3508
+ #: app/features/mec/meta_boxes/display_options.php:638
3509
  msgid "Geolocation"
3510
  msgstr ""
3511
 
3512
+ #: app/features/mec/meta_boxes/display_options.php:646
3513
  msgid "The geolocation feature works only in secure (https) websites."
3514
  msgstr ""
3515
 
3516
+ #: app/features/mec/meta_boxes/display_options.php:690
3517
+ #: app/features/mec/meta_boxes/display_options.php:736
3518
  msgid "Current Week"
3519
  msgstr "Aktuelle Woche"
3520
 
3521
+ #: app/features/mec/meta_boxes/display_options.php:691
3522
+ #: app/features/mec/meta_boxes/display_options.php:737
3523
  msgid "Next Week"
3524
  msgstr "Nächste Woche"
3525
 
3526
+ #: app/features/mec/meta_boxes/display_options.php:752
3527
  msgid "Number of Days"
3528
  msgstr ""
3529
 
3530
+ #: app/features/mec/meta_boxes/display_options.php:760
3531
  #, fuzzy
3532
  #| msgid "Start"
3533
  msgid "Week Start"
3534
  msgstr "Start"
3535
 
3536
+ #: app/features/mec/meta_boxes/display_options.php:762
3537
  #, fuzzy
3538
  #| msgid "Inherit from global options"
3539
  msgid "Inherite from WordPress options"
3540
  msgstr "Aus den globalen Einstellungen übernehmen"
3541
 
3542
+ #: app/features/mec/meta_boxes/display_options.php:819
3543
+ #: app/features/mec/meta_boxes/display_options.php:1006
3544
  msgid "Default values are j and F"
3545
  msgstr "Standardwerte sind j und F"
3546
 
3547
+ #: app/features/mec/meta_boxes/display_options.php:826
3548
  msgid "eg. 24"
3549
  msgstr "z.B. 24"
3550
 
3551
+ #: app/features/mec/meta_boxes/display_options.php:829
3552
  msgid "Filter By"
3553
  msgstr "Filtern nach"
3554
 
3555
+ #: app/features/mec/meta_boxes/display_options.php:831
3556
  msgid "None"
3557
  msgstr ""
3558
 
3559
+ #: app/features/mec/meta_boxes/display_options.php:840
3560
  msgid "Fit to row"
3561
  msgstr ""
3562
 
3563
+ #: app/features/mec/meta_boxes/display_options.php:841
3564
  msgid ""
3565
  "Items are arranged into rows. Rows progress vertically. Similar to what you "
3566
  "would expect from a layout that uses CSS floats."
3567
  msgstr ""
3568
 
3569
+ #: app/features/mec/meta_boxes/display_options.php:851
3570
  msgid "Convert Masonry to Grid"
3571
  msgstr ""
3572
 
3573
+ #: app/features/mec/meta_boxes/display_options.php:852
3574
  msgid "For using this option, your events should come with image"
3575
  msgstr ""
3576
 
3577
+ #: app/features/mec/meta_boxes/display_options.php:892
3578
  msgid "Default values are d, M and Y"
3579
  msgstr "Standardwerte sind T, M und J"
3580
 
3581
+ #: app/features/mec/meta_boxes/display_options.php:904
3582
  msgid "Default values are \"F d\" and l"
3583
  msgstr ""
3584
  "Standardwerte sind Monat als ganzes Wort, Tag des Monates mit führender Null "
3585
  "und ausgeschriebener Wochentag"
3586
 
3587
+ #: app/features/mec/meta_boxes/display_options.php:915
3588
  msgid "Default value is \"l, F d Y\""
3589
  msgstr ""
3590
  "Standardwerte sind ausgeschriebener Wochentag, Monat als ganzes Wort, Tag "
3591
  "des Monates mit führender 0, Jahr"
3592
 
3593
+ #: app/features/mec/meta_boxes/display_options.php:936
3594
  msgid "Style 1"
3595
  msgstr "Stil 1"
3596
 
3597
+ #: app/features/mec/meta_boxes/display_options.php:937
3598
  msgid "Style 2"
3599
  msgstr "Stil 2"
3600
 
3601
+ #: app/features/mec/meta_boxes/display_options.php:938
3602
  msgid "Style 3"
3603
  msgstr "Stil 3"
3604
 
3605
+ #: app/features/mec/meta_boxes/display_options.php:947
3606
+ #: app/features/mec/meta_boxes/display_options.php:958
3607
  msgid "Default value is \"j F Y\""
3608
  msgstr "Standardwert ist \"j F Y\""
3609
 
3610
+ #: app/features/mec/meta_boxes/display_options.php:971
3611
  msgid "Default values are j, F and Y"
3612
  msgstr ""
3613
  "Standardwerte sind j ( Tag des Monats ohne führende Nullen), F und Y (Jahr)"
3614
 
3615
+ #: app/features/mec/meta_boxes/display_options.php:979
3616
+ #: app/features/mec/meta_boxes/display_options.php:1014
3617
  msgid " -- Next Upcoming Event -- "
3618
  msgstr "-- Nächste Veranstaltung--"
3619
 
3620
+ #: app/features/mec/meta_boxes/display_options.php:986
3621
  msgid "Background Color"
3622
  msgstr "Hintergrund Farbe"
3623
 
3624
+ #: app/features/mec/meta_boxes/display_options.php:1028
3625
+ #: app/features/mec/meta_boxes/display_options.php:1114
3626
  msgid "Type 1"
3627
  msgstr "Typ 1"
3628
 
3629
+ #: app/features/mec/meta_boxes/display_options.php:1029
3630
+ #: app/features/mec/meta_boxes/display_options.php:1115
3631
  msgid "Type 2"
3632
  msgstr "Typ 2"
3633
 
3634
+ #: app/features/mec/meta_boxes/display_options.php:1030
3635
+ #: app/features/mec/meta_boxes/display_options.php:1116
3636
  msgid "Type 3"
3637
  msgstr "Type 3"
3638
 
3639
+ #: app/features/mec/meta_boxes/display_options.php:1031
3640
+ #: app/features/mec/meta_boxes/display_options.php:1117
3641
  msgid "Type 4"
3642
  msgstr "Typ 4"
3643
 
3644
+ #: app/features/mec/meta_boxes/display_options.php:1055
3645
  msgid "Default values are d, F and Y"
3646
  msgstr "Standardwert ist d (Tag) F und Y (Jahr)"
3647
 
3648
+ #: app/features/mec/meta_boxes/display_options.php:1066
3649
+ #: app/features/mec/meta_boxes/display_options.php:1077
3650
  msgid "Default value is \"M d, Y\""
3651
  msgstr "Standardwert ist \"M T, J\""
3652
 
3653
+ #: app/features/mec/meta_boxes/display_options.php:1096
3654
+ #: app/features/mec/meta_boxes/display_options.php:1204
3655
  msgid "Auto Play Time"
3656
  msgstr "Auto Play Time"
3657
 
3658
+ #: app/features/mec/meta_boxes/display_options.php:1097
3659
+ #: app/features/mec/meta_boxes/display_options.php:1205
3660
  msgid "eg. 3000 default is 3 second"
3661
  msgstr "z.B. Voreinstellung 3000 sind 3 Sekunden"
3662
 
3663
+ #: app/features/mec/meta_boxes/display_options.php:1101
3664
  #, fuzzy
3665
  #| msgid "Archive Page Skin"
3666
  msgid "Archive Link"
3667
  msgstr "Skin Seite Archiv"
3668
 
3669
+ #: app/features/mec/meta_boxes/display_options.php:1105
3670
  #, fuzzy
3671
  #| msgid "Text"
3672
  msgid "Head Text"
3673
  msgstr "Text"
3674
 
3675
+ #: app/features/mec/meta_boxes/display_options.php:1118
3676
  msgid "Type 5"
3677
  msgstr "Typ 5"
3678
 
3680
  msgid "No filter options applicable for this skin."
3681
  msgstr "Keine Filteroptionen verfügbar für dieses Skin"
3682
 
3683
+ #: app/features/mec/meta_boxes/filter.php:82
3684
  msgid "Choose your desired categories for filtering the events."
3685
  msgstr "Wählen Sie die gewünschten Kategorien zum Filtern aus"
3686
 
3687
+ #: app/features/mec/meta_boxes/filter.php:99
3688
  msgid "Choose your desired locations for filtering the events."
3689
  msgstr "Wählen Sie die gewünschten Orte zum Filtern aus"
3690
 
3691
+ #: app/features/mec/meta_boxes/filter.php:116
3692
  msgid "Choose your desired organizers for filtering the events."
3693
  msgstr "Wählen Sie die gewünschten Veranstalter zum Filtern aus"
3694
 
3695
+ #: app/features/mec/meta_boxes/filter.php:133
3696
  msgid "Choose your desired labels for filtering the events."
3697
  msgstr "Wählen Sie den gewünschten Status zum Filtern aus"
3698
 
3699
+ #: app/features/mec/meta_boxes/filter.php:150
3700
  msgid "Insert your desired tags comma separated."
3701
  msgstr "Geben Sie die gewünschten Tags (Schlagworte) durch Komma getrennt ein"
3702
 
3703
+ #: app/features/mec/meta_boxes/filter.php:155
3704
  msgid "Authors"
3705
  msgstr "Autoren"
3706
 
3707
+ #: app/features/mec/meta_boxes/filter.php:156
3708
  msgid "Choose your desired authors for filtering the events."
3709
  msgstr "Wählen Sie die gewünschten Autoren zum Filtern aus"
3710
 
3711
+ #: app/features/mec/meta_boxes/filter.php:177
3712
  msgid "Dates"
3713
  msgstr "Daten"
3714
 
3715
+ #: app/features/mec/meta_boxes/filter.php:181
3716
  msgid "Include Expired Events"
3717
  msgstr "Inklusive abgelaufene Events"
3718
 
3719
+ #: app/features/mec/meta_boxes/filter.php:188
3720
  msgid ""
3721
  "You have ability to include past/expired events if you like so it will show "
3722
  "upcoming and expired events based on start date that you selected."
3725
  "wenn Sie es mögen, so werden die kommenden und abgelaufenen Events auf der "
3726
  "Grundlage des Starttermins angezeigt, das Sie ausgewählt haben."
3727
 
3728
+ #: app/features/mec/meta_boxes/filter.php:195
3729
  msgid "Show Only Expired Events"
3730
  msgstr "Nur abgelaufene Events anzeigen"
3731
 
3732
+ #: app/features/mec/meta_boxes/filter.php:202
3733
  msgid "It shows only expired/past events."
3734
  msgstr "Zeigt nur abgelaufene / vergangene Events."
3735
 
3736
+ #: app/features/mec/meta_boxes/filter.php:210
3737
  msgid "Show Only Ongoing Events"
3738
  msgstr "Zeigt nur laufende Events"
3739
 
3740
+ #: app/features/mec/meta_boxes/filter.php:217
3741
  msgid "It shows only ongoing events on List and Grid skins."
3742
  msgstr "Zeigt nur laufende Events auf Listen und Raster/Grid Skins"
3743
 
3824
  #: app/features/mec/meta_boxes/search_form.php:612
3825
  #: app/features/mec/meta_boxes/search_form.php:619
3826
  #: app/features/mec/meta_boxes/search_form.php:626
3827
+ #: app/features/mec/modules.php:125 app/features/mec/settings.php:97
3828
+ #: app/features/mec/settings.php:368
3829
  msgid "Disabled"
3830
  msgstr "Deaktiviert"
3831
 
3839
  #: app/features/mec/meta_boxes/search_form.php:474
3840
  #: app/features/mec/meta_boxes/search_form.php:535
3841
  #: app/features/mec/meta_boxes/search_form.php:596
3842
+ #: app/features/mec/settings.php:738 app/features/mec/single.php:217
3843
  #: app/features/speakers.php:59 app/features/speakers.php:247
3844
+ #: app/libraries/main.php:4853 app/libraries/skins.php:886
3845
  msgid "Speaker"
3846
  msgstr ""
3847
 
3855
  #: app/features/mec/meta_boxes/search_form.php:481
3856
  #: app/features/mec/meta_boxes/search_form.php:542
3857
  #: app/features/mec/meta_boxes/search_form.php:603
3858
+ #: app/features/mec/settings.php:745 app/features/mec/single.php:226
3859
  #: app/libraries/skins.php:912
3860
  #, fuzzy
3861
  #| msgid "Tags"
3909
  msgid "No Search Options"
3910
  msgstr "Keine Suchoptionen"
3911
 
3912
+ #: app/features/mec/modules.php:43
3913
  #, fuzzy
3914
  #| msgid "No Search Options"
3915
  msgid "Speakers Options"
3916
  msgstr "Keine Suchoptionen"
3917
 
3918
+ #: app/features/mec/modules.php:49
3919
  #, fuzzy
3920
  #| msgid "Enable taxes / fees module"
3921
  msgid "Enable speakers feature"
3922
  msgstr "Modul für Gebühren/Steuern aktivieren"
3923
 
3924
+ #: app/features/mec/modules.php:53
3925
  msgid ""
3926
  "Enable this option to have speaker in Hourly Schedule in Single. Refresh "
3927
  "after enabling it to see the Speakers menu under MEC dashboard."
3928
  msgstr ""
3929
 
3930
+ #: app/features/mec/modules.php:58
3931
  msgid ""
3932
  "After enabling and saving the settings, you should reload the page to see a "
3933
  "new menu on the Dashboard > MEC"
3934
  msgstr ""
3935
 
3936
+ #: app/features/mec/modules.php:75
3937
  msgid "Show Google Maps on event page"
3938
  msgstr "Google Maps auf der Veranstaltungsseite anzeigen"
3939
 
3940
+ #: app/features/mec/modules.php:80 app/features/mec/modules.php:238
3941
+ #: app/features/mec/settings.php:775 app/features/mec/settings.php:780
3942
  msgid "API Key"
3943
  msgstr "API Schlüssel"
3944
 
3945
+ #: app/features/mec/modules.php:86 app/features/mec/settings.php:781
3946
+ #: app/features/mec/settings.php:794
3947
  msgid "Required!"
3948
  msgstr "Erforderlich (Pflichtfeld)"
3949
 
3950
+ #: app/features/mec/modules.php:93 app/features/mec/modules.php:102
3951
  msgid "Zoom level"
3952
  msgstr "Zoom"
3953
 
3954
+ #: app/features/mec/modules.php:103
3955
  msgid ""
3956
  "For Google Maps module in single event page. In Google Maps skin, it will "
3957
  "caculate the zoom level automatically based on event boundaries."
3960
  "es die Zoom-Ebene automatisch kalkulieren, basierend auf den Eventort "
3961
  "Angrenzungen"
3962
 
3963
+ #: app/features/mec/modules.php:110
3964
  msgid "Google Maps Style"
3965
  msgstr "Google Maps Stil"
3966
 
3967
+ #: app/features/mec/modules.php:114 app/features/mec/single.php:88
3968
  msgid "Default"
3969
  msgstr "Standardeinstellung"
3970
 
3971
+ #: app/features/mec/modules.php:122
3972
  msgid "Direction on single event"
3973
  msgstr "Richtung auf einzelne Veranstaltung"
3974
 
3975
+ #: app/features/mec/modules.php:126
3976
  msgid "Simple Method"
3977
  msgstr "Einfache Methode"
3978
 
3979
+ #: app/features/mec/modules.php:127
3980
  msgid "Advanced Method"
3981
  msgstr "Fortgeschrittene Methode"
3982
 
3983
+ #: app/features/mec/modules.php:132 app/features/mec/modules.php:137
3984
  msgid "Lightbox Date Format"
3985
  msgstr "Leuchtkasten Datumsformat"
3986
 
3987
+ #: app/features/mec/modules.php:138
3988
  msgid "Default value is M d Y"
3989
  msgstr "Standardwert ist M T J"
3990
 
3991
+ #: app/features/mec/modules.php:145 app/features/mec/modules.php:153
3992
  msgid "Google Maps API"
3993
  msgstr "Google Maps API"
3994
 
3995
+ #: app/features/mec/modules.php:149
3996
  msgid "Don't load Google Maps API library"
3997
  msgstr "Google Maps API Bibliothek nicht laden"
3998
 
3999
+ #: app/features/mec/modules.php:154
4000
  msgid "Check it only if another plugin/theme is loading the Google Maps API"
4001
  msgstr ""
4002
  "Checken Sie es nur wenn ein anderes plugin/Thema die Google Maps API lädt."
4003
 
4004
+ #: app/features/mec/modules.php:167 app/libraries/main.php:561
4005
  #, fuzzy
4006
  #| msgid "Import Options"
4007
  msgid "Export Options"
4008
  msgstr "Import Optionen"
4009
 
4010
+ #: app/features/mec/modules.php:171
4011
  msgid ""
4012
  "Show export module (iCal export and add to Google calendars) on event page"
4013
  msgstr ""
4014
  "Exportmodule auf Veranstaltungsseite anzeigen (iCal export und hinzufügen zu "
4015
  "Google calendars)"
4016
 
4017
+ #: app/features/mec/modules.php:178
4018
  msgid "Google Calendar"
4019
  msgstr "Google Calendar"
4020
 
4021
+ #: app/features/mec/modules.php:194 app/libraries/main.php:562
4022
  #: app/modules/local-time/details.php:42 app/widgets/single.php:99
4023
  msgid "Local Time"
4024
  msgstr "Lokale Zeit"
4025
 
4026
+ #: app/features/mec/modules.php:198
4027
  msgid "Show event time based on local time of visitor on event page"
4028
  msgstr ""
4029
  "Zeige die Eventzeit basierend auf der Ortszeit des Besuchers auf der "
4030
  "Eventseite"
4031
 
4032
+ #: app/features/mec/modules.php:208 app/libraries/main.php:563
4033
  #: app/modules/qrcode/details.php:38 app/widgets/single.php:155
4034
  msgid "QR Code"
4035
  msgstr "QR Code"
4036
 
4037
+ #: app/features/mec/modules.php:216
4038
  msgid "Show QR code of event in details page and booking invoice"
4039
  msgstr ""
4040
  "Zeigen Sie QR-Code des Events in der Detailseite und in der Buchungsrechnung "
4041
  "an"
4042
 
4043
+ #: app/features/mec/modules.php:226 app/libraries/main.php:564
4044
  #: app/modules/weather/details.php:37
4045
  msgid "Weather"
4046
  msgstr "Wetter"
4047
 
4048
+ #: app/features/mec/modules.php:233
4049
  msgid "Show weather module on event page"
4050
  msgstr "Wettermodul auf der Eventseite anzeigen"
4051
 
4052
+ #: app/features/mec/modules.php:241
4053
  #, php-format
4054
  msgid "You can get a free API Key from %s"
4055
  msgstr "Sie können einen kostenlosen API-Schlüssel von% s erhalten"
4056
 
4057
+ #: app/features/mec/modules.php:247
4058
  #, fuzzy
4059
  #| msgid "Show weather module on event page"
4060
  msgid "Show weather imperial units"
4061
  msgstr "Wettermodul auf der Eventseite anzeigen"
4062
 
4063
+ #: app/features/mec/modules.php:253
4064
  msgid "Show weather change units button"
4065
  msgstr ""
4066
 
4067
+ #: app/features/mec/modules.php:267
4068
  msgid "Show social network module"
4069
  msgstr "Modul für Soziale Netzwerke anzeigen"
4070
 
4071
+ #: app/features/mec/modules.php:288 app/libraries/main.php:566
4072
  #: app/modules/next-event/details.php:82
4073
  msgid "Next Event"
4074
  msgstr "Nächstes Event"
4075
 
4076
+ #: app/features/mec/modules.php:292
4077
  msgid "Show next event module on event page"
4078
  msgstr "Nächstes Event Modul auf der Eventseite anzeigen"
4079
 
4080
+ #: app/features/mec/modules.php:297
4081
  msgid "Method"
4082
  msgstr "Methode"
4083
 
4084
+ #: app/features/mec/modules.php:300
4085
  msgid "Next Occurrence of Current Event"
4086
  msgstr "Nächstes Auftreten des aktuellen Events"
4087
 
4088
+ #: app/features/mec/modules.php:301
4089
  msgid "Next Occurrence of Other Events"
4090
  msgstr "Nächstes Auftreten von anderen Events."
4091
 
4092
+ #: app/features/mec/modules.php:312 app/features/mec/single.php:42
4093
  msgid "Default is M d Y"
4094
  msgstr "Standardwert ist M-T-J"
4095
 
4096
+ #: app/features/mec/modules.php:328
4097
  msgid "Enable BuddyPress Integration"
4098
  msgstr "Buddy Press Integration deaktivieren"
4099
 
4100
+ #: app/features/mec/modules.php:335
4101
  msgid "Show \"Attendees Module\" in event details page"
4102
  msgstr "Zeigt \"Teilnehmermodul\" in Event Details Seite"
4103
 
4104
+ #: app/features/mec/modules.php:339
4105
  msgid "Attendees Limit"
4106
  msgstr "Teilnehmer Limit, maximale Anzahl"
4107
 
4108
+ #: app/features/mec/modules.php:347
4109
  msgid "Add booking activity to user profile"
4110
  msgstr "Fügt Buchungsaktivitäten dem Benutzerprofil hinzu"
4111
 
4506
  msgid "Status of event"
4507
  msgstr "Status der Veranstaltung"
4508
 
4509
+ #: app/features/mec/notifications.php:436 app/features/mec/settings.php:654
4510
+ #: app/features/mec/settings.php:658
4511
  msgid "Event Note"
4512
  msgstr "Veranstaltungsnotiz"
4513
 
4515
  msgid "Admin events management link."
4516
  msgstr "Admin-link zur Veranstaltungsverwaltung"
4517
 
4518
+ #: app/features/mec/settings.php:55 app/features/mec/settings.php:65
4519
  msgid "Hide Events"
4520
  msgstr "Events verbergen"
4521
 
4522
+ #: app/features/mec/settings.php:58
4523
  msgid "On Event Start"
4524
  msgstr "Am Event Start"
4525
 
4526
+ #: app/features/mec/settings.php:59
4527
  msgid "+1 Hour after start"
4528
  msgstr "+1 Stunde nach dem Start"
4529
 
4530
+ #: app/features/mec/settings.php:60
4531
  msgid "+2 Hours after start"
4532
  msgstr "+2 Stunden nach dem Start"
4533
 
4534
+ #: app/features/mec/settings.php:61
4535
  msgid "On Event End"
4536
  msgstr "Am Event Ende"
4537
 
4538
+ #: app/features/mec/settings.php:66
4539
  msgid ""
4540
  "This option is for showing start/end time of events on frontend of website."
4541
  msgstr ""
4542
  "Diese Option ist um die Start/Endezeit von Events im Frontend der Webseite "
4543
  "anzuzeigen"
4544
 
4545
+ #: app/features/mec/settings.php:75 app/features/mec/settings.php:84
4546
  msgid "Multiple Day Events"
4547
  msgstr "Mehrtagesveranstaltung"
4548
 
4549
+ #: app/features/mec/settings.php:78
4550
  msgid "Show only first day on List/Grid/Slider skins"
4551
  msgstr "Zeige nur den ersten Tag auf Listen/Raster(Grid)/Slider skins."
4552
 
4553
+ #: app/features/mec/settings.php:79
4554
  msgid "Show only first day on all skins"
4555
  msgstr "Nur den ersten Tag in allen Ansichten zeigen"
4556
 
4557
+ #: app/features/mec/settings.php:80
4558
  msgid "Show all days"
4559
  msgstr "Alle Tage anzeigen"
4560
 
4561
+ #: app/features/mec/settings.php:85
4562
  msgid ""
4563
  "For showing all days of multiple day events on frontend or only show the "
4564
  "first day."
4566
  "Um alle Tage anzuzeigen bei Events über mehrere Tage im Frontend oder nur "
4567
  "den ersten Tag anzeigen"
4568
 
4569
+ #: app/features/mec/settings.php:94
4570
  msgid "Remove MEC Data on Plugin Uninstall"
4571
  msgstr "Entfernen von MEC Data auf dem Plugin Deinstallierer"
4572
 
4573
+ #: app/features/mec/settings.php:98
4574
  msgid "Enabled"
4575
  msgstr "Aktiviert"
4576
 
4577
+ #: app/features/mec/settings.php:104
4578
  msgid "Exclude Date Suffix"
4579
  msgstr "Ausschlussdatum Suffix"
4580
 
4581
+ #: app/features/mec/settings.php:107
4582
  msgid "Remove suffix from calendars"
4583
  msgstr "Suffix aus den Kalendern entfernen"
4584
 
4585
+ #: app/features/mec/settings.php:111
4586
  #, fuzzy
4587
  #| msgid "Remove suffix from calendars"
4588
  msgid "Remove \"Th\" on calendar"
4589
  msgstr "Suffix aus den Kalendern entfernen"
4590
 
4591
+ #: app/features/mec/settings.php:112
4592
  msgid ""
4593
  "Checked this checkbox to remove 'Th' on calendar ( ex: '12Th' remove Th, "
4594
  "showing just '12' )"
4595
  msgstr ""
4596
 
4597
+ #: app/features/mec/settings.php:119 app/features/mec/settings.php:126
4598
  msgid "Schema"
4599
  msgstr ""
4600
 
4601
+ #: app/features/mec/settings.php:122
4602
  #, fuzzy
4603
  #| msgid "Enable coupons module"
4604
  msgid "Enable Schema Code"
4605
  msgstr "Gutscheinmodul aktivieren"
4606
 
4607
+ #: app/features/mec/settings.php:127
4608
  msgid "You can enable/disable Schema scripts"
4609
  msgstr ""
4610
 
4611
+ #: app/features/mec/settings.php:136 app/features/mec/settings.php:146
4612
+ #: app/libraries/main.php:4857
4613
  msgid "Weekdays"
4614
  msgstr "Wochentage"
4615
 
4616
+ #: app/features/mec/settings.php:147
4617
  #, fuzzy
4618
  #| msgid ""
4619
  #| "Proceed with caution. Default is set to Monday, Tuesday, Wednesday, "
4626
  "Vorsichtig vorgehen. Standardwert ist auf Montag, Dienstag, Mittwoch, "
4627
  "Donnerstag und Freitag gesetzt."
4628
 
4629
+ #: app/features/mec/settings.php:157 app/features/mec/settings.php:167
4630
  msgid "Weekends"
4631
  msgstr "Wochenenden"
4632
 
4633
+ #: app/features/mec/settings.php:168
4634
  msgid ""
4635
  "Proceed with caution. Default is set to Saturday and Sunday ( you can change "
4636
  "'Week Starts' on WordPress Dashboard > Settings > General - bottom of the "
4637
  "page )."
4638
  msgstr ""
4639
 
4640
+ #: app/features/mec/settings.php:179 app/libraries/main.php:529
4641
  msgid "Archive Pages"
4642
  msgstr ""
4643
 
4644
+ #: app/features/mec/settings.php:182 app/features/mec/settings.php:187
4645
  msgid "Archive Page Title"
4646
  msgstr "Titel der Archivseite"
4647
 
4648
+ #: app/features/mec/settings.php:188
4649
  #, fuzzy
4650
  #| msgid "Default value is Events"
4651
  msgid "Default value is Events - It's title of the page"
4652
  msgstr "Der Standardwert ist Ereignisse (Events)"
4653
 
4654
+ #: app/features/mec/settings.php:196 app/features/mec/settings.php:264
4655
  msgid "Archive Page Skin"
4656
  msgstr "Skin Seite Archiv"
4657
 
4658
+ #: app/features/mec/settings.php:204
4659
  #, fuzzy
4660
  #| msgid "Edit shortcodes"
4661
  msgid "Put shortcode..."
4662
  msgstr "Shortcode ändern"
4663
 
4664
+ #: app/features/mec/settings.php:207 app/features/mec/settings.php:222
4665
+ #: app/features/mec/settings.php:225 app/features/mec/settings.php:234
4666
+ #: app/features/mec/settings.php:260 app/features/mec/settings.php:281
4667
+ #: app/features/mec/settings.php:296 app/features/mec/settings.php:299
4668
+ #: app/features/mec/settings.php:308 app/features/mec/settings.php:334
4669
  #, fuzzy
4670
  #| msgid "The event is ongoing."
4671
  msgid "There is no skins"
4672
  msgstr "Die Veranstaltung ist im Gange."
4673
 
4674
+ #: app/features/mec/settings.php:210 app/features/mec/settings.php:284
4675
+ #: app/features/mec/single.php:69
4676
  msgid "Modern Style"
4677
  msgstr "Moderner Stil"
4678
 
4679
+ #: app/features/mec/settings.php:252 app/features/mec/settings.php:326
4680
  #, fuzzy
4681
  #| msgid "Colorful"
4682
  msgid "colorful"
4683
  msgstr "Farbenfroh"
4684
 
4685
+ #: app/features/mec/settings.php:257 app/features/mec/settings.php:331
4686
  #, fuzzy
4687
  #| msgid "Plain Style"
4688
  msgid "Clean Style"
4689
  msgstr "Einfacher schlichter Stil"
4690
 
4691
+ #: app/features/mec/settings.php:265
4692
  #, fuzzy
4693
  #| msgid "Default value is Calendar/Monthly View"
4694
  msgid "Default value is Calendar/Monthly View, But you can change it "
4695
  msgstr "Der Standardwert ist Kalender / Monatsansicht"
4696
 
4697
+ #: app/features/mec/settings.php:265 app/features/mec/settings.php:339
4698
  msgid "See Demo"
4699
  msgstr ""
4700
 
4701
+ #: app/features/mec/settings.php:273 app/features/mec/settings.php:338
4702
  msgid "Category Page Skin"
4703
  msgstr "Kategorie Seiten Skin"
4704
 
4705
+ #: app/features/mec/settings.php:339
4706
  msgid ""
4707
  "Default value is List View - But you can change it Set a skin for all "
4708
  "categories."
4709
  msgstr ""
4710
 
4711
+ #: app/features/mec/settings.php:347 app/features/mec/settings.php:355
4712
  msgid "Category Events Method"
4713
  msgstr ""
4714
 
4715
+ #: app/features/mec/settings.php:351
4716
  msgid "Expired Events"
4717
  msgstr ""
4718
 
4719
+ #: app/features/mec/settings.php:356
4720
  msgid "Default value is Upcoming Events"
4721
  msgstr ""
4722
 
4723
+ #: app/features/mec/settings.php:364 app/features/mec/settings.php:372
4724
  msgid "Events Archive Status"
4725
  msgstr "Events Archiv Status"
4726
 
4727
+ #: app/features/mec/settings.php:367
4728
  msgid "Enabled (Recommended)"
4729
  msgstr "Ist aktiviert (empfohlen)"
4730
 
4731
+ #: app/features/mec/settings.php:373
4732
  msgid ""
4733
  "If you disable it, then you should create a page as archive page of MEC. "
4734
  "Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
4738
  "erstellen. Page´s slug muss gleich sein wie \"Main Slug\" von MEC. Außerdem "
4739
  "werden alle MEC-Rewrite-Regeln deaktiviert."
4740
 
4741
+ #: app/features/mec/settings.php:386 app/features/mec/settings.php:391
4742
  msgid "Main Slug"
4743
  msgstr "Main Slug"
4744
 
4745
+ #: app/features/mec/settings.php:392
4746
  msgid ""
4747
  "Default value is events. You can not have a page with this name. MEC allows "
4748
  "you to create custom URLs for the permalinks and archives to enhance the "
4749
  "applicability and forward-compatibility of the links."
4750
  msgstr ""
4751
 
4752
+ #: app/features/mec/settings.php:396 app/features/mec/settings.php:410
4753
  #, fuzzy
4754
  #| msgid ""
4755
  #| "Default value is events. Valid characters are lowercase a-z, - character "
4759
  "Standardwert ist Events. Gültige Zeichen sind Kleinbuchstaben a-z, - Zeichen "
4760
  "und Zahlen."
4761
 
4762
+ #: app/features/mec/settings.php:400 app/features/mec/settings.php:405
4763
  msgid "Category Slug"
4764
  msgstr "Category Slug"
4765
 
4766
+ #: app/features/mec/settings.php:406
4767
  #, fuzzy
4768
  #| msgid ""
4769
  #| "It's slug of MEC categories, you can change it to events-cat or something "
4779
  "für den link. Zum Beispiel example.com/events-cat oder example.com/mec-"
4780
  "category"
4781
 
4782
+ #: app/features/mec/settings.php:418
4783
  msgid "Currency"
4784
  msgstr "Währung"
4785
 
4786
+ #: app/features/mec/settings.php:428 app/features/mec/settings.php:433
4787
  msgid "Currency Sign"
4788
  msgstr "Währungssymbol"
4789
 
4790
+ #: app/features/mec/settings.php:434
4791
  msgid "Default value will be \"currency\" if you leave it empty."
4792
  msgstr "Standardwert wird \"currency\" sein wenn Sie es leer lassen"
4793
 
4794
+ #: app/features/mec/settings.php:441
4795
  msgid "Currency Position"
4796
  msgstr "Position des Währungssymbols"
4797
 
4798
+ #: app/features/mec/settings.php:444
4799
  msgid "Before $10"
4800
  msgstr "Vor $10"
4801
 
4802
+ #: app/features/mec/settings.php:445
4803
  msgid "After 10$"
4804
  msgstr "Nach 10$"
4805
 
4806
+ #: app/features/mec/settings.php:450
4807
  msgid "Thousand Separator"
4808
  msgstr "Tausendertrennzeichen"
4809
 
4810
+ #: app/features/mec/settings.php:456
4811
  msgid "Decimal Separator"
4812
  msgstr "Dezimaltrennzeichen"
4813
 
4814
+ #: app/features/mec/settings.php:466
4815
  msgid "No decimal"
4816
  msgstr "Keine Dezimale"
4817
 
4818
+ #: app/features/mec/settings.php:477
4819
  msgid "Enable Google Recaptcha"
4820
  msgstr "Google Recaptcha aktivieren"
4821
 
4822
+ #: app/features/mec/settings.php:484
4823
  msgid "Enable on booking form"
4824
  msgstr "Auf dem Buchungsformular aktivieren"
4825
 
4826
+ #: app/features/mec/settings.php:490
4827
  #, fuzzy
4828
  #| msgid "Enable on \"Frontend Event Submittion\" form"
4829
  msgid "Enable on \"Frontend Event Submission\" form"
4830
  msgstr "Aktivieren auf dem \"Frontend Event Submittion\" Formular"
4831
 
4832
+ #: app/features/mec/settings.php:494
4833
  msgid "Site Key"
4834
  msgstr "Site Key (Seitenschlüssel)"
4835
 
4836
+ #: app/features/mec/settings.php:500
4837
  msgid "Secret Key"
4838
  msgstr "Geheimschlüssel"
4839
 
4840
+ #: app/features/mec/settings.php:512 app/features/mec/settings.php:520
4841
  msgid "Time Format"
4842
  msgstr "Zeitformat"
4843
 
4844
+ #: app/features/mec/settings.php:515
4845
  msgid "12 hours format with AM/PM"
4846
  msgstr "12-Stunden-Format mit AM/FM"
4847
 
4848
+ #: app/features/mec/settings.php:516
4849
  msgid "24 hours format"
4850
  msgstr "24-Stunden-Format"
4851
 
4852
+ #: app/features/mec/settings.php:521
4853
  msgid "This option, affects the selection of Start/End time."
4854
  msgstr ""
4855
 
4856
+ #: app/features/mec/settings.php:529
4857
  msgid "Events List Page"
4858
  msgstr "Seite Liste der Veranstaltungen"
4859
 
4860
+ #: app/features/mec/settings.php:538 app/features/mec/settings.php:550
4861
  #, php-format
4862
  msgid "Put %s shortcode into the page."
4863
  msgstr "%s shortcode in die Seite einfügen"
4864
 
4865
+ #: app/features/mec/settings.php:541
4866
  msgid "Add/Edit Events Page"
4867
  msgstr "Veranstaltungsseite hinzufügen/bearbeiten"
4868
 
4869
+ #: app/features/mec/settings.php:555
4870
  msgid "Enable event submission by guest (Not logged-in) users"
4871
  msgstr ""
4872
  "Das Erstellen von Veranstaltungen durch Gäste (nicht angemeldete Nutzer) "
4873
  "erlauben"
4874
 
4875
+ #: app/features/mec/settings.php:562
4876
  msgid "Enable mandatory email and name for guest user"
4877
  msgstr ""
4878
  "Aktivieren Sie die obligatorische E-Mail und den Namen für Gastbenutzer"
4879
 
4880
+ #: app/features/mec/settings.php:566
4881
  msgid "Frontend Event Submission Sections"
4882
  msgstr "Frontend Veranstaltungen Einreichung Sektionen"
4883
 
4884
+ #: app/features/mec/settings.php:588 app/widgets/single.php:119
4885
  msgid "Event Categories"
4886
  msgstr "Veranstaltungskategorien"
4887
 
4888
+ #: app/features/mec/settings.php:594
4889
  msgid "Event Labels"
4890
  msgstr "Event Labels"
4891
 
4892
+ #: app/features/mec/settings.php:606
4893
  msgid "Event Tags"
4894
  msgstr "Event Schlagworte"
4895
 
4896
+ #: app/features/mec/settings.php:618 app/widgets/single.php:123
4897
  msgid "Event Organizer"
4898
  msgstr "Veranstaltungsmanager"
4899
 
4900
+ #: app/features/mec/settings.php:636
4901
  msgid "Booking Options"
4902
  msgstr "Buchungsoptionen"
4903
 
4904
+ #: app/features/mec/settings.php:642
4905
  #, fuzzy
4906
  #| msgid "Fees/Taxes Options"
4907
  msgid "Fees / Taxes Options"
4908
  msgstr "Gebühren/Steuer Optionen"
4909
 
4910
+ #: app/features/mec/settings.php:659
4911
  #, php-format
4912
  msgid ""
4913
  "Users can put a note for editors while they're submitting the event. Also "
4919
  "Eventbenachrichtigung setzen, um die Notizen der Benutzer in der E-Mail zu "
4920
  "erhalten."
4921
 
4922
+ #: app/features/mec/settings.php:666 app/features/mec/settings.php:675
4923
  msgid "Visibility of Note"
4924
  msgstr "Sichtbarkeit der Anmerkungen zum Event "
4925
 
4926
+ #: app/features/mec/settings.php:669
4927
  msgid "Always"
4928
  msgstr "Immer"
4929
 
4930
+ #: app/features/mec/settings.php:670
4931
  msgid "While event is not published"
4932
  msgstr "Das Ereignis wird nicht veröffentlicht"
4933
 
4934
+ #: app/features/mec/settings.php:676
4935
  msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
4936
  msgstr ""
4937
  "Die Ereignisnotiz wird im Frontend-Einreichungsformular angezeigt und das "
4938
  "Ereignis im Backend bearbeitet."
4939
 
4940
+ #: app/features/mec/settings.php:685 app/libraries/main.php:534
4941
  msgid "User Profile"
4942
  msgstr ""
4943
 
4944
+ #: app/features/mec/settings.php:687
4945
  #, php-format
4946
  msgid ""
4947
  "Put %s shortcode into your desired page. Then users are able to see history "
4948
  "of their bookings."
4949
  msgstr ""
4950
 
4951
+ #: app/features/mec/settings.php:692 app/libraries/main.php:535
4952
  #, fuzzy
4953
  #| msgid "Search Form"
4954
  msgid "Search Bar"
4955
  msgstr "Suche Formular"
4956
 
4957
+ #: app/features/mec/settings.php:694
4958
  #, php-format
4959
  msgid ""
4960
  "Put %s shortcode into your desired page. Then users are able to search events"
4961
  msgstr ""
4962
 
4963
+ #: app/features/mec/settings.php:698
4964
  msgid "Ajax Live mode"
4965
  msgstr ""
4966
 
4967
+ #: app/features/mec/settings.php:702
4968
  msgid "Ajax mode"
4969
  msgstr ""
4970
 
4971
+ #: app/features/mec/settings.php:703
4972
  msgid ""
4973
  "if you enable this option, search button disappeared and to use this "
4974
  "feature, text input field must be enabled."
4975
  msgstr ""
4976
 
4977
+ #: app/features/mec/settings.php:711
4978
  #, fuzzy
4979
  #| msgid "Modern Style"
4980
  msgid "Modern Type"
4981
  msgstr "Moderner Stil"
4982
 
4983
+ #: app/features/mec/settings.php:715
4984
  #, fuzzy
4985
  #| msgid "Search Form"
4986
  msgid "Search bar fields"
4987
  msgstr "Suche Formular"
4988
 
4989
+ #: app/features/mec/settings.php:757
4990
  #, fuzzy
4991
  #| msgid "Text Input"
4992
  msgid "Text input"
4993
  msgstr "Text eingeben"
4994
 
4995
+ #: app/features/mec/settings.php:770
4996
  msgid "Enable Mailchimp Integration"
4997
  msgstr "Mailchimp Integration deaktivieren"
4998
 
4999
+ #: app/features/mec/settings.php:788 app/features/mec/settings.php:793
5000
  msgid "List ID"
5001
  msgstr "List ID"
5002
 
5003
+ #: app/features/mec/settings.php:801 app/features/mec/settings.php:809
5004
  msgid "Subscription Status"
5005
  msgstr "Buchungsstatus"
5006
 
5007
+ #: app/features/mec/settings.php:804
5008
  msgid "Subscribe automatically"
5009
  msgstr "automatisch Anmelden/Abonnieren"
5010
 
5011
+ #: app/features/mec/settings.php:805
5012
  msgid "Subscribe by verification"
5013
  msgstr ""
5014
  "Anmelden/Abonnieren durch Bestätigung\n"
5015
  " "
5016
 
5017
+ #: app/features/mec/settings.php:810
5018
  msgid ""
5019
  "If you choose \"Subscribe by verification\" then an email will send to user "
5020
  "by mailchimp for subscription verification."
5022
  "Wenn Sie \"Anmelden durch Verifizierung\" wählen, wird eine E-Mail an den "
5023
  "Benutzer per Mailchimp zur Bestätigung gesendet."
5024
 
5025
+ #: app/features/mec/settings.php:822
5026
  #, fuzzy
5027
  #| msgid "Filter Options"
5028
  msgid "Upload Field Options"
5029
  msgstr "Filteroptionen"
5030
 
5031
+ #: app/features/mec/settings.php:824
5032
  msgid "Mime types"
5033
  msgstr ""
5034
 
5035
+ #: app/features/mec/settings.php:828
5036
  msgid "Split mime types with \",\"."
5037
  msgstr ""
5038
 
5039
+ #: app/features/mec/settings.php:828
5040
  msgid "Default: jpeg,jpg,png,pdf"
5041
  msgstr ""
5042
 
5043
+ #: app/features/mec/settings.php:831
5044
  #, fuzzy
5045
  #| msgid "Amount (Per Ticket)"
5046
  msgid "Maximum file size"
5047
  msgstr "Betrag (pro Ticket)"
5048
 
5049
+ #: app/features/mec/settings.php:835
5050
  msgid "The unit is Megabyte \"MB\""
5051
  msgstr ""
5052
 
5053
+ #: app/features/mec/single.php:34 app/libraries/main.php:541
5054
  #, fuzzy
5055
  #| msgid "Single Event Style"
5056
  msgid "Single Event Page"
5057
  msgstr "Single Event Stil"
5058
 
5059
+ #: app/features/mec/single.php:36 app/features/mec/single.php:41
5060
  msgid "Single Event Date Format"
5061
  msgstr "Einzelveranstaltung Datumformat"
5062
 
5063
+ #: app/features/mec/single.php:49 app/features/mec/single.php:57
5064
  msgid "Date Method"
5065
  msgstr "Datum Methode"
5066
 
5067
+ #: app/features/mec/single.php:52
5068
  msgid "Next occurrence date"
5069
  msgstr "Nächstes vorkommende Datum"
5070
 
5071
+ #: app/features/mec/single.php:53
5072
  msgid "Referred date"
5073
  msgstr "Gewünschtes Datum"
5074
 
5075
+ #: app/features/mec/single.php:58
5076
  #, fuzzy
5077
  #| msgid ""
5078
  #| "\"Referred date\" shows the event date based on referred date in event "
5083
  "\"Gewünschtes Datum\" zeigt das Ereignisdatum basierend auf dem angegebenen "
5084
  "Datum in der Eventliste an."
5085
 
5086
+ #: app/features/mec/single.php:65 app/features/mec/single.php:76
5087
  msgid "Single Event Style"
5088
  msgstr "Single Event Stil"
5089
 
5090
+ #: app/features/mec/single.php:68
5091
  msgid "Default Style"
5092
  msgstr "Standardstil voreingestellt"
5093
 
5094
+ #: app/features/mec/single.php:71
5095
  #, fuzzy
5096
  #| msgid "MEC Single Sidebar"
5097
  msgid "Elementor Single Builder"
5098
  msgstr "MEC Single Sidebar"
5099
 
5100
+ #: app/features/mec/single.php:77
5101
  msgid "Choose your single event style."
5102
  msgstr "Wählen Sie Ihren Single Event Stil"
5103
 
5104
+ #: app/features/mec/single.php:85 app/features/mec/single.php:93
5105
  #, fuzzy
5106
  #| msgid "Booking"
5107
  msgid "Booking Style"
5108
  msgstr "Buchung / Reservierung"
5109
 
5110
+ #: app/features/mec/single.php:89
5111
  #, fuzzy
5112
  #| msgid "Modal 1"
5113
  msgid "Modal"
5114
  msgstr "Modal 1"
5115
 
5116
+ #: app/features/mec/single.php:94
5117
  msgid ""
5118
  "Choose your Booking style, Please Note: When you set this feature to modal "
5119
  "you can not see booking box if you set popoup module view on shortcodes"
5120
  msgstr ""
5121
 
5122
+ #: app/features/mec/single.php:102
5123
  msgid "Disable Block Editor (Gutenberg)"
5124
  msgstr ""
5125
 
5126
+ #: app/features/mec/single.php:105
5127
  msgid "Disable Block Editor"
5128
  msgstr ""
5129
 
5130
+ #: app/features/mec/single.php:109
5131
  msgid "Block Editor"
5132
  msgstr ""
5133
 
5134
+ #: app/features/mec/single.php:110
5135
  msgid ""
5136
  "If you want to use the new WordPress block editor you should keep this "
5137
  "checkbox unchecked."
5138
  msgstr ""
5139
 
5140
+ #: app/features/mec/single.php:116 app/features/mec/single.php:123
5141
  msgid "Breadcrumbs"
5142
  msgstr ""
5143
 
5144
+ #: app/features/mec/single.php:119
5145
  msgid "Enable Breadcrumbs."
5146
  msgstr ""
5147
 
5148
+ #: app/features/mec/single.php:124
5149
  msgid "Check this option, for showing the breadcrumbs on single event page"
5150
  msgstr ""
5151
 
5152
+ #: app/features/mec/single.php:137
5153
  msgid "Show countdown module on event page"
5154
  msgstr "Countdownmodul auf Veranstaltungsseite anzeigen"
5155
 
5156
+ #: app/features/mec/single.php:142
5157
  msgid "Countdown Style"
5158
  msgstr "Countdown Stil"
5159
 
5160
+ #: app/features/mec/single.php:145
5161
  msgid "Plain Style"
5162
  msgstr "Einfacher schlichter Stil"
5163
 
5164
+ #: app/features/mec/single.php:146
5165
  msgid "Flip Style"
5166
  msgstr "Flip Stil"
5167
 
5168
+ #: app/features/mec/single.php:154 app/features/mec/single.php:161
5169
  msgid "Exceptional days"
5170
  msgstr "Ausgesuchte ausnehmende Tage"
5171
 
5172
+ #: app/features/mec/single.php:158
5173
  msgid "Show exceptional days option on Add/Edit events page"
5174
  msgstr ""
5175
  "Ausnehmende Tage anzeigen auf der Seite Ereignisse hinzufügen / bearbeiten "
5176
  "(Show exceptional days option on Add/Edit events page)"
5177
 
5178
+ #: app/features/mec/single.php:162
5179
  #, fuzzy
5180
  #| msgid ""
5181
  #| "Using this option you can include/exclude certain days to/from event "
5186
  "Mit dieser Option können Sie bestimmte Tage von vorkommenden Eventdaten ein-/"
5187
  "ausschließen."
5188
 
5189
+ #: app/features/mec/single.php:171 app/libraries/main.php:544
5190
  msgid "Additional Organizers"
5191
  msgstr "Zusätzliche Organisatoren"
5192
 
5193
+ #: app/features/mec/single.php:175
5194
  msgid ""
5195
  "Show additional organizers option on Add/Edit events page and single event "
5196
  "page."
5198
  "Zeigen Sie zusätzliche Organisatoren auf der Seite Events hinzufügen / "
5199
  "bearbeiten und auf der Seite für einzelne Events an."
5200
 
5201
+ #: app/features/mec/single.php:181
5202
  #, fuzzy
5203
  #| msgid "Additional Organizers"
5204
  msgid "Additional locations"
5205
  msgstr "Zusätzliche Organisatoren"
5206
 
5207
+ #: app/features/mec/single.php:185
5208
  #, fuzzy
5209
  #| msgid ""
5210
  #| "Show additional organizers option on Add/Edit events page and single "
5216
  "Zeigen Sie zusätzliche Organisatoren auf der Seite Events hinzufügen / "
5217
  "bearbeiten und auf der Seite für einzelne Events an."
5218
 
5219
+ #: app/features/mec/single.php:191 app/libraries/main.php:546
5220
  #: app/skins/single.php:163
5221
  #, fuzzy
5222
  #| msgid "featured event"
5223
  msgid "Related Events"
5224
  msgstr "Ausgewählte Veranstaltung"
5225
 
5226
+ #: app/features/mec/single.php:195
5227
  msgid "Display related events based on taxonomy in single event page."
5228
  msgstr ""
5229
 
5230
+ #: app/features/mec/single.php:201
5231
  #, fuzzy
5232
  #| msgid "Taxonomies"
5233
  msgid "Select Taxonomies:"
5330
  msgstr "Alle Veranstaltungen"
5331
 
5332
  #: app/features/mec/support-page.php:13 app/features/mec/support.php:147
5333
+ #, fuzzy
5334
+ #| msgid "View all Articles"
5335
+ msgid "All Articles"
5336
  msgstr "Alle Artikel anzeigen"
5337
 
5338
  #: app/features/mec/support-page.php:15
5349
  msgid "Advice and answers from the Webnus Team"
5350
  msgstr ""
5351
 
 
 
 
 
 
 
5352
  #: app/features/mec/support-page.php:46
5353
  msgid "Quick Setup"
5354
  msgstr ""
5796
  msgid "eg. https://webnus.net"
5797
  msgstr "http://webnus.net"
5798
 
5799
+ #: app/features/organizers.php:311 app/libraries/main.php:4881
5800
+ #: app/skins/single.php:845
5801
  msgid "Other Organizers"
5802
  msgstr "Andere Veranstalter"
5803
 
5814
  msgid "Please %s/%s in order to see your bookings / profile."
5815
  msgstr "Um neue Veranstaltungen einzugeben, bitte %s/%s"
5816
 
5817
+ #: app/features/profile/profile.php:26 app/features/profile/profile.php:88
5818
  msgid "#"
5819
  msgstr ""
5820
 
5821
+ #: app/features/profile/profile.php:35 app/libraries/main.php:2908
5822
  msgid "Status"
5823
  msgstr ""
5824
 
5825
+ #: app/features/profile/profile.php:38 app/libraries/main.php:2045
5826
  msgid "Attendees"
5827
  msgstr "Teilnehmer"
5828
 
5829
+ #: app/features/profile/profile.php:41
5830
  #, fuzzy
5831
  #| msgid "%s Invoice"
5832
  msgid "Invoice"
5833
  msgstr "% s Rechnung"
5834
 
5835
+ #: app/features/profile/profile.php:77
5836
  #, php-format
5837
  msgid "<i class=\"mec-sl-eye\"></i> %s"
5838
  msgstr ""
5839
 
5840
+ #: app/features/profile/profile.php:97 app/libraries/main.php:2059
5841
+ #: app/libraries/main.php:4879
5842
  msgid "Ticket"
5843
  msgstr "Ticket"
5844
 
5845
+ #: app/features/profile/profile.php:100
5846
  #, fuzzy
5847
  #| msgid "Verification"
5848
  msgid "Variations"
5849
  msgstr "Verifizierung"
5850
 
5851
+ #: app/features/profile/profile.php:143
5852
  msgid "No bookings found!"
5853
  msgstr "Keine Buchungen gefunden"
5854
 
5877
  #: app/features/search_bar/search_result.php:11
5878
  #: app/libraries/notifications.php:671 app/libraries/render.php:437
5879
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
5880
+ #: app/skins/single.php:160 app/skins/single.php:736
5881
  #: app/skins/single/default.php:86 app/skins/single/default.php:298
5882
  #: app/skins/single/m1.php:34 app/skins/single/modern.php:184
5883
  msgid "All of the day"
6088
  msgid "Slider View"
6089
  msgstr "Slideransicht"
6090
 
6091
+ #: app/libraries/main.php:382 app/libraries/main.php:4859
6092
  msgid "SU"
6093
  msgstr "SO"
6094
 
6095
+ #: app/libraries/main.php:383 app/libraries/main.php:4860
6096
  msgid "MO"
6097
  msgstr "MO"
6098
 
6099
+ #: app/libraries/main.php:384 app/libraries/main.php:4861
6100
  msgid "TU"
6101
  msgstr "DI"
6102
 
6103
+ #: app/libraries/main.php:385 app/libraries/main.php:4862
6104
  msgid "WE"
6105
  msgstr "MI"
6106
 
6107
+ #: app/libraries/main.php:386 app/libraries/main.php:4863
6108
  msgid "TH"
6109
  msgstr "DO"
6110
 
6111
+ #: app/libraries/main.php:387 app/libraries/main.php:4864
6112
  msgid "FR"
6113
  msgstr "FR"
6114
 
6115
+ #: app/libraries/main.php:388 app/libraries/main.php:4865
6116
  msgid "SA"
6117
  msgstr "SA"
6118
 
6352
  msgid "Free"
6353
  msgstr "kostenfrei"
6354
 
6355
+ #: app/libraries/main.php:3525 app/libraries/main.php:5106
6356
  #, fuzzy
6357
  #| msgid "M.E. Calendar"
6358
  msgid "M.E. Calender"
6359
  msgstr "M.E. Calender"
6360
 
6361
+ #: app/libraries/main.php:3680
6362
  #, php-format
6363
  msgid "Copy of %s"
6364
  msgstr "Kopie von %s"
6365
 
6366
+ #: app/libraries/main.php:4353
6367
  msgid "Booked an event."
6368
  msgstr "Eine Veranstaltung wurde gebucht."
6369
 
6370
+ #: app/libraries/main.php:4394
6371
  #, php-format
6372
  msgid "%s booked %s event."
6373
  msgstr "%s gebuchtes %s Event"
6374
 
6375
+ #: app/libraries/main.php:4842
6376
  msgid "Taxonomies"
6377
  msgstr "Klassifizierung "
6378
 
6379
+ #: app/libraries/main.php:4844
6380
  msgid "Category Plural Label"
6381
  msgstr "Kategorien"
6382
 
6383
+ #: app/libraries/main.php:4845
6384
  msgid "Category Singular Label"
6385
  msgstr "Kategorie"
6386
 
6387
+ #: app/libraries/main.php:4846
6388
  msgid "Label Plural Label"
6389
  msgstr "Labels"
6390
 
6391
+ #: app/libraries/main.php:4847
6392
  msgid "Label Singular Label"
6393
  msgstr "Label"
6394
 
6395
+ #: app/libraries/main.php:4847
6396
  msgid "label"
6397
  msgstr "label"
6398
 
6399
+ #: app/libraries/main.php:4848
6400
  msgid "Location Plural Label"
6401
  msgstr "Veranstaltungsorte"
6402
 
6403
+ #: app/libraries/main.php:4849
6404
  msgid "Location Singular Label"
6405
  msgstr "Veranstaltungsort"
6406
 
6407
+ #: app/libraries/main.php:4850
6408
  msgid "Organizer Plural Label"
6409
  msgstr "Veranstalter"
6410
 
6411
+ #: app/libraries/main.php:4851
6412
  msgid "Organizer Singular Label"
6413
  msgstr "Veranstalter"
6414
 
6415
+ #: app/libraries/main.php:4852
6416
  #, fuzzy
6417
  #| msgid "Label Plural Label"
6418
  msgid "Speaker Plural Label"
6419
  msgstr "Labels"
6420
 
6421
+ #: app/libraries/main.php:4853
6422
  #, fuzzy
6423
  #| msgid "Label Singular Label"
6424
  msgid "Speaker Singular Label"
6425
  msgstr "Label"
6426
 
6427
+ #: app/libraries/main.php:4859
6428
  msgid "Sunday abbreviation"
6429
  msgstr "Sonntag Abkürzung"
6430
 
6431
+ #: app/libraries/main.php:4860
6432
  msgid "Monday abbreviation"
6433
  msgstr "Montag Abkürzung"
6434
 
6435
+ #: app/libraries/main.php:4861
6436
  msgid "Tuesday abbreviation"
6437
  msgstr "Dienstag Abkürzung"
6438
 
6439
+ #: app/libraries/main.php:4862
6440
  msgid "Wednesday abbreviation"
6441
  msgstr "Mittwoch Abkürzung"
6442
 
6443
+ #: app/libraries/main.php:4863
6444
  msgid "Thursday abbreviation"
6445
  msgstr "Donnerstag Abkürzung"
6446
 
6447
+ #: app/libraries/main.php:4864
6448
  msgid "Friday abbreviation"
6449
  msgstr "Freitag Abkürzung"
6450
 
6451
+ #: app/libraries/main.php:4865
6452
  msgid "Saturday abbreviation"
6453
  msgstr "Samstag Abkürzung "
6454
 
6455
+ #: app/libraries/main.php:4869
6456
  msgid "Others"
6457
  msgstr "Andere"
6458
 
6459
+ #: app/libraries/main.php:4871
6460
  msgid "Booking Success Message"
6461
  msgstr "Buchung erfolgreich Mitteilung"
6462
 
6463
+ #: app/libraries/main.php:4871
6464
  msgid ""
6465
  "Thanks for your booking. Your tickets booked, booking verification might be "
6466
  "needed, please check your email."
6468
  "Vielen Dank für Ihre Buchung. Für die gebuchten Tickets ist ggf. eine "
6469
  "Bestätigung durch Sie erforderlich. Bitte überprüfen Sie Ihre Emails."
6470
 
6471
+ #: app/libraries/main.php:4872 app/widgets/single.php:131
6472
  msgid "Register Button"
6473
  msgstr "Register Button"
6474
 
6475
+ #: app/libraries/main.php:4872 app/skins/available_spot/tpl.php:210
6476
  #: app/skins/carousel/render.php:156 app/skins/carousel/render.php:192
6477
  #: app/skins/grid/render.php:118 app/skins/grid/render.php:164
6478
  #: app/skins/grid/render.php:206 app/skins/grid/render.php:234
6479
  #: app/skins/list/render.php:107 app/skins/list/render.php:195
6480
+ #: app/skins/masonry/render.php:178 app/skins/single.php:757
6481
+ #: app/skins/single.php:760 app/skins/single/default.php:233
6482
  #: app/skins/single/default.php:235 app/skins/single/default.php:445
6483
  #: app/skins/single/default.php:447 app/skins/single/m1.php:126
6484
  #: app/skins/single/m1.php:128 app/skins/single/m2.php:58
6489
  msgid "REGISTER"
6490
  msgstr "ANMELDEN"
6491
 
6492
+ #: app/libraries/main.php:4873
6493
  msgid "View Detail Button"
6494
  msgstr "Ansicht Detail Button"
6495
 
6496
+ #: app/libraries/main.php:4873 app/skins/carousel/render.php:156
6497
  #: app/skins/carousel/render.php:192 app/skins/grid/render.php:118
6498
  #: app/skins/grid/render.php:164 app/skins/grid/render.php:206
6499
  #: app/skins/grid/render.php:234 app/skins/list/render.php:107
6504
  msgid "View Detail"
6505
  msgstr "Details "
6506
 
6507
+ #: app/libraries/main.php:4874
6508
  msgid "Event Detail Button"
6509
  msgstr "Event Detail Button"
6510
 
6511
+ #: app/libraries/main.php:4874 app/skins/countdown/tpl.php:224
6512
  msgid "Event Detail"
6513
  msgstr "Veranstaltungsdetails"
6514
 
6515
+ #: app/libraries/main.php:4876
6516
  msgid "More Info Link"
6517
  msgstr "Link Mehr Informationen"
6518
 
6519
+ #: app/libraries/main.php:4879
6520
  msgid "Ticket (Singular)"
6521
  msgstr "Ticket"
6522
 
6523
+ #: app/libraries/main.php:4880
6524
  msgid "Tickets (Plural)"
6525
  msgstr "Tickets"
6526
 
6527
+ #: app/libraries/main.php:4966
6528
  msgid "EventON"
6529
  msgstr "EventON"
6530
 
6531
+ #: app/libraries/main.php:4967
6532
  msgid "The Events Calendar"
6533
  msgstr "The Events Calendar"
6534
 
6535
+ #: app/libraries/main.php:4968
6536
  msgid "Events Schedule WP Plugin"
6537
  msgstr "Event Zeitplan WP-Plugin"
6538
 
6539
+ #: app/libraries/main.php:4969
6540
  msgid "Calendarize It"
6541
  msgstr ""
6542
 
6543
+ #: app/libraries/main.php:5043 app/libraries/main.php:5063
6544
  msgid "Confirmed"
6545
  msgstr "Bestätigt"
6546
 
6547
+ #: app/libraries/main.php:5044 app/libraries/main.php:5071
6548
  msgid "Rejected"
6549
  msgstr "Abgelehnt"
6550
 
6551
+ #: app/libraries/main.php:5045 app/libraries/main.php:5067
6552
  msgid "Pending"
6553
  msgstr "Ausstehend"
6554
 
6555
+ #: app/libraries/main.php:5093
6556
  msgid "Waiting"
6557
  msgstr "in Bearbeitung"
6558
 
6559
+ #: app/libraries/main.php:5298 app/libraries/render.php:367
6560
  msgid "Skin controller does not exist."
6561
  msgstr "Skin contoller existiert nicht."
6562
 
6688
  msgid "Get Directions"
6689
  msgstr "Wegbeschreibung"
6690
 
6691
+ #: app/modules/links/details.php:17 app/skins/single.php:454
6692
  msgid "Share this event"
6693
  msgstr "Diese Veranstaltung teilen"
6694
 
6715
  msgid "Go to occurrence page"
6716
  msgstr "Zum Event"
6717
 
6718
+ #: app/modules/next-event/details.php:95 app/skins/single.php:730
6719
  #: app/skins/single/default.php:80 app/skins/single/default.php:292
6720
  #: app/skins/single/m1.php:28 app/skins/single/modern.php:178
6721
  msgid "Time"
6772
  msgstr "Sichtbarkeit"
6773
 
6774
  #: app/skins/agenda/tpl.php:65 app/skins/agenda/tpl.php:69
6775
+ #: app/skins/carousel/tpl.php:45 app/skins/custom/tpl.php:61
6776
+ #: app/skins/custom/tpl.php:65 app/skins/grid/tpl.php:61
6777
  #: app/skins/grid/tpl.php:65 app/skins/list/tpl.php:66
6778
  #: app/skins/list/tpl.php:70 app/skins/masonry/tpl.php:61
6779
  #: app/skins/masonry/tpl.php:65 app/skins/slider/tpl.php:43
6780
  msgid "No event found!"
6781
  msgstr "Keine Veranstaltung gefunden"
6782
 
6783
+ #: app/skins/agenda/tpl.php:74 app/skins/custom/tpl.php:70
6784
+ #: app/skins/grid/tpl.php:70 app/skins/list/tpl.php:75
6785
+ #: app/skins/masonry/tpl.php:70 app/skins/yearly_view/render.php:124
6786
  msgid "Load More"
6787
  msgstr "Weitere anzeigen"
6788
 
6850
  msgid "Home"
6851
  msgstr ""
6852
 
6853
+ #: app/skins/single.php:537 app/skins/single/default.php:43
6854
  #: app/skins/single/m1.php:247 app/skins/single/m2.php:174
6855
  #: app/skins/single/modern.php:256
6856
  msgid "Sold out!"
6857
  msgstr "Ausverkauft!"
6858
 
6859
+ #: app/skins/single.php:805 app/skins/single.php:860
6860
  #: app/skins/single/default.php:205 app/skins/single/default.php:417
6861
  #: app/skins/single/m1.php:100 app/skins/single/m2.php:32
6862
  #: app/skins/single/modern.php:41
6863
  msgid "Phone"
6864
  msgstr "Phone"
6865
 
6866
+ #: app/skins/single.php:819 app/skins/single.php:874
6867
  #: app/skins/single/default.php:219 app/skins/single/default.php:431
6868
  #: app/skins/single/m1.php:114 app/skins/single/m2.php:46
6869
  #: app/skins/single/modern.php:55
6870
  msgid "Website"
6871
  msgstr "Website"
6872
 
6873
+ #: app/skins/single.php:944
6874
  #, fuzzy
6875
  #| msgid "No Search Options"
6876
  msgid "Speakers:"
7364
  #~ msgid "Organizer Payment Credentials"
7365
  #~ msgstr "Name des Veranstalters des gebuchten Events"
7366
 
7367
+ #~ msgid "View all Articles"
7368
+ #~ msgstr "Alle Artikel anzeigen"
7369
+
7370
  #~ msgid "Card Number"
7371
  #~ msgstr "Kartennummer"
7372
 
languages/modern-events-calendar-lite-en_US.mo CHANGED
Binary file
languages/modern-events-calendar-lite-en_US.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: modern-events-calendar\n"
4
- "POT-Creation-Date: 2019-09-11 13:21+0430\n"
5
- "PO-Revision-Date: 2019-09-11 13:22+0430\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: en_US\n"
@@ -56,7 +56,7 @@ msgid "Select Type"
56
  msgstr ""
57
 
58
  #: app/features/colors.php:50 app/features/fes/form.php:794
59
- #: app/features/mec/settings.php:597
60
  msgid "Event Color"
61
  msgstr ""
62
 
@@ -66,8 +66,8 @@ msgstr ""
66
  msgid "Settings"
67
  msgstr ""
68
 
69
- #: app/features/contextual.php:62 app/features/events.php:2279
70
- #: app/features/mec/booking.php:398 app/features/mec/support.php:29
71
  #: app/libraries/main.php:554
72
  msgid "Booking Form"
73
  msgstr ""
@@ -81,7 +81,7 @@ msgid ""
81
  "YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></iframe>"
82
  msgstr ""
83
 
84
- #: app/features/contextual.php:70 app/features/mec/booking.php:516
85
  #: app/features/mec/support.php:36 app/libraries/main.php:555
86
  msgid "Payment Gateways"
87
  msgstr ""
@@ -157,12 +157,12 @@ msgid ""
157
  "\"0\" allowfullscreen></iframe>"
158
  msgstr ""
159
 
160
- #: app/features/contextual.php:117 app/features/mec/settings.php:49
161
  #: app/libraries/main.php:528
162
  msgid "General Options"
163
  msgstr ""
164
 
165
- #: app/features/contextual.php:139 app/features/mec/settings.php:381
166
  #: app/libraries/main.php:530
167
  msgid "Slugs/Permalinks"
168
  msgstr ""
@@ -171,27 +171,27 @@ msgstr ""
171
  msgid "Event Details/Single Event Page"
172
  msgstr ""
173
 
174
- #: app/features/contextual.php:166 app/features/mec/settings.php:413
175
  #: app/libraries/main.php:531
176
  msgid "Currency Options"
177
  msgstr ""
178
 
179
- #: app/features/contextual.php:182 app/features/mec/modules.php:64
180
- #: app/features/mec/modules.php:82 app/libraries/main.php:560
181
  msgid "Google Maps Options"
182
  msgstr ""
183
 
184
- #: app/features/contextual.php:244 app/features/mec/settings.php:470
185
  #: app/libraries/main.php:532
186
  msgid "Google Recaptcha Options"
187
  msgstr ""
188
 
189
- #: app/features/contextual.php:258 app/features/mec/single.php:130
190
  #: app/libraries/main.php:542
191
  msgid "Countdown Options"
192
  msgstr ""
193
 
194
- #: app/features/contextual.php:268 app/features/mec/modules.php:260
195
  #: app/libraries/main.php:565
196
  msgid "Social Networks"
197
  msgstr ""
@@ -200,34 +200,34 @@ msgstr ""
200
  msgid "Next Event Module"
201
  msgstr ""
202
 
203
- #: app/features/contextual.php:286 app/features/mec/settings.php:506
204
  #: app/libraries/main.php:533
205
  msgid "Frontend Event Submission"
206
  msgstr ""
207
 
208
- #: app/features/contextual.php:298 app/features/events.php:1130
209
  #: app/libraries/main.php:543
210
  msgid "Exceptional Days"
211
  msgstr ""
212
 
213
- #: app/features/contextual.php:308 app/features/events.php:296
214
- #: app/features/mec/booking.php:85 app/features/mec/notifications.php:31
215
  #: app/libraries/main.php:550 app/libraries/main.php:571
216
  #: app/libraries/main.php:652
217
  msgid "Booking"
218
  msgstr ""
219
 
220
- #: app/features/contextual.php:318 app/features/mec/booking.php:220
221
  #: app/libraries/main.php:551
222
  msgid "Coupons"
223
  msgstr ""
224
 
225
- #: app/features/contextual.php:326 app/features/mec/modules.php:321
226
  #: app/libraries/main.php:567
227
  msgid "BuddyPress Integration"
228
  msgstr ""
229
 
230
- #: app/features/contextual.php:334 app/features/mec/settings.php:763
231
  #: app/libraries/main.php:536
232
  msgid "Mailchimp Integration"
233
  msgstr ""
@@ -236,52 +236,52 @@ msgstr ""
236
  msgid "MEC Activation"
237
  msgstr ""
238
 
239
- #: app/features/events.php:148 app/features/ix/export.php:34
240
  #: app/features/mec/dashboard.php:229 app/skins/daily_view/tpl.php:79
241
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
242
  msgid "Events"
243
  msgstr ""
244
 
245
- #: app/features/events.php:149
246
- #: app/features/mec/meta_boxes/display_options.php:917
247
- #: app/features/mec/meta_boxes/display_options.php:973
248
- #: app/features/mec/meta_boxes/display_options.php:1008
249
- #: app/features/profile/profile.php:28 app/skins/daily_view/tpl.php:80
250
  #: app/skins/monthly_view/tpl.php:71 app/skins/yearly_view/tpl.php:69
251
  msgid "Event"
252
  msgstr ""
253
 
254
- #: app/features/events.php:150 app/features/mec.php:333
255
  msgid "Add Event"
256
  msgstr ""
257
 
258
- #: app/features/events.php:151 app/features/mec/dashboard.php:134
259
  msgid "Add New Event"
260
  msgstr ""
261
 
262
- #: app/features/events.php:152 app/features/ix.php:3122
263
  #: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:57
264
  msgid "No events found!"
265
  msgstr ""
266
 
267
- #: app/features/events.php:153
268
  msgid "All Events"
269
  msgstr ""
270
 
271
- #: app/features/events.php:154
272
  msgid "Edit Event"
273
  msgstr ""
274
 
275
- #: app/features/events.php:155
276
  msgid "View Event"
277
  msgstr ""
278
 
279
- #: app/features/events.php:156
280
  msgid "No events found in Trash!"
281
  msgstr ""
282
 
283
- #: app/features/events.php:173 app/features/events.php:3072
284
- #: app/features/mec/meta_boxes/display_options.php:828
285
  #: app/features/mec/meta_boxes/search_form.php:31
286
  #: app/features/mec/meta_boxes/search_form.php:93
287
  #: app/features/mec/meta_boxes/search_form.php:155
@@ -292,530 +292,534 @@ msgstr ""
292
  #: app/features/mec/meta_boxes/search_form.php:453
293
  #: app/features/mec/meta_boxes/search_form.php:514
294
  #: app/features/mec/meta_boxes/search_form.php:575
295
- #: app/features/mec/settings.php:716 app/features/mec/single.php:201
296
- #: app/libraries/main.php:4835 app/libraries/skins.php:808
297
- #: app/skins/single.php:531 app/skins/single/default.php:170
298
  #: app/skins/single/default.php:382 app/skins/single/m1.php:170
299
  #: app/skins/single/m2.php:102 app/skins/single/modern.php:110
300
  msgid "Category"
301
  msgstr ""
302
 
303
- #: app/features/events.php:174 app/features/events.php:3043
304
  #: app/features/fes/form.php:745 app/features/mec.php:335
305
- #: app/features/mec/meta_boxes/filter.php:70 app/libraries/main.php:4834
306
  msgid "Categories"
307
  msgstr ""
308
 
309
- #: app/features/events.php:184 app/features/labels.php:71
310
  #: app/features/locations.php:69 app/features/organizers.php:69
311
  #: app/features/speakers.php:70
312
  #, php-format
313
  msgid "All %s"
314
  msgstr ""
315
 
316
- #: app/features/events.php:185 app/features/labels.php:72
317
  #: app/features/locations.php:70 app/features/organizers.php:70
318
  #: app/features/speakers.php:71
319
  #, php-format
320
  msgid "Edit %s"
321
  msgstr ""
322
 
323
- #: app/features/events.php:186 app/features/labels.php:73
324
  #: app/features/locations.php:71 app/features/organizers.php:71
325
  #: app/features/speakers.php:72
326
  #, php-format
327
  msgid "View %s"
328
  msgstr ""
329
 
330
- #: app/features/events.php:187 app/features/labels.php:74
331
  #: app/features/locations.php:72 app/features/organizers.php:72
332
  #: app/features/speakers.php:73
333
  #, php-format
334
  msgid "Update %s"
335
  msgstr ""
336
 
337
- #: app/features/events.php:188 app/features/labels.php:75
338
  #: app/features/locations.php:73 app/features/organizers.php:73
339
  #: app/features/speakers.php:74
340
  #, php-format
341
  msgid "Add New %s"
342
  msgstr ""
343
 
344
- #: app/features/events.php:189 app/features/labels.php:76
345
  #: app/features/locations.php:74 app/features/organizers.php:74
346
  #: app/features/speakers.php:75
347
  #, php-format
348
  msgid "New %s Name"
349
  msgstr ""
350
 
351
- #: app/features/events.php:190 app/features/labels.php:77
352
  #: app/features/locations.php:75 app/features/organizers.php:75
353
  #: app/features/speakers.php:76
354
  #, php-format
355
  msgid "Popular %s"
356
  msgstr ""
357
 
358
- #: app/features/events.php:191 app/features/labels.php:78
359
  #: app/features/locations.php:76 app/features/organizers.php:76
360
  #: app/features/speakers.php:77
361
  #, php-format
362
  msgid "Search %s"
363
  msgstr ""
364
 
365
- #: app/features/events.php:216 app/features/events.php:237
366
  msgid "Category Icon"
367
  msgstr ""
368
 
369
- #: app/features/events.php:219 app/features/events.php:242
370
  msgid "Select icon"
371
  msgstr ""
372
 
373
- #: app/features/events.php:291
374
  msgid "Event Details"
375
  msgstr ""
376
 
377
- #: app/features/events.php:333 app/features/events.php:3265
378
- #: app/features/events.php:3307 app/features/fes/form.php:706
379
- #: app/features/ix.php:2743 app/features/ix.php:2784
380
- #: app/features/mec/settings.php:573 app/libraries/main.php:4867
381
- #: app/widgets/single.php:103
382
- msgid "Event Cost"
383
- msgstr ""
384
-
385
- #: app/features/events.php:337 app/features/fes/form.php:709
386
- #: app/libraries/main.php:4868 app/skins/single.php:554
387
- #: app/skins/single/default.php:104 app/skins/single/default.php:316
388
- #: app/skins/single/m1.php:49 app/skins/single/modern.php:199
389
- msgid "Cost"
390
- msgstr ""
391
-
392
- #: app/features/events.php:435
393
  msgid "Note for reviewer"
394
  msgstr ""
395
 
396
- #: app/features/events.php:442
397
  msgid "Guest Data"
398
  msgstr ""
399
 
400
- #: app/features/events.php:443 app/features/events.php:2261
401
  #: app/features/fes/form.php:668 app/features/labels.php:178
402
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
403
- #: app/features/profile/profile.php:90 app/libraries/notifications.php:805
404
  #: app/modules/booking/steps/form.php:37
405
  msgid "Name"
406
  msgstr ""
407
 
408
- #: app/features/events.php:444 app/features/events.php:2272
409
- #: app/features/events.php:2348 app/features/fes/form.php:664
410
- #: app/features/mec/booking.php:57 app/features/mec/booking.php:449
411
  #: app/features/organizers.php:111 app/features/organizers.php:152
412
- #: app/features/profile/profile.php:93 app/features/speakers.php:124
413
  #: app/features/speakers.php:184 app/libraries/main.php:1471
414
  #: app/libraries/main.php:1537 app/libraries/main.php:2582
415
  #: app/libraries/notifications.php:806 app/modules/booking/steps/form.php:46
416
- #: app/modules/booking/steps/form.php:84 app/skins/single.php:781
417
- #: app/skins/single.php:836 app/skins/single/default.php:212
418
  #: app/skins/single/default.php:424 app/skins/single/m1.php:107
419
  #: app/skins/single/m2.php:39 app/skins/single/modern.php:48
420
  msgid "Email"
421
  msgstr ""
422
 
423
- #: app/features/events.php:448 app/features/fes/form.php:232
424
  msgid "Date and Time"
425
  msgstr ""
426
 
427
- #: app/features/events.php:452 app/features/events.php:458
428
- #: app/features/events.php:3075 app/features/events.php:3265
429
- #: app/features/events.php:3307 app/features/fes/form.php:236
430
  #: app/features/fes/form.php:240 app/features/ix.php:2743
431
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:38
432
  #: app/features/mec/dashboard.php:373
433
- #: app/features/mec/meta_boxes/display_options.php:44
434
- #: app/features/mec/meta_boxes/display_options.php:185
435
- #: app/features/mec/meta_boxes/display_options.php:337
436
- #: app/features/mec/meta_boxes/display_options.php:392
437
- #: app/features/mec/meta_boxes/display_options.php:515
438
- #: app/features/mec/meta_boxes/display_options.php:569
439
- #: app/features/mec/meta_boxes/display_options.php:616
440
- #: app/features/mec/meta_boxes/display_options.php:649
441
- #: app/features/mec/meta_boxes/display_options.php:684
442
- #: app/features/mec/meta_boxes/display_options.php:730
443
- #: app/features/mec/meta_boxes/display_options.php:796
444
- #: app/features/mec/meta_boxes/display_options.php:1031
445
- #: app/features/mec/meta_boxes/display_options.php:1118
446
  msgid "Start Date"
447
  msgstr ""
448
 
449
- #: app/features/events.php:530 app/features/events.php:622
450
- #: app/features/events.php:1615 app/features/events.php:1657
451
- #: app/features/events.php:1824 app/features/events.php:1848
452
  #: app/features/fes/form.php:268 app/features/fes/form.php:308
453
  msgid "AM"
454
  msgstr ""
455
 
456
- #: app/features/events.php:537 app/features/events.php:629
457
- #: app/features/events.php:1622 app/features/events.php:1664
458
- #: app/features/events.php:1825 app/features/events.php:1849
459
  #: app/features/fes/form.php:269 app/features/fes/form.php:309
460
  msgid "PM"
461
  msgstr ""
462
 
463
- #: app/features/events.php:544 app/features/events.php:549
464
- #: app/features/events.php:3076 app/features/events.php:3265
465
- #: app/features/events.php:3307 app/features/fes/form.php:276
466
  #: app/features/fes/form.php:280 app/features/ix.php:2743
467
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:44
468
  #: app/features/mec/dashboard.php:374
469
  msgid "End Date"
470
  msgstr ""
471
 
472
- #: app/features/events.php:643 app/features/fes/form.php:315
473
  msgid "All Day Event"
474
  msgstr ""
475
 
476
- #: app/features/events.php:653 app/features/fes/form.php:318
477
  msgid "Hide Event Time"
478
  msgstr ""
479
 
480
- #: app/features/events.php:663 app/features/fes/form.php:321
481
  msgid "Hide Event End Time"
482
  msgstr ""
483
 
484
- #: app/features/events.php:668 app/features/events.php:672
485
  #: app/features/fes/form.php:325
486
  msgid "Time Comment"
487
  msgstr ""
488
 
489
- #: app/features/events.php:673 app/features/fes/form.php:326
490
  msgid ""
491
  "It shows next to event time on single event page. You can insert Timezone "
492
  "etc. in this field."
493
  msgstr ""
494
 
495
- #: app/features/events.php:675 app/features/events.php:807
496
- #: app/features/events.php:1106 app/features/events.php:1149
497
- #: app/features/events.php:1448 app/features/events.php:1507
498
- #: app/features/events.php:1684 app/features/events.php:1699
499
- #: app/features/events.php:1866 app/features/events.php:1879
500
- #: app/features/events.php:2009 app/features/events.php:2045
501
- #: app/features/events.php:2143 app/features/events.php:2158
502
- #: app/features/events.php:2188 app/features/events.php:2201
503
  #: app/features/fes/form.php:630 app/features/locations.php:299
504
- #: app/features/mec/booking.php:105 app/features/mec/booking.php:142
505
- #: app/features/mec/booking.php:158 app/features/mec/booking.php:265
506
- #: app/features/mec/booking.php:294 app/features/mec/booking.php:342
507
- #: app/features/mec/booking.php:352 app/features/mec/booking.php:374
508
- #: app/features/mec/booking.php:384 app/features/mec/dashboard.php:71
509
- #: app/features/mec/meta_boxes/display_options.php:62
510
- #: app/features/mec/meta_boxes/display_options.php:75
511
- #: app/features/mec/meta_boxes/display_options.php:88
512
- #: app/features/mec/meta_boxes/display_options.php:99
513
- #: app/features/mec/meta_boxes/display_options.php:111
514
- #: app/features/mec/meta_boxes/display_options.php:203
515
- #: app/features/mec/meta_boxes/display_options.php:215
516
- #: app/features/mec/meta_boxes/display_options.php:227
517
- #: app/features/mec/meta_boxes/display_options.php:240
518
- #: app/features/mec/meta_boxes/display_options.php:251
519
- #: app/features/mec/meta_boxes/display_options.php:264
520
- #: app/features/mec/meta_boxes/display_options.php:275
521
- #: app/features/mec/meta_boxes/display_options.php:356
522
- #: app/features/mec/meta_boxes/display_options.php:532
523
- #: app/features/mec/meta_boxes/display_options.php:815
524
- #: app/features/mec/meta_boxes/display_options.php:888
525
- #: app/features/mec/meta_boxes/display_options.php:900
526
- #: app/features/mec/meta_boxes/display_options.php:911
527
- #: app/features/mec/meta_boxes/display_options.php:943
528
- #: app/features/mec/meta_boxes/display_options.php:954
529
- #: app/features/mec/meta_boxes/display_options.php:967
530
- #: app/features/mec/meta_boxes/display_options.php:1002
531
- #: app/features/mec/meta_boxes/display_options.php:1051
532
- #: app/features/mec/meta_boxes/display_options.php:1062
533
- #: app/features/mec/meta_boxes/display_options.php:1073
534
- #: app/features/mec/meta_boxes/display_options.php:1138
535
- #: app/features/mec/meta_boxes/display_options.php:1151
536
- #: app/features/mec/meta_boxes/display_options.php:1164
537
- #: app/features/mec/meta_boxes/display_options.php:1177
538
- #: app/features/mec/meta_boxes/display_options.php:1190
539
- #: app/features/mec/modules.php:50 app/features/mec/modules.php:83
540
- #: app/features/mec/modules.php:100 app/features/mec/modules.php:135
541
- #: app/features/mec/modules.php:151 app/features/mec/modules.php:309
542
  #: app/features/mec/notifications.php:50 app/features/mec/notifications.php:107
543
  #: app/features/mec/notifications.php:159
544
  #: app/features/mec/notifications.php:218
545
  #: app/features/mec/notifications.php:286
546
  #: app/features/mec/notifications.php:349
547
  #: app/features/mec/notifications.php:360
548
- #: app/features/mec/notifications.php:422 app/features/mec/settings.php:63
549
- #: app/features/mec/settings.php:82 app/features/mec/settings.php:109
550
- #: app/features/mec/settings.php:144 app/features/mec/settings.php:165
551
- #: app/features/mec/settings.php:185 app/features/mec/settings.php:262
552
- #: app/features/mec/settings.php:336 app/features/mec/settings.php:353
553
- #: app/features/mec/settings.php:370 app/features/mec/settings.php:389
554
- #: app/features/mec/settings.php:403 app/features/mec/settings.php:431
555
- #: app/features/mec/settings.php:518 app/features/mec/settings.php:656
556
- #: app/features/mec/settings.php:673 app/features/mec/settings.php:778
557
- #: app/features/mec/settings.php:791 app/features/mec/settings.php:807
558
- #: app/features/mec/single.php:39 app/features/mec/single.php:55
559
- #: app/features/mec/single.php:74 app/features/mec/single.php:91
560
- #: app/features/mec/single.php:107 app/features/mec/single.php:121
561
- #: app/features/mec/single.php:159 app/features/mec/styling.php:199
562
  #: app/features/mec/styling.php:216 app/features/mec/styling.php:229
563
- #: app/features/organizers.php:272 app/skins/single.php:629
564
  #: app/skins/single/default.php:119 app/skins/single/default.php:331
565
  #: app/skins/single/m1.php:192 app/skins/single/m2.php:125
566
  #: app/skins/single/modern.php:133
567
  msgid "Read More"
568
  msgstr ""
569
 
570
- #: app/features/events.php:691 app/features/fes/form.php:332
 
 
 
 
571
  msgid "Event Repeating"
572
  msgstr ""
573
 
574
- #: app/features/events.php:695 app/features/fes/form.php:336
575
  msgid "Repeats"
576
  msgstr ""
577
 
578
- #: app/features/events.php:703 app/features/fes/form.php:338
579
  #: app/features/mec/dashboard.php:376 app/skins/full_calendar/tpl.php:109
580
  msgid "Daily"
581
  msgstr ""
582
 
583
- #: app/features/events.php:710 app/features/fes/form.php:339
584
  msgid "Every Weekday"
585
  msgstr ""
586
 
587
- #: app/features/events.php:717 app/features/fes/form.php:340
588
  msgid "Every Weekend"
589
  msgstr ""
590
 
591
- #: app/features/events.php:724 app/features/fes/form.php:341
592
  msgid "Certain Weekdays"
593
  msgstr ""
594
 
595
- #: app/features/events.php:731 app/features/fes/form.php:342
596
  #: app/skins/full_calendar/tpl.php:108
597
  msgid "Weekly"
598
  msgstr ""
599
 
600
- #: app/features/events.php:738 app/features/fes/form.php:343
601
  #: app/features/mec/dashboard.php:377 app/skins/full_calendar/tpl.php:107
602
  msgid "Monthly"
603
  msgstr ""
604
 
605
- #: app/features/events.php:745 app/features/fes/form.php:344
606
  #: app/features/mec/dashboard.php:378 app/skins/full_calendar/tpl.php:106
607
  msgid "Yearly"
608
  msgstr ""
609
 
610
- #: app/features/events.php:752 app/features/fes/form.php:345
611
  msgid "Custom Days"
612
  msgstr ""
613
 
614
- #: app/features/events.php:759 app/features/fes/form.php:346
615
  msgid "Advanced"
616
  msgstr ""
617
 
618
- #: app/features/events.php:764 app/features/fes/form.php:350
619
  msgid "Repeat Interval"
620
  msgstr ""
621
 
622
- #: app/features/events.php:766 app/features/fes/form.php:351
623
  msgid "Repeat interval"
624
  msgstr ""
625
 
626
- #: app/features/events.php:770 app/features/fes/form.php:354
627
  msgid "Week Days"
628
  msgstr ""
629
 
630
- #: app/features/events.php:772 app/features/fes/form.php:355
631
- #: app/features/mec/meta_boxes/display_options.php:760
632
  #: app/libraries/main.php:407
633
  msgid "Monday"
634
  msgstr ""
635
 
636
- #: app/features/events.php:775 app/features/fes/form.php:356
637
- #: app/features/mec/meta_boxes/display_options.php:761
638
  #: app/libraries/main.php:407
639
  msgid "Tuesday"
640
  msgstr ""
641
 
642
- #: app/features/events.php:778 app/features/fes/form.php:357
643
- #: app/features/mec/meta_boxes/display_options.php:762
644
  #: app/libraries/main.php:407
645
  msgid "Wednesday"
646
  msgstr ""
647
 
648
- #: app/features/events.php:781 app/features/fes/form.php:358
649
- #: app/features/mec/meta_boxes/display_options.php:763
650
  #: app/libraries/main.php:407
651
  msgid "Thursday"
652
  msgstr ""
653
 
654
- #: app/features/events.php:784 app/features/fes/form.php:359
655
- #: app/features/mec/meta_boxes/display_options.php:764
656
  #: app/libraries/main.php:407
657
  msgid "Friday"
658
  msgstr ""
659
 
660
- #: app/features/events.php:787 app/features/fes/form.php:360
661
- #: app/features/mec/meta_boxes/display_options.php:765
662
  #: app/libraries/main.php:407
663
  msgid "Saturday"
664
  msgstr ""
665
 
666
- #: app/features/events.php:790 app/features/fes/form.php:361
667
- #: app/features/mec/meta_boxes/display_options.php:759
668
  #: app/libraries/main.php:407
669
  msgid "Sunday"
670
  msgstr ""
671
 
672
- #: app/features/events.php:797 app/features/events.php:1747
673
- #: app/features/events.php:1775 app/features/events.php:1913
674
  #: app/features/fes/form.php:366 app/features/ix/import_f_calendar.php:42
675
  #: app/features/ix/import_g_calendar.php:51
676
  #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
677
  msgid "Start"
678
  msgstr ""
679
 
680
- #: app/features/events.php:799 app/features/events.php:1751
681
- #: app/features/events.php:1779 app/features/events.php:1917
682
  #: app/features/fes/form.php:367
683
  msgid "End"
684
  msgstr ""
685
 
686
- #: app/features/events.php:801 app/features/events.php:1143
687
- #: app/features/events.php:1254 app/features/events.php:1359
688
- #: app/features/events.php:1565 app/features/events.php:1730
689
- #: app/features/events.php:1902 app/features/events.php:1982
690
- #: app/features/events.php:2115 app/features/fes/form.php:368
691
  #: app/features/fes/form.php:842
692
  msgid "Add"
693
  msgstr ""
694
 
695
- #: app/features/events.php:804
696
  msgid "Custom Days Repeating"
697
  msgstr ""
698
 
699
- #: app/features/events.php:805
700
  msgid ""
701
  "Add certain days to event occurrence dates. If you have single day event, "
702
  "start and end date should be the same, If you have multiple day event the "
703
  "start and end dates must be commensurate with the initial date."
704
  msgstr ""
705
 
706
- #: app/features/events.php:841 app/features/fes/form.php:394
707
  msgid "First"
708
  msgstr ""
709
 
710
- #: app/features/events.php:883 app/features/fes/form.php:436
711
  msgid "Second"
712
  msgstr ""
713
 
714
- #: app/features/events.php:925 app/features/fes/form.php:478
715
  msgid "Third"
716
  msgstr ""
717
 
718
- #: app/features/events.php:967 app/features/fes/form.php:520
719
  msgid "Fourth"
720
  msgstr ""
721
 
722
- #: app/features/events.php:1009 app/features/fes/form.php:562
723
  msgid "Last"
724
  msgstr ""
725
 
726
- #: app/features/events.php:1056 app/features/fes/form.php:608
727
  msgid "Ends Repeat"
728
  msgstr ""
729
 
730
- #: app/features/events.php:1067 app/features/fes/form.php:612
731
  msgid "Never"
732
  msgstr ""
733
 
734
- #: app/features/events.php:1079 app/features/fes/form.php:617
735
  msgid "On"
736
  msgstr ""
737
 
738
- #: app/features/events.php:1095 app/features/fes/form.php:624
739
  msgid "After"
740
  msgstr ""
741
 
742
- #: app/features/events.php:1099 app/features/events.php:1103
743
  #: app/features/fes/form.php:626 app/features/fes/form.php:629
744
  msgid "Occurrences times"
745
  msgstr ""
746
 
747
- #: app/features/events.php:1104 app/features/fes/form.php:630
748
  msgid ""
749
  "The event will finish after certain repeats. For example if you set it to "
750
  "10, the event will finish after 10 repeats."
751
  msgstr ""
752
 
753
- #: app/features/events.php:1136 app/features/events.php:1146
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
754
  msgid "Exclude certain days"
755
  msgstr ""
756
 
757
- #: app/features/events.php:1141 app/features/events.php:2349
758
- #: app/features/mec/booking.php:450 app/features/profile/profile.php:31
759
  #: app/libraries/main.php:2030 app/libraries/main.php:2640
760
  #: app/modules/booking/steps/tickets.php:22
761
- #: app/modules/next-event/details.php:90 app/skins/single.php:609
762
  #: app/skins/single/default.php:68 app/skins/single/default.php:280
763
  #: app/skins/single/m1.php:16 app/skins/single/modern.php:166
764
  msgid "Date"
765
  msgstr ""
766
 
767
- #: app/features/events.php:1147
768
  msgid ""
769
  "Exclude certain days from event occurrence dates. Please note that you can "
770
  "exclude only single day occurrences and you cannot exclude one day from "
771
  "multiple day occurrences."
772
  msgstr ""
773
 
774
- #: app/features/events.php:1201 app/libraries/render.php:455
775
  msgid "Day 1"
776
  msgstr ""
777
 
778
- #: app/features/events.php:1223 app/features/mec/settings.php:627
779
- #: app/skins/single.php:899
780
  msgid "Hourly Schedule"
781
  msgstr ""
782
 
783
- #: app/features/events.php:1227
784
  msgid "Add Day"
785
  msgstr ""
786
 
787
- #: app/features/events.php:1228
788
  msgid ""
789
  "Add new days for schedule. For example if your event is multiple days, you "
790
  "can add a different schedule for each day!"
791
  msgstr ""
792
 
793
- #: app/features/events.php:1235
794
  #, php-format
795
  msgid "Day %s"
796
  msgstr ""
797
 
798
- #: app/features/events.php:1239 app/features/events.php:1278
799
- #: app/features/events.php:1313 app/features/events.php:1345
800
- #: app/features/events.php:1374 app/features/events.php:2130
801
- #: app/features/events.php:2177 app/features/events.php:3071
802
- #: app/features/events.php:3265 app/features/events.php:3307
803
  #: app/features/fes/form.php:225 app/features/ix.php:2743
804
- #: app/features/ix.php:2784 app/features/mec/booking.php:334
805
- #: app/features/mec/booking.php:366 app/features/mec/styling.php:111
806
  msgid "Title"
807
  msgstr ""
808
 
809
- #: app/features/events.php:1248 app/features/events.php:1285
810
- #: app/features/events.php:1318 app/features/events.php:1353
811
- #: app/features/events.php:1379 app/features/events.php:1723
812
- #: app/features/events.php:1761 app/features/events.php:1787
813
- #: app/features/events.php:1896 app/features/events.php:1923
814
- #: app/features/events.php:2022 app/features/events.php:2058
815
- #: app/features/events.php:2165 app/features/events.php:2207
816
- #: app/features/fes/list.php:78 app/features/mec/booking.php:277
817
- #: app/features/mec/booking.php:306 app/features/mec/booking.php:357
818
- #: app/features/mec/booking.php:389 app/libraries/main.php:2501
819
  #: app/libraries/main.php:2531 app/libraries/main.php:2560
820
  #: app/libraries/main.php:2590 app/libraries/main.php:2619
821
  #: app/libraries/main.php:2648 app/libraries/main.php:2677
@@ -826,193 +830,193 @@ msgstr ""
826
  msgid "Remove"
827
  msgstr ""
828
 
829
- #: app/features/events.php:1255 app/features/events.php:1360
830
  msgid "Add new hourly schedule row"
831
  msgstr ""
832
 
833
- #: app/features/events.php:1270 app/features/events.php:1307
834
- #: app/features/events.php:1369
835
  msgid "From e.g. 8:15"
836
  msgstr ""
837
 
838
- #: app/features/events.php:1274 app/features/events.php:1310
839
- #: app/features/events.php:1371
840
  msgid "To e.g. 8:45"
841
  msgstr ""
842
 
843
- #: app/features/events.php:1282 app/features/events.php:1316
844
- #: app/features/events.php:1377 app/features/events.php:1671
845
- #: app/features/events.php:1855
846
  msgid "Description"
847
  msgstr ""
848
 
849
- #: app/features/events.php:1288 app/features/events.php:1321
850
- #: app/features/events.php:1382 app/features/fes/form.php:838
851
- #: app/features/mec.php:343 app/features/mec/modules.php:49
852
- #: app/features/mec/settings.php:621 app/features/speakers.php:60
853
- #: app/libraries/main.php:559 app/libraries/main.php:4842
854
  #: app/modules/speakers/details.php:18
855
  msgid "Speakers"
856
  msgstr ""
857
 
858
- #: app/features/events.php:1341 app/features/events.php:1349
859
  msgid "New Day"
860
  msgstr ""
861
 
862
- #: app/features/events.php:1413 app/features/fes/form.php:683
863
- #: app/features/mec/settings.php:567
864
  msgid "Event Links"
865
  msgstr ""
866
 
867
- #: app/features/events.php:1416 app/features/events.php:1422
868
- #: app/features/fes/form.php:685 app/libraries/main.php:4865
869
  msgid "Event Link"
870
  msgstr ""
871
 
872
- #: app/features/events.php:1419 app/features/events.php:1435
873
  #: app/features/fes/form.php:686 app/features/fes/form.php:691
874
  msgid "eg. http://yoursite.com/your-event"
875
  msgstr ""
876
 
877
- #: app/features/events.php:1423
878
  msgid ""
879
  "If you fill it, it will be replaced instead of default event page link. "
880
  "Insert full link including http(s):// - Also, if you use advertising URL, "
881
  "can use URL Shortener"
882
  msgstr ""
883
 
884
- #: app/features/events.php:1425
885
  msgid "URL Shortener"
886
  msgstr ""
887
 
888
- #: app/features/events.php:1432 app/features/events.php:1445
889
- #: app/features/fes/form.php:690 app/libraries/main.php:4866
890
- #: app/skins/single.php:628 app/skins/single/default.php:118
891
  #: app/skins/single/default.php:330 app/skins/single/m1.php:191
892
  #: app/skins/single/m2.php:124 app/skins/single/modern.php:132
893
  #: app/widgets/single.php:107
894
  msgid "More Info"
895
  msgstr ""
896
 
897
- #: app/features/events.php:1438 app/features/fes/form.php:692
898
  msgid "More Information"
899
  msgstr ""
900
 
901
- #: app/features/events.php:1440 app/features/fes/form.php:694
902
  msgid "Current Window"
903
  msgstr ""
904
 
905
- #: app/features/events.php:1441 app/features/fes/form.php:695
906
  msgid "New Window"
907
  msgstr ""
908
 
909
- #: app/features/events.php:1446 app/features/fes/form.php:697
910
  msgid ""
911
  "If you fill it, it will be shown in event details page as an optional link. "
912
  "Insert full link including http(s)://"
913
  msgstr ""
914
 
915
- #: app/features/events.php:1488 app/features/events.php:1503
916
  msgid "Total booking limits"
917
  msgstr ""
918
 
919
- #: app/features/events.php:1500 app/features/events.php:1720
920
- #: app/features/events.php:1893 app/modules/booking/default.php:85
921
  #: app/modules/booking/steps/tickets.php:40
922
  #: app/skins/available_spot/tpl.php:145
923
  msgid "Unlimited"
924
  msgstr ""
925
 
926
- #: app/features/events.php:1506
927
  msgid ""
928
  "If you want to set a limit to all tickets, uncheck this checkbox and put a "
929
  "limitation number."
930
  msgstr ""
931
 
932
- #: app/features/events.php:1508
933
  msgid "Read About A Booking System"
934
  msgstr ""
935
 
936
- #: app/features/events.php:1516
937
  msgid "100"
938
  msgstr ""
939
 
940
- #: app/features/events.php:1521
941
  msgid "Total user booking limits"
942
  msgstr ""
943
 
944
- #: app/features/events.php:1533 app/features/events.php:1971
945
- #: app/features/events.php:2103 app/features/events.php:2291
946
  msgid "Inherit from global options"
947
  msgstr ""
948
 
949
- #: app/features/events.php:1536
950
  msgid "12"
951
  msgstr ""
952
 
953
- #: app/features/events.php:1557 app/libraries/book.php:60
954
- #: app/libraries/main.php:4870 app/modules/booking/steps/tickets.php:40
955
  msgid "Tickets"
956
  msgstr ""
957
 
958
- #: app/features/events.php:1560
959
  msgid ""
960
  "You're translating an event so MEC will use the original event for tickets "
961
  "and booking. You can only translate the ticket name and description. Please "
962
  "define exact tickets that you defined in the original event here."
963
  msgstr ""
964
 
965
- #: app/features/events.php:1579 app/features/events.php:1801
966
  msgid "Ticket Name"
967
  msgstr ""
968
 
969
- #: app/features/events.php:1584 app/features/events.php:1805
970
- #: app/features/events.php:3265 app/features/events.php:3307
971
  #: app/features/ix.php:2743 app/features/ix.php:2784
972
  msgid "Start Time"
973
  msgstr ""
974
 
975
- #: app/features/events.php:1626 app/features/events.php:1829
976
- #: app/features/events.php:3265 app/features/events.php:3307
977
  #: app/features/ix.php:2743 app/features/ix.php:2784
978
  msgid "End Time"
979
  msgstr ""
980
 
981
- #: app/features/events.php:1677 app/features/events.php:1681
982
- #: app/features/events.php:1755 app/features/events.php:1782
983
- #: app/features/events.php:1860 app/features/events.php:1863
984
- #: app/features/events.php:1919 app/features/events.php:2136
985
- #: app/features/events.php:2140 app/features/events.php:2182
986
- #: app/features/events.php:2185 app/features/mec/booking.php:338
987
- #: app/features/mec/booking.php:341 app/features/mec/booking.php:370
988
- #: app/features/mec/booking.php:373
989
  msgid "Price"
990
  msgstr ""
991
 
992
- #: app/features/events.php:1682 app/features/events.php:1864
993
  msgid "Insert 0 for free ticket. Only numbers please."
994
  msgstr ""
995
 
996
- #: app/features/events.php:1691 app/features/events.php:1696
997
- #: app/features/events.php:1873 app/features/events.php:1876
998
  msgid "Price Label"
999
  msgstr ""
1000
 
1001
- #: app/features/events.php:1697 app/features/events.php:1877
1002
  msgid "For showing on website. e.g. $15"
1003
  msgstr ""
1004
 
1005
- #: app/features/events.php:1707 app/features/events.php:1887
1006
  msgid "Available Tickets"
1007
  msgstr ""
1008
 
1009
- #: app/features/events.php:1728 app/features/events.php:1900
1010
  msgid "Price per Date"
1011
  msgstr ""
1012
 
1013
- #: app/features/events.php:1759 app/features/events.php:1785
1014
- #: app/features/events.php:1921 app/features/labels.php:60
1015
- #: app/features/mec/meta_boxes/display_options.php:829
1016
  #: app/features/mec/meta_boxes/search_form.php:66
1017
  #: app/features/mec/meta_boxes/search_form.php:128
1018
  #: app/features/mec/meta_boxes/search_form.php:190
@@ -1023,113 +1027,113 @@ msgstr ""
1023
  #: app/features/mec/meta_boxes/search_form.php:488
1024
  #: app/features/mec/meta_boxes/search_form.php:549
1025
  #: app/features/mec/meta_boxes/search_form.php:610
1026
- #: app/features/mec/settings.php:748 app/features/mec/single.php:219
1027
  #: app/libraries/skins.php:938
1028
  msgid "Label"
1029
  msgstr ""
1030
 
1031
- #: app/features/events.php:1959
1032
  msgid "Fees"
1033
  msgstr ""
1034
 
1035
- #: app/features/events.php:1996 app/features/events.php:2034
1036
- #: app/features/mec/booking.php:257 app/features/mec/booking.php:286
1037
  msgid "Fee Title"
1038
  msgstr ""
1039
 
1040
- #: app/features/events.php:2002 app/features/events.php:2006
1041
- #: app/features/events.php:2039 app/features/events.php:2042
1042
- #: app/features/mec/booking.php:261 app/features/mec/booking.php:264
1043
- #: app/features/mec/booking.php:290 app/features/mec/booking.php:293
1044
  msgid "Amount"
1045
  msgstr ""
1046
 
1047
- #: app/features/events.php:2007 app/features/events.php:2043
1048
- #: app/features/mec/booking.php:265 app/features/mec/booking.php:294
1049
  msgid ""
1050
  "Fee amount, considered as fixed amount if you set the type to amount "
1051
  "otherwise considered as percentage"
1052
  msgstr ""
1053
 
1054
- #: app/features/events.php:2016 app/features/events.php:2052
1055
- #: app/features/mec/booking.php:272 app/features/mec/booking.php:301
1056
  msgid "Percent"
1057
  msgstr ""
1058
 
1059
- #: app/features/events.php:2017 app/features/events.php:2053
1060
- #: app/features/mec/booking.php:273 app/features/mec/booking.php:302
1061
  msgid "Amount (Per Ticket)"
1062
  msgstr ""
1063
 
1064
- #: app/features/events.php:2018 app/features/events.php:2054
1065
- #: app/features/mec/booking.php:274 app/features/mec/booking.php:303
1066
  msgid "Amount (Per Booking)"
1067
  msgstr ""
1068
 
1069
- #: app/features/events.php:2091 app/features/mec/settings.php:645
1070
  msgid "Ticket Variations / Options"
1071
  msgstr ""
1072
 
1073
- #: app/features/events.php:2141 app/features/events.php:2186
1074
- #: app/features/mec/booking.php:342 app/features/mec/booking.php:374
1075
  msgid "Option Price"
1076
  msgstr ""
1077
 
1078
- #: app/features/events.php:2151 app/features/events.php:2155
1079
- #: app/features/events.php:2195 app/features/events.php:2198
1080
- #: app/features/mec/booking.php:348 app/features/mec/booking.php:351
1081
- #: app/features/mec/booking.php:380 app/features/mec/booking.php:383
1082
  msgid "Maximum Per Ticket"
1083
  msgstr ""
1084
 
1085
- #: app/features/events.php:2156 app/features/events.php:2199
1086
- #: app/features/mec/booking.php:352 app/features/mec/booking.php:384
1087
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
1088
  msgstr ""
1089
 
1090
- #: app/features/events.php:2345 app/features/mec/booking.php:446
1091
  #: app/libraries/main.php:2523
1092
  msgid "MEC Name"
1093
  msgstr ""
1094
 
1095
- #: app/features/events.php:2346 app/features/mec/booking.php:447
1096
  #: app/libraries/main.php:2552
1097
  msgid "MEC Email"
1098
  msgstr ""
1099
 
1100
- #: app/features/events.php:2347 app/features/mec/booking.php:448
1101
  #: app/libraries/main.php:2493
1102
  msgid "Text"
1103
  msgstr ""
1104
 
1105
- #: app/features/events.php:2350 app/features/mec/booking.php:451
1106
  #: app/features/organizers.php:103 app/features/organizers.php:148
1107
  #: app/features/speakers.php:116 app/features/speakers.php:180
1108
  #: app/features/speakers.php:249 app/libraries/main.php:2669
1109
  msgid "Tel"
1110
  msgstr ""
1111
 
1112
- #: app/features/events.php:2351 app/features/mec/booking.php:452
1113
  #: app/libraries/main.php:2611
1114
  msgid "File"
1115
  msgstr ""
1116
 
1117
- #: app/features/events.php:2352 app/features/mec/booking.php:453
1118
  #: app/libraries/main.php:2698
1119
  msgid "Textarea"
1120
  msgstr ""
1121
 
1122
- #: app/features/events.php:2353 app/features/mec/booking.php:454
1123
  #: app/libraries/main.php:2751
1124
  msgid "Checkboxes"
1125
  msgstr ""
1126
 
1127
- #: app/features/events.php:2354 app/features/mec/booking.php:455
1128
  #: app/libraries/main.php:2795
1129
  msgid "Radio Buttons"
1130
  msgstr ""
1131
 
1132
- #: app/features/events.php:2355 app/features/mec/booking.php:456
1133
  #: app/features/mec/meta_boxes/search_form.php:34
1134
  #: app/features/mec/meta_boxes/search_form.php:41
1135
  #: app/features/mec/meta_boxes/search_form.php:48
@@ -1202,40 +1206,40 @@ msgstr ""
1202
  msgid "Dropdown"
1203
  msgstr ""
1204
 
1205
- #: app/features/events.php:2356 app/features/mec/booking.php:457
1206
  #: app/libraries/main.php:2886
1207
  msgid "Agreement"
1208
  msgstr ""
1209
 
1210
- #: app/features/events.php:2357 app/features/mec/booking.php:458
1211
  #: app/libraries/main.php:2727
1212
  msgid "Paragraph"
1213
  msgstr ""
1214
 
1215
- #: app/features/events.php:2992 app/features/events.php:3009
1216
- #: app/features/events.php:3026 app/features/events.php:3043
1217
  #, php-format
1218
  msgid "Show all %s"
1219
  msgstr ""
1220
 
1221
- #: app/features/events.php:2992
1222
  msgid "labels"
1223
  msgstr ""
1224
 
1225
- #: app/features/events.php:3009
1226
  msgid "locations"
1227
  msgstr ""
1228
 
1229
- #: app/features/events.php:3026
1230
  msgid "organizers"
1231
  msgstr ""
1232
 
1233
- #: app/features/events.php:3073 app/features/events.php:3265
1234
- #: app/features/events.php:3307 app/features/ix.php:2743
1235
  #: app/features/ix.php:2784 app/features/locations.php:58
1236
  #: app/features/locations.php:230 app/features/locations.php:287
1237
  #: app/features/locations.php:289 app/features/locations.php:298
1238
- #: app/features/mec/meta_boxes/display_options.php:830
1239
  #: app/features/mec/meta_boxes/search_form.php:38
1240
  #: app/features/mec/meta_boxes/search_form.php:100
1241
  #: app/features/mec/meta_boxes/search_form.php:162
@@ -1246,18 +1250,18 @@ msgstr ""
1246
  #: app/features/mec/meta_boxes/search_form.php:460
1247
  #: app/features/mec/meta_boxes/search_form.php:521
1248
  #: app/features/mec/meta_boxes/search_form.php:582
1249
- #: app/features/mec/settings.php:722 app/features/mec/single.php:209
1250
- #: app/libraries/main.php:2024 app/libraries/main.php:4839
1251
- #: app/libraries/skins.php:834 app/skins/single.php:458
1252
- #: app/skins/single.php:876 app/skins/single/default.php:154
1253
  #: app/skins/single/default.php:366 app/skins/single/m1.php:155
1254
  #: app/skins/single/m2.php:87 app/skins/single/modern.php:94
1255
  msgid "Location"
1256
  msgstr ""
1257
 
1258
- #: app/features/events.php:3074 app/features/events.php:3265
1259
- #: app/features/events.php:3307 app/features/ix.php:2743
1260
- #: app/features/ix.php:2784 app/features/mec/meta_boxes/display_options.php:831
1261
  #: app/features/mec/meta_boxes/search_form.php:45
1262
  #: app/features/mec/meta_boxes/search_form.php:107
1263
  #: app/features/mec/meta_boxes/search_form.php:169
@@ -1268,68 +1272,68 @@ msgstr ""
1268
  #: app/features/mec/meta_boxes/search_form.php:467
1269
  #: app/features/mec/meta_boxes/search_form.php:528
1270
  #: app/features/mec/meta_boxes/search_form.php:589
1271
- #: app/features/mec/settings.php:728 app/features/mec/single.php:205
1272
  #: app/features/organizers.php:58 app/features/organizers.php:204
1273
  #: app/features/organizers.php:260 app/features/organizers.php:262
1274
- #: app/features/organizers.php:271 app/libraries/main.php:4841
1275
- #: app/libraries/skins.php:860 app/skins/single.php:764
1276
  #: app/skins/single/default.php:195 app/skins/single/default.php:407
1277
  #: app/skins/single/m1.php:90 app/skins/single/m2.php:22
1278
  #: app/skins/single/modern.php:31
1279
  msgid "Organizer"
1280
  msgstr ""
1281
 
1282
- #: app/features/events.php:3078
1283
  msgid "Repeat"
1284
  msgstr ""
1285
 
1286
- #: app/features/events.php:3079
1287
  msgid "Author"
1288
  msgstr ""
1289
 
1290
- #: app/features/events.php:3200 app/features/events.php:3201
1291
  msgid "iCal Export"
1292
  msgstr ""
1293
 
1294
- #: app/features/events.php:3203 app/features/events.php:3204
1295
  msgid "CSV Export"
1296
  msgstr ""
1297
 
1298
- #: app/features/events.php:3206 app/features/events.php:3207
1299
  msgid "MS Excel Export"
1300
  msgstr ""
1301
 
1302
- #: app/features/events.php:3209 app/features/events.php:3210
1303
  msgid "XML Export"
1304
  msgstr ""
1305
 
1306
- #: app/features/events.php:3212 app/features/events.php:3213
1307
  msgid "JSON Export"
1308
  msgstr ""
1309
 
1310
- #: app/features/events.php:3215 app/features/events.php:3216
1311
- #: app/features/events.php:3397
1312
  msgid "Duplicate"
1313
  msgstr ""
1314
 
1315
- #: app/features/events.php:3265 app/features/events.php:3307
1316
  #: app/features/ix.php:2743 app/features/ix.php:2784
1317
  #: app/features/labels.php:177 app/features/locations.php:229
1318
  #: app/features/organizers.php:203 app/features/speakers.php:246
1319
  msgid "ID"
1320
  msgstr ""
1321
 
1322
- #: app/features/events.php:3265 app/features/events.php:3307
1323
  #: app/features/ix.php:2743 app/features/ix.php:2784
1324
  msgid "Link"
1325
  msgstr ""
1326
 
1327
- #: app/features/events.php:3265 app/features/events.php:3307
1328
  #, php-format
1329
  msgid "%s Tel"
1330
  msgstr ""
1331
 
1332
- #: app/features/events.php:3265 app/features/events.php:3307
1333
  #, php-format
1334
  msgid "%s Email"
1335
  msgstr ""
@@ -1414,7 +1418,7 @@ msgid ""
1414
  "Insert full link including http(s)://"
1415
  msgstr ""
1416
 
1417
- #: app/features/fes/form.php:723 app/features/mec/settings.php:579
1418
  msgid "Featured Image"
1419
  msgstr ""
1420
 
@@ -1424,15 +1428,15 @@ msgstr ""
1424
 
1425
  #: app/features/fes/form.php:770 app/features/labels.php:61
1426
  #: app/features/labels.php:221 app/features/mec.php:336
1427
- #: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4836
1428
- #: app/skins/single.php:657 app/skins/single/default.php:133
1429
  #: app/skins/single/default.php:345 app/skins/single/m1.php:64
1430
  #: app/skins/single/modern.php:214
1431
  msgid "Labels"
1432
  msgstr ""
1433
 
1434
  #: app/features/fes/form.php:816 app/features/mec.php:334
1435
- #: app/features/mec/meta_boxes/filter.php:138
1436
  msgid "Tags"
1437
  msgstr ""
1438
 
@@ -1633,7 +1637,7 @@ msgid ""
1633
  "This will export all of your website events' data into your desired format."
1634
  msgstr ""
1635
 
1636
- #: app/features/ix/export.php:25 app/features/mec/modules.php:175
1637
  msgid "iCal"
1638
  msgstr ""
1639
 
@@ -1737,9 +1741,9 @@ msgstr ""
1737
  msgid "Add to Google Calendar"
1738
  msgstr ""
1739
 
1740
- #: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:588
1741
- #: app/features/mec/modules.php:389 app/features/mec/notifications.php:541
1742
- #: app/features/mec/settings.php:889 app/features/mec/single.php:266
1743
  msgid "Checking ..."
1744
  msgstr ""
1745
 
@@ -1781,31 +1785,31 @@ msgstr ""
1781
  msgid "ICS Feed"
1782
  msgstr ""
1783
 
1784
- #: app/features/ix/import.php:46 app/features/mec/booking.php:88
1785
- #: app/features/mec/booking.php:223 app/features/mec/booking.php:241
1786
- #: app/features/mec/booking.php:318
1787
- #: app/features/mec/meta_boxes/display_options.php:146
1788
- #: app/features/mec/meta_boxes/display_options.php:311
1789
- #: app/features/mec/modules.php:67 app/features/mec/modules.php:208
1790
- #: app/features/mec/modules.php:225
1791
  #, php-format
1792
  msgid "%s is required to use this feature."
1793
  msgstr ""
1794
 
1795
  #: app/features/ix/import.php:46 app/features/ix/sync.php:22
1796
- #: app/features/mec/booking.php:88 app/features/mec/booking.php:223
1797
- #: app/features/mec/booking.php:241 app/features/mec/booking.php:318
1798
- #: app/features/mec/meta_boxes/display_options.php:146
1799
- #: app/features/mec/meta_boxes/display_options.php:311
1800
- #: app/features/mec/meta_boxes/display_options.php:326
1801
- #: app/features/mec/meta_boxes/display_options.php:453
1802
- #: app/features/mec/meta_boxes/display_options.php:504
1803
- #: app/features/mec/meta_boxes/display_options.php:611
1804
- #: app/features/mec/meta_boxes/display_options.php:718
1805
- #: app/features/mec/meta_boxes/display_options.php:791
1806
- #: app/features/mec/meta_boxes/display_options.php:991
1807
- #: app/features/mec/modules.php:67 app/features/mec/modules.php:208
1808
- #: app/features/mec/modules.php:225
1809
  msgid "Pro version of Modern Events Calendar"
1810
  msgstr ""
1811
 
@@ -1957,7 +1961,7 @@ msgid "Auto Synchronization"
1957
  msgstr ""
1958
 
1959
  #: app/features/ix/sync.php:22
1960
- #: app/features/mec/meta_boxes/display_options.php:791
1961
  #, php-format
1962
  msgid "%s is required to use synchronization feature."
1963
  msgstr ""
@@ -2105,16 +2109,16 @@ msgid "Select label color"
2105
  msgstr ""
2106
 
2107
  #: app/features/labels.php:112 app/features/labels.php:139
2108
- #: app/features/mec/meta_boxes/display_options.php:34
2109
- #: app/features/mec/meta_boxes/display_options.php:173
2110
- #: app/features/mec/meta_boxes/display_options.php:331
2111
- #: app/features/mec/meta_boxes/display_options.php:509
2112
- #: app/features/mec/meta_boxes/display_options.php:559
2113
- #: app/features/mec/meta_boxes/display_options.php:723
2114
- #: app/features/mec/meta_boxes/display_options.php:873
2115
- #: app/features/mec/meta_boxes/display_options.php:930
2116
- #: app/features/mec/meta_boxes/display_options.php:1022
2117
- #: app/features/mec/meta_boxes/display_options.php:1108
2118
  msgid "Style"
2119
  msgstr ""
2120
 
@@ -2136,7 +2140,7 @@ msgid "Featured"
2136
  msgstr ""
2137
 
2138
  #: app/features/labels.php:118 app/features/labels.php:143
2139
- #: app/libraries/main.php:5082 app/skins/agenda/render.php:41
2140
  #: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:45
2141
  #: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
2142
  #: app/skins/daily_view/render.php:52 app/skins/grid/render.php:53
@@ -2170,8 +2174,8 @@ msgid "Event %s"
2170
  msgstr ""
2171
 
2172
  #: app/features/locations.php:59 app/features/mec.php:337
2173
- #: app/features/mec/dashboard.php:243 app/features/mec/meta_boxes/filter.php:87
2174
- #: app/libraries/main.php:4838
2175
  msgid "Locations"
2176
  msgstr ""
2177
 
@@ -2242,7 +2246,7 @@ msgstr ""
2242
  msgid "eg. City Hall"
2243
  msgstr ""
2244
 
2245
- #: app/features/locations.php:310 app/features/mec/settings.php:609
2246
  #: app/widgets/single.php:115
2247
  msgid "Event Location"
2248
  msgstr ""
@@ -2276,7 +2280,7 @@ msgstr ""
2276
  msgid "Don't show map in single event page"
2277
  msgstr ""
2278
 
2279
- #: app/features/locations.php:356 app/libraries/main.php:4872
2280
  msgid "Other Locations"
2281
  msgstr ""
2282
 
@@ -2327,8 +2331,8 @@ msgid "Support"
2327
  msgstr ""
2328
 
2329
  #: app/features/mec.php:338 app/features/mec/dashboard.php:250
2330
- #: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
2331
- #: app/libraries/main.php:4840
2332
  msgid "Organizers"
2333
  msgstr ""
2334
 
@@ -2431,24 +2435,30 @@ msgid ""
2431
  "your host provider in this regard."
2432
  msgstr ""
2433
 
2434
- #: app/features/mec/booking.php:69 app/features/mec/booking.php:464
2435
- #: app/features/mec/booking.php:544 app/features/mec/booking.php:553
2436
- #: app/features/mec/booking.php:563 app/features/mec/booking.php:605
2437
- #: app/features/mec/booking.php:619 app/features/mec/messages.php:11
2438
- #: app/features/mec/messages.php:45 app/features/mec/messages.php:54
2439
- #: app/features/mec/messages.php:88 app/features/mec/messages.php:97
2440
- #: app/features/mec/modules.php:22 app/features/mec/modules.php:354
2441
- #: app/features/mec/modules.php:364 app/features/mec/modules.php:406
2442
- #: app/features/mec/modules.php:420 app/features/mec/notifications.php:10
 
 
 
 
 
 
2443
  #: app/features/mec/notifications.php:450
2444
  #: app/features/mec/notifications.php:462
2445
  #: app/features/mec/notifications.php:558
2446
- #: app/features/mec/notifications.php:572 app/features/mec/settings.php:31
2447
- #: app/features/mec/settings.php:838 app/features/mec/settings.php:848
2448
- #: app/features/mec/settings.php:906 app/features/mec/settings.php:920
2449
- #: app/features/mec/single.php:14 app/features/mec/single.php:231
2450
- #: app/features/mec/single.php:241 app/features/mec/single.php:283
2451
- #: app/features/mec/single.php:297 app/features/mec/styles.php:11
2452
  #: app/features/mec/styles.php:31 app/features/mec/styles.php:40
2453
  #: app/features/mec/styles.php:77 app/features/mec/styles.php:86
2454
  #: app/features/mec/styling.php:33 app/features/mec/styling.php:238
@@ -2457,184 +2467,188 @@ msgstr ""
2457
  msgid "Save Changes"
2458
  msgstr ""
2459
 
2460
- #: app/features/mec/booking.php:93
2461
  msgid "Enable booking module"
2462
  msgstr ""
2463
 
2464
- #: app/features/mec/booking.php:94
2465
  msgid ""
2466
  "After enabling and saving the settings, reloading the page will add 'payment "
2467
  "Gateways' to the settings and a new menu item on the Dashboard"
2468
  msgstr ""
2469
 
2470
- #: app/features/mec/booking.php:99 app/features/mec/booking.php:104
2471
- #: app/features/mec/modules.php:303 app/features/mec/modules.php:308
2472
  msgid "Date Format"
2473
  msgstr ""
2474
 
2475
- #: app/features/mec/booking.php:105
2476
  msgid "Default is Y-m-d"
2477
  msgstr ""
2478
 
2479
- #: app/features/mec/booking.php:112
2480
- #: app/features/mec/meta_boxes/display_options.php:117
2481
- #: app/features/mec/meta_boxes/display_options.php:292
2482
- #: app/features/mec/meta_boxes/display_options.php:362
2483
- #: app/features/mec/meta_boxes/display_options.php:821
2484
- #: app/features/mec/meta_boxes/display_options.php:1088
2485
- #: app/features/mec/meta_boxes/display_options.php:1196
2486
  msgid "Limit"
2487
  msgstr ""
2488
 
2489
- #: app/features/mec/booking.php:114
2490
  msgid "Default is empty"
2491
  msgstr ""
2492
 
2493
- #: app/features/mec/booking.php:117
2494
  msgid "Booking Limit"
2495
  msgstr ""
2496
 
2497
- #: app/features/mec/booking.php:118
2498
  msgid ""
2499
  "Total tickets that a user can book. It is useful if you're providing free "
2500
  "tickets. Leave it empty for unlimited booking."
2501
  msgstr ""
2502
 
2503
- #: app/features/mec/booking.php:125
2504
  msgid "Maximum Dates"
2505
  msgstr ""
2506
 
2507
- #: app/features/mec/booking.php:127
2508
  msgid "Default is 6"
2509
  msgstr ""
2510
 
2511
- #: app/features/mec/booking.php:131 app/features/mec/booking.php:141
2512
  msgid "Thank You Page"
2513
  msgstr ""
2514
 
2515
- #: app/features/mec/booking.php:142
2516
  msgid ""
2517
  "User redirects to this page after booking. Leave it empty if you want to "
2518
  "disable it."
2519
  msgstr ""
2520
 
2521
- #: app/features/mec/booking.php:153
2522
  msgid "Enable Express Attendees Form"
2523
  msgstr ""
2524
 
2525
- #: app/features/mec/booking.php:157 app/modules/booking/steps/form.php:52
2526
  msgid "Attendees Form"
2527
  msgstr ""
2528
 
2529
- #: app/features/mec/booking.php:158
2530
  msgid ""
2531
  "Users are able to apply first attendee information for other attendees in "
2532
  "the booking form."
2533
  msgstr ""
2534
 
2535
- #: app/features/mec/booking.php:171
2536
  msgid "Enable Invoice"
2537
  msgstr ""
2538
 
2539
- #: app/features/mec/booking.php:175
 
 
 
 
2540
  msgid "Email verification"
2541
  msgstr ""
2542
 
2543
- #: app/features/mec/booking.php:181
2544
  msgid "Auto verification for free bookings"
2545
  msgstr ""
2546
 
2547
- #: app/features/mec/booking.php:190
2548
  msgid "Auto verification for paid bookings"
2549
  msgstr ""
2550
 
2551
- #: app/features/mec/booking.php:194 app/features/mec/notifications.php:147
2552
  #: app/libraries/main.php:573
2553
  msgid "Booking Confirmation"
2554
  msgstr ""
2555
 
2556
- #: app/features/mec/booking.php:200
2557
  msgid "Auto confirmation for free bookings"
2558
  msgstr ""
2559
 
2560
- #: app/features/mec/booking.php:209
2561
  msgid "Auto confirmation for paid bookings"
2562
  msgstr ""
2563
 
2564
- #: app/features/mec/booking.php:228
2565
  msgid "Enable coupons module"
2566
  msgstr ""
2567
 
2568
- #: app/features/mec/booking.php:230
2569
  msgid ""
2570
  "After enabling and saving the settings,, you should reload the page to see a "
2571
  "new menu on the Dashboard > Booking"
2572
  msgstr ""
2573
 
2574
- #: app/features/mec/booking.php:238 app/libraries/main.php:552
2575
  msgid "Taxes / Fees"
2576
  msgstr ""
2577
 
2578
- #: app/features/mec/booking.php:246
2579
  msgid "Enable taxes / fees module"
2580
  msgstr ""
2581
 
2582
- #: app/features/mec/booking.php:251
2583
  msgid "Add Fee"
2584
  msgstr ""
2585
 
2586
- #: app/features/mec/booking.php:315 app/libraries/main.php:553
2587
  msgid "Ticket Variations & Options"
2588
  msgstr ""
2589
 
2590
- #: app/features/mec/booking.php:323
2591
  msgid "Enable ticket options module"
2592
  msgstr ""
2593
 
2594
- #: app/features/mec/booking.php:328
2595
  msgid "Add Variation / Option"
2596
  msgstr ""
2597
 
2598
- #: app/features/mec/booking.php:531
2599
  msgid "Enable Organizer Payment Module"
2600
  msgstr ""
2601
 
2602
- #: app/features/mec/booking.php:535
2603
  msgid "Organizer Payment"
2604
  msgstr ""
2605
 
2606
- #: app/features/mec/booking.php:536
2607
  msgid ""
2608
  "By enabling this module, organizers are able to insert their own payment "
2609
  "credentials for enabled gateways per event and receive the payments directly!"
2610
  msgstr ""
2611
 
2612
- #: app/features/mec/booking.php:583 app/features/mec/messages.php:72
2613
- #: app/features/mec/modules.php:384 app/features/mec/notifications.php:536
2614
- #: app/features/mec/settings.php:884 app/features/mec/single.php:261
2615
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:292
2616
  msgid "Saved"
2617
  msgstr ""
2618
 
2619
- #: app/features/mec/booking.php:584 app/features/mec/messages.php:73
2620
- #: app/features/mec/modules.php:385 app/features/mec/notifications.php:537
2621
- #: app/features/mec/settings.php:885 app/features/mec/single.php:262
2622
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:293
2623
  msgid "Settings Saved!"
2624
  msgstr ""
2625
 
2626
- #: app/features/mec/booking.php:586 app/features/mec/booking.php:608
2627
- #: app/features/mec/modules.php:387 app/features/mec/modules.php:409
2628
  #: app/features/mec/notifications.php:539
2629
- #: app/features/mec/notifications.php:561 app/features/mec/settings.php:887
2630
- #: app/features/mec/settings.php:909 app/features/mec/single.php:264
2631
- #: app/features/mec/single.php:286 app/libraries/main.php:5081
2632
  msgid "Verified"
2633
  msgstr ""
2634
 
2635
- #: app/features/mec/booking.php:610 app/features/mec/modules.php:411
2636
- #: app/features/mec/notifications.php:563 app/features/mec/settings.php:911
2637
- #: app/features/mec/single.php:288
2638
  msgid "Please Refresh Page"
2639
  msgstr ""
2640
 
@@ -2720,7 +2734,7 @@ msgstr ""
2720
  msgid "You cannot access this section."
2721
  msgstr ""
2722
 
2723
- #: app/features/mec/dashboard.php:261 app/features/mec/settings.php:347
2724
  msgid "Upcoming Events"
2725
  msgstr ""
2726
 
@@ -2806,583 +2820,583 @@ msgid ""
2806
  "phrases from language files."
2807
  msgstr ""
2808
 
2809
- #: app/features/mec/meta_boxes/display_options.php:18
2810
  msgid "Skin"
2811
  msgstr ""
2812
 
2813
- #: app/features/mec/meta_boxes/display_options.php:36
2814
- #: app/features/mec/meta_boxes/display_options.php:175
2815
- #: app/features/mec/meta_boxes/display_options.php:561
2816
- #: app/features/mec/meta_boxes/display_options.php:875
2817
- #: app/features/mec/settings.php:211 app/features/mec/settings.php:235
2818
- #: app/features/mec/settings.php:244 app/features/mec/settings.php:285
2819
- #: app/features/mec/settings.php:309 app/features/mec/settings.php:318
2820
  msgid "Classic"
2821
  msgstr ""
2822
 
2823
- #: app/features/mec/meta_boxes/display_options.php:37
2824
- #: app/features/mec/meta_boxes/display_options.php:177
2825
- #: app/features/mec/settings.php:236 app/features/mec/settings.php:246
2826
- #: app/features/mec/settings.php:310 app/features/mec/settings.php:320
2827
  msgid "Minimal"
2828
  msgstr ""
2829
 
2830
- #: app/features/mec/meta_boxes/display_options.php:38
2831
- #: app/features/mec/meta_boxes/display_options.php:178
2832
- #: app/features/mec/meta_boxes/display_options.php:511
2833
- #: app/features/mec/meta_boxes/display_options.php:563
2834
- #: app/features/mec/meta_boxes/display_options.php:725
2835
- #: app/features/mec/meta_boxes/display_options.php:877
2836
- #: app/features/mec/settings.php:213 app/features/mec/settings.php:226
2837
- #: app/features/mec/settings.php:237 app/features/mec/settings.php:247
2838
- #: app/features/mec/settings.php:287 app/features/mec/settings.php:300
2839
- #: app/features/mec/settings.php:311 app/features/mec/settings.php:321
2840
  msgid "Modern"
2841
  msgstr ""
2842
 
2843
- #: app/features/mec/meta_boxes/display_options.php:39
2844
- #: app/features/mec/settings.php:238 app/features/mec/settings.php:312
2845
  msgid "Standard"
2846
  msgstr ""
2847
 
2848
- #: app/features/mec/meta_boxes/display_options.php:40
2849
- #: app/features/mec/settings.php:239 app/features/mec/settings.php:313
2850
  msgid "Accordion"
2851
  msgstr ""
2852
 
2853
- #: app/features/mec/meta_boxes/display_options.php:46
2854
- #: app/features/mec/meta_boxes/display_options.php:187
2855
- #: app/features/mec/meta_boxes/display_options.php:339
2856
- #: app/features/mec/meta_boxes/display_options.php:618
2857
- #: app/features/mec/meta_boxes/display_options.php:651
2858
- #: app/features/mec/meta_boxes/display_options.php:798
2859
- #: app/features/mec/meta_boxes/display_options.php:1033
2860
- #: app/features/mec/meta_boxes/display_options.php:1120
2861
- msgid "Today"
2862
- msgstr ""
2863
-
2864
- #: app/features/mec/meta_boxes/display_options.php:47
2865
- #: app/features/mec/meta_boxes/display_options.php:188
2866
- #: app/features/mec/meta_boxes/display_options.php:340
2867
- #: app/features/mec/meta_boxes/display_options.php:619
2868
- #: app/features/mec/meta_boxes/display_options.php:652
2869
- #: app/features/mec/meta_boxes/display_options.php:799
2870
- #: app/features/mec/meta_boxes/display_options.php:1034
2871
- #: app/features/mec/meta_boxes/display_options.php:1121
2872
- msgid "Tomorrow"
2873
- msgstr ""
2874
-
2875
- #: app/features/mec/meta_boxes/display_options.php:48
2876
- #: app/features/mec/meta_boxes/display_options.php:189
2877
- #: app/features/mec/meta_boxes/display_options.php:341
2878
- #: app/features/mec/meta_boxes/display_options.php:394
2879
- #: app/features/mec/meta_boxes/display_options.php:571
2880
- #: app/features/mec/meta_boxes/display_options.php:620
2881
- #: app/features/mec/meta_boxes/display_options.php:653
2882
- #: app/features/mec/meta_boxes/display_options.php:688
2883
- #: app/features/mec/meta_boxes/display_options.php:734
2884
- #: app/features/mec/meta_boxes/display_options.php:800
2885
- #: app/features/mec/meta_boxes/display_options.php:1035
2886
- #: app/features/mec/meta_boxes/display_options.php:1122
2887
- msgid "Start of Current Month"
2888
- msgstr ""
2889
-
2890
- #: app/features/mec/meta_boxes/display_options.php:49
2891
- #: app/features/mec/meta_boxes/display_options.php:190
2892
- #: app/features/mec/meta_boxes/display_options.php:342
2893
- #: app/features/mec/meta_boxes/display_options.php:395
2894
- #: app/features/mec/meta_boxes/display_options.php:572
2895
- #: app/features/mec/meta_boxes/display_options.php:621
2896
- #: app/features/mec/meta_boxes/display_options.php:654
2897
- #: app/features/mec/meta_boxes/display_options.php:689
2898
- #: app/features/mec/meta_boxes/display_options.php:735
2899
- #: app/features/mec/meta_boxes/display_options.php:801
2900
- #: app/features/mec/meta_boxes/display_options.php:1036
2901
- #: app/features/mec/meta_boxes/display_options.php:1123
2902
- msgid "Start of Next Month"
2903
- msgstr ""
2904
-
2905
  #: app/features/mec/meta_boxes/display_options.php:50
2906
  #: app/features/mec/meta_boxes/display_options.php:191
2907
  #: app/features/mec/meta_boxes/display_options.php:343
2908
- #: app/features/mec/meta_boxes/display_options.php:396
2909
- #: app/features/mec/meta_boxes/display_options.php:519
2910
- #: app/features/mec/meta_boxes/display_options.php:573
2911
  #: app/features/mec/meta_boxes/display_options.php:622
2912
  #: app/features/mec/meta_boxes/display_options.php:655
2913
- #: app/features/mec/meta_boxes/display_options.php:690
2914
- #: app/features/mec/meta_boxes/display_options.php:736
2915
  #: app/features/mec/meta_boxes/display_options.php:802
2916
  #: app/features/mec/meta_boxes/display_options.php:1037
2917
  #: app/features/mec/meta_boxes/display_options.php:1124
2918
- msgid "On a certain date"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2919
  msgstr ""
2920
 
2921
  #: app/features/mec/meta_boxes/display_options.php:53
2922
  #: app/features/mec/meta_boxes/display_options.php:194
2923
  #: app/features/mec/meta_boxes/display_options.php:346
2924
  #: app/features/mec/meta_boxes/display_options.php:399
2925
- #: app/features/mec/meta_boxes/display_options.php:522
2926
  #: app/features/mec/meta_boxes/display_options.php:576
2927
  #: app/features/mec/meta_boxes/display_options.php:625
2928
- #: app/features/mec/meta_boxes/display_options.php:659
2929
  #: app/features/mec/meta_boxes/display_options.php:693
2930
  #: app/features/mec/meta_boxes/display_options.php:739
2931
  #: app/features/mec/meta_boxes/display_options.php:805
2932
  #: app/features/mec/meta_boxes/display_options.php:1040
2933
  #: app/features/mec/meta_boxes/display_options.php:1127
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2934
  #, php-format
2935
  msgid "eg. %s"
2936
  msgstr ""
2937
 
2938
- #: app/features/mec/meta_boxes/display_options.php:57
2939
  #: app/features/mec/meta_boxes/display_options.php:61
2940
- #: app/features/mec/meta_boxes/display_options.php:68
2941
- #: app/features/mec/meta_boxes/display_options.php:74
2942
- #: app/features/mec/meta_boxes/display_options.php:81
2943
- #: app/features/mec/meta_boxes/display_options.php:87
2944
- #: app/features/mec/meta_boxes/display_options.php:94
2945
  #: app/features/mec/meta_boxes/display_options.php:98
2946
- #: app/features/mec/meta_boxes/display_options.php:105
2947
- #: app/features/mec/meta_boxes/display_options.php:110
2948
- #: app/features/mec/meta_boxes/display_options.php:198
2949
  #: app/features/mec/meta_boxes/display_options.php:202
2950
- #: app/features/mec/meta_boxes/display_options.php:209
2951
- #: app/features/mec/meta_boxes/display_options.php:214
2952
- #: app/features/mec/meta_boxes/display_options.php:221
2953
- #: app/features/mec/meta_boxes/display_options.php:226
2954
- #: app/features/mec/meta_boxes/display_options.php:233
2955
- #: app/features/mec/meta_boxes/display_options.php:239
2956
- #: app/features/mec/meta_boxes/display_options.php:246
2957
  #: app/features/mec/meta_boxes/display_options.php:250
2958
- #: app/features/mec/meta_boxes/display_options.php:257
2959
- #: app/features/mec/meta_boxes/display_options.php:263
2960
- #: app/features/mec/meta_boxes/display_options.php:270
2961
  #: app/features/mec/meta_boxes/display_options.php:274
2962
- #: app/features/mec/meta_boxes/display_options.php:350
2963
- #: app/features/mec/meta_boxes/display_options.php:355
2964
- #: app/features/mec/meta_boxes/display_options.php:526
2965
- #: app/features/mec/meta_boxes/display_options.php:531
2966
- #: app/features/mec/meta_boxes/display_options.php:809
2967
- #: app/features/mec/meta_boxes/display_options.php:814
2968
- #: app/features/mec/meta_boxes/display_options.php:881
2969
- #: app/features/mec/meta_boxes/display_options.php:887
2970
- #: app/features/mec/meta_boxes/display_options.php:894
2971
- #: app/features/mec/meta_boxes/display_options.php:899
2972
- #: app/features/mec/meta_boxes/display_options.php:906
2973
  #: app/features/mec/meta_boxes/display_options.php:910
2974
- #: app/features/mec/meta_boxes/display_options.php:938
2975
  #: app/features/mec/meta_boxes/display_options.php:942
2976
- #: app/features/mec/meta_boxes/display_options.php:949
2977
  #: app/features/mec/meta_boxes/display_options.php:953
2978
- #: app/features/mec/meta_boxes/display_options.php:960
2979
- #: app/features/mec/meta_boxes/display_options.php:966
2980
- #: app/features/mec/meta_boxes/display_options.php:996
2981
- #: app/features/mec/meta_boxes/display_options.php:1001
2982
- #: app/features/mec/meta_boxes/display_options.php:1044
2983
- #: app/features/mec/meta_boxes/display_options.php:1050
2984
- #: app/features/mec/meta_boxes/display_options.php:1057
2985
  #: app/features/mec/meta_boxes/display_options.php:1061
2986
- #: app/features/mec/meta_boxes/display_options.php:1068
2987
  #: app/features/mec/meta_boxes/display_options.php:1072
2988
- #: app/features/mec/meta_boxes/display_options.php:1131
2989
- #: app/features/mec/meta_boxes/display_options.php:1137
2990
- #: app/features/mec/meta_boxes/display_options.php:1144
2991
- #: app/features/mec/meta_boxes/display_options.php:1150
2992
- #: app/features/mec/meta_boxes/display_options.php:1157
2993
- #: app/features/mec/meta_boxes/display_options.php:1163
2994
- #: app/features/mec/meta_boxes/display_options.php:1170
2995
- #: app/features/mec/meta_boxes/display_options.php:1176
2996
- #: app/features/mec/meta_boxes/display_options.php:1183
2997
- #: app/features/mec/meta_boxes/display_options.php:1189
 
2998
  msgid "Date Formats"
2999
  msgstr ""
3000
 
3001
- #: app/features/mec/meta_boxes/display_options.php:62
3002
- #: app/features/mec/meta_boxes/display_options.php:251
3003
  msgid "Default value is \"M d Y\""
3004
  msgstr ""
3005
 
3006
- #: app/features/mec/meta_boxes/display_options.php:75
3007
  msgid "Default values are d, M and l"
3008
  msgstr ""
3009
 
3010
- #: app/features/mec/meta_boxes/display_options.php:88
3011
- #: app/features/mec/meta_boxes/display_options.php:240
3012
- #: app/features/mec/meta_boxes/display_options.php:264
3013
- #: app/features/mec/meta_boxes/display_options.php:1138
3014
- #: app/features/mec/meta_boxes/display_options.php:1151
3015
- #: app/features/mec/meta_boxes/display_options.php:1164
3016
- #: app/features/mec/meta_boxes/display_options.php:1177
3017
- #: app/features/mec/meta_boxes/display_options.php:1190
3018
  msgid "Default values are d, F and l"
3019
  msgstr ""
3020
 
3021
- #: app/features/mec/meta_boxes/display_options.php:99
3022
  msgid "Default value is \"M d\""
3023
  msgstr ""
3024
 
3025
- #: app/features/mec/meta_boxes/display_options.php:111
3026
  msgid "TDefault values are d and F"
3027
  msgstr ""
3028
 
3029
- #: app/features/mec/meta_boxes/display_options.php:118
3030
- #: app/features/mec/meta_boxes/display_options.php:293
3031
- #: app/features/mec/meta_boxes/display_options.php:363
3032
- #: app/features/mec/meta_boxes/display_options.php:539
3033
- #: app/features/mec/meta_boxes/display_options.php:581
3034
- #: app/features/mec/meta_boxes/display_options.php:664
3035
- #: app/features/mec/meta_boxes/display_options.php:698
3036
- #: app/features/mec/meta_boxes/display_options.php:744
3037
- #: app/features/mec/meta_boxes/display_options.php:1089
3038
- #: app/features/mec/meta_boxes/display_options.php:1197
3039
- msgid "eg. 6"
3040
- msgstr ""
3041
-
3042
  #: app/features/mec/meta_boxes/display_options.php:122
3043
  #: app/features/mec/meta_boxes/display_options.php:297
3044
  #: app/features/mec/meta_boxes/display_options.php:367
3045
- #: app/features/mec/meta_boxes/display_options.php:858
 
 
 
 
 
 
 
 
 
 
 
 
 
3046
  msgid "Load More Button"
3047
  msgstr ""
3048
 
3049
- #: app/features/mec/meta_boxes/display_options.php:132
3050
- #: app/features/mec/meta_boxes/display_options.php:377
3051
  msgid "Show Month Divider"
3052
  msgstr ""
3053
 
3054
- #: app/features/mec/meta_boxes/display_options.php:142
3055
- #: app/features/mec/meta_boxes/display_options.php:307
3056
  msgid "Show Map on top"
3057
  msgstr ""
3058
 
3059
- #: app/features/mec/meta_boxes/display_options.php:159
3060
  msgid "Toggle for Month Divider"
3061
  msgstr ""
3062
 
3063
- #: app/features/mec/meta_boxes/display_options.php:176
3064
- #: app/features/mec/meta_boxes/display_options.php:333
3065
- #: app/features/mec/meta_boxes/display_options.php:415
3066
- #: app/features/mec/meta_boxes/display_options.php:562
3067
- #: app/features/mec/meta_boxes/display_options.php:726
3068
- #: app/features/mec/meta_boxes/display_options.php:876
3069
- #: app/features/mec/settings.php:212 app/features/mec/settings.php:227
3070
- #: app/features/mec/settings.php:245 app/features/mec/settings.php:286
3071
- #: app/features/mec/settings.php:301 app/features/mec/settings.php:319
3072
  msgid "Clean"
3073
  msgstr ""
3074
 
3075
- #: app/features/mec/meta_boxes/display_options.php:179
3076
- #: app/features/mec/meta_boxes/display_options.php:417
3077
- #: app/features/mec/meta_boxes/display_options.php:565
3078
- #: app/features/mec/settings.php:215 app/features/mec/settings.php:248
3079
- #: app/features/mec/settings.php:289 app/features/mec/settings.php:322
3080
  msgid "Simple"
3081
  msgstr ""
3082
 
3083
- #: app/features/mec/meta_boxes/display_options.php:180
3084
  msgid "Colorful"
3085
  msgstr ""
3086
 
3087
- #: app/features/mec/meta_boxes/display_options.php:181
3088
- #: app/features/mec/meta_boxes/display_options.php:416
3089
- #: app/features/mec/meta_boxes/display_options.php:564
3090
- #: app/features/mec/settings.php:214 app/features/mec/settings.php:250
3091
- #: app/features/mec/settings.php:288 app/features/mec/settings.php:324
3092
  msgid "Novel"
3093
  msgstr ""
3094
 
3095
- #: app/features/mec/meta_boxes/display_options.php:203
3096
  msgid "Default value is \"d F Y"
3097
  msgstr ""
3098
 
3099
- #: app/features/mec/meta_boxes/display_options.php:215
3100
  msgid "Default values are d and F"
3101
  msgstr ""
3102
 
3103
- #: app/features/mec/meta_boxes/display_options.php:227
3104
  msgid "Default values are d and M"
3105
  msgstr ""
3106
 
3107
- #: app/features/mec/meta_boxes/display_options.php:275
3108
  msgid "Default value is \"d F Y\""
3109
  msgstr ""
3110
 
3111
- #: app/features/mec/meta_boxes/display_options.php:281
3112
- #: app/features/mec/meta_boxes/display_options.php:1079
3113
  msgid "Count in row"
3114
  msgstr ""
3115
 
3116
- #: app/features/mec/meta_boxes/display_options.php:326
3117
- #: app/features/mec/meta_boxes/display_options.php:504
3118
- #: app/features/mec/meta_boxes/display_options.php:611
3119
- #: app/features/mec/meta_boxes/display_options.php:718
3120
- #: app/features/mec/meta_boxes/display_options.php:991
3121
  #, php-format
3122
  msgid "%s is required to use this skin."
3123
  msgstr ""
3124
 
3125
- #: app/features/mec/meta_boxes/display_options.php:356
3126
- #: app/features/mec/meta_boxes/display_options.php:532
3127
  msgid "Default values are l and F j"
3128
  msgstr ""
3129
 
3130
- #: app/features/mec/meta_boxes/display_options.php:403
3131
  msgid "Default View"
3132
  msgstr ""
3133
 
3134
- #: app/features/mec/meta_boxes/display_options.php:405
3135
- #: app/features/mec/meta_boxes/display_options.php:426
3136
  #: app/libraries/main.php:329 app/libraries/main.php:1570
3137
  #: app/libraries/main.php:1595
3138
  msgid "List View"
3139
  msgstr ""
3140
 
3141
- #: app/features/mec/meta_boxes/display_options.php:406
3142
- #: app/features/mec/meta_boxes/display_options.php:436
3143
  #: app/libraries/main.php:333 app/libraries/main.php:1564
3144
  #: app/libraries/main.php:1589
3145
  msgid "Yearly View"
3146
  msgstr ""
3147
 
3148
- #: app/features/mec/meta_boxes/display_options.php:407
3149
- #: app/features/mec/meta_boxes/display_options.php:458
3150
  msgid "Monthly/Calendar View"
3151
  msgstr ""
3152
 
3153
- #: app/features/mec/meta_boxes/display_options.php:408
3154
- #: app/features/mec/meta_boxes/display_options.php:468
3155
  #: app/libraries/main.php:336 app/libraries/main.php:1566
3156
  #: app/libraries/main.php:1591
3157
  msgid "Weekly View"
3158
  msgstr ""
3159
 
3160
- #: app/features/mec/meta_boxes/display_options.php:409
3161
- #: app/features/mec/meta_boxes/display_options.php:478
3162
  #: app/libraries/main.php:335 app/libraries/main.php:1567
3163
  #: app/libraries/main.php:1592
3164
  msgid "Daily View"
3165
  msgstr ""
3166
 
3167
- #: app/features/mec/meta_boxes/display_options.php:413
3168
  msgid "Monthly Style"
3169
  msgstr ""
3170
 
3171
- #: app/features/mec/meta_boxes/display_options.php:453
3172
  #, php-format
3173
  msgid "%s is required to use <b>Yearly View</b> skin."
3174
  msgstr ""
3175
 
3176
- #: app/features/mec/meta_boxes/display_options.php:486
3177
  msgid "The price shows only in List View."
3178
  msgstr ""
3179
 
3180
- #: app/features/mec/meta_boxes/display_options.php:489
3181
  msgid "Display Event Price"
3182
  msgstr ""
3183
 
3184
- #: app/features/mec/meta_boxes/display_options.php:517
3185
  msgid "Start of Current Year"
3186
  msgstr ""
3187
 
3188
- #: app/features/mec/meta_boxes/display_options.php:518
3189
  msgid "Start of Next Year"
3190
  msgstr ""
3191
 
3192
- #: app/features/mec/meta_boxes/display_options.php:538
3193
- #: app/features/mec/meta_boxes/display_options.php:580
3194
- #: app/features/mec/meta_boxes/display_options.php:663
3195
- #: app/features/mec/meta_boxes/display_options.php:697
3196
- #: app/features/mec/meta_boxes/display_options.php:743
3197
  msgid "Events per day"
3198
  msgstr ""
3199
 
3200
- #: app/features/mec/meta_boxes/display_options.php:543
3201
- #: app/features/mec/meta_boxes/display_options.php:585
3202
- #: app/features/mec/meta_boxes/display_options.php:668
3203
- #: app/features/mec/meta_boxes/display_options.php:702
3204
- #: app/features/mec/meta_boxes/display_options.php:772
3205
  msgid "Next/Previous Buttons"
3206
  msgstr ""
3207
 
3208
- #: app/features/mec/meta_boxes/display_options.php:551
3209
  msgid "For showing next/previous year navigation."
3210
  msgstr ""
3211
 
3212
- #: app/features/mec/meta_boxes/display_options.php:595
3213
  msgid "Uppercase Text"
3214
  msgstr ""
3215
 
3216
- #: app/features/mec/meta_boxes/display_options.php:603
3217
- #: app/features/mec/meta_boxes/display_options.php:676
3218
- #: app/features/mec/meta_boxes/display_options.php:710
3219
- #: app/features/mec/meta_boxes/display_options.php:780
3220
  msgid "For showing next/previous month navigation."
3221
  msgstr ""
3222
 
3223
- #: app/features/mec/meta_boxes/display_options.php:629
3224
  msgid "Maximum events"
3225
  msgstr ""
3226
 
3227
- #: app/features/mec/meta_boxes/display_options.php:630
3228
  msgid "eg. 200"
3229
  msgstr ""
3230
 
3231
- #: app/features/mec/meta_boxes/display_options.php:634
3232
  msgid "Geolocation"
3233
  msgstr ""
3234
 
3235
- #: app/features/mec/meta_boxes/display_options.php:642
3236
  msgid "The geolocation feature works only in secure (https) websites."
3237
  msgstr ""
3238
 
3239
- #: app/features/mec/meta_boxes/display_options.php:686
3240
- #: app/features/mec/meta_boxes/display_options.php:732
3241
  msgid "Current Week"
3242
  msgstr ""
3243
 
3244
- #: app/features/mec/meta_boxes/display_options.php:687
3245
- #: app/features/mec/meta_boxes/display_options.php:733
3246
  msgid "Next Week"
3247
  msgstr ""
3248
 
3249
- #: app/features/mec/meta_boxes/display_options.php:748
3250
  msgid "Number of Days"
3251
  msgstr ""
3252
 
3253
- #: app/features/mec/meta_boxes/display_options.php:756
3254
  msgid "Week Start"
3255
  msgstr ""
3256
 
3257
- #: app/features/mec/meta_boxes/display_options.php:758
3258
  msgid "Inherite from WordPress options"
3259
  msgstr ""
3260
 
3261
- #: app/features/mec/meta_boxes/display_options.php:815
3262
- #: app/features/mec/meta_boxes/display_options.php:1002
3263
  msgid "Default values are j and F"
3264
  msgstr ""
3265
 
3266
- #: app/features/mec/meta_boxes/display_options.php:822
3267
  msgid "eg. 24"
3268
  msgstr ""
3269
 
3270
- #: app/features/mec/meta_boxes/display_options.php:825
3271
  msgid "Filter By"
3272
  msgstr ""
3273
 
3274
- #: app/features/mec/meta_boxes/display_options.php:827
3275
  msgid "None"
3276
  msgstr ""
3277
 
3278
- #: app/features/mec/meta_boxes/display_options.php:836
3279
  msgid "Fit to row"
3280
  msgstr ""
3281
 
3282
- #: app/features/mec/meta_boxes/display_options.php:837
3283
  msgid ""
3284
  "Items are arranged into rows. Rows progress vertically. Similar to what you "
3285
  "would expect from a layout that uses CSS floats."
3286
  msgstr ""
3287
 
3288
- #: app/features/mec/meta_boxes/display_options.php:847
3289
  msgid "Convert Masonry to Grid"
3290
  msgstr ""
3291
 
3292
- #: app/features/mec/meta_boxes/display_options.php:848
3293
  msgid "For using this option, your events should come with image"
3294
  msgstr ""
3295
 
3296
- #: app/features/mec/meta_boxes/display_options.php:888
3297
  msgid "Default values are d, M and Y"
3298
  msgstr ""
3299
 
3300
- #: app/features/mec/meta_boxes/display_options.php:900
3301
  msgid "Default values are \"F d\" and l"
3302
  msgstr ""
3303
 
3304
- #: app/features/mec/meta_boxes/display_options.php:911
3305
  msgid "Default value is \"l, F d Y\""
3306
  msgstr ""
3307
 
3308
- #: app/features/mec/meta_boxes/display_options.php:932
3309
  msgid "Style 1"
3310
  msgstr ""
3311
 
3312
- #: app/features/mec/meta_boxes/display_options.php:933
3313
  msgid "Style 2"
3314
  msgstr ""
3315
 
3316
- #: app/features/mec/meta_boxes/display_options.php:934
3317
  msgid "Style 3"
3318
  msgstr ""
3319
 
3320
- #: app/features/mec/meta_boxes/display_options.php:943
3321
- #: app/features/mec/meta_boxes/display_options.php:954
3322
  msgid "Default value is \"j F Y\""
3323
  msgstr ""
3324
 
3325
- #: app/features/mec/meta_boxes/display_options.php:967
3326
  msgid "Default values are j, F and Y"
3327
  msgstr ""
3328
 
3329
- #: app/features/mec/meta_boxes/display_options.php:975
3330
- #: app/features/mec/meta_boxes/display_options.php:1010
3331
  msgid " -- Next Upcoming Event -- "
3332
  msgstr ""
3333
 
3334
- #: app/features/mec/meta_boxes/display_options.php:982
3335
  msgid "Background Color"
3336
  msgstr ""
3337
 
3338
- #: app/features/mec/meta_boxes/display_options.php:1024
3339
- #: app/features/mec/meta_boxes/display_options.php:1110
3340
  msgid "Type 1"
3341
  msgstr ""
3342
 
3343
- #: app/features/mec/meta_boxes/display_options.php:1025
3344
- #: app/features/mec/meta_boxes/display_options.php:1111
3345
  msgid "Type 2"
3346
  msgstr ""
3347
 
3348
- #: app/features/mec/meta_boxes/display_options.php:1026
3349
- #: app/features/mec/meta_boxes/display_options.php:1112
3350
  msgid "Type 3"
3351
  msgstr ""
3352
 
3353
- #: app/features/mec/meta_boxes/display_options.php:1027
3354
- #: app/features/mec/meta_boxes/display_options.php:1113
3355
  msgid "Type 4"
3356
  msgstr ""
3357
 
3358
- #: app/features/mec/meta_boxes/display_options.php:1051
3359
  msgid "Default values are d, F and Y"
3360
  msgstr ""
3361
 
3362
- #: app/features/mec/meta_boxes/display_options.php:1062
3363
- #: app/features/mec/meta_boxes/display_options.php:1073
3364
  msgid "Default value is \"M d, Y\""
3365
  msgstr ""
3366
 
3367
- #: app/features/mec/meta_boxes/display_options.php:1092
3368
- #: app/features/mec/meta_boxes/display_options.php:1200
3369
  msgid "Auto Play Time"
3370
  msgstr ""
3371
 
3372
- #: app/features/mec/meta_boxes/display_options.php:1093
3373
- #: app/features/mec/meta_boxes/display_options.php:1201
3374
  msgid "eg. 3000 default is 3 second"
3375
  msgstr ""
3376
 
3377
- #: app/features/mec/meta_boxes/display_options.php:1097
3378
  msgid "Archive Link"
3379
  msgstr ""
3380
 
3381
- #: app/features/mec/meta_boxes/display_options.php:1101
3382
  msgid "Head Text"
3383
  msgstr ""
3384
 
3385
- #: app/features/mec/meta_boxes/display_options.php:1114
3386
  msgid "Type 5"
3387
  msgstr ""
3388
 
@@ -3390,61 +3404,61 @@ msgstr ""
3390
  msgid "No filter options applicable for this skin."
3391
  msgstr ""
3392
 
3393
- #: app/features/mec/meta_boxes/filter.php:84
3394
  msgid "Choose your desired categories for filtering the events."
3395
  msgstr ""
3396
 
3397
- #: app/features/mec/meta_boxes/filter.php:101
3398
  msgid "Choose your desired locations for filtering the events."
3399
  msgstr ""
3400
 
3401
- #: app/features/mec/meta_boxes/filter.php:118
3402
  msgid "Choose your desired organizers for filtering the events."
3403
  msgstr ""
3404
 
3405
- #: app/features/mec/meta_boxes/filter.php:135
3406
  msgid "Choose your desired labels for filtering the events."
3407
  msgstr ""
3408
 
3409
- #: app/features/mec/meta_boxes/filter.php:141
3410
  msgid "Insert your desired tags comma separated."
3411
  msgstr ""
3412
 
3413
- #: app/features/mec/meta_boxes/filter.php:144
3414
  msgid "Authors"
3415
  msgstr ""
3416
 
3417
- #: app/features/mec/meta_boxes/filter.php:162
3418
  msgid "Choose your desired authors for filtering the events."
3419
  msgstr ""
3420
 
3421
- #: app/features/mec/meta_boxes/filter.php:166
3422
  msgid "Dates"
3423
  msgstr ""
3424
 
3425
- #: app/features/mec/meta_boxes/filter.php:170
3426
  msgid "Include Expired Events"
3427
  msgstr ""
3428
 
3429
- #: app/features/mec/meta_boxes/filter.php:178
3430
  msgid ""
3431
  "You have ability to include past/expired events if you like so it will show "
3432
  "upcoming and expired events based on start date that you selected."
3433
  msgstr ""
3434
 
3435
- #: app/features/mec/meta_boxes/filter.php:183
3436
  msgid "Show Only Expired Events"
3437
  msgstr ""
3438
 
3439
- #: app/features/mec/meta_boxes/filter.php:191
3440
  msgid "It shows only expired/past events."
3441
  msgstr ""
3442
 
3443
- #: app/features/mec/meta_boxes/filter.php:197
3444
  msgid "Show Only Ongoing Events"
3445
  msgstr ""
3446
 
3447
- #: app/features/mec/meta_boxes/filter.php:205
3448
  msgid "It shows only ongoing events on List and Grid skins."
3449
  msgstr ""
3450
 
@@ -3531,8 +3545,8 @@ msgstr ""
3531
  #: app/features/mec/meta_boxes/search_form.php:612
3532
  #: app/features/mec/meta_boxes/search_form.php:619
3533
  #: app/features/mec/meta_boxes/search_form.php:626
3534
- #: app/features/mec/modules.php:122 app/features/mec/settings.php:94
3535
- #: app/features/mec/settings.php:365
3536
  msgid "Disabled"
3537
  msgstr ""
3538
 
@@ -3546,9 +3560,9 @@ msgstr ""
3546
  #: app/features/mec/meta_boxes/search_form.php:474
3547
  #: app/features/mec/meta_boxes/search_form.php:535
3548
  #: app/features/mec/meta_boxes/search_form.php:596
3549
- #: app/features/mec/settings.php:735 app/features/mec/single.php:214
3550
  #: app/features/speakers.php:59 app/features/speakers.php:247
3551
- #: app/libraries/main.php:4843 app/libraries/skins.php:886
3552
  msgid "Speaker"
3553
  msgstr ""
3554
 
@@ -3562,7 +3576,7 @@ msgstr ""
3562
  #: app/features/mec/meta_boxes/search_form.php:481
3563
  #: app/features/mec/meta_boxes/search_form.php:542
3564
  #: app/features/mec/meta_boxes/search_form.php:603
3565
- #: app/features/mec/settings.php:742 app/features/mec/single.php:223
3566
  #: app/libraries/skins.php:912
3567
  msgid "Tag"
3568
  msgstr ""
@@ -3614,185 +3628,185 @@ msgstr ""
3614
  msgid "No Search Options"
3615
  msgstr ""
3616
 
3617
- #: app/features/mec/modules.php:40
3618
  msgid "Speakers Options"
3619
  msgstr ""
3620
 
3621
- #: app/features/mec/modules.php:46
3622
  msgid "Enable speakers feature"
3623
  msgstr ""
3624
 
3625
- #: app/features/mec/modules.php:50
3626
  msgid ""
3627
  "Enable this option to have speaker in Hourly Schedule in Single. Refresh "
3628
  "after enabling it to see the Speakers menu under MEC dashboard."
3629
  msgstr ""
3630
 
3631
- #: app/features/mec/modules.php:55
3632
  msgid ""
3633
  "After enabling and saving the settings, you should reload the page to see a "
3634
  "new menu on the Dashboard > MEC"
3635
  msgstr ""
3636
 
3637
- #: app/features/mec/modules.php:72
3638
  msgid "Show Google Maps on event page"
3639
  msgstr ""
3640
 
3641
- #: app/features/mec/modules.php:77 app/features/mec/modules.php:235
3642
- #: app/features/mec/settings.php:772 app/features/mec/settings.php:777
3643
  msgid "API Key"
3644
  msgstr ""
3645
 
3646
- #: app/features/mec/modules.php:83 app/features/mec/settings.php:778
3647
- #: app/features/mec/settings.php:791
3648
  msgid "Required!"
3649
  msgstr ""
3650
 
3651
- #: app/features/mec/modules.php:90 app/features/mec/modules.php:99
3652
  msgid "Zoom level"
3653
  msgstr ""
3654
 
3655
- #: app/features/mec/modules.php:100
3656
  msgid ""
3657
  "For Google Maps module in single event page. In Google Maps skin, it will "
3658
  "caculate the zoom level automatically based on event boundaries."
3659
  msgstr ""
3660
 
3661
- #: app/features/mec/modules.php:107
3662
  msgid "Google Maps Style"
3663
  msgstr ""
3664
 
3665
- #: app/features/mec/modules.php:111 app/features/mec/single.php:85
3666
  msgid "Default"
3667
  msgstr ""
3668
 
3669
- #: app/features/mec/modules.php:119
3670
  msgid "Direction on single event"
3671
  msgstr ""
3672
 
3673
- #: app/features/mec/modules.php:123
3674
  msgid "Simple Method"
3675
  msgstr ""
3676
 
3677
- #: app/features/mec/modules.php:124
3678
  msgid "Advanced Method"
3679
  msgstr ""
3680
 
3681
- #: app/features/mec/modules.php:129 app/features/mec/modules.php:134
3682
  msgid "Lightbox Date Format"
3683
  msgstr ""
3684
 
3685
- #: app/features/mec/modules.php:135
3686
  msgid "Default value is M d Y"
3687
  msgstr ""
3688
 
3689
- #: app/features/mec/modules.php:142 app/features/mec/modules.php:150
3690
  msgid "Google Maps API"
3691
  msgstr ""
3692
 
3693
- #: app/features/mec/modules.php:146
3694
  msgid "Don't load Google Maps API library"
3695
  msgstr ""
3696
 
3697
- #: app/features/mec/modules.php:151
3698
  msgid "Check it only if another plugin/theme is loading the Google Maps API"
3699
  msgstr ""
3700
 
3701
- #: app/features/mec/modules.php:164 app/libraries/main.php:561
3702
  msgid "Export Options"
3703
  msgstr ""
3704
 
3705
- #: app/features/mec/modules.php:168
3706
  msgid ""
3707
  "Show export module (iCal export and add to Google calendars) on event page"
3708
  msgstr ""
3709
 
3710
- #: app/features/mec/modules.php:175
3711
  msgid "Google Calendar"
3712
  msgstr ""
3713
 
3714
- #: app/features/mec/modules.php:191 app/libraries/main.php:562
3715
  #: app/modules/local-time/details.php:42 app/widgets/single.php:99
3716
  msgid "Local Time"
3717
  msgstr ""
3718
 
3719
- #: app/features/mec/modules.php:195
3720
  msgid "Show event time based on local time of visitor on event page"
3721
  msgstr ""
3722
 
3723
- #: app/features/mec/modules.php:205 app/libraries/main.php:563
3724
  #: app/modules/qrcode/details.php:38 app/widgets/single.php:155
3725
  msgid "QR Code"
3726
  msgstr ""
3727
 
3728
- #: app/features/mec/modules.php:213
3729
  msgid "Show QR code of event in details page and booking invoice"
3730
  msgstr ""
3731
 
3732
- #: app/features/mec/modules.php:223 app/libraries/main.php:564
3733
  #: app/modules/weather/details.php:37
3734
  msgid "Weather"
3735
  msgstr ""
3736
 
3737
- #: app/features/mec/modules.php:230
3738
  msgid "Show weather module on event page"
3739
  msgstr ""
3740
 
3741
- #: app/features/mec/modules.php:238
3742
  #, php-format
3743
  msgid "You can get a free API Key from %s"
3744
  msgstr ""
3745
 
3746
- #: app/features/mec/modules.php:244
3747
  msgid "Show weather imperial units"
3748
  msgstr ""
3749
 
3750
- #: app/features/mec/modules.php:250
3751
  msgid "Show weather change units button"
3752
  msgstr ""
3753
 
3754
- #: app/features/mec/modules.php:264
3755
  msgid "Show social network module"
3756
  msgstr ""
3757
 
3758
- #: app/features/mec/modules.php:285 app/libraries/main.php:566
3759
  #: app/modules/next-event/details.php:82
3760
  msgid "Next Event"
3761
  msgstr ""
3762
 
3763
- #: app/features/mec/modules.php:289
3764
  msgid "Show next event module on event page"
3765
  msgstr ""
3766
 
3767
- #: app/features/mec/modules.php:294
3768
  msgid "Method"
3769
  msgstr ""
3770
 
3771
- #: app/features/mec/modules.php:297
3772
  msgid "Next Occurrence of Current Event"
3773
  msgstr ""
3774
 
3775
- #: app/features/mec/modules.php:298
3776
  msgid "Next Occurrence of Other Events"
3777
  msgstr ""
3778
 
3779
- #: app/features/mec/modules.php:309 app/features/mec/single.php:39
3780
  msgid "Default is M d Y"
3781
  msgstr ""
3782
 
3783
- #: app/features/mec/modules.php:325
3784
  msgid "Enable BuddyPress Integration"
3785
  msgstr ""
3786
 
3787
- #: app/features/mec/modules.php:332
3788
  msgid "Show \"Attendees Module\" in event details page"
3789
  msgstr ""
3790
 
3791
- #: app/features/mec/modules.php:336
3792
  msgid "Attendees Limit"
3793
  msgstr ""
3794
 
3795
- #: app/features/mec/modules.php:344
3796
  msgid "Add booking activity to user profile"
3797
  msgstr ""
3798
 
@@ -4150,8 +4164,8 @@ msgstr ""
4150
  msgid "Status of event"
4151
  msgstr ""
4152
 
4153
- #: app/features/mec/notifications.php:436 app/features/mec/settings.php:651
4154
- #: app/features/mec/settings.php:655
4155
  msgid "Event Note"
4156
  msgstr ""
4157
 
@@ -4159,347 +4173,347 @@ msgstr ""
4159
  msgid "Admin events management link."
4160
  msgstr ""
4161
 
4162
- #: app/features/mec/settings.php:52 app/features/mec/settings.php:62
4163
  msgid "Hide Events"
4164
  msgstr ""
4165
 
4166
- #: app/features/mec/settings.php:55
4167
  msgid "On Event Start"
4168
  msgstr ""
4169
 
4170
- #: app/features/mec/settings.php:56
4171
  msgid "+1 Hour after start"
4172
  msgstr ""
4173
 
4174
- #: app/features/mec/settings.php:57
4175
  msgid "+2 Hours after start"
4176
  msgstr ""
4177
 
4178
- #: app/features/mec/settings.php:58
4179
  msgid "On Event End"
4180
  msgstr ""
4181
 
4182
- #: app/features/mec/settings.php:63
4183
  msgid ""
4184
  "This option is for showing start/end time of events on frontend of website."
4185
  msgstr ""
4186
 
4187
- #: app/features/mec/settings.php:72 app/features/mec/settings.php:81
4188
  msgid "Multiple Day Events"
4189
  msgstr ""
4190
 
4191
- #: app/features/mec/settings.php:75
4192
  msgid "Show only first day on List/Grid/Slider skins"
4193
  msgstr ""
4194
 
4195
- #: app/features/mec/settings.php:76
4196
  msgid "Show only first day on all skins"
4197
  msgstr ""
4198
 
4199
- #: app/features/mec/settings.php:77
4200
  msgid "Show all days"
4201
  msgstr ""
4202
 
4203
- #: app/features/mec/settings.php:82
4204
  msgid ""
4205
  "For showing all days of multiple day events on frontend or only show the "
4206
  "first day."
4207
  msgstr ""
4208
 
4209
- #: app/features/mec/settings.php:91
4210
  msgid "Remove MEC Data on Plugin Uninstall"
4211
  msgstr ""
4212
 
4213
- #: app/features/mec/settings.php:95
4214
  msgid "Enabled"
4215
  msgstr ""
4216
 
4217
- #: app/features/mec/settings.php:101
4218
  msgid "Exclude Date Suffix"
4219
  msgstr ""
4220
 
4221
- #: app/features/mec/settings.php:104
4222
  msgid "Remove suffix from calendars"
4223
  msgstr ""
4224
 
4225
- #: app/features/mec/settings.php:108
4226
  msgid "Remove \"Th\" on calendar"
4227
  msgstr ""
4228
 
4229
- #: app/features/mec/settings.php:109
4230
  msgid ""
4231
  "Checked this checkbox to remove 'Th' on calendar ( ex: '12Th' remove Th, "
4232
  "showing just '12' )"
4233
  msgstr ""
4234
 
4235
- #: app/features/mec/settings.php:116 app/features/mec/settings.php:123
4236
  msgid "Schema"
4237
  msgstr ""
4238
 
4239
- #: app/features/mec/settings.php:119
4240
  msgid "Enable Schema Code"
4241
  msgstr ""
4242
 
4243
- #: app/features/mec/settings.php:124
4244
  msgid "You can enable/disable Schema scripts"
4245
  msgstr ""
4246
 
4247
- #: app/features/mec/settings.php:133 app/features/mec/settings.php:143
4248
- #: app/libraries/main.php:4847
4249
  msgid "Weekdays"
4250
  msgstr ""
4251
 
4252
- #: app/features/mec/settings.php:144
4253
  msgid ""
4254
  "Proceed with caution. Default is set to Monday, Tuesday, Wednesday, Thursday "
4255
  "and Friday ( you can change 'Week Starts' on WordPress Dashboard > Settings "
4256
  "> General - bottom of the page )."
4257
  msgstr ""
4258
 
4259
- #: app/features/mec/settings.php:154 app/features/mec/settings.php:164
4260
  msgid "Weekends"
4261
  msgstr ""
4262
 
4263
- #: app/features/mec/settings.php:165
4264
  msgid ""
4265
  "Proceed with caution. Default is set to Saturday and Sunday ( you can change "
4266
  "'Week Starts' on WordPress Dashboard > Settings > General - bottom of the "
4267
  "page )."
4268
  msgstr ""
4269
 
4270
- #: app/features/mec/settings.php:176 app/libraries/main.php:529
4271
  msgid "Archive Pages"
4272
  msgstr ""
4273
 
4274
- #: app/features/mec/settings.php:179 app/features/mec/settings.php:184
4275
  msgid "Archive Page Title"
4276
  msgstr ""
4277
 
4278
- #: app/features/mec/settings.php:185
4279
  msgid "Default value is Events - It's title of the page"
4280
  msgstr ""
4281
 
4282
- #: app/features/mec/settings.php:193 app/features/mec/settings.php:261
4283
  msgid "Archive Page Skin"
4284
  msgstr ""
4285
 
4286
- #: app/features/mec/settings.php:201
4287
  msgid "Put shortcode..."
4288
  msgstr ""
4289
 
4290
- #: app/features/mec/settings.php:204 app/features/mec/settings.php:219
4291
- #: app/features/mec/settings.php:222 app/features/mec/settings.php:231
4292
- #: app/features/mec/settings.php:257 app/features/mec/settings.php:278
4293
- #: app/features/mec/settings.php:293 app/features/mec/settings.php:296
4294
- #: app/features/mec/settings.php:305 app/features/mec/settings.php:331
4295
  msgid "There is no skins"
4296
  msgstr ""
4297
 
4298
- #: app/features/mec/settings.php:207 app/features/mec/settings.php:281
4299
- #: app/features/mec/single.php:66
4300
  msgid "Modern Style"
4301
  msgstr ""
4302
 
4303
- #: app/features/mec/settings.php:249 app/features/mec/settings.php:323
4304
  msgid "colorful"
4305
  msgstr ""
4306
 
4307
- #: app/features/mec/settings.php:254 app/features/mec/settings.php:328
4308
  msgid "Clean Style"
4309
  msgstr ""
4310
 
4311
- #: app/features/mec/settings.php:262
4312
  msgid "Default value is Calendar/Monthly View, But you can change it "
4313
  msgstr ""
4314
 
4315
- #: app/features/mec/settings.php:262 app/features/mec/settings.php:336
4316
  msgid "See Demo"
4317
  msgstr ""
4318
 
4319
- #: app/features/mec/settings.php:270 app/features/mec/settings.php:335
4320
  msgid "Category Page Skin"
4321
  msgstr ""
4322
 
4323
- #: app/features/mec/settings.php:336
4324
  msgid ""
4325
  "Default value is List View - But you can change it Set a skin for all "
4326
  "categories."
4327
  msgstr ""
4328
 
4329
- #: app/features/mec/settings.php:344 app/features/mec/settings.php:352
4330
  msgid "Category Events Method"
4331
  msgstr ""
4332
 
4333
- #: app/features/mec/settings.php:348
4334
  msgid "Expired Events"
4335
  msgstr ""
4336
 
4337
- #: app/features/mec/settings.php:353
4338
  msgid "Default value is Upcoming Events"
4339
  msgstr ""
4340
 
4341
- #: app/features/mec/settings.php:361 app/features/mec/settings.php:369
4342
  msgid "Events Archive Status"
4343
  msgstr ""
4344
 
4345
- #: app/features/mec/settings.php:364
4346
  msgid "Enabled (Recommended)"
4347
  msgstr ""
4348
 
4349
- #: app/features/mec/settings.php:370
4350
  msgid ""
4351
  "If you disable it, then you should create a page as archive page of MEC. "
4352
  "Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
4353
  "MEC rewrite rules."
4354
  msgstr ""
4355
 
4356
- #: app/features/mec/settings.php:383 app/features/mec/settings.php:388
4357
  msgid "Main Slug"
4358
  msgstr ""
4359
 
4360
- #: app/features/mec/settings.php:389
4361
  msgid ""
4362
  "Default value is events. You can not have a page with this name. MEC allows "
4363
  "you to create custom URLs for the permalinks and archives to enhance the "
4364
  "applicability and forward-compatibility of the links."
4365
  msgstr ""
4366
 
4367
- #: app/features/mec/settings.php:393 app/features/mec/settings.php:407
4368
  msgid "Valid characters are lowercase a-z, - character and numbers."
4369
  msgstr ""
4370
 
4371
- #: app/features/mec/settings.php:397 app/features/mec/settings.php:402
4372
  msgid "Category Slug"
4373
  msgstr ""
4374
 
4375
- #: app/features/mec/settings.php:403
4376
  msgid ""
4377
  "It's slug of MEC categories, you can change it to events-cat or something "
4378
  "else. Default value is mec-category. You can not have a page with this name."
4379
  msgstr ""
4380
 
4381
- #: app/features/mec/settings.php:415
4382
  msgid "Currency"
4383
  msgstr ""
4384
 
4385
- #: app/features/mec/settings.php:425 app/features/mec/settings.php:430
4386
  msgid "Currency Sign"
4387
  msgstr ""
4388
 
4389
- #: app/features/mec/settings.php:431
4390
  msgid "Default value will be \"currency\" if you leave it empty."
4391
  msgstr ""
4392
 
4393
- #: app/features/mec/settings.php:438
4394
  msgid "Currency Position"
4395
  msgstr ""
4396
 
4397
- #: app/features/mec/settings.php:441
4398
  msgid "Before $10"
4399
  msgstr ""
4400
 
4401
- #: app/features/mec/settings.php:442
4402
  msgid "After 10$"
4403
  msgstr ""
4404
 
4405
- #: app/features/mec/settings.php:447
4406
  msgid "Thousand Separator"
4407
  msgstr ""
4408
 
4409
- #: app/features/mec/settings.php:453
4410
  msgid "Decimal Separator"
4411
  msgstr ""
4412
 
4413
- #: app/features/mec/settings.php:463
4414
  msgid "No decimal"
4415
  msgstr ""
4416
 
4417
- #: app/features/mec/settings.php:474
4418
  msgid "Enable Google Recaptcha"
4419
  msgstr ""
4420
 
4421
- #: app/features/mec/settings.php:481
4422
  msgid "Enable on booking form"
4423
  msgstr ""
4424
 
4425
- #: app/features/mec/settings.php:487
4426
  msgid "Enable on \"Frontend Event Submission\" form"
4427
  msgstr ""
4428
 
4429
- #: app/features/mec/settings.php:491
4430
  msgid "Site Key"
4431
  msgstr ""
4432
 
4433
- #: app/features/mec/settings.php:497
4434
  msgid "Secret Key"
4435
  msgstr ""
4436
 
4437
- #: app/features/mec/settings.php:509 app/features/mec/settings.php:517
4438
  msgid "Time Format"
4439
  msgstr ""
4440
 
4441
- #: app/features/mec/settings.php:512
4442
  msgid "12 hours format with AM/PM"
4443
  msgstr ""
4444
 
4445
- #: app/features/mec/settings.php:513
4446
  msgid "24 hours format"
4447
  msgstr ""
4448
 
4449
- #: app/features/mec/settings.php:518
4450
  msgid "This option, affects the selection of Start/End time."
4451
  msgstr ""
4452
 
4453
- #: app/features/mec/settings.php:526
4454
  msgid "Events List Page"
4455
  msgstr ""
4456
 
4457
- #: app/features/mec/settings.php:535 app/features/mec/settings.php:547
4458
  #, php-format
4459
  msgid "Put %s shortcode into the page."
4460
  msgstr ""
4461
 
4462
- #: app/features/mec/settings.php:538
4463
  msgid "Add/Edit Events Page"
4464
  msgstr ""
4465
 
4466
- #: app/features/mec/settings.php:552
4467
  msgid "Enable event submission by guest (Not logged-in) users"
4468
  msgstr ""
4469
 
4470
- #: app/features/mec/settings.php:559
4471
  msgid "Enable mandatory email and name for guest user"
4472
  msgstr ""
4473
 
4474
- #: app/features/mec/settings.php:563
4475
  msgid "Frontend Event Submission Sections"
4476
  msgstr ""
4477
 
4478
- #: app/features/mec/settings.php:585 app/widgets/single.php:119
4479
  msgid "Event Categories"
4480
  msgstr ""
4481
 
4482
- #: app/features/mec/settings.php:591
4483
  msgid "Event Labels"
4484
  msgstr ""
4485
 
4486
- #: app/features/mec/settings.php:603
4487
  msgid "Event Tags"
4488
  msgstr ""
4489
 
4490
- #: app/features/mec/settings.php:615 app/widgets/single.php:123
4491
  msgid "Event Organizer"
4492
  msgstr ""
4493
 
4494
- #: app/features/mec/settings.php:633
4495
  msgid "Booking Options"
4496
  msgstr ""
4497
 
4498
- #: app/features/mec/settings.php:639
4499
  msgid "Fees / Taxes Options"
4500
  msgstr ""
4501
 
4502
- #: app/features/mec/settings.php:656
4503
  #, php-format
4504
  msgid ""
4505
  "Users can put a note for editors while they're submitting the event. Also "
@@ -4507,263 +4521,263 @@ msgid ""
4507
  "users' note in email."
4508
  msgstr ""
4509
 
4510
- #: app/features/mec/settings.php:663 app/features/mec/settings.php:672
4511
  msgid "Visibility of Note"
4512
  msgstr ""
4513
 
4514
- #: app/features/mec/settings.php:666
4515
  msgid "Always"
4516
  msgstr ""
4517
 
4518
- #: app/features/mec/settings.php:667
4519
  msgid "While event is not published"
4520
  msgstr ""
4521
 
4522
- #: app/features/mec/settings.php:673
4523
  msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
4524
  msgstr ""
4525
 
4526
- #: app/features/mec/settings.php:682 app/libraries/main.php:534
4527
  msgid "User Profile"
4528
  msgstr ""
4529
 
4530
- #: app/features/mec/settings.php:684
4531
  #, php-format
4532
  msgid ""
4533
  "Put %s shortcode into your desired page. Then users are able to see history "
4534
  "of their bookings."
4535
  msgstr ""
4536
 
4537
- #: app/features/mec/settings.php:689 app/libraries/main.php:535
4538
  msgid "Search Bar"
4539
  msgstr ""
4540
 
4541
- #: app/features/mec/settings.php:691
4542
  #, php-format
4543
  msgid ""
4544
  "Put %s shortcode into your desired page. Then users are able to search events"
4545
  msgstr ""
4546
 
4547
- #: app/features/mec/settings.php:695
4548
  msgid "Ajax Live mode"
4549
  msgstr ""
4550
 
4551
- #: app/features/mec/settings.php:699
4552
  msgid "Ajax mode"
4553
  msgstr ""
4554
 
4555
- #: app/features/mec/settings.php:700
4556
  msgid ""
4557
  "if you enable this option, search button disappeared and to use this "
4558
  "feature, text input field must be enabled."
4559
  msgstr ""
4560
 
4561
- #: app/features/mec/settings.php:708
4562
  msgid "Modern Type"
4563
  msgstr ""
4564
 
4565
- #: app/features/mec/settings.php:712
4566
  msgid "Search bar fields"
4567
  msgstr ""
4568
 
4569
- #: app/features/mec/settings.php:754
4570
  msgid "Text input"
4571
  msgstr ""
4572
 
4573
- #: app/features/mec/settings.php:767
4574
  msgid "Enable Mailchimp Integration"
4575
  msgstr ""
4576
 
4577
- #: app/features/mec/settings.php:785 app/features/mec/settings.php:790
4578
  msgid "List ID"
4579
  msgstr ""
4580
 
4581
- #: app/features/mec/settings.php:798 app/features/mec/settings.php:806
4582
  msgid "Subscription Status"
4583
  msgstr ""
4584
 
4585
- #: app/features/mec/settings.php:801
4586
  msgid "Subscribe automatically"
4587
  msgstr ""
4588
 
4589
- #: app/features/mec/settings.php:802
4590
  msgid "Subscribe by verification"
4591
  msgstr ""
4592
 
4593
- #: app/features/mec/settings.php:807
4594
  msgid ""
4595
  "If you choose \"Subscribe by verification\" then an email will send to user "
4596
  "by mailchimp for subscription verification."
4597
  msgstr ""
4598
 
4599
- #: app/features/mec/settings.php:819
4600
  msgid "Upload Field Options"
4601
  msgstr ""
4602
 
4603
- #: app/features/mec/settings.php:821
4604
  msgid "Mime types"
4605
  msgstr ""
4606
 
4607
- #: app/features/mec/settings.php:825
4608
  msgid "Split mime types with \",\"."
4609
  msgstr ""
4610
 
4611
- #: app/features/mec/settings.php:825
4612
  msgid "Default: jpeg,jpg,png,pdf"
4613
  msgstr ""
4614
 
4615
- #: app/features/mec/settings.php:828
4616
  msgid "Maximum file size"
4617
  msgstr ""
4618
 
4619
- #: app/features/mec/settings.php:832
4620
  msgid "The unit is Megabyte \"MB\""
4621
  msgstr ""
4622
 
4623
- #: app/features/mec/single.php:31 app/libraries/main.php:541
4624
  msgid "Single Event Page"
4625
  msgstr ""
4626
 
4627
- #: app/features/mec/single.php:33 app/features/mec/single.php:38
4628
  msgid "Single Event Date Format"
4629
  msgstr ""
4630
 
4631
- #: app/features/mec/single.php:46 app/features/mec/single.php:54
4632
  msgid "Date Method"
4633
  msgstr ""
4634
 
4635
- #: app/features/mec/single.php:49
4636
  msgid "Next occurrence date"
4637
  msgstr ""
4638
 
4639
- #: app/features/mec/single.php:50
4640
  msgid "Referred date"
4641
  msgstr ""
4642
 
4643
- #: app/features/mec/single.php:55
4644
  msgid ""
4645
  "Referred date\" shows the event date based on referred date in event list."
4646
  msgstr ""
4647
 
4648
- #: app/features/mec/single.php:62 app/features/mec/single.php:73
4649
  msgid "Single Event Style"
4650
  msgstr ""
4651
 
4652
- #: app/features/mec/single.php:65
4653
  msgid "Default Style"
4654
  msgstr ""
4655
 
4656
- #: app/features/mec/single.php:68
4657
  msgid "Elementor Single Builder"
4658
  msgstr ""
4659
 
4660
- #: app/features/mec/single.php:74
4661
  msgid "Choose your single event style."
4662
  msgstr ""
4663
 
4664
- #: app/features/mec/single.php:82 app/features/mec/single.php:90
4665
  msgid "Booking Style"
4666
  msgstr ""
4667
 
4668
- #: app/features/mec/single.php:86
4669
  msgid "Modal"
4670
  msgstr ""
4671
 
4672
- #: app/features/mec/single.php:91
4673
  msgid ""
4674
  "Choose your Booking style, Please Note: When you set this feature to modal "
4675
  "you can not see booking box if you set popoup module view on shortcodes"
4676
  msgstr ""
4677
 
4678
- #: app/features/mec/single.php:99
4679
  msgid "Disable Block Editor (Gutenberg)"
4680
  msgstr ""
4681
 
4682
- #: app/features/mec/single.php:102
4683
  msgid "Disable Block Editor"
4684
  msgstr ""
4685
 
4686
- #: app/features/mec/single.php:106
4687
  msgid "Block Editor"
4688
  msgstr ""
4689
 
4690
- #: app/features/mec/single.php:107
4691
  msgid ""
4692
  "If you want to use the new WordPress block editor you should keep this "
4693
  "checkbox unchecked."
4694
  msgstr ""
4695
 
4696
- #: app/features/mec/single.php:113 app/features/mec/single.php:120
4697
  msgid "Breadcrumbs"
4698
  msgstr ""
4699
 
4700
- #: app/features/mec/single.php:116
4701
  msgid "Enable Breadcrumbs."
4702
  msgstr ""
4703
 
4704
- #: app/features/mec/single.php:121
4705
  msgid "Check this option, for showing the breadcrumbs on single event page"
4706
  msgstr ""
4707
 
4708
- #: app/features/mec/single.php:134
4709
  msgid "Show countdown module on event page"
4710
  msgstr ""
4711
 
4712
- #: app/features/mec/single.php:139
4713
  msgid "Countdown Style"
4714
  msgstr ""
4715
 
4716
- #: app/features/mec/single.php:142
4717
  msgid "Plain Style"
4718
  msgstr ""
4719
 
4720
- #: app/features/mec/single.php:143
4721
  msgid "Flip Style"
4722
  msgstr ""
4723
 
4724
- #: app/features/mec/single.php:151 app/features/mec/single.php:158
4725
  msgid "Exceptional days"
4726
  msgstr ""
4727
 
4728
- #: app/features/mec/single.php:155
4729
  msgid "Show exceptional days option on Add/Edit events page"
4730
  msgstr ""
4731
 
4732
- #: app/features/mec/single.php:159
4733
  msgid ""
4734
  "Using this option you can exclude certain days from event occurrence dates."
4735
  msgstr ""
4736
 
4737
- #: app/features/mec/single.php:168 app/libraries/main.php:544
4738
  msgid "Additional Organizers"
4739
  msgstr ""
4740
 
4741
- #: app/features/mec/single.php:172
4742
  msgid ""
4743
  "Show additional organizers option on Add/Edit events page and single event "
4744
  "page."
4745
  msgstr ""
4746
 
4747
- #: app/features/mec/single.php:178
4748
  msgid "Additional locations"
4749
  msgstr ""
4750
 
4751
- #: app/features/mec/single.php:182
4752
  msgid ""
4753
  "Show additional locations option on Add/Edit events page and single event "
4754
  "page."
4755
  msgstr ""
4756
 
4757
- #: app/features/mec/single.php:188 app/libraries/main.php:546
4758
  #: app/skins/single.php:163
4759
  msgid "Related Events"
4760
  msgstr ""
4761
 
4762
- #: app/features/mec/single.php:192
4763
  msgid "Display related events based on taxonomy in single event page."
4764
  msgstr ""
4765
 
4766
- #: app/features/mec/single.php:198
4767
  msgid "Select Taxonomies:"
4768
  msgstr ""
4769
 
@@ -4855,7 +4869,7 @@ msgid "All videos"
4855
  msgstr ""
4856
 
4857
  #: app/features/mec/support-page.php:13 app/features/mec/support.php:147
4858
- msgid "View all Articles"
4859
  msgstr ""
4860
 
4861
  #: app/features/mec/support-page.php:15
@@ -4872,10 +4886,6 @@ msgstr ""
4872
  msgid "Advice and answers from the Webnus Team"
4873
  msgstr ""
4874
 
4875
- #: app/features/mec/support-page.php:34
4876
- msgid "Search..."
4877
- msgstr ""
4878
-
4879
  #: app/features/mec/support-page.php:46
4880
  msgid "Quick Setup"
4881
  msgstr ""
@@ -5255,8 +5265,8 @@ msgstr ""
5255
  msgid "eg. https://webnus.net"
5256
  msgstr ""
5257
 
5258
- #: app/features/organizers.php:311 app/libraries/main.php:4871
5259
- #: app/skins/single.php:814
5260
  msgid "Other Organizers"
5261
  msgstr ""
5262
 
@@ -5270,37 +5280,37 @@ msgstr ""
5270
  msgid "Please %s/%s in order to see your bookings / profile."
5271
  msgstr ""
5272
 
5273
- #: app/features/profile/profile.php:25 app/features/profile/profile.php:87
5274
  msgid "#"
5275
  msgstr ""
5276
 
5277
- #: app/features/profile/profile.php:34 app/libraries/main.php:2908
5278
  msgid "Status"
5279
  msgstr ""
5280
 
5281
- #: app/features/profile/profile.php:37 app/libraries/main.php:2045
5282
  msgid "Attendees"
5283
  msgstr ""
5284
 
5285
- #: app/features/profile/profile.php:40
5286
  msgid "Invoice"
5287
  msgstr ""
5288
 
5289
- #: app/features/profile/profile.php:76
5290
  #, php-format
5291
  msgid "<i class=\"mec-sl-eye\"></i> %s"
5292
  msgstr ""
5293
 
5294
- #: app/features/profile/profile.php:96 app/libraries/main.php:2059
5295
- #: app/libraries/main.php:4869
5296
  msgid "Ticket"
5297
  msgstr ""
5298
 
5299
- #: app/features/profile/profile.php:99
5300
  msgid "Variations"
5301
  msgstr ""
5302
 
5303
- #: app/features/profile/profile.php:142
5304
  msgid "No bookings found!"
5305
  msgstr ""
5306
 
@@ -5327,7 +5337,7 @@ msgstr ""
5327
  #: app/features/search_bar/search_result.php:11
5328
  #: app/libraries/notifications.php:671 app/libraries/render.php:437
5329
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
5330
- #: app/skins/single.php:160 app/skins/single.php:708
5331
  #: app/skins/single/default.php:86 app/skins/single/default.php:298
5332
  #: app/skins/single/m1.php:34 app/skins/single/modern.php:184
5333
  msgid "All of the day"
@@ -5518,31 +5528,31 @@ msgstr ""
5518
  msgid "Slider View"
5519
  msgstr ""
5520
 
5521
- #: app/libraries/main.php:382 app/libraries/main.php:4849
5522
  msgid "SU"
5523
  msgstr ""
5524
 
5525
- #: app/libraries/main.php:383 app/libraries/main.php:4850
5526
  msgid "MO"
5527
  msgstr ""
5528
 
5529
- #: app/libraries/main.php:384 app/libraries/main.php:4851
5530
  msgid "TU"
5531
  msgstr ""
5532
 
5533
- #: app/libraries/main.php:385 app/libraries/main.php:4852
5534
  msgid "WE"
5535
  msgstr ""
5536
 
5537
- #: app/libraries/main.php:386 app/libraries/main.php:4853
5538
  msgid "TH"
5539
  msgstr ""
5540
 
5541
- #: app/libraries/main.php:387 app/libraries/main.php:4854
5542
  msgid "FR"
5543
  msgstr ""
5544
 
5545
- #: app/libraries/main.php:388 app/libraries/main.php:4855
5546
  msgid "SA"
5547
  msgstr ""
5548
 
@@ -5766,125 +5776,125 @@ msgstr ""
5766
  msgid "Free"
5767
  msgstr ""
5768
 
5769
- #: app/libraries/main.php:3515 app/libraries/main.php:5096
5770
  msgid "M.E. Calender"
5771
  msgstr ""
5772
 
5773
- #: app/libraries/main.php:3670
5774
  #, php-format
5775
  msgid "Copy of %s"
5776
  msgstr ""
5777
 
5778
- #: app/libraries/main.php:4343
5779
  msgid "Booked an event."
5780
  msgstr ""
5781
 
5782
- #: app/libraries/main.php:4384
5783
  #, php-format
5784
  msgid "%s booked %s event."
5785
  msgstr ""
5786
 
5787
- #: app/libraries/main.php:4832
5788
  msgid "Taxonomies"
5789
  msgstr ""
5790
 
5791
- #: app/libraries/main.php:4834
5792
  msgid "Category Plural Label"
5793
  msgstr ""
5794
 
5795
- #: app/libraries/main.php:4835
5796
  msgid "Category Singular Label"
5797
  msgstr ""
5798
 
5799
- #: app/libraries/main.php:4836
5800
  msgid "Label Plural Label"
5801
  msgstr ""
5802
 
5803
- #: app/libraries/main.php:4837
5804
  msgid "Label Singular Label"
5805
  msgstr ""
5806
 
5807
- #: app/libraries/main.php:4837
5808
  msgid "label"
5809
  msgstr ""
5810
 
5811
- #: app/libraries/main.php:4838
5812
  msgid "Location Plural Label"
5813
  msgstr ""
5814
 
5815
- #: app/libraries/main.php:4839
5816
  msgid "Location Singular Label"
5817
  msgstr ""
5818
 
5819
- #: app/libraries/main.php:4840
5820
  msgid "Organizer Plural Label"
5821
  msgstr ""
5822
 
5823
- #: app/libraries/main.php:4841
5824
  msgid "Organizer Singular Label"
5825
  msgstr ""
5826
 
5827
- #: app/libraries/main.php:4842
5828
  msgid "Speaker Plural Label"
5829
  msgstr ""
5830
 
5831
- #: app/libraries/main.php:4843
5832
  msgid "Speaker Singular Label"
5833
  msgstr ""
5834
 
5835
- #: app/libraries/main.php:4849
5836
  msgid "Sunday abbreviation"
5837
  msgstr ""
5838
 
5839
- #: app/libraries/main.php:4850
5840
  msgid "Monday abbreviation"
5841
  msgstr ""
5842
 
5843
- #: app/libraries/main.php:4851
5844
  msgid "Tuesday abbreviation"
5845
  msgstr ""
5846
 
5847
- #: app/libraries/main.php:4852
5848
  msgid "Wednesday abbreviation"
5849
  msgstr ""
5850
 
5851
- #: app/libraries/main.php:4853
5852
  msgid "Thursday abbreviation"
5853
  msgstr ""
5854
 
5855
- #: app/libraries/main.php:4854
5856
  msgid "Friday abbreviation"
5857
  msgstr ""
5858
 
5859
- #: app/libraries/main.php:4855
5860
  msgid "Saturday abbreviation"
5861
  msgstr ""
5862
 
5863
- #: app/libraries/main.php:4859
5864
  msgid "Others"
5865
  msgstr ""
5866
 
5867
- #: app/libraries/main.php:4861
5868
  msgid "Booking Success Message"
5869
  msgstr ""
5870
 
5871
- #: app/libraries/main.php:4861
5872
  msgid ""
5873
  "Thanks for your booking. Your tickets booked, booking verification might be "
5874
  "needed, please check your email."
5875
  msgstr ""
5876
 
5877
- #: app/libraries/main.php:4862 app/widgets/single.php:131
5878
  msgid "Register Button"
5879
  msgstr ""
5880
 
5881
- #: app/libraries/main.php:4862 app/skins/available_spot/tpl.php:210
5882
  #: app/skins/carousel/render.php:156 app/skins/carousel/render.php:192
5883
  #: app/skins/grid/render.php:118 app/skins/grid/render.php:164
5884
  #: app/skins/grid/render.php:206 app/skins/grid/render.php:234
5885
  #: app/skins/list/render.php:107 app/skins/list/render.php:195
5886
- #: app/skins/masonry/render.php:178 app/skins/single.php:726
5887
- #: app/skins/single.php:729 app/skins/single/default.php:233
5888
  #: app/skins/single/default.php:235 app/skins/single/default.php:445
5889
  #: app/skins/single/default.php:447 app/skins/single/m1.php:126
5890
  #: app/skins/single/m1.php:128 app/skins/single/m2.php:58
@@ -5895,11 +5905,11 @@ msgstr ""
5895
  msgid "REGISTER"
5896
  msgstr ""
5897
 
5898
- #: app/libraries/main.php:4863
5899
  msgid "View Detail Button"
5900
  msgstr ""
5901
 
5902
- #: app/libraries/main.php:4863 app/skins/carousel/render.php:156
5903
  #: app/skins/carousel/render.php:192 app/skins/grid/render.php:118
5904
  #: app/skins/grid/render.php:164 app/skins/grid/render.php:206
5905
  #: app/skins/grid/render.php:234 app/skins/list/render.php:107
@@ -5910,59 +5920,59 @@ msgstr ""
5910
  msgid "View Detail"
5911
  msgstr ""
5912
 
5913
- #: app/libraries/main.php:4864
5914
  msgid "Event Detail Button"
5915
  msgstr ""
5916
 
5917
- #: app/libraries/main.php:4864 app/skins/countdown/tpl.php:224
5918
  msgid "Event Detail"
5919
  msgstr ""
5920
 
5921
- #: app/libraries/main.php:4866
5922
  msgid "More Info Link"
5923
  msgstr ""
5924
 
5925
- #: app/libraries/main.php:4869
5926
  msgid "Ticket (Singular)"
5927
  msgstr ""
5928
 
5929
- #: app/libraries/main.php:4870
5930
  msgid "Tickets (Plural)"
5931
  msgstr ""
5932
 
5933
- #: app/libraries/main.php:4956
5934
  msgid "EventON"
5935
  msgstr ""
5936
 
5937
- #: app/libraries/main.php:4957
5938
  msgid "The Events Calendar"
5939
  msgstr ""
5940
 
5941
- #: app/libraries/main.php:4958
5942
  msgid "Events Schedule WP Plugin"
5943
  msgstr ""
5944
 
5945
- #: app/libraries/main.php:4959
5946
  msgid "Calendarize It"
5947
  msgstr ""
5948
 
5949
- #: app/libraries/main.php:5033 app/libraries/main.php:5053
5950
  msgid "Confirmed"
5951
  msgstr ""
5952
 
5953
- #: app/libraries/main.php:5034 app/libraries/main.php:5061
5954
  msgid "Rejected"
5955
  msgstr ""
5956
 
5957
- #: app/libraries/main.php:5035 app/libraries/main.php:5057
5958
  msgid "Pending"
5959
  msgstr ""
5960
 
5961
- #: app/libraries/main.php:5083
5962
  msgid "Waiting"
5963
  msgstr ""
5964
 
5965
- #: app/libraries/main.php:5288 app/libraries/render.php:367
5966
  msgid "Skin controller does not exist."
5967
  msgstr ""
5968
 
@@ -6087,7 +6097,7 @@ msgstr ""
6087
  msgid "Get Directions"
6088
  msgstr ""
6089
 
6090
- #: app/modules/links/details.php:17 app/skins/single.php:426
6091
  msgid "Share this event"
6092
  msgstr ""
6093
 
@@ -6114,7 +6124,7 @@ msgstr ""
6114
  msgid "Go to occurrence page"
6115
  msgstr ""
6116
 
6117
- #: app/modules/next-event/details.php:95 app/skins/single.php:702
6118
  #: app/skins/single/default.php:80 app/skins/single/default.php:292
6119
  #: app/skins/single/m1.php:28 app/skins/single/modern.php:178
6120
  msgid "Time"
@@ -6169,16 +6179,17 @@ msgid "Visibility"
6169
  msgstr ""
6170
 
6171
  #: app/skins/agenda/tpl.php:65 app/skins/agenda/tpl.php:69
6172
- #: app/skins/carousel/tpl.php:45 app/skins/grid/tpl.php:61
 
6173
  #: app/skins/grid/tpl.php:65 app/skins/list/tpl.php:66
6174
  #: app/skins/list/tpl.php:70 app/skins/masonry/tpl.php:61
6175
  #: app/skins/masonry/tpl.php:65 app/skins/slider/tpl.php:43
6176
  msgid "No event found!"
6177
  msgstr ""
6178
 
6179
- #: app/skins/agenda/tpl.php:74 app/skins/grid/tpl.php:70
6180
- #: app/skins/list/tpl.php:75 app/skins/masonry/tpl.php:70
6181
- #: app/skins/yearly_view/render.php:124
6182
  msgid "Load More"
6183
  msgstr ""
6184
 
@@ -6242,27 +6253,27 @@ msgstr ""
6242
  msgid "Home"
6243
  msgstr ""
6244
 
6245
- #: app/skins/single.php:509 app/skins/single/default.php:43
6246
  #: app/skins/single/m1.php:247 app/skins/single/m2.php:174
6247
  #: app/skins/single/modern.php:256
6248
  msgid "Sold out!"
6249
  msgstr ""
6250
 
6251
- #: app/skins/single.php:774 app/skins/single.php:829
6252
  #: app/skins/single/default.php:205 app/skins/single/default.php:417
6253
  #: app/skins/single/m1.php:100 app/skins/single/m2.php:32
6254
  #: app/skins/single/modern.php:41
6255
  msgid "Phone"
6256
  msgstr ""
6257
 
6258
- #: app/skins/single.php:788 app/skins/single.php:843
6259
  #: app/skins/single/default.php:219 app/skins/single/default.php:431
6260
  #: app/skins/single/m1.php:114 app/skins/single/m2.php:46
6261
  #: app/skins/single/modern.php:55
6262
  msgid "Website"
6263
  msgstr ""
6264
 
6265
- #: app/skins/single.php:913
6266
  msgid "Speakers:"
6267
  msgstr ""
6268
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: modern-events-calendar\n"
4
+ "POT-Creation-Date: 2019-09-18 14:18+0430\n"
5
+ "PO-Revision-Date: 2019-09-18 14:22+0430\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: en_US\n"
56
  msgstr ""
57
 
58
  #: app/features/colors.php:50 app/features/fes/form.php:794
59
+ #: app/features/mec/settings.php:600
60
  msgid "Event Color"
61
  msgstr ""
62
 
66
  msgid "Settings"
67
  msgstr ""
68
 
69
+ #: app/features/contextual.php:62 app/features/events.php:2410
70
+ #: app/features/mec/booking.php:412 app/features/mec/support.php:29
71
  #: app/libraries/main.php:554
72
  msgid "Booking Form"
73
  msgstr ""
81
  "YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></iframe>"
82
  msgstr ""
83
 
84
+ #: app/features/contextual.php:70 app/features/mec/booking.php:530
85
  #: app/features/mec/support.php:36 app/libraries/main.php:555
86
  msgid "Payment Gateways"
87
  msgstr ""
157
  "\"0\" allowfullscreen></iframe>"
158
  msgstr ""
159
 
160
+ #: app/features/contextual.php:117 app/features/mec/settings.php:52
161
  #: app/libraries/main.php:528
162
  msgid "General Options"
163
  msgstr ""
164
 
165
+ #: app/features/contextual.php:139 app/features/mec/settings.php:384
166
  #: app/libraries/main.php:530
167
  msgid "Slugs/Permalinks"
168
  msgstr ""
171
  msgid "Event Details/Single Event Page"
172
  msgstr ""
173
 
174
+ #: app/features/contextual.php:166 app/features/mec/settings.php:416
175
  #: app/libraries/main.php:531
176
  msgid "Currency Options"
177
  msgstr ""
178
 
179
+ #: app/features/contextual.php:182 app/features/mec/modules.php:67
180
+ #: app/features/mec/modules.php:85 app/libraries/main.php:560
181
  msgid "Google Maps Options"
182
  msgstr ""
183
 
184
+ #: app/features/contextual.php:244 app/features/mec/settings.php:473
185
  #: app/libraries/main.php:532
186
  msgid "Google Recaptcha Options"
187
  msgstr ""
188
 
189
+ #: app/features/contextual.php:258 app/features/mec/single.php:133
190
  #: app/libraries/main.php:542
191
  msgid "Countdown Options"
192
  msgstr ""
193
 
194
+ #: app/features/contextual.php:268 app/features/mec/modules.php:263
195
  #: app/libraries/main.php:565
196
  msgid "Social Networks"
197
  msgstr ""
200
  msgid "Next Event Module"
201
  msgstr ""
202
 
203
+ #: app/features/contextual.php:286 app/features/mec/settings.php:509
204
  #: app/libraries/main.php:533
205
  msgid "Frontend Event Submission"
206
  msgstr ""
207
 
208
+ #: app/features/contextual.php:298 app/features/events.php:1174
209
  #: app/libraries/main.php:543
210
  msgid "Exceptional Days"
211
  msgstr ""
212
 
213
+ #: app/features/contextual.php:308 app/features/events.php:297
214
+ #: app/features/mec/booking.php:88 app/features/mec/notifications.php:31
215
  #: app/libraries/main.php:550 app/libraries/main.php:571
216
  #: app/libraries/main.php:652
217
  msgid "Booking"
218
  msgstr ""
219
 
220
+ #: app/features/contextual.php:318 app/features/mec/booking.php:234
221
  #: app/libraries/main.php:551
222
  msgid "Coupons"
223
  msgstr ""
224
 
225
+ #: app/features/contextual.php:326 app/features/mec/modules.php:324
226
  #: app/libraries/main.php:567
227
  msgid "BuddyPress Integration"
228
  msgstr ""
229
 
230
+ #: app/features/contextual.php:334 app/features/mec/settings.php:766
231
  #: app/libraries/main.php:536
232
  msgid "Mailchimp Integration"
233
  msgstr ""
236
  msgid "MEC Activation"
237
  msgstr ""
238
 
239
+ #: app/features/events.php:149 app/features/ix/export.php:34
240
  #: app/features/mec/dashboard.php:229 app/skins/daily_view/tpl.php:79
241
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
242
  msgid "Events"
243
  msgstr ""
244
 
245
+ #: app/features/events.php:150
246
+ #: app/features/mec/meta_boxes/display_options.php:921
247
+ #: app/features/mec/meta_boxes/display_options.php:977
248
+ #: app/features/mec/meta_boxes/display_options.php:1012
249
+ #: app/features/profile/profile.php:29 app/skins/daily_view/tpl.php:80
250
  #: app/skins/monthly_view/tpl.php:71 app/skins/yearly_view/tpl.php:69
251
  msgid "Event"
252
  msgstr ""
253
 
254
+ #: app/features/events.php:151 app/features/mec.php:333
255
  msgid "Add Event"
256
  msgstr ""
257
 
258
+ #: app/features/events.php:152 app/features/mec/dashboard.php:134
259
  msgid "Add New Event"
260
  msgstr ""
261
 
262
+ #: app/features/events.php:153 app/features/ix.php:3122
263
  #: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:57
264
  msgid "No events found!"
265
  msgstr ""
266
 
267
+ #: app/features/events.php:154
268
  msgid "All Events"
269
  msgstr ""
270
 
271
+ #: app/features/events.php:155
272
  msgid "Edit Event"
273
  msgstr ""
274
 
275
+ #: app/features/events.php:156
276
  msgid "View Event"
277
  msgstr ""
278
 
279
+ #: app/features/events.php:157
280
  msgid "No events found in Trash!"
281
  msgstr ""
282
 
283
+ #: app/features/events.php:174 app/features/events.php:3215
284
+ #: app/features/mec/meta_boxes/display_options.php:832
285
  #: app/features/mec/meta_boxes/search_form.php:31
286
  #: app/features/mec/meta_boxes/search_form.php:93
287
  #: app/features/mec/meta_boxes/search_form.php:155
292
  #: app/features/mec/meta_boxes/search_form.php:453
293
  #: app/features/mec/meta_boxes/search_form.php:514
294
  #: app/features/mec/meta_boxes/search_form.php:575
295
+ #: app/features/mec/settings.php:719 app/features/mec/single.php:204
296
+ #: app/libraries/main.php:4845 app/libraries/skins.php:808
297
+ #: app/skins/single.php:559 app/skins/single/default.php:170
298
  #: app/skins/single/default.php:382 app/skins/single/m1.php:170
299
  #: app/skins/single/m2.php:102 app/skins/single/modern.php:110
300
  msgid "Category"
301
  msgstr ""
302
 
303
+ #: app/features/events.php:175 app/features/events.php:3186
304
  #: app/features/fes/form.php:745 app/features/mec.php:335
305
+ #: app/features/mec/meta_boxes/filter.php:81 app/libraries/main.php:4844
306
  msgid "Categories"
307
  msgstr ""
308
 
309
+ #: app/features/events.php:185 app/features/labels.php:71
310
  #: app/features/locations.php:69 app/features/organizers.php:69
311
  #: app/features/speakers.php:70
312
  #, php-format
313
  msgid "All %s"
314
  msgstr ""
315
 
316
+ #: app/features/events.php:186 app/features/labels.php:72
317
  #: app/features/locations.php:70 app/features/organizers.php:70
318
  #: app/features/speakers.php:71
319
  #, php-format
320
  msgid "Edit %s"
321
  msgstr ""
322
 
323
+ #: app/features/events.php:187 app/features/labels.php:73
324
  #: app/features/locations.php:71 app/features/organizers.php:71
325
  #: app/features/speakers.php:72
326
  #, php-format
327
  msgid "View %s"
328
  msgstr ""
329
 
330
+ #: app/features/events.php:188 app/features/labels.php:74
331
  #: app/features/locations.php:72 app/features/organizers.php:72
332
  #: app/features/speakers.php:73
333
  #, php-format
334
  msgid "Update %s"
335
  msgstr ""
336
 
337
+ #: app/features/events.php:189 app/features/labels.php:75
338
  #: app/features/locations.php:73 app/features/organizers.php:73
339
  #: app/features/speakers.php:74
340
  #, php-format
341
  msgid "Add New %s"
342
  msgstr ""
343
 
344
+ #: app/features/events.php:190 app/features/labels.php:76
345
  #: app/features/locations.php:74 app/features/organizers.php:74
346
  #: app/features/speakers.php:75
347
  #, php-format
348
  msgid "New %s Name"
349
  msgstr ""
350
 
351
+ #: app/features/events.php:191 app/features/labels.php:77
352
  #: app/features/locations.php:75 app/features/organizers.php:75
353
  #: app/features/speakers.php:76
354
  #, php-format
355
  msgid "Popular %s"
356
  msgstr ""
357
 
358
+ #: app/features/events.php:192 app/features/labels.php:78
359
  #: app/features/locations.php:76 app/features/organizers.php:76
360
  #: app/features/speakers.php:77
361
  #, php-format
362
  msgid "Search %s"
363
  msgstr ""
364
 
365
+ #: app/features/events.php:217 app/features/events.php:238
366
  msgid "Category Icon"
367
  msgstr ""
368
 
369
+ #: app/features/events.php:220 app/features/events.php:243
370
  msgid "Select icon"
371
  msgstr ""
372
 
373
+ #: app/features/events.php:292
374
  msgid "Event Details"
375
  msgstr ""
376
 
377
+ #: app/features/events.php:451
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
378
  msgid "Note for reviewer"
379
  msgstr ""
380
 
381
+ #: app/features/events.php:460
382
  msgid "Guest Data"
383
  msgstr ""
384
 
385
+ #: app/features/events.php:461 app/features/events.php:2392
386
  #: app/features/fes/form.php:668 app/features/labels.php:178
387
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
388
+ #: app/features/profile/profile.php:91 app/libraries/notifications.php:805
389
  #: app/modules/booking/steps/form.php:37
390
  msgid "Name"
391
  msgstr ""
392
 
393
+ #: app/features/events.php:462 app/features/events.php:2403
394
+ #: app/features/events.php:2479 app/features/fes/form.php:664
395
+ #: app/features/mec/booking.php:57 app/features/mec/booking.php:463
396
  #: app/features/organizers.php:111 app/features/organizers.php:152
397
+ #: app/features/profile/profile.php:94 app/features/speakers.php:124
398
  #: app/features/speakers.php:184 app/libraries/main.php:1471
399
  #: app/libraries/main.php:1537 app/libraries/main.php:2582
400
  #: app/libraries/notifications.php:806 app/modules/booking/steps/form.php:46
401
+ #: app/modules/booking/steps/form.php:84 app/skins/single.php:812
402
+ #: app/skins/single.php:867 app/skins/single/default.php:212
403
  #: app/skins/single/default.php:424 app/skins/single/m1.php:107
404
  #: app/skins/single/m2.php:39 app/skins/single/modern.php:48
405
  msgid "Email"
406
  msgstr ""
407
 
408
+ #: app/features/events.php:467 app/features/fes/form.php:232
409
  msgid "Date and Time"
410
  msgstr ""
411
 
412
+ #: app/features/events.php:470 app/features/events.php:476
413
+ #: app/features/events.php:3218 app/features/events.php:3408
414
+ #: app/features/events.php:3450 app/features/fes/form.php:236
415
  #: app/features/fes/form.php:240 app/features/ix.php:2743
416
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:38
417
  #: app/features/mec/dashboard.php:373
418
+ #: app/features/mec/meta_boxes/display_options.php:48
419
+ #: app/features/mec/meta_boxes/display_options.php:189
420
+ #: app/features/mec/meta_boxes/display_options.php:341
421
+ #: app/features/mec/meta_boxes/display_options.php:396
422
+ #: app/features/mec/meta_boxes/display_options.php:519
423
+ #: app/features/mec/meta_boxes/display_options.php:573
424
+ #: app/features/mec/meta_boxes/display_options.php:620
425
+ #: app/features/mec/meta_boxes/display_options.php:653
426
+ #: app/features/mec/meta_boxes/display_options.php:688
427
+ #: app/features/mec/meta_boxes/display_options.php:734
428
+ #: app/features/mec/meta_boxes/display_options.php:800
429
+ #: app/features/mec/meta_boxes/display_options.php:1035
430
+ #: app/features/mec/meta_boxes/display_options.php:1122
431
  msgid "Start Date"
432
  msgstr ""
433
 
434
+ #: app/features/events.php:548 app/features/events.php:640
435
+ #: app/features/events.php:1706 app/features/events.php:1765
436
+ #: app/features/events.php:1938 app/features/events.php:1977
437
  #: app/features/fes/form.php:268 app/features/fes/form.php:308
438
  msgid "AM"
439
  msgstr ""
440
 
441
+ #: app/features/events.php:555 app/features/events.php:647
442
+ #: app/features/events.php:1713 app/features/events.php:1772
443
+ #: app/features/events.php:1939 app/features/events.php:1978
444
  #: app/features/fes/form.php:269 app/features/fes/form.php:309
445
  msgid "PM"
446
  msgstr ""
447
 
448
+ #: app/features/events.php:562 app/features/events.php:567
449
+ #: app/features/events.php:3219 app/features/events.php:3408
450
+ #: app/features/events.php:3450 app/features/fes/form.php:276
451
  #: app/features/fes/form.php:280 app/features/ix.php:2743
452
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:44
453
  #: app/features/mec/dashboard.php:374
454
  msgid "End Date"
455
  msgstr ""
456
 
457
+ #: app/features/events.php:661 app/features/fes/form.php:315
458
  msgid "All Day Event"
459
  msgstr ""
460
 
461
+ #: app/features/events.php:671 app/features/fes/form.php:318
462
  msgid "Hide Event Time"
463
  msgstr ""
464
 
465
+ #: app/features/events.php:681 app/features/fes/form.php:321
466
  msgid "Hide Event End Time"
467
  msgstr ""
468
 
469
+ #: app/features/events.php:686 app/features/events.php:690
470
  #: app/features/fes/form.php:325
471
  msgid "Time Comment"
472
  msgstr ""
473
 
474
+ #: app/features/events.php:691 app/features/fes/form.php:326
475
  msgid ""
476
  "It shows next to event time on single event page. You can insert Timezone "
477
  "etc. in this field."
478
  msgstr ""
479
 
480
+ #: app/features/events.php:693 app/features/events.php:826
481
+ #: app/features/events.php:1126 app/features/events.php:1193
482
+ #: app/features/events.php:1492 app/features/events.php:1583
483
+ #: app/features/events.php:1794 app/features/events.php:1809
484
+ #: app/features/events.php:1997 app/features/events.php:2010
485
+ #: app/features/events.php:2140 app/features/events.php:2176
486
+ #: app/features/events.php:2274 app/features/events.php:2289
487
+ #: app/features/events.php:2319 app/features/events.php:2332
488
  #: app/features/fes/form.php:630 app/features/locations.php:299
489
+ #: app/features/mec/booking.php:108 app/features/mec/booking.php:145
490
+ #: app/features/mec/booking.php:161 app/features/mec/booking.php:279
491
+ #: app/features/mec/booking.php:308 app/features/mec/booking.php:356
492
+ #: app/features/mec/booking.php:366 app/features/mec/booking.php:388
493
+ #: app/features/mec/booking.php:398 app/features/mec/dashboard.php:71
494
+ #: app/features/mec/meta_boxes/display_options.php:66
495
+ #: app/features/mec/meta_boxes/display_options.php:79
496
+ #: app/features/mec/meta_boxes/display_options.php:92
497
+ #: app/features/mec/meta_boxes/display_options.php:103
498
+ #: app/features/mec/meta_boxes/display_options.php:115
499
+ #: app/features/mec/meta_boxes/display_options.php:207
500
+ #: app/features/mec/meta_boxes/display_options.php:219
501
+ #: app/features/mec/meta_boxes/display_options.php:231
502
+ #: app/features/mec/meta_boxes/display_options.php:244
503
+ #: app/features/mec/meta_boxes/display_options.php:255
504
+ #: app/features/mec/meta_boxes/display_options.php:268
505
+ #: app/features/mec/meta_boxes/display_options.php:279
506
+ #: app/features/mec/meta_boxes/display_options.php:360
507
+ #: app/features/mec/meta_boxes/display_options.php:536
508
+ #: app/features/mec/meta_boxes/display_options.php:819
509
+ #: app/features/mec/meta_boxes/display_options.php:892
510
+ #: app/features/mec/meta_boxes/display_options.php:904
511
+ #: app/features/mec/meta_boxes/display_options.php:915
512
+ #: app/features/mec/meta_boxes/display_options.php:947
513
+ #: app/features/mec/meta_boxes/display_options.php:958
514
+ #: app/features/mec/meta_boxes/display_options.php:971
515
+ #: app/features/mec/meta_boxes/display_options.php:1006
516
+ #: app/features/mec/meta_boxes/display_options.php:1055
517
+ #: app/features/mec/meta_boxes/display_options.php:1066
518
+ #: app/features/mec/meta_boxes/display_options.php:1077
519
+ #: app/features/mec/meta_boxes/display_options.php:1142
520
+ #: app/features/mec/meta_boxes/display_options.php:1155
521
+ #: app/features/mec/meta_boxes/display_options.php:1168
522
+ #: app/features/mec/meta_boxes/display_options.php:1181
523
+ #: app/features/mec/meta_boxes/display_options.php:1194
524
+ #: app/features/mec/modules.php:53 app/features/mec/modules.php:86
525
+ #: app/features/mec/modules.php:103 app/features/mec/modules.php:138
526
+ #: app/features/mec/modules.php:154 app/features/mec/modules.php:312
527
  #: app/features/mec/notifications.php:50 app/features/mec/notifications.php:107
528
  #: app/features/mec/notifications.php:159
529
  #: app/features/mec/notifications.php:218
530
  #: app/features/mec/notifications.php:286
531
  #: app/features/mec/notifications.php:349
532
  #: app/features/mec/notifications.php:360
533
+ #: app/features/mec/notifications.php:422 app/features/mec/settings.php:66
534
+ #: app/features/mec/settings.php:85 app/features/mec/settings.php:112
535
+ #: app/features/mec/settings.php:147 app/features/mec/settings.php:168
536
+ #: app/features/mec/settings.php:188 app/features/mec/settings.php:265
537
+ #: app/features/mec/settings.php:339 app/features/mec/settings.php:356
538
+ #: app/features/mec/settings.php:373 app/features/mec/settings.php:392
539
+ #: app/features/mec/settings.php:406 app/features/mec/settings.php:434
540
+ #: app/features/mec/settings.php:521 app/features/mec/settings.php:659
541
+ #: app/features/mec/settings.php:676 app/features/mec/settings.php:781
542
+ #: app/features/mec/settings.php:794 app/features/mec/settings.php:810
543
+ #: app/features/mec/single.php:42 app/features/mec/single.php:58
544
+ #: app/features/mec/single.php:77 app/features/mec/single.php:94
545
+ #: app/features/mec/single.php:110 app/features/mec/single.php:124
546
+ #: app/features/mec/single.php:162 app/features/mec/styling.php:199
547
  #: app/features/mec/styling.php:216 app/features/mec/styling.php:229
548
+ #: app/features/organizers.php:272 app/skins/single.php:657
549
  #: app/skins/single/default.php:119 app/skins/single/default.php:331
550
  #: app/skins/single/m1.php:192 app/skins/single/m2.php:125
551
  #: app/skins/single/modern.php:133
552
  msgid "Read More"
553
  msgstr ""
554
 
555
+ #: app/features/events.php:701
556
+ msgid "Repeating"
557
+ msgstr ""
558
+
559
+ #: app/features/events.php:710 app/features/fes/form.php:332
560
  msgid "Event Repeating"
561
  msgstr ""
562
 
563
+ #: app/features/events.php:714 app/features/fes/form.php:336
564
  msgid "Repeats"
565
  msgstr ""
566
 
567
+ #: app/features/events.php:722 app/features/fes/form.php:338
568
  #: app/features/mec/dashboard.php:376 app/skins/full_calendar/tpl.php:109
569
  msgid "Daily"
570
  msgstr ""
571
 
572
+ #: app/features/events.php:729 app/features/fes/form.php:339
573
  msgid "Every Weekday"
574
  msgstr ""
575
 
576
+ #: app/features/events.php:736 app/features/fes/form.php:340
577
  msgid "Every Weekend"
578
  msgstr ""
579
 
580
+ #: app/features/events.php:743 app/features/fes/form.php:341
581
  msgid "Certain Weekdays"
582
  msgstr ""
583
 
584
+ #: app/features/events.php:750 app/features/fes/form.php:342
585
  #: app/skins/full_calendar/tpl.php:108
586
  msgid "Weekly"
587
  msgstr ""
588
 
589
+ #: app/features/events.php:757 app/features/fes/form.php:343
590
  #: app/features/mec/dashboard.php:377 app/skins/full_calendar/tpl.php:107
591
  msgid "Monthly"
592
  msgstr ""
593
 
594
+ #: app/features/events.php:764 app/features/fes/form.php:344
595
  #: app/features/mec/dashboard.php:378 app/skins/full_calendar/tpl.php:106
596
  msgid "Yearly"
597
  msgstr ""
598
 
599
+ #: app/features/events.php:771 app/features/fes/form.php:345
600
  msgid "Custom Days"
601
  msgstr ""
602
 
603
+ #: app/features/events.php:778 app/features/fes/form.php:346
604
  msgid "Advanced"
605
  msgstr ""
606
 
607
+ #: app/features/events.php:783 app/features/fes/form.php:350
608
  msgid "Repeat Interval"
609
  msgstr ""
610
 
611
+ #: app/features/events.php:785 app/features/fes/form.php:351
612
  msgid "Repeat interval"
613
  msgstr ""
614
 
615
+ #: app/features/events.php:789 app/features/fes/form.php:354
616
  msgid "Week Days"
617
  msgstr ""
618
 
619
+ #: app/features/events.php:791 app/features/fes/form.php:355
620
+ #: app/features/mec/meta_boxes/display_options.php:764
621
  #: app/libraries/main.php:407
622
  msgid "Monday"
623
  msgstr ""
624
 
625
+ #: app/features/events.php:794 app/features/fes/form.php:356
626
+ #: app/features/mec/meta_boxes/display_options.php:765
627
  #: app/libraries/main.php:407
628
  msgid "Tuesday"
629
  msgstr ""
630
 
631
+ #: app/features/events.php:797 app/features/fes/form.php:357
632
+ #: app/features/mec/meta_boxes/display_options.php:766
633
  #: app/libraries/main.php:407
634
  msgid "Wednesday"
635
  msgstr ""
636
 
637
+ #: app/features/events.php:800 app/features/fes/form.php:358
638
+ #: app/features/mec/meta_boxes/display_options.php:767
639
  #: app/libraries/main.php:407
640
  msgid "Thursday"
641
  msgstr ""
642
 
643
+ #: app/features/events.php:803 app/features/fes/form.php:359
644
+ #: app/features/mec/meta_boxes/display_options.php:768
645
  #: app/libraries/main.php:407
646
  msgid "Friday"
647
  msgstr ""
648
 
649
+ #: app/features/events.php:806 app/features/fes/form.php:360
650
+ #: app/features/mec/meta_boxes/display_options.php:769
651
  #: app/libraries/main.php:407
652
  msgid "Saturday"
653
  msgstr ""
654
 
655
+ #: app/features/events.php:809 app/features/fes/form.php:361
656
+ #: app/features/mec/meta_boxes/display_options.php:763
657
  #: app/libraries/main.php:407
658
  msgid "Sunday"
659
  msgstr ""
660
 
661
+ #: app/features/events.php:816 app/features/events.php:1857
662
+ #: app/features/events.php:1885 app/features/events.php:2044
663
  #: app/features/fes/form.php:366 app/features/ix/import_f_calendar.php:42
664
  #: app/features/ix/import_g_calendar.php:51
665
  #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
666
  msgid "Start"
667
  msgstr ""
668
 
669
+ #: app/features/events.php:818 app/features/events.php:1861
670
+ #: app/features/events.php:1889 app/features/events.php:2048
671
  #: app/features/fes/form.php:367
672
  msgid "End"
673
  msgstr ""
674
 
675
+ #: app/features/events.php:820 app/features/events.php:1187
676
+ #: app/features/events.php:1298 app/features/events.php:1403
677
+ #: app/features/events.php:1641 app/features/events.php:1840
678
+ #: app/features/events.php:2033 app/features/events.php:2113
679
+ #: app/features/events.php:2246 app/features/fes/form.php:368
680
  #: app/features/fes/form.php:842
681
  msgid "Add"
682
  msgstr ""
683
 
684
+ #: app/features/events.php:823
685
  msgid "Custom Days Repeating"
686
  msgstr ""
687
 
688
+ #: app/features/events.php:824
689
  msgid ""
690
  "Add certain days to event occurrence dates. If you have single day event, "
691
  "start and end date should be the same, If you have multiple day event the "
692
  "start and end dates must be commensurate with the initial date."
693
  msgstr ""
694
 
695
+ #: app/features/events.php:860 app/features/fes/form.php:394
696
  msgid "First"
697
  msgstr ""
698
 
699
+ #: app/features/events.php:902 app/features/fes/form.php:436
700
  msgid "Second"
701
  msgstr ""
702
 
703
+ #: app/features/events.php:944 app/features/fes/form.php:478
704
  msgid "Third"
705
  msgstr ""
706
 
707
+ #: app/features/events.php:986 app/features/fes/form.php:520
708
  msgid "Fourth"
709
  msgstr ""
710
 
711
+ #: app/features/events.php:1028 app/features/fes/form.php:562
712
  msgid "Last"
713
  msgstr ""
714
 
715
+ #: app/features/events.php:1075 app/features/fes/form.php:608
716
  msgid "Ends Repeat"
717
  msgstr ""
718
 
719
+ #: app/features/events.php:1087 app/features/fes/form.php:612
720
  msgid "Never"
721
  msgstr ""
722
 
723
+ #: app/features/events.php:1099 app/features/fes/form.php:617
724
  msgid "On"
725
  msgstr ""
726
 
727
+ #: app/features/events.php:1115 app/features/fes/form.php:624
728
  msgid "After"
729
  msgstr ""
730
 
731
+ #: app/features/events.php:1119 app/features/events.php:1123
732
  #: app/features/fes/form.php:626 app/features/fes/form.php:629
733
  msgid "Occurrences times"
734
  msgstr ""
735
 
736
+ #: app/features/events.php:1124 app/features/fes/form.php:630
737
  msgid ""
738
  "The event will finish after certain repeats. For example if you set it to "
739
  "10, the event will finish after 10 repeats."
740
  msgstr ""
741
 
742
+ #: app/features/events.php:1149 app/features/events.php:3408
743
+ #: app/features/events.php:3450 app/features/fes/form.php:706
744
+ #: app/features/ix.php:2743 app/features/ix.php:2784
745
+ #: app/features/mec/settings.php:576 app/libraries/main.php:4877
746
+ #: app/widgets/single.php:103
747
+ msgid "Event Cost"
748
+ msgstr ""
749
+
750
+ #: app/features/events.php:1153 app/features/fes/form.php:709
751
+ #: app/libraries/main.php:4878 app/skins/single.php:582
752
+ #: app/skins/single/default.php:104 app/skins/single/default.php:316
753
+ #: app/skins/single/m1.php:49 app/skins/single/modern.php:199
754
+ msgid "Cost"
755
+ msgstr ""
756
+
757
+ #: app/features/events.php:1180 app/features/events.php:1190
758
  msgid "Exclude certain days"
759
  msgstr ""
760
 
761
+ #: app/features/events.php:1185 app/features/events.php:2480
762
+ #: app/features/mec/booking.php:464 app/features/profile/profile.php:32
763
  #: app/libraries/main.php:2030 app/libraries/main.php:2640
764
  #: app/modules/booking/steps/tickets.php:22
765
+ #: app/modules/next-event/details.php:90 app/skins/single.php:637
766
  #: app/skins/single/default.php:68 app/skins/single/default.php:280
767
  #: app/skins/single/m1.php:16 app/skins/single/modern.php:166
768
  msgid "Date"
769
  msgstr ""
770
 
771
+ #: app/features/events.php:1191
772
  msgid ""
773
  "Exclude certain days from event occurrence dates. Please note that you can "
774
  "exclude only single day occurrences and you cannot exclude one day from "
775
  "multiple day occurrences."
776
  msgstr ""
777
 
778
+ #: app/features/events.php:1245 app/libraries/render.php:455
779
  msgid "Day 1"
780
  msgstr ""
781
 
782
+ #: app/features/events.php:1267 app/features/mec/settings.php:630
783
+ #: app/skins/single.php:930
784
  msgid "Hourly Schedule"
785
  msgstr ""
786
 
787
+ #: app/features/events.php:1271
788
  msgid "Add Day"
789
  msgstr ""
790
 
791
+ #: app/features/events.php:1272
792
  msgid ""
793
  "Add new days for schedule. For example if your event is multiple days, you "
794
  "can add a different schedule for each day!"
795
  msgstr ""
796
 
797
+ #: app/features/events.php:1279
798
  #, php-format
799
  msgid "Day %s"
800
  msgstr ""
801
 
802
+ #: app/features/events.php:1283 app/features/events.php:1322
803
+ #: app/features/events.php:1357 app/features/events.php:1389
804
+ #: app/features/events.php:1418 app/features/events.php:2261
805
+ #: app/features/events.php:2308 app/features/events.php:3214
806
+ #: app/features/events.php:3408 app/features/events.php:3450
807
  #: app/features/fes/form.php:225 app/features/ix.php:2743
808
+ #: app/features/ix.php:2784 app/features/mec/booking.php:348
809
+ #: app/features/mec/booking.php:380 app/features/mec/styling.php:111
810
  msgid "Title"
811
  msgstr ""
812
 
813
+ #: app/features/events.php:1292 app/features/events.php:1329
814
+ #: app/features/events.php:1362 app/features/events.php:1397
815
+ #: app/features/events.php:1423 app/features/events.php:1833
816
+ #: app/features/events.php:1871 app/features/events.php:1897
817
+ #: app/features/events.php:2027 app/features/events.php:2054
818
+ #: app/features/events.php:2153 app/features/events.php:2189
819
+ #: app/features/events.php:2296 app/features/events.php:2338
820
+ #: app/features/fes/list.php:78 app/features/mec/booking.php:291
821
+ #: app/features/mec/booking.php:320 app/features/mec/booking.php:371
822
+ #: app/features/mec/booking.php:403 app/libraries/main.php:2501
823
  #: app/libraries/main.php:2531 app/libraries/main.php:2560
824
  #: app/libraries/main.php:2590 app/libraries/main.php:2619
825
  #: app/libraries/main.php:2648 app/libraries/main.php:2677
830
  msgid "Remove"
831
  msgstr ""
832
 
833
+ #: app/features/events.php:1299 app/features/events.php:1404
834
  msgid "Add new hourly schedule row"
835
  msgstr ""
836
 
837
+ #: app/features/events.php:1314 app/features/events.php:1351
838
+ #: app/features/events.php:1413
839
  msgid "From e.g. 8:15"
840
  msgstr ""
841
 
842
+ #: app/features/events.php:1318 app/features/events.php:1354
843
+ #: app/features/events.php:1415
844
  msgid "To e.g. 8:45"
845
  msgstr ""
846
 
847
+ #: app/features/events.php:1326 app/features/events.php:1360
848
+ #: app/features/events.php:1421 app/features/events.php:1781
849
+ #: app/features/events.php:1986
850
  msgid "Description"
851
  msgstr ""
852
 
853
+ #: app/features/events.php:1332 app/features/events.php:1365
854
+ #: app/features/events.php:1426 app/features/fes/form.php:838
855
+ #: app/features/mec.php:343 app/features/mec/modules.php:52
856
+ #: app/features/mec/settings.php:624 app/features/speakers.php:60
857
+ #: app/libraries/main.php:559 app/libraries/main.php:4852
858
  #: app/modules/speakers/details.php:18
859
  msgid "Speakers"
860
  msgstr ""
861
 
862
+ #: app/features/events.php:1385 app/features/events.php:1393
863
  msgid "New Day"
864
  msgstr ""
865
 
866
+ #: app/features/events.php:1457 app/features/fes/form.php:683
867
+ #: app/features/mec/settings.php:570
868
  msgid "Event Links"
869
  msgstr ""
870
 
871
+ #: app/features/events.php:1460 app/features/events.php:1466
872
+ #: app/features/fes/form.php:685 app/libraries/main.php:4875
873
  msgid "Event Link"
874
  msgstr ""
875
 
876
+ #: app/features/events.php:1463 app/features/events.php:1479
877
  #: app/features/fes/form.php:686 app/features/fes/form.php:691
878
  msgid "eg. http://yoursite.com/your-event"
879
  msgstr ""
880
 
881
+ #: app/features/events.php:1467
882
  msgid ""
883
  "If you fill it, it will be replaced instead of default event page link. "
884
  "Insert full link including http(s):// - Also, if you use advertising URL, "
885
  "can use URL Shortener"
886
  msgstr ""
887
 
888
+ #: app/features/events.php:1469
889
  msgid "URL Shortener"
890
  msgstr ""
891
 
892
+ #: app/features/events.php:1476 app/features/events.php:1489
893
+ #: app/features/fes/form.php:690 app/libraries/main.php:4876
894
+ #: app/skins/single.php:656 app/skins/single/default.php:118
895
  #: app/skins/single/default.php:330 app/skins/single/m1.php:191
896
  #: app/skins/single/m2.php:124 app/skins/single/modern.php:132
897
  #: app/widgets/single.php:107
898
  msgid "More Info"
899
  msgstr ""
900
 
901
+ #: app/features/events.php:1482 app/features/fes/form.php:692
902
  msgid "More Information"
903
  msgstr ""
904
 
905
+ #: app/features/events.php:1484 app/features/fes/form.php:694
906
  msgid "Current Window"
907
  msgstr ""
908
 
909
+ #: app/features/events.php:1485 app/features/fes/form.php:695
910
  msgid "New Window"
911
  msgstr ""
912
 
913
+ #: app/features/events.php:1490 app/features/fes/form.php:697
914
  msgid ""
915
  "If you fill it, it will be shown in event details page as an optional link. "
916
  "Insert full link including http(s)://"
917
  msgstr ""
918
 
919
+ #: app/features/events.php:1564 app/features/events.php:1579
920
  msgid "Total booking limits"
921
  msgstr ""
922
 
923
+ #: app/features/events.php:1576 app/features/events.php:1830
924
+ #: app/features/events.php:2024 app/modules/booking/default.php:85
925
  #: app/modules/booking/steps/tickets.php:40
926
  #: app/skins/available_spot/tpl.php:145
927
  msgid "Unlimited"
928
  msgstr ""
929
 
930
+ #: app/features/events.php:1582
931
  msgid ""
932
  "If you want to set a limit to all tickets, uncheck this checkbox and put a "
933
  "limitation number."
934
  msgstr ""
935
 
936
+ #: app/features/events.php:1584
937
  msgid "Read About A Booking System"
938
  msgstr ""
939
 
940
+ #: app/features/events.php:1592
941
  msgid "100"
942
  msgstr ""
943
 
944
+ #: app/features/events.php:1597
945
  msgid "Total user booking limits"
946
  msgstr ""
947
 
948
+ #: app/features/events.php:1609 app/features/events.php:2102
949
+ #: app/features/events.php:2234 app/features/events.php:2422
950
  msgid "Inherit from global options"
951
  msgstr ""
952
 
953
+ #: app/features/events.php:1612
954
  msgid "12"
955
  msgstr ""
956
 
957
+ #: app/features/events.php:1633 app/libraries/book.php:60
958
+ #: app/libraries/main.php:4880 app/modules/booking/steps/tickets.php:40
959
  msgid "Tickets"
960
  msgstr ""
961
 
962
+ #: app/features/events.php:1636
963
  msgid ""
964
  "You're translating an event so MEC will use the original event for tickets "
965
  "and booking. You can only translate the ticket name and description. Please "
966
  "define exact tickets that you defined in the original event here."
967
  msgstr ""
968
 
969
+ #: app/features/events.php:1655 app/features/events.php:1911
970
  msgid "Ticket Name"
971
  msgstr ""
972
 
973
+ #: app/features/events.php:1660 app/features/events.php:1915
974
+ #: app/features/events.php:3408 app/features/events.php:3450
975
  #: app/features/ix.php:2743 app/features/ix.php:2784
976
  msgid "Start Time"
977
  msgstr ""
978
 
979
+ #: app/features/events.php:1719 app/features/events.php:1945
980
+ #: app/features/events.php:3408 app/features/events.php:3450
981
  #: app/features/ix.php:2743 app/features/ix.php:2784
982
  msgid "End Time"
983
  msgstr ""
984
 
985
+ #: app/features/events.php:1787 app/features/events.php:1791
986
+ #: app/features/events.php:1865 app/features/events.php:1892
987
+ #: app/features/events.php:1991 app/features/events.php:1994
988
+ #: app/features/events.php:2050 app/features/events.php:2267
989
+ #: app/features/events.php:2271 app/features/events.php:2313
990
+ #: app/features/events.php:2316 app/features/mec/booking.php:352
991
+ #: app/features/mec/booking.php:355 app/features/mec/booking.php:384
992
+ #: app/features/mec/booking.php:387
993
  msgid "Price"
994
  msgstr ""
995
 
996
+ #: app/features/events.php:1792 app/features/events.php:1995
997
  msgid "Insert 0 for free ticket. Only numbers please."
998
  msgstr ""
999
 
1000
+ #: app/features/events.php:1801 app/features/events.php:1806
1001
+ #: app/features/events.php:2004 app/features/events.php:2007
1002
  msgid "Price Label"
1003
  msgstr ""
1004
 
1005
+ #: app/features/events.php:1807 app/features/events.php:2008
1006
  msgid "For showing on website. e.g. $15"
1007
  msgstr ""
1008
 
1009
+ #: app/features/events.php:1817 app/features/events.php:2018
1010
  msgid "Available Tickets"
1011
  msgstr ""
1012
 
1013
+ #: app/features/events.php:1838 app/features/events.php:2031
1014
  msgid "Price per Date"
1015
  msgstr ""
1016
 
1017
+ #: app/features/events.php:1869 app/features/events.php:1895
1018
+ #: app/features/events.php:2052 app/features/labels.php:60
1019
+ #: app/features/mec/meta_boxes/display_options.php:833
1020
  #: app/features/mec/meta_boxes/search_form.php:66
1021
  #: app/features/mec/meta_boxes/search_form.php:128
1022
  #: app/features/mec/meta_boxes/search_form.php:190
1027
  #: app/features/mec/meta_boxes/search_form.php:488
1028
  #: app/features/mec/meta_boxes/search_form.php:549
1029
  #: app/features/mec/meta_boxes/search_form.php:610
1030
+ #: app/features/mec/settings.php:751 app/features/mec/single.php:222
1031
  #: app/libraries/skins.php:938
1032
  msgid "Label"
1033
  msgstr ""
1034
 
1035
+ #: app/features/events.php:2090
1036
  msgid "Fees"
1037
  msgstr ""
1038
 
1039
+ #: app/features/events.php:2127 app/features/events.php:2165
1040
+ #: app/features/mec/booking.php:271 app/features/mec/booking.php:300
1041
  msgid "Fee Title"
1042
  msgstr ""
1043
 
1044
+ #: app/features/events.php:2133 app/features/events.php:2137
1045
+ #: app/features/events.php:2170 app/features/events.php:2173
1046
+ #: app/features/mec/booking.php:275 app/features/mec/booking.php:278
1047
+ #: app/features/mec/booking.php:304 app/features/mec/booking.php:307
1048
  msgid "Amount"
1049
  msgstr ""
1050
 
1051
+ #: app/features/events.php:2138 app/features/events.php:2174
1052
+ #: app/features/mec/booking.php:279 app/features/mec/booking.php:308
1053
  msgid ""
1054
  "Fee amount, considered as fixed amount if you set the type to amount "
1055
  "otherwise considered as percentage"
1056
  msgstr ""
1057
 
1058
+ #: app/features/events.php:2147 app/features/events.php:2183
1059
+ #: app/features/mec/booking.php:286 app/features/mec/booking.php:315
1060
  msgid "Percent"
1061
  msgstr ""
1062
 
1063
+ #: app/features/events.php:2148 app/features/events.php:2184
1064
+ #: app/features/mec/booking.php:287 app/features/mec/booking.php:316
1065
  msgid "Amount (Per Ticket)"
1066
  msgstr ""
1067
 
1068
+ #: app/features/events.php:2149 app/features/events.php:2185
1069
+ #: app/features/mec/booking.php:288 app/features/mec/booking.php:317
1070
  msgid "Amount (Per Booking)"
1071
  msgstr ""
1072
 
1073
+ #: app/features/events.php:2222 app/features/mec/settings.php:648
1074
  msgid "Ticket Variations / Options"
1075
  msgstr ""
1076
 
1077
+ #: app/features/events.php:2272 app/features/events.php:2317
1078
+ #: app/features/mec/booking.php:356 app/features/mec/booking.php:388
1079
  msgid "Option Price"
1080
  msgstr ""
1081
 
1082
+ #: app/features/events.php:2282 app/features/events.php:2286
1083
+ #: app/features/events.php:2326 app/features/events.php:2329
1084
+ #: app/features/mec/booking.php:362 app/features/mec/booking.php:365
1085
+ #: app/features/mec/booking.php:394 app/features/mec/booking.php:397
1086
  msgid "Maximum Per Ticket"
1087
  msgstr ""
1088
 
1089
+ #: app/features/events.php:2287 app/features/events.php:2330
1090
+ #: app/features/mec/booking.php:366 app/features/mec/booking.php:398
1091
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
1092
  msgstr ""
1093
 
1094
+ #: app/features/events.php:2476 app/features/mec/booking.php:460
1095
  #: app/libraries/main.php:2523
1096
  msgid "MEC Name"
1097
  msgstr ""
1098
 
1099
+ #: app/features/events.php:2477 app/features/mec/booking.php:461
1100
  #: app/libraries/main.php:2552
1101
  msgid "MEC Email"
1102
  msgstr ""
1103
 
1104
+ #: app/features/events.php:2478 app/features/mec/booking.php:462
1105
  #: app/libraries/main.php:2493
1106
  msgid "Text"
1107
  msgstr ""
1108
 
1109
+ #: app/features/events.php:2481 app/features/mec/booking.php:465
1110
  #: app/features/organizers.php:103 app/features/organizers.php:148
1111
  #: app/features/speakers.php:116 app/features/speakers.php:180
1112
  #: app/features/speakers.php:249 app/libraries/main.php:2669
1113
  msgid "Tel"
1114
  msgstr ""
1115
 
1116
+ #: app/features/events.php:2482 app/features/mec/booking.php:466
1117
  #: app/libraries/main.php:2611
1118
  msgid "File"
1119
  msgstr ""
1120
 
1121
+ #: app/features/events.php:2483 app/features/mec/booking.php:467
1122
  #: app/libraries/main.php:2698
1123
  msgid "Textarea"
1124
  msgstr ""
1125
 
1126
+ #: app/features/events.php:2484 app/features/mec/booking.php:468
1127
  #: app/libraries/main.php:2751
1128
  msgid "Checkboxes"
1129
  msgstr ""
1130
 
1131
+ #: app/features/events.php:2485 app/features/mec/booking.php:469
1132
  #: app/libraries/main.php:2795
1133
  msgid "Radio Buttons"
1134
  msgstr ""
1135
 
1136
+ #: app/features/events.php:2486 app/features/mec/booking.php:470
1137
  #: app/features/mec/meta_boxes/search_form.php:34
1138
  #: app/features/mec/meta_boxes/search_form.php:41
1139
  #: app/features/mec/meta_boxes/search_form.php:48
1206
  msgid "Dropdown"
1207
  msgstr ""
1208
 
1209
+ #: app/features/events.php:2487 app/features/mec/booking.php:471
1210
  #: app/libraries/main.php:2886
1211
  msgid "Agreement"
1212
  msgstr ""
1213
 
1214
+ #: app/features/events.php:2488 app/features/mec/booking.php:472
1215
  #: app/libraries/main.php:2727
1216
  msgid "Paragraph"
1217
  msgstr ""
1218
 
1219
+ #: app/features/events.php:3135 app/features/events.php:3152
1220
+ #: app/features/events.php:3169 app/features/events.php:3186
1221
  #, php-format
1222
  msgid "Show all %s"
1223
  msgstr ""
1224
 
1225
+ #: app/features/events.php:3135
1226
  msgid "labels"
1227
  msgstr ""
1228
 
1229
+ #: app/features/events.php:3152
1230
  msgid "locations"
1231
  msgstr ""
1232
 
1233
+ #: app/features/events.php:3169
1234
  msgid "organizers"
1235
  msgstr ""
1236
 
1237
+ #: app/features/events.php:3216 app/features/events.php:3408
1238
+ #: app/features/events.php:3450 app/features/ix.php:2743
1239
  #: app/features/ix.php:2784 app/features/locations.php:58
1240
  #: app/features/locations.php:230 app/features/locations.php:287
1241
  #: app/features/locations.php:289 app/features/locations.php:298
1242
+ #: app/features/mec/meta_boxes/display_options.php:834
1243
  #: app/features/mec/meta_boxes/search_form.php:38
1244
  #: app/features/mec/meta_boxes/search_form.php:100
1245
  #: app/features/mec/meta_boxes/search_form.php:162
1250
  #: app/features/mec/meta_boxes/search_form.php:460
1251
  #: app/features/mec/meta_boxes/search_form.php:521
1252
  #: app/features/mec/meta_boxes/search_form.php:582
1253
+ #: app/features/mec/settings.php:725 app/features/mec/single.php:212
1254
+ #: app/libraries/main.php:2024 app/libraries/main.php:4849
1255
+ #: app/libraries/skins.php:834 app/skins/single.php:486
1256
+ #: app/skins/single.php:907 app/skins/single/default.php:154
1257
  #: app/skins/single/default.php:366 app/skins/single/m1.php:155
1258
  #: app/skins/single/m2.php:87 app/skins/single/modern.php:94
1259
  msgid "Location"
1260
  msgstr ""
1261
 
1262
+ #: app/features/events.php:3217 app/features/events.php:3408
1263
+ #: app/features/events.php:3450 app/features/ix.php:2743
1264
+ #: app/features/ix.php:2784 app/features/mec/meta_boxes/display_options.php:835
1265
  #: app/features/mec/meta_boxes/search_form.php:45
1266
  #: app/features/mec/meta_boxes/search_form.php:107
1267
  #: app/features/mec/meta_boxes/search_form.php:169
1272
  #: app/features/mec/meta_boxes/search_form.php:467
1273
  #: app/features/mec/meta_boxes/search_form.php:528
1274
  #: app/features/mec/meta_boxes/search_form.php:589
1275
+ #: app/features/mec/settings.php:731 app/features/mec/single.php:208
1276
  #: app/features/organizers.php:58 app/features/organizers.php:204
1277
  #: app/features/organizers.php:260 app/features/organizers.php:262
1278
+ #: app/features/organizers.php:271 app/libraries/main.php:4851
1279
+ #: app/libraries/skins.php:860 app/skins/single.php:795
1280
  #: app/skins/single/default.php:195 app/skins/single/default.php:407
1281
  #: app/skins/single/m1.php:90 app/skins/single/m2.php:22
1282
  #: app/skins/single/modern.php:31
1283
  msgid "Organizer"
1284
  msgstr ""
1285
 
1286
+ #: app/features/events.php:3221
1287
  msgid "Repeat"
1288
  msgstr ""
1289
 
1290
+ #: app/features/events.php:3222
1291
  msgid "Author"
1292
  msgstr ""
1293
 
1294
+ #: app/features/events.php:3343 app/features/events.php:3344
1295
  msgid "iCal Export"
1296
  msgstr ""
1297
 
1298
+ #: app/features/events.php:3346 app/features/events.php:3347
1299
  msgid "CSV Export"
1300
  msgstr ""
1301
 
1302
+ #: app/features/events.php:3349 app/features/events.php:3350
1303
  msgid "MS Excel Export"
1304
  msgstr ""
1305
 
1306
+ #: app/features/events.php:3352 app/features/events.php:3353
1307
  msgid "XML Export"
1308
  msgstr ""
1309
 
1310
+ #: app/features/events.php:3355 app/features/events.php:3356
1311
  msgid "JSON Export"
1312
  msgstr ""
1313
 
1314
+ #: app/features/events.php:3358 app/features/events.php:3359
1315
+ #: app/features/events.php:3540
1316
  msgid "Duplicate"
1317
  msgstr ""
1318
 
1319
+ #: app/features/events.php:3408 app/features/events.php:3450
1320
  #: app/features/ix.php:2743 app/features/ix.php:2784
1321
  #: app/features/labels.php:177 app/features/locations.php:229
1322
  #: app/features/organizers.php:203 app/features/speakers.php:246
1323
  msgid "ID"
1324
  msgstr ""
1325
 
1326
+ #: app/features/events.php:3408 app/features/events.php:3450
1327
  #: app/features/ix.php:2743 app/features/ix.php:2784
1328
  msgid "Link"
1329
  msgstr ""
1330
 
1331
+ #: app/features/events.php:3408 app/features/events.php:3450
1332
  #, php-format
1333
  msgid "%s Tel"
1334
  msgstr ""
1335
 
1336
+ #: app/features/events.php:3408 app/features/events.php:3450
1337
  #, php-format
1338
  msgid "%s Email"
1339
  msgstr ""
1418
  "Insert full link including http(s)://"
1419
  msgstr ""
1420
 
1421
+ #: app/features/fes/form.php:723 app/features/mec/settings.php:582
1422
  msgid "Featured Image"
1423
  msgstr ""
1424
 
1428
 
1429
  #: app/features/fes/form.php:770 app/features/labels.php:61
1430
  #: app/features/labels.php:221 app/features/mec.php:336
1431
+ #: app/features/mec/meta_boxes/filter.php:132 app/libraries/main.php:4846
1432
+ #: app/skins/single.php:685 app/skins/single/default.php:133
1433
  #: app/skins/single/default.php:345 app/skins/single/m1.php:64
1434
  #: app/skins/single/modern.php:214
1435
  msgid "Labels"
1436
  msgstr ""
1437
 
1438
  #: app/features/fes/form.php:816 app/features/mec.php:334
1439
+ #: app/features/mec/meta_boxes/filter.php:149
1440
  msgid "Tags"
1441
  msgstr ""
1442
 
1637
  "This will export all of your website events' data into your desired format."
1638
  msgstr ""
1639
 
1640
+ #: app/features/ix/export.php:25 app/features/mec/modules.php:178
1641
  msgid "iCal"
1642
  msgstr ""
1643
 
1741
  msgid "Add to Google Calendar"
1742
  msgstr ""
1743
 
1744
+ #: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:602
1745
+ #: app/features/mec/modules.php:392 app/features/mec/notifications.php:541
1746
+ #: app/features/mec/settings.php:894 app/features/mec/single.php:269
1747
  msgid "Checking ..."
1748
  msgstr ""
1749
 
1785
  msgid "ICS Feed"
1786
  msgstr ""
1787
 
1788
+ #: app/features/ix/import.php:46 app/features/mec/booking.php:91
1789
+ #: app/features/mec/booking.php:237 app/features/mec/booking.php:255
1790
+ #: app/features/mec/booking.php:332
1791
+ #: app/features/mec/meta_boxes/display_options.php:150
1792
+ #: app/features/mec/meta_boxes/display_options.php:315
1793
+ #: app/features/mec/modules.php:70 app/features/mec/modules.php:211
1794
+ #: app/features/mec/modules.php:228
1795
  #, php-format
1796
  msgid "%s is required to use this feature."
1797
  msgstr ""
1798
 
1799
  #: app/features/ix/import.php:46 app/features/ix/sync.php:22
1800
+ #: app/features/mec/booking.php:91 app/features/mec/booking.php:237
1801
+ #: app/features/mec/booking.php:255 app/features/mec/booking.php:332
1802
+ #: app/features/mec/meta_boxes/display_options.php:150
1803
+ #: app/features/mec/meta_boxes/display_options.php:315
1804
+ #: app/features/mec/meta_boxes/display_options.php:330
1805
+ #: app/features/mec/meta_boxes/display_options.php:457
1806
+ #: app/features/mec/meta_boxes/display_options.php:508
1807
+ #: app/features/mec/meta_boxes/display_options.php:615
1808
+ #: app/features/mec/meta_boxes/display_options.php:722
1809
+ #: app/features/mec/meta_boxes/display_options.php:795
1810
+ #: app/features/mec/meta_boxes/display_options.php:995
1811
+ #: app/features/mec/modules.php:70 app/features/mec/modules.php:211
1812
+ #: app/features/mec/modules.php:228
1813
  msgid "Pro version of Modern Events Calendar"
1814
  msgstr ""
1815
 
1961
  msgstr ""
1962
 
1963
  #: app/features/ix/sync.php:22
1964
+ #: app/features/mec/meta_boxes/display_options.php:795
1965
  #, php-format
1966
  msgid "%s is required to use synchronization feature."
1967
  msgstr ""
2109
  msgstr ""
2110
 
2111
  #: app/features/labels.php:112 app/features/labels.php:139
2112
+ #: app/features/mec/meta_boxes/display_options.php:38
2113
+ #: app/features/mec/meta_boxes/display_options.php:177
2114
+ #: app/features/mec/meta_boxes/display_options.php:335
2115
+ #: app/features/mec/meta_boxes/display_options.php:513
2116
+ #: app/features/mec/meta_boxes/display_options.php:563
2117
+ #: app/features/mec/meta_boxes/display_options.php:727
2118
+ #: app/features/mec/meta_boxes/display_options.php:877
2119
+ #: app/features/mec/meta_boxes/display_options.php:934
2120
+ #: app/features/mec/meta_boxes/display_options.php:1026
2121
+ #: app/features/mec/meta_boxes/display_options.php:1112
2122
  msgid "Style"
2123
  msgstr ""
2124
 
2140
  msgstr ""
2141
 
2142
  #: app/features/labels.php:118 app/features/labels.php:143
2143
+ #: app/libraries/main.php:5092 app/skins/agenda/render.php:41
2144
  #: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:45
2145
  #: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
2146
  #: app/skins/daily_view/render.php:52 app/skins/grid/render.php:53
2174
  msgstr ""
2175
 
2176
  #: app/features/locations.php:59 app/features/mec.php:337
2177
+ #: app/features/mec/dashboard.php:243 app/features/mec/meta_boxes/filter.php:98
2178
+ #: app/libraries/main.php:4848
2179
  msgid "Locations"
2180
  msgstr ""
2181
 
2246
  msgid "eg. City Hall"
2247
  msgstr ""
2248
 
2249
+ #: app/features/locations.php:310 app/features/mec/settings.php:612
2250
  #: app/widgets/single.php:115
2251
  msgid "Event Location"
2252
  msgstr ""
2280
  msgid "Don't show map in single event page"
2281
  msgstr ""
2282
 
2283
+ #: app/features/locations.php:356 app/libraries/main.php:4882
2284
  msgid "Other Locations"
2285
  msgstr ""
2286
 
2331
  msgstr ""
2332
 
2333
  #: app/features/mec.php:338 app/features/mec/dashboard.php:250
2334
+ #: app/features/mec/meta_boxes/filter.php:115 app/features/organizers.php:59
2335
+ #: app/libraries/main.php:4850
2336
  msgid "Organizers"
2337
  msgstr ""
2338
 
2435
  "your host provider in this regard."
2436
  msgstr ""
2437
 
2438
+ #: app/features/mec/booking.php:70 app/features/mec/modules.php:23
2439
+ #: app/features/mec/settings.php:32 app/features/mec/single.php:15
2440
+ #: app/features/mec/support-page.php:34
2441
+ msgid "Search..."
2442
+ msgstr ""
2443
+
2444
+ #: app/features/mec/booking.php:72 app/features/mec/booking.php:478
2445
+ #: app/features/mec/booking.php:558 app/features/mec/booking.php:567
2446
+ #: app/features/mec/booking.php:577 app/features/mec/booking.php:619
2447
+ #: app/features/mec/booking.php:633 app/features/mec/messages.php:11
2448
+ #: app/features/mec/messages.php:47 app/features/mec/messages.php:56
2449
+ #: app/features/mec/messages.php:90 app/features/mec/messages.php:99
2450
+ #: app/features/mec/modules.php:25 app/features/mec/modules.php:357
2451
+ #: app/features/mec/modules.php:367 app/features/mec/modules.php:409
2452
+ #: app/features/mec/modules.php:423 app/features/mec/notifications.php:10
2453
  #: app/features/mec/notifications.php:450
2454
  #: app/features/mec/notifications.php:462
2455
  #: app/features/mec/notifications.php:558
2456
+ #: app/features/mec/notifications.php:572 app/features/mec/settings.php:34
2457
+ #: app/features/mec/settings.php:843 app/features/mec/settings.php:853
2458
+ #: app/features/mec/settings.php:911 app/features/mec/settings.php:925
2459
+ #: app/features/mec/single.php:17 app/features/mec/single.php:234
2460
+ #: app/features/mec/single.php:244 app/features/mec/single.php:286
2461
+ #: app/features/mec/single.php:300 app/features/mec/styles.php:11
2462
  #: app/features/mec/styles.php:31 app/features/mec/styles.php:40
2463
  #: app/features/mec/styles.php:77 app/features/mec/styles.php:86
2464
  #: app/features/mec/styling.php:33 app/features/mec/styling.php:238
2467
  msgid "Save Changes"
2468
  msgstr ""
2469
 
2470
+ #: app/features/mec/booking.php:96
2471
  msgid "Enable booking module"
2472
  msgstr ""
2473
 
2474
+ #: app/features/mec/booking.php:97
2475
  msgid ""
2476
  "After enabling and saving the settings, reloading the page will add 'payment "
2477
  "Gateways' to the settings and a new menu item on the Dashboard"
2478
  msgstr ""
2479
 
2480
+ #: app/features/mec/booking.php:102 app/features/mec/booking.php:107
2481
+ #: app/features/mec/modules.php:306 app/features/mec/modules.php:311
2482
  msgid "Date Format"
2483
  msgstr ""
2484
 
2485
+ #: app/features/mec/booking.php:108
2486
  msgid "Default is Y-m-d"
2487
  msgstr ""
2488
 
2489
+ #: app/features/mec/booking.php:115
2490
+ #: app/features/mec/meta_boxes/display_options.php:121
2491
+ #: app/features/mec/meta_boxes/display_options.php:296
2492
+ #: app/features/mec/meta_boxes/display_options.php:366
2493
+ #: app/features/mec/meta_boxes/display_options.php:825
2494
+ #: app/features/mec/meta_boxes/display_options.php:1092
2495
+ #: app/features/mec/meta_boxes/display_options.php:1200
2496
  msgid "Limit"
2497
  msgstr ""
2498
 
2499
+ #: app/features/mec/booking.php:117
2500
  msgid "Default is empty"
2501
  msgstr ""
2502
 
2503
+ #: app/features/mec/booking.php:120
2504
  msgid "Booking Limit"
2505
  msgstr ""
2506
 
2507
+ #: app/features/mec/booking.php:121
2508
  msgid ""
2509
  "Total tickets that a user can book. It is useful if you're providing free "
2510
  "tickets. Leave it empty for unlimited booking."
2511
  msgstr ""
2512
 
2513
+ #: app/features/mec/booking.php:128
2514
  msgid "Maximum Dates"
2515
  msgstr ""
2516
 
2517
+ #: app/features/mec/booking.php:130
2518
  msgid "Default is 6"
2519
  msgstr ""
2520
 
2521
+ #: app/features/mec/booking.php:134 app/features/mec/booking.php:144
2522
  msgid "Thank You Page"
2523
  msgstr ""
2524
 
2525
+ #: app/features/mec/booking.php:145
2526
  msgid ""
2527
  "User redirects to this page after booking. Leave it empty if you want to "
2528
  "disable it."
2529
  msgstr ""
2530
 
2531
+ #: app/features/mec/booking.php:156
2532
  msgid "Enable Express Attendees Form"
2533
  msgstr ""
2534
 
2535
+ #: app/features/mec/booking.php:160 app/modules/booking/steps/form.php:52
2536
  msgid "Attendees Form"
2537
  msgstr ""
2538
 
2539
+ #: app/features/mec/booking.php:161
2540
  msgid ""
2541
  "Users are able to apply first attendee information for other attendees in "
2542
  "the booking form."
2543
  msgstr ""
2544
 
2545
+ #: app/features/mec/booking.php:174
2546
  msgid "Enable Invoice"
2547
  msgstr ""
2548
 
2549
+ #: app/features/mec/booking.php:185
2550
+ msgid "Enable Booking for Ongoing Events"
2551
+ msgstr ""
2552
+
2553
+ #: app/features/mec/booking.php:189
2554
  msgid "Email verification"
2555
  msgstr ""
2556
 
2557
+ #: app/features/mec/booking.php:195
2558
  msgid "Auto verification for free bookings"
2559
  msgstr ""
2560
 
2561
+ #: app/features/mec/booking.php:204
2562
  msgid "Auto verification for paid bookings"
2563
  msgstr ""
2564
 
2565
+ #: app/features/mec/booking.php:208 app/features/mec/notifications.php:147
2566
  #: app/libraries/main.php:573
2567
  msgid "Booking Confirmation"
2568
  msgstr ""
2569
 
2570
+ #: app/features/mec/booking.php:214
2571
  msgid "Auto confirmation for free bookings"
2572
  msgstr ""
2573
 
2574
+ #: app/features/mec/booking.php:223
2575
  msgid "Auto confirmation for paid bookings"
2576
  msgstr ""
2577
 
2578
+ #: app/features/mec/booking.php:242
2579
  msgid "Enable coupons module"
2580
  msgstr ""
2581
 
2582
+ #: app/features/mec/booking.php:244
2583
  msgid ""
2584
  "After enabling and saving the settings,, you should reload the page to see a "
2585
  "new menu on the Dashboard > Booking"
2586
  msgstr ""
2587
 
2588
+ #: app/features/mec/booking.php:252 app/libraries/main.php:552
2589
  msgid "Taxes / Fees"
2590
  msgstr ""
2591
 
2592
+ #: app/features/mec/booking.php:260
2593
  msgid "Enable taxes / fees module"
2594
  msgstr ""
2595
 
2596
+ #: app/features/mec/booking.php:265
2597
  msgid "Add Fee"
2598
  msgstr ""
2599
 
2600
+ #: app/features/mec/booking.php:329 app/libraries/main.php:553
2601
  msgid "Ticket Variations & Options"
2602
  msgstr ""
2603
 
2604
+ #: app/features/mec/booking.php:337
2605
  msgid "Enable ticket options module"
2606
  msgstr ""
2607
 
2608
+ #: app/features/mec/booking.php:342
2609
  msgid "Add Variation / Option"
2610
  msgstr ""
2611
 
2612
+ #: app/features/mec/booking.php:545
2613
  msgid "Enable Organizer Payment Module"
2614
  msgstr ""
2615
 
2616
+ #: app/features/mec/booking.php:549
2617
  msgid "Organizer Payment"
2618
  msgstr ""
2619
 
2620
+ #: app/features/mec/booking.php:550
2621
  msgid ""
2622
  "By enabling this module, organizers are able to insert their own payment "
2623
  "credentials for enabled gateways per event and receive the payments directly!"
2624
  msgstr ""
2625
 
2626
+ #: app/features/mec/booking.php:597 app/features/mec/messages.php:74
2627
+ #: app/features/mec/modules.php:387 app/features/mec/notifications.php:536
2628
+ #: app/features/mec/settings.php:889 app/features/mec/single.php:264
2629
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:292
2630
  msgid "Saved"
2631
  msgstr ""
2632
 
2633
+ #: app/features/mec/booking.php:598 app/features/mec/messages.php:75
2634
+ #: app/features/mec/modules.php:388 app/features/mec/notifications.php:537
2635
+ #: app/features/mec/settings.php:890 app/features/mec/single.php:265
2636
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:293
2637
  msgid "Settings Saved!"
2638
  msgstr ""
2639
 
2640
+ #: app/features/mec/booking.php:600 app/features/mec/booking.php:622
2641
+ #: app/features/mec/modules.php:390 app/features/mec/modules.php:412
2642
  #: app/features/mec/notifications.php:539
2643
+ #: app/features/mec/notifications.php:561 app/features/mec/settings.php:892
2644
+ #: app/features/mec/settings.php:914 app/features/mec/single.php:267
2645
+ #: app/features/mec/single.php:289 app/libraries/main.php:5091
2646
  msgid "Verified"
2647
  msgstr ""
2648
 
2649
+ #: app/features/mec/booking.php:624 app/features/mec/modules.php:414
2650
+ #: app/features/mec/notifications.php:563 app/features/mec/settings.php:916
2651
+ #: app/features/mec/single.php:291
2652
  msgid "Please Refresh Page"
2653
  msgstr ""
2654
 
2734
  msgid "You cannot access this section."
2735
  msgstr ""
2736
 
2737
+ #: app/features/mec/dashboard.php:261 app/features/mec/settings.php:350
2738
  msgid "Upcoming Events"
2739
  msgstr ""
2740
 
2820
  "phrases from language files."
2821
  msgstr ""
2822
 
2823
+ #: app/features/mec/meta_boxes/display_options.php:22
2824
  msgid "Skin"
2825
  msgstr ""
2826
 
2827
+ #: app/features/mec/meta_boxes/display_options.php:40
2828
+ #: app/features/mec/meta_boxes/display_options.php:179
2829
+ #: app/features/mec/meta_boxes/display_options.php:565
2830
+ #: app/features/mec/meta_boxes/display_options.php:879
2831
+ #: app/features/mec/settings.php:214 app/features/mec/settings.php:238
2832
+ #: app/features/mec/settings.php:247 app/features/mec/settings.php:288
2833
+ #: app/features/mec/settings.php:312 app/features/mec/settings.php:321
2834
  msgid "Classic"
2835
  msgstr ""
2836
 
2837
+ #: app/features/mec/meta_boxes/display_options.php:41
2838
+ #: app/features/mec/meta_boxes/display_options.php:181
2839
+ #: app/features/mec/settings.php:239 app/features/mec/settings.php:249
2840
+ #: app/features/mec/settings.php:313 app/features/mec/settings.php:323
2841
  msgid "Minimal"
2842
  msgstr ""
2843
 
2844
+ #: app/features/mec/meta_boxes/display_options.php:42
2845
+ #: app/features/mec/meta_boxes/display_options.php:182
2846
+ #: app/features/mec/meta_boxes/display_options.php:515
2847
+ #: app/features/mec/meta_boxes/display_options.php:567
2848
+ #: app/features/mec/meta_boxes/display_options.php:729
2849
+ #: app/features/mec/meta_boxes/display_options.php:881
2850
+ #: app/features/mec/settings.php:216 app/features/mec/settings.php:229
2851
+ #: app/features/mec/settings.php:240 app/features/mec/settings.php:250
2852
+ #: app/features/mec/settings.php:290 app/features/mec/settings.php:303
2853
+ #: app/features/mec/settings.php:314 app/features/mec/settings.php:324
2854
  msgid "Modern"
2855
  msgstr ""
2856
 
2857
+ #: app/features/mec/meta_boxes/display_options.php:43
2858
+ #: app/features/mec/settings.php:241 app/features/mec/settings.php:315
2859
  msgid "Standard"
2860
  msgstr ""
2861
 
2862
+ #: app/features/mec/meta_boxes/display_options.php:44
2863
+ #: app/features/mec/settings.php:242 app/features/mec/settings.php:316
2864
  msgid "Accordion"
2865
  msgstr ""
2866
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2867
  #: app/features/mec/meta_boxes/display_options.php:50
2868
  #: app/features/mec/meta_boxes/display_options.php:191
2869
  #: app/features/mec/meta_boxes/display_options.php:343
 
 
 
2870
  #: app/features/mec/meta_boxes/display_options.php:622
2871
  #: app/features/mec/meta_boxes/display_options.php:655
 
 
2872
  #: app/features/mec/meta_boxes/display_options.php:802
2873
  #: app/features/mec/meta_boxes/display_options.php:1037
2874
  #: app/features/mec/meta_boxes/display_options.php:1124
2875
+ msgid "Today"
2876
+ msgstr ""
2877
+
2878
+ #: app/features/mec/meta_boxes/display_options.php:51
2879
+ #: app/features/mec/meta_boxes/display_options.php:192
2880
+ #: app/features/mec/meta_boxes/display_options.php:344
2881
+ #: app/features/mec/meta_boxes/display_options.php:623
2882
+ #: app/features/mec/meta_boxes/display_options.php:656
2883
+ #: app/features/mec/meta_boxes/display_options.php:803
2884
+ #: app/features/mec/meta_boxes/display_options.php:1038
2885
+ #: app/features/mec/meta_boxes/display_options.php:1125
2886
+ msgid "Tomorrow"
2887
+ msgstr ""
2888
+
2889
+ #: app/features/mec/meta_boxes/display_options.php:52
2890
+ #: app/features/mec/meta_boxes/display_options.php:193
2891
+ #: app/features/mec/meta_boxes/display_options.php:345
2892
+ #: app/features/mec/meta_boxes/display_options.php:398
2893
+ #: app/features/mec/meta_boxes/display_options.php:575
2894
+ #: app/features/mec/meta_boxes/display_options.php:624
2895
+ #: app/features/mec/meta_boxes/display_options.php:657
2896
+ #: app/features/mec/meta_boxes/display_options.php:692
2897
+ #: app/features/mec/meta_boxes/display_options.php:738
2898
+ #: app/features/mec/meta_boxes/display_options.php:804
2899
+ #: app/features/mec/meta_boxes/display_options.php:1039
2900
+ #: app/features/mec/meta_boxes/display_options.php:1126
2901
+ msgid "Start of Current Month"
2902
  msgstr ""
2903
 
2904
  #: app/features/mec/meta_boxes/display_options.php:53
2905
  #: app/features/mec/meta_boxes/display_options.php:194
2906
  #: app/features/mec/meta_boxes/display_options.php:346
2907
  #: app/features/mec/meta_boxes/display_options.php:399
 
2908
  #: app/features/mec/meta_boxes/display_options.php:576
2909
  #: app/features/mec/meta_boxes/display_options.php:625
2910
+ #: app/features/mec/meta_boxes/display_options.php:658
2911
  #: app/features/mec/meta_boxes/display_options.php:693
2912
  #: app/features/mec/meta_boxes/display_options.php:739
2913
  #: app/features/mec/meta_boxes/display_options.php:805
2914
  #: app/features/mec/meta_boxes/display_options.php:1040
2915
  #: app/features/mec/meta_boxes/display_options.php:1127
2916
+ msgid "Start of Next Month"
2917
+ msgstr ""
2918
+
2919
+ #: app/features/mec/meta_boxes/display_options.php:54
2920
+ #: app/features/mec/meta_boxes/display_options.php:195
2921
+ #: app/features/mec/meta_boxes/display_options.php:347
2922
+ #: app/features/mec/meta_boxes/display_options.php:400
2923
+ #: app/features/mec/meta_boxes/display_options.php:523
2924
+ #: app/features/mec/meta_boxes/display_options.php:577
2925
+ #: app/features/mec/meta_boxes/display_options.php:626
2926
+ #: app/features/mec/meta_boxes/display_options.php:659
2927
+ #: app/features/mec/meta_boxes/display_options.php:694
2928
+ #: app/features/mec/meta_boxes/display_options.php:740
2929
+ #: app/features/mec/meta_boxes/display_options.php:806
2930
+ #: app/features/mec/meta_boxes/display_options.php:1041
2931
+ #: app/features/mec/meta_boxes/display_options.php:1128
2932
+ msgid "On a certain date"
2933
+ msgstr ""
2934
+
2935
+ #: app/features/mec/meta_boxes/display_options.php:57
2936
+ #: app/features/mec/meta_boxes/display_options.php:198
2937
+ #: app/features/mec/meta_boxes/display_options.php:350
2938
+ #: app/features/mec/meta_boxes/display_options.php:403
2939
+ #: app/features/mec/meta_boxes/display_options.php:526
2940
+ #: app/features/mec/meta_boxes/display_options.php:580
2941
+ #: app/features/mec/meta_boxes/display_options.php:629
2942
+ #: app/features/mec/meta_boxes/display_options.php:663
2943
+ #: app/features/mec/meta_boxes/display_options.php:697
2944
+ #: app/features/mec/meta_boxes/display_options.php:743
2945
+ #: app/features/mec/meta_boxes/display_options.php:809
2946
+ #: app/features/mec/meta_boxes/display_options.php:1044
2947
+ #: app/features/mec/meta_boxes/display_options.php:1131
2948
  #, php-format
2949
  msgid "eg. %s"
2950
  msgstr ""
2951
 
 
2952
  #: app/features/mec/meta_boxes/display_options.php:61
2953
+ #: app/features/mec/meta_boxes/display_options.php:65
2954
+ #: app/features/mec/meta_boxes/display_options.php:72
2955
+ #: app/features/mec/meta_boxes/display_options.php:78
2956
+ #: app/features/mec/meta_boxes/display_options.php:85
2957
+ #: app/features/mec/meta_boxes/display_options.php:91
2958
  #: app/features/mec/meta_boxes/display_options.php:98
2959
+ #: app/features/mec/meta_boxes/display_options.php:102
2960
+ #: app/features/mec/meta_boxes/display_options.php:109
2961
+ #: app/features/mec/meta_boxes/display_options.php:114
2962
  #: app/features/mec/meta_boxes/display_options.php:202
2963
+ #: app/features/mec/meta_boxes/display_options.php:206
2964
+ #: app/features/mec/meta_boxes/display_options.php:213
2965
+ #: app/features/mec/meta_boxes/display_options.php:218
2966
+ #: app/features/mec/meta_boxes/display_options.php:225
2967
+ #: app/features/mec/meta_boxes/display_options.php:230
2968
+ #: app/features/mec/meta_boxes/display_options.php:237
2969
+ #: app/features/mec/meta_boxes/display_options.php:243
2970
  #: app/features/mec/meta_boxes/display_options.php:250
2971
+ #: app/features/mec/meta_boxes/display_options.php:254
2972
+ #: app/features/mec/meta_boxes/display_options.php:261
2973
+ #: app/features/mec/meta_boxes/display_options.php:267
2974
  #: app/features/mec/meta_boxes/display_options.php:274
2975
+ #: app/features/mec/meta_boxes/display_options.php:278
2976
+ #: app/features/mec/meta_boxes/display_options.php:354
2977
+ #: app/features/mec/meta_boxes/display_options.php:359
2978
+ #: app/features/mec/meta_boxes/display_options.php:530
2979
+ #: app/features/mec/meta_boxes/display_options.php:535
2980
+ #: app/features/mec/meta_boxes/display_options.php:813
2981
+ #: app/features/mec/meta_boxes/display_options.php:818
2982
+ #: app/features/mec/meta_boxes/display_options.php:885
2983
+ #: app/features/mec/meta_boxes/display_options.php:891
2984
+ #: app/features/mec/meta_boxes/display_options.php:898
2985
+ #: app/features/mec/meta_boxes/display_options.php:903
2986
  #: app/features/mec/meta_boxes/display_options.php:910
2987
+ #: app/features/mec/meta_boxes/display_options.php:914
2988
  #: app/features/mec/meta_boxes/display_options.php:942
2989
+ #: app/features/mec/meta_boxes/display_options.php:946
2990
  #: app/features/mec/meta_boxes/display_options.php:953
2991
+ #: app/features/mec/meta_boxes/display_options.php:957
2992
+ #: app/features/mec/meta_boxes/display_options.php:964
2993
+ #: app/features/mec/meta_boxes/display_options.php:970
2994
+ #: app/features/mec/meta_boxes/display_options.php:1000
2995
+ #: app/features/mec/meta_boxes/display_options.php:1005
2996
+ #: app/features/mec/meta_boxes/display_options.php:1048
2997
+ #: app/features/mec/meta_boxes/display_options.php:1054
2998
  #: app/features/mec/meta_boxes/display_options.php:1061
2999
+ #: app/features/mec/meta_boxes/display_options.php:1065
3000
  #: app/features/mec/meta_boxes/display_options.php:1072
3001
+ #: app/features/mec/meta_boxes/display_options.php:1076
3002
+ #: app/features/mec/meta_boxes/display_options.php:1135
3003
+ #: app/features/mec/meta_boxes/display_options.php:1141
3004
+ #: app/features/mec/meta_boxes/display_options.php:1148
3005
+ #: app/features/mec/meta_boxes/display_options.php:1154
3006
+ #: app/features/mec/meta_boxes/display_options.php:1161
3007
+ #: app/features/mec/meta_boxes/display_options.php:1167
3008
+ #: app/features/mec/meta_boxes/display_options.php:1174
3009
+ #: app/features/mec/meta_boxes/display_options.php:1180
3010
+ #: app/features/mec/meta_boxes/display_options.php:1187
3011
+ #: app/features/mec/meta_boxes/display_options.php:1193
3012
  msgid "Date Formats"
3013
  msgstr ""
3014
 
3015
+ #: app/features/mec/meta_boxes/display_options.php:66
3016
+ #: app/features/mec/meta_boxes/display_options.php:255
3017
  msgid "Default value is \"M d Y\""
3018
  msgstr ""
3019
 
3020
+ #: app/features/mec/meta_boxes/display_options.php:79
3021
  msgid "Default values are d, M and l"
3022
  msgstr ""
3023
 
3024
+ #: app/features/mec/meta_boxes/display_options.php:92
3025
+ #: app/features/mec/meta_boxes/display_options.php:244
3026
+ #: app/features/mec/meta_boxes/display_options.php:268
3027
+ #: app/features/mec/meta_boxes/display_options.php:1142
3028
+ #: app/features/mec/meta_boxes/display_options.php:1155
3029
+ #: app/features/mec/meta_boxes/display_options.php:1168
3030
+ #: app/features/mec/meta_boxes/display_options.php:1181
3031
+ #: app/features/mec/meta_boxes/display_options.php:1194
3032
  msgid "Default values are d, F and l"
3033
  msgstr ""
3034
 
3035
+ #: app/features/mec/meta_boxes/display_options.php:103
3036
  msgid "Default value is \"M d\""
3037
  msgstr ""
3038
 
3039
+ #: app/features/mec/meta_boxes/display_options.php:115
3040
  msgid "TDefault values are d and F"
3041
  msgstr ""
3042
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3043
  #: app/features/mec/meta_boxes/display_options.php:122
3044
  #: app/features/mec/meta_boxes/display_options.php:297
3045
  #: app/features/mec/meta_boxes/display_options.php:367
3046
+ #: app/features/mec/meta_boxes/display_options.php:543
3047
+ #: app/features/mec/meta_boxes/display_options.php:585
3048
+ #: app/features/mec/meta_boxes/display_options.php:668
3049
+ #: app/features/mec/meta_boxes/display_options.php:702
3050
+ #: app/features/mec/meta_boxes/display_options.php:748
3051
+ #: app/features/mec/meta_boxes/display_options.php:1093
3052
+ #: app/features/mec/meta_boxes/display_options.php:1201
3053
+ msgid "eg. 6"
3054
+ msgstr ""
3055
+
3056
+ #: app/features/mec/meta_boxes/display_options.php:126
3057
+ #: app/features/mec/meta_boxes/display_options.php:301
3058
+ #: app/features/mec/meta_boxes/display_options.php:371
3059
+ #: app/features/mec/meta_boxes/display_options.php:862
3060
  msgid "Load More Button"
3061
  msgstr ""
3062
 
3063
+ #: app/features/mec/meta_boxes/display_options.php:136
3064
+ #: app/features/mec/meta_boxes/display_options.php:381
3065
  msgid "Show Month Divider"
3066
  msgstr ""
3067
 
3068
+ #: app/features/mec/meta_boxes/display_options.php:146
3069
+ #: app/features/mec/meta_boxes/display_options.php:311
3070
  msgid "Show Map on top"
3071
  msgstr ""
3072
 
3073
+ #: app/features/mec/meta_boxes/display_options.php:163
3074
  msgid "Toggle for Month Divider"
3075
  msgstr ""
3076
 
3077
+ #: app/features/mec/meta_boxes/display_options.php:180
3078
+ #: app/features/mec/meta_boxes/display_options.php:337
3079
+ #: app/features/mec/meta_boxes/display_options.php:419
3080
+ #: app/features/mec/meta_boxes/display_options.php:566
3081
+ #: app/features/mec/meta_boxes/display_options.php:730
3082
+ #: app/features/mec/meta_boxes/display_options.php:880
3083
+ #: app/features/mec/settings.php:215 app/features/mec/settings.php:230
3084
+ #: app/features/mec/settings.php:248 app/features/mec/settings.php:289
3085
+ #: app/features/mec/settings.php:304 app/features/mec/settings.php:322
3086
  msgid "Clean"
3087
  msgstr ""
3088
 
3089
+ #: app/features/mec/meta_boxes/display_options.php:183
3090
+ #: app/features/mec/meta_boxes/display_options.php:421
3091
+ #: app/features/mec/meta_boxes/display_options.php:569
3092
+ #: app/features/mec/settings.php:218 app/features/mec/settings.php:251
3093
+ #: app/features/mec/settings.php:292 app/features/mec/settings.php:325
3094
  msgid "Simple"
3095
  msgstr ""
3096
 
3097
+ #: app/features/mec/meta_boxes/display_options.php:184
3098
  msgid "Colorful"
3099
  msgstr ""
3100
 
3101
+ #: app/features/mec/meta_boxes/display_options.php:185
3102
+ #: app/features/mec/meta_boxes/display_options.php:420
3103
+ #: app/features/mec/meta_boxes/display_options.php:568
3104
+ #: app/features/mec/settings.php:217 app/features/mec/settings.php:253
3105
+ #: app/features/mec/settings.php:291 app/features/mec/settings.php:327
3106
  msgid "Novel"
3107
  msgstr ""
3108
 
3109
+ #: app/features/mec/meta_boxes/display_options.php:207
3110
  msgid "Default value is \"d F Y"
3111
  msgstr ""
3112
 
3113
+ #: app/features/mec/meta_boxes/display_options.php:219
3114
  msgid "Default values are d and F"
3115
  msgstr ""
3116
 
3117
+ #: app/features/mec/meta_boxes/display_options.php:231
3118
  msgid "Default values are d and M"
3119
  msgstr ""
3120
 
3121
+ #: app/features/mec/meta_boxes/display_options.php:279
3122
  msgid "Default value is \"d F Y\""
3123
  msgstr ""
3124
 
3125
+ #: app/features/mec/meta_boxes/display_options.php:285
3126
+ #: app/features/mec/meta_boxes/display_options.php:1083
3127
  msgid "Count in row"
3128
  msgstr ""
3129
 
3130
+ #: app/features/mec/meta_boxes/display_options.php:330
3131
+ #: app/features/mec/meta_boxes/display_options.php:508
3132
+ #: app/features/mec/meta_boxes/display_options.php:615
3133
+ #: app/features/mec/meta_boxes/display_options.php:722
3134
+ #: app/features/mec/meta_boxes/display_options.php:995
3135
  #, php-format
3136
  msgid "%s is required to use this skin."
3137
  msgstr ""
3138
 
3139
+ #: app/features/mec/meta_boxes/display_options.php:360
3140
+ #: app/features/mec/meta_boxes/display_options.php:536
3141
  msgid "Default values are l and F j"
3142
  msgstr ""
3143
 
3144
+ #: app/features/mec/meta_boxes/display_options.php:407
3145
  msgid "Default View"
3146
  msgstr ""
3147
 
3148
+ #: app/features/mec/meta_boxes/display_options.php:409
3149
+ #: app/features/mec/meta_boxes/display_options.php:430
3150
  #: app/libraries/main.php:329 app/libraries/main.php:1570
3151
  #: app/libraries/main.php:1595
3152
  msgid "List View"
3153
  msgstr ""
3154
 
3155
+ #: app/features/mec/meta_boxes/display_options.php:410
3156
+ #: app/features/mec/meta_boxes/display_options.php:440
3157
  #: app/libraries/main.php:333 app/libraries/main.php:1564
3158
  #: app/libraries/main.php:1589
3159
  msgid "Yearly View"
3160
  msgstr ""
3161
 
3162
+ #: app/features/mec/meta_boxes/display_options.php:411
3163
+ #: app/features/mec/meta_boxes/display_options.php:462
3164
  msgid "Monthly/Calendar View"
3165
  msgstr ""
3166
 
3167
+ #: app/features/mec/meta_boxes/display_options.php:412
3168
+ #: app/features/mec/meta_boxes/display_options.php:472
3169
  #: app/libraries/main.php:336 app/libraries/main.php:1566
3170
  #: app/libraries/main.php:1591
3171
  msgid "Weekly View"
3172
  msgstr ""
3173
 
3174
+ #: app/features/mec/meta_boxes/display_options.php:413
3175
+ #: app/features/mec/meta_boxes/display_options.php:482
3176
  #: app/libraries/main.php:335 app/libraries/main.php:1567
3177
  #: app/libraries/main.php:1592
3178
  msgid "Daily View"
3179
  msgstr ""
3180
 
3181
+ #: app/features/mec/meta_boxes/display_options.php:417
3182
  msgid "Monthly Style"
3183
  msgstr ""
3184
 
3185
+ #: app/features/mec/meta_boxes/display_options.php:457
3186
  #, php-format
3187
  msgid "%s is required to use <b>Yearly View</b> skin."
3188
  msgstr ""
3189
 
3190
+ #: app/features/mec/meta_boxes/display_options.php:490
3191
  msgid "The price shows only in List View."
3192
  msgstr ""
3193
 
3194
+ #: app/features/mec/meta_boxes/display_options.php:493
3195
  msgid "Display Event Price"
3196
  msgstr ""
3197
 
3198
+ #: app/features/mec/meta_boxes/display_options.php:521
3199
  msgid "Start of Current Year"
3200
  msgstr ""
3201
 
3202
+ #: app/features/mec/meta_boxes/display_options.php:522
3203
  msgid "Start of Next Year"
3204
  msgstr ""
3205
 
3206
+ #: app/features/mec/meta_boxes/display_options.php:542
3207
+ #: app/features/mec/meta_boxes/display_options.php:584
3208
+ #: app/features/mec/meta_boxes/display_options.php:667
3209
+ #: app/features/mec/meta_boxes/display_options.php:701
3210
+ #: app/features/mec/meta_boxes/display_options.php:747
3211
  msgid "Events per day"
3212
  msgstr ""
3213
 
3214
+ #: app/features/mec/meta_boxes/display_options.php:547
3215
+ #: app/features/mec/meta_boxes/display_options.php:589
3216
+ #: app/features/mec/meta_boxes/display_options.php:672
3217
+ #: app/features/mec/meta_boxes/display_options.php:706
3218
+ #: app/features/mec/meta_boxes/display_options.php:776
3219
  msgid "Next/Previous Buttons"
3220
  msgstr ""
3221
 
3222
+ #: app/features/mec/meta_boxes/display_options.php:555
3223
  msgid "For showing next/previous year navigation."
3224
  msgstr ""
3225
 
3226
+ #: app/features/mec/meta_boxes/display_options.php:599
3227
  msgid "Uppercase Text"
3228
  msgstr ""
3229
 
3230
+ #: app/features/mec/meta_boxes/display_options.php:607
3231
+ #: app/features/mec/meta_boxes/display_options.php:680
3232
+ #: app/features/mec/meta_boxes/display_options.php:714
3233
+ #: app/features/mec/meta_boxes/display_options.php:784
3234
  msgid "For showing next/previous month navigation."
3235
  msgstr ""
3236
 
3237
+ #: app/features/mec/meta_boxes/display_options.php:633
3238
  msgid "Maximum events"
3239
  msgstr ""
3240
 
3241
+ #: app/features/mec/meta_boxes/display_options.php:634
3242
  msgid "eg. 200"
3243
  msgstr ""
3244
 
3245
+ #: app/features/mec/meta_boxes/display_options.php:638
3246
  msgid "Geolocation"
3247
  msgstr ""
3248
 
3249
+ #: app/features/mec/meta_boxes/display_options.php:646
3250
  msgid "The geolocation feature works only in secure (https) websites."
3251
  msgstr ""
3252
 
3253
+ #: app/features/mec/meta_boxes/display_options.php:690
3254
+ #: app/features/mec/meta_boxes/display_options.php:736
3255
  msgid "Current Week"
3256
  msgstr ""
3257
 
3258
+ #: app/features/mec/meta_boxes/display_options.php:691
3259
+ #: app/features/mec/meta_boxes/display_options.php:737
3260
  msgid "Next Week"
3261
  msgstr ""
3262
 
3263
+ #: app/features/mec/meta_boxes/display_options.php:752
3264
  msgid "Number of Days"
3265
  msgstr ""
3266
 
3267
+ #: app/features/mec/meta_boxes/display_options.php:760
3268
  msgid "Week Start"
3269
  msgstr ""
3270
 
3271
+ #: app/features/mec/meta_boxes/display_options.php:762
3272
  msgid "Inherite from WordPress options"
3273
  msgstr ""
3274
 
3275
+ #: app/features/mec/meta_boxes/display_options.php:819
3276
+ #: app/features/mec/meta_boxes/display_options.php:1006
3277
  msgid "Default values are j and F"
3278
  msgstr ""
3279
 
3280
+ #: app/features/mec/meta_boxes/display_options.php:826
3281
  msgid "eg. 24"
3282
  msgstr ""
3283
 
3284
+ #: app/features/mec/meta_boxes/display_options.php:829
3285
  msgid "Filter By"
3286
  msgstr ""
3287
 
3288
+ #: app/features/mec/meta_boxes/display_options.php:831
3289
  msgid "None"
3290
  msgstr ""
3291
 
3292
+ #: app/features/mec/meta_boxes/display_options.php:840
3293
  msgid "Fit to row"
3294
  msgstr ""
3295
 
3296
+ #: app/features/mec/meta_boxes/display_options.php:841
3297
  msgid ""
3298
  "Items are arranged into rows. Rows progress vertically. Similar to what you "
3299
  "would expect from a layout that uses CSS floats."
3300
  msgstr ""
3301
 
3302
+ #: app/features/mec/meta_boxes/display_options.php:851
3303
  msgid "Convert Masonry to Grid"
3304
  msgstr ""
3305
 
3306
+ #: app/features/mec/meta_boxes/display_options.php:852
3307
  msgid "For using this option, your events should come with image"
3308
  msgstr ""
3309
 
3310
+ #: app/features/mec/meta_boxes/display_options.php:892
3311
  msgid "Default values are d, M and Y"
3312
  msgstr ""
3313
 
3314
+ #: app/features/mec/meta_boxes/display_options.php:904
3315
  msgid "Default values are \"F d\" and l"
3316
  msgstr ""
3317
 
3318
+ #: app/features/mec/meta_boxes/display_options.php:915
3319
  msgid "Default value is \"l, F d Y\""
3320
  msgstr ""
3321
 
3322
+ #: app/features/mec/meta_boxes/display_options.php:936
3323
  msgid "Style 1"
3324
  msgstr ""
3325
 
3326
+ #: app/features/mec/meta_boxes/display_options.php:937
3327
  msgid "Style 2"
3328
  msgstr ""
3329
 
3330
+ #: app/features/mec/meta_boxes/display_options.php:938
3331
  msgid "Style 3"
3332
  msgstr ""
3333
 
3334
+ #: app/features/mec/meta_boxes/display_options.php:947
3335
+ #: app/features/mec/meta_boxes/display_options.php:958
3336
  msgid "Default value is \"j F Y\""
3337
  msgstr ""
3338
 
3339
+ #: app/features/mec/meta_boxes/display_options.php:971
3340
  msgid "Default values are j, F and Y"
3341
  msgstr ""
3342
 
3343
+ #: app/features/mec/meta_boxes/display_options.php:979
3344
+ #: app/features/mec/meta_boxes/display_options.php:1014
3345
  msgid " -- Next Upcoming Event -- "
3346
  msgstr ""
3347
 
3348
+ #: app/features/mec/meta_boxes/display_options.php:986
3349
  msgid "Background Color"
3350
  msgstr ""
3351
 
3352
+ #: app/features/mec/meta_boxes/display_options.php:1028
3353
+ #: app/features/mec/meta_boxes/display_options.php:1114
3354
  msgid "Type 1"
3355
  msgstr ""
3356
 
3357
+ #: app/features/mec/meta_boxes/display_options.php:1029
3358
+ #: app/features/mec/meta_boxes/display_options.php:1115
3359
  msgid "Type 2"
3360
  msgstr ""
3361
 
3362
+ #: app/features/mec/meta_boxes/display_options.php:1030
3363
+ #: app/features/mec/meta_boxes/display_options.php:1116
3364
  msgid "Type 3"
3365
  msgstr ""
3366
 
3367
+ #: app/features/mec/meta_boxes/display_options.php:1031
3368
+ #: app/features/mec/meta_boxes/display_options.php:1117
3369
  msgid "Type 4"
3370
  msgstr ""
3371
 
3372
+ #: app/features/mec/meta_boxes/display_options.php:1055
3373
  msgid "Default values are d, F and Y"
3374
  msgstr ""
3375
 
3376
+ #: app/features/mec/meta_boxes/display_options.php:1066
3377
+ #: app/features/mec/meta_boxes/display_options.php:1077
3378
  msgid "Default value is \"M d, Y\""
3379
  msgstr ""
3380
 
3381
+ #: app/features/mec/meta_boxes/display_options.php:1096
3382
+ #: app/features/mec/meta_boxes/display_options.php:1204
3383
  msgid "Auto Play Time"
3384
  msgstr ""
3385
 
3386
+ #: app/features/mec/meta_boxes/display_options.php:1097
3387
+ #: app/features/mec/meta_boxes/display_options.php:1205
3388
  msgid "eg. 3000 default is 3 second"
3389
  msgstr ""
3390
 
3391
+ #: app/features/mec/meta_boxes/display_options.php:1101
3392
  msgid "Archive Link"
3393
  msgstr ""
3394
 
3395
+ #: app/features/mec/meta_boxes/display_options.php:1105
3396
  msgid "Head Text"
3397
  msgstr ""
3398
 
3399
+ #: app/features/mec/meta_boxes/display_options.php:1118
3400
  msgid "Type 5"
3401
  msgstr ""
3402
 
3404
  msgid "No filter options applicable for this skin."
3405
  msgstr ""
3406
 
3407
+ #: app/features/mec/meta_boxes/filter.php:82
3408
  msgid "Choose your desired categories for filtering the events."
3409
  msgstr ""
3410
 
3411
+ #: app/features/mec/meta_boxes/filter.php:99
3412
  msgid "Choose your desired locations for filtering the events."
3413
  msgstr ""
3414
 
3415
+ #: app/features/mec/meta_boxes/filter.php:116
3416
  msgid "Choose your desired organizers for filtering the events."
3417
  msgstr ""
3418
 
3419
+ #: app/features/mec/meta_boxes/filter.php:133
3420
  msgid "Choose your desired labels for filtering the events."
3421
  msgstr ""
3422
 
3423
+ #: app/features/mec/meta_boxes/filter.php:150
3424
  msgid "Insert your desired tags comma separated."
3425
  msgstr ""
3426
 
3427
+ #: app/features/mec/meta_boxes/filter.php:155
3428
  msgid "Authors"
3429
  msgstr ""
3430
 
3431
+ #: app/features/mec/meta_boxes/filter.php:156
3432
  msgid "Choose your desired authors for filtering the events."
3433
  msgstr ""
3434
 
3435
+ #: app/features/mec/meta_boxes/filter.php:177
3436
  msgid "Dates"
3437
  msgstr ""
3438
 
3439
+ #: app/features/mec/meta_boxes/filter.php:181
3440
  msgid "Include Expired Events"
3441
  msgstr ""
3442
 
3443
+ #: app/features/mec/meta_boxes/filter.php:188
3444
  msgid ""
3445
  "You have ability to include past/expired events if you like so it will show "
3446
  "upcoming and expired events based on start date that you selected."
3447
  msgstr ""
3448
 
3449
+ #: app/features/mec/meta_boxes/filter.php:195
3450
  msgid "Show Only Expired Events"
3451
  msgstr ""
3452
 
3453
+ #: app/features/mec/meta_boxes/filter.php:202
3454
  msgid "It shows only expired/past events."
3455
  msgstr ""
3456
 
3457
+ #: app/features/mec/meta_boxes/filter.php:210
3458
  msgid "Show Only Ongoing Events"
3459
  msgstr ""
3460
 
3461
+ #: app/features/mec/meta_boxes/filter.php:217
3462
  msgid "It shows only ongoing events on List and Grid skins."
3463
  msgstr ""
3464
 
3545
  #: app/features/mec/meta_boxes/search_form.php:612
3546
  #: app/features/mec/meta_boxes/search_form.php:619
3547
  #: app/features/mec/meta_boxes/search_form.php:626
3548
+ #: app/features/mec/modules.php:125 app/features/mec/settings.php:97
3549
+ #: app/features/mec/settings.php:368
3550
  msgid "Disabled"
3551
  msgstr ""
3552
 
3560
  #: app/features/mec/meta_boxes/search_form.php:474
3561
  #: app/features/mec/meta_boxes/search_form.php:535
3562
  #: app/features/mec/meta_boxes/search_form.php:596
3563
+ #: app/features/mec/settings.php:738 app/features/mec/single.php:217
3564
  #: app/features/speakers.php:59 app/features/speakers.php:247
3565
+ #: app/libraries/main.php:4853 app/libraries/skins.php:886
3566
  msgid "Speaker"
3567
  msgstr ""
3568
 
3576
  #: app/features/mec/meta_boxes/search_form.php:481
3577
  #: app/features/mec/meta_boxes/search_form.php:542
3578
  #: app/features/mec/meta_boxes/search_form.php:603
3579
+ #: app/features/mec/settings.php:745 app/features/mec/single.php:226
3580
  #: app/libraries/skins.php:912
3581
  msgid "Tag"
3582
  msgstr ""
3628
  msgid "No Search Options"
3629
  msgstr ""
3630
 
3631
+ #: app/features/mec/modules.php:43
3632
  msgid "Speakers Options"
3633
  msgstr ""
3634
 
3635
+ #: app/features/mec/modules.php:49
3636
  msgid "Enable speakers feature"
3637
  msgstr ""
3638
 
3639
+ #: app/features/mec/modules.php:53
3640
  msgid ""
3641
  "Enable this option to have speaker in Hourly Schedule in Single. Refresh "
3642
  "after enabling it to see the Speakers menu under MEC dashboard."
3643
  msgstr ""
3644
 
3645
+ #: app/features/mec/modules.php:58
3646
  msgid ""
3647
  "After enabling and saving the settings, you should reload the page to see a "
3648
  "new menu on the Dashboard > MEC"
3649
  msgstr ""
3650
 
3651
+ #: app/features/mec/modules.php:75
3652
  msgid "Show Google Maps on event page"
3653
  msgstr ""
3654
 
3655
+ #: app/features/mec/modules.php:80 app/features/mec/modules.php:238
3656
+ #: app/features/mec/settings.php:775 app/features/mec/settings.php:780
3657
  msgid "API Key"
3658
  msgstr ""
3659
 
3660
+ #: app/features/mec/modules.php:86 app/features/mec/settings.php:781
3661
+ #: app/features/mec/settings.php:794
3662
  msgid "Required!"
3663
  msgstr ""
3664
 
3665
+ #: app/features/mec/modules.php:93 app/features/mec/modules.php:102
3666
  msgid "Zoom level"
3667
  msgstr ""
3668
 
3669
+ #: app/features/mec/modules.php:103
3670
  msgid ""
3671
  "For Google Maps module in single event page. In Google Maps skin, it will "
3672
  "caculate the zoom level automatically based on event boundaries."
3673
  msgstr ""
3674
 
3675
+ #: app/features/mec/modules.php:110
3676
  msgid "Google Maps Style"
3677
  msgstr ""
3678
 
3679
+ #: app/features/mec/modules.php:114 app/features/mec/single.php:88
3680
  msgid "Default"
3681
  msgstr ""
3682
 
3683
+ #: app/features/mec/modules.php:122
3684
  msgid "Direction on single event"
3685
  msgstr ""
3686
 
3687
+ #: app/features/mec/modules.php:126
3688
  msgid "Simple Method"
3689
  msgstr ""
3690
 
3691
+ #: app/features/mec/modules.php:127
3692
  msgid "Advanced Method"
3693
  msgstr ""
3694
 
3695
+ #: app/features/mec/modules.php:132 app/features/mec/modules.php:137
3696
  msgid "Lightbox Date Format"
3697
  msgstr ""
3698
 
3699
+ #: app/features/mec/modules.php:138
3700
  msgid "Default value is M d Y"
3701
  msgstr ""
3702
 
3703
+ #: app/features/mec/modules.php:145 app/features/mec/modules.php:153
3704
  msgid "Google Maps API"
3705
  msgstr ""
3706
 
3707
+ #: app/features/mec/modules.php:149
3708
  msgid "Don't load Google Maps API library"
3709
  msgstr ""
3710
 
3711
+ #: app/features/mec/modules.php:154
3712
  msgid "Check it only if another plugin/theme is loading the Google Maps API"
3713
  msgstr ""
3714
 
3715
+ #: app/features/mec/modules.php:167 app/libraries/main.php:561
3716
  msgid "Export Options"
3717
  msgstr ""
3718
 
3719
+ #: app/features/mec/modules.php:171
3720
  msgid ""
3721
  "Show export module (iCal export and add to Google calendars) on event page"
3722
  msgstr ""
3723
 
3724
+ #: app/features/mec/modules.php:178
3725
  msgid "Google Calendar"
3726
  msgstr ""
3727
 
3728
+ #: app/features/mec/modules.php:194 app/libraries/main.php:562
3729
  #: app/modules/local-time/details.php:42 app/widgets/single.php:99
3730
  msgid "Local Time"
3731
  msgstr ""
3732
 
3733
+ #: app/features/mec/modules.php:198
3734
  msgid "Show event time based on local time of visitor on event page"
3735
  msgstr ""
3736
 
3737
+ #: app/features/mec/modules.php:208 app/libraries/main.php:563
3738
  #: app/modules/qrcode/details.php:38 app/widgets/single.php:155
3739
  msgid "QR Code"
3740
  msgstr ""
3741
 
3742
+ #: app/features/mec/modules.php:216
3743
  msgid "Show QR code of event in details page and booking invoice"
3744
  msgstr ""
3745
 
3746
+ #: app/features/mec/modules.php:226 app/libraries/main.php:564
3747
  #: app/modules/weather/details.php:37
3748
  msgid "Weather"
3749
  msgstr ""
3750
 
3751
+ #: app/features/mec/modules.php:233
3752
  msgid "Show weather module on event page"
3753
  msgstr ""
3754
 
3755
+ #: app/features/mec/modules.php:241
3756
  #, php-format
3757
  msgid "You can get a free API Key from %s"
3758
  msgstr ""
3759
 
3760
+ #: app/features/mec/modules.php:247
3761
  msgid "Show weather imperial units"
3762
  msgstr ""
3763
 
3764
+ #: app/features/mec/modules.php:253
3765
  msgid "Show weather change units button"
3766
  msgstr ""
3767
 
3768
+ #: app/features/mec/modules.php:267
3769
  msgid "Show social network module"
3770
  msgstr ""
3771
 
3772
+ #: app/features/mec/modules.php:288 app/libraries/main.php:566
3773
  #: app/modules/next-event/details.php:82
3774
  msgid "Next Event"
3775
  msgstr ""
3776
 
3777
+ #: app/features/mec/modules.php:292
3778
  msgid "Show next event module on event page"
3779
  msgstr ""
3780
 
3781
+ #: app/features/mec/modules.php:297
3782
  msgid "Method"
3783
  msgstr ""
3784
 
3785
+ #: app/features/mec/modules.php:300
3786
  msgid "Next Occurrence of Current Event"
3787
  msgstr ""
3788
 
3789
+ #: app/features/mec/modules.php:301
3790
  msgid "Next Occurrence of Other Events"
3791
  msgstr ""
3792
 
3793
+ #: app/features/mec/modules.php:312 app/features/mec/single.php:42
3794
  msgid "Default is M d Y"
3795
  msgstr ""
3796
 
3797
+ #: app/features/mec/modules.php:328
3798
  msgid "Enable BuddyPress Integration"
3799
  msgstr ""
3800
 
3801
+ #: app/features/mec/modules.php:335
3802
  msgid "Show \"Attendees Module\" in event details page"
3803
  msgstr ""
3804
 
3805
+ #: app/features/mec/modules.php:339
3806
  msgid "Attendees Limit"
3807
  msgstr ""
3808
 
3809
+ #: app/features/mec/modules.php:347
3810
  msgid "Add booking activity to user profile"
3811
  msgstr ""
3812
 
4164
  msgid "Status of event"
4165
  msgstr ""
4166
 
4167
+ #: app/features/mec/notifications.php:436 app/features/mec/settings.php:654
4168
+ #: app/features/mec/settings.php:658
4169
  msgid "Event Note"
4170
  msgstr ""
4171
 
4173
  msgid "Admin events management link."
4174
  msgstr ""
4175
 
4176
+ #: app/features/mec/settings.php:55 app/features/mec/settings.php:65
4177
  msgid "Hide Events"
4178
  msgstr ""
4179
 
4180
+ #: app/features/mec/settings.php:58
4181
  msgid "On Event Start"
4182
  msgstr ""
4183
 
4184
+ #: app/features/mec/settings.php:59
4185
  msgid "+1 Hour after start"
4186
  msgstr ""
4187
 
4188
+ #: app/features/mec/settings.php:60
4189
  msgid "+2 Hours after start"
4190
  msgstr ""
4191
 
4192
+ #: app/features/mec/settings.php:61
4193
  msgid "On Event End"
4194
  msgstr ""
4195
 
4196
+ #: app/features/mec/settings.php:66
4197
  msgid ""
4198
  "This option is for showing start/end time of events on frontend of website."
4199
  msgstr ""
4200
 
4201
+ #: app/features/mec/settings.php:75 app/features/mec/settings.php:84
4202
  msgid "Multiple Day Events"
4203
  msgstr ""
4204
 
4205
+ #: app/features/mec/settings.php:78
4206
  msgid "Show only first day on List/Grid/Slider skins"
4207
  msgstr ""
4208
 
4209
+ #: app/features/mec/settings.php:79
4210
  msgid "Show only first day on all skins"
4211
  msgstr ""
4212
 
4213
+ #: app/features/mec/settings.php:80
4214
  msgid "Show all days"
4215
  msgstr ""
4216
 
4217
+ #: app/features/mec/settings.php:85
4218
  msgid ""
4219
  "For showing all days of multiple day events on frontend or only show the "
4220
  "first day."
4221
  msgstr ""
4222
 
4223
+ #: app/features/mec/settings.php:94
4224
  msgid "Remove MEC Data on Plugin Uninstall"
4225
  msgstr ""
4226
 
4227
+ #: app/features/mec/settings.php:98
4228
  msgid "Enabled"
4229
  msgstr ""
4230
 
4231
+ #: app/features/mec/settings.php:104
4232
  msgid "Exclude Date Suffix"
4233
  msgstr ""
4234
 
4235
+ #: app/features/mec/settings.php:107
4236
  msgid "Remove suffix from calendars"
4237
  msgstr ""
4238
 
4239
+ #: app/features/mec/settings.php:111
4240
  msgid "Remove \"Th\" on calendar"
4241
  msgstr ""
4242
 
4243
+ #: app/features/mec/settings.php:112
4244
  msgid ""
4245
  "Checked this checkbox to remove 'Th' on calendar ( ex: '12Th' remove Th, "
4246
  "showing just '12' )"
4247
  msgstr ""
4248
 
4249
+ #: app/features/mec/settings.php:119 app/features/mec/settings.php:126
4250
  msgid "Schema"
4251
  msgstr ""
4252
 
4253
+ #: app/features/mec/settings.php:122
4254
  msgid "Enable Schema Code"
4255
  msgstr ""
4256
 
4257
+ #: app/features/mec/settings.php:127
4258
  msgid "You can enable/disable Schema scripts"
4259
  msgstr ""
4260
 
4261
+ #: app/features/mec/settings.php:136 app/features/mec/settings.php:146
4262
+ #: app/libraries/main.php:4857
4263
  msgid "Weekdays"
4264
  msgstr ""
4265
 
4266
+ #: app/features/mec/settings.php:147
4267
  msgid ""
4268
  "Proceed with caution. Default is set to Monday, Tuesday, Wednesday, Thursday "
4269
  "and Friday ( you can change 'Week Starts' on WordPress Dashboard > Settings "
4270
  "> General - bottom of the page )."
4271
  msgstr ""
4272
 
4273
+ #: app/features/mec/settings.php:157 app/features/mec/settings.php:167
4274
  msgid "Weekends"
4275
  msgstr ""
4276
 
4277
+ #: app/features/mec/settings.php:168
4278
  msgid ""
4279
  "Proceed with caution. Default is set to Saturday and Sunday ( you can change "
4280
  "'Week Starts' on WordPress Dashboard > Settings > General - bottom of the "
4281
  "page )."
4282
  msgstr ""
4283
 
4284
+ #: app/features/mec/settings.php:179 app/libraries/main.php:529
4285
  msgid "Archive Pages"
4286
  msgstr ""
4287
 
4288
+ #: app/features/mec/settings.php:182 app/features/mec/settings.php:187
4289
  msgid "Archive Page Title"
4290
  msgstr ""
4291
 
4292
+ #: app/features/mec/settings.php:188
4293
  msgid "Default value is Events - It's title of the page"
4294
  msgstr ""
4295
 
4296
+ #: app/features/mec/settings.php:196 app/features/mec/settings.php:264
4297
  msgid "Archive Page Skin"
4298
  msgstr ""
4299
 
4300
+ #: app/features/mec/settings.php:204
4301
  msgid "Put shortcode..."
4302
  msgstr ""
4303
 
4304
+ #: app/features/mec/settings.php:207 app/features/mec/settings.php:222
4305
+ #: app/features/mec/settings.php:225 app/features/mec/settings.php:234
4306
+ #: app/features/mec/settings.php:260 app/features/mec/settings.php:281
4307
+ #: app/features/mec/settings.php:296 app/features/mec/settings.php:299
4308
+ #: app/features/mec/settings.php:308 app/features/mec/settings.php:334
4309
  msgid "There is no skins"
4310
  msgstr ""
4311
 
4312
+ #: app/features/mec/settings.php:210 app/features/mec/settings.php:284
4313
+ #: app/features/mec/single.php:69
4314
  msgid "Modern Style"
4315
  msgstr ""
4316
 
4317
+ #: app/features/mec/settings.php:252 app/features/mec/settings.php:326
4318
  msgid "colorful"
4319
  msgstr ""
4320
 
4321
+ #: app/features/mec/settings.php:257 app/features/mec/settings.php:331
4322
  msgid "Clean Style"
4323
  msgstr ""
4324
 
4325
+ #: app/features/mec/settings.php:265
4326
  msgid "Default value is Calendar/Monthly View, But you can change it "
4327
  msgstr ""
4328
 
4329
+ #: app/features/mec/settings.php:265 app/features/mec/settings.php:339
4330
  msgid "See Demo"
4331
  msgstr ""
4332
 
4333
+ #: app/features/mec/settings.php:273 app/features/mec/settings.php:338
4334
  msgid "Category Page Skin"
4335
  msgstr ""
4336
 
4337
+ #: app/features/mec/settings.php:339
4338
  msgid ""
4339
  "Default value is List View - But you can change it Set a skin for all "
4340
  "categories."
4341
  msgstr ""
4342
 
4343
+ #: app/features/mec/settings.php:347 app/features/mec/settings.php:355
4344
  msgid "Category Events Method"
4345
  msgstr ""
4346
 
4347
+ #: app/features/mec/settings.php:351
4348
  msgid "Expired Events"
4349
  msgstr ""
4350
 
4351
+ #: app/features/mec/settings.php:356
4352
  msgid "Default value is Upcoming Events"
4353
  msgstr ""
4354
 
4355
+ #: app/features/mec/settings.php:364 app/features/mec/settings.php:372
4356
  msgid "Events Archive Status"
4357
  msgstr ""
4358
 
4359
+ #: app/features/mec/settings.php:367
4360
  msgid "Enabled (Recommended)"
4361
  msgstr ""
4362
 
4363
+ #: app/features/mec/settings.php:373
4364
  msgid ""
4365
  "If you disable it, then you should create a page as archive page of MEC. "
4366
  "Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
4367
  "MEC rewrite rules."
4368
  msgstr ""
4369
 
4370
+ #: app/features/mec/settings.php:386 app/features/mec/settings.php:391
4371
  msgid "Main Slug"
4372
  msgstr ""
4373
 
4374
+ #: app/features/mec/settings.php:392
4375
  msgid ""
4376
  "Default value is events. You can not have a page with this name. MEC allows "
4377
  "you to create custom URLs for the permalinks and archives to enhance the "
4378
  "applicability and forward-compatibility of the links."
4379
  msgstr ""
4380
 
4381
+ #: app/features/mec/settings.php:396 app/features/mec/settings.php:410
4382
  msgid "Valid characters are lowercase a-z, - character and numbers."
4383
  msgstr ""
4384
 
4385
+ #: app/features/mec/settings.php:400 app/features/mec/settings.php:405
4386
  msgid "Category Slug"
4387
  msgstr ""
4388
 
4389
+ #: app/features/mec/settings.php:406
4390
  msgid ""
4391
  "It's slug of MEC categories, you can change it to events-cat or something "
4392
  "else. Default value is mec-category. You can not have a page with this name."
4393
  msgstr ""
4394
 
4395
+ #: app/features/mec/settings.php:418
4396
  msgid "Currency"
4397
  msgstr ""
4398
 
4399
+ #: app/features/mec/settings.php:428 app/features/mec/settings.php:433
4400
  msgid "Currency Sign"
4401
  msgstr ""
4402
 
4403
+ #: app/features/mec/settings.php:434
4404
  msgid "Default value will be \"currency\" if you leave it empty."
4405
  msgstr ""
4406
 
4407
+ #: app/features/mec/settings.php:441
4408
  msgid "Currency Position"
4409
  msgstr ""
4410
 
4411
+ #: app/features/mec/settings.php:444
4412
  msgid "Before $10"
4413
  msgstr ""
4414
 
4415
+ #: app/features/mec/settings.php:445
4416
  msgid "After 10$"
4417
  msgstr ""
4418
 
4419
+ #: app/features/mec/settings.php:450
4420
  msgid "Thousand Separator"
4421
  msgstr ""
4422
 
4423
+ #: app/features/mec/settings.php:456
4424
  msgid "Decimal Separator"
4425
  msgstr ""
4426
 
4427
+ #: app/features/mec/settings.php:466
4428
  msgid "No decimal"
4429
  msgstr ""
4430
 
4431
+ #: app/features/mec/settings.php:477
4432
  msgid "Enable Google Recaptcha"
4433
  msgstr ""
4434
 
4435
+ #: app/features/mec/settings.php:484
4436
  msgid "Enable on booking form"
4437
  msgstr ""
4438
 
4439
+ #: app/features/mec/settings.php:490
4440
  msgid "Enable on \"Frontend Event Submission\" form"
4441
  msgstr ""
4442
 
4443
+ #: app/features/mec/settings.php:494
4444
  msgid "Site Key"
4445
  msgstr ""
4446
 
4447
+ #: app/features/mec/settings.php:500
4448
  msgid "Secret Key"
4449
  msgstr ""
4450
 
4451
+ #: app/features/mec/settings.php:512 app/features/mec/settings.php:520
4452
  msgid "Time Format"
4453
  msgstr ""
4454
 
4455
+ #: app/features/mec/settings.php:515
4456
  msgid "12 hours format with AM/PM"
4457
  msgstr ""
4458
 
4459
+ #: app/features/mec/settings.php:516
4460
  msgid "24 hours format"
4461
  msgstr ""
4462
 
4463
+ #: app/features/mec/settings.php:521
4464
  msgid "This option, affects the selection of Start/End time."
4465
  msgstr ""
4466
 
4467
+ #: app/features/mec/settings.php:529
4468
  msgid "Events List Page"
4469
  msgstr ""
4470
 
4471
+ #: app/features/mec/settings.php:538 app/features/mec/settings.php:550
4472
  #, php-format
4473
  msgid "Put %s shortcode into the page."
4474
  msgstr ""
4475
 
4476
+ #: app/features/mec/settings.php:541
4477
  msgid "Add/Edit Events Page"
4478
  msgstr ""
4479
 
4480
+ #: app/features/mec/settings.php:555
4481
  msgid "Enable event submission by guest (Not logged-in) users"
4482
  msgstr ""
4483
 
4484
+ #: app/features/mec/settings.php:562
4485
  msgid "Enable mandatory email and name for guest user"
4486
  msgstr ""
4487
 
4488
+ #: app/features/mec/settings.php:566
4489
  msgid "Frontend Event Submission Sections"
4490
  msgstr ""
4491
 
4492
+ #: app/features/mec/settings.php:588 app/widgets/single.php:119
4493
  msgid "Event Categories"
4494
  msgstr ""
4495
 
4496
+ #: app/features/mec/settings.php:594
4497
  msgid "Event Labels"
4498
  msgstr ""
4499
 
4500
+ #: app/features/mec/settings.php:606
4501
  msgid "Event Tags"
4502
  msgstr ""
4503
 
4504
+ #: app/features/mec/settings.php:618 app/widgets/single.php:123
4505
  msgid "Event Organizer"
4506
  msgstr ""
4507
 
4508
+ #: app/features/mec/settings.php:636
4509
  msgid "Booking Options"
4510
  msgstr ""
4511
 
4512
+ #: app/features/mec/settings.php:642
4513
  msgid "Fees / Taxes Options"
4514
  msgstr ""
4515
 
4516
+ #: app/features/mec/settings.php:659
4517
  #, php-format
4518
  msgid ""
4519
  "Users can put a note for editors while they're submitting the event. Also "
4521
  "users' note in email."
4522
  msgstr ""
4523
 
4524
+ #: app/features/mec/settings.php:666 app/features/mec/settings.php:675
4525
  msgid "Visibility of Note"
4526
  msgstr ""
4527
 
4528
+ #: app/features/mec/settings.php:669
4529
  msgid "Always"
4530
  msgstr ""
4531
 
4532
+ #: app/features/mec/settings.php:670
4533
  msgid "While event is not published"
4534
  msgstr ""
4535
 
4536
+ #: app/features/mec/settings.php:676
4537
  msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
4538
  msgstr ""
4539
 
4540
+ #: app/features/mec/settings.php:685 app/libraries/main.php:534
4541
  msgid "User Profile"
4542
  msgstr ""
4543
 
4544
+ #: app/features/mec/settings.php:687
4545
  #, php-format
4546
  msgid ""
4547
  "Put %s shortcode into your desired page. Then users are able to see history "
4548
  "of their bookings."
4549
  msgstr ""
4550
 
4551
+ #: app/features/mec/settings.php:692 app/libraries/main.php:535
4552
  msgid "Search Bar"
4553
  msgstr ""
4554
 
4555
+ #: app/features/mec/settings.php:694
4556
  #, php-format
4557
  msgid ""
4558
  "Put %s shortcode into your desired page. Then users are able to search events"
4559
  msgstr ""
4560
 
4561
+ #: app/features/mec/settings.php:698
4562
  msgid "Ajax Live mode"
4563
  msgstr ""
4564
 
4565
+ #: app/features/mec/settings.php:702
4566
  msgid "Ajax mode"
4567
  msgstr ""
4568
 
4569
+ #: app/features/mec/settings.php:703
4570
  msgid ""
4571
  "if you enable this option, search button disappeared and to use this "
4572
  "feature, text input field must be enabled."
4573
  msgstr ""
4574
 
4575
+ #: app/features/mec/settings.php:711
4576
  msgid "Modern Type"
4577
  msgstr ""
4578
 
4579
+ #: app/features/mec/settings.php:715
4580
  msgid "Search bar fields"
4581
  msgstr ""
4582
 
4583
+ #: app/features/mec/settings.php:757
4584
  msgid "Text input"
4585
  msgstr ""
4586
 
4587
+ #: app/features/mec/settings.php:770
4588
  msgid "Enable Mailchimp Integration"
4589
  msgstr ""
4590
 
4591
+ #: app/features/mec/settings.php:788 app/features/mec/settings.php:793
4592
  msgid "List ID"
4593
  msgstr ""
4594
 
4595
+ #: app/features/mec/settings.php:801 app/features/mec/settings.php:809
4596
  msgid "Subscription Status"
4597
  msgstr ""
4598
 
4599
+ #: app/features/mec/settings.php:804
4600
  msgid "Subscribe automatically"
4601
  msgstr ""
4602
 
4603
+ #: app/features/mec/settings.php:805
4604
  msgid "Subscribe by verification"
4605
  msgstr ""
4606
 
4607
+ #: app/features/mec/settings.php:810
4608
  msgid ""
4609
  "If you choose \"Subscribe by verification\" then an email will send to user "
4610
  "by mailchimp for subscription verification."
4611
  msgstr ""
4612
 
4613
+ #: app/features/mec/settings.php:822
4614
  msgid "Upload Field Options"
4615
  msgstr ""
4616
 
4617
+ #: app/features/mec/settings.php:824
4618
  msgid "Mime types"
4619
  msgstr ""
4620
 
4621
+ #: app/features/mec/settings.php:828
4622
  msgid "Split mime types with \",\"."
4623
  msgstr ""
4624
 
4625
+ #: app/features/mec/settings.php:828
4626
  msgid "Default: jpeg,jpg,png,pdf"
4627
  msgstr ""
4628
 
4629
+ #: app/features/mec/settings.php:831
4630
  msgid "Maximum file size"
4631
  msgstr ""
4632
 
4633
+ #: app/features/mec/settings.php:835
4634
  msgid "The unit is Megabyte \"MB\""
4635
  msgstr ""
4636
 
4637
+ #: app/features/mec/single.php:34 app/libraries/main.php:541
4638
  msgid "Single Event Page"
4639
  msgstr ""
4640
 
4641
+ #: app/features/mec/single.php:36 app/features/mec/single.php:41
4642
  msgid "Single Event Date Format"
4643
  msgstr ""
4644
 
4645
+ #: app/features/mec/single.php:49 app/features/mec/single.php:57
4646
  msgid "Date Method"
4647
  msgstr ""
4648
 
4649
+ #: app/features/mec/single.php:52
4650
  msgid "Next occurrence date"
4651
  msgstr ""
4652
 
4653
+ #: app/features/mec/single.php:53
4654
  msgid "Referred date"
4655
  msgstr ""
4656
 
4657
+ #: app/features/mec/single.php:58
4658
  msgid ""
4659
  "Referred date\" shows the event date based on referred date in event list."
4660
  msgstr ""
4661
 
4662
+ #: app/features/mec/single.php:65 app/features/mec/single.php:76
4663
  msgid "Single Event Style"
4664
  msgstr ""
4665
 
4666
+ #: app/features/mec/single.php:68
4667
  msgid "Default Style"
4668
  msgstr ""
4669
 
4670
+ #: app/features/mec/single.php:71
4671
  msgid "Elementor Single Builder"
4672
  msgstr ""
4673
 
4674
+ #: app/features/mec/single.php:77
4675
  msgid "Choose your single event style."
4676
  msgstr ""
4677
 
4678
+ #: app/features/mec/single.php:85 app/features/mec/single.php:93
4679
  msgid "Booking Style"
4680
  msgstr ""
4681
 
4682
+ #: app/features/mec/single.php:89
4683
  msgid "Modal"
4684
  msgstr ""
4685
 
4686
+ #: app/features/mec/single.php:94
4687
  msgid ""
4688
  "Choose your Booking style, Please Note: When you set this feature to modal "
4689
  "you can not see booking box if you set popoup module view on shortcodes"
4690
  msgstr ""
4691
 
4692
+ #: app/features/mec/single.php:102
4693
  msgid "Disable Block Editor (Gutenberg)"
4694
  msgstr ""
4695
 
4696
+ #: app/features/mec/single.php:105
4697
  msgid "Disable Block Editor"
4698
  msgstr ""
4699
 
4700
+ #: app/features/mec/single.php:109
4701
  msgid "Block Editor"
4702
  msgstr ""
4703
 
4704
+ #: app/features/mec/single.php:110
4705
  msgid ""
4706
  "If you want to use the new WordPress block editor you should keep this "
4707
  "checkbox unchecked."
4708
  msgstr ""
4709
 
4710
+ #: app/features/mec/single.php:116 app/features/mec/single.php:123
4711
  msgid "Breadcrumbs"
4712
  msgstr ""
4713
 
4714
+ #: app/features/mec/single.php:119
4715
  msgid "Enable Breadcrumbs."
4716
  msgstr ""
4717
 
4718
+ #: app/features/mec/single.php:124
4719
  msgid "Check this option, for showing the breadcrumbs on single event page"
4720
  msgstr ""
4721
 
4722
+ #: app/features/mec/single.php:137
4723
  msgid "Show countdown module on event page"
4724
  msgstr ""
4725
 
4726
+ #: app/features/mec/single.php:142
4727
  msgid "Countdown Style"
4728
  msgstr ""
4729
 
4730
+ #: app/features/mec/single.php:145
4731
  msgid "Plain Style"
4732
  msgstr ""
4733
 
4734
+ #: app/features/mec/single.php:146
4735
  msgid "Flip Style"
4736
  msgstr ""
4737
 
4738
+ #: app/features/mec/single.php:154 app/features/mec/single.php:161
4739
  msgid "Exceptional days"
4740
  msgstr ""
4741
 
4742
+ #: app/features/mec/single.php:158
4743
  msgid "Show exceptional days option on Add/Edit events page"
4744
  msgstr ""
4745
 
4746
+ #: app/features/mec/single.php:162
4747
  msgid ""
4748
  "Using this option you can exclude certain days from event occurrence dates."
4749
  msgstr ""
4750
 
4751
+ #: app/features/mec/single.php:171 app/libraries/main.php:544
4752
  msgid "Additional Organizers"
4753
  msgstr ""
4754
 
4755
+ #: app/features/mec/single.php:175
4756
  msgid ""
4757
  "Show additional organizers option on Add/Edit events page and single event "
4758
  "page."
4759
  msgstr ""
4760
 
4761
+ #: app/features/mec/single.php:181
4762
  msgid "Additional locations"
4763
  msgstr ""
4764
 
4765
+ #: app/features/mec/single.php:185
4766
  msgid ""
4767
  "Show additional locations option on Add/Edit events page and single event "
4768
  "page."
4769
  msgstr ""
4770
 
4771
+ #: app/features/mec/single.php:191 app/libraries/main.php:546
4772
  #: app/skins/single.php:163
4773
  msgid "Related Events"
4774
  msgstr ""
4775
 
4776
+ #: app/features/mec/single.php:195
4777
  msgid "Display related events based on taxonomy in single event page."
4778
  msgstr ""
4779
 
4780
+ #: app/features/mec/single.php:201
4781
  msgid "Select Taxonomies:"
4782
  msgstr ""
4783
 
4869
  msgstr ""
4870
 
4871
  #: app/features/mec/support-page.php:13 app/features/mec/support.php:147
4872
+ msgid "All Articles"
4873
  msgstr ""
4874
 
4875
  #: app/features/mec/support-page.php:15
4886
  msgid "Advice and answers from the Webnus Team"
4887
  msgstr ""
4888
 
 
 
 
 
4889
  #: app/features/mec/support-page.php:46
4890
  msgid "Quick Setup"
4891
  msgstr ""
5265
  msgid "eg. https://webnus.net"
5266
  msgstr ""
5267
 
5268
+ #: app/features/organizers.php:311 app/libraries/main.php:4881
5269
+ #: app/skins/single.php:845
5270
  msgid "Other Organizers"
5271
  msgstr ""
5272
 
5280
  msgid "Please %s/%s in order to see your bookings / profile."
5281
  msgstr ""
5282
 
5283
+ #: app/features/profile/profile.php:26 app/features/profile/profile.php:88
5284
  msgid "#"
5285
  msgstr ""
5286
 
5287
+ #: app/features/profile/profile.php:35 app/libraries/main.php:2908
5288
  msgid "Status"
5289
  msgstr ""
5290
 
5291
+ #: app/features/profile/profile.php:38 app/libraries/main.php:2045
5292
  msgid "Attendees"
5293
  msgstr ""
5294
 
5295
+ #: app/features/profile/profile.php:41
5296
  msgid "Invoice"
5297
  msgstr ""
5298
 
5299
+ #: app/features/profile/profile.php:77
5300
  #, php-format
5301
  msgid "<i class=\"mec-sl-eye\"></i> %s"
5302
  msgstr ""
5303
 
5304
+ #: app/features/profile/profile.php:97 app/libraries/main.php:2059
5305
+ #: app/libraries/main.php:4879
5306
  msgid "Ticket"
5307
  msgstr ""
5308
 
5309
+ #: app/features/profile/profile.php:100
5310
  msgid "Variations"
5311
  msgstr ""
5312
 
5313
+ #: app/features/profile/profile.php:143
5314
  msgid "No bookings found!"
5315
  msgstr ""
5316
 
5337
  #: app/features/search_bar/search_result.php:11
5338
  #: app/libraries/notifications.php:671 app/libraries/render.php:437
5339
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
5340
+ #: app/skins/single.php:160 app/skins/single.php:736
5341
  #: app/skins/single/default.php:86 app/skins/single/default.php:298
5342
  #: app/skins/single/m1.php:34 app/skins/single/modern.php:184
5343
  msgid "All of the day"
5528
  msgid "Slider View"
5529
  msgstr ""
5530
 
5531
+ #: app/libraries/main.php:382 app/libraries/main.php:4859
5532
  msgid "SU"
5533
  msgstr ""
5534
 
5535
+ #: app/libraries/main.php:383 app/libraries/main.php:4860
5536
  msgid "MO"
5537
  msgstr ""
5538
 
5539
+ #: app/libraries/main.php:384 app/libraries/main.php:4861
5540
  msgid "TU"
5541
  msgstr ""
5542
 
5543
+ #: app/libraries/main.php:385 app/libraries/main.php:4862
5544
  msgid "WE"
5545
  msgstr ""
5546
 
5547
+ #: app/libraries/main.php:386 app/libraries/main.php:4863
5548
  msgid "TH"
5549
  msgstr ""
5550
 
5551
+ #: app/libraries/main.php:387 app/libraries/main.php:4864
5552
  msgid "FR"
5553
  msgstr ""
5554
 
5555
+ #: app/libraries/main.php:388 app/libraries/main.php:4865
5556
  msgid "SA"
5557
  msgstr ""
5558
 
5776
  msgid "Free"
5777
  msgstr ""
5778
 
5779
+ #: app/libraries/main.php:3525 app/libraries/main.php:5106
5780
  msgid "M.E. Calender"
5781
  msgstr ""
5782
 
5783
+ #: app/libraries/main.php:3680
5784
  #, php-format
5785
  msgid "Copy of %s"
5786
  msgstr ""
5787
 
5788
+ #: app/libraries/main.php:4353
5789
  msgid "Booked an event."
5790
  msgstr ""
5791
 
5792
+ #: app/libraries/main.php:4394
5793
  #, php-format
5794
  msgid "%s booked %s event."
5795
  msgstr ""
5796
 
5797
+ #: app/libraries/main.php:4842
5798
  msgid "Taxonomies"
5799
  msgstr ""
5800
 
5801
+ #: app/libraries/main.php:4844
5802
  msgid "Category Plural Label"
5803
  msgstr ""
5804
 
5805
+ #: app/libraries/main.php:4845
5806
  msgid "Category Singular Label"
5807
  msgstr ""
5808
 
5809
+ #: app/libraries/main.php:4846
5810
  msgid "Label Plural Label"
5811
  msgstr ""
5812
 
5813
+ #: app/libraries/main.php:4847
5814
  msgid "Label Singular Label"
5815
  msgstr ""
5816
 
5817
+ #: app/libraries/main.php:4847
5818
  msgid "label"
5819
  msgstr ""
5820
 
5821
+ #: app/libraries/main.php:4848
5822
  msgid "Location Plural Label"
5823
  msgstr ""
5824
 
5825
+ #: app/libraries/main.php:4849
5826
  msgid "Location Singular Label"
5827
  msgstr ""
5828
 
5829
+ #: app/libraries/main.php:4850
5830
  msgid "Organizer Plural Label"
5831
  msgstr ""
5832
 
5833
+ #: app/libraries/main.php:4851
5834
  msgid "Organizer Singular Label"
5835
  msgstr ""
5836
 
5837
+ #: app/libraries/main.php:4852
5838
  msgid "Speaker Plural Label"
5839
  msgstr ""
5840
 
5841
+ #: app/libraries/main.php:4853
5842
  msgid "Speaker Singular Label"
5843
  msgstr ""
5844
 
5845
+ #: app/libraries/main.php:4859
5846
  msgid "Sunday abbreviation"
5847
  msgstr ""
5848
 
5849
+ #: app/libraries/main.php:4860
5850
  msgid "Monday abbreviation"
5851
  msgstr ""
5852
 
5853
+ #: app/libraries/main.php:4861
5854
  msgid "Tuesday abbreviation"
5855
  msgstr ""
5856
 
5857
+ #: app/libraries/main.php:4862
5858
  msgid "Wednesday abbreviation"
5859
  msgstr ""
5860
 
5861
+ #: app/libraries/main.php:4863
5862
  msgid "Thursday abbreviation"
5863
  msgstr ""
5864
 
5865
+ #: app/libraries/main.php:4864
5866
  msgid "Friday abbreviation"
5867
  msgstr ""
5868
 
5869
+ #: app/libraries/main.php:4865
5870
  msgid "Saturday abbreviation"
5871
  msgstr ""
5872
 
5873
+ #: app/libraries/main.php:4869
5874
  msgid "Others"
5875
  msgstr ""
5876
 
5877
+ #: app/libraries/main.php:4871
5878
  msgid "Booking Success Message"
5879
  msgstr ""
5880
 
5881
+ #: app/libraries/main.php:4871
5882
  msgid ""
5883
  "Thanks for your booking. Your tickets booked, booking verification might be "
5884
  "needed, please check your email."
5885
  msgstr ""
5886
 
5887
+ #: app/libraries/main.php:4872 app/widgets/single.php:131
5888
  msgid "Register Button"
5889
  msgstr ""
5890
 
5891
+ #: app/libraries/main.php:4872 app/skins/available_spot/tpl.php:210
5892
  #: app/skins/carousel/render.php:156 app/skins/carousel/render.php:192
5893
  #: app/skins/grid/render.php:118 app/skins/grid/render.php:164
5894
  #: app/skins/grid/render.php:206 app/skins/grid/render.php:234
5895
  #: app/skins/list/render.php:107 app/skins/list/render.php:195
5896
+ #: app/skins/masonry/render.php:178 app/skins/single.php:757
5897
+ #: app/skins/single.php:760 app/skins/single/default.php:233
5898
  #: app/skins/single/default.php:235 app/skins/single/default.php:445
5899
  #: app/skins/single/default.php:447 app/skins/single/m1.php:126
5900
  #: app/skins/single/m1.php:128 app/skins/single/m2.php:58
5905
  msgid "REGISTER"
5906
  msgstr ""
5907
 
5908
+ #: app/libraries/main.php:4873
5909
  msgid "View Detail Button"
5910
  msgstr ""
5911
 
5912
+ #: app/libraries/main.php:4873 app/skins/carousel/render.php:156
5913
  #: app/skins/carousel/render.php:192 app/skins/grid/render.php:118
5914
  #: app/skins/grid/render.php:164 app/skins/grid/render.php:206
5915
  #: app/skins/grid/render.php:234 app/skins/list/render.php:107
5920
  msgid "View Detail"
5921
  msgstr ""
5922
 
5923
+ #: app/libraries/main.php:4874
5924
  msgid "Event Detail Button"
5925
  msgstr ""
5926
 
5927
+ #: app/libraries/main.php:4874 app/skins/countdown/tpl.php:224
5928
  msgid "Event Detail"
5929
  msgstr ""
5930
 
5931
+ #: app/libraries/main.php:4876
5932
  msgid "More Info Link"
5933
  msgstr ""
5934
 
5935
+ #: app/libraries/main.php:4879
5936
  msgid "Ticket (Singular)"
5937
  msgstr ""
5938
 
5939
+ #: app/libraries/main.php:4880
5940
  msgid "Tickets (Plural)"
5941
  msgstr ""
5942
 
5943
+ #: app/libraries/main.php:4966
5944
  msgid "EventON"
5945
  msgstr ""
5946
 
5947
+ #: app/libraries/main.php:4967
5948
  msgid "The Events Calendar"
5949
  msgstr ""
5950
 
5951
+ #: app/libraries/main.php:4968
5952
  msgid "Events Schedule WP Plugin"
5953
  msgstr ""
5954
 
5955
+ #: app/libraries/main.php:4969
5956
  msgid "Calendarize It"
5957
  msgstr ""
5958
 
5959
+ #: app/libraries/main.php:5043 app/libraries/main.php:5063
5960
  msgid "Confirmed"
5961
  msgstr ""
5962
 
5963
+ #: app/libraries/main.php:5044 app/libraries/main.php:5071
5964
  msgid "Rejected"
5965
  msgstr ""
5966
 
5967
+ #: app/libraries/main.php:5045 app/libraries/main.php:5067
5968
  msgid "Pending"
5969
  msgstr ""
5970
 
5971
+ #: app/libraries/main.php:5093
5972
  msgid "Waiting"
5973
  msgstr ""
5974
 
5975
+ #: app/libraries/main.php:5298 app/libraries/render.php:367
5976
  msgid "Skin controller does not exist."
5977
  msgstr ""
5978
 
6097
  msgid "Get Directions"
6098
  msgstr ""
6099
 
6100
+ #: app/modules/links/details.php:17 app/skins/single.php:454
6101
  msgid "Share this event"
6102
  msgstr ""
6103
 
6124
  msgid "Go to occurrence page"
6125
  msgstr ""
6126
 
6127
+ #: app/modules/next-event/details.php:95 app/skins/single.php:730
6128
  #: app/skins/single/default.php:80 app/skins/single/default.php:292
6129
  #: app/skins/single/m1.php:28 app/skins/single/modern.php:178
6130
  msgid "Time"
6179
  msgstr ""
6180
 
6181
  #: app/skins/agenda/tpl.php:65 app/skins/agenda/tpl.php:69
6182
+ #: app/skins/carousel/tpl.php:45 app/skins/custom/tpl.php:61
6183
+ #: app/skins/custom/tpl.php:65 app/skins/grid/tpl.php:61
6184
  #: app/skins/grid/tpl.php:65 app/skins/list/tpl.php:66
6185
  #: app/skins/list/tpl.php:70 app/skins/masonry/tpl.php:61
6186
  #: app/skins/masonry/tpl.php:65 app/skins/slider/tpl.php:43
6187
  msgid "No event found!"
6188
  msgstr ""
6189
 
6190
+ #: app/skins/agenda/tpl.php:74 app/skins/custom/tpl.php:70
6191
+ #: app/skins/grid/tpl.php:70 app/skins/list/tpl.php:75
6192
+ #: app/skins/masonry/tpl.php:70 app/skins/yearly_view/render.php:124
6193
  msgid "Load More"
6194
  msgstr ""
6195
 
6253
  msgid "Home"
6254
  msgstr ""
6255
 
6256
+ #: app/skins/single.php:537 app/skins/single/default.php:43
6257
  #: app/skins/single/m1.php:247 app/skins/single/m2.php:174
6258
  #: app/skins/single/modern.php:256
6259
  msgid "Sold out!"
6260
  msgstr ""
6261
 
6262
+ #: app/skins/single.php:805 app/skins/single.php:860
6263
  #: app/skins/single/default.php:205 app/skins/single/default.php:417
6264
  #: app/skins/single/m1.php:100 app/skins/single/m2.php:32
6265
  #: app/skins/single/modern.php:41
6266
  msgid "Phone"
6267
  msgstr ""
6268
 
6269
+ #: app/skins/single.php:819 app/skins/single.php:874
6270
  #: app/skins/single/default.php:219 app/skins/single/default.php:431
6271
  #: app/skins/single/m1.php:114 app/skins/single/m2.php:46
6272
  #: app/skins/single/modern.php:55
6273
  msgid "Website"
6274
  msgstr ""
6275
 
6276
+ #: app/skins/single.php:944
6277
  msgid "Speakers:"
6278
  msgstr ""
6279
 
languages/modern-events-calendar-lite-es_ES.mo CHANGED
Binary file
languages/modern-events-calendar-lite-es_ES.po CHANGED
@@ -4,8 +4,8 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Plugins - Modern Events Calendar Lite - Stable (latest "
6
  "release)\n"
7
- "POT-Creation-Date: 2019-09-11 13:21+0430\n"
8
- "PO-Revision-Date: 2019-09-11 13:23+0430\n"
9
  "Last-Translator: \n"
10
  "Language-Team: \n"
11
  "Language: es\n"
@@ -60,7 +60,7 @@ msgid "Select Type"
60
  msgstr "Seleccionar tipo"
61
 
62
  #: app/features/colors.php:50 app/features/fes/form.php:794
63
- #: app/features/mec/settings.php:597
64
  msgid "Event Color"
65
  msgstr "Color del evento"
66
 
@@ -70,8 +70,8 @@ msgstr "Color del evento"
70
  msgid "Settings"
71
  msgstr "Ajustes"
72
 
73
- #: app/features/contextual.php:62 app/features/events.php:2279
74
- #: app/features/mec/booking.php:398 app/features/mec/support.php:29
75
  #: app/libraries/main.php:554
76
  msgid "Booking Form"
77
  msgstr "Formulario de Reservas"
@@ -91,7 +91,7 @@ msgstr ""
91
  "www.youtube.com/embed/YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></"
92
  "iframe>"
93
 
94
- #: app/features/contextual.php:70 app/features/mec/booking.php:516
95
  #: app/features/mec/support.php:36 app/libraries/main.php:555
96
  msgid "Payment Gateways"
97
  msgstr "Pasarelas de pago"
@@ -186,12 +186,12 @@ msgstr ""
186
  "width=\"854\" height=\"420\" src=\"https://www.youtube.com/embed/dqgt1b8X8hs"
187
  "\" frameborder=\"0\" allowfullscreen></iframe>"
188
 
189
- #: app/features/contextual.php:117 app/features/mec/settings.php:49
190
  #: app/libraries/main.php:528
191
  msgid "General Options"
192
  msgstr "Opciones generales"
193
 
194
- #: app/features/contextual.php:139 app/features/mec/settings.php:381
195
  #: app/libraries/main.php:530
196
  msgid "Slugs/Permalinks"
197
  msgstr "Enlaces permanentes"
@@ -200,27 +200,27 @@ msgstr "Enlaces permanentes"
200
  msgid "Event Details/Single Event Page"
201
  msgstr "Detalles del Evento/Página de Evento Único"
202
 
203
- #: app/features/contextual.php:166 app/features/mec/settings.php:413
204
  #: app/libraries/main.php:531
205
  msgid "Currency Options"
206
  msgstr "Opciones de moneda"
207
 
208
- #: app/features/contextual.php:182 app/features/mec/modules.php:64
209
- #: app/features/mec/modules.php:82 app/libraries/main.php:560
210
  msgid "Google Maps Options"
211
  msgstr "Opciones de Google Maps"
212
 
213
- #: app/features/contextual.php:244 app/features/mec/settings.php:470
214
  #: app/libraries/main.php:532
215
  msgid "Google Recaptcha Options"
216
  msgstr "Opciones de Google Recaptcha"
217
 
218
- #: app/features/contextual.php:258 app/features/mec/single.php:130
219
  #: app/libraries/main.php:542
220
  msgid "Countdown Options"
221
  msgstr "Opciones de cuenta atrás"
222
 
223
- #: app/features/contextual.php:268 app/features/mec/modules.php:260
224
  #: app/libraries/main.php:565
225
  msgid "Social Networks"
226
  msgstr "Redes Sociales"
@@ -229,34 +229,34 @@ msgstr "Redes Sociales"
229
  msgid "Next Event Module"
230
  msgstr "Módulo de Siguiente Evento"
231
 
232
- #: app/features/contextual.php:286 app/features/mec/settings.php:506
233
  #: app/libraries/main.php:533
234
  msgid "Frontend Event Submission"
235
  msgstr "Presentación del evento Frontend"
236
 
237
- #: app/features/contextual.php:298 app/features/events.php:1130
238
  #: app/libraries/main.php:543
239
  msgid "Exceptional Days"
240
  msgstr "Días excepcionales"
241
 
242
- #: app/features/contextual.php:308 app/features/events.php:296
243
- #: app/features/mec/booking.php:85 app/features/mec/notifications.php:31
244
  #: app/libraries/main.php:550 app/libraries/main.php:571
245
  #: app/libraries/main.php:652
246
  msgid "Booking"
247
  msgstr "Reserva"
248
 
249
- #: app/features/contextual.php:318 app/features/mec/booking.php:220
250
  #: app/libraries/main.php:551
251
  msgid "Coupons"
252
  msgstr "Cupones"
253
 
254
- #: app/features/contextual.php:326 app/features/mec/modules.php:321
255
  #: app/libraries/main.php:567
256
  msgid "BuddyPress Integration"
257
  msgstr "Integración de BuddyPress"
258
 
259
- #: app/features/contextual.php:334 app/features/mec/settings.php:763
260
  #: app/libraries/main.php:536
261
  msgid "Mailchimp Integration"
262
  msgstr "Integración de MailChimp"
@@ -265,52 +265,52 @@ msgstr "Integración de MailChimp"
265
  msgid "MEC Activation"
266
  msgstr "Activación MEC"
267
 
268
- #: app/features/events.php:148 app/features/ix/export.php:34
269
  #: app/features/mec/dashboard.php:229 app/skins/daily_view/tpl.php:79
270
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
271
  msgid "Events"
272
  msgstr "Eventos"
273
 
274
- #: app/features/events.php:149
275
- #: app/features/mec/meta_boxes/display_options.php:917
276
- #: app/features/mec/meta_boxes/display_options.php:973
277
- #: app/features/mec/meta_boxes/display_options.php:1008
278
- #: app/features/profile/profile.php:28 app/skins/daily_view/tpl.php:80
279
  #: app/skins/monthly_view/tpl.php:71 app/skins/yearly_view/tpl.php:69
280
  msgid "Event"
281
  msgstr "Evento"
282
 
283
- #: app/features/events.php:150 app/features/mec.php:333
284
  msgid "Add Event"
285
  msgstr "Nuevo evento"
286
 
287
- #: app/features/events.php:151 app/features/mec/dashboard.php:134
288
  msgid "Add New Event"
289
  msgstr "Añadir nuevo evento"
290
 
291
- #: app/features/events.php:152 app/features/ix.php:3122
292
  #: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:57
293
  msgid "No events found!"
294
  msgstr "No hay eventos"
295
 
296
- #: app/features/events.php:153
297
  msgid "All Events"
298
  msgstr "Todos los eventos"
299
 
300
- #: app/features/events.php:154
301
  msgid "Edit Event"
302
  msgstr "Editar Evento"
303
 
304
- #: app/features/events.php:155
305
  msgid "View Event"
306
  msgstr "Ver evento"
307
 
308
- #: app/features/events.php:156
309
  msgid "No events found in Trash!"
310
  msgstr "No hay eventos en la papelera"
311
 
312
- #: app/features/events.php:173 app/features/events.php:3072
313
- #: app/features/mec/meta_boxes/display_options.php:828
314
  #: app/features/mec/meta_boxes/search_form.php:31
315
  #: app/features/mec/meta_boxes/search_form.php:93
316
  #: app/features/mec/meta_boxes/search_form.php:155
@@ -321,201 +321,186 @@ msgstr "No hay eventos en la papelera"
321
  #: app/features/mec/meta_boxes/search_form.php:453
322
  #: app/features/mec/meta_boxes/search_form.php:514
323
  #: app/features/mec/meta_boxes/search_form.php:575
324
- #: app/features/mec/settings.php:716 app/features/mec/single.php:201
325
- #: app/libraries/main.php:4835 app/libraries/skins.php:808
326
- #: app/skins/single.php:531 app/skins/single/default.php:170
327
  #: app/skins/single/default.php:382 app/skins/single/m1.php:170
328
  #: app/skins/single/m2.php:102 app/skins/single/modern.php:110
329
  msgid "Category"
330
  msgstr "Categoría"
331
 
332
- #: app/features/events.php:174 app/features/events.php:3043
333
  #: app/features/fes/form.php:745 app/features/mec.php:335
334
- #: app/features/mec/meta_boxes/filter.php:70 app/libraries/main.php:4834
335
  msgid "Categories"
336
  msgstr "Categorías"
337
 
338
- #: app/features/events.php:184 app/features/labels.php:71
339
  #: app/features/locations.php:69 app/features/organizers.php:69
340
  #: app/features/speakers.php:70
341
  #, php-format
342
  msgid "All %s"
343
  msgstr "Todos %s"
344
 
345
- #: app/features/events.php:185 app/features/labels.php:72
346
  #: app/features/locations.php:70 app/features/organizers.php:70
347
  #: app/features/speakers.php:71
348
  #, php-format
349
  msgid "Edit %s"
350
  msgstr "Editar %s"
351
 
352
- #: app/features/events.php:186 app/features/labels.php:73
353
  #: app/features/locations.php:71 app/features/organizers.php:71
354
  #: app/features/speakers.php:72
355
  #, php-format
356
  msgid "View %s"
357
  msgstr "Ver %s"
358
 
359
- #: app/features/events.php:187 app/features/labels.php:74
360
  #: app/features/locations.php:72 app/features/organizers.php:72
361
  #: app/features/speakers.php:73
362
  #, php-format
363
  msgid "Update %s"
364
  msgstr "Actualizar %s"
365
 
366
- #: app/features/events.php:188 app/features/labels.php:75
367
  #: app/features/locations.php:73 app/features/organizers.php:73
368
  #: app/features/speakers.php:74
369
  #, php-format
370
  msgid "Add New %s"
371
  msgstr "Añadir nuevo %s"
372
 
373
- #: app/features/events.php:189 app/features/labels.php:76
374
  #: app/features/locations.php:74 app/features/organizers.php:74
375
  #: app/features/speakers.php:75
376
  #, php-format
377
  msgid "New %s Name"
378
  msgstr "Nuevo %s Nombre"
379
 
380
- #: app/features/events.php:190 app/features/labels.php:77
381
  #: app/features/locations.php:75 app/features/organizers.php:75
382
  #: app/features/speakers.php:76
383
  #, php-format
384
  msgid "Popular %s"
385
  msgstr "Popular %s"
386
 
387
- #: app/features/events.php:191 app/features/labels.php:78
388
  #: app/features/locations.php:76 app/features/organizers.php:76
389
  #: app/features/speakers.php:77
390
  #, php-format
391
  msgid "Search %s"
392
  msgstr "Buscar %s"
393
 
394
- #: app/features/events.php:216 app/features/events.php:237
395
  msgid "Category Icon"
396
  msgstr "Icono de categoría"
397
 
398
- #: app/features/events.php:219 app/features/events.php:242
399
  msgid "Select icon"
400
  msgstr "Seleccionar icono"
401
 
402
- #: app/features/events.php:291
403
  msgid "Event Details"
404
  msgstr "Detalle de evento"
405
 
406
- #: app/features/events.php:333 app/features/events.php:3265
407
- #: app/features/events.php:3307 app/features/fes/form.php:706
408
- #: app/features/ix.php:2743 app/features/ix.php:2784
409
- #: app/features/mec/settings.php:573 app/libraries/main.php:4867
410
- #: app/widgets/single.php:103
411
- msgid "Event Cost"
412
- msgstr "Coste del evento"
413
-
414
- #: app/features/events.php:337 app/features/fes/form.php:709
415
- #: app/libraries/main.php:4868 app/skins/single.php:554
416
- #: app/skins/single/default.php:104 app/skins/single/default.php:316
417
- #: app/skins/single/m1.php:49 app/skins/single/modern.php:199
418
- msgid "Cost"
419
- msgstr "Coste"
420
-
421
- #: app/features/events.php:435
422
  msgid "Note for reviewer"
423
  msgstr "Nota para el encargado"
424
 
425
- #: app/features/events.php:442
426
  msgid "Guest Data"
427
  msgstr "Datos del invitado"
428
 
429
- #: app/features/events.php:443 app/features/events.php:2261
430
  #: app/features/fes/form.php:668 app/features/labels.php:178
431
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
432
- #: app/features/profile/profile.php:90 app/libraries/notifications.php:805
433
  #: app/modules/booking/steps/form.php:37
434
  msgid "Name"
435
  msgstr "Nombre"
436
 
437
- #: app/features/events.php:444 app/features/events.php:2272
438
- #: app/features/events.php:2348 app/features/fes/form.php:664
439
- #: app/features/mec/booking.php:57 app/features/mec/booking.php:449
440
  #: app/features/organizers.php:111 app/features/organizers.php:152
441
- #: app/features/profile/profile.php:93 app/features/speakers.php:124
442
  #: app/features/speakers.php:184 app/libraries/main.php:1471
443
  #: app/libraries/main.php:1537 app/libraries/main.php:2582
444
  #: app/libraries/notifications.php:806 app/modules/booking/steps/form.php:46
445
- #: app/modules/booking/steps/form.php:84 app/skins/single.php:781
446
- #: app/skins/single.php:836 app/skins/single/default.php:212
447
  #: app/skins/single/default.php:424 app/skins/single/m1.php:107
448
  #: app/skins/single/m2.php:39 app/skins/single/modern.php:48
449
  msgid "Email"
450
  msgstr "Correo electrónico"
451
 
452
- #: app/features/events.php:448 app/features/fes/form.php:232
453
  msgid "Date and Time"
454
  msgstr "Día y hora"
455
 
456
- #: app/features/events.php:452 app/features/events.php:458
457
- #: app/features/events.php:3075 app/features/events.php:3265
458
- #: app/features/events.php:3307 app/features/fes/form.php:236
459
  #: app/features/fes/form.php:240 app/features/ix.php:2743
460
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:38
461
  #: app/features/mec/dashboard.php:373
462
- #: app/features/mec/meta_boxes/display_options.php:44
463
- #: app/features/mec/meta_boxes/display_options.php:185
464
- #: app/features/mec/meta_boxes/display_options.php:337
465
- #: app/features/mec/meta_boxes/display_options.php:392
466
- #: app/features/mec/meta_boxes/display_options.php:515
467
- #: app/features/mec/meta_boxes/display_options.php:569
468
- #: app/features/mec/meta_boxes/display_options.php:616
469
- #: app/features/mec/meta_boxes/display_options.php:649
470
- #: app/features/mec/meta_boxes/display_options.php:684
471
- #: app/features/mec/meta_boxes/display_options.php:730
472
- #: app/features/mec/meta_boxes/display_options.php:796
473
- #: app/features/mec/meta_boxes/display_options.php:1031
474
- #: app/features/mec/meta_boxes/display_options.php:1118
475
  msgid "Start Date"
476
  msgstr "Día de inicio"
477
 
478
- #: app/features/events.php:530 app/features/events.php:622
479
- #: app/features/events.php:1615 app/features/events.php:1657
480
- #: app/features/events.php:1824 app/features/events.php:1848
481
  #: app/features/fes/form.php:268 app/features/fes/form.php:308
482
  msgid "AM"
483
  msgstr "AM"
484
 
485
- #: app/features/events.php:537 app/features/events.php:629
486
- #: app/features/events.php:1622 app/features/events.php:1664
487
- #: app/features/events.php:1825 app/features/events.php:1849
488
  #: app/features/fes/form.php:269 app/features/fes/form.php:309
489
  msgid "PM"
490
  msgstr "PM"
491
 
492
- #: app/features/events.php:544 app/features/events.php:549
493
- #: app/features/events.php:3076 app/features/events.php:3265
494
- #: app/features/events.php:3307 app/features/fes/form.php:276
495
  #: app/features/fes/form.php:280 app/features/ix.php:2743
496
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:44
497
  #: app/features/mec/dashboard.php:374
498
  msgid "End Date"
499
  msgstr "Día final"
500
 
501
- #: app/features/events.php:643 app/features/fes/form.php:315
502
  msgid "All Day Event"
503
  msgstr "Evento de todo el día"
504
 
505
- #: app/features/events.php:653 app/features/fes/form.php:318
506
  msgid "Hide Event Time"
507
  msgstr "Ocultar hora del evento"
508
 
509
- #: app/features/events.php:663 app/features/fes/form.php:321
510
  msgid "Hide Event End Time"
511
  msgstr "Oculta la hora de finalización del evento"
512
 
513
- #: app/features/events.php:668 app/features/events.php:672
514
  #: app/features/fes/form.php:325
515
  msgid "Time Comment"
516
  msgstr "Tiempo para comentar"
517
 
518
- #: app/features/events.php:673 app/features/fes/form.php:326
519
  #, fuzzy
520
  #| msgid ""
521
  #| "It shows next to event time on calendar. You can insert Timezone etc. in "
@@ -527,271 +512,277 @@ msgstr ""
527
  "Muestra la hora del siguiente evento en el calendario. Puedes insertar Zona "
528
  "horaria, etc en este campo."
529
 
530
- #: app/features/events.php:675 app/features/events.php:807
531
- #: app/features/events.php:1106 app/features/events.php:1149
532
- #: app/features/events.php:1448 app/features/events.php:1507
533
- #: app/features/events.php:1684 app/features/events.php:1699
534
- #: app/features/events.php:1866 app/features/events.php:1879
535
- #: app/features/events.php:2009 app/features/events.php:2045
536
- #: app/features/events.php:2143 app/features/events.php:2158
537
- #: app/features/events.php:2188 app/features/events.php:2201
538
  #: app/features/fes/form.php:630 app/features/locations.php:299
539
- #: app/features/mec/booking.php:105 app/features/mec/booking.php:142
540
- #: app/features/mec/booking.php:158 app/features/mec/booking.php:265
541
- #: app/features/mec/booking.php:294 app/features/mec/booking.php:342
542
- #: app/features/mec/booking.php:352 app/features/mec/booking.php:374
543
- #: app/features/mec/booking.php:384 app/features/mec/dashboard.php:71
544
- #: app/features/mec/meta_boxes/display_options.php:62
545
- #: app/features/mec/meta_boxes/display_options.php:75
546
- #: app/features/mec/meta_boxes/display_options.php:88
547
- #: app/features/mec/meta_boxes/display_options.php:99
548
- #: app/features/mec/meta_boxes/display_options.php:111
549
- #: app/features/mec/meta_boxes/display_options.php:203
550
- #: app/features/mec/meta_boxes/display_options.php:215
551
- #: app/features/mec/meta_boxes/display_options.php:227
552
- #: app/features/mec/meta_boxes/display_options.php:240
553
- #: app/features/mec/meta_boxes/display_options.php:251
554
- #: app/features/mec/meta_boxes/display_options.php:264
555
- #: app/features/mec/meta_boxes/display_options.php:275
556
- #: app/features/mec/meta_boxes/display_options.php:356
557
- #: app/features/mec/meta_boxes/display_options.php:532
558
- #: app/features/mec/meta_boxes/display_options.php:815
559
- #: app/features/mec/meta_boxes/display_options.php:888
560
- #: app/features/mec/meta_boxes/display_options.php:900
561
- #: app/features/mec/meta_boxes/display_options.php:911
562
- #: app/features/mec/meta_boxes/display_options.php:943
563
- #: app/features/mec/meta_boxes/display_options.php:954
564
- #: app/features/mec/meta_boxes/display_options.php:967
565
- #: app/features/mec/meta_boxes/display_options.php:1002
566
- #: app/features/mec/meta_boxes/display_options.php:1051
567
- #: app/features/mec/meta_boxes/display_options.php:1062
568
- #: app/features/mec/meta_boxes/display_options.php:1073
569
- #: app/features/mec/meta_boxes/display_options.php:1138
570
- #: app/features/mec/meta_boxes/display_options.php:1151
571
- #: app/features/mec/meta_boxes/display_options.php:1164
572
- #: app/features/mec/meta_boxes/display_options.php:1177
573
- #: app/features/mec/meta_boxes/display_options.php:1190
574
- #: app/features/mec/modules.php:50 app/features/mec/modules.php:83
575
- #: app/features/mec/modules.php:100 app/features/mec/modules.php:135
576
- #: app/features/mec/modules.php:151 app/features/mec/modules.php:309
577
  #: app/features/mec/notifications.php:50 app/features/mec/notifications.php:107
578
  #: app/features/mec/notifications.php:159
579
  #: app/features/mec/notifications.php:218
580
  #: app/features/mec/notifications.php:286
581
  #: app/features/mec/notifications.php:349
582
  #: app/features/mec/notifications.php:360
583
- #: app/features/mec/notifications.php:422 app/features/mec/settings.php:63
584
- #: app/features/mec/settings.php:82 app/features/mec/settings.php:109
585
- #: app/features/mec/settings.php:144 app/features/mec/settings.php:165
586
- #: app/features/mec/settings.php:185 app/features/mec/settings.php:262
587
- #: app/features/mec/settings.php:336 app/features/mec/settings.php:353
588
- #: app/features/mec/settings.php:370 app/features/mec/settings.php:389
589
- #: app/features/mec/settings.php:403 app/features/mec/settings.php:431
590
- #: app/features/mec/settings.php:518 app/features/mec/settings.php:656
591
- #: app/features/mec/settings.php:673 app/features/mec/settings.php:778
592
- #: app/features/mec/settings.php:791 app/features/mec/settings.php:807
593
- #: app/features/mec/single.php:39 app/features/mec/single.php:55
594
- #: app/features/mec/single.php:74 app/features/mec/single.php:91
595
- #: app/features/mec/single.php:107 app/features/mec/single.php:121
596
- #: app/features/mec/single.php:159 app/features/mec/styling.php:199
597
  #: app/features/mec/styling.php:216 app/features/mec/styling.php:229
598
- #: app/features/organizers.php:272 app/skins/single.php:629
599
  #: app/skins/single/default.php:119 app/skins/single/default.php:331
600
  #: app/skins/single/m1.php:192 app/skins/single/m2.php:125
601
  #: app/skins/single/modern.php:133
602
  msgid "Read More"
603
  msgstr "Leer más"
604
 
605
- #: app/features/events.php:691 app/features/fes/form.php:332
 
 
 
 
 
 
606
  msgid "Event Repeating"
607
  msgstr "Repetir el evento"
608
 
609
- #: app/features/events.php:695 app/features/fes/form.php:336
610
  msgid "Repeats"
611
  msgstr "Repeticiones"
612
 
613
- #: app/features/events.php:703 app/features/fes/form.php:338
614
  #: app/features/mec/dashboard.php:376 app/skins/full_calendar/tpl.php:109
615
  msgid "Daily"
616
  msgstr "Diariamente"
617
 
618
- #: app/features/events.php:710 app/features/fes/form.php:339
619
  msgid "Every Weekday"
620
  msgstr "Cada día de la semana"
621
 
622
- #: app/features/events.php:717 app/features/fes/form.php:340
623
  msgid "Every Weekend"
624
  msgstr "Cada fin de semana"
625
 
626
- #: app/features/events.php:724 app/features/fes/form.php:341
627
  msgid "Certain Weekdays"
628
  msgstr "Ciertos días de la semana"
629
 
630
- #: app/features/events.php:731 app/features/fes/form.php:342
631
  #: app/skins/full_calendar/tpl.php:108
632
  msgid "Weekly"
633
  msgstr "Semanal"
634
 
635
- #: app/features/events.php:738 app/features/fes/form.php:343
636
  #: app/features/mec/dashboard.php:377 app/skins/full_calendar/tpl.php:107
637
  msgid "Monthly"
638
  msgstr "Mensual"
639
 
640
- #: app/features/events.php:745 app/features/fes/form.php:344
641
  #: app/features/mec/dashboard.php:378 app/skins/full_calendar/tpl.php:106
642
  msgid "Yearly"
643
  msgstr "Anual"
644
 
645
- #: app/features/events.php:752 app/features/fes/form.php:345
646
  msgid "Custom Days"
647
  msgstr "Días personalizados"
648
 
649
- #: app/features/events.php:759 app/features/fes/form.php:346
650
  #, fuzzy
651
  #| msgid "Advanced Method"
652
  msgid "Advanced"
653
  msgstr "Método avanzado"
654
 
655
- #: app/features/events.php:764 app/features/fes/form.php:350
656
  msgid "Repeat Interval"
657
  msgstr "Intervalo de repetición"
658
 
659
- #: app/features/events.php:766 app/features/fes/form.php:351
660
  msgid "Repeat interval"
661
  msgstr "Intervalo de repetición"
662
 
663
- #: app/features/events.php:770 app/features/fes/form.php:354
664
  msgid "Week Days"
665
  msgstr "Días de semana"
666
 
667
- #: app/features/events.php:772 app/features/fes/form.php:355
668
- #: app/features/mec/meta_boxes/display_options.php:760
669
  #: app/libraries/main.php:407
670
  msgid "Monday"
671
  msgstr "Lunes"
672
 
673
- #: app/features/events.php:775 app/features/fes/form.php:356
674
- #: app/features/mec/meta_boxes/display_options.php:761
675
  #: app/libraries/main.php:407
676
  msgid "Tuesday"
677
  msgstr "Martes"
678
 
679
- #: app/features/events.php:778 app/features/fes/form.php:357
680
- #: app/features/mec/meta_boxes/display_options.php:762
681
  #: app/libraries/main.php:407
682
  msgid "Wednesday"
683
  msgstr "Miércoles"
684
 
685
- #: app/features/events.php:781 app/features/fes/form.php:358
686
- #: app/features/mec/meta_boxes/display_options.php:763
687
  #: app/libraries/main.php:407
688
  msgid "Thursday"
689
  msgstr "Jueves"
690
 
691
- #: app/features/events.php:784 app/features/fes/form.php:359
692
- #: app/features/mec/meta_boxes/display_options.php:764
693
  #: app/libraries/main.php:407
694
  msgid "Friday"
695
  msgstr "Viernes"
696
 
697
- #: app/features/events.php:787 app/features/fes/form.php:360
698
- #: app/features/mec/meta_boxes/display_options.php:765
699
  #: app/libraries/main.php:407
700
  msgid "Saturday"
701
  msgstr "Sábado"
702
 
703
- #: app/features/events.php:790 app/features/fes/form.php:361
704
- #: app/features/mec/meta_boxes/display_options.php:759
705
  #: app/libraries/main.php:407
706
  msgid "Sunday"
707
  msgstr "Domingo"
708
 
709
- #: app/features/events.php:797 app/features/events.php:1747
710
- #: app/features/events.php:1775 app/features/events.php:1913
711
  #: app/features/fes/form.php:366 app/features/ix/import_f_calendar.php:42
712
  #: app/features/ix/import_g_calendar.php:51
713
  #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
714
  msgid "Start"
715
  msgstr "Inicio"
716
 
717
- #: app/features/events.php:799 app/features/events.php:1751
718
- #: app/features/events.php:1779 app/features/events.php:1917
719
  #: app/features/fes/form.php:367
720
  msgid "End"
721
  msgstr ""
722
 
723
- #: app/features/events.php:801 app/features/events.php:1143
724
- #: app/features/events.php:1254 app/features/events.php:1359
725
- #: app/features/events.php:1565 app/features/events.php:1730
726
- #: app/features/events.php:1902 app/features/events.php:1982
727
- #: app/features/events.php:2115 app/features/fes/form.php:368
728
  #: app/features/fes/form.php:842
729
  msgid "Add"
730
  msgstr "Añadir"
731
 
732
- #: app/features/events.php:804
733
  #, fuzzy
734
  #| msgid "Custom Days"
735
  msgid "Custom Days Repeating"
736
  msgstr "Días personalizados"
737
 
738
- #: app/features/events.php:805
739
  msgid ""
740
  "Add certain days to event occurrence dates. If you have single day event, "
741
  "start and end date should be the same, If you have multiple day event the "
742
  "start and end dates must be commensurate with the initial date."
743
  msgstr ""
744
 
745
- #: app/features/events.php:841 app/features/fes/form.php:394
746
  #, fuzzy
747
  #| msgid "Ticket name"
748
  msgid "First"
749
  msgstr "Nombre de la entrada"
750
 
751
- #: app/features/events.php:883 app/features/fes/form.php:436
752
  #, fuzzy
753
  #| msgid "second"
754
  msgid "Second"
755
  msgstr "segundo"
756
 
757
- #: app/features/events.php:925 app/features/fes/form.php:478
758
  #, fuzzy
759
  #| msgid "Third Party"
760
  msgid "Third"
761
  msgstr "Terceros"
762
 
763
- #: app/features/events.php:967 app/features/fes/form.php:520
764
  msgid "Fourth"
765
  msgstr ""
766
 
767
- #: app/features/events.php:1009 app/features/fes/form.php:562
768
  #, fuzzy
769
  #| msgid "Last Year"
770
  msgid "Last"
771
  msgstr "Año pasado"
772
 
773
- #: app/features/events.php:1056 app/features/fes/form.php:608
774
  msgid "Ends Repeat"
775
  msgstr "Finaliza la repetición"
776
 
777
- #: app/features/events.php:1067 app/features/fes/form.php:612
778
  msgid "Never"
779
  msgstr "Nunca"
780
 
781
- #: app/features/events.php:1079 app/features/fes/form.php:617
782
  msgid "On"
783
  msgstr "On"
784
 
785
- #: app/features/events.php:1095 app/features/fes/form.php:624
786
  msgid "After"
787
  msgstr "Después"
788
 
789
- #: app/features/events.php:1099 app/features/events.php:1103
790
  #: app/features/fes/form.php:626 app/features/fes/form.php:629
791
  msgid "Occurrences times"
792
  msgstr "Ocurrencias del evento"
793
 
794
- #: app/features/events.php:1104 app/features/fes/form.php:630
795
  msgid ""
796
  "The event will finish after certain repeats. For example if you set it to "
797
  "10, the event will finish after 10 repeats."
@@ -799,72 +790,87 @@ msgstr ""
799
  "El evento finalizará después de ciertas repeticiones. Por ejemplo, si "
800
  "estableces en 10, el evento terminará después de 10 repeticiones."
801
 
802
- #: app/features/events.php:1136 app/features/events.php:1146
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
803
  msgid "Exclude certain days"
804
  msgstr "Excluir ciertos días"
805
 
806
- #: app/features/events.php:1141 app/features/events.php:2349
807
- #: app/features/mec/booking.php:450 app/features/profile/profile.php:31
808
  #: app/libraries/main.php:2030 app/libraries/main.php:2640
809
  #: app/modules/booking/steps/tickets.php:22
810
- #: app/modules/next-event/details.php:90 app/skins/single.php:609
811
  #: app/skins/single/default.php:68 app/skins/single/default.php:280
812
  #: app/skins/single/m1.php:16 app/skins/single/modern.php:166
813
  msgid "Date"
814
  msgstr "Fecha"
815
 
816
- #: app/features/events.php:1147
817
  msgid ""
818
  "Exclude certain days from event occurrence dates. Please note that you can "
819
  "exclude only single day occurrences and you cannot exclude one day from "
820
  "multiple day occurrences."
821
  msgstr ""
822
 
823
- #: app/features/events.php:1201 app/libraries/render.php:455
824
  msgid "Day 1"
825
  msgstr ""
826
 
827
- #: app/features/events.php:1223 app/features/mec/settings.php:627
828
- #: app/skins/single.php:899
829
  msgid "Hourly Schedule"
830
  msgstr "Programación horaria"
831
 
832
- #: app/features/events.php:1227
833
  msgid "Add Day"
834
  msgstr ""
835
 
836
- #: app/features/events.php:1228
837
  msgid ""
838
  "Add new days for schedule. For example if your event is multiple days, you "
839
  "can add a different schedule for each day!"
840
  msgstr ""
841
 
842
- #: app/features/events.php:1235
843
  #, php-format
844
  msgid "Day %s"
845
  msgstr ""
846
 
847
- #: app/features/events.php:1239 app/features/events.php:1278
848
- #: app/features/events.php:1313 app/features/events.php:1345
849
- #: app/features/events.php:1374 app/features/events.php:2130
850
- #: app/features/events.php:2177 app/features/events.php:3071
851
- #: app/features/events.php:3265 app/features/events.php:3307
852
  #: app/features/fes/form.php:225 app/features/ix.php:2743
853
- #: app/features/ix.php:2784 app/features/mec/booking.php:334
854
- #: app/features/mec/booking.php:366 app/features/mec/styling.php:111
855
  msgid "Title"
856
  msgstr "Titulo"
857
 
858
- #: app/features/events.php:1248 app/features/events.php:1285
859
- #: app/features/events.php:1318 app/features/events.php:1353
860
- #: app/features/events.php:1379 app/features/events.php:1723
861
- #: app/features/events.php:1761 app/features/events.php:1787
862
- #: app/features/events.php:1896 app/features/events.php:1923
863
- #: app/features/events.php:2022 app/features/events.php:2058
864
- #: app/features/events.php:2165 app/features/events.php:2207
865
- #: app/features/fes/list.php:78 app/features/mec/booking.php:277
866
- #: app/features/mec/booking.php:306 app/features/mec/booking.php:357
867
- #: app/features/mec/booking.php:389 app/libraries/main.php:2501
868
  #: app/libraries/main.php:2531 app/libraries/main.php:2560
869
  #: app/libraries/main.php:2590 app/libraries/main.php:2619
870
  #: app/libraries/main.php:2648 app/libraries/main.php:2677
@@ -875,57 +881,57 @@ msgstr "Titulo"
875
  msgid "Remove"
876
  msgstr "Eliminar"
877
 
878
- #: app/features/events.php:1255 app/features/events.php:1360
879
  msgid "Add new hourly schedule row"
880
  msgstr "Añadir nueva línea programa horario"
881
 
882
- #: app/features/events.php:1270 app/features/events.php:1307
883
- #: app/features/events.php:1369
884
  msgid "From e.g. 8:15"
885
  msgstr "Desde 8:15"
886
 
887
- #: app/features/events.php:1274 app/features/events.php:1310
888
- #: app/features/events.php:1371
889
  msgid "To e.g. 8:45"
890
  msgstr "a 8:45"
891
 
892
- #: app/features/events.php:1282 app/features/events.php:1316
893
- #: app/features/events.php:1377 app/features/events.php:1671
894
- #: app/features/events.php:1855
895
  msgid "Description"
896
  msgstr "Descripción"
897
 
898
- #: app/features/events.php:1288 app/features/events.php:1321
899
- #: app/features/events.php:1382 app/features/fes/form.php:838
900
- #: app/features/mec.php:343 app/features/mec/modules.php:49
901
- #: app/features/mec/settings.php:621 app/features/speakers.php:60
902
- #: app/libraries/main.php:559 app/libraries/main.php:4842
903
  #: app/modules/speakers/details.php:18
904
  msgid "Speakers"
905
  msgstr ""
906
 
907
- #: app/features/events.php:1341 app/features/events.php:1349
908
  #, fuzzy
909
  #| msgid "Week Days"
910
  msgid "New Day"
911
  msgstr "Días de semana"
912
 
913
- #: app/features/events.php:1413 app/features/fes/form.php:683
914
- #: app/features/mec/settings.php:567
915
  msgid "Event Links"
916
  msgstr "Enlaces de eventos"
917
 
918
- #: app/features/events.php:1416 app/features/events.php:1422
919
- #: app/features/fes/form.php:685 app/libraries/main.php:4865
920
  msgid "Event Link"
921
  msgstr "Enlace del evento"
922
 
923
- #: app/features/events.php:1419 app/features/events.php:1435
924
  #: app/features/fes/form.php:686 app/features/fes/form.php:691
925
  msgid "eg. http://yoursite.com/your-event"
926
  msgstr "ej. http://yoursite.com/your-event"
927
 
928
- #: app/features/events.php:1423
929
  #, fuzzy
930
  #| msgid ""
931
  #| "If you fill it, it will be replaced instead of default event page link. "
@@ -938,32 +944,32 @@ msgstr ""
938
  "Si lo rellenas, se reemplazará en vez del enlace de la página del evento por "
939
  "defecto. Inserta todo el enlace incluyendo http(s)://"
940
 
941
- #: app/features/events.php:1425
942
  msgid "URL Shortener"
943
  msgstr ""
944
 
945
- #: app/features/events.php:1432 app/features/events.php:1445
946
- #: app/features/fes/form.php:690 app/libraries/main.php:4866
947
- #: app/skins/single.php:628 app/skins/single/default.php:118
948
  #: app/skins/single/default.php:330 app/skins/single/m1.php:191
949
  #: app/skins/single/m2.php:124 app/skins/single/modern.php:132
950
  #: app/widgets/single.php:107
951
  msgid "More Info"
952
  msgstr "Más Información"
953
 
954
- #: app/features/events.php:1438 app/features/fes/form.php:692
955
  msgid "More Information"
956
  msgstr "Más Información"
957
 
958
- #: app/features/events.php:1440 app/features/fes/form.php:694
959
  msgid "Current Window"
960
  msgstr "Ventana actual"
961
 
962
- #: app/features/events.php:1441 app/features/fes/form.php:695
963
  msgid "New Window"
964
  msgstr "Nueva ventana"
965
 
966
- #: app/features/events.php:1446 app/features/fes/form.php:697
967
  msgid ""
968
  "If you fill it, it will be shown in event details page as an optional link. "
969
  "Insert full link including http(s)://"
@@ -971,52 +977,52 @@ msgstr ""
971
  "Si lo rellenas, se mostrará en la página de detalles del evento como enlace "
972
  "opcional. Inserta todo el enlace incluyendo http(s)://"
973
 
974
- #: app/features/events.php:1488 app/features/events.php:1503
975
  msgid "Total booking limits"
976
  msgstr "Límite total de reservas"
977
 
978
- #: app/features/events.php:1500 app/features/events.php:1720
979
- #: app/features/events.php:1893 app/modules/booking/default.php:85
980
  #: app/modules/booking/steps/tickets.php:40
981
  #: app/skins/available_spot/tpl.php:145
982
  msgid "Unlimited"
983
  msgstr "Ilimitado"
984
 
985
- #: app/features/events.php:1506
986
  msgid ""
987
  "If you want to set a limit to all tickets, uncheck this checkbox and put a "
988
  "limitation number."
989
  msgstr ""
990
 
991
- #: app/features/events.php:1508
992
  msgid "Read About A Booking System"
993
  msgstr ""
994
 
995
- #: app/features/events.php:1516
996
  msgid "100"
997
  msgstr "100"
998
 
999
- #: app/features/events.php:1521
1000
  #, fuzzy
1001
  #| msgid "Total booking limits"
1002
  msgid "Total user booking limits"
1003
  msgstr "Límite total de reservas"
1004
 
1005
- #: app/features/events.php:1533 app/features/events.php:1971
1006
- #: app/features/events.php:2103 app/features/events.php:2291
1007
  msgid "Inherit from global options"
1008
  msgstr "Heredar opciones globales"
1009
 
1010
- #: app/features/events.php:1536
1011
  msgid "12"
1012
  msgstr ""
1013
 
1014
- #: app/features/events.php:1557 app/libraries/book.php:60
1015
- #: app/libraries/main.php:4870 app/modules/booking/steps/tickets.php:40
1016
  msgid "Tickets"
1017
  msgstr "Tickets"
1018
 
1019
- #: app/features/events.php:1560
1020
  msgid ""
1021
  "You're translating an event so MEC will use the original event for tickets "
1022
  "and booking. You can only translate the ticket name and description. Please "
@@ -1027,57 +1033,57 @@ msgstr ""
1027
  "entrada. Por favor define las entradas exactas que podrías definir en un "
1028
  "evento original aquí."
1029
 
1030
- #: app/features/events.php:1579 app/features/events.php:1801
1031
  msgid "Ticket Name"
1032
  msgstr "Nombre del ticket"
1033
 
1034
- #: app/features/events.php:1584 app/features/events.php:1805
1035
- #: app/features/events.php:3265 app/features/events.php:3307
1036
  #: app/features/ix.php:2743 app/features/ix.php:2784
1037
  msgid "Start Time"
1038
  msgstr "Hora de Inicio"
1039
 
1040
- #: app/features/events.php:1626 app/features/events.php:1829
1041
- #: app/features/events.php:3265 app/features/events.php:3307
1042
  #: app/features/ix.php:2743 app/features/ix.php:2784
1043
  msgid "End Time"
1044
  msgstr "Hora de finalización"
1045
 
1046
- #: app/features/events.php:1677 app/features/events.php:1681
1047
- #: app/features/events.php:1755 app/features/events.php:1782
1048
- #: app/features/events.php:1860 app/features/events.php:1863
1049
- #: app/features/events.php:1919 app/features/events.php:2136
1050
- #: app/features/events.php:2140 app/features/events.php:2182
1051
- #: app/features/events.php:2185 app/features/mec/booking.php:338
1052
- #: app/features/mec/booking.php:341 app/features/mec/booking.php:370
1053
- #: app/features/mec/booking.php:373
1054
  msgid "Price"
1055
  msgstr "Precio"
1056
 
1057
- #: app/features/events.php:1682 app/features/events.php:1864
1058
  msgid "Insert 0 for free ticket. Only numbers please."
1059
  msgstr "Introduce un 0 para una entrada gratuita. Utiliza únicamente números."
1060
 
1061
- #: app/features/events.php:1691 app/features/events.php:1696
1062
- #: app/features/events.php:1873 app/features/events.php:1876
1063
  msgid "Price Label"
1064
  msgstr "Etiqueta de precio"
1065
 
1066
- #: app/features/events.php:1697 app/features/events.php:1877
1067
  msgid "For showing on website. e.g. $15"
1068
  msgstr "Para mostrar en la web. Ej. 15€"
1069
 
1070
- #: app/features/events.php:1707 app/features/events.php:1887
1071
  msgid "Available Tickets"
1072
  msgstr "Tickets disponibles"
1073
 
1074
- #: app/features/events.php:1728 app/features/events.php:1900
1075
  msgid "Price per Date"
1076
  msgstr ""
1077
 
1078
- #: app/features/events.php:1759 app/features/events.php:1785
1079
- #: app/features/events.php:1921 app/features/labels.php:60
1080
- #: app/features/mec/meta_boxes/display_options.php:829
1081
  #: app/features/mec/meta_boxes/search_form.php:66
1082
  #: app/features/mec/meta_boxes/search_form.php:128
1083
  #: app/features/mec/meta_boxes/search_form.php:190
@@ -1088,29 +1094,29 @@ msgstr ""
1088
  #: app/features/mec/meta_boxes/search_form.php:488
1089
  #: app/features/mec/meta_boxes/search_form.php:549
1090
  #: app/features/mec/meta_boxes/search_form.php:610
1091
- #: app/features/mec/settings.php:748 app/features/mec/single.php:219
1092
  #: app/libraries/skins.php:938
1093
  msgid "Label"
1094
  msgstr "Etiqueta"
1095
 
1096
- #: app/features/events.php:1959
1097
  msgid "Fees"
1098
  msgstr "Tasas"
1099
 
1100
- #: app/features/events.php:1996 app/features/events.php:2034
1101
- #: app/features/mec/booking.php:257 app/features/mec/booking.php:286
1102
  msgid "Fee Title"
1103
  msgstr "Título de la cuota"
1104
 
1105
- #: app/features/events.php:2002 app/features/events.php:2006
1106
- #: app/features/events.php:2039 app/features/events.php:2042
1107
- #: app/features/mec/booking.php:261 app/features/mec/booking.php:264
1108
- #: app/features/mec/booking.php:290 app/features/mec/booking.php:293
1109
  msgid "Amount"
1110
  msgstr "Cantidad"
1111
 
1112
- #: app/features/events.php:2007 app/features/events.php:2043
1113
- #: app/features/mec/booking.php:265 app/features/mec/booking.php:294
1114
  msgid ""
1115
  "Fee amount, considered as fixed amount if you set the type to amount "
1116
  "otherwise considered as percentage"
@@ -1118,89 +1124,89 @@ msgstr ""
1118
  "Cantidad de cuota, considerada como cantidad fija si estableces el tipo de "
1119
  "cantidad, si no será considerada como porcentaje"
1120
 
1121
- #: app/features/events.php:2016 app/features/events.php:2052
1122
- #: app/features/mec/booking.php:272 app/features/mec/booking.php:301
1123
  msgid "Percent"
1124
  msgstr "Porcentaje"
1125
 
1126
- #: app/features/events.php:2017 app/features/events.php:2053
1127
- #: app/features/mec/booking.php:273 app/features/mec/booking.php:302
1128
  msgid "Amount (Per Ticket)"
1129
  msgstr "Cantidad (Por ticket)"
1130
 
1131
- #: app/features/events.php:2018 app/features/events.php:2054
1132
- #: app/features/mec/booking.php:274 app/features/mec/booking.php:303
1133
  msgid "Amount (Per Booking)"
1134
  msgstr "Cantidad (por reservas)"
1135
 
1136
- #: app/features/events.php:2091 app/features/mec/settings.php:645
1137
  msgid "Ticket Variations / Options"
1138
  msgstr ""
1139
 
1140
- #: app/features/events.php:2141 app/features/events.php:2186
1141
- #: app/features/mec/booking.php:342 app/features/mec/booking.php:374
1142
  msgid "Option Price"
1143
  msgstr ""
1144
 
1145
- #: app/features/events.php:2151 app/features/events.php:2155
1146
- #: app/features/events.php:2195 app/features/events.php:2198
1147
- #: app/features/mec/booking.php:348 app/features/mec/booking.php:351
1148
- #: app/features/mec/booking.php:380 app/features/mec/booking.php:383
1149
  msgid "Maximum Per Ticket"
1150
  msgstr ""
1151
 
1152
- #: app/features/events.php:2156 app/features/events.php:2199
1153
- #: app/features/mec/booking.php:352 app/features/mec/booking.php:384
1154
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
1155
  msgstr ""
1156
 
1157
- #: app/features/events.php:2345 app/features/mec/booking.php:446
1158
  #: app/libraries/main.php:2523
1159
  #, fuzzy
1160
  #| msgid "Name"
1161
  msgid "MEC Name"
1162
  msgstr "Nombre"
1163
 
1164
- #: app/features/events.php:2346 app/features/mec/booking.php:447
1165
  #: app/libraries/main.php:2552
1166
  #, fuzzy
1167
  #| msgid "Email"
1168
  msgid "MEC Email"
1169
  msgstr "Correo electrónico"
1170
 
1171
- #: app/features/events.php:2347 app/features/mec/booking.php:448
1172
  #: app/libraries/main.php:2493
1173
  msgid "Text"
1174
  msgstr "Texto"
1175
 
1176
- #: app/features/events.php:2350 app/features/mec/booking.php:451
1177
  #: app/features/organizers.php:103 app/features/organizers.php:148
1178
  #: app/features/speakers.php:116 app/features/speakers.php:180
1179
  #: app/features/speakers.php:249 app/libraries/main.php:2669
1180
  msgid "Tel"
1181
  msgstr "Tel"
1182
 
1183
- #: app/features/events.php:2351 app/features/mec/booking.php:452
1184
  #: app/libraries/main.php:2611
1185
  msgid "File"
1186
  msgstr ""
1187
 
1188
- #: app/features/events.php:2352 app/features/mec/booking.php:453
1189
  #: app/libraries/main.php:2698
1190
  msgid "Textarea"
1191
  msgstr "Área de texto"
1192
 
1193
- #: app/features/events.php:2353 app/features/mec/booking.php:454
1194
  #: app/libraries/main.php:2751
1195
  msgid "Checkboxes"
1196
  msgstr "Checkboxes"
1197
 
1198
- #: app/features/events.php:2354 app/features/mec/booking.php:455
1199
  #: app/libraries/main.php:2795
1200
  msgid "Radio Buttons"
1201
  msgstr "Botón tipo radio"
1202
 
1203
- #: app/features/events.php:2355 app/features/mec/booking.php:456
1204
  #: app/features/mec/meta_boxes/search_form.php:34
1205
  #: app/features/mec/meta_boxes/search_form.php:41
1206
  #: app/features/mec/meta_boxes/search_form.php:48
@@ -1273,40 +1279,40 @@ msgstr "Botón tipo radio"
1273
  msgid "Dropdown"
1274
  msgstr "Desplegable"
1275
 
1276
- #: app/features/events.php:2356 app/features/mec/booking.php:457
1277
  #: app/libraries/main.php:2886
1278
  msgid "Agreement"
1279
  msgstr "Acuerdo"
1280
 
1281
- #: app/features/events.php:2357 app/features/mec/booking.php:458
1282
  #: app/libraries/main.php:2727
1283
  msgid "Paragraph"
1284
  msgstr "Párrafo"
1285
 
1286
- #: app/features/events.php:2992 app/features/events.php:3009
1287
- #: app/features/events.php:3026 app/features/events.php:3043
1288
  #, php-format
1289
  msgid "Show all %s"
1290
  msgstr "Mostrar todos %s"
1291
 
1292
- #: app/features/events.php:2992
1293
  msgid "labels"
1294
  msgstr "etiquetas"
1295
 
1296
- #: app/features/events.php:3009
1297
  msgid "locations"
1298
  msgstr "ubicaciones"
1299
 
1300
- #: app/features/events.php:3026
1301
  msgid "organizers"
1302
  msgstr "organizadores"
1303
 
1304
- #: app/features/events.php:3073 app/features/events.php:3265
1305
- #: app/features/events.php:3307 app/features/ix.php:2743
1306
  #: app/features/ix.php:2784 app/features/locations.php:58
1307
  #: app/features/locations.php:230 app/features/locations.php:287
1308
  #: app/features/locations.php:289 app/features/locations.php:298
1309
- #: app/features/mec/meta_boxes/display_options.php:830
1310
  #: app/features/mec/meta_boxes/search_form.php:38
1311
  #: app/features/mec/meta_boxes/search_form.php:100
1312
  #: app/features/mec/meta_boxes/search_form.php:162
@@ -1317,18 +1323,18 @@ msgstr "organizadores"
1317
  #: app/features/mec/meta_boxes/search_form.php:460
1318
  #: app/features/mec/meta_boxes/search_form.php:521
1319
  #: app/features/mec/meta_boxes/search_form.php:582
1320
- #: app/features/mec/settings.php:722 app/features/mec/single.php:209
1321
- #: app/libraries/main.php:2024 app/libraries/main.php:4839
1322
- #: app/libraries/skins.php:834 app/skins/single.php:458
1323
- #: app/skins/single.php:876 app/skins/single/default.php:154
1324
  #: app/skins/single/default.php:366 app/skins/single/m1.php:155
1325
  #: app/skins/single/m2.php:87 app/skins/single/modern.php:94
1326
  msgid "Location"
1327
  msgstr "Localización"
1328
 
1329
- #: app/features/events.php:3074 app/features/events.php:3265
1330
- #: app/features/events.php:3307 app/features/ix.php:2743
1331
- #: app/features/ix.php:2784 app/features/mec/meta_boxes/display_options.php:831
1332
  #: app/features/mec/meta_boxes/search_form.php:45
1333
  #: app/features/mec/meta_boxes/search_form.php:107
1334
  #: app/features/mec/meta_boxes/search_form.php:169
@@ -1339,68 +1345,68 @@ msgstr "Localización"
1339
  #: app/features/mec/meta_boxes/search_form.php:467
1340
  #: app/features/mec/meta_boxes/search_form.php:528
1341
  #: app/features/mec/meta_boxes/search_form.php:589
1342
- #: app/features/mec/settings.php:728 app/features/mec/single.php:205
1343
  #: app/features/organizers.php:58 app/features/organizers.php:204
1344
  #: app/features/organizers.php:260 app/features/organizers.php:262
1345
- #: app/features/organizers.php:271 app/libraries/main.php:4841
1346
- #: app/libraries/skins.php:860 app/skins/single.php:764
1347
  #: app/skins/single/default.php:195 app/skins/single/default.php:407
1348
  #: app/skins/single/m1.php:90 app/skins/single/m2.php:22
1349
  #: app/skins/single/modern.php:31
1350
  msgid "Organizer"
1351
  msgstr "Organizador"
1352
 
1353
- #: app/features/events.php:3078
1354
  msgid "Repeat"
1355
  msgstr "Repetir"
1356
 
1357
- #: app/features/events.php:3079
1358
  msgid "Author"
1359
  msgstr "Autor"
1360
 
1361
- #: app/features/events.php:3200 app/features/events.php:3201
1362
  msgid "iCal Export"
1363
  msgstr "Exportar iCal"
1364
 
1365
- #: app/features/events.php:3203 app/features/events.php:3204
1366
  msgid "CSV Export"
1367
  msgstr "Exportar CSV"
1368
 
1369
- #: app/features/events.php:3206 app/features/events.php:3207
1370
  msgid "MS Excel Export"
1371
  msgstr "Exportar Excel"
1372
 
1373
- #: app/features/events.php:3209 app/features/events.php:3210
1374
  msgid "XML Export"
1375
  msgstr "Exportación XML"
1376
 
1377
- #: app/features/events.php:3212 app/features/events.php:3213
1378
  msgid "JSON Export"
1379
  msgstr "Exportación JSON"
1380
 
1381
- #: app/features/events.php:3215 app/features/events.php:3216
1382
- #: app/features/events.php:3397
1383
  msgid "Duplicate"
1384
  msgstr "Duplicar"
1385
 
1386
- #: app/features/events.php:3265 app/features/events.php:3307
1387
  #: app/features/ix.php:2743 app/features/ix.php:2784
1388
  #: app/features/labels.php:177 app/features/locations.php:229
1389
  #: app/features/organizers.php:203 app/features/speakers.php:246
1390
  msgid "ID"
1391
  msgstr "ID"
1392
 
1393
- #: app/features/events.php:3265 app/features/events.php:3307
1394
  #: app/features/ix.php:2743 app/features/ix.php:2784
1395
  msgid "Link"
1396
  msgstr "Enlace"
1397
 
1398
- #: app/features/events.php:3265 app/features/events.php:3307
1399
  #, php-format
1400
  msgid "%s Tel"
1401
  msgstr "%s Teléfono "
1402
 
1403
- #: app/features/events.php:3265 app/features/events.php:3307
1404
  #, php-format
1405
  msgid "%s Email"
1406
  msgstr "%s Correo electrónico"
@@ -1487,7 +1493,7 @@ msgstr ""
1487
  "Si lo rellenas, se reemplazará en vez del enlace de la página del evento por "
1488
  "defecto. Inserta todo el enlace incluyendo http(s)://"
1489
 
1490
- #: app/features/fes/form.php:723 app/features/mec/settings.php:579
1491
  msgid "Featured Image"
1492
  msgstr "Imagen destacada"
1493
 
@@ -1497,15 +1503,15 @@ msgstr "Eliminar imagen"
1497
 
1498
  #: app/features/fes/form.php:770 app/features/labels.php:61
1499
  #: app/features/labels.php:221 app/features/mec.php:336
1500
- #: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4836
1501
- #: app/skins/single.php:657 app/skins/single/default.php:133
1502
  #: app/skins/single/default.php:345 app/skins/single/m1.php:64
1503
  #: app/skins/single/modern.php:214
1504
  msgid "Labels"
1505
  msgstr "Etiquetas"
1506
 
1507
  #: app/features/fes/form.php:816 app/features/mec.php:334
1508
- #: app/features/mec/meta_boxes/filter.php:138
1509
  msgid "Tags"
1510
  msgstr "Tags"
1511
 
@@ -1714,7 +1720,7 @@ msgid ""
1714
  "This will export all of your website events' data into your desired format."
1715
  msgstr "Esto exportará todos los eventos de tu sitio al formato deseado."
1716
 
1717
- #: app/features/ix/export.php:25 app/features/mec/modules.php:175
1718
  msgid "iCal"
1719
  msgstr "iCal"
1720
 
@@ -1823,9 +1829,9 @@ msgstr "Toggle"
1823
  msgid "Add to Google Calendar"
1824
  msgstr "Añadir a Google Calendar"
1825
 
1826
- #: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:588
1827
- #: app/features/mec/modules.php:389 app/features/mec/notifications.php:541
1828
- #: app/features/mec/settings.php:889 app/features/mec/single.php:266
1829
  msgid "Checking ..."
1830
  msgstr "Verificando…"
1831
 
@@ -1872,31 +1878,31 @@ msgstr ""
1872
  msgid "ICS Feed"
1873
  msgstr "ICS Feed"
1874
 
1875
- #: app/features/ix/import.php:46 app/features/mec/booking.php:88
1876
- #: app/features/mec/booking.php:223 app/features/mec/booking.php:241
1877
- #: app/features/mec/booking.php:318
1878
- #: app/features/mec/meta_boxes/display_options.php:146
1879
- #: app/features/mec/meta_boxes/display_options.php:311
1880
- #: app/features/mec/modules.php:67 app/features/mec/modules.php:208
1881
- #: app/features/mec/modules.php:225
1882
  #, php-format
1883
  msgid "%s is required to use this feature."
1884
  msgstr "Se requiere %s para usar esta funcionalidad."
1885
 
1886
  #: app/features/ix/import.php:46 app/features/ix/sync.php:22
1887
- #: app/features/mec/booking.php:88 app/features/mec/booking.php:223
1888
- #: app/features/mec/booking.php:241 app/features/mec/booking.php:318
1889
- #: app/features/mec/meta_boxes/display_options.php:146
1890
- #: app/features/mec/meta_boxes/display_options.php:311
1891
- #: app/features/mec/meta_boxes/display_options.php:326
1892
- #: app/features/mec/meta_boxes/display_options.php:453
1893
- #: app/features/mec/meta_boxes/display_options.php:504
1894
- #: app/features/mec/meta_boxes/display_options.php:611
1895
- #: app/features/mec/meta_boxes/display_options.php:718
1896
- #: app/features/mec/meta_boxes/display_options.php:791
1897
- #: app/features/mec/meta_boxes/display_options.php:991
1898
- #: app/features/mec/modules.php:67 app/features/mec/modules.php:208
1899
- #: app/features/mec/modules.php:225
1900
  msgid "Pro version of Modern Events Calendar"
1901
  msgstr "Versión Pro de Modern Events Calendar"
1902
 
@@ -2060,7 +2066,7 @@ msgid "Auto Synchronization"
2060
  msgstr "Autosincronización"
2061
 
2062
  #: app/features/ix/sync.php:22
2063
- #: app/features/mec/meta_boxes/display_options.php:791
2064
  #, php-format
2065
  msgid "%s is required to use synchronization feature."
2066
  msgstr "Se requiere %s para usar la funcionalidad de sincronización."
@@ -2220,16 +2226,16 @@ msgid "Select label color"
2220
  msgstr "Elige un color de etiqueta"
2221
 
2222
  #: app/features/labels.php:112 app/features/labels.php:139
2223
- #: app/features/mec/meta_boxes/display_options.php:34
2224
- #: app/features/mec/meta_boxes/display_options.php:173
2225
- #: app/features/mec/meta_boxes/display_options.php:331
2226
- #: app/features/mec/meta_boxes/display_options.php:509
2227
- #: app/features/mec/meta_boxes/display_options.php:559
2228
- #: app/features/mec/meta_boxes/display_options.php:723
2229
- #: app/features/mec/meta_boxes/display_options.php:873
2230
- #: app/features/mec/meta_boxes/display_options.php:930
2231
- #: app/features/mec/meta_boxes/display_options.php:1022
2232
- #: app/features/mec/meta_boxes/display_options.php:1108
2233
  msgid "Style"
2234
  msgstr "Estilo"
2235
 
@@ -2251,7 +2257,7 @@ msgid "Featured"
2251
  msgstr ""
2252
 
2253
  #: app/features/labels.php:118 app/features/labels.php:143
2254
- #: app/libraries/main.php:5082 app/skins/agenda/render.php:41
2255
  #: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:45
2256
  #: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
2257
  #: app/skins/daily_view/render.php:52 app/skins/grid/render.php:53
@@ -2285,8 +2291,8 @@ msgid "Event %s"
2285
  msgstr "Evento %s"
2286
 
2287
  #: app/features/locations.php:59 app/features/mec.php:337
2288
- #: app/features/mec/dashboard.php:243 app/features/mec/meta_boxes/filter.php:87
2289
- #: app/libraries/main.php:4838
2290
  msgid "Locations"
2291
  msgstr "Lugar"
2292
 
@@ -2357,7 +2363,7 @@ msgstr "Nombre del lugar"
2357
  msgid "eg. City Hall"
2358
  msgstr "ej. Almería"
2359
 
2360
- #: app/features/locations.php:310 app/features/mec/settings.php:609
2361
  #: app/widgets/single.php:115
2362
  msgid "Event Location"
2363
  msgstr "Lugar del evento"
@@ -2393,7 +2399,7 @@ msgstr "Elegir imagen"
2393
  msgid "Don't show map in single event page"
2394
  msgstr "No mostrar el mapa en la página del detalle del evento"
2395
 
2396
- #: app/features/locations.php:356 app/libraries/main.php:4872
2397
  #, fuzzy
2398
  #| msgid "Locations"
2399
  msgid "Other Locations"
@@ -2453,8 +2459,8 @@ msgid "Support"
2453
  msgstr "Soporte"
2454
 
2455
  #: app/features/mec.php:338 app/features/mec/dashboard.php:250
2456
- #: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
2457
- #: app/libraries/main.php:4840
2458
  msgid "Organizers"
2459
  msgstr "Organizadores"
2460
 
@@ -2559,24 +2565,32 @@ msgid ""
2559
  "your host provider in this regard."
2560
  msgstr ""
2561
 
2562
- #: app/features/mec/booking.php:69 app/features/mec/booking.php:464
2563
- #: app/features/mec/booking.php:544 app/features/mec/booking.php:553
2564
- #: app/features/mec/booking.php:563 app/features/mec/booking.php:605
2565
- #: app/features/mec/booking.php:619 app/features/mec/messages.php:11
2566
- #: app/features/mec/messages.php:45 app/features/mec/messages.php:54
2567
- #: app/features/mec/messages.php:88 app/features/mec/messages.php:97
2568
- #: app/features/mec/modules.php:22 app/features/mec/modules.php:354
2569
- #: app/features/mec/modules.php:364 app/features/mec/modules.php:406
2570
- #: app/features/mec/modules.php:420 app/features/mec/notifications.php:10
 
 
 
 
 
 
 
 
2571
  #: app/features/mec/notifications.php:450
2572
  #: app/features/mec/notifications.php:462
2573
  #: app/features/mec/notifications.php:558
2574
- #: app/features/mec/notifications.php:572 app/features/mec/settings.php:31
2575
- #: app/features/mec/settings.php:838 app/features/mec/settings.php:848
2576
- #: app/features/mec/settings.php:906 app/features/mec/settings.php:920
2577
- #: app/features/mec/single.php:14 app/features/mec/single.php:231
2578
- #: app/features/mec/single.php:241 app/features/mec/single.php:283
2579
- #: app/features/mec/single.php:297 app/features/mec/styles.php:11
2580
  #: app/features/mec/styles.php:31 app/features/mec/styles.php:40
2581
  #: app/features/mec/styles.php:77 app/features/mec/styles.php:86
2582
  #: app/features/mec/styling.php:33 app/features/mec/styling.php:238
@@ -2585,66 +2599,66 @@ msgstr ""
2585
  msgid "Save Changes"
2586
  msgstr "Guardar Cambios"
2587
 
2588
- #: app/features/mec/booking.php:93
2589
  msgid "Enable booking module"
2590
  msgstr "Activar módulo de reservas"
2591
 
2592
- #: app/features/mec/booking.php:94
2593
  msgid ""
2594
  "After enabling and saving the settings, reloading the page will add 'payment "
2595
  "Gateways' to the settings and a new menu item on the Dashboard"
2596
  msgstr ""
2597
 
2598
- #: app/features/mec/booking.php:99 app/features/mec/booking.php:104
2599
- #: app/features/mec/modules.php:303 app/features/mec/modules.php:308
2600
  msgid "Date Format"
2601
  msgstr "Formato de fecha"
2602
 
2603
- #: app/features/mec/booking.php:105
2604
  msgid "Default is Y-m-d"
2605
  msgstr "El valor predeterminado es Y-m-d"
2606
 
2607
- #: app/features/mec/booking.php:112
2608
- #: app/features/mec/meta_boxes/display_options.php:117
2609
- #: app/features/mec/meta_boxes/display_options.php:292
2610
- #: app/features/mec/meta_boxes/display_options.php:362
2611
- #: app/features/mec/meta_boxes/display_options.php:821
2612
- #: app/features/mec/meta_boxes/display_options.php:1088
2613
- #: app/features/mec/meta_boxes/display_options.php:1196
2614
  msgid "Limit"
2615
  msgstr "Límite"
2616
 
2617
- #: app/features/mec/booking.php:114
2618
  #, fuzzy
2619
  #| msgid "Default is 6"
2620
  msgid "Default is empty"
2621
  msgstr "El valor predeterminado es 6"
2622
 
2623
- #: app/features/mec/booking.php:117
2624
  #, fuzzy
2625
  #| msgid "Booking Form"
2626
  msgid "Booking Limit"
2627
  msgstr "Formulario de Reservas"
2628
 
2629
- #: app/features/mec/booking.php:118
2630
  msgid ""
2631
  "Total tickets that a user can book. It is useful if you're providing free "
2632
  "tickets. Leave it empty for unlimited booking."
2633
  msgstr ""
2634
 
2635
- #: app/features/mec/booking.php:125
2636
  msgid "Maximum Dates"
2637
  msgstr "Fechas máximas"
2638
 
2639
- #: app/features/mec/booking.php:127
2640
  msgid "Default is 6"
2641
  msgstr "El valor predeterminado es 6"
2642
 
2643
- #: app/features/mec/booking.php:131 app/features/mec/booking.php:141
2644
  msgid "Thank You Page"
2645
  msgstr "Página de agradecimiento"
2646
 
2647
- #: app/features/mec/booking.php:142
2648
  msgid ""
2649
  "User redirects to this page after booking. Leave it empty if you want to "
2650
  "disable it."
@@ -2652,15 +2666,15 @@ msgstr ""
2652
  "Se redirecciona al usuario a esta pagina una vez que completa la reserva. "
2653
  "Déjalo vacío si lo deseas desactivado."
2654
 
2655
- #: app/features/mec/booking.php:153
2656
  msgid "Enable Express Attendees Form"
2657
  msgstr "Habilitar formulario de asistentes exprés"
2658
 
2659
- #: app/features/mec/booking.php:157 app/modules/booking/steps/form.php:52
2660
  msgid "Attendees Form"
2661
  msgstr "Asistentes"
2662
 
2663
- #: app/features/mec/booking.php:158
2664
  msgid ""
2665
  "Users are able to apply first attendee information for other attendees in "
2666
  "the booking form."
@@ -2668,113 +2682,119 @@ msgstr ""
2668
  "Los usuarios son capaces de copiar la información del primer invitado para "
2669
  "los demás invitados en el formulario de reservas."
2670
 
2671
- #: app/features/mec/booking.php:171
2672
  #, fuzzy
2673
  #| msgid "Download Invoice"
2674
  msgid "Enable Invoice"
2675
  msgstr "Descargar factura"
2676
 
2677
- #: app/features/mec/booking.php:175
 
 
 
 
 
 
2678
  msgid "Email verification"
2679
  msgstr "Verificación por email"
2680
 
2681
- #: app/features/mec/booking.php:181
2682
  msgid "Auto verification for free bookings"
2683
  msgstr "Auto verificación para reservas gratuitas"
2684
 
2685
- #: app/features/mec/booking.php:190
2686
  msgid "Auto verification for paid bookings"
2687
  msgstr "Auto verificación para reservas de pago"
2688
 
2689
- #: app/features/mec/booking.php:194 app/features/mec/notifications.php:147
2690
  #: app/libraries/main.php:573
2691
  msgid "Booking Confirmation"
2692
  msgstr "Confirmación de reserva"
2693
 
2694
- #: app/features/mec/booking.php:200
2695
  msgid "Auto confirmation for free bookings"
2696
  msgstr "Confirmación automática para reservas gratuitas"
2697
 
2698
- #: app/features/mec/booking.php:209
2699
  msgid "Auto confirmation for paid bookings"
2700
  msgstr "Confirmación automática para reservas pagas"
2701
 
2702
- #: app/features/mec/booking.php:228
2703
  msgid "Enable coupons module"
2704
  msgstr "Activar módulo de cupones"
2705
 
2706
- #: app/features/mec/booking.php:230
2707
  msgid ""
2708
  "After enabling and saving the settings,, you should reload the page to see a "
2709
  "new menu on the Dashboard > Booking"
2710
  msgstr ""
2711
 
2712
- #: app/features/mec/booking.php:238 app/libraries/main.php:552
2713
  msgid "Taxes / Fees"
2714
  msgstr "Impuestos/Tasas"
2715
 
2716
- #: app/features/mec/booking.php:246
2717
  msgid "Enable taxes / fees module"
2718
  msgstr "Activar módulo de Impuestos/Tasas"
2719
 
2720
- #: app/features/mec/booking.php:251
2721
  msgid "Add Fee"
2722
  msgstr "Nueva tasa"
2723
 
2724
- #: app/features/mec/booking.php:315 app/libraries/main.php:553
2725
  msgid "Ticket Variations & Options"
2726
  msgstr ""
2727
 
2728
- #: app/features/mec/booking.php:323
2729
  msgid "Enable ticket options module"
2730
  msgstr ""
2731
 
2732
- #: app/features/mec/booking.php:328
2733
  msgid "Add Variation / Option"
2734
  msgstr ""
2735
 
2736
- #: app/features/mec/booking.php:531
2737
  msgid "Enable Organizer Payment Module"
2738
  msgstr ""
2739
 
2740
- #: app/features/mec/booking.php:535
2741
  #, fuzzy
2742
  #| msgid "Organizer Tel"
2743
  msgid "Organizer Payment"
2744
  msgstr "Teléfono del Organizador"
2745
 
2746
- #: app/features/mec/booking.php:536
2747
  msgid ""
2748
  "By enabling this module, organizers are able to insert their own payment "
2749
  "credentials for enabled gateways per event and receive the payments directly!"
2750
  msgstr ""
2751
 
2752
- #: app/features/mec/booking.php:583 app/features/mec/messages.php:72
2753
- #: app/features/mec/modules.php:384 app/features/mec/notifications.php:536
2754
- #: app/features/mec/settings.php:884 app/features/mec/single.php:261
2755
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:292
2756
  msgid "Saved"
2757
  msgstr "Guardado"
2758
 
2759
- #: app/features/mec/booking.php:584 app/features/mec/messages.php:73
2760
- #: app/features/mec/modules.php:385 app/features/mec/notifications.php:537
2761
- #: app/features/mec/settings.php:885 app/features/mec/single.php:262
2762
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:293
2763
  msgid "Settings Saved!"
2764
  msgstr "¡Ajustes guardados!"
2765
 
2766
- #: app/features/mec/booking.php:586 app/features/mec/booking.php:608
2767
- #: app/features/mec/modules.php:387 app/features/mec/modules.php:409
2768
  #: app/features/mec/notifications.php:539
2769
- #: app/features/mec/notifications.php:561 app/features/mec/settings.php:887
2770
- #: app/features/mec/settings.php:909 app/features/mec/single.php:264
2771
- #: app/features/mec/single.php:286 app/libraries/main.php:5081
2772
  msgid "Verified"
2773
  msgstr "Verificado"
2774
 
2775
- #: app/features/mec/booking.php:610 app/features/mec/modules.php:411
2776
- #: app/features/mec/notifications.php:563 app/features/mec/settings.php:911
2777
- #: app/features/mec/single.php:288
2778
  msgid "Please Refresh Page"
2779
  msgstr "Por favor, actualiza la página"
2780
 
@@ -2877,7 +2897,7 @@ msgstr "Activación MEC"
2877
  msgid "You cannot access this section."
2878
  msgstr ""
2879
 
2880
- #: app/features/mec/dashboard.php:261 app/features/mec/settings.php:347
2881
  msgid "Upcoming Events"
2882
  msgstr "Próximos Eventos"
2883
 
@@ -2967,602 +2987,602 @@ msgstr ""
2967
  "Por cierto, si tu pagina web es multidioma, te recomendamos que cambies los "
2968
  "mensajes desde los archivos de idioma."
2969
 
2970
- #: app/features/mec/meta_boxes/display_options.php:18
2971
  msgid "Skin"
2972
  msgstr "Tema"
2973
 
2974
- #: app/features/mec/meta_boxes/display_options.php:36
2975
- #: app/features/mec/meta_boxes/display_options.php:175
2976
- #: app/features/mec/meta_boxes/display_options.php:561
2977
- #: app/features/mec/meta_boxes/display_options.php:875
2978
- #: app/features/mec/settings.php:211 app/features/mec/settings.php:235
2979
- #: app/features/mec/settings.php:244 app/features/mec/settings.php:285
2980
- #: app/features/mec/settings.php:309 app/features/mec/settings.php:318
2981
  msgid "Classic"
2982
  msgstr "Clásico"
2983
 
2984
- #: app/features/mec/meta_boxes/display_options.php:37
2985
- #: app/features/mec/meta_boxes/display_options.php:177
2986
- #: app/features/mec/settings.php:236 app/features/mec/settings.php:246
2987
- #: app/features/mec/settings.php:310 app/features/mec/settings.php:320
2988
  msgid "Minimal"
2989
  msgstr "Mínimo"
2990
 
2991
- #: app/features/mec/meta_boxes/display_options.php:38
2992
- #: app/features/mec/meta_boxes/display_options.php:178
2993
- #: app/features/mec/meta_boxes/display_options.php:511
2994
- #: app/features/mec/meta_boxes/display_options.php:563
2995
- #: app/features/mec/meta_boxes/display_options.php:725
2996
- #: app/features/mec/meta_boxes/display_options.php:877
2997
- #: app/features/mec/settings.php:213 app/features/mec/settings.php:226
2998
- #: app/features/mec/settings.php:237 app/features/mec/settings.php:247
2999
- #: app/features/mec/settings.php:287 app/features/mec/settings.php:300
3000
- #: app/features/mec/settings.php:311 app/features/mec/settings.php:321
3001
  msgid "Modern"
3002
  msgstr "Moderno"
3003
 
3004
- #: app/features/mec/meta_boxes/display_options.php:39
3005
- #: app/features/mec/settings.php:238 app/features/mec/settings.php:312
3006
  msgid "Standard"
3007
  msgstr "Estándar"
3008
 
3009
- #: app/features/mec/meta_boxes/display_options.php:40
3010
- #: app/features/mec/settings.php:239 app/features/mec/settings.php:313
3011
  msgid "Accordion"
3012
  msgstr "Acordeón"
3013
 
3014
- #: app/features/mec/meta_boxes/display_options.php:46
3015
- #: app/features/mec/meta_boxes/display_options.php:187
3016
- #: app/features/mec/meta_boxes/display_options.php:339
3017
- #: app/features/mec/meta_boxes/display_options.php:618
3018
- #: app/features/mec/meta_boxes/display_options.php:651
3019
- #: app/features/mec/meta_boxes/display_options.php:798
3020
- #: app/features/mec/meta_boxes/display_options.php:1033
3021
- #: app/features/mec/meta_boxes/display_options.php:1120
3022
- msgid "Today"
3023
- msgstr "Hoy"
3024
-
3025
- #: app/features/mec/meta_boxes/display_options.php:47
3026
- #: app/features/mec/meta_boxes/display_options.php:188
3027
- #: app/features/mec/meta_boxes/display_options.php:340
3028
- #: app/features/mec/meta_boxes/display_options.php:619
3029
- #: app/features/mec/meta_boxes/display_options.php:652
3030
- #: app/features/mec/meta_boxes/display_options.php:799
3031
- #: app/features/mec/meta_boxes/display_options.php:1034
3032
- #: app/features/mec/meta_boxes/display_options.php:1121
3033
- msgid "Tomorrow"
3034
- msgstr "Mañana"
3035
-
3036
- #: app/features/mec/meta_boxes/display_options.php:48
3037
- #: app/features/mec/meta_boxes/display_options.php:189
3038
- #: app/features/mec/meta_boxes/display_options.php:341
3039
- #: app/features/mec/meta_boxes/display_options.php:394
3040
- #: app/features/mec/meta_boxes/display_options.php:571
3041
- #: app/features/mec/meta_boxes/display_options.php:620
3042
- #: app/features/mec/meta_boxes/display_options.php:653
3043
- #: app/features/mec/meta_boxes/display_options.php:688
3044
- #: app/features/mec/meta_boxes/display_options.php:734
3045
- #: app/features/mec/meta_boxes/display_options.php:800
3046
- #: app/features/mec/meta_boxes/display_options.php:1035
3047
- #: app/features/mec/meta_boxes/display_options.php:1122
3048
- msgid "Start of Current Month"
3049
- msgstr "Inicio del mes actual"
3050
-
3051
- #: app/features/mec/meta_boxes/display_options.php:49
3052
- #: app/features/mec/meta_boxes/display_options.php:190
3053
- #: app/features/mec/meta_boxes/display_options.php:342
3054
- #: app/features/mec/meta_boxes/display_options.php:395
3055
- #: app/features/mec/meta_boxes/display_options.php:572
3056
- #: app/features/mec/meta_boxes/display_options.php:621
3057
- #: app/features/mec/meta_boxes/display_options.php:654
3058
- #: app/features/mec/meta_boxes/display_options.php:689
3059
- #: app/features/mec/meta_boxes/display_options.php:735
3060
- #: app/features/mec/meta_boxes/display_options.php:801
3061
- #: app/features/mec/meta_boxes/display_options.php:1036
3062
- #: app/features/mec/meta_boxes/display_options.php:1123
3063
- msgid "Start of Next Month"
3064
- msgstr "Inicio del siguiente mes"
3065
-
3066
  #: app/features/mec/meta_boxes/display_options.php:50
3067
  #: app/features/mec/meta_boxes/display_options.php:191
3068
  #: app/features/mec/meta_boxes/display_options.php:343
3069
- #: app/features/mec/meta_boxes/display_options.php:396
3070
- #: app/features/mec/meta_boxes/display_options.php:519
3071
- #: app/features/mec/meta_boxes/display_options.php:573
3072
  #: app/features/mec/meta_boxes/display_options.php:622
3073
  #: app/features/mec/meta_boxes/display_options.php:655
3074
- #: app/features/mec/meta_boxes/display_options.php:690
3075
- #: app/features/mec/meta_boxes/display_options.php:736
3076
  #: app/features/mec/meta_boxes/display_options.php:802
3077
  #: app/features/mec/meta_boxes/display_options.php:1037
3078
  #: app/features/mec/meta_boxes/display_options.php:1124
3079
- msgid "On a certain date"
3080
- msgstr "Una fecha concreta"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3081
 
3082
  #: app/features/mec/meta_boxes/display_options.php:53
3083
  #: app/features/mec/meta_boxes/display_options.php:194
3084
  #: app/features/mec/meta_boxes/display_options.php:346
3085
  #: app/features/mec/meta_boxes/display_options.php:399
3086
- #: app/features/mec/meta_boxes/display_options.php:522
3087
  #: app/features/mec/meta_boxes/display_options.php:576
3088
  #: app/features/mec/meta_boxes/display_options.php:625
3089
- #: app/features/mec/meta_boxes/display_options.php:659
3090
  #: app/features/mec/meta_boxes/display_options.php:693
3091
  #: app/features/mec/meta_boxes/display_options.php:739
3092
  #: app/features/mec/meta_boxes/display_options.php:805
3093
  #: app/features/mec/meta_boxes/display_options.php:1040
3094
  #: app/features/mec/meta_boxes/display_options.php:1127
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3095
  #, php-format
3096
  msgid "eg. %s"
3097
  msgstr "ej. %s"
3098
 
3099
- #: app/features/mec/meta_boxes/display_options.php:57
3100
  #: app/features/mec/meta_boxes/display_options.php:61
3101
- #: app/features/mec/meta_boxes/display_options.php:68
3102
- #: app/features/mec/meta_boxes/display_options.php:74
3103
- #: app/features/mec/meta_boxes/display_options.php:81
3104
- #: app/features/mec/meta_boxes/display_options.php:87
3105
- #: app/features/mec/meta_boxes/display_options.php:94
3106
  #: app/features/mec/meta_boxes/display_options.php:98
3107
- #: app/features/mec/meta_boxes/display_options.php:105
3108
- #: app/features/mec/meta_boxes/display_options.php:110
3109
- #: app/features/mec/meta_boxes/display_options.php:198
3110
  #: app/features/mec/meta_boxes/display_options.php:202
3111
- #: app/features/mec/meta_boxes/display_options.php:209
3112
- #: app/features/mec/meta_boxes/display_options.php:214
3113
- #: app/features/mec/meta_boxes/display_options.php:221
3114
- #: app/features/mec/meta_boxes/display_options.php:226
3115
- #: app/features/mec/meta_boxes/display_options.php:233
3116
- #: app/features/mec/meta_boxes/display_options.php:239
3117
- #: app/features/mec/meta_boxes/display_options.php:246
3118
  #: app/features/mec/meta_boxes/display_options.php:250
3119
- #: app/features/mec/meta_boxes/display_options.php:257
3120
- #: app/features/mec/meta_boxes/display_options.php:263
3121
- #: app/features/mec/meta_boxes/display_options.php:270
3122
  #: app/features/mec/meta_boxes/display_options.php:274
3123
- #: app/features/mec/meta_boxes/display_options.php:350
3124
- #: app/features/mec/meta_boxes/display_options.php:355
3125
- #: app/features/mec/meta_boxes/display_options.php:526
3126
- #: app/features/mec/meta_boxes/display_options.php:531
3127
- #: app/features/mec/meta_boxes/display_options.php:809
3128
- #: app/features/mec/meta_boxes/display_options.php:814
3129
- #: app/features/mec/meta_boxes/display_options.php:881
3130
- #: app/features/mec/meta_boxes/display_options.php:887
3131
- #: app/features/mec/meta_boxes/display_options.php:894
3132
- #: app/features/mec/meta_boxes/display_options.php:899
3133
- #: app/features/mec/meta_boxes/display_options.php:906
3134
  #: app/features/mec/meta_boxes/display_options.php:910
3135
- #: app/features/mec/meta_boxes/display_options.php:938
3136
  #: app/features/mec/meta_boxes/display_options.php:942
3137
- #: app/features/mec/meta_boxes/display_options.php:949
3138
  #: app/features/mec/meta_boxes/display_options.php:953
3139
- #: app/features/mec/meta_boxes/display_options.php:960
3140
- #: app/features/mec/meta_boxes/display_options.php:966
3141
- #: app/features/mec/meta_boxes/display_options.php:996
3142
- #: app/features/mec/meta_boxes/display_options.php:1001
3143
- #: app/features/mec/meta_boxes/display_options.php:1044
3144
- #: app/features/mec/meta_boxes/display_options.php:1050
3145
- #: app/features/mec/meta_boxes/display_options.php:1057
3146
  #: app/features/mec/meta_boxes/display_options.php:1061
3147
- #: app/features/mec/meta_boxes/display_options.php:1068
3148
  #: app/features/mec/meta_boxes/display_options.php:1072
3149
- #: app/features/mec/meta_boxes/display_options.php:1131
3150
- #: app/features/mec/meta_boxes/display_options.php:1137
3151
- #: app/features/mec/meta_boxes/display_options.php:1144
3152
- #: app/features/mec/meta_boxes/display_options.php:1150
3153
- #: app/features/mec/meta_boxes/display_options.php:1157
3154
- #: app/features/mec/meta_boxes/display_options.php:1163
3155
- #: app/features/mec/meta_boxes/display_options.php:1170
3156
- #: app/features/mec/meta_boxes/display_options.php:1176
3157
- #: app/features/mec/meta_boxes/display_options.php:1183
3158
- #: app/features/mec/meta_boxes/display_options.php:1189
 
3159
  msgid "Date Formats"
3160
  msgstr "Formato de fecha"
3161
 
3162
- #: app/features/mec/meta_boxes/display_options.php:62
3163
- #: app/features/mec/meta_boxes/display_options.php:251
3164
  msgid "Default value is \"M d Y\""
3165
  msgstr "El valor predeterminado es \"M d Y\""
3166
 
3167
- #: app/features/mec/meta_boxes/display_options.php:75
3168
  msgid "Default values are d, M and l"
3169
  msgstr "Los valores predeterminados son d, M y l"
3170
 
3171
- #: app/features/mec/meta_boxes/display_options.php:88
3172
- #: app/features/mec/meta_boxes/display_options.php:240
3173
- #: app/features/mec/meta_boxes/display_options.php:264
3174
- #: app/features/mec/meta_boxes/display_options.php:1138
3175
- #: app/features/mec/meta_boxes/display_options.php:1151
3176
- #: app/features/mec/meta_boxes/display_options.php:1164
3177
- #: app/features/mec/meta_boxes/display_options.php:1177
3178
- #: app/features/mec/meta_boxes/display_options.php:1190
3179
  msgid "Default values are d, F and l"
3180
  msgstr "Los valores predeterminados son d, F y l"
3181
 
3182
- #: app/features/mec/meta_boxes/display_options.php:99
3183
  msgid "Default value is \"M d\""
3184
  msgstr "Valor por defecto es \"M d\""
3185
 
3186
- #: app/features/mec/meta_boxes/display_options.php:111
3187
  #, fuzzy
3188
  #| msgid "Default values are d and F"
3189
  msgid "TDefault values are d and F"
3190
  msgstr "Los valores predeterminados son d y F"
3191
 
3192
- #: app/features/mec/meta_boxes/display_options.php:118
3193
- #: app/features/mec/meta_boxes/display_options.php:293
3194
- #: app/features/mec/meta_boxes/display_options.php:363
3195
- #: app/features/mec/meta_boxes/display_options.php:539
3196
- #: app/features/mec/meta_boxes/display_options.php:581
3197
- #: app/features/mec/meta_boxes/display_options.php:664
3198
- #: app/features/mec/meta_boxes/display_options.php:698
3199
- #: app/features/mec/meta_boxes/display_options.php:744
3200
- #: app/features/mec/meta_boxes/display_options.php:1089
3201
- #: app/features/mec/meta_boxes/display_options.php:1197
3202
- msgid "eg. 6"
3203
- msgstr "ej. 6"
3204
-
3205
  #: app/features/mec/meta_boxes/display_options.php:122
3206
  #: app/features/mec/meta_boxes/display_options.php:297
3207
  #: app/features/mec/meta_boxes/display_options.php:367
3208
- #: app/features/mec/meta_boxes/display_options.php:858
 
 
 
 
 
 
 
 
 
 
 
 
 
3209
  msgid "Load More Button"
3210
  msgstr "Botón cargar más"
3211
 
3212
- #: app/features/mec/meta_boxes/display_options.php:132
3213
- #: app/features/mec/meta_boxes/display_options.php:377
3214
  msgid "Show Month Divider"
3215
  msgstr "Mostrar divisor del mes"
3216
 
3217
- #: app/features/mec/meta_boxes/display_options.php:142
3218
- #: app/features/mec/meta_boxes/display_options.php:307
3219
  #, fuzzy
3220
  #| msgid "Show Google Maps on event page"
3221
  msgid "Show Map on top"
3222
  msgstr "Ver eventos en Google Maps"
3223
 
3224
- #: app/features/mec/meta_boxes/display_options.php:159
3225
  msgid "Toggle for Month Divider"
3226
  msgstr ""
3227
 
3228
- #: app/features/mec/meta_boxes/display_options.php:176
3229
- #: app/features/mec/meta_boxes/display_options.php:333
3230
- #: app/features/mec/meta_boxes/display_options.php:415
3231
- #: app/features/mec/meta_boxes/display_options.php:562
3232
- #: app/features/mec/meta_boxes/display_options.php:726
3233
- #: app/features/mec/meta_boxes/display_options.php:876
3234
- #: app/features/mec/settings.php:212 app/features/mec/settings.php:227
3235
- #: app/features/mec/settings.php:245 app/features/mec/settings.php:286
3236
- #: app/features/mec/settings.php:301 app/features/mec/settings.php:319
3237
  msgid "Clean"
3238
  msgstr "Limpio"
3239
 
3240
- #: app/features/mec/meta_boxes/display_options.php:179
3241
- #: app/features/mec/meta_boxes/display_options.php:417
3242
- #: app/features/mec/meta_boxes/display_options.php:565
3243
- #: app/features/mec/settings.php:215 app/features/mec/settings.php:248
3244
- #: app/features/mec/settings.php:289 app/features/mec/settings.php:322
3245
  msgid "Simple"
3246
  msgstr "Simple"
3247
 
3248
- #: app/features/mec/meta_boxes/display_options.php:180
3249
  msgid "Colorful"
3250
  msgstr "Colorido"
3251
 
3252
- #: app/features/mec/meta_boxes/display_options.php:181
3253
- #: app/features/mec/meta_boxes/display_options.php:416
3254
- #: app/features/mec/meta_boxes/display_options.php:564
3255
- #: app/features/mec/settings.php:214 app/features/mec/settings.php:250
3256
- #: app/features/mec/settings.php:288 app/features/mec/settings.php:324
3257
  msgid "Novel"
3258
  msgstr "Novel"
3259
 
3260
- #: app/features/mec/meta_boxes/display_options.php:203
3261
  #, fuzzy
3262
  #| msgid "Default value is \"d F Y\""
3263
  msgid "Default value is \"d F Y"
3264
  msgstr "Valor por defecto is \"d F Y\""
3265
 
3266
- #: app/features/mec/meta_boxes/display_options.php:215
3267
  msgid "Default values are d and F"
3268
  msgstr "Los valores predeterminados son d y F"
3269
 
3270
- #: app/features/mec/meta_boxes/display_options.php:227
3271
  msgid "Default values are d and M"
3272
  msgstr "Los valores predeterminados son d y M"
3273
 
3274
- #: app/features/mec/meta_boxes/display_options.php:275
3275
  msgid "Default value is \"d F Y\""
3276
  msgstr "Valor por defecto is \"d F Y\""
3277
 
3278
- #: app/features/mec/meta_boxes/display_options.php:281
3279
- #: app/features/mec/meta_boxes/display_options.php:1079
3280
  msgid "Count in row"
3281
  msgstr "Contador en fila"
3282
 
3283
- #: app/features/mec/meta_boxes/display_options.php:326
3284
- #: app/features/mec/meta_boxes/display_options.php:504
3285
- #: app/features/mec/meta_boxes/display_options.php:611
3286
- #: app/features/mec/meta_boxes/display_options.php:718
3287
- #: app/features/mec/meta_boxes/display_options.php:991
3288
  #, php-format
3289
  msgid "%s is required to use this skin."
3290
  msgstr "Se requiere %s para utilizar este tema."
3291
 
3292
- #: app/features/mec/meta_boxes/display_options.php:356
3293
- #: app/features/mec/meta_boxes/display_options.php:532
3294
  msgid "Default values are l and F j"
3295
  msgstr "Los valores por defectos son l y F j"
3296
 
3297
- #: app/features/mec/meta_boxes/display_options.php:403
3298
  msgid "Default View"
3299
  msgstr "Vista por defecto"
3300
 
3301
- #: app/features/mec/meta_boxes/display_options.php:405
3302
- #: app/features/mec/meta_boxes/display_options.php:426
3303
  #: app/libraries/main.php:329 app/libraries/main.php:1570
3304
  #: app/libraries/main.php:1595
3305
  msgid "List View"
3306
  msgstr "Vista de lista"
3307
 
3308
- #: app/features/mec/meta_boxes/display_options.php:406
3309
- #: app/features/mec/meta_boxes/display_options.php:436
3310
  #: app/libraries/main.php:333 app/libraries/main.php:1564
3311
  #: app/libraries/main.php:1589
3312
  msgid "Yearly View"
3313
  msgstr "Vista anual"
3314
 
3315
- #: app/features/mec/meta_boxes/display_options.php:407
3316
- #: app/features/mec/meta_boxes/display_options.php:458
3317
  msgid "Monthly/Calendar View"
3318
  msgstr "Vista Mensual/Calendario"
3319
 
3320
- #: app/features/mec/meta_boxes/display_options.php:408
3321
- #: app/features/mec/meta_boxes/display_options.php:468
3322
  #: app/libraries/main.php:336 app/libraries/main.php:1566
3323
  #: app/libraries/main.php:1591
3324
  msgid "Weekly View"
3325
  msgstr "Vista de semana"
3326
 
3327
- #: app/features/mec/meta_boxes/display_options.php:409
3328
- #: app/features/mec/meta_boxes/display_options.php:478
3329
  #: app/libraries/main.php:335 app/libraries/main.php:1567
3330
  #: app/libraries/main.php:1592
3331
  msgid "Daily View"
3332
  msgstr "Vista de día"
3333
 
3334
- #: app/features/mec/meta_boxes/display_options.php:413
3335
  msgid "Monthly Style"
3336
  msgstr ""
3337
 
3338
- #: app/features/mec/meta_boxes/display_options.php:453
3339
  #, fuzzy, php-format
3340
  #| msgid "%s is required to use this skin."
3341
  msgid "%s is required to use <b>Yearly View</b> skin."
3342
  msgstr "Se requiere %s para utilizar este tema."
3343
 
3344
- #: app/features/mec/meta_boxes/display_options.php:486
3345
  msgid "The price shows only in List View."
3346
  msgstr "El precio sólo aparece en la vista de lista."
3347
 
3348
- #: app/features/mec/meta_boxes/display_options.php:489
3349
  msgid "Display Event Price"
3350
  msgstr "Mostrar el precio del evento"
3351
 
3352
- #: app/features/mec/meta_boxes/display_options.php:517
3353
  msgid "Start of Current Year"
3354
  msgstr "Comienzo del año actual"
3355
 
3356
- #: app/features/mec/meta_boxes/display_options.php:518
3357
  msgid "Start of Next Year"
3358
  msgstr "Comienzo del próximo año"
3359
 
3360
- #: app/features/mec/meta_boxes/display_options.php:538
3361
- #: app/features/mec/meta_boxes/display_options.php:580
3362
- #: app/features/mec/meta_boxes/display_options.php:663
3363
- #: app/features/mec/meta_boxes/display_options.php:697
3364
- #: app/features/mec/meta_boxes/display_options.php:743
3365
  msgid "Events per day"
3366
  msgstr "Eventos por día"
3367
 
3368
- #: app/features/mec/meta_boxes/display_options.php:543
3369
- #: app/features/mec/meta_boxes/display_options.php:585
3370
- #: app/features/mec/meta_boxes/display_options.php:668
3371
- #: app/features/mec/meta_boxes/display_options.php:702
3372
- #: app/features/mec/meta_boxes/display_options.php:772
3373
  msgid "Next/Previous Buttons"
3374
  msgstr "Botones Siguiente/Anterior"
3375
 
3376
- #: app/features/mec/meta_boxes/display_options.php:551
3377
  msgid "For showing next/previous year navigation."
3378
  msgstr "Para mostrar la navegación del año siguiente/anterior."
3379
 
3380
- #: app/features/mec/meta_boxes/display_options.php:595
3381
  #, fuzzy
3382
  #| msgid "Text"
3383
  msgid "Uppercase Text"
3384
  msgstr "Texto"
3385
 
3386
- #: app/features/mec/meta_boxes/display_options.php:603
3387
- #: app/features/mec/meta_boxes/display_options.php:676
3388
- #: app/features/mec/meta_boxes/display_options.php:710
3389
- #: app/features/mec/meta_boxes/display_options.php:780
3390
  msgid "For showing next/previous month navigation."
3391
  msgstr "Para mostrar navegación siguiente/anterior"
3392
 
3393
- #: app/features/mec/meta_boxes/display_options.php:629
3394
  msgid "Maximum events"
3395
  msgstr "Máximo de eventos"
3396
 
3397
- #: app/features/mec/meta_boxes/display_options.php:630
3398
  msgid "eg. 200"
3399
  msgstr "ej. 200"
3400
 
3401
- #: app/features/mec/meta_boxes/display_options.php:634
3402
  msgid "Geolocation"
3403
  msgstr "Geolocalización"
3404
 
3405
- #: app/features/mec/meta_boxes/display_options.php:642
3406
  msgid "The geolocation feature works only in secure (https) websites."
3407
  msgstr ""
3408
  "La funcionalidad de geolocalización sólo funciona en sitios web seguros "
3409
  "(https)."
3410
 
3411
- #: app/features/mec/meta_boxes/display_options.php:686
3412
- #: app/features/mec/meta_boxes/display_options.php:732
3413
  msgid "Current Week"
3414
  msgstr "Semana actual"
3415
 
3416
- #: app/features/mec/meta_boxes/display_options.php:687
3417
- #: app/features/mec/meta_boxes/display_options.php:733
3418
  msgid "Next Week"
3419
  msgstr "Siguiente semana"
3420
 
3421
- #: app/features/mec/meta_boxes/display_options.php:748
3422
  msgid "Number of Days"
3423
  msgstr ""
3424
 
3425
- #: app/features/mec/meta_boxes/display_options.php:756
3426
  #, fuzzy
3427
  #| msgid "Start"
3428
  msgid "Week Start"
3429
  msgstr "Inicio"
3430
 
3431
- #: app/features/mec/meta_boxes/display_options.php:758
3432
  #, fuzzy
3433
  #| msgid "Inherit from global options"
3434
  msgid "Inherite from WordPress options"
3435
  msgstr "Heredar opciones globales"
3436
 
3437
- #: app/features/mec/meta_boxes/display_options.php:815
3438
- #: app/features/mec/meta_boxes/display_options.php:1002
3439
  msgid "Default values are j and F"
3440
  msgstr "Los valores predeterminados son j y F"
3441
 
3442
- #: app/features/mec/meta_boxes/display_options.php:822
3443
  msgid "eg. 24"
3444
  msgstr "ej. 24"
3445
 
3446
- #: app/features/mec/meta_boxes/display_options.php:825
3447
  msgid "Filter By"
3448
  msgstr "Filtrar por"
3449
 
3450
- #: app/features/mec/meta_boxes/display_options.php:827
3451
  msgid "None"
3452
  msgstr ""
3453
 
3454
- #: app/features/mec/meta_boxes/display_options.php:836
3455
  msgid "Fit to row"
3456
  msgstr ""
3457
 
3458
- #: app/features/mec/meta_boxes/display_options.php:837
3459
  msgid ""
3460
  "Items are arranged into rows. Rows progress vertically. Similar to what you "
3461
  "would expect from a layout that uses CSS floats."
3462
  msgstr ""
3463
 
3464
- #: app/features/mec/meta_boxes/display_options.php:847
3465
  msgid "Convert Masonry to Grid"
3466
  msgstr ""
3467
 
3468
- #: app/features/mec/meta_boxes/display_options.php:848
3469
  msgid "For using this option, your events should come with image"
3470
  msgstr ""
3471
 
3472
- #: app/features/mec/meta_boxes/display_options.php:888
3473
  msgid "Default values are d, M and Y"
3474
  msgstr "Los valores predeterminados son d, M e Y"
3475
 
3476
- #: app/features/mec/meta_boxes/display_options.php:900
3477
  msgid "Default values are \"F d\" and l"
3478
  msgstr "Los valores predeterminados son \"F d\" y l"
3479
 
3480
- #: app/features/mec/meta_boxes/display_options.php:911
3481
  msgid "Default value is \"l, F d Y\""
3482
  msgstr "Valor por defecto es \"l, F d Y\""
3483
 
3484
- #: app/features/mec/meta_boxes/display_options.php:932
3485
  msgid "Style 1"
3486
  msgstr "Estilo 1"
3487
 
3488
- #: app/features/mec/meta_boxes/display_options.php:933
3489
  msgid "Style 2"
3490
  msgstr "Estilo 2"
3491
 
3492
- #: app/features/mec/meta_boxes/display_options.php:934
3493
  msgid "Style 3"
3494
  msgstr "Estilo 3"
3495
 
3496
- #: app/features/mec/meta_boxes/display_options.php:943
3497
- #: app/features/mec/meta_boxes/display_options.php:954
3498
  msgid "Default value is \"j F Y\""
3499
  msgstr "El valor predeterminado es \"j F Y\""
3500
 
3501
- #: app/features/mec/meta_boxes/display_options.php:967
3502
  msgid "Default values are j, F and Y"
3503
  msgstr "Los valores predeterminados son j, F e Y"
3504
 
3505
- #: app/features/mec/meta_boxes/display_options.php:975
3506
- #: app/features/mec/meta_boxes/display_options.php:1010
3507
  msgid " -- Next Upcoming Event -- "
3508
  msgstr " -- Próximo Evento -- "
3509
 
3510
- #: app/features/mec/meta_boxes/display_options.php:982
3511
  msgid "Background Color"
3512
  msgstr "Color de fondo"
3513
 
3514
- #: app/features/mec/meta_boxes/display_options.php:1024
3515
- #: app/features/mec/meta_boxes/display_options.php:1110
3516
  msgid "Type 1"
3517
  msgstr "Tipo 1"
3518
 
3519
- #: app/features/mec/meta_boxes/display_options.php:1025
3520
- #: app/features/mec/meta_boxes/display_options.php:1111
3521
  msgid "Type 2"
3522
  msgstr "Tipo 2"
3523
 
3524
- #: app/features/mec/meta_boxes/display_options.php:1026
3525
- #: app/features/mec/meta_boxes/display_options.php:1112
3526
  msgid "Type 3"
3527
  msgstr "Tipo 3"
3528
 
3529
- #: app/features/mec/meta_boxes/display_options.php:1027
3530
- #: app/features/mec/meta_boxes/display_options.php:1113
3531
  msgid "Type 4"
3532
  msgstr "Tipo 4"
3533
 
3534
- #: app/features/mec/meta_boxes/display_options.php:1051
3535
  msgid "Default values are d, F and Y"
3536
  msgstr "Los valores predeterminados son d, F e Y"
3537
 
3538
- #: app/features/mec/meta_boxes/display_options.php:1062
3539
- #: app/features/mec/meta_boxes/display_options.php:1073
3540
  msgid "Default value is \"M d, Y\""
3541
  msgstr "El valor predeterminado es \"M d, Y\""
3542
 
3543
- #: app/features/mec/meta_boxes/display_options.php:1092
3544
- #: app/features/mec/meta_boxes/display_options.php:1200
3545
  msgid "Auto Play Time"
3546
  msgstr "Tiempo de reproducción automática"
3547
 
3548
- #: app/features/mec/meta_boxes/display_options.php:1093
3549
- #: app/features/mec/meta_boxes/display_options.php:1201
3550
  msgid "eg. 3000 default is 3 second"
3551
  msgstr "Ejemplo. 3000 son 3 segundos."
3552
 
3553
- #: app/features/mec/meta_boxes/display_options.php:1097
3554
  #, fuzzy
3555
  #| msgid "Archive Page Skin"
3556
  msgid "Archive Link"
3557
  msgstr "Tema de la página de archivo"
3558
 
3559
- #: app/features/mec/meta_boxes/display_options.php:1101
3560
  #, fuzzy
3561
  #| msgid "Text"
3562
  msgid "Head Text"
3563
  msgstr "Texto"
3564
 
3565
- #: app/features/mec/meta_boxes/display_options.php:1114
3566
  msgid "Type 5"
3567
  msgstr "Tipo 5"
3568
 
@@ -3570,43 +3590,43 @@ msgstr "Tipo 5"
3570
  msgid "No filter options applicable for this skin."
3571
  msgstr "Sin opciones de filtro aplicables para esta plantilla."
3572
 
3573
- #: app/features/mec/meta_boxes/filter.php:84
3574
  msgid "Choose your desired categories for filtering the events."
3575
  msgstr "Elige tus categorías deseadas para el filtrado de los eventos."
3576
 
3577
- #: app/features/mec/meta_boxes/filter.php:101
3578
  msgid "Choose your desired locations for filtering the events."
3579
  msgstr "Elige las ubicaciones que quieras para filtrar los eventos."
3580
 
3581
- #: app/features/mec/meta_boxes/filter.php:118
3582
  msgid "Choose your desired organizers for filtering the events."
3583
  msgstr "Elegir los organizadores deseados para el filtrado de los eventos."
3584
 
3585
- #: app/features/mec/meta_boxes/filter.php:135
3586
  msgid "Choose your desired labels for filtering the events."
3587
  msgstr "Elige las etiquetas que quieras para filtrar los eventos."
3588
 
3589
- #: app/features/mec/meta_boxes/filter.php:141
3590
  msgid "Insert your desired tags comma separated."
3591
  msgstr "Inserta las etiquetas que desees separadas con coma."
3592
 
3593
- #: app/features/mec/meta_boxes/filter.php:144
3594
  msgid "Authors"
3595
  msgstr "Autores"
3596
 
3597
- #: app/features/mec/meta_boxes/filter.php:162
3598
  msgid "Choose your desired authors for filtering the events."
3599
  msgstr "Elije los autores deseados para filtrar los eventos."
3600
 
3601
- #: app/features/mec/meta_boxes/filter.php:166
3602
  msgid "Dates"
3603
  msgstr "Fechas"
3604
 
3605
- #: app/features/mec/meta_boxes/filter.php:170
3606
  msgid "Include Expired Events"
3607
  msgstr "Incluir eventos pasados"
3608
 
3609
- #: app/features/mec/meta_boxes/filter.php:178
3610
  msgid ""
3611
  "You have ability to include past/expired events if you like so it will show "
3612
  "upcoming and expired events based on start date that you selected."
@@ -3615,19 +3635,19 @@ msgstr ""
3615
  "que mostrará en próximos y caducados eventos basados en la fecha de inicio "
3616
  "que has seleccionado."
3617
 
3618
- #: app/features/mec/meta_boxes/filter.php:183
3619
  msgid "Show Only Expired Events"
3620
  msgstr "Mostrar únicamente eventos caducados"
3621
 
3622
- #: app/features/mec/meta_boxes/filter.php:191
3623
  msgid "It shows only expired/past events."
3624
  msgstr "Solo muestra eventos pasados/caducados"
3625
 
3626
- #: app/features/mec/meta_boxes/filter.php:197
3627
  msgid "Show Only Ongoing Events"
3628
  msgstr "Mostrar solo eventos en curso"
3629
 
3630
- #: app/features/mec/meta_boxes/filter.php:205
3631
  msgid "It shows only ongoing events on List and Grid skins."
3632
  msgstr ""
3633
  "Solo muestra los eventos ocurriendo en los temas de lista y cuadricula."
@@ -3715,8 +3735,8 @@ msgstr "Mostrar formulario búsqueda"
3715
  #: app/features/mec/meta_boxes/search_form.php:612
3716
  #: app/features/mec/meta_boxes/search_form.php:619
3717
  #: app/features/mec/meta_boxes/search_form.php:626
3718
- #: app/features/mec/modules.php:122 app/features/mec/settings.php:94
3719
- #: app/features/mec/settings.php:365
3720
  msgid "Disabled"
3721
  msgstr "Desactivado"
3722
 
@@ -3730,9 +3750,9 @@ msgstr "Desactivado"
3730
  #: app/features/mec/meta_boxes/search_form.php:474
3731
  #: app/features/mec/meta_boxes/search_form.php:535
3732
  #: app/features/mec/meta_boxes/search_form.php:596
3733
- #: app/features/mec/settings.php:735 app/features/mec/single.php:214
3734
  #: app/features/speakers.php:59 app/features/speakers.php:247
3735
- #: app/libraries/main.php:4843 app/libraries/skins.php:886
3736
  msgid "Speaker"
3737
  msgstr ""
3738
 
@@ -3746,7 +3766,7 @@ msgstr ""
3746
  #: app/features/mec/meta_boxes/search_form.php:481
3747
  #: app/features/mec/meta_boxes/search_form.php:542
3748
  #: app/features/mec/meta_boxes/search_form.php:603
3749
- #: app/features/mec/settings.php:742 app/features/mec/single.php:223
3750
  #: app/libraries/skins.php:912
3751
  #, fuzzy
3752
  #| msgid "Tags"
@@ -3800,45 +3820,45 @@ msgstr "Campo de texto"
3800
  msgid "No Search Options"
3801
  msgstr "No hay opciones de búsqueda"
3802
 
3803
- #: app/features/mec/modules.php:40
3804
  msgid "Speakers Options"
3805
  msgstr ""
3806
 
3807
- #: app/features/mec/modules.php:46
3808
  msgid "Enable speakers feature"
3809
  msgstr ""
3810
 
3811
- #: app/features/mec/modules.php:50
3812
  msgid ""
3813
  "Enable this option to have speaker in Hourly Schedule in Single. Refresh "
3814
  "after enabling it to see the Speakers menu under MEC dashboard."
3815
  msgstr ""
3816
 
3817
- #: app/features/mec/modules.php:55
3818
  msgid ""
3819
  "After enabling and saving the settings, you should reload the page to see a "
3820
  "new menu on the Dashboard > MEC"
3821
  msgstr ""
3822
 
3823
- #: app/features/mec/modules.php:72
3824
  msgid "Show Google Maps on event page"
3825
  msgstr "Ver eventos en Google Maps"
3826
 
3827
- #: app/features/mec/modules.php:77 app/features/mec/modules.php:235
3828
- #: app/features/mec/settings.php:772 app/features/mec/settings.php:777
3829
  msgid "API Key"
3830
  msgstr "API Key"
3831
 
3832
- #: app/features/mec/modules.php:83 app/features/mec/settings.php:778
3833
- #: app/features/mec/settings.php:791
3834
  msgid "Required!"
3835
  msgstr "¡Obligatorio!"
3836
 
3837
- #: app/features/mec/modules.php:90 app/features/mec/modules.php:99
3838
  msgid "Zoom level"
3839
  msgstr "Nivel de zoom"
3840
 
3841
- #: app/features/mec/modules.php:100
3842
  msgid ""
3843
  "For Google Maps module in single event page. In Google Maps skin, it will "
3844
  "caculate the zoom level automatically based on event boundaries."
@@ -3847,149 +3867,149 @@ msgstr ""
3847
  "de Google Maps, calculará el nivel de Zoom automáticamente de acuerdo a los "
3848
  "limites."
3849
 
3850
- #: app/features/mec/modules.php:107
3851
  msgid "Google Maps Style"
3852
  msgstr "Estilo de Google Maps"
3853
 
3854
- #: app/features/mec/modules.php:111 app/features/mec/single.php:85
3855
  msgid "Default"
3856
  msgstr "Por defecto"
3857
 
3858
- #: app/features/mec/modules.php:119
3859
  msgid "Direction on single event"
3860
  msgstr "Dirección en la página del evento"
3861
 
3862
- #: app/features/mec/modules.php:123
3863
  msgid "Simple Method"
3864
  msgstr "Método simple"
3865
 
3866
- #: app/features/mec/modules.php:124
3867
  msgid "Advanced Method"
3868
  msgstr "Método avanzado"
3869
 
3870
- #: app/features/mec/modules.php:129 app/features/mec/modules.php:134
3871
  msgid "Lightbox Date Format"
3872
  msgstr "Formato de Fecha LightBox"
3873
 
3874
- #: app/features/mec/modules.php:135
3875
  msgid "Default value is M d Y"
3876
  msgstr "El valor predeterminado es M d Y"
3877
 
3878
- #: app/features/mec/modules.php:142 app/features/mec/modules.php:150
3879
  msgid "Google Maps API"
3880
  msgstr "Google Maps API"
3881
 
3882
- #: app/features/mec/modules.php:146
3883
  msgid "Don't load Google Maps API library"
3884
  msgstr "No carga la biblioteca de la API de Google Maps"
3885
 
3886
- #: app/features/mec/modules.php:151
3887
  msgid "Check it only if another plugin/theme is loading the Google Maps API"
3888
  msgstr "Marcalo sólo si en otro plugin/tema se carga la API de Google Maps"
3889
 
3890
- #: app/features/mec/modules.php:164 app/libraries/main.php:561
3891
  #, fuzzy
3892
  #| msgid "Import Options"
3893
  msgid "Export Options"
3894
  msgstr "Importar Opciones"
3895
 
3896
- #: app/features/mec/modules.php:168
3897
  msgid ""
3898
  "Show export module (iCal export and add to Google calendars) on event page"
3899
  msgstr "Ver módulo exportado (iCal y Google Calendars) en la página del evento"
3900
 
3901
- #: app/features/mec/modules.php:175
3902
  msgid "Google Calendar"
3903
  msgstr "Google Calendar"
3904
 
3905
- #: app/features/mec/modules.php:191 app/libraries/main.php:562
3906
  #: app/modules/local-time/details.php:42 app/widgets/single.php:99
3907
  msgid "Local Time"
3908
  msgstr "Hora local"
3909
 
3910
- #: app/features/mec/modules.php:195
3911
  msgid "Show event time based on local time of visitor on event page"
3912
  msgstr ""
3913
  "Mostrar el tiempo del evento basado en la hora local del visitante en la "
3914
  "página del evento"
3915
 
3916
- #: app/features/mec/modules.php:205 app/libraries/main.php:563
3917
  #: app/modules/qrcode/details.php:38 app/widgets/single.php:155
3918
  msgid "QR Code"
3919
  msgstr "Código QR"
3920
 
3921
- #: app/features/mec/modules.php:213
3922
  msgid "Show QR code of event in details page and booking invoice"
3923
  msgstr ""
3924
  "Mostrar código QR del evento en la pagina de detalles de la pagina y en el "
3925
  "recibo de la reservación"
3926
 
3927
- #: app/features/mec/modules.php:223 app/libraries/main.php:564
3928
  #: app/modules/weather/details.php:37
3929
  msgid "Weather"
3930
  msgstr "El Tiempo"
3931
 
3932
- #: app/features/mec/modules.php:230
3933
  msgid "Show weather module on event page"
3934
  msgstr "Módulo de tiempo para mostrar en la página del evento"
3935
 
3936
- #: app/features/mec/modules.php:238
3937
  #, php-format
3938
  msgid "You can get a free API Key from %s"
3939
  msgstr "Puedes obtener una clave API gratis desde %s"
3940
 
3941
- #: app/features/mec/modules.php:244
3942
  #, fuzzy
3943
  #| msgid "Show weather module on event page"
3944
  msgid "Show weather imperial units"
3945
  msgstr "Módulo de tiempo para mostrar en la página del evento"
3946
 
3947
- #: app/features/mec/modules.php:250
3948
  msgid "Show weather change units button"
3949
  msgstr ""
3950
 
3951
- #: app/features/mec/modules.php:264
3952
  msgid "Show social network module"
3953
  msgstr "Ver módulo de redes sociales"
3954
 
3955
- #: app/features/mec/modules.php:285 app/libraries/main.php:566
3956
  #: app/modules/next-event/details.php:82
3957
  msgid "Next Event"
3958
  msgstr "Próximo Evento"
3959
 
3960
- #: app/features/mec/modules.php:289
3961
  msgid "Show next event module on event page"
3962
  msgstr "Mostrar el módulo del próximo evento en la página del evento"
3963
 
3964
- #: app/features/mec/modules.php:294
3965
  msgid "Method"
3966
  msgstr "Método"
3967
 
3968
- #: app/features/mec/modules.php:297
3969
  msgid "Next Occurrence of Current Event"
3970
  msgstr "Próxima aparición del evento actual"
3971
 
3972
- #: app/features/mec/modules.php:298
3973
  msgid "Next Occurrence of Other Events"
3974
  msgstr "Próxima aparición de otros eventos"
3975
 
3976
- #: app/features/mec/modules.php:309 app/features/mec/single.php:39
3977
  msgid "Default is M d Y"
3978
  msgstr "El valor predeterminado es M d Y"
3979
 
3980
- #: app/features/mec/modules.php:325
3981
  msgid "Enable BuddyPress Integration"
3982
  msgstr "Habilitar la integración de BuddyPress"
3983
 
3984
- #: app/features/mec/modules.php:332
3985
  msgid "Show \"Attendees Module\" in event details page"
3986
  msgstr "Mostrar \"Módulo de asistentes\" en la página de detalles del evento"
3987
 
3988
- #: app/features/mec/modules.php:336
3989
  msgid "Attendees Limit"
3990
  msgstr "Límite de asistentes"
3991
 
3992
- #: app/features/mec/modules.php:344
3993
  msgid "Add booking activity to user profile"
3994
  msgstr "Añadir actividad de reservaciones en el perfil del usuario"
3995
 
@@ -4378,8 +4398,8 @@ msgstr "Título del evento"
4378
  msgid "Status of event"
4379
  msgstr "Estado del evento"
4380
 
4381
- #: app/features/mec/notifications.php:436 app/features/mec/settings.php:651
4382
- #: app/features/mec/settings.php:655
4383
  msgid "Event Note"
4384
  msgstr "Nota de evento"
4385
 
@@ -4387,51 +4407,51 @@ msgstr "Nota de evento"
4387
  msgid "Admin events management link."
4388
  msgstr "Enlace del administrador de reservas."
4389
 
4390
- #: app/features/mec/settings.php:52 app/features/mec/settings.php:62
4391
  msgid "Hide Events"
4392
  msgstr "Ocultar eventos"
4393
 
4394
- #: app/features/mec/settings.php:55
4395
  msgid "On Event Start"
4396
  msgstr "En el inicio del evento"
4397
 
4398
- #: app/features/mec/settings.php:56
4399
  msgid "+1 Hour after start"
4400
  msgstr "+1 hora después del inicio"
4401
 
4402
- #: app/features/mec/settings.php:57
4403
  msgid "+2 Hours after start"
4404
  msgstr "+2 horas después del inicio"
4405
 
4406
- #: app/features/mec/settings.php:58
4407
  msgid "On Event End"
4408
  msgstr "El fin del evento"
4409
 
4410
- #: app/features/mec/settings.php:63
4411
  msgid ""
4412
  "This option is for showing start/end time of events on frontend of website."
4413
  msgstr ""
4414
  "Esta opción es para mostrar el tiempo de inicio / finalización de los "
4415
  "eventos en la interfaz del sitio web."
4416
 
4417
- #: app/features/mec/settings.php:72 app/features/mec/settings.php:81
4418
  msgid "Multiple Day Events"
4419
  msgstr "Eventos de varios días"
4420
 
4421
- #: app/features/mec/settings.php:75
4422
  msgid "Show only first day on List/Grid/Slider skins"
4423
  msgstr ""
4424
  "Muestra únicamente el primer día en los temas de Lista, Cuadricula y Rotativo"
4425
 
4426
- #: app/features/mec/settings.php:76
4427
  msgid "Show only first day on all skins"
4428
  msgstr "Mostrar solo el primer día en todas los temas"
4429
 
4430
- #: app/features/mec/settings.php:77
4431
  msgid "Show all days"
4432
  msgstr "Mostrar todos los días"
4433
 
4434
- #: app/features/mec/settings.php:82
4435
  msgid ""
4436
  "For showing all days of multiple day events on frontend or only show the "
4437
  "first day."
@@ -4439,54 +4459,54 @@ msgstr ""
4439
  "Para mostrar todos los días en un evento multidía en la pagina o solo "
4440
  "mostrar el primer día."
4441
 
4442
- #: app/features/mec/settings.php:91
4443
  msgid "Remove MEC Data on Plugin Uninstall"
4444
  msgstr "Elimina los datos de MEC al desinstalar el plugin."
4445
 
4446
- #: app/features/mec/settings.php:95
4447
  msgid "Enabled"
4448
  msgstr "Habilitado"
4449
 
4450
- #: app/features/mec/settings.php:101
4451
  msgid "Exclude Date Suffix"
4452
  msgstr "Excluir sufijo de la fecha"
4453
 
4454
- #: app/features/mec/settings.php:104
4455
  msgid "Remove suffix from calendars"
4456
  msgstr "Elimina el sufijo de los calendarios."
4457
 
4458
- #: app/features/mec/settings.php:108
4459
  #, fuzzy
4460
  #| msgid "Remove suffix from calendars"
4461
  msgid "Remove \"Th\" on calendar"
4462
  msgstr "Elimina el sufijo de los calendarios."
4463
 
4464
- #: app/features/mec/settings.php:109
4465
  msgid ""
4466
  "Checked this checkbox to remove 'Th' on calendar ( ex: '12Th' remove Th, "
4467
  "showing just '12' )"
4468
  msgstr ""
4469
 
4470
- #: app/features/mec/settings.php:116 app/features/mec/settings.php:123
4471
  msgid "Schema"
4472
  msgstr ""
4473
 
4474
- #: app/features/mec/settings.php:119
4475
  #, fuzzy
4476
  #| msgid "Enable coupons module"
4477
  msgid "Enable Schema Code"
4478
  msgstr "Activar módulo de cupones"
4479
 
4480
- #: app/features/mec/settings.php:124
4481
  msgid "You can enable/disable Schema scripts"
4482
  msgstr ""
4483
 
4484
- #: app/features/mec/settings.php:133 app/features/mec/settings.php:143
4485
- #: app/libraries/main.php:4847
4486
  msgid "Weekdays"
4487
  msgstr "Días de la semana"
4488
 
4489
- #: app/features/mec/settings.php:144
4490
  #, fuzzy
4491
  #| msgid ""
4492
  #| "Proceed with caution. Default is set to Monday, Tuesday, Wednesday, "
@@ -4498,109 +4518,109 @@ msgid ""
4498
  msgstr ""
4499
  "Ten cuidado. El predeterminado es Lunes, Martes, Miércoles, Jueves y Viernes."
4500
 
4501
- #: app/features/mec/settings.php:154 app/features/mec/settings.php:164
4502
  msgid "Weekends"
4503
  msgstr "Fines de semana"
4504
 
4505
- #: app/features/mec/settings.php:165
4506
  msgid ""
4507
  "Proceed with caution. Default is set to Saturday and Sunday ( you can change "
4508
  "'Week Starts' on WordPress Dashboard > Settings > General - bottom of the "
4509
  "page )."
4510
  msgstr ""
4511
 
4512
- #: app/features/mec/settings.php:176 app/libraries/main.php:529
4513
  msgid "Archive Pages"
4514
  msgstr "Páginas de archivo"
4515
 
4516
- #: app/features/mec/settings.php:179 app/features/mec/settings.php:184
4517
  msgid "Archive Page Title"
4518
  msgstr "Título de la página de archivo"
4519
 
4520
- #: app/features/mec/settings.php:185
4521
  #, fuzzy
4522
  #| msgid "Default value is Events"
4523
  msgid "Default value is Events - It's title of the page"
4524
  msgstr "Valor por defecto del evento"
4525
 
4526
- #: app/features/mec/settings.php:193 app/features/mec/settings.php:261
4527
  msgid "Archive Page Skin"
4528
  msgstr "Tema de la página de archivo"
4529
 
4530
- #: app/features/mec/settings.php:201
4531
  #, fuzzy
4532
  #| msgid "Edit shortcodes"
4533
  msgid "Put shortcode..."
4534
  msgstr "Editar Shortcodes"
4535
 
4536
- #: app/features/mec/settings.php:204 app/features/mec/settings.php:219
4537
- #: app/features/mec/settings.php:222 app/features/mec/settings.php:231
4538
- #: app/features/mec/settings.php:257 app/features/mec/settings.php:278
4539
- #: app/features/mec/settings.php:293 app/features/mec/settings.php:296
4540
- #: app/features/mec/settings.php:305 app/features/mec/settings.php:331
4541
  #, fuzzy
4542
  #| msgid "The event is ongoing."
4543
  msgid "There is no skins"
4544
  msgstr "El evento está en curso."
4545
 
4546
- #: app/features/mec/settings.php:207 app/features/mec/settings.php:281
4547
- #: app/features/mec/single.php:66
4548
  msgid "Modern Style"
4549
  msgstr "Estilo moderno"
4550
 
4551
- #: app/features/mec/settings.php:249 app/features/mec/settings.php:323
4552
  #, fuzzy
4553
  #| msgid "Colorful"
4554
  msgid "colorful"
4555
  msgstr "Colorido"
4556
 
4557
- #: app/features/mec/settings.php:254 app/features/mec/settings.php:328
4558
  #, fuzzy
4559
  #| msgid "Plain Style"
4560
  msgid "Clean Style"
4561
  msgstr "Estilo simple"
4562
 
4563
- #: app/features/mec/settings.php:262
4564
  #, fuzzy
4565
  #| msgid "Default value is Calendar/Monthly View"
4566
  msgid "Default value is Calendar/Monthly View, But you can change it "
4567
  msgstr "El valor predeterminado es calendario / vista mensual"
4568
 
4569
- #: app/features/mec/settings.php:262 app/features/mec/settings.php:336
4570
  msgid "See Demo"
4571
  msgstr ""
4572
 
4573
- #: app/features/mec/settings.php:270 app/features/mec/settings.php:335
4574
  msgid "Category Page Skin"
4575
  msgstr "Skin de página de categoría"
4576
 
4577
- #: app/features/mec/settings.php:336
4578
  msgid ""
4579
  "Default value is List View - But you can change it Set a skin for all "
4580
  "categories."
4581
  msgstr ""
4582
 
4583
- #: app/features/mec/settings.php:344 app/features/mec/settings.php:352
4584
  msgid "Category Events Method"
4585
  msgstr "Método de categoría de eventos"
4586
 
4587
- #: app/features/mec/settings.php:348
4588
  msgid "Expired Events"
4589
  msgstr "Eventos pasados"
4590
 
4591
- #: app/features/mec/settings.php:353
4592
  msgid "Default value is Upcoming Events"
4593
  msgstr "El valor predeterminado es Próximos eventos"
4594
 
4595
- #: app/features/mec/settings.php:361 app/features/mec/settings.php:369
4596
  msgid "Events Archive Status"
4597
  msgstr "Estado del archivo de eventos"
4598
 
4599
- #: app/features/mec/settings.php:364
4600
  msgid "Enabled (Recommended)"
4601
  msgstr "Activado (recomendado)"
4602
 
4603
- #: app/features/mec/settings.php:370
4604
  msgid ""
4605
  "If you disable it, then you should create a page as archive page of MEC. "
4606
  "Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
@@ -4610,18 +4630,18 @@ msgstr ""
4610
  "archivo de MEC. El slug debe igualarse al slug principal de MEC. También "
4611
  "desactivará todas las reglas de sobreescripción."
4612
 
4613
- #: app/features/mec/settings.php:383 app/features/mec/settings.php:388
4614
  msgid "Main Slug"
4615
  msgstr "Slug principal"
4616
 
4617
- #: app/features/mec/settings.php:389
4618
  msgid ""
4619
  "Default value is events. You can not have a page with this name. MEC allows "
4620
  "you to create custom URLs for the permalinks and archives to enhance the "
4621
  "applicability and forward-compatibility of the links."
4622
  msgstr ""
4623
 
4624
- #: app/features/mec/settings.php:393 app/features/mec/settings.php:407
4625
  #, fuzzy
4626
  #| msgid ""
4627
  #| "Default value is events. Valid characters are lowercase a-z, - character "
@@ -4631,11 +4651,11 @@ msgstr ""
4631
  "El valor por defecto es eventos. Los caracteres válidos son a-z minúsculas, "
4632
  "- carácteres y números."
4633
 
4634
- #: app/features/mec/settings.php:397 app/features/mec/settings.php:402
4635
  msgid "Category Slug"
4636
  msgstr "Slug de la categoría"
4637
 
4638
- #: app/features/mec/settings.php:403
4639
  #, fuzzy
4640
  #| msgid ""
4641
  #| "It's slug of MEC categories, you can change it to events-cat or something "
@@ -4649,132 +4669,132 @@ msgstr ""
4649
  "cat o a algo más. El valor por defecto es mec-category. Se pueden utilizar "
4650
  "letras de la a-z en minúsculas y numerosas."
4651
 
4652
- #: app/features/mec/settings.php:415
4653
  msgid "Currency"
4654
  msgstr "Moneda corriente"
4655
 
4656
- #: app/features/mec/settings.php:425 app/features/mec/settings.php:430
4657
  msgid "Currency Sign"
4658
  msgstr "Tipo de moneda"
4659
 
4660
- #: app/features/mec/settings.php:431
4661
  msgid "Default value will be \"currency\" if you leave it empty."
4662
  msgstr "El valor por defecto será \"moneda\" si lo dejas en blanco."
4663
 
4664
- #: app/features/mec/settings.php:438
4665
  msgid "Currency Position"
4666
  msgstr "Posición en moneda extranjera"
4667
 
4668
- #: app/features/mec/settings.php:441
4669
  msgid "Before $10"
4670
  msgstr "Menos de 10€"
4671
 
4672
- #: app/features/mec/settings.php:442
4673
  msgid "After 10$"
4674
  msgstr "Más de 10€"
4675
 
4676
- #: app/features/mec/settings.php:447
4677
  msgid "Thousand Separator"
4678
  msgstr "Separador de miles"
4679
 
4680
- #: app/features/mec/settings.php:453
4681
  msgid "Decimal Separator"
4682
  msgstr "Separador de decimales"
4683
 
4684
- #: app/features/mec/settings.php:463
4685
  msgid "No decimal"
4686
  msgstr "No decimal"
4687
 
4688
- #: app/features/mec/settings.php:474
4689
  msgid "Enable Google Recaptcha"
4690
  msgstr "Habilitar Google Recaptcha"
4691
 
4692
- #: app/features/mec/settings.php:481
4693
  msgid "Enable on booking form"
4694
  msgstr "Activar en el formulario de reserva"
4695
 
4696
- #: app/features/mec/settings.php:487
4697
  msgid "Enable on \"Frontend Event Submission\" form"
4698
  msgstr "Activa el formulario \"Envío de eventos desde portada\""
4699
 
4700
- #: app/features/mec/settings.php:491
4701
  msgid "Site Key"
4702
  msgstr "Clave del Sitio"
4703
 
4704
- #: app/features/mec/settings.php:497
4705
  msgid "Secret Key"
4706
  msgstr "Clave secreta"
4707
 
4708
- #: app/features/mec/settings.php:509 app/features/mec/settings.php:517
4709
  msgid "Time Format"
4710
  msgstr "Formato de la hora"
4711
 
4712
- #: app/features/mec/settings.php:512
4713
  msgid "12 hours format with AM/PM"
4714
  msgstr "Formato de 12 horas con AM / PM"
4715
 
4716
- #: app/features/mec/settings.php:513
4717
  msgid "24 hours format"
4718
  msgstr "Formato de 24 horas"
4719
 
4720
- #: app/features/mec/settings.php:518
4721
  msgid "This option, affects the selection of Start/End time."
4722
  msgstr ""
4723
 
4724
- #: app/features/mec/settings.php:526
4725
  msgid "Events List Page"
4726
  msgstr "Página de lista de eventos"
4727
 
4728
- #: app/features/mec/settings.php:535 app/features/mec/settings.php:547
4729
  #, php-format
4730
  msgid "Put %s shortcode into the page."
4731
  msgstr "Pon el shortcode %s en la página."
4732
 
4733
- #: app/features/mec/settings.php:538
4734
  msgid "Add/Edit Events Page"
4735
  msgstr "Añadir/Editar página de eventos"
4736
 
4737
- #: app/features/mec/settings.php:552
4738
  msgid "Enable event submission by guest (Not logged-in) users"
4739
  msgstr ""
4740
  "Habilitar la presentación de eventos por los usuarios invitados (no "
4741
  "conectados)"
4742
 
4743
- #: app/features/mec/settings.php:559
4744
  msgid "Enable mandatory email and name for guest user"
4745
  msgstr ""
4746
  "Activa que sea obligatorio el correo y nombre del usuario para el usuario "
4747
  "invitado"
4748
 
4749
- #: app/features/mec/settings.php:563
4750
  msgid "Frontend Event Submission Sections"
4751
  msgstr "Secciones de envío de eventos en la pagina."
4752
 
4753
- #: app/features/mec/settings.php:585 app/widgets/single.php:119
4754
  msgid "Event Categories"
4755
  msgstr "Categorías de evento"
4756
 
4757
- #: app/features/mec/settings.php:591
4758
  msgid "Event Labels"
4759
  msgstr "Etiqueta de eventos"
4760
 
4761
- #: app/features/mec/settings.php:603
4762
  msgid "Event Tags"
4763
  msgstr "Etiquetas del Evento"
4764
 
4765
- #: app/features/mec/settings.php:615 app/widgets/single.php:123
4766
  msgid "Event Organizer"
4767
  msgstr "Organizador de eventos"
4768
 
4769
- #: app/features/mec/settings.php:633
4770
  msgid "Booking Options"
4771
  msgstr "Opciones de reserva"
4772
 
4773
- #: app/features/mec/settings.php:639
4774
  msgid "Fees / Taxes Options"
4775
  msgstr "Opciones de Cuotas/Impuestos"
4776
 
4777
- #: app/features/mec/settings.php:656
4778
  #, php-format
4779
  msgid ""
4780
  "Users can put a note for editors while they're submitting the event. Also "
@@ -4785,100 +4805,100 @@ msgstr ""
4785
  "evento. También puede poner %%event_note%% en la notificación de nuevo "
4786
  "evento para obtener la nota de los usuarios en el correo electrónico."
4787
 
4788
- #: app/features/mec/settings.php:663 app/features/mec/settings.php:672
4789
  msgid "Visibility of Note"
4790
  msgstr "Visibilidad de la nota"
4791
 
4792
- #: app/features/mec/settings.php:666
4793
  msgid "Always"
4794
  msgstr "Siempre"
4795
 
4796
- #: app/features/mec/settings.php:667
4797
  msgid "While event is not published"
4798
  msgstr "Mientras no se publique el evento"
4799
 
4800
- #: app/features/mec/settings.php:673
4801
  msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
4802
  msgstr ""
4803
  "La nota de evento se muestra en el formulario de presentación de Frontend y "
4804
  "Editar evento en el backend."
4805
 
4806
- #: app/features/mec/settings.php:682 app/libraries/main.php:534
4807
  msgid "User Profile"
4808
  msgstr ""
4809
 
4810
- #: app/features/mec/settings.php:684
4811
  #, php-format
4812
  msgid ""
4813
  "Put %s shortcode into your desired page. Then users are able to see history "
4814
  "of their bookings."
4815
  msgstr ""
4816
 
4817
- #: app/features/mec/settings.php:689 app/libraries/main.php:535
4818
  #, fuzzy
4819
  #| msgid "Search Form"
4820
  msgid "Search Bar"
4821
  msgstr "Formulario de Búsqueda"
4822
 
4823
- #: app/features/mec/settings.php:691
4824
  #, php-format
4825
  msgid ""
4826
  "Put %s shortcode into your desired page. Then users are able to search events"
4827
  msgstr ""
4828
 
4829
- #: app/features/mec/settings.php:695
4830
  msgid "Ajax Live mode"
4831
  msgstr ""
4832
 
4833
- #: app/features/mec/settings.php:699
4834
  msgid "Ajax mode"
4835
  msgstr ""
4836
 
4837
- #: app/features/mec/settings.php:700
4838
  msgid ""
4839
  "if you enable this option, search button disappeared and to use this "
4840
  "feature, text input field must be enabled."
4841
  msgstr ""
4842
 
4843
- #: app/features/mec/settings.php:708
4844
  #, fuzzy
4845
  #| msgid "Modern Style"
4846
  msgid "Modern Type"
4847
  msgstr "Estilo moderno"
4848
 
4849
- #: app/features/mec/settings.php:712
4850
  #, fuzzy
4851
  #| msgid "Search Form"
4852
  msgid "Search bar fields"
4853
  msgstr "Formulario de Búsqueda"
4854
 
4855
- #: app/features/mec/settings.php:754
4856
  #, fuzzy
4857
  #| msgid "Text Input"
4858
  msgid "Text input"
4859
  msgstr "Campo de texto"
4860
 
4861
- #: app/features/mec/settings.php:767
4862
  msgid "Enable Mailchimp Integration"
4863
  msgstr "Activar integración con MailChimp"
4864
 
4865
- #: app/features/mec/settings.php:785 app/features/mec/settings.php:790
4866
  msgid "List ID"
4867
  msgstr "ID de la lista"
4868
 
4869
- #: app/features/mec/settings.php:798 app/features/mec/settings.php:806
4870
  msgid "Subscription Status"
4871
  msgstr "Estado Suscripción"
4872
 
4873
- #: app/features/mec/settings.php:801
4874
  msgid "Subscribe automatically"
4875
  msgstr "Suscribirse automáticamente "
4876
 
4877
- #: app/features/mec/settings.php:802
4878
  msgid "Subscribe by verification"
4879
  msgstr "Suscribirse por verificación"
4880
 
4881
- #: app/features/mec/settings.php:807
4882
  msgid ""
4883
  "If you choose \"Subscribe by verification\" then an email will send to user "
4884
  "by mailchimp for subscription verification."
@@ -4886,57 +4906,57 @@ msgstr ""
4886
  "Si eliges “Suscribir por verificación” entonces un email de verificación de "
4887
  "suscripción se le enviará al usuario."
4888
 
4889
- #: app/features/mec/settings.php:819
4890
  #, fuzzy
4891
  #| msgid "Filter Options"
4892
  msgid "Upload Field Options"
4893
  msgstr "Opciones de filtros"
4894
 
4895
- #: app/features/mec/settings.php:821
4896
  msgid "Mime types"
4897
  msgstr ""
4898
 
4899
- #: app/features/mec/settings.php:825
4900
  msgid "Split mime types with \",\"."
4901
  msgstr ""
4902
 
4903
- #: app/features/mec/settings.php:825
4904
  msgid "Default: jpeg,jpg,png,pdf"
4905
  msgstr ""
4906
 
4907
- #: app/features/mec/settings.php:828
4908
  #, fuzzy
4909
  #| msgid "Maximum Dates"
4910
  msgid "Maximum file size"
4911
  msgstr "Fechas máximas"
4912
 
4913
- #: app/features/mec/settings.php:832
4914
  msgid "The unit is Megabyte \"MB\""
4915
  msgstr ""
4916
 
4917
- #: app/features/mec/single.php:31 app/libraries/main.php:541
4918
  #, fuzzy
4919
  #| msgid "Single Event Style"
4920
  msgid "Single Event Page"
4921
  msgstr "Estilo de evento único"
4922
 
4923
- #: app/features/mec/single.php:33 app/features/mec/single.php:38
4924
  msgid "Single Event Date Format"
4925
  msgstr "Formato de fecha en evento individual"
4926
 
4927
- #: app/features/mec/single.php:46 app/features/mec/single.php:54
4928
  msgid "Date Method"
4929
  msgstr "Método de fecha"
4930
 
4931
- #: app/features/mec/single.php:49
4932
  msgid "Next occurrence date"
4933
  msgstr "Próxima fecha que ocurrirá"
4934
 
4935
- #: app/features/mec/single.php:50
4936
  msgid "Referred date"
4937
  msgstr "Fecha referida"
4938
 
4939
- #: app/features/mec/single.php:55
4940
  #, fuzzy
4941
  #| msgid ""
4942
  #| "\"Referred date\" shows the event date based on referred date in event "
@@ -4947,94 +4967,94 @@ msgstr ""
4947
  "La \"fecha de referencia\" muestra la fecha del evento referido en la lista "
4948
  "de eventos."
4949
 
4950
- #: app/features/mec/single.php:62 app/features/mec/single.php:73
4951
  msgid "Single Event Style"
4952
  msgstr "Estilo de evento único"
4953
 
4954
- #: app/features/mec/single.php:65
4955
  msgid "Default Style"
4956
  msgstr "Estilo por defecto"
4957
 
4958
- #: app/features/mec/single.php:68
4959
  #, fuzzy
4960
  #| msgid "MEC Single Sidebar"
4961
  msgid "Elementor Single Builder"
4962
  msgstr "barra lateral MEC"
4963
 
4964
- #: app/features/mec/single.php:74
4965
  msgid "Choose your single event style."
4966
  msgstr "Elige tu estilo de evento para la página de vista."
4967
 
4968
- #: app/features/mec/single.php:82 app/features/mec/single.php:90
4969
  msgid "Booking Style"
4970
  msgstr ""
4971
 
4972
- #: app/features/mec/single.php:86
4973
  msgid "Modal"
4974
  msgstr ""
4975
 
4976
- #: app/features/mec/single.php:91
4977
  msgid ""
4978
  "Choose your Booking style, Please Note: When you set this feature to modal "
4979
  "you can not see booking box if you set popoup module view on shortcodes"
4980
  msgstr ""
4981
 
4982
- #: app/features/mec/single.php:99
4983
  msgid "Disable Block Editor (Gutenberg)"
4984
  msgstr ""
4985
 
4986
- #: app/features/mec/single.php:102
4987
  msgid "Disable Block Editor"
4988
  msgstr ""
4989
 
4990
- #: app/features/mec/single.php:106
4991
  msgid "Block Editor"
4992
  msgstr ""
4993
 
4994
- #: app/features/mec/single.php:107
4995
  msgid ""
4996
  "If you want to use the new WordPress block editor you should keep this "
4997
  "checkbox unchecked."
4998
  msgstr ""
4999
 
5000
- #: app/features/mec/single.php:113 app/features/mec/single.php:120
5001
  msgid "Breadcrumbs"
5002
  msgstr ""
5003
 
5004
- #: app/features/mec/single.php:116
5005
  msgid "Enable Breadcrumbs."
5006
  msgstr ""
5007
 
5008
- #: app/features/mec/single.php:121
5009
  msgid "Check this option, for showing the breadcrumbs on single event page"
5010
  msgstr ""
5011
 
5012
- #: app/features/mec/single.php:134
5013
  msgid "Show countdown module on event page"
5014
  msgstr "Mostrar módulo de cuenta atrás en la página del evento"
5015
 
5016
- #: app/features/mec/single.php:139
5017
  msgid "Countdown Style"
5018
  msgstr "Estilo de Cuenta Atrás"
5019
 
5020
- #: app/features/mec/single.php:142
5021
  msgid "Plain Style"
5022
  msgstr "Estilo simple"
5023
 
5024
- #: app/features/mec/single.php:143
5025
  msgid "Flip Style"
5026
  msgstr "Estilo Volteado"
5027
 
5028
- #: app/features/mec/single.php:151 app/features/mec/single.php:158
5029
  msgid "Exceptional days"
5030
  msgstr "Días Excepcionales"
5031
 
5032
- #: app/features/mec/single.php:155
5033
  msgid "Show exceptional days option on Add/Edit events page"
5034
  msgstr ""
5035
  "Mostrar opciones de días excepcionales en la página Agregar / Editar eventos"
5036
 
5037
- #: app/features/mec/single.php:159
5038
  #, fuzzy
5039
  #| msgid ""
5040
  #| "Using this option you can include/exclude certain days to/from event "
@@ -5045,11 +5065,11 @@ msgstr ""
5045
  "Usar esta opción permite incluir o excluir ciertos días para la ocurrencia "
5046
  "de eventos."
5047
 
5048
- #: app/features/mec/single.php:168 app/libraries/main.php:544
5049
  msgid "Additional Organizers"
5050
  msgstr "Organizadores adicionales"
5051
 
5052
- #: app/features/mec/single.php:172
5053
  msgid ""
5054
  "Show additional organizers option on Add/Edit events page and single event "
5055
  "page."
@@ -5057,13 +5077,13 @@ msgstr ""
5057
  "Mostrar la opción de organizadores adicionales en la pagina de añadir "
5058
  "eventos y la pagina de evento individual."
5059
 
5060
- #: app/features/mec/single.php:178
5061
  #, fuzzy
5062
  #| msgid "Additional Organizers"
5063
  msgid "Additional locations"
5064
  msgstr "Organizadores adicionales"
5065
 
5066
- #: app/features/mec/single.php:182
5067
  #, fuzzy
5068
  #| msgid ""
5069
  #| "Show additional organizers option on Add/Edit events page and single "
@@ -5075,18 +5095,18 @@ msgstr ""
5075
  "Mostrar la opción de organizadores adicionales en la pagina de añadir "
5076
  "eventos y la pagina de evento individual."
5077
 
5078
- #: app/features/mec/single.php:188 app/libraries/main.php:546
5079
  #: app/skins/single.php:163
5080
  #, fuzzy
5081
  #| msgid "featured event"
5082
  msgid "Related Events"
5083
  msgstr "evento destacado"
5084
 
5085
- #: app/features/mec/single.php:192
5086
  msgid "Display related events based on taxonomy in single event page."
5087
  msgstr ""
5088
 
5089
- #: app/features/mec/single.php:198
5090
  #, fuzzy
5091
  #| msgid "Taxonomies"
5092
  msgid "Select Taxonomies:"
@@ -5186,7 +5206,9 @@ msgid "All videos"
5186
  msgstr "Todos los eventos"
5187
 
5188
  #: app/features/mec/support-page.php:13 app/features/mec/support.php:147
5189
- msgid "View all Articles"
 
 
5190
  msgstr "Ver todos los artículos"
5191
 
5192
  #: app/features/mec/support-page.php:15
@@ -5203,12 +5225,6 @@ msgstr ""
5203
  msgid "Advice and answers from the Webnus Team"
5204
  msgstr ""
5205
 
5206
- #: app/features/mec/support-page.php:34
5207
- #, fuzzy
5208
- #| msgid "Search %s"
5209
- msgid "Search..."
5210
- msgstr "Buscar %s"
5211
-
5212
  #: app/features/mec/support-page.php:46
5213
  msgid "Quick Setup"
5214
  msgstr ""
@@ -5648,8 +5664,8 @@ msgstr "ej. user@yoursite.com"
5648
  msgid "eg. https://webnus.net"
5649
  msgstr "ej. https://webnus.net"
5650
 
5651
- #: app/features/organizers.php:311 app/libraries/main.php:4871
5652
- #: app/skins/single.php:814
5653
  msgid "Other Organizers"
5654
  msgstr "En común"
5655
 
@@ -5665,37 +5681,37 @@ msgstr ""
5665
  msgid "Please %s/%s in order to see your bookings / profile."
5666
  msgstr ""
5667
 
5668
- #: app/features/profile/profile.php:25 app/features/profile/profile.php:87
5669
  msgid "#"
5670
  msgstr ""
5671
 
5672
- #: app/features/profile/profile.php:34 app/libraries/main.php:2908
5673
  msgid "Status"
5674
  msgstr "Estado"
5675
 
5676
- #: app/features/profile/profile.php:37 app/libraries/main.php:2045
5677
  msgid "Attendees"
5678
  msgstr "Asistentes"
5679
 
5680
- #: app/features/profile/profile.php:40
5681
  msgid "Invoice"
5682
  msgstr ""
5683
 
5684
- #: app/features/profile/profile.php:76
5685
  #, php-format
5686
  msgid "<i class=\"mec-sl-eye\"></i> %s"
5687
  msgstr ""
5688
 
5689
- #: app/features/profile/profile.php:96 app/libraries/main.php:2059
5690
- #: app/libraries/main.php:4869
5691
  msgid "Ticket"
5692
  msgstr "Ticket"
5693
 
5694
- #: app/features/profile/profile.php:99
5695
  msgid "Variations"
5696
  msgstr ""
5697
 
5698
- #: app/features/profile/profile.php:142
5699
  msgid "No bookings found!"
5700
  msgstr ""
5701
 
@@ -5724,7 +5740,7 @@ msgstr ""
5724
  #: app/features/search_bar/search_result.php:11
5725
  #: app/libraries/notifications.php:671 app/libraries/render.php:437
5726
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
5727
- #: app/skins/single.php:160 app/skins/single.php:708
5728
  #: app/skins/single/default.php:86 app/skins/single/default.php:298
5729
  #: app/skins/single/m1.php:34 app/skins/single/modern.php:184
5730
  msgid "All of the day"
@@ -5915,31 +5931,31 @@ msgstr "Vista carrusel"
5915
  msgid "Slider View"
5916
  msgstr "Vista del rotativo"
5917
 
5918
- #: app/libraries/main.php:382 app/libraries/main.php:4849
5919
  msgid "SU"
5920
  msgstr "DO"
5921
 
5922
- #: app/libraries/main.php:383 app/libraries/main.php:4850
5923
  msgid "MO"
5924
  msgstr "LU"
5925
 
5926
- #: app/libraries/main.php:384 app/libraries/main.php:4851
5927
  msgid "TU"
5928
  msgstr "MA"
5929
 
5930
- #: app/libraries/main.php:385 app/libraries/main.php:4852
5931
  msgid "WE"
5932
  msgstr "MI"
5933
 
5934
- #: app/libraries/main.php:386 app/libraries/main.php:4853
5935
  msgid "TH"
5936
  msgstr "JU"
5937
 
5938
- #: app/libraries/main.php:387 app/libraries/main.php:4854
5939
  msgid "FR"
5940
  msgstr "VI"
5941
 
5942
- #: app/libraries/main.php:388 app/libraries/main.php:4855
5943
  msgid "SA"
5944
  msgstr "SA"
5945
 
@@ -6177,111 +6193,111 @@ msgstr "Introduce una etiqueta para esta opción"
6177
  msgid "Free"
6178
  msgstr "Gratis"
6179
 
6180
- #: app/libraries/main.php:3515 app/libraries/main.php:5096
6181
  #, fuzzy
6182
  #| msgid "M.E. Calendar"
6183
  msgid "M.E. Calender"
6184
  msgstr "M.E. Calendario"
6185
 
6186
- #: app/libraries/main.php:3670
6187
  #, php-format
6188
  msgid "Copy of %s"
6189
  msgstr "Copia de %s"
6190
 
6191
- #: app/libraries/main.php:4343
6192
  msgid "Booked an event."
6193
  msgstr "Has reservado para un evento."
6194
 
6195
- #: app/libraries/main.php:4384
6196
  #, php-format
6197
  msgid "%s booked %s event."
6198
  msgstr "%s reservado %s evento."
6199
 
6200
- #: app/libraries/main.php:4832
6201
  msgid "Taxonomies"
6202
  msgstr "Taxonomías"
6203
 
6204
- #: app/libraries/main.php:4834
6205
  msgid "Category Plural Label"
6206
  msgstr "Categoría Etiqueta plural"
6207
 
6208
- #: app/libraries/main.php:4835
6209
  msgid "Category Singular Label"
6210
  msgstr "Categoría Etiqueta Singular"
6211
 
6212
- #: app/libraries/main.php:4836
6213
  msgid "Label Plural Label"
6214
  msgstr "Etiqueta plural"
6215
 
6216
- #: app/libraries/main.php:4837
6217
  msgid "Label Singular Label"
6218
  msgstr "Etiqueta singular de la etiqueta"
6219
 
6220
- #: app/libraries/main.php:4837
6221
  msgid "label"
6222
  msgstr "etiqueta"
6223
 
6224
- #: app/libraries/main.php:4838
6225
  msgid "Location Plural Label"
6226
  msgstr "Ubicación Etiqueta plural"
6227
 
6228
- #: app/libraries/main.php:4839
6229
  msgid "Location Singular Label"
6230
  msgstr "Etiqueta de ubicación en singular"
6231
 
6232
- #: app/libraries/main.php:4840
6233
  msgid "Organizer Plural Label"
6234
  msgstr "Etiqueta del organizador en plural"
6235
 
6236
- #: app/libraries/main.php:4841
6237
  msgid "Organizer Singular Label"
6238
  msgstr "Etiqueta Singular del Organizador"
6239
 
6240
- #: app/libraries/main.php:4842
6241
  msgid "Speaker Plural Label"
6242
  msgstr ""
6243
 
6244
- #: app/libraries/main.php:4843
6245
  msgid "Speaker Singular Label"
6246
  msgstr ""
6247
 
6248
- #: app/libraries/main.php:4849
6249
  msgid "Sunday abbreviation"
6250
  msgstr "Abreviatura de Domingo"
6251
 
6252
- #: app/libraries/main.php:4850
6253
  msgid "Monday abbreviation"
6254
  msgstr "Abreviatura de Lunes"
6255
 
6256
- #: app/libraries/main.php:4851
6257
  msgid "Tuesday abbreviation"
6258
  msgstr "Abreviatura de Martes"
6259
 
6260
- #: app/libraries/main.php:4852
6261
  msgid "Wednesday abbreviation"
6262
  msgstr "Abreviatura de Miércoles "
6263
 
6264
- #: app/libraries/main.php:4853
6265
  msgid "Thursday abbreviation"
6266
  msgstr "Abreviatura de Jueves"
6267
 
6268
- #: app/libraries/main.php:4854
6269
  msgid "Friday abbreviation"
6270
  msgstr "Abreviatura de Viernes"
6271
 
6272
- #: app/libraries/main.php:4855
6273
  msgid "Saturday abbreviation"
6274
  msgstr "Abreviatura de Sábado "
6275
 
6276
- #: app/libraries/main.php:4859
6277
  msgid "Others"
6278
  msgstr "Otros"
6279
 
6280
- #: app/libraries/main.php:4861
6281
  msgid "Booking Success Message"
6282
  msgstr "Mensaje de reserva correcta"
6283
 
6284
- #: app/libraries/main.php:4861
6285
  msgid ""
6286
  "Thanks for your booking. Your tickets booked, booking verification might be "
6287
  "needed, please check your email."
@@ -6289,17 +6305,17 @@ msgstr ""
6289
  "Gracias por tu reserva. Tus entradas han sido reservadas, podrías necesitar "
6290
  "una verificación, por favor consulta tu correo."
6291
 
6292
- #: app/libraries/main.php:4862 app/widgets/single.php:131
6293
  msgid "Register Button"
6294
  msgstr "Botón de registro"
6295
 
6296
- #: app/libraries/main.php:4862 app/skins/available_spot/tpl.php:210
6297
  #: app/skins/carousel/render.php:156 app/skins/carousel/render.php:192
6298
  #: app/skins/grid/render.php:118 app/skins/grid/render.php:164
6299
  #: app/skins/grid/render.php:206 app/skins/grid/render.php:234
6300
  #: app/skins/list/render.php:107 app/skins/list/render.php:195
6301
- #: app/skins/masonry/render.php:178 app/skins/single.php:726
6302
- #: app/skins/single.php:729 app/skins/single/default.php:233
6303
  #: app/skins/single/default.php:235 app/skins/single/default.php:445
6304
  #: app/skins/single/default.php:447 app/skins/single/m1.php:126
6305
  #: app/skins/single/m1.php:128 app/skins/single/m2.php:58
@@ -6310,11 +6326,11 @@ msgstr "Botón de registro"
6310
  msgid "REGISTER"
6311
  msgstr "REGISTRO"
6312
 
6313
- #: app/libraries/main.php:4863
6314
  msgid "View Detail Button"
6315
  msgstr "Ver detalle del botón"
6316
 
6317
- #: app/libraries/main.php:4863 app/skins/carousel/render.php:156
6318
  #: app/skins/carousel/render.php:192 app/skins/grid/render.php:118
6319
  #: app/skins/grid/render.php:164 app/skins/grid/render.php:206
6320
  #: app/skins/grid/render.php:234 app/skins/list/render.php:107
@@ -6325,59 +6341,59 @@ msgstr "Ver detalle del botón"
6325
  msgid "View Detail"
6326
  msgstr "Ver detalle"
6327
 
6328
- #: app/libraries/main.php:4864
6329
  msgid "Event Detail Button"
6330
  msgstr "Botón de detalle del evento"
6331
 
6332
- #: app/libraries/main.php:4864 app/skins/countdown/tpl.php:224
6333
  msgid "Event Detail"
6334
  msgstr "Detalle del evento"
6335
 
6336
- #: app/libraries/main.php:4866
6337
  msgid "More Info Link"
6338
  msgstr "Enlace a Más Información"
6339
 
6340
- #: app/libraries/main.php:4869
6341
  msgid "Ticket (Singular)"
6342
  msgstr "Entrada (Singular)"
6343
 
6344
- #: app/libraries/main.php:4870
6345
  msgid "Tickets (Plural)"
6346
  msgstr "Entradas (Plural)"
6347
 
6348
- #: app/libraries/main.php:4956
6349
  msgid "EventON"
6350
  msgstr "EventON"
6351
 
6352
- #: app/libraries/main.php:4957
6353
  msgid "The Events Calendar"
6354
  msgstr "The Events Calendar"
6355
 
6356
- #: app/libraries/main.php:4958
6357
  msgid "Events Schedule WP Plugin"
6358
  msgstr "Events Schedule WP Plugin"
6359
 
6360
- #: app/libraries/main.php:4959
6361
  msgid "Calendarize It"
6362
  msgstr "Ponlo al calendario"
6363
 
6364
- #: app/libraries/main.php:5033 app/libraries/main.php:5053
6365
  msgid "Confirmed"
6366
  msgstr ""
6367
 
6368
- #: app/libraries/main.php:5034 app/libraries/main.php:5061
6369
  msgid "Rejected"
6370
  msgstr ""
6371
 
6372
- #: app/libraries/main.php:5035 app/libraries/main.php:5057
6373
  msgid "Pending"
6374
  msgstr ""
6375
 
6376
- #: app/libraries/main.php:5083
6377
  msgid "Waiting"
6378
  msgstr ""
6379
 
6380
- #: app/libraries/main.php:5288 app/libraries/render.php:367
6381
  msgid "Skin controller does not exist."
6382
  msgstr "No existe skin controller."
6383
 
@@ -6508,7 +6524,7 @@ msgstr "Dirección de…"
6508
  msgid "Get Directions"
6509
  msgstr "Cómo llegar"
6510
 
6511
- #: app/modules/links/details.php:17 app/skins/single.php:426
6512
  msgid "Share this event"
6513
  msgstr "Compartir este evento"
6514
 
@@ -6535,7 +6551,7 @@ msgstr "Siguiente repetición"
6535
  msgid "Go to occurrence page"
6536
  msgstr "Ir a la página de repetición"
6537
 
6538
- #: app/modules/next-event/details.php:95 app/skins/single.php:702
6539
  #: app/skins/single/default.php:80 app/skins/single/default.php:292
6540
  #: app/skins/single/m1.php:28 app/skins/single/modern.php:178
6541
  msgid "Time"
@@ -6592,16 +6608,17 @@ msgid "Visibility"
6592
  msgstr "Visibilidad"
6593
 
6594
  #: app/skins/agenda/tpl.php:65 app/skins/agenda/tpl.php:69
6595
- #: app/skins/carousel/tpl.php:45 app/skins/grid/tpl.php:61
 
6596
  #: app/skins/grid/tpl.php:65 app/skins/list/tpl.php:66
6597
  #: app/skins/list/tpl.php:70 app/skins/masonry/tpl.php:61
6598
  #: app/skins/masonry/tpl.php:65 app/skins/slider/tpl.php:43
6599
  msgid "No event found!"
6600
  msgstr "¡No hay eventos!"
6601
 
6602
- #: app/skins/agenda/tpl.php:74 app/skins/grid/tpl.php:70
6603
- #: app/skins/list/tpl.php:75 app/skins/masonry/tpl.php:70
6604
- #: app/skins/yearly_view/render.php:124
6605
  msgid "Load More"
6606
  msgstr "Cargar más"
6607
 
@@ -6669,27 +6686,27 @@ msgstr "Sin eventos"
6669
  msgid "Home"
6670
  msgstr ""
6671
 
6672
- #: app/skins/single.php:509 app/skins/single/default.php:43
6673
  #: app/skins/single/m1.php:247 app/skins/single/m2.php:174
6674
  #: app/skins/single/modern.php:256
6675
  msgid "Sold out!"
6676
  msgstr "¡Agotado!"
6677
 
6678
- #: app/skins/single.php:774 app/skins/single.php:829
6679
  #: app/skins/single/default.php:205 app/skins/single/default.php:417
6680
  #: app/skins/single/m1.php:100 app/skins/single/m2.php:32
6681
  #: app/skins/single/modern.php:41
6682
  msgid "Phone"
6683
  msgstr "Teléfono"
6684
 
6685
- #: app/skins/single.php:788 app/skins/single.php:843
6686
  #: app/skins/single/default.php:219 app/skins/single/default.php:431
6687
  #: app/skins/single/m1.php:114 app/skins/single/m2.php:46
6688
  #: app/skins/single/modern.php:55
6689
  msgid "Website"
6690
  msgstr "Web"
6691
 
6692
- #: app/skins/single.php:913
6693
  msgid "Speakers:"
6694
  msgstr ""
6695
 
@@ -7102,6 +7119,9 @@ msgstr "http://webnus.net"
7102
  #~ msgid "Organizer Payment Credentials"
7103
  #~ msgstr "Nombre del organizador del evento reservado"
7104
 
 
 
 
7105
  #~ msgid "upgrade"
7106
  #~ msgstr "actualización"
7107
 
4
  msgstr ""
5
  "Project-Id-Version: Plugins - Modern Events Calendar Lite - Stable (latest "
6
  "release)\n"
7
+ "POT-Creation-Date: 2019-09-18 14:18+0430\n"
8
+ "PO-Revision-Date: 2019-09-18 14:22+0430\n"
9
  "Last-Translator: \n"
10
  "Language-Team: \n"
11
  "Language: es\n"
60
  msgstr "Seleccionar tipo"
61
 
62
  #: app/features/colors.php:50 app/features/fes/form.php:794
63
+ #: app/features/mec/settings.php:600
64
  msgid "Event Color"
65
  msgstr "Color del evento"
66
 
70
  msgid "Settings"
71
  msgstr "Ajustes"
72
 
73
+ #: app/features/contextual.php:62 app/features/events.php:2410
74
+ #: app/features/mec/booking.php:412 app/features/mec/support.php:29
75
  #: app/libraries/main.php:554
76
  msgid "Booking Form"
77
  msgstr "Formulario de Reservas"
91
  "www.youtube.com/embed/YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></"
92
  "iframe>"
93
 
94
+ #: app/features/contextual.php:70 app/features/mec/booking.php:530
95
  #: app/features/mec/support.php:36 app/libraries/main.php:555
96
  msgid "Payment Gateways"
97
  msgstr "Pasarelas de pago"
186
  "width=\"854\" height=\"420\" src=\"https://www.youtube.com/embed/dqgt1b8X8hs"
187
  "\" frameborder=\"0\" allowfullscreen></iframe>"
188
 
189
+ #: app/features/contextual.php:117 app/features/mec/settings.php:52
190
  #: app/libraries/main.php:528
191
  msgid "General Options"
192
  msgstr "Opciones generales"
193
 
194
+ #: app/features/contextual.php:139 app/features/mec/settings.php:384
195
  #: app/libraries/main.php:530
196
  msgid "Slugs/Permalinks"
197
  msgstr "Enlaces permanentes"
200
  msgid "Event Details/Single Event Page"
201
  msgstr "Detalles del Evento/Página de Evento Único"
202
 
203
+ #: app/features/contextual.php:166 app/features/mec/settings.php:416
204
  #: app/libraries/main.php:531
205
  msgid "Currency Options"
206
  msgstr "Opciones de moneda"
207
 
208
+ #: app/features/contextual.php:182 app/features/mec/modules.php:67
209
+ #: app/features/mec/modules.php:85 app/libraries/main.php:560
210
  msgid "Google Maps Options"
211
  msgstr "Opciones de Google Maps"
212
 
213
+ #: app/features/contextual.php:244 app/features/mec/settings.php:473
214
  #: app/libraries/main.php:532
215
  msgid "Google Recaptcha Options"
216
  msgstr "Opciones de Google Recaptcha"
217
 
218
+ #: app/features/contextual.php:258 app/features/mec/single.php:133
219
  #: app/libraries/main.php:542
220
  msgid "Countdown Options"
221
  msgstr "Opciones de cuenta atrás"
222
 
223
+ #: app/features/contextual.php:268 app/features/mec/modules.php:263
224
  #: app/libraries/main.php:565
225
  msgid "Social Networks"
226
  msgstr "Redes Sociales"
229
  msgid "Next Event Module"
230
  msgstr "Módulo de Siguiente Evento"
231
 
232
+ #: app/features/contextual.php:286 app/features/mec/settings.php:509
233
  #: app/libraries/main.php:533
234
  msgid "Frontend Event Submission"
235
  msgstr "Presentación del evento Frontend"
236
 
237
+ #: app/features/contextual.php:298 app/features/events.php:1174
238
  #: app/libraries/main.php:543
239
  msgid "Exceptional Days"
240
  msgstr "Días excepcionales"
241
 
242
+ #: app/features/contextual.php:308 app/features/events.php:297
243
+ #: app/features/mec/booking.php:88 app/features/mec/notifications.php:31
244
  #: app/libraries/main.php:550 app/libraries/main.php:571
245
  #: app/libraries/main.php:652
246
  msgid "Booking"
247
  msgstr "Reserva"
248
 
249
+ #: app/features/contextual.php:318 app/features/mec/booking.php:234
250
  #: app/libraries/main.php:551
251
  msgid "Coupons"
252
  msgstr "Cupones"
253
 
254
+ #: app/features/contextual.php:326 app/features/mec/modules.php:324
255
  #: app/libraries/main.php:567
256
  msgid "BuddyPress Integration"
257
  msgstr "Integración de BuddyPress"
258
 
259
+ #: app/features/contextual.php:334 app/features/mec/settings.php:766
260
  #: app/libraries/main.php:536
261
  msgid "Mailchimp Integration"
262
  msgstr "Integración de MailChimp"
265
  msgid "MEC Activation"
266
  msgstr "Activación MEC"
267
 
268
+ #: app/features/events.php:149 app/features/ix/export.php:34
269
  #: app/features/mec/dashboard.php:229 app/skins/daily_view/tpl.php:79
270
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
271
  msgid "Events"
272
  msgstr "Eventos"
273
 
274
+ #: app/features/events.php:150
275
+ #: app/features/mec/meta_boxes/display_options.php:921
276
+ #: app/features/mec/meta_boxes/display_options.php:977
277
+ #: app/features/mec/meta_boxes/display_options.php:1012
278
+ #: app/features/profile/profile.php:29 app/skins/daily_view/tpl.php:80
279
  #: app/skins/monthly_view/tpl.php:71 app/skins/yearly_view/tpl.php:69
280
  msgid "Event"
281
  msgstr "Evento"
282
 
283
+ #: app/features/events.php:151 app/features/mec.php:333
284
  msgid "Add Event"
285
  msgstr "Nuevo evento"
286
 
287
+ #: app/features/events.php:152 app/features/mec/dashboard.php:134
288
  msgid "Add New Event"
289
  msgstr "Añadir nuevo evento"
290
 
291
+ #: app/features/events.php:153 app/features/ix.php:3122
292
  #: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:57
293
  msgid "No events found!"
294
  msgstr "No hay eventos"
295
 
296
+ #: app/features/events.php:154
297
  msgid "All Events"
298
  msgstr "Todos los eventos"
299
 
300
+ #: app/features/events.php:155
301
  msgid "Edit Event"
302
  msgstr "Editar Evento"
303
 
304
+ #: app/features/events.php:156
305
  msgid "View Event"
306
  msgstr "Ver evento"
307
 
308
+ #: app/features/events.php:157
309
  msgid "No events found in Trash!"
310
  msgstr "No hay eventos en la papelera"
311
 
312
+ #: app/features/events.php:174 app/features/events.php:3215
313
+ #: app/features/mec/meta_boxes/display_options.php:832
314
  #: app/features/mec/meta_boxes/search_form.php:31
315
  #: app/features/mec/meta_boxes/search_form.php:93
316
  #: app/features/mec/meta_boxes/search_form.php:155
321
  #: app/features/mec/meta_boxes/search_form.php:453
322
  #: app/features/mec/meta_boxes/search_form.php:514
323
  #: app/features/mec/meta_boxes/search_form.php:575
324
+ #: app/features/mec/settings.php:719 app/features/mec/single.php:204
325
+ #: app/libraries/main.php:4845 app/libraries/skins.php:808
326
+ #: app/skins/single.php:559 app/skins/single/default.php:170
327
  #: app/skins/single/default.php:382 app/skins/single/m1.php:170
328
  #: app/skins/single/m2.php:102 app/skins/single/modern.php:110
329
  msgid "Category"
330
  msgstr "Categoría"
331
 
332
+ #: app/features/events.php:175 app/features/events.php:3186
333
  #: app/features/fes/form.php:745 app/features/mec.php:335
334
+ #: app/features/mec/meta_boxes/filter.php:81 app/libraries/main.php:4844
335
  msgid "Categories"
336
  msgstr "Categorías"
337
 
338
+ #: app/features/events.php:185 app/features/labels.php:71
339
  #: app/features/locations.php:69 app/features/organizers.php:69
340
  #: app/features/speakers.php:70
341
  #, php-format
342
  msgid "All %s"
343
  msgstr "Todos %s"
344
 
345
+ #: app/features/events.php:186 app/features/labels.php:72
346
  #: app/features/locations.php:70 app/features/organizers.php:70
347
  #: app/features/speakers.php:71
348
  #, php-format
349
  msgid "Edit %s"
350
  msgstr "Editar %s"
351
 
352
+ #: app/features/events.php:187 app/features/labels.php:73
353
  #: app/features/locations.php:71 app/features/organizers.php:71
354
  #: app/features/speakers.php:72
355
  #, php-format
356
  msgid "View %s"
357
  msgstr "Ver %s"
358
 
359
+ #: app/features/events.php:188 app/features/labels.php:74
360
  #: app/features/locations.php:72 app/features/organizers.php:72
361
  #: app/features/speakers.php:73
362
  #, php-format
363
  msgid "Update %s"
364
  msgstr "Actualizar %s"
365
 
366
+ #: app/features/events.php:189 app/features/labels.php:75
367
  #: app/features/locations.php:73 app/features/organizers.php:73
368
  #: app/features/speakers.php:74
369
  #, php-format
370
  msgid "Add New %s"
371
  msgstr "Añadir nuevo %s"
372
 
373
+ #: app/features/events.php:190 app/features/labels.php:76
374
  #: app/features/locations.php:74 app/features/organizers.php:74
375
  #: app/features/speakers.php:75
376
  #, php-format
377
  msgid "New %s Name"
378
  msgstr "Nuevo %s Nombre"
379
 
380
+ #: app/features/events.php:191 app/features/labels.php:77
381
  #: app/features/locations.php:75 app/features/organizers.php:75
382
  #: app/features/speakers.php:76
383
  #, php-format
384
  msgid "Popular %s"
385
  msgstr "Popular %s"
386
 
387
+ #: app/features/events.php:192 app/features/labels.php:78
388
  #: app/features/locations.php:76 app/features/organizers.php:76
389
  #: app/features/speakers.php:77
390
  #, php-format
391
  msgid "Search %s"
392
  msgstr "Buscar %s"
393
 
394
+ #: app/features/events.php:217 app/features/events.php:238
395
  msgid "Category Icon"
396
  msgstr "Icono de categoría"
397
 
398
+ #: app/features/events.php:220 app/features/events.php:243
399
  msgid "Select icon"
400
  msgstr "Seleccionar icono"
401
 
402
+ #: app/features/events.php:292
403
  msgid "Event Details"
404
  msgstr "Detalle de evento"
405
 
406
+ #: app/features/events.php:451
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
407
  msgid "Note for reviewer"
408
  msgstr "Nota para el encargado"
409
 
410
+ #: app/features/events.php:460
411
  msgid "Guest Data"
412
  msgstr "Datos del invitado"
413
 
414
+ #: app/features/events.php:461 app/features/events.php:2392
415
  #: app/features/fes/form.php:668 app/features/labels.php:178
416
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
417
+ #: app/features/profile/profile.php:91 app/libraries/notifications.php:805
418
  #: app/modules/booking/steps/form.php:37
419
  msgid "Name"
420
  msgstr "Nombre"
421
 
422
+ #: app/features/events.php:462 app/features/events.php:2403
423
+ #: app/features/events.php:2479 app/features/fes/form.php:664
424
+ #: app/features/mec/booking.php:57 app/features/mec/booking.php:463
425
  #: app/features/organizers.php:111 app/features/organizers.php:152
426
+ #: app/features/profile/profile.php:94 app/features/speakers.php:124
427
  #: app/features/speakers.php:184 app/libraries/main.php:1471
428
  #: app/libraries/main.php:1537 app/libraries/main.php:2582
429
  #: app/libraries/notifications.php:806 app/modules/booking/steps/form.php:46
430
+ #: app/modules/booking/steps/form.php:84 app/skins/single.php:812
431
+ #: app/skins/single.php:867 app/skins/single/default.php:212
432
  #: app/skins/single/default.php:424 app/skins/single/m1.php:107
433
  #: app/skins/single/m2.php:39 app/skins/single/modern.php:48
434
  msgid "Email"
435
  msgstr "Correo electrónico"
436
 
437
+ #: app/features/events.php:467 app/features/fes/form.php:232
438
  msgid "Date and Time"
439
  msgstr "Día y hora"
440
 
441
+ #: app/features/events.php:470 app/features/events.php:476
442
+ #: app/features/events.php:3218 app/features/events.php:3408
443
+ #: app/features/events.php:3450 app/features/fes/form.php:236
444
  #: app/features/fes/form.php:240 app/features/ix.php:2743
445
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:38
446
  #: app/features/mec/dashboard.php:373
447
+ #: app/features/mec/meta_boxes/display_options.php:48
448
+ #: app/features/mec/meta_boxes/display_options.php:189
449
+ #: app/features/mec/meta_boxes/display_options.php:341
450
+ #: app/features/mec/meta_boxes/display_options.php:396
451
+ #: app/features/mec/meta_boxes/display_options.php:519
452
+ #: app/features/mec/meta_boxes/display_options.php:573
453
+ #: app/features/mec/meta_boxes/display_options.php:620
454
+ #: app/features/mec/meta_boxes/display_options.php:653
455
+ #: app/features/mec/meta_boxes/display_options.php:688
456
+ #: app/features/mec/meta_boxes/display_options.php:734
457
+ #: app/features/mec/meta_boxes/display_options.php:800
458
+ #: app/features/mec/meta_boxes/display_options.php:1035
459
+ #: app/features/mec/meta_boxes/display_options.php:1122
460
  msgid "Start Date"
461
  msgstr "Día de inicio"
462
 
463
+ #: app/features/events.php:548 app/features/events.php:640
464
+ #: app/features/events.php:1706 app/features/events.php:1765
465
+ #: app/features/events.php:1938 app/features/events.php:1977
466
  #: app/features/fes/form.php:268 app/features/fes/form.php:308
467
  msgid "AM"
468
  msgstr "AM"
469
 
470
+ #: app/features/events.php:555 app/features/events.php:647
471
+ #: app/features/events.php:1713 app/features/events.php:1772
472
+ #: app/features/events.php:1939 app/features/events.php:1978
473
  #: app/features/fes/form.php:269 app/features/fes/form.php:309
474
  msgid "PM"
475
  msgstr "PM"
476
 
477
+ #: app/features/events.php:562 app/features/events.php:567
478
+ #: app/features/events.php:3219 app/features/events.php:3408
479
+ #: app/features/events.php:3450 app/features/fes/form.php:276
480
  #: app/features/fes/form.php:280 app/features/ix.php:2743
481
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:44
482
  #: app/features/mec/dashboard.php:374
483
  msgid "End Date"
484
  msgstr "Día final"
485
 
486
+ #: app/features/events.php:661 app/features/fes/form.php:315
487
  msgid "All Day Event"
488
  msgstr "Evento de todo el día"
489
 
490
+ #: app/features/events.php:671 app/features/fes/form.php:318
491
  msgid "Hide Event Time"
492
  msgstr "Ocultar hora del evento"
493
 
494
+ #: app/features/events.php:681 app/features/fes/form.php:321
495
  msgid "Hide Event End Time"
496
  msgstr "Oculta la hora de finalización del evento"
497
 
498
+ #: app/features/events.php:686 app/features/events.php:690
499
  #: app/features/fes/form.php:325
500
  msgid "Time Comment"
501
  msgstr "Tiempo para comentar"
502
 
503
+ #: app/features/events.php:691 app/features/fes/form.php:326
504
  #, fuzzy
505
  #| msgid ""
506
  #| "It shows next to event time on calendar. You can insert Timezone etc. in "
512
  "Muestra la hora del siguiente evento en el calendario. Puedes insertar Zona "
513
  "horaria, etc en este campo."
514
 
515
+ #: app/features/events.php:693 app/features/events.php:826
516
+ #: app/features/events.php:1126 app/features/events.php:1193
517
+ #: app/features/events.php:1492 app/features/events.php:1583
518
+ #: app/features/events.php:1794 app/features/events.php:1809
519
+ #: app/features/events.php:1997 app/features/events.php:2010
520
+ #: app/features/events.php:2140 app/features/events.php:2176
521
+ #: app/features/events.php:2274 app/features/events.php:2289
522
+ #: app/features/events.php:2319 app/features/events.php:2332
523
  #: app/features/fes/form.php:630 app/features/locations.php:299
524
+ #: app/features/mec/booking.php:108 app/features/mec/booking.php:145
525
+ #: app/features/mec/booking.php:161 app/features/mec/booking.php:279
526
+ #: app/features/mec/booking.php:308 app/features/mec/booking.php:356
527
+ #: app/features/mec/booking.php:366 app/features/mec/booking.php:388
528
+ #: app/features/mec/booking.php:398 app/features/mec/dashboard.php:71
529
+ #: app/features/mec/meta_boxes/display_options.php:66
530
+ #: app/features/mec/meta_boxes/display_options.php:79
531
+ #: app/features/mec/meta_boxes/display_options.php:92
532
+ #: app/features/mec/meta_boxes/display_options.php:103
533
+ #: app/features/mec/meta_boxes/display_options.php:115
534
+ #: app/features/mec/meta_boxes/display_options.php:207
535
+ #: app/features/mec/meta_boxes/display_options.php:219
536
+ #: app/features/mec/meta_boxes/display_options.php:231
537
+ #: app/features/mec/meta_boxes/display_options.php:244
538
+ #: app/features/mec/meta_boxes/display_options.php:255
539
+ #: app/features/mec/meta_boxes/display_options.php:268
540
+ #: app/features/mec/meta_boxes/display_options.php:279
541
+ #: app/features/mec/meta_boxes/display_options.php:360
542
+ #: app/features/mec/meta_boxes/display_options.php:536
543
+ #: app/features/mec/meta_boxes/display_options.php:819
544
+ #: app/features/mec/meta_boxes/display_options.php:892
545
+ #: app/features/mec/meta_boxes/display_options.php:904
546
+ #: app/features/mec/meta_boxes/display_options.php:915
547
+ #: app/features/mec/meta_boxes/display_options.php:947
548
+ #: app/features/mec/meta_boxes/display_options.php:958
549
+ #: app/features/mec/meta_boxes/display_options.php:971
550
+ #: app/features/mec/meta_boxes/display_options.php:1006
551
+ #: app/features/mec/meta_boxes/display_options.php:1055
552
+ #: app/features/mec/meta_boxes/display_options.php:1066
553
+ #: app/features/mec/meta_boxes/display_options.php:1077
554
+ #: app/features/mec/meta_boxes/display_options.php:1142
555
+ #: app/features/mec/meta_boxes/display_options.php:1155
556
+ #: app/features/mec/meta_boxes/display_options.php:1168
557
+ #: app/features/mec/meta_boxes/display_options.php:1181
558
+ #: app/features/mec/meta_boxes/display_options.php:1194
559
+ #: app/features/mec/modules.php:53 app/features/mec/modules.php:86
560
+ #: app/features/mec/modules.php:103 app/features/mec/modules.php:138
561
+ #: app/features/mec/modules.php:154 app/features/mec/modules.php:312
562
  #: app/features/mec/notifications.php:50 app/features/mec/notifications.php:107
563
  #: app/features/mec/notifications.php:159
564
  #: app/features/mec/notifications.php:218
565
  #: app/features/mec/notifications.php:286
566
  #: app/features/mec/notifications.php:349
567
  #: app/features/mec/notifications.php:360
568
+ #: app/features/mec/notifications.php:422 app/features/mec/settings.php:66
569
+ #: app/features/mec/settings.php:85 app/features/mec/settings.php:112
570
+ #: app/features/mec/settings.php:147 app/features/mec/settings.php:168
571
+ #: app/features/mec/settings.php:188 app/features/mec/settings.php:265
572
+ #: app/features/mec/settings.php:339 app/features/mec/settings.php:356
573
+ #: app/features/mec/settings.php:373 app/features/mec/settings.php:392
574
+ #: app/features/mec/settings.php:406 app/features/mec/settings.php:434
575
+ #: app/features/mec/settings.php:521 app/features/mec/settings.php:659
576
+ #: app/features/mec/settings.php:676 app/features/mec/settings.php:781
577
+ #: app/features/mec/settings.php:794 app/features/mec/settings.php:810
578
+ #: app/features/mec/single.php:42 app/features/mec/single.php:58
579
+ #: app/features/mec/single.php:77 app/features/mec/single.php:94
580
+ #: app/features/mec/single.php:110 app/features/mec/single.php:124
581
+ #: app/features/mec/single.php:162 app/features/mec/styling.php:199
582
  #: app/features/mec/styling.php:216 app/features/mec/styling.php:229
583
+ #: app/features/organizers.php:272 app/skins/single.php:657
584
  #: app/skins/single/default.php:119 app/skins/single/default.php:331
585
  #: app/skins/single/m1.php:192 app/skins/single/m2.php:125
586
  #: app/skins/single/modern.php:133
587
  msgid "Read More"
588
  msgstr "Leer más"
589
 
590
+ #: app/features/events.php:701
591
+ #, fuzzy
592
+ #| msgid "Repeat"
593
+ msgid "Repeating"
594
+ msgstr "Repetir"
595
+
596
+ #: app/features/events.php:710 app/features/fes/form.php:332
597
  msgid "Event Repeating"
598
  msgstr "Repetir el evento"
599
 
600
+ #: app/features/events.php:714 app/features/fes/form.php:336
601
  msgid "Repeats"
602
  msgstr "Repeticiones"
603
 
604
+ #: app/features/events.php:722 app/features/fes/form.php:338
605
  #: app/features/mec/dashboard.php:376 app/skins/full_calendar/tpl.php:109
606
  msgid "Daily"
607
  msgstr "Diariamente"
608
 
609
+ #: app/features/events.php:729 app/features/fes/form.php:339
610
  msgid "Every Weekday"
611
  msgstr "Cada día de la semana"
612
 
613
+ #: app/features/events.php:736 app/features/fes/form.php:340
614
  msgid "Every Weekend"
615
  msgstr "Cada fin de semana"
616
 
617
+ #: app/features/events.php:743 app/features/fes/form.php:341
618
  msgid "Certain Weekdays"
619
  msgstr "Ciertos días de la semana"
620
 
621
+ #: app/features/events.php:750 app/features/fes/form.php:342
622
  #: app/skins/full_calendar/tpl.php:108
623
  msgid "Weekly"
624
  msgstr "Semanal"
625
 
626
+ #: app/features/events.php:757 app/features/fes/form.php:343
627
  #: app/features/mec/dashboard.php:377 app/skins/full_calendar/tpl.php:107
628
  msgid "Monthly"
629
  msgstr "Mensual"
630
 
631
+ #: app/features/events.php:764 app/features/fes/form.php:344
632
  #: app/features/mec/dashboard.php:378 app/skins/full_calendar/tpl.php:106
633
  msgid "Yearly"
634
  msgstr "Anual"
635
 
636
+ #: app/features/events.php:771 app/features/fes/form.php:345
637
  msgid "Custom Days"
638
  msgstr "Días personalizados"
639
 
640
+ #: app/features/events.php:778 app/features/fes/form.php:346
641
  #, fuzzy
642
  #| msgid "Advanced Method"
643
  msgid "Advanced"
644
  msgstr "Método avanzado"
645
 
646
+ #: app/features/events.php:783 app/features/fes/form.php:350
647
  msgid "Repeat Interval"
648
  msgstr "Intervalo de repetición"
649
 
650
+ #: app/features/events.php:785 app/features/fes/form.php:351
651
  msgid "Repeat interval"
652
  msgstr "Intervalo de repetición"
653
 
654
+ #: app/features/events.php:789 app/features/fes/form.php:354
655
  msgid "Week Days"
656
  msgstr "Días de semana"
657
 
658
+ #: app/features/events.php:791 app/features/fes/form.php:355
659
+ #: app/features/mec/meta_boxes/display_options.php:764
660
  #: app/libraries/main.php:407
661
  msgid "Monday"
662
  msgstr "Lunes"
663
 
664
+ #: app/features/events.php:794 app/features/fes/form.php:356
665
+ #: app/features/mec/meta_boxes/display_options.php:765
666
  #: app/libraries/main.php:407
667
  msgid "Tuesday"
668
  msgstr "Martes"
669
 
670
+ #: app/features/events.php:797 app/features/fes/form.php:357
671
+ #: app/features/mec/meta_boxes/display_options.php:766
672
  #: app/libraries/main.php:407
673
  msgid "Wednesday"
674
  msgstr "Miércoles"
675
 
676
+ #: app/features/events.php:800 app/features/fes/form.php:358
677
+ #: app/features/mec/meta_boxes/display_options.php:767
678
  #: app/libraries/main.php:407
679
  msgid "Thursday"
680
  msgstr "Jueves"
681
 
682
+ #: app/features/events.php:803 app/features/fes/form.php:359
683
+ #: app/features/mec/meta_boxes/display_options.php:768
684
  #: app/libraries/main.php:407
685
  msgid "Friday"
686
  msgstr "Viernes"
687
 
688
+ #: app/features/events.php:806 app/features/fes/form.php:360
689
+ #: app/features/mec/meta_boxes/display_options.php:769
690
  #: app/libraries/main.php:407
691
  msgid "Saturday"
692
  msgstr "Sábado"
693
 
694
+ #: app/features/events.php:809 app/features/fes/form.php:361
695
+ #: app/features/mec/meta_boxes/display_options.php:763
696
  #: app/libraries/main.php:407
697
  msgid "Sunday"
698
  msgstr "Domingo"
699
 
700
+ #: app/features/events.php:816 app/features/events.php:1857
701
+ #: app/features/events.php:1885 app/features/events.php:2044
702
  #: app/features/fes/form.php:366 app/features/ix/import_f_calendar.php:42
703
  #: app/features/ix/import_g_calendar.php:51
704
  #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
705
  msgid "Start"
706
  msgstr "Inicio"
707
 
708
+ #: app/features/events.php:818 app/features/events.php:1861
709
+ #: app/features/events.php:1889 app/features/events.php:2048
710
  #: app/features/fes/form.php:367
711
  msgid "End"
712
  msgstr ""
713
 
714
+ #: app/features/events.php:820 app/features/events.php:1187
715
+ #: app/features/events.php:1298 app/features/events.php:1403
716
+ #: app/features/events.php:1641 app/features/events.php:1840
717
+ #: app/features/events.php:2033 app/features/events.php:2113
718
+ #: app/features/events.php:2246 app/features/fes/form.php:368
719
  #: app/features/fes/form.php:842
720
  msgid "Add"
721
  msgstr "Añadir"
722
 
723
+ #: app/features/events.php:823
724
  #, fuzzy
725
  #| msgid "Custom Days"
726
  msgid "Custom Days Repeating"
727
  msgstr "Días personalizados"
728
 
729
+ #: app/features/events.php:824
730
  msgid ""
731
  "Add certain days to event occurrence dates. If you have single day event, "
732
  "start and end date should be the same, If you have multiple day event the "
733
  "start and end dates must be commensurate with the initial date."
734
  msgstr ""
735
 
736
+ #: app/features/events.php:860 app/features/fes/form.php:394
737
  #, fuzzy
738
  #| msgid "Ticket name"
739
  msgid "First"
740
  msgstr "Nombre de la entrada"
741
 
742
+ #: app/features/events.php:902 app/features/fes/form.php:436
743
  #, fuzzy
744
  #| msgid "second"
745
  msgid "Second"
746
  msgstr "segundo"
747
 
748
+ #: app/features/events.php:944 app/features/fes/form.php:478
749
  #, fuzzy
750
  #| msgid "Third Party"
751
  msgid "Third"
752
  msgstr "Terceros"
753
 
754
+ #: app/features/events.php:986 app/features/fes/form.php:520
755
  msgid "Fourth"
756
  msgstr ""
757
 
758
+ #: app/features/events.php:1028 app/features/fes/form.php:562
759
  #, fuzzy
760
  #| msgid "Last Year"
761
  msgid "Last"
762
  msgstr "Año pasado"
763
 
764
+ #: app/features/events.php:1075 app/features/fes/form.php:608
765
  msgid "Ends Repeat"
766
  msgstr "Finaliza la repetición"
767
 
768
+ #: app/features/events.php:1087 app/features/fes/form.php:612
769
  msgid "Never"
770
  msgstr "Nunca"
771
 
772
+ #: app/features/events.php:1099 app/features/fes/form.php:617
773
  msgid "On"
774
  msgstr "On"
775
 
776
+ #: app/features/events.php:1115 app/features/fes/form.php:624
777
  msgid "After"
778
  msgstr "Después"
779
 
780
+ #: app/features/events.php:1119 app/features/events.php:1123
781
  #: app/features/fes/form.php:626 app/features/fes/form.php:629
782
  msgid "Occurrences times"
783
  msgstr "Ocurrencias del evento"
784
 
785
+ #: app/features/events.php:1124 app/features/fes/form.php:630
786
  msgid ""
787
  "The event will finish after certain repeats. For example if you set it to "
788
  "10, the event will finish after 10 repeats."
790
  "El evento finalizará después de ciertas repeticiones. Por ejemplo, si "
791
  "estableces en 10, el evento terminará después de 10 repeticiones."
792
 
793
+ #: app/features/events.php:1149 app/features/events.php:3408
794
+ #: app/features/events.php:3450 app/features/fes/form.php:706
795
+ #: app/features/ix.php:2743 app/features/ix.php:2784
796
+ #: app/features/mec/settings.php:576 app/libraries/main.php:4877
797
+ #: app/widgets/single.php:103
798
+ msgid "Event Cost"
799
+ msgstr "Coste del evento"
800
+
801
+ #: app/features/events.php:1153 app/features/fes/form.php:709
802
+ #: app/libraries/main.php:4878 app/skins/single.php:582
803
+ #: app/skins/single/default.php:104 app/skins/single/default.php:316
804
+ #: app/skins/single/m1.php:49 app/skins/single/modern.php:199
805
+ msgid "Cost"
806
+ msgstr "Coste"
807
+
808
+ #: app/features/events.php:1180 app/features/events.php:1190
809
  msgid "Exclude certain days"
810
  msgstr "Excluir ciertos días"
811
 
812
+ #: app/features/events.php:1185 app/features/events.php:2480
813
+ #: app/features/mec/booking.php:464 app/features/profile/profile.php:32
814
  #: app/libraries/main.php:2030 app/libraries/main.php:2640
815
  #: app/modules/booking/steps/tickets.php:22
816
+ #: app/modules/next-event/details.php:90 app/skins/single.php:637
817
  #: app/skins/single/default.php:68 app/skins/single/default.php:280
818
  #: app/skins/single/m1.php:16 app/skins/single/modern.php:166
819
  msgid "Date"
820
  msgstr "Fecha"
821
 
822
+ #: app/features/events.php:1191
823
  msgid ""
824
  "Exclude certain days from event occurrence dates. Please note that you can "
825
  "exclude only single day occurrences and you cannot exclude one day from "
826
  "multiple day occurrences."
827
  msgstr ""
828
 
829
+ #: app/features/events.php:1245 app/libraries/render.php:455
830
  msgid "Day 1"
831
  msgstr ""
832
 
833
+ #: app/features/events.php:1267 app/features/mec/settings.php:630
834
+ #: app/skins/single.php:930
835
  msgid "Hourly Schedule"
836
  msgstr "Programación horaria"
837
 
838
+ #: app/features/events.php:1271
839
  msgid "Add Day"
840
  msgstr ""
841
 
842
+ #: app/features/events.php:1272
843
  msgid ""
844
  "Add new days for schedule. For example if your event is multiple days, you "
845
  "can add a different schedule for each day!"
846
  msgstr ""
847
 
848
+ #: app/features/events.php:1279
849
  #, php-format
850
  msgid "Day %s"
851
  msgstr ""
852
 
853
+ #: app/features/events.php:1283 app/features/events.php:1322
854
+ #: app/features/events.php:1357 app/features/events.php:1389
855
+ #: app/features/events.php:1418 app/features/events.php:2261
856
+ #: app/features/events.php:2308 app/features/events.php:3214
857
+ #: app/features/events.php:3408 app/features/events.php:3450
858
  #: app/features/fes/form.php:225 app/features/ix.php:2743
859
+ #: app/features/ix.php:2784 app/features/mec/booking.php:348
860
+ #: app/features/mec/booking.php:380 app/features/mec/styling.php:111
861
  msgid "Title"
862
  msgstr "Titulo"
863
 
864
+ #: app/features/events.php:1292 app/features/events.php:1329
865
+ #: app/features/events.php:1362 app/features/events.php:1397
866
+ #: app/features/events.php:1423 app/features/events.php:1833
867
+ #: app/features/events.php:1871 app/features/events.php:1897
868
+ #: app/features/events.php:2027 app/features/events.php:2054
869
+ #: app/features/events.php:2153 app/features/events.php:2189
870
+ #: app/features/events.php:2296 app/features/events.php:2338
871
+ #: app/features/fes/list.php:78 app/features/mec/booking.php:291
872
+ #: app/features/mec/booking.php:320 app/features/mec/booking.php:371
873
+ #: app/features/mec/booking.php:403 app/libraries/main.php:2501
874
  #: app/libraries/main.php:2531 app/libraries/main.php:2560
875
  #: app/libraries/main.php:2590 app/libraries/main.php:2619
876
  #: app/libraries/main.php:2648 app/libraries/main.php:2677
881
  msgid "Remove"
882
  msgstr "Eliminar"
883
 
884
+ #: app/features/events.php:1299 app/features/events.php:1404
885
  msgid "Add new hourly schedule row"
886
  msgstr "Añadir nueva línea programa horario"
887
 
888
+ #: app/features/events.php:1314 app/features/events.php:1351
889
+ #: app/features/events.php:1413
890
  msgid "From e.g. 8:15"
891
  msgstr "Desde 8:15"
892
 
893
+ #: app/features/events.php:1318 app/features/events.php:1354
894
+ #: app/features/events.php:1415
895
  msgid "To e.g. 8:45"
896
  msgstr "a 8:45"
897
 
898
+ #: app/features/events.php:1326 app/features/events.php:1360
899
+ #: app/features/events.php:1421 app/features/events.php:1781
900
+ #: app/features/events.php:1986
901
  msgid "Description"
902
  msgstr "Descripción"
903
 
904
+ #: app/features/events.php:1332 app/features/events.php:1365
905
+ #: app/features/events.php:1426 app/features/fes/form.php:838
906
+ #: app/features/mec.php:343 app/features/mec/modules.php:52
907
+ #: app/features/mec/settings.php:624 app/features/speakers.php:60
908
+ #: app/libraries/main.php:559 app/libraries/main.php:4852
909
  #: app/modules/speakers/details.php:18
910
  msgid "Speakers"
911
  msgstr ""
912
 
913
+ #: app/features/events.php:1385 app/features/events.php:1393
914
  #, fuzzy
915
  #| msgid "Week Days"
916
  msgid "New Day"
917
  msgstr "Días de semana"
918
 
919
+ #: app/features/events.php:1457 app/features/fes/form.php:683
920
+ #: app/features/mec/settings.php:570
921
  msgid "Event Links"
922
  msgstr "Enlaces de eventos"
923
 
924
+ #: app/features/events.php:1460 app/features/events.php:1466
925
+ #: app/features/fes/form.php:685 app/libraries/main.php:4875
926
  msgid "Event Link"
927
  msgstr "Enlace del evento"
928
 
929
+ #: app/features/events.php:1463 app/features/events.php:1479
930
  #: app/features/fes/form.php:686 app/features/fes/form.php:691
931
  msgid "eg. http://yoursite.com/your-event"
932
  msgstr "ej. http://yoursite.com/your-event"
933
 
934
+ #: app/features/events.php:1467
935
  #, fuzzy
936
  #| msgid ""
937
  #| "If you fill it, it will be replaced instead of default event page link. "
944
  "Si lo rellenas, se reemplazará en vez del enlace de la página del evento por "
945
  "defecto. Inserta todo el enlace incluyendo http(s)://"
946
 
947
+ #: app/features/events.php:1469
948
  msgid "URL Shortener"
949
  msgstr ""
950
 
951
+ #: app/features/events.php:1476 app/features/events.php:1489
952
+ #: app/features/fes/form.php:690 app/libraries/main.php:4876
953
+ #: app/skins/single.php:656 app/skins/single/default.php:118
954
  #: app/skins/single/default.php:330 app/skins/single/m1.php:191
955
  #: app/skins/single/m2.php:124 app/skins/single/modern.php:132
956
  #: app/widgets/single.php:107
957
  msgid "More Info"
958
  msgstr "Más Información"
959
 
960
+ #: app/features/events.php:1482 app/features/fes/form.php:692
961
  msgid "More Information"
962
  msgstr "Más Información"
963
 
964
+ #: app/features/events.php:1484 app/features/fes/form.php:694
965
  msgid "Current Window"
966
  msgstr "Ventana actual"
967
 
968
+ #: app/features/events.php:1485 app/features/fes/form.php:695
969
  msgid "New Window"
970
  msgstr "Nueva ventana"
971
 
972
+ #: app/features/events.php:1490 app/features/fes/form.php:697
973
  msgid ""
974
  "If you fill it, it will be shown in event details page as an optional link. "
975
  "Insert full link including http(s)://"
977
  "Si lo rellenas, se mostrará en la página de detalles del evento como enlace "
978
  "opcional. Inserta todo el enlace incluyendo http(s)://"
979
 
980
+ #: app/features/events.php:1564 app/features/events.php:1579
981
  msgid "Total booking limits"
982
  msgstr "Límite total de reservas"
983
 
984
+ #: app/features/events.php:1576 app/features/events.php:1830
985
+ #: app/features/events.php:2024 app/modules/booking/default.php:85
986
  #: app/modules/booking/steps/tickets.php:40
987
  #: app/skins/available_spot/tpl.php:145
988
  msgid "Unlimited"
989
  msgstr "Ilimitado"
990
 
991
+ #: app/features/events.php:1582
992
  msgid ""
993
  "If you want to set a limit to all tickets, uncheck this checkbox and put a "
994
  "limitation number."
995
  msgstr ""
996
 
997
+ #: app/features/events.php:1584
998
  msgid "Read About A Booking System"
999
  msgstr ""
1000
 
1001
+ #: app/features/events.php:1592
1002
  msgid "100"
1003
  msgstr "100"
1004
 
1005
+ #: app/features/events.php:1597
1006
  #, fuzzy
1007
  #| msgid "Total booking limits"
1008
  msgid "Total user booking limits"
1009
  msgstr "Límite total de reservas"
1010
 
1011
+ #: app/features/events.php:1609 app/features/events.php:2102
1012
+ #: app/features/events.php:2234 app/features/events.php:2422
1013
  msgid "Inherit from global options"
1014
  msgstr "Heredar opciones globales"
1015
 
1016
+ #: app/features/events.php:1612
1017
  msgid "12"
1018
  msgstr ""
1019
 
1020
+ #: app/features/events.php:1633 app/libraries/book.php:60
1021
+ #: app/libraries/main.php:4880 app/modules/booking/steps/tickets.php:40
1022
  msgid "Tickets"
1023
  msgstr "Tickets"
1024
 
1025
+ #: app/features/events.php:1636
1026
  msgid ""
1027
  "You're translating an event so MEC will use the original event for tickets "
1028
  "and booking. You can only translate the ticket name and description. Please "
1033
  "entrada. Por favor define las entradas exactas que podrías definir en un "
1034
  "evento original aquí."
1035
 
1036
+ #: app/features/events.php:1655 app/features/events.php:1911
1037
  msgid "Ticket Name"
1038
  msgstr "Nombre del ticket"
1039
 
1040
+ #: app/features/events.php:1660 app/features/events.php:1915
1041
+ #: app/features/events.php:3408 app/features/events.php:3450
1042
  #: app/features/ix.php:2743 app/features/ix.php:2784
1043
  msgid "Start Time"
1044
  msgstr "Hora de Inicio"
1045
 
1046
+ #: app/features/events.php:1719 app/features/events.php:1945
1047
+ #: app/features/events.php:3408 app/features/events.php:3450
1048
  #: app/features/ix.php:2743 app/features/ix.php:2784
1049
  msgid "End Time"
1050
  msgstr "Hora de finalización"
1051
 
1052
+ #: app/features/events.php:1787 app/features/events.php:1791
1053
+ #: app/features/events.php:1865 app/features/events.php:1892
1054
+ #: app/features/events.php:1991 app/features/events.php:1994
1055
+ #: app/features/events.php:2050 app/features/events.php:2267
1056
+ #: app/features/events.php:2271 app/features/events.php:2313
1057
+ #: app/features/events.php:2316 app/features/mec/booking.php:352
1058
+ #: app/features/mec/booking.php:355 app/features/mec/booking.php:384
1059
+ #: app/features/mec/booking.php:387
1060
  msgid "Price"
1061
  msgstr "Precio"
1062
 
1063
+ #: app/features/events.php:1792 app/features/events.php:1995
1064
  msgid "Insert 0 for free ticket. Only numbers please."
1065
  msgstr "Introduce un 0 para una entrada gratuita. Utiliza únicamente números."
1066
 
1067
+ #: app/features/events.php:1801 app/features/events.php:1806
1068
+ #: app/features/events.php:2004 app/features/events.php:2007
1069
  msgid "Price Label"
1070
  msgstr "Etiqueta de precio"
1071
 
1072
+ #: app/features/events.php:1807 app/features/events.php:2008
1073
  msgid "For showing on website. e.g. $15"
1074
  msgstr "Para mostrar en la web. Ej. 15€"
1075
 
1076
+ #: app/features/events.php:1817 app/features/events.php:2018
1077
  msgid "Available Tickets"
1078
  msgstr "Tickets disponibles"
1079
 
1080
+ #: app/features/events.php:1838 app/features/events.php:2031
1081
  msgid "Price per Date"
1082
  msgstr ""
1083
 
1084
+ #: app/features/events.php:1869 app/features/events.php:1895
1085
+ #: app/features/events.php:2052 app/features/labels.php:60
1086
+ #: app/features/mec/meta_boxes/display_options.php:833
1087
  #: app/features/mec/meta_boxes/search_form.php:66
1088
  #: app/features/mec/meta_boxes/search_form.php:128
1089
  #: app/features/mec/meta_boxes/search_form.php:190
1094
  #: app/features/mec/meta_boxes/search_form.php:488
1095
  #: app/features/mec/meta_boxes/search_form.php:549
1096
  #: app/features/mec/meta_boxes/search_form.php:610
1097
+ #: app/features/mec/settings.php:751 app/features/mec/single.php:222
1098
  #: app/libraries/skins.php:938
1099
  msgid "Label"
1100
  msgstr "Etiqueta"
1101
 
1102
+ #: app/features/events.php:2090
1103
  msgid "Fees"
1104
  msgstr "Tasas"
1105
 
1106
+ #: app/features/events.php:2127 app/features/events.php:2165
1107
+ #: app/features/mec/booking.php:271 app/features/mec/booking.php:300
1108
  msgid "Fee Title"
1109
  msgstr "Título de la cuota"
1110
 
1111
+ #: app/features/events.php:2133 app/features/events.php:2137
1112
+ #: app/features/events.php:2170 app/features/events.php:2173
1113
+ #: app/features/mec/booking.php:275 app/features/mec/booking.php:278
1114
+ #: app/features/mec/booking.php:304 app/features/mec/booking.php:307
1115
  msgid "Amount"
1116
  msgstr "Cantidad"
1117
 
1118
+ #: app/features/events.php:2138 app/features/events.php:2174
1119
+ #: app/features/mec/booking.php:279 app/features/mec/booking.php:308
1120
  msgid ""
1121
  "Fee amount, considered as fixed amount if you set the type to amount "
1122
  "otherwise considered as percentage"
1124
  "Cantidad de cuota, considerada como cantidad fija si estableces el tipo de "
1125
  "cantidad, si no será considerada como porcentaje"
1126
 
1127
+ #: app/features/events.php:2147 app/features/events.php:2183
1128
+ #: app/features/mec/booking.php:286 app/features/mec/booking.php:315
1129
  msgid "Percent"
1130
  msgstr "Porcentaje"
1131
 
1132
+ #: app/features/events.php:2148 app/features/events.php:2184
1133
+ #: app/features/mec/booking.php:287 app/features/mec/booking.php:316
1134
  msgid "Amount (Per Ticket)"
1135
  msgstr "Cantidad (Por ticket)"
1136
 
1137
+ #: app/features/events.php:2149 app/features/events.php:2185
1138
+ #: app/features/mec/booking.php:288 app/features/mec/booking.php:317
1139
  msgid "Amount (Per Booking)"
1140
  msgstr "Cantidad (por reservas)"
1141
 
1142
+ #: app/features/events.php:2222 app/features/mec/settings.php:648
1143
  msgid "Ticket Variations / Options"
1144
  msgstr ""
1145
 
1146
+ #: app/features/events.php:2272 app/features/events.php:2317
1147
+ #: app/features/mec/booking.php:356 app/features/mec/booking.php:388
1148
  msgid "Option Price"
1149
  msgstr ""
1150
 
1151
+ #: app/features/events.php:2282 app/features/events.php:2286
1152
+ #: app/features/events.php:2326 app/features/events.php:2329
1153
+ #: app/features/mec/booking.php:362 app/features/mec/booking.php:365
1154
+ #: app/features/mec/booking.php:394 app/features/mec/booking.php:397
1155
  msgid "Maximum Per Ticket"
1156
  msgstr ""
1157
 
1158
+ #: app/features/events.php:2287 app/features/events.php:2330
1159
+ #: app/features/mec/booking.php:366 app/features/mec/booking.php:398
1160
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
1161
  msgstr ""
1162
 
1163
+ #: app/features/events.php:2476 app/features/mec/booking.php:460
1164
  #: app/libraries/main.php:2523
1165
  #, fuzzy
1166
  #| msgid "Name"
1167
  msgid "MEC Name"
1168
  msgstr "Nombre"
1169
 
1170
+ #: app/features/events.php:2477 app/features/mec/booking.php:461
1171
  #: app/libraries/main.php:2552
1172
  #, fuzzy
1173
  #| msgid "Email"
1174
  msgid "MEC Email"
1175
  msgstr "Correo electrónico"
1176
 
1177
+ #: app/features/events.php:2478 app/features/mec/booking.php:462
1178
  #: app/libraries/main.php:2493
1179
  msgid "Text"
1180
  msgstr "Texto"
1181
 
1182
+ #: app/features/events.php:2481 app/features/mec/booking.php:465
1183
  #: app/features/organizers.php:103 app/features/organizers.php:148
1184
  #: app/features/speakers.php:116 app/features/speakers.php:180
1185
  #: app/features/speakers.php:249 app/libraries/main.php:2669
1186
  msgid "Tel"
1187
  msgstr "Tel"
1188
 
1189
+ #: app/features/events.php:2482 app/features/mec/booking.php:466
1190
  #: app/libraries/main.php:2611
1191
  msgid "File"
1192
  msgstr ""
1193
 
1194
+ #: app/features/events.php:2483 app/features/mec/booking.php:467
1195
  #: app/libraries/main.php:2698
1196
  msgid "Textarea"
1197
  msgstr "Área de texto"
1198
 
1199
+ #: app/features/events.php:2484 app/features/mec/booking.php:468
1200
  #: app/libraries/main.php:2751
1201
  msgid "Checkboxes"
1202
  msgstr "Checkboxes"
1203
 
1204
+ #: app/features/events.php:2485 app/features/mec/booking.php:469
1205
  #: app/libraries/main.php:2795
1206
  msgid "Radio Buttons"
1207
  msgstr "Botón tipo radio"
1208
 
1209
+ #: app/features/events.php:2486 app/features/mec/booking.php:470
1210
  #: app/features/mec/meta_boxes/search_form.php:34
1211
  #: app/features/mec/meta_boxes/search_form.php:41
1212
  #: app/features/mec/meta_boxes/search_form.php:48
1279
  msgid "Dropdown"
1280
  msgstr "Desplegable"
1281
 
1282
+ #: app/features/events.php:2487 app/features/mec/booking.php:471
1283
  #: app/libraries/main.php:2886
1284
  msgid "Agreement"
1285
  msgstr "Acuerdo"
1286
 
1287
+ #: app/features/events.php:2488 app/features/mec/booking.php:472
1288
  #: app/libraries/main.php:2727
1289
  msgid "Paragraph"
1290
  msgstr "Párrafo"
1291
 
1292
+ #: app/features/events.php:3135 app/features/events.php:3152
1293
+ #: app/features/events.php:3169 app/features/events.php:3186
1294
  #, php-format
1295
  msgid "Show all %s"
1296
  msgstr "Mostrar todos %s"
1297
 
1298
+ #: app/features/events.php:3135
1299
  msgid "labels"
1300
  msgstr "etiquetas"
1301
 
1302
+ #: app/features/events.php:3152
1303
  msgid "locations"
1304
  msgstr "ubicaciones"
1305
 
1306
+ #: app/features/events.php:3169
1307
  msgid "organizers"
1308
  msgstr "organizadores"
1309
 
1310
+ #: app/features/events.php:3216 app/features/events.php:3408
1311
+ #: app/features/events.php:3450 app/features/ix.php:2743
1312
  #: app/features/ix.php:2784 app/features/locations.php:58
1313
  #: app/features/locations.php:230 app/features/locations.php:287
1314
  #: app/features/locations.php:289 app/features/locations.php:298
1315
+ #: app/features/mec/meta_boxes/display_options.php:834
1316
  #: app/features/mec/meta_boxes/search_form.php:38
1317
  #: app/features/mec/meta_boxes/search_form.php:100
1318
  #: app/features/mec/meta_boxes/search_form.php:162
1323
  #: app/features/mec/meta_boxes/search_form.php:460
1324
  #: app/features/mec/meta_boxes/search_form.php:521
1325
  #: app/features/mec/meta_boxes/search_form.php:582
1326
+ #: app/features/mec/settings.php:725 app/features/mec/single.php:212
1327
+ #: app/libraries/main.php:2024 app/libraries/main.php:4849
1328
+ #: app/libraries/skins.php:834 app/skins/single.php:486
1329
+ #: app/skins/single.php:907 app/skins/single/default.php:154
1330
  #: app/skins/single/default.php:366 app/skins/single/m1.php:155
1331
  #: app/skins/single/m2.php:87 app/skins/single/modern.php:94
1332
  msgid "Location"
1333
  msgstr "Localización"
1334
 
1335
+ #: app/features/events.php:3217 app/features/events.php:3408
1336
+ #: app/features/events.php:3450 app/features/ix.php:2743
1337
+ #: app/features/ix.php:2784 app/features/mec/meta_boxes/display_options.php:835
1338
  #: app/features/mec/meta_boxes/search_form.php:45
1339
  #: app/features/mec/meta_boxes/search_form.php:107
1340
  #: app/features/mec/meta_boxes/search_form.php:169
1345
  #: app/features/mec/meta_boxes/search_form.php:467
1346
  #: app/features/mec/meta_boxes/search_form.php:528
1347
  #: app/features/mec/meta_boxes/search_form.php:589
1348
+ #: app/features/mec/settings.php:731 app/features/mec/single.php:208
1349
  #: app/features/organizers.php:58 app/features/organizers.php:204
1350
  #: app/features/organizers.php:260 app/features/organizers.php:262
1351
+ #: app/features/organizers.php:271 app/libraries/main.php:4851
1352
+ #: app/libraries/skins.php:860 app/skins/single.php:795
1353
  #: app/skins/single/default.php:195 app/skins/single/default.php:407
1354
  #: app/skins/single/m1.php:90 app/skins/single/m2.php:22
1355
  #: app/skins/single/modern.php:31
1356
  msgid "Organizer"
1357
  msgstr "Organizador"
1358
 
1359
+ #: app/features/events.php:3221
1360
  msgid "Repeat"
1361
  msgstr "Repetir"
1362
 
1363
+ #: app/features/events.php:3222
1364
  msgid "Author"
1365
  msgstr "Autor"
1366
 
1367
+ #: app/features/events.php:3343 app/features/events.php:3344
1368
  msgid "iCal Export"
1369
  msgstr "Exportar iCal"
1370
 
1371
+ #: app/features/events.php:3346 app/features/events.php:3347
1372
  msgid "CSV Export"
1373
  msgstr "Exportar CSV"
1374
 
1375
+ #: app/features/events.php:3349 app/features/events.php:3350
1376
  msgid "MS Excel Export"
1377
  msgstr "Exportar Excel"
1378
 
1379
+ #: app/features/events.php:3352 app/features/events.php:3353
1380
  msgid "XML Export"
1381
  msgstr "Exportación XML"
1382
 
1383
+ #: app/features/events.php:3355 app/features/events.php:3356
1384
  msgid "JSON Export"
1385
  msgstr "Exportación JSON"
1386
 
1387
+ #: app/features/events.php:3358 app/features/events.php:3359
1388
+ #: app/features/events.php:3540
1389
  msgid "Duplicate"
1390
  msgstr "Duplicar"
1391
 
1392
+ #: app/features/events.php:3408 app/features/events.php:3450
1393
  #: app/features/ix.php:2743 app/features/ix.php:2784
1394
  #: app/features/labels.php:177 app/features/locations.php:229
1395
  #: app/features/organizers.php:203 app/features/speakers.php:246
1396
  msgid "ID"
1397
  msgstr "ID"
1398
 
1399
+ #: app/features/events.php:3408 app/features/events.php:3450
1400
  #: app/features/ix.php:2743 app/features/ix.php:2784
1401
  msgid "Link"
1402
  msgstr "Enlace"
1403
 
1404
+ #: app/features/events.php:3408 app/features/events.php:3450
1405
  #, php-format
1406
  msgid "%s Tel"
1407
  msgstr "%s Teléfono "
1408
 
1409
+ #: app/features/events.php:3408 app/features/events.php:3450
1410
  #, php-format
1411
  msgid "%s Email"
1412
  msgstr "%s Correo electrónico"
1493
  "Si lo rellenas, se reemplazará en vez del enlace de la página del evento por "
1494
  "defecto. Inserta todo el enlace incluyendo http(s)://"
1495
 
1496
+ #: app/features/fes/form.php:723 app/features/mec/settings.php:582
1497
  msgid "Featured Image"
1498
  msgstr "Imagen destacada"
1499
 
1503
 
1504
  #: app/features/fes/form.php:770 app/features/labels.php:61
1505
  #: app/features/labels.php:221 app/features/mec.php:336
1506
+ #: app/features/mec/meta_boxes/filter.php:132 app/libraries/main.php:4846
1507
+ #: app/skins/single.php:685 app/skins/single/default.php:133
1508
  #: app/skins/single/default.php:345 app/skins/single/m1.php:64
1509
  #: app/skins/single/modern.php:214
1510
  msgid "Labels"
1511
  msgstr "Etiquetas"
1512
 
1513
  #: app/features/fes/form.php:816 app/features/mec.php:334
1514
+ #: app/features/mec/meta_boxes/filter.php:149
1515
  msgid "Tags"
1516
  msgstr "Tags"
1517
 
1720
  "This will export all of your website events' data into your desired format."
1721
  msgstr "Esto exportará todos los eventos de tu sitio al formato deseado."
1722
 
1723
+ #: app/features/ix/export.php:25 app/features/mec/modules.php:178
1724
  msgid "iCal"
1725
  msgstr "iCal"
1726
 
1829
  msgid "Add to Google Calendar"
1830
  msgstr "Añadir a Google Calendar"
1831
 
1832
+ #: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:602
1833
+ #: app/features/mec/modules.php:392 app/features/mec/notifications.php:541
1834
+ #: app/features/mec/settings.php:894 app/features/mec/single.php:269
1835
  msgid "Checking ..."
1836
  msgstr "Verificando…"
1837
 
1878
  msgid "ICS Feed"
1879
  msgstr "ICS Feed"
1880
 
1881
+ #: app/features/ix/import.php:46 app/features/mec/booking.php:91
1882
+ #: app/features/mec/booking.php:237 app/features/mec/booking.php:255
1883
+ #: app/features/mec/booking.php:332
1884
+ #: app/features/mec/meta_boxes/display_options.php:150
1885
+ #: app/features/mec/meta_boxes/display_options.php:315
1886
+ #: app/features/mec/modules.php:70 app/features/mec/modules.php:211
1887
+ #: app/features/mec/modules.php:228
1888
  #, php-format
1889
  msgid "%s is required to use this feature."
1890
  msgstr "Se requiere %s para usar esta funcionalidad."
1891
 
1892
  #: app/features/ix/import.php:46 app/features/ix/sync.php:22
1893
+ #: app/features/mec/booking.php:91 app/features/mec/booking.php:237
1894
+ #: app/features/mec/booking.php:255 app/features/mec/booking.php:332
1895
+ #: app/features/mec/meta_boxes/display_options.php:150
1896
+ #: app/features/mec/meta_boxes/display_options.php:315
1897
+ #: app/features/mec/meta_boxes/display_options.php:330
1898
+ #: app/features/mec/meta_boxes/display_options.php:457
1899
+ #: app/features/mec/meta_boxes/display_options.php:508
1900
+ #: app/features/mec/meta_boxes/display_options.php:615
1901
+ #: app/features/mec/meta_boxes/display_options.php:722
1902
+ #: app/features/mec/meta_boxes/display_options.php:795
1903
+ #: app/features/mec/meta_boxes/display_options.php:995
1904
+ #: app/features/mec/modules.php:70 app/features/mec/modules.php:211
1905
+ #: app/features/mec/modules.php:228
1906
  msgid "Pro version of Modern Events Calendar"
1907
  msgstr "Versión Pro de Modern Events Calendar"
1908
 
2066
  msgstr "Autosincronización"
2067
 
2068
  #: app/features/ix/sync.php:22
2069
+ #: app/features/mec/meta_boxes/display_options.php:795
2070
  #, php-format
2071
  msgid "%s is required to use synchronization feature."
2072
  msgstr "Se requiere %s para usar la funcionalidad de sincronización."
2226
  msgstr "Elige un color de etiqueta"
2227
 
2228
  #: app/features/labels.php:112 app/features/labels.php:139
2229
+ #: app/features/mec/meta_boxes/display_options.php:38
2230
+ #: app/features/mec/meta_boxes/display_options.php:177
2231
+ #: app/features/mec/meta_boxes/display_options.php:335
2232
+ #: app/features/mec/meta_boxes/display_options.php:513
2233
+ #: app/features/mec/meta_boxes/display_options.php:563
2234
+ #: app/features/mec/meta_boxes/display_options.php:727
2235
+ #: app/features/mec/meta_boxes/display_options.php:877
2236
+ #: app/features/mec/meta_boxes/display_options.php:934
2237
+ #: app/features/mec/meta_boxes/display_options.php:1026
2238
+ #: app/features/mec/meta_boxes/display_options.php:1112
2239
  msgid "Style"
2240
  msgstr "Estilo"
2241
 
2257
  msgstr ""
2258
 
2259
  #: app/features/labels.php:118 app/features/labels.php:143
2260
+ #: app/libraries/main.php:5092 app/skins/agenda/render.php:41
2261
  #: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:45
2262
  #: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
2263
  #: app/skins/daily_view/render.php:52 app/skins/grid/render.php:53
2291
  msgstr "Evento %s"
2292
 
2293
  #: app/features/locations.php:59 app/features/mec.php:337
2294
+ #: app/features/mec/dashboard.php:243 app/features/mec/meta_boxes/filter.php:98
2295
+ #: app/libraries/main.php:4848
2296
  msgid "Locations"
2297
  msgstr "Lugar"
2298
 
2363
  msgid "eg. City Hall"
2364
  msgstr "ej. Almería"
2365
 
2366
+ #: app/features/locations.php:310 app/features/mec/settings.php:612
2367
  #: app/widgets/single.php:115
2368
  msgid "Event Location"
2369
  msgstr "Lugar del evento"
2399
  msgid "Don't show map in single event page"
2400
  msgstr "No mostrar el mapa en la página del detalle del evento"
2401
 
2402
+ #: app/features/locations.php:356 app/libraries/main.php:4882
2403
  #, fuzzy
2404
  #| msgid "Locations"
2405
  msgid "Other Locations"
2459
  msgstr "Soporte"
2460
 
2461
  #: app/features/mec.php:338 app/features/mec/dashboard.php:250
2462
+ #: app/features/mec/meta_boxes/filter.php:115 app/features/organizers.php:59
2463
+ #: app/libraries/main.php:4850
2464
  msgid "Organizers"
2465
  msgstr "Organizadores"
2466
 
2565
  "your host provider in this regard."
2566
  msgstr ""
2567
 
2568
+ #: app/features/mec/booking.php:70 app/features/mec/modules.php:23
2569
+ #: app/features/mec/settings.php:32 app/features/mec/single.php:15
2570
+ #: app/features/mec/support-page.php:34
2571
+ #, fuzzy
2572
+ #| msgid "Search %s"
2573
+ msgid "Search..."
2574
+ msgstr "Buscar %s"
2575
+
2576
+ #: app/features/mec/booking.php:72 app/features/mec/booking.php:478
2577
+ #: app/features/mec/booking.php:558 app/features/mec/booking.php:567
2578
+ #: app/features/mec/booking.php:577 app/features/mec/booking.php:619
2579
+ #: app/features/mec/booking.php:633 app/features/mec/messages.php:11
2580
+ #: app/features/mec/messages.php:47 app/features/mec/messages.php:56
2581
+ #: app/features/mec/messages.php:90 app/features/mec/messages.php:99
2582
+ #: app/features/mec/modules.php:25 app/features/mec/modules.php:357
2583
+ #: app/features/mec/modules.php:367 app/features/mec/modules.php:409
2584
+ #: app/features/mec/modules.php:423 app/features/mec/notifications.php:10
2585
  #: app/features/mec/notifications.php:450
2586
  #: app/features/mec/notifications.php:462
2587
  #: app/features/mec/notifications.php:558
2588
+ #: app/features/mec/notifications.php:572 app/features/mec/settings.php:34
2589
+ #: app/features/mec/settings.php:843 app/features/mec/settings.php:853
2590
+ #: app/features/mec/settings.php:911 app/features/mec/settings.php:925
2591
+ #: app/features/mec/single.php:17 app/features/mec/single.php:234
2592
+ #: app/features/mec/single.php:244 app/features/mec/single.php:286
2593
+ #: app/features/mec/single.php:300 app/features/mec/styles.php:11
2594
  #: app/features/mec/styles.php:31 app/features/mec/styles.php:40
2595
  #: app/features/mec/styles.php:77 app/features/mec/styles.php:86
2596
  #: app/features/mec/styling.php:33 app/features/mec/styling.php:238
2599
  msgid "Save Changes"
2600
  msgstr "Guardar Cambios"
2601
 
2602
+ #: app/features/mec/booking.php:96
2603
  msgid "Enable booking module"
2604
  msgstr "Activar módulo de reservas"
2605
 
2606
+ #: app/features/mec/booking.php:97
2607
  msgid ""
2608
  "After enabling and saving the settings, reloading the page will add 'payment "
2609
  "Gateways' to the settings and a new menu item on the Dashboard"
2610
  msgstr ""
2611
 
2612
+ #: app/features/mec/booking.php:102 app/features/mec/booking.php:107
2613
+ #: app/features/mec/modules.php:306 app/features/mec/modules.php:311
2614
  msgid "Date Format"
2615
  msgstr "Formato de fecha"
2616
 
2617
+ #: app/features/mec/booking.php:108
2618
  msgid "Default is Y-m-d"
2619
  msgstr "El valor predeterminado es Y-m-d"
2620
 
2621
+ #: app/features/mec/booking.php:115
2622
+ #: app/features/mec/meta_boxes/display_options.php:121
2623
+ #: app/features/mec/meta_boxes/display_options.php:296
2624
+ #: app/features/mec/meta_boxes/display_options.php:366
2625
+ #: app/features/mec/meta_boxes/display_options.php:825
2626
+ #: app/features/mec/meta_boxes/display_options.php:1092
2627
+ #: app/features/mec/meta_boxes/display_options.php:1200
2628
  msgid "Limit"
2629
  msgstr "Límite"
2630
 
2631
+ #: app/features/mec/booking.php:117
2632
  #, fuzzy
2633
  #| msgid "Default is 6"
2634
  msgid "Default is empty"
2635
  msgstr "El valor predeterminado es 6"
2636
 
2637
+ #: app/features/mec/booking.php:120
2638
  #, fuzzy
2639
  #| msgid "Booking Form"
2640
  msgid "Booking Limit"
2641
  msgstr "Formulario de Reservas"
2642
 
2643
+ #: app/features/mec/booking.php:121
2644
  msgid ""
2645
  "Total tickets that a user can book. It is useful if you're providing free "
2646
  "tickets. Leave it empty for unlimited booking."
2647
  msgstr ""
2648
 
2649
+ #: app/features/mec/booking.php:128
2650
  msgid "Maximum Dates"
2651
  msgstr "Fechas máximas"
2652
 
2653
+ #: app/features/mec/booking.php:130
2654
  msgid "Default is 6"
2655
  msgstr "El valor predeterminado es 6"
2656
 
2657
+ #: app/features/mec/booking.php:134 app/features/mec/booking.php:144
2658
  msgid "Thank You Page"
2659
  msgstr "Página de agradecimiento"
2660
 
2661
+ #: app/features/mec/booking.php:145
2662
  msgid ""
2663
  "User redirects to this page after booking. Leave it empty if you want to "
2664
  "disable it."
2666
  "Se redirecciona al usuario a esta pagina una vez que completa la reserva. "
2667
  "Déjalo vacío si lo deseas desactivado."
2668
 
2669
+ #: app/features/mec/booking.php:156
2670
  msgid "Enable Express Attendees Form"
2671
  msgstr "Habilitar formulario de asistentes exprés"
2672
 
2673
+ #: app/features/mec/booking.php:160 app/modules/booking/steps/form.php:52
2674
  msgid "Attendees Form"
2675
  msgstr "Asistentes"
2676
 
2677
+ #: app/features/mec/booking.php:161
2678
  msgid ""
2679
  "Users are able to apply first attendee information for other attendees in "
2680
  "the booking form."
2682
  "Los usuarios son capaces de copiar la información del primer invitado para "
2683
  "los demás invitados en el formulario de reservas."
2684
 
2685
+ #: app/features/mec/booking.php:174
2686
  #, fuzzy
2687
  #| msgid "Download Invoice"
2688
  msgid "Enable Invoice"
2689
  msgstr "Descargar factura"
2690
 
2691
+ #: app/features/mec/booking.php:185
2692
+ #, fuzzy
2693
+ #| msgid "Enable booking notification"
2694
+ msgid "Enable Booking for Ongoing Events"
2695
+ msgstr "Activar notificación de reservas"
2696
+
2697
+ #: app/features/mec/booking.php:189
2698
  msgid "Email verification"
2699
  msgstr "Verificación por email"
2700
 
2701
+ #: app/features/mec/booking.php:195
2702
  msgid "Auto verification for free bookings"
2703
  msgstr "Auto verificación para reservas gratuitas"
2704
 
2705
+ #: app/features/mec/booking.php:204
2706
  msgid "Auto verification for paid bookings"
2707
  msgstr "Auto verificación para reservas de pago"
2708
 
2709
+ #: app/features/mec/booking.php:208 app/features/mec/notifications.php:147
2710
  #: app/libraries/main.php:573
2711
  msgid "Booking Confirmation"
2712
  msgstr "Confirmación de reserva"
2713
 
2714
+ #: app/features/mec/booking.php:214
2715
  msgid "Auto confirmation for free bookings"
2716
  msgstr "Confirmación automática para reservas gratuitas"
2717
 
2718
+ #: app/features/mec/booking.php:223
2719
  msgid "Auto confirmation for paid bookings"
2720
  msgstr "Confirmación automática para reservas pagas"
2721
 
2722
+ #: app/features/mec/booking.php:242
2723
  msgid "Enable coupons module"
2724
  msgstr "Activar módulo de cupones"
2725
 
2726
+ #: app/features/mec/booking.php:244
2727
  msgid ""
2728
  "After enabling and saving the settings,, you should reload the page to see a "
2729
  "new menu on the Dashboard > Booking"
2730
  msgstr ""
2731
 
2732
+ #: app/features/mec/booking.php:252 app/libraries/main.php:552
2733
  msgid "Taxes / Fees"
2734
  msgstr "Impuestos/Tasas"
2735
 
2736
+ #: app/features/mec/booking.php:260
2737
  msgid "Enable taxes / fees module"
2738
  msgstr "Activar módulo de Impuestos/Tasas"
2739
 
2740
+ #: app/features/mec/booking.php:265
2741
  msgid "Add Fee"
2742
  msgstr "Nueva tasa"
2743
 
2744
+ #: app/features/mec/booking.php:329 app/libraries/main.php:553
2745
  msgid "Ticket Variations & Options"
2746
  msgstr ""
2747
 
2748
+ #: app/features/mec/booking.php:337
2749
  msgid "Enable ticket options module"
2750
  msgstr ""
2751
 
2752
+ #: app/features/mec/booking.php:342
2753
  msgid "Add Variation / Option"
2754
  msgstr ""
2755
 
2756
+ #: app/features/mec/booking.php:545
2757
  msgid "Enable Organizer Payment Module"
2758
  msgstr ""
2759
 
2760
+ #: app/features/mec/booking.php:549
2761
  #, fuzzy
2762
  #| msgid "Organizer Tel"
2763
  msgid "Organizer Payment"
2764
  msgstr "Teléfono del Organizador"
2765
 
2766
+ #: app/features/mec/booking.php:550
2767
  msgid ""
2768
  "By enabling this module, organizers are able to insert their own payment "
2769
  "credentials for enabled gateways per event and receive the payments directly!"
2770
  msgstr ""
2771
 
2772
+ #: app/features/mec/booking.php:597 app/features/mec/messages.php:74
2773
+ #: app/features/mec/modules.php:387 app/features/mec/notifications.php:536
2774
+ #: app/features/mec/settings.php:889 app/features/mec/single.php:264
2775
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:292
2776
  msgid "Saved"
2777
  msgstr "Guardado"
2778
 
2779
+ #: app/features/mec/booking.php:598 app/features/mec/messages.php:75
2780
+ #: app/features/mec/modules.php:388 app/features/mec/notifications.php:537
2781
+ #: app/features/mec/settings.php:890 app/features/mec/single.php:265
2782
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:293
2783
  msgid "Settings Saved!"
2784
  msgstr "¡Ajustes guardados!"
2785
 
2786
+ #: app/features/mec/booking.php:600 app/features/mec/booking.php:622
2787
+ #: app/features/mec/modules.php:390 app/features/mec/modules.php:412
2788
  #: app/features/mec/notifications.php:539
2789
+ #: app/features/mec/notifications.php:561 app/features/mec/settings.php:892
2790
+ #: app/features/mec/settings.php:914 app/features/mec/single.php:267
2791
+ #: app/features/mec/single.php:289 app/libraries/main.php:5091
2792
  msgid "Verified"
2793
  msgstr "Verificado"
2794
 
2795
+ #: app/features/mec/booking.php:624 app/features/mec/modules.php:414
2796
+ #: app/features/mec/notifications.php:563 app/features/mec/settings.php:916
2797
+ #: app/features/mec/single.php:291
2798
  msgid "Please Refresh Page"
2799
  msgstr "Por favor, actualiza la página"
2800
 
2897
  msgid "You cannot access this section."
2898
  msgstr ""
2899
 
2900
+ #: app/features/mec/dashboard.php:261 app/features/mec/settings.php:350
2901
  msgid "Upcoming Events"
2902
  msgstr "Próximos Eventos"
2903
 
2987
  "Por cierto, si tu pagina web es multidioma, te recomendamos que cambies los "
2988
  "mensajes desde los archivos de idioma."
2989
 
2990
+ #: app/features/mec/meta_boxes/display_options.php:22
2991
  msgid "Skin"
2992
  msgstr "Tema"
2993
 
2994
+ #: app/features/mec/meta_boxes/display_options.php:40
2995
+ #: app/features/mec/meta_boxes/display_options.php:179
2996
+ #: app/features/mec/meta_boxes/display_options.php:565
2997
+ #: app/features/mec/meta_boxes/display_options.php:879
2998
+ #: app/features/mec/settings.php:214 app/features/mec/settings.php:238
2999
+ #: app/features/mec/settings.php:247 app/features/mec/settings.php:288
3000
+ #: app/features/mec/settings.php:312 app/features/mec/settings.php:321
3001
  msgid "Classic"
3002
  msgstr "Clásico"
3003
 
3004
+ #: app/features/mec/meta_boxes/display_options.php:41
3005
+ #: app/features/mec/meta_boxes/display_options.php:181
3006
+ #: app/features/mec/settings.php:239 app/features/mec/settings.php:249
3007
+ #: app/features/mec/settings.php:313 app/features/mec/settings.php:323
3008
  msgid "Minimal"
3009
  msgstr "Mínimo"
3010
 
3011
+ #: app/features/mec/meta_boxes/display_options.php:42
3012
+ #: app/features/mec/meta_boxes/display_options.php:182
3013
+ #: app/features/mec/meta_boxes/display_options.php:515
3014
+ #: app/features/mec/meta_boxes/display_options.php:567
3015
+ #: app/features/mec/meta_boxes/display_options.php:729
3016
+ #: app/features/mec/meta_boxes/display_options.php:881
3017
+ #: app/features/mec/settings.php:216 app/features/mec/settings.php:229
3018
+ #: app/features/mec/settings.php:240 app/features/mec/settings.php:250
3019
+ #: app/features/mec/settings.php:290 app/features/mec/settings.php:303
3020
+ #: app/features/mec/settings.php:314 app/features/mec/settings.php:324
3021
  msgid "Modern"
3022
  msgstr "Moderno"
3023
 
3024
+ #: app/features/mec/meta_boxes/display_options.php:43
3025
+ #: app/features/mec/settings.php:241 app/features/mec/settings.php:315
3026
  msgid "Standard"
3027
  msgstr "Estándar"
3028
 
3029
+ #: app/features/mec/meta_boxes/display_options.php:44
3030
+ #: app/features/mec/settings.php:242 app/features/mec/settings.php:316
3031
  msgid "Accordion"
3032
  msgstr "Acordeón"
3033
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3034
  #: app/features/mec/meta_boxes/display_options.php:50
3035
  #: app/features/mec/meta_boxes/display_options.php:191
3036
  #: app/features/mec/meta_boxes/display_options.php:343
 
 
 
3037
  #: app/features/mec/meta_boxes/display_options.php:622
3038
  #: app/features/mec/meta_boxes/display_options.php:655
 
 
3039
  #: app/features/mec/meta_boxes/display_options.php:802
3040
  #: app/features/mec/meta_boxes/display_options.php:1037
3041
  #: app/features/mec/meta_boxes/display_options.php:1124
3042
+ msgid "Today"
3043
+ msgstr "Hoy"
3044
+
3045
+ #: app/features/mec/meta_boxes/display_options.php:51
3046
+ #: app/features/mec/meta_boxes/display_options.php:192
3047
+ #: app/features/mec/meta_boxes/display_options.php:344
3048
+ #: app/features/mec/meta_boxes/display_options.php:623
3049
+ #: app/features/mec/meta_boxes/display_options.php:656
3050
+ #: app/features/mec/meta_boxes/display_options.php:803
3051
+ #: app/features/mec/meta_boxes/display_options.php:1038
3052
+ #: app/features/mec/meta_boxes/display_options.php:1125
3053
+ msgid "Tomorrow"
3054
+ msgstr "Mañana"
3055
+
3056
+ #: app/features/mec/meta_boxes/display_options.php:52
3057
+ #: app/features/mec/meta_boxes/display_options.php:193
3058
+ #: app/features/mec/meta_boxes/display_options.php:345
3059
+ #: app/features/mec/meta_boxes/display_options.php:398
3060
+ #: app/features/mec/meta_boxes/display_options.php:575
3061
+ #: app/features/mec/meta_boxes/display_options.php:624
3062
+ #: app/features/mec/meta_boxes/display_options.php:657
3063
+ #: app/features/mec/meta_boxes/display_options.php:692
3064
+ #: app/features/mec/meta_boxes/display_options.php:738
3065
+ #: app/features/mec/meta_boxes/display_options.php:804
3066
+ #: app/features/mec/meta_boxes/display_options.php:1039
3067
+ #: app/features/mec/meta_boxes/display_options.php:1126
3068
+ msgid "Start of Current Month"
3069
+ msgstr "Inicio del mes actual"
3070
 
3071
  #: app/features/mec/meta_boxes/display_options.php:53
3072
  #: app/features/mec/meta_boxes/display_options.php:194
3073
  #: app/features/mec/meta_boxes/display_options.php:346
3074
  #: app/features/mec/meta_boxes/display_options.php:399
 
3075
  #: app/features/mec/meta_boxes/display_options.php:576
3076
  #: app/features/mec/meta_boxes/display_options.php:625
3077
+ #: app/features/mec/meta_boxes/display_options.php:658
3078
  #: app/features/mec/meta_boxes/display_options.php:693
3079
  #: app/features/mec/meta_boxes/display_options.php:739
3080
  #: app/features/mec/meta_boxes/display_options.php:805
3081
  #: app/features/mec/meta_boxes/display_options.php:1040
3082
  #: app/features/mec/meta_boxes/display_options.php:1127
3083
+ msgid "Start of Next Month"
3084
+ msgstr "Inicio del siguiente mes"
3085
+
3086
+ #: app/features/mec/meta_boxes/display_options.php:54
3087
+ #: app/features/mec/meta_boxes/display_options.php:195
3088
+ #: app/features/mec/meta_boxes/display_options.php:347
3089
+ #: app/features/mec/meta_boxes/display_options.php:400
3090
+ #: app/features/mec/meta_boxes/display_options.php:523
3091
+ #: app/features/mec/meta_boxes/display_options.php:577
3092
+ #: app/features/mec/meta_boxes/display_options.php:626
3093
+ #: app/features/mec/meta_boxes/display_options.php:659
3094
+ #: app/features/mec/meta_boxes/display_options.php:694
3095
+ #: app/features/mec/meta_boxes/display_options.php:740
3096
+ #: app/features/mec/meta_boxes/display_options.php:806
3097
+ #: app/features/mec/meta_boxes/display_options.php:1041
3098
+ #: app/features/mec/meta_boxes/display_options.php:1128
3099
+ msgid "On a certain date"
3100
+ msgstr "Una fecha concreta"
3101
+
3102
+ #: app/features/mec/meta_boxes/display_options.php:57
3103
+ #: app/features/mec/meta_boxes/display_options.php:198
3104
+ #: app/features/mec/meta_boxes/display_options.php:350
3105
+ #: app/features/mec/meta_boxes/display_options.php:403
3106
+ #: app/features/mec/meta_boxes/display_options.php:526
3107
+ #: app/features/mec/meta_boxes/display_options.php:580
3108
+ #: app/features/mec/meta_boxes/display_options.php:629
3109
+ #: app/features/mec/meta_boxes/display_options.php:663
3110
+ #: app/features/mec/meta_boxes/display_options.php:697
3111
+ #: app/features/mec/meta_boxes/display_options.php:743
3112
+ #: app/features/mec/meta_boxes/display_options.php:809
3113
+ #: app/features/mec/meta_boxes/display_options.php:1044
3114
+ #: app/features/mec/meta_boxes/display_options.php:1131
3115
  #, php-format
3116
  msgid "eg. %s"
3117
  msgstr "ej. %s"
3118
 
 
3119
  #: app/features/mec/meta_boxes/display_options.php:61
3120
+ #: app/features/mec/meta_boxes/display_options.php:65
3121
+ #: app/features/mec/meta_boxes/display_options.php:72
3122
+ #: app/features/mec/meta_boxes/display_options.php:78
3123
+ #: app/features/mec/meta_boxes/display_options.php:85
3124
+ #: app/features/mec/meta_boxes/display_options.php:91
3125
  #: app/features/mec/meta_boxes/display_options.php:98
3126
+ #: app/features/mec/meta_boxes/display_options.php:102
3127
+ #: app/features/mec/meta_boxes/display_options.php:109
3128
+ #: app/features/mec/meta_boxes/display_options.php:114
3129
  #: app/features/mec/meta_boxes/display_options.php:202
3130
+ #: app/features/mec/meta_boxes/display_options.php:206
3131
+ #: app/features/mec/meta_boxes/display_options.php:213
3132
+ #: app/features/mec/meta_boxes/display_options.php:218
3133
+ #: app/features/mec/meta_boxes/display_options.php:225
3134
+ #: app/features/mec/meta_boxes/display_options.php:230
3135
+ #: app/features/mec/meta_boxes/display_options.php:237
3136
+ #: app/features/mec/meta_boxes/display_options.php:243
3137
  #: app/features/mec/meta_boxes/display_options.php:250
3138
+ #: app/features/mec/meta_boxes/display_options.php:254
3139
+ #: app/features/mec/meta_boxes/display_options.php:261
3140
+ #: app/features/mec/meta_boxes/display_options.php:267
3141
  #: app/features/mec/meta_boxes/display_options.php:274
3142
+ #: app/features/mec/meta_boxes/display_options.php:278
3143
+ #: app/features/mec/meta_boxes/display_options.php:354
3144
+ #: app/features/mec/meta_boxes/display_options.php:359
3145
+ #: app/features/mec/meta_boxes/display_options.php:530
3146
+ #: app/features/mec/meta_boxes/display_options.php:535
3147
+ #: app/features/mec/meta_boxes/display_options.php:813
3148
+ #: app/features/mec/meta_boxes/display_options.php:818
3149
+ #: app/features/mec/meta_boxes/display_options.php:885
3150
+ #: app/features/mec/meta_boxes/display_options.php:891
3151
+ #: app/features/mec/meta_boxes/display_options.php:898
3152
+ #: app/features/mec/meta_boxes/display_options.php:903
3153
  #: app/features/mec/meta_boxes/display_options.php:910
3154
+ #: app/features/mec/meta_boxes/display_options.php:914
3155
  #: app/features/mec/meta_boxes/display_options.php:942
3156
+ #: app/features/mec/meta_boxes/display_options.php:946
3157
  #: app/features/mec/meta_boxes/display_options.php:953
3158
+ #: app/features/mec/meta_boxes/display_options.php:957
3159
+ #: app/features/mec/meta_boxes/display_options.php:964
3160
+ #: app/features/mec/meta_boxes/display_options.php:970
3161
+ #: app/features/mec/meta_boxes/display_options.php:1000
3162
+ #: app/features/mec/meta_boxes/display_options.php:1005
3163
+ #: app/features/mec/meta_boxes/display_options.php:1048
3164
+ #: app/features/mec/meta_boxes/display_options.php:1054
3165
  #: app/features/mec/meta_boxes/display_options.php:1061
3166
+ #: app/features/mec/meta_boxes/display_options.php:1065
3167
  #: app/features/mec/meta_boxes/display_options.php:1072
3168
+ #: app/features/mec/meta_boxes/display_options.php:1076
3169
+ #: app/features/mec/meta_boxes/display_options.php:1135
3170
+ #: app/features/mec/meta_boxes/display_options.php:1141
3171
+ #: app/features/mec/meta_boxes/display_options.php:1148
3172
+ #: app/features/mec/meta_boxes/display_options.php:1154
3173
+ #: app/features/mec/meta_boxes/display_options.php:1161
3174
+ #: app/features/mec/meta_boxes/display_options.php:1167
3175
+ #: app/features/mec/meta_boxes/display_options.php:1174
3176
+ #: app/features/mec/meta_boxes/display_options.php:1180
3177
+ #: app/features/mec/meta_boxes/display_options.php:1187
3178
+ #: app/features/mec/meta_boxes/display_options.php:1193
3179
  msgid "Date Formats"
3180
  msgstr "Formato de fecha"
3181
 
3182
+ #: app/features/mec/meta_boxes/display_options.php:66
3183
+ #: app/features/mec/meta_boxes/display_options.php:255
3184
  msgid "Default value is \"M d Y\""
3185
  msgstr "El valor predeterminado es \"M d Y\""
3186
 
3187
+ #: app/features/mec/meta_boxes/display_options.php:79
3188
  msgid "Default values are d, M and l"
3189
  msgstr "Los valores predeterminados son d, M y l"
3190
 
3191
+ #: app/features/mec/meta_boxes/display_options.php:92
3192
+ #: app/features/mec/meta_boxes/display_options.php:244
3193
+ #: app/features/mec/meta_boxes/display_options.php:268
3194
+ #: app/features/mec/meta_boxes/display_options.php:1142
3195
+ #: app/features/mec/meta_boxes/display_options.php:1155
3196
+ #: app/features/mec/meta_boxes/display_options.php:1168
3197
+ #: app/features/mec/meta_boxes/display_options.php:1181
3198
+ #: app/features/mec/meta_boxes/display_options.php:1194
3199
  msgid "Default values are d, F and l"
3200
  msgstr "Los valores predeterminados son d, F y l"
3201
 
3202
+ #: app/features/mec/meta_boxes/display_options.php:103
3203
  msgid "Default value is \"M d\""
3204
  msgstr "Valor por defecto es \"M d\""
3205
 
3206
+ #: app/features/mec/meta_boxes/display_options.php:115
3207
  #, fuzzy
3208
  #| msgid "Default values are d and F"
3209
  msgid "TDefault values are d and F"
3210
  msgstr "Los valores predeterminados son d y F"
3211
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3212
  #: app/features/mec/meta_boxes/display_options.php:122
3213
  #: app/features/mec/meta_boxes/display_options.php:297
3214
  #: app/features/mec/meta_boxes/display_options.php:367
3215
+ #: app/features/mec/meta_boxes/display_options.php:543
3216
+ #: app/features/mec/meta_boxes/display_options.php:585
3217
+ #: app/features/mec/meta_boxes/display_options.php:668
3218
+ #: app/features/mec/meta_boxes/display_options.php:702
3219
+ #: app/features/mec/meta_boxes/display_options.php:748
3220
+ #: app/features/mec/meta_boxes/display_options.php:1093
3221
+ #: app/features/mec/meta_boxes/display_options.php:1201
3222
+ msgid "eg. 6"
3223
+ msgstr "ej. 6"
3224
+
3225
+ #: app/features/mec/meta_boxes/display_options.php:126
3226
+ #: app/features/mec/meta_boxes/display_options.php:301
3227
+ #: app/features/mec/meta_boxes/display_options.php:371
3228
+ #: app/features/mec/meta_boxes/display_options.php:862
3229
  msgid "Load More Button"
3230
  msgstr "Botón cargar más"
3231
 
3232
+ #: app/features/mec/meta_boxes/display_options.php:136
3233
+ #: app/features/mec/meta_boxes/display_options.php:381
3234
  msgid "Show Month Divider"
3235
  msgstr "Mostrar divisor del mes"
3236
 
3237
+ #: app/features/mec/meta_boxes/display_options.php:146
3238
+ #: app/features/mec/meta_boxes/display_options.php:311
3239
  #, fuzzy
3240
  #| msgid "Show Google Maps on event page"
3241
  msgid "Show Map on top"
3242
  msgstr "Ver eventos en Google Maps"
3243
 
3244
+ #: app/features/mec/meta_boxes/display_options.php:163
3245
  msgid "Toggle for Month Divider"
3246
  msgstr ""
3247
 
3248
+ #: app/features/mec/meta_boxes/display_options.php:180
3249
+ #: app/features/mec/meta_boxes/display_options.php:337
3250
+ #: app/features/mec/meta_boxes/display_options.php:419
3251
+ #: app/features/mec/meta_boxes/display_options.php:566
3252
+ #: app/features/mec/meta_boxes/display_options.php:730
3253
+ #: app/features/mec/meta_boxes/display_options.php:880
3254
+ #: app/features/mec/settings.php:215 app/features/mec/settings.php:230
3255
+ #: app/features/mec/settings.php:248 app/features/mec/settings.php:289
3256
+ #: app/features/mec/settings.php:304 app/features/mec/settings.php:322
3257
  msgid "Clean"
3258
  msgstr "Limpio"
3259
 
3260
+ #: app/features/mec/meta_boxes/display_options.php:183
3261
+ #: app/features/mec/meta_boxes/display_options.php:421
3262
+ #: app/features/mec/meta_boxes/display_options.php:569
3263
+ #: app/features/mec/settings.php:218 app/features/mec/settings.php:251
3264
+ #: app/features/mec/settings.php:292 app/features/mec/settings.php:325
3265
  msgid "Simple"
3266
  msgstr "Simple"
3267
 
3268
+ #: app/features/mec/meta_boxes/display_options.php:184
3269
  msgid "Colorful"
3270
  msgstr "Colorido"
3271
 
3272
+ #: app/features/mec/meta_boxes/display_options.php:185
3273
+ #: app/features/mec/meta_boxes/display_options.php:420
3274
+ #: app/features/mec/meta_boxes/display_options.php:568
3275
+ #: app/features/mec/settings.php:217 app/features/mec/settings.php:253
3276
+ #: app/features/mec/settings.php:291 app/features/mec/settings.php:327
3277
  msgid "Novel"
3278
  msgstr "Novel"
3279
 
3280
+ #: app/features/mec/meta_boxes/display_options.php:207
3281
  #, fuzzy
3282
  #| msgid "Default value is \"d F Y\""
3283
  msgid "Default value is \"d F Y"
3284
  msgstr "Valor por defecto is \"d F Y\""
3285
 
3286
+ #: app/features/mec/meta_boxes/display_options.php:219
3287
  msgid "Default values are d and F"
3288
  msgstr "Los valores predeterminados son d y F"
3289
 
3290
+ #: app/features/mec/meta_boxes/display_options.php:231
3291
  msgid "Default values are d and M"
3292
  msgstr "Los valores predeterminados son d y M"
3293
 
3294
+ #: app/features/mec/meta_boxes/display_options.php:279
3295
  msgid "Default value is \"d F Y\""
3296
  msgstr "Valor por defecto is \"d F Y\""
3297
 
3298
+ #: app/features/mec/meta_boxes/display_options.php:285
3299
+ #: app/features/mec/meta_boxes/display_options.php:1083
3300
  msgid "Count in row"
3301
  msgstr "Contador en fila"
3302
 
3303
+ #: app/features/mec/meta_boxes/display_options.php:330
3304
+ #: app/features/mec/meta_boxes/display_options.php:508
3305
+ #: app/features/mec/meta_boxes/display_options.php:615
3306
+ #: app/features/mec/meta_boxes/display_options.php:722
3307
+ #: app/features/mec/meta_boxes/display_options.php:995
3308
  #, php-format
3309
  msgid "%s is required to use this skin."
3310
  msgstr "Se requiere %s para utilizar este tema."
3311
 
3312
+ #: app/features/mec/meta_boxes/display_options.php:360
3313
+ #: app/features/mec/meta_boxes/display_options.php:536
3314
  msgid "Default values are l and F j"
3315
  msgstr "Los valores por defectos son l y F j"
3316
 
3317
+ #: app/features/mec/meta_boxes/display_options.php:407
3318
  msgid "Default View"
3319
  msgstr "Vista por defecto"
3320
 
3321
+ #: app/features/mec/meta_boxes/display_options.php:409
3322
+ #: app/features/mec/meta_boxes/display_options.php:430
3323
  #: app/libraries/main.php:329 app/libraries/main.php:1570
3324
  #: app/libraries/main.php:1595
3325
  msgid "List View"
3326
  msgstr "Vista de lista"
3327
 
3328
+ #: app/features/mec/meta_boxes/display_options.php:410
3329
+ #: app/features/mec/meta_boxes/display_options.php:440
3330
  #: app/libraries/main.php:333 app/libraries/main.php:1564
3331
  #: app/libraries/main.php:1589
3332
  msgid "Yearly View"
3333
  msgstr "Vista anual"
3334
 
3335
+ #: app/features/mec/meta_boxes/display_options.php:411
3336
+ #: app/features/mec/meta_boxes/display_options.php:462
3337
  msgid "Monthly/Calendar View"
3338
  msgstr "Vista Mensual/Calendario"
3339
 
3340
+ #: app/features/mec/meta_boxes/display_options.php:412
3341
+ #: app/features/mec/meta_boxes/display_options.php:472
3342
  #: app/libraries/main.php:336 app/libraries/main.php:1566
3343
  #: app/libraries/main.php:1591
3344
  msgid "Weekly View"
3345
  msgstr "Vista de semana"
3346
 
3347
+ #: app/features/mec/meta_boxes/display_options.php:413
3348
+ #: app/features/mec/meta_boxes/display_options.php:482
3349
  #: app/libraries/main.php:335 app/libraries/main.php:1567
3350
  #: app/libraries/main.php:1592
3351
  msgid "Daily View"
3352
  msgstr "Vista de día"
3353
 
3354
+ #: app/features/mec/meta_boxes/display_options.php:417
3355
  msgid "Monthly Style"
3356
  msgstr ""
3357
 
3358
+ #: app/features/mec/meta_boxes/display_options.php:457
3359
  #, fuzzy, php-format
3360
  #| msgid "%s is required to use this skin."
3361
  msgid "%s is required to use <b>Yearly View</b> skin."
3362
  msgstr "Se requiere %s para utilizar este tema."
3363
 
3364
+ #: app/features/mec/meta_boxes/display_options.php:490
3365
  msgid "The price shows only in List View."
3366
  msgstr "El precio sólo aparece en la vista de lista."
3367
 
3368
+ #: app/features/mec/meta_boxes/display_options.php:493
3369
  msgid "Display Event Price"
3370
  msgstr "Mostrar el precio del evento"
3371
 
3372
+ #: app/features/mec/meta_boxes/display_options.php:521
3373
  msgid "Start of Current Year"
3374
  msgstr "Comienzo del año actual"
3375
 
3376
+ #: app/features/mec/meta_boxes/display_options.php:522
3377
  msgid "Start of Next Year"
3378
  msgstr "Comienzo del próximo año"
3379
 
3380
+ #: app/features/mec/meta_boxes/display_options.php:542
3381
+ #: app/features/mec/meta_boxes/display_options.php:584
3382
+ #: app/features/mec/meta_boxes/display_options.php:667
3383
+ #: app/features/mec/meta_boxes/display_options.php:701
3384
+ #: app/features/mec/meta_boxes/display_options.php:747
3385
  msgid "Events per day"
3386
  msgstr "Eventos por día"
3387
 
3388
+ #: app/features/mec/meta_boxes/display_options.php:547
3389
+ #: app/features/mec/meta_boxes/display_options.php:589
3390
+ #: app/features/mec/meta_boxes/display_options.php:672
3391
+ #: app/features/mec/meta_boxes/display_options.php:706
3392
+ #: app/features/mec/meta_boxes/display_options.php:776
3393
  msgid "Next/Previous Buttons"
3394
  msgstr "Botones Siguiente/Anterior"
3395
 
3396
+ #: app/features/mec/meta_boxes/display_options.php:555
3397
  msgid "For showing next/previous year navigation."
3398
  msgstr "Para mostrar la navegación del año siguiente/anterior."
3399
 
3400
+ #: app/features/mec/meta_boxes/display_options.php:599
3401
  #, fuzzy
3402
  #| msgid "Text"
3403
  msgid "Uppercase Text"
3404
  msgstr "Texto"
3405
 
3406
+ #: app/features/mec/meta_boxes/display_options.php:607
3407
+ #: app/features/mec/meta_boxes/display_options.php:680
3408
+ #: app/features/mec/meta_boxes/display_options.php:714
3409
+ #: app/features/mec/meta_boxes/display_options.php:784
3410
  msgid "For showing next/previous month navigation."
3411
  msgstr "Para mostrar navegación siguiente/anterior"
3412
 
3413
+ #: app/features/mec/meta_boxes/display_options.php:633
3414
  msgid "Maximum events"
3415
  msgstr "Máximo de eventos"
3416
 
3417
+ #: app/features/mec/meta_boxes/display_options.php:634
3418
  msgid "eg. 200"
3419
  msgstr "ej. 200"
3420
 
3421
+ #: app/features/mec/meta_boxes/display_options.php:638
3422
  msgid "Geolocation"
3423
  msgstr "Geolocalización"
3424
 
3425
+ #: app/features/mec/meta_boxes/display_options.php:646
3426
  msgid "The geolocation feature works only in secure (https) websites."
3427
  msgstr ""
3428
  "La funcionalidad de geolocalización sólo funciona en sitios web seguros "
3429
  "(https)."
3430
 
3431
+ #: app/features/mec/meta_boxes/display_options.php:690
3432
+ #: app/features/mec/meta_boxes/display_options.php:736
3433
  msgid "Current Week"
3434
  msgstr "Semana actual"
3435
 
3436
+ #: app/features/mec/meta_boxes/display_options.php:691
3437
+ #: app/features/mec/meta_boxes/display_options.php:737
3438
  msgid "Next Week"
3439
  msgstr "Siguiente semana"
3440
 
3441
+ #: app/features/mec/meta_boxes/display_options.php:752
3442
  msgid "Number of Days"
3443
  msgstr ""
3444
 
3445
+ #: app/features/mec/meta_boxes/display_options.php:760
3446
  #, fuzzy
3447
  #| msgid "Start"
3448
  msgid "Week Start"
3449
  msgstr "Inicio"
3450
 
3451
+ #: app/features/mec/meta_boxes/display_options.php:762
3452
  #, fuzzy
3453
  #| msgid "Inherit from global options"
3454
  msgid "Inherite from WordPress options"
3455
  msgstr "Heredar opciones globales"
3456
 
3457
+ #: app/features/mec/meta_boxes/display_options.php:819
3458
+ #: app/features/mec/meta_boxes/display_options.php:1006
3459
  msgid "Default values are j and F"
3460
  msgstr "Los valores predeterminados son j y F"
3461
 
3462
+ #: app/features/mec/meta_boxes/display_options.php:826
3463
  msgid "eg. 24"
3464
  msgstr "ej. 24"
3465
 
3466
+ #: app/features/mec/meta_boxes/display_options.php:829
3467
  msgid "Filter By"
3468
  msgstr "Filtrar por"
3469
 
3470
+ #: app/features/mec/meta_boxes/display_options.php:831
3471
  msgid "None"
3472
  msgstr ""
3473
 
3474
+ #: app/features/mec/meta_boxes/display_options.php:840
3475
  msgid "Fit to row"
3476
  msgstr ""
3477
 
3478
+ #: app/features/mec/meta_boxes/display_options.php:841
3479
  msgid ""
3480
  "Items are arranged into rows. Rows progress vertically. Similar to what you "
3481
  "would expect from a layout that uses CSS floats."
3482
  msgstr ""
3483
 
3484
+ #: app/features/mec/meta_boxes/display_options.php:851
3485
  msgid "Convert Masonry to Grid"
3486
  msgstr ""
3487
 
3488
+ #: app/features/mec/meta_boxes/display_options.php:852
3489
  msgid "For using this option, your events should come with image"
3490
  msgstr ""
3491
 
3492
+ #: app/features/mec/meta_boxes/display_options.php:892
3493
  msgid "Default values are d, M and Y"
3494
  msgstr "Los valores predeterminados son d, M e Y"
3495
 
3496
+ #: app/features/mec/meta_boxes/display_options.php:904
3497
  msgid "Default values are \"F d\" and l"
3498
  msgstr "Los valores predeterminados son \"F d\" y l"
3499
 
3500
+ #: app/features/mec/meta_boxes/display_options.php:915
3501
  msgid "Default value is \"l, F d Y\""
3502
  msgstr "Valor por defecto es \"l, F d Y\""
3503
 
3504
+ #: app/features/mec/meta_boxes/display_options.php:936
3505
  msgid "Style 1"
3506
  msgstr "Estilo 1"
3507
 
3508
+ #: app/features/mec/meta_boxes/display_options.php:937
3509
  msgid "Style 2"
3510
  msgstr "Estilo 2"
3511
 
3512
+ #: app/features/mec/meta_boxes/display_options.php:938
3513
  msgid "Style 3"
3514
  msgstr "Estilo 3"
3515
 
3516
+ #: app/features/mec/meta_boxes/display_options.php:947
3517
+ #: app/features/mec/meta_boxes/display_options.php:958
3518
  msgid "Default value is \"j F Y\""
3519
  msgstr "El valor predeterminado es \"j F Y\""
3520
 
3521
+ #: app/features/mec/meta_boxes/display_options.php:971
3522
  msgid "Default values are j, F and Y"
3523
  msgstr "Los valores predeterminados son j, F e Y"
3524
 
3525
+ #: app/features/mec/meta_boxes/display_options.php:979
3526
+ #: app/features/mec/meta_boxes/display_options.php:1014
3527
  msgid " -- Next Upcoming Event -- "
3528
  msgstr " -- Próximo Evento -- "
3529
 
3530
+ #: app/features/mec/meta_boxes/display_options.php:986
3531
  msgid "Background Color"
3532
  msgstr "Color de fondo"
3533
 
3534
+ #: app/features/mec/meta_boxes/display_options.php:1028
3535
+ #: app/features/mec/meta_boxes/display_options.php:1114
3536
  msgid "Type 1"
3537
  msgstr "Tipo 1"
3538
 
3539
+ #: app/features/mec/meta_boxes/display_options.php:1029
3540
+ #: app/features/mec/meta_boxes/display_options.php:1115
3541
  msgid "Type 2"
3542
  msgstr "Tipo 2"
3543
 
3544
+ #: app/features/mec/meta_boxes/display_options.php:1030
3545
+ #: app/features/mec/meta_boxes/display_options.php:1116
3546
  msgid "Type 3"
3547
  msgstr "Tipo 3"
3548
 
3549
+ #: app/features/mec/meta_boxes/display_options.php:1031
3550
+ #: app/features/mec/meta_boxes/display_options.php:1117
3551
  msgid "Type 4"
3552
  msgstr "Tipo 4"
3553
 
3554
+ #: app/features/mec/meta_boxes/display_options.php:1055
3555
  msgid "Default values are d, F and Y"
3556
  msgstr "Los valores predeterminados son d, F e Y"
3557
 
3558
+ #: app/features/mec/meta_boxes/display_options.php:1066
3559
+ #: app/features/mec/meta_boxes/display_options.php:1077
3560
  msgid "Default value is \"M d, Y\""
3561
  msgstr "El valor predeterminado es \"M d, Y\""
3562
 
3563
+ #: app/features/mec/meta_boxes/display_options.php:1096
3564
+ #: app/features/mec/meta_boxes/display_options.php:1204
3565
  msgid "Auto Play Time"
3566
  msgstr "Tiempo de reproducción automática"
3567
 
3568
+ #: app/features/mec/meta_boxes/display_options.php:1097
3569
+ #: app/features/mec/meta_boxes/display_options.php:1205
3570
  msgid "eg. 3000 default is 3 second"
3571
  msgstr "Ejemplo. 3000 son 3 segundos."
3572
 
3573
+ #: app/features/mec/meta_boxes/display_options.php:1101
3574
  #, fuzzy
3575
  #| msgid "Archive Page Skin"
3576
  msgid "Archive Link"
3577
  msgstr "Tema de la página de archivo"
3578
 
3579
+ #: app/features/mec/meta_boxes/display_options.php:1105
3580
  #, fuzzy
3581
  #| msgid "Text"
3582
  msgid "Head Text"
3583
  msgstr "Texto"
3584
 
3585
+ #: app/features/mec/meta_boxes/display_options.php:1118
3586
  msgid "Type 5"
3587
  msgstr "Tipo 5"
3588
 
3590
  msgid "No filter options applicable for this skin."
3591
  msgstr "Sin opciones de filtro aplicables para esta plantilla."
3592
 
3593
+ #: app/features/mec/meta_boxes/filter.php:82
3594
  msgid "Choose your desired categories for filtering the events."
3595
  msgstr "Elige tus categorías deseadas para el filtrado de los eventos."
3596
 
3597
+ #: app/features/mec/meta_boxes/filter.php:99
3598
  msgid "Choose your desired locations for filtering the events."
3599
  msgstr "Elige las ubicaciones que quieras para filtrar los eventos."
3600
 
3601
+ #: app/features/mec/meta_boxes/filter.php:116
3602
  msgid "Choose your desired organizers for filtering the events."
3603
  msgstr "Elegir los organizadores deseados para el filtrado de los eventos."
3604
 
3605
+ #: app/features/mec/meta_boxes/filter.php:133
3606
  msgid "Choose your desired labels for filtering the events."
3607
  msgstr "Elige las etiquetas que quieras para filtrar los eventos."
3608
 
3609
+ #: app/features/mec/meta_boxes/filter.php:150
3610
  msgid "Insert your desired tags comma separated."
3611
  msgstr "Inserta las etiquetas que desees separadas con coma."
3612
 
3613
+ #: app/features/mec/meta_boxes/filter.php:155
3614
  msgid "Authors"
3615
  msgstr "Autores"
3616
 
3617
+ #: app/features/mec/meta_boxes/filter.php:156
3618
  msgid "Choose your desired authors for filtering the events."
3619
  msgstr "Elije los autores deseados para filtrar los eventos."
3620
 
3621
+ #: app/features/mec/meta_boxes/filter.php:177
3622
  msgid "Dates"
3623
  msgstr "Fechas"
3624
 
3625
+ #: app/features/mec/meta_boxes/filter.php:181
3626
  msgid "Include Expired Events"
3627
  msgstr "Incluir eventos pasados"
3628
 
3629
+ #: app/features/mec/meta_boxes/filter.php:188
3630
  msgid ""
3631
  "You have ability to include past/expired events if you like so it will show "
3632
  "upcoming and expired events based on start date that you selected."
3635
  "que mostrará en próximos y caducados eventos basados en la fecha de inicio "
3636
  "que has seleccionado."
3637
 
3638
+ #: app/features/mec/meta_boxes/filter.php:195
3639
  msgid "Show Only Expired Events"
3640
  msgstr "Mostrar únicamente eventos caducados"
3641
 
3642
+ #: app/features/mec/meta_boxes/filter.php:202
3643
  msgid "It shows only expired/past events."
3644
  msgstr "Solo muestra eventos pasados/caducados"
3645
 
3646
+ #: app/features/mec/meta_boxes/filter.php:210
3647
  msgid "Show Only Ongoing Events"
3648
  msgstr "Mostrar solo eventos en curso"
3649
 
3650
+ #: app/features/mec/meta_boxes/filter.php:217
3651
  msgid "It shows only ongoing events on List and Grid skins."
3652
  msgstr ""
3653
  "Solo muestra los eventos ocurriendo en los temas de lista y cuadricula."
3735
  #: app/features/mec/meta_boxes/search_form.php:612
3736
  #: app/features/mec/meta_boxes/search_form.php:619
3737
  #: app/features/mec/meta_boxes/search_form.php:626
3738
+ #: app/features/mec/modules.php:125 app/features/mec/settings.php:97
3739
+ #: app/features/mec/settings.php:368
3740
  msgid "Disabled"
3741
  msgstr "Desactivado"
3742
 
3750
  #: app/features/mec/meta_boxes/search_form.php:474
3751
  #: app/features/mec/meta_boxes/search_form.php:535
3752
  #: app/features/mec/meta_boxes/search_form.php:596
3753
+ #: app/features/mec/settings.php:738 app/features/mec/single.php:217
3754
  #: app/features/speakers.php:59 app/features/speakers.php:247
3755
+ #: app/libraries/main.php:4853 app/libraries/skins.php:886
3756
  msgid "Speaker"
3757
  msgstr ""
3758
 
3766
  #: app/features/mec/meta_boxes/search_form.php:481
3767
  #: app/features/mec/meta_boxes/search_form.php:542
3768
  #: app/features/mec/meta_boxes/search_form.php:603
3769
+ #: app/features/mec/settings.php:745 app/features/mec/single.php:226
3770
  #: app/libraries/skins.php:912
3771
  #, fuzzy
3772
  #| msgid "Tags"
3820
  msgid "No Search Options"
3821
  msgstr "No hay opciones de búsqueda"
3822
 
3823
+ #: app/features/mec/modules.php:43
3824
  msgid "Speakers Options"
3825
  msgstr ""
3826
 
3827
+ #: app/features/mec/modules.php:49
3828
  msgid "Enable speakers feature"
3829
  msgstr ""
3830
 
3831
+ #: app/features/mec/modules.php:53
3832
  msgid ""
3833
  "Enable this option to have speaker in Hourly Schedule in Single. Refresh "
3834
  "after enabling it to see the Speakers menu under MEC dashboard."
3835
  msgstr ""
3836
 
3837
+ #: app/features/mec/modules.php:58
3838
  msgid ""
3839
  "After enabling and saving the settings, you should reload the page to see a "
3840
  "new menu on the Dashboard > MEC"
3841
  msgstr ""
3842
 
3843
+ #: app/features/mec/modules.php:75
3844
  msgid "Show Google Maps on event page"
3845
  msgstr "Ver eventos en Google Maps"
3846
 
3847
+ #: app/features/mec/modules.php:80 app/features/mec/modules.php:238
3848
+ #: app/features/mec/settings.php:775 app/features/mec/settings.php:780
3849
  msgid "API Key"
3850
  msgstr "API Key"
3851
 
3852
+ #: app/features/mec/modules.php:86 app/features/mec/settings.php:781
3853
+ #: app/features/mec/settings.php:794
3854
  msgid "Required!"
3855
  msgstr "¡Obligatorio!"
3856
 
3857
+ #: app/features/mec/modules.php:93 app/features/mec/modules.php:102
3858
  msgid "Zoom level"
3859
  msgstr "Nivel de zoom"
3860
 
3861
+ #: app/features/mec/modules.php:103
3862
  msgid ""
3863
  "For Google Maps module in single event page. In Google Maps skin, it will "
3864
  "caculate the zoom level automatically based on event boundaries."
3867
  "de Google Maps, calculará el nivel de Zoom automáticamente de acuerdo a los "
3868
  "limites."
3869
 
3870
+ #: app/features/mec/modules.php:110
3871
  msgid "Google Maps Style"
3872
  msgstr "Estilo de Google Maps"
3873
 
3874
+ #: app/features/mec/modules.php:114 app/features/mec/single.php:88
3875
  msgid "Default"
3876
  msgstr "Por defecto"
3877
 
3878
+ #: app/features/mec/modules.php:122
3879
  msgid "Direction on single event"
3880
  msgstr "Dirección en la página del evento"
3881
 
3882
+ #: app/features/mec/modules.php:126
3883
  msgid "Simple Method"
3884
  msgstr "Método simple"
3885
 
3886
+ #: app/features/mec/modules.php:127
3887
  msgid "Advanced Method"
3888
  msgstr "Método avanzado"
3889
 
3890
+ #: app/features/mec/modules.php:132 app/features/mec/modules.php:137
3891
  msgid "Lightbox Date Format"
3892
  msgstr "Formato de Fecha LightBox"
3893
 
3894
+ #: app/features/mec/modules.php:138
3895
  msgid "Default value is M d Y"
3896
  msgstr "El valor predeterminado es M d Y"
3897
 
3898
+ #: app/features/mec/modules.php:145 app/features/mec/modules.php:153
3899
  msgid "Google Maps API"
3900
  msgstr "Google Maps API"
3901
 
3902
+ #: app/features/mec/modules.php:149
3903
  msgid "Don't load Google Maps API library"
3904
  msgstr "No carga la biblioteca de la API de Google Maps"
3905
 
3906
+ #: app/features/mec/modules.php:154
3907
  msgid "Check it only if another plugin/theme is loading the Google Maps API"
3908
  msgstr "Marcalo sólo si en otro plugin/tema se carga la API de Google Maps"
3909
 
3910
+ #: app/features/mec/modules.php:167 app/libraries/main.php:561
3911
  #, fuzzy
3912
  #| msgid "Import Options"
3913
  msgid "Export Options"
3914
  msgstr "Importar Opciones"
3915
 
3916
+ #: app/features/mec/modules.php:171
3917
  msgid ""
3918
  "Show export module (iCal export and add to Google calendars) on event page"
3919
  msgstr "Ver módulo exportado (iCal y Google Calendars) en la página del evento"
3920
 
3921
+ #: app/features/mec/modules.php:178
3922
  msgid "Google Calendar"
3923
  msgstr "Google Calendar"
3924
 
3925
+ #: app/features/mec/modules.php:194 app/libraries/main.php:562
3926
  #: app/modules/local-time/details.php:42 app/widgets/single.php:99
3927
  msgid "Local Time"
3928
  msgstr "Hora local"
3929
 
3930
+ #: app/features/mec/modules.php:198
3931
  msgid "Show event time based on local time of visitor on event page"
3932
  msgstr ""
3933
  "Mostrar el tiempo del evento basado en la hora local del visitante en la "
3934
  "página del evento"
3935
 
3936
+ #: app/features/mec/modules.php:208 app/libraries/main.php:563
3937
  #: app/modules/qrcode/details.php:38 app/widgets/single.php:155
3938
  msgid "QR Code"
3939
  msgstr "Código QR"
3940
 
3941
+ #: app/features/mec/modules.php:216
3942
  msgid "Show QR code of event in details page and booking invoice"
3943
  msgstr ""
3944
  "Mostrar código QR del evento en la pagina de detalles de la pagina y en el "
3945
  "recibo de la reservación"
3946
 
3947
+ #: app/features/mec/modules.php:226 app/libraries/main.php:564
3948
  #: app/modules/weather/details.php:37
3949
  msgid "Weather"
3950
  msgstr "El Tiempo"
3951
 
3952
+ #: app/features/mec/modules.php:233
3953
  msgid "Show weather module on event page"
3954
  msgstr "Módulo de tiempo para mostrar en la página del evento"
3955
 
3956
+ #: app/features/mec/modules.php:241
3957
  #, php-format
3958
  msgid "You can get a free API Key from %s"
3959
  msgstr "Puedes obtener una clave API gratis desde %s"
3960
 
3961
+ #: app/features/mec/modules.php:247
3962
  #, fuzzy
3963
  #| msgid "Show weather module on event page"
3964
  msgid "Show weather imperial units"
3965
  msgstr "Módulo de tiempo para mostrar en la página del evento"
3966
 
3967
+ #: app/features/mec/modules.php:253
3968
  msgid "Show weather change units button"
3969
  msgstr ""
3970
 
3971
+ #: app/features/mec/modules.php:267
3972
  msgid "Show social network module"
3973
  msgstr "Ver módulo de redes sociales"
3974
 
3975
+ #: app/features/mec/modules.php:288 app/libraries/main.php:566
3976
  #: app/modules/next-event/details.php:82
3977
  msgid "Next Event"
3978
  msgstr "Próximo Evento"
3979
 
3980
+ #: app/features/mec/modules.php:292
3981
  msgid "Show next event module on event page"
3982
  msgstr "Mostrar el módulo del próximo evento en la página del evento"
3983
 
3984
+ #: app/features/mec/modules.php:297
3985
  msgid "Method"
3986
  msgstr "Método"
3987
 
3988
+ #: app/features/mec/modules.php:300
3989
  msgid "Next Occurrence of Current Event"
3990
  msgstr "Próxima aparición del evento actual"
3991
 
3992
+ #: app/features/mec/modules.php:301
3993
  msgid "Next Occurrence of Other Events"
3994
  msgstr "Próxima aparición de otros eventos"
3995
 
3996
+ #: app/features/mec/modules.php:312 app/features/mec/single.php:42
3997
  msgid "Default is M d Y"
3998
  msgstr "El valor predeterminado es M d Y"
3999
 
4000
+ #: app/features/mec/modules.php:328
4001
  msgid "Enable BuddyPress Integration"
4002
  msgstr "Habilitar la integración de BuddyPress"
4003
 
4004
+ #: app/features/mec/modules.php:335
4005
  msgid "Show \"Attendees Module\" in event details page"
4006
  msgstr "Mostrar \"Módulo de asistentes\" en la página de detalles del evento"
4007
 
4008
+ #: app/features/mec/modules.php:339
4009
  msgid "Attendees Limit"
4010
  msgstr "Límite de asistentes"
4011
 
4012
+ #: app/features/mec/modules.php:347
4013
  msgid "Add booking activity to user profile"
4014
  msgstr "Añadir actividad de reservaciones en el perfil del usuario"
4015
 
4398
  msgid "Status of event"
4399
  msgstr "Estado del evento"
4400
 
4401
+ #: app/features/mec/notifications.php:436 app/features/mec/settings.php:654
4402
+ #: app/features/mec/settings.php:658
4403
  msgid "Event Note"
4404
  msgstr "Nota de evento"
4405
 
4407
  msgid "Admin events management link."
4408
  msgstr "Enlace del administrador de reservas."
4409
 
4410
+ #: app/features/mec/settings.php:55 app/features/mec/settings.php:65
4411
  msgid "Hide Events"
4412
  msgstr "Ocultar eventos"
4413
 
4414
+ #: app/features/mec/settings.php:58
4415
  msgid "On Event Start"
4416
  msgstr "En el inicio del evento"
4417
 
4418
+ #: app/features/mec/settings.php:59
4419
  msgid "+1 Hour after start"
4420
  msgstr "+1 hora después del inicio"
4421
 
4422
+ #: app/features/mec/settings.php:60
4423
  msgid "+2 Hours after start"
4424
  msgstr "+2 horas después del inicio"
4425
 
4426
+ #: app/features/mec/settings.php:61
4427
  msgid "On Event End"
4428
  msgstr "El fin del evento"
4429
 
4430
+ #: app/features/mec/settings.php:66
4431
  msgid ""
4432
  "This option is for showing start/end time of events on frontend of website."
4433
  msgstr ""
4434
  "Esta opción es para mostrar el tiempo de inicio / finalización de los "
4435
  "eventos en la interfaz del sitio web."
4436
 
4437
+ #: app/features/mec/settings.php:75 app/features/mec/settings.php:84
4438
  msgid "Multiple Day Events"
4439
  msgstr "Eventos de varios días"
4440
 
4441
+ #: app/features/mec/settings.php:78
4442
  msgid "Show only first day on List/Grid/Slider skins"
4443
  msgstr ""
4444
  "Muestra únicamente el primer día en los temas de Lista, Cuadricula y Rotativo"
4445
 
4446
+ #: app/features/mec/settings.php:79
4447
  msgid "Show only first day on all skins"
4448
  msgstr "Mostrar solo el primer día en todas los temas"
4449
 
4450
+ #: app/features/mec/settings.php:80
4451
  msgid "Show all days"
4452
  msgstr "Mostrar todos los días"
4453
 
4454
+ #: app/features/mec/settings.php:85
4455
  msgid ""
4456
  "For showing all days of multiple day events on frontend or only show the "
4457
  "first day."
4459
  "Para mostrar todos los días en un evento multidía en la pagina o solo "
4460
  "mostrar el primer día."
4461
 
4462
+ #: app/features/mec/settings.php:94
4463
  msgid "Remove MEC Data on Plugin Uninstall"
4464
  msgstr "Elimina los datos de MEC al desinstalar el plugin."
4465
 
4466
+ #: app/features/mec/settings.php:98
4467
  msgid "Enabled"
4468
  msgstr "Habilitado"
4469
 
4470
+ #: app/features/mec/settings.php:104
4471
  msgid "Exclude Date Suffix"
4472
  msgstr "Excluir sufijo de la fecha"
4473
 
4474
+ #: app/features/mec/settings.php:107
4475
  msgid "Remove suffix from calendars"
4476
  msgstr "Elimina el sufijo de los calendarios."
4477
 
4478
+ #: app/features/mec/settings.php:111
4479
  #, fuzzy
4480
  #| msgid "Remove suffix from calendars"
4481
  msgid "Remove \"Th\" on calendar"
4482
  msgstr "Elimina el sufijo de los calendarios."
4483
 
4484
+ #: app/features/mec/settings.php:112
4485
  msgid ""
4486
  "Checked this checkbox to remove 'Th' on calendar ( ex: '12Th' remove Th, "
4487
  "showing just '12' )"
4488
  msgstr ""
4489
 
4490
+ #: app/features/mec/settings.php:119 app/features/mec/settings.php:126
4491
  msgid "Schema"
4492
  msgstr ""
4493
 
4494
+ #: app/features/mec/settings.php:122
4495
  #, fuzzy
4496
  #| msgid "Enable coupons module"
4497
  msgid "Enable Schema Code"
4498
  msgstr "Activar módulo de cupones"
4499
 
4500
+ #: app/features/mec/settings.php:127
4501
  msgid "You can enable/disable Schema scripts"
4502
  msgstr ""
4503
 
4504
+ #: app/features/mec/settings.php:136 app/features/mec/settings.php:146
4505
+ #: app/libraries/main.php:4857
4506
  msgid "Weekdays"
4507
  msgstr "Días de la semana"
4508
 
4509
+ #: app/features/mec/settings.php:147
4510
  #, fuzzy
4511
  #| msgid ""
4512
  #| "Proceed with caution. Default is set to Monday, Tuesday, Wednesday, "
4518
  msgstr ""
4519
  "Ten cuidado. El predeterminado es Lunes, Martes, Miércoles, Jueves y Viernes."
4520
 
4521
+ #: app/features/mec/settings.php:157 app/features/mec/settings.php:167
4522
  msgid "Weekends"
4523
  msgstr "Fines de semana"
4524
 
4525
+ #: app/features/mec/settings.php:168
4526
  msgid ""
4527
  "Proceed with caution. Default is set to Saturday and Sunday ( you can change "
4528
  "'Week Starts' on WordPress Dashboard > Settings > General - bottom of the "
4529
  "page )."
4530
  msgstr ""
4531
 
4532
+ #: app/features/mec/settings.php:179 app/libraries/main.php:529
4533
  msgid "Archive Pages"
4534
  msgstr "Páginas de archivo"
4535
 
4536
+ #: app/features/mec/settings.php:182 app/features/mec/settings.php:187
4537
  msgid "Archive Page Title"
4538
  msgstr "Título de la página de archivo"
4539
 
4540
+ #: app/features/mec/settings.php:188
4541
  #, fuzzy
4542
  #| msgid "Default value is Events"
4543
  msgid "Default value is Events - It's title of the page"
4544
  msgstr "Valor por defecto del evento"
4545
 
4546
+ #: app/features/mec/settings.php:196 app/features/mec/settings.php:264
4547
  msgid "Archive Page Skin"
4548
  msgstr "Tema de la página de archivo"
4549
 
4550
+ #: app/features/mec/settings.php:204
4551
  #, fuzzy
4552
  #| msgid "Edit shortcodes"
4553
  msgid "Put shortcode..."
4554
  msgstr "Editar Shortcodes"
4555
 
4556
+ #: app/features/mec/settings.php:207 app/features/mec/settings.php:222
4557
+ #: app/features/mec/settings.php:225 app/features/mec/settings.php:234
4558
+ #: app/features/mec/settings.php:260 app/features/mec/settings.php:281
4559
+ #: app/features/mec/settings.php:296 app/features/mec/settings.php:299
4560
+ #: app/features/mec/settings.php:308 app/features/mec/settings.php:334
4561
  #, fuzzy
4562
  #| msgid "The event is ongoing."
4563
  msgid "There is no skins"
4564
  msgstr "El evento está en curso."
4565
 
4566
+ #: app/features/mec/settings.php:210 app/features/mec/settings.php:284
4567
+ #: app/features/mec/single.php:69
4568
  msgid "Modern Style"
4569
  msgstr "Estilo moderno"
4570
 
4571
+ #: app/features/mec/settings.php:252 app/features/mec/settings.php:326
4572
  #, fuzzy
4573
  #| msgid "Colorful"
4574
  msgid "colorful"
4575
  msgstr "Colorido"
4576
 
4577
+ #: app/features/mec/settings.php:257 app/features/mec/settings.php:331
4578
  #, fuzzy
4579
  #| msgid "Plain Style"
4580
  msgid "Clean Style"
4581
  msgstr "Estilo simple"
4582
 
4583
+ #: app/features/mec/settings.php:265
4584
  #, fuzzy
4585
  #| msgid "Default value is Calendar/Monthly View"
4586
  msgid "Default value is Calendar/Monthly View, But you can change it "
4587
  msgstr "El valor predeterminado es calendario / vista mensual"
4588
 
4589
+ #: app/features/mec/settings.php:265 app/features/mec/settings.php:339
4590
  msgid "See Demo"
4591
  msgstr ""
4592
 
4593
+ #: app/features/mec/settings.php:273 app/features/mec/settings.php:338
4594
  msgid "Category Page Skin"
4595
  msgstr "Skin de página de categoría"
4596
 
4597
+ #: app/features/mec/settings.php:339
4598
  msgid ""
4599
  "Default value is List View - But you can change it Set a skin for all "
4600
  "categories."
4601
  msgstr ""
4602
 
4603
+ #: app/features/mec/settings.php:347 app/features/mec/settings.php:355
4604
  msgid "Category Events Method"
4605
  msgstr "Método de categoría de eventos"
4606
 
4607
+ #: app/features/mec/settings.php:351
4608
  msgid "Expired Events"
4609
  msgstr "Eventos pasados"
4610
 
4611
+ #: app/features/mec/settings.php:356
4612
  msgid "Default value is Upcoming Events"
4613
  msgstr "El valor predeterminado es Próximos eventos"
4614
 
4615
+ #: app/features/mec/settings.php:364 app/features/mec/settings.php:372
4616
  msgid "Events Archive Status"
4617
  msgstr "Estado del archivo de eventos"
4618
 
4619
+ #: app/features/mec/settings.php:367
4620
  msgid "Enabled (Recommended)"
4621
  msgstr "Activado (recomendado)"
4622
 
4623
+ #: app/features/mec/settings.php:373
4624
  msgid ""
4625
  "If you disable it, then you should create a page as archive page of MEC. "
4626
  "Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
4630
  "archivo de MEC. El slug debe igualarse al slug principal de MEC. También "
4631
  "desactivará todas las reglas de sobreescripción."
4632
 
4633
+ #: app/features/mec/settings.php:386 app/features/mec/settings.php:391
4634
  msgid "Main Slug"
4635
  msgstr "Slug principal"
4636
 
4637
+ #: app/features/mec/settings.php:392
4638
  msgid ""
4639
  "Default value is events. You can not have a page with this name. MEC allows "
4640
  "you to create custom URLs for the permalinks and archives to enhance the "
4641
  "applicability and forward-compatibility of the links."
4642
  msgstr ""
4643
 
4644
+ #: app/features/mec/settings.php:396 app/features/mec/settings.php:410
4645
  #, fuzzy
4646
  #| msgid ""
4647
  #| "Default value is events. Valid characters are lowercase a-z, - character "
4651
  "El valor por defecto es eventos. Los caracteres válidos son a-z minúsculas, "
4652
  "- carácteres y números."
4653
 
4654
+ #: app/features/mec/settings.php:400 app/features/mec/settings.php:405
4655
  msgid "Category Slug"
4656
  msgstr "Slug de la categoría"
4657
 
4658
+ #: app/features/mec/settings.php:406
4659
  #, fuzzy
4660
  #| msgid ""
4661
  #| "It's slug of MEC categories, you can change it to events-cat or something "
4669
  "cat o a algo más. El valor por defecto es mec-category. Se pueden utilizar "
4670
  "letras de la a-z en minúsculas y numerosas."
4671
 
4672
+ #: app/features/mec/settings.php:418
4673
  msgid "Currency"
4674
  msgstr "Moneda corriente"
4675
 
4676
+ #: app/features/mec/settings.php:428 app/features/mec/settings.php:433
4677
  msgid "Currency Sign"
4678
  msgstr "Tipo de moneda"
4679
 
4680
+ #: app/features/mec/settings.php:434
4681
  msgid "Default value will be \"currency\" if you leave it empty."
4682
  msgstr "El valor por defecto será \"moneda\" si lo dejas en blanco."
4683
 
4684
+ #: app/features/mec/settings.php:441
4685
  msgid "Currency Position"
4686
  msgstr "Posición en moneda extranjera"
4687
 
4688
+ #: app/features/mec/settings.php:444
4689
  msgid "Before $10"
4690
  msgstr "Menos de 10€"
4691
 
4692
+ #: app/features/mec/settings.php:445
4693
  msgid "After 10$"
4694
  msgstr "Más de 10€"
4695
 
4696
+ #: app/features/mec/settings.php:450
4697
  msgid "Thousand Separator"
4698
  msgstr "Separador de miles"
4699
 
4700
+ #: app/features/mec/settings.php:456
4701
  msgid "Decimal Separator"
4702
  msgstr "Separador de decimales"
4703
 
4704
+ #: app/features/mec/settings.php:466
4705
  msgid "No decimal"
4706
  msgstr "No decimal"
4707
 
4708
+ #: app/features/mec/settings.php:477
4709
  msgid "Enable Google Recaptcha"
4710
  msgstr "Habilitar Google Recaptcha"
4711
 
4712
+ #: app/features/mec/settings.php:484
4713
  msgid "Enable on booking form"
4714
  msgstr "Activar en el formulario de reserva"
4715
 
4716
+ #: app/features/mec/settings.php:490
4717
  msgid "Enable on \"Frontend Event Submission\" form"
4718
  msgstr "Activa el formulario \"Envío de eventos desde portada\""
4719
 
4720
+ #: app/features/mec/settings.php:494
4721
  msgid "Site Key"
4722
  msgstr "Clave del Sitio"
4723
 
4724
+ #: app/features/mec/settings.php:500
4725
  msgid "Secret Key"
4726
  msgstr "Clave secreta"
4727
 
4728
+ #: app/features/mec/settings.php:512 app/features/mec/settings.php:520
4729
  msgid "Time Format"
4730
  msgstr "Formato de la hora"
4731
 
4732
+ #: app/features/mec/settings.php:515
4733
  msgid "12 hours format with AM/PM"
4734
  msgstr "Formato de 12 horas con AM / PM"
4735
 
4736
+ #: app/features/mec/settings.php:516
4737
  msgid "24 hours format"
4738
  msgstr "Formato de 24 horas"
4739
 
4740
+ #: app/features/mec/settings.php:521
4741
  msgid "This option, affects the selection of Start/End time."
4742
  msgstr ""
4743
 
4744
+ #: app/features/mec/settings.php:529
4745
  msgid "Events List Page"
4746
  msgstr "Página de lista de eventos"
4747
 
4748
+ #: app/features/mec/settings.php:538 app/features/mec/settings.php:550
4749
  #, php-format
4750
  msgid "Put %s shortcode into the page."
4751
  msgstr "Pon el shortcode %s en la página."
4752
 
4753
+ #: app/features/mec/settings.php:541
4754
  msgid "Add/Edit Events Page"
4755
  msgstr "Añadir/Editar página de eventos"
4756
 
4757
+ #: app/features/mec/settings.php:555
4758
  msgid "Enable event submission by guest (Not logged-in) users"
4759
  msgstr ""
4760
  "Habilitar la presentación de eventos por los usuarios invitados (no "
4761
  "conectados)"
4762
 
4763
+ #: app/features/mec/settings.php:562
4764
  msgid "Enable mandatory email and name for guest user"
4765
  msgstr ""
4766
  "Activa que sea obligatorio el correo y nombre del usuario para el usuario "
4767
  "invitado"
4768
 
4769
+ #: app/features/mec/settings.php:566
4770
  msgid "Frontend Event Submission Sections"
4771
  msgstr "Secciones de envío de eventos en la pagina."
4772
 
4773
+ #: app/features/mec/settings.php:588 app/widgets/single.php:119
4774
  msgid "Event Categories"
4775
  msgstr "Categorías de evento"
4776
 
4777
+ #: app/features/mec/settings.php:594
4778
  msgid "Event Labels"
4779
  msgstr "Etiqueta de eventos"
4780
 
4781
+ #: app/features/mec/settings.php:606
4782
  msgid "Event Tags"
4783
  msgstr "Etiquetas del Evento"
4784
 
4785
+ #: app/features/mec/settings.php:618 app/widgets/single.php:123
4786
  msgid "Event Organizer"
4787
  msgstr "Organizador de eventos"
4788
 
4789
+ #: app/features/mec/settings.php:636
4790
  msgid "Booking Options"
4791
  msgstr "Opciones de reserva"
4792
 
4793
+ #: app/features/mec/settings.php:642
4794
  msgid "Fees / Taxes Options"
4795
  msgstr "Opciones de Cuotas/Impuestos"
4796
 
4797
+ #: app/features/mec/settings.php:659
4798
  #, php-format
4799
  msgid ""
4800
  "Users can put a note for editors while they're submitting the event. Also "
4805
  "evento. También puede poner %%event_note%% en la notificación de nuevo "
4806
  "evento para obtener la nota de los usuarios en el correo electrónico."
4807
 
4808
+ #: app/features/mec/settings.php:666 app/features/mec/settings.php:675
4809
  msgid "Visibility of Note"
4810
  msgstr "Visibilidad de la nota"
4811
 
4812
+ #: app/features/mec/settings.php:669
4813
  msgid "Always"
4814
  msgstr "Siempre"
4815
 
4816
+ #: app/features/mec/settings.php:670
4817
  msgid "While event is not published"
4818
  msgstr "Mientras no se publique el evento"
4819
 
4820
+ #: app/features/mec/settings.php:676
4821
  msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
4822
  msgstr ""
4823
  "La nota de evento se muestra en el formulario de presentación de Frontend y "
4824
  "Editar evento en el backend."
4825
 
4826
+ #: app/features/mec/settings.php:685 app/libraries/main.php:534
4827
  msgid "User Profile"
4828
  msgstr ""
4829
 
4830
+ #: app/features/mec/settings.php:687
4831
  #, php-format
4832
  msgid ""
4833
  "Put %s shortcode into your desired page. Then users are able to see history "
4834
  "of their bookings."
4835
  msgstr ""
4836
 
4837
+ #: app/features/mec/settings.php:692 app/libraries/main.php:535
4838
  #, fuzzy
4839
  #| msgid "Search Form"
4840
  msgid "Search Bar"
4841
  msgstr "Formulario de Búsqueda"
4842
 
4843
+ #: app/features/mec/settings.php:694
4844
  #, php-format
4845
  msgid ""
4846
  "Put %s shortcode into your desired page. Then users are able to search events"
4847
  msgstr ""
4848
 
4849
+ #: app/features/mec/settings.php:698
4850
  msgid "Ajax Live mode"
4851
  msgstr ""
4852
 
4853
+ #: app/features/mec/settings.php:702
4854
  msgid "Ajax mode"
4855
  msgstr ""
4856
 
4857
+ #: app/features/mec/settings.php:703
4858
  msgid ""
4859
  "if you enable this option, search button disappeared and to use this "
4860
  "feature, text input field must be enabled."
4861
  msgstr ""
4862
 
4863
+ #: app/features/mec/settings.php:711
4864
  #, fuzzy
4865
  #| msgid "Modern Style"
4866
  msgid "Modern Type"
4867
  msgstr "Estilo moderno"
4868
 
4869
+ #: app/features/mec/settings.php:715
4870
  #, fuzzy
4871
  #| msgid "Search Form"
4872
  msgid "Search bar fields"
4873
  msgstr "Formulario de Búsqueda"
4874
 
4875
+ #: app/features/mec/settings.php:757
4876
  #, fuzzy
4877
  #| msgid "Text Input"
4878
  msgid "Text input"
4879
  msgstr "Campo de texto"
4880
 
4881
+ #: app/features/mec/settings.php:770
4882
  msgid "Enable Mailchimp Integration"
4883
  msgstr "Activar integración con MailChimp"
4884
 
4885
+ #: app/features/mec/settings.php:788 app/features/mec/settings.php:793
4886
  msgid "List ID"
4887
  msgstr "ID de la lista"
4888
 
4889
+ #: app/features/mec/settings.php:801 app/features/mec/settings.php:809
4890
  msgid "Subscription Status"
4891
  msgstr "Estado Suscripción"
4892
 
4893
+ #: app/features/mec/settings.php:804
4894
  msgid "Subscribe automatically"
4895
  msgstr "Suscribirse automáticamente "
4896
 
4897
+ #: app/features/mec/settings.php:805
4898
  msgid "Subscribe by verification"
4899
  msgstr "Suscribirse por verificación"
4900
 
4901
+ #: app/features/mec/settings.php:810
4902
  msgid ""
4903
  "If you choose \"Subscribe by verification\" then an email will send to user "
4904
  "by mailchimp for subscription verification."
4906
  "Si eliges “Suscribir por verificación” entonces un email de verificación de "
4907
  "suscripción se le enviará al usuario."
4908
 
4909
+ #: app/features/mec/settings.php:822
4910
  #, fuzzy
4911
  #| msgid "Filter Options"
4912
  msgid "Upload Field Options"
4913
  msgstr "Opciones de filtros"
4914
 
4915
+ #: app/features/mec/settings.php:824
4916
  msgid "Mime types"
4917
  msgstr ""
4918
 
4919
+ #: app/features/mec/settings.php:828
4920
  msgid "Split mime types with \",\"."
4921
  msgstr ""
4922
 
4923
+ #: app/features/mec/settings.php:828
4924
  msgid "Default: jpeg,jpg,png,pdf"
4925
  msgstr ""
4926
 
4927
+ #: app/features/mec/settings.php:831
4928
  #, fuzzy
4929
  #| msgid "Maximum Dates"
4930
  msgid "Maximum file size"
4931
  msgstr "Fechas máximas"
4932
 
4933
+ #: app/features/mec/settings.php:835
4934
  msgid "The unit is Megabyte \"MB\""
4935
  msgstr ""
4936
 
4937
+ #: app/features/mec/single.php:34 app/libraries/main.php:541
4938
  #, fuzzy
4939
  #| msgid "Single Event Style"
4940
  msgid "Single Event Page"
4941
  msgstr "Estilo de evento único"
4942
 
4943
+ #: app/features/mec/single.php:36 app/features/mec/single.php:41
4944
  msgid "Single Event Date Format"
4945
  msgstr "Formato de fecha en evento individual"
4946
 
4947
+ #: app/features/mec/single.php:49 app/features/mec/single.php:57
4948
  msgid "Date Method"
4949
  msgstr "Método de fecha"
4950
 
4951
+ #: app/features/mec/single.php:52
4952
  msgid "Next occurrence date"
4953
  msgstr "Próxima fecha que ocurrirá"
4954
 
4955
+ #: app/features/mec/single.php:53
4956
  msgid "Referred date"
4957
  msgstr "Fecha referida"
4958
 
4959
+ #: app/features/mec/single.php:58
4960
  #, fuzzy
4961
  #| msgid ""
4962
  #| "\"Referred date\" shows the event date based on referred date in event "
4967
  "La \"fecha de referencia\" muestra la fecha del evento referido en la lista "
4968
  "de eventos."
4969
 
4970
+ #: app/features/mec/single.php:65 app/features/mec/single.php:76
4971
  msgid "Single Event Style"
4972
  msgstr "Estilo de evento único"
4973
 
4974
+ #: app/features/mec/single.php:68
4975
  msgid "Default Style"
4976
  msgstr "Estilo por defecto"
4977
 
4978
+ #: app/features/mec/single.php:71
4979
  #, fuzzy
4980
  #| msgid "MEC Single Sidebar"
4981
  msgid "Elementor Single Builder"
4982
  msgstr "barra lateral MEC"
4983
 
4984
+ #: app/features/mec/single.php:77
4985
  msgid "Choose your single event style."
4986
  msgstr "Elige tu estilo de evento para la página de vista."
4987
 
4988
+ #: app/features/mec/single.php:85 app/features/mec/single.php:93
4989
  msgid "Booking Style"
4990
  msgstr ""
4991
 
4992
+ #: app/features/mec/single.php:89
4993
  msgid "Modal"
4994
  msgstr ""
4995
 
4996
+ #: app/features/mec/single.php:94
4997
  msgid ""
4998
  "Choose your Booking style, Please Note: When you set this feature to modal "
4999
  "you can not see booking box if you set popoup module view on shortcodes"
5000
  msgstr ""
5001
 
5002
+ #: app/features/mec/single.php:102
5003
  msgid "Disable Block Editor (Gutenberg)"
5004
  msgstr ""
5005
 
5006
+ #: app/features/mec/single.php:105
5007
  msgid "Disable Block Editor"
5008
  msgstr ""
5009
 
5010
+ #: app/features/mec/single.php:109
5011
  msgid "Block Editor"
5012
  msgstr ""
5013
 
5014
+ #: app/features/mec/single.php:110
5015
  msgid ""
5016
  "If you want to use the new WordPress block editor you should keep this "
5017
  "checkbox unchecked."
5018
  msgstr ""
5019
 
5020
+ #: app/features/mec/single.php:116 app/features/mec/single.php:123
5021
  msgid "Breadcrumbs"
5022
  msgstr ""
5023
 
5024
+ #: app/features/mec/single.php:119
5025
  msgid "Enable Breadcrumbs."
5026
  msgstr ""
5027
 
5028
+ #: app/features/mec/single.php:124
5029
  msgid "Check this option, for showing the breadcrumbs on single event page"
5030
  msgstr ""
5031
 
5032
+ #: app/features/mec/single.php:137
5033
  msgid "Show countdown module on event page"
5034
  msgstr "Mostrar módulo de cuenta atrás en la página del evento"
5035
 
5036
+ #: app/features/mec/single.php:142
5037
  msgid "Countdown Style"
5038
  msgstr "Estilo de Cuenta Atrás"
5039
 
5040
+ #: app/features/mec/single.php:145
5041
  msgid "Plain Style"
5042
  msgstr "Estilo simple"
5043
 
5044
+ #: app/features/mec/single.php:146
5045
  msgid "Flip Style"
5046
  msgstr "Estilo Volteado"
5047
 
5048
+ #: app/features/mec/single.php:154 app/features/mec/single.php:161
5049
  msgid "Exceptional days"
5050
  msgstr "Días Excepcionales"
5051
 
5052
+ #: app/features/mec/single.php:158
5053
  msgid "Show exceptional days option on Add/Edit events page"
5054
  msgstr ""
5055
  "Mostrar opciones de días excepcionales en la página Agregar / Editar eventos"
5056
 
5057
+ #: app/features/mec/single.php:162
5058
  #, fuzzy
5059
  #| msgid ""
5060
  #| "Using this option you can include/exclude certain days to/from event "
5065
  "Usar esta opción permite incluir o excluir ciertos días para la ocurrencia "
5066
  "de eventos."
5067
 
5068
+ #: app/features/mec/single.php:171 app/libraries/main.php:544
5069
  msgid "Additional Organizers"
5070
  msgstr "Organizadores adicionales"
5071
 
5072
+ #: app/features/mec/single.php:175
5073
  msgid ""
5074
  "Show additional organizers option on Add/Edit events page and single event "
5075
  "page."
5077
  "Mostrar la opción de organizadores adicionales en la pagina de añadir "
5078
  "eventos y la pagina de evento individual."
5079
 
5080
+ #: app/features/mec/single.php:181
5081
  #, fuzzy
5082
  #| msgid "Additional Organizers"
5083
  msgid "Additional locations"
5084
  msgstr "Organizadores adicionales"
5085
 
5086
+ #: app/features/mec/single.php:185
5087
  #, fuzzy
5088
  #| msgid ""
5089
  #| "Show additional organizers option on Add/Edit events page and single "
5095
  "Mostrar la opción de organizadores adicionales en la pagina de añadir "
5096
  "eventos y la pagina de evento individual."
5097
 
5098
+ #: app/features/mec/single.php:191 app/libraries/main.php:546
5099
  #: app/skins/single.php:163
5100
  #, fuzzy
5101
  #| msgid "featured event"
5102
  msgid "Related Events"
5103
  msgstr "evento destacado"
5104
 
5105
+ #: app/features/mec/single.php:195
5106
  msgid "Display related events based on taxonomy in single event page."
5107
  msgstr ""
5108
 
5109
+ #: app/features/mec/single.php:201
5110
  #, fuzzy
5111
  #| msgid "Taxonomies"
5112
  msgid "Select Taxonomies:"
5206
  msgstr "Todos los eventos"
5207
 
5208
  #: app/features/mec/support-page.php:13 app/features/mec/support.php:147
5209
+ #, fuzzy
5210
+ #| msgid "View all Articles"
5211
+ msgid "All Articles"
5212
  msgstr "Ver todos los artículos"
5213
 
5214
  #: app/features/mec/support-page.php:15
5225
  msgid "Advice and answers from the Webnus Team"
5226
  msgstr ""
5227
 
 
 
 
 
 
 
5228
  #: app/features/mec/support-page.php:46
5229
  msgid "Quick Setup"
5230
  msgstr ""
5664
  msgid "eg. https://webnus.net"
5665
  msgstr "ej. https://webnus.net"
5666
 
5667
+ #: app/features/organizers.php:311 app/libraries/main.php:4881
5668
+ #: app/skins/single.php:845
5669
  msgid "Other Organizers"
5670
  msgstr "En común"
5671
 
5681
  msgid "Please %s/%s in order to see your bookings / profile."
5682
  msgstr ""
5683
 
5684
+ #: app/features/profile/profile.php:26 app/features/profile/profile.php:88
5685
  msgid "#"
5686
  msgstr ""
5687
 
5688
+ #: app/features/profile/profile.php:35 app/libraries/main.php:2908
5689
  msgid "Status"
5690
  msgstr "Estado"
5691
 
5692
+ #: app/features/profile/profile.php:38 app/libraries/main.php:2045
5693
  msgid "Attendees"
5694
  msgstr "Asistentes"
5695
 
5696
+ #: app/features/profile/profile.php:41
5697
  msgid "Invoice"
5698
  msgstr ""
5699
 
5700
+ #: app/features/profile/profile.php:77
5701
  #, php-format
5702
  msgid "<i class=\"mec-sl-eye\"></i> %s"
5703
  msgstr ""
5704
 
5705
+ #: app/features/profile/profile.php:97 app/libraries/main.php:2059
5706
+ #: app/libraries/main.php:4879
5707
  msgid "Ticket"
5708
  msgstr "Ticket"
5709
 
5710
+ #: app/features/profile/profile.php:100
5711
  msgid "Variations"
5712
  msgstr ""
5713
 
5714
+ #: app/features/profile/profile.php:143
5715
  msgid "No bookings found!"
5716
  msgstr ""
5717
 
5740
  #: app/features/search_bar/search_result.php:11
5741
  #: app/libraries/notifications.php:671 app/libraries/render.php:437
5742
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
5743
+ #: app/skins/single.php:160 app/skins/single.php:736
5744
  #: app/skins/single/default.php:86 app/skins/single/default.php:298
5745
  #: app/skins/single/m1.php:34 app/skins/single/modern.php:184
5746
  msgid "All of the day"
5931
  msgid "Slider View"
5932
  msgstr "Vista del rotativo"
5933
 
5934
+ #: app/libraries/main.php:382 app/libraries/main.php:4859
5935
  msgid "SU"
5936
  msgstr "DO"
5937
 
5938
+ #: app/libraries/main.php:383 app/libraries/main.php:4860
5939
  msgid "MO"
5940
  msgstr "LU"
5941
 
5942
+ #: app/libraries/main.php:384 app/libraries/main.php:4861
5943
  msgid "TU"
5944
  msgstr "MA"
5945
 
5946
+ #: app/libraries/main.php:385 app/libraries/main.php:4862
5947
  msgid "WE"
5948
  msgstr "MI"
5949
 
5950
+ #: app/libraries/main.php:386 app/libraries/main.php:4863
5951
  msgid "TH"
5952
  msgstr "JU"
5953
 
5954
+ #: app/libraries/main.php:387 app/libraries/main.php:4864
5955
  msgid "FR"
5956
  msgstr "VI"
5957
 
5958
+ #: app/libraries/main.php:388 app/libraries/main.php:4865
5959
  msgid "SA"
5960
  msgstr "SA"
5961
 
6193
  msgid "Free"
6194
  msgstr "Gratis"
6195
 
6196
+ #: app/libraries/main.php:3525 app/libraries/main.php:5106
6197
  #, fuzzy
6198
  #| msgid "M.E. Calendar"
6199
  msgid "M.E. Calender"
6200
  msgstr "M.E. Calendario"
6201
 
6202
+ #: app/libraries/main.php:3680
6203
  #, php-format
6204
  msgid "Copy of %s"
6205
  msgstr "Copia de %s"
6206
 
6207
+ #: app/libraries/main.php:4353
6208
  msgid "Booked an event."
6209
  msgstr "Has reservado para un evento."
6210
 
6211
+ #: app/libraries/main.php:4394
6212
  #, php-format
6213
  msgid "%s booked %s event."
6214
  msgstr "%s reservado %s evento."
6215
 
6216
+ #: app/libraries/main.php:4842
6217
  msgid "Taxonomies"
6218
  msgstr "Taxonomías"
6219
 
6220
+ #: app/libraries/main.php:4844
6221
  msgid "Category Plural Label"
6222
  msgstr "Categoría Etiqueta plural"
6223
 
6224
+ #: app/libraries/main.php:4845
6225
  msgid "Category Singular Label"
6226
  msgstr "Categoría Etiqueta Singular"
6227
 
6228
+ #: app/libraries/main.php:4846
6229
  msgid "Label Plural Label"
6230
  msgstr "Etiqueta plural"
6231
 
6232
+ #: app/libraries/main.php:4847
6233
  msgid "Label Singular Label"
6234
  msgstr "Etiqueta singular de la etiqueta"
6235
 
6236
+ #: app/libraries/main.php:4847
6237
  msgid "label"
6238
  msgstr "etiqueta"
6239
 
6240
+ #: app/libraries/main.php:4848
6241
  msgid "Location Plural Label"
6242
  msgstr "Ubicación Etiqueta plural"
6243
 
6244
+ #: app/libraries/main.php:4849
6245
  msgid "Location Singular Label"
6246
  msgstr "Etiqueta de ubicación en singular"
6247
 
6248
+ #: app/libraries/main.php:4850
6249
  msgid "Organizer Plural Label"
6250
  msgstr "Etiqueta del organizador en plural"
6251
 
6252
+ #: app/libraries/main.php:4851
6253
  msgid "Organizer Singular Label"
6254
  msgstr "Etiqueta Singular del Organizador"
6255
 
6256
+ #: app/libraries/main.php:4852
6257
  msgid "Speaker Plural Label"
6258
  msgstr ""
6259
 
6260
+ #: app/libraries/main.php:4853
6261
  msgid "Speaker Singular Label"
6262
  msgstr ""
6263
 
6264
+ #: app/libraries/main.php:4859
6265
  msgid "Sunday abbreviation"
6266
  msgstr "Abreviatura de Domingo"
6267
 
6268
+ #: app/libraries/main.php:4860
6269
  msgid "Monday abbreviation"
6270
  msgstr "Abreviatura de Lunes"
6271
 
6272
+ #: app/libraries/main.php:4861
6273
  msgid "Tuesday abbreviation"
6274
  msgstr "Abreviatura de Martes"
6275
 
6276
+ #: app/libraries/main.php:4862
6277
  msgid "Wednesday abbreviation"
6278
  msgstr "Abreviatura de Miércoles "
6279
 
6280
+ #: app/libraries/main.php:4863
6281
  msgid "Thursday abbreviation"
6282
  msgstr "Abreviatura de Jueves"
6283
 
6284
+ #: app/libraries/main.php:4864
6285
  msgid "Friday abbreviation"
6286
  msgstr "Abreviatura de Viernes"
6287
 
6288
+ #: app/libraries/main.php:4865
6289
  msgid "Saturday abbreviation"
6290
  msgstr "Abreviatura de Sábado "
6291
 
6292
+ #: app/libraries/main.php:4869
6293
  msgid "Others"
6294
  msgstr "Otros"
6295
 
6296
+ #: app/libraries/main.php:4871
6297
  msgid "Booking Success Message"
6298
  msgstr "Mensaje de reserva correcta"
6299
 
6300
+ #: app/libraries/main.php:4871
6301
  msgid ""
6302
  "Thanks for your booking. Your tickets booked, booking verification might be "
6303
  "needed, please check your email."
6305
  "Gracias por tu reserva. Tus entradas han sido reservadas, podrías necesitar "
6306
  "una verificación, por favor consulta tu correo."
6307
 
6308
+ #: app/libraries/main.php:4872 app/widgets/single.php:131
6309
  msgid "Register Button"
6310
  msgstr "Botón de registro"
6311
 
6312
+ #: app/libraries/main.php:4872 app/skins/available_spot/tpl.php:210
6313
  #: app/skins/carousel/render.php:156 app/skins/carousel/render.php:192
6314
  #: app/skins/grid/render.php:118 app/skins/grid/render.php:164
6315
  #: app/skins/grid/render.php:206 app/skins/grid/render.php:234
6316
  #: app/skins/list/render.php:107 app/skins/list/render.php:195
6317
+ #: app/skins/masonry/render.php:178 app/skins/single.php:757
6318
+ #: app/skins/single.php:760 app/skins/single/default.php:233
6319
  #: app/skins/single/default.php:235 app/skins/single/default.php:445
6320
  #: app/skins/single/default.php:447 app/skins/single/m1.php:126
6321
  #: app/skins/single/m1.php:128 app/skins/single/m2.php:58
6326
  msgid "REGISTER"
6327
  msgstr "REGISTRO"
6328
 
6329
+ #: app/libraries/main.php:4873
6330
  msgid "View Detail Button"
6331
  msgstr "Ver detalle del botón"
6332
 
6333
+ #: app/libraries/main.php:4873 app/skins/carousel/render.php:156
6334
  #: app/skins/carousel/render.php:192 app/skins/grid/render.php:118
6335
  #: app/skins/grid/render.php:164 app/skins/grid/render.php:206
6336
  #: app/skins/grid/render.php:234 app/skins/list/render.php:107
6341
  msgid "View Detail"
6342
  msgstr "Ver detalle"
6343
 
6344
+ #: app/libraries/main.php:4874
6345
  msgid "Event Detail Button"
6346
  msgstr "Botón de detalle del evento"
6347
 
6348
+ #: app/libraries/main.php:4874 app/skins/countdown/tpl.php:224
6349
  msgid "Event Detail"
6350
  msgstr "Detalle del evento"
6351
 
6352
+ #: app/libraries/main.php:4876
6353
  msgid "More Info Link"
6354
  msgstr "Enlace a Más Información"
6355
 
6356
+ #: app/libraries/main.php:4879
6357
  msgid "Ticket (Singular)"
6358
  msgstr "Entrada (Singular)"
6359
 
6360
+ #: app/libraries/main.php:4880
6361
  msgid "Tickets (Plural)"
6362
  msgstr "Entradas (Plural)"
6363
 
6364
+ #: app/libraries/main.php:4966
6365
  msgid "EventON"
6366
  msgstr "EventON"
6367
 
6368
+ #: app/libraries/main.php:4967
6369
  msgid "The Events Calendar"
6370
  msgstr "The Events Calendar"
6371
 
6372
+ #: app/libraries/main.php:4968
6373
  msgid "Events Schedule WP Plugin"
6374
  msgstr "Events Schedule WP Plugin"
6375
 
6376
+ #: app/libraries/main.php:4969
6377
  msgid "Calendarize It"
6378
  msgstr "Ponlo al calendario"
6379
 
6380
+ #: app/libraries/main.php:5043 app/libraries/main.php:5063
6381
  msgid "Confirmed"
6382
  msgstr ""
6383
 
6384
+ #: app/libraries/main.php:5044 app/libraries/main.php:5071
6385
  msgid "Rejected"
6386
  msgstr ""
6387
 
6388
+ #: app/libraries/main.php:5045 app/libraries/main.php:5067
6389
  msgid "Pending"
6390
  msgstr ""
6391
 
6392
+ #: app/libraries/main.php:5093
6393
  msgid "Waiting"
6394
  msgstr ""
6395
 
6396
+ #: app/libraries/main.php:5298 app/libraries/render.php:367
6397
  msgid "Skin controller does not exist."
6398
  msgstr "No existe skin controller."
6399
 
6524
  msgid "Get Directions"
6525
  msgstr "Cómo llegar"
6526
 
6527
+ #: app/modules/links/details.php:17 app/skins/single.php:454
6528
  msgid "Share this event"
6529
  msgstr "Compartir este evento"
6530
 
6551
  msgid "Go to occurrence page"
6552
  msgstr "Ir a la página de repetición"
6553
 
6554
+ #: app/modules/next-event/details.php:95 app/skins/single.php:730
6555
  #: app/skins/single/default.php:80 app/skins/single/default.php:292
6556
  #: app/skins/single/m1.php:28 app/skins/single/modern.php:178
6557
  msgid "Time"
6608
  msgstr "Visibilidad"
6609
 
6610
  #: app/skins/agenda/tpl.php:65 app/skins/agenda/tpl.php:69
6611
+ #: app/skins/carousel/tpl.php:45 app/skins/custom/tpl.php:61
6612
+ #: app/skins/custom/tpl.php:65 app/skins/grid/tpl.php:61
6613
  #: app/skins/grid/tpl.php:65 app/skins/list/tpl.php:66
6614
  #: app/skins/list/tpl.php:70 app/skins/masonry/tpl.php:61
6615
  #: app/skins/masonry/tpl.php:65 app/skins/slider/tpl.php:43
6616
  msgid "No event found!"
6617
  msgstr "¡No hay eventos!"
6618
 
6619
+ #: app/skins/agenda/tpl.php:74 app/skins/custom/tpl.php:70
6620
+ #: app/skins/grid/tpl.php:70 app/skins/list/tpl.php:75
6621
+ #: app/skins/masonry/tpl.php:70 app/skins/yearly_view/render.php:124
6622
  msgid "Load More"
6623
  msgstr "Cargar más"
6624
 
6686
  msgid "Home"
6687
  msgstr ""
6688
 
6689
+ #: app/skins/single.php:537 app/skins/single/default.php:43
6690
  #: app/skins/single/m1.php:247 app/skins/single/m2.php:174
6691
  #: app/skins/single/modern.php:256
6692
  msgid "Sold out!"
6693
  msgstr "¡Agotado!"
6694
 
6695
+ #: app/skins/single.php:805 app/skins/single.php:860
6696
  #: app/skins/single/default.php:205 app/skins/single/default.php:417
6697
  #: app/skins/single/m1.php:100 app/skins/single/m2.php:32
6698
  #: app/skins/single/modern.php:41
6699
  msgid "Phone"
6700
  msgstr "Teléfono"
6701
 
6702
+ #: app/skins/single.php:819 app/skins/single.php:874
6703
  #: app/skins/single/default.php:219 app/skins/single/default.php:431
6704
  #: app/skins/single/m1.php:114 app/skins/single/m2.php:46
6705
  #: app/skins/single/modern.php:55
6706
  msgid "Website"
6707
  msgstr "Web"
6708
 
6709
+ #: app/skins/single.php:944
6710
  msgid "Speakers:"
6711
  msgstr ""
6712
 
7119
  #~ msgid "Organizer Payment Credentials"
7120
  #~ msgstr "Nombre del organizador del evento reservado"
7121
 
7122
+ #~ msgid "View all Articles"
7123
+ #~ msgstr "Ver todos los artículos"
7124
+
7125
  #~ msgid "upgrade"
7126
  #~ msgstr "actualización"
7127
 
languages/modern-events-calendar-lite-fr_FR.mo CHANGED
Binary file
languages/modern-events-calendar-lite-fr_FR.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
- "POT-Creation-Date: 2019-09-11 13:21+0430\n"
5
- "PO-Revision-Date: 2019-09-11 13:23+0430\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: fr_FR\n"
@@ -71,7 +71,7 @@ msgid "Select Type"
71
  msgstr "Tout sélectionner"
72
 
73
  #: app/features/colors.php:50 app/features/fes/form.php:794
74
- #: app/features/mec/settings.php:597
75
  msgid "Event Color"
76
  msgstr "Couleur de l'événement"
77
 
@@ -81,8 +81,8 @@ msgstr "Couleur de l'événement"
81
  msgid "Settings"
82
  msgstr "Paramètres"
83
 
84
- #: app/features/contextual.php:62 app/features/events.php:2279
85
- #: app/features/mec/booking.php:398 app/features/mec/support.php:29
86
  #: app/libraries/main.php:554
87
  msgid "Booking Form"
88
  msgstr "Formulaire de réservation"
@@ -96,7 +96,7 @@ msgid ""
96
  "YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></iframe>"
97
  msgstr ""
98
 
99
- #: app/features/contextual.php:70 app/features/mec/booking.php:516
100
  #: app/features/mec/support.php:36 app/libraries/main.php:555
101
  msgid "Payment Gateways"
102
  msgstr "Passerelle de paiement"
@@ -172,12 +172,12 @@ msgid ""
172
  "\"0\" allowfullscreen></iframe>"
173
  msgstr ""
174
 
175
- #: app/features/contextual.php:117 app/features/mec/settings.php:49
176
  #: app/libraries/main.php:528
177
  msgid "General Options"
178
  msgstr "Options générales"
179
 
180
- #: app/features/contextual.php:139 app/features/mec/settings.php:381
181
  #: app/libraries/main.php:530
182
  msgid "Slugs/Permalinks"
183
  msgstr "Permaliens/Ancres"
@@ -186,27 +186,27 @@ msgstr "Permaliens/Ancres"
186
  msgid "Event Details/Single Event Page"
187
  msgstr "Détail de l'événement/Page de l'événement"
188
 
189
- #: app/features/contextual.php:166 app/features/mec/settings.php:413
190
  #: app/libraries/main.php:531
191
  msgid "Currency Options"
192
  msgstr "Options de devise"
193
 
194
- #: app/features/contextual.php:182 app/features/mec/modules.php:64
195
- #: app/features/mec/modules.php:82 app/libraries/main.php:560
196
  msgid "Google Maps Options"
197
  msgstr "Option du plugin Google Maps"
198
 
199
- #: app/features/contextual.php:244 app/features/mec/settings.php:470
200
  #: app/libraries/main.php:532
201
  msgid "Google Recaptcha Options"
202
  msgstr "Options de Google reCAPTCHA"
203
 
204
- #: app/features/contextual.php:258 app/features/mec/single.php:130
205
  #: app/libraries/main.php:542
206
  msgid "Countdown Options"
207
  msgstr "Options du Compte à Rebours"
208
 
209
- #: app/features/contextual.php:268 app/features/mec/modules.php:260
210
  #: app/libraries/main.php:565
211
  msgid "Social Networks"
212
  msgstr "Réseaux Sociaux"
@@ -215,34 +215,34 @@ msgstr "Réseaux Sociaux"
215
  msgid "Next Event Module"
216
  msgstr "Module événement suivant"
217
 
218
- #: app/features/contextual.php:286 app/features/mec/settings.php:506
219
  #: app/libraries/main.php:533
220
  msgid "Frontend Event Submission"
221
  msgstr "Réglages du formulaire de création d’événements"
222
 
223
- #: app/features/contextual.php:298 app/features/events.php:1130
224
  #: app/libraries/main.php:543
225
  msgid "Exceptional Days"
226
  msgstr "Journées Exceptionnelles"
227
 
228
- #: app/features/contextual.php:308 app/features/events.php:296
229
- #: app/features/mec/booking.php:85 app/features/mec/notifications.php:31
230
  #: app/libraries/main.php:550 app/libraries/main.php:571
231
  #: app/libraries/main.php:652
232
  msgid "Booking"
233
  msgstr "Réservation"
234
 
235
- #: app/features/contextual.php:318 app/features/mec/booking.php:220
236
  #: app/libraries/main.php:551
237
  msgid "Coupons"
238
  msgstr "Bons de réduction"
239
 
240
- #: app/features/contextual.php:326 app/features/mec/modules.php:321
241
  #: app/libraries/main.php:567
242
  msgid "BuddyPress Integration"
243
  msgstr "Intégration BuddyPress"
244
 
245
- #: app/features/contextual.php:334 app/features/mec/settings.php:763
246
  #: app/libraries/main.php:536
247
  msgid "Mailchimp Integration"
248
  msgstr "Intégration de Mailchimp"
@@ -251,52 +251,52 @@ msgstr "Intégration de Mailchimp"
251
  msgid "MEC Activation"
252
  msgstr "Activation de l'extension"
253
 
254
- #: app/features/events.php:148 app/features/ix/export.php:34
255
  #: app/features/mec/dashboard.php:229 app/skins/daily_view/tpl.php:79
256
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
257
  msgid "Events"
258
  msgstr "Évenements"
259
 
260
- #: app/features/events.php:149
261
- #: app/features/mec/meta_boxes/display_options.php:917
262
- #: app/features/mec/meta_boxes/display_options.php:973
263
- #: app/features/mec/meta_boxes/display_options.php:1008
264
- #: app/features/profile/profile.php:28 app/skins/daily_view/tpl.php:80
265
  #: app/skins/monthly_view/tpl.php:71 app/skins/yearly_view/tpl.php:69
266
  msgid "Event"
267
  msgstr "Événement"
268
 
269
- #: app/features/events.php:150 app/features/mec.php:333
270
  msgid "Add Event"
271
  msgstr "Ajouter un événement"
272
 
273
- #: app/features/events.php:151 app/features/mec/dashboard.php:134
274
  msgid "Add New Event"
275
  msgstr "Ajouter un nouvel événement"
276
 
277
- #: app/features/events.php:152 app/features/ix.php:3122
278
  #: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:57
279
  msgid "No events found!"
280
  msgstr "Aucun événement trouvé !"
281
 
282
- #: app/features/events.php:153
283
  msgid "All Events"
284
  msgstr "Tous les évènements"
285
 
286
- #: app/features/events.php:154
287
  msgid "Edit Event"
288
  msgstr ""
289
 
290
- #: app/features/events.php:155
291
  msgid "View Event"
292
  msgstr "Voir l'événement"
293
 
294
- #: app/features/events.php:156
295
  msgid "No events found in Trash!"
296
  msgstr "Aucun événement trouvé dans la corbeille !"
297
 
298
- #: app/features/events.php:173 app/features/events.php:3072
299
- #: app/features/mec/meta_boxes/display_options.php:828
300
  #: app/features/mec/meta_boxes/search_form.php:31
301
  #: app/features/mec/meta_boxes/search_form.php:93
302
  #: app/features/mec/meta_boxes/search_form.php:155
@@ -307,201 +307,186 @@ msgstr "Aucun événement trouvé dans la corbeille !"
307
  #: app/features/mec/meta_boxes/search_form.php:453
308
  #: app/features/mec/meta_boxes/search_form.php:514
309
  #: app/features/mec/meta_boxes/search_form.php:575
310
- #: app/features/mec/settings.php:716 app/features/mec/single.php:201
311
- #: app/libraries/main.php:4835 app/libraries/skins.php:808
312
- #: app/skins/single.php:531 app/skins/single/default.php:170
313
  #: app/skins/single/default.php:382 app/skins/single/m1.php:170
314
  #: app/skins/single/m2.php:102 app/skins/single/modern.php:110
315
  msgid "Category"
316
  msgstr "Catégorie"
317
 
318
- #: app/features/events.php:174 app/features/events.php:3043
319
  #: app/features/fes/form.php:745 app/features/mec.php:335
320
- #: app/features/mec/meta_boxes/filter.php:70 app/libraries/main.php:4834
321
  msgid "Categories"
322
  msgstr "Catégories"
323
 
324
- #: app/features/events.php:184 app/features/labels.php:71
325
  #: app/features/locations.php:69 app/features/organizers.php:69
326
  #: app/features/speakers.php:70
327
  #, php-format
328
  msgid "All %s"
329
  msgstr "Tous %s"
330
 
331
- #: app/features/events.php:185 app/features/labels.php:72
332
  #: app/features/locations.php:70 app/features/organizers.php:70
333
  #: app/features/speakers.php:71
334
  #, php-format
335
  msgid "Edit %s"
336
  msgstr "Modifier %s"
337
 
338
- #: app/features/events.php:186 app/features/labels.php:73
339
  #: app/features/locations.php:71 app/features/organizers.php:71
340
  #: app/features/speakers.php:72
341
  #, php-format
342
  msgid "View %s"
343
  msgstr "Voir %s"
344
 
345
- #: app/features/events.php:187 app/features/labels.php:74
346
  #: app/features/locations.php:72 app/features/organizers.php:72
347
  #: app/features/speakers.php:73
348
  #, php-format
349
  msgid "Update %s"
350
  msgstr "Mettre à jour %s"
351
 
352
- #: app/features/events.php:188 app/features/labels.php:75
353
  #: app/features/locations.php:73 app/features/organizers.php:73
354
  #: app/features/speakers.php:74
355
  #, php-format
356
  msgid "Add New %s"
357
  msgstr "Ajouter un nouvel %s"
358
 
359
- #: app/features/events.php:189 app/features/labels.php:76
360
  #: app/features/locations.php:74 app/features/organizers.php:74
361
  #: app/features/speakers.php:75
362
  #, php-format
363
  msgid "New %s Name"
364
  msgstr "Nouveau nom %s"
365
 
366
- #: app/features/events.php:190 app/features/labels.php:77
367
  #: app/features/locations.php:75 app/features/organizers.php:75
368
  #: app/features/speakers.php:76
369
  #, fuzzy, php-format
370
  msgid "Popular %s"
371
  msgstr "%s Populaire"
372
 
373
- #: app/features/events.php:191 app/features/labels.php:78
374
  #: app/features/locations.php:76 app/features/organizers.php:76
375
  #: app/features/speakers.php:77
376
  #, fuzzy, php-format
377
  msgid "Search %s"
378
  msgstr "Rechercher %s"
379
 
380
- #: app/features/events.php:216 app/features/events.php:237
381
  msgid "Category Icon"
382
  msgstr ""
383
 
384
- #: app/features/events.php:219 app/features/events.php:242
385
  msgid "Select icon"
386
  msgstr ""
387
 
388
- #: app/features/events.php:291
389
  msgid "Event Details"
390
  msgstr "Détails"
391
 
392
- #: app/features/events.php:333 app/features/events.php:3265
393
- #: app/features/events.php:3307 app/features/fes/form.php:706
394
- #: app/features/ix.php:2743 app/features/ix.php:2784
395
- #: app/features/mec/settings.php:573 app/libraries/main.php:4867
396
- #: app/widgets/single.php:103
397
- msgid "Event Cost"
398
- msgstr "Tarif de l'événement"
399
-
400
- #: app/features/events.php:337 app/features/fes/form.php:709
401
- #: app/libraries/main.php:4868 app/skins/single.php:554
402
- #: app/skins/single/default.php:104 app/skins/single/default.php:316
403
- #: app/skins/single/m1.php:49 app/skins/single/modern.php:199
404
- msgid "Cost"
405
- msgstr "Tarif"
406
-
407
- #: app/features/events.php:435
408
  msgid "Note for reviewer"
409
  msgstr "Note pour l'administrateur"
410
 
411
- #: app/features/events.php:442
412
  msgid "Guest Data"
413
  msgstr "Coordonnées de l'Invité"
414
 
415
- #: app/features/events.php:443 app/features/events.php:2261
416
  #: app/features/fes/form.php:668 app/features/labels.php:178
417
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
418
- #: app/features/profile/profile.php:90 app/libraries/notifications.php:805
419
  #: app/modules/booking/steps/form.php:37
420
  msgid "Name"
421
  msgstr "Nom"
422
 
423
- #: app/features/events.php:444 app/features/events.php:2272
424
- #: app/features/events.php:2348 app/features/fes/form.php:664
425
- #: app/features/mec/booking.php:57 app/features/mec/booking.php:449
426
  #: app/features/organizers.php:111 app/features/organizers.php:152
427
- #: app/features/profile/profile.php:93 app/features/speakers.php:124
428
  #: app/features/speakers.php:184 app/libraries/main.php:1471
429
  #: app/libraries/main.php:1537 app/libraries/main.php:2582
430
  #: app/libraries/notifications.php:806 app/modules/booking/steps/form.php:46
431
- #: app/modules/booking/steps/form.php:84 app/skins/single.php:781
432
- #: app/skins/single.php:836 app/skins/single/default.php:212
433
  #: app/skins/single/default.php:424 app/skins/single/m1.php:107
434
  #: app/skins/single/m2.php:39 app/skins/single/modern.php:48
435
  msgid "Email"
436
  msgstr "Email"
437
 
438
- #: app/features/events.php:448 app/features/fes/form.php:232
439
  msgid "Date and Time"
440
  msgstr "Date et heure"
441
 
442
- #: app/features/events.php:452 app/features/events.php:458
443
- #: app/features/events.php:3075 app/features/events.php:3265
444
- #: app/features/events.php:3307 app/features/fes/form.php:236
445
  #: app/features/fes/form.php:240 app/features/ix.php:2743
446
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:38
447
  #: app/features/mec/dashboard.php:373
448
- #: app/features/mec/meta_boxes/display_options.php:44
449
- #: app/features/mec/meta_boxes/display_options.php:185
450
- #: app/features/mec/meta_boxes/display_options.php:337
451
- #: app/features/mec/meta_boxes/display_options.php:392
452
- #: app/features/mec/meta_boxes/display_options.php:515
453
- #: app/features/mec/meta_boxes/display_options.php:569
454
- #: app/features/mec/meta_boxes/display_options.php:616
455
- #: app/features/mec/meta_boxes/display_options.php:649
456
- #: app/features/mec/meta_boxes/display_options.php:684
457
- #: app/features/mec/meta_boxes/display_options.php:730
458
- #: app/features/mec/meta_boxes/display_options.php:796
459
- #: app/features/mec/meta_boxes/display_options.php:1031
460
- #: app/features/mec/meta_boxes/display_options.php:1118
461
  msgid "Start Date"
462
  msgstr "Date de début"
463
 
464
- #: app/features/events.php:530 app/features/events.php:622
465
- #: app/features/events.php:1615 app/features/events.php:1657
466
- #: app/features/events.php:1824 app/features/events.php:1848
467
  #: app/features/fes/form.php:268 app/features/fes/form.php:308
468
  msgid "AM"
469
  msgstr "du matin"
470
 
471
- #: app/features/events.php:537 app/features/events.php:629
472
- #: app/features/events.php:1622 app/features/events.php:1664
473
- #: app/features/events.php:1825 app/features/events.php:1849
474
  #: app/features/fes/form.php:269 app/features/fes/form.php:309
475
  msgid "PM"
476
  msgstr "de l'après midi"
477
 
478
- #: app/features/events.php:544 app/features/events.php:549
479
- #: app/features/events.php:3076 app/features/events.php:3265
480
- #: app/features/events.php:3307 app/features/fes/form.php:276
481
  #: app/features/fes/form.php:280 app/features/ix.php:2743
482
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:44
483
  #: app/features/mec/dashboard.php:374
484
  msgid "End Date"
485
  msgstr "Date de fin"
486
 
487
- #: app/features/events.php:643 app/features/fes/form.php:315
488
  msgid "All Day Event"
489
  msgstr "Ne pas renseigner d'horaires"
490
 
491
- #: app/features/events.php:653 app/features/fes/form.php:318
492
  msgid "Hide Event Time"
493
  msgstr "Masquer l'heure de début"
494
 
495
- #: app/features/events.php:663 app/features/fes/form.php:321
496
  msgid "Hide Event End Time"
497
  msgstr "Masquer l'heure de fin"
498
 
499
- #: app/features/events.php:668 app/features/events.php:672
500
  #: app/features/fes/form.php:325
501
  msgid "Time Comment"
502
  msgstr "Commentaire sur l'horaire"
503
 
504
- #: app/features/events.php:673 app/features/fes/form.php:326
505
  #, fuzzy
506
  #| msgid ""
507
  #| "It shows next to event time on calendar. You can insert Timezone etc. in "
@@ -513,271 +498,277 @@ msgstr ""
513
  "Ce commentaire s'affiche à droite de l'heure de l'événement. Vous pouvez "
514
  "insérer y insérer un fuseau horaire etc ..."
515
 
516
- #: app/features/events.php:675 app/features/events.php:807
517
- #: app/features/events.php:1106 app/features/events.php:1149
518
- #: app/features/events.php:1448 app/features/events.php:1507
519
- #: app/features/events.php:1684 app/features/events.php:1699
520
- #: app/features/events.php:1866 app/features/events.php:1879
521
- #: app/features/events.php:2009 app/features/events.php:2045
522
- #: app/features/events.php:2143 app/features/events.php:2158
523
- #: app/features/events.php:2188 app/features/events.php:2201
524
  #: app/features/fes/form.php:630 app/features/locations.php:299
525
- #: app/features/mec/booking.php:105 app/features/mec/booking.php:142
526
- #: app/features/mec/booking.php:158 app/features/mec/booking.php:265
527
- #: app/features/mec/booking.php:294 app/features/mec/booking.php:342
528
- #: app/features/mec/booking.php:352 app/features/mec/booking.php:374
529
- #: app/features/mec/booking.php:384 app/features/mec/dashboard.php:71
530
- #: app/features/mec/meta_boxes/display_options.php:62
531
- #: app/features/mec/meta_boxes/display_options.php:75
532
- #: app/features/mec/meta_boxes/display_options.php:88
533
- #: app/features/mec/meta_boxes/display_options.php:99
534
- #: app/features/mec/meta_boxes/display_options.php:111
535
- #: app/features/mec/meta_boxes/display_options.php:203
536
- #: app/features/mec/meta_boxes/display_options.php:215
537
- #: app/features/mec/meta_boxes/display_options.php:227
538
- #: app/features/mec/meta_boxes/display_options.php:240
539
- #: app/features/mec/meta_boxes/display_options.php:251
540
- #: app/features/mec/meta_boxes/display_options.php:264
541
- #: app/features/mec/meta_boxes/display_options.php:275
542
- #: app/features/mec/meta_boxes/display_options.php:356
543
- #: app/features/mec/meta_boxes/display_options.php:532
544
- #: app/features/mec/meta_boxes/display_options.php:815
545
- #: app/features/mec/meta_boxes/display_options.php:888
546
- #: app/features/mec/meta_boxes/display_options.php:900
547
- #: app/features/mec/meta_boxes/display_options.php:911
548
- #: app/features/mec/meta_boxes/display_options.php:943
549
- #: app/features/mec/meta_boxes/display_options.php:954
550
- #: app/features/mec/meta_boxes/display_options.php:967
551
- #: app/features/mec/meta_boxes/display_options.php:1002
552
- #: app/features/mec/meta_boxes/display_options.php:1051
553
- #: app/features/mec/meta_boxes/display_options.php:1062
554
- #: app/features/mec/meta_boxes/display_options.php:1073
555
- #: app/features/mec/meta_boxes/display_options.php:1138
556
- #: app/features/mec/meta_boxes/display_options.php:1151
557
- #: app/features/mec/meta_boxes/display_options.php:1164
558
- #: app/features/mec/meta_boxes/display_options.php:1177
559
- #: app/features/mec/meta_boxes/display_options.php:1190
560
- #: app/features/mec/modules.php:50 app/features/mec/modules.php:83
561
- #: app/features/mec/modules.php:100 app/features/mec/modules.php:135
562
- #: app/features/mec/modules.php:151 app/features/mec/modules.php:309
563
  #: app/features/mec/notifications.php:50 app/features/mec/notifications.php:107
564
  #: app/features/mec/notifications.php:159
565
  #: app/features/mec/notifications.php:218
566
  #: app/features/mec/notifications.php:286
567
  #: app/features/mec/notifications.php:349
568
  #: app/features/mec/notifications.php:360
569
- #: app/features/mec/notifications.php:422 app/features/mec/settings.php:63
570
- #: app/features/mec/settings.php:82 app/features/mec/settings.php:109
571
- #: app/features/mec/settings.php:144 app/features/mec/settings.php:165
572
- #: app/features/mec/settings.php:185 app/features/mec/settings.php:262
573
- #: app/features/mec/settings.php:336 app/features/mec/settings.php:353
574
- #: app/features/mec/settings.php:370 app/features/mec/settings.php:389
575
- #: app/features/mec/settings.php:403 app/features/mec/settings.php:431
576
- #: app/features/mec/settings.php:518 app/features/mec/settings.php:656
577
- #: app/features/mec/settings.php:673 app/features/mec/settings.php:778
578
- #: app/features/mec/settings.php:791 app/features/mec/settings.php:807
579
- #: app/features/mec/single.php:39 app/features/mec/single.php:55
580
- #: app/features/mec/single.php:74 app/features/mec/single.php:91
581
- #: app/features/mec/single.php:107 app/features/mec/single.php:121
582
- #: app/features/mec/single.php:159 app/features/mec/styling.php:199
583
  #: app/features/mec/styling.php:216 app/features/mec/styling.php:229
584
- #: app/features/organizers.php:272 app/skins/single.php:629
585
  #: app/skins/single/default.php:119 app/skins/single/default.php:331
586
  #: app/skins/single/m1.php:192 app/skins/single/m2.php:125
587
  #: app/skins/single/modern.php:133
588
  msgid "Read More"
589
  msgstr "Lire la suite"
590
 
591
- #: app/features/events.php:691 app/features/fes/form.php:332
 
 
 
 
 
 
592
  msgid "Event Repeating"
593
  msgstr "Événement récurrent"
594
 
595
- #: app/features/events.php:695 app/features/fes/form.php:336
596
  msgid "Repeats"
597
  msgstr "Récurrence"
598
 
599
- #: app/features/events.php:703 app/features/fes/form.php:338
600
  #: app/features/mec/dashboard.php:376 app/skins/full_calendar/tpl.php:109
601
  msgid "Daily"
602
  msgstr "Quotidienne"
603
 
604
- #: app/features/events.php:710 app/features/fes/form.php:339
605
  msgid "Every Weekday"
606
  msgstr "Tous les jours de la semaine"
607
 
608
- #: app/features/events.php:717 app/features/fes/form.php:340
609
  msgid "Every Weekend"
610
  msgstr "Tous les week-ends"
611
 
612
- #: app/features/events.php:724 app/features/fes/form.php:341
613
  msgid "Certain Weekdays"
614
  msgstr "Certains jours de la semaine"
615
 
616
- #: app/features/events.php:731 app/features/fes/form.php:342
617
  #: app/skins/full_calendar/tpl.php:108
618
  msgid "Weekly"
619
  msgstr "Hebdomadaire"
620
 
621
- #: app/features/events.php:738 app/features/fes/form.php:343
622
  #: app/features/mec/dashboard.php:377 app/skins/full_calendar/tpl.php:107
623
  msgid "Monthly"
624
  msgstr "Mensuelle"
625
 
626
- #: app/features/events.php:745 app/features/fes/form.php:344
627
  #: app/features/mec/dashboard.php:378 app/skins/full_calendar/tpl.php:106
628
  msgid "Yearly"
629
  msgstr "Annuelle"
630
 
631
- #: app/features/events.php:752 app/features/fes/form.php:345
632
  msgid "Custom Days"
633
  msgstr "Choisir les dates"
634
 
635
- #: app/features/events.php:759 app/features/fes/form.php:346
636
  #, fuzzy
637
  #| msgid "Advanced Method"
638
  msgid "Advanced"
639
  msgstr "Méthode avancée"
640
 
641
- #: app/features/events.php:764 app/features/fes/form.php:350
642
  msgid "Repeat Interval"
643
  msgstr "Interval de répétition"
644
 
645
- #: app/features/events.php:766 app/features/fes/form.php:351
646
  msgid "Repeat interval"
647
  msgstr "Interval de répétition"
648
 
649
- #: app/features/events.php:770 app/features/fes/form.php:354
650
  msgid "Week Days"
651
  msgstr "Jours de la semaine"
652
 
653
- #: app/features/events.php:772 app/features/fes/form.php:355
654
- #: app/features/mec/meta_boxes/display_options.php:760
655
  #: app/libraries/main.php:407
656
  msgid "Monday"
657
  msgstr "Lundi"
658
 
659
- #: app/features/events.php:775 app/features/fes/form.php:356
660
- #: app/features/mec/meta_boxes/display_options.php:761
661
  #: app/libraries/main.php:407
662
  msgid "Tuesday"
663
  msgstr "Mardi"
664
 
665
- #: app/features/events.php:778 app/features/fes/form.php:357
666
- #: app/features/mec/meta_boxes/display_options.php:762
667
  #: app/libraries/main.php:407
668
  msgid "Wednesday"
669
  msgstr "Mercredi"
670
 
671
- #: app/features/events.php:781 app/features/fes/form.php:358
672
- #: app/features/mec/meta_boxes/display_options.php:763
673
  #: app/libraries/main.php:407
674
  msgid "Thursday"
675
  msgstr "Jeudi"
676
 
677
- #: app/features/events.php:784 app/features/fes/form.php:359
678
- #: app/features/mec/meta_boxes/display_options.php:764
679
  #: app/libraries/main.php:407
680
  msgid "Friday"
681
  msgstr "Vendredi"
682
 
683
- #: app/features/events.php:787 app/features/fes/form.php:360
684
- #: app/features/mec/meta_boxes/display_options.php:765
685
  #: app/libraries/main.php:407
686
  msgid "Saturday"
687
  msgstr "Samedi"
688
 
689
- #: app/features/events.php:790 app/features/fes/form.php:361
690
- #: app/features/mec/meta_boxes/display_options.php:759
691
  #: app/libraries/main.php:407
692
  msgid "Sunday"
693
  msgstr "Dimanche"
694
 
695
- #: app/features/events.php:797 app/features/events.php:1747
696
- #: app/features/events.php:1775 app/features/events.php:1913
697
  #: app/features/fes/form.php:366 app/features/ix/import_f_calendar.php:42
698
  #: app/features/ix/import_g_calendar.php:51
699
  #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
700
  msgid "Start"
701
  msgstr "Démarrer"
702
 
703
- #: app/features/events.php:799 app/features/events.php:1751
704
- #: app/features/events.php:1779 app/features/events.php:1917
705
  #: app/features/fes/form.php:367
706
  #, fuzzy
707
  #| msgid "Enabled"
708
  msgid "End"
709
  msgstr "Activé"
710
 
711
- #: app/features/events.php:801 app/features/events.php:1143
712
- #: app/features/events.php:1254 app/features/events.php:1359
713
- #: app/features/events.php:1565 app/features/events.php:1730
714
- #: app/features/events.php:1902 app/features/events.php:1982
715
- #: app/features/events.php:2115 app/features/fes/form.php:368
716
  #: app/features/fes/form.php:842
717
  msgid "Add"
718
  msgstr "A
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
+ "POT-Creation-Date: 2019-09-18 14:18+0430\n"
5
+ "PO-Revision-Date: 2019-09-18 14:22+0430\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: fr_FR\n"
71
  msgstr "Tout sélectionner"
72
 
73
  #: app/features/colors.php:50 app/features/fes/form.php:794
74
+ #: app/features/mec/settings.php:600
75
  msgid "Event Color"
76
  msgstr "Couleur de l'événement"
77
 
81
  msgid "Settings"
82
  msgstr "Paramètres"
83
 
84
+ #: app/features/contextual.php:62 app/features/events.php:2410
85
+ #: app/features/mec/booking.php:412 app/features/mec/support.php:29
86
  #: app/libraries/main.php:554
87
  msgid "Booking Form"
88
  msgstr "Formulaire de réservation"
96
  "YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></iframe>"
97
  msgstr ""
98
 
99
+ #: app/features/contextual.php:70 app/features/mec/booking.php:530
100
  #: app/features/mec/support.php:36 app/libraries/main.php:555
101
  msgid "Payment Gateways"
102
  msgstr "Passerelle de paiement"
172
  "\"0\" allowfullscreen></iframe>"
173
  msgstr ""
174
 
175
+ #: app/features/contextual.php:117 app/features/mec/settings.php:52
176
  #: app/libraries/main.php:528
177
  msgid "General Options"
178
  msgstr "Options générales"
179
 
180
+ #: app/features/contextual.php:139 app/features/mec/settings.php:384
181
  #: app/libraries/main.php:530
182
  msgid "Slugs/Permalinks"
183
  msgstr "Permaliens/Ancres"
186
  msgid "Event Details/Single Event Page"
187
  msgstr "Détail de l'événement/Page de l'événement"
188
 
189
+ #: app/features/contextual.php:166 app/features/mec/settings.php:416
190
  #: app/libraries/main.php:531
191
  msgid "Currency Options"
192
  msgstr "Options de devise"
193
 
194
+ #: app/features/contextual.php:182 app/features/mec/modules.php:67
195
+ #: app/features/mec/modules.php:85 app/libraries/main.php:560
196
  msgid "Google Maps Options"
197
  msgstr "Option du plugin Google Maps"
198
 
199
+ #: app/features/contextual.php:244 app/features/mec/settings.php:473
200
  #: app/libraries/main.php:532
201
  msgid "Google Recaptcha Options"
202
  msgstr "Options de Google reCAPTCHA"
203
 
204
+ #: app/features/contextual.php:258 app/features/mec/single.php:133
205
  #: app/libraries/main.php:542
206
  msgid "Countdown Options"
207
  msgstr "Options du Compte à Rebours"
208
 
209
+ #: app/features/contextual.php:268 app/features/mec/modules.php:263
210
  #: app/libraries/main.php:565
211
  msgid "Social Networks"
212
  msgstr "Réseaux Sociaux"
215
  msgid "Next Event Module"
216
  msgstr "Module événement suivant"
217
 
218
+ #: app/features/contextual.php:286 app/features/mec/settings.php:509
219
  #: app/libraries/main.php:533
220
  msgid "Frontend Event Submission"
221
  msgstr "Réglages du formulaire de création d’événements"
222
 
223
+ #: app/features/contextual.php:298 app/features/events.php:1174
224
  #: app/libraries/main.php:543
225
  msgid "Exceptional Days"
226
  msgstr "Journées Exceptionnelles"
227
 
228
+ #: app/features/contextual.php:308 app/features/events.php:297
229
+ #: app/features/mec/booking.php:88 app/features/mec/notifications.php:31
230
  #: app/libraries/main.php:550 app/libraries/main.php:571
231
  #: app/libraries/main.php:652
232
  msgid "Booking"
233
  msgstr "Réservation"
234
 
235
+ #: app/features/contextual.php:318 app/features/mec/booking.php:234
236
  #: app/libraries/main.php:551
237
  msgid "Coupons"
238
  msgstr "Bons de réduction"
239
 
240
+ #: app/features/contextual.php:326 app/features/mec/modules.php:324
241
  #: app/libraries/main.php:567
242
  msgid "BuddyPress Integration"
243
  msgstr "Intégration BuddyPress"
244
 
245
+ #: app/features/contextual.php:334 app/features/mec/settings.php:766
246
  #: app/libraries/main.php:536
247
  msgid "Mailchimp Integration"
248
  msgstr "Intégration de Mailchimp"
251
  msgid "MEC Activation"
252
  msgstr "Activation de l'extension"
253
 
254
+ #: app/features/events.php:149 app/features/ix/export.php:34
255
  #: app/features/mec/dashboard.php:229 app/skins/daily_view/tpl.php:79
256
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
257
  msgid "Events"
258
  msgstr "Évenements"
259
 
260
+ #: app/features/events.php:150
261
+ #: app/features/mec/meta_boxes/display_options.php:921
262
+ #: app/features/mec/meta_boxes/display_options.php:977
263
+ #: app/features/mec/meta_boxes/display_options.php:1012
264
+ #: app/features/profile/profile.php:29 app/skins/daily_view/tpl.php:80
265
  #: app/skins/monthly_view/tpl.php:71 app/skins/yearly_view/tpl.php:69
266
  msgid "Event"
267
  msgstr "Événement"
268
 
269
+ #: app/features/events.php:151 app/features/mec.php:333
270
  msgid "Add Event"
271
  msgstr "Ajouter un événement"
272
 
273
+ #: app/features/events.php:152 app/features/mec/dashboard.php:134
274
  msgid "Add New Event"
275
  msgstr "Ajouter un nouvel événement"
276
 
277
+ #: app/features/events.php:153 app/features/ix.php:3122
278
  #: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:57
279
  msgid "No events found!"
280
  msgstr "Aucun événement trouvé !"
281
 
282
+ #: app/features/events.php:154
283
  msgid "All Events"
284
  msgstr "Tous les évènements"
285
 
286
+ #: app/features/events.php:155
287
  msgid "Edit Event"
288
  msgstr ""
289
 
290
+ #: app/features/events.php:156
291
  msgid "View Event"
292
  msgstr "Voir l'événement"
293
 
294
+ #: app/features/events.php:157
295
  msgid "No events found in Trash!"
296
  msgstr "Aucun événement trouvé dans la corbeille !"
297
 
298
+ #: app/features/events.php:174 app/features/events.php:3215
299
+ #: app/features/mec/meta_boxes/display_options.php:832
300
  #: app/features/mec/meta_boxes/search_form.php:31
301
  #: app/features/mec/meta_boxes/search_form.php:93
302
  #: app/features/mec/meta_boxes/search_form.php:155
307
  #: app/features/mec/meta_boxes/search_form.php:453
308
  #: app/features/mec/meta_boxes/search_form.php:514
309
  #: app/features/mec/meta_boxes/search_form.php:575
310
+ #: app/features/mec/settings.php:719 app/features/mec/single.php:204
311
+ #: app/libraries/main.php:4845 app/libraries/skins.php:808
312
+ #: app/skins/single.php:559 app/skins/single/default.php:170
313
  #: app/skins/single/default.php:382 app/skins/single/m1.php:170
314
  #: app/skins/single/m2.php:102 app/skins/single/modern.php:110
315
  msgid "Category"
316
  msgstr "Catégorie"
317
 
318
+ #: app/features/events.php:175 app/features/events.php:3186
319
  #: app/features/fes/form.php:745 app/features/mec.php:335
320
+ #: app/features/mec/meta_boxes/filter.php:81 app/libraries/main.php:4844
321
  msgid "Categories"
322
  msgstr "Catégories"
323
 
324
+ #: app/features/events.php:185 app/features/labels.php:71
325
  #: app/features/locations.php:69 app/features/organizers.php:69
326
  #: app/features/speakers.php:70
327
  #, php-format
328
  msgid "All %s"
329
  msgstr "Tous %s"
330
 
331
+ #: app/features/events.php:186 app/features/labels.php:72
332
  #: app/features/locations.php:70 app/features/organizers.php:70
333
  #: app/features/speakers.php:71
334
  #, php-format
335
  msgid "Edit %s"
336
  msgstr "Modifier %s"
337
 
338
+ #: app/features/events.php:187 app/features/labels.php:73
339
  #: app/features/locations.php:71 app/features/organizers.php:71
340
  #: app/features/speakers.php:72
341
  #, php-format
342
  msgid "View %s"
343
  msgstr "Voir %s"
344
 
345
+ #: app/features/events.php:188 app/features/labels.php:74
346
  #: app/features/locations.php:72 app/features/organizers.php:72
347
  #: app/features/speakers.php:73
348
  #, php-format
349
  msgid "Update %s"
350
  msgstr "Mettre à jour %s"
351
 
352
+ #: app/features/events.php:189 app/features/labels.php:75
353
  #: app/features/locations.php:73 app/features/organizers.php:73
354
  #: app/features/speakers.php:74
355
  #, php-format
356
  msgid "Add New %s"
357
  msgstr "Ajouter un nouvel %s"
358
 
359
+ #: app/features/events.php:190 app/features/labels.php:76
360
  #: app/features/locations.php:74 app/features/organizers.php:74
361
  #: app/features/speakers.php:75
362
  #, php-format
363
  msgid "New %s Name"
364
  msgstr "Nouveau nom %s"
365
 
366
+ #: app/features/events.php:191 app/features/labels.php:77
367
  #: app/features/locations.php:75 app/features/organizers.php:75
368
  #: app/features/speakers.php:76
369
  #, fuzzy, php-format
370
  msgid "Popular %s"
371
  msgstr "%s Populaire"
372
 
373
+ #: app/features/events.php:192 app/features/labels.php:78
374
  #: app/features/locations.php:76 app/features/organizers.php:76
375
  #: app/features/speakers.php:77
376
  #, fuzzy, php-format
377
  msgid "Search %s"
378
  msgstr "Rechercher %s"
379
 
380
+ #: app/features/events.php:217 app/features/events.php:238
381
  msgid "Category Icon"
382
  msgstr ""
383
 
384
+ #: app/features/events.php:220 app/features/events.php:243
385
  msgid "Select icon"
386
  msgstr ""
387
 
388
+ #: app/features/events.php:292
389
  msgid "Event Details"
390
  msgstr "Détails"
391
 
392
+ #: app/features/events.php:451
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
393
  msgid "Note for reviewer"
394
  msgstr "Note pour l'administrateur"
395
 
396
+ #: app/features/events.php:460
397
  msgid "Guest Data"
398
  msgstr "Coordonnées de l'Invité"
399
 
400
+ #: app/features/events.php:461 app/features/events.php:2392
401
  #: app/features/fes/form.php:668 app/features/labels.php:178
402
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
403
+ #: app/features/profile/profile.php:91 app/libraries/notifications.php:805
404
  #: app/modules/booking/steps/form.php:37
405
  msgid "Name"
406
  msgstr "Nom"
407
 
408
+ #: app/features/events.php:462 app/features/events.php:2403
409
+ #: app/features/events.php:2479 app/features/fes/form.php:664
410
+ #: app/features/mec/booking.php:57 app/features/mec/booking.php:463
411
  #: app/features/organizers.php:111 app/features/organizers.php:152
412
+ #: app/features/profile/profile.php:94 app/features/speakers.php:124
413
  #: app/features/speakers.php:184 app/libraries/main.php:1471
414
  #: app/libraries/main.php:1537 app/libraries/main.php:2582
415
  #: app/libraries/notifications.php:806 app/modules/booking/steps/form.php:46
416
+ #: app/modules/booking/steps/form.php:84 app/skins/single.php:812
417
+ #: app/skins/single.php:867 app/skins/single/default.php:212
418
  #: app/skins/single/default.php:424 app/skins/single/m1.php:107
419
  #: app/skins/single/m2.php:39 app/skins/single/modern.php:48
420
  msgid "Email"
421
  msgstr "Email"
422
 
423
+ #: app/features/events.php:467 app/features/fes/form.php:232
424
  msgid "Date and Time"
425
  msgstr "Date et heure"
426
 
427
+ #: app/features/events.php:470 app/features/events.php:476
428
+ #: app/features/events.php:3218 app/features/events.php:3408
429
+ #: app/features/events.php:3450 app/features/fes/form.php:236
430
  #: app/features/fes/form.php:240 app/features/ix.php:2743
431
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:38
432
  #: app/features/mec/dashboard.php:373
433
+ #: app/features/mec/meta_boxes/display_options.php:48
434
+ #: app/features/mec/meta_boxes/display_options.php:189
435
+ #: app/features/mec/meta_boxes/display_options.php:341
436
+ #: app/features/mec/meta_boxes/display_options.php:396
437
+ #: app/features/mec/meta_boxes/display_options.php:519
438
+ #: app/features/mec/meta_boxes/display_options.php:573
439
+ #: app/features/mec/meta_boxes/display_options.php:620
440
+ #: app/features/mec/meta_boxes/display_options.php:653
441
+ #: app/features/mec/meta_boxes/display_options.php:688
442
+ #: app/features/mec/meta_boxes/display_options.php:734
443
+ #: app/features/mec/meta_boxes/display_options.php:800
444
+ #: app/features/mec/meta_boxes/display_options.php:1035
445
+ #: app/features/mec/meta_boxes/display_options.php:1122
446
  msgid "Start Date"
447
  msgstr "Date de début"
448
 
449
+ #: app/features/events.php:548 app/features/events.php:640
450
+ #: app/features/events.php:1706 app/features/events.php:1765
451
+ #: app/features/events.php:1938 app/features/events.php:1977
452
  #: app/features/fes/form.php:268 app/features/fes/form.php:308
453
  msgid "AM"
454
  msgstr "du matin"
455
 
456
+ #: app/features/events.php:555 app/features/events.php:647
457
+ #: app/features/events.php:1713 app/features/events.php:1772
458
+ #: app/features/events.php:1939 app/features/events.php:1978
459
  #: app/features/fes/form.php:269 app/features/fes/form.php:309
460
  msgid "PM"
461
  msgstr "de l'après midi"
462
 
463
+ #: app/features/events.php:562 app/features/events.php:567
464
+ #: app/features/events.php:3219 app/features/events.php:3408
465
+ #: app/features/events.php:3450 app/features/fes/form.php:276
466
  #: app/features/fes/form.php:280 app/features/ix.php:2743
467
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:44
468
  #: app/features/mec/dashboard.php:374
469
  msgid "End Date"
470
  msgstr "Date de fin"
471
 
472
+ #: app/features/events.php:661 app/features/fes/form.php:315
473
  msgid "All Day Event"
474
  msgstr "Ne pas renseigner d'horaires"
475
 
476
+ #: app/features/events.php:671 app/features/fes/form.php:318
477
  msgid "Hide Event Time"
478
  msgstr "Masquer l'heure de début"
479
 
480
+ #: app/features/events.php:681 app/features/fes/form.php:321
481
  msgid "Hide Event End Time"
482
  msgstr "Masquer l'heure de fin"
483
 
484
+ #: app/features/events.php:686 app/features/events.php:690
485
  #: app/features/fes/form.php:325
486
  msgid "Time Comment"
487
  msgstr "Commentaire sur l'horaire"
488
 
489
+ #: app/features/events.php:691 app/features/fes/form.php:326
490
  #, fuzzy
491
  #| msgid ""
492
  #| "It shows next to event time on calendar. You can insert Timezone etc. in "
498
  "Ce commentaire s'affiche à droite de l'heure de l'événement. Vous pouvez "
499
  "insérer y insérer un fuseau horaire etc ..."
500
 
501
+ #: app/features/events.php:693 app/features/events.php:826
502
+ #: app/features/events.php:1126 app/features/events.php:1193
503
+ #: app/features/events.php:1492 app/features/events.php:1583
504
+ #: app/features/events.php:1794 app/features/events.php:1809
505
+ #: app/features/events.php:1997 app/features/events.php:2010
506
+ #: app/features/events.php:2140 app/features/events.php:2176
507
+ #: app/features/events.php:2274 app/features/events.php:2289
508
+ #: app/features/events.php:2319 app/features/events.php:2332
509
  #: app/features/fes/form.php:630 app/features/locations.php:299
510
+ #: app/features/mec/booking.php:108 app/features/mec/booking.php:145
511
+ #: app/features/mec/booking.php:161 app/features/mec/booking.php:279
512
+ #: app/features/mec/booking.php:308 app/features/mec/booking.php:356
513
+ #: app/features/mec/booking.php:366 app/features/mec/booking.php:388
514
+ #: app/features/mec/booking.php:398 app/features/mec/dashboard.php:71
515
+ #: app/features/mec/meta_boxes/display_options.php:66
516
+ #: app/features/mec/meta_boxes/display_options.php:79
517
+ #: app/features/mec/meta_boxes/display_options.php:92
518
+ #: app/features/mec/meta_boxes/display_options.php:103
519
+ #: app/features/mec/meta_boxes/display_options.php:115
520
+ #: app/features/mec/meta_boxes/display_options.php:207
521
+ #: app/features/mec/meta_boxes/display_options.php:219
522
+ #: app/features/mec/meta_boxes/display_options.php:231
523
+ #: app/features/mec/meta_boxes/display_options.php:244
524
+ #: app/features/mec/meta_boxes/display_options.php:255
525
+ #: app/features/mec/meta_boxes/display_options.php:268
526
+ #: app/features/mec/meta_boxes/display_options.php:279
527
+ #: app/features/mec/meta_boxes/display_options.php:360
528
+ #: app/features/mec/meta_boxes/display_options.php:536
529
+ #: app/features/mec/meta_boxes/display_options.php:819
530
+ #: app/features/mec/meta_boxes/display_options.php:892
531
+ #: app/features/mec/meta_boxes/display_options.php:904
532
+ #: app/features/mec/meta_boxes/display_options.php:915
533
+ #: app/features/mec/meta_boxes/display_options.php:947
534
+ #: app/features/mec/meta_boxes/display_options.php:958
535
+ #: app/features/mec/meta_boxes/display_options.php:971
536
+ #: app/features/mec/meta_boxes/display_options.php:1006
537
+ #: app/features/mec/meta_boxes/display_options.php:1055
538
+ #: app/features/mec/meta_boxes/display_options.php:1066
539
+ #: app/features/mec/meta_boxes/display_options.php:1077
540
+ #: app/features/mec/meta_boxes/display_options.php:1142
541
+ #: app/features/mec/meta_boxes/display_options.php:1155
542
+ #: app/features/mec/meta_boxes/display_options.php:1168
543
+ #: app/features/mec/meta_boxes/display_options.php:1181
544
+ #: app/features/mec/meta_boxes/display_options.php:1194
545
+ #: app/features/mec/modules.php:53 app/features/mec/modules.php:86
546
+ #: app/features/mec/modules.php:103 app/features/mec/modules.php:138
547
+ #: app/features/mec/modules.php:154 app/features/mec/modules.php:312
548
  #: app/features/mec/notifications.php:50 app/features/mec/notifications.php:107
549
  #: app/features/mec/notifications.php:159
550
  #: app/features/mec/notifications.php:218
551
  #: app/features/mec/notifications.php:286
552
  #: app/features/mec/notifications.php:349
553
  #: app/features/mec/notifications.php:360
554
+ #: app/features/mec/notifications.php:422 app/features/mec/settings.php:66
555
+ #: app/features/mec/settings.php:85 app/features/mec/settings.php:112
556
+ #: app/features/mec/settings.php:147 app/features/mec/settings.php:168
557
+ #: app/features/mec/settings.php:188 app/features/mec/settings.php:265
558
+ #: app/features/mec/settings.php:339 app/features/mec/settings.php:356
559
+ #: app/features/mec/settings.php:373 app/features/mec/settings.php:392
560
+ #: app/features/mec/settings.php:406 app/features/mec/settings.php:434
561
+ #: app/features/mec/settings.php:521 app/features/mec/settings.php:659
562
+ #: app/features/mec/settings.php:676 app/features/mec/settings.php:781
563
+ #: app/features/mec/settings.php:794 app/features/mec/settings.php:810
564
+ #: app/features/mec/single.php:42 app/features/mec/single.php:58
565
+ #: app/features/mec/single.php:77 app/features/mec/single.php:94
566
+ #: app/features/mec/single.php:110 app/features/mec/single.php:124
567
+ #: app/features/mec/single.php:162 app/features/mec/styling.php:199
568
  #: app/features/mec/styling.php:216 app/features/mec/styling.php:229
569
+ #: app/features/organizers.php:272 app/skins/single.php:657
570
  #: app/skins/single/default.php:119 app/skins/single/default.php:331
571
  #: app/skins/single/m1.php:192 app/skins/single/m2.php:125
572
  #: app/skins/single/modern.php:133
573
  msgid "Read More"
574
  msgstr "Lire la suite"
575
 
576
+ #: app/features/events.php:701
577
+ #, fuzzy
578
+ #| msgid "Repeat"
579
+ msgid "Repeating"
580
+ msgstr "Répetition"
581
+
582
+ #: app/features/events.php:710 app/features/fes/form.php:332
583
  msgid "Event Repeating"
584
  msgstr "Événement récurrent"
585
 
586
+ #: app/features/events.php:714 app/features/fes/form.php:336
587
  msgid "Repeats"
588
  msgstr "Récurrence"
589
 
590
+ #: app/features/events.php:722 app/features/fes/form.php:338
591
  #: app/features/mec/dashboard.php:376 app/skins/full_calendar/tpl.php:109
592
  msgid "Daily"
593
  msgstr "Quotidienne"
594
 
595
+ #: app/features/events.php:729 app/features/fes/form.php:339
596
  msgid "Every Weekday"
597
  msgstr "Tous les jours de la semaine"
598
 
599
+ #: app/features/events.php:736 app/features/fes/form.php:340
600
  msgid "Every Weekend"
601
  msgstr "Tous les week-ends"
602
 
603
+ #: app/features/events.php:743 app/features/fes/form.php:341
604
  msgid "Certain Weekdays"
605
  msgstr "Certains jours de la semaine"
606
 
607
+ #: app/features/events.php:750 app/features/fes/form.php:342
608
  #: app/skins/full_calendar/tpl.php:108
609
  msgid "Weekly"
610
  msgstr "Hebdomadaire"
611
 
612
+ #: app/features/events.php:757 app/features/fes/form.php:343
613
  #: app/features/mec/dashboard.php:377 app/skins/full_calendar/tpl.php:107
614
  msgid "Monthly"
615
  msgstr "Mensuelle"
616
 
617
+ #: app/features/events.php:764 app/features/fes/form.php:344
618
  #: app/features/mec/dashboard.php:378 app/skins/full_calendar/tpl.php:106
619
  msgid "Yearly"
620
  msgstr "Annuelle"
621
 
622
+ #: app/features/events.php:771 app/features/fes/form.php:345
623
  msgid "Custom Days"
624
  msgstr "Choisir les dates"
625
 
626
+ #: app/features/events.php:778 app/features/fes/form.php:346
627
  #, fuzzy
628
  #| msgid "Advanced Method"
629
  msgid "Advanced"
630
  msgstr "Méthode avancée"
631
 
632
+ #: app/features/events.php:783 app/features/fes/form.php:350
633
  msgid "Repeat Interval"
634
  msgstr "Interval de répétition"
635
 
636
+ #: app/features/events.php:785 app/features/fes/form.php:351
637
  msgid "Repeat interval"
638
  msgstr "Interval de répétition"
639
 
640
+ #: app/features/events.php:789 app/features/fes/form.php:354
641
  msgid "Week Days"
642
  msgstr "Jours de la semaine"
643
 
644
+ #: app/features/events.php:791 app/features/fes/form.php:355
645
+ #: app/features/mec/meta_boxes/display_options.php:764
646
  #: app/libraries/main.php:407
647
  msgid "Monday"
648
  msgstr "Lundi"
649
 
650
+ #: app/features/events.php:794 app/features/fes/form.php:356
651
+ #: app/features/mec/meta_boxes/display_options.php:765
652
  #: app/libraries/main.php:407
653
  msgid "Tuesday"
654
  msgstr "Mardi"
655
 
656
+ #: app/features/events.php:797 app/features/fes/form.php:357
657
+ #: app/features/mec/meta_boxes/display_options.php:766
658
  #: app/libraries/main.php:407
659
  msgid "Wednesday"
660
  msgstr "Mercredi"
661
 
662
+ #: app/features/events.php:800 app/features/fes/form.php:358
663
+ #: app/features/mec/meta_boxes/display_options.php:767
664
  #: app/libraries/main.php:407
665
  msgid "Thursday"
666
  msgstr "Jeudi"
667
 
668
+ #: app/features/events.php:803 app/features/fes/form.php:359
669
+ #: app/features/mec/meta_boxes/display_options.php:768
670
  #: app/libraries/main.php:407
671
  msgid "Friday"
672
  msgstr "Vendredi"
673
 
674
+ #: app/features/events.php:806 app/features/fes/form.php:360
675
+ #: app/features/mec/meta_boxes/display_options.php:769
676
  #: app/libraries/main.php:407
677
  msgid "Saturday"
678
  msgstr "Samedi"
679
 
680
+ #: app/features/events.php:809 app/features/fes/form.php:361
681
+ #: app/features/mec/meta_boxes/display_options.php:763
682
  #: app/libraries/main.php:407
683
  msgid "Sunday"
684
  msgstr "Dimanche"
685
 
686
+ #: app/features/events.php:816 app/features/events.php:1857
687
+ #: app/features/events.php:1885 app/features/events.php:2044
688
  #: app/features/fes/form.php:366 app/features/ix/import_f_calendar.php:42
689
  #: app/features/ix/import_g_calendar.php:51
690
  #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
691
  msgid "Start"
692
  msgstr "Démarrer"
693
 
694
+ #: app/features/events.php:818 app/features/events.php:1861
695
+ #: app/features/events.php:1889 app/features/events.php:2048
696
  #: app/features/fes/form.php:367
697
  #, fuzzy
698
  #| msgid "Enabled"
699
  msgid "End"
700
  msgstr "Activé"
701
 
702
+ #: app/features/events.php:820 app/features/events.php:1187
703
+ #: app/features/events.php:1298 app/features/events.php:1403
704
+ #: app/features/events.php:1641 app/features/events.php:1840
705
+ #: app/features/events.php:2033 app/features/events.php:2113
706
+ #: app/features/events.php:2246 app/features/fes/form.php:368
707
  #: app/features/fes/form.php:842
708
  msgid "Add"
709
  msgstr "A