Modern Events Calendar Lite - Version 4.4.0

Version Description

  • Added: Search bar shortcode
  • Added: Organizer payment options
  • Added: MEC shortcode element for the Divi builder
  • Added: A new option to disable invoice
  • Added: An option to limit maximum tickets that someone can book for all the tickets
  • Added: Imperial units to weather module in addition to metric units
  • Added: An option to toggle between imperial and metric units in weather module
  • Added: The developer documentation link
  • Fixed: "New Window" in more info link when booking is disabled
  • Fixed: Load more button
  • Fixed: Saving the changes in registration form builder
  • Fixed: Not showing other events due to a problem in exceptional days
  • Fixed: Masonry view by returning to Isotope library (hard-refresh required)
  • Fixed: Some minor issues
Download this release

Release Info

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

Code changes from version 4.3.6 to 4.4.0

Files changed (59) hide show
  1. app/addons/divi.php +57 -0
  2. app/addons/divi/includes/Divi.php +45 -0
  3. app/addons/divi/includes/MECShortcodesForDivi.php +20 -0
  4. app/addons/divi/includes/loader.js +9 -0
  5. app/addons/divi/includes/loader.php +14 -0
  6. app/addons/divi/includes/modules/MECShortcodes/MECShortcodes.jsx +27 -0
  7. app/addons/divi/includes/modules/MECShortcodes/MECShortcodes.php +37 -0
  8. app/addons/divi/includes/modules/index.js +5 -0
  9. app/addons/divi/scripts/builder-bundle.min.js +201 -0
  10. app/addons/divi/scripts/frontend-bundle.min.js +1 -0
  11. app/addons/divi/scripts/frontend.js +3 -0
  12. app/addons/divi/styles/style-dbp.min.css +0 -0
  13. app/addons/divi/styles/style.min.css +0 -0
  14. app/features/events.php +19 -25
  15. app/features/fes.php +15 -22
  16. app/features/gateways/paypal_ipn.php +30 -0
  17. app/features/mec.php +2 -0
  18. app/features/mec/booking.php +31 -6
  19. app/features/mec/dashboard.php +11 -8
  20. app/features/mec/gateways.php +18 -2
  21. app/features/mec/ie.php +1 -0
  22. app/features/mec/messages.php +1 -0
  23. app/features/mec/meta_boxes/display_options.php +21 -1
  24. app/features/mec/meta_boxes/filter.php +1 -0
  25. app/features/mec/meta_boxes/search_form.php +1 -0
  26. app/features/mec/modules.php +13 -0
  27. app/features/mec/notifications.php +1 -0
  28. app/features/mec/regform.php +20 -18
  29. app/features/mec/settings.php +55 -0
  30. app/features/mec/single.php +3 -0
  31. app/features/mec/styles.php +1 -0
  32. app/features/mec/styling.php +1 -0
  33. app/features/search.php +172 -0
  34. app/features/search_bar/index.html +0 -0
  35. app/features/search_bar/search_bar.php +31 -0
  36. app/libraries/book.php +2 -0
  37. app/libraries/factory.php +8 -0
  38. app/libraries/main.php +165 -11
  39. app/libraries/render.php +112 -60
  40. app/libraries/skins.php +35 -6
  41. app/modules/weather/details.php +15 -3
  42. app/skins/carousel/render.php +14 -14
  43. app/skins/grid/render.php +1 -0
  44. app/skins/masonry.php +46 -2
  45. app/skins/masonry/render.php +1 -1
  46. app/skins/masonry/tpl.php +11 -1
  47. app/skins/single.php +2 -0
  48. app/skins/single/default.php +2 -2
  49. app/skins/single/modern.php +1 -1
  50. assets/css/frontend.css +43 -0
  51. assets/css/frontend.min.css +1 -1
  52. assets/js/frontend.js +230 -94
  53. changelog.txt +17 -1
  54. languages/modern-events-calendar-lite-de_DE.mo +0 -0
  55. languages/modern-events-calendar-lite-de_DE.po +1683 -1536
  56. languages/modern-events-calendar-lite-en_US.mo +0 -0
  57. languages/modern-events-calendar-lite-en_US.po +1620 -1502
  58. languages/modern-events-calendar-lite-es_ES.mo +0 -0
  59. languages/modern-events-calendar-lite-es_ES.po +254 -241
app/addons/divi.php ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /** no direct access **/
3
+ defined('MECEXEC') or die();
4
+
5
+ /**
6
+ * Webnus MEC Divi addon class
7
+ * @author Webnus <info@webnus.biz>
8
+ */
9
+ class MEC_addon_divi extends MEC_base
10
+ {
11
+ /**
12
+ * @var MEC_factory
13
+ */
14
+ public $factory;
15
+
16
+ /**
17
+ * @var MEC_main
18
+ */
19
+ public $main;
20
+
21
+ /**
22
+ * Constructor method
23
+ * @author Webnus <info@webnus.biz>
24
+ */
25
+ public function __construct()
26
+ {
27
+ // MEC Factory class
28
+ $this->factory = $this->getFactory();
29
+
30
+ // MEC Main class
31
+ $this->main = $this->getMain();
32
+ }
33
+
34
+ /**
35
+ * Initialize the Elementor addon
36
+ * @author Webnus <info@webnus.biz>
37
+ */
38
+ public function init()
39
+ {
40
+ // Divi is not installed
41
+ $theme = wp_get_theme(); // gets the current theme
42
+ if ( 'Divi' != $theme->name ) return false;
43
+ add_action( 'divi_extensions_init', array($this, 'mecdivi_initialize_extension') );
44
+ return true;
45
+ }
46
+
47
+ /**
48
+ * Creates the extension's main class instance.
49
+ *
50
+ * @since 1.0.0
51
+ */
52
+ public function mecdivi_initialize_extension() {
53
+ require_once plugin_dir_path( __FILE__ ) . 'divi/includes/Divi.php';
54
+ require_once plugin_dir_path( __FILE__ ) . 'divi/includes/MECShortcodesForDivi.php';
55
+ }
56
+
57
+ }
app/addons/divi/includes/Divi.php ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ class MECDIVI_Divi extends DiviExtension {
3
+
4
+ /**
5
+ * The gettext domain for the extension's translations.
6
+ *
7
+ * @since 1.0.0
8
+ *
9
+ * @var string
10
+ */
11
+ public $gettext_domain = 'mecdivi-divi';
12
+
13
+ /**
14
+ * The extension's WP Plugin name.
15
+ *
16
+ * @since 1.0.0
17
+ *
18
+ * @var string
19
+ */
20
+ public $name = 'divi';
21
+
22
+ /**
23
+ * The extension's version
24
+ *
25
+ * @since 1.0.0
26
+ *
27
+ * @var string
28
+ */
29
+ public $version = '1.0.0';
30
+
31
+ /**
32
+ * MECDIVI_Divi constructor.
33
+ *
34
+ * @param string $name
35
+ * @param array $args
36
+ */
37
+ public function __construct( $name = 'divi', $args = array() ) {
38
+ $this->plugin_dir = plugin_dir_path( __FILE__ );
39
+ $this->plugin_dir_url = plugin_dir_url( $this->plugin_dir );
40
+
41
+ parent::__construct( $name, $args );
42
+ }
43
+ }
44
+
45
+ new MECDIVI_Divi;
app/addons/divi/includes/MECShortcodesForDivi.php ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ if( ! function_exists( 'MECDIVI_et_builder_load_actions' )) {
3
+ function MECDIVI_et_builder_load_actions( $actions ) {
4
+ $actions[] = 'MECDIVI_load_mec_shortcode';
5
+
6
+ return $actions;
7
+ }
8
+ }
9
+
10
+ add_filter( 'et_builder_load_actions', 'MECDIVI_et_builder_load_actions' );
11
+
12
+ if( ! function_exists( 'MECDIVI_load_mec_shortcode' )) {
13
+ function MECDIVI_load_mec_shortcode() {
14
+ $post_id = $_POST['shortcode_id'];
15
+ echo do_shortcode( '[MEC id="'.$post_id.'"]' );
16
+ wp_die();
17
+ }
18
+ }
19
+ add_action( 'wp_ajax_nopriv_MECDIVI_load_mec_shortcode', 'MECDIVI_load_mec_shortcode' );
20
+ add_action( 'wp_ajax_MECDIVI_load_mec_shortcode', 'MECDIVI_load_mec_shortcode' );
app/addons/divi/includes/loader.js ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ // External Dependencies
2
+ import $ from 'jquery';
3
+
4
+ // Internal Dependencies
5
+ import modules from './modules';
6
+
7
+ $(window).on('et_builder_api_ready', (event, API) => {
8
+ API.registerModules(modules);
9
+ });
app/addons/divi/includes/loader.php ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if ( ! class_exists( 'ET_Builder_Element' ) ) {
4
+ return;
5
+ }
6
+
7
+ $module_files = glob( __DIR__ . '/modules/*/*.php' );
8
+
9
+ // Load custom Divi Builder modules
10
+ foreach ( (array) $module_files as $module_file ) {
11
+ if ( $module_file && preg_match( "/\/modules\/\b([^\/]+)\/\\1\.php$/", $module_file ) ) {
12
+ require_once $module_file;
13
+ }
14
+ }
app/addons/divi/includes/modules/MECShortcodes/MECShortcodes.jsx ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ // External Dependencies
2
+ import React, { Component } from 'react';
3
+ import $ from 'jquery';
4
+
5
+ class MECShortcodes extends Component {
6
+
7
+ static slug = 'mecdivi_MECShortcodes';
8
+ render() {
9
+ $.ajax({
10
+ url: window.ETBuilderBackend.ajaxUrl,
11
+ type: 'post',
12
+ data: {
13
+ action: 'MECDIVI_load_mec_shortcode',
14
+ nonce: 'et_admin_load_nonce',
15
+ shortcode_id: this.props.shortcode_id,
16
+ },
17
+ success: function (response) {
18
+ $('.mec-shortcode').html(response);
19
+ }
20
+ });
21
+ return (
22
+ <div class="mec-shortcode"></div>
23
+ );
24
+ }
25
+ }
26
+
27
+ export default MECShortcodes;
app/addons/divi/includes/modules/MECShortcodes/MECShortcodes.php ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class MECDIVI_MECShortcodes extends ET_Builder_Module {
4
+
5
+ public $slug = 'mecdivi_MECShortcodes';
6
+ public $vb_support = 'on';
7
+
8
+ protected $module_credits = array(
9
+ 'module_uri' => 'https://webnus.net',
10
+ 'author' => 'Webnus',
11
+ 'author_uri' => 'https://webnus.net',
12
+ );
13
+
14
+ public function init() {
15
+ $this->name = esc_html__( 'MEC Shortcodes', 'mecdivi-divi' );
16
+ }
17
+
18
+ public function get_fields() {
19
+ $calendar_posts = get_posts(array('post_type'=>'mec_calendars', 'posts_per_page'=>'-1'));
20
+ $calendars = array();
21
+ foreach($calendar_posts as $calendar_post) $calendars[$calendar_post->ID] = $calendar_post->post_title;
22
+
23
+ return array(
24
+ 'shortcode_id' => array(
25
+ 'label' => esc_html__( 'MEC Shortcodes', 'mecdivi-divi' ),
26
+ 'type' => 'select',
27
+ 'options' => $calendars,
28
+ 'description' => esc_html__( 'Input your desired shortcode_id here.', 'mecdivi-divi' ),
29
+ ),
30
+ );
31
+ }
32
+ public function render( $attrs, $content = null, $render_slug ) {
33
+ return do_shortcode('[MEC id="'.$this->props['shortcode_id'].'"]');
34
+ }
35
+ }
36
+
37
+ new MECDIVI_MECShortcodes;
app/addons/divi/includes/modules/index.js ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
1
+ import MECShortcodes from './MECShortcodes/MECShortcodes';
2
+
3
+ export default [
4
+ MECShortcodes,
5
+ ];
app/addons/divi/scripts/builder-bundle.min.js ADDED
@@ -0,0 +1,201 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ !(function(e) {
2
+ var t = {};
3
+ function n(o) {
4
+ if (t[o]) return t[o].exports;
5
+ var r = (t[o] = { i: o, l: !1, exports: {} });
6
+ return e[o].call(r.exports, r, r.exports, n), (r.l = !0), r.exports;
7
+ }
8
+ (n.m = e),
9
+ (n.c = t),
10
+ (n.d = function(e, t, o) {
11
+ n.o(e, t) ||
12
+ Object.defineProperty(e, t, {
13
+ configurable: !1,
14
+ enumerable: !0,
15
+ get: o
16
+ });
17
+ }),
18
+ (n.n = function(e) {
19
+ var t =
20
+ e && e.__esModule
21
+ ? function() {
22
+ return e.default;
23
+ }
24
+ : function() {
25
+ return e;
26
+ };
27
+ return n.d(t, "a", t), t;
28
+ }),
29
+ (n.o = function(e, t) {
30
+ return Object.prototype.hasOwnProperty.call(e, t);
31
+ }),
32
+ (n.p = "/"),
33
+ n((n.s = 1));
34
+ })([
35
+ function(e, t) {
36
+ e.exports = jQuery;
37
+ },
38
+ function(e, t, n) {
39
+ n(2), (e.exports = n(3));
40
+ },
41
+ function(e, t, n) {
42
+ "use strict";
43
+ },
44
+ function(e, t, n) {
45
+ "use strict";
46
+ Object.defineProperty(t, "__esModule", { value: !0 });
47
+ var o = n(0),
48
+ r = n.n(o),
49
+ c = n(4);
50
+ r()(window).on("et_builder_api_ready", function(e, t) {
51
+ t.registerModules(c.a);
52
+ });
53
+ },
54
+ function(e, t, n) {
55
+ "use strict";
56
+ var o = n(5);
57
+ t.a = [o.a];
58
+ },
59
+ function(e, t, n) {
60
+ "use strict";
61
+ var o = n(6),
62
+ r = n.n(o),
63
+ c = n(0),
64
+ u = n.n(c);
65
+ function i(e) {
66
+ return (i =
67
+ "function" === typeof Symbol && "symbol" === typeof Symbol.iterator
68
+ ? function(e) {
69
+ return typeof e;
70
+ }
71
+ : function(e) {
72
+ return e &&
73
+ "function" === typeof Symbol &&
74
+ e.constructor === Symbol &&
75
+ e !== Symbol.prototype
76
+ ? "symbol"
77
+ : typeof e;
78
+ })(e);
79
+ }
80
+ function a(e, t) {
81
+ for (var n = 0; n < t.length; n++) {
82
+ var o = t[n];
83
+ (o.enumerable = o.enumerable || !1),
84
+ (o.configurable = !0),
85
+ "value" in o && (o.writable = !0),
86
+ Object.defineProperty(e, o.key, o);
87
+ }
88
+ }
89
+ function f(e, t) {
90
+ return !t || ("object" !== i(t) && "function" !== typeof t)
91
+ ? (function(e) {
92
+ if (void 0 === e)
93
+ throw new ReferenceError(
94
+ "this hasn't been initialised - super() hasn't been called"
95
+ );
96
+ return e;
97
+ })(e)
98
+ : t;
99
+ }
100
+ var s = (function(e) {
101
+ function t() {
102
+ return (
103
+ (function(e, t) {
104
+ if (!(e instanceof t))
105
+ throw new TypeError("Cannot call a class as a function");
106
+ })(this, t),
107
+ f(
108
+ this,
109
+ (t.__proto__ || Object.getPrototypeOf(t)).apply(this, arguments)
110
+ )
111
+ );
112
+ }
113
+ var n, c, i;
114
+ return (
115
+ (function(e, t) {
116
+ if ("function" !== typeof t && null !== t)
117
+ throw new TypeError(
118
+ "Super expression must either be null or a function"
119
+ );
120
+ (e.prototype = Object.create(t && t.prototype, {
121
+ constructor: {
122
+ value: e,
123
+ enumerable: !1,
124
+ writable: !0,
125
+ configurable: !0
126
+ }
127
+ })),
128
+ t &&
129
+ (Object.setPrototypeOf
130
+ ? Object.setPrototypeOf(e, t)
131
+ : (e.__proto__ = t));
132
+ })(t, o["Component"]),
133
+ (n = t),
134
+ (c = [
135
+ {
136
+ key: "render",
137
+ value: function() {
138
+ return (
139
+ u.a.ajax({
140
+ url: window.ETBuilderBackend.ajaxUrl,
141
+ type: "post",
142
+ data: {
143
+ action: "MECDIVI_load_mec_shortcode",
144
+ nonce: "et_admin_load_nonce",
145
+ shortcode_id: this.props.shortcode_id
146
+ },
147
+ success: function(e) {
148
+ u()(".mec-shortcode").html(e);
149
+ var node = $(".mec-event-masonry");
150
+ if(typeof node !== 'undefined')
151
+ {
152
+ // var masonryShuffle = window.Shuffle;
153
+
154
+ if (node === null) {
155
+ return;
156
+ }
157
+
158
+ // var masonryShuffle = new Shuffle(node, {
159
+ // itemSelector: '.mec-masonry-item-wrap',
160
+ // });
161
+ // masonryShuffle.sort({
162
+ // by: node.data('created')
163
+ // });
164
+ // var $container = $("#mec_skin_" + settings.id + " .mec-event-masonry");
165
+ var $grid = node.isotope({
166
+ filter: '*',
167
+ itemSelector: '.mec-masonry-item-wrap',
168
+ getSortData: {
169
+ date: '[data-sort-masonry]',
170
+ },
171
+ sortBy: 'date',
172
+ animationOptions: {
173
+ duration: 750,
174
+ easing: 'linear',
175
+ queue: false
176
+ },
177
+ });
178
+ }
179
+ }
180
+ }),
181
+ r.a.createElement("div", { class: "mec-shortcode" })
182
+ );
183
+ }
184
+ }
185
+ ]) && a(n.prototype, c),
186
+ i && a(n, i),
187
+ t
188
+ );
189
+ })();
190
+ Object.defineProperty(s, "slug", {
191
+ configurable: !0,
192
+ enumerable: !0,
193
+ writable: !0,
194
+ value: "mecdivi_MECShortcodes"
195
+ }),
196
+ (t.a = s);
197
+ },
198
+ function(e, t) {
199
+ e.exports = React;
200
+ }
201
+ ]);
app/addons/divi/scripts/frontend-bundle.min.js ADDED
@@ -0,0 +1 @@
 
1
+ !function(n){var t={};function r(e){if(t[e])return t[e].exports;var o=t[e]={i:e,l:!1,exports:{}};return n[e].call(o.exports,o,o.exports,r),o.l=!0,o.exports}r.m=n,r.c=t,r.d=function(n,t,e){r.o(n,t)||Object.defineProperty(n,t,{configurable:!1,enumerable:!0,get:e})},r.n=function(n){var t=n&&n.__esModule?function(){return n.default}:function(){return n};return r.d(t,"a",t),t},r.o=function(n,t){return Object.prototype.hasOwnProperty.call(n,t)},r.p="/",r(r.s=7)}({7:function(n,t,r){n.exports=r(8)},8:function(n,t){jQuery(function(n){})}});
app/addons/divi/scripts/frontend.js ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ // This script is loaded both on the frontend page and in the Visual Builder.
2
+
3
+ jQuery(function($) {});
app/addons/divi/styles/style-dbp.min.css ADDED
File without changes
app/addons/divi/styles/style.min.css ADDED
File without changes
app/features/events.php CHANGED
@@ -14,7 +14,7 @@ class MEC_feature_events extends MEC_base
14
  public $db;
15
  public $PT;
16
  public $settings;
17
-
18
  /**
19
  * Constructor method
20
  *
@@ -280,7 +280,8 @@ class MEC_feature_events extends MEC_base
280
  add_meta_box('mec_metabox_details', __('Event Details', 'modern-events-calendar-lite'), array($this, 'meta_box_details'), $this->main->get_main_post_type(), 'normal', 'high');
281
 
282
  // Show Booking meta box onnly if booking module is enabled
283
- if ($this->getPRO() and isset($this->settings['booking_status']) and $this->settings['booking_status']) {
 
284
  add_meta_box('mec_metabox_booking', __('Booking', 'modern-events-calendar-lite'), array($this, 'meta_box_booking'), $this->main->get_main_post_type(), 'normal', 'high');
285
  }
286
  }
@@ -2695,30 +2696,18 @@ class MEC_feature_events extends MEC_base
2695
 
2696
  $week = '*';
2697
  $weekday = '*';
2698
- } elseif ($repeat_type == "advanced") {
2699
- $last = (isset($advanced) and count($advanced)) ? end($advanced) : null;
2700
- if($last)
2701
- {
2702
- $tday = date('Y-m-d');
2703
-
2704
- // Generate last month used occurrences value for example if occurrences equals 5 and current month equals 5 then results equals 10
2705
- $last_month = date('Y-m-d', strtotime('+' . ($repeat_end_at_occurrences + 1) . 'month', strtotime('first day of last month')));
2706
-
2707
- // Find end finish date
2708
- $last_date = date('Y-m-d', strtotime("last day of {$last_month}"));
2709
- $event_start = strtotime(sprintf('%02d', $start_time_hour).':'.sprintf('%02d', $start_time_minutes).' '.$start_time_ampm);
2710
-
2711
- if($this->main->is_past($last_date, $tday) or $last_date == $tday and strtotime(date( 'h:i a', current_time( 'timestamp', 0 ))) > $event_start)
2712
- {
2713
- $last_month = date('Y-m-d', strtotime('+' . ($repeat_end_at_occurrences + 1) . 'month', strtotime('first day of this month')));
2714
- $last_date = date('Y-m-d', strtotime("last day of {$last_month}"));
2715
- }
2716
-
2717
- // Calc date diff between $end_date and $last_date
2718
- $period_date = $this->main->date_diff($end_date, $last_date);
2719
 
2720
- $plus_date = '+' . $period_date->days . ' Days';
2721
- }
 
 
 
 
 
2722
  }
2723
 
2724
  $in_days_arr = (isset($_mec['in_days']) and is_array($_mec['in_days']) and count($_mec['in_days'])) ? array_unique($_mec['in_days']) : array();
@@ -2873,6 +2862,11 @@ class MEC_feature_events extends MEC_base
2873
  }
2874
  do_action('mec_save_reg_fields', $post_id, $reg_fields);
2875
  update_post_meta($post_id, 'mec_reg_fields', $reg_fields);
 
 
 
 
 
2876
  }
2877
 
2878
  /**
14
  public $db;
15
  public $PT;
16
  public $settings;
17
+ public $render;
18
  /**
19
  * Constructor method
20
  *
280
  add_meta_box('mec_metabox_details', __('Event Details', 'modern-events-calendar-lite'), array($this, 'meta_box_details'), $this->main->get_main_post_type(), 'normal', 'high');
281
 
282
  // Show Booking meta box onnly if booking module is enabled
283
+ if($this->getPRO() and isset($this->settings['booking_status']) and $this->settings['booking_status'])
284
+ {
285
  add_meta_box('mec_metabox_booking', __('Booking', 'modern-events-calendar-lite'), array($this, 'meta_box_booking'), $this->main->get_main_post_type(), 'normal', 'high');
286
  }
287
  }
2696
 
2697
  $week = '*';
2698
  $weekday = '*';
2699
+ } elseif ($repeat_type == "advanced")
2700
+ {
2701
+ // Render class object
2702
+ $this->render = $this->getRender();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2703
 
2704
+ // Get finish date
2705
+ $event_info = array('start' => $date['start'], 'end' => $date['end']);
2706
+ $dates = $this->render->generate_advanced_days($advanced, $event_info, $repeat_end_at_occurrences +1, date( 'Y-m-d', current_time( 'timestamp', 0 )), 'events');
2707
+
2708
+ $period_date = $this->main->date_diff($start_date, end($dates)['end']['date']);
2709
+
2710
+ $plus_date = '+' . $period_date->days . ' Days';
2711
  }
2712
 
2713
  $in_days_arr = (isset($_mec['in_days']) and is_array($_mec['in_days']) and count($_mec['in_days'])) ? array_unique($_mec['in_days']) : array();
2862
  }
2863
  do_action('mec_save_reg_fields', $post_id, $reg_fields);
2864
  update_post_meta($post_id, 'mec_reg_fields', $reg_fields);
2865
+
2866
+ // Organizer Payment Options
2867
+ $op = isset($_mec['op']) ? $_mec['op'] : array();
2868
+ update_post_meta($post_id, 'mec_op', $op);
2869
+ update_user_meta(get_post_field('post_author', $post_id), 'mec_op', $op);
2870
  }
2871
 
2872
  /**
app/features/fes.php CHANGED
@@ -13,7 +13,8 @@ class MEC_feature_fes extends MEC_base
13
  public $db;
14
  public $settings;
15
  public $PT;
16
-
 
17
  /**
18
  * Constructor method
19
  * @author Webnus <info@webnus.biz>
@@ -683,29 +684,16 @@ class MEC_feature_fes extends MEC_base
683
  }
684
  elseif($repeat_type == "advanced")
685
  {
686
- $last = (isset($advanced) and count($advanced)) ? end($advanced) : null;
687
- if($last)
688
- {
689
- $tday = date('Y-m-d');
690
 
691
- // Generate last month used occurrences value for example if occurrences equals 5 and current month equals 5 then results equals 10
692
- $last_month = date('Y-m-d', strtotime('+' . ($repeat_end_at_occurrences + 1) . 'month', strtotime('first day of last month')));
693
-
694
- // Find end finish date
695
- $last_date = date('Y-m-d', strtotime("last day of {$last_month}"));
696
- $event_start = strtotime(sprintf('%02d', $start_time_hour).':'.sprintf('%02d', $start_time_minutes).' '.$start_time_ampm);
697
-
698
- if($this->main->is_past($last_date, $tday) or $last_date == $tday and strtotime(date( 'h:i a', current_time( 'timestamp', 0 ))) > $event_start)
699
- {
700
- $last_month = date('Y-m-d', strtotime('+' . ($repeat_end_at_occurrences + 1) . 'month', strtotime('first day of this month')));
701
- $last_date = date('Y-m-d', strtotime("last day of {$last_month}"));
702
- }
703
-
704
- // Calc date diff between $end_date and $last_date
705
- $period_date = $this->main->date_diff($end_date, $last_date);
706
 
707
- $plus_date = '+' . $period_date->days . ' Days';
708
- }
709
  }
710
 
711
  // "In Days" and "Not In Days"
@@ -828,6 +816,11 @@ class MEC_feature_fes extends MEC_base
828
 
829
  update_post_meta($post_id, 'mec_reg_fields', $reg_fields);
830
 
 
 
 
 
 
831
  $message = '';
832
  if($status == 'pending') $message = __('The event submitted. It will publish as soon as possible.', 'modern-events-calendar-lite');
833
  elseif($status == 'publish') $message = __('The event published.', 'modern-events-calendar-lite');
13
  public $db;
14
  public $settings;
15
  public $PT;
16
+ public $render;
17
+
18
  /**
19
  * Constructor method
20
  * @author Webnus <info@webnus.biz>
684
  }
685
  elseif($repeat_type == "advanced")
686
  {
687
+ // Render class object
688
+ $this->render = $this->getRender();
 
 
689
 
690
+ // Get finish date
691
+ $event_info = array('start' => $date['start'], 'end' => $date['end']);
692
+ $dates = $this->render->generate_advanced_days($advanced, $event_info, $repeat_end_at_occurrences +1, date( 'Y-m-d', current_time( 'timestamp', 0 )), 'events');
693
+
694
+ $period_date = $this->main->date_diff($start_date, end($dates)['end']['date']);
 
 
 
 
 
 
 
 
 
 
695
 
696
+ $plus_date = '+' . $period_date->days . ' Days';
 
697
  }
698
 
699
  // "In Days" and "Not In Days"
816
 
817
  update_post_meta($post_id, 'mec_reg_fields', $reg_fields);
818
 
819
+ // Organizer Payment Options
820
+ $op = isset($mec['op']) ? $mec['op'] : array();
821
+ update_post_meta($post_id, 'mec_op', $op);
822
+ update_user_meta(get_post_field('post_author', $post_id), 'mec_op', $op);
823
+
824
  $message = '';
825
  if($status == 'pending') $message = __('The event submitted. It will publish as soon as possible.', 'modern-events-calendar-lite');
826
  elseif($status == 'publish') $message = __('The event published.', 'modern-events-calendar-lite');
app/features/gateways/paypal_ipn.php ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * WordPress initializing
4
+ */
5
+ function mec_find_wordpress_base_path()
6
+ {
7
+ $dir = dirname(__FILE__);
8
+
9
+ do
10
+ {
11
+ if(file_exists($dir.'/wp-config.php')) return $dir;
12
+ }
13
+ while($dir = realpath($dir.'/..'));
14
+
15
+ return NULL;
16
+ }
17
+
18
+ define('BASE_PATH', mec_find_wordpress_base_path().'/');
19
+ define('WP_USE_THEMES', false);
20
+
21
+ global $wp, $wp_query, $wp_the_query, $wp_rewrite, $wp_did_header;
22
+ require(BASE_PATH.'wp-load.php');
23
+
24
+ // exit if request method is GET
25
+ if(!isset($_SERVER['REQUEST_METHOD']) or (isset($_SERVER['REQUEST_METHOD']) and $_SERVER['REQUEST_METHOD'] == 'GET')) exit;
26
+
27
+ $model = new MEC_gateway_paypal_express();
28
+
29
+ $POST = array_map('stripslashes', $_POST);
30
+ $verified = $model->validate_express_payment($POST);
app/features/mec.php CHANGED
@@ -463,6 +463,8 @@ class MEC_feature_mec extends MEC_base
463
  update_post_meta($post_id, 'tag', $tags);
464
  update_post_meta($post_id, 'author', $authors);
465
 
 
 
466
  $mec = isset($_POST['mec']) ? $_POST['mec'] : array();
467
 
468
  foreach($mec as $key=>$value) update_post_meta($post_id, $key, $value);
463
  update_post_meta($post_id, 'tag', $tags);
464
  update_post_meta($post_id, 'author', $authors);
465
 
466
+ do_action('mec_shortcode_filters_save' , $post_id , $terms );
467
+
468
  $mec = isset($_POST['mec']) ? $_POST['mec'] : array();
469
 
470
  foreach($mec as $key=>$value) update_post_meta($post_id, $key, $value);
app/features/mec/booking.php CHANGED
@@ -41,6 +41,7 @@ if($this->getPRO())
41
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#recaptcha_option"><?php _e('Google Recaptcha Options', 'modern-events-calendar-lite'); ?></a>
42
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#fes_option"><?php _e('Frontend Event Submission', 'modern-events-calendar-lite'); ?></a>
43
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#user_profile_options"><?php _e('User Profile', 'modern-events-calendar-lite'); ?></a>
 
44
  <?php if($this->main->getPRO()): ?>
45
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#mailchimp_option"><?php _e('Mailchimp Integration', 'modern-events-calendar-lite'); ?></a>
46
  <?php endif; ?>
@@ -234,12 +235,25 @@ if($this->getPRO())
234
  <div class="mec-col-4">
235
  <input type="text" id="mec_settings_booking_date_format1" name="mec[settings][booking_date_format1]" value="<?php echo ((isset($settings['booking_date_format1']) and trim($settings['booking_date_format1']) != '') ? $settings['booking_date_format1'] : 'Y-m-d'); ?>" />
236
  <span class="mec-tooltip">
237
- <div class="box">
238
- <h5 class="title"><?php _e('Date Format', 'modern-events-calendar-lite'); ?></h5>
239
- <div class="content"><p><?php esc_attr_e("Default is Y-m-d", 'modern-events-calendar-lite'); ?><a href="https://webnus.net/dox/modern-events-calendar/booking/" target="_blank"><?php _e('Read More', 'modern-events-calendar-lite'); ?></a></p></div>
240
- </div>
241
- <i title="" class="dashicons-before dashicons-editor-help"></i>
242
- </span>
 
 
 
 
 
 
 
 
 
 
 
 
 
243
  </div>
244
  </div>
245
  <div class="mec-form-row">
@@ -282,6 +296,17 @@ if($this->getPRO())
282
  </span>
283
  </div>
284
  </div>
 
 
 
 
 
 
 
 
 
 
 
285
  <h5 class="mec-form-subtitle"><?php _e('Email verification', 'modern-events-calendar-lite'); ?></h5>
286
  <div class="mec-form-row">
287
  <div class="mec-col-12">
41
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#recaptcha_option"><?php _e('Google Recaptcha Options', 'modern-events-calendar-lite'); ?></a>
42
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#fes_option"><?php _e('Frontend Event Submission', 'modern-events-calendar-lite'); ?></a>
43
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#user_profile_options"><?php _e('User Profile', 'modern-events-calendar-lite'); ?></a>
44
+ <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#search_bar_options"><?php _e('Search Bar', 'modern-events-calendar-lite'); ?></a>
45
  <?php if($this->main->getPRO()): ?>
46
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#mailchimp_option"><?php _e('Mailchimp Integration', 'modern-events-calendar-lite'); ?></a>
47
  <?php endif; ?>
235
  <div class="mec-col-4">
236
  <input type="text" id="mec_settings_booking_date_format1" name="mec[settings][booking_date_format1]" value="<?php echo ((isset($settings['booking_date_format1']) and trim($settings['booking_date_format1']) != '') ? $settings['booking_date_format1'] : 'Y-m-d'); ?>" />
237
  <span class="mec-tooltip">
238
+ <div class="box">
239
+ <h5 class="title"><?php _e('Date Format', 'modern-events-calendar-lite'); ?></h5>
240
+ <div class="content"><p><?php esc_attr_e("Default is Y-m-d", 'modern-events-calendar-lite'); ?><a href="https://webnus.net/dox/modern-events-calendar/booking/" target="_blank"><?php _e('Read More', 'modern-events-calendar-lite'); ?></a></p></div>
241
+ </div>
242
+ <i title="" class="dashicons-before dashicons-editor-help"></i>
243
+ </span>
244
+ </div>
245
+ </div>
246
+ <div class="mec-form-row">
247
+ <label class="mec-col-3" for="mec_settings_booking_limit"><?php _e('Limit', 'modern-events-calendar-lite'); ?></label>
248
+ <div class="mec-col-4">
249
+ <input type="number" id="mec_settings_booking_limit" name="mec[settings][booking_limit]" value="<?php echo ((isset($settings['booking_limit']) and trim($settings['booking_limit']) != '') ? $settings['booking_limit'] : ''); ?>" placeholder="<?php esc_attr_e('Default is empty', 'modern-events-calendar-lite'); ?>" />
250
+ <span class="mec-tooltip">
251
+ <div class="box">
252
+ <h5 class="title"><?php _e('Booking Limit', 'modern-events-calendar-lite'); ?></h5>
253
+ <div class="content"><p><?php esc_attr_e("Total tickets that a user can book. It is useful if you're providing free tickets. Leave it empty for unlimited booking.", 'modern-events-calendar-lite'); ?></p></div>
254
+ </div>
255
+ <i title="" class="dashicons-before dashicons-editor-help"></i>
256
+ </span>
257
  </div>
258
  </div>
259
  <div class="mec-form-row">
296
  </span>
297
  </div>
298
  </div>
299
+ <div class="mec-form-row">
300
+ <div class="mec-col-12">
301
+ <label for="mec_settings_booking_invoice">
302
+ <input type="hidden" name="mec[settings][booking_invoice]" value="0" />
303
+ <input type="checkbox" name="mec[settings][booking_invoice]" id="mec_settings_booking_invoice"
304
+ <?php echo ((!isset($settings['booking_invoice']) or (isset($settings['booking_invoice']) and $settings['booking_invoice'] == '1')) ? 'checked="checked"' : ''); ?>
305
+ value="1" />
306
+ <?php _e('Enable Invoice', 'modern-events-calendar-lite'); ?>
307
+ </label>
308
+ </div>
309
+ </div>
310
  <h5 class="mec-form-subtitle"><?php _e('Email verification', 'modern-events-calendar-lite'); ?></h5>
311
  <div class="mec-form-row">
312
  <div class="mec-col-12">
app/features/mec/dashboard.php CHANGED
@@ -122,24 +122,27 @@ $box_stats = apply_filters('mec_dashboard_box_stats', true);
122
  <?php
123
  $mec_options = get_option('mec_options');
124
  $one_license = $five_license = $ten_license = $product_license = '';
125
- if ( !empty($mec_options) && isset($mec_options['product_name']) ):
126
- if ( $mec_options['product_name'] == '1 License for MEC Plugin' )
 
 
127
  {
128
  $one_license = 'checked';
129
- }
130
- elseif ( $mec_options['product_name'] == '5 License for MEC Plugin' )
131
  {
132
  $five_license = 'checked';
133
  }
134
- elseif ( $mec_options['product_name'] == '10 License for MEC Plugin' )
135
  {
136
  $ten_license = 'checked';
137
  }
138
- if ( $mec_options['product_name'] != '' )
 
139
  {
140
  $product_license = $mec_options['purchase_code'];
141
  }
142
- endif;
143
  ?>
144
  <form id="MECActivation" action="#" method="post">
145
  <div class="LicenseType">
@@ -159,7 +162,7 @@ $box_stats = apply_filters('mec_dashboard_box_stats', true);
159
  {
160
  $license_status = 'PurchaseSuccess';
161
  }
162
- elseif ( !empty($mec_options['purchase_code']) && is_null($verify) )
163
  {
164
  $license_status = 'PurchaseError';
165
  }
122
  <?php
123
  $mec_options = get_option('mec_options');
124
  $one_license = $five_license = $ten_license = $product_license = '';
125
+
126
+ if(!empty($mec_options) && isset($mec_options['product_name']))
127
+ {
128
+ if($mec_options['product_name'] == '1 License for MEC Plugin')
129
  {
130
  $one_license = 'checked';
131
+ }
132
+ elseif($mec_options['product_name'] == '5 License for MEC Plugin')
133
  {
134
  $five_license = 'checked';
135
  }
136
+ elseif($mec_options['product_name'] == '10 License for MEC Plugin')
137
  {
138
  $ten_license = 'checked';
139
  }
140
+
141
+ if($mec_options['product_name'] != '')
142
  {
143
  $product_license = $mec_options['purchase_code'];
144
  }
145
+ }
146
  ?>
147
  <form id="MECActivation" action="#" method="post">
148
  <div class="LicenseType">
162
  {
163
  $license_status = 'PurchaseSuccess';
164
  }
165
+ elseif(!empty($mec_options['purchase_code']) && is_null($verify))
166
  {
167
  $license_status = 'PurchaseError';
168
  }
app/features/mec/gateways.php CHANGED
@@ -3,8 +3,8 @@
3
  defined('MECEXEC') or die();
4
 
5
  $gateways = $this->main->get_gateways();
 
6
  ?>
7
-
8
  <div class="wns-be-container wns-be-container-sticky">
9
 
10
  <div id="wns-be-infobar">
@@ -32,6 +32,7 @@ $gateways = $this->main->get_gateways();
32
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#recaptcha_option"><?php _e('Google Recaptcha Options', 'modern-events-calendar-lite'); ?></a>
33
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#fes_option"><?php _e('Frontend Event Submission', 'modern-events-calendar-lite'); ?></a>
34
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#user_profile_options"><?php _e('User Profile', 'modern-events-calendar-lite'); ?></a>
 
35
  <?php if($this->main->getPRO()): ?>
36
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#mailchimp_option"><?php _e('Mailchimp Integration', 'modern-events-calendar-lite'); ?></a>
37
  <?php endif; ?>
@@ -190,9 +191,24 @@ $gateways = $this->main->get_gateways();
190
  <?php endforeach; ?>
191
  </ul>
192
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
193
  <div class="mec-form-row">
194
  <?php wp_nonce_field('mec_options_form'); ?>
195
- <button style="display: none;" id="mec_gateways_form_button" class="button button-primary mec-button-primary" type="submit"><?php _e('Save Changes', 'modern-events-calendar-lite'); ?></button>
196
  </div>
197
  </form>
198
  </div>
3
  defined('MECEXEC') or die();
4
 
5
  $gateways = $this->main->get_gateways();
6
+ $gateways_options = $this->main->get_gateways_options();
7
  ?>
 
8
  <div class="wns-be-container wns-be-container-sticky">
9
 
10
  <div id="wns-be-infobar">
32
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#recaptcha_option"><?php _e('Google Recaptcha Options', 'modern-events-calendar-lite'); ?></a>
33
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#fes_option"><?php _e('Frontend Event Submission', 'modern-events-calendar-lite'); ?></a>
34
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#user_profile_options"><?php _e('User Profile', 'modern-events-calendar-lite'); ?></a>
35
+ <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#search_bar_options"><?php _e('Search Bar', 'modern-events-calendar-lite'); ?></a>
36
  <?php if($this->main->getPRO()): ?>
37
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#mailchimp_option"><?php _e('Mailchimp Integration', 'modern-events-calendar-lite'); ?></a>
38
  <?php endif; ?>
191
  <?php endforeach; ?>
192
  </ul>
193
  </div>
194
+ <div class="mec-form-row" style="margin-top: 30px;">
195
+ <div class="mec-col-4">
196
+ <label>
197
+ <input type="hidden" name="mec[gateways][op_status]" value="0" />
198
+ <input value="1" type="checkbox" name="mec[gateways][op_status]" <?php if(isset($gateways_options['op_status']) and $gateways_options['op_status']) echo 'checked="checked"'; ?> /> <?php _e('Enable Organizer Payment Module', 'modern-events-calendar-lite'); ?>
199
+ </label>
200
+ <span class="mec-tooltip">
201
+ <div class="box">
202
+ <h5 class="title"><?php _e('Organizer Payment', 'modern-events-calendar-lite'); ?></h5>
203
+ <div class="content"><p><?php esc_attr_e("By enabling this module, organizers are able to insert their own payment credentials for enabled gateways per event and receive the payments directly!", 'modern-events-calendar-lite'); ?></p></div>
204
+ </div>
205
+ <i title="" class="dashicons-before dashicons-editor-help"></i>
206
+ </span>
207
+ </div>
208
+ </div>
209
  <div class="mec-form-row">
210
  <?php wp_nonce_field('mec_options_form'); ?>
211
+ <button style="display: none;" id="mec_gateways_form_button" class="button button-primary mec-button-primary" type="submit"><?php _e('Save Changes', 'modern-events-calendar-lite'); ?></button>
212
  </div>
213
  </form>
214
  </div>
app/features/mec/ie.php CHANGED
@@ -28,6 +28,7 @@ defined('MECEXEC') or die();
28
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#recaptcha_option"><?php _e('Google Recaptcha Options', 'modern-events-calendar-lite'); ?></a>
29
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#fes_option"><?php _e('Frontend Event Submission', 'modern-events-calendar-lite'); ?></a>
30
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#user_profile_options"><?php _e('User Profile', 'modern-events-calendar-lite'); ?></a>
 
31
  <?php if($this->main->getPRO()): ?>
32
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#mailchimp_option"><?php _e('Mailchimp Integration', 'modern-events-calendar-lite'); ?></a>
33
  <?php endif; ?>
28
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#recaptcha_option"><?php _e('Google Recaptcha Options', 'modern-events-calendar-lite'); ?></a>
29
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#fes_option"><?php _e('Frontend Event Submission', 'modern-events-calendar-lite'); ?></a>
30
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#user_profile_options"><?php _e('User Profile', 'modern-events-calendar-lite'); ?></a>
31
+ <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#search_bar_options"><?php _e('Search Bar', 'modern-events-calendar-lite'); ?></a>
32
  <?php if($this->main->getPRO()): ?>
33
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#mailchimp_option"><?php _e('Mailchimp Integration', 'modern-events-calendar-lite'); ?></a>
34
  <?php endif; ?>
app/features/mec/messages.php CHANGED
@@ -32,6 +32,7 @@ $values = $this->main->get_messages_options();
32
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#recaptcha_option"><?php _e('Google Recaptcha Options', 'modern-events-calendar-lite'); ?></a>
33
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#fes_option"><?php _e('Frontend Event Submission', 'modern-events-calendar-lite'); ?></a>
34
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#user_profile_options"><?php _e('User Profile', 'modern-events-calendar-lite'); ?></a>
 
35
  <?php if($this->main->getPRO()): ?>
36
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#mailchimp_option"><?php _e('Mailchimp Integration', 'modern-events-calendar-lite'); ?></a>
37
  <?php endif; ?>
32
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#recaptcha_option"><?php _e('Google Recaptcha Options', 'modern-events-calendar-lite'); ?></a>
33
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#fes_option"><?php _e('Frontend Event Submission', 'modern-events-calendar-lite'); ?></a>
34
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#user_profile_options"><?php _e('User Profile', 'modern-events-calendar-lite'); ?></a>
35
+ <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#search_bar_options"><?php _e('Search Bar', 'modern-events-calendar-lite'); ?></a>
36
  <?php if($this->main->getPRO()): ?>
37
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#mailchimp_option"><?php _e('Mailchimp Integration', 'modern-events-calendar-lite'); ?></a>
38
  <?php endif; ?>
app/features/mec/meta_boxes/display_options.php CHANGED
@@ -801,6 +801,17 @@ $events = $this->main->get_events();
801
  <option value="organizer" <?php if(isset($sk_options_masonry['filter_by']) and $sk_options_masonry['filter_by'] == 'organizer') echo 'selected="selected"'; ?>><?php _e('Organizer', 'modern-events-calendar-lite'); ?></option>
802
  </select>
803
  </div>
 
 
 
 
 
 
 
 
 
 
 
804
  <div class="mec-form-row mec-switcher">
805
  <div class="mec-col-4">
806
  <label><?php _e('Convert Masonry to Grid', 'modern-events-calendar-lite'); ?></label>
@@ -812,7 +823,16 @@ $events = $this->main->get_events();
812
  <label for="mec_skin_masonry_like_to_grid"></label>
813
  </div>
814
  </div>
815
-
 
 
 
 
 
 
 
 
 
816
  <?php echo $this->sed_method_field('masonry', (isset($sk_options_masonry['sed_method']) ? $sk_options_masonry['sed_method'] : 0), (isset($sk_options_masonry['image_popup']) ? $sk_options_masonry['image_popup'] : 0)); ?>
817
  </div>
818
 
801
  <option value="organizer" <?php if(isset($sk_options_masonry['filter_by']) and $sk_options_masonry['filter_by'] == 'organizer') echo 'selected="selected"'; ?>><?php _e('Organizer', 'modern-events-calendar-lite'); ?></option>
802
  </select>
803
  </div>
804
+ <div class="mec-form-row mec-switcher">
805
+ <div class="mec-col-4">
806
+ <label><?php _e('Fit to row', 'modern-events-calendar-lite'); ?></label>
807
+ <p class="description"><?php _e('Items are arranged into rows. Rows progress vertically. Similar to what you would expect from a layout that uses CSS floats.', 'modern-events-calendar-lite'); ?></p>
808
+ </div>
809
+ <div class="mec-col-4">
810
+ <input type="hidden" name="mec[sk-options][masonry][fit_to_row]" value="0" />
811
+ <input type="checkbox" name="mec[sk-options][masonry][fit_to_row]" id="mec_skin_masonry_fit_to_row" value="1" <?php if(isset($sk_options_masonry['fit_to_row']) and $sk_options_masonry['fit_to_row']) echo 'checked="checked"'; ?> />
812
+ <label for="mec_skin_masonry_fit_to_row"></label>
813
+ </div>
814
+ </div>
815
  <div class="mec-form-row mec-switcher">
816
  <div class="mec-col-4">
817
  <label><?php _e('Convert Masonry to Grid', 'modern-events-calendar-lite'); ?></label>
823
  <label for="mec_skin_masonry_like_to_grid"></label>
824
  </div>
825
  </div>
826
+ <div class="mec-form-row mec-switcher">
827
+ <div class="mec-col-4">
828
+ <label><?php _e('Load More Button', 'modern-events-calendar-lite'); ?></label>
829
+ </div>
830
+ <div class="mec-col-4">
831
+ <input type="hidden" name="mec[sk-options][masonry][load_more_button]" value="0" />
832
+ <input type="checkbox" name="mec[sk-options][masonry][load_more_button]" id="mec_skin_masonry_load_more_button" value="1" <?php if(isset($sk_options_masonry['load_more_button']) and $sk_options_masonry['load_more_button']) echo 'checked="checked"'; ?> />
833
+ <label for="mec_skin_masonry_load_more_button"></label>
834
+ </div>
835
+ </div>
836
  <?php echo $this->sed_method_field('masonry', (isset($sk_options_masonry['sed_method']) ? $sk_options_masonry['sed_method'] : 0), (isset($sk_options_masonry['image_popup']) ? $sk_options_masonry['image_popup'] : 0)); ?>
837
  </div>
838
 
app/features/mec/meta_boxes/filter.php CHANGED
@@ -161,6 +161,7 @@ $MEC_tax_walker = new MEC_tax_walker();
161
  </ul>
162
  <p class="description"><?php _e('Choose your desired authors for filtering the events.', 'modern-events-calendar-lite'); ?></p>
163
  </div>
 
164
  <div class="mec-form-row">
165
  <h4><?php _e('Dates', 'modern-events-calendar-lite'); ?></h4>
166
  <div class="mec-form-row mec-switcher">
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">
app/features/mec/meta_boxes/search_form.php CHANGED
@@ -83,6 +83,7 @@ $sf_options = get_post_meta($post->ID, 'sf-options', true);
83
  <option value="text_input" <?php if(isset($sf_options_list['text_search']) and isset($sf_options_list['text_search']['type']) and $sf_options_list['text_search']['type'] == 'text_input') echo 'selected="selected"'; ?>><?php _e('Text Input', 'modern-events-calendar-lite'); ?></option>
84
  </select>
85
  </div>
 
86
  </div>
87
 
88
  <!-- Grid View -->
83
  <option value="text_input" <?php if(isset($sf_options_list['text_search']) and isset($sf_options_list['text_search']['type']) and $sf_options_list['text_search']['type'] == 'text_input') echo 'selected="selected"'; ?>><?php _e('Text Input', 'modern-events-calendar-lite'); ?></option>
84
  </select>
85
  </div>
86
+ <?php do_action('mec_list_search_form',$sf_options_list); ?>
87
  </div>
88
 
89
  <!-- Grid View -->
app/features/mec/modules.php CHANGED
@@ -39,6 +39,7 @@ if($this->getPRO())
39
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#recaptcha_option"><?php _e('Google Recaptcha Options', 'modern-events-calendar-lite'); ?></a>
40
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#fes_option"><?php _e('Frontend Event Submission', 'modern-events-calendar-lite'); ?></a>
41
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#user_profile_options"><?php _e('User Profile', 'modern-events-calendar-lite'); ?></a>
 
42
  <?php if($this->main->getPRO()): ?>
43
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#mailchimp_option"><?php _e('Mailchimp Integration', 'modern-events-calendar-lite'); ?></a>
44
  <?php endif; ?>
@@ -438,6 +439,18 @@ if($this->getPRO())
438
  <p><?php echo sprintf(__('You can get a free API Key from %s', 'modern-events-calendar-lite'), '<a target="_blank" href="https://darksky.net/dev/register">https://darksky.net/dev/register</a>'); ?></p>
439
  </div>
440
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
441
  </div>
442
  <?php endif; ?>
443
  </div>
39
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#recaptcha_option"><?php _e('Google Recaptcha Options', 'modern-events-calendar-lite'); ?></a>
40
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#fes_option"><?php _e('Frontend Event Submission', 'modern-events-calendar-lite'); ?></a>
41
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#user_profile_options"><?php _e('User Profile', 'modern-events-calendar-lite'); ?></a>
42
+ <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#search_bar_options"><?php _e('Search Bar', 'modern-events-calendar-lite'); ?></a>
43
  <?php if($this->main->getPRO()): ?>
44
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#mailchimp_option"><?php _e('Mailchimp Integration', 'modern-events-calendar-lite'); ?></a>
45
  <?php endif; ?>
439
  <p><?php echo sprintf(__('You can get a free API Key from %s', 'modern-events-calendar-lite'), '<a target="_blank" href="https://darksky.net/dev/register">https://darksky.net/dev/register</a>'); ?></p>
440
  </div>
441
  </div>
442
+ <div class="mec-form-row">
443
+ <label>
444
+ <input type="hidden" name="mec[settings][weather_module_imperial_units]" value="0" />
445
+ <input value="1" type="checkbox" name="mec[settings][weather_module_imperial_units]" <?php if(isset($settings['weather_module_imperial_units']) and $settings['weather_module_imperial_units']) echo 'checked="checked"'; ?> /> <?php _e('Show weather imperial units', 'modern-events-calendar-lite'); ?>
446
+ </label>
447
+ </div>
448
+ <div class="mec-form-row">
449
+ <label>
450
+ <input type="hidden" name="mec[settings][weather_module_change_units_button]" value="0" />
451
+ <input value="1" type="checkbox" name="mec[settings][weather_module_change_units_button]" <?php if(isset($settings['weather_module_change_units_button']) and $settings['weather_module_change_units_button']) echo 'checked="checked"'; ?> /> <?php _e('Show weather change units button', 'modern-events-calendar-lite'); ?>
452
+ </label>
453
+ </div>
454
  </div>
455
  <?php endif; ?>
456
  </div>
app/features/mec/notifications.php CHANGED
@@ -31,6 +31,7 @@ $notifications = $this->main->get_notifications();
31
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#recaptcha_option"><?php _e('Google Recaptcha Options', 'modern-events-calendar-lite'); ?></a>
32
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#fes_option"><?php _e('Frontend Event Submission', 'modern-events-calendar-lite'); ?></a>
33
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#user_profile_options"><?php _e('User Profile', 'modern-events-calendar-lite'); ?></a>
 
34
  <?php if($this->main->getPRO()): ?>
35
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#mailchimp_option"><?php _e('Mailchimp Integration', 'modern-events-calendar-lite'); ?></a>
36
  <?php endif; ?>
31
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#recaptcha_option"><?php _e('Google Recaptcha Options', 'modern-events-calendar-lite'); ?></a>
32
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#fes_option"><?php _e('Frontend Event Submission', 'modern-events-calendar-lite'); ?></a>
33
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#user_profile_options"><?php _e('User Profile', 'modern-events-calendar-lite'); ?></a>
34
+ <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#search_bar_options"><?php _e('Search Bar', 'modern-events-calendar-lite'); ?></a>
35
  <?php if($this->main->getPRO()): ?>
36
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#mailchimp_option"><?php _e('Mailchimp Integration', 'modern-events-calendar-lite'); ?></a>
37
  <?php endif; ?>
app/features/mec/regform.php CHANGED
@@ -1,42 +1,43 @@
1
  <?php
2
  /** no direct access **/
3
  defined( 'MECEXEC' ) or die();
 
4
  $mec_email = false;
5
  $mec_name = false;
6
  $reg_fields = $this->main->get_reg_fields();
 
7
 
8
- foreach ( $reg_fields as $field ) {
9
- if ( isset( $field['type'] ) ) {
10
- if ( $field['type'] == 'name' ) {
11
- $mec_name = true;
12
- }
13
- if ( $field['type'] == 'mec_email' ) {
14
- $mec_email = true;
15
- }
16
- } else {
17
- break;
18
  }
 
19
  }
20
 
21
- if ( ! $mec_name ) {
 
22
  array_unshift(
23
  $reg_fields,
24
- [
25
  'mandatory' => '0',
26
  'type' => 'name',
27
- 'label' => esc_html__( 'Name', 'modern-events-calendar-lite' ),
28
- ]
29
  );
30
  }
31
 
32
- if ( ! $mec_email ) {
 
33
  array_unshift(
34
  $reg_fields,
35
- [
36
  'mandatory' => '0',
37
  'type' => 'mec_email',
38
- 'label' => esc_html__( 'Email', 'modern-events-calendar-lite' ),
39
- ]
40
  );
41
  }
42
  ?>
@@ -68,6 +69,7 @@ if ( ! $mec_email ) {
68
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#recaptcha_option"><?php _e('Google Recaptcha Options', 'modern-events-calendar-lite'); ?></a>
69
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#fes_option"><?php _e('Frontend Event Submission', 'modern-events-calendar-lite'); ?></a>
70
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#user_profile_options"><?php _e('User Profile', 'modern-events-calendar-lite'); ?></a>
 
71
  <?php if($this->main->getPRO()): ?>
72
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#mailchimp_option"><?php _e('Mailchimp Integration', 'modern-events-calendar-lite'); ?></a>
73
  <?php endif; ?>
1
  <?php
2
  /** no direct access **/
3
  defined( 'MECEXEC' ) or die();
4
+
5
  $mec_email = false;
6
  $mec_name = false;
7
  $reg_fields = $this->main->get_reg_fields();
8
+ if(!is_array($reg_fields)) $reg_fields = array();
9
 
10
+ foreach($reg_fields as $field)
11
+ {
12
+ if(isset($field['type']))
13
+ {
14
+ if($field['type'] == 'name') $mec_name = true;
15
+ if($field['type'] == 'mec_email') $mec_email = true;
 
 
 
 
16
  }
17
+ else break;
18
  }
19
 
20
+ if(!$mec_name)
21
+ {
22
  array_unshift(
23
  $reg_fields,
24
+ array(
25
  'mandatory' => '0',
26
  'type' => 'name',
27
+ 'label' => esc_html__('Name', 'modern-events-calendar-lite'),
28
+ )
29
  );
30
  }
31
 
32
+ if(!$mec_email)
33
+ {
34
  array_unshift(
35
  $reg_fields,
36
+ array(
37
  'mandatory' => '0',
38
  'type' => 'mec_email',
39
+ 'label' => esc_html__('Email', 'modern-events-calendar-lite'),
40
+ )
41
  );
42
  }
43
  ?>
69
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#recaptcha_option"><?php _e('Google Recaptcha Options', 'modern-events-calendar-lite'); ?></a>
70
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#fes_option"><?php _e('Frontend Event Submission', 'modern-events-calendar-lite'); ?></a>
71
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#user_profile_options"><?php _e('User Profile', 'modern-events-calendar-lite'); ?></a>
72
+ <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#search_bar_options"><?php _e('Search Bar', 'modern-events-calendar-lite'); ?></a>
73
  <?php if($this->main->getPRO()): ?>
74
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#mailchimp_option"><?php _e('Mailchimp Integration', 'modern-events-calendar-lite'); ?></a>
75
  <?php endif; ?>
app/features/mec/settings.php CHANGED
@@ -88,6 +88,12 @@ $get_n_option = get_option('mec_addons_notification_option');
88
  </a>
89
  </li>
90
 
 
 
 
 
 
 
91
  <?php if($this->main->getPRO()): ?>
92
 
93
  <li id="" class="pr-be-group-menu-li">
@@ -873,6 +879,55 @@ $get_n_option = get_option('mec_addons_notification_option');
873
  </div>
874
  </div>
875
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
876
  <?php if($this->main->getPRO()): ?>
877
 
878
  <div id="mailchimp_option" class="mec-options-fields">
88
  </a>
89
  </li>
90
 
91
+ <li id="" class="pr-be-group-menu-li">
92
+ <a data-id="search_bar_options" class="wns-be-group-tab-link-a WnTabLinks">
93
+ <span class="pr-be-group-menu-title"><?php _e('Search Bar', 'modern-events-calendar-lite'); ?></span>
94
+ </a>
95
+ </li>
96
+
97
  <?php if($this->main->getPRO()): ?>
98
 
99
  <li id="" class="pr-be-group-menu-li">
879
  </div>
880
  </div>
881
 
882
+ <div id="search_bar_options" class="mec-options-fields">
883
+ <h4 class="mec-form-subtitle"><?php _e('Search Bar', 'modern-events-calendar-lite'); ?></h4>
884
+ <div class="mec-form-row">
885
+ <p><?php echo sprintf(__('Put %s shortcode into your desired page. Then users are able to search events', 'modern-events-calendar-lite'), '<code>[MEC_search_bar]</code>'); ?></p>
886
+ <div class="mec-form-row">
887
+ <label>
888
+ <input type="hidden" name="mec[settings][search_bar_category]" value="0" />
889
+ <input value="1" type="checkbox" name="mec[settings][search_bar_category]" <?php if(isset($settings['search_bar_category']) and $settings['search_bar_category']) echo 'checked="checked"'; ?> /> <?php _e('Category', 'modern-events-calendar-lite'); ?>
890
+ </label>
891
+ </div>
892
+ <div class="mec-form-row">
893
+ <label>
894
+ <input type="hidden" name="mec[settings][search_bar_location]" value="0" />
895
+ <input value="1" type="checkbox" name="mec[settings][search_bar_location]" <?php if(isset($settings['search_bar_location']) and $settings['search_bar_location']) echo 'checked="checked"'; ?> /> <?php _e('Location', 'modern-events-calendar-lite'); ?>
896
+ </label>
897
+ </div>
898
+ <div class="mec-form-row">
899
+ <label>
900
+ <input type="hidden" name="mec[settings][search_bar_organizer]" value="0" />
901
+ <input value="1" type="checkbox" name="mec[settings][search_bar_organizer]" <?php if(isset($settings['search_bar_organizer']) and $settings['search_bar_organizer']) echo 'checked="checked"'; ?> /> <?php _e('Organizer', 'modern-events-calendar-lite'); ?>
902
+ </label>
903
+ </div>
904
+ <div class="mec-form-row">
905
+ <label>
906
+ <input type="hidden" name="mec[settings][search_bar_speaker]" value="0" />
907
+ <input value="1" type="checkbox" name="mec[settings][search_bar_speaker]" <?php if(isset($settings['search_bar_speaker']) and $settings['search_bar_speaker']) echo 'checked="checked"'; ?> /> <?php _e('Speaker', 'modern-events-calendar-lite'); ?>
908
+ </label>
909
+ </div>
910
+ <div class="mec-form-row">
911
+ <label>
912
+ <input type="hidden" name="mec[settings][search_bar_tag]" value="0" />
913
+ <input value="1" type="checkbox" name="mec[settings][search_bar_tag]" <?php if(isset($settings['search_bar_tag']) and $settings['search_bar_tag']) echo 'checked="checked"'; ?> /> <?php _e('Tag', 'modern-events-calendar-lite'); ?>
914
+ </label>
915
+ </div>
916
+ <div class="mec-form-row">
917
+ <label>
918
+ <input type="hidden" name="mec[settings][search_bar_label]" value="0" />
919
+ <input value="1" type="checkbox" name="mec[settings][search_bar_label]" <?php if(isset($settings['search_bar_label']) and $settings['search_bar_label']) echo 'checked="checked"'; ?> /> <?php _e('Label', 'modern-events-calendar-lite'); ?>
920
+ </label>
921
+ </div>
922
+ <div class="mec-form-row">
923
+ <label>
924
+ <input type="hidden" name="mec[settings][search_bar_text_field]" value="0" />
925
+ <input value="1" type="checkbox" name="mec[settings][search_bar_text_field]" <?php if(isset($settings['search_bar_text_field']) and $settings['search_bar_text_field']) echo 'checked="checked"'; ?> /> <?php _e('Text Field', 'modern-events-calendar-lite'); ?>
926
+ </label>
927
+ </div>
928
+ </div>
929
+ </div>
930
+
931
  <?php if($this->main->getPRO()): ?>
932
 
933
  <div id="mailchimp_option" class="mec-options-fields">
app/features/mec/single.php CHANGED
@@ -31,6 +31,7 @@ $pages = get_pages();
31
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#recaptcha_option"><?php _e('Google Recaptcha Options', 'modern-events-calendar-lite'); ?></a>
32
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#fes_option"><?php _e('Frontend Event Submission', 'modern-events-calendar-lite'); ?></a>
33
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#user_profile_options"><?php _e('User Profile', 'modern-events-calendar-lite'); ?></a>
 
34
  <?php if($this->main->getPRO()): ?>
35
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#mailchimp_option"><?php _e('Mailchimp Integration', 'modern-events-calendar-lite'); ?></a>
36
  <?php endif; ?>
@@ -259,6 +260,7 @@ $pages = get_pages();
259
  </span>
260
  </div>
261
  </div>
 
262
  <div class="mec-form-row">
263
  <label class="mec-col-3" for="mec_settings_single_event_booking_style"><?php _e('Booking Style', 'modern-events-calendar-lite'); ?></label>
264
  <div class="mec-col-4">
@@ -275,6 +277,7 @@ $pages = get_pages();
275
  </span>
276
  </div>
277
  </div>
 
278
  <div class="mec-form-row">
279
  <label class="mec-col-3" for="mec_settings_gutenberg"><?php _e('Disable Block Editor (Gutenberg)', 'modern-events-calendar-lite'); ?></label>
280
  <label id="mec_settings_gutenberg" >
31
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#recaptcha_option"><?php _e('Google Recaptcha Options', 'modern-events-calendar-lite'); ?></a>
32
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#fes_option"><?php _e('Frontend Event Submission', 'modern-events-calendar-lite'); ?></a>
33
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#user_profile_options"><?php _e('User Profile', 'modern-events-calendar-lite'); ?></a>
34
+ <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#search_bar_options"><?php _e('Search Bar', 'modern-events-calendar-lite'); ?></a>
35
  <?php if($this->main->getPRO()): ?>
36
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#mailchimp_option"><?php _e('Mailchimp Integration', 'modern-events-calendar-lite'); ?></a>
37
  <?php endif; ?>
260
  </span>
261
  </div>
262
  </div>
263
+ <?php if($this->main->getPRO() and isset($this->settings['booking_status']) and $this->settings['booking_status']): ?>
264
  <div class="mec-form-row">
265
  <label class="mec-col-3" for="mec_settings_single_event_booking_style"><?php _e('Booking Style', 'modern-events-calendar-lite'); ?></label>
266
  <div class="mec-col-4">
277
  </span>
278
  </div>
279
  </div>
280
+ <?php endif;?>
281
  <div class="mec-form-row">
282
  <label class="mec-col-3" for="mec_settings_gutenberg"><?php _e('Disable Block Editor (Gutenberg)', 'modern-events-calendar-lite'); ?></label>
283
  <label id="mec_settings_gutenberg" >
app/features/mec/styles.php CHANGED
@@ -32,6 +32,7 @@ $styles = $this->main->get_styles();
32
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#recaptcha_option"><?php _e('Google Recaptcha Options', 'modern-events-calendar-lite'); ?></a>
33
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#fes_option"><?php _e('Frontend Event Submission', 'modern-events-calendar-lite'); ?></a>
34
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#user_profile_options"><?php _e('User Profile', 'modern-events-calendar-lite'); ?></a>
 
35
  <?php if($this->main->getPRO()): ?>
36
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#mailchimp_option"><?php _e('Mailchimp Integration', 'modern-events-calendar-lite'); ?></a>
37
  <?php endif; ?>
32
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#recaptcha_option"><?php _e('Google Recaptcha Options', 'modern-events-calendar-lite'); ?></a>
33
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#fes_option"><?php _e('Frontend Event Submission', 'modern-events-calendar-lite'); ?></a>
34
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#user_profile_options"><?php _e('User Profile', 'modern-events-calendar-lite'); ?></a>
35
+ <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#search_bar_options"><?php _e('Search Bar', 'modern-events-calendar-lite'); ?></a>
36
  <?php if($this->main->getPRO()): ?>
37
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#mailchimp_option"><?php _e('Mailchimp Integration', 'modern-events-calendar-lite'); ?></a>
38
  <?php endif; ?>
app/features/mec/styling.php CHANGED
@@ -54,6 +54,7 @@ if(is_array($fonts))
54
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#recaptcha_option"><?php _e('Google Recaptcha Options', 'modern-events-calendar-lite'); ?></a>
55
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#fes_option"><?php _e('Frontend Event Submission', 'modern-events-calendar-lite'); ?></a>
56
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#user_profile_options"><?php _e('User Profile', 'modern-events-calendar-lite'); ?></a>
 
57
  <?php if($this->main->getPRO()): ?>
58
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#mailchimp_option"><?php _e('Mailchimp Integration', 'modern-events-calendar-lite'); ?></a>
59
  <?php endif; ?>
54
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#recaptcha_option"><?php _e('Google Recaptcha Options', 'modern-events-calendar-lite'); ?></a>
55
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#fes_option"><?php _e('Frontend Event Submission', 'modern-events-calendar-lite'); ?></a>
56
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#user_profile_options"><?php _e('User Profile', 'modern-events-calendar-lite'); ?></a>
57
+ <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#search_bar_options"><?php _e('Search Bar', 'modern-events-calendar-lite'); ?></a>
58
  <?php if($this->main->getPRO()): ?>
59
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#mailchimp_option"><?php _e('Mailchimp Integration', 'modern-events-calendar-lite'); ?></a>
60
  <?php endif; ?>
app/features/search.php ADDED
@@ -0,0 +1,172 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /** no direct access **/
3
+ defined('MECEXEC') or die();
4
+
5
+ /**
6
+ * @author Webnus <info@webnus.biz>
7
+ */
8
+ class MEC_feature_search extends MEC_base
9
+ {
10
+ /**
11
+ * @var MEC_factory
12
+ */
13
+ public $factory;
14
+
15
+ /**
16
+ * @var MEC_main
17
+ */
18
+ public $main;
19
+
20
+ /**
21
+ * Constructor method
22
+ * @author Webnus <info@webnus.biz>
23
+ */
24
+ public function __construct()
25
+ {
26
+ // Import MEC Factory
27
+ $this->factory = $this->getFactory();
28
+
29
+ // Import MEC Main
30
+ $this->main = $this->getMain();
31
+
32
+ }
33
+
34
+ /**
35
+ * Initialize search feature
36
+ * @author Webnus <info@webnus.biz>
37
+ */
38
+ public function init()
39
+ {
40
+ // search Shortcode
41
+ $this->factory->shortcode('MEC_search_bar', array($this, 'search'));
42
+ $this->factory->filter( 'pre_get_posts', array($this, 'mec_search_filter') );
43
+
44
+ }
45
+
46
+ /**
47
+ * Show taxonomy
48
+ * @param array $atts
49
+ * @return string
50
+ */
51
+ public function show_taxonomy($taxonomy,$icon)
52
+ {
53
+ $terms = get_terms($taxonomy, array('hide_empty' => false));
54
+ $out = '';
55
+
56
+ if ( is_wp_error($terms) || empty($terms) ) return;
57
+ $taxonomy_name = ( $taxonomy == 'post_tag') ? 'Tag' : str_replace("mec_","",$taxonomy);
58
+
59
+ $out .= '<div class="mec-dropdown-search"><i class="mec-sl-'.$icon.'"></i>';
60
+ $args = array(
61
+ 'show_option_none' => $taxonomy_name,
62
+ 'option_none_value' => '',
63
+ 'orderby' => 'name',
64
+ 'order' => 'ASC',
65
+ 'show_count' => 0,
66
+ 'hide_empty' => 0,
67
+ 'include' =>((isset($taxonomy_name) and trim($taxonomy_name)) ? $taxonomy_name : ''),
68
+ 'echo' => false,
69
+ 'selected' => 0,
70
+ 'hierarchical' => true,
71
+ 'name' => $taxonomy_name,
72
+ 'taxonomy' => $taxonomy,
73
+ );
74
+ $out .= wp_dropdown_categories($args);
75
+ $out .= '</div>';
76
+
77
+ return $out;
78
+ }
79
+
80
+ /**
81
+ * Search Filter
82
+ * @param array $atts
83
+ * @return string
84
+ */
85
+ public function mec_search_filter( $query )
86
+ {
87
+ if ( ! $query->is_search ) {
88
+ return $query;
89
+ }
90
+
91
+ $mec_quesries = [];
92
+ if (!empty($_GET['location']))
93
+ {
94
+ $mec_quesries[] = array(
95
+ 'taxonomy' => 'mec_location',
96
+ 'field' => 'id',
97
+ 'terms' => array( $_GET['location'] ),
98
+ 'operator'=> 'IN'
99
+ );
100
+ }
101
+
102
+ if (!empty($_GET['category']))
103
+ {
104
+ $mec_quesries[] = array(
105
+ 'taxonomy' => 'mec_category',
106
+ 'field' => 'id',
107
+ 'terms' => array( $_GET['category'] ),
108
+ 'operator'=> 'IN'
109
+ );
110
+ }
111
+
112
+ if (!empty($_GET['organizer']))
113
+ {
114
+ $mec_quesries[] = array(
115
+ 'taxonomy' => 'mec_organizer',
116
+ 'field' => 'id',
117
+ 'terms' => array( $_GET['organizer'] ),
118
+ 'operator'=> 'IN'
119
+ );
120
+ }
121
+
122
+ if (!empty($_GET['speaker']))
123
+ {
124
+ $mec_quesries[] = array(
125
+ 'taxonomy' => 'mec_speaker',
126
+ 'field' => 'id',
127
+ 'terms' => array( $_GET['speaker'] ),
128
+ 'operator'=> 'IN'
129
+ );
130
+ }
131
+
132
+ if (!empty($_GET['tag']))
133
+ {
134
+ $mec_quesries[] = array(
135
+ 'taxonomy' => 'post_tag',
136
+ 'field' => 'id',
137
+ 'terms' => array( $_GET['tag'] ),
138
+ 'operator'=> 'IN'
139
+ );
140
+ }
141
+
142
+ if (!empty($_GET['label']))
143
+ {
144
+ $mec_quesries[] = array(
145
+ 'taxonomy' => 'mec_label',
146
+ 'field' => 'id',
147
+ 'terms' => array( $_GET['label'] ),
148
+ 'operator'=> 'IN'
149
+ );
150
+ }
151
+
152
+
153
+ $query->set( 'tax_query', $mec_quesries );
154
+ $query->set( 'post_type', array( 'post' , 'mec-events' ) );
155
+
156
+ return $query;
157
+ }
158
+
159
+ /**
160
+ * Show user search bar
161
+ * @param array $atts
162
+ * @return string
163
+ */
164
+ public function search()
165
+ {
166
+ $path = MEC::import('app.features.search_bar.search_bar', true, true);
167
+
168
+ ob_start();
169
+ include $path;
170
+ return ob_get_clean();
171
+ }
172
+ }
app/features/search_bar/index.html ADDED
File without changes
app/features/search_bar/search_bar.php ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /** no direct access **/
3
+ defined('MECEXEC') or die();
4
+
5
+ $settings = $this->main->get_settings();
6
+
7
+ $output = '<div class="mec-wrap mec-search-bar-wrap"><form class="mec-search-form mec-totalcal-box" role="search" method="get" id="searchform" action="'.get_bloginfo('url').'">';
8
+
9
+ if ( $settings['search_bar_category'] == '1' || $settings['search_bar_location'] == '1' || $settings['search_bar_organizer'] == '1' || $settings['search_bar_speaker'] == '1' || $settings['search_bar_tag'] == '1' || $settings['search_bar_label'] == '1' ) :
10
+ $output .= '<div class="mec-dropdown-wrap">';
11
+ if($settings['search_bar_category'] == '1' ) $output .= $this->show_taxonomy('mec_category' , 'folder');
12
+ if($settings['search_bar_location'] == '1' ) $output .= $this->show_taxonomy('mec_location' , 'location-pin');
13
+ if($settings['search_bar_organizer'] == '1' ) $output .= $this->show_taxonomy('mec_organizer' , 'user');
14
+ if($settings['search_bar_speaker'] == '1' ) $output .= $this->show_taxonomy('mec_speaker' , 'microphone');
15
+ if($settings['search_bar_tag'] == '1' ) $output .= $this->show_taxonomy('post_tag' , 'tag');
16
+ if($settings['search_bar_label'] == '1' ) $output .= $this->show_taxonomy('mec_label' , 'pin');
17
+ $output .= '</div>';
18
+ endif;
19
+ if($settings['search_bar_text_field'] == '1' ){
20
+ $output .= '
21
+ <div class="mec-text-input-search">
22
+ <i class="mec-sl-magnifier"></i>
23
+ <input type="search" value="" id="s" name="s" />
24
+ </div>';
25
+ }
26
+
27
+ $output .= '<input class="mec-search-bar-input" id="mec-search-bar-input" type="submit" alt="Search" value="'.esc_html('Search', 'modern-events-calendar-lite').'" /><input type="hidden" name="post_type" value="mec-events">';
28
+
29
+ $output .= '</form></div>';
30
+
31
+ echo $output;
app/libraries/book.php CHANGED
@@ -592,6 +592,8 @@ class MEC_book extends MEC_base
592
  */
593
  public function get_invoice_link($transaction_id)
594
  {
 
 
595
  $main = $this->getMain();
596
 
597
  $url = $main->URL('site');
592
  */
593
  public function get_invoice_link($transaction_id)
594
  {
595
+ if(isset($this->settings['booking_invoice']) and !$this->settings['booking_invoice']) return '';
596
+
597
  $main = $this->getMain();
598
 
599
  $url = $main->URL('site');
app/libraries/factory.php CHANGED
@@ -298,6 +298,9 @@ class MEC_factory extends MEC_base
298
  // Include jQuery date picker
299
  wp_enqueue_script('jquery-ui-datepicker');
300
 
 
 
 
301
  // Include MEC frontend script files
302
  wp_enqueue_script('mec-frontend-script', $this->main->asset('js/frontend.js'));
303
  wp_enqueue_script('mec-tooltip-script', $this->main->asset('packages/tooltip/tooltip.js'));
@@ -459,6 +462,11 @@ class MEC_factory extends MEC_base
459
  $this->import('app.addons.elementor');
460
  $MEC_addon_elementor = new MEC_addon_elementor();
461
  $MEC_addon_elementor->init();
 
 
 
 
 
462
  }
463
 
464
  /**
298
  // Include jQuery date picker
299
  wp_enqueue_script('jquery-ui-datepicker');
300
 
301
+ // Load Isotope
302
+ if(class_exists('ET_Builder_Element')) $this->main->load_isotope_assets();
303
+
304
  // Include MEC frontend script files
305
  wp_enqueue_script('mec-frontend-script', $this->main->asset('js/frontend.js'));
306
  wp_enqueue_script('mec-tooltip-script', $this->main->asset('packages/tooltip/tooltip.js'));
462
  $this->import('app.addons.elementor');
463
  $MEC_addon_elementor = new MEC_addon_elementor();
464
  $MEC_addon_elementor->init();
465
+
466
+ // Import MEC Divi addon Class
467
+ $this->import('app.addons.divi');
468
+ $MEC_addon_divi = new MEC_addon_divi();
469
+ $MEC_addon_divi->init();
470
  }
471
 
472
  /**
app/libraries/main.php CHANGED
@@ -744,6 +744,13 @@ class MEC_main extends MEC_base
744
  if(isset($filtered['settings']) and isset($filtered['settings']['category_slug'])) $filtered['settings']['category_slug'] = strtolower(str_replace(' ', '-', $filtered['settings']['category_slug']));
745
  if(isset($filtered['settings']) and isset($filtered['settings']['custom_archive'])) $filtered['settings']['custom_archive'] = isset($filtered['settings']['custom_archive']) ? str_replace('\"','"',$filtered['settings']['custom_archive']) : '';
746
 
 
 
 
 
 
 
 
747
  // Generate New Options
748
  $final = $current;
749
 
@@ -1636,6 +1643,13 @@ class MEC_main extends MEC_base
1636
  // Booking Invoice
1637
  if(isset($_GET['method']) and sanitize_text_field($_GET['method']) == 'mec-invoice')
1638
  {
 
 
 
 
 
 
 
1639
  $transaction_id = sanitize_text_field($_GET['id']);
1640
 
1641
  // Libraries
@@ -2586,6 +2600,7 @@ class MEC_main extends MEC_base
2586
  /**
2587
  * Show option tag parameters in booking form for select, checkbox and radio tags
2588
  * @author Webnus <info@webnus.biz>
 
2589
  * @param string $key
2590
  * @param array $values
2591
  * @return string
@@ -2595,7 +2610,7 @@ class MEC_main extends MEC_base
2595
  $field = '<li id="mec_reg_fields_option_'.$field_key.'_'.$key.'">
2596
  <span class="mec_reg_field_option_sort">'.__('Sort', 'modern-events-calendar-lite').'</span>
2597
  <span onclick="mec_reg_fields_option_remove('.$field_key.','.$key.');" class="mec_reg_field_remove">'.__('Remove', 'modern-events-calendar-lite').'</span>
2598
- <input type="text" name="mec[reg_fields]['.$field_key.'][options]['.$key.'][label]" placeholder="'.esc_attr__('Insert a label for this option', 'modern-events-calendar-lite').'" value="'.((isset($values['options']) and isset($values['options'][$key])) ? $values['options'][$key]['label'] : '').'" />
2599
  </li>';
2600
 
2601
  return $field;
@@ -3551,7 +3566,9 @@ class MEC_main extends MEC_base
3551
  $atts = array(
3552
  'show_past_events'=>0,
3553
  'start_date_type'=>'today',
3554
- 'limit'=>1,
 
 
3555
  );
3556
 
3557
  // Initialize the skin
@@ -4315,15 +4332,6 @@ class MEC_main extends MEC_base
4315
  // Isotope JS file
4316
  wp_enqueue_script('mec-isotope-script', $this->asset('js/isotope.pkgd.min.js'));
4317
  }
4318
-
4319
- /**
4320
- * Load Shuffle assets
4321
- */
4322
- public function load_shuffle_assets()
4323
- {
4324
- // Shuffle JS file
4325
- wp_enqueue_script('mec-shuffle-script', $this->asset('js/shuffle.min.js'));
4326
- }
4327
 
4328
  function get_client_ip()
4329
  {
@@ -4570,6 +4578,25 @@ class MEC_main extends MEC_base
4570
 
4571
  return (isset($data['currently']) ? $data['currently'] : false);
4572
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4573
 
4574
  /**
4575
  * Get Integrated plugins to import events
@@ -4864,4 +4891,131 @@ class MEC_main extends MEC_base
4864
 
4865
  return $recurrence;
4866
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4867
  }
744
  if(isset($filtered['settings']) and isset($filtered['settings']['category_slug'])) $filtered['settings']['category_slug'] = strtolower(str_replace(' ', '-', $filtered['settings']['category_slug']));
745
  if(isset($filtered['settings']) and isset($filtered['settings']['custom_archive'])) $filtered['settings']['custom_archive'] = isset($filtered['settings']['custom_archive']) ? str_replace('\"','"',$filtered['settings']['custom_archive']) : '';
746
 
747
+ if(isset($mec['reg_fields']) and !is_array($mec['reg_fields'])) $mec['reg_fields'] = array();
748
+ if(isset($current['reg_fields']) and isset($mec['reg_fields']) and count($current['reg_fields']) != count($mec['reg_fields']))
749
+ {
750
+ $current['reg_fields'] = array();
751
+ $current['reg_fields'] = $mec['reg_fields'];
752
+ }
753
+
754
  // Generate New Options
755
  $final = $current;
756
 
1643
  // Booking Invoice
1644
  if(isset($_GET['method']) and sanitize_text_field($_GET['method']) == 'mec-invoice')
1645
  {
1646
+ $settings = $this->get_settings();
1647
+ if(isset($settings['booking_invoice']) and !$settings['booking_invoice'])
1648
+ {
1649
+ wp_die(__('Cannot find the invoice!', 'modern-events-calendar-lite'), __('Invoice is invalid.', 'modern-events-calendar-lite'), array('back_link'=>true));
1650
+ exit;
1651
+ }
1652
+
1653
  $transaction_id = sanitize_text_field($_GET['id']);
1654
 
1655
  // Libraries
2600
  /**
2601
  * Show option tag parameters in booking form for select, checkbox and radio tags
2602
  * @author Webnus <info@webnus.biz>
2603
+ * @param string $field_key
2604
  * @param string $key
2605
  * @param array $values
2606
  * @return string
2610
  $field = '<li id="mec_reg_fields_option_'.$field_key.'_'.$key.'">
2611
  <span class="mec_reg_field_option_sort">'.__('Sort', 'modern-events-calendar-lite').'</span>
2612
  <span onclick="mec_reg_fields_option_remove('.$field_key.','.$key.');" class="mec_reg_field_remove">'.__('Remove', 'modern-events-calendar-lite').'</span>
2613
+ <input type="text" name="mec[reg_fields]['.$field_key.'][options]['.$key.'][label]" placeholder="'.esc_attr__('Insert a label for this option', 'modern-events-calendar-lite').'" value="'.((isset($values['options']) and isset($values['options'][$key])) ? esc_attr(stripslashes($values['options'][$key]['label'])) : '').'" />
2614
  </li>';
2615
 
2616
  return $field;
3566
  $atts = array(
3567
  'show_past_events'=>0,
3568
  'start_date_type'=>'today',
3569
+ 'sk-options'=> array(
3570
+ 'list' => array('limit'=>1)
3571
+ ),
3572
  );
3573
 
3574
  // Initialize the skin
4332
  // Isotope JS file
4333
  wp_enqueue_script('mec-isotope-script', $this->asset('js/isotope.pkgd.min.js'));
4334
  }
 
 
 
 
 
 
 
 
 
4335
 
4336
  function get_client_ip()
4337
  {
4578
 
4579
  return (isset($data['currently']) ? $data['currently'] : false);
4580
  }
4581
+
4582
+ /**
4583
+ * Convert weather unit
4584
+ * @author Webnus <info@webnus.biz>
4585
+ * @param $value
4586
+ * @param $mode
4587
+ * @return string|boolean
4588
+ */
4589
+ function weather_unit_convert($value, $mode)
4590
+ {
4591
+ if(func_num_args() < 2) return;
4592
+ $mode = strtoupper($mode);
4593
+
4594
+ if($mode == 'F_TO_C') return (round(((floatval($value) -32) *5 /9)));
4595
+ else if($mode == 'C_TO_F') return (round(((1.8 * floatval($value)) +32)));
4596
+ else if($mode == 'M_TO_KM') return(round(1.609344 * floatval($value)));
4597
+ else if($mode == 'KM_TO_M') return(round(0.6214 * floatval($value)));
4598
+ return false;
4599
+ }
4600
 
4601
  /**
4602
  * Get Integrated plugins to import events
4891
 
4892
  return $recurrence;
4893
  }
4894
+
4895
+ public static function get_upcoming_events($limit = 12)
4896
+ {
4897
+ MEC::import('app.skins.list', true);
4898
+
4899
+ // Get list skin
4900
+ $list = new MEC_skin_list();
4901
+
4902
+ // Attributes
4903
+ $atts = array(
4904
+ 'show_past_events'=>0,
4905
+ 'start_date_type'=>'today',
4906
+ 'sk-options'=> array(
4907
+ 'list' => array('limit'=>$limit)
4908
+ ),
4909
+ );
4910
+
4911
+ // Initialize the skin
4912
+ $list->initialize($atts);
4913
+
4914
+ // Fetch the events
4915
+ $list->fetch();
4916
+
4917
+ return $list->events;
4918
+ }
4919
+
4920
+ /**
4921
+ * Do the shortcode and return its output
4922
+ * @author Webnus <info@webnus.biz>
4923
+ * @param integer $shortcode_id
4924
+ * @return string
4925
+ */
4926
+ public static function get_shortcode_events($shortcode_id)
4927
+ {
4928
+ // Get Render
4929
+ $render = new MEC_render();
4930
+ $atts = apply_filters('mec_calendar_atts', $render->parse($shortcode_id, array()));
4931
+
4932
+ $skin = isset($atts['skin']) ? $atts['skin'] : $render->get_default_layout();
4933
+
4934
+ $path = MEC::import('app.skins.'.$skin, true, true);
4935
+ $skin_path = apply_filters('mec_skin_path', $skin);
4936
+
4937
+ if($skin_path != $skin and $render->file->exists($skin_path)) $path = $skin_path;
4938
+ if(!$render->file->exists($path))
4939
+ {
4940
+ return __('Skin controller does not exist.', 'modern-events-calendar-lite');
4941
+ }
4942
+
4943
+ include_once $path;
4944
+
4945
+ $skin_class_name = 'MEC_skin_'.$skin;
4946
+
4947
+ // Create Skin Object Class
4948
+ $SKO = new $skin_class_name();
4949
+
4950
+ // Initialize the skin
4951
+ $SKO->initialize($atts);
4952
+
4953
+ // Fetch the events
4954
+ $SKO->fetch();
4955
+
4956
+ // Return the Events
4957
+ return $SKO->events;
4958
+ }
4959
+
4960
+ /**
4961
+ * User limited for booking a event
4962
+ * @author Webnus <info@webnus.biz>
4963
+ * @param string $user_id
4964
+ * @param array $ticket_info
4965
+ * @param string $mode
4966
+ * @return array|boolean
4967
+ */
4968
+ public function booking_permitted($user_id, $ticket_info = array(), $mode = 'register')
4969
+ {
4970
+ if(!is_array($ticket_info) or is_array($ticket_info) and count($ticket_info) < 2) return false;
4971
+
4972
+ $settings = $this->get_settings();
4973
+ $tickets_info = get_option("mec_tickets_info_{$user_id}", array());
4974
+ $user_id = intval(str_replace(str_split('.:'), '', $user_id));
4975
+
4976
+ $ticket_id = isset($ticket_info['ticket_id']) ? intval($ticket_info['ticket_id']) : 0;
4977
+ $count = isset($ticket_info['count']) ? $ticket_info['count'] : 0;
4978
+ $date = isset($ticket_info['date']) ? $ticket_info['date'] : '';
4979
+
4980
+ $booking_date = trim(str_replace(str_split('-:'), '', $date));
4981
+ $count = intval($count);
4982
+ $book_info = array($ticket_id => array($booking_date => $count));
4983
+
4984
+ $permission = true;
4985
+ $limit = (isset($settings['booking_limit']) and trim($settings['booking_limit']) != '') ? intval($settings['booking_limit']) : NULL;
4986
+
4987
+ if(is_null($limit)) return $permission;
4988
+ if(!array_key_exists($user_id, $tickets_info))
4989
+ {
4990
+ $tickets_info[$user_id] = $book_info;
4991
+ }
4992
+ else
4993
+ {
4994
+ // When user before booking and dont booking this ticket : create tickets
4995
+ if(!array_key_exists($ticket_id, $tickets_info[$user_id]))
4996
+ {
4997
+ $tickets_info[$user_id][$ticket_id] = $book_info[$ticket_id];
4998
+ }
4999
+ else
5000
+ {
5001
+ if(!array_key_exists($booking_date, $tickets_info[$user_id][$ticket_id]))
5002
+ {
5003
+ $tickets_info[$user_id][$ticket_id][$booking_date] = $book_info[$ticket_id][$booking_date];
5004
+ }
5005
+ else
5006
+ {
5007
+ ((intval($tickets_info[$user_id][$ticket_id][$booking_date]) +$count) <= $limit) ? $tickets_info[$user_id][$ticket_id][$booking_date] +=$count : $permission = false;
5008
+ }
5009
+ }
5010
+ }
5011
+
5012
+ $cdate = strtotime(date('Ymd'));
5013
+ foreach($tickets_info[$user_id][$ticket_id] as $key => $book_date)
5014
+ {
5015
+ if(strtotime($key) < $cdate) unset($tickets_info[$user_id][$ticket_id][$booking_date]);
5016
+ }
5017
+
5018
+ if($mode == 'count') return $permission;
5019
+ return $permission ? update_option("mec_tickets_info_{$user_id}", $tickets_info, false) : $permission;
5020
+ }
5021
  }
app/libraries/render.php CHANGED
@@ -832,86 +832,138 @@ class MEC_render extends MEC_base
832
  }
833
  }
834
  elseif($repeat_type == 'advanced')
835
- {
836
  // Get user specifed days of month for repeat
837
  $advanced_days = get_post_meta($event_id, 'mec_advanced_days', true);
838
- $levels = array('first', 'second', 'third', 'fourth', 'last');
839
- $year = date('Y');
840
 
841
- // Set last month for include current month results
842
- $month = date('m', strtotime('first day of last month'));
843
- $current_day = date("d");
844
-
845
- // Include default start date to resualts
846
- $i = 0;
847
- if(!$this->main->is_past($start_date['date'], $today) and !in_array($start_date['date'], $exceptional_days))
848
- {
849
- $dates[] = array(
850
- 'start' => $start_date,
851
- 'end' => $end_date,
852
- 'allday' => $allday,
853
- 'hide_time' => $hide_time,
854
- 'past' => 0
855
- );
 
 
856
 
857
- $i++;
858
- }
859
 
860
- while($i < $maximum)
861
- {
862
- foreach($advanced_days as $day)
863
- {
864
- if($i >= $maximum) break;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
865
 
866
- // Explode $day value for example (Sun.1) to Sun and 1
867
- $d = explode('.', $day);
 
 
 
 
 
 
 
 
868
 
869
- // Set indexes for {$levels} index if number day is Last(Sun.l) then indexes set 4th {$levels} index
870
- $index = intval($d[1]) ? (intval($d[1]) - 1) : 4;
871
 
872
- // Generate date
873
- $date = "{$year}-{$month}-{$current_day}";
 
 
 
874
 
875
- // Generate start date for example "first Sun of next month"
876
- $start = date('Y-m-d', strtotime("{$levels[$index]} {$d[0]} of next month", strtotime(date($date))));
877
- $end = date('Y-m-d', strtotime("+{$event_period_days} Days", strtotime($start)));
878
-
879
- // When ends repeat date set
880
- if($this->main->is_past($finish_date['date'], $start)) continue;
881
 
882
- // Jump to next level if start date is past
883
- if( $this->main->is_past($start, $today) or in_array($start, $exceptional_days) ) continue;
884
 
885
- // Add dates
886
- $dates[] = array(
887
- 'start' => array('date'=>$start, 'hour'=>$event->meta['mec_date']['start']['hour'], 'minutes'=>$event->meta['mec_date']['start']['minutes'], 'ampm'=>$event->meta['mec_date']['start']['ampm']),
888
- 'end' => array('date'=>$end, 'hour'=>$event->meta['mec_date']['end']['hour'], 'minutes'=>$event->meta['mec_date']['end']['minutes'], 'ampm'=>$event->meta['mec_date']['end']['ampm']),
889
- 'allday' => $allday,
890
- 'hide_time' => $hide_time,
891
- 'past' => 0
892
- );
893
 
894
- $i++;
895
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
896
 
897
- // When ends repeat date set
898
- if($this->main->is_past($finish_date['date'], $start)) break;
899
 
900
- // Change month and years for next resualts
901
- if(intval($month) == 12)
902
- {
903
- $year = intval($year)+1;
904
- $month = '01';
905
- }
 
 
 
906
 
907
- $month = sprintf("%02d", intval($month)+1);
 
 
 
 
 
 
 
 
 
 
 
 
 
908
  }
909
  }
 
910
  }
911
-
912
  return $dates;
913
  }
914
-
915
  /**
916
  * Render markers
917
  * @author Webnus <info@webnus.biz>
832
  }
833
  }
834
  elseif($repeat_type == 'advanced')
835
+ {
836
  // Get user specifed days of month for repeat
837
  $advanced_days = get_post_meta($event_id, 'mec_advanced_days', true);
 
 
838
 
839
+ // Generate dates for event
840
+ $event_info = array('start' => $start_date, 'end' => $end_date, 'allday' => $allday, 'hide_time' => $hide_time, 'finish_date' => $finish_date['date'], 'exceptional_days' => $exceptional_days, 'mec_repeat_end' => $event->meta['mec_repeat']['end'], 'occurrences' => $event->meta['mec_repeat']['end_at_occurrences']);
841
+ $dates = $this->generate_advanced_days($advanced_days, $event_info, $maximum, $today);
842
+ }
843
+ }
844
+
845
+ return $dates;
846
+ }
847
+
848
+ /**
849
+ * Render advanced dates
850
+ * @author Webnus <info@webnus.biz>
851
+ * @param array $advanced_days
852
+ * @return array
853
+ */
854
+ function generate_advanced_days($advanced_days = array(), $event_info = array(), $maximum = 6, $today = NULL, $mode = 'render')
855
+ {
856
 
857
+ if(!count($advanced_days)) return array();
858
+ if(!trim($today)) $today = date( 'Y-m-d', current_time( 'timestamp', 0 ));
859
 
860
+ $levels = array('first', 'second', 'third', 'fourth', 'last');
861
+ $year = date('Y');
862
+ $dates = array();
863
+
864
+ // Set last month for include current month results
865
+ $month = date('m', strtotime('first day of last month'));
866
+ $current_day = date("d");
867
+ $last_day =substr(end($advanced_days), 0, 3);
868
+
869
+ $maximum = intval($maximum);
870
+ $i = 0;
871
+
872
+ // Event info
873
+ $exceptional_days = array_key_exists('exceptional_days', $event_info) ? $event_info['exceptional_days'] : array();
874
+ $start_date = $event_info['start'];
875
+ $end_date = $event_info['end'];
876
+ $allday = array_key_exists('allday', $event_info) ? $event_info['allday'] : 0;
877
+ $hide_time = array_key_exists('hide_time', $event_info) ? $event_info['hide_time'] : 0;
878
+ $finish_date = array_key_exists('finish_date', $event_info) ? $event_info['finish_date'] : '0000-00-00';
879
+ $event_period = $this->main->date_diff($start_date['date'], $end_date['date']);
880
+ $event_period_days = $event_period ? $event_period->days : 0;
881
+ $mec_repeat_end = array_key_exists('mec_repeat_end', $event_info) ? $event_info['mec_repeat_end'] : '';
882
+ $occurrences = array_key_exists('occurrences', $event_info) ? $event_info['occurrences'] : 0;
883
 
884
+ // Include default start date to resualts
885
+ if(!$this->main->is_past($start_date['date'], $today) and !in_array($start_date['date'], $exceptional_days))
886
+ {
887
+ $dates[] = array(
888
+ 'start' => $start_date,
889
+ 'end' => $end_date,
890
+ 'allday' => $allday,
891
+ 'hide_time' => $hide_time,
892
+ 'past' => 0
893
+ );
894
 
895
+ if($mode == 'render') $i++;
896
+ }
897
 
898
+ while($i < $maximum)
899
+ {
900
+ foreach($advanced_days as $day)
901
+ {
902
+ if($i >= $maximum) break;
903
 
904
+ // Explode $day value for example (Sun.1) to Sun and 1
905
+ $d = explode('.', $day);
 
 
 
 
906
 
907
+ // Set indexes for {$levels} index if number day is Last(Sun.l) then indexes set 4th {$levels} index
908
+ $index = intval($d[1]) ? (intval($d[1]) - 1) : 4;
909
 
910
+ // Generate date
911
+ $date = "{$year}-{$month}-{$current_day}";
 
 
 
 
 
 
912
 
913
+ // Generate start date for example "first Sun of next month"
914
+ $start = date('Y-m-d', strtotime("{$levels[$index]} {$d[0]} of next month", strtotime(date($date))));
915
+ $end = date('Y-m-d', strtotime("+{$event_period_days} Days", strtotime($start)));
916
+
917
+ // When ends repeat date set
918
+ if($mode == 'render' and $this->main->is_past($finish_date, $start)) continue;
919
+
920
+ // Jump to next level if start date is past
921
+ if($this->main->is_past($start, $today) or in_array($start, $exceptional_days)) continue;
922
+
923
+ // Add dates
924
+ $dates[] = array(
925
+ 'start' => array('date'=>$start, 'hour'=>$start_date['hour'], 'minutes'=>$start_date['minutes'], 'ampm'=>$start_date['ampm']),
926
+ 'end' => array('date'=>$end, 'hour'=>$end_date['hour'], 'minutes'=>$end_date['minutes'], 'ampm'=>$end_date['ampm']),
927
+ 'allday' => $allday,
928
+ 'hide_time' => $hide_time,
929
+ 'past' => 0
930
+ );
931
 
932
+ $i++;
933
+ }
934
 
935
+ // When ends repeat date set
936
+ if($mode == 'render' and $this->main->is_past($finish_date, $start)) break;
937
+
938
+ // Change month and years for next resualts
939
+ if(intval($month) == 12)
940
+ {
941
+ $year = intval($year)+1;
942
+ $month = '01';
943
+ }
944
 
945
+ $month = sprintf("%02d", intval($month)+1);
946
+ }
947
+
948
+ if($mode == 'render' and trim($mec_repeat_end) == 'occurrences' and count($dates) > $occurrences)
949
+ {
950
+ $max = strtotime(reset($dates)['start']['date']);
951
+ $pos = 0;
952
+
953
+ for($i=1; $i < count($dates); $i++)
954
+ {
955
+ if(strtotime($dates[$i]['start']['date']) > $max)
956
+ {
957
+ $max = strtotime($dates[$i]['start']['date']);
958
+ $pos = $i;
959
  }
960
  }
961
+ unset($dates[$pos]);
962
  }
963
+
964
  return $dates;
965
  }
966
+
967
  /**
968
  * Render markers
969
  * @author Webnus <info@webnus.biz>
app/libraries/skins.php CHANGED
@@ -337,6 +337,25 @@ class MEC_skins extends MEC_base
337
  'terms'=>explode(',', trim($this->atts['speaker'], ', '))
338
  );
339
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
340
 
341
  return $tax_query;
342
  }
@@ -505,6 +524,9 @@ class MEC_skins extends MEC_base
505
 
506
  if($this->multiple_days_method == 'first_day' or ($this->multiple_days_method == 'first_day_listgrid' and in_array($this->skin, array('list', 'grid', 'slider', 'carousel'))))
507
  {
 
 
 
508
  $d = date('Y-m-d', $s);
509
 
510
  if(!isset($dates[$d])) $dates[$d] = array();
@@ -523,7 +545,6 @@ class MEC_skins extends MEC_base
523
  if($exclude)
524
  {
525
  $current_id = !isset($current_id) ? 0 : $current_id;
526
- $days = !isset($days) ? '' : $days;
527
 
528
  if(!isset($not_in_day))
529
  {
@@ -536,6 +557,7 @@ class MEC_skins extends MEC_base
536
  $days = $not_in_day[$mec_date->post_id]->not_in_days;
537
  $current_id = $mec_date->post_id;
538
  }
 
539
 
540
  if(strpos($days, $d) === false) $dates[$d][] = $mec_date->post_id;
541
  else $dates[$d][] = NULL;
@@ -722,14 +744,16 @@ class MEC_skins extends MEC_base
722
  {
723
  $type = isset($options['type']) ? $options['type'] : '';
724
  $display_form[] = $options['type'];
725
- if(in_array($field, array('category', 'location', 'organizer', 'speaker', 'tag', 'label')) and $first_row == 'not-started')
 
 
726
  {
727
  $first_row = 'started';
728
  $fields .= '<div class="mec-dropdown-wrap">';
729
  $end_div = '</div>';
730
  }
731
 
732
- if(!in_array($field, array('category', 'location', 'organizer', 'speaker', 'tag', 'label')) and $first_row == 'started')
733
  {
734
  $first_row = 'finished';
735
  $fields .= '</div>';
@@ -974,6 +998,8 @@ class MEC_skins extends MEC_base
974
  }
975
  }
976
 
 
 
977
  return $output;
978
  }
979
 
@@ -1002,22 +1028,23 @@ class MEC_skins extends MEC_base
1002
 
1003
  // Apply Label Query
1004
  if(isset($sf['label']) and trim($sf['label'])) $atts['label'] = $sf['label'];
 
1005
 
1006
  // Apply SF Date or Not
1007
  if($apply_sf_date == 1)
1008
  {
1009
  // Apply Month of Month Filter
1010
  if(isset($sf['month']) and trim($sf['month'])) $this->request->setVar('mec_month', $sf['month']);
1011
-
1012
  // Apply Year of Month Filter
1013
  if(isset($sf['year']) and trim($sf['year'])) $this->request->setVar('mec_year', $sf['year']);
1014
-
1015
  // Apply to Start Date
1016
  if(isset($sf['month']) and trim($sf['month']) and isset($sf['year']) and trim($sf['year']))
1017
  {
1018
  $start_date = $sf['year'].'-'.$sf['month'].'-'.(isset($sf['day']) ? $sf['day'] : '01');
1019
  $this->request->setVar('mec_start_date', $start_date);
1020
-
1021
  $skins = $this->main->get_skins();
1022
  foreach($skins as $skin=>$label)
1023
  {
@@ -1027,6 +1054,8 @@ class MEC_skins extends MEC_base
1027
  }
1028
  }
1029
 
 
 
1030
  return $atts;
1031
  }
1032
  }
337
  'terms'=>explode(',', trim($this->atts['speaker'], ', '))
338
  );
339
  }
340
+
341
+ //Event types
342
+ if(isset($this->atts['event_type']) and trim($this->atts['event_type'], ', ') != '')
343
+ {
344
+ $tax_query[] = array(
345
+ 'taxonomy'=>'mec_event_type',
346
+ 'field'=>'term_id',
347
+ 'terms'=>explode(',', trim($this->atts['event_type'], ', '))
348
+ );
349
+ }
350
+
351
+ if(isset($this->atts['event_type_2']) and trim($this->atts['event_type_2'], ', ') != '')
352
+ {
353
+ $tax_query[] = array(
354
+ 'taxonomy'=>'mec_event_type_2',
355
+ 'field'=>'term_id',
356
+ 'terms'=>explode(',', trim($this->atts['event_type_2'], ', '))
357
+ );
358
+ }
359
 
360
  return $tax_query;
361
  }
524
 
525
  if($this->multiple_days_method == 'first_day' or ($this->multiple_days_method == 'first_day_listgrid' and in_array($this->skin, array('list', 'grid', 'slider', 'carousel'))))
526
  {
527
+ // Hide Shown Events on AJAX
528
+ if(defined('DOING_AJAX') and DOING_AJAX and $s != $e and $s < strtotime($start)) continue;
529
+
530
  $d = date('Y-m-d', $s);
531
 
532
  if(!isset($dates[$d])) $dates[$d] = array();
545
  if($exclude)
546
  {
547
  $current_id = !isset($current_id) ? 0 : $current_id;
 
548
 
549
  if(!isset($not_in_day))
550
  {
557
  $days = $not_in_day[$mec_date->post_id]->not_in_days;
558
  $current_id = $mec_date->post_id;
559
  }
560
+ else $days = '';
561
 
562
  if(strpos($days, $d) === false) $dates[$d][] = $mec_date->post_id;
563
  else $dates[$d][] = NULL;
744
  {
745
  $type = isset($options['type']) ? $options['type'] : '';
746
  $display_form[] = $options['type'];
747
+ $fields_array = array('category', 'location', 'organizer', 'speaker', 'tag', 'label');
748
+ $fields_array = apply_filters( 'mec_filter_fields_search_array', $fields_array );
749
+ if(in_array($field,$fields_array) and $first_row == 'not-started')
750
  {
751
  $first_row = 'started';
752
  $fields .= '<div class="mec-dropdown-wrap">';
753
  $end_div = '</div>';
754
  }
755
 
756
+ if(!in_array($field, $fields_array) and $first_row == 'started')
757
  {
758
  $first_row = 'finished';
759
  $fields .= '</div>';
998
  }
999
  }
1000
 
1001
+ $output = apply_filters('mec_search_fields_to_box',$output,$field,$type,$this->atts,$this->id);
1002
+
1003
  return $output;
1004
  }
1005
 
1028
 
1029
  // Apply Label Query
1030
  if(isset($sf['label']) and trim($sf['label'])) $atts['label'] = $sf['label'];
1031
+
1032
 
1033
  // Apply SF Date or Not
1034
  if($apply_sf_date == 1)
1035
  {
1036
  // Apply Month of Month Filter
1037
  if(isset($sf['month']) and trim($sf['month'])) $this->request->setVar('mec_month', $sf['month']);
1038
+
1039
  // Apply Year of Month Filter
1040
  if(isset($sf['year']) and trim($sf['year'])) $this->request->setVar('mec_year', $sf['year']);
1041
+
1042
  // Apply to Start Date
1043
  if(isset($sf['month']) and trim($sf['month']) and isset($sf['year']) and trim($sf['year']))
1044
  {
1045
  $start_date = $sf['year'].'-'.$sf['month'].'-'.(isset($sf['day']) ? $sf['day'] : '01');
1046
  $this->request->setVar('mec_start_date', $start_date);
1047
+
1048
  $skins = $this->main->get_skins();
1049
  foreach($skins as $skin=>$label)
1050
  {
1054
  }
1055
  }
1056
 
1057
+ $atts = apply_filters('add_to_search_box_query',$atts, $sf );
1058
+
1059
  return $atts;
1060
  }
1061
  }
app/modules/weather/details.php CHANGED
@@ -28,6 +28,7 @@ $occurrence = isset($_GET['occurrence']) ? sanitize_text_field($_GET['occurrence
28
  $date = (trim($occurrence) ? $occurrence : $event->date['start']['date']).' '.sprintf("%02d", $event->date['start']['hour']).':'.sprintf("%02d", $event->date['start']['minutes']).' '.$event->date['start']['ampm'];
29
 
30
  $weather = $this->get_weather($lat, $lng, $date);
 
31
 
32
  // Weather not found!
33
  if(!is_array($weather) or (is_array($weather) and !count($weather))) return;
@@ -45,13 +46,24 @@ if(!is_array($weather) or (is_array($weather) and !count($weather))) return;
45
  <div class="mec-weather-summary">
46
  <div class="mec-weather-summary-report"><?php echo $weather['summary']; ?></div>
47
  <?php if(isset($weather['temperature'])): ?>
48
- <div class="mec-weather-summary-temp"><?php echo round( $weather['temperature']);?> <var><?php _e( ' °C', 'modern-events-calendar-lite' ); ?></var></div>
 
 
 
 
 
 
49
  <?php endif; ?>
50
  </div>
 
 
 
 
 
51
  <div class="mec-weather-extras">
52
 
53
  <?php if(isset($weather['windSpeed'])): ?>
54
- <div class="mec-weather-wind"><span><?php _e('Wind', 'modern-events-calendar-lite'); ?>:</span> <?php echo round($weather['windSpeed']); ?><var><?php _e(' KPH','modern-events-calendar-lite'); ?></var></div>
55
  <?php endif; ?>
56
 
57
  <?php if(isset($weather['humidity'])): ?>
@@ -59,7 +71,7 @@ if(!is_array($weather) or (is_array($weather) and !count($weather))) return;
59
  <?php endif; ?>
60
 
61
  <?php if(isset($weather['visibility'])): ?>
62
- <div class="mec-weather-visibility"><span><?php _e('Visibility', 'modern-events-calendar-lite'); ?>:</span> <?php echo round($weather['visibility']); ?><var><?php _e(' KM','modern-events-calendar-lite'); ?></var></div>
63
  <?php endif; ?>
64
 
65
  </div>
28
  $date = (trim($occurrence) ? $occurrence : $event->date['start']['date']).' '.sprintf("%02d", $event->date['start']['hour']).':'.sprintf("%02d", $event->date['start']['minutes']).' '.$event->date['start']['ampm'];
29
 
30
  $weather = $this->get_weather($lat, $lng, $date);
31
+ $imperial = (isset($settings['weather_module_imperial_units']) and $settings['weather_module_imperial_units']) ? true : false;
32
 
33
  // Weather not found!
34
  if(!is_array($weather) or (is_array($weather) and !count($weather))) return;
46
  <div class="mec-weather-summary">
47
  <div class="mec-weather-summary-report"><?php echo $weather['summary']; ?></div>
48
  <?php if(isset($weather['temperature'])): ?>
49
+ <div class="mec-weather-summary-temp" data-c="<?php _e( ' °C', 'modern-events-calendar-lite' ); ?>" data-f="<?php _e( ' °F', 'modern-events-calendar-lite' ); ?>">
50
+ <?php if(!$imperial): echo round($weather['temperature']); ?>
51
+ <var><?php _e(' °C', 'modern-events-calendar-lite'); ?></var>
52
+ <?php else: echo $this->weather_unit_convert($weather['temperature'], 'C_TO_F'); ?>
53
+ <var><?php _e(' °F', 'modern-events-calendar-lite'); ?></var>
54
+ <?php endif; ?>
55
+ </div>
56
  <?php endif; ?>
57
  </div>
58
+
59
+ <?php if(isset($settings['weather_module_change_units_button']) and $settings['weather_module_change_units_button']): ?>
60
+ <span data-imperial="<?php _e('°Imperial', 'modern-events-calendar-lite'); ?>" data-metric="<?php _e('°Metric', 'modern-events-calendar-lite'); ?>" class="degrees-mode"><?php if(!$imperial) _e('°Imperial', 'modern-events-calendar-lite'); else _e('°Metric', 'modern-events-calendar-lite'); ?></span>
61
+ <?php endif ?>
62
+
63
  <div class="mec-weather-extras">
64
 
65
  <?php if(isset($weather['windSpeed'])): ?>
66
+ <div class="mec-weather-wind" data-kph="<?php _e(' KPH', 'modern-events-calendar-lite'); ?>" data-mph="<?php _e(' MPH', 'modern-events-calendar-lite'); ?>"><span><?php _e('Wind', 'modern-events-calendar-lite'); ?>: </span><?php if(!$imperial) echo round($weather['windSpeed']); else echo $this->weather_unit_convert($weather['windSpeed'], 'KM_TO_M');?><var><?php if(!$imperial) _e(' KPH', 'modern-events-calendar-lite'); else _e(' MPH', 'modern-events-calendar-lite'); ?></var></div>
67
  <?php endif; ?>
68
 
69
  <?php if(isset($weather['humidity'])): ?>
71
  <?php endif; ?>
72
 
73
  <?php if(isset($weather['visibility'])): ?>
74
+ <div class="mec-weather-visibility" data-kph="<?php _e(' KM', 'modern-events-calendar-lite'); ?>" data-mph="<?php _e(' Miles', 'modern-events-calendar-lite'); ?>"><span><?php _e('Visibility', 'modern-events-calendar-lite'); ?>: </span><?php if(!$imperial) echo round($weather['visibility']); else echo $this->weather_unit_convert($weather['visibility'], 'KM_TO_M');?><var><?php if(!$imperial) _e(' KM','modern-events-calendar-lite'); else _e(' Miles','modern-events-calendar-lite'); ?></var></div>
75
  <?php endif; ?>
76
 
77
  </div>
app/skins/carousel/render.php CHANGED
@@ -8,20 +8,6 @@ $settings = $this->main->get_settings();
8
  ?>
9
  <div class="mec-wrap <?php echo $event_colorskin; ?>">
10
  <div class="mec-event-carousel-<?php echo $this->style; ?>">
11
- <?php if($this->style == 'type4'): ?>
12
- <div class="row mec-carousel-type4-head">
13
- <div class="col-md-6 col-xs-6">
14
- <div class="mec-carousel-type4-head-title">
15
- <?php if(!empty( $this->head_text )) : ?><?php esc_html_e($this->head_text); ?><?php endif; ?>
16
- </div>
17
- </div>
18
- <div class="col-md-6 col-xs-6">
19
- <div class="mec-carousel-type4-head-link">
20
- <?php if(!empty( $this->archive_link )) : ?><a class="mec-bg-color-hover" href="<?php echo esc_html($this->archive_link); ?>"><?php esc_html_e('View All' , 'modern-events-calendar-lite'); ?></a><?php endif; ?>
21
- </div>
22
- </div>
23
- </div>
24
- <?php endif; ?>
25
  <?php
26
  if( $this->style == 'type4' )
27
  {
@@ -202,5 +188,19 @@ $settings = $this->main->get_settings();
202
  <?php endforeach; ?>
203
  <?php endforeach; ?>
204
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
205
  </div>
206
  </div>
8
  ?>
9
  <div class="mec-wrap <?php echo $event_colorskin; ?>">
10
  <div class="mec-event-carousel-<?php echo $this->style; ?>">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
  <?php
12
  if( $this->style == 'type4' )
13
  {
188
  <?php endforeach; ?>
189
  <?php endforeach; ?>
190
  </div>
191
+ <?php if($this->style == 'type4'): ?>
192
+ <div class="row mec-carousel-type4-head">
193
+ <div class="col-md-6 col-xs-6">
194
+ <div class="mec-carousel-type4-head-link">
195
+ <?php if(!empty( $this->archive_link )) : ?><a class="mec-bg-color-hover" href="<?php echo esc_html($this->archive_link); ?>"><?php esc_html_e('View All Events' , 'modern-events-calendar-lite'); ?></a><?php endif; ?>
196
+ </div>
197
+ </div>
198
+ <div class="col-md-6 col-xs-6">
199
+ <div class="mec-carousel-type4-head-title">
200
+ <?php if(!empty( $this->head_text )) : ?><?php esc_html_e($this->head_text); ?><?php endif; ?>
201
+ </div>
202
+ </div>
203
+ </div>
204
+ <?php endif; ?>
205
  </div>
206
  </div>
app/skins/grid/render.php CHANGED
@@ -140,6 +140,7 @@ if($this->style == 'colorful')
140
  <h4 class="mec-event-title"><a class="mec-color-hover" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $event_color; ?></h4>
141
  <?php if ( !empty($label_style) ) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?>
142
  <p><?php echo trim((isset($location['name']) ? $location['name'] : '').', '.(isset($location['address']) ? $location['address'] : ''), ', '); ?></p>
 
143
  </div>
144
  <div class="mec-event-footer">
145
  <?php if($settings['social_network_status'] != '0') : ?>
140
  <h4 class="mec-event-title"><a class="mec-color-hover" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $event_color; ?></h4>
141
  <?php if ( !empty($label_style) ) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?>
142
  <p><?php echo trim((isset($location['name']) ? $location['name'] : '').', '.(isset($location['address']) ? $location['address'] : ''), ', '); ?></p>
143
+ <?php do_action('mec_classic_view_action' , $event); ?>
144
  </div>
145
  <div class="mec-event-footer">
146
  <?php if($settings['social_network_status'] != '0') : ?>
app/skins/masonry.php CHANGED
@@ -16,6 +16,7 @@ class MEC_skin_masonry extends MEC_skins
16
  public $date_format_2 = 'F';
17
  public $filter_by = 'category';
18
  public $masonry_like_grid;
 
19
 
20
  /**
21
  * Constructor method
@@ -67,11 +68,19 @@ class MEC_skin_masonry extends MEC_skins
67
  // Set the ID
68
  if(!isset($this->atts['id'])) $this->atts['id'] = $this->id;
69
 
 
 
 
 
 
 
 
 
 
70
  // HTML class
71
  $this->html_class = '';
72
  if(isset($this->atts['html-class']) and trim($this->atts['html-class']) != '') $this->html_class = $this->atts['html-class'];
73
 
74
- $this->masonry_like_grid = isset($this->skin_options['masonry_like_grid']) ? $this->skin_options['masonry_like_grid'] : 0;
75
 
76
  // SED Method
77
  $this->sed_method = isset($this->skin_options['sed_method']) ? $this->skin_options['sed_method'] : '0';
@@ -192,6 +201,41 @@ class MEC_skin_masonry extends MEC_skins
192
  return $date;
193
  }
194
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
195
  public function filter_by()
196
  {
197
  $output = '<div class="mec-events-masonry-cats"><a href="#" class="mec-masonry-cat-selected" data-filter="*">'.__('All', 'modern-events-calendar-lite').'</a>';
@@ -203,7 +247,7 @@ class MEC_skin_masonry extends MEC_skins
203
  'include' => ((isset($this->atts[$this->filter_by]) and trim($this->atts[$this->filter_by])) ? $this->atts[$this->filter_by] : ''),
204
  ));
205
 
206
- foreach($terms as $term) $output .= '<a href="#" data-group="'.$term->term_id.'">'.$term->name.'</a>';
207
 
208
  $output .= '</div>';
209
  return $output;
16
  public $date_format_2 = 'F';
17
  public $filter_by = 'category';
18
  public $masonry_like_grid;
19
+ public $fit_to_row;
20
 
21
  /**
22
  * Constructor method
68
  // Set the ID
69
  if(!isset($this->atts['id'])) $this->atts['id'] = $this->id;
70
 
71
+ // Show "Load More" button or not
72
+ $this->load_more_button = isset($this->skin_options['load_more_button']) ? $this->skin_options['load_more_button'] : true;
73
+
74
+ // Show Masonry like grid
75
+ $this->masonry_like_grid = isset($this->skin_options['masonry_like_grid']) ? $this->skin_options['masonry_like_grid'] : true;
76
+
77
+ // Show "Sort by date" button or not
78
+ $this->fit_to_row = isset($this->skin_options['fit_to_row']) ? $this->skin_options['fit_to_row'] : true;
79
+
80
  // HTML class
81
  $this->html_class = '';
82
  if(isset($this->atts['html-class']) and trim($this->atts['html-class']) != '') $this->html_class = $this->atts['html-class'];
83
 
 
84
 
85
  // SED Method
86
  $this->sed_method = isset($this->skin_options['sed_method']) ? $this->skin_options['sed_method'] : '0';
201
  return $date;
202
  }
203
 
204
+ /**
205
+ * Load more events for AJAX requert
206
+ * @author Webnus <info@webnus.biz>
207
+ * @return void
208
+ */
209
+ public function load_more()
210
+ {
211
+ $this->sf = $this->request->getVar('sf', array());
212
+ $apply_sf_date = $this->request->getVar('apply_sf_date', 1);
213
+ $atts = $this->sf_apply($this->request->getVar('atts', array()), $this->sf, $apply_sf_date);
214
+
215
+ // Initialize the skin
216
+ $this->initialize($atts);
217
+
218
+ // Override variables
219
+ $this->start_date = $this->request->getVar('mec_start_date', date('y-m-d'));
220
+ $this->end_date = $this->start_date;
221
+ $this->offset = $this->request->getVar('mec_offset', 0);
222
+
223
+ // Apply Maximum Date
224
+ 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));
225
+
226
+ // Return the events
227
+ $this->atts['return_items'] = true;
228
+
229
+ // Fetch the events
230
+ $this->fetch();
231
+
232
+ // Return the output
233
+ $output = $this->output();
234
+
235
+ echo json_encode($output);
236
+ exit;
237
+ }
238
+
239
  public function filter_by()
240
  {
241
  $output = '<div class="mec-events-masonry-cats"><a href="#" class="mec-masonry-cat-selected" data-filter="*">'.__('All', 'modern-events-calendar-lite').'</a>';
247
  'include' => ((isset($this->atts[$this->filter_by]) and trim($this->atts[$this->filter_by])) ? $this->atts[$this->filter_by] : ''),
248
  ));
249
 
250
+ foreach($terms as $term) $output .= '<a href="#" data-filter=".mec-t'.$term->term_id.'">'.$term->name.'</a>';
251
 
252
  $output .= '</div>';
253
  return $output;
app/skins/masonry/render.php CHANGED
@@ -114,7 +114,7 @@ $settings = $this->main->get_settings();
114
 
115
  if ( empty($masonry_filter )) $masonry_filter = "[\"\"]";
116
  ?>
117
- <div <?php if ( $this->masonry_like_grid == 1) echo 'data-sort-masonry="'.$event->date['start']['date'].'"'; ?> class="mec-masonry-item-wrap <?php echo $this->filter_by_classes($event->data->ID); ?>" data-groups='<?php echo $masonry_filter; ?>' data-date-created="<?php echo $event->date['start']['date']; ?>">
118
  <div class="mec-masonry">
119
 
120
  <article data-style="<?php echo $label_style; ?>" class="mec-event-article mec-clear <?php echo $this->get_event_classes($event); ?>">
114
 
115
  if ( empty($masonry_filter )) $masonry_filter = "[\"\"]";
116
  ?>
117
+ <div data-sort-masonry="<?php echo $event->date['start']['date']; ?>" class="mec-masonry-item-wrap <?php echo $this->filter_by_classes($event->data->ID); ?>">
118
  <div class="mec-masonry">
119
 
120
  <article data-style="<?php echo $label_style; ?>" class="mec-event-article mec-clear <?php echo $this->get_event_classes($event); ?>">
app/skins/masonry/tpl.php CHANGED
@@ -9,8 +9,14 @@ ob_start();
9
  include $render_path;
10
  $items_html = ob_get_clean();
11
 
 
 
 
 
 
 
12
  // Inclue Isotope Assets
13
- $this->main->load_shuffle_assets();
14
 
15
  // Generating javascript code tpl
16
  $javascript = '<script type="text/javascript">
@@ -27,6 +33,7 @@ jQuery(document).ready(function()
27
  sed_method: "'.$this->sed_method.'",
28
  image_popup: "'.$this->image_popup.'",
29
  masonry_like_grid: "'.$this->masonry_like_grid.'",
 
30
  sf:
31
  {
32
  container: "'.($this->sf_status ? '#mec_search_form_'.$this->id : '').'"
@@ -59,5 +66,8 @@ do_action('mec_masonry_skin_head');
59
  </div>
60
  <?php endif; ?>
61
 
 
 
 
62
  </div>
63
  <?php do_action('mec_masonry_customization'); ?>
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 +1), 'count'=>$this->found, 'current_month_divider'=>$current_month_divider));
15
+ exit;
16
+ }
17
+
18
  // Inclue Isotope Assets
19
+ $this->main->load_isotope_assets();
20
 
21
  // Generating javascript code tpl
22
  $javascript = '<script type="text/javascript">
33
  sed_method: "'.$this->sed_method.'",
34
  image_popup: "'.$this->image_popup.'",
35
  masonry_like_grid: "'.$this->masonry_like_grid.'",
36
+ fit_to_row: "'.$this->fit_to_row.'",
37
  sf:
38
  {
39
  container: "'.($this->sf_status ? '#mec_search_form_'.$this->id : '').'"
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
  </div>
73
  <?php do_action('mec_masonry_customization'); ?>
app/skins/single.php CHANGED
@@ -685,6 +685,7 @@ class MEC_skin_single extends MEC_skins
685
  if(!$additional_organizers_status) return;
686
 
687
  $organizers = array();
 
688
  foreach($event->data->organizers as $o) if($o['id'] != $event->data->meta['mec_organizer_id']) $organizers[] = $o;
689
 
690
  if(!count($organizers)) return;
@@ -727,6 +728,7 @@ class MEC_skin_single extends MEC_skins
727
  <?php endforeach; ?>
728
  </div>
729
  <?php
 
730
  }
731
 
732
  /**
685
  if(!$additional_organizers_status) return;
686
 
687
  $organizers = array();
688
+ if ( isset($event->data->organizers) && !empty($event->data->organizers) ) :
689
  foreach($event->data->organizers as $o) if($o['id'] != $event->data->meta['mec_organizer_id']) $organizers[] = $o;
690
 
691
  if(!count($organizers)) return;
728
  <?php endforeach; ?>
729
  </div>
730
  <?php
731
+ endif;
732
  }
733
 
734
  /**
app/skins/single/default.php CHANGED
@@ -9,7 +9,7 @@ wp_enqueue_script('mec-lity-script', $this->main->asset('packages/lity/lity.min.
9
  <article class="row mec-single-event">
10
  <!-- start breadcrumbs -->
11
  <?php
12
- $breadcrumbs_settings = $settings['breadcrumbs'];
13
  if($breadcrumbs_settings == '1' ): ?>
14
  <div class="mec-breadcrumbs">
15
  <?php $single->display_breadcrumb_widget( get_the_ID() ); ?>
@@ -441,7 +441,7 @@ wp_enqueue_script('mec-lity-script', $this->main->asset('packages/lity/lity.min.
441
  <?php $data_lity = ''; if( isset($settings['single_booking_style']) and $settings['single_booking_style'] == 'modal' ) $data_lity = 'data-lity'; ?>
442
  <a class="mec-booking-button mec-bg-color <?php if( isset($settings['single_booking_style']) and $settings['single_booking_style'] != 'modal' ) echo 'simple-booking'; ?>" href="#mec-events-meta-group-booking-<?php echo $this->uniqueid; ?>" <?php echo $data_lity; ?>><?php echo esc_html($this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite'))); ?></a>
443
  <?php elseif($single->found_value('register_btn', $settings) == 'on' and isset($event->data->meta['mec_more_info']) and trim($event->data->meta['mec_more_info']) and $event->data->meta['mec_more_info'] != 'http://'): ?>
444
- <a class="mec-booking-button mec-bg-color" href="<?php echo $event->data->meta['mec_more_info']; ?>"><?php if(isset($event->data->meta['mec_more_info_title']) and trim($event->data->meta['mec_more_info_title'])) echo esc_html(trim($event->data->meta['mec_more_info_title']), 'modern-events-calendar-lite'); else echo esc_html($this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite')));
445
  ?></a>
446
  <?php endif; ?>
447
  </div>
9
  <article class="row mec-single-event">
10
  <!-- start breadcrumbs -->
11
  <?php
12
+ $breadcrumbs_settings = isset( $settings['breadcrumbs'] ) ? $settings['breadcrumbs'] : '';
13
  if($breadcrumbs_settings == '1' ): ?>
14
  <div class="mec-breadcrumbs">
15
  <?php $single->display_breadcrumb_widget( get_the_ID() ); ?>
441
  <?php $data_lity = ''; if( isset($settings['single_booking_style']) and $settings['single_booking_style'] == 'modal' ) $data_lity = 'data-lity'; ?>
442
  <a class="mec-booking-button mec-bg-color <?php if( isset($settings['single_booking_style']) and $settings['single_booking_style'] != 'modal' ) echo 'simple-booking'; ?>" href="#mec-events-meta-group-booking-<?php echo $this->uniqueid; ?>" <?php echo $data_lity; ?>><?php echo esc_html($this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite'))); ?></a>
443
  <?php elseif($single->found_value('register_btn', $settings) == 'on' and isset($event->data->meta['mec_more_info']) and trim($event->data->meta['mec_more_info']) and $event->data->meta['mec_more_info'] != 'http://'): ?>
444
+ <a class="mec-booking-button mec-bg-color" target="<?php echo (isset($event->data->meta['mec_more_info_target']) ? $event->data->meta['mec_more_info_target'] : '_self'); ?>" href="<?php echo $event->data->meta['mec_more_info']; ?>"><?php if(isset($event->data->meta['mec_more_info_title']) and trim($event->data->meta['mec_more_info_title'])) echo esc_html(trim($event->data->meta['mec_more_info_title']), 'modern-events-calendar-lite'); else echo esc_html($this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite')));
445
  ?></a>
446
  <?php endif; ?>
447
  </div>
app/skins/single/modern.php CHANGED
@@ -6,7 +6,7 @@ defined('MECEXEC') or die();
6
  <article class="row mec-single-event mec-single-modern">
7
  <!-- start breadcrumbs -->
8
  <?php
9
- $breadcrumbs_settings = $settings['breadcrumbs'];
10
  if($breadcrumbs_settings == '1'):
11
  $breadcrumbs = new MEC_skin_single; ?>
12
  <div class="mec-breadcrumbs mec-breadcrumbs-modern">
6
  <article class="row mec-single-event mec-single-modern">
7
  <!-- start breadcrumbs -->
8
  <?php
9
+ $breadcrumbs_settings = isset( $settings['breadcrumbs'] ) ? $settings['breadcrumbs'] : '';
10
  if($breadcrumbs_settings == '1'):
11
  $breadcrumbs = new MEC_skin_single; ?>
12
  <div class="mec-breadcrumbs mec-breadcrumbs-modern">
assets/css/frontend.css CHANGED
@@ -9283,6 +9283,31 @@ li.mec-no-event-found .mec-event-title {
9283
  line-height: 1;
9284
  }
9285
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9286
  .mec-weather-extras {
9287
  width: auto;
9288
  padding: 10px 15px 0 15px;
@@ -11963,5 +11988,23 @@ ul.mec-weekly-view-dates-events article:before,
11963
  background: #008aff!important;
11964
  color: #fff!important
11965
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11966
 
11967
  /* --------------------- */
9283
  line-height: 1;
9284
  }
9285
 
9286
+ .degrees-mode
9287
+ {
9288
+ background: rgba(0, 0, 0, .2);
9289
+ cursor: pointer;
9290
+ font-weight: 300;
9291
+ font-size: 18px;
9292
+ padding: 4px 5px;
9293
+ line-height: 1;
9294
+ color: #fff;
9295
+ position: absolute;
9296
+ border-radius: 8px;
9297
+ bottom: 16px;
9298
+ left: 16px;
9299
+ }
9300
+
9301
+ .mec-weather-extras {
9302
+ width: auto;
9303
+ padding: 10px 15px 0 15px;
9304
+ float: right;
9305
+ min-height: 80px;
9306
+ color: #fff;
9307
+ font-size: 13px;
9308
+ line-height: 1
9309
+ }
9310
+
9311
  .mec-weather-extras {
9312
  width: auto;
9313
  padding: 10px 15px 0 15px;
11988
  background: #008aff!important;
11989
  color: #fff!important
11990
  }
11991
+
11992
+ /* Search Bar */
11993
+ .mec-search-bar-wrap .mec-search-form .mec-text-input-search {
11994
+ width: 83%;
11995
+ }
11996
+ .mec-search-bar-wrap input#mec-search-bar-input {
11997
+ width: calc(100% - 84%);
11998
+ margin-left: 11px;
11999
+ background: #40d9f1;
12000
+ Color: #fff;
12001
+ font-weight: normal;
12002
+ }
12003
+ .mec-text-input-search+input#mec-search-bar-input {
12004
+ margin-left: -3px;
12005
+ }
12006
+ .mec-search-bar-wrap input#mec-search-bar-input:hover {
12007
+ background: #000;
12008
+ }
12009
 
12010
  /* --------------------- */
assets/css/frontend.min.css CHANGED
@@ -1 +1 @@
1
- .lity-container,.mec-wrap,.mec-wrap div:not([class^=elementor-]){font-family:Montserrat,Helvetica,Arial,sans-serif}.entry-content .mec-wrap h1,.entry-content .mec-wrap h2,.entry-content .mec-wrap h3,.entry-content .mec-wrap h4,.entry-content .mec-wrap h5,.entry-content .mec-wrap h6,.mec-wrap h1,.mec-wrap h2,.mec-wrap h3,.mec-wrap h4,.mec-wrap h5,.mec-wrap h6{font-family:Montserrat,Helvetica,Arial,sans-serif;color:#171c24;font-weight:300;font-style:inherit;letter-spacing:normal;clear:none}.mec-wrap h1{font-size:50px;line-height:1.16;margin-bottom:12px;letter-spacing:-1px}.mec-wrap h2{font-size:36px;line-height:1.14;margin-bottom:10px}.mec-wrap h3{font-size:28px;line-height:1.2;margin-bottom:8px}.mec-wrap h4{font-size:24px;line-height:1.2;margin-bottom:10px}.mec-wrap h5{font-size:18px;line-height:1.3;margin-bottom:7px}.mec-wrap h6{font-size:16px;line-height:1.3;margin-bottom:4px}.mec-wrap .subheader{color:#849098}.mec-wrap h1 strong{font-weight:700}.mec-wrap p{margin:0 0 20px 0;color:#616161;font-size:14px;line-height:1.8}.mec-wrap .mec-event-article .mec-color-hover{box-shadow:none;border:none}.mec-wrap abbr,.mec-wrap acronym{cursor:auto;border:none}.entry-content .mec-wrap a{box-shadow:none}.mec-wrap .button,.mec-wrap a.button:not(.owl-dot),.mec-wrap button:not(.owl-dot),.mec-wrap input[type=button],.mec-wrap input[type=reset],.mec-wrap input[type=submit]{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease}.mec-wrap .button:hover,.mec-wrap a.button:hover,.mec-wrap button:hover,.mec-wrap input[type=button]:hover,.mec-wrap input[type=reset]:hover,.mec-wrap input[type=submit]:hover{background:#222;color:#fff}.vertical-space,.vertical-space1,.vertical-space2,.vertical-space3,.vertical-space4,.vertical-space5{display:block;width:100%;margin:0;clear:both;border:0 none;height:20px}.vertical-space2{height:40px}.vertical-space3{height:60px}.vertical-space4{height:80px}.vertical-space5{height:100px}@media only screen and (max-width:479px){.vertical-space,.vertical-space1{height:8px}.vertical-space2{height:14px}.vertical-space3{height:28px}.vertical-space4{height:40px}.vertical-space5{height:60px}}@media only screen and (max-width:960px){.vertical-space,.vertical-space1{height:12px}.vertical-space2{height:18px}.vertical-space3{height:36px}.vertical-space4{height:50px}.vertical-space5{height:80px}}.mec-wrap abbr{cursor:auto;border-bottom:0}@-webkit-keyframes rotating{from{-ms-transform:rotate(0);-moz-transform:rotate(0);-webkit-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}to{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes rotating{from{-ms-transform:rotate(0);-moz-transform:rotate(0);-webkit-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}to{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}.mec-wrap{font:14px/25px sans-serif;font-family:Montserrat,Helvetica,Arial,sans-serif;font-weight:400;color:#626262}.mec-wrap .mec-events a{border-bottom:none}.mec-wrap .mec-container a{box-shadow:none}.mec-event-content p{font-family:Roboto,sans-serif;font-weight:300}.mec-wrap .mec-clear:after,.mec-wrap .mec-clear:before{content:" ";display:table}.mec-wrap .mec-clear:after{clear:both}.mec-events-button{background:#fff;padding:12px 34px;font-size:13px;font-weight:400;letter-spacing:0;border:1px solid #e3e3e3;margin-right:10px;transition:.3s}.mec-wrap .mec-events-button:hover{color:#fff}.mec-no-event{display:none}.mec-event-grid-classic .mec-event-article{position:relative;border:2px solid #e3e3e3;box-shadow:0 2px 0 0 rgba(0,0,0,.016);margin-bottom:30px;max-width:none}.mec-event-grid-classic .mec-event-content{background:#fff;color:#767676;padding:0 20px 5px;text-align:center;min-height:125px}.mec-event-grid-classic .mec-event-title{color:#202020;margin:10px 0;font-weight:700;font-size:20px;letter-spacing:1px;text-transform:uppercase}.mec-event-grid-classic .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-classic .mec-event-date{font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:1px;color:#fff;padding:3px 20px;margin:0 -20px 20px -20px;text-align:center}.mec-event-grid-classic .mec-event-content p{font-size:15px;color:#8a8a8a}.mec-event-grid-classic .mec-event-detail{display:none}.mec-event-grid-classic img{margin-bottom:0;width:100%}.mec-event-footer{position:relative;border-top:1px solid #efefef;padding:20px;min-height:80px;margin:0;background:#fafafa}.mec-event-sharing-wrap{left:15px;position:absolute;list-style:none;margin:0}.mec-event-sharing-wrap .mec-event-sharing{position:absolute;padding:8px 0 2px;left:-6px;bottom:54px;margin:0;margin-top:6px;border-radius:5px;width:50px;visibility:hidden;opacity:0;border:1px solid #e2e2e2;background:#fff;box-shadow:0 0 9px 0 rgba(0,0,0,.06);z-index:99;-webkit-transition:all .18s ease;transition:all .18s ease}.mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-sharing-wrap .mec-event-sharing:before{content:'';display:block;position:absolute;bottom:-10px;left:50%;margin-left:-10px;width:0;height:0;border-style:solid;border-width:10px}.mec-event-sharing-wrap .mec-event-sharing:before{bottom:-21px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-sharing-wrap .mec-event-sharing:after{bottom:-19px;border-color:#fff transparent transparent transparent}.mec-event-sharing-wrap:hover .mec-event-sharing{opacity:1;visibility:visible}.mec-event-sharing-wrap li{text-align:center;border:0;display:block;margin-right:2px;overflow:hidden;margin:0 auto 6px;width:38px}.mec-event-sharing-wrap:hover>li{cursor:pointer;background-color:#40d9f1}.mec-event-sharing-wrap:hover li a{color:#fff}.mec-event-sharing-wrap>li{border:1px solid #d9d9d9}.mec-event-sharing-wrap li a,.mec-event-sharing-wrap:hover li ul li a{border:none;color:#767676}.mec-event-sharing-wrap li i{width:36px;height:36px;display:table-cell;vertical-align:middle}.mec-event-sharing-wrap .mec-event-sharing li a{display:block}.mec-event-sharing-wrap .mec-event-sharing li:hover a{color:#40d9f1}.mec-event-sharing .mec-event-share:hover .event-sharing-icon{background:#40d9f1;border-width:0 1px 0;cursor:pointer}.mec-event-sharing .mec-event-map{border-width:1px 0 1px}.mec-event-footer .mec-booking-button{box-shadow:none;transition:all .21s ease;font-size:11px;font-weight:500;letter-spacing:1px;text-transform:uppercase;background:#fff;color:#767676;border:1px solid #e8e8e8;position:absolute;top:20px;right:15px;padding:0 16px;line-height:37px;height:38px}.mec-event-footer .mec-booking-button:hover{background:#191919;color:#fff;border-color:#191919}@media only screen and (max-width:960px){.mec-event-grid-classic{margin-bottom:30px}}.mec-widget .mec-event-grid-classic.mec-owl-carousel{padding:36px 0 16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav{margin:5px 0;width:100%;position:absolute;top:15px;padding:0}.mec-skin-grid-container.mec-widget{padding-top:18px}.mec-widget .mec-event-grid-classic.mec-owl-carousel{padding:20px 0 16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav{margin:0;width:100%;position:absolute;top:0;padding:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav div{position:absolute;background:#fff;line-height:0;width:34px;height:26px;padding:6px;text-align:center;margin-top:-17px;border-radius:3px;border:1px solid #e2e2e2;text-align:center;box-shadow:0 2px 0 0 rgba(0,0,0,.028);transition:all .33s ease}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav .owl-next{right:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav .owl-prev{left:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-sharing{display:none}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-footer{text-align:center}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-footer .mec-booking-button{position:static;padding:11px 16px}.widget .mec-event-footer ul.mec-event-sharing-wrap li a.mec-event-share-icon{padding:0}@media screen and (min-width:56.875em){.mec-widget .mec-month-container dl{margin-bottom:0}}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-footer{text-align:right}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-sharing-wrap{left:5px;padding-left:5px}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-sharing-wrap .mec-event-sharing{left:0}.mec-widget .mec-event-sharing-wrap .mec-event-sharing{position:absolute;top:auto;bottom:52px;margin:0;margin-top:0;border-radius:5px}.mec-widget .mec-event-sharing-wrap .mec-event-sharing:after{top:auto;bottom:-17px;border-color:#fff transparent transparent transparent}.mec-widget .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-18px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-grid-clean{margin-bottom:10px;max-width:none}.mec-event-grid-clean .mec-event-article{margin-bottom:30px;position:relative;border:1px solid #e2e2e2;text-align:center;padding:15px 15px 0;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-clean .mec-event-content{background:#fff;color:#767676;padding:25px 16px 0;text-align:left}.mec-event-grid-clean .mec-event-title{color:#202020;margin:0 0 10px 0;font-weight:700;font-size:21px;text-transform:capitalize}.mec-event-grid-clean .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-clean .mec-event-date{font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:1px;background-color:#40d9f1;color:#fff;padding:3px 0;margin:0;text-align:center}.mec-event-grid-clean .mec-event-content p{font-size:15px;color:#9a9a9a;line-height:1.54}.mec-event-grid-clean img{margin-bottom:0;width:100%}.mec-event-grid-clean .event-grid-t2-head{margin-bottom:10px;color:#fff;padding:9px 14px 6px;text-align:left}.mec-event-grid-clean .event-grid-t2-head .mec-event-date{font-size:50px;line-height:50px;float:left;margin-right:11px}.mec-event-grid-clean .event-grid-t2-head .mec-event-month{text-transform:uppercase;font-size:17px;line-height:20px;padding-top:4px}.mec-event-grid-clean .event-grid-t2-head .mec-event-detail{font-size:12px}.mec-event-grid-clean .mec-event-sharing-wrap{left:0}.mec-event-grid-clean .mec-event-footer{position:relative;border-top:2px solid;padding:20px 0;margin:0 14px;text-align:left;background:0 0}.mec-event-grid-clean .mec-event-footer .mec-booking-button{right:0}.mec-event-grid-clean .row{margin-bottom:30px}.mec-event-grid-modern{margin-bottom:10px;max-width:none}.mec-event-grid-modern .mec-event-article{position:relative;border:1px solid #e2e2e2;text-align:center;margin-bottom:30px;padding:45px 15px 10px;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-modern .mec-event-content{background:#fff;color:#767676;padding:35px 15px 10px;text-align:left}.mec-event-grid-modern .mec-event-title{color:#202020;margin:0 0 10px 0;font-weight:700;font-size:24px;text-transform:none;letter-spacing:-1px}.mec-event-grid-modern .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-modern .mec-event-content p{font-size:15px;color:#9a9a9a;line-height:1.54}.mec-event-grid-modern img{margin-bottom:0;width:100%}.mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:9px 14px 6px;text-align:left}.mec-event-grid-modern .event-grid-modern-head .mec-event-date{font-size:50px;line-height:50px;float:left;margin-right:11px}.mec-event-grid-modern .event-grid-modern-head .mec-event-month{text-transform:uppercase;font-size:17px;line-height:20px;padding-top:4px}.mec-event-grid-modern .event-grid-modern-head .mec-event-detail{font-size:12px}.mec-event-grid-modern .event-grid-modern-head .mec-event-day{margin-top:9px;color:silver;font-family:Roboto,sans-serif;font-size:35px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.mec-event-grid-modern .mec-event-footer{position:relative;height:90px;padding:20px 0;border:none;margin:0 14px;text-align:left;background:0 0}.mec-event-grid-modern .mec-event-footer .mec-booking-button{right:auto;left:0}.mec-event-grid-modern .mec-event-sharing-wrap{left:auto;right:0}.mec-event-grid-modern .mec-event-sharing{left:auto;right:-6px}.mec-event-grid-modern .mec-event-sharing-wrap li{border-radius:55px}.mec-event-grid-modern .row{margin-bottom:0}@media only screen and (max-width:479px){.mec-event-grid-modern .mec-event-article{padding-bottom:30px}.mec-event-grid-modern .mec-event-sharing{top:60px;left:0;right:auto}.mec-event-grid-modern .mec-event-footer .mec-booking-button{top:0}}.mec-event-grid-colorful .mec-event-article{min-height:400px;border:none;box-shadow:none;background:#40d9f1;padding-top:25px;margin:0;color:#fff}.mec-event-grid-colorful .mec-event-content{background:0 0}.mec-event-grid-colorful .event-grid-modern-head,.mec-event-grid-colorful .event-grid-modern-head .mec-event-date,.mec-event-grid-colorful .event-grid-modern-head .mec-event-day,.mec-event-grid-colorful .mec-event-content p,.mec-event-grid-colorful .mec-event-sharing-wrap>li>a,.mec-event-grid-colorful .mec-event-title a{color:#fff}.mec-event-grid-colorful .mec-event-footer .mec-booking-button{border:none}.mec-event-grid-colorful .mec-event-sharing-wrap>li{border-color:#fff}.mec-event-grid-colorful .mec-event-sharing-wrap:hover>li{background:#333;border-color:#333}.mec-event-grid-colorful .mec-event-title a.mec-color-hover:hover{color:#fff;text-decoration:underline}.mec-event-grid-colorful .mec-event-title .event-color{display:none}.mec-event-grid-colorful div[class^=col-md-]{padding:0 1px 1px 0;margin:0}@media only screen and (min-width:768px){.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-day{font-size:26px}.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-month{font-size:15px}.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-date{font-size:50px}.mec-wrap.mec-sm959.mec-event-grid-colorful .mec-event-title{font-size:21px}.mec-wrap.mec-sm959.mec-event-grid-colorful .mec-event-content p{font-size:13px}}@media only screen and (min-width:768px) and (max-width:1200px){.mec-wrap.mec-sm959.mec-event-grid-colorful div[class^=col-md-]{width:50%}}.mec-event-list-minimal .mec-event-article{border-bottom:1px solid #efefef;padding:24px 0 16px}.mec-event-list-minimal .mec-wrap .col-md-9{padding:0}.mec-event-list-minimal .mec-event-date{position:relative;float:left;margin-right:30px;color:#fff;width:52px;padding:6px 4px 3px;text-align:center;text-transform:uppercase;border-radius:3px}.mec-event-list-minimal .mec-event-date span{display:block;font-size:24px;font-weight:700;text-align:center;margin-bottom:4px}.mec-event-list-minimal .mec-event-date:after{display:block;content:"";position:absolute;width:50px;left:1px;top:1px;height:30px;background:rgba(255,255,255,.1);box-shadow:0 4px 4px rgba(0,0,0,.02)}.mec-event-list-minimal .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;font-size:18px;text-transform:uppercase;letter-spacing:0;padding-top:5px}.mec-event-list-minimal .mec-event-detail{font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;font-family:Roboto,sans-serif}.mec-event-list-minimal .btn-wrapper{text-align:right;padding-right:0;padding-top:6px}.mec-event-list-minimal .btn-wrapper .mec-detail-button{border-bottom:0;margin-bottom:14px;margin-right:0;box-shadow:none}.mec-event-list-minimal a.mec-detail-button{text-align:center;display:inline-block;background:#ededed;color:#191919;padding:12px;border-radius:2px;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:2px;transition:all .24s ease}.mec-event-list-minimal a.mec-detail-button:hover{background:#292929;color:#fff}.vc_col-sm-4 .mec-event-list-minimal .mec-event-date,.vc_col-sm-6 .mec-event-list-minimal .mec-event-date{margin-right:12px}.vc_col-sm-4 .mec-event-list-minimal .mec-event-title,.vc_col-sm-6 .mec-event-list-minimal .mec-event-title{font-size:15px;letter-spacing:2px}@media only screen and (min-width:480px) and (max-width:767px){.mec-event-list-minimal .btn-wrapper{padding-left:0}.mec-event-list-minimal .mec-event-date{margin-right:10px}}@media only screen and (max-width:767px){.mec-event-list-minimal .btn-wrapper .mec-detail-button{display:block;text-align:center;margin:0;margin-top:16px;padding:8px}.mec-event-list-minimal .btn-wrapper{margin:12px 0}}@media only screen and (max-width:479px){.mec-event-list-minimal .mec-event-date{float:none;width:100%;margin-bottom:8px}.mec-event-list-minimal .mec-event-date span{display:inline;padding-right:25px;margin-right:7px;font-size:inherit}.mec-event-list-minimal .mec-event-date:after{width:45%;box-shadow:4px 0 4px rgba(0,0,0,.02)}.mec-event-list-minimal .btn-wrapper{text-align:center;padding-left:0}.mec-event-list-minimal{text-align:center}.mec-event-list-minimal .mec-event-detail{margin-bottom:10px}}.mec-wrap .mec-event-list-modern .mec-event-title{margin-top:0;margin-bottom:10px}.mec-event-list-modern .mec-event-article{border-bottom:1px solid #efefef;padding:30px 0 10px}.mec-event-list-modern .mec-event-article:last-child{border-bottom:none}.mec-event-list-modern .mec-event-title a{color:#191919;transition:all .24s ease;box-shadow:none}.mec-event-list-modern .mec-event-date{text-transform:uppercase;padding:10px 0}.mec-event-list-modern .mec-event-date .event-d{font-size:48px;display:table-cell;padding:10px 0 0}.mec-event-list-modern .mec-event-date .event-f{font-size:13px;display:table-cell;vertical-align:middle;padding-left:7px;font-weight:500;letter-spacing:3px;color:#777}.mec-event-list-modern .mec-event-detail{font-weight:300;color:#8a8a8a}.mec-event-list-modern .mec-event-date .event-da{margin-top:9px;color:silver;font-family:Roboto,sans-serif;font-size:28px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.mec-event-list-modern .mec-btn-wrapper .mec-booking-button{border-radius:1px;letter-spacing:2px;border:1px solid #e6e6e6;color:#333;background-color:#fff;padding:13px 20px;font-weight:700;font-size:11px;box-shadow:0 2px 0 0 rgba(0,0,0,.016);transition:all .28s ease}.mec-event-list-modern .mec-btn-wrapper .mec-booking-button:hover{border-color:#222;background:#222;color:#fff}.mec-event-list-modern .mec-event-title{font-weight:700;font-size:20px;text-transform:uppercase;letter-spacing:1px}.mec-event-list-modern .mec-event-detail{color:#9a9a9a;font-size:15px;font-weight:300;line-height:25px;font-family:Roboto,sans-serif}.mec-event-list-modern .mec-btn-wrapper{text-align:right;padding:10px 0;text-transform:uppercase}.mec-event-list-modern .mec-event-sharing{position:relative;margin:10px 0}.mec-event-list-modern .mec-event-sharing>li{display:inline-block;border:none;border-radius:50%;margin-right:3px}.mec-event-list-modern .mec-event-sharing>li:hover{display:inline-block}.mec-event-list-modern .mec-event-sharing>li:hover a i{color:#fff;background:#40d9f1;border-color:#40d9f1}.mec-event-list-modern .mec-event-sharing>li i{width:36px;display:inline-block;line-height:35px;color:#767676;text-align:center;border-radius:50%;border:1px solid #ddd;font-size:14px}.mec-event-list-modern .mec-event-sharing .mec-event-share:hover .mec-event-sharing-icon{background:#40d9f1;border-color:#40d9f1;cursor:pointer;border-radius:50%}.mec-event-list-modern .mec-event-sharing li:hover a i{background:#40d9f1}@media only screen and (min-width:768px){.mec-event-list-modern .mec-event-article{position:relative;min-height:160px;overflow:hidden}.mec-event-list-modern .col-md-2.col-sm-2{width:210px;position:absolute;left:0;top:20px}.mec-event-list-modern .col-md-4.col-sm-4.mec-btn-wrapper{width:180px;padding:0;position:absolute;right:0;top:30%}.mec-event-list-modern .col-md-6.col-sm-6{width:100%;padding-left:225px;padding-right:195px}}@media only screen and (max-width:767px){.mec-event-list-modern .mec-btn-wrapper .mec-booking-button{letter-spacing:1px;border:1px solid #e1e1e1;padding:8px 16px}.mec-event-list-modern .mec-btn-wrapper{padding:0 0 12px}.mec-event-list-modern .mec-event-sharing{margin-bottom:0}}.mec-event-grid-minimal .mec-event-article{margin:15px 0;min-height:80px;display:table}.mec-event-grid-minimal .event-detail-wrap{display:table-cell;vertical-align:middle}.mec-event-grid-minimal .mec-event-date{width:70px;float:left;margin-right:20px;padding:12px 16px 10px;text-align:center;text-transform:uppercase;border-radius:4px;border:1px solid #e6e6e6;transition:all .37s ease-in-out;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-minimal .mec-event-date span{display:block;font-size:24px;font-weight:700;text-align:center;margin-bottom:4px;color:#2a2a2a;transition:color .3s ease}.mec-event-grid-minimal .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;line-height:21px;font-size:16px;text-transform:uppercase;transition:color .3s ease}.mec-event-grid-minimal .mec-event-title a{color:#191919;transition:color .3s ease}.mec-event-grid-minimal .mec-event-detail{font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;font-family:Roboto,sans-serif}.mec-event-grid-minimal .mec-event-date:hover{color:#fff}.mec-event-grid-minimal .mec-event-date:hover span{color:#fff}.mec-event-list-classic .mec-event-article{padding:12px 0;margin-bottom:20px}.mec-event-list-classic .mec-event-image{float:left;width:86px;margin-right:20px}.mec-event-list-classic .mec-event-date{font-weight:400;font-size:13px;letter-spacing:0;line-height:18px}.mec-event-list-classic .mec-event-date span{font-weight:500;margin-bottom:6px}.mec-event-list-classic .mec-event-title{font-size:15px;margin:10px 0 12px;font-weight:700;text-transform:uppercase}.mec-event-list-classic .mec-event-title a{color:#494949;transition:color .3s ease}.mec-event-list-classic .mec-event-detail{color:#777;font-weight:400;line-height:12px;font-size:12px;overflow:hidden}.mec-event-list-classic a.magicmore{padding:10px 16px;color:#fff;background:#222;letter-spacing:2px;font-size:11px}.mec-event-list-classic a.magicmore:after{content:"";display:none}.mec-event-list-classic a.magicmore:hover{color:#40d9f1}.mec-event-grid-simple .mec-event-article{position:relative;margin-bottom:30px}.mec-event-grid-simple .mec-event-article:after{border-right:1px solid #e6e6e6;height:60px;position:absolute;top:50%;margin-top:-30px;right:-1px}.mec-event-grid-simple .row div:last-child .mec-event-article:after{border:none}.mec-event-grid-simple .row{margin:15px 0 30px;text-align:center}.mec-event-grid-simple .mec-event-date{padding:0;margin:0;text-transform:capitalize;font-size:12px;font-weight:700}.mec-event-grid-simple .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;line-height:21px;font-size:15px;padding-top:5px;text-transform:uppercase;transition:color .37s ease}.mec-event-grid-simple .mec-event-title a{color:#494949;transition:color .3s ease}.mec-event-grid-simple .mec-event-detail{font-family:Roboto,sans-serif;font-weight:400;line-height:1;letter-spacing:0;font-size:13px;color:#777}.mec-event-grid-simple:hover .mec-event-title{color:#40d9f1}.mec-event-grid-simple:hover .mec-event-date{background:0 0}.event-last:after{display:none}@media only screen and (max-width:767px){.mec-event-grid-simple .mec-event-article{padding-bottom:20px;margin-bottom:20px;border-bottom:1px solid #eee}.mec-event-grid-simple .mec-event-article:after{border:none}}.mec-event-grid-novel .mec-event-article{position:relative;margin-bottom:30px;padding:60px 5% 60px 7%;border:1px solid rgba(255,255,255,.12);border-radius:10px;background-color:#0050fd;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease;z-index:1}.mec-event-grid-novel .mec-event-article .novel-grad-bg{position:absolute;top:0;left:0;width:100%;height:100%;border-radius:10px;opacity:0;z-index:-1;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease}.mec-event-grid-novel .mec-event-article:hover{-webkit-box-shadow:0 13px 36px 0 rgba(0,0,0,.23);box-shadow:0 13px 36px 0 rgba(0,0,0,.23);border-color:transparent}.mec-event-grid-novel .mec-event-article:hover .novel-grad-bg{background-image:-webkit-gradient(linear,left top,right top,from(#262e32),to(#0e1015));background-image:-webkit-linear-gradient(left,#262e32 0,#0e1015 100%);background-image:-o-linear-gradient(left,#262e32 0,#0e1015 100%);background-image:linear-gradient(90deg,#262e32 0,#0e1015 100%);opacity:1}.mec-event-grid-novel .mec-event-image{float:left;width:150px;height:150px}.mec-event-grid-novel .mec-event-image img{width:150px;height:150px;border-radius:50%}.mec-event-grid-novel .mec-event-detail-wrap{margin-left:200px}.mec-event-grid-novel .mec-event-content h4{position:relative;margin-bottom:10px;display:inline-block}.mec-event-grid-novel .mec-event-content h4 a{font-size:24px;line-height:35px;color:#fafcff}.mec-event-grid-novel .mec-event-content h4::before{content:'';position:absolute;top:8px;left:-30px;width:17px;height:17px;background:#5cd0ed;opacity:.4;border-radius:50%}.mec-event-grid-novel .mec-event-content h4::after{content:'';position:absolute;top:12px;left:-26px;width:9px;height:9px;background:#5cd0ed;border-radius:50%}.mec-event-grid-novel .mec-event-address,.mec-event-grid-novel .mec-event-detail,.mec-event-grid-novel .mec-event-month{position:relative;padding-left:35px;font-size:15px;line-height:30px;color:rgba(255,255,255,.4)}.mec-event-grid-novel .mec-event-address::before,.mec-event-grid-novel .mec-event-detail::before,.mec-event-grid-novel .mec-event-month::before{position:absolute;top:6px;left:6px;font-size:17px;font-family:simple-line-icons;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1}.mec-event-grid-novel .mec-event-month::before{content:"\e075"}.mec-event-grid-novel .mec-event-detail::before{content:"\e081"}.mec-event-grid-novel .mec-event-address::before{content:"\e096"}.mec-event-grid-novel .mec-event-footer{clear:both;padding:20px 0;border-top:none;background:0 0}.mec-event-grid-novel .mec-event-footer .mec-booking-button{right:auto;left:0;height:42px;width:148px;padding:0 20px;font-size:14px;font-weight:400;line-height:42px;text-align:center;color:#fff;background:0 0;border-color:rgba(255,255,255,.1);border-radius:50px}.mec-event-grid-novel .mec-event-footer .mec-booking-button:hover{background-color:rgba(255,255,255,.1)}.mec-event-grid-novel .mec-event-sharing-wrap{left:175px;cursor:pointer}.mec-event-grid-novel .mec-event-sharing-wrap>li{border-color:rgba(255,255,255,.1);border-radius:50%}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing{top:-5px;left:0;padding:5px 10px 2px 50px;min-width:150px;width:inherit;height:37px;background-color:rgba(255,255,255,.1);-webkit-box-shadow:none;box-shadow:none;border:none;border-radius:50px}.mec-event-grid-novel .mec-event-sharing-wrap:hover>li{background-color:rgba(255,255,255,.1)}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing::after,.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing::before{display:none}.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon,.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon a,.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li i{display:inline}.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon a{padding:0 10px}.mec-event-grid-novel .mec-event-sharing-wrap>li a{color:#fff}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li a{color:rgba(255,255,255,.4)}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li a:hover{color:rgba(255,255,255,1)}@media only screen and (max-width:1200px){.mec-event-grid-novel .row .col-md-6.col-sm-6{width:100%;float:none}.mec-event-grid-novel .mec-event-image{float:none;margin-top:-20px;margin-bottom:20px}.mec-event-grid-novel .mec-event-detail-wrap{margin-left:20px}.mec-event-grid-novel .mec-event-footer{margin-top:30px}}@media only screen and (max-width:767px){.mec-event-grid-novel .mec-event-footer{margin-top:0;padding-top:30px;margin-bottom:24px}.mec-event-grid-novel .mec-event-footer .mec-booking-button{display:block;position:relative}.mec-event-grid-novel .mec-event-sharing-wrap{left:0;bottom:-55px}.mec-event-grid-novel .mec-event-content h4 a{font-size:20px;line-height:1.3}}.mec-event-cover-modern{position:relative}.mec-event-cover-modern .mec-event-cover-a{background:0 0;position:absolute;color:#fff;bottom:0;left:0;text-decoration:none}.mec-event-cover-modern .mec-event-cover-a .mec-event-overlay{transition:all .5s;opacity:.8;width:100%;height:100%;position:absolute}.mec-event-cover-modern .mec-event-cover-a:hover .mec-event-overlay{opacity:1}.mec-event-cover-modern .mec-event-detail{padding:40px;position:relative}.mec-event-cover-modern .mec-event-cover-a:hover .mec-event-tag{color:#333;transition:all .5s}.mec-event-cover-modern .mec-event-cover-a .mec-event-title:hover{text-decoration:underline}.mec-event-cover-modern .mec-event-tag{background:#fff;display:inline-block;padding:5px 9px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:24px}.mec-event-cover-modern .mec-event-date{text-transform:uppercase;font-size:17px;font-weight:300}.mec-event-cover-modern .mec-event-title{color:#fff;text-transform:uppercase;font-size:40px;font-weight:700;margin:6px 0}.mec-event-cover-modern .mec-event-place{font-weight:400;font-size:18px;font-family:Roboto,sans-serif}@media only screen and (max-width:767px){.mec-event-cover-modern .mec-event-cover-a{width:100%}}.mec-event-cover-classic{position:relative;overflow:hidden;background:#fff;padding:6px;border:1px solid #e8e8e8}.mec-event-cover-classic .mec-event-overlay{position:absolute;left:6px;right:6px;bottom:6px;top:6px;width:auto;height:auto;background-color:rgba(36,36,36,.4);transition:all .33s ease-in-out}.mec-event-cover-classic:hover .mec-event-overlay{background-color:rgba(36,36,36,.6)}.mec-event-cover-classic .mec-event-content{font-size:15px;color:#fff;position:absolute;bottom:0;padding:50px 35px;transition:all .33s ease-in-out}.mec-event-cover-classic .mec-event-date{font-size:14px;text-transform:uppercase;font-weight:400;line-height:1.6}.mec-event-cover-classic .mec-event-date span{display:block;font-weight:700;font-size:16px}.mec-event-cover-classic .mec-event-title{color:#fff;margin:20px 0 38px;font-size:24px;font-weight:700;text-transform:uppercase;font-style:normal}.mec-event-cover-classic .mec-btn-wrapper{text-align:left}.mec-event-cover-classic .mec-event-icon{font-size:18px;float:left;margin-right:14px;color:#fff;padding:13px}.mec-event-cover-classic .mec-event-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:12px 20px;letter-spacing:3px;font-size:12px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none}.mec-event-cover-classic .mec-event-button:hover{color:#191919;background-color:#fff;border-color:#fff;border-radius:1px}.mec-event-cover-classic .mec-event-image img{min-width:100%}@media only screen and (max-width:960px){.mec-event-cover-classic .mec-event-content{padding:20px}.mec-event-cover-classic .mec-event-button{font-size:11px;padding:7px 10px;letter-spacing:1px}.mec-event-cover-classic .mec-event-title{font-size:19px;margin:15px 0 25px}.mec-event-cover-classic .mec-event-date{font-size:12px}}@media only screen and (max-width:767px){.mec-event-cover-classic{margin-bottom:30px}}@media only screen and (max-width:479px){.mec-event-cover-classic .mec-event-content{padding:15px;font-size:15px}.mec-event-cover-classic .mec-event-title{font-size:15px;margin:10px 0}.mec-event-cover-classic .mec-event-button{font-size:10px;padding:6px;letter-spacing:1px}.mec-event-cover-classic .mec-event-icon{padding:10px}}.mec-load-more-wrap{text-align:center;display:block;width:100%;padding-top:20px;text-align:center;position:relative}.mec-load-more-button{box-shadow:none;transition:all .21s ease;font-size:12px;font-weight:500;letter-spacing:1px;text-transform:uppercase;background:#fff;color:#767676;border:2px solid #e8e8e8;border-radius:50px;padding:0 28px;margin-bottom:20px;cursor:pointer;line-height:40px;font-family:Montserrat,Helvetica,Arial,sans-serif;height:42px;display:inline-block}.mec-load-more-button:hover{background:#191919;color:#fff;border-color:#191919}.mec-load-more-loading{content:url(../img/ajax-loader.gif);cursor:wait;background:0 0;border-style:none}.mec-load-more-loading:hover{background:0 0}.mec-modal-preloader,.mec-month-navigator-loading{width:100%;height:100%;background:no-repeat rgba(255,255,255,.88) url(../img/ajax-loader.gif) center;border-style:none;position:fixed;left:0;right:0;bottom:0;top:0;z-index:9}.mec-event-calendar-classic .mec-calendar-side .mec-calendar-table{min-height:1024px}.mec-calendar-side .mec-calendar-table{min-height:450px}.mec-skin-weekly-view-events-container.mec-month-navigator-loading{margin-top:0}.mec-calendar.mec-event-calendar-classic .mec-calendar-side{display:block}.mec-skin-daily-view-events-container.mec-month-navigator-loading{margin-top:0}@media only screen and (min-width:961px){.mec-wrap.mec-sm959 .mec-calendar-side .mec-calendar-table{min-height:1px}}@media only screen and (max-width:479px){.mec-calendar-side .mec-calendar-table{min-height:1px}}.mec-event-cover-clean{position:relative;border:1px solid #e6e6e6;padding:8px}.mec-event-cover-clean .mec-event-overlay{height:100%;background-color:rgba(36,36,36,.4);position:absolute;width:100%;left:0;border:8px solid #fff;top:0;transition:all .5s ease-in-out}.mec-event-cover-clean .mec-event-content{color:#fff;position:absolute;bottom:20px;padding:40px 60px;transition:all .5s ease-in-out}.mec-event-cover-clean .mec-event-title{color:#fff;font-weight:700;margin:46px 0 19px;font-size:29px;text-transform:uppercase;text-shadow:0 0 1px rgba(0,0,0,.5)}.mec-event-cover-clean .mec-event-title a{color:#fff;transition:all .5s;text-decoration:none;outline:0;border:none;box-shadow:none}.mec-event-cover-clean .mec-event-title a:hover{text-decoration:underline}.mec-event-cover-clean .mec-event-date{position:absolute;top:-20px;right:60px;color:#fff;width:60px;padding:14px 10px;z-index:1}.mec-event-cover-clean .mec-event-date div{text-align:center;text-transform:uppercase;letter-spacing:1px;line-height:16px}.mec-event-cover-clean .mec-event-date .dday{padding-bottom:15px;border-bottom:1px solid rgba(255,255,255,.5);margin-bottom:13px;font-size:24px}.mec-event-cover-clean .mec-event-date .dmonth{letter-spacing:2px}.mec-event-cover-clean .mec-event-place{font-size:18px;font-family:Roboto,sans-serif}.mec-event-cover-clean .mec-event-image img{width:100%}@media only screen and (max-width:768px){.mec-event-cover-clean .mec-event-content{padding:20px;bottom:5px}.mec-event-cover-clean .mec-event-title{font-size:23px}.mec-event-cover-clean .mec-event-date{right:20px;padding:10px;width:50px}}@media only screen and (max-width:479px){.mec-event-cover-clean .mec-event-content{padding:10px}.mec-event-cover-clean .mec-event-title{font-size:19px;padding-right:25px}.mec-event-cover-clean .mec-event-date{right:-20px;top:-10px}.mec-event-cover-clean .mec-event-detail{font-size:12px}}.mec-month-divider{text-align:center;margin:60px 0 40px 0}.widget .mec-month-divider{margin:10px 0}.mec-month-divider span{text-transform:uppercase;font-size:22px;font-weight:700;padding-bottom:5px;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative}.mec-month-divider span:before{border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-30px;left:50%;width:60px}.widget .mec-month-divider span{font-size:13px}.mec-event-list-standard .mec-events-pagination{margin-top:60px;border-top:4px solid #ebebeb;min-height:80px;padding-top:20px}.mec-event-list-standard .mec-events-pagination .mec-events-pag-previous{float:left;margin-left:0}.mec-event-list-standard .mec-events-pagination .mec-events-pag-next{float:right;margin-right:0}.mec-event-list-standard .mec-event-article{position:relative;display:block;margin-bottom:25px;border:1px solid #e9e9e9;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-list-standard .mec-topsec{display:table;width:100%}.mec-event-list-standard .col-md-3.mec-event-image-wrap{padding-left:0}.mec-event-list-standard .mec-event-content{padding-top:15px;padding-right:30px}.mec-event-list-standard .mec-event-title{font-size:29px;font-weight:700;letter-spacing:-1px;margin:0 0 10px}.mec-event-list-standard .mec-event-title a{color:#292929;transition:color .3s ease}.mec-event-list-standard .mec-col-table-c{display:table-cell;height:100%;vertical-align:middle;float:none!important}.mec-event-list-standard .mec-col-table-c.mec-event-meta-wrap{padding-top:15px}.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{vertical-align:top}.mec-topsec .mec-event-image{line-height:1px}.mec-event-list-standard .mec-event-meta-wrap{border-left:1px solid #eee}.mec-event-list-standard .mec-time-details{text-transform:uppercase;font-size:11px;font-weight:300;padding-top:0;text-align:left;padding-left:30px}.mec-event-list-standard .mec-event-meta .mec-event-address{font-style:normal;letter-spacing:0;font-size:13px;color:#8a8a8a}.mec-event-list-standard .mec-event-meta span.mec-event-d,.mec-event-list-standard .mec-event-meta span.mec-event-m{font-size:17px;font-weight:700;padding-right:6px;color:#444;text-transform:uppercase}.mec-event-list-standard .mec-date-details,.mec-event-list-standard .mec-time-details,.mec-event-list-standard .mec-venue-details{position:relative;padding-left:28px;margin-bottom:10px}.mec-event-list-standard .mec-date-details:before,.mec-event-list-standard .mec-time-details:before,.mec-event-list-standard .mec-venue-details:before{content:"\f041";font-family:fontawesome;position:absolute;left:6px;font-size:15px}.mec-event-list-standard .mec-date-details:before{content:"\f073"}.mec-event-list-standard .mec-time-details:before{content:"\f017"}.mec-event-list-minimal .mec-event-title a{color:#292929;transition:color .3s ease}.mec-event-meta-wrap .mec-price-details{margin-bottom:10px}.mec-price-details i{margin-right:5px;vertical-align:text-top}.mec-event-meta-wrap .mec-event-meta .mec-price-details i:before{font-size:15px}@media only screen and (max-width:960px){.mec-event-list-standard .mec-topsec{display:block}.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{display:block;width:40%}.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap{display:block;min-height:230px}.mec-event-list-standard .mec-event-meta-wrap{display:block;border-left:none;border-top:1px solid #eee;width:100%;float:none;padding-top:20px}}@media only screen and (min-width:480px) and (max-width:960px){.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap,.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{display:table-cell}}@media only screen and (max-width:479px){.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap,.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap img{float:none;width:100%;padding:0}.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap{padding:10px 10px 10px 30px}}.mec-wrap .mec-events-cal-links{margin-bottom:0}.mec-single-event #mec-wrap{padding:0;margin-top:35px}.mec-wrap .mec-single-title{margin-top:0;margin-bottom:30px;font-weight:700;font-size:33px}.mec-single-event .mec-event-content{padding:40px 0 30px;margin-bottom:10px}.mec-single-event .mec-events-meta-group-booking,.mec-single-event .mec-frontbox{margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-wrap #main-content{overflow:hidden;padding-top:35px}.mec-single-event .mec-map-get-direction-address-cnt{position:relative}.mec-single-event .mec-map-get-direction-address-cnt input.mec-map-get-direction-address{width:100%;height:46px;padding:13px 10px;margin-bottom:0;background:#fcfcfc;border:1px solid #e0e0e0;border-radius:0;box-shadow:inset 0 2px 5px rgba(0,0,0,.081)}.mec-single-event .mec-map-get-direction-address-cnt input.mec-map-get-direction-address:focus{color:#444;background:#fff;border-color:#b0b0b0;box-shadow:0 0 3px rgba(0,0,0,.2)}.mec-single-event .mec-map-get-direction-btn-cnt input{width:100%}.mec-single-event .mec-map-get-direction-reset{position:absolute;z-index:2;top:5px;right:10px;font-size:11px;cursor:pointer}.mec-events-meta-group-tags{margin-top:20px}.mec-events-meta-group-tags a{display:inline-block;color:#444;font-size:11px;text-transform:uppercase;letter-spacing:1.5px;font-weight:500;padding:3px 7px;border:1px solid #ddd;border-radius:2px;background:#fff;margin:1px 3px}.mec-events-meta-group-tags a:hover{text-decoration:underline;background:#f9f9f9}.mec-local-time-details li{list-style:none}.mec-single-event:not(.mec-single-modern) .mec-local-time-details{background:#f7f7f7;padding:12px 14px 8px;margin-bottom:12px;vertical-align:baseline;position:relative;border:none}.mec-single-event:not(.mec-single-modern) .mec-local-time-details ul{margin:0;padding-left:35px}.mec-single-event:not(.mec-single-modern) .mec-local-time-details h3{border:none;padding-left:15px}.mec-single-event:not(.mec-single-modern) .mec-local-time-details h3:before{display:none}.mec-single-event.mec-single-modern i.mec-sl-speedometer{display:none}.mec-single-event .mec-events-meta-group-booking{padding-bottom:30px}.mec-single-event .mec-events-meta-group-booking ul{list-style:none;margin-left:0;padding-left:0}.mec-single-event .mec-events-meta-group-booking ul li{padding:0;list-style:none;margin-top:40px}.mec-single-event .mec-events-meta-group-booking h4{margin-bottom:20px;font-size:23px;font-weight:700}.mec-single-event .mec-events-meta-group-booking li h4{font-size:19px}.mec-single-event .mec-events-meta-group-booking button,.mec-single-event .mec-events-meta-group-booking input{border-radius:0;margin-bottom:6px}.mec-single-event .mec-events-meta-group-booking button{min-width:170px;margin-top:5px}.mec-single-event .mec-events-meta-group-booking button{margin-left:15px}.mec-single-event .mec-book-form-coupon button{margin-left:0}.mec-single-event .mec-book-form-gateway-checkout button{margin-left:0}.mec-single-event .mec-book-first,.mec-single-event .mec-event-tickets-list{padding-left:15px;padding-right:15px}.mec-single-event label.mec-fill-attendees{margin-left:15px!important}.mec-single-event .mec-events-meta-group-booking .mec-event-ticket-available{display:block;margin-bottom:20px;margin-top:-17px;font-size:11px;color:#8a8a8a}.mec-single-event .mec-events-meta-group-booking .mec-book-price-total{display:inline-block;margin-bottom:10px;font-size:26px;color:#39c36e;font-weight:700;padding:10px 0}.mec-single-event .mec-events-meta-group-booking form{margin:0}.mec-single-event .mec-events-meta-group-booking h5 span,.mec-single-event .mec-events-meta-group-booking label{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:3px 0;display:block;clear:none;padding:5px 1em 3px 0}.mec-single-event .mec-events-meta-group-booking h5 span{display:inline-block}.mec-single-event .mec-events-meta-group-booking h5 span.mec-ticket-variation-name{padding-right:5px;text-transform:capitalize}.mec-single-event .mec-events-meta-group-booking input::-webkit-input-placeholder{color:#aaa}.mec-single-event .mec-events-meta-group-booking input:-moz-placeholder{color:#aaa}.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking input[type=email],.mec-single-event .mec-events-meta-group-booking input[type=number],.mec-single-event .mec-events-meta-group-booking input[type=password],.mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-single-event .mec-events-meta-group-booking input[type=text],.mec-single-event .mec-events-meta-group-booking select,.mec-single-event .mec-events-meta-group-booking textarea{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:330px;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both}.wbmec-mandatory{padding-left:5px;font-size:14px}.mec-single-event .mec-events-meta-group-booking .mec-red-notification input,.mec-single-event .mec-events-meta-group-booking .mec-red-notification select,.mec-single-event .mec-events-meta-group-booking .mec-red-notification textarea{border:1px solid #ff3c3c}.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=checkbox],.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=radio]{outline:1px solid #ff3c3c}@media only screen and (max-width:479px){.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking input[type=email],.mec-single-event .mec-events-meta-group-booking input[type=number],.mec-single-event .mec-events-meta-group-booking input[type=password],.mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-single-event .mec-events-meta-group-booking input[type=text],.mec-single-event .mec-events-meta-group-booking select,.mec-single-event .mec-events-meta-group-booking textarea{width:100%}}.mec-single-event .mec-events-meta-group-booking input[type=email]:focus,.mec-single-event .mec-events-meta-group-booking input[type=number]:focus,.mec-single-event .mec-events-meta-group-booking input[type=password]:focus,.mec-single-event .mec-events-meta-group-booking input[type=tel]:focus,.mec-single-event .mec-events-meta-group-booking input[type=text]:.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking select:focus,.mec-single-event .mec-events-meta-group-booking textarea:focus,focus{border:1px solid #aaa;color:#444;background:#fff;-moz-box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);box-shadow:0 0 3px rgba(0,0,0,.2);outline:0}.mec-single-event .mec-events-meta-group-booking input[type=checkbox],.mec-single-event .mec-events-meta-group-booking input[type=radio]{margin-right:6px;margin-top:5px;min-height:20px;clear:none;margin:0 0 0 2px}.lity-container .mec-events-meta-group-booking input[type=radio]:before,.mec-single-event .mec-events-meta-group-booking input[type=radio]:before{content:"";display:inline-block;background:#fff;border-radius:18px;width:18px;height:18px;margin:-1px 0 0 -3px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32)}.lity-container .mec-events-meta-group-booking input[type=radio]:checked:before,.mec-single-event .mec-events-meta-group-booking input[type=radio]:checked:before{border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff}.lity-container .mec-events-meta-group-booking input[type=radio],.mec-single-event .mec-events-meta-group-booking input[type=radio]{min-height:0;margin:0;margin-right:6px}.mec-single-event .mec-events-meta-group-booking input[type=checkbox]{float:left}.lity-container .mec-events-meta-group-booking .mec_book_first_for_all,.mec-single-event .mec-events-meta-group-booking .mec_book_first_for_all{display:none}.mec-events-meta-group-booking ul.mec-book-price-details{list-style:none;border:1px solid #eee;padding:0;overflow:hidden}.mec-events-meta-group-booking ul.mec-book-price-details li{font-size:15px;color:#a9a9a9;list-style:none;padding:13px 18px;margin:0;float:left;border-right:1px solid #eee}.mec-events-meta-group-booking ul.mec-book-price-details li:last-child{border-right:none}.mec-events-meta-group-booking ul.mec-book-price-details li span.mec-book-price-detail-amount{font-weight:700;font-size:21px;color:#222}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label{height:14px;width:14px;background-color:transparent;border:1px solid #d4d4d4;position:relative;display:inline-block;-moz-transition:border-color ease .2s;-o-transition:border-color ease .2s;-webkit-transition:border-color ease .2s;transition:border-color ease .2s;cursor:pointer;box-shadow:0 2px 16px -2px rgba(0,0,0,.2);vertical-align:middle;margin-right:3px;margin-top:-2px}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label{border-color:#008aff;box-shadow:0 2px 14px -3px #008aff}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:after,.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:before,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:after,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:before{position:absolute;height:0;width:1px;background-color:#008aff;display:inline-block;-moz-transform-origin:left top;-ms-transform-origin:left top;-o-transform-origin:left top;-webkit-transform-origin:left top;transform-origin:left top;content:'';-webkit-transition:opacity ease .5;-moz-transition:opacity ease .5;transition:opacity ease .5}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:before,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:before{top:8px;left:7px;box-shadow:0 0 0 2px #fff;-moz-transform:rotate(-145deg);-ms-transform:rotate(-145deg);-o-transform:rotate(-145deg);-webkit-transform:rotate(-145deg);transform:rotate(-145deg)}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::before,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::before{height:12px;-moz-animation:dothatopcheck .16s ease 0s forwards;-o-animation:dothatopcheck .16s ease 0s forwards;-webkit-animation:dothatopcheck .16s ease 0s forwards;animation:dothatopcheck .16s ease 0s forwards}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:after,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:after{top:6px;left:3px;-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::after,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::after{-moz-animation:dothabottomcheck 80ms ease 0s forwards;-o-animation:dothabottomcheck 80ms ease 0s forwards;-webkit-animation:dothabottomcheck 80ms ease 0s forwards;animation:dothabottomcheck 80ms ease 0s forwards;height:4px}.mec-single-event .mec-events-meta-group-booking button[type=submit]:after,.mec-single-event a.button:after{display:none;font-family:simple-line-icons;content:"\e098";margin-left:4px;-webkit-animation:rotating 1.2s linear infinite;-moz-animation:rotating 1.2s linear infinite;-ms-animation:rotating 1.2s linear infinite;-o-animation:rotating 1.2s linear infinite;animation:rotating 1.2s linear infinite}.mec-single-event .mec-events-meta-group-booking button[type=submit].loading:after,.mec-single-event a.button.loading:after{display:inline-block}.mec-single-event .mec-event-export-module{display:block}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul{display:table;width:100%}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li{display:table-cell}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li:last-child{text-align:right}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a:hover{color:#fff}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul{padding-left:0;margin:15px 5px}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting{padding-left:0;margin:0}.mec-ticket-price{margin-left:10px;font-size:13px;font-weight:300}.mec-book-reg-field-checkbox label,.mec-book-reg-field-radio label{line-height:1.36}.mec-book-reg-field-checkbox input[type=checkbox],.mec-book-reg-field-radio input[type=radio]{float:left;margin-right:5px!important}.mec-ticket-available-spots .mec-event-ticket-description,.mec-ticket-available-spots .mec-event-ticket-price{font-size:11px}.mec-book-ticket-container .mec-reg-mandatory:nth-child(2) label:after,.mec-book-ticket-container .mec-reg-mandatory:nth-child(3) label:after,.mec-book-ticket-container .wbmec-mandatory{content:"";color:red;width:50px;height:50px;font-size:14px;padding-left:5px}@media only screen and (max-width:767px){.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li{width:100%;min-height:40px;margin-bottom:15px;text-align:center;float:none;display:block}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a{width:100%;padding-left:0;padding-right:0;text-align:center;display:block;font-size:12px}}.mec-single-event .mec-events-meta-group{margin-bottom:0}@media only screen and (max-width:767px){.mec-single-event .mec-events-meta-group-booking{margin-bottom:30px}}.mec-single-event .mec-event-meta dt,.mec-single-event .mec-event-meta h3{text-transform:uppercase;font-size:16px;font-weight:700;padding-bottom:5px;display:inline;color:#000;padding-left:10px}.mec-single-event .mec-event-meta h6{text-transform:uppercase;font-size:13px;padding-bottom:5px;display:inline;color:#222;padding-left:0}.mec-single-event .mec-event-meta .mec-events-event-categories a,.mec-single-event .mec-event-meta dd{font-size:14px;color:#8d8d8d}.mec-single-event .mec-event-meta .mec-location dd.author{color:#3c3b3b}.mec-single-event .mec-event-meta dd{margin:0;padding-left:35px}.mec-single-event .mec-event-meta dd.mec-events-event-categories{min-height:35px;line-height:35px}.mec-single-event .mec-event-meta dd.mec-events-event-categories:first-of-type{padding-top:5px}.mec-single-event .mec-event-meta dd.mec-events-event-categories:last-of-type{border-bottom:0}.mec-single-event .mec-event-meta dd a{color:#8d8d8d;transition:all .2s ease}.mec-single-event .mec-event-meta dd a i:before{font-size:16px!important}.mec-single-event .mec-event-meta dd a i{vertical-align:top;margin-right:8px}.mec-single-event .mec-event-meta dl{margin-bottom:0}.mec-single-event .mec-event-meta .mec-events-event-cost{font-size:18px}.mec-single-event .mec-event-meta .mec-events-address{color:#a9a9a9;margin-bottom:3px}.mec-single-event .mec-event-meta .mec-events-meta-group-venue .author{margin-bottom:0;color:#8d8d8d;font-size:13px}.mec-single-event .mec-events-event-image{margin-bottom:0}.mec-single-event h2.mec-single-event-title{margin-bottom:30px;font-weight:700;font-size:33px}.mec-single-event .mec-booking-button{border-bottom:none;letter-spacing:.5px;line-height:48px;height:76px;transition:all .5s ease;color:#fff;padding:16px;display:block;text-align:center;font-size:16px}.mec-single-event .mec-booking-button:hover{background-color:#101010!important}.mec-single-event .mec-event-tags a{display:inline-block;color:#444;font-size:11px;text-transform:uppercase;letter-spacing:1.5px;font-weight:500;padding:3px 7px;border:1px solid #ddd;border-radius:2px;background:#fff;margin:1px 3px}.mec-single-event .mec-event-tags:before{font-size:24px;color:#303030;margin-right:5px;content:"\f02c";font-family:fontawesome}.mec-single-event .mec-event-tags{padding-top:13px}.mec-single-event .mec-event-sharing{margin:30px 0 10px}.mec-region.mec-events-abbr,.mec-single-event .mec-street-address{font-style:normal;font-size:13px}.mec-events-meta-group.mec-events-meta-group-venue:before,.mec-single-event-date:before,.mec-single-event-time:before{color:#40d9f1}.mec-single-event .mec-event-social{text-align:center}.mec-single-event .mec-event-social h3{text-transform:uppercase;font-size:15px;font-weight:700;padding-bottom:5px;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative}.mec-single-event .mec-social-single:before{padding:13px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:39px}.mec-single-event .mec-event-social .event-sharing{margin-top:30px}.mec-single-event .mec-event-social ul{list-style:none;margin-left:0}.mec-single-event .mec-event-social li.mec-event-social-icon{display:inline-block}.mec-single-event .mec-event-social li.mec-event-social-icon a{display:inline-block;color:#fff;width:40px;height:40px;padding:9px;font-size:16px;margin-right:5px}.mec-single-event .mec-event-social a.facebook{background:#3b5996}.mec-single-event .mec-event-social a.facebook:hover{background:#28385c}.mec-single-event .mec-event-social a.twitter{background:#00acee}.mec-single-event .mec-event-social a.twitter:hover{background:#0087bd}.mec-single-event .mec-event-social a.vimeo{background:#0dadd6}.mec-single-event .mec-event-social a.vimeo:hover{background:#0a85a3}.mec-single-event .mec-event-social a.dribble{background:#d53e68}.mec-single-event .mec-event-social a.dribble:hover{background:#bf4c78}.mec-single-event .mec-event-social a.youtube{background:#cb322c}.mec-single-event .mec-event-social a.youtube:hover{background:#992622}.mec-single-event .mec-event-social a.pinterest{background:#cb2027}.mec-single-event .mec-event-social a.pinterest:hover{background:#99181d}.mec-single-event .mec-event-social a.google{background:#c3391c}.mec-single-event .mec-event-social a.google:hover{background:#99181f}.mec-single-event .mec-event-social a.linkedin{background:#0073b2}.mec-single-event .mec-event-social a.linkedin:hover{background:#005380}.mec-single-event .mec-event-social a.email{background:#ff5d5e}.mec-single-event .mec-event-social a.email:hover{background:#cc4949}.mec-single-event .mec-event-social a.vk{background:#5b88bd}.mec-single-event .mec-event-social a.vk:hover{background:#3d608a}.mec-single-event .mec-event-social a.rss{background:#f29a1d}.mec-single-event .mec-event-social a.rss:hover{background:#cc7400}.mec-single-event .mec-event-social a.instagram{background:#457399}.mec-single-event .mec-event-social a.instagram:hover{background:#2e4d66}.mec-single-event .mec-event-social a.other-social{background:#ff5d5e}.mec-single-event .mec-event-social a.other-social:hover{background:#cc4949}.mec-single-event .mec-event-social{text-align:center}.mec-single-event .mec-events-meta-group-booking form>h4,.mec-single-event .mec-frontbox-title{text-transform:uppercase;font-size:15px;font-weight:700;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative;text-align:center}.mec-single-event .mec-events-meta-group-booking form>h4:before,.mec-single-event .mec-frontbox-title:before{padding:1px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-35px;left:50%}.mec-event-meta i:before{font-size:20px;vertical-align:middle}.mec-event-meta .mec-single-event-additional-organizers i:before,.mec-event-meta .mec-single-event-organizer i:before{font-size:14px;vertical-align:baseline}#mec-wrap .mec-events-day-time-slot .mec-events-content{float:left;width:33%;padding:0 15px}#mec-wrap .mec-events-day-time-slot .mec-events-event-image{padding-left:0}#mec-events-content .mec-events-abbr{color:#8d8d8d;font-size:14px}.mec-single-event .mec-events-content{margin-bottom:30px}.mec-single-event .mec-organizer-url a{word-wrap:break-word}.mec-single-event #headline{margin:0 0 10px}.mec-single-event #headline h2{padding:0}.mec-single-event .mec-events-meta-group.mec-events-meta-group-gmap .mec-events-venue-map{margin-top:0;padding:8px;border:1px solid #e5e5e5;border-radius:7px}#mec-events-gmap-0{height:325px!important}.mec-events-list .mec-events-day-time-slot .mec-events-event-meta{width:33%;float:left;padding:40px;height:auto;margin:0}.mec-events-day-time-slot .mec-events-content.description.entry-summary{font-size:15px;font-weight:300;color:#8d8d8d}.mec-events-day-time-slot .type-mec_events h2{font-size:28px;padding-bottom:20px}.mec-events-day .mec-events-day-time-slot .type-mec_events{margin:0}.mec-events-day .mec-events-day-time-slot h5{background-color:#8d8d8d}.mec-single-event .mec-event-meta .mec-single-event-additional-organizers .mec-events-single-section-title,.mec-single-event .mec-event-meta .mec-single-event-organizer .mec-events-single-section-title,.mec-single-event .mec-events-meta-date h3{padding-left:0;margin:10px;display:inline-block}.mec-single-event .mec-events-meta-date h3{width:100%}.mec-single-event .mec-events-event-image{border:0}.mec-single-event .mec-events-venue-map{padding:0}.mec-event-cost,.mec-event-more-info,.mec-event-website,.mec-events-meta-date,.mec-single-event-additional-organizers,.mec-single-event-category,.mec-single-event-date,.mec-single-event-label,.mec-single-event-location,.mec-single-event-organizer,.mec-single-event-time{background:#f7f7f7;padding:12px 14px 8px;margin-bottom:12px;vertical-align:baseline;position:relative}.mec-single-event .mec-events-meta-date dd,.mec-single-event .mec-single-event-additional-organizers dd,.mec-single-event .mec-single-event-organizer dd{padding-left:0;margin-bottom:10px}.mec-single-event .mec-events-meta-date dd span,.mec-single-event .mec-single-event-additional-organizers dd span,.mec-single-event .mec-single-event-organizer dd span{display:block;padding-left:12px;color:#8d8d8d}.mec-single-event .mec-events-meta-date i,.mec-single-event .mec-single-event-additional-organizers i,.mec-single-event .mec-single-event-organizer i{margin-right:10px;margin-left:12px}.mec-events-meta-group.mec-events-meta-group-venue dl{margin-bottom:0}address.mec-events-address{line-height:19px;font-style:normal;font-size:12px}.mec-single-event .mec-event-content dt{margin-top:5px}.mec-single-event .mec-single-event-additional-organizers .mec-single-event-additional-organizer{margin-bottom:15px;padding-bottom:5px;border-bottom:1px solid #e4e4e4}.mec-single-event .mec-single-event-additional-organizers .mec-single-event-additional-organizer:last-child{margin-bottom:0;padding-bottom:0;border:none}.mec-event-schedule-content{border-left:4px solid #f0f0f0;padding-top:10px;margin-top:30px;margin-left:25px;margin-bottom:20px;color:#8a8a8a}.mec-event-schedule-content dl{padding-left:24px;font-size:12px;position:relative;margin-bottom:35px}.mec-event-schedule-content dl:before{content:'';display:block;position:absolute;left:0;top:4px;width:20px;height:0;border-top:4px solid #f0f0f0}.mec-event-schedule-content dl dt{margin:0 0 10px;line-height:1.16}.mec-event-schedule-content dl dt.mec-schedule-title{font-size:13px;color:#5a5a5a;font-weight:700}.mec-event-schedule-content dl dt.mec-schedule-description{font-weight:300}.mec-event-schedule-content .mec-schedule-speakers{background:#f7f7f7;padding:10px}.mec-wrap .mec-event-schedule-content h6{font-size:13px;color:#5a5a5a;font-weight:700;display:inline-block}.mec-wrap .mec-event-schedule-content a{font-weight:400;color:#5a5a5a;transition:all .1s ease}.mec-single-event .mec-speakers-details ul li{list-style:none;background:#f7f7f7;padding:5px 5px 18px 5px;margin-top:14px}.mec-single-event .mec-speakers-details ul li a{-webkit-transition:.2s all ease;transition:.2s all ease}.mec-single-event .mec-speakers-details ul li .mec-speaker-avatar a img{float:left;border-radius:50%;transition:.2s all ease;border:2px solid transparent;width:68px;height:68px}.mec-single-event .mec-speakers-details ul li .mec-speaker-avatar a:hover img{border-color:#40d9f1}.mec-single-event .mec-speakers-details ul li .mec-speaker-name{display:inline-block;margin-top:6px;font-size:14px;text-transform:capitalize;font-weight:700;padding-left:8px}.mec-single-event .mec-speakers-details ul li .mec-speaker-job-title{display:block;font-size:12px;margin-top:-1px;padding-left:75px}.mec-single-event-location img,.mec-single-event-organizer img{margin-bottom:10px;width:100%}.mec-qrcode-details{text-align:center}.mec-time-comment{font-size:11px}.mec-wrap .mec-attendees-list-details p{font-weight:300;margin:20px 0 0 0;color:#8d8d8d}.mec-wrap .mec-attendees-list-details li{list-style:none;display:block;margin-top:15px}.mec-wrap .mec-attendees-list-details li .mec-attendee-avatar{display:inline-block}.mec-wrap .mec-attendees-list-details li .mec-attendee-profile-link{display:inline-block;vertical-align:top;margin-left:10px}.mec-attendees-list-details ul{margin-bottom:0}.mec-attendees-list-details .mec-attendee-profile-link a{color:#8d8d8d}.mec-attendees-list-details .mec-attendee-profile-link span{display:block;color:#000}.mec-calendar{margin-bottom:20px;border:1px solid #e8e8e8;width:100%;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-calendar .mec-calendar-topsec{display:table;background:#fff}.mec-calendar .mec-calendar-topsec .mec-calendar-events-sec{display:none}.mec-calendar .mec-calendar-side{width:590px;display:table-cell;padding:40px;position:relative;text-align:center;box-shadow:0 1px 5px 6px rgba(0,0,0,.005) inset}.mec-calendar .mec-calendar-events-side{display:table-cell;height:100%;border-left:1px solid #efefef;padding:40px;width:100%}.mec-calendar .mec-calendar-events-side .mec-table-side-day{width:46px;height:46px;margin:0 auto 20px;position:relative;text-align:center;line-height:46px;border:1px solid #40d9f1;border-radius:50%;font-size:12px;font-weight:600;padding:0}.mec-calendar .mec-calendar-events-side .mec-table-side-title{text-align:center;font-size:11px;text-transform:uppercase;letter-spacing:3px;margin-bottom:14px}.mec-calendar .mec-calendar-header{position:relative;width:560px;margin-top:8px;margin-bottom:16px}.mec-calendar .mec-calendar-header h2{text-transform:uppercase;font-size:22px;font-weight:700;color:#333}.mec-calendar .mec-event-footer{width:auto;min-height:60px}.mec-calendar dl{display:table;margin:0;border:none;padding:0;table-layout:fixed}.mec-calendar dt{display:table-cell;transition:all .66s ease;color:#4d4d4d;background:#fff;border-radius:44px;font-size:14px;width:80px;height:80px;line-height:80px;text-align:center}.mec-calendar .mec-calendar-table .mec-no-event{display:none}.mec-calendar .mec-calendar-table-head dt{font-weight:700;text-transform:uppercase;font-size:15px}.mec-calendar .mec-calendar-row dt:hover{background:#f4f4f4}.mec-calendar .mec-table-nullday{color:#cacaca}.mec-calendar.mec-box-calendar .mec-table-nullday:last-child{border-right:1px solid #eaeaea}.mec-calendar .mec-next-month:hover,.mec-calendar .mec-prev-month:hover{background:#f4f4f4}.mec-calendar .mec-selected-day,.mec-calendar .mec-selected-day:hover{background:#40d9f1;color:#fff}.mec-calendar .mec-selected-day a{color:#fff}.mec-calendar .mec-has-event{position:relative}.mec-calendar .mec-calendar-row dt.mec-has-event:hover{background:#40d9f1}.mec-calendar .mec-has-event a{cursor:pointer;display:block;width:100%;height:100%;border-radius:50%;color:#4d4d4d;transition:all .25s ease;text-decoration:none;box-shadow:none}.mec-calendar .mec-calendar-row dt.mec-has-event.mec-selected-day a,.mec-calendar .mec-calendar-row dt.mec-has-event:hover a{color:#fff}.mec-calendar .mec-has-event:after{background-color:#40d9f1;border-radius:50%;display:block;content:'';width:8px;height:8px;bottom:14px;left:50%;margin:-4px 0 0 -4px;position:absolute;transition:all .25s ease}.mec-calendar .mec-calendar-row dt.mec-has-event:hover:after{background-color:#fff}.mec-calendar .mec-has-event.mec-selected-day:after{display:none}.mec-calendar .mec-event-article{text-align:left;margin-bottom:0;padding-bottom:25px;padding-top:26px;border-top:1px solid #efefef;transition:all .33s ease}.mec-calendar .mec-event-article:hover{background-color:#fafafa}.mec-calendar .mec-event-article .mec-event-time{font-size:11px;line-height:1.1;margin:0}.mec-calendar .mec-event-article .mec-event-title{font-size:13px;padding:0;margin:10px 0 8px;font-weight:700;text-transform:uppercase}.mec-calendar .mec-event-article .mec-event-title a{text-decoration:none;color:#494949;transition:color .3s ease}.mec-calendar .mec-event-article .mec-event-title a:hover{color:#40d9f1}.mec-calendar .mec-event-article .mec-event-image,.mec-calendar .mec-event-list-classic .mec-event-image img{width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-image{float:left;margin-right:20px;width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-detail{font-size:13px;line-height:1.3;font-family:Roboto,sans-serif;color:#9a9a9a;margin-bottom:0}.mec-calendar .mec-calendar-side .mec-next-month,.mec-calendar .mec-calendar-side .mec-previous-month{cursor:pointer;position:absolute;top:0;min-width:50px;height:50px;line-height:50px;text-align:center;background:#fff;color:#a9a9a9;font-size:12px;letter-spacing:1px;text-transform:uppercase;padding-left:10px;padding-right:10px;border:1px solid #efefef;border-top:none;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease}.mec-calendar .mec-calendar-side .mec-next-month i,.mec-calendar .mec-calendar-side .mec-previous-month i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-calendar .mec-calendar-side .mec-next-month:hover,.mec-calendar .mec-calendar-side .mec-previous-month:hover{background-color:#f9f9f9;color:#40d9f1}.mec-calendar .mec-calendar-side .mec-previous-month{left:0;border-bottom-right-radius:6px;border-left:none}.mec-calendar .mec-calendar-side .mec-next-month{right:0;border-bottom-left-radius:6px;border-right:none}@media only screen and (min-width:961px){.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-has-event:after{width:6px;height:6px;bottom:6px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-calendar-side{width:370px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-calendar-header{position:relative;width:350px;margin-top:30px;margin-bottom:20px;padding-top:20px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) dt{width:50px;height:50px;line-height:50px}.mec-wrap.mec-sm959 .mec-calendar.mec-event-calendar-classic dl dt{height:110px}}@media only screen and (max-width:1200px){.mec-calendar .mec-has-event:after{width:6px;height:6px;bottom:6px}.mec-calendar .mec-calendar-side{width:370px}.mec-calendar .mec-calendar-header{position:relative;width:350px;margin-top:30px}.mec-calendar dt{width:50px;height:50px;line-height:50px}}@media only screen and (max-width:767px){.mec-calendar .mec-calendar-header h2{font-size:18px}.mec-calendar .mec-calendar-topsec{width:100%}.mec-calendar .mec-calendar-side{width:100%;display:block;padding:30px}.mec-calendar .mec-calendar-header{width:auto}.mec-calendar .mec-calendar-events-side{width:100%;display:block;height:100%;border-left:none;border-top:1px solid #efefef;padding:20px}.mec-calendar dl{width:100%}.mec-calendar dt{width:14%;height:60px;line-height:60px;border-radius:50px}}@media only screen and (max-width:479px){.mec-calendar .mec-has-event:after{width:4px;height:4px}.mec-calendar .mec-calendar-header h2{font-size:16px;margin-top:33px}.mec-calendar dt{height:38px;line-height:38px}.mec-calendar .mec-event-list-classic .mec-event-detail,.mec-calendar .mec-event-list-classic .mec-event-title{font-size:12px}.mec-calendar .mec-event-list-classic .mec-event-time{font-size:10px}}.mec-box-calendar.mec-calendar .mec-has-event a,.mec-box-calendar.mec-calendar dt{border-radius:0}.mec-box-calendar.mec-calendar .mec-calendar-header{margin-top:2px;margin-bottom:30px}.mec-box-calendar.mec-calendar dt{border-bottom:1px solid #eaeaea;border-left:1px solid #eaeaea}.mec-box-calendar.mec-calendar dl dt:last-child{border-right:1px solid #eaeaea}.mec-box-calendar.mec-calendar .mec-calendar-table-head dt{border-top:1px solid #eaeaea;background-color:#f8f8f8}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt{background-color:#f4f4f4}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{border-radius:2px;top:40px;border:1px solid #eee;height:30px;line-height:30px;z-index:1}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:60px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:60px}.mec-box-calendar.mec-calendar .mec-calendar-side{box-shadow:none}.mec-box-calendar.mec-calendar .mec-calendar-events-side{border:none}.mec-box-calendar.mec-calendar .mec-calendar-events-side .mec-table-side-day{border-radius:2px}.mec-box-calendar.mec-calendar h4.mec-month-label{position:relative;width:560px;margin-top:2px;margin-bottom:30px;text-transform:uppercase;font-size:22px;font-weight:700;color:#333}.mec-widget .mec-box-calendar.mec-calendar h4.mec-month-label{width:100%;margin-top:8px;font-size:13px}@media only screen and (max-width:1200px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:42px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:42px}.mec-calendar .mec-calendar-header h2{font-size:17px;margin-top:7px}}@media only screen and (max-width:767px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{top:28px;font-size:10px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:30px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:30px}.mec-calendar .mec-calendar-header h2{font-size:15px}}@media only screen and (max-width:479px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{top:16px;font-size:0;padding:4px 0;text-align:center;min-width:33px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:10px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:10px}.mec-box-calendar.mec-calendar .mec-calendar-header h2{font-size:12px;margin-top:15px}.mec-box-calendar.mec-calendar .mec-event-image{margin-right:12px}}.mec-calendar.mec-event-calendar-classic,.mec-calendar.mec-event-calendar-classic .mec-calendar-side{border:none;padding:0;width:100%;height:100%;box-shadow:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-side{display:block}.mec-calendar.mec-event-calendar-classic .mec-calendar-header,.mec-calendar.mec-event-calendar-classic dl{width:100%}.mec-calendar.mec-event-calendar-classic dl dt{width:auto;height:136px;line-height:1.2;text-align:left;padding:5px 7px;position:relative}.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt{height:30px!important}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month{top:0}.mec-calendar.mec-event-calendar-classic .mec-has-event:after{bottom:auto;top:24px;left:7px;margin:0}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month{left:0}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month{right:0}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{text-align:left;background:#fafafa;border:1px solid #eaeaea;border-top:none;padding:10px 20px}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{display:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-event-article:hover{background-color:#fcfcfc}.mec-calendar.mec-event-calendar-classic .mec-selected-day,.mec-calendar.mec-event-calendar-classic dt.mec-selected-day:hover{color:#40d9f1;font-weight:700;background:#fafafa;border-bottom:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-day,.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-title{display:inline-block;margin:0;margin-bottom:15px;font-weight:700}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-day{margin-left:4px}.mec-calendar.mec-event-calendar-classic .mec-calendar-row dt.mec-has-event a{color:#4d4d4d}.mec-calendar.mec-event-calendar-classic .mec-calendar-row dt.mec-has-event:not(.mec-selected-day):hover a{color:#fff}@media only screen and (max-width:1200px){.mec-calendar.mec-event-calendar-classic dl dt{height:100px}}@media only screen and (max-width:767px){.mec-calendar.mec-event-calendar-classic dl dt{height:40px}}@media only screen and (max-width:479px){.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{padding:10px}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-header h2{font-size:13px;margin-top:8px}}.mec-calendar .mec-event-article.mec-single-event-novel{padding:4px 8px;min-height:25px;margin:0 -4px;border-radius:0}.mec-calendar .mec-event-article.mec-single-event-novel h4{margin:0;font-size:10px;line-height:18px}.mec-calendar.mec-event-container-novel dl dt{padding:3px}.mec-calendar.mec-event-calendar-classic .mec-calendar-novel-selected-day{display:inline-block;padding:4px;margin-left:1px}.mec-calendar.mec-event-calendar-classic .mec-selected-day .mec-calendar-novel-selected-day{color:#fff}.mec-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-selected-day,.mec-calendar.mec-event-calendar-classic.mec-event-container-novel dt.mec-selected-day:hover{border-bottom:1px solid #eaeaea}.mec-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-calendar-side .mec-calendar-table{min-height:auto}.mec-single-event-novel.light h4{color:#000!important}.mec-single-event-novel.dark h4{color:#fff!important}@media only screen and (max-width:768px){.mec-calendar .mec-event-article.mec-single-event-novel{padding:0;min-height:5px}.mec-calendar .mec-event-article.mec-single-event-novel h4{display:block;font-size:9px}}.mec-event-container-simple .event-single-content-simple{display:none}.mec-event-container-simple .mec-monthly-tooltip h4{font-size:16px;margin:0}.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple{border-bottom:1px solid #e2e2e2;padding:14px 0;display:block}.mec-wrap.colorskin-custom .mec-calendar.mec-event-container-simple .mec-selected-day:hover{background:#f4f4f4}.mec-event-container-simple .mec-calendar-day .mec-monthly-tooltip.event-single-link-simple:last-of-type{border:none}.mec-tooltip-event-title{font-size:16px;font-weight:700;color:#000;margin-bottom:2px}.mec-tooltip-event-time{font-size:12px;color:#888;margin-bottom:8px;margin-top:5px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-content{padding:17px}.mec-tooltip-event-content{clear:both}.mec-tooltip-event-featured{float:left;margin-right:13px;margin-bottom:1px}.mec-tooltip-event-featured img{max-width:120px}.mec-tooltip-event-desc{font-size:14px;color:#444;line-height:18px}.mec-tooltip-event-desc p{font-size:13px;line-height:1.4;margin-bottom:10px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-box{border-radius:3px!important;border:1px solid #e2e3e4!important;background:#fff!important;box-shadow:0 -1px 30px -2px rgba(0,0,0,.15)!important}.tooltipster-sidetip .tooltipster-arrow{overflow:visible!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-border{border-width:12px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-right .tooltipster-arrow-border{border-right-color:#e2e3e4!important}.tooltipster-sidetip .tooltipster-arrow-border{left:-12px!important;z-index:9999999999!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-background{display:block!important}.tooltipster-sidetip .tooltipster-arrow-background{border-width:11px!important;z-index:99999999999!important}.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background{left:-9px!important;top:1px!important;border-right-color:#fff!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background{border-top-color:#fff!important;left:0!important;top:-1px!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border{left:-1px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-top .tooltipster-arrow-border{border-top-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{left:-1px!important;top:-11px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{border-bottom-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background{top:-9px!important;border-bottom-color:#fff!important}.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background{border-left-color:#fff!important;left:-2px!important;top:0!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-left .tooltipster-arrow-border{border-left-color:#e2e3e4!important;left:-1px!important;top:-1px!important}@media (max-width:780px){.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple h4{word-break:break-all;font-size:13px}}@media (max-width:320px){.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple h4{font-size:10px}}.mec-calendar.mec-calendar-daily .mec-calendar-day-events .mec-event-article{padding-left:15px;padding-right:15px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month{text-align:center;background-color:#fff;border-bottom:2px solid #f4f4f4;position:relative}.mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{color:#444;font-size:18px;line-height:1.2;padding:15px 0 11px;margin:0;font-weight:700;letter-spacing:1px;text-transform:uppercase;border-bottom:1px solid #e6e6e6}.mec-calendar.mec-calendar-daily .mec-calendar-d-top{text-align:center;padding:10px 0;position:relative;background-color:#fafafa}.mec-calendar.mec-calendar-daily .mec-next-month,.mec-calendar.mec-calendar-daily .mec-previous-month{position:absolute;top:50%;left:50%;margin-top:-25px;min-width:50px;height:50px;line-height:50px;text-align:center;background:#fff;border:1px solid #e2e2e2;border-radius:50px;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month i,.mec-calendar.mec-calendar-daily .mec-previous-month i{font-size:14px;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month:hover,.mec-calendar.mec-calendar-daily .mec-previous-month:hover{border-color:#d0d0d0;color:#444;box-shadow:0 2px 5px 0 rgba(0,0,0,.075)}.mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-150px}.mec-calendar.mec-calendar-daily .mec-next-month{margin-left:100px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-next-month,.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-previous-month{min-height:28px;height:28px;line-height:28px;width:28px;margin-top:-14px;border-radius:3px}.mec-calendar.mec-calendar-daily .mec-calendar-d-top h2,.mec-calendar.mec-calendar-daily .mec-calendar-d-top h3{margin-top:9px;color:#b9b9b9;font-family:Roboto,sans-serif;font-size:30px;font-weight:100;text-transform:uppercase;margin-bottom:12px;line-height:1}.mec-calendar.mec-calendar-daily .mec-calendar-d-top h2{font-size:81px;color:#444;margin-bottom:10px;line-height:1.1}.mec-calendar.mec-calendar-daily .mec-calendar-d-table{overflow:hidden;background:#fff;min-height:60px;border-top:1px solid #e6e6e6;border-bottom:2px solid #f3f3f3;padding:0 50px;position:relative}@media only screen and (min-width:479px){.mec-calendar.mec-calendar-daily .mec-calendar-d-table{padding:0 55px}}.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl{width:1310px;display:block}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl{display:none}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl.mec-weekly-view-week-active{display:block}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt{display:block;background:#fff;width:42px;height:60px;line-height:60px;text-align:center;float:left;border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6;border-radius:0}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day:hover,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt:hover{background:#fafafa;box-shadow:0 2px 5px 0 rgba(0,0,0,.065) inset;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day{cursor:default;background:#fff;color:#c1c1c1;line-height:59px;text-align:center;border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-has-event{cursor:pointer;font-weight:700;color:#4a4a4a}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-daily-view-day-active,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt.mec-table-d-current{font-size:18px;font-weight:700;background:#fafafa;color:#40d9f1}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next,.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-prev{float:none;font-size:14px;width:55px;position:absolute;top:0;left:0;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next{left:auto;right:0;border-left:1px solid #e6e6e6;border-right:none}.mec-calendar.mec-calendar-daily .mec-today-container .mec-today-count{font-size:12px;color:#888;text-align:center}@media only screen and (max-width:479px){.mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-130px}.mec-calendar.mec-calendar-daily .mec-next-month{margin-left:80px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{font-size:14px;letter-spacing:0}}.widget .mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{font-size:14px;letter-spacing:0}.widget .mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-130px}.widget .mec-calendar.mec-calendar-daily .mec-next-month{margin-left:80px}.mec-util-hidden{display:none}.mec-daily-view-date-events,.mec-weekly-view-date-events{list-style:none;margin:0}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table{padding:0}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl{width:calc(100% - 1px)}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt{width:14.286%;height:70px;line-height:normal;cursor:default}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:hover{background:#fff;cursor:default}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:last-child{border-right:none}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:12px;font-weight:700;text-transform:uppercase;display:block;margin:15px 0 6px}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table a.mec-table-d-next,.mec-calendar.mec-calendar-weekly .mec-calendar-d-table a.mec-table-d-prev{display:none}ul.mec-weekly-view-dates-events,ul.mec-weekly-view-dates-events li{padding:0;margin:0;line-height:initial}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:64px;height:64px;margin-right:10px;font-size:11px;text-transform:uppercase;float:left;text-align:center;padding-top:2px}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:40px;line-height:30px;font-weight:700;display:block;margin-bottom:6px;letter-spacing:1px}.mec-calendar.mec-calendar-weekly .mec-calendar-a-month .mec-previous-month{margin-left:0;left:12px}.mec-calendar.mec-calendar-weekly .mec-calendar-a-month .mec-next-month{margin-left:0;left:auto;right:12px}@media only screen and (max-width:479px){.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:9px;letter-spacing:0}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:100%;height:36px;margin-bottom:12px;line-height:1;font-size:10px;margin-right:5px;text-align:left}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:18px;margin-bottom:5px}}.widget .mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:9px;letter-spacing:0}.widget .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:100%;height:36px;margin-bottom:12px;line-height:1;font-size:10px;margin-right:5px;text-align:left}.widget .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:18px;margin-bottom:5px}.mec-week-events-container .mec-weekly-view-dates-events li.mec-no-event-found{list-style:none!important}li.mec-no-event-found .mec-event-title{text-align:center}.mec-widget .mec-calendar{max-width:100%}.mec-widget .mec-calendar dl dt,.mec-wrap.mec-sm959.mec-widget .mec-calendar.mec-event-calendar-classic dl dt{height:40px}.mec-widget .mec-calendar .mec-calendar-events-sec{padding:10px}.mec-widget .mec-calendar .mec-calendar-header h2{font-size:13px;margin-top:8px}.mec-widget .mec-calendar .mec-event-list-classic .mec-event-image{margin-right:12px}.mec-widget .mec-calendar .mec-has-event:after{width:4px;height:4px}.mec-widget .mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-title{font-size:14px}.mec-widget .mec-calendar .mec-event-article .mec-event-image{margin-right:11px}.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-header{margin-bottom:20px}.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{font-size:0;padding:4px 0;text-align:center;min-width:33px}.mec-widget .mec-event-calendar-classic .mec-calendar-side .mec-calendar-table{min-height:200px}.mec-widget .mec-event-list-classic{margin-bottom:8px;padding:8px 0}.mec-widget .mec-event-list-classic .mec-event-article{margin-bottom:0;padding:10px 0;position:relative;min-height:86px;padding-left:80px}.mec-widget .mec-event-list-classic .mec-event-date{font-size:10px;line-height:14px;text-transform:uppercase}.mec-widget .mec-event-list-classic .mec-event-title{font-size:13px}.mec-widget .mec-event-list-classic .mec-event-detail{font-size:11px}.mec-widget .mec-event-list-classic .mec-event-image{width:68px;position:absolute;left:0}.mec-event-list-classic .mec-event-image img{width:100%}.mec-widget .mec-event-list-classic .mec-event-detail{overflow:visible}.event-color{width:14px;display:inline-block;height:14px;margin-left:5px;border-radius:50%}.mec-map-lightbox-wp{width:580px;padding:15px 15px 0;background-color:#fff}.mec-map-view-event-detail.mec-event-detail{width:580px;background-color:#e9e9e9;padding:8px 15px}.mec-map-lightbox-wp.mec-event-list-classic .mec-event-article{padding:0 0 15px;margin:0}.mec-map-lightbox-wp.mec-event-list-classic .mec-event-image{width:70px;margin-right:15px}.mec-marker-infowindow-wp{padding:10px}.mec-marker-infowindow-wp .mec-marker-infowindow-count{width:60px;height:60px;display:block;text-align:center;line-height:60px;border:1px solid #40d9f1;border-radius:50%;font-size:32px;color:#40d9f1;float:left;margin-right:11px}.mec-marker-infowindow-wp .mec-marker-infowindow-content{overflow:hidden;padding-top:6px}.mec-marker-infowindow-wp .mec-marker-infowindow-content span{display:block;color:#222}.mec-marker-infowindow-wp .mec-marker-infowindow-content span:first-child{font-size:15px;font-weight:700}.mec-marker-wrap{display:inline-block;width:35px;height:35px;margin:15px 0 0 4px;border-radius:50% 50% 50% 0;background:#00cae9;animation-name:mec-map-bounce;animation-fill-mode:both;animation-duration:1s;border:3px solid #fff;cursor:pointer}.mec-marker-wrap .mec-marker{margin-top:5px;display:block;-webkit-transform:rotate(45deg);transform:rotate(45deg);text-align:center;color:#fff;font-size:17px}.mec-marker-wrap .mec-marker-pulse-wrap{-webkit-transform:rotate(45deg);transform:rotate(45deg);display:inline-block;margin-left:-11px;margin-top:0}.mec-marker-wrap .mec-marker-pulse{display:inline-block;background:#c5c5c5;border-radius:50%;height:14px;width:14px;-webkit-transform:rotateX(55deg);transform:rotateX(55deg);z-index:-2}.mec-marker-wrap .mec-marker-pulse:after{content:"";border-radius:50%;height:40px;width:40px;position:absolute;margin:-13px 0 0 -13px;animation:pulsate 1s ease-out;animation-iteration-count:infinite;opacity:0;box-shadow:0 0 1px 2px #00cae9;animation-delay:1.1s}@keyframes pulsate{0%{transform:scale(.1,.1);opacity:0}50%{opacity:1}100%{transform:scale(1.2,1.2);opacity:0}}@keyframes mec-map-bounce{0%{opacity:0;transform:translateY(-2000px) rotate(-45deg)}60%{opacity:1;transform:translateY(30px) rotate(-45deg)}80%{transform:translateY(-10px) rotate(-45deg)}100%{transform:translateY(0) rotate(-45deg)}}.mec-single-event{margin-top:10px}.mec-single-event .mec-events-meta-group-countdown{color:#c9c9c9;text-align:center;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-events-meta-group-countdown .countdown-w{text-align:center;font-size:36px;margin:0 auto;padding:40px 0 0;position:relative;display:table;table-layout:fixed}.mec-events-meta-group-countdown .countdown-w .icon-w{font-size:24px}.mec-events-meta-group-countdown .countdown-w .label-w{font-size:15px;font-weight:300;letter-spacing:1px;text-transform:uppercase;position:relative}.mec-events-meta-group-countdown .countdown-w .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px;width:190px;font-size:72px;transition:all .3s ease-in-out;line-height:1.2}.mec-events-meta-group-countdown .countdown-w .block-w.done-w{border:0 none}.mec-events-meta-group-countdown .countdown-w span{padding:24px 0 20px}.mec-events-meta-group-countdown .countdown-w .div-d{display:none}.mec-events-meta-group-countdown .countdown-w .countdown-message{display:none}.mec-events-meta-group-countdown .countdown-w .block-w i{display:none}#countdown{list-style:none;margin-bottom:0;margin-top:0;margin-left:0;padding-left:0}.mec-events-meta-group-countdown .mec-end-counts h3{display:inherit;text-align:center;font-size:16px;right:50%}.mec-countdown-details .countdown-w .clockdiv li p{margin-top:23px}@media (min-width:481px) and (max-width:768px){.mec-events-meta-group-countdown .countdown-w{padding:0}.mec-events-meta-group-countdown .countdown-w .label-w{font-size:12px;letter-spacing:0}.mec-events-meta-group-countdown .countdown-w span{font-size:34px}}@media (min-width:320px) and (max-width:480px){.mec-events-meta-group-countdown .countdown-w .label-w{font-size:10px}.mec-events-meta-group-countdown .countdown-w span{font-size:28px}.mec-countdown-details .countdown-w .clockdiv li p{margin-top:16px}}@media (max-width:320px){.mec-events-meta-group-countdown .countdown-w .label-w{font-size:9px;letter-spacing:0}.mec-events-meta-group-countdown .countdown-w span{font-size:22px}}.info-msg,.mec-error,.mec-success,.warning-msg{margin:10px 0;padding:10px;border-radius:3px 3px 3px 3px;font-size:13px}.info-msg{color:#059;background-color:#bef}.mec-success{color:#270;background-color:#dff2bf}.warning-msg{color:#9f6000;background-color:#feefb3}.mec-error{color:#d8000c;background-color:#ffbaba}.mec-fes-list ul{list-style:none}.mec-fes-form-cntt .dashicons-editor-help{display:none}.mec-fes-list ul li *{text-decoration:none!important}.mec-fes-list ul li{border-bottom:1px solid #eee;padding:14px 0;line-height:normal}.mec-fes-list ul li a{box-shadow:none;color:#181818}.mec-fes-list ul li a:hover{color:#40d9f1}.mec-fes-list ul li .mec-event-title{font-weight:600;font-size:15px}.mec-fes-list .mec-event-status{color:#fff!important;border-color:transparent!important}.mec-fes-form .mec-book-confirmed,.mec-fes-list .mec-book-confirmed{background:#50d477!important}.mec-fes-form .mec-book-pending,.mec-fes-list .mec-book-pending{background:#fcbe69!important}.mec-fes-form .mec-book-rejected,.mec-fes-list .mec-book-rejected{background:#fe686a!important}.mec-fes-form .mec-book-other,.mec-fes-list .mec-book-other{background:#40d9f1!important}.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view{font-size:11px;padding:4px 8px;border:1px solid #e7e7e7;background:#f7f7f7;float:right;margin-left:5px}.mec-fes-list ul li .mec-fes-event-remove:hover{cursor:pointer;background:#f0b7b8;border-color:#cc4d4f}.mec-fes-list-top-actions a{font-size:11px;letter-spacing:2px;text-transform:uppercase;padding:8px 14px;border:1px solid #e3e3e3;background:#f5f5f5}.mec-fes-form-top-actions a,.mec-fes-list-top-actions a{position:relative;border:none;border-radius:0;color:#fff!important;display:inline-block;font-size:12px;letter-spacing:2px;line-height:1;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:17px 21px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease}.mec-fes-form-top-actions a:hover,.mec-fes-list-top-actions a:hover{background:#222;color:#fff}.mec-fes-form .mec-form-row,.mec-fes-list .mec-form-row{margin-bottom:20px;clear:both}.mec-fes-form label{padding-right:10px;font-size:13px;display:block}.mec-fes-form .post-status{float:right!important;margin:0 5px;color:#fff;padding:0 10px;border-radius:12px;font-style:italic;font-size:18px}.mec-fes-form input[type=email],.mec-fes-form input[type=number],.mec-fes-form input[type=password],.mec-fes-form input[type=tel],.mec-fes-form input[type=text],.mec-fes-form select,.mec-fes-form textarea{border-radius:0;min-width:inherit;width:auto;display:inline;background:#fcfcfc;min-height:30px;font-size:13px;border:1px solid #e0e0e0;padding:10px;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both}#mec_more_info_target{width:100%}@media only screen and (min-width:961px){.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=text],.mec-fes-form textarea{width:100%;display:inline-block}}@media only screen and (max-width:768px){.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=text],.mec-fes-form textarea{width:100%}}.mec-fes-form input[type=text]#mec_fes_title{width:100%;height:auto;color:#000;font-size:36px;font-family:Montserrat,Helvetica,Arial,sans-serif;background:0 0!important;font-weight:400}.mec-fes-form input[type=checkbox],.mec-fes-form input[type=radio]{display:inline!important;float:left;margin:5px 5px 0 0}.mec-fes-form input[type=email]:focus,.mec-fes-form input[type=number]:focus,.mec-fes-form input[type=password]:focus,.mec-fes-form input[type=tel]:focus,.mec-fes-form input[type=text]:focus,.mec-fes-form select:focus,.mec-fes-form textarea:focus{border:1px solid #aaa;color:#444;background:#fff;-moz-box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);box-shadow:0 0 3px rgba(0,0,0,.2);outline:0}.mec-form-row .mec-color{cursor:pointer}.mec-form-row.mec-available-color-row span{margin:10px;width:14px;height:14px;display:inline-block;margin-right:6px;border-radius:20px 20px 20px 20px;vertical-align:middle}.mec-form-row.mec-available-color-row span:first-of-type{margin-left:0}@media only screen and (min-width:961px){.mec-fes-form .mec-fes-form-cntt,.mec-fes-form .mec-fes-form-sdbr{width:68%;float:left;padding-right:20px}.mec-fes-form .mec-fes-form-sdbr{width:32%;padding-right:0;padding-left:20px}.mec-fes-submit-mobile{display:none}}.mec-fes-form .mec-meta-box-fields{padding:20px;border:1px solid #e6e6e6;margin-bottom:20px;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-fes-form .mec-meta-box-fields h4{margin:-20px;font-size:15px;font-weight:700;letter-spacing:2px;text-transform:uppercase;padding:10px 20px;background:#f5f5f5;margin-bottom:20px}.mec-fes-sub-button{width:100%}.mec-available-color-row span.color-selected{background-color:#fdd700;border:3px solid #fff;box-sizing:content-box;box-shadow:0 0 0 2px #437df9}.mec-fes-loading:before{content:url(../img/ajax-loader.gif);background:0 0;border-style:none;display:block;margin-left:47%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text]{width:23%;margin-right:1.4%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row{border-bottom:1px solid #e8e8e8;padding-bottom:15px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row:last-of-type{border:none}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-1{width:10%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-6{width:39%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row button{margin-right:0;padding:9px 26px}@media only screen and (max-width:768px){.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text]{width:100%!important}}.mec-wrap .mec-totalcal-box{position:relative;border:1px solid #efefef;padding:20px 5px;margin:0 0 20px;background:#fafafa;overflow:hidden;box-shadow:0 3px 2px 0 rgba(0,0,0,.012);min-height:78px}.mec-wrap .mec-totalcal-box i{float:left;margin:0;width:36px;height:36px;background:#fff;border:1px solid #efefef;text-align:center;padding:10px 0;font-size:15px;color:#888}.mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-wrap .mec-totalcal-box input,.mec-wrap .mec-totalcal-box select{width:auto;min-height:36px;height:36px;line-height:36px;background:#fff;font-size:13px;color:#777;border:1px solid #efefef;margin:0 0 0 -1px;float:left;padding:0 5px;font-family:Roboto,Helvetica,Arial,sans-serif}.mec-wrap .mec-totalcal-box input[type=submit]{cursor:pointer;padding:0 16px;text-transform:uppercase;font-size:11px;font-family:Montserrat,Helvetica,Arial,sans-serif;transition:all .21s ease}.mec-wrap .mec-totalcal-box input[type=submit]:hover{background:#222;color:#fff}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{display:inline-block;text-transform:uppercase;font-family:Montserrat,Helvetica,Arial,sans-serif;font-size:11px;padding:0 12px;cursor:pointer}.mec-wrap .mec-totalcal-box .mec-totalcal-view span:hover{color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view span.mec-totalcalview-selected{color:#fff;background:#40d9f1;border-color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view{text-align:right;float:right}.mec-wrap .mec-totalcal-box input[type=search]{width:calc(100% - 36px)}@media only screen and (min-width:961px) and (max-width:1200px){.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-3,.mec-wrap .mec-totalcal-box .col-md-4,.mec-wrap .mec-totalcal-box .col-md-5{width:100%;float:none;padding-bottom:20px;clear:both;overflow:hidden}}@media only screen and (min-width:768px) and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-4{position:relative;right:10px;top:20px;width:initial}.mec-wrap .mec-totalcal-box .col-md-5{padding-bottom:0}.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:767px){.mec-wrap .mec-totalcal-box .mec-totalcal-view{float:none}.mec-wrap .mec-totalcal-box .col-md-4{padding-bottom:0}}@media only screen and (max-width:479px){.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 8px;font-size:10px}.mec-wrap .mec-totalcal-box input[type=submit]{padding:0 10px;font-size:10px}}@media only screen and (min-width:961px){.mec-wrap .mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5,.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-3{width:100%;float:none;padding-bottom:20px;clear:both;overflow:hidden}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-4{position:absolute;right:10px;top:20px;width:initial}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5{padding-bottom:0;width:100%}}@media (min-width:961px) and (max-width:1200px){.mec-full-calendar-wrap .mec-totalcal-box{padding:20px 20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:50%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{padding-bottom:20px!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select{min-width:calc(100% - 36px)}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select{min-width:calc(30% - 10px)}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3:last-child select{min-width:calc(50% - 19px)}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view{margin-right:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:10px;text-align:center}}@media (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box{padding:20px 20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:50%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{padding-bottom:10px!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select{min-width:calc(100% - 36px);margin-bottom:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view{margin-right:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:10px;text-align:center}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:100%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:absolute;top:20px}}@media (min-width:780px) and (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:absolute;top:20px}}@media(max-width:780px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select{width:calc(50% - 18px)!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:unset;padding-right:0}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:20%;text-align:center;font-size:10px}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 7px;margin-top:20px}}@media(max-width:480px){.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:20%;text-align:center;font-size:10px}}.mec-search-form{padding:20px 10px}.mec-search-form .mec-dropdown-wrap{display:table;min-height:55px;width:100%}.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{padding:0 10px;float:left;min-height:55px}.mec-search-form .mec-date-search,.mec-search-form .mec-text-input-search{width:50%;min-height:36px;display:block}.mec-full-calendar-wrap .mec-search-form .mec-date-search,.mec-full-calendar-wrap .mec-search-form .mec-text-input-search{width:100%}.mec-full-calendar-wrap .mec-search-form .col-md-3,.mec-full-calendar-wrap .mec-search-form .col-md-5,.mec-full-calendar-wrap .mec-search-form .col-md-6,.mec-full-calendar-wrap .mec-search-form .col-md-8{padding:0}.mec-widget .mec-search-form .mec-date-search,.mec-widget .mec-search-form .mec-text-input-search{width:100%}.mec-widget .mec-search-form .mec-text-input-search{margin-top:10px}.mec-search-form .mec-date-search{clear:left}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:table-cell;float:none}.mec-widget .mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block}.mec-wrap .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select{width:calc(100% - 36px)}.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 106px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}@media only screen and (max-width:767px){.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{width:100%;float:none}.mec-search-form .mec-date-search{min-height:55px}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:50%;float:left}}@media only screen and (max-width:960px){.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 124px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}}@media only screen and (max-width:479px){.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:100%;float:none}}.ui-datepicker{background-color:#fff;border:1px solid #66afe9;border-radius:4px;box-shadow:0 0 8px rgba(102,175,233,.6);display:none;margin-top:4px;padding:10px;width:240px}.ui-datepicker a,.ui-datepicker a:hover{text-decoration:none;cursor:pointer}.ui-datepicker a:hover,.ui-datepicker td:hover a{color:#2c6396;-webkit-transition:color .1s ease-in-out;-moz-transition:color .1s ease-in-out;-o-transition:color .1s ease-in-out;transition:color .1s ease-in-out}.ui-datepicker .ui-datepicker-header{margin-bottom:4px;text-align:center}.ui-datepicker .ui-datepicker-title{font-weight:700}.ui-datepicker .ui-datepicker-next,.ui-datepicker .ui-datepicker-prev{cursor:default;font-family:dashicons;-webkit-font-smoothing:antialiased;font-style:normal;font-weight:400;height:20px;line-height:1.4;margin-top:2px;width:20px}.ui-datepicker .ui-datepicker-prev{float:left;text-align:left}.ui-datepicker .ui-datepicker-next{float:right;text-align:center}.ui-datepicker .ui-datepicker-prev:before{content:"\f341"}.ui-datepicker .ui-datepicker-next:before{content:"\f345"}.ui-datepicker .ui-icon{display:none}.ui-datepicker .ui-datepicker-calendar{table-layout:fixed;width:100%}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker .ui-datepicker-calendar th{text-align:center;padding:4px 0}.ui-datepicker .ui-datepicker-calendar td{border-radius:4px;-webkit-transition:background-color .1s ease-in-out,color .1s ease-in-out;-moz-transition:background-color .1s ease-in-out,color .1s ease-in-out;-o-transition:background-color .1s ease-in-out,color .1s ease-in-out;transition:background-color .1s ease-in-out,color .1s ease-in-out}.ui-datepicker .ui-datepicker-calendar td:hover{background-color:#eee;cursor:pointer}.ui-datepicker .ui-datepicker-calendar td a{text-decoration:none}.ui-datepicker .ui-datepicker-current-day{background-color:#4289cc}.ui-datepicker .ui-datepicker-current-day a{color:#fff}.ui-datepicker .ui-datepicker-calendar .ui-datepicker-unselectable:hover{background-color:#fff;cursor:default}.event-carousel-type1-head .mec-event-image{position:relative;min-height:150px}.event-carousel-type1-head .mec-event-image img{width:100%}.mec-event-carousel-content .mec-event-carousel-title a{transition:all .2s ease}.event-carousel-type1-head .mec-event-date-carousel{position:absolute;top:25px;left:1px;font-size:41px;width:160px;color:#fff;font-weight:500;background-color:#40d9f1;padding-left:21px;height:97px;line-height:2.3;padding-right:85px}.event-carousel-type1-head .mec-event-date-carousel:after{content:"";position:absolute;display:inline-block;z-index:-1;bottom:-13px;left:5px;width:0;border-width:13px;border-style:solid;border-color:transparent transparent #40d9f1 transparent;transform:rotate(45deg)}.event-carousel-type1-head .mec-event-date-info{font-size:12px;font-weight:300;position:absolute;top:27px;left:75px}.event-carousel-type1-head .mec-event-date-info-year{font-size:12px;font-weight:300;position:absolute;top:45px;left:75px}.mec-event-carousel-content{border:1px solid #e8e8e8;border-top:none;margin-top:-5px;padding:34px 9px 11px 37px}.mec-event-carousel-content .mec-event-carousel-title a{font-size:23px;font-weight:500;color:#000;letter-spacing:-1px}.mec-event-carousel-content p{font-size:14px;color:#7a7272;font-weight:300}.mec-owl-crousel-skin-type1 .owl-item .mec-event-article{padding:0 19px}.mec-event-carousel-type1 .owl-page.active span{background-color:#00aeef;height:14px;width:14px}.mec-event-carousel-type1 .mec-event-carousel-content{margin-bottom:15px;box-shadow:0 1px 2px rgba(0,0,0,.04);transition:all .27s ease}.mec-event-carousel-type1 .mec-event-carousel-content:hover{box-shadow:0 0 35px rgba(0,0,0,.07)}@media only screen and (min-width:768px) and (max-width:1000px),(min-width:270px) and (max-width:448px){.event-carousel-type1-head .mec-event-date-carousel{font-size:25px;line-height:2.5;padding-right:70px;height:64px;width:120px}.event-carousel-type1-head .mec-event-date-carousel:after{left:7px}.event-carousel-type1-head .mec-event-date-info{font-size:10px;top:13px;left:55px}.event-carousel-type1-head .mec-event-date-info-year{font-size:10px;top:25px;left:55px}.event-carousel-type1-head .mec-event-date-carousel:after{top:48px}}.event-carousel-type2-head{background:#fff;border:1px solid #e6e6e6}.event-carousel-type2-head .mec-event-carousel-content-type2{margin-top:15px;min-height:182px}.event-carousel-type2-head .mec-event-carousel-content-type2 .mec-event-date-info{font-size:15px;color:#9a9a9a;font-weight:300}.event-carousel-type2-head .mec-event-carousel-content-type2 .mec-event-carousel-title{font-size:26px;font-weight:700;color:#1c1d21;margin-top:15px;letter-spacing:-1px}.mec-event-carousel-content-type2 .mec-event-carousel-title a{color:inherit}.mec-event-carousel-type2 .event-carousel-type2-head .mec-event-carousel-content-type2 p{font-size:16px;font-weight:300;color:#444}.event-carousel-type2-head .mec-event-footer-carousel-type2{margin-top:33px;position:relative}.mec-event-carousel-type2 .mec-event-footer-carousel-type2 .mec-event-sharing-wrap{left:0}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-event-sharing-wrap>li{border:none;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button{border:1px solid #e4e4e4;float:right;padding:7px 23px 7px;font-size:12px;text-transform:uppercase;color:#707070;font-weight:500;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button:hover{color:#fff}.mec-event-article .event-carousel-type2-head{padding:10%;margin-right:-1px}.mec-event-carousel-type2 .mec-owl-carousel .owl-wrapper-outer{border-right:1px solid #e6e6e6}.mec-wrap .mec-event-carousel-type2 .owl-next,.mec-wrap .mec-event-carousel-type2 .owl-prev,.mec-wrap .mec-event-carousel-type3 .owl-next,.mec-wrap .mec-event-carousel-type3 .owl-prev,.mec-wrap .mec-event-carousel-type4 .owl-next,.mec-wrap .mec-event-carousel-type4 .owl-prev{transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:47%;background-color:transparent!important}.mec-event-carousel-type2 .owl-next{right:-60px}.mec-event-carousel-type2 .owl-prev{left:-60px}.mec-event-carousel-type2 .owl-next i,.mec-event-carousel-type2 .owl-prev i,.mec-event-carousel-type3 .owl-next i,.mec-event-carousel-type3 .owl-prev i,.mec-event-carousel-type4 .owl-next i,.mec-event-carousel-type4 .owl-prev i{font-size:40px;color:#282828}.mec-event-carousel-type2 .owl-next i:hover,.mec-event-carousel-type2 .owl-prev i:hover,.mec-event-carousel-type3 .owl-next i:hover,.mec-event-carousel-type3 .owl-prev i:hover{color:#000;cursor:pointer}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}@media only screen and (min-width:320px) and (max-width:768px){.mec-event-carousel-type2 .owl-next,.mec-event-carousel-type2 .owl-prev,.mec-event-carousel-type3 .owl-next,.mec-event-carousel-type3 .owl-prev,.mec-event-carousel-type4 .owl-next,.mec-event-carousel-type4 .owl-prev{position:initial;top:100%}}.mec-event-carousel-type3 .mec-event-article{margin:0 10px}.event-carousel-type3-head .mec-event-image,.event-carousel-type3-head .mec-event-image img{width:100%;height:auto}.event-carousel-type3-head .mec-event-footer-carousel-type3{background:#fff;display:inline-block;width:calc(100% - 40px);margin-top:-74px;position:relative;margin-left:20px;margin-right:20px;margin-bottom:6px;padding:8% 11%;box-shadow:0 2px 10px -2px rgba(0,0,0,.2)}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button{border:1px solid #e4e4e4;text-transform:uppercase;float:right;padding:7px 23px 7px;font-size:12px;color:#707070;font-weight:500}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button:hover{color:#fff}.mec-event-footer-carousel-type3 span{font-size:15px;color:#9a9a9a;font-weight:300;display:block;margin-top:30px}.mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:29px;font-weight:700}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:26px;font-weight:700;color:#1c1d21;margin-top:15px;letter-spacing:-1px}.mec-event-footer-carousel-type3 .mec-event-carousel-title a{color:inherit}.event-carousel-type3-head .mec-event-footer-carousel-type3 p{font-size:16px;font-weight:300;color:#444!important;margin-bottom:36px}.mec-event-carousel-type3 .owl-next{right:-70px}.mec-event-carousel-type3 .owl-prev{left:-70px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap{left:11%}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}.event-carousel-type3-head .mec-end-date-label{display:inline;margin-left:2px}.event-carousel-type4-head.clearfix{position:relative;overflow:hidden;background:#fff}.event-carousel-type4-head .mec-event-overlay{position:absolute;left:0;right:0;bottom:0;top:0;width:auto;height:auto;background-color:rgba(36,36,36,.4);transition:all .33s ease-in-out}.mec-event-hover-carousel-type4{font-size:15px;color:#fff;position:absolute;bottom:0;padding:50px 35px;transition:all .33s ease-in-out;opacity:0;visibility:hidden}.mec-event-carousel-type4 .mec-event-article{margin:0 10px}.mec-event-carousel-type4 .mec-event-article:hover .mec-event-hover-carousel-type4{opacity:1;visibility:visible}.mec-event-hover-carousel-type4 .mec-event-icon{font-size:18px;float:left;margin-right:14px;color:#fff;padding:13px}.mec-event-hover-carousel-type4 .mec-event-date{font-size:11px;text-transform:uppercase;font-weight:400;line-height:1.6}.mec-event-hover-carousel-type4 .mec-event-date span{display:block;font-weight:700;font-size:14px}.mec-event-hover-carousel-type4 .mec-event-title{color:#fff;margin:20px 0 38px;font-size:16px;font-weight:700;text-transform:uppercase;font-style:normal}.mec-event-hover-carousel-type4 .mec-btn-wrapper{text-align:left}.mec-event-hover-carousel-type4 .mec-event-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:10px 14px;letter-spacing:1.5px;font-size:11px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none}.mec-event-hover-carousel-type4 .mec-event-button:hover{color:#191919;background-color:#fff;border-color:#fff;border-radius:1px}.mec-event-carousel-type4 .owl-next{right:-70px}.mec-event-carousel-type4 .owl-prev{left:-70px}.mec-carousel-type4-head{margin-bottom:25px}.mec-carousel-type4-head-title{padding:0 11px;text-align:left;font-weight:700;font-size:20px;color:#000}.mec-carousel-type4-head-link{text-align:right;padding:0 11px}.mec-carousel-type4-head-link a{background:#222;color:#fff;padding:10px 38px;transition:all .3s ease}.mec-carousel-type4-head-link a:hover,.mec-carousel-type4-head-link a:visited{color:#fff}@media (max-width:960px){.mec-event-carousel-type4 .owl-stage{left:-50px}}.mec-wrap .mec-event-countdown-style1{color:#fff;padding:0!important;display:table;background:#437df9}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1{z-index:5;padding:50px 1% 50px 4%;display:table-cell;float:none;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2{background-color:rgba(0,0,0,.05);height:100%;padding-top:0;display:table-cell;float:none;position:relative;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{background-color:#f8f8f8;display:table-cell;float:none;text-align:center;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style1 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{content:"";position:absolute;display:inline-block;z-index:1;top:50%;margin-top:-11px;right:-24px;width:0;border-width:12px;border-style:solid;border-color:transparent transparent transparent #4077ed}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style1 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto}.mec-event-countdown-style1 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style1 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (min-width:1200px){.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%}}@media (max-width:960px){.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%;transform:rotate(90deg)}}@media (max-width:480px){.mec-event-countdown-style1 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{padding:10px 5px;min-width:50px;margin:3px 1px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:8px}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{display:inline}}.mec-wrap .mec-event-countdown-style2{color:#fff;padding:30px 0;background:#437df9;max-width:600px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part3{width:100%;float:none;vertical-align:middle;padding:50px 10% 50px 10%}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2{padding-top:12%;padding-bottom:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style2 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date-place{text-align:left;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 8px}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#222;background:#fff;transition:all .24s ease}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button:hover{background:#222;color:#fff}.mec-event-countdown-style2 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0}.mec-event-countdown-style2 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style2 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (max-width:767px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:80px;padding:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:26px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:11px}}@media only screen and (max-width:479px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:40px;padding:15px 10px;margin:2px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:20px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:9px}}@media (max-width:380px){.mec-event-countdown-style2 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{padding:10px 4px;margin:4px 1px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:7px}}.mec-wrap .mec-event-countdown-style3{color:#fff;padding:0;background:#282828;display:table;width:100%}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1{width:68%;padding:50px 1% 50px 4%;vertical-align:middle;display:table-cell;position:relative}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:32%;display:table-cell;position:relative;padding-bottom:0;padding-top:0}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 img{width:100%;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{font-weight:300;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{color:#fff;font-size:36px;letter-spacing:-2px;font-weight:700;line-height:1;margin-top:-10px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style3 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style3 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto;position:absolute;top:40px;right:20px}.mec-event-countdown-style3 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style3 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:11px;color:#888;margin:8px 0 0;line-height:1}.mec-event-countdown-style3 .mec-event-date{width:176px;height:96px;background:#40d9f1;color:#fff;font-size:13px;position:absolute;left:-27px;top:146px}.mec-event-countdown-style3 .mec-event-date:after{content:"";position:absolute;display:inline-block;z-index:1;bottom:-18px;left:8px;width:0;border-width:19px;border-style:solid;border-color:transparent transparent #40d9f1 transparent;transform:rotate(45deg)}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:50px;position:absolute;top:36px;left:12px;letter-spacing:-3px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:80px;top:26px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:80px;top:45px}.mec-event-countdown-style3 .mec-event-countdown-part-details{padding-top:35px;margin-bottom:50px;min-height:100px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-title{font-size:17px;color:#fff;line-height:1.4;padding-right:20px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link{color:#fff;font-size:12px;position:relative;padding-left:22px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link:before{content:"";display:inline-block;width:18px;border-top:1px solid #fff;position:absolute;left:0;top:8px}.mec-event-countdown-style3 .mec-event-title-link{position:absolute;left:190px;top:152px}.event-carousel-type1-head .mec-event-date-carousel:before,.mec-event-countdown-style3 .mec-event-date:before{content:'';position:absolute;left:0;bottom:0;z-index:2;width:100%;height:96px;background:0 0;display:inline-block;box-shadow:0 5px 5px rgba(0,0,0,.12)}@media only screen and (min-width:960px){.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown li{padding:10px}.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:31px}}@media (max-width:959px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:100%;display:block}.mec-event-countdown-style3 .mec-event-title-link{top:190px}.mec-event-countdown-style3 .mec-event-countdown{top:96px}.mec-event-countdown-style3 .mec-event-date{left:0;top:190px}.mec-event-countdown-style3 .mec-event-date:after{display:none}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{display:inline}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:150px}}@media (max-width:767px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:26px;letter-spacing:-1px}.mec-event-countdown-style3 .mec-event-title-link{left:130px}.mec-event-countdown-style3 .mec-event-date{width:120px;font-size:10px;height:63px}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:36px;top:20px;left:4px;letter-spacing:-2px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:52px;top:12px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:52px;top:28px}}@media (max-width:380px){.mec-event-countdown-style3 .mec-event-title-link{left:10px;top:260px}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:300px}.mec-event-countdown-style3 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:10px 5px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:8px}}.mec-slider-t1-wrap{width:100%;padding:60px 90px;background:#f7f7f7;min-height:560px;position:relative}.mec-slider-t1{height:500px;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t1 .mec-event-article{position:relative;height:500px}.mec-slider-t1 .mec-slider-t1-img{position:relative;background-size:cover!important;background-position:center!important;width:50%;height:100%;float:right;margin:0;overflow:hidden}.mec-slider-t1 .mec-slider-t1-content{width:50%;float:left;height:100%;background:#fff;padding:6%}.mec-slider-t1-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t1-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:54px;height:54px;line-height:48px;border-radius:0;text-align:center;background:#fff;box-shadow:0 2px 11px 0 rgba(0,0,0,.045);transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-27px;cursor:pointer}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 29px 0 rgba(0,0,0,.095)}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:12px;color:#282828;transition:all .21s ease}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{font-size:13px;color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t1{margin:0 auto;max-width:900px}}@media only screen and (max-width:960px){.mec-slider-t1 .mec-slider-t1-content,.mec-slider-t1 .mec-slider-t1-img{width:100%;float:none}.mec-slider-t1 .mec-slider-t1-img{height:300px}.mec-slider-t1,.mec-slider-t1 .mec-event-article{height:auto}}@media only screen and (max-width:768px){.mec-slider-t1-wrap{padding:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:10px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}}@media only screen and (max-width:479px){.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t2-wrap{width:100%;padding:0;background:#fff;min-height:600px;position:relative}.mec-slider-t2 .mec-event-article{height:600px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t2 .mec-slider-t2-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:70%;height:100%;margin:0;overflow:hidden}.mec-slider-t2 .mec-slider-t2-content{width:50%;position:absolute;right:0;top:60px;bottom:60px;padding:5%}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern *{color:#fff}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-content,.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t2-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:84px;cursor:pointer}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}.mec-wrap.colorskin-custom .mec-slider-t2 .mec-event-article .mec-event-date.mec-color{color:#fff}@media only screen and (min-width:961px){.mec-slider-t2{margin:0 auto;max-width:1200px}}@media only screen and (max-width:960px){.mec-slider-t2 .mec-slider-t2-content,.mec-slider-t2 .mec-slider-t2-img{width:100%;float:none;position:static}.mec-slider-t2 .mec-slider-t2-img{height:300px}.mec-slider-t2 .mec-event-article{height:auto}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px}}@media only screen and (max-width:479px){.mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:22px}}.mec-slider-t3-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t3 .mec-event-article{height:700px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t3 .mec-slider-t3-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;opacity:.68;z-index:1}.mec-slider-t3 .mec-slider-t3-content{width:50%;height:auto;vertical-align:middle;display:table;position:absolute;left:0;top:0;bottom:0;padding:0 2% 0 7%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t3 .mec-slider-t3-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-content,.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-slider-t3-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t3-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{border-color:#40d9f1}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-22px;cursor:pointer}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next{right:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:50px;font-weight:300}.mec-slider-t3-content.mec-event-grid-modern .mec-event-description{font-size:19px}}@media only screen and (max-width:767px){.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}}@media only screen and (max-width:479px){.mec-slider-t3 .mec-slider-t3-content{width:100%}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t4-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t4 .mec-event-article{height:700px;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t4 .mec-slider-t4-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;z-index:1}.mec-slider-t4 .mec-slider-t4-content{width:auto;max-width:700px;background:rgba(37,37,37,.94)!important;height:auto;vertical-align:middle;display:table;position:absolute;left:8%;top:19%;padding:3%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t4 .mec-slider-t4-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-content,.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:13px;padding:0 42px;line-height:49px;height:50px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t4-content.mec-event-grid-modern .mec-slider-t4-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next{right:60px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{right:112px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:767px){.mec-slider-t4 .mec-slider-t4-content{width:100%;left:0;top:auto;bottom:0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t5-wrap{width:auto;max-width:570px;padding:0;margin:0 auto 25px;background:#f7f7f7;min-height:480px;position:relative}.mec-slider-t5{height:auto;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t5 .mec-event-article{position:relative;height:auto}.mec-slider-t5 .mec-slider-t5-img{position:relative;background-size:cover!important;background-position:center!important;width:100%;height:300px;float:none;margin:0;overflow:hidden}.mec-slider-t5 .mec-slider-t5-content{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-slider-t5 .mec-events-content p{margin-bottom:20px}.mec-slider-t5-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t5-wrap .mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:14px 34px;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t5 .mec-slider-t5-col6{width:50%;float:left;height:100%}.mec-slider-t5 .mec-slider-t5-col6 i{font-size:42px;float:left;margin-right:7px;height:58px}.mec-slider-t5 .mec-slider-t5-col6 h6{text-transform:uppercase;font-size:17px;padding:4px 0;display:inline;color:#444}.mec-slider-t5 .mec-slider-t5-col6 address{font-size:12px;margin-bottom:0}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t5-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:768px){.mec-slider-t5 .mec-slider-t5-col6{width:100%;margin:10px 0}}@media only screen and (max-width:479px){.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.mec-single-modern .mec-events-event-image{text-align:center}.mec-single-modern .mec-events-event-image img{width:100%}.mec-single-modern .mec-single-event-bar{background-color:#f7f7f7;margin:20px 0 0;padding:15px;display:table;width:100%}.mec-single-modern .mec-single-event-bar>div{display:table-cell}.mec-single-modern .mec-single-event-bar>div i{font-size:20px;vertical-align:middle}.mec-single-modern .mec-single-event-bar>div .mec-time-comment{font-size:12px;color:#999}.mec-single-modern .mec-single-event-bar>div h3{text-transform:uppercase;font-size:16px;font-weight:700;padding-bottom:5px;display:inline;color:#000;padding-left:10px}.mec-single-modern .mec-single-event-bar>div dd{font-size:14px;color:#8d8d8d;padding-left:34px;margin-bottom:0}.mec-single-modern .col-md-4 .mec-frontbox{margin-top:-50px;margin-bottom:70px;padding:20px;border:none;background:#f7f7f7;box-shadow:none}.mec-next-occurrence li{list-style:none}@media only screen and (min-width:960px){.mec-single-modern .col-md-4 .mec-frontbox{margin-left:20px}}@media only screen and (max-width:960px){.mec-single-modern .mec-single-event-bar>div{display:block}}.lity-content>div{overflow:auto}.mec-next-event-details li{list-style:none;margin-top:20px}.mec-next-event-details h6{text-transform:uppercase;font-size:13px;padding-bottom:5px;display:inline;color:#222;padding-left:0}.mec-next-event-details abbr{display:block;padding-left:12px;color:#8d8d8d}.mec-next-event-details i{margin-right:10px;margin-left:12px}.mec-next-event-details i:before{color:#40d9f1}.mec-next-event-details a{text-align:center;display:block;background:#fff;padding:6px 0;font-size:11px;font-weight:400;letter-spacing:0;border:1px solid #e3e3e3;transition:.3s}.mec-single-modal.mec-single-modern .mec-single-title{text-align:center;padding:15px 10px 0}.admin-bar .mec-single-modal.mec-single-modern .mec-single-title{padding-top:40px}.mec-single-modal.mec-single-modern .mec-single-event-bar{padding:5px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div dd{font-size:13px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div h3{font-size:15px}@media only screen and (min-width:960px){.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-left:0}}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-top:10px;margin-bottom:10px}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox.mec-event-meta{padding:0}.mec-single-modal .mec-event-meta dd.mec-organizer-email a,.mec-single-modal .mec-event-meta dd.mec-organizer-url a{font-size:12px;display:block}.mec-modal-wrap{max-width:700px;background:#fff;box-shadow:0 1px 55px rgba(0,0,0,.5)}.mec-single-modal .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li,.mec-single-modal .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a.mec-events-button{display:block;text-align:center}.mec-single-modal .flip-clock-divider .flip-clock-label{position:absolute;top:60px}.mec-single-modal .flip-clock-divider:not(:first-child){width:48px!important}.mec-single-modal .flip-clock-divider.minutes .flip-clock-label{top:150px;left:-539px}.mec-single-modal .flip-clock-divider.seconds .flip-clock-label{top:87px}.mec-single-modal .flip-clock-wrapper{left:14%}.mec-single-modal .twodaydigits>ul:nth-child(11),.mec-single-modal .twodaydigits>ul:nth-child(12),.mec-single-modal .twodaydigits>ul:nth-child(8),.mec-single-modal .twodaydigits>ul:nth-child(9){margin-top:30px!important}.mec-events-toggle{max-width:960px;margin-left:auto;margin-right:auto}.mec-events-toggle .mec-toggle-item{border:1px solid #e4e4e4;margin-bottom:15px;box-shadow:0 10px 15px #f3f3f3}.mec-events-toggle .mec-toggle-item-inner{cursor:pointer;position:relative;padding:30px 60px 30px 15px;background:#fff;transition:all .3s ease}.mec-events-toggle .mec-toggle-item-inner:hover{background:#fbfbfb}.mec-toggle-item-col{float:left;width:180px;margin-top:-6px;border-right:1px solid #e3e3e3;margin-right:15px}.mec-toggle-item-col .mec-event-date{font-size:38px;line-height:40px;float:left;margin-right:8px}.mec-toggle-item-col .mec-event-month{text-transform:uppercase;font-size:12px;line-height:14px;padding-top:4px;font-weight:700}.mec-toggle-item-col .mec-event-detail{font-size:10px}.mec-toggle-item-col .mec-event-day{margin-top:9px;color:silver;font-family:Roboto,sans-serif;font-size:35px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.mec-events-toggle .mec-toggle-title{color:#000;font-size:23px;font-weight:600;margin-bottom:0;transition:all .3s ease;display:inline-block}.mec-events-toggle .mec-toggle-item-inner span.event-color{width:5px;height:100%;position:absolute;left:-1px;top:0;bottom:0;border-radius:0;margin:0}.mec-events-toggle .mec-toggle-item-inner i{position:absolute;font-size:30px;right:25px;top:50%;transform:translate(0,-50%);cursor:pointer}.mec-events-toggle .mec-toggle-item.is-open i.mec-sl-plus:before{content:"\e615"}.mec-events-toggle .mec-toggle-item.is-open .mec-toggle-title{background:#f8f8f8;cursor:pointer}.mec-events-toggle .mec-toggle-content{border-top:1px solid #e4e4e4}.mec-events-toggle .mec-toggle-content .mec-modal-wrap{margin:0;max-width:100%;box-shadow:none}.mec-events-toggle .mec-toggle-content .mec-modal-wrap .mec-single-event{margin:0}.mec-events-toggle .mec-toggle-content .mec-single-event-bar,.mec-events-toggle .mec-toggle-content h1.mec-single-title{display:none}.mec-events-toggle .media-links a{margin-bottom:0}.mec-events-toggle .mec-toggle-content .mec-toggle-meta{margin-bottom:14px}.mec-events-toggle #mec_speakers_details.mec-frontbox{padding:0;margin:0}.mec-events-toggle .mec-toggle-item h3.mec-speakers{border:none;text-align:left}.mec-events-toggle .mec-toggle-item h3.mec-speakers:before{content:"\e063";font-family:simple-line-icons;border:none;position:relative;display:inline-block;left:unset;bottom:unset;font-size:22px;font-weight:400;padding:0 11px 0 28px;vertical-align:middle}@media only screen and (max-width:767px){.mec-toggle-item-col{float:none;width:100%;border-right:none;margin-bottom:5px}}.mec-events-agenda-wrap{margin:10px 0;border:1px solid #e9e9e9;padding-left:20px;box-shadow:0 2px 2px rgba(0,0,0,.03)}.mec-events-agenda{padding:0;border-bottom:1px solid #e9e9e9;overflow:hidden}.mec-agenda-date-wrap{width:210px;padding-top:15px;float:left;font-size:13px}.mec-agenda-date-wrap i,.mec-agenda-event i{font-size:11px;color:#aaa;margin-right:4px;margin-left:1px}.mec-agenda-event i{vertical-align:middle;margin-right:1px}.mec-agenda-events-wrap{float:left;width:calc(100% - 210px);background:#f9f9f9;padding:15px}.mec-agenda-time{font-size:11px;color:#707070;padding-right:10px;width:138px;display:inline-block}.mec-agenda-event-title{position:relative;padding-left:14px}.mec-agenda-event-title a{font-family:Roboto,Montserrat,Helvetica,Arial,sans-serif;font-size:14px;font-weight:600;color:#333}.mec-agenda-event-title span.event-color{width:9px;height:9px;position:absolute;left:0;top:4px;margin:0}.mec-agenda-date-wrap span.mec-agenda-day{color:#aaa;font-size:12px}@media only screen and (max-width:767px){.mec-agenda-date-wrap,.mec-agenda-events-wrap{float:none;width:100%}.mec-events-agenda span.mec-agenda-event-title{display:block;width:100%}.mec-agenda-event-title span.event-color{top:7px}.mec-agenda-event-title a{font-size:13px}}.mec-yearly-view-wrap{margin:0 0 15px;border:1px solid #e6e6e6;box-shadow:0 2px 4px rgba(0,0,0,.04);border-bottom-width:4px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar{max-width:100%;width:232px;padding:10px;background:#fff;margin:10px;display:inline-block}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar dl dt{transition:none;height:30px;width:30px;line-height:30px;border-radius:0;font-size:12px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar .mec-calendar-events-sec{padding:10px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar .mec-has-event:after{width:4px;height:4px;bottom:3px;margin-left:-2px}.mec-yearly-view-wrap .mec-calendar-side .mec-calendar-table{min-height:200px}.mec-calendar.mec-yearly-calendar .mec-calendar-table-head dl dt{background:#f9f9f9;font-size:13px}.mec-calendar.mec-yearly-calendar .mec-calendar-table-title{text-align:center;font-size:15px;font-weight:700;color:#222;margin-top:-5px;padding-bottom:5px}.mec-yearly-view-wrap .mec-yearly-calendar-sec{min-height:200px;width:538px;overflow:hidden;float:left;background:#f8f8f8;padding:15px}.mec-yearly-view-wrap .mec-yearly-agenda-sec{min-height:200px;width:calc(100% - 538px);float:left;padding:0 0 0 20px;overflow:hidden}.mec-yearly-view-wrap .mec-yearly-title-sec{position:relative;padding:15px;text-align:center;border-bottom:1px solid #e6e6e6;box-shadow:0 1px 3px rgba(0,0,0,.02)}.mec-yearly-view-wrap .mec-yearly-title-sec h2{font-size:30px;line-height:40px;color:#333;margin:0;font-weight:700}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year,.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year{position:absolute;top:50%;margin-top:-15px;min-width:30px;height:30px;line-height:30px;padding:0 8px;text-align:center;background:#fff;color:#666;font-size:14px;border:1px solid #eee;border-radius:2px;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease;cursor:pointer}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year{right:auto;left:20px;padding-right:14px}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year{left:auto;right:20px;padding-left:14px}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year i,.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year i{font-size:12px;color:#40d9f1;cursor:pointer}@media only screen and (max-width:959px){.mec-yearly-view-wrap .mec-yearly-calendar-sec{width:268px;padding:10px 5px}.mec-yearly-view-wrap .mec-yearly-agenda-sec{width:calc(100% - 268px);padding:0 0 0 10px}}@media only screen and (max-width:767px){.mec-yearly-view-wrap .mec-yearly-agenda-sec,.mec-yearly-view-wrap .mec-yearly-calendar-sec{width:100%;float:none}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar{width:auto}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar dl dt{width:14.2%}.mec-yearly-view-wrap .mec-yearly-title-sec h2{font-size:25px}}.mec-yearly-view-wrap .mec-agenda-event i,.mec-yearly-view-wrap .mec-agenda-time{display:none}@media only screen and (min-width:768px){.mec-yearly-view-wrap .mec-events-agenda-wrap{margin-top:0;border:none;padding-left:0;box-shadow:none}.mec-yearly-view-wrap .mec-agenda-date-wrap{width:174px;font-size:11px;padding-top:10px}.mec-yearly-view-wrap .mec-agenda-events-wrap{width:calc(100% - 174px);padding:10px}.mec-yearly-view-wrap .mec-agenda-event-title a{font-size:13px}.mec-yearly-view-wrap .mec-agenda-event-title span.event-color{width:8px;height:8px}.mec-yearly-view-wrap .mec-agenda-date-wrap span.mec-agenda-day{font-size:11px}.mec-yearly-view-wrap .mec-yearly-calendar-sec{box-shadow:-2px 0 5px rgba(0,0,0,.03) inset}}@media only screen and (max-width:1200px){.mec-yearly-view-wrap .mec-agenda-event-title a{font-size:12px;padding-right:6px}}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table{padding-bottom:10px;border-bottom:none}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt:hover{cursor:pointer}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-has-no-event,.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-has-no-event:hover{color:#bbb;cursor:default}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-day-active{background:#40d9f1;color:#fff;position:relative}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-day-active:after{content:'';position:absolute;display:block;bottom:-20px;left:50%;margin-left:-10px;width:0;border-width:10px;border-style:solid;border-color:#40d9f1 transparent transparent transparent}.mec-timetable-events-list{padding:10px 20px;border:none;margin:0}.mec-timetable-events-list .mec-timetable-event{padding:10px 0;border-bottom:1px dashed #ddd}.mec-timetable-events-list .mec-timetable-event:last-child{border:none}.mec-timetable-event .mec-timetable-event-span{font-size:12px;color:#444;padding-right:30px;line-height:22px}.mec-timetable-events-list .mec-timetable-event i{font-size:13px;color:#aaa;margin-right:3px;vertical-align:baseline}.mec-timetable-event .mec-timetable-event-span a{color:#333}.mec-timetable-event .mec-timetable-event-time{font-size:11px}.mec-timetable-event .mec-timetable-event-time i{vertical-align:text-bottom}.mec-timetable-event .mec-timetable-event-title{font-size:13px}.mec-timetable-event .mec-timetable-event-title .event-color{width:10px;height:10px}.mec-timetable-events-list .mec-timetable-event.mec-util-hidden{display:none}.mec-timetable-events-list.mec-util-hidden{display:none}@media only screen and (min-width:768px){.mec-timetable-events-list{display:table;width:100%;margin:10px 0 20px}.mec-timetable-events-list .mec-timetable-event{display:table-row;padding:0;border:none;background:#fff}.mec-timetable-events-list .mec-timetable-event:hover{background:#fafafa}.mec-timetable-event .mec-timetable-event-span{display:table-cell;padding:10px 15px;border-bottom:1px solid #ebebeb}.mec-timetable-events-list .mec-timetable-event:last-child .mec-timetable-event-span{border-bottom:none}}@media only screen and (max-width:767px){.mec-timetable-event .mec-timetable-event-title{display:block;width:100%;padding:5px 0 10px;font-weight:700}}.mec-timetable-t2-wrap{border:1px solid #e6e6e6;background:#fafafa;padding:0 15px 15px;overflow:hidden;box-shadow:0 3px 2px 0 rgba(0,0,0,.012)}.mec-timetable-t2-col{width:20%;float:left;min-height:20px;padding-right:1px;background:0 0}.mec-ttt2-title{background:#fafafa;color:#333;font-size:13px;font-weight:600;text-transform:uppercase;letter-spacing:1px;text-align:center;padding:25px 10px 10px;margin-bottom:1px}.mec-timetable-t2-col .mec-event-article{position:relative}.mec-timetable-t2-col .mec-event-article .event-color{position:absolute;width:auto;height:auto;left:0;right:0;top:0;bottom:0;margin:0;z-index:1;border-radius:2px}.mec-timetable-t2-content{position:relative;z-index:2;color:#fff;padding:15px 15px 20px;text-align:left;height:130px;margin-bottom:1px;overflow:hidden}.mec-timetable-t2-content .mec-event-title{line-height:22px;margin-bottom:13px;white-space:nowrap;padding-right:1px;overflow:hidden}.mec-timetable-t2-content .mec-event-title a{color:#fff;font-size:15px;font-weight:600;white-space:nowrap;overflow:hidden}.mec-timetable-t2-content div{color:#fff;font-size:11px;font-weight:400;line-height:19px;white-space:nowrap}.mec-timetable-t2-content div i{font-size:12px;margin-right:4px}@media only screen and (max-width:960px){.mec-timetable-t2-col{width:100%;float:none}}@media(min-width:961px){.mec-timetable-col-7{width:14.28%}.mec-timetable-col-6{width:16.6666%}}.mec-weather-box{padding:15px 0}.mec-weather-head{min-height:90px;padding:5px 0;clear:both;overflow:hidden;margin-bottom:25px;border-radius:10px;background:#238af5}.mec-weather-icon-box{float:left;width:80px;height:80px;border-radius:10px;overflow:hidden;background:#238af5}.mec-weather-icon{width:80px;height:80px;display:inline-block;border-radius:10px}.mec-weather-summary{float:left;width:calc(100% - 80px);padding-left:10px;margin:10px 0;height:60px}.mec-weather-summary-report{font-size:15px;color:rgba(255,255,255,.68);margin-bottom:6px}.mec-weather-summary-temp{font-family:Roboto,Sans-serif;font-weight:300;color:#fff;font-size:29px;line-height:1}.mec-weather-extras{width:auto;padding:10px 15px 0 15px;float:right;min-height:80px;color:#fff;font-size:13px;line-height:1}.mec-weather-extras div{line-height:20px;height:20px}.mec-weather-extras span{color:rgba(255,255,255,.68);font-size:12px;text-transform:uppercase}.mec-weather-extras var{font-size:11px;letter-spacing:.4px}.mec-weather-icon.clear-day,.mec-weather-icon.clear-night{background-image:url(../img/mec-weather-icon-01.png)}.mec-weather-icon.partly-sunny-day,.mec-weather-icon.partly-sunny-night{background-image:url(../img/mec-weather-icon-02.png)}.mec-weather-icon.partly-cloudy-day,.mec-weather-icon.partly-cloudy-night{background-image:url(../img/mec-weather-icon-03.png)}.mec-weather-icon.cloudy,.mec-weather-icon.fog,.mec-weather-icon.wind{background-image:url(../img/mec-weather-icon-04.png)}.mec-weather-icon.thunderstorm{background-image:url(../img/mec-weather-icon-05.png)}.mec-weather-icon.rain{background-image:url(../img/mec-weather-icon-06.png)}.mec-weather-icon.hail,.mec-weather-icon.sleet,.mec-weather-icon.snow{background-image:url(../img/mec-weather-icon-07.png)}.mec-av-spot-wrap{width:auto;max-width:1200px;padding:0;margin:0 auto 25px;background:#f7f7f7;min-height:480px;position:relative}.mec-av-spot{height:auto;border:1px solid #eee;box-shadow:0 6px 12px -4px rgba(0,0,0,.05)}.mec-av-spot .mec-event-article{position:relative;height:auto}.mec-av-spot .mec-av-spot-img{position:relative;background-size:cover!important;background-position:center!important;width:100%;height:330px;float:none;margin:0;overflow:hidden}.mec-av-spot .mec-av-spot-content,.mec-av-spot .mec-av-spot-head{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-av-spot .mec-av-spot-head{background:#222;color:#fff;min-height:80px}.mec-av-spot .mec-av-spot-head .mec-av-spot-box{padding-top:25px;font-size:13px;color:#ddd}.mec-av-spot .mec-av-spot-head .mec-av-spot-box span{color:#40d9f1;font-size:40px;font-weight:700;font-style:italic}.mec-av-spot .mec-av-spot-head .mec-event-countdown{text-align:center;padding-top:10px;display:table;table-layout:fixed;margin:0 auto;float:right}.mec-av-spot .mec-av-spot-head .mec-event-countdown li{display:table-cell;padding:10px 20px;position:relative;height:60px}.mec-av-spot .mec-av-spot-head .mec-event-countdown p{margin-bottom:0}.mec-av-spot .mec-events-content p{margin-bottom:20px}.mec-av-spot-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-av-spot-wrap .mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:14px 34px;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-av-spot-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-av-spot .mec-av-spot-col6{width:50%;float:left;height:100%}.mec-av-spot .mec-av-spot-col6 i{font-size:42px;float:left;margin-right:7px;height:58px}.mec-av-spot .mec-av-spot-col6 h6{text-transform:uppercase;font-size:17px;padding:4px 0;display:inline;color:#444}.mec-av-spot .mec-av-spot-col6 address{font-size:12px;margin-bottom:0}.mec-av-spot-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-av-spot-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05)}@media only screen and (max-width:768px){.mec-av-spot .mec-av-spot-col6{width:100%;margin:10px 0}}@media only screen and (max-width:479px){.mec-av-spot-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.mec-events-masonry-wrap{display:block;width:auto}.mec-masonry-item-wrap{width:calc(33.33% - 30px);padding:0;margin:0 15px 30px;min-height:10px;position:relative}.isotope-item{z-index:2}.isotope-hidden.isotope-item{pointer-events:none;z-index:1}.isotope,.isotope .isotope-item{-webkit-transition-duration:.8s;-moz-transition-duration:.8s;transition-duration:.8s}.isotope{-webkit-transition-property:height,width;-moz-transition-property:height,width;transition-property:height,width}.isotope .isotope-item{-webkit-transition-property:-webkit-transform,opacity;-moz-transition-property:-moz-transform,opacity;transition-property:transform,opacity}.mec-events-masonry-cats{padding:10px;margin-bottom:25px;text-align:center;clear:both;list-style:none outside none}.mec-events-masonry-cats a{border-radius:2px;padding:6px 12px;font-size:13px;line-height:1.2;color:#333;font-weight:400;margin-top:0!important;text-align:center;display:inline-block;width:auto;border:2px solid transparent;transition:all .2s ease}.mec-events-masonry-cats a:hover{border-color:#40d9f1;color:#333}.mec-events-masonry-cats a.mec-masonry-cat-selected{border:2px solid #40d9f1;color:#40d9f1}.mec-masonry{background:#f7f7f7;height:auto;border:1px solid #eee;box-shadow:0 6px 12px -4px rgba(0,0,0,.05)}.mec-masonry .mec-event-article{position:relative;height:auto}.mec-masonry .mec-masonry-img{position:relative;width:100%;height:auto;float:none;margin:0;overflow:hidden}.mec-masonry .mec-masonry-img img{width:100%}.mec-masonry .mec-masonry-content,.mec-masonry .mec-masonry-head{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-masonry .mec-events-content p{margin-bottom:20px}.mec-masonry-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-masonry-item-wrap .mec-event-grid-modern .event-grid-modern-head{min-height:79px;margin-bottom:10px;padding:14px 5%;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-masonry-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-masonry-content.mec-event-grid-modern .mec-event-content{padding-top:20px}.mec-masonry-content.mec-event-grid-modern .mec-event-footer{height:auto}.mec-masonry .mec-masonry-col6 .mec-event-date{font-size:34px;letter-spacing:-2px}.mec-masonry .mec-masonry-col6{width:50%;float:left;height:100%}.mec-masonry .mec-masonry-col6 i{font-size:24px;float:left;margin-right:7px;height:50px}.mec-masonry .mec-masonry-col6 .mec-event-month,.mec-masonry .mec-masonry-col6 h6{text-transform:capitalize;font-size:15px;padding:4px 0;display:inline;color:#444}.mec-masonry .mec-masonry-col6 .mec-event-detail,.mec-masonry .mec-masonry-col6 address{font-size:11px;margin-bottom:0}.mec-masonry-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-masonry-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05)}@media only screen and (max-width:960px){.mec-masonry-item-wrap{width:calc(50% - 30px)}}@media only screen and (max-width:768px){.mec-masonry .mec-masonry-col6{width:100%;margin:10px 0}.mec-masonry-item-wrap{width:calc(100% - 30px)}}@media only screen and (max-width:479px){.mec-masonry-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.btn-wrapper{text-align:center}.countdown-wrapper .btn-wrapper{padding-top:10px;padding-right:0}.countdown-wrapper h5.countdown-message{letter-spacing:5px;font-weight:500;font-size:18px}.blox.dar .countdown-wrapper p,.countdown-wrapper p{color:#888}.countdown-wrapper a.button.black{float:right;margin-right:0}.mec-wrap .threedaydigits .days .flip-clock-label{right:-100px}@media only screen and (min-width:320px) and (max-width:767px){.mec-wrap .flip-clock-wrapper ul{width:29px!important}.mec-wrap .flip-clock-wrapper ul li a div div.inn{font-size:25px!important}.mec-wrap .flip-clock-divider .flip-clock-label{left:0;font-weight:300}.mec-wrap span.flip-clock-divider{width:12px}}@media only screen and (min-width:320px) and (max-width:480px){.mec-wrap .flip-clock-wrapper ul{width:29px!important}.mec-wrap .flip-clock-wrapper ul li a div div.inn{font-size:25px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}.mec-wrap span.flip-clock-divider:first-child{width:0}.mec-wrap span.flip-clock-divider{width:20px}.mec-single-event .mec-events-meta-group-countdown{margin-left:10%}}@media screen and (min-width:960px) and (max-width:1200px){.mec-wrap .threedaydigits ul{height:50px;width:47px}}@media screen and (min-width:480px) and (max-width:768px){.mec-wrap .threedaydigits ul{height:48px;width:26px!important}.mec-wrap .threedaydigits .flip-clock-label{font-size:8px;left:-8px}}@media screen and (min-width:320px) and (max-width:480px){.mec-wrap .threedaydigits ul{height:48px;width:22px!important}}.mec-wrap .flip-clock-wrapper *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;-o-box-sizing:border-box;box-sizing:border-box;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-o-backface-visibility:hidden;backface-visibility:hidden}.mec-wrap .flip-clock-wrapper a{cursor:pointer;text-decoration:none;color:#ccc}.mec-wrap .flip-clock-wrapper a:hover{color:#fff}.mec-wrap .flip-clock-wrapper ul{list-style:none}.flip-clock-wrapper.clearfix:after,.mec-wrap .flip-clock-wrapper.clearfix:before{content:" ";display:table}.mec-wrap .flip-clock-wrapper.clearfix:after{clear:both}.mec-wrap .flip-clock-wrapper{font:normal 11px "helvetica neue",helvetica,sans-serif;-webkit-user-select:none}.mec-wrap .flip-clock-meridium{background:0 0!important;box-shadow:0 0 0!important;font-size:36px!important}.mec-wrap .flip-clock-meridium a{color:#313333}.mec-wrap .flip-clock-wrapper{text-align:center;position:relative;display:inline-block;padding-bottom:10px}.flip-clock-wrapper:after,.mec-wrap .flip-clock-wrapper:before{content:" ";display:table}.mec-wrap .flip-clock-wrapper:after{clear:both}.mec-wrap .flip-clock-wrapper ul{position:relative;float:left;margin:2px;width:50px;height:50px;font-size:80px;font-weight:700;line-height:87px;border-radius:3px;background:rgba(0,0,0,.21)}.mec-wrap .flip-clock-wrapper ul li{z-index:1;position:absolute;left:0;top:0;width:100%;height:100%;line-height:54px;text-decoration:none!important}.mec-wrap .flip-clock-wrapper ul li:first-child{z-index:2}.mec-wrap .flip-clock-wrapper ul li a{display:block;height:100%;-webkit-perspective:200px;-moz-perspective:200px;perspective:200px;margin:0!important;overflow:visible!important;cursor:default!important}.mec-wrap .flip-clock-wrapper ul li a div{z-index:1;position:absolute;left:0;width:100%;height:50%;font-size:80px;overflow:hidden;outline:1px solid transparent}.mec-wrap .flip-clock-wrapper ul li a div .shadow{position:absolute;width:100%;height:100%;z-index:2}.mec-wrap .flip-clock-wrapper ul li a div.up{-webkit-transform-origin:50% 100%;-moz-transform-origin:50% 100%;-ms-transform-origin:50% 100%;-o-transform-origin:50% 100%;transform-origin:50% 100%;top:0}.mec-wrap .flip-clock-wrapper ul li a div.up:after{content:"";position:absolute;top:24px;left:0;z-index:5;width:100%;height:3px;background-color:rgba(0,0,0,.12)}.mec-wrap .flip-clock-wrapper ul li a div.down{-webkit-transform-origin:50% 0;-moz-transform-origin:50% 0;-ms-transform-origin:50% 0;-o-transform-origin:50% 0;transform-origin:50% 0;bottom:0;border-bottom-left-radius:3px;border-bottom-right-radius:3px}.mec-wrap .flip-clock-wrapper ul li a div div.inn{position:absolute;left:0;z-index:1;width:100%;height:200%;color:#fff;text-shadow:0 0 2px rgba(0,0,0,.25);text-align:center;background-color:#40d9f1;border-radius:3px;font-size:48px}.mec-wrap .flip-clock-wrapper ul li a div.up div.inn{top:0}.mec-wrap .flip-clock-wrapper ul li a div.down div.inn{bottom:0}.mec-wrap .flip-clock-wrapper ul.play li.flip-clock-before{z-index:3}.mec-wrap .flip-clock-wrapper .flip{box-shadow:0 2px 5px rgba(0,0,0,.17)}.mec-wrap .flip-clock-wrapper ul.play li.flip-clock-active{-webkit-animation:asd .5s .5s linear both;-moz-animation:asd .5s .5s linear both;animation:asd .5s .5s linear both;z-index:5}.mec-wrap .flip-clock-divider{float:left;display:inline-block;position:relative;width:18px;height:62px}.mec-wrap .flip-clock-divider:first-child{width:0}.mec-wrap .flip-clock-dot{display:none;background:#323434;width:10px;height:10px;position:absolute;border-radius:50%;box-shadow:0 0 5px rgba(0,0,0,.5);left:5px}.mec-wrap .flip-clock-divider .flip-clock-label{position:absolute;bottom:-1.5em;right:-71px;color:#101010;font-weight:700;text-shadow:none;text-transform:uppercase}.mec-wrap .blox.dark .flip-clock-divider .flip-clock-label{color:#8a8a8a}.mec-wrap .flip-clock-divider.seconds .flip-clock-label{right:-82px}.mec-wrap .flip-clock-dot.top{top:30px}.mec-wrap .flip-clock-dot.bottom{bottom:30px}@-webkit-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@-moz-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@-o-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}.flip-clock-wrapper ul.play li.flip-clock-active .down{z-index:2;-webkit-animation:turn .5s .5s linear both;-moz-animation:turn .5s .5s linear both;animation:turn .5s .5s linear both}@-webkit-keyframes turn{0%{-webkit-transform:rotatex(90deg)}100%{-webkit-transform:rotatex(0)}}@-moz-keyframes turn{0%{-moz-transform:rotatex(90deg)}100%{-moz-transform:rotatex(0)}}@-o-keyframes turn{0%{-o-transform:rotatex(90deg)}100%{-o-transform:rotatex(0)}}@keyframes turn{0%{transform:rotatex(90deg)}100%{transform:rotatex(0)}}.flip-clock-wrapper ul.play li.flip-clock-before .up{z-index:2;-webkit-animation:turn2 .5s linear both;-moz-animation:turn2 .5s linear both;animation:turn2 .5s linear both}@-webkit-keyframes turn2{0%{-webkit-transform:rotatex(0)}100%{-webkit-transform:rotatex(-90deg)}}@-moz-keyframes turn2{0%{-moz-transform:rotatex(0)}100%{-moz-transform:rotatex(-90deg)}}@-o-keyframes turn2{0%{-o-transform:rotatex(0)}100%{-o-transform:rotatex(-90deg)}}@keyframes turn2{0%{transform:rotatex(0)}100%{transform:rotatex(-90deg)}}.flip-clock-wrapper ul li.flip-clock-active{z-index:3}.flip-clock-wrapper ul.play li.flip-clock-before .up .shadow{background:-moz-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,.1)),color-stop(100%,rgba(64,64,64,.68)));background:linear,top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;background:-o-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-ms-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:linear,to bottom,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;-webkit-animation:show .5s linear both;-moz-animation:show .5s linear both;animation:show .5s linear both}.flip-clock-wrapper ul.play li.flip-clock-active .up .shadow{background:-moz-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,.1)),color-stop(100%,rgba(64,64,64,.68)));background:linear,top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;background:-o-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-ms-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:linear,to bottom,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;-webkit-animation:hide .5s .3s linear both;-moz-animation:hide .5s .3s linear both;animation:hide .5s .3s linear both}.flip-clock-wrapper ul.play li.flip-clock-before .down .shadow{background:-moz-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(64,64,64,.68)),color-stop(100%,rgba(0,0,0,.1)));background:linear,top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;background:-o-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-ms-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:linear,to bottom,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;-webkit-animation:show .5s linear both;-moz-animation:show .5s linear both;animation:show .5s linear both}.flip-clock-wrapper ul.play li.flip-clock-active .down .shadow{background:-moz-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(64,64,64,.68)),color-stop(100%,rgba(0,0,0,.1)));background:linear,top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;background:-o-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-ms-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:linear,to bottom,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;-webkit-animation:hide .5s .3s linear both;-moz-animation:hide .5s .3s linear both;animation:hide .5s .2s linear both}@-webkit-keyframes show{0%{opacity:0}100%{opacity:1}}@-moz-keyframes show{0%{opacity:0}100%{opacity:1}}@-o-keyframes show{0%{opacity:0}100%{opacity:1}}@keyframes show{0%{opacity:0}100%{opacity:1}}@-webkit-keyframes hide{0%{opacity:1}100%{opacity:0}}@-moz-keyframes hide{0%{opacity:1}100%{opacity:0}}@-o-keyframes hide{0%{opacity:1}100%{opacity:0}}@keyframes hide{0%{opacity:1}100%{opacity:0}}@font-face{font-family:simple-line-icons;src:url(../fonts/Simple-Line-Icons.eot?v=2.3.1);src:url(../fonts/Simple-Line-Icons.eot?v=2.3.1#iefix) format('embedded-opentype'),url(../fonts/Simple-Line-Icons.woff2?v=2.3.1) format('woff2'),url(../fonts/Simple-Line-Icons.woff?v=2.3.1) format('woff'),url(../fonts/Simple-Line-Icons.ttf?v=2.3.1) format('truetype'),url(../fonts/Simple-Line-Icons.svg?v=2.3.1#simple-line-icons) format('svg');font-weight:400;font-style:normal}[class*=mec-sl-]{font-family:simple-line-icons;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.mec-sl-facebook:before{content:"\e00b"}.mec-sl-twitter:before{content:"\e009"}.mec-sl-google-plus:before{content:"\e60d"}.mec-sl-angle-left:before{content:"\e605"}.mec-sl-angle-right:before{content:"\e606"}.mec-sl-calendar:before{content:"\e075"}.mec-sl-clock-o:before{content:"\e081"}.mec-sl-home:before{content:"\e069"}.mec-sl-phone:before{content:"\e600"}.mec-sl-envelope:before{content:"\e086"}.mec-sl-sitemap:before{content:"\e037"}.mec-sl-map-marker:before{content:"\e096"}.mec-sl-floder:before{content:"\e089"}.mec-sl-wallet:before{content:"\e02a"}.mec-color,.mec-color-before :before,.mec-color-hover:hover,.mec-wrap .mec-color,.mec-wrap .mec-color-before :before,.mec-wrap .mec-color-hover:hover{color:#40d9f1}.mec-bg-color,.mec-bg-color-hover:hover,.mec-wrap .mec-bg-color,.mec-wrap .mec-bg-color-hover:hover{background-color:#40d9f1}.mec-border-color,.mec-border-color-hover:hover,.mec-wrap .mec-border-color,.mec-wrap .mec-border-color-hover:hover{border-color:#40d9f1}.mec-toggle-month-divider.mec-skin-list-events-container{border:1px solid #e8e8e8;margin-bottom:30px;background:#f8f8f8;box-shadow:0 2px 18px -1px rgba(0,0,0,.1);border-radius:2px}.mec-toggle-month-divider .mec-month-divider{margin:0;text-align:left;background:#fff;position:relative;cursor:pointer;border-top:1px solid #e8e8e8}.mec-toggle-month-divider .mec-month-divider span{padding:20px;border-bottom:1px solid #e8e8e8}.mec-toggle-month-divider .mec-month-divider i{position:absolute;right:20px;top:24px;font-size:20px;cursor:pointer}.mec-toggle-month-divider .mec-month-divider span:before{display:none}.mec-toggle-month-divider .mec-month-divider+article{margin-top:20px}.mec-toggle-month-divider .mec-wrap .mec-month-divider:first-of-type{border-top:none}.mec-toggle-month-divider .mec-event-list-accordion .mec-month-divider:not(:first-of-type)~article{display:none}.mec-skin-list-events-container:not(.mec-toggle-month-divider) .mec-month-divider i{display:none}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-month{display:inline-block;padding-top:0}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-date{font-size:14px;line-height:14px;float:none;display:inline-block;margin-right:0;font-weight:700}.mec-events-toggle .mec-toogle-inner-month-divider.mec-toggle-item-inner{padding:20px 60px 30px 15px}.mec-toogle-inner-month-divider .mec-toggle-month-inner-image{float:left;clear:right;width:100px;margin-right:20px;margin-left:10px}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-detail{margin-top:-6px}.mec-toogle-inner-month-divider .mec-toggle-item-col{float:none;width:100%;margin-top:10px;display:block;border:none}.mec-events-toggle .mec-toogle-inner-month-divider .mec-toggle-title{font-size:19px;display:block;padding-top:10px}@media only screen and (max-width:768px){.mec-events-toggle .mec-toogle-inner-month-divider .mec-toggle-title{font-size:14px;padding-top:0}.mec-toogle-inner-month-divider .mec-toggle-item-col{margin-top:0}.mec-toogle-inner-month-divider .mec-toggle-month-inner-image{width:70px}}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled:before,.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-featured:before{z-index:1;position:absolute;top:25px;right:-37px;font-size:11px;letter-spacing:1px;text-transform:uppercase;background:#04de78;padding:2px 40px;color:#fff;-ms-transform:rotate(45deg);-webkit-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition:.5s cubic-bezier(.25,.5,.06,.85);transition:.5s cubic-bezier(.25,.5,.06,.85);content:attr(data-style)}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled,.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-featured{overflow:hidden;position:relative}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled:before{background:#de0404}.mec-daily-view-date-events article:before,ul.mec-weekly-view-dates-events article:before{padding:7px 40px!important;top:27px!important}.mec-event-grid-classic article .mec-fc-style,.mec-event-grid-minimal article .mec-fc-style,.mec-event-grid-simple article .mec-fc-style,.mec-timetable-wrap article .mec-fc-style,.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article.mec-event-cover-modern .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{font-size:9px;letter-spacing:.5px;text-transform:uppercase;background:#04de78;padding:2px 7px;color:#fff;position:relative;margin-left:5px;border-radius:2px}.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-modern.mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-minimal article .mec-fc-style:before,.mec-event-grid-simple article .mec-fc-style:before,.mec-timetable-wrap article .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article .mec-fc-style:before,.mec-wrap .mec-event-list-modern article .mec-fc-style:before,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style:before{width:0;height:0;border-top:4px solid transparent!important;border-right:5px solid;border-bottom:4px solid transparent;margin:0;top:50%;left:-4px;transform:translateY(-4.5px);position:absolute;content:'';color:#04de78}.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-event-grid-classic article.mec-label-canceled:before,.mec-event-grid-classic article.mec-label-featured:before,.mec-event-grid-minimal article.mec-label-canceled:before,.mec-event-grid-minimal article.mec-label-featured:before,.mec-event-grid-simple article.mec-label-canceled:before,.mec-event-grid-simple article.mec-label-featured:before,.mec-timetable-wrap article.mec-label-canceled:before,.mec-timetable-wrap article.mec-label-featured:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled:before,.mec-wrap .mec-event-list-accordion article.mec-label-featured:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled:before,.mec-wrap .mec-event-list-modern article.mec-label-featured:before{display:none}.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{top:-3px;font-size:11px;margin-left:10px}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style:before,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-canceled:before,.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-featured:before{-ms-transform:none;-webkit-transform:none;transform:none;-webkit-transition:none;transition:none;top:271px;right:0}.mec-timetable-wrap article .mec-fc-style{top:-2px;font-size:10px}.mec-wrap article.mec-event-cover-modern .mec-fc-style{padding:5px 9px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:24px;display:inline-block;border-radius:2px}.mec-skin-grid-events-container .mec-wrap .mec-event-grid-clean .mec-event-article:before{-ms-transform:none;-webkit-transform:none;transform:none!important;-webkit-transition:none;transition:none;top:22px!important;right:22px!important;padding:0 10px!important}.mec-event-grid-minimal article .mec-fc-style,.mec-event-grid-simple article .mec-fc-style{top:-4px;font-size:10px;margin-left:10px}.mec-event-grid-classic article .mec-fc-style{padding:5px 20px;font-size:12px;margin-top:8px;display:inline-block}.mec-hourly-schedule-speaker-info{background:#fff;padding:30px;border:1px solid #e6e6e6;max-width:740px;width:740px;margin-left:-110px}.mec-hourly-schedule-speaker-thumbnail{float:left;max-width:30%;width:30%}.mec-hourly-schedule-speaker-name{font-weight:700;font-size:26px;line-height:1.2;color:#333;text-transform:uppercase}.mec-hourly-schedule-speaker-details{float:left;width:69%;padding-left:25px}.mec-hourly-schedule-speaker-job-title{font-size:16px;line-height:1.3;margin-bottom:4px}.mec-hourly-schedule-speaker-description{font-size:14px;font-weight:400;color:#6d7683;line-height:1.7;text-align:left}.mec-hourly-schedule-speaker-contact-information a i{color:#6b6b6b;background:#ebebeb;line-height:29px;margin:9px 7px 9px 0;width:30px;height:30px;display:inline-block;text-align:center;transition:all .2s ease;font-size:15px;cursor:pointer}.mec-hourly-schedule-speaker-contact-information a i:hover{background:#222;color:#fff}@media only screen and (max-width:479px){.mec-hourly-schedule-speaker-thumbnail{float:none;max-width:none;margin-right:0;margin-bottom:15px;width:100%}.mec-hourly-schedule-speaker-thumbnail img{width:100%}.mec-hourly-schedule-speaker-details{padding-left:0}.mec-hourly-schedule-speaker-info{width:90%;margin:0 auto}}.mec-profile .mec-profile-bookings{border:2px solid #e6e6e6;text-align:center}.mec-profile .mec-profile-bookings tbody tr:first-child{background:#f7f7f7;font-weight:700;text-transform:capitalize}.mec-profile .mec-profile-bookings tbody tr{border-bottom:1px solid #e6e6e6;font-size:14px}.mec-profile .mec-profile-bookings tbody tr td{border:1px solid #e6e6e6;padding:10px}.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:4%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:37%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:24%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:15%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:10%}.mec-profile .mec-event-status{padding:5px 10px;color:#fff;border-radius:2px;font-size:12px;line-height:12px;letter-spacing:.4px}.mec-profile .mec-event-status.mec-book-confirmed{background:#50d477}.mec-profile .mec-event-status.mec-book-pending{background:#fcbe69}.mec-profile .mec-event-status.mec-book-rejected{background:#fe686a}.mec-profile .mec-event-date{font-size:12px;color:#888}.mec-profile .mec-booking-number-of-attendees{font-size:13px;color:#888}.mec-profile .mec-booking-number-of-attendees i,.mec-profile .mec-profile-bookings-view-invoice i{font-size:15px;color:#008aff;vertical-align:text-bottom;margin-right:4px}.mec-booking-attendees{background:#fff;padding:10px}.mec-booking-attendees{width:750px;text-align:center}.mec-booking-attendees-wrapper{border:2px solid #e6e6e6;font-size:14px}.mec-booking-attendees-head{display:table;width:100%;background:#f7f7f7;border-bottom:1px solid #e6e6e6;font-weight:700}.mec-booking-attendees-head span,.mec-booking-attendees-head-content>span{vertical-align:middle;display:table-cell;padding:7px;border-right:1px solid #e6e6e6}.mec-booking-attendees-head-content{display:table;width:100%;border-bottom:1px solid #e6e6e6}.mec-booking-attendees-wrapper .mec-booking-attendees-head-content:last-child{border:none}.mec-booking-attendees-head span:nth-child(1),.mec-booking-attendees-head-content>span:nth-child(1){width:4%}.mec-booking-attendees-head span:nth-child(2),.mec-booking-attendees-head-content>span:nth-child(2){width:20%}.mec-booking-attendees-head span:nth-child(3),.mec-booking-attendees-head-content>span:nth-child(3){width:24%}.mec-booking-attendees-head span:nth-child(4),.mec-booking-attendees-head-content>span:nth-child(4){width:26%}.mec-booking-attendees-head span:nth-child(5),.mec-booking-attendees-head-content>span:nth-child(5){width:26%}@media only screen and (max-width:759px){.mec-booking-attendees{width:470px}.mec-booking-attendees-head span,.mec-booking-attendees-head-content>span{word-break:break-all}}.mec-woo-booking-checkout{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;border-radius:0;margin-bottom:6px;min-width:170px;margin-top:5px;text-align:center}.mec-woo-booking-checkout:hover{background:#222;color:#fff}.mec-woo-booking-checkout:focus,.mec-woo-booking-checkout:visited{color:#fff}.single-mec-events .lity-container{max-width:480px;width:480px}.lity-content .mec-events-meta-group-booking{width:100%;padding:20px 50px;background:#fff}.lity-content .mec-events-meta-group-booking .mec-booking form>h4{text-transform:uppercase;font-size:15px;font-weight:700;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative;text-align:center;line-height:1.2;margin-bottom:10px}.lity-content .mec-events-meta-group-booking .mec-booking form>h4:before{padding:1px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-35px;left:50%}.lity-content .mec-events-meta-group-booking .mec-event-ticket-available,.lity-content .mec-events-meta-group-booking .mec-event-ticket-name,.lity-content .mec-events-meta-group-booking .mec-event-ticket-price,.lity-content .mec-events-meta-group-booking .mec-ticket-variation-name,.lity-content .mec-events-meta-group-booking .mec-ticket-variation-price,.lity-content .mec-events-meta-group-booking label{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:3px 0;clear:none;padding:5px 1em 3px 0;display:inline-block}.lity-content .mec-events-meta-group-booking .mec-event-ticket-available{margin-bottom:12px}.lity-content .mec-events-meta-group-booking select{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:100%;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both;font-family:Montserrat,Helvetica,Arial,sans-serif}.lity-content .mec-events-meta-group-booking input[type=email]{color:#888;border:1px solid #e1e1e1;font-size:14px;display:block;width:100%;outline:0}.lity-content .mec-events-meta-group-booking input{margin-bottom:10px!important}.lity-content .mec-book-ticket-variation h5{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:0;clear:none;padding:5px 1em 3px 0;display:inline-block;text-transform:capitalize;font-family:Montserrat,Helvetica,Arial,sans-serif}.lity-content ul.mec-book-tickets-container{padding:0}.lity-content .mec-events-meta-group-booking input[type=email],.lity-content .mec-events-meta-group-booking input[type=number],.lity-content .mec-events-meta-group-booking input[type=text]{outline:0;font-family:Montserrat,Helvetica,Arial,sans-serif;display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:100%;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both;margin-bottom:2px!important}.lity-content button[type=submit]{position:relative;border:none;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;min-width:170px;margin-top:5px;border-radius:0;margin-bottom:6px}.lity-content button[type=submit]:hover{background:#222}.lity-content .mec-book-tickets-container li{list-style:none}.lity-content .mec-events-meta-group-booking #mec_book_payment_form h4,.lity-content .mec-events-meta-group-booking li h4{font-size:19px;font-weight:700}.lity-content .mec-events-meta-group-booking .mec-book-price-total{display:inline-block;margin-bottom:10px;font-size:26px;color:#39c36e;font-weight:700;padding:10px 0}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li{width:50%}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li:nth-child(even){border:none}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li span{display:block}.lity-content .mec-events-meta-group-booking button[type=submit]:after{display:none;font-family:simple-line-icons;content:"\e098";margin-left:4px;-webkit-animation:rotating 1.2s linear infinite;-moz-animation:rotating 1.2s linear infinite;-ms-animation:rotating 1.2s linear infinite;-o-animation:rotating 1.2s linear infinite;animation:rotating 1.2s linear infinite}.lity-content .mec-events-meta-group-booking button[type=submit].loading:after{display:inline-block}@media only screen and (max-width:480px){.lity-content .mec-events-meta-group-booking{padding:20px;width:340px;margin:0 auto}}.mec-events-meta-group-booking{position:relative}.mec-cover-loader:after{content:'';position:absolute;top:0;right:0;left:0;bottom:0;background:rgba(255,255,255,.5);z-index:99999}.mec-loader{background:rgba(0,0,0,0);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);z-index:9}.mec-loader,.mec-loader:after{border-radius:50%;width:5em;height:5em;z-index:999999999999}.mec-loader{font-size:10px;text-indent:-9999em;border-top:.5em solid rgba(0,0,0,.2);border-right:.5em solid rgba(0,0,0,.2);border-bottom:.5em solid rgba(0,0,0,.2);border-left:.5em solid #fff;-webkit-transform:translateZ(0);-ms-transform:translateZ(0);transform:translateZ(0);-webkit-animation:mecloader 1.1s infinite linear;animation:mecloader 1.1s infinite linear}@-webkit-keyframes mecloader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes mecloader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.mec-wrap *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mec-wrap :after,.mec-wrap :before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mec-wrap .clearfix:after,.mec-wrap .clearfix:before{content:'\0020';display:block;overflow:hidden;visibility:hidden;width:0;height:0}.mec-wrap .clearfix:after{clear:both}.mec-wrap .clearfix{zoom:1}.mec-wrap .clear,.mec-wrap .clr{clear:both;display:block;overflow:hidden;visibility:hidden}.mec-wrap .clr{visibility:visible;overflow:visible}.mec-container [class*=col-] img{max-width:100%}.mec-container{margin-right:auto;margin-left:auto;padding-left:10px;padding-right:10px}.mec-container:after,.mec-container:before{content:" ";display:table}.mec-container:after{clear:both}@media only screen and (max-width:479px){.mec-container{width:300px}}@media only screen and (min-width:480px) and (max-width:767px){.mec-container{width:420px}}@media only screen and (min-width:768px) and (max-width:960px){.mec-container{width:768px}}@media only screen and (min-width:961px){.mec-container{width:960px}}@media only screen and (min-width:1200px){.mec-container{width:1196px;padding-left:15px;padding-right:15px}}@media only screen and (min-width:1921px){.mec-container{max-width:1690px}}.mec-wrap .row{margin-left:-10px;margin-right:-10px}.mec-wrap .row:after,.mec-wrap .row:before{content:" ";display:table}.mec-wrap .row:after{clear:both}.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9,.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9,.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9,.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{position:relative;min-height:1px;padding-left:10px;padding-right:10px}@media only screen and (min-width:1200px){.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9,.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9,.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9,.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{padding-left:15px;padding-right:15px}.mec-wrap .row{margin-left:-15px;margin-right:-15px}}.mec-container [class*=col-].alpha{padding-left:0}.mec-container [class*=col-].omega{padding-right:0}.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{float:left}.mec-wrap .col-xs-12{width:100%}.mec-wrap .col-xs-11{width:91.66666666666666%}.mec-wrap .col-xs-10{width:83.33333333333334%}.mec-wrap .col-xs-9{width:75%}.mec-wrap .col-xs-8{width:66.66666666666666%}.mec-wrap .col-xs-7{width:58.333333333333336%}.mec-wrap .col-xs-6{width:50%}.mec-wrap .col-xs-5{width:41.66666666666667%}.mec-wrap .col-xs-4{width:33.33333333333333%}.mec-wrap .col-xs-3{width:25%}.mec-wrap .col-xs-2{width:16.666666666666664%}.mec-wrap .col-xs-1{width:8.333333333333332%}@media (min-width:768px){.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9{float:left}.mec-wrap .col-sm-12{width:100%}.mec-wrap .col-sm-11{width:91.66666666666666%}.mec-wrap .col-sm-10{width:83.33333333333334%}.mec-wrap .col-sm-9{width:75%}.mec-wrap .col-sm-8{width:66.66666666666666%}.mec-wrap .col-sm-7{width:58.333333333333336%}.mec-wrap .col-sm-6{width:50%}.mec-wrap .col-sm-5{width:41.66666666666667%}.mec-wrap .col-sm-4{width:33.33333333333333%}.mec-wrap .col-sm-3{width:25%}.mec-wrap .col-sm-2{width:16.666666666666664%}.mec-wrap .col-sm-1{width:8.333333333333332%}}@media (min-width:961px){.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9{float:left}.mec-wrap .col-md-12{width:100%}.mec-wrap .col-md-11{width:91.66666666666666%}.mec-wrap .col-md-10{width:83.33333333333334%}.mec-wrap .col-md-9{width:75%}.mec-wrap .col-md-8{width:66.66666666666666%}.mec-wrap .col-md-7{width:58.333333333333336%}.mec-wrap .col-md-6{width:50%}.mec-wrap .col-md-5{width:41.66666666666667%}.mec-wrap .col-md-4{width:33.33333333333333%}.mec-wrap .col-md-3{width:25%}.mec-wrap .col-md-2{width:16.666666666666664%}.mec-wrap .col-md-1{width:8.333333333333332%}}@media (min-width:1200px){.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9{float:left}.mec-wrap .col-lg-12{width:100%}.mec-wrap .col-lg-11{width:91.66666666666666%}.mec-wrap .col-lg-10{width:83.33333333333334%}.mec-wrap .col-lg-9{width:75%}.mec-wrap .col-lg-8{width:66.66666666666666%}.mec-wrap .col-lg-7{width:58.333333333333336%}.mec-wrap .col-lg-6{width:50%}.mec-wrap .col-lg-5{width:41.66666666666667%}.mec-wrap .col-lg-4{width:33.33333333333333%}.mec-wrap .col-lg-3{width:25%}.mec-wrap .col-lg-2{width:16.666666666666664%}.mec-wrap .col-lg-1{width:8.333333333333332%}}#mec_woo_add_to_cart_btn{min-width:170px;margin-top:5px;text-align:center}.mec-breadcrumbs{border-radius:2px;padding:9px 15px 6px;font-size:11px;color:#8d8d8d;letter-spacing:0;text-transform:none;font-weight:500;margin:auto 15px 33px 15px;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.025)}.mec-breadcrumbs-modern{margin:auto 0 33px 0}.mec-breadcrumbs a{color:#000;padding-left:4px}.mec-breadcrumbs a:hover{text-decoration:underline}.mec-breadcrumbs i{font-size:8px;margin:0 0 0 4px}.mec-breadcrumbs .container{padding-left:20px}.mec-content-notification a{margin-left:5px}.mec-content-notification{background:#f7f7f7;padding:10px 10px 10px;border:1px solid #e8e8e8}.mec-content-notification p{margin-bottom:0}#mec-advanced-wraper div:first-child>ul{display:block;margin:5px 0;padding:5px 0;width:430px;border:1px solid #e1e2e3;border-radius:2px;box-shadow:0 1px 3px rgba(0,0,0,.05)}#mec-advanced-wraper div:first-child>ul span{display:none}#mec-advanced-wraper div:first-child>ul *{display:inline-block;background:#fff;font-size:12px;color:#717273;text-align:center}#mec-advanced-wraper div:first-child>ul>li{width:60px;font-weight:700;margin:0 10px 0 0;padding:4px 0;border-right:1px solid #e1e2e3}#mec-advanced-wraper div:first-child>ul>ul>li{margin:0;padding:2px 10px;cursor:pointer;border-radius:2px;transition:all .18s ease}#mec-advanced-wraper div:first-child>ul>ul>li:hover,.mec-active{background:#008aff!important;color:#fff!important}
1
+ .lity-container,.mec-wrap,.mec-wrap div:not([class^=elementor-]){font-family:Montserrat,Helvetica,Arial,sans-serif}.entry-content .mec-wrap h1,.entry-content .mec-wrap h2,.entry-content .mec-wrap h3,.entry-content .mec-wrap h4,.entry-content .mec-wrap h5,.entry-content .mec-wrap h6,.mec-wrap h1,.mec-wrap h2,.mec-wrap h3,.mec-wrap h4,.mec-wrap h5,.mec-wrap h6{font-family:Montserrat,Helvetica,Arial,sans-serif;color:#171c24;font-weight:300;font-style:inherit;letter-spacing:normal;clear:none}.mec-wrap h1{font-size:50px;line-height:1.16;margin-bottom:12px;letter-spacing:-1px}.mec-wrap h2{font-size:36px;line-height:1.14;margin-bottom:10px}.mec-wrap h3{font-size:28px;line-height:1.2;margin-bottom:8px}.mec-wrap h4{font-size:24px;line-height:1.2;margin-bottom:10px}.mec-wrap h5{font-size:18px;line-height:1.3;margin-bottom:7px}.mec-wrap h6{font-size:16px;line-height:1.3;margin-bottom:4px}.mec-wrap .subheader{color:#849098}.mec-wrap h1 strong{font-weight:700}.mec-wrap p{margin:0 0 20px 0;color:#616161;font-size:14px;line-height:1.8}.mec-wrap .mec-event-article .mec-color-hover{box-shadow:none;border:none}.mec-wrap abbr,.mec-wrap acronym{cursor:auto;border:none}.entry-content .mec-wrap a{box-shadow:none}.mec-wrap .button,.mec-wrap a.button:not(.owl-dot),.mec-wrap button:not(.owl-dot),.mec-wrap input[type=button],.mec-wrap input[type=reset],.mec-wrap input[type=submit]{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease}.mec-wrap .button:hover,.mec-wrap a.button:hover,.mec-wrap button:hover,.mec-wrap input[type=button]:hover,.mec-wrap input[type=reset]:hover,.mec-wrap input[type=submit]:hover{background:#222;color:#fff}.vertical-space,.vertical-space1,.vertical-space2,.vertical-space3,.vertical-space4,.vertical-space5{display:block;width:100%;margin:0;clear:both;border:0 none;height:20px}.vertical-space2{height:40px}.vertical-space3{height:60px}.vertical-space4{height:80px}.vertical-space5{height:100px}@media only screen and (max-width:479px){.vertical-space,.vertical-space1{height:8px}.vertical-space2{height:14px}.vertical-space3{height:28px}.vertical-space4{height:40px}.vertical-space5{height:60px}}@media only screen and (max-width:960px){.vertical-space,.vertical-space1{height:12px}.vertical-space2{height:18px}.vertical-space3{height:36px}.vertical-space4{height:50px}.vertical-space5{height:80px}}.mec-wrap abbr{cursor:auto;border-bottom:0}@-webkit-keyframes rotating{from{-ms-transform:rotate(0);-moz-transform:rotate(0);-webkit-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}to{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes rotating{from{-ms-transform:rotate(0);-moz-transform:rotate(0);-webkit-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}to{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}.mec-wrap{font:14px/25px sans-serif;font-family:Montserrat,Helvetica,Arial,sans-serif;font-weight:400;color:#626262}.mec-wrap .mec-events a{border-bottom:none}.mec-wrap .mec-container a{box-shadow:none}.mec-event-content p{font-family:Roboto,sans-serif;font-weight:300}.mec-wrap .mec-clear:after,.mec-wrap .mec-clear:before{content:" ";display:table}.mec-wrap .mec-clear:after{clear:both}.mec-events-button{background:#fff;padding:12px 34px;font-size:13px;font-weight:400;letter-spacing:0;border:1px solid #e3e3e3;margin-right:10px;transition:.3s}.mec-wrap .mec-events-button:hover{color:#fff}.mec-no-event{display:none}.mec-event-grid-classic .mec-event-article{position:relative;border:2px solid #e3e3e3;box-shadow:0 2px 0 0 rgba(0,0,0,.016);margin-bottom:30px;max-width:none}.mec-event-grid-classic .mec-event-content{background:#fff;color:#767676;padding:0 20px 5px;text-align:center;min-height:125px}.mec-event-grid-classic .mec-event-title{color:#202020;margin:10px 0;font-weight:700;font-size:20px;letter-spacing:1px;text-transform:uppercase}.mec-event-grid-classic .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-classic .mec-event-date{font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:1px;color:#fff;padding:3px 20px;margin:0 -20px 20px -20px;text-align:center}.mec-event-grid-classic .mec-event-content p{font-size:15px;color:#8a8a8a}.mec-event-grid-classic .mec-event-detail{display:none}.mec-event-grid-classic img{margin-bottom:0;width:100%}.mec-event-footer{position:relative;border-top:1px solid #efefef;padding:20px;min-height:80px;margin:0;background:#fafafa}.mec-event-sharing-wrap{left:15px;position:absolute;list-style:none;margin:0}.mec-event-sharing-wrap .mec-event-sharing{position:absolute;padding:8px 0 2px;left:-6px;bottom:54px;margin:0;margin-top:6px;border-radius:5px;width:50px;visibility:hidden;opacity:0;border:1px solid #e2e2e2;background:#fff;box-shadow:0 0 9px 0 rgba(0,0,0,.06);z-index:99;-webkit-transition:all .18s ease;transition:all .18s ease}.mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-sharing-wrap .mec-event-sharing:before{content:'';display:block;position:absolute;bottom:-10px;left:50%;margin-left:-10px;width:0;height:0;border-style:solid;border-width:10px}.mec-event-sharing-wrap .mec-event-sharing:before{bottom:-21px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-sharing-wrap .mec-event-sharing:after{bottom:-19px;border-color:#fff transparent transparent transparent}.mec-event-sharing-wrap:hover .mec-event-sharing{opacity:1;visibility:visible}.mec-event-sharing-wrap li{text-align:center;border:0;display:block;margin-right:2px;overflow:hidden;margin:0 auto 6px;width:38px}.mec-event-sharing-wrap:hover>li{cursor:pointer;background-color:#40d9f1}.mec-event-sharing-wrap:hover li a{color:#fff}.mec-event-sharing-wrap>li{border:1px solid #d9d9d9}.mec-event-sharing-wrap li a,.mec-event-sharing-wrap:hover li ul li a{border:none;color:#767676}.mec-event-sharing-wrap li i{width:36px;height:36px;display:table-cell;vertical-align:middle}.mec-event-sharing-wrap .mec-event-sharing li a{display:block}.mec-event-sharing-wrap .mec-event-sharing li:hover a{color:#40d9f1}.mec-event-sharing .mec-event-share:hover .event-sharing-icon{background:#40d9f1;border-width:0 1px 0;cursor:pointer}.mec-event-sharing .mec-event-map{border-width:1px 0 1px}.mec-event-footer .mec-booking-button{box-shadow:none;transition:all .21s ease;font-size:11px;font-weight:500;letter-spacing:1px;text-transform:uppercase;background:#fff;color:#767676;border:1px solid #e8e8e8;position:absolute;top:20px;right:15px;padding:0 16px;line-height:37px;height:38px}.mec-event-footer .mec-booking-button:hover{background:#191919;color:#fff;border-color:#191919}@media only screen and (max-width:960px){.mec-event-grid-classic{margin-bottom:30px}}.mec-widget .mec-event-grid-classic.mec-owl-carousel{padding:36px 0 16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav{margin:5px 0;width:100%;position:absolute;top:15px;padding:0}.mec-skin-grid-container.mec-widget{padding-top:18px}.mec-widget .mec-event-grid-classic.mec-owl-carousel{padding:20px 0 16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav{margin:0;width:100%;position:absolute;top:0;padding:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav div{position:absolute;background:#fff;line-height:0;width:34px;height:26px;padding:6px;text-align:center;margin-top:-17px;border-radius:3px;border:1px solid #e2e2e2;text-align:center;box-shadow:0 2px 0 0 rgba(0,0,0,.028);transition:all .33s ease}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav .owl-next{right:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav .owl-prev{left:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-sharing{display:none}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-footer{text-align:center}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-footer .mec-booking-button{position:static;padding:11px 16px}.widget .mec-event-footer ul.mec-event-sharing-wrap li a.mec-event-share-icon{padding:0}@media screen and (min-width:56.875em){.mec-widget .mec-month-container dl{margin-bottom:0}}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-footer{text-align:right}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-sharing-wrap{left:5px;padding-left:5px}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-sharing-wrap .mec-event-sharing{left:0}.mec-widget .mec-event-sharing-wrap .mec-event-sharing{position:absolute;top:auto;bottom:52px;margin:0;margin-top:0;border-radius:5px}.mec-widget .mec-event-sharing-wrap .mec-event-sharing:after{top:auto;bottom:-17px;border-color:#fff transparent transparent transparent}.mec-widget .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-18px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-grid-clean{margin-bottom:10px;max-width:none}.mec-event-grid-clean .mec-event-article{margin-bottom:30px;position:relative;border:1px solid #e2e2e2;text-align:center;padding:15px 15px 0;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-clean .mec-event-content{background:#fff;color:#767676;padding:25px 16px 0;text-align:left}.mec-event-grid-clean .mec-event-title{color:#202020;margin:0 0 10px 0;font-weight:700;font-size:21px;text-transform:capitalize}.mec-event-grid-clean .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-clean .mec-event-date{font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:1px;background-color:#40d9f1;color:#fff;padding:3px 0;margin:0;text-align:center}.mec-event-grid-clean .mec-event-content p{font-size:15px;color:#9a9a9a;line-height:1.54}.mec-event-grid-clean img{margin-bottom:0;width:100%}.mec-event-grid-clean .event-grid-t2-head{margin-bottom:10px;color:#fff;padding:9px 14px 6px;text-align:left}.mec-event-grid-clean .event-grid-t2-head .mec-event-date{font-size:50px;line-height:50px;float:left;margin-right:11px}.mec-event-grid-clean .event-grid-t2-head .mec-event-month{text-transform:uppercase;font-size:17px;line-height:20px;padding-top:4px}.mec-event-grid-clean .event-grid-t2-head .mec-event-detail{font-size:12px}.mec-event-grid-clean .mec-event-sharing-wrap{left:0}.mec-event-grid-clean .mec-event-footer{position:relative;border-top:2px solid;padding:20px 0;margin:0 14px;text-align:left;background:0 0}.mec-event-grid-clean .mec-event-footer .mec-booking-button{right:0}.mec-event-grid-clean .row{margin-bottom:30px}.mec-event-grid-modern{margin-bottom:10px;max-width:none}.mec-event-grid-modern .mec-event-article{position:relative;border:1px solid #e2e2e2;text-align:center;margin-bottom:30px;padding:45px 15px 10px;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-modern .mec-event-content{background:#fff;color:#767676;padding:35px 15px 10px;text-align:left}.mec-event-grid-modern .mec-event-title{color:#202020;margin:0 0 10px 0;font-weight:700;font-size:24px;text-transform:none;letter-spacing:-1px}.mec-event-grid-modern .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-modern .mec-event-content p{font-size:15px;color:#9a9a9a;line-height:1.54}.mec-event-grid-modern img{margin-bottom:0;width:100%}.mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:9px 14px 6px;text-align:left}.mec-event-grid-modern .event-grid-modern-head .mec-event-date{font-size:50px;line-height:50px;float:left;margin-right:11px}.mec-event-grid-modern .event-grid-modern-head .mec-event-month{text-transform:uppercase;font-size:17px;line-height:20px;padding-top:4px}.mec-event-grid-modern .event-grid-modern-head .mec-event-detail{font-size:12px}.mec-event-grid-modern .event-grid-modern-head .mec-event-day{margin-top:9px;color:silver;font-family:Roboto,sans-serif;font-size:35px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.mec-event-grid-modern .mec-event-footer{position:relative;height:90px;padding:20px 0;border:none;margin:0 14px;text-align:left;background:0 0}.mec-event-grid-modern .mec-event-footer .mec-booking-button{right:auto;left:0}.mec-event-grid-modern .mec-event-sharing-wrap{left:auto;right:0}.mec-event-grid-modern .mec-event-sharing{left:auto;right:-6px}.mec-event-grid-modern .mec-event-sharing-wrap li{border-radius:55px}.mec-event-grid-modern .row{margin-bottom:0}@media only screen and (max-width:479px){.mec-event-grid-modern .mec-event-article{padding-bottom:30px}.mec-event-grid-modern .mec-event-sharing{top:60px;left:0;right:auto}.mec-event-grid-modern .mec-event-footer .mec-booking-button{top:0}}.mec-event-grid-colorful .mec-event-article{min-height:400px;border:none;box-shadow:none;background:#40d9f1;padding-top:25px;margin:0;color:#fff}.mec-event-grid-colorful .mec-event-content{background:0 0}.mec-event-grid-colorful .event-grid-modern-head,.mec-event-grid-colorful .event-grid-modern-head .mec-event-date,.mec-event-grid-colorful .event-grid-modern-head .mec-event-day,.mec-event-grid-colorful .mec-event-content p,.mec-event-grid-colorful .mec-event-sharing-wrap>li>a,.mec-event-grid-colorful .mec-event-title a{color:#fff}.mec-event-grid-colorful .mec-event-footer .mec-booking-button{border:none}.mec-event-grid-colorful .mec-event-sharing-wrap>li{border-color:#fff}.mec-event-grid-colorful .mec-event-sharing-wrap:hover>li{background:#333;border-color:#333}.mec-event-grid-colorful .mec-event-title a.mec-color-hover:hover{color:#fff;text-decoration:underline}.mec-event-grid-colorful .mec-event-title .event-color{display:none}.mec-event-grid-colorful div[class^=col-md-]{padding:0 1px 1px 0;margin:0}@media only screen and (min-width:768px){.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-day{font-size:26px}.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-month{font-size:15px}.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-date{font-size:50px}.mec-wrap.mec-sm959.mec-event-grid-colorful .mec-event-title{font-size:21px}.mec-wrap.mec-sm959.mec-event-grid-colorful .mec-event-content p{font-size:13px}}@media only screen and (min-width:768px) and (max-width:1200px){.mec-wrap.mec-sm959.mec-event-grid-colorful div[class^=col-md-]{width:50%}}.mec-event-list-minimal .mec-event-article{border-bottom:1px solid #efefef;padding:24px 0 16px}.mec-event-list-minimal .mec-wrap .col-md-9{padding:0}.mec-event-list-minimal .mec-event-date{position:relative;float:left;margin-right:30px;color:#fff;width:52px;padding:6px 4px 3px;text-align:center;text-transform:uppercase;border-radius:3px}.mec-event-list-minimal .mec-event-date span{display:block;font-size:24px;font-weight:700;text-align:center;margin-bottom:4px}.mec-event-list-minimal .mec-event-date:after{display:block;content:"";position:absolute;width:50px;left:1px;top:1px;height:30px;background:rgba(255,255,255,.1);box-shadow:0 4px 4px rgba(0,0,0,.02)}.mec-event-list-minimal .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;font-size:18px;text-transform:uppercase;letter-spacing:0;padding-top:5px}.mec-event-list-minimal .mec-event-detail{font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;font-family:Roboto,sans-serif}.mec-event-list-minimal .btn-wrapper{text-align:right;padding-right:0;padding-top:6px}.mec-event-list-minimal .btn-wrapper .mec-detail-button{border-bottom:0;margin-bottom:14px;margin-right:0;box-shadow:none}.mec-event-list-minimal a.mec-detail-button{text-align:center;display:inline-block;background:#ededed;color:#191919;padding:12px;border-radius:2px;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:2px;transition:all .24s ease}.mec-event-list-minimal a.mec-detail-button:hover{background:#292929;color:#fff}.vc_col-sm-4 .mec-event-list-minimal .mec-event-date,.vc_col-sm-6 .mec-event-list-minimal .mec-event-date{margin-right:12px}.vc_col-sm-4 .mec-event-list-minimal .mec-event-title,.vc_col-sm-6 .mec-event-list-minimal .mec-event-title{font-size:15px;letter-spacing:2px}@media only screen and (min-width:480px) and (max-width:767px){.mec-event-list-minimal .btn-wrapper{padding-left:0}.mec-event-list-minimal .mec-event-date{margin-right:10px}}@media only screen and (max-width:767px){.mec-event-list-minimal .btn-wrapper .mec-detail-button{display:block;text-align:center;margin:0;margin-top:16px;padding:8px}.mec-event-list-minimal .btn-wrapper{margin:12px 0}}@media only screen and (max-width:479px){.mec-event-list-minimal .mec-event-date{float:none;width:100%;margin-bottom:8px}.mec-event-list-minimal .mec-event-date span{display:inline;padding-right:25px;margin-right:7px;font-size:inherit}.mec-event-list-minimal .mec-event-date:after{width:45%;box-shadow:4px 0 4px rgba(0,0,0,.02)}.mec-event-list-minimal .btn-wrapper{text-align:center;padding-left:0}.mec-event-list-minimal{text-align:center}.mec-event-list-minimal .mec-event-detail{margin-bottom:10px}}.mec-wrap .mec-event-list-modern .mec-event-title{margin-top:0;margin-bottom:10px}.mec-event-list-modern .mec-event-article{border-bottom:1px solid #efefef;padding:30px 0 10px}.mec-event-list-modern .mec-event-article:last-child{border-bottom:none}.mec-event-list-modern .mec-event-title a{color:#191919;transition:all .24s ease;box-shadow:none}.mec-event-list-modern .mec-event-date{text-transform:uppercase;padding:10px 0}.mec-event-list-modern .mec-event-date .event-d{font-size:48px;display:table-cell;padding:10px 0 0}.mec-event-list-modern .mec-event-date .event-f{font-size:13px;display:table-cell;vertical-align:middle;padding-left:7px;font-weight:500;letter-spacing:3px;color:#777}.mec-event-list-modern .mec-event-detail{font-weight:300;color:#8a8a8a}.mec-event-list-modern .mec-event-date .event-da{margin-top:9px;color:silver;font-family:Roboto,sans-serif;font-size:28px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.mec-event-list-modern .mec-btn-wrapper .mec-booking-button{border-radius:1px;letter-spacing:2px;border:1px solid #e6e6e6;color:#333;background-color:#fff;padding:13px 20px;font-weight:700;font-size:11px;box-shadow:0 2px 0 0 rgba(0,0,0,.016);transition:all .28s ease}.mec-event-list-modern .mec-btn-wrapper .mec-booking-button:hover{border-color:#222;background:#222;color:#fff}.mec-event-list-modern .mec-event-title{font-weight:700;font-size:20px;text-transform:uppercase;letter-spacing:1px}.mec-event-list-modern .mec-event-detail{color:#9a9a9a;font-size:15px;font-weight:300;line-height:25px;font-family:Roboto,sans-serif}.mec-event-list-modern .mec-btn-wrapper{text-align:right;padding:10px 0;text-transform:uppercase}.mec-event-list-modern .mec-event-sharing{position:relative;margin:10px 0}.mec-event-list-modern .mec-event-sharing>li{display:inline-block;border:none;border-radius:50%;margin-right:3px}.mec-event-list-modern .mec-event-sharing>li:hover{display:inline-block}.mec-event-list-modern .mec-event-sharing>li:hover a i{color:#fff;background:#40d9f1;border-color:#40d9f1}.mec-event-list-modern .mec-event-sharing>li i{width:36px;display:inline-block;line-height:35px;color:#767676;text-align:center;border-radius:50%;border:1px solid #ddd;font-size:14px}.mec-event-list-modern .mec-event-sharing .mec-event-share:hover .mec-event-sharing-icon{background:#40d9f1;border-color:#40d9f1;cursor:pointer;border-radius:50%}.mec-event-list-modern .mec-event-sharing li:hover a i{background:#40d9f1}@media only screen and (min-width:768px){.mec-event-list-modern .mec-event-article{position:relative;min-height:160px;overflow:hidden}.mec-event-list-modern .col-md-2.col-sm-2{width:210px;position:absolute;left:0;top:20px}.mec-event-list-modern .col-md-4.col-sm-4.mec-btn-wrapper{width:180px;padding:0;position:absolute;right:0;top:30%}.mec-event-list-modern .col-md-6.col-sm-6{width:100%;padding-left:225px;padding-right:195px}}@media only screen and (max-width:767px){.mec-event-list-modern .mec-btn-wrapper .mec-booking-button{letter-spacing:1px;border:1px solid #e1e1e1;padding:8px 16px}.mec-event-list-modern .mec-btn-wrapper{padding:0 0 12px}.mec-event-list-modern .mec-event-sharing{margin-bottom:0}}.mec-event-grid-minimal .mec-event-article{margin:15px 0;min-height:80px;display:table}.mec-event-grid-minimal .event-detail-wrap{display:table-cell;vertical-align:middle}.mec-event-grid-minimal .mec-event-date{width:70px;float:left;margin-right:20px;padding:12px 16px 10px;text-align:center;text-transform:uppercase;border-radius:4px;border:1px solid #e6e6e6;transition:all .37s ease-in-out;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-minimal .mec-event-date span{display:block;font-size:24px;font-weight:700;text-align:center;margin-bottom:4px;color:#2a2a2a;transition:color .3s ease}.mec-event-grid-minimal .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;line-height:21px;font-size:16px;text-transform:uppercase;transition:color .3s ease}.mec-event-grid-minimal .mec-event-title a{color:#191919;transition:color .3s ease}.mec-event-grid-minimal .mec-event-detail{font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;font-family:Roboto,sans-serif}.mec-event-grid-minimal .mec-event-date:hover{color:#fff}.mec-event-grid-minimal .mec-event-date:hover span{color:#fff}.mec-event-list-classic .mec-event-article{padding:12px 0;margin-bottom:20px}.mec-event-list-classic .mec-event-image{float:left;width:86px;margin-right:20px}.mec-event-list-classic .mec-event-date{font-weight:400;font-size:13px;letter-spacing:0;line-height:18px}.mec-event-list-classic .mec-event-date span{font-weight:500;margin-bottom:6px}.mec-event-list-classic .mec-event-title{font-size:15px;margin:10px 0 12px;font-weight:700;text-transform:uppercase}.mec-event-list-classic .mec-event-title a{color:#494949;transition:color .3s ease}.mec-event-list-classic .mec-event-detail{color:#777;font-weight:400;line-height:12px;font-size:12px;overflow:hidden}.mec-event-list-classic a.magicmore{padding:10px 16px;color:#fff;background:#222;letter-spacing:2px;font-size:11px}.mec-event-list-classic a.magicmore:after{content:"";display:none}.mec-event-list-classic a.magicmore:hover{color:#40d9f1}.mec-event-grid-simple .mec-event-article{position:relative;margin-bottom:30px}.mec-event-grid-simple .mec-event-article:after{border-right:1px solid #e6e6e6;height:60px;position:absolute;top:50%;margin-top:-30px;right:-1px}.mec-event-grid-simple .row div:last-child .mec-event-article:after{border:none}.mec-event-grid-simple .row{margin:15px 0 30px;text-align:center}.mec-event-grid-simple .mec-event-date{padding:0;margin:0;text-transform:capitalize;font-size:12px;font-weight:700}.mec-event-grid-simple .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;line-height:21px;font-size:15px;padding-top:5px;text-transform:uppercase;transition:color .37s ease}.mec-event-grid-simple .mec-event-title a{color:#494949;transition:color .3s ease}.mec-event-grid-simple .mec-event-detail{font-family:Roboto,sans-serif;font-weight:400;line-height:1;letter-spacing:0;font-size:13px;color:#777}.mec-event-grid-simple:hover .mec-event-title{color:#40d9f1}.mec-event-grid-simple:hover .mec-event-date{background:0 0}.event-last:after{display:none}@media only screen and (max-width:767px){.mec-event-grid-simple .mec-event-article{padding-bottom:20px;margin-bottom:20px;border-bottom:1px solid #eee}.mec-event-grid-simple .mec-event-article:after{border:none}}.mec-event-grid-novel .mec-event-article{position:relative;margin-bottom:30px;padding:60px 5% 60px 7%;border:1px solid rgba(255,255,255,.12);border-radius:10px;background-color:#0050fd;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease;z-index:1}.mec-event-grid-novel .mec-event-article .novel-grad-bg{position:absolute;top:0;left:0;width:100%;height:100%;border-radius:10px;opacity:0;z-index:-1;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease}.mec-event-grid-novel .mec-event-article:hover{-webkit-box-shadow:0 13px 36px 0 rgba(0,0,0,.23);box-shadow:0 13px 36px 0 rgba(0,0,0,.23);border-color:transparent}.mec-event-grid-novel .mec-event-article:hover .novel-grad-bg{background-image:-webkit-gradient(linear,left top,right top,from(#262e32),to(#0e1015));background-image:-webkit-linear-gradient(left,#262e32 0,#0e1015 100%);background-image:-o-linear-gradient(left,#262e32 0,#0e1015 100%);background-image:linear-gradient(90deg,#262e32 0,#0e1015 100%);opacity:1}.mec-event-grid-novel .mec-event-image{float:left;width:150px;height:150px}.mec-event-grid-novel .mec-event-image img{width:150px;height:150px;border-radius:50%}.mec-event-grid-novel .mec-event-detail-wrap{margin-left:200px}.mec-event-grid-novel .mec-event-content h4{position:relative;margin-bottom:10px;display:inline-block}.mec-event-grid-novel .mec-event-content h4 a{font-size:24px;line-height:35px;color:#fafcff}.mec-event-grid-novel .mec-event-content h4::before{content:'';position:absolute;top:8px;left:-30px;width:17px;height:17px;background:#5cd0ed;opacity:.4;border-radius:50%}.mec-event-grid-novel .mec-event-content h4::after{content:'';position:absolute;top:12px;left:-26px;width:9px;height:9px;background:#5cd0ed;border-radius:50%}.mec-event-grid-novel .mec-event-address,.mec-event-grid-novel .mec-event-detail,.mec-event-grid-novel .mec-event-month{position:relative;padding-left:35px;font-size:15px;line-height:30px;color:rgba(255,255,255,.4)}.mec-event-grid-novel .mec-event-address::before,.mec-event-grid-novel .mec-event-detail::before,.mec-event-grid-novel .mec-event-month::before{position:absolute;top:6px;left:6px;font-size:17px;font-family:simple-line-icons;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1}.mec-event-grid-novel .mec-event-month::before{content:"\e075"}.mec-event-grid-novel .mec-event-detail::before{content:"\e081"}.mec-event-grid-novel .mec-event-address::before{content:"\e096"}.mec-event-grid-novel .mec-event-footer{clear:both;padding:20px 0;border-top:none;background:0 0}.mec-event-grid-novel .mec-event-footer .mec-booking-button{right:auto;left:0;height:42px;width:148px;padding:0 20px;font-size:14px;font-weight:400;line-height:42px;text-align:center;color:#fff;background:0 0;border-color:rgba(255,255,255,.1);border-radius:50px}.mec-event-grid-novel .mec-event-footer .mec-booking-button:hover{background-color:rgba(255,255,255,.1)}.mec-event-grid-novel .mec-event-sharing-wrap{left:175px;cursor:pointer}.mec-event-grid-novel .mec-event-sharing-wrap>li{border-color:rgba(255,255,255,.1);border-radius:50%}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing{top:-5px;left:0;padding:5px 10px 2px 50px;min-width:150px;width:inherit;height:37px;background-color:rgba(255,255,255,.1);-webkit-box-shadow:none;box-shadow:none;border:none;border-radius:50px}.mec-event-grid-novel .mec-event-sharing-wrap:hover>li{background-color:rgba(255,255,255,.1)}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing::after,.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing::before{display:none}.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon,.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon a,.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li i{display:inline}.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon a{padding:0 10px}.mec-event-grid-novel .mec-event-sharing-wrap>li a{color:#fff}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li a{color:rgba(255,255,255,.4)}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li a:hover{color:rgba(255,255,255,1)}@media only screen and (max-width:1200px){.mec-event-grid-novel .row .col-md-6.col-sm-6{width:100%;float:none}.mec-event-grid-novel .mec-event-image{float:none;margin-top:-20px;margin-bottom:20px}.mec-event-grid-novel .mec-event-detail-wrap{margin-left:20px}.mec-event-grid-novel .mec-event-footer{margin-top:30px}}@media only screen and (max-width:767px){.mec-event-grid-novel .mec-event-footer{margin-top:0;padding-top:30px;margin-bottom:24px}.mec-event-grid-novel .mec-event-footer .mec-booking-button{display:block;position:relative}.mec-event-grid-novel .mec-event-sharing-wrap{left:0;bottom:-55px}.mec-event-grid-novel .mec-event-content h4 a{font-size:20px;line-height:1.3}}.mec-event-cover-modern{position:relative}.mec-event-cover-modern .mec-event-cover-a{background:0 0;position:absolute;color:#fff;bottom:0;left:0;text-decoration:none}.mec-event-cover-modern .mec-event-cover-a .mec-event-overlay{transition:all .5s;opacity:.8;width:100%;height:100%;position:absolute}.mec-event-cover-modern .mec-event-cover-a:hover .mec-event-overlay{opacity:1}.mec-event-cover-modern .mec-event-detail{padding:40px;position:relative}.mec-event-cover-modern .mec-event-cover-a:hover .mec-event-tag{color:#333;transition:all .5s}.mec-event-cover-modern .mec-event-cover-a .mec-event-title:hover{text-decoration:underline}.mec-event-cover-modern .mec-event-tag{background:#fff;display:inline-block;padding:5px 9px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:24px}.mec-event-cover-modern .mec-event-date{text-transform:uppercase;font-size:17px;font-weight:300}.mec-event-cover-modern .mec-event-title{color:#fff;text-transform:uppercase;font-size:40px;font-weight:700;margin:6px 0}.mec-event-cover-modern .mec-event-place{font-weight:400;font-size:18px;font-family:Roboto,sans-serif}@media only screen and (max-width:767px){.mec-event-cover-modern .mec-event-cover-a{width:100%}}.mec-event-cover-classic{position:relative;overflow:hidden;background:#fff;padding:6px;border:1px solid #e8e8e8}.mec-event-cover-classic .mec-event-overlay{position:absolute;left:6px;right:6px;bottom:6px;top:6px;width:auto;height:auto;background-color:rgba(36,36,36,.4);transition:all .33s ease-in-out}.mec-event-cover-classic:hover .mec-event-overlay{background-color:rgba(36,36,36,.6)}.mec-event-cover-classic .mec-event-content{font-size:15px;color:#fff;position:absolute;bottom:0;padding:50px 35px;transition:all .33s ease-in-out}.mec-event-cover-classic .mec-event-date{font-size:14px;text-transform:uppercase;font-weight:400;line-height:1.6}.mec-event-cover-classic .mec-event-date span{display:block;font-weight:700;font-size:16px}.mec-event-cover-classic .mec-event-title{color:#fff;margin:20px 0 38px;font-size:24px;font-weight:700;text-transform:uppercase;font-style:normal}.mec-event-cover-classic .mec-btn-wrapper{text-align:left}.mec-event-cover-classic .mec-event-icon{font-size:18px;float:left;margin-right:14px;color:#fff;padding:13px}.mec-event-cover-classic .mec-event-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:12px 20px;letter-spacing:3px;font-size:12px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none}.mec-event-cover-classic .mec-event-button:hover{color:#191919;background-color:#fff;border-color:#fff;border-radius:1px}.mec-event-cover-classic .mec-event-image img{min-width:100%}@media only screen and (max-width:960px){.mec-event-cover-classic .mec-event-content{padding:20px}.mec-event-cover-classic .mec-event-button{font-size:11px;padding:7px 10px;letter-spacing:1px}.mec-event-cover-classic .mec-event-title{font-size:19px;margin:15px 0 25px}.mec-event-cover-classic .mec-event-date{font-size:12px}}@media only screen and (max-width:767px){.mec-event-cover-classic{margin-bottom:30px}}@media only screen and (max-width:479px){.mec-event-cover-classic .mec-event-content{padding:15px;font-size:15px}.mec-event-cover-classic .mec-event-title{font-size:15px;margin:10px 0}.mec-event-cover-classic .mec-event-button{font-size:10px;padding:6px;letter-spacing:1px}.mec-event-cover-classic .mec-event-icon{padding:10px}}.mec-load-more-wrap{text-align:center;display:block;width:100%;padding-top:20px;text-align:center;position:relative}.mec-load-more-button{box-shadow:none;transition:all .21s ease;font-size:12px;font-weight:500;letter-spacing:1px;text-transform:uppercase;background:#fff;color:#767676;border:2px solid #e8e8e8;border-radius:50px;padding:0 28px;margin-bottom:20px;cursor:pointer;line-height:40px;font-family:Montserrat,Helvetica,Arial,sans-serif;height:42px;display:inline-block}.mec-load-more-button:hover{background:#191919;color:#fff;border-color:#191919}.mec-load-more-loading{content:url(../img/ajax-loader.gif);cursor:wait;background:0 0;border-style:none}.mec-load-more-loading:hover{background:0 0}.mec-modal-preloader,.mec-month-navigator-loading{width:100%;height:100%;background:no-repeat rgba(255,255,255,.88) url(../img/ajax-loader.gif) center;border-style:none;position:fixed;left:0;right:0;bottom:0;top:0;z-index:9}.mec-event-calendar-classic .mec-calendar-side .mec-calendar-table{min-height:1024px}.mec-calendar-side .mec-calendar-table{min-height:450px}.mec-skin-weekly-view-events-container.mec-month-navigator-loading{margin-top:0}.mec-calendar.mec-event-calendar-classic .mec-calendar-side{display:block}.mec-skin-daily-view-events-container.mec-month-navigator-loading{margin-top:0}@media only screen and (min-width:961px){.mec-wrap.mec-sm959 .mec-calendar-side .mec-calendar-table{min-height:1px}}@media only screen and (max-width:479px){.mec-calendar-side .mec-calendar-table{min-height:1px}}.mec-event-cover-clean{position:relative;border:1px solid #e6e6e6;padding:8px}.mec-event-cover-clean .mec-event-overlay{height:100%;background-color:rgba(36,36,36,.4);position:absolute;width:100%;left:0;border:8px solid #fff;top:0;transition:all .5s ease-in-out}.mec-event-cover-clean .mec-event-content{color:#fff;position:absolute;bottom:20px;padding:40px 60px;transition:all .5s ease-in-out}.mec-event-cover-clean .mec-event-title{color:#fff;font-weight:700;margin:46px 0 19px;font-size:29px;text-transform:uppercase;text-shadow:0 0 1px rgba(0,0,0,.5)}.mec-event-cover-clean .mec-event-title a{color:#fff;transition:all .5s;text-decoration:none;outline:0;border:none;box-shadow:none}.mec-event-cover-clean .mec-event-title a:hover{text-decoration:underline}.mec-event-cover-clean .mec-event-date{position:absolute;top:-20px;right:60px;color:#fff;width:60px;padding:14px 10px;z-index:1}.mec-event-cover-clean .mec-event-date div{text-align:center;text-transform:uppercase;letter-spacing:1px;line-height:16px}.mec-event-cover-clean .mec-event-date .dday{padding-bottom:15px;border-bottom:1px solid rgba(255,255,255,.5);margin-bottom:13px;font-size:24px}.mec-event-cover-clean .mec-event-date .dmonth{letter-spacing:2px}.mec-event-cover-clean .mec-event-place{font-size:18px;font-family:Roboto,sans-serif}.mec-event-cover-clean .mec-event-image img{width:100%}@media only screen and (max-width:768px){.mec-event-cover-clean .mec-event-content{padding:20px;bottom:5px}.mec-event-cover-clean .mec-event-title{font-size:23px}.mec-event-cover-clean .mec-event-date{right:20px;padding:10px;width:50px}}@media only screen and (max-width:479px){.mec-event-cover-clean .mec-event-content{padding:10px}.mec-event-cover-clean .mec-event-title{font-size:19px;padding-right:25px}.mec-event-cover-clean .mec-event-date{right:-20px;top:-10px}.mec-event-cover-clean .mec-event-detail{font-size:12px}}.mec-month-divider{text-align:center;margin:60px 0 40px 0}.widget .mec-month-divider{margin:10px 0}.mec-month-divider span{text-transform:uppercase;font-size:22px;font-weight:700;padding-bottom:5px;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative}.mec-month-divider span:before{border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-30px;left:50%;width:60px}.widget .mec-month-divider span{font-size:13px}.mec-event-list-standard .mec-events-pagination{margin-top:60px;border-top:4px solid #ebebeb;min-height:80px;padding-top:20px}.mec-event-list-standard .mec-events-pagination .mec-events-pag-previous{float:left;margin-left:0}.mec-event-list-standard .mec-events-pagination .mec-events-pag-next{float:right;margin-right:0}.mec-event-list-standard .mec-event-article{position:relative;display:block;margin-bottom:25px;border:1px solid #e9e9e9;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-list-standard .mec-topsec{display:table;width:100%}.mec-event-list-standard .col-md-3.mec-event-image-wrap{padding-left:0}.mec-event-list-standard .mec-event-content{padding-top:15px;padding-right:30px}.mec-event-list-standard .mec-event-title{font-size:29px;font-weight:700;letter-spacing:-1px;margin:0 0 10px}.mec-event-list-standard .mec-event-title a{color:#292929;transition:color .3s ease}.mec-event-list-standard .mec-col-table-c{display:table-cell;height:100%;vertical-align:middle;float:none!important}.mec-event-list-standard .mec-col-table-c.mec-event-meta-wrap{padding-top:15px}.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{vertical-align:top}.mec-topsec .mec-event-image{line-height:1px}.mec-event-list-standard .mec-event-meta-wrap{border-left:1px solid #eee}.mec-event-list-standard .mec-time-details{text-transform:uppercase;font-size:11px;font-weight:300;padding-top:0;text-align:left;padding-left:30px}.mec-event-list-standard .mec-event-meta .mec-event-address{font-style:normal;letter-spacing:0;font-size:13px;color:#8a8a8a}.mec-event-list-standard .mec-event-meta span.mec-event-d,.mec-event-list-standard .mec-event-meta span.mec-event-m{font-size:17px;font-weight:700;padding-right:6px;color:#444;text-transform:uppercase}.mec-event-list-standard .mec-date-details,.mec-event-list-standard .mec-time-details,.mec-event-list-standard .mec-venue-details{position:relative;padding-left:28px;margin-bottom:10px}.mec-event-list-standard .mec-date-details:before,.mec-event-list-standard .mec-time-details:before,.mec-event-list-standard .mec-venue-details:before{content:"\f041";font-family:fontawesome;position:absolute;left:6px;font-size:15px}.mec-event-list-standard .mec-date-details:before{content:"\f073"}.mec-event-list-standard .mec-time-details:before{content:"\f017"}.mec-event-list-minimal .mec-event-title a{color:#292929;transition:color .3s ease}.mec-event-meta-wrap .mec-price-details{margin-bottom:10px}.mec-price-details i{margin-right:5px;vertical-align:text-top}.mec-event-meta-wrap .mec-event-meta .mec-price-details i:before{font-size:15px}@media only screen and (max-width:960px){.mec-event-list-standard .mec-topsec{display:block}.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{display:block;width:40%}.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap{display:block;min-height:230px}.mec-event-list-standard .mec-event-meta-wrap{display:block;border-left:none;border-top:1px solid #eee;width:100%;float:none;padding-top:20px}}@media only screen and (min-width:480px) and (max-width:960px){.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap,.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{display:table-cell}}@media only screen and (max-width:479px){.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap,.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap img{float:none;width:100%;padding:0}.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap{padding:10px 10px 10px 30px}}.mec-wrap .mec-events-cal-links{margin-bottom:0}.mec-single-event #mec-wrap{padding:0;margin-top:35px}.mec-wrap .mec-single-title{margin-top:0;margin-bottom:30px;font-weight:700;font-size:33px}.mec-single-event .mec-event-content{padding:40px 0 30px;margin-bottom:10px}.mec-single-event .mec-events-meta-group-booking,.mec-single-event .mec-frontbox{margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-wrap #main-content{overflow:hidden;padding-top:35px}.mec-single-event .mec-map-get-direction-address-cnt{position:relative}.mec-single-event .mec-map-get-direction-address-cnt input.mec-map-get-direction-address{width:100%;height:46px;padding:13px 10px;margin-bottom:0;background:#fcfcfc;border:1px solid #e0e0e0;border-radius:0;box-shadow:inset 0 2px 5px rgba(0,0,0,.081)}.mec-single-event .mec-map-get-direction-address-cnt input.mec-map-get-direction-address:focus{color:#444;background:#fff;border-color:#b0b0b0;box-shadow:0 0 3px rgba(0,0,0,.2)}.mec-single-event .mec-map-get-direction-btn-cnt input{width:100%}.mec-single-event .mec-map-get-direction-reset{position:absolute;z-index:2;top:5px;right:10px;font-size:11px;cursor:pointer}.mec-events-meta-group-tags{margin-top:20px}.mec-events-meta-group-tags a{display:inline-block;color:#444;font-size:11px;text-transform:uppercase;letter-spacing:1.5px;font-weight:500;padding:3px 7px;border:1px solid #ddd;border-radius:2px;background:#fff;margin:1px 3px}.mec-events-meta-group-tags a:hover{text-decoration:underline;background:#f9f9f9}.mec-local-time-details li{list-style:none}.mec-single-event:not(.mec-single-modern) .mec-local-time-details{background:#f7f7f7;padding:12px 14px 8px;margin-bottom:12px;vertical-align:baseline;position:relative;border:none}.mec-single-event:not(.mec-single-modern) .mec-local-time-details ul{margin:0;padding-left:35px}.mec-single-event:not(.mec-single-modern) .mec-local-time-details h3{border:none;padding-left:15px}.mec-single-event:not(.mec-single-modern) .mec-local-time-details h3:before{display:none}.mec-single-event.mec-single-modern i.mec-sl-speedometer{display:none}.mec-single-event .mec-events-meta-group-booking{padding-bottom:30px}.mec-single-event .mec-events-meta-group-booking ul{list-style:none;margin-left:0;padding-left:0}.mec-single-event .mec-events-meta-group-booking ul li{padding:0;list-style:none;margin-top:40px}.mec-single-event .mec-events-meta-group-booking h4{margin-bottom:20px;font-size:23px;font-weight:700}.mec-single-event .mec-events-meta-group-booking li h4{font-size:19px}.mec-single-event .mec-events-meta-group-booking button,.mec-single-event .mec-events-meta-group-booking input{border-radius:0;margin-bottom:6px}.mec-single-event .mec-events-meta-group-booking button{min-width:170px;margin-top:5px}.mec-single-event .mec-events-meta-group-booking button{margin-left:15px}.mec-single-event .mec-book-form-coupon button{margin-left:0}.mec-single-event .mec-book-form-gateway-checkout button{margin-left:0}.mec-single-event .mec-book-first,.mec-single-event .mec-event-tickets-list{padding-left:15px;padding-right:15px}.mec-single-event label.mec-fill-attendees{margin-left:15px!important}.mec-single-event .mec-events-meta-group-booking .mec-event-ticket-available{display:block;margin-bottom:20px;margin-top:-17px;font-size:11px;color:#8a8a8a}.mec-single-event .mec-events-meta-group-booking .mec-book-price-total{display:inline-block;margin-bottom:10px;font-size:26px;color:#39c36e;font-weight:700;padding:10px 0}.mec-single-event .mec-events-meta-group-booking form{margin:0}.mec-single-event .mec-events-meta-group-booking h5 span,.mec-single-event .mec-events-meta-group-booking label{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:3px 0;display:block;clear:none;padding:5px 1em 3px 0}.mec-single-event .mec-events-meta-group-booking h5 span{display:inline-block}.mec-single-event .mec-events-meta-group-booking h5 span.mec-ticket-variation-name{padding-right:5px;text-transform:capitalize}.mec-single-event .mec-events-meta-group-booking input::-webkit-input-placeholder{color:#aaa}.mec-single-event .mec-events-meta-group-booking input:-moz-placeholder{color:#aaa}.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking input[type=email],.mec-single-event .mec-events-meta-group-booking input[type=number],.mec-single-event .mec-events-meta-group-booking input[type=password],.mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-single-event .mec-events-meta-group-booking input[type=text],.mec-single-event .mec-events-meta-group-booking select,.mec-single-event .mec-events-meta-group-booking textarea{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:330px;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both}.wbmec-mandatory{padding-left:5px;font-size:14px}.mec-single-event .mec-events-meta-group-booking .mec-red-notification input,.mec-single-event .mec-events-meta-group-booking .mec-red-notification select,.mec-single-event .mec-events-meta-group-booking .mec-red-notification textarea{border:1px solid #ff3c3c}.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=checkbox],.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=radio]{outline:1px solid #ff3c3c}@media only screen and (max-width:479px){.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking input[type=email],.mec-single-event .mec-events-meta-group-booking input[type=number],.mec-single-event .mec-events-meta-group-booking input[type=password],.mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-single-event .mec-events-meta-group-booking input[type=text],.mec-single-event .mec-events-meta-group-booking select,.mec-single-event .mec-events-meta-group-booking textarea{width:100%}}.mec-single-event .mec-events-meta-group-booking input[type=email]:focus,.mec-single-event .mec-events-meta-group-booking input[type=number]:focus,.mec-single-event .mec-events-meta-group-booking input[type=password]:focus,.mec-single-event .mec-events-meta-group-booking input[type=tel]:focus,.mec-single-event .mec-events-meta-group-booking input[type=text]:.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking select:focus,.mec-single-event .mec-events-meta-group-booking textarea:focus,focus{border:1px solid #aaa;color:#444;background:#fff;-moz-box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);box-shadow:0 0 3px rgba(0,0,0,.2);outline:0}.mec-single-event .mec-events-meta-group-booking input[type=checkbox],.mec-single-event .mec-events-meta-group-booking input[type=radio]{margin-right:6px;margin-top:5px;min-height:20px;clear:none;margin:0 0 0 2px}.lity-container .mec-events-meta-group-booking input[type=radio]:before,.mec-single-event .mec-events-meta-group-booking input[type=radio]:before{content:"";display:inline-block;background:#fff;border-radius:18px;width:18px;height:18px;margin:-1px 0 0 -3px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32)}.lity-container .mec-events-meta-group-booking input[type=radio]:checked:before,.mec-single-event .mec-events-meta-group-booking input[type=radio]:checked:before{border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff}.lity-container .mec-events-meta-group-booking input[type=radio],.mec-single-event .mec-events-meta-group-booking input[type=radio]{min-height:0;margin:0;margin-right:6px}.mec-single-event .mec-events-meta-group-booking input[type=checkbox]{float:left}.lity-container .mec-events-meta-group-booking .mec_book_first_for_all,.mec-single-event .mec-events-meta-group-booking .mec_book_first_for_all{display:none}.mec-events-meta-group-booking ul.mec-book-price-details{list-style:none;border:1px solid #eee;padding:0;overflow:hidden}.mec-events-meta-group-booking ul.mec-book-price-details li{font-size:15px;color:#a9a9a9;list-style:none;padding:13px 18px;margin:0;float:left;border-right:1px solid #eee}.mec-events-meta-group-booking ul.mec-book-price-details li:last-child{border-right:none}.mec-events-meta-group-booking ul.mec-book-price-details li span.mec-book-price-detail-amount{font-weight:700;font-size:21px;color:#222}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label{height:14px;width:14px;background-color:transparent;border:1px solid #d4d4d4;position:relative;display:inline-block;-moz-transition:border-color ease .2s;-o-transition:border-color ease .2s;-webkit-transition:border-color ease .2s;transition:border-color ease .2s;cursor:pointer;box-shadow:0 2px 16px -2px rgba(0,0,0,.2);vertical-align:middle;margin-right:3px;margin-top:-2px}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label{border-color:#008aff;box-shadow:0 2px 14px -3px #008aff}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:after,.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:before,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:after,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:before{position:absolute;height:0;width:1px;background-color:#008aff;display:inline-block;-moz-transform-origin:left top;-ms-transform-origin:left top;-o-transform-origin:left top;-webkit-transform-origin:left top;transform-origin:left top;content:'';-webkit-transition:opacity ease .5;-moz-transition:opacity ease .5;transition:opacity ease .5}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:before,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:before{top:8px;left:7px;box-shadow:0 0 0 2px #fff;-moz-transform:rotate(-145deg);-ms-transform:rotate(-145deg);-o-transform:rotate(-145deg);-webkit-transform:rotate(-145deg);transform:rotate(-145deg)}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::before,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::before{height:12px;-moz-animation:dothatopcheck .16s ease 0s forwards;-o-animation:dothatopcheck .16s ease 0s forwards;-webkit-animation:dothatopcheck .16s ease 0s forwards;animation:dothatopcheck .16s ease 0s forwards}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:after,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:after{top:6px;left:3px;-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::after,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::after{-moz-animation:dothabottomcheck 80ms ease 0s forwards;-o-animation:dothabottomcheck 80ms ease 0s forwards;-webkit-animation:dothabottomcheck 80ms ease 0s forwards;animation:dothabottomcheck 80ms ease 0s forwards;height:4px}.mec-single-event .mec-events-meta-group-booking button[type=submit]:after,.mec-single-event a.button:after{display:none;font-family:simple-line-icons;content:"\e098";margin-left:4px;-webkit-animation:rotating 1.2s linear infinite;-moz-animation:rotating 1.2s linear infinite;-ms-animation:rotating 1.2s linear infinite;-o-animation:rotating 1.2s linear infinite;animation:rotating 1.2s linear infinite}.mec-single-event .mec-events-meta-group-booking button[type=submit].loading:after,.mec-single-event a.button.loading:after{display:inline-block}.mec-single-event .mec-event-export-module{display:block}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul{display:table;width:100%}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li{display:table-cell}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li:last-child{text-align:right}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a:hover{color:#fff}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul{padding-left:0;margin:15px 5px}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting{padding-left:0;margin:0}.mec-ticket-price{margin-left:10px;font-size:13px;font-weight:300}.mec-book-reg-field-checkbox label,.mec-book-reg-field-radio label{line-height:1.36}.mec-book-reg-field-checkbox input[type=checkbox],.mec-book-reg-field-radio input[type=radio]{float:left;margin-right:5px!important}.mec-ticket-available-spots .mec-event-ticket-description,.mec-ticket-available-spots .mec-event-ticket-price{font-size:11px}.mec-book-ticket-container .mec-reg-mandatory:nth-child(2) label:after,.mec-book-ticket-container .mec-reg-mandatory:nth-child(3) label:after,.mec-book-ticket-container .wbmec-mandatory{content:"";color:red;width:50px;height:50px;font-size:14px;padding-left:5px}@media only screen and (max-width:767px){.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li{width:100%;min-height:40px;margin-bottom:15px;text-align:center;float:none;display:block}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a{width:100%;padding-left:0;padding-right:0;text-align:center;display:block;font-size:12px}}.mec-single-event .mec-events-meta-group{margin-bottom:0}@media only screen and (max-width:767px){.mec-single-event .mec-events-meta-group-booking{margin-bottom:30px}}.mec-single-event .mec-event-meta dt,.mec-single-event .mec-event-meta h3{text-transform:uppercase;font-size:16px;font-weight:700;padding-bottom:5px;display:inline;color:#000;padding-left:10px}.mec-single-event .mec-event-meta h6{text-transform:uppercase;font-size:13px;padding-bottom:5px;display:inline;color:#222;padding-left:0}.mec-single-event .mec-event-meta .mec-events-event-categories a,.mec-single-event .mec-event-meta dd{font-size:14px;color:#8d8d8d}.mec-single-event .mec-event-meta .mec-location dd.author{color:#3c3b3b}.mec-single-event .mec-event-meta dd{margin:0;padding-left:35px}.mec-single-event .mec-event-meta dd.mec-events-event-categories{min-height:35px;line-height:35px}.mec-single-event .mec-event-meta dd.mec-events-event-categories:first-of-type{padding-top:5px}.mec-single-event .mec-event-meta dd.mec-events-event-categories:last-of-type{border-bottom:0}.mec-single-event .mec-event-meta dd a{color:#8d8d8d;transition:all .2s ease}.mec-single-event .mec-event-meta dd a i:before{font-size:16px!important}.mec-single-event .mec-event-meta dd a i{vertical-align:top;margin-right:8px}.mec-single-event .mec-event-meta dl{margin-bottom:0}.mec-single-event .mec-event-meta .mec-events-event-cost{font-size:18px}.mec-single-event .mec-event-meta .mec-events-address{color:#a9a9a9;margin-bottom:3px}.mec-single-event .mec-event-meta .mec-events-meta-group-venue .author{margin-bottom:0;color:#8d8d8d;font-size:13px}.mec-single-event .mec-events-event-image{margin-bottom:0}.mec-single-event h2.mec-single-event-title{margin-bottom:30px;font-weight:700;font-size:33px}.mec-single-event .mec-booking-button{border-bottom:none;letter-spacing:.5px;line-height:48px;height:76px;transition:all .5s ease;color:#fff;padding:16px;display:block;text-align:center;font-size:16px}.mec-single-event .mec-booking-button:hover{background-color:#101010!important}.mec-single-event .mec-event-tags a{display:inline-block;color:#444;font-size:11px;text-transform:uppercase;letter-spacing:1.5px;font-weight:500;padding:3px 7px;border:1px solid #ddd;border-radius:2px;background:#fff;margin:1px 3px}.mec-single-event .mec-event-tags:before{font-size:24px;color:#303030;margin-right:5px;content:"\f02c";font-family:fontawesome}.mec-single-event .mec-event-tags{padding-top:13px}.mec-single-event .mec-event-sharing{margin:30px 0 10px}.mec-region.mec-events-abbr,.mec-single-event .mec-street-address{font-style:normal;font-size:13px}.mec-events-meta-group.mec-events-meta-group-venue:before,.mec-single-event-date:before,.mec-single-event-time:before{color:#40d9f1}.mec-single-event .mec-event-social{text-align:center}.mec-single-event .mec-event-social h3{text-transform:uppercase;font-size:15px;font-weight:700;padding-bottom:5px;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative}.mec-single-event .mec-social-single:before{padding:13px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:39px}.mec-single-event .mec-event-social .event-sharing{margin-top:30px}.mec-single-event .mec-event-social ul{list-style:none;margin-left:0}.mec-single-event .mec-event-social li.mec-event-social-icon{display:inline-block}.mec-single-event .mec-event-social li.mec-event-social-icon a{display:inline-block;color:#fff;width:40px;height:40px;padding:9px;font-size:16px;margin-right:5px}.mec-single-event .mec-event-social a.facebook{background:#3b5996}.mec-single-event .mec-event-social a.facebook:hover{background:#28385c}.mec-single-event .mec-event-social a.twitter{background:#00acee}.mec-single-event .mec-event-social a.twitter:hover{background:#0087bd}.mec-single-event .mec-event-social a.vimeo{background:#0dadd6}.mec-single-event .mec-event-social a.vimeo:hover{background:#0a85a3}.mec-single-event .mec-event-social a.dribble{background:#d53e68}.mec-single-event .mec-event-social a.dribble:hover{background:#bf4c78}.mec-single-event .mec-event-social a.youtube{background:#cb322c}.mec-single-event .mec-event-social a.youtube:hover{background:#992622}.mec-single-event .mec-event-social a.pinterest{background:#cb2027}.mec-single-event .mec-event-social a.pinterest:hover{background:#99181d}.mec-single-event .mec-event-social a.google{background:#c3391c}.mec-single-event .mec-event-social a.google:hover{background:#99181f}.mec-single-event .mec-event-social a.linkedin{background:#0073b2}.mec-single-event .mec-event-social a.linkedin:hover{background:#005380}.mec-single-event .mec-event-social a.email{background:#ff5d5e}.mec-single-event .mec-event-social a.email:hover{background:#cc4949}.mec-single-event .mec-event-social a.vk{background:#5b88bd}.mec-single-event .mec-event-social a.vk:hover{background:#3d608a}.mec-single-event .mec-event-social a.rss{background:#f29a1d}.mec-single-event .mec-event-social a.rss:hover{background:#cc7400}.mec-single-event .mec-event-social a.instagram{background:#457399}.mec-single-event .mec-event-social a.instagram:hover{background:#2e4d66}.mec-single-event .mec-event-social a.other-social{background:#ff5d5e}.mec-single-event .mec-event-social a.other-social:hover{background:#cc4949}.mec-single-event .mec-event-social{text-align:center}.mec-single-event .mec-events-meta-group-booking form>h4,.mec-single-event .mec-frontbox-title{text-transform:uppercase;font-size:15px;font-weight:700;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative;text-align:center}.mec-single-event .mec-events-meta-group-booking form>h4:before,.mec-single-event .mec-frontbox-title:before{padding:1px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-35px;left:50%}.mec-event-meta i:before{font-size:20px;vertical-align:middle}.mec-event-meta .mec-single-event-additional-organizers i:before,.mec-event-meta .mec-single-event-organizer i:before{font-size:14px;vertical-align:baseline}#mec-wrap .mec-events-day-time-slot .mec-events-content{float:left;width:33%;padding:0 15px}#mec-wrap .mec-events-day-time-slot .mec-events-event-image{padding-left:0}#mec-events-content .mec-events-abbr{color:#8d8d8d;font-size:14px}.mec-single-event .mec-events-content{margin-bottom:30px}.mec-single-event .mec-organizer-url a{word-wrap:break-word}.mec-single-event #headline{margin:0 0 10px}.mec-single-event #headline h2{padding:0}.mec-single-event .mec-events-meta-group.mec-events-meta-group-gmap .mec-events-venue-map{margin-top:0;padding:8px;border:1px solid #e5e5e5;border-radius:7px}#mec-events-gmap-0{height:325px!important}.mec-events-list .mec-events-day-time-slot .mec-events-event-meta{width:33%;float:left;padding:40px;height:auto;margin:0}.mec-events-day-time-slot .mec-events-content.description.entry-summary{font-size:15px;font-weight:300;color:#8d8d8d}.mec-events-day-time-slot .type-mec_events h2{font-size:28px;padding-bottom:20px}.mec-events-day .mec-events-day-time-slot .type-mec_events{margin:0}.mec-events-day .mec-events-day-time-slot h5{background-color:#8d8d8d}.mec-single-event .mec-event-meta .mec-single-event-additional-organizers .mec-events-single-section-title,.mec-single-event .mec-event-meta .mec-single-event-organizer .mec-events-single-section-title,.mec-single-event .mec-events-meta-date h3{padding-left:0;margin:10px;display:inline-block}.mec-single-event .mec-events-meta-date h3{width:100%}.mec-single-event .mec-events-event-image{border:0}.mec-single-event .mec-events-venue-map{padding:0}.mec-event-cost,.mec-event-more-info,.mec-event-website,.mec-events-meta-date,.mec-single-event-additional-organizers,.mec-single-event-category,.mec-single-event-date,.mec-single-event-label,.mec-single-event-location,.mec-single-event-organizer,.mec-single-event-time{background:#f7f7f7;padding:12px 14px 8px;margin-bottom:12px;vertical-align:baseline;position:relative}.mec-single-event .mec-events-meta-date dd,.mec-single-event .mec-single-event-additional-organizers dd,.mec-single-event .mec-single-event-organizer dd{padding-left:0;margin-bottom:10px}.mec-single-event .mec-events-meta-date dd span,.mec-single-event .mec-single-event-additional-organizers dd span,.mec-single-event .mec-single-event-organizer dd span{display:block;padding-left:12px;color:#8d8d8d}.mec-single-event .mec-events-meta-date i,.mec-single-event .mec-single-event-additional-organizers i,.mec-single-event .mec-single-event-organizer i{margin-right:10px;margin-left:12px}.mec-events-meta-group.mec-events-meta-group-venue dl{margin-bottom:0}address.mec-events-address{line-height:19px;font-style:normal;font-size:12px}.mec-single-event .mec-event-content dt{margin-top:5px}.mec-single-event .mec-single-event-additional-organizers .mec-single-event-additional-organizer{margin-bottom:15px;padding-bottom:5px;border-bottom:1px solid #e4e4e4}.mec-single-event .mec-single-event-additional-organizers .mec-single-event-additional-organizer:last-child{margin-bottom:0;padding-bottom:0;border:none}.mec-event-schedule-content{border-left:4px solid #f0f0f0;padding-top:10px;margin-top:30px;margin-left:25px;margin-bottom:20px;color:#8a8a8a}.mec-event-schedule-content dl{padding-left:24px;font-size:12px;position:relative;margin-bottom:35px}.mec-event-schedule-content dl:before{content:'';display:block;position:absolute;left:0;top:4px;width:20px;height:0;border-top:4px solid #f0f0f0}.mec-event-schedule-content dl dt{margin:0 0 10px;line-height:1.16}.mec-event-schedule-content dl dt.mec-schedule-title{font-size:13px;color:#5a5a5a;font-weight:700}.mec-event-schedule-content dl dt.mec-schedule-description{font-weight:300}.mec-event-schedule-content .mec-schedule-speakers{background:#f7f7f7;padding:10px}.mec-wrap .mec-event-schedule-content h6{font-size:13px;color:#5a5a5a;font-weight:700;display:inline-block}.mec-wrap .mec-event-schedule-content a{font-weight:400;color:#5a5a5a;transition:all .1s ease}.mec-single-event .mec-speakers-details ul li{list-style:none;background:#f7f7f7;padding:5px 5px 18px 5px;margin-top:14px}.mec-single-event .mec-speakers-details ul li a{-webkit-transition:.2s all ease;transition:.2s all ease}.mec-single-event .mec-speakers-details ul li .mec-speaker-avatar a img{float:left;border-radius:50%;transition:.2s all ease;border:2px solid transparent;width:68px;height:68px}.mec-single-event .mec-speakers-details ul li .mec-speaker-avatar a:hover img{border-color:#40d9f1}.mec-single-event .mec-speakers-details ul li .mec-speaker-name{display:inline-block;margin-top:6px;font-size:14px;text-transform:capitalize;font-weight:700;padding-left:8px}.mec-single-event .mec-speakers-details ul li .mec-speaker-job-title{display:block;font-size:12px;margin-top:-1px;padding-left:75px}.mec-single-event-location img,.mec-single-event-organizer img{margin-bottom:10px;width:100%}.mec-qrcode-details{text-align:center}.mec-time-comment{font-size:11px}.mec-wrap .mec-attendees-list-details p{font-weight:300;margin:20px 0 0 0;color:#8d8d8d}.mec-wrap .mec-attendees-list-details li{list-style:none;display:block;margin-top:15px}.mec-wrap .mec-attendees-list-details li .mec-attendee-avatar{display:inline-block}.mec-wrap .mec-attendees-list-details li .mec-attendee-profile-link{display:inline-block;vertical-align:top;margin-left:10px}.mec-attendees-list-details ul{margin-bottom:0}.mec-attendees-list-details .mec-attendee-profile-link a{color:#8d8d8d}.mec-attendees-list-details .mec-attendee-profile-link span{display:block;color:#000}.mec-calendar{margin-bottom:20px;border:1px solid #e8e8e8;width:100%;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-calendar .mec-calendar-topsec{display:table;background:#fff}.mec-calendar .mec-calendar-topsec .mec-calendar-events-sec{display:none}.mec-calendar .mec-calendar-side{width:590px;display:table-cell;padding:40px;position:relative;text-align:center;box-shadow:0 1px 5px 6px rgba(0,0,0,.005) inset}.mec-calendar .mec-calendar-events-side{display:table-cell;height:100%;border-left:1px solid #efefef;padding:40px;width:100%}.mec-calendar .mec-calendar-events-side .mec-table-side-day{width:46px;height:46px;margin:0 auto 20px;position:relative;text-align:center;line-height:46px;border:1px solid #40d9f1;border-radius:50%;font-size:12px;font-weight:600;padding:0}.mec-calendar .mec-calendar-events-side .mec-table-side-title{text-align:center;font-size:11px;text-transform:uppercase;letter-spacing:3px;margin-bottom:14px}.mec-calendar .mec-calendar-header{position:relative;width:560px;margin-top:8px;margin-bottom:16px}.mec-calendar .mec-calendar-header h2{text-transform:uppercase;font-size:22px;font-weight:700;color:#333}.mec-calendar .mec-event-footer{width:auto;min-height:60px}.mec-calendar dl{display:table;margin:0;border:none;padding:0;table-layout:fixed}.mec-calendar dt{display:table-cell;transition:all .66s ease;color:#4d4d4d;background:#fff;border-radius:44px;font-size:14px;width:80px;height:80px;line-height:80px;text-align:center}.mec-calendar .mec-calendar-table .mec-no-event{display:none}.mec-calendar .mec-calendar-table-head dt{font-weight:700;text-transform:uppercase;font-size:15px}.mec-calendar .mec-calendar-row dt:hover{background:#f4f4f4}.mec-calendar .mec-table-nullday{color:#cacaca}.mec-calendar.mec-box-calendar .mec-table-nullday:last-child{border-right:1px solid #eaeaea}.mec-calendar .mec-next-month:hover,.mec-calendar .mec-prev-month:hover{background:#f4f4f4}.mec-calendar .mec-selected-day,.mec-calendar .mec-selected-day:hover{background:#40d9f1;color:#fff}.mec-calendar .mec-selected-day a{color:#fff}.mec-calendar .mec-has-event{position:relative}.mec-calendar .mec-calendar-row dt.mec-has-event:hover{background:#40d9f1}.mec-calendar .mec-has-event a{cursor:pointer;display:block;width:100%;height:100%;border-radius:50%;color:#4d4d4d;transition:all .25s ease;text-decoration:none;box-shadow:none}.mec-calendar .mec-calendar-row dt.mec-has-event.mec-selected-day a,.mec-calendar .mec-calendar-row dt.mec-has-event:hover a{color:#fff}.mec-calendar .mec-has-event:after{background-color:#40d9f1;border-radius:50%;display:block;content:'';width:8px;height:8px;bottom:14px;left:50%;margin:-4px 0 0 -4px;position:absolute;transition:all .25s ease}.mec-calendar .mec-calendar-row dt.mec-has-event:hover:after{background-color:#fff}.mec-calendar .mec-has-event.mec-selected-day:after{display:none}.mec-calendar .mec-event-article{text-align:left;margin-bottom:0;padding-bottom:25px;padding-top:26px;border-top:1px solid #efefef;transition:all .33s ease}.mec-calendar .mec-event-article:hover{background-color:#fafafa}.mec-calendar .mec-event-article .mec-event-time{font-size:11px;line-height:1.1;margin:0}.mec-calendar .mec-event-article .mec-event-title{font-size:13px;padding:0;margin:10px 0 8px;font-weight:700;text-transform:uppercase}.mec-calendar .mec-event-article .mec-event-title a{text-decoration:none;color:#494949;transition:color .3s ease}.mec-calendar .mec-event-article .mec-event-title a:hover{color:#40d9f1}.mec-calendar .mec-event-article .mec-event-image,.mec-calendar .mec-event-list-classic .mec-event-image img{width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-image{float:left;margin-right:20px;width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-detail{font-size:13px;line-height:1.3;font-family:Roboto,sans-serif;color:#9a9a9a;margin-bottom:0}.mec-calendar .mec-calendar-side .mec-next-month,.mec-calendar .mec-calendar-side .mec-previous-month{cursor:pointer;position:absolute;top:0;min-width:50px;height:50px;line-height:50px;text-align:center;background:#fff;color:#a9a9a9;font-size:12px;letter-spacing:1px;text-transform:uppercase;padding-left:10px;padding-right:10px;border:1px solid #efefef;border-top:none;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease}.mec-calendar .mec-calendar-side .mec-next-month i,.mec-calendar .mec-calendar-side .mec-previous-month i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-calendar .mec-calendar-side .mec-next-month:hover,.mec-calendar .mec-calendar-side .mec-previous-month:hover{background-color:#f9f9f9;color:#40d9f1}.mec-calendar .mec-calendar-side .mec-previous-month{left:0;border-bottom-right-radius:6px;border-left:none}.mec-calendar .mec-calendar-side .mec-next-month{right:0;border-bottom-left-radius:6px;border-right:none}@media only screen and (min-width:961px){.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-has-event:after{width:6px;height:6px;bottom:6px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-calendar-side{width:370px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-calendar-header{position:relative;width:350px;margin-top:30px;margin-bottom:20px;padding-top:20px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) dt{width:50px;height:50px;line-height:50px}.mec-wrap.mec-sm959 .mec-calendar.mec-event-calendar-classic dl dt{height:110px}}@media only screen and (max-width:1200px){.mec-calendar .mec-has-event:after{width:6px;height:6px;bottom:6px}.mec-calendar .mec-calendar-side{width:370px}.mec-calendar .mec-calendar-header{position:relative;width:350px;margin-top:30px}.mec-calendar dt{width:50px;height:50px;line-height:50px}}@media only screen and (max-width:767px){.mec-calendar .mec-calendar-header h2{font-size:18px}.mec-calendar .mec-calendar-topsec{width:100%}.mec-calendar .mec-calendar-side{width:100%;display:block;padding:30px}.mec-calendar .mec-calendar-header{width:auto}.mec-calendar .mec-calendar-events-side{width:100%;display:block;height:100%;border-left:none;border-top:1px solid #efefef;padding:20px}.mec-calendar dl{width:100%}.mec-calendar dt{width:14%;height:60px;line-height:60px;border-radius:50px}}@media only screen and (max-width:479px){.mec-calendar .mec-has-event:after{width:4px;height:4px}.mec-calendar .mec-calendar-header h2{font-size:16px;margin-top:33px}.mec-calendar dt{height:38px;line-height:38px}.mec-calendar .mec-event-list-classic .mec-event-detail,.mec-calendar .mec-event-list-classic .mec-event-title{font-size:12px}.mec-calendar .mec-event-list-classic .mec-event-time{font-size:10px}}.mec-box-calendar.mec-calendar .mec-has-event a,.mec-box-calendar.mec-calendar dt{border-radius:0}.mec-box-calendar.mec-calendar .mec-calendar-header{margin-top:2px;margin-bottom:30px}.mec-box-calendar.mec-calendar dt{border-bottom:1px solid #eaeaea;border-left:1px solid #eaeaea}.mec-box-calendar.mec-calendar dl dt:last-child{border-right:1px solid #eaeaea}.mec-box-calendar.mec-calendar .mec-calendar-table-head dt{border-top:1px solid #eaeaea;background-color:#f8f8f8}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt{background-color:#f4f4f4}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{border-radius:2px;top:40px;border:1px solid #eee;height:30px;line-height:30px;z-index:1}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:60px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:60px}.mec-box-calendar.mec-calendar .mec-calendar-side{box-shadow:none}.mec-box-calendar.mec-calendar .mec-calendar-events-side{border:none}.mec-box-calendar.mec-calendar .mec-calendar-events-side .mec-table-side-day{border-radius:2px}.mec-box-calendar.mec-calendar h4.mec-month-label{position:relative;width:560px;margin-top:2px;margin-bottom:30px;text-transform:uppercase;font-size:22px;font-weight:700;color:#333}.mec-widget .mec-box-calendar.mec-calendar h4.mec-month-label{width:100%;margin-top:8px;font-size:13px}@media only screen and (max-width:1200px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:42px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:42px}.mec-calendar .mec-calendar-header h2{font-size:17px;margin-top:7px}}@media only screen and (max-width:767px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{top:28px;font-size:10px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:30px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:30px}.mec-calendar .mec-calendar-header h2{font-size:15px}}@media only screen and (max-width:479px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{top:16px;font-size:0;padding:4px 0;text-align:center;min-width:33px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:10px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:10px}.mec-box-calendar.mec-calendar .mec-calendar-header h2{font-size:12px;margin-top:15px}.mec-box-calendar.mec-calendar .mec-event-image{margin-right:12px}}.mec-calendar.mec-event-calendar-classic,.mec-calendar.mec-event-calendar-classic .mec-calendar-side{border:none;padding:0;width:100%;height:100%;box-shadow:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-side{display:block}.mec-calendar.mec-event-calendar-classic .mec-calendar-header,.mec-calendar.mec-event-calendar-classic dl{width:100%}.mec-calendar.mec-event-calendar-classic dl dt{width:auto;height:136px;line-height:1.2;text-align:left;padding:5px 7px;position:relative}.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt{height:30px!important}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month{top:0}.mec-calendar.mec-event-calendar-classic .mec-has-event:after{bottom:auto;top:24px;left:7px;margin:0}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month{left:0}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month{right:0}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{text-align:left;background:#fafafa;border:1px solid #eaeaea;border-top:none;padding:10px 20px}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{display:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-event-article:hover{background-color:#fcfcfc}.mec-calendar.mec-event-calendar-classic .mec-selected-day,.mec-calendar.mec-event-calendar-classic dt.mec-selected-day:hover{color:#40d9f1;font-weight:700;background:#fafafa;border-bottom:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-day,.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-title{display:inline-block;margin:0;margin-bottom:15px;font-weight:700}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-day{margin-left:4px}.mec-calendar.mec-event-calendar-classic .mec-calendar-row dt.mec-has-event a{color:#4d4d4d}.mec-calendar.mec-event-calendar-classic .mec-calendar-row dt.mec-has-event:not(.mec-selected-day):hover a{color:#fff}@media only screen and (max-width:1200px){.mec-calendar.mec-event-calendar-classic dl dt{height:100px}}@media only screen and (max-width:767px){.mec-calendar.mec-event-calendar-classic dl dt{height:40px}}@media only screen and (max-width:479px){.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{padding:10px}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-header h2{font-size:13px;margin-top:8px}}.mec-calendar .mec-event-article.mec-single-event-novel{padding:4px 8px;min-height:25px;margin:0 -4px;border-radius:0}.mec-calendar .mec-event-article.mec-single-event-novel h4{margin:0;font-size:10px;line-height:18px}.mec-calendar.mec-event-container-novel dl dt{padding:3px}.mec-calendar.mec-event-calendar-classic .mec-calendar-novel-selected-day{display:inline-block;padding:4px;margin-left:1px}.mec-calendar.mec-event-calendar-classic .mec-selected-day .mec-calendar-novel-selected-day{color:#fff}.mec-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-selected-day,.mec-calendar.mec-event-calendar-classic.mec-event-container-novel dt.mec-selected-day:hover{border-bottom:1px solid #eaeaea}.mec-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-calendar-side .mec-calendar-table{min-height:auto}.mec-single-event-novel.light h4{color:#000!important}.mec-single-event-novel.dark h4{color:#fff!important}@media only screen and (max-width:768px){.mec-calendar .mec-event-article.mec-single-event-novel{padding:0;min-height:5px}.mec-calendar .mec-event-article.mec-single-event-novel h4{display:block;font-size:9px}}.mec-event-container-simple .event-single-content-simple{display:none}.mec-event-container-simple .mec-monthly-tooltip h4{font-size:16px;margin:0}.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple{border-bottom:1px solid #e2e2e2;padding:14px 0;display:block}.mec-wrap.colorskin-custom .mec-calendar.mec-event-container-simple .mec-selected-day:hover{background:#f4f4f4}.mec-event-container-simple .mec-calendar-day .mec-monthly-tooltip.event-single-link-simple:last-of-type{border:none}.mec-tooltip-event-title{font-size:16px;font-weight:700;color:#000;margin-bottom:2px}.mec-tooltip-event-time{font-size:12px;color:#888;margin-bottom:8px;margin-top:5px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-content{padding:17px}.mec-tooltip-event-content{clear:both}.mec-tooltip-event-featured{float:left;margin-right:13px;margin-bottom:1px}.mec-tooltip-event-featured img{max-width:120px}.mec-tooltip-event-desc{font-size:14px;color:#444;line-height:18px}.mec-tooltip-event-desc p{font-size:13px;line-height:1.4;margin-bottom:10px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-box{border-radius:3px!important;border:1px solid #e2e3e4!important;background:#fff!important;box-shadow:0 -1px 30px -2px rgba(0,0,0,.15)!important}.tooltipster-sidetip .tooltipster-arrow{overflow:visible!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-border{border-width:12px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-right .tooltipster-arrow-border{border-right-color:#e2e3e4!important}.tooltipster-sidetip .tooltipster-arrow-border{left:-12px!important;z-index:9999999999!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-background{display:block!important}.tooltipster-sidetip .tooltipster-arrow-background{border-width:11px!important;z-index:99999999999!important}.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background{left:-9px!important;top:1px!important;border-right-color:#fff!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background{border-top-color:#fff!important;left:0!important;top:-1px!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border{left:-1px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-top .tooltipster-arrow-border{border-top-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{left:-1px!important;top:-11px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{border-bottom-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background{top:-9px!important;border-bottom-color:#fff!important}.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background{border-left-color:#fff!important;left:-2px!important;top:0!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-left .tooltipster-arrow-border{border-left-color:#e2e3e4!important;left:-1px!important;top:-1px!important}@media (max-width:780px){.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple h4{word-break:break-all;font-size:13px}}@media (max-width:320px){.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple h4{font-size:10px}}.mec-calendar.mec-calendar-daily .mec-calendar-day-events .mec-event-article{padding-left:15px;padding-right:15px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month{text-align:center;background-color:#fff;border-bottom:2px solid #f4f4f4;position:relative}.mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{color:#444;font-size:18px;line-height:1.2;padding:15px 0 11px;margin:0;font-weight:700;letter-spacing:1px;text-transform:uppercase;border-bottom:1px solid #e6e6e6}.mec-calendar.mec-calendar-daily .mec-calendar-d-top{text-align:center;padding:10px 0;position:relative;background-color:#fafafa}.mec-calendar.mec-calendar-daily .mec-next-month,.mec-calendar.mec-calendar-daily .mec-previous-month{position:absolute;top:50%;left:50%;margin-top:-25px;min-width:50px;height:50px;line-height:50px;text-align:center;background:#fff;border:1px solid #e2e2e2;border-radius:50px;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month i,.mec-calendar.mec-calendar-daily .mec-previous-month i{font-size:14px;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month:hover,.mec-calendar.mec-calendar-daily .mec-previous-month:hover{border-color:#d0d0d0;color:#444;box-shadow:0 2px 5px 0 rgba(0,0,0,.075)}.mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-150px}.mec-calendar.mec-calendar-daily .mec-next-month{margin-left:100px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-next-month,.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-previous-month{min-height:28px;height:28px;line-height:28px;width:28px;margin-top:-14px;border-radius:3px}.mec-calendar.mec-calendar-daily .mec-calendar-d-top h2,.mec-calendar.mec-calendar-daily .mec-calendar-d-top h3{margin-top:9px;color:#b9b9b9;font-family:Roboto,sans-serif;font-size:30px;font-weight:100;text-transform:uppercase;margin-bottom:12px;line-height:1}.mec-calendar.mec-calendar-daily .mec-calendar-d-top h2{font-size:81px;color:#444;margin-bottom:10px;line-height:1.1}.mec-calendar.mec-calendar-daily .mec-calendar-d-table{overflow:hidden;background:#fff;min-height:60px;border-top:1px solid #e6e6e6;border-bottom:2px solid #f3f3f3;padding:0 50px;position:relative}@media only screen and (min-width:479px){.mec-calendar.mec-calendar-daily .mec-calendar-d-table{padding:0 55px}}.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl{width:1310px;display:block}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl{display:none}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl.mec-weekly-view-week-active{display:block}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt{display:block;background:#fff;width:42px;height:60px;line-height:60px;text-align:center;float:left;border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6;border-radius:0}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day:hover,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt:hover{background:#fafafa;box-shadow:0 2px 5px 0 rgba(0,0,0,.065) inset;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day{cursor:default;background:#fff;color:#c1c1c1;line-height:59px;text-align:center;border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-has-event{cursor:pointer;font-weight:700;color:#4a4a4a}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-daily-view-day-active,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt.mec-table-d-current{font-size:18px;font-weight:700;background:#fafafa;color:#40d9f1}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next,.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-prev{float:none;font-size:14px;width:55px;position:absolute;top:0;left:0;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next{left:auto;right:0;border-left:1px solid #e6e6e6;border-right:none}.mec-calendar.mec-calendar-daily .mec-today-container .mec-today-count{font-size:12px;color:#888;text-align:center}@media only screen and (max-width:479px){.mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-130px}.mec-calendar.mec-calendar-daily .mec-next-month{margin-left:80px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{font-size:14px;letter-spacing:0}}.widget .mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{font-size:14px;letter-spacing:0}.widget .mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-130px}.widget .mec-calendar.mec-calendar-daily .mec-next-month{margin-left:80px}.mec-util-hidden{display:none}.mec-daily-view-date-events,.mec-weekly-view-date-events{list-style:none;margin:0}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table{padding:0}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl{width:calc(100% - 1px)}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt{width:14.286%;height:70px;line-height:normal;cursor:default}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:hover{background:#fff;cursor:default}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:last-child{border-right:none}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:12px;font-weight:700;text-transform:uppercase;display:block;margin:15px 0 6px}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table a.mec-table-d-next,.mec-calendar.mec-calendar-weekly .mec-calendar-d-table a.mec-table-d-prev{display:none}ul.mec-weekly-view-dates-events,ul.mec-weekly-view-dates-events li{padding:0;margin:0;line-height:initial}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:64px;height:64px;margin-right:10px;font-size:11px;text-transform:uppercase;float:left;text-align:center;padding-top:2px}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:40px;line-height:30px;font-weight:700;display:block;margin-bottom:6px;letter-spacing:1px}.mec-calendar.mec-calendar-weekly .mec-calendar-a-month .mec-previous-month{margin-left:0;left:12px}.mec-calendar.mec-calendar-weekly .mec-calendar-a-month .mec-next-month{margin-left:0;left:auto;right:12px}@media only screen and (max-width:479px){.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:9px;letter-spacing:0}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:100%;height:36px;margin-bottom:12px;line-height:1;font-size:10px;margin-right:5px;text-align:left}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:18px;margin-bottom:5px}}.widget .mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:9px;letter-spacing:0}.widget .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:100%;height:36px;margin-bottom:12px;line-height:1;font-size:10px;margin-right:5px;text-align:left}.widget .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:18px;margin-bottom:5px}.mec-week-events-container .mec-weekly-view-dates-events li.mec-no-event-found{list-style:none!important}li.mec-no-event-found .mec-event-title{text-align:center}.mec-widget .mec-calendar{max-width:100%}.mec-widget .mec-calendar dl dt,.mec-wrap.mec-sm959.mec-widget .mec-calendar.mec-event-calendar-classic dl dt{height:40px}.mec-widget .mec-calendar .mec-calendar-events-sec{padding:10px}.mec-widget .mec-calendar .mec-calendar-header h2{font-size:13px;margin-top:8px}.mec-widget .mec-calendar .mec-event-list-classic .mec-event-image{margin-right:12px}.mec-widget .mec-calendar .mec-has-event:after{width:4px;height:4px}.mec-widget .mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-title{font-size:14px}.mec-widget .mec-calendar .mec-event-article .mec-event-image{margin-right:11px}.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-header{margin-bottom:20px}.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{font-size:0;padding:4px 0;text-align:center;min-width:33px}.mec-widget .mec-event-calendar-classic .mec-calendar-side .mec-calendar-table{min-height:200px}.mec-widget .mec-event-list-classic{margin-bottom:8px;padding:8px 0}.mec-widget .mec-event-list-classic .mec-event-article{margin-bottom:0;padding:10px 0;position:relative;min-height:86px;padding-left:80px}.mec-widget .mec-event-list-classic .mec-event-date{font-size:10px;line-height:14px;text-transform:uppercase}.mec-widget .mec-event-list-classic .mec-event-title{font-size:13px}.mec-widget .mec-event-list-classic .mec-event-detail{font-size:11px}.mec-widget .mec-event-list-classic .mec-event-image{width:68px;position:absolute;left:0}.mec-event-list-classic .mec-event-image img{width:100%}.mec-widget .mec-event-list-classic .mec-event-detail{overflow:visible}.event-color{width:14px;display:inline-block;height:14px;margin-left:5px;border-radius:50%}.mec-map-lightbox-wp{width:580px;padding:15px 15px 0;background-color:#fff}.mec-map-view-event-detail.mec-event-detail{width:580px;background-color:#e9e9e9;padding:8px 15px}.mec-map-lightbox-wp.mec-event-list-classic .mec-event-article{padding:0 0 15px;margin:0}.mec-map-lightbox-wp.mec-event-list-classic .mec-event-image{width:70px;margin-right:15px}.mec-marker-infowindow-wp{padding:10px}.mec-marker-infowindow-wp .mec-marker-infowindow-count{width:60px;height:60px;display:block;text-align:center;line-height:60px;border:1px solid #40d9f1;border-radius:50%;font-size:32px;color:#40d9f1;float:left;margin-right:11px}.mec-marker-infowindow-wp .mec-marker-infowindow-content{overflow:hidden;padding-top:6px}.mec-marker-infowindow-wp .mec-marker-infowindow-content span{display:block;color:#222}.mec-marker-infowindow-wp .mec-marker-infowindow-content span:first-child{font-size:15px;font-weight:700}.mec-marker-wrap{display:inline-block;width:35px;height:35px;margin:15px 0 0 4px;border-radius:50% 50% 50% 0;background:#00cae9;animation-name:mec-map-bounce;animation-fill-mode:both;animation-duration:1s;border:3px solid #fff;cursor:pointer}.mec-marker-wrap .mec-marker{margin-top:5px;display:block;-webkit-transform:rotate(45deg);transform:rotate(45deg);text-align:center;color:#fff;font-size:17px}.mec-marker-wrap .mec-marker-pulse-wrap{-webkit-transform:rotate(45deg);transform:rotate(45deg);display:inline-block;margin-left:-11px;margin-top:0}.mec-marker-wrap .mec-marker-pulse{display:inline-block;background:#c5c5c5;border-radius:50%;height:14px;width:14px;-webkit-transform:rotateX(55deg);transform:rotateX(55deg);z-index:-2}.mec-marker-wrap .mec-marker-pulse:after{content:"";border-radius:50%;height:40px;width:40px;position:absolute;margin:-13px 0 0 -13px;animation:pulsate 1s ease-out;animation-iteration-count:infinite;opacity:0;box-shadow:0 0 1px 2px #00cae9;animation-delay:1.1s}@keyframes pulsate{0%{transform:scale(.1,.1);opacity:0}50%{opacity:1}100%{transform:scale(1.2,1.2);opacity:0}}@keyframes mec-map-bounce{0%{opacity:0;transform:translateY(-2000px) rotate(-45deg)}60%{opacity:1;transform:translateY(30px) rotate(-45deg)}80%{transform:translateY(-10px) rotate(-45deg)}100%{transform:translateY(0) rotate(-45deg)}}.mec-single-event{margin-top:10px}.mec-single-event .mec-events-meta-group-countdown{color:#c9c9c9;text-align:center;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-events-meta-group-countdown .countdown-w{text-align:center;font-size:36px;margin:0 auto;padding:40px 0 0;position:relative;display:table;table-layout:fixed}.mec-events-meta-group-countdown .countdown-w .icon-w{font-size:24px}.mec-events-meta-group-countdown .countdown-w .label-w{font-size:15px;font-weight:300;letter-spacing:1px;text-transform:uppercase;position:relative}.mec-events-meta-group-countdown .countdown-w .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px;width:190px;font-size:72px;transition:all .3s ease-in-out;line-height:1.2}.mec-events-meta-group-countdown .countdown-w .block-w.done-w{border:0 none}.mec-events-meta-group-countdown .countdown-w span{padding:24px 0 20px}.mec-events-meta-group-countdown .countdown-w .div-d{display:none}.mec-events-meta-group-countdown .countdown-w .countdown-message{display:none}.mec-events-meta-group-countdown .countdown-w .block-w i{display:none}#countdown{list-style:none;margin-bottom:0;margin-top:0;margin-left:0;padding-left:0}.mec-events-meta-group-countdown .mec-end-counts h3{display:inherit;text-align:center;font-size:16px;right:50%}.mec-countdown-details .countdown-w .clockdiv li p{margin-top:23px}@media (min-width:481px) and (max-width:768px){.mec-events-meta-group-countdown .countdown-w{padding:0}.mec-events-meta-group-countdown .countdown-w .label-w{font-size:12px;letter-spacing:0}.mec-events-meta-group-countdown .countdown-w span{font-size:34px}}@media (min-width:320px) and (max-width:480px){.mec-events-meta-group-countdown .countdown-w .label-w{font-size:10px}.mec-events-meta-group-countdown .countdown-w span{font-size:28px}.mec-countdown-details .countdown-w .clockdiv li p{margin-top:16px}}@media (max-width:320px){.mec-events-meta-group-countdown .countdown-w .label-w{font-size:9px;letter-spacing:0}.mec-events-meta-group-countdown .countdown-w span{font-size:22px}}.info-msg,.mec-error,.mec-success,.warning-msg{margin:10px 0;padding:10px;border-radius:3px 3px 3px 3px;font-size:13px}.info-msg{color:#059;background-color:#bef}.mec-success{color:#270;background-color:#dff2bf}.warning-msg{color:#9f6000;background-color:#feefb3}.mec-error{color:#d8000c;background-color:#ffbaba}.mec-fes-list ul{list-style:none}.mec-fes-form-cntt .dashicons-editor-help{display:none}.mec-fes-list ul li *{text-decoration:none!important}.mec-fes-list ul li{border-bottom:1px solid #eee;padding:14px 0;line-height:normal}.mec-fes-list ul li a{box-shadow:none;color:#181818}.mec-fes-list ul li a:hover{color:#40d9f1}.mec-fes-list ul li .mec-event-title{font-weight:600;font-size:15px}.mec-fes-list .mec-event-status{color:#fff!important;border-color:transparent!important}.mec-fes-form .mec-book-confirmed,.mec-fes-list .mec-book-confirmed{background:#50d477!important}.mec-fes-form .mec-book-pending,.mec-fes-list .mec-book-pending{background:#fcbe69!important}.mec-fes-form .mec-book-rejected,.mec-fes-list .mec-book-rejected{background:#fe686a!important}.mec-fes-form .mec-book-other,.mec-fes-list .mec-book-other{background:#40d9f1!important}.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view{font-size:11px;padding:4px 8px;border:1px solid #e7e7e7;background:#f7f7f7;float:right;margin-left:5px}.mec-fes-list ul li .mec-fes-event-remove:hover{cursor:pointer;background:#f0b7b8;border-color:#cc4d4f}.mec-fes-list-top-actions a{font-size:11px;letter-spacing:2px;text-transform:uppercase;padding:8px 14px;border:1px solid #e3e3e3;background:#f5f5f5}.mec-fes-form-top-actions a,.mec-fes-list-top-actions a{position:relative;border:none;border-radius:0;color:#fff!important;display:inline-block;font-size:12px;letter-spacing:2px;line-height:1;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:17px 21px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease}.mec-fes-form-top-actions a:hover,.mec-fes-list-top-actions a:hover{background:#222;color:#fff}.mec-fes-form .mec-form-row,.mec-fes-list .mec-form-row{margin-bottom:20px;clear:both}.mec-fes-form label{padding-right:10px;font-size:13px;display:block}.mec-fes-form .post-status{float:right!important;margin:0 5px;color:#fff;padding:0 10px;border-radius:12px;font-style:italic;font-size:18px}.mec-fes-form input[type=email],.mec-fes-form input[type=number],.mec-fes-form input[type=password],.mec-fes-form input[type=tel],.mec-fes-form input[type=text],.mec-fes-form select,.mec-fes-form textarea{border-radius:0;min-width:inherit;width:auto;display:inline;background:#fcfcfc;min-height:30px;font-size:13px;border:1px solid #e0e0e0;padding:10px;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both}#mec_more_info_target{width:100%}@media only screen and (min-width:961px){.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=text],.mec-fes-form textarea{width:100%;display:inline-block}}@media only screen and (max-width:768px){.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=text],.mec-fes-form textarea{width:100%}}.mec-fes-form input[type=text]#mec_fes_title{width:100%;height:auto;color:#000;font-size:36px;font-family:Montserrat,Helvetica,Arial,sans-serif;background:0 0!important;font-weight:400}.mec-fes-form input[type=checkbox],.mec-fes-form input[type=radio]{display:inline!important;float:left;margin:5px 5px 0 0}.mec-fes-form input[type=email]:focus,.mec-fes-form input[type=number]:focus,.mec-fes-form input[type=password]:focus,.mec-fes-form input[type=tel]:focus,.mec-fes-form input[type=text]:focus,.mec-fes-form select:focus,.mec-fes-form textarea:focus{border:1px solid #aaa;color:#444;background:#fff;-moz-box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);box-shadow:0 0 3px rgba(0,0,0,.2);outline:0}.mec-form-row .mec-color{cursor:pointer}.mec-form-row.mec-available-color-row span{margin:10px;width:14px;height:14px;display:inline-block;margin-right:6px;border-radius:20px 20px 20px 20px;vertical-align:middle}.mec-form-row.mec-available-color-row span:first-of-type{margin-left:0}@media only screen and (min-width:961px){.mec-fes-form .mec-fes-form-cntt,.mec-fes-form .mec-fes-form-sdbr{width:68%;float:left;padding-right:20px}.mec-fes-form .mec-fes-form-sdbr{width:32%;padding-right:0;padding-left:20px}.mec-fes-submit-mobile{display:none}}.mec-fes-form .mec-meta-box-fields{padding:20px;border:1px solid #e6e6e6;margin-bottom:20px;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-fes-form .mec-meta-box-fields h4{margin:-20px;font-size:15px;font-weight:700;letter-spacing:2px;text-transform:uppercase;padding:10px 20px;background:#f5f5f5;margin-bottom:20px}.mec-fes-sub-button{width:100%}.mec-available-color-row span.color-selected{background-color:#fdd700;border:3px solid #fff;box-sizing:content-box;box-shadow:0 0 0 2px #437df9}.mec-fes-loading:before{content:url(../img/ajax-loader.gif);background:0 0;border-style:none;display:block;margin-left:47%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text]{width:23%;margin-right:1.4%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row{border-bottom:1px solid #e8e8e8;padding-bottom:15px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row:last-of-type{border:none}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-1{width:10%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-6{width:39%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row button{margin-right:0;padding:9px 26px}@media only screen and (max-width:768px){.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text]{width:100%!important}}.mec-wrap .mec-totalcal-box{position:relative;border:1px solid #efefef;padding:20px 5px;margin:0 0 20px;background:#fafafa;overflow:hidden;box-shadow:0 3px 2px 0 rgba(0,0,0,.012);min-height:78px}.mec-wrap .mec-totalcal-box i{float:left;margin:0;width:36px;height:36px;background:#fff;border:1px solid #efefef;text-align:center;padding:10px 0;font-size:15px;color:#888}.mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-wrap .mec-totalcal-box input,.mec-wrap .mec-totalcal-box select{width:auto;min-height:36px;height:36px;line-height:36px;background:#fff;font-size:13px;color:#777;border:1px solid #efefef;margin:0 0 0 -1px;float:left;padding:0 5px;font-family:Roboto,Helvetica,Arial,sans-serif}.mec-wrap .mec-totalcal-box input[type=submit]{cursor:pointer;padding:0 16px;text-transform:uppercase;font-size:11px;font-family:Montserrat,Helvetica,Arial,sans-serif;transition:all .21s ease}.mec-wrap .mec-totalcal-box input[type=submit]:hover{background:#222;color:#fff}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{display:inline-block;text-transform:uppercase;font-family:Montserrat,Helvetica,Arial,sans-serif;font-size:11px;padding:0 12px;cursor:pointer}.mec-wrap .mec-totalcal-box .mec-totalcal-view span:hover{color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view span.mec-totalcalview-selected{color:#fff;background:#40d9f1;border-color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view{text-align:right;float:right}.mec-wrap .mec-totalcal-box input[type=search]{width:calc(100% - 36px)}@media only screen and (min-width:961px) and (max-width:1200px){.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-3,.mec-wrap .mec-totalcal-box .col-md-4,.mec-wrap .mec-totalcal-box .col-md-5{width:100%;float:none;padding-bottom:20px;clear:both;overflow:hidden}}@media only screen and (min-width:768px) and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-4{position:relative;right:10px;top:20px;width:initial}.mec-wrap .mec-totalcal-box .col-md-5{padding-bottom:0}.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:767px){.mec-wrap .mec-totalcal-box .mec-totalcal-view{float:none}.mec-wrap .mec-totalcal-box .col-md-4{padding-bottom:0}}@media only screen and (max-width:479px){.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 8px;font-size:10px}.mec-wrap .mec-totalcal-box input[type=submit]{padding:0 10px;font-size:10px}}@media only screen and (min-width:961px){.mec-wrap .mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5,.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-3{width:100%;float:none;padding-bottom:20px;clear:both;overflow:hidden}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-4{position:absolute;right:10px;top:20px;width:initial}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5{padding-bottom:0;width:100%}}@media (min-width:961px) and (max-width:1200px){.mec-full-calendar-wrap .mec-totalcal-box{padding:20px 20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:50%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{padding-bottom:20px!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select{min-width:calc(100% - 36px)}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select{min-width:calc(30% - 10px)}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3:last-child select{min-width:calc(50% - 19px)}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view{margin-right:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:10px;text-align:center}}@media (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box{padding:20px 20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:50%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{padding-bottom:10px!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select{min-width:calc(100% - 36px);margin-bottom:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view{margin-right:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:10px;text-align:center}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:100%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:absolute;top:20px}}@media (min-width:780px) and (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:absolute;top:20px}}@media(max-width:780px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select{width:calc(50% - 18px)!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:unset;padding-right:0}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:20%;text-align:center;font-size:10px}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 7px;margin-top:20px}}@media(max-width:480px){.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:20%;text-align:center;font-size:10px}}.mec-search-form{padding:20px 10px}.mec-search-form .mec-dropdown-wrap{display:table;min-height:55px;width:100%}.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{padding:0 10px;float:left;min-height:55px}.mec-search-form .mec-date-search,.mec-search-form .mec-text-input-search{width:50%;min-height:36px;display:block}.mec-full-calendar-wrap .mec-search-form .mec-date-search,.mec-full-calendar-wrap .mec-search-form .mec-text-input-search{width:100%}.mec-full-calendar-wrap .mec-search-form .col-md-3,.mec-full-calendar-wrap .mec-search-form .col-md-5,.mec-full-calendar-wrap .mec-search-form .col-md-6,.mec-full-calendar-wrap .mec-search-form .col-md-8{padding:0}.mec-widget .mec-search-form .mec-date-search,.mec-widget .mec-search-form .mec-text-input-search{width:100%}.mec-widget .mec-search-form .mec-text-input-search{margin-top:10px}.mec-search-form .mec-date-search{clear:left}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:table-cell;float:none}.mec-widget .mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block}.mec-wrap .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select{width:calc(100% - 36px)}.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 106px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}@media only screen and (max-width:767px){.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{width:100%;float:none}.mec-search-form .mec-date-search{min-height:55px}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:50%;float:left}}@media only screen and (max-width:960px){.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 124px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}}@media only screen and (max-width:479px){.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:100%;float:none}}.ui-datepicker{background-color:#fff;border:1px solid #66afe9;border-radius:4px;box-shadow:0 0 8px rgba(102,175,233,.6);display:none;margin-top:4px;padding:10px;width:240px}.ui-datepicker a,.ui-datepicker a:hover{text-decoration:none;cursor:pointer}.ui-datepicker a:hover,.ui-datepicker td:hover a{color:#2c6396;-webkit-transition:color .1s ease-in-out;-moz-transition:color .1s ease-in-out;-o-transition:color .1s ease-in-out;transition:color .1s ease-in-out}.ui-datepicker .ui-datepicker-header{margin-bottom:4px;text-align:center}.ui-datepicker .ui-datepicker-title{font-weight:700}.ui-datepicker .ui-datepicker-next,.ui-datepicker .ui-datepicker-prev{cursor:default;font-family:dashicons;-webkit-font-smoothing:antialiased;font-style:normal;font-weight:400;height:20px;line-height:1.4;margin-top:2px;width:20px}.ui-datepicker .ui-datepicker-prev{float:left;text-align:left}.ui-datepicker .ui-datepicker-next{float:right;text-align:center}.ui-datepicker .ui-datepicker-prev:before{content:"\f341"}.ui-datepicker .ui-datepicker-next:before{content:"\f345"}.ui-datepicker .ui-icon{display:none}.ui-datepicker .ui-datepicker-calendar{table-layout:fixed;width:100%}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker .ui-datepicker-calendar th{text-align:center;padding:4px 0}.ui-datepicker .ui-datepicker-calendar td{border-radius:4px;-webkit-transition:background-color .1s ease-in-out,color .1s ease-in-out;-moz-transition:background-color .1s ease-in-out,color .1s ease-in-out;-o-transition:background-color .1s ease-in-out,color .1s ease-in-out;transition:background-color .1s ease-in-out,color .1s ease-in-out}.ui-datepicker .ui-datepicker-calendar td:hover{background-color:#eee;cursor:pointer}.ui-datepicker .ui-datepicker-calendar td a{text-decoration:none}.ui-datepicker .ui-datepicker-current-day{background-color:#4289cc}.ui-datepicker .ui-datepicker-current-day a{color:#fff}.ui-datepicker .ui-datepicker-calendar .ui-datepicker-unselectable:hover{background-color:#fff;cursor:default}.event-carousel-type1-head .mec-event-image{position:relative;min-height:150px}.event-carousel-type1-head .mec-event-image img{width:100%}.mec-event-carousel-content .mec-event-carousel-title a{transition:all .2s ease}.event-carousel-type1-head .mec-event-date-carousel{position:absolute;top:25px;left:1px;font-size:41px;width:160px;color:#fff;font-weight:500;background-color:#40d9f1;padding-left:21px;height:97px;line-height:2.3;padding-right:85px}.event-carousel-type1-head .mec-event-date-carousel:after{content:"";position:absolute;display:inline-block;z-index:-1;bottom:-13px;left:5px;width:0;border-width:13px;border-style:solid;border-color:transparent transparent #40d9f1 transparent;transform:rotate(45deg)}.event-carousel-type1-head .mec-event-date-info{font-size:12px;font-weight:300;position:absolute;top:27px;left:75px}.event-carousel-type1-head .mec-event-date-info-year{font-size:12px;font-weight:300;position:absolute;top:45px;left:75px}.mec-event-carousel-content{border:1px solid #e8e8e8;border-top:none;margin-top:-5px;padding:34px 9px 11px 37px}.mec-event-carousel-content .mec-event-carousel-title a{font-size:23px;font-weight:500;color:#000;letter-spacing:-1px}.mec-event-carousel-content p{font-size:14px;color:#7a7272;font-weight:300}.mec-owl-crousel-skin-type1 .owl-item .mec-event-article{padding:0 19px}.mec-event-carousel-type1 .owl-page.active span{background-color:#00aeef;height:14px;width:14px}.mec-event-carousel-type1 .mec-event-carousel-content{margin-bottom:15px;box-shadow:0 1px 2px rgba(0,0,0,.04);transition:all .27s ease}.mec-event-carousel-type1 .mec-event-carousel-content:hover{box-shadow:0 0 35px rgba(0,0,0,.07)}@media only screen and (min-width:768px) and (max-width:1000px),(min-width:270px) and (max-width:448px){.event-carousel-type1-head .mec-event-date-carousel{font-size:25px;line-height:2.5;padding-right:70px;height:64px;width:120px}.event-carousel-type1-head .mec-event-date-carousel:after{left:7px}.event-carousel-type1-head .mec-event-date-info{font-size:10px;top:13px;left:55px}.event-carousel-type1-head .mec-event-date-info-year{font-size:10px;top:25px;left:55px}.event-carousel-type1-head .mec-event-date-carousel:after{top:48px}}.event-carousel-type2-head{background:#fff;border:1px solid #e6e6e6}.event-carousel-type2-head .mec-event-carousel-content-type2{margin-top:15px;min-height:182px}.event-carousel-type2-head .mec-event-carousel-content-type2 .mec-event-date-info{font-size:15px;color:#9a9a9a;font-weight:300}.event-carousel-type2-head .mec-event-carousel-content-type2 .mec-event-carousel-title{font-size:26px;font-weight:700;color:#1c1d21;margin-top:15px;letter-spacing:-1px}.mec-event-carousel-content-type2 .mec-event-carousel-title a{color:inherit}.mec-event-carousel-type2 .event-carousel-type2-head .mec-event-carousel-content-type2 p{font-size:16px;font-weight:300;color:#444}.event-carousel-type2-head .mec-event-footer-carousel-type2{margin-top:33px;position:relative}.mec-event-carousel-type2 .mec-event-footer-carousel-type2 .mec-event-sharing-wrap{left:0}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-event-sharing-wrap>li{border:none;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button{border:1px solid #e4e4e4;float:right;padding:7px 23px 7px;font-size:12px;text-transform:uppercase;color:#707070;font-weight:500;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button:hover{color:#fff}.mec-event-article .event-carousel-type2-head{padding:10%;margin-right:-1px}.mec-event-carousel-type2 .mec-owl-carousel .owl-wrapper-outer{border-right:1px solid #e6e6e6}.mec-wrap .mec-event-carousel-type2 .owl-next,.mec-wrap .mec-event-carousel-type2 .owl-prev,.mec-wrap .mec-event-carousel-type3 .owl-next,.mec-wrap .mec-event-carousel-type3 .owl-prev,.mec-wrap .mec-event-carousel-type4 .owl-next,.mec-wrap .mec-event-carousel-type4 .owl-prev{transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:47%;background-color:transparent!important}.mec-event-carousel-type2 .owl-next{right:-60px}.mec-event-carousel-type2 .owl-prev{left:-60px}.mec-event-carousel-type2 .owl-next i,.mec-event-carousel-type2 .owl-prev i,.mec-event-carousel-type3 .owl-next i,.mec-event-carousel-type3 .owl-prev i,.mec-event-carousel-type4 .owl-next i,.mec-event-carousel-type4 .owl-prev i{font-size:40px;color:#282828}.mec-event-carousel-type2 .owl-next i:hover,.mec-event-carousel-type2 .owl-prev i:hover,.mec-event-carousel-type3 .owl-next i:hover,.mec-event-carousel-type3 .owl-prev i:hover{color:#000;cursor:pointer}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}@media only screen and (min-width:320px) and (max-width:768px){.mec-event-carousel-type2 .owl-next,.mec-event-carousel-type2 .owl-prev,.mec-event-carousel-type3 .owl-next,.mec-event-carousel-type3 .owl-prev,.mec-event-carousel-type4 .owl-next,.mec-event-carousel-type4 .owl-prev{position:initial;top:100%}}.mec-event-carousel-type3 .mec-event-article{margin:0 10px}.event-carousel-type3-head .mec-event-image,.event-carousel-type3-head .mec-event-image img{width:100%;height:auto}.event-carousel-type3-head .mec-event-footer-carousel-type3{background:#fff;display:inline-block;width:calc(100% - 40px);margin-top:-74px;position:relative;margin-left:20px;margin-right:20px;margin-bottom:6px;padding:8% 11%;box-shadow:0 2px 10px -2px rgba(0,0,0,.2)}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button{border:1px solid #e4e4e4;text-transform:uppercase;float:right;padding:7px 23px 7px;font-size:12px;color:#707070;font-weight:500}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button:hover{color:#fff}.mec-event-footer-carousel-type3 span{font-size:15px;color:#9a9a9a;font-weight:300;display:block;margin-top:30px}.mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:29px;font-weight:700}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:26px;font-weight:700;color:#1c1d21;margin-top:15px;letter-spacing:-1px}.mec-event-footer-carousel-type3 .mec-event-carousel-title a{color:inherit}.event-carousel-type3-head .mec-event-footer-carousel-type3 p{font-size:16px;font-weight:300;color:#444!important;margin-bottom:36px}.mec-event-carousel-type3 .owl-next{right:-70px}.mec-event-carousel-type3 .owl-prev{left:-70px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap{left:11%}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}.event-carousel-type3-head .mec-end-date-label{display:inline;margin-left:2px}.event-carousel-type4-head.clearfix{position:relative;overflow:hidden;background:#fff}.event-carousel-type4-head .mec-event-overlay{position:absolute;left:0;right:0;bottom:0;top:0;width:auto;height:auto;background-color:rgba(36,36,36,.4);transition:all .33s ease-in-out}.mec-event-hover-carousel-type4{font-size:15px;color:#fff;position:absolute;bottom:0;padding:50px 35px;transition:all .33s ease-in-out;opacity:0;visibility:hidden}.mec-event-carousel-type4 .mec-event-article{margin:0 10px}.mec-event-carousel-type4 .mec-event-article:hover .mec-event-hover-carousel-type4{opacity:1;visibility:visible}.mec-event-hover-carousel-type4 .mec-event-icon{font-size:18px;float:left;margin-right:14px;color:#fff;padding:13px}.mec-event-hover-carousel-type4 .mec-event-date{font-size:11px;text-transform:uppercase;font-weight:400;line-height:1.6}.mec-event-hover-carousel-type4 .mec-event-date span{display:block;font-weight:700;font-size:14px}.mec-event-hover-carousel-type4 .mec-event-title{color:#fff;margin:20px 0 38px;font-size:16px;font-weight:700;text-transform:uppercase;font-style:normal}.mec-event-hover-carousel-type4 .mec-btn-wrapper{text-align:left}.mec-event-hover-carousel-type4 .mec-event-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:10px 14px;letter-spacing:1.5px;font-size:11px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none}.mec-event-hover-carousel-type4 .mec-event-button:hover{color:#191919;background-color:#fff;border-color:#fff;border-radius:1px}.mec-event-carousel-type4 .owl-next{right:-70px}.mec-event-carousel-type4 .owl-prev{left:-70px}.mec-carousel-type4-head{margin-bottom:25px}.mec-carousel-type4-head-title{padding:0 11px;text-align:left;font-weight:700;font-size:20px;color:#000}.mec-carousel-type4-head-link{text-align:right;padding:0 11px}.mec-carousel-type4-head-link a{background:#222;color:#fff;padding:10px 38px;transition:all .3s ease}.mec-carousel-type4-head-link a:hover,.mec-carousel-type4-head-link a:visited{color:#fff}@media (max-width:960px){.mec-event-carousel-type4 .owl-stage{left:-50px}}.mec-wrap .mec-event-countdown-style1{color:#fff;padding:0!important;display:table;background:#437df9}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1{z-index:5;padding:50px 1% 50px 4%;display:table-cell;float:none;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2{background-color:rgba(0,0,0,.05);height:100%;padding-top:0;display:table-cell;float:none;position:relative;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{background-color:#f8f8f8;display:table-cell;float:none;text-align:center;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style1 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{content:"";position:absolute;display:inline-block;z-index:1;top:50%;margin-top:-11px;right:-24px;width:0;border-width:12px;border-style:solid;border-color:transparent transparent transparent #4077ed}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style1 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto}.mec-event-countdown-style1 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style1 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (min-width:1200px){.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%}}@media (max-width:960px){.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%;transform:rotate(90deg)}}@media (max-width:480px){.mec-event-countdown-style1 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{padding:10px 5px;min-width:50px;margin:3px 1px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:8px}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{display:inline}}.mec-wrap .mec-event-countdown-style2{color:#fff;padding:30px 0;background:#437df9;max-width:600px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part3{width:100%;float:none;vertical-align:middle;padding:50px 10% 50px 10%}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2{padding-top:12%;padding-bottom:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style2 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date-place{text-align:left;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 8px}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#222;background:#fff;transition:all .24s ease}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button:hover{background:#222;color:#fff}.mec-event-countdown-style2 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0}.mec-event-countdown-style2 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style2 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (max-width:767px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:80px;padding:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:26px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:11px}}@media only screen and (max-width:479px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:40px;padding:15px 10px;margin:2px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:20px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:9px}}@media (max-width:380px){.mec-event-countdown-style2 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{padding:10px 4px;margin:4px 1px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:7px}}.mec-wrap .mec-event-countdown-style3{color:#fff;padding:0;background:#282828;display:table;width:100%}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1{width:68%;padding:50px 1% 50px 4%;vertical-align:middle;display:table-cell;position:relative}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:32%;display:table-cell;position:relative;padding-bottom:0;padding-top:0}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 img{width:100%;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{font-weight:300;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{color:#fff;font-size:36px;letter-spacing:-2px;font-weight:700;line-height:1;margin-top:-10px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style3 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style3 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto;position:absolute;top:40px;right:20px}.mec-event-countdown-style3 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style3 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:11px;color:#888;margin:8px 0 0;line-height:1}.mec-event-countdown-style3 .mec-event-date{width:176px;height:96px;background:#40d9f1;color:#fff;font-size:13px;position:absolute;left:-27px;top:146px}.mec-event-countdown-style3 .mec-event-date:after{content:"";position:absolute;display:inline-block;z-index:1;bottom:-18px;left:8px;width:0;border-width:19px;border-style:solid;border-color:transparent transparent #40d9f1 transparent;transform:rotate(45deg)}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:50px;position:absolute;top:36px;left:12px;letter-spacing:-3px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:80px;top:26px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:80px;top:45px}.mec-event-countdown-style3 .mec-event-countdown-part-details{padding-top:35px;margin-bottom:50px;min-height:100px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-title{font-size:17px;color:#fff;line-height:1.4;padding-right:20px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link{color:#fff;font-size:12px;position:relative;padding-left:22px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link:before{content:"";display:inline-block;width:18px;border-top:1px solid #fff;position:absolute;left:0;top:8px}.mec-event-countdown-style3 .mec-event-title-link{position:absolute;left:190px;top:152px}.event-carousel-type1-head .mec-event-date-carousel:before,.mec-event-countdown-style3 .mec-event-date:before{content:'';position:absolute;left:0;bottom:0;z-index:2;width:100%;height:96px;background:0 0;display:inline-block;box-shadow:0 5px 5px rgba(0,0,0,.12)}@media only screen and (min-width:960px){.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown li{padding:10px}.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:31px}}@media (max-width:959px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:100%;display:block}.mec-event-countdown-style3 .mec-event-title-link{top:190px}.mec-event-countdown-style3 .mec-event-countdown{top:96px}.mec-event-countdown-style3 .mec-event-date{left:0;top:190px}.mec-event-countdown-style3 .mec-event-date:after{display:none}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{display:inline}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:150px}}@media (max-width:767px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:26px;letter-spacing:-1px}.mec-event-countdown-style3 .mec-event-title-link{left:130px}.mec-event-countdown-style3 .mec-event-date{width:120px;font-size:10px;height:63px}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:36px;top:20px;left:4px;letter-spacing:-2px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:52px;top:12px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:52px;top:28px}}@media (max-width:380px){.mec-event-countdown-style3 .mec-event-title-link{left:10px;top:260px}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:300px}.mec-event-countdown-style3 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:10px 5px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:8px}}.mec-slider-t1-wrap{width:100%;padding:60px 90px;background:#f7f7f7;min-height:560px;position:relative}.mec-slider-t1{height:500px;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t1 .mec-event-article{position:relative;height:500px}.mec-slider-t1 .mec-slider-t1-img{position:relative;background-size:cover!important;background-position:center!important;width:50%;height:100%;float:right;margin:0;overflow:hidden}.mec-slider-t1 .mec-slider-t1-content{width:50%;float:left;height:100%;background:#fff;padding:6%}.mec-slider-t1-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t1-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:54px;height:54px;line-height:48px;border-radius:0;text-align:center;background:#fff;box-shadow:0 2px 11px 0 rgba(0,0,0,.045);transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-27px;cursor:pointer}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 29px 0 rgba(0,0,0,.095)}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:12px;color:#282828;transition:all .21s ease}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{font-size:13px;color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t1{margin:0 auto;max-width:900px}}@media only screen and (max-width:960px){.mec-slider-t1 .mec-slider-t1-content,.mec-slider-t1 .mec-slider-t1-img{width:100%;float:none}.mec-slider-t1 .mec-slider-t1-img{height:300px}.mec-slider-t1,.mec-slider-t1 .mec-event-article{height:auto}}@media only screen and (max-width:768px){.mec-slider-t1-wrap{padding:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:10px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}}@media only screen and (max-width:479px){.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t2-wrap{width:100%;padding:0;background:#fff;min-height:600px;position:relative}.mec-slider-t2 .mec-event-article{height:600px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t2 .mec-slider-t2-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:70%;height:100%;margin:0;overflow:hidden}.mec-slider-t2 .mec-slider-t2-content{width:50%;position:absolute;right:0;top:60px;bottom:60px;padding:5%}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern *{color:#fff}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-content,.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t2-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:84px;cursor:pointer}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}.mec-wrap.colorskin-custom .mec-slider-t2 .mec-event-article .mec-event-date.mec-color{color:#fff}@media only screen and (min-width:961px){.mec-slider-t2{margin:0 auto;max-width:1200px}}@media only screen and (max-width:960px){.mec-slider-t2 .mec-slider-t2-content,.mec-slider-t2 .mec-slider-t2-img{width:100%;float:none;position:static}.mec-slider-t2 .mec-slider-t2-img{height:300px}.mec-slider-t2 .mec-event-article{height:auto}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px}}@media only screen and (max-width:479px){.mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:22px}}.mec-slider-t3-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t3 .mec-event-article{height:700px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t3 .mec-slider-t3-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;opacity:.68;z-index:1}.mec-slider-t3 .mec-slider-t3-content{width:50%;height:auto;vertical-align:middle;display:table;position:absolute;left:0;top:0;bottom:0;padding:0 2% 0 7%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t3 .mec-slider-t3-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-content,.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-slider-t3-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t3-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{border-color:#40d9f1}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-22px;cursor:pointer}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next{right:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:50px;font-weight:300}.mec-slider-t3-content.mec-event-grid-modern .mec-event-description{font-size:19px}}@media only screen and (max-width:767px){.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}}@media only screen and (max-width:479px){.mec-slider-t3 .mec-slider-t3-content{width:100%}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t4-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t4 .mec-event-article{height:700px;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t4 .mec-slider-t4-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;z-index:1}.mec-slider-t4 .mec-slider-t4-content{width:auto;max-width:700px;background:rgba(37,37,37,.94)!important;height:auto;vertical-align:middle;display:table;position:absolute;left:8%;top:19%;padding:3%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t4 .mec-slider-t4-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-content,.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:13px;padding:0 42px;line-height:49px;height:50px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t4-content.mec-event-grid-modern .mec-slider-t4-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next{right:60px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{right:112px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:767px){.mec-slider-t4 .mec-slider-t4-content{width:100%;left:0;top:auto;bottom:0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t5-wrap{width:auto;max-width:570px;padding:0;margin:0 auto 25px;background:#f7f7f7;min-height:480px;position:relative}.mec-slider-t5{height:auto;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t5 .mec-event-article{position:relative;height:auto}.mec-slider-t5 .mec-slider-t5-img{position:relative;background-size:cover!important;background-position:center!important;width:100%;height:300px;float:none;margin:0;overflow:hidden}.mec-slider-t5 .mec-slider-t5-content{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-slider-t5 .mec-events-content p{margin-bottom:20px}.mec-slider-t5-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t5-wrap .mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:14px 34px;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t5 .mec-slider-t5-col6{width:50%;float:left;height:100%}.mec-slider-t5 .mec-slider-t5-col6 i{font-size:42px;float:left;margin-right:7px;height:58px}.mec-slider-t5 .mec-slider-t5-col6 h6{text-transform:uppercase;font-size:17px;padding:4px 0;display:inline;color:#444}.mec-slider-t5 .mec-slider-t5-col6 address{font-size:12px;margin-bottom:0}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t5-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:768px){.mec-slider-t5 .mec-slider-t5-col6{width:100%;margin:10px 0}}@media only screen and (max-width:479px){.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.mec-single-modern .mec-events-event-image{text-align:center}.mec-single-modern .mec-events-event-image img{width:100%}.mec-single-modern .mec-single-event-bar{background-color:#f7f7f7;margin:20px 0 0;padding:15px;display:table;width:100%}.mec-single-modern .mec-single-event-bar>div{display:table-cell}.mec-single-modern .mec-single-event-bar>div i{font-size:20px;vertical-align:middle}.mec-single-modern .mec-single-event-bar>div .mec-time-comment{font-size:12px;color:#999}.mec-single-modern .mec-single-event-bar>div h3{text-transform:uppercase;font-size:16px;font-weight:700;padding-bottom:5px;display:inline;color:#000;padding-left:10px}.mec-single-modern .mec-single-event-bar>div dd{font-size:14px;color:#8d8d8d;padding-left:34px;margin-bottom:0}.mec-single-modern .col-md-4 .mec-frontbox{margin-top:-50px;margin-bottom:70px;padding:20px;border:none;background:#f7f7f7;box-shadow:none}.mec-next-occurrence li{list-style:none}@media only screen and (min-width:960px){.mec-single-modern .col-md-4 .mec-frontbox{margin-left:20px}}@media only screen and (max-width:960px){.mec-single-modern .mec-single-event-bar>div{display:block}}.lity-content>div{overflow:auto}.mec-next-event-details li{list-style:none;margin-top:20px}.mec-next-event-details h6{text-transform:uppercase;font-size:13px;padding-bottom:5px;display:inline;color:#222;padding-left:0}.mec-next-event-details abbr{display:block;padding-left:12px;color:#8d8d8d}.mec-next-event-details i{margin-right:10px;margin-left:12px}.mec-next-event-details i:before{color:#40d9f1}.mec-next-event-details a{text-align:center;display:block;background:#fff;padding:6px 0;font-size:11px;font-weight:400;letter-spacing:0;border:1px solid #e3e3e3;transition:.3s}.mec-single-modal.mec-single-modern .mec-single-title{text-align:center;padding:15px 10px 0}.admin-bar .mec-single-modal.mec-single-modern .mec-single-title{padding-top:40px}.mec-single-modal.mec-single-modern .mec-single-event-bar{padding:5px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div dd{font-size:13px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div h3{font-size:15px}@media only screen and (min-width:960px){.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-left:0}}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-top:10px;margin-bottom:10px}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox.mec-event-meta{padding:0}.mec-single-modal .mec-event-meta dd.mec-organizer-email a,.mec-single-modal .mec-event-meta dd.mec-organizer-url a{font-size:12px;display:block}.mec-modal-wrap{max-width:700px;background:#fff;box-shadow:0 1px 55px rgba(0,0,0,.5)}.mec-single-modal .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li,.mec-single-modal .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a.mec-events-button{display:block;text-align:center}.mec-single-modal .flip-clock-divider .flip-clock-label{position:absolute;top:60px}.mec-single-modal .flip-clock-divider:not(:first-child){width:48px!important}.mec-single-modal .flip-clock-divider.minutes .flip-clock-label{top:150px;left:-539px}.mec-single-modal .flip-clock-divider.seconds .flip-clock-label{top:87px}.mec-single-modal .flip-clock-wrapper{left:14%}.mec-single-modal .twodaydigits>ul:nth-child(11),.mec-single-modal .twodaydigits>ul:nth-child(12),.mec-single-modal .twodaydigits>ul:nth-child(8),.mec-single-modal .twodaydigits>ul:nth-child(9){margin-top:30px!important}.mec-events-toggle{max-width:960px;margin-left:auto;margin-right:auto}.mec-events-toggle .mec-toggle-item{border:1px solid #e4e4e4;margin-bottom:15px;box-shadow:0 10px 15px #f3f3f3}.mec-events-toggle .mec-toggle-item-inner{cursor:pointer;position:relative;padding:30px 60px 30px 15px;background:#fff;transition:all .3s ease}.mec-events-toggle .mec-toggle-item-inner:hover{background:#fbfbfb}.mec-toggle-item-col{float:left;width:180px;margin-top:-6px;border-right:1px solid #e3e3e3;margin-right:15px}.mec-toggle-item-col .mec-event-date{font-size:38px;line-height:40px;float:left;margin-right:8px}.mec-toggle-item-col .mec-event-month{text-transform:uppercase;font-size:12px;line-height:14px;padding-top:4px;font-weight:700}.mec-toggle-item-col .mec-event-detail{font-size:10px}.mec-toggle-item-col .mec-event-day{margin-top:9px;color:silver;font-family:Roboto,sans-serif;font-size:35px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.mec-events-toggle .mec-toggle-title{color:#000;font-size:23px;font-weight:600;margin-bottom:0;transition:all .3s ease;display:inline-block}.mec-events-toggle .mec-toggle-item-inner span.event-color{width:5px;height:100%;position:absolute;left:-1px;top:0;bottom:0;border-radius:0;margin:0}.mec-events-toggle .mec-toggle-item-inner i{position:absolute;font-size:30px;right:25px;top:50%;transform:translate(0,-50%);cursor:pointer}.mec-events-toggle .mec-toggle-item.is-open i.mec-sl-plus:before{content:"\e615"}.mec-events-toggle .mec-toggle-item.is-open .mec-toggle-title{background:#f8f8f8;cursor:pointer}.mec-events-toggle .mec-toggle-content{border-top:1px solid #e4e4e4}.mec-events-toggle .mec-toggle-content .mec-modal-wrap{margin:0;max-width:100%;box-shadow:none}.mec-events-toggle .mec-toggle-content .mec-modal-wrap .mec-single-event{margin:0}.mec-events-toggle .mec-toggle-content .mec-single-event-bar,.mec-events-toggle .mec-toggle-content h1.mec-single-title{display:none}.mec-events-toggle .media-links a{margin-bottom:0}.mec-events-toggle .mec-toggle-content .mec-toggle-meta{margin-bottom:14px}.mec-events-toggle #mec_speakers_details.mec-frontbox{padding:0;margin:0}.mec-events-toggle .mec-toggle-item h3.mec-speakers{border:none;text-align:left}.mec-events-toggle .mec-toggle-item h3.mec-speakers:before{content:"\e063";font-family:simple-line-icons;border:none;position:relative;display:inline-block;left:unset;bottom:unset;font-size:22px;font-weight:400;padding:0 11px 0 28px;vertical-align:middle}@media only screen and (max-width:767px){.mec-toggle-item-col{float:none;width:100%;border-right:none;margin-bottom:5px}}.mec-events-agenda-wrap{margin:10px 0;border:1px solid #e9e9e9;padding-left:20px;box-shadow:0 2px 2px rgba(0,0,0,.03)}.mec-events-agenda{padding:0;border-bottom:1px solid #e9e9e9;overflow:hidden}.mec-agenda-date-wrap{width:210px;padding-top:15px;float:left;font-size:13px}.mec-agenda-date-wrap i,.mec-agenda-event i{font-size:11px;color:#aaa;margin-right:4px;margin-left:1px}.mec-agenda-event i{vertical-align:middle;margin-right:1px}.mec-agenda-events-wrap{float:left;width:calc(100% - 210px);background:#f9f9f9;padding:15px}.mec-agenda-time{font-size:11px;color:#707070;padding-right:10px;width:138px;display:inline-block}.mec-agenda-event-title{position:relative;padding-left:14px}.mec-agenda-event-title a{font-family:Roboto,Montserrat,Helvetica,Arial,sans-serif;font-size:14px;font-weight:600;color:#333}.mec-agenda-event-title span.event-color{width:9px;height:9px;position:absolute;left:0;top:4px;margin:0}.mec-agenda-date-wrap span.mec-agenda-day{color:#aaa;font-size:12px}@media only screen and (max-width:767px){.mec-agenda-date-wrap,.mec-agenda-events-wrap{float:none;width:100%}.mec-events-agenda span.mec-agenda-event-title{display:block;width:100%}.mec-agenda-event-title span.event-color{top:7px}.mec-agenda-event-title a{font-size:13px}}.mec-yearly-view-wrap{margin:0 0 15px;border:1px solid #e6e6e6;box-shadow:0 2px 4px rgba(0,0,0,.04);border-bottom-width:4px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar{max-width:100%;width:232px;padding:10px;background:#fff;margin:10px;display:inline-block}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar dl dt{transition:none;height:30px;width:30px;line-height:30px;border-radius:0;font-size:12px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar .mec-calendar-events-sec{padding:10px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar .mec-has-event:after{width:4px;height:4px;bottom:3px;margin-left:-2px}.mec-yearly-view-wrap .mec-calendar-side .mec-calendar-table{min-height:200px}.mec-calendar.mec-yearly-calendar .mec-calendar-table-head dl dt{background:#f9f9f9;font-size:13px}.mec-calendar.mec-yearly-calendar .mec-calendar-table-title{text-align:center;font-size:15px;font-weight:700;color:#222;margin-top:-5px;padding-bottom:5px}.mec-yearly-view-wrap .mec-yearly-calendar-sec{min-height:200px;width:538px;overflow:hidden;float:left;background:#f8f8f8;padding:15px}.mec-yearly-view-wrap .mec-yearly-agenda-sec{min-height:200px;width:calc(100% - 538px);float:left;padding:0 0 0 20px;overflow:hidden}.mec-yearly-view-wrap .mec-yearly-title-sec{position:relative;padding:15px;text-align:center;border-bottom:1px solid #e6e6e6;box-shadow:0 1px 3px rgba(0,0,0,.02)}.mec-yearly-view-wrap .mec-yearly-title-sec h2{font-size:30px;line-height:40px;color:#333;margin:0;font-weight:700}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year,.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year{position:absolute;top:50%;margin-top:-15px;min-width:30px;height:30px;line-height:30px;padding:0 8px;text-align:center;background:#fff;color:#666;font-size:14px;border:1px solid #eee;border-radius:2px;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease;cursor:pointer}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year{right:auto;left:20px;padding-right:14px}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year{left:auto;right:20px;padding-left:14px}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year i,.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year i{font-size:12px;color:#40d9f1;cursor:pointer}@media only screen and (max-width:959px){.mec-yearly-view-wrap .mec-yearly-calendar-sec{width:268px;padding:10px 5px}.mec-yearly-view-wrap .mec-yearly-agenda-sec{width:calc(100% - 268px);padding:0 0 0 10px}}@media only screen and (max-width:767px){.mec-yearly-view-wrap .mec-yearly-agenda-sec,.mec-yearly-view-wrap .mec-yearly-calendar-sec{width:100%;float:none}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar{width:auto}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar dl dt{width:14.2%}.mec-yearly-view-wrap .mec-yearly-title-sec h2{font-size:25px}}.mec-yearly-view-wrap .mec-agenda-event i,.mec-yearly-view-wrap .mec-agenda-time{display:none}@media only screen and (min-width:768px){.mec-yearly-view-wrap .mec-events-agenda-wrap{margin-top:0;border:none;padding-left:0;box-shadow:none}.mec-yearly-view-wrap .mec-agenda-date-wrap{width:174px;font-size:11px;padding-top:10px}.mec-yearly-view-wrap .mec-agenda-events-wrap{width:calc(100% - 174px);padding:10px}.mec-yearly-view-wrap .mec-agenda-event-title a{font-size:13px}.mec-yearly-view-wrap .mec-agenda-event-title span.event-color{width:8px;height:8px}.mec-yearly-view-wrap .mec-agenda-date-wrap span.mec-agenda-day{font-size:11px}.mec-yearly-view-wrap .mec-yearly-calendar-sec{box-shadow:-2px 0 5px rgba(0,0,0,.03) inset}}@media only screen and (max-width:1200px){.mec-yearly-view-wrap .mec-agenda-event-title a{font-size:12px;padding-right:6px}}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table{padding-bottom:10px;border-bottom:none}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt:hover{cursor:pointer}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-has-no-event,.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-has-no-event:hover{color:#bbb;cursor:default}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-day-active{background:#40d9f1;color:#fff;position:relative}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-day-active:after{content:'';position:absolute;display:block;bottom:-20px;left:50%;margin-left:-10px;width:0;border-width:10px;border-style:solid;border-color:#40d9f1 transparent transparent transparent}.mec-timetable-events-list{padding:10px 20px;border:none;margin:0}.mec-timetable-events-list .mec-timetable-event{padding:10px 0;border-bottom:1px dashed #ddd}.mec-timetable-events-list .mec-timetable-event:last-child{border:none}.mec-timetable-event .mec-timetable-event-span{font-size:12px;color:#444;padding-right:30px;line-height:22px}.mec-timetable-events-list .mec-timetable-event i{font-size:13px;color:#aaa;margin-right:3px;vertical-align:baseline}.mec-timetable-event .mec-timetable-event-span a{color:#333}.mec-timetable-event .mec-timetable-event-time{font-size:11px}.mec-timetable-event .mec-timetable-event-time i{vertical-align:text-bottom}.mec-timetable-event .mec-timetable-event-title{font-size:13px}.mec-timetable-event .mec-timetable-event-title .event-color{width:10px;height:10px}.mec-timetable-events-list .mec-timetable-event.mec-util-hidden{display:none}.mec-timetable-events-list.mec-util-hidden{display:none}@media only screen and (min-width:768px){.mec-timetable-events-list{display:table;width:100%;margin:10px 0 20px}.mec-timetable-events-list .mec-timetable-event{display:table-row;padding:0;border:none;background:#fff}.mec-timetable-events-list .mec-timetable-event:hover{background:#fafafa}.mec-timetable-event .mec-timetable-event-span{display:table-cell;padding:10px 15px;border-bottom:1px solid #ebebeb}.mec-timetable-events-list .mec-timetable-event:last-child .mec-timetable-event-span{border-bottom:none}}@media only screen and (max-width:767px){.mec-timetable-event .mec-timetable-event-title{display:block;width:100%;padding:5px 0 10px;font-weight:700}}.mec-timetable-t2-wrap{border:1px solid #e6e6e6;background:#fafafa;padding:0 15px 15px;overflow:hidden;box-shadow:0 3px 2px 0 rgba(0,0,0,.012)}.mec-timetable-t2-col{width:20%;float:left;min-height:20px;padding-right:1px;background:0 0}.mec-ttt2-title{background:#fafafa;color:#333;font-size:13px;font-weight:600;text-transform:uppercase;letter-spacing:1px;text-align:center;padding:25px 10px 10px;margin-bottom:1px}.mec-timetable-t2-col .mec-event-article{position:relative}.mec-timetable-t2-col .mec-event-article .event-color{position:absolute;width:auto;height:auto;left:0;right:0;top:0;bottom:0;margin:0;z-index:1;border-radius:2px}.mec-timetable-t2-content{position:relative;z-index:2;color:#fff;padding:15px 15px 20px;text-align:left;height:130px;margin-bottom:1px;overflow:hidden}.mec-timetable-t2-content .mec-event-title{line-height:22px;margin-bottom:13px;white-space:nowrap;padding-right:1px;overflow:hidden}.mec-timetable-t2-content .mec-event-title a{color:#fff;font-size:15px;font-weight:600;white-space:nowrap;overflow:hidden}.mec-timetable-t2-content div{color:#fff;font-size:11px;font-weight:400;line-height:19px;white-space:nowrap}.mec-timetable-t2-content div i{font-size:12px;margin-right:4px}@media only screen and (max-width:960px){.mec-timetable-t2-col{width:100%;float:none}}@media(min-width:961px){.mec-timetable-col-7{width:14.28%}.mec-timetable-col-6{width:16.6666%}}.mec-weather-box{padding:15px 0}.mec-weather-head{min-height:90px;padding:5px 0;clear:both;overflow:hidden;margin-bottom:25px;border-radius:10px;background:#238af5}.mec-weather-icon-box{float:left;width:80px;height:80px;border-radius:10px;overflow:hidden;background:#238af5}.mec-weather-icon{width:80px;height:80px;display:inline-block;border-radius:10px}.mec-weather-summary{float:left;width:calc(100% - 80px);padding-left:10px;margin:10px 0;height:60px}.mec-weather-summary-report{font-size:15px;color:rgba(255,255,255,.68);margin-bottom:6px}.mec-weather-summary-temp{font-family:Roboto,Sans-serif;font-weight:300;color:#fff;font-size:29px;line-height:1}.degrees-mode{background:rgba(0,0,0,.2);cursor:pointer;font-weight:300;font-size:18px;padding:4px 5px;line-height:1;color:#fff;position:absolute;border-radius:8px;bottom:16px;left:16px}.mec-weather-extras{width:auto;padding:10px 15px 0 15px;float:right;min-height:80px;color:#fff;font-size:13px;line-height:1}.mec-weather-extras{width:auto;padding:10px 15px 0 15px;float:right;min-height:80px;color:#fff;font-size:13px;line-height:1}.mec-weather-extras div{line-height:20px;height:20px}.mec-weather-extras span{color:rgba(255,255,255,.68);font-size:12px;text-transform:uppercase}.mec-weather-extras var{font-size:11px;letter-spacing:.4px}.mec-weather-icon.clear-day,.mec-weather-icon.clear-night{background-image:url(../img/mec-weather-icon-01.png)}.mec-weather-icon.partly-sunny-day,.mec-weather-icon.partly-sunny-night{background-image:url(../img/mec-weather-icon-02.png)}.mec-weather-icon.partly-cloudy-day,.mec-weather-icon.partly-cloudy-night{background-image:url(../img/mec-weather-icon-03.png)}.mec-weather-icon.cloudy,.mec-weather-icon.fog,.mec-weather-icon.wind{background-image:url(../img/mec-weather-icon-04.png)}.mec-weather-icon.thunderstorm{background-image:url(../img/mec-weather-icon-05.png)}.mec-weather-icon.rain{background-image:url(../img/mec-weather-icon-06.png)}.mec-weather-icon.hail,.mec-weather-icon.sleet,.mec-weather-icon.snow{background-image:url(../img/mec-weather-icon-07.png)}.mec-av-spot-wrap{width:auto;max-width:1200px;padding:0;margin:0 auto 25px;background:#f7f7f7;min-height:480px;position:relative}.mec-av-spot{height:auto;border:1px solid #eee;box-shadow:0 6px 12px -4px rgba(0,0,0,.05)}.mec-av-spot .mec-event-article{position:relative;height:auto}.mec-av-spot .mec-av-spot-img{position:relative;background-size:cover!important;background-position:center!important;width:100%;height:330px;float:none;margin:0;overflow:hidden}.mec-av-spot .mec-av-spot-content,.mec-av-spot .mec-av-spot-head{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-av-spot .mec-av-spot-head{background:#222;color:#fff;min-height:80px}.mec-av-spot .mec-av-spot-head .mec-av-spot-box{padding-top:25px;font-size:13px;color:#ddd}.mec-av-spot .mec-av-spot-head .mec-av-spot-box span{color:#40d9f1;font-size:40px;font-weight:700;font-style:italic}.mec-av-spot .mec-av-spot-head .mec-event-countdown{text-align:center;padding-top:10px;display:table;table-layout:fixed;margin:0 auto;float:right}.mec-av-spot .mec-av-spot-head .mec-event-countdown li{display:table-cell;padding:10px 20px;position:relative;height:60px}.mec-av-spot .mec-av-spot-head .mec-event-countdown p{margin-bottom:0}.mec-av-spot .mec-events-content p{margin-bottom:20px}.mec-av-spot-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-av-spot-wrap .mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:14px 34px;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-av-spot-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-av-spot .mec-av-spot-col6{width:50%;float:left;height:100%}.mec-av-spot .mec-av-spot-col6 i{font-size:42px;float:left;margin-right:7px;height:58px}.mec-av-spot .mec-av-spot-col6 h6{text-transform:uppercase;font-size:17px;padding:4px 0;display:inline;color:#444}.mec-av-spot .mec-av-spot-col6 address{font-size:12px;margin-bottom:0}.mec-av-spot-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-av-spot-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05)}@media only screen and (max-width:768px){.mec-av-spot .mec-av-spot-col6{width:100%;margin:10px 0}}@media only screen and (max-width:479px){.mec-av-spot-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.mec-events-masonry-wrap{display:block;width:auto}.mec-masonry-item-wrap{width:calc(33.33% - 30px);padding:0;margin:0 15px 30px;min-height:10px;position:relative}.isotope-item{z-index:2}.isotope-hidden.isotope-item{pointer-events:none;z-index:1}.isotope,.isotope .isotope-item{-webkit-transition-duration:.8s;-moz-transition-duration:.8s;transition-duration:.8s}.isotope{-webkit-transition-property:height,width;-moz-transition-property:height,width;transition-property:height,width}.isotope .isotope-item{-webkit-transition-property:-webkit-transform,opacity;-moz-transition-property:-moz-transform,opacity;transition-property:transform,opacity}.mec-events-masonry-cats{padding:10px;margin-bottom:25px;text-align:center;clear:both;list-style:none outside none}.mec-events-masonry-cats a{border-radius:2px;padding:6px 12px;font-size:13px;line-height:1.2;color:#333;font-weight:400;margin-top:0!important;text-align:center;display:inline-block;width:auto;border:2px solid transparent;transition:all .2s ease}.mec-events-masonry-cats a:hover{border-color:#40d9f1;color:#333}.mec-events-masonry-cats a.mec-masonry-cat-selected{border:2px solid #40d9f1;color:#40d9f1}.mec-masonry{background:#f7f7f7;height:auto;border:1px solid #eee;box-shadow:0 6px 12px -4px rgba(0,0,0,.05)}.mec-masonry .mec-event-article{position:relative;height:auto}.mec-masonry .mec-masonry-img{position:relative;width:100%;height:auto;float:none;margin:0;overflow:hidden}.mec-masonry .mec-masonry-img img{width:100%}.mec-masonry .mec-masonry-content,.mec-masonry .mec-masonry-head{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-masonry .mec-events-content p{margin-bottom:20px}.mec-masonry-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-masonry-item-wrap .mec-event-grid-modern .event-grid-modern-head{min-height:79px;margin-bottom:10px;padding:14px 5%;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-masonry-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-masonry-content.mec-event-grid-modern .mec-event-content{padding-top:20px}.mec-masonry-content.mec-event-grid-modern .mec-event-footer{height:auto}.mec-masonry .mec-masonry-col6 .mec-event-date{font-size:34px;letter-spacing:-2px}.mec-masonry .mec-masonry-col6{width:50%;float:left;height:100%}.mec-masonry .mec-masonry-col6 i{font-size:24px;float:left;margin-right:7px;height:50px}.mec-masonry .mec-masonry-col6 .mec-event-month,.mec-masonry .mec-masonry-col6 h6{text-transform:capitalize;font-size:15px;padding:4px 0;display:inline;color:#444}.mec-masonry .mec-masonry-col6 .mec-event-detail,.mec-masonry .mec-masonry-col6 address{font-size:11px;margin-bottom:0}.mec-masonry-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-masonry-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05)}@media only screen and (max-width:960px){.mec-masonry-item-wrap{width:calc(50% - 30px)}}@media only screen and (max-width:768px){.mec-masonry .mec-masonry-col6{width:100%;margin:10px 0}.mec-masonry-item-wrap{width:calc(100% - 30px)}}@media only screen and (max-width:479px){.mec-masonry-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.btn-wrapper{text-align:center}.countdown-wrapper .btn-wrapper{padding-top:10px;padding-right:0}.countdown-wrapper h5.countdown-message{letter-spacing:5px;font-weight:500;font-size:18px}.blox.dar .countdown-wrapper p,.countdown-wrapper p{color:#888}.countdown-wrapper a.button.black{float:right;margin-right:0}.mec-wrap .threedaydigits .days .flip-clock-label{right:-100px}@media only screen and (min-width:320px) and (max-width:767px){.mec-wrap .flip-clock-wrapper ul{width:29px!important}.mec-wrap .flip-clock-wrapper ul li a div div.inn{font-size:25px!important}.mec-wrap .flip-clock-divider .flip-clock-label{left:0;font-weight:300}.mec-wrap span.flip-clock-divider{width:12px}}@media only screen and (min-width:320px) and (max-width:480px){.mec-wrap .flip-clock-wrapper ul{width:29px!important}.mec-wrap .flip-clock-wrapper ul li a div div.inn{font-size:25px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}.mec-wrap span.flip-clock-divider:first-child{width:0}.mec-wrap span.flip-clock-divider{width:20px}.mec-single-event .mec-events-meta-group-countdown{margin-left:10%}}@media screen and (min-width:960px) and (max-width:1200px){.mec-wrap .threedaydigits ul{height:50px;width:47px}}@media screen and (min-width:480px) and (max-width:768px){.mec-wrap .threedaydigits ul{height:48px;width:26px!important}.mec-wrap .threedaydigits .flip-clock-label{font-size:8px;left:-8px}}@media screen and (min-width:320px) and (max-width:480px){.mec-wrap .threedaydigits ul{height:48px;width:22px!important}}.mec-wrap .flip-clock-wrapper *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;-o-box-sizing:border-box;box-sizing:border-box;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-o-backface-visibility:hidden;backface-visibility:hidden}.mec-wrap .flip-clock-wrapper a{cursor:pointer;text-decoration:none;color:#ccc}.mec-wrap .flip-clock-wrapper a:hover{color:#fff}.mec-wrap .flip-clock-wrapper ul{list-style:none}.flip-clock-wrapper.clearfix:after,.mec-wrap .flip-clock-wrapper.clearfix:before{content:" ";display:table}.mec-wrap .flip-clock-wrapper.clearfix:after{clear:both}.mec-wrap .flip-clock-wrapper{font:normal 11px "helvetica neue",helvetica,sans-serif;-webkit-user-select:none}.mec-wrap .flip-clock-meridium{background:0 0!important;box-shadow:0 0 0!important;font-size:36px!important}.mec-wrap .flip-clock-meridium a{color:#313333}.mec-wrap .flip-clock-wrapper{text-align:center;position:relative;display:inline-block;padding-bottom:10px}.flip-clock-wrapper:after,.mec-wrap .flip-clock-wrapper:before{content:" ";display:table}.mec-wrap .flip-clock-wrapper:after{clear:both}.mec-wrap .flip-clock-wrapper ul{position:relative;float:left;margin:2px;width:50px;height:50px;font-size:80px;font-weight:700;line-height:87px;border-radius:3px;background:rgba(0,0,0,.21)}.mec-wrap .flip-clock-wrapper ul li{z-index:1;position:absolute;left:0;top:0;width:100%;height:100%;line-height:54px;text-decoration:none!important}.mec-wrap .flip-clock-wrapper ul li:first-child{z-index:2}.mec-wrap .flip-clock-wrapper ul li a{display:block;height:100%;-webkit-perspective:200px;-moz-perspective:200px;perspective:200px;margin:0!important;overflow:visible!important;cursor:default!important}.mec-wrap .flip-clock-wrapper ul li a div{z-index:1;position:absolute;left:0;width:100%;height:50%;font-size:80px;overflow:hidden;outline:1px solid transparent}.mec-wrap .flip-clock-wrapper ul li a div .shadow{position:absolute;width:100%;height:100%;z-index:2}.mec-wrap .flip-clock-wrapper ul li a div.up{-webkit-transform-origin:50% 100%;-moz-transform-origin:50% 100%;-ms-transform-origin:50% 100%;-o-transform-origin:50% 100%;transform-origin:50% 100%;top:0}.mec-wrap .flip-clock-wrapper ul li a div.up:after{content:"";position:absolute;top:24px;left:0;z-index:5;width:100%;height:3px;background-color:rgba(0,0,0,.12)}.mec-wrap .flip-clock-wrapper ul li a div.down{-webkit-transform-origin:50% 0;-moz-transform-origin:50% 0;-ms-transform-origin:50% 0;-o-transform-origin:50% 0;transform-origin:50% 0;bottom:0;border-bottom-left-radius:3px;border-bottom-right-radius:3px}.mec-wrap .flip-clock-wrapper ul li a div div.inn{position:absolute;left:0;z-index:1;width:100%;height:200%;color:#fff;text-shadow:0 0 2px rgba(0,0,0,.25);text-align:center;background-color:#40d9f1;border-radius:3px;font-size:48px}.mec-wrap .flip-clock-wrapper ul li a div.up div.inn{top:0}.mec-wrap .flip-clock-wrapper ul li a div.down div.inn{bottom:0}.mec-wrap .flip-clock-wrapper ul.play li.flip-clock-before{z-index:3}.mec-wrap .flip-clock-wrapper .flip{box-shadow:0 2px 5px rgba(0,0,0,.17)}.mec-wrap .flip-clock-wrapper ul.play li.flip-clock-active{-webkit-animation:asd .5s .5s linear both;-moz-animation:asd .5s .5s linear both;animation:asd .5s .5s linear both;z-index:5}.mec-wrap .flip-clock-divider{float:left;display:inline-block;position:relative;width:18px;height:62px}.mec-wrap .flip-clock-divider:first-child{width:0}.mec-wrap .flip-clock-dot{display:none;background:#323434;width:10px;height:10px;position:absolute;border-radius:50%;box-shadow:0 0 5px rgba(0,0,0,.5);left:5px}.mec-wrap .flip-clock-divider .flip-clock-label{position:absolute;bottom:-1.5em;right:-71px;color:#101010;font-weight:700;text-shadow:none;text-transform:uppercase}.mec-wrap .blox.dark .flip-clock-divider .flip-clock-label{color:#8a8a8a}.mec-wrap .flip-clock-divider.seconds .flip-clock-label{right:-82px}.mec-wrap .flip-clock-dot.top{top:30px}.mec-wrap .flip-clock-dot.bottom{bottom:30px}@-webkit-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@-moz-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@-o-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}.flip-clock-wrapper ul.play li.flip-clock-active .down{z-index:2;-webkit-animation:turn .5s .5s linear both;-moz-animation:turn .5s .5s linear both;animation:turn .5s .5s linear both}@-webkit-keyframes turn{0%{-webkit-transform:rotatex(90deg)}100%{-webkit-transform:rotatex(0)}}@-moz-keyframes turn{0%{-moz-transform:rotatex(90deg)}100%{-moz-transform:rotatex(0)}}@-o-keyframes turn{0%{-o-transform:rotatex(90deg)}100%{-o-transform:rotatex(0)}}@keyframes turn{0%{transform:rotatex(90deg)}100%{transform:rotatex(0)}}.flip-clock-wrapper ul.play li.flip-clock-before .up{z-index:2;-webkit-animation:turn2 .5s linear both;-moz-animation:turn2 .5s linear both;animation:turn2 .5s linear both}@-webkit-keyframes turn2{0%{-webkit-transform:rotatex(0)}100%{-webkit-transform:rotatex(-90deg)}}@-moz-keyframes turn2{0%{-moz-transform:rotatex(0)}100%{-moz-transform:rotatex(-90deg)}}@-o-keyframes turn2{0%{-o-transform:rotatex(0)}100%{-o-transform:rotatex(-90deg)}}@keyframes turn2{0%{transform:rotatex(0)}100%{transform:rotatex(-90deg)}}.flip-clock-wrapper ul li.flip-clock-active{z-index:3}.flip-clock-wrapper ul.play li.flip-clock-before .up .shadow{background:-moz-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,.1)),color-stop(100%,rgba(64,64,64,.68)));background:linear,top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;background:-o-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-ms-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:linear,to bottom,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;-webkit-animation:show .5s linear both;-moz-animation:show .5s linear both;animation:show .5s linear both}.flip-clock-wrapper ul.play li.flip-clock-active .up .shadow{background:-moz-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,.1)),color-stop(100%,rgba(64,64,64,.68)));background:linear,top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;background:-o-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-ms-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:linear,to bottom,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;-webkit-animation:hide .5s .3s linear both;-moz-animation:hide .5s .3s linear both;animation:hide .5s .3s linear both}.flip-clock-wrapper ul.play li.flip-clock-before .down .shadow{background:-moz-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(64,64,64,.68)),color-stop(100%,rgba(0,0,0,.1)));background:linear,top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;background:-o-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-ms-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:linear,to bottom,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;-webkit-animation:show .5s linear both;-moz-animation:show .5s linear both;animation:show .5s linear both}.flip-clock-wrapper ul.play li.flip-clock-active .down .shadow{background:-moz-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(64,64,64,.68)),color-stop(100%,rgba(0,0,0,.1)));background:linear,top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;background:-o-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-ms-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:linear,to bottom,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;-webkit-animation:hide .5s .3s linear both;-moz-animation:hide .5s .3s linear both;animation:hide .5s .2s linear both}@-webkit-keyframes show{0%{opacity:0}100%{opacity:1}}@-moz-keyframes show{0%{opacity:0}100%{opacity:1}}@-o-keyframes show{0%{opacity:0}100%{opacity:1}}@keyframes show{0%{opacity:0}100%{opacity:1}}@-webkit-keyframes hide{0%{opacity:1}100%{opacity:0}}@-moz-keyframes hide{0%{opacity:1}100%{opacity:0}}@-o-keyframes hide{0%{opacity:1}100%{opacity:0}}@keyframes hide{0%{opacity:1}100%{opacity:0}}@font-face{font-family:simple-line-icons;src:url(../fonts/Simple-Line-Icons.eot?v=2.3.1);src:url(../fonts/Simple-Line-Icons.eot?v=2.3.1#iefix) format('embedded-opentype'),url(../fonts/Simple-Line-Icons.woff2?v=2.3.1) format('woff2'),url(../fonts/Simple-Line-Icons.woff?v=2.3.1) format('woff'),url(../fonts/Simple-Line-Icons.ttf?v=2.3.1) format('truetype'),url(../fonts/Simple-Line-Icons.svg?v=2.3.1#simple-line-icons) format('svg');font-weight:400;font-style:normal}[class*=mec-sl-]{font-family:simple-line-icons;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.mec-sl-facebook:before{content:"\e00b"}.mec-sl-twitter:before{content:"\e009"}.mec-sl-google-plus:before{content:"\e60d"}.mec-sl-angle-left:before{content:"\e605"}.mec-sl-angle-right:before{content:"\e606"}.mec-sl-calendar:before{content:"\e075"}.mec-sl-clock-o:before{content:"\e081"}.mec-sl-home:before{content:"\e069"}.mec-sl-phone:before{content:"\e600"}.mec-sl-envelope:before{content:"\e086"}.mec-sl-sitemap:before{content:"\e037"}.mec-sl-map-marker:before{content:"\e096"}.mec-sl-floder:before{content:"\e089"}.mec-sl-wallet:before{content:"\e02a"}.mec-color,.mec-color-before :before,.mec-color-hover:hover,.mec-wrap .mec-color,.mec-wrap .mec-color-before :before,.mec-wrap .mec-color-hover:hover{color:#40d9f1}.mec-bg-color,.mec-bg-color-hover:hover,.mec-wrap .mec-bg-color,.mec-wrap .mec-bg-color-hover:hover{background-color:#40d9f1}.mec-border-color,.mec-border-color-hover:hover,.mec-wrap .mec-border-color,.mec-wrap .mec-border-color-hover:hover{border-color:#40d9f1}.mec-toggle-month-divider.mec-skin-list-events-container{border:1px solid #e8e8e8;margin-bottom:30px;background:#f8f8f8;box-shadow:0 2px 18px -1px rgba(0,0,0,.1);border-radius:2px}.mec-toggle-month-divider .mec-month-divider{margin:0;text-align:left;background:#fff;position:relative;cursor:pointer;border-top:1px solid #e8e8e8}.mec-toggle-month-divider .mec-month-divider span{padding:20px;border-bottom:1px solid #e8e8e8}.mec-toggle-month-divider .mec-month-divider i{position:absolute;right:20px;top:24px;font-size:20px;cursor:pointer}.mec-toggle-month-divider .mec-month-divider span:before{display:none}.mec-toggle-month-divider .mec-month-divider+article{margin-top:20px}.mec-toggle-month-divider .mec-wrap .mec-month-divider:first-of-type{border-top:none}.mec-toggle-month-divider .mec-event-list-accordion .mec-month-divider:not(:first-of-type)~article{display:none}.mec-skin-list-events-container:not(.mec-toggle-month-divider) .mec-month-divider i{display:none}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-month{display:inline-block;padding-top:0}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-date{font-size:14px;line-height:14px;float:none;display:inline-block;margin-right:0;font-weight:700}.mec-events-toggle .mec-toogle-inner-month-divider.mec-toggle-item-inner{padding:20px 60px 30px 15px}.mec-toogle-inner-month-divider .mec-toggle-month-inner-image{float:left;clear:right;width:100px;margin-right:20px;margin-left:10px}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-detail{margin-top:-6px}.mec-toogle-inner-month-divider .mec-toggle-item-col{float:none;width:100%;margin-top:10px;display:block;border:none}.mec-events-toggle .mec-toogle-inner-month-divider .mec-toggle-title{font-size:19px;display:block;padding-top:10px}@media only screen and (max-width:768px){.mec-events-toggle .mec-toogle-inner-month-divider .mec-toggle-title{font-size:14px;padding-top:0}.mec-toogle-inner-month-divider .mec-toggle-item-col{margin-top:0}.mec-toogle-inner-month-divider .mec-toggle-month-inner-image{width:70px}}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled:before,.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-featured:before{z-index:1;position:absolute;top:25px;right:-37px;font-size:11px;letter-spacing:1px;text-transform:uppercase;background:#04de78;padding:2px 40px;color:#fff;-ms-transform:rotate(45deg);-webkit-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition:.5s cubic-bezier(.25,.5,.06,.85);transition:.5s cubic-bezier(.25,.5,.06,.85);content:attr(data-style)}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled,.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-featured{overflow:hidden;position:relative}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled:before{background:#de0404}.mec-daily-view-date-events article:before,ul.mec-weekly-view-dates-events article:before{padding:7px 40px!important;top:27px!important}.mec-event-grid-classic article .mec-fc-style,.mec-event-grid-minimal article .mec-fc-style,.mec-event-grid-simple article .mec-fc-style,.mec-timetable-wrap article .mec-fc-style,.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article.mec-event-cover-modern .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{font-size:9px;letter-spacing:.5px;text-transform:uppercase;background:#04de78;padding:2px 7px;color:#fff;position:relative;margin-left:5px;border-radius:2px}.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-modern.mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-minimal article .mec-fc-style:before,.mec-event-grid-simple article .mec-fc-style:before,.mec-timetable-wrap article .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article .mec-fc-style:before,.mec-wrap .mec-event-list-modern article .mec-fc-style:before,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style:before{width:0;height:0;border-top:4px solid transparent!important;border-right:5px solid;border-bottom:4px solid transparent;margin:0;top:50%;left:-4px;transform:translateY(-4.5px);position:absolute;content:'';color:#04de78}.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-event-grid-classic article.mec-label-canceled:before,.mec-event-grid-classic article.mec-label-featured:before,.mec-event-grid-minimal article.mec-label-canceled:before,.mec-event-grid-minimal article.mec-label-featured:before,.mec-event-grid-simple article.mec-label-canceled:before,.mec-event-grid-simple article.mec-label-featured:before,.mec-timetable-wrap article.mec-label-canceled:before,.mec-timetable-wrap article.mec-label-featured:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled:before,.mec-wrap .mec-event-list-accordion article.mec-label-featured:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled:before,.mec-wrap .mec-event-list-modern article.mec-label-featured:before{display:none}.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{top:-3px;font-size:11px;margin-left:10px}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style:before,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-canceled:before,.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-featured:before{-ms-transform:none;-webkit-transform:none;transform:none;-webkit-transition:none;transition:none;top:271px;right:0}.mec-timetable-wrap article .mec-fc-style{top:-2px;font-size:10px}.mec-wrap article.mec-event-cover-modern .mec-fc-style{padding:5px 9px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:24px;display:inline-block;border-radius:2px}.mec-skin-grid-events-container .mec-wrap .mec-event-grid-clean .mec-event-article:before{-ms-transform:none;-webkit-transform:none;transform:none!important;-webkit-transition:none;transition:none;top:22px!important;right:22px!important;padding:0 10px!important}.mec-event-grid-minimal article .mec-fc-style,.mec-event-grid-simple article .mec-fc-style{top:-4px;font-size:10px;margin-left:10px}.mec-event-grid-classic article .mec-fc-style{padding:5px 20px;font-size:12px;margin-top:8px;display:inline-block}.mec-hourly-schedule-speaker-info{background:#fff;padding:30px;border:1px solid #e6e6e6;max-width:740px;width:740px;margin-left:-110px}.mec-hourly-schedule-speaker-thumbnail{float:left;max-width:30%;width:30%}.mec-hourly-schedule-speaker-name{font-weight:700;font-size:26px;line-height:1.2;color:#333;text-transform:uppercase}.mec-hourly-schedule-speaker-details{float:left;width:69%;padding-left:25px}.mec-hourly-schedule-speaker-job-title{font-size:16px;line-height:1.3;margin-bottom:4px}.mec-hourly-schedule-speaker-description{font-size:14px;font-weight:400;color:#6d7683;line-height:1.7;text-align:left}.mec-hourly-schedule-speaker-contact-information a i{color:#6b6b6b;background:#ebebeb;line-height:29px;margin:9px 7px 9px 0;width:30px;height:30px;display:inline-block;text-align:center;transition:all .2s ease;font-size:15px;cursor:pointer}.mec-hourly-schedule-speaker-contact-information a i:hover{background:#222;color:#fff}@media only screen and (max-width:479px){.mec-hourly-schedule-speaker-thumbnail{float:none;max-width:none;margin-right:0;margin-bottom:15px;width:100%}.mec-hourly-schedule-speaker-thumbnail img{width:100%}.mec-hourly-schedule-speaker-details{padding-left:0}.mec-hourly-schedule-speaker-info{width:90%;margin:0 auto}}.mec-profile .mec-profile-bookings{border:2px solid #e6e6e6;text-align:center}.mec-profile .mec-profile-bookings tbody tr:first-child{background:#f7f7f7;font-weight:700;text-transform:capitalize}.mec-profile .mec-profile-bookings tbody tr{border-bottom:1px solid #e6e6e6;font-size:14px}.mec-profile .mec-profile-bookings tbody tr td{border:1px solid #e6e6e6;padding:10px}.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:4%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:37%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:24%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:15%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:10%}.mec-profile .mec-event-status{padding:5px 10px;color:#fff;border-radius:2px;font-size:12px;line-height:12px;letter-spacing:.4px}.mec-profile .mec-event-status.mec-book-confirmed{background:#50d477}.mec-profile .mec-event-status.mec-book-pending{background:#fcbe69}.mec-profile .mec-event-status.mec-book-rejected{background:#fe686a}.mec-profile .mec-event-date{font-size:12px;color:#888}.mec-profile .mec-booking-number-of-attendees{font-size:13px;color:#888}.mec-profile .mec-booking-number-of-attendees i,.mec-profile .mec-profile-bookings-view-invoice i{font-size:15px;color:#008aff;vertical-align:text-bottom;margin-right:4px}.mec-booking-attendees{background:#fff;padding:10px}.mec-booking-attendees{width:750px;text-align:center}.mec-booking-attendees-wrapper{border:2px solid #e6e6e6;font-size:14px}.mec-booking-attendees-head{display:table;width:100%;background:#f7f7f7;border-bottom:1px solid #e6e6e6;font-weight:700}.mec-booking-attendees-head span,.mec-booking-attendees-head-content>span{vertical-align:middle;display:table-cell;padding:7px;border-right:1px solid #e6e6e6}.mec-booking-attendees-head-content{display:table;width:100%;border-bottom:1px solid #e6e6e6}.mec-booking-attendees-wrapper .mec-booking-attendees-head-content:last-child{border:none}.mec-booking-attendees-head span:nth-child(1),.mec-booking-attendees-head-content>span:nth-child(1){width:4%}.mec-booking-attendees-head span:nth-child(2),.mec-booking-attendees-head-content>span:nth-child(2){width:20%}.mec-booking-attendees-head span:nth-child(3),.mec-booking-attendees-head-content>span:nth-child(3){width:24%}.mec-booking-attendees-head span:nth-child(4),.mec-booking-attendees-head-content>span:nth-child(4){width:26%}.mec-booking-attendees-head span:nth-child(5),.mec-booking-attendees-head-content>span:nth-child(5){width:26%}@media only screen and (max-width:759px){.mec-booking-attendees{width:470px}.mec-booking-attendees-head span,.mec-booking-attendees-head-content>span{word-break:break-all}}.mec-woo-booking-checkout{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;border-radius:0;margin-bottom:6px;min-width:170px;margin-top:5px;text-align:center}.mec-woo-booking-checkout:hover{background:#222;color:#fff}.mec-woo-booking-checkout:focus,.mec-woo-booking-checkout:visited{color:#fff}.single-mec-events .lity-container{max-width:480px;width:480px}.lity-content .mec-events-meta-group-booking{width:100%;padding:20px 50px;background:#fff}.lity-content .mec-events-meta-group-booking .mec-booking form>h4{text-transform:uppercase;font-size:15px;font-weight:700;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative;text-align:center;line-height:1.2;margin-bottom:10px}.lity-content .mec-events-meta-group-booking .mec-booking form>h4:before{padding:1px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-35px;left:50%}.lity-content .mec-events-meta-group-booking .mec-event-ticket-available,.lity-content .mec-events-meta-group-booking .mec-event-ticket-name,.lity-content .mec-events-meta-group-booking .mec-event-ticket-price,.lity-content .mec-events-meta-group-booking .mec-ticket-variation-name,.lity-content .mec-events-meta-group-booking .mec-ticket-variation-price,.lity-content .mec-events-meta-group-booking label{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:3px 0;clear:none;padding:5px 1em 3px 0;display:inline-block}.lity-content .mec-events-meta-group-booking .mec-event-ticket-available{margin-bottom:12px}.lity-content .mec-events-meta-group-booking select{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:100%;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both;font-family:Montserrat,Helvetica,Arial,sans-serif}.lity-content .mec-events-meta-group-booking input[type=email]{color:#888;border:1px solid #e1e1e1;font-size:14px;display:block;width:100%;outline:0}.lity-content .mec-events-meta-group-booking input{margin-bottom:10px!important}.lity-content .mec-book-ticket-variation h5{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:0;clear:none;padding:5px 1em 3px 0;display:inline-block;text-transform:capitalize;font-family:Montserrat,Helvetica,Arial,sans-serif}.lity-content ul.mec-book-tickets-container{padding:0}.lity-content .mec-events-meta-group-booking input[type=email],.lity-content .mec-events-meta-group-booking input[type=number],.lity-content .mec-events-meta-group-booking input[type=text]{outline:0;font-family:Montserrat,Helvetica,Arial,sans-serif;display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:100%;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both;margin-bottom:2px!important}.lity-content button[type=submit]{position:relative;border:none;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;min-width:170px;margin-top:5px;border-radius:0;margin-bottom:6px}.lity-content button[type=submit]:hover{background:#222}.lity-content .mec-book-tickets-container li{list-style:none}.lity-content .mec-events-meta-group-booking #mec_book_payment_form h4,.lity-content .mec-events-meta-group-booking li h4{font-size:19px;font-weight:700}.lity-content .mec-events-meta-group-booking .mec-book-price-total{display:inline-block;margin-bottom:10px;font-size:26px;color:#39c36e;font-weight:700;padding:10px 0}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li{width:50%}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li:nth-child(even){border:none}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li span{display:block}.lity-content .mec-events-meta-group-booking button[type=submit]:after{display:none;font-family:simple-line-icons;content:"\e098";margin-left:4px;-webkit-animation:rotating 1.2s linear infinite;-moz-animation:rotating 1.2s linear infinite;-ms-animation:rotating 1.2s linear infinite;-o-animation:rotating 1.2s linear infinite;animation:rotating 1.2s linear infinite}.lity-content .mec-events-meta-group-booking button[type=submit].loading:after{display:inline-block}@media only screen and (max-width:480px){.lity-content .mec-events-meta-group-booking{padding:20px;width:340px;margin:0 auto}}.mec-events-meta-group-booking{position:relative}.mec-cover-loader:after{content:'';position:absolute;top:0;right:0;left:0;bottom:0;background:rgba(255,255,255,.5);z-index:99999}.mec-loader{background:rgba(0,0,0,0);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);z-index:9}.mec-loader,.mec-loader:after{border-radius:50%;width:5em;height:5em;z-index:999999999999}.mec-loader{font-size:10px;text-indent:-9999em;border-top:.5em solid rgba(0,0,0,.2);border-right:.5em solid rgba(0,0,0,.2);border-bottom:.5em solid rgba(0,0,0,.2);border-left:.5em solid #fff;-webkit-transform:translateZ(0);-ms-transform:translateZ(0);transform:translateZ(0);-webkit-animation:mecloader 1.1s infinite linear;animation:mecloader 1.1s infinite linear}@-webkit-keyframes mecloader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes mecloader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.mec-wrap *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mec-wrap :after,.mec-wrap :before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mec-wrap .clearfix:after,.mec-wrap .clearfix:before{content:'\0020';display:block;overflow:hidden;visibility:hidden;width:0;height:0}.mec-wrap .clearfix:after{clear:both}.mec-wrap .clearfix{zoom:1}.mec-wrap .clear,.mec-wrap .clr{clear:both;display:block;overflow:hidden;visibility:hidden}.mec-wrap .clr{visibility:visible;overflow:visible}.mec-container [class*=col-] img{max-width:100%}.mec-container{margin-right:auto;margin-left:auto;padding-left:10px;padding-right:10px}.mec-container:after,.mec-container:before{content:" ";display:table}.mec-container:after{clear:both}@media only screen and (max-width:479px){.mec-container{width:300px}}@media only screen and (min-width:480px) and (max-width:767px){.mec-container{width:420px}}@media only screen and (min-width:768px) and (max-width:960px){.mec-container{width:768px}}@media only screen and (min-width:961px){.mec-container{width:960px}}@media only screen and (min-width:1200px){.mec-container{width:1196px;padding-left:15px;padding-right:15px}}@media only screen and (min-width:1921px){.mec-container{max-width:1690px}}.mec-wrap .row{margin-left:-10px;margin-right:-10px}.mec-wrap .row:after,.mec-wrap .row:before{content:" ";display:table}.mec-wrap .row:after{clear:both}.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9,.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9,.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9,.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{position:relative;min-height:1px;padding-left:10px;padding-right:10px}@media only screen and (min-width:1200px){.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9,.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9,.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9,.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{padding-left:15px;padding-right:15px}.mec-wrap .row{margin-left:-15px;margin-right:-15px}}.mec-container [class*=col-].alpha{padding-left:0}.mec-container [class*=col-].omega{padding-right:0}.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{float:left}.mec-wrap .col-xs-12{width:100%}.mec-wrap .col-xs-11{width:91.66666666666666%}.mec-wrap .col-xs-10{width:83.33333333333334%}.mec-wrap .col-xs-9{width:75%}.mec-wrap .col-xs-8{width:66.66666666666666%}.mec-wrap .col-xs-7{width:58.333333333333336%}.mec-wrap .col-xs-6{width:50%}.mec-wrap .col-xs-5{width:41.66666666666667%}.mec-wrap .col-xs-4{width:33.33333333333333%}.mec-wrap .col-xs-3{width:25%}.mec-wrap .col-xs-2{width:16.666666666666664%}.mec-wrap .col-xs-1{width:8.333333333333332%}@media (min-width:768px){.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9{float:left}.mec-wrap .col-sm-12{width:100%}.mec-wrap .col-sm-11{width:91.66666666666666%}.mec-wrap .col-sm-10{width:83.33333333333334%}.mec-wrap .col-sm-9{width:75%}.mec-wrap .col-sm-8{width:66.66666666666666%}.mec-wrap .col-sm-7{width:58.333333333333336%}.mec-wrap .col-sm-6{width:50%}.mec-wrap .col-sm-5{width:41.66666666666667%}.mec-wrap .col-sm-4{width:33.33333333333333%}.mec-wrap .col-sm-3{width:25%}.mec-wrap .col-sm-2{width:16.666666666666664%}.mec-wrap .col-sm-1{width:8.333333333333332%}}@media (min-width:961px){.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9{float:left}.mec-wrap .col-md-12{width:100%}.mec-wrap .col-md-11{width:91.66666666666666%}.mec-wrap .col-md-10{width:83.33333333333334%}.mec-wrap .col-md-9{width:75%}.mec-wrap .col-md-8{width:66.66666666666666%}.mec-wrap .col-md-7{width:58.333333333333336%}.mec-wrap .col-md-6{width:50%}.mec-wrap .col-md-5{width:41.66666666666667%}.mec-wrap .col-md-4{width:33.33333333333333%}.mec-wrap .col-md-3{width:25%}.mec-wrap .col-md-2{width:16.666666666666664%}.mec-wrap .col-md-1{width:8.333333333333332%}}@media (min-width:1200px){.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9{float:left}.mec-wrap .col-lg-12{width:100%}.mec-wrap .col-lg-11{width:91.66666666666666%}.mec-wrap .col-lg-10{width:83.33333333333334%}.mec-wrap .col-lg-9{width:75%}.mec-wrap .col-lg-8{width:66.66666666666666%}.mec-wrap .col-lg-7{width:58.333333333333336%}.mec-wrap .col-lg-6{width:50%}.mec-wrap .col-lg-5{width:41.66666666666667%}.mec-wrap .col-lg-4{width:33.33333333333333%}.mec-wrap .col-lg-3{width:25%}.mec-wrap .col-lg-2{width:16.666666666666664%}.mec-wrap .col-lg-1{width:8.333333333333332%}}#mec_woo_add_to_cart_btn{min-width:170px;margin-top:5px;text-align:center}.mec-breadcrumbs{border-radius:2px;padding:9px 15px 6px;font-size:11px;color:#8d8d8d;letter-spacing:0;text-transform:none;font-weight:500;margin:auto 15px 33px 15px;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.025)}.mec-breadcrumbs-modern{margin:auto 0 33px 0}.mec-breadcrumbs a{color:#000;padding-left:4px}.mec-breadcrumbs a:hover{text-decoration:underline}.mec-breadcrumbs i{font-size:8px;margin:0 0 0 4px}.mec-breadcrumbs .container{padding-left:20px}.mec-content-notification a{margin-left:5px}.mec-content-notification{background:#f7f7f7;padding:10px 10px 10px;border:1px solid #e8e8e8}.mec-content-notification p{margin-bottom:0}#mec-advanced-wraper div:first-child>ul{display:block;margin:5px 0;padding:5px 0;width:430px;border:1px solid #e1e2e3;border-radius:2px;box-shadow:0 1px 3px rgba(0,0,0,.05)}#mec-advanced-wraper div:first-child>ul span{display:none}#mec-advanced-wraper div:first-child>ul *{display:inline-block;background:#fff;font-size:12px;color:#717273;text-align:center}#mec-advanced-wraper div:first-child>ul>li{width:60px;font-weight:700;margin:0 10px 0 0;padding:4px 0;border-right:1px solid #e1e2e3}#mec-advanced-wraper div:first-child>ul>ul>li{margin:0;padding:2px 10px;cursor:pointer;border-radius:2px;transition:all .18s ease}#mec-advanced-wraper div:first-child>ul>ul>li:hover,.mec-active{background:#008aff!important;color:#fff!important}.mec-search-bar-wrap .mec-search-form .mec-text-input-search{width:83%}.mec-search-bar-wrap input#mec-search-bar-input{width:calc(100% - 84%);margin-left:11px;background:#40d9f1;Color:#fff;font-weight:400}.mec-text-input-search+input#mec-search-bar-input{margin-left:-3px}.mec-search-bar-wrap input#mec-search-bar-input:hover{background:#000}
assets/js/frontend.js CHANGED
@@ -89,36 +89,36 @@ var mecSingleEventDisplayer = {
89
  search();
90
  });
91
 
92
- $("#mec_sf_year_"+settings.id).on('change', function(e)
93
- {
94
- // Change Month to January if it's set to ignore date and year changed
95
- if($("#mec_sf_month_"+settings.id).val() === 'ignore_date') $("#mec_sf_month_"+settings.id).val('01');
96
-
97
  search();
98
  });
99
-
100
- function search()
101
- {
102
- var s = $("#mec_sf_s_"+settings.id).length ? $("#mec_sf_s_"+settings.id).val() : '';
103
- var category = $("#mec_sf_category_"+settings.id).length ? $("#mec_sf_category_"+settings.id).val() : '';
104
- var location = $("#mec_sf_location_"+settings.id).length ? $("#mec_sf_location_"+settings.id).val() : '';
105
- var organizer = $("#mec_sf_organizer_"+settings.id).length ? $("#mec_sf_organizer_"+settings.id).val() : '';
106
- var speaker = $("#mec_sf_speaker_"+settings.id).length ? $("#mec_sf_speaker_"+settings.id).val() : '';
107
- var tag = $("#mec_sf_tag_"+settings.id).length ? $("#mec_sf_tag_"+settings.id).val() : '';
108
- var label = $("#mec_sf_label_"+settings.id).length ? $("#mec_sf_label_"+settings.id).val() : '';
109
- var month = $("#mec_sf_month_"+settings.id).length ? $("#mec_sf_month_"+settings.id).val() : '';
110
- var year = $("#mec_sf_year_"+settings.id).length ? $("#mec_sf_year_"+settings.id).val() : '';
 
 
 
 
 
111
  var skip_date = false;
112
-
113
- if(month === 'ignore_date') skip_date = true;
114
 
115
  // Skip filter by date
116
- if(skip_date === true)
117
- {
118
  month = '';
119
  year = '';
120
  }
121
- var atts = settings.atts+'&sf[s]='+s+'&sf[month]='+month+'&sf[year]='+year+'&sf[category]='+category+'&sf[location]='+location+'&sf[organizer]='+organizer+'&sf[speaker]='+speaker+'&sf[tag]='+tag+'&sf[label]='+label;
122
  settings.callback(atts);
123
  }
124
  };
@@ -2083,87 +2083,104 @@ var mecSingleEventDisplayer = {
2083
  setListeners();
2084
 
2085
  // Init Masonry
2086
- if (mecdata.elementor_edit_mode == 'no') {
2087
- jQuery(window).load(function () {
2088
- initMasonry();
2089
- if (typeof custom_dev != undefined && custom_dev == 'yes') {
2090
- $(".mec-wrap").css("height", "1550");
2091
- if (Math.max(document.documentElement.clientWidth, window.innerWidth || 0) < 768) {
2092
- $(".mec-wrap").css("height", "5500");
2093
- }
2094
- if (Math.max(document.documentElement.clientWidth, window.innerWidth || 0) < 480) {
2095
- $(".mec-wrap").css("height", "5000");
2096
- }
2097
- $(".mec-event-masonry.shuffle .mec-masonry-item-wrap:nth-child(n+20)").css("display", "none");
2098
- $(".mec-load-more-button").on("click", function () {
2099
- $(".mec-event-masonry.shuffle .mec-masonry-item-wrap:nth-child(n+20)").css("display", "block");
2100
- $(".mec-wrap").css("height", "auto");
2101
- initMasonry();
2102
- $(".mec-load-more-button").hide();
2103
- })
2104
- $(".mec-events-masonry-cats a:first-child").on("click", function () {
2105
- $(".mec-wrap").css("height", "auto");
2106
- $(".mec-event-masonry.shuffle .mec-masonry-item-wrap:nth-child(n+20)").css("display", "block");
2107
- $(".mec-load-more-button").hide();
2108
- initMasonry();
2109
- })
2110
- $(".mec-events-masonry-cats a:not(:first-child)").on("click", function () {
2111
- $(".mec-load-more-button").hide();
2112
- $(".mec-wrap").css("height", "auto");
2113
- $(".mec-wrap").css("min-height", "400");
2114
- $(".mec-event-masonry.shuffle .mec-masonry-item-wrap").css("display", "block");
2115
- var element = document.querySelector("#mec_skin_" + settings.id + " .mec-event-masonry");
2116
- var selector = $(this).attr('data-group');
2117
- var CustomShuffle = new Shuffle(element, {
2118
- itemSelector: '.mec-masonry-item-wrap',
2119
- });
2120
- CustomShuffle.sort({
2121
- by: element.getAttribute('data-created'),
2122
- });
2123
- CustomShuffle.filter(selector != '*' ? selector : Shuffle.ALL_ITEMS);
2124
- $(".mec-event-masonry.shuffle .mec-masonry-item-wrap").css("visibility", "visible");
2125
- })
2126
- }
2127
- });
2128
- } else {
2129
  initMasonry();
2130
- }
2131
-
2132
- function initMasonry()
2133
- {
2134
- var Shuffle = window.Shuffle;
2135
- var element = document.querySelector("#mec_skin_"+settings.id+" .mec-event-masonry");
2136
-
2137
- if (element === null) {
2138
- return;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2139
  }
2140
-
2141
- var shuffleInstance = new Shuffle(element, {
 
 
 
2142
  itemSelector: '.mec-masonry-item-wrap',
2143
- });
2144
-
2145
- shuffleInstance.sort({
2146
- by: element.getAttribute('data-created'),
 
 
 
 
 
2147
  });
2148
 
2149
- if (settings.masonry_like_grid == 1) {
2150
- shuffleInstance.sort({
2151
- by: element.getAttribute('sort-masonry'),
2152
- });
2153
- }
 
2154
 
2155
- $("#mec_skin_"+settings.id+" .mec-events-masonry-cats a").click(function() {
2156
- $("#mec_skin_"+settings.id+" .mec-events-masonry-cats a").removeClass('mec-masonry-cat-selected');
2157
- $(this).addClass('mec-masonry-cat-selected');
2158
- var selector = $(this).attr('data-group');
2159
- shuffleInstance.filter(selector != '*' ? selector : Shuffle.ALL_ITEMS);
2160
- if (settings.masonry_like_grid == 1) {
2161
- shuffleInstance.sort({
2162
- by: element.getAttribute('sort-masonry'),
 
 
 
 
 
 
 
2163
  });
2164
- }
2165
  return false;
2166
  });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2167
  }
2168
 
2169
  function setListeners()
@@ -2175,6 +2192,11 @@ var mecSingleEventDisplayer = {
2175
 
2176
  }
2177
 
 
 
 
 
 
2178
  function sed()
2179
  {
2180
  // Single Event Display
@@ -2189,6 +2211,63 @@ var mecSingleEventDisplayer = {
2189
  mecSingleEventDisplayer.getSinglePage(id, occurrence, settings.ajax_url, settings.sed_method, settings.image_popup);
2190
  });
2191
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2192
  };
2193
  }(jQuery));
2194
 
@@ -3284,4 +3363,61 @@ function mec_focus_week(id)
3284
  }
3285
 
3286
  });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3287
  })(jQuery);
89
  search();
90
  });
91
 
92
+ $("#mec_sf_event_type_" + settings.id).on('change', function (e) {
 
 
 
 
93
  search();
94
  });
95
+
96
+ $("#mec_sf_event_type_2_" + settings.id).on('change', function (e) {
97
+ search();
98
+ });
99
+
100
+ function search() {
101
+ var s = $("#mec_sf_s_" + settings.id).length ? $("#mec_sf_s_" + settings.id).val() : '';
102
+ var category = $("#mec_sf_category_" + settings.id).length ? $("#mec_sf_category_" + settings.id).val() : '';
103
+ var location = $("#mec_sf_location_" + settings.id).length ? $("#mec_sf_location_" + settings.id).val() : '';
104
+ var organizer = $("#mec_sf_organizer_" + settings.id).length ? $("#mec_sf_organizer_" + settings.id).val() : '';
105
+ var speaker = $("#mec_sf_speaker_" + settings.id).length ? $("#mec_sf_speaker_" + settings.id).val() : '';
106
+ var tag = $("#mec_sf_tag_" + settings.id).length ? $("#mec_sf_tag_" + settings.id).val() : '';
107
+ var label = $("#mec_sf_label_" + settings.id).length ? $("#mec_sf_label_" + settings.id).val() : '';
108
+ var month = $("#mec_sf_month_" + settings.id).length ? $("#mec_sf_month_" + settings.id).val() : '';
109
+ var year = $("#mec_sf_year_" + settings.id).length ? $("#mec_sf_year_" + settings.id).val() : '';
110
+ var event_type = $("#mec_sf_event_type_" + settings.id).length ? $("#mec_sf_event_type_" + settings.id).val() : '';
111
+ var event_type_2 = $("#mec_sf_event_type_2_" + settings.id).length ? $("#mec_sf_event_type_2_" + settings.id).val() : '';
112
  var skip_date = false;
113
+
114
+ if (month === 'ignore_date') skip_date = true;
115
 
116
  // Skip filter by date
117
+ if (skip_date === true) {
 
118
  month = '';
119
  year = '';
120
  }
121
+ var atts = settings.atts + '&sf[s]=' + s + '&sf[month]=' + month + '&sf[year]=' + year + '&sf[category]=' + category + '&sf[location]=' + location + '&sf[organizer]=' + organizer + '&sf[speaker]=' + speaker + '&sf[tag]=' + tag + '&sf[label]=' + label + '&sf[event_type]=' + event_type + '&sf[event_type_2]=' + event_type_2;
122
  settings.callback(atts);
123
  }
124
  };
2083
  setListeners();
2084
 
2085
  // Init Masonry
2086
+ jQuery(window).load(function () {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2087
  initMasonry();
2088
+ if ( typeof custom_dev !== undefined ) var custom_dev;
2089
+ if (custom_dev == 'yes') {
2090
+ $(".mec-wrap").css("height", "1550");
2091
+ if (Math.max(document.documentElement.clientWidth, window.innerWidth || 0) < 768) {
2092
+ $(".mec-wrap").css("height", "5500");
2093
+ }
2094
+ if (Math.max(document.documentElement.clientWidth, window.innerWidth || 0) < 480) {
2095
+ $(".mec-wrap").css("height", "5000");
2096
+ }
2097
+ $(".mec-event-masonry .mec-masonry-item-wrap:nth-child(n+20)").css("display", "none");
2098
+ $(".mec-load-more-button").on("click", function () {
2099
+ $(".mec-event-masonry .mec-masonry-item-wrap:nth-child(n+20)").css("display", "block");
2100
+ $(".mec-wrap").css("height", "auto");
2101
+ initMasonry();
2102
+ $(".mec-load-more-button").hide();
2103
+ })
2104
+ $(".mec-events-masonry-cats a:first-child").on("click", function () {
2105
+ $(".mec-wrap").css("height", "auto");
2106
+ $(".mec-event-masonry .mec-masonry-item-wrap:nth-child(n+20)").css("display", "block");
2107
+ $(".mec-load-more-button").hide();
2108
+ initMasonry();
2109
+ })
2110
+ $(".mec-events-masonry-cats a:not(:first-child)").on("click", function () {
2111
+ $(".mec-load-more-button").hide();
2112
+ $(".mec-wrap").css("height", "auto");
2113
+ $(".mec-wrap").css("min-height", "400");
2114
+ $(".mec-event-masonry .mec-masonry-item-wrap").css("display", "block");
2115
+ var element = document.querySelector("#mec_skin_" + settings.id + " .mec-event-masonry");
2116
+ var selector = $(this).attr('data-group');
2117
+ var CustomShuffle = new Shuffle(element, {
2118
+ itemSelector: '.mec-masonry-item-wrap',
2119
+ });
2120
+ CustomShuffle.sort({
2121
+ by: element.getAttribute('data-created'),
2122
+ });
2123
+ CustomShuffle.filter(selector != '*' ? selector : Shuffle.ALL_ITEMS);
2124
+ $(".mec-event-masonry .mec-masonry-item-wrap").css("visibility", "visible");
2125
+ })
2126
  }
2127
+ });
2128
+ function initMasonry() {
2129
+ var $container = $("#mec_skin_" + settings.id + " .mec-event-masonry");
2130
+ var $grid = $container.isotope({
2131
+ filter: '*',
2132
  itemSelector: '.mec-masonry-item-wrap',
2133
+ getSortData: {
2134
+ date: '[data-sort-masonry]',
2135
+ },
2136
+ sortBy: 'date',
2137
+ animationOptions: {
2138
+ duration: 750,
2139
+ easing: 'linear',
2140
+ queue: false
2141
+ },
2142
  });
2143
 
2144
+ if (settings.fit_to_row == 1) $grid.isotope({layoutMode: 'fitRows'});
2145
+
2146
+ // Fix Elementor tab
2147
+ $('.elementor-tabs').find('.elementor-tab-title').click(function () {
2148
+ $grid.isotope({ sortBy: 'date' });
2149
+ });
2150
 
2151
+ $("#mec_skin_" + settings.id + " .mec-events-masonry-cats a").click(function () {
2152
+ var selector = $(this).attr('data-filter');
2153
+ var $grid_cat = $container.isotope(
2154
+ {
2155
+ filter: selector,
2156
+ itemSelector: '.mec-masonry-item-wrap',
2157
+ getSortData: {
2158
+ date: '[data-sort-masonry]',
2159
+ },
2160
+ sortBy: 'date',
2161
+ animationOptions: {
2162
+ duration: 750,
2163
+ easing: 'linear',
2164
+ queue: false
2165
+ },
2166
  });
2167
+ if (settings.masonry_like_grid == 1) $grid_cat.isotope({ sortBy: 'date' });
2168
  return false;
2169
  });
2170
+
2171
+ var $optionSets = $("#mec_skin_" + settings.id + " .mec-events-masonry-cats"),
2172
+ $optionLinks = $optionSets.find('a');
2173
+
2174
+ $optionLinks.click(function () {
2175
+ var $this = $(this);
2176
+
2177
+ // don't proceed if already selected
2178
+ if ($this.hasClass('selected')) return false;
2179
+
2180
+ var $optionSet = $this.parents('.mec-events-masonry-cats');
2181
+ $optionSet.find('.mec-masonry-cat-selected').removeClass('mec-masonry-cat-selected');
2182
+ $this.addClass('mec-masonry-cat-selected');
2183
+ });
2184
  }
2185
 
2186
  function setListeners()
2192
 
2193
  }
2194
 
2195
+ $("#mec_skin_"+settings.id+" .mec-load-more-button").on("click", function()
2196
+ {
2197
+ loadMore();
2198
+ });
2199
+
2200
  function sed()
2201
  {
2202
  // Single Event Display
2211
  mecSingleEventDisplayer.getSinglePage(id, occurrence, settings.ajax_url, settings.sed_method, settings.image_popup);
2212
  });
2213
  }
2214
+
2215
+ function loadMore()
2216
+ {
2217
+ // Add loading Class
2218
+ $("#mec_skin_"+settings.id+" .mec-load-more-button").addClass("mec-load-more-loading");
2219
+
2220
+ $.ajax(
2221
+ {
2222
+ url: settings.ajax_url,
2223
+ data: "action=mec_masonry_load_more&mec_start_date="+settings.end_date+"&mec_offset="+settings.offset+"&"+settings.atts+"&apply_sf_date=0",
2224
+ dataType: "json",
2225
+ type: "post",
2226
+ success: function(response)
2227
+ {
2228
+ if(response.count == "0")
2229
+ {
2230
+ // Remove loading Class
2231
+ $("#mec_skin_"+settings.id+" .mec-load-more-button").removeClass("mec-load-more-loading");
2232
+
2233
+ // Hide load more button
2234
+ $("#mec_skin_"+settings.id+" .mec-load-more-button").addClass("mec-util-hidden");
2235
+ }
2236
+ else
2237
+ {
2238
+ // Show load more button
2239
+ $("#mec_skin_"+settings.id+" .mec-load-more-button").removeClass("mec-util-hidden");
2240
+
2241
+ // Append Items
2242
+ var node = $("#mec_skin_"+settings.id+" .mec-event-masonry");
2243
+ var markup = '', newItems = $(response.html).find('.mec-masonry-item-wrap');
2244
+
2245
+ newItems.each(function(index)
2246
+ {
2247
+ node.isotope()
2248
+ .append(newItems[index])
2249
+ .isotope('appended', newItems[index]);
2250
+ });
2251
+
2252
+ // Remove loading Class
2253
+ $("#mec_skin_"+settings.id+" .mec-load-more-button").removeClass("mec-load-more-loading");
2254
+
2255
+ // Update the variables
2256
+ settings.end_date = response.end_date;
2257
+ settings.offset = response.offset;
2258
+
2259
+ // Single Event Method
2260
+ if(settings.sed_method != '0')
2261
+ {
2262
+ sed();
2263
+ }
2264
+ }
2265
+ },
2266
+ error: function()
2267
+ {
2268
+ }
2269
+ });
2270
+ }
2271
  };
2272
  }(jQuery));
2273
 
3363
  }
3364
 
3365
  });
3366
+ })(jQuery);
3367
+
3368
+ // Weather
3369
+ (function($){
3370
+ // Convart fahrenheit to centigrade
3371
+ function convertToC(value)
3372
+ {
3373
+ return Math.round(((parseFloat(value) -32) *5 /9));
3374
+ }
3375
+
3376
+ // Convert centigrade to fahrenheit
3377
+ function convertToF(value)
3378
+ {
3379
+ return Math.round(((1.8 * parseFloat(value)) +32));
3380
+ }
3381
+
3382
+ // Convert miles to kilometers
3383
+ function MPHToKPH(value)
3384
+ {
3385
+ return Math.round(1.609344 * parseFloat(value));
3386
+ }
3387
+
3388
+ // Convert kilometers to miles
3389
+ function KPHToMPH(value)
3390
+ {
3391
+ return Math.round((0.6214 * parseFloat(value)));
3392
+ }
3393
+
3394
+ $(document).ready(function($)
3395
+ {
3396
+ let degree = $('.mec-weather-summary-temp');
3397
+ let weather_extra = $('.mec-weather-extras');
3398
+ let wind = weather_extra.children('.mec-weather-wind');
3399
+ let visibility = weather_extra.children('.mec-weather-visibility');
3400
+
3401
+ // Events
3402
+ $('.degrees-mode').click(function()
3403
+ {
3404
+ let degree_mode = degree.children('var').text().trim();
3405
+ let wind_text = wind.text().substring(5);
3406
+ let visibility_text = visibility.text().substring(11);
3407
+
3408
+ if(degree_mode == degree.data('c').trim())
3409
+ {
3410
+ degree.html(convertToF(parseInt(degree.text())) +' <var>'+degree.data('f')+'</var>');
3411
+ wind.html('<span>Wind:</span> '+ KPHToMPH(parseInt(wind_text)) +'<var>'+wind.data('mph')+'</var>');
3412
+ visibility.html('<span>Visibility:</span> ' + KPHToMPH(parseInt(visibility_text)) +'<var>'+visibility.data('mph')+'</var>');
3413
+ $(this).text($(this).data('metric'));
3414
+ }else if(degree_mode == degree.data('f').trim())
3415
+ {
3416
+ degree.html(convertToC(parseInt(degree.text())) +' <var>'+degree.data('c')+'</var>');
3417
+ wind.html('<span>Wind:</span> '+ MPHToKPH(parseInt(wind_text)) +'<var>'+wind.data('kph')+'</var>');
3418
+ visibility.html('<span>Visibility:</span> ' + MPHToKPH(parseInt(visibility_text)) +'<var>'+visibility.data('kph')+'</var>');
3419
+ $(this).text($(this).data('imperial'));
3420
+ }
3421
+ });
3422
+ });
3423
  })(jQuery);
changelog.txt CHANGED
@@ -1,4 +1,20 @@
1
- v 4.3.6 - 2 July 2019
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  - Added: Limit option to full calendar skin in order to show more than 12 events per day
3
  - Added: Recurring rule to the ICS export on event details page
4
  - Added: End repeat option for advanced repeat type
1
+ v 4.4.0 - 15 July 2019
2
+ - Added: Search bar shortcode
3
+ - Added: Organizer payment options
4
+ - Added: MEC shortcode element for the Divi builder
5
+ - Added: A new option to disable invoice
6
+ - Added: An option to limit maximum tickets that someone can book for all the tickets
7
+ - Added: Imperial units to weather module in addition to metric units
8
+ - Added: An option to toggle between imperial and metric units in weather module
9
+ - Added: The developer documentation <a href="https://bit.ly/2NReYuf" target="_blank">link</a>
10
+ - Fixed: "New Window" in more info link when booking is disabled
11
+ - Fixed: Load more button
12
+ - Fixed: Saving the changes in registration form builder
13
+ - Fixed: Not showing other events due to a problem in exceptional days
14
+ - Fixed: Masonry view by returning to Isotope library (hard-refresh required)
15
+ - Fixed: Some minor issues
16
+
17
+ v 4.3.6 - 2 July 2019
18
  - Added: Limit option to full calendar skin in order to show more than 12 events per day
19
  - Added: Recurring rule to the ICS export on event details page
20
  - Added: End repeat option for advanced repeat type
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-07-03 09:29+0430\n"
6
- "PO-Revision-Date: 2019-07-03 09:29+0430\n"
7
  "Last-Translator: Jogon <koenig@kafinanz.de>\n"
8
  "Language-Team: German\n"
9
  "Language: de_DE\n"
@@ -23,7 +23,7 @@ msgstr ""
23
  msgid "Modern Events Calendar"
24
  msgstr "Moderner Event Kalender "
25
 
26
- #: app/addons/KC.php:70 app/addons/VC.php:64 app/features/mec/styling.php:286
27
  msgid "Content"
28
  msgstr "Inhalt"
29
 
@@ -36,6 +36,19 @@ msgstr "Shortcode"
36
  msgid "Select from predefined shortcodes"
37
  msgstr "Wählen Sie aus vordefinierten Shortcodes"
38
 
 
 
 
 
 
 
 
 
 
 
 
 
 
39
  #: app/addons/elementor/shortcode.php:34
40
  #, fuzzy
41
  #| msgid "Modern Events Calendar"
@@ -55,7 +68,7 @@ msgid "Select Type"
55
  msgstr "Alles Auswählen"
56
 
57
  #: app/features/colors.php:50 app/features/fes/form.php:794
58
- #: app/features/mec/settings.php:785
59
  msgid "Event Color"
60
  msgstr "Farbe der Veranstaltung"
61
 
@@ -63,20 +76,20 @@ msgstr "Farbe der Veranstaltung"
63
  #: app/features/mec/booking.php:33 app/features/mec/dashboard.php:108
64
  #: app/features/mec/gateways.php:24 app/features/mec/ie.php:20
65
  #: app/features/mec/messages.php:24 app/features/mec/modules.php:31
66
- #: app/features/mec/notifications.php:23 app/features/mec/regform.php:60
67
  #: app/features/mec/settings.php:44 app/features/mec/single.php:23
68
  #: app/features/mec/styles.php:24 app/features/mec/styling.php:46
69
  #: app/features/mec/support-page.php:168 app/features/mec/support.php:20
70
  msgid "Settings"
71
  msgstr "Einstellungen"
72
 
73
- #: app/features/contextual.php:62 app/features/events.php:2250
74
- #: app/features/mec/booking.php:146 app/features/mec/gateways.php:111
75
- #: app/features/mec/ie.php:107 app/features/mec/messages.php:111
76
- #: app/features/mec/modules.php:173 app/features/mec/notifications.php:110
77
- #: app/features/mec/regform.php:146 app/features/mec/regform.php:215
78
- #: app/features/mec/settings.php:178 app/features/mec/single.php:139
79
- #: app/features/mec/styles.php:111 app/features/mec/styling.php:133
80
  #: app/features/mec/support.php:29
81
  msgid "Booking Form"
82
  msgstr "Buchungsformular"
@@ -95,13 +108,13 @@ msgstr ""
95
  "<iframe width=\"600\" height=\"300\" src=\"https://www.youtube.com/embed/"
96
  "YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></iframe>"
97
 
98
- #: app/features/contextual.php:70 app/features/mec/booking.php:153
99
- #: app/features/mec/gateways.php:118 app/features/mec/gateways.php:181
100
- #: app/features/mec/ie.php:114 app/features/mec/messages.php:118
101
- #: app/features/mec/modules.php:180 app/features/mec/notifications.php:117
102
- #: app/features/mec/regform.php:153 app/features/mec/settings.php:185
103
- #: app/features/mec/single.php:146 app/features/mec/styles.php:118
104
- #: app/features/mec/styling.php:140 app/features/mec/support.php:36
105
  msgid "Payment Gateways"
106
  msgstr "Zahlungs-Gateways"
107
 
@@ -115,12 +128,12 @@ msgstr ""
115
  "height=\"300\" src=\"https://www.youtube.com/embed/Hpg4chWlxoQ\" frameborder="
116
  "\"0\" allowfullscreen></iframe>"
117
 
118
- #: app/features/contextual.php:77 app/features/mec/booking.php:162
119
- #: app/features/mec/gateways.php:127 app/features/mec/ie.php:123
120
- #: app/features/mec/messages.php:127 app/features/mec/modules.php:189
121
- #: app/features/mec/notifications.php:129 app/features/mec/regform.php:161
122
- #: app/features/mec/settings.php:194 app/features/mec/single.php:155
123
- #: app/features/mec/styles.php:127 app/features/mec/styling.php:149
124
  #: app/features/mec/support.php:45
125
  msgid "Notifications"
126
  msgstr "Benachrichtigungen"
@@ -203,8 +216,8 @@ msgstr ""
203
  #: app/features/contextual.php:117 app/features/mec/booking.php:37
204
  #: app/features/mec/gateways.php:28 app/features/mec/ie.php:24
205
  #: app/features/mec/messages.php:28 app/features/mec/modules.php:35
206
- #: app/features/mec/notifications.php:27 app/features/mec/regform.php:64
207
- #: app/features/mec/settings.php:51 app/features/mec/settings.php:252
208
  #: app/features/mec/single.php:27 app/features/mec/styles.php:28
209
  #: app/features/mec/styling.php:50
210
  msgid "General Options"
@@ -213,8 +226,8 @@ msgstr "Allgemeine Einstellungen"
213
  #: app/features/contextual.php:139 app/features/mec/booking.php:39
214
  #: app/features/mec/gateways.php:30 app/features/mec/ie.php:26
215
  #: app/features/mec/messages.php:30 app/features/mec/modules.php:37
216
- #: app/features/mec/notifications.php:29 app/features/mec/regform.php:66
217
- #: app/features/mec/settings.php:63 app/features/mec/settings.php:569
218
  #: app/features/mec/single.php:29 app/features/mec/styles.php:30
219
  #: app/features/mec/styling.php:52
220
  msgid "Slugs/Permalinks"
@@ -227,50 +240,50 @@ msgstr "Event Details / Einzelveranstaltungsseite"
227
  #: app/features/contextual.php:166 app/features/mec/booking.php:40
228
  #: app/features/mec/gateways.php:31 app/features/mec/ie.php:27
229
  #: app/features/mec/messages.php:31 app/features/mec/modules.php:38
230
- #: app/features/mec/notifications.php:30 app/features/mec/regform.php:67
231
- #: app/features/mec/settings.php:69 app/features/mec/settings.php:601
232
  #: app/features/mec/single.php:30 app/features/mec/styles.php:31
233
  #: app/features/mec/styling.php:53
234
  msgid "Currency Options"
235
  msgstr "Währungseinstellungen"
236
 
237
- #: app/features/contextual.php:182 app/features/mec/booking.php:124
238
- #: app/features/mec/gateways.php:89 app/features/mec/ie.php:85
239
- #: app/features/mec/messages.php:89 app/features/mec/modules.php:109
240
- #: app/features/mec/modules.php:264 app/features/mec/modules.php:282
241
- #: app/features/mec/notifications.php:88 app/features/mec/regform.php:125
242
- #: app/features/mec/settings.php:156 app/features/mec/single.php:117
243
- #: app/features/mec/styles.php:89 app/features/mec/styling.php:111
244
  msgid "Google Maps Options"
245
  msgstr "Google Maps Einstellungen"
246
 
247
  #: app/features/contextual.php:244 app/features/mec/booking.php:41
248
  #: app/features/mec/gateways.php:32 app/features/mec/ie.php:28
249
  #: app/features/mec/messages.php:32 app/features/mec/modules.php:39
250
- #: app/features/mec/notifications.php:31 app/features/mec/regform.php:68
251
- #: app/features/mec/settings.php:75 app/features/mec/settings.php:658
252
  #: app/features/mec/single.php:31 app/features/mec/styles.php:32
253
  #: app/features/mec/styling.php:54
254
  msgid "Google Recaptcha Options"
255
  msgstr "Google Recaptcha Einstellungen"
256
 
257
- #: app/features/contextual.php:258 app/features/mec/booking.php:60
258
- #: app/features/mec/gateways.php:51 app/features/mec/ie.php:47
259
- #: app/features/mec/messages.php:51 app/features/mec/modules.php:58
260
- #: app/features/mec/notifications.php:50 app/features/mec/regform.php:87
261
- #: app/features/mec/settings.php:118 app/features/mec/single.php:62
262
- #: app/features/mec/single.php:310 app/features/mec/styles.php:51
263
- #: app/features/mec/styling.php:73
264
  msgid "Countdown Options"
265
  msgstr "Countdown Einstellungsoptionen"
266
 
267
- #: app/features/contextual.php:268 app/features/mec/booking.php:132
268
- #: app/features/mec/gateways.php:97 app/features/mec/ie.php:93
269
- #: app/features/mec/messages.php:97 app/features/mec/modules.php:145
270
- #: app/features/mec/modules.php:448 app/features/mec/notifications.php:96
271
- #: app/features/mec/regform.php:133 app/features/mec/settings.php:164
272
- #: app/features/mec/single.php:125 app/features/mec/styles.php:97
273
- #: app/features/mec/styling.php:119
274
  msgid "Social Networks"
275
  msgstr "Soziale Netzwerke"
276
 
@@ -281,72 +294,72 @@ msgstr "Nächstes Veranstaltung Modul"
281
  #: app/features/contextual.php:286 app/features/mec/booking.php:42
282
  #: app/features/mec/gateways.php:33 app/features/mec/ie.php:29
283
  #: app/features/mec/messages.php:33 app/features/mec/modules.php:40
284
- #: app/features/mec/notifications.php:32 app/features/mec/regform.php:69
285
- #: app/features/mec/settings.php:81 app/features/mec/settings.php:694
286
  #: app/features/mec/single.php:32 app/features/mec/styles.php:33
287
  #: app/features/mec/styling.php:55
288
  msgid "Frontend Event Submission"
289
  msgstr "Erstellung von Veranstaltungen im Frontend"
290
 
291
- #: app/features/contextual.php:298 app/features/events.php:1118
292
- #: app/features/mec/booking.php:61 app/features/mec/gateways.php:52
293
- #: app/features/mec/ie.php:48 app/features/mec/messages.php:52
294
- #: app/features/mec/modules.php:59 app/features/mec/notifications.php:51
295
- #: app/features/mec/regform.php:88 app/features/mec/settings.php:119
296
- #: app/features/mec/single.php:68 app/features/mec/styles.php:52
297
- #: app/features/mec/styling.php:74
298
  msgid "Exceptional Days"
299
  msgstr "Herausgenommene Tage "
300
 
301
- #: app/features/contextual.php:308 app/features/events.php:284
302
- #: app/features/mec/booking.php:77 app/features/mec/booking.php:84
303
- #: app/features/mec/booking.php:167 app/features/mec/booking.php:219
304
- #: app/features/mec/gateways.php:64 app/features/mec/gateways.php:68
305
- #: app/features/mec/gateways.php:132 app/features/mec/ie.php:60
306
- #: app/features/mec/ie.php:64 app/features/mec/ie.php:128
307
- #: app/features/mec/messages.php:64 app/features/mec/messages.php:68
308
- #: app/features/mec/messages.php:132 app/features/mec/modules.php:71
309
- #: app/features/mec/modules.php:75 app/features/mec/modules.php:194
310
- #: app/features/mec/notifications.php:63 app/features/mec/notifications.php:67
311
- #: app/features/mec/notifications.php:136
312
- #: app/features/mec/notifications.php:225 app/features/mec/regform.php:100
313
- #: app/features/mec/regform.php:104 app/features/mec/regform.php:166
314
- #: app/features/mec/settings.php:131 app/features/mec/settings.php:135
315
- #: app/features/mec/settings.php:199 app/features/mec/single.php:92
316
- #: app/features/mec/single.php:96 app/features/mec/single.php:160
317
- #: app/features/mec/styles.php:64 app/features/mec/styles.php:68
318
- #: app/features/mec/styles.php:132 app/features/mec/styling.php:86
319
- #: app/features/mec/styling.php:90 app/features/mec/styling.php:154
320
  msgid "Booking"
321
  msgstr "Buchung / Reservierung"
322
 
323
- #: app/features/contextual.php:318 app/features/mec/booking.php:92
324
- #: app/features/mec/booking.php:330 app/features/mec/gateways.php:70
325
- #: app/features/mec/ie.php:66 app/features/mec/messages.php:70
326
- #: app/features/mec/modules.php:77 app/features/mec/notifications.php:69
327
- #: app/features/mec/regform.php:106 app/features/mec/settings.php:137
328
- #: app/features/mec/single.php:98 app/features/mec/styles.php:70
329
- #: app/features/mec/styling.php:92
330
  msgid "Coupons"
331
  msgstr "Gutscheine"
332
 
333
- #: app/features/contextual.php:326 app/features/mec/booking.php:135
334
- #: app/features/mec/gateways.php:100 app/features/mec/ie.php:96
335
- #: app/features/mec/messages.php:100 app/features/mec/modules.php:159
336
- #: app/features/mec/modules.php:509 app/features/mec/notifications.php:99
337
- #: app/features/mec/regform.php:136 app/features/mec/settings.php:167
338
- #: app/features/mec/single.php:128 app/features/mec/styles.php:100
339
- #: app/features/mec/styling.php:122
340
  msgid "BuddyPress Integration"
341
  msgstr "Buddy Press Integration"
342
 
343
- #: app/features/contextual.php:334 app/features/mec/booking.php:45
344
- #: app/features/mec/gateways.php:36 app/features/mec/ie.php:32
345
- #: app/features/mec/messages.php:36 app/features/mec/modules.php:43
346
- #: app/features/mec/notifications.php:35 app/features/mec/regform.php:72
347
- #: app/features/mec/settings.php:95 app/features/mec/settings.php:879
348
- #: app/features/mec/single.php:35 app/features/mec/styles.php:36
349
- #: app/features/mec/styling.php:58
350
  msgid "Mailchimp Integration"
351
  msgstr "Mailchimp Integration"
352
 
@@ -355,15 +368,15 @@ msgid "MEC Activation"
355
  msgstr "MEC Aktivierung"
356
 
357
  #: app/features/events.php:137 app/features/ix/export.php:34
358
- #: app/features/mec/dashboard.php:188 app/skins/daily_view/tpl.php:79
359
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
360
  msgid "Events"
361
  msgstr "Veranstaltungen"
362
 
363
  #: app/features/events.php:138
364
- #: app/features/mec/meta_boxes/display_options.php:867
365
- #: app/features/mec/meta_boxes/display_options.php:923
366
- #: app/features/mec/meta_boxes/display_options.php:958
367
  #: app/features/profile/profile.php:28 app/skins/daily_view/tpl.php:80
368
  #: app/skins/monthly_view/tpl.php:71 app/skins/yearly_view/tpl.php:69
369
  msgid "Event"
@@ -401,16 +414,17 @@ msgstr "Keine Veranstaltungen im Papierkorb gefunden!"
401
  #: app/features/events.php:162
402
  #: app/features/mec/meta_boxes/display_options.php:798
403
  #: app/features/mec/meta_boxes/search_form.php:31
404
- #: app/features/mec/meta_boxes/search_form.php:92
405
- #: app/features/mec/meta_boxes/search_form.php:153
406
- #: app/features/mec/meta_boxes/search_form.php:214
407
- #: app/features/mec/meta_boxes/search_form.php:275
408
- #: app/features/mec/meta_boxes/search_form.php:336
409
- #: app/features/mec/meta_boxes/search_form.php:397
410
- #: app/features/mec/meta_boxes/search_form.php:451
411
- #: app/features/mec/meta_boxes/search_form.php:512
412
- #: app/features/mec/meta_boxes/search_form.php:573 app/libraries/main.php:4479
413
- #: app/libraries/skins.php:781 app/skins/single.php:410
 
414
  #: app/skins/single/default.php:169 app/skins/single/default.php:380
415
  #: app/skins/single/m1.php:170 app/skins/single/m2.php:102
416
  #: app/skins/single/modern.php:110
@@ -419,7 +433,7 @@ msgstr "Kategorie"
419
 
420
  #: app/features/events.php:163 app/features/fes/form.php:745
421
  #: app/features/mec.php:332 app/features/mec/meta_boxes/filter.php:70
422
- #: app/libraries/main.php:4478
423
  msgid "Categories"
424
  msgstr "Kategorien"
425
 
@@ -491,31 +505,31 @@ msgstr "Wählen Sie ein Symbol"
491
  msgid "Event Details"
492
  msgstr "Veranstaltungsdetails"
493
 
494
- #: app/features/events.php:321 app/features/events.php:3157
495
- #: app/features/events.php:3199 app/features/fes/form.php:706
496
  #: app/features/ix.php:2740 app/features/ix.php:2781
497
- #: app/features/mec/settings.php:761 app/libraries/main.php:4511
498
  #: app/widgets/single.php:103
499
  msgid "Event Cost"
500
  msgstr ""
501
  "Bruttopreis des Events in Euro, 0 für kostenlos oder z.B. 39, ohne €-Zeichen"
502
 
503
- #: app/features/events.php:325 app/features/fes/form.php:709
504
- #: app/libraries/main.php:4512 app/skins/single.php:433
505
  #: app/skins/single/default.php:103 app/skins/single/default.php:314
506
  #: app/skins/single/m1.php:49 app/skins/single/modern.php:199
507
  msgid "Cost"
508
  msgstr " Preis"
509
 
510
- #: app/features/events.php:423
511
  msgid "Note for reviewer"
512
  msgstr "Zusätzliche Anmerkungen zum Event "
513
 
514
- #: app/features/events.php:430
515
  msgid "Guest Data"
516
  msgstr "Gäste Daten"
517
 
518
- #: app/features/events.php:431 app/features/events.php:2232
519
  #: app/features/fes/form.php:668 app/features/labels.php:177
520
  #: app/features/mec/regform.php:27 app/features/organizers.php:274
521
  #: app/features/profile/profile.php:90 app/libraries/notifications.php:673
@@ -523,31 +537,31 @@ msgstr "Gäste Daten"
523
  msgid "Name"
524
  msgstr "Name"
525
 
526
- #: app/features/events.php:432 app/features/events.php:2243
527
- #: app/features/events.php:2321 app/features/fes/form.php:664
528
- #: app/features/mec/regform.php:38 app/features/mec/regform.php:267
529
  #: app/features/organizers.php:110 app/features/organizers.php:150
530
  #: app/features/profile/profile.php:93 app/features/speakers.php:120
531
- #: app/features/speakers.php:180 app/libraries/main.php:1142
532
- #: app/libraries/main.php:1208 app/libraries/main.php:2247
533
  #: app/libraries/notifications.php:674 app/modules/booking/steps/form.php:43
534
  #: app/modules/booking/steps/form.php:80 app/skins/single.php:661
535
- #: app/skins/single.php:715 app/skins/single/default.php:211
536
  #: app/skins/single/default.php:422 app/skins/single/m1.php:107
537
  #: app/skins/single/m2.php:39 app/skins/single/modern.php:48
538
  msgid "Email"
539
  msgstr "Email"
540
 
541
- #: app/features/events.php:436 app/features/fes/form.php:232
542
  msgid "Date and Time"
543
  msgstr "Datum und Uhrzeit"
544
 
545
- #: app/features/events.php:440 app/features/events.php:446
546
- #: app/features/events.php:2975 app/features/events.php:3157
547
- #: app/features/events.php:3199 app/features/fes/form.php:236
548
  #: app/features/fes/form.php:240 app/features/ix.php:2740
549
  #: app/features/ix.php:2781 app/features/ix/import_g_calendar.php:38
550
- #: app/features/mec/dashboard.php:332
551
  #: app/features/mec/meta_boxes/display_options.php:42
552
  #: app/features/mec/meta_boxes/display_options.php:169
553
  #: app/features/mec/meta_boxes/display_options.php:307
@@ -559,52 +573,52 @@ msgstr "Datum und Uhrzeit"
559
  #: app/features/mec/meta_boxes/display_options.php:654
560
  #: app/features/mec/meta_boxes/display_options.php:700
561
  #: app/features/mec/meta_boxes/display_options.php:766
562
- #: app/features/mec/meta_boxes/display_options.php:981
563
- #: app/features/mec/meta_boxes/display_options.php:1068
564
  msgid "Start Date"
565
  msgstr "Start Datum"
566
 
567
- #: app/features/events.php:518 app/features/events.php:610
568
- #: app/features/events.php:1586 app/features/events.php:1628
569
- #: app/features/events.php:1795 app/features/events.php:1819
570
  #: app/features/fes/form.php:268 app/features/fes/form.php:308
571
  msgid "AM"
572
  msgstr "AM"
573
 
574
- #: app/features/events.php:525 app/features/events.php:617
575
- #: app/features/events.php:1593 app/features/events.php:1635
576
- #: app/features/events.php:1796 app/features/events.php:1820
577
  #: app/features/fes/form.php:269 app/features/fes/form.php:309
578
  msgid "PM"
579
  msgstr "PM"
580
 
581
- #: app/features/events.php:532 app/features/events.php:537
582
- #: app/features/events.php:2976 app/features/events.php:3157
583
- #: app/features/events.php:3199 app/features/fes/form.php:276
584
  #: app/features/fes/form.php:280 app/features/ix.php:2740
585
  #: app/features/ix.php:2781 app/features/ix/import_g_calendar.php:44
586
- #: app/features/mec/dashboard.php:333
587
  msgid "End Date"
588
  msgstr "Ende Datum"
589
 
590
- #: app/features/events.php:631 app/features/fes/form.php:315
591
  msgid "All Day Event"
592
  msgstr "Ganztägige Veranstaltung"
593
 
594
- #: app/features/events.php:641 app/features/fes/form.php:318
595
  msgid "Hide Event Time"
596
  msgstr "Event / Veranstaltungszeit verbergen"
597
 
598
- #: app/features/events.php:651 app/features/fes/form.php:321
599
  msgid "Hide Event End Time"
600
  msgstr "Ende-Zeit der Veranstaltung verbergen"
601
 
602
- #: app/features/events.php:656 app/features/events.php:660
603
  #: app/features/fes/form.php:325
604
  msgid "Time Comment"
605
  msgstr "z.B. MEZ "
606
 
607
- #: app/features/events.php:661 app/features/fes/form.php:326
608
  #, fuzzy
609
  #| msgid ""
610
  #| "It shows next to event time on calendar. You can insert Timezone etc. in "
@@ -616,20 +630,20 @@ msgstr ""
616
  "Neben der Zeit im Kalender wird diese Angabe angezeigt. In diesem Feld "
617
  "können Sie z.B. eine Zeitzone wie z.B. \"MEZ\" usw. einfügen. "
618
 
619
- #: app/features/events.php:663 app/features/events.php:795
620
- #: app/features/events.php:1094 app/features/events.php:1137
621
- #: app/features/events.php:1436 app/features/events.php:1503
622
- #: app/features/events.php:1655 app/features/events.php:1670
623
- #: app/features/events.php:1837 app/features/events.php:1850
624
- #: app/features/events.php:1980 app/features/events.php:2016
625
- #: app/features/events.php:2114 app/features/events.php:2129
626
- #: app/features/events.php:2159 app/features/events.php:2172
627
  #: app/features/fes/form.php:630 app/features/locations.php:298
628
- #: app/features/mec/booking.php:239 app/features/mec/booking.php:263
629
- #: app/features/mec/booking.php:279 app/features/mec/booking.php:375
630
- #: app/features/mec/booking.php:404 app/features/mec/booking.php:452
631
- #: app/features/mec/booking.php:462 app/features/mec/booking.php:484
632
- #: app/features/mec/booking.php:494 app/features/mec/dashboard.php:71
633
  #: app/features/mec/meta_boxes/display_options.php:60
634
  #: app/features/mec/meta_boxes/display_options.php:73
635
  #: app/features/mec/meta_boxes/display_options.php:86
@@ -645,45 +659,45 @@ msgstr ""
645
  #: app/features/mec/meta_boxes/display_options.php:326
646
  #: app/features/mec/meta_boxes/display_options.php:502
647
  #: app/features/mec/meta_boxes/display_options.php:785
648
- #: app/features/mec/meta_boxes/display_options.php:838
649
- #: app/features/mec/meta_boxes/display_options.php:850
650
- #: app/features/mec/meta_boxes/display_options.php:861
651
- #: app/features/mec/meta_boxes/display_options.php:893
652
- #: app/features/mec/meta_boxes/display_options.php:904
653
- #: app/features/mec/meta_boxes/display_options.php:917
654
- #: app/features/mec/meta_boxes/display_options.php:952
655
- #: app/features/mec/meta_boxes/display_options.php:1001
656
- #: app/features/mec/meta_boxes/display_options.php:1012
657
- #: app/features/mec/meta_boxes/display_options.php:1023
658
- #: app/features/mec/meta_boxes/display_options.php:1088
659
- #: app/features/mec/meta_boxes/display_options.php:1101
660
- #: app/features/mec/meta_boxes/display_options.php:1114
661
- #: app/features/mec/meta_boxes/display_options.php:1127
662
- #: app/features/mec/meta_boxes/display_options.php:1140
663
- #: app/features/mec/modules.php:283 app/features/mec/modules.php:300
664
- #: app/features/mec/modules.php:335 app/features/mec/modules.php:351
665
- #: app/features/mec/modules.php:497 app/features/mec/notifications.php:244
666
- #: app/features/mec/notifications.php:301
667
- #: app/features/mec/notifications.php:353
668
- #: app/features/mec/notifications.php:412
669
- #: app/features/mec/notifications.php:480
670
- #: app/features/mec/notifications.php:543
671
- #: app/features/mec/notifications.php:554
672
- #: app/features/mec/notifications.php:616 app/features/mec/settings.php:266
673
- #: app/features/mec/settings.php:285 app/features/mec/settings.php:312
674
- #: app/features/mec/settings.php:332 app/features/mec/settings.php:353
675
- #: app/features/mec/settings.php:373 app/features/mec/settings.php:450
676
- #: app/features/mec/settings.php:524 app/features/mec/settings.php:541
677
- #: app/features/mec/settings.php:558 app/features/mec/settings.php:577
678
- #: app/features/mec/settings.php:591 app/features/mec/settings.php:619
679
- #: app/features/mec/settings.php:706 app/features/mec/settings.php:844
680
- #: app/features/mec/settings.php:861 app/features/mec/settings.php:894
681
- #: app/features/mec/settings.php:907 app/features/mec/settings.php:923
682
- #: app/features/mec/single.php:221 app/features/mec/single.php:237
683
- #: app/features/mec/single.php:256 app/features/mec/single.php:272
684
- #: app/features/mec/single.php:287 app/features/mec/single.php:301
685
- #: app/features/mec/single.php:339 app/features/mec/styling.php:356
686
- #: app/features/mec/styling.php:373 app/features/mec/styling.php:386
687
  #: app/features/organizers.php:267 app/skins/single.php:508
688
  #: app/skins/single/default.php:118 app/skins/single/default.php:329
689
  #: app/skins/single/m1.php:192 app/skins/single/m2.php:125
@@ -691,197 +705,197 @@ msgstr ""
691
  msgid "Read More"
692
  msgstr "Mehr lesen"
693
 
694
- #: app/features/events.php:679 app/features/fes/form.php:332
695
  msgid "Event Repeating"
696
  msgstr "Wiederholende Veranstaltung"
697
 
698
- #: app/features/events.php:683 app/features/fes/form.php:336
699
  msgid "Repeats"
700
  msgstr "Wiederholend"
701
 
702
- #: app/features/events.php:691 app/features/fes/form.php:338
703
- #: app/features/mec/dashboard.php:335 app/skins/full_calendar/tpl.php:103
704
  msgid "Daily"
705
  msgstr "Täglich"
706
 
707
- #: app/features/events.php:698 app/features/fes/form.php:339
708
  msgid "Every Weekday"
709
  msgstr "An jedem Wochentag"
710
 
711
- #: app/features/events.php:705 app/features/fes/form.php:340
712
  msgid "Every Weekend"
713
  msgstr "An jedem Wochenende"
714
 
715
- #: app/features/events.php:712 app/features/fes/form.php:341
716
  msgid "Certain Weekdays"
717
  msgstr "Bestimmte Wochentage"
718
 
719
- #: app/features/events.php:719 app/features/fes/form.php:342
720
  #: app/skins/full_calendar/tpl.php:102
721
  msgid "Weekly"
722
  msgstr "Wöchentlich"
723
 
724
- #: app/features/events.php:726 app/features/fes/form.php:343
725
- #: app/features/mec/dashboard.php:336 app/skins/full_calendar/tpl.php:101
726
  msgid "Monthly"
727
  msgstr "Monatlich"
728
 
729
- #: app/features/events.php:733 app/features/fes/form.php:344
730
- #: app/features/mec/dashboard.php:337 app/skins/full_calendar/tpl.php:100
731
  msgid "Yearly"
732
  msgstr "Jährlich"
733
 
734
- #: app/features/events.php:740 app/features/fes/form.php:345
735
  msgid "Custom Days"
736
  msgstr "Benutzerdefinierte Tage"
737
 
738
- #: app/features/events.php:747 app/features/fes/form.php:346
739
  #, fuzzy
740
  #| msgid "Advanced Method"
741
  msgid "Advanced"
742
  msgstr "Fortgeschrittene Methode"
743
 
744
- #: app/features/events.php:752 app/features/fes/form.php:350
745
  msgid "Repeat Interval"
746
  msgstr "Wiederholungsintervall"
747
 
748
- #: app/features/events.php:754 app/features/fes/form.php:351
749
  msgid "Repeat interval"
750
  msgstr "Wiederholungsintervall"
751
 
752
- #: app/features/events.php:758 app/features/fes/form.php:354
753
  msgid "Week Days"
754
  msgstr "Wochentage"
755
 
756
- #: app/features/events.php:760 app/features/fes/form.php:355
757
  #: app/features/mec/meta_boxes/display_options.php:730
758
  #: app/libraries/main.php:407
759
  msgid "Monday"
760
  msgstr "Montag"
761
 
762
- #: app/features/events.php:763 app/features/fes/form.php:356
763
  #: app/features/mec/meta_boxes/display_options.php:731
764
  #: app/libraries/main.php:407
765
  msgid "Tuesday"
766
  msgstr "Dienstag"
767
 
768
- #: app/features/events.php:766 app/features/fes/form.php:357
769
  #: app/features/mec/meta_boxes/display_options.php:732
770
  #: app/libraries/main.php:407
771
  msgid "Wednesday"
772
  msgstr "Mittwoch"
773
 
774
- #: app/features/events.php:769 app/features/fes/form.php:358
775
  #: app/features/mec/meta_boxes/display_options.php:733
776
  #: app/libraries/main.php:407
777
  msgid "Thursday"
778
  msgstr "Donnerstag"
779
 
780
- #: app/features/events.php:772 app/features/fes/form.php:359
781
  #: app/features/mec/meta_boxes/display_options.php:734
782
  #: app/libraries/main.php:407
783
  msgid "Friday"
784
  msgstr "Freitag"
785
 
786
- #: app/features/events.php:775 app/features/fes/form.php:360
787
  #: app/features/mec/meta_boxes/display_options.php:735
788
  #: app/libraries/main.php:407
789
  msgid "Saturday"
790
  msgstr "Samstag"
791
 
792
- #: app/features/events.php:778 app/features/fes/form.php:361
793
  #: app/features/mec/meta_boxes/display_options.php:729
794
  #: app/libraries/main.php:407
795
  msgid "Sunday"
796
  msgstr "Sonntag"
797
 
798
- #: app/features/events.php:785 app/features/events.php:1718
799
- #: app/features/events.php:1746 app/features/events.php:1884
800
  #: app/features/fes/form.php:366 app/features/ix/import_f_calendar.php:42
801
  #: app/features/ix/import_g_calendar.php:51
802
  #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
803
  msgid "Start"
804
  msgstr "Start"
805
 
806
- #: app/features/events.php:787 app/features/events.php:1722
807
- #: app/features/events.php:1750 app/features/events.php:1888
808
  #: app/features/fes/form.php:367
809
  #, fuzzy
810
  #| msgid "Enabled"
811
  msgid "End"
812
  msgstr "Aktiviert"
813
 
814
- #: app/features/events.php:789 app/features/events.php:1131
815
- #: app/features/events.php:1242 app/features/events.php:1347
816
- #: app/features/events.php:1536 app/features/events.php:1701
817
- #: app/features/events.php:1873 app/features/events.php:1953
818
- #: app/features/events.php:2086 app/features/fes/form.php:368
819
  msgid "Add"
820
  msgstr "Hinzufügen"
821
 
822
- #: app/features/events.php:792
823
  #, fuzzy
824
  #| msgid "Custom Days"
825
  msgid "Custom Days Repeating"
826
  msgstr "Benutzerdefinierte Tage"
827
 
828
- #: app/features/events.php:793
829
  msgid ""
830
  "Add certain days to event occurrence dates. If you have single day event, "
831
  "start and end date should be the same, If you have multiple day event the "
832
  "start and end dates must be commensurate with the initial date."
833
  msgstr ""
834
 
835
- #: app/features/events.php:829 app/features/fes/form.php:394
836
  #, fuzzy
837
  #| msgid "First name"
838
  msgid "First"
839
  msgstr "Vorname"
840
 
841
- #: app/features/events.php:871 app/features/fes/form.php:436
842
  #, fuzzy
843
  #| msgid "second"
844
  msgid "Second"
845
  msgstr "Sekunde"
846
 
847
- #: app/features/events.php:913 app/features/fes/form.php:478
848
  #, fuzzy
849
  #| msgid "Third Party"
850
  msgid "Third"
851
  msgstr "Dritte Seite"
852
 
853
- #: app/features/events.php:955 app/features/fes/form.php:520
854
  msgid "Fourth"
855
  msgstr ""
856
 
857
- #: app/features/events.php:997 app/features/fes/form.php:562
858
  #, fuzzy
859
  #| msgid "Last name"
860
  msgid "Last"
861
  msgstr "Nachname"
862
 
863
- #: app/features/events.php:1044 app/features/fes/form.php:608
864
  msgid "Ends Repeat"
865
  msgstr "Wiederholung endet"
866
 
867
- #: app/features/events.php:1055 app/features/fes/form.php:612
868
  msgid "Never"
869
  msgstr "Niemals"
870
 
871
- #: app/features/events.php:1067 app/features/fes/form.php:617
872
  msgid "On"
873
  msgstr "Am"
874
 
875
- #: app/features/events.php:1083 app/features/fes/form.php:624
876
  msgid "After"
877
  msgstr "Nach"
878
 
879
- #: app/features/events.php:1087 app/features/events.php:1091
880
  #: app/features/fes/form.php:626 app/features/fes/form.php:629
881
  msgid "Occurrences times"
882
  msgstr " mal vorkommen"
883
 
884
- #: app/features/events.php:1092 app/features/fes/form.php:630
885
  msgid ""
886
  "The event will finish after certain repeats. For example if you set it to "
887
  "10, the event will finish after 10 repeats."
@@ -889,13 +903,13 @@ msgstr ""
889
  "Das Event ist nach einer bestimmten Anzahl von Wiederholungen zu Ende. Zum "
890
  "Beispiel: Bei Eingabe von 10 wird das Event nach 10 Wiederholungen beendet"
891
 
892
- #: app/features/events.php:1124 app/features/events.php:1134
893
  msgid "Exclude certain days"
894
  msgstr "Ausschluss bestimmter Tage"
895
 
896
- #: app/features/events.php:1129 app/features/events.php:2322
897
- #: app/features/mec/regform.php:268 app/features/profile/profile.php:31
898
- #: app/libraries/main.php:1694 app/libraries/main.php:2305
899
  #: app/modules/booking/steps/tickets.php:22
900
  #: app/modules/next-event/details.php:90 app/skins/single.php:488
901
  #: app/skins/single/default.php:67 app/skins/single/default.php:278
@@ -903,123 +917,123 @@ msgstr "Ausschluss bestimmter Tage"
903
  msgid "Date"
904
  msgstr "Datum"
905
 
906
- #: app/features/events.php:1135
907
  msgid ""
908
  "Exclude certain days from event occurrence dates. Please note that you can "
909
  "exclude only single day occurrences and you cannot exclude one day from "
910
  "multiple day occurrences."
911
  msgstr ""
912
 
913
- #: app/features/events.php:1189 app/libraries/render.php:454
914
  msgid "Day 1"
915
  msgstr ""
916
 
917
- #: app/features/events.php:1211 app/features/mec/settings.php:815
918
- #: app/skins/single.php:777
919
  msgid "Hourly Schedule"
920
  msgstr "Stundenplan"
921
 
922
- #: app/features/events.php:1215
923
  msgid "Add Day"
924
  msgstr ""
925
 
926
- #: app/features/events.php:1216
927
  msgid ""
928
  "Add new days for schedule. For example if your event is multiple days, you "
929
  "can add a different schedule for each day!"
930
  msgstr ""
931
 
932
- #: app/features/events.php:1223
933
  #, php-format
934
  msgid "Day %s"
935
  msgstr ""
936
 
937
- #: app/features/events.php:1227 app/features/events.php:1266
938
- #: app/features/events.php:1301 app/features/events.php:1333
939
- #: app/features/events.php:1362 app/features/events.php:2101
940
- #: app/features/events.php:2148 app/features/events.php:2972
941
- #: app/features/events.php:3157 app/features/events.php:3199
942
  #: app/features/fes/form.php:225 app/features/ix.php:2740
943
- #: app/features/ix.php:2781 app/features/mec/booking.php:444
944
- #: app/features/mec/booking.php:476 app/features/mec/styling.php:268
945
  msgid "Title"
946
  msgstr "Titel"
947
 
948
- #: app/features/events.php:1236 app/features/events.php:1273
949
- #: app/features/events.php:1306 app/features/events.php:1341
950
- #: app/features/events.php:1367 app/features/events.php:1694
951
- #: app/features/events.php:1732 app/features/events.php:1758
952
- #: app/features/events.php:1867 app/features/events.php:1894
953
- #: app/features/events.php:1993 app/features/events.php:2029
954
- #: app/features/events.php:2136 app/features/events.php:2178
955
- #: app/features/fes/list.php:78 app/features/mec/booking.php:387
956
- #: app/features/mec/booking.php:416 app/features/mec/booking.php:467
957
- #: app/features/mec/booking.php:499 app/libraries/main.php:2166
958
- #: app/libraries/main.php:2196 app/libraries/main.php:2225
959
- #: app/libraries/main.php:2255 app/libraries/main.php:2284
960
- #: app/libraries/main.php:2313 app/libraries/main.php:2342
961
- #: app/libraries/main.php:2371 app/libraries/main.php:2393
962
- #: app/libraries/main.php:2424 app/libraries/main.php:2468
963
- #: app/libraries/main.php:2512 app/libraries/main.php:2559
964
- #: app/libraries/main.php:2597
965
  msgid "Remove"
966
  msgstr "Entfernen"
967
 
968
- #: app/features/events.php:1243 app/features/events.php:1348
969
  msgid "Add new hourly schedule row"
970
  msgstr "Neue Stundenplan-Zeile hinzufügen"
971
 
972
- #: app/features/events.php:1258 app/features/events.php:1295
973
- #: app/features/events.php:1357
974
  msgid "From e.g. 8:15"
975
  msgstr "Von z.B. 08:15 Uhr"
976
 
977
- #: app/features/events.php:1262 app/features/events.php:1298
978
- #: app/features/events.php:1359
979
  msgid "To e.g. 8:45"
980
  msgstr "bis zum Beispiel 08:45 Uhr"
981
 
982
- #: app/features/events.php:1270 app/features/events.php:1304
983
- #: app/features/events.php:1365 app/features/events.php:1642
984
- #: app/features/events.php:1826
985
  msgid "Description"
986
  msgstr "Beschreibung"
987
 
988
- #: app/features/events.php:1276 app/features/events.php:1309
989
- #: app/features/events.php:1370 app/features/fes/form.php:839
990
- #: app/features/mec.php:340 app/features/mec/booking.php:122
991
- #: app/features/mec/gateways.php:87 app/features/mec/ie.php:83
992
- #: app/features/mec/messages.php:87 app/features/mec/modules.php:101
993
- #: app/features/mec/notifications.php:86 app/features/mec/regform.php:123
994
- #: app/features/mec/settings.php:154 app/features/mec/settings.php:809
995
- #: app/features/mec/single.php:115 app/features/mec/styles.php:87
996
- #: app/features/mec/styling.php:109 app/features/speakers.php:57
997
- #: app/libraries/main.php:4486 app/modules/speakers/details.php:18
998
  msgid "Speakers"
999
  msgstr ""
1000
 
1001
- #: app/features/events.php:1329 app/features/events.php:1337
1002
  #, fuzzy
1003
  #| msgid "Week Days"
1004
  msgid "New Day"
1005
  msgstr "Wochentage"
1006
 
1007
- #: app/features/events.php:1401 app/features/fes/form.php:683
1008
- #: app/features/mec/settings.php:755
1009
  msgid "Event Links"
1010
  msgstr "Veranstaltungslinks"
1011
 
1012
- #: app/features/events.php:1404 app/features/events.php:1410
1013
- #: app/features/fes/form.php:685 app/libraries/main.php:4509
1014
  msgid "Event Link"
1015
  msgstr "Veranstaltungslink"
1016
 
1017
- #: app/features/events.php:1407 app/features/events.php:1423
1018
  #: app/features/fes/form.php:686 app/features/fes/form.php:691
1019
  msgid "eg. http://yoursite.com/your-event"
1020
  msgstr "z.B. http://ihreseite.com/ihre-veranstaltung"
1021
 
1022
- #: app/features/events.php:1411
1023
  #, fuzzy
1024
  #| msgid ""
1025
  #| "If you fill it, it will be replaced instead of default event page link. "
@@ -1033,12 +1047,12 @@ msgstr ""
1033
  "dieser durch einen neuen link ersetzt werden. Vollständigen Link einfügen, "
1034
  "einschließlich http(s)://"
1035
 
1036
- #: app/features/events.php:1413
1037
  msgid "URL Shortener"
1038
  msgstr ""
1039
 
1040
- #: app/features/events.php:1420 app/features/events.php:1433
1041
- #: app/features/fes/form.php:690 app/libraries/main.php:4510
1042
  #: app/skins/single.php:507 app/skins/single/default.php:117
1043
  #: app/skins/single/default.php:328 app/skins/single/m1.php:191
1044
  #: app/skins/single/m2.php:124 app/skins/single/modern.php:132
@@ -1046,19 +1060,19 @@ msgstr ""
1046
  msgid "More Info"
1047
  msgstr "Mehr Informationen"
1048
 
1049
- #: app/features/events.php:1426 app/features/fes/form.php:692
1050
  msgid "More Information"
1051
  msgstr "z.B. Noch mehr Informationen "
1052
 
1053
- #: app/features/events.php:1428 app/features/fes/form.php:694
1054
  msgid "Current Window"
1055
  msgstr "Aktuelles Fenster"
1056
 
1057
- #: app/features/events.php:1429 app/features/fes/form.php:695
1058
  msgid "New Window"
1059
  msgstr "Neues Fenster"
1060
 
1061
- #: app/features/events.php:1434 app/features/fes/form.php:697
1062
  msgid ""
1063
  "If you fill it, it will be shown in event details page as an optional link. "
1064
  "Insert full link including http(s)://"
@@ -1069,134 +1083,135 @@ msgstr ""
1069
  "Text angezeigt werden soll: zum Beispiel: Noch mehr Informationen oder Hier "
1070
  "zur Anmeldung (z.B. bei Webinaren sinnvoll) "
1071
 
1072
- #: app/features/events.php:1474 app/features/events.php:1500
1073
  msgid "Total booking limits"
1074
  msgstr "Gesamt Verfügbare Plätze"
1075
 
1076
- #: app/features/events.php:1486 app/features/events.php:1691
1077
- #: app/features/events.php:1864 app/modules/booking/default.php:85
1078
  #: app/modules/booking/steps/tickets.php:40
1079
  #: app/skins/available_spot/tpl.php:140
1080
  msgid "Unlimited"
1081
  msgstr "Unlimitiert"
1082
 
1083
- #: app/features/events.php:1489
1084
  msgid "100"
1085
  msgstr "z.B. 100"
1086
 
1087
- #: app/features/events.php:1501
1088
  msgid ""
1089
  "If you want to set a limit to all tickets, uncheck this checkbox and put a "
1090
  "limitation number."
1091
  msgstr ""
1092
 
1093
- #: app/features/events.php:1505
1094
  #, fuzzy
1095
  #| msgid "Choose your single event style."
1096
  msgid "Read About A Booking System"
1097
  msgstr "Wählen Sie Ihren Single Event Stil"
1098
 
1099
- #: app/features/events.php:1528 app/libraries/book.php:60
1100
- #: app/libraries/main.php:4514 app/modules/booking/steps/tickets.php:40
1101
  msgid "Tickets"
1102
  msgstr "Tickets"
1103
 
1104
- #: app/features/events.php:1531
1105
  msgid ""
1106
  "You're translating an event so MEC will use the original event for tickets "
1107
  "and booking. You can only translate the ticket name and description. Please "
1108
  "define exact tickets that you defined in the original event here."
1109
  msgstr ""
1110
 
1111
- #: app/features/events.php:1550 app/features/events.php:1772
1112
  msgid "Ticket Name"
1113
  msgstr "Ticket Name"
1114
 
1115
- #: app/features/events.php:1555 app/features/events.php:1776
1116
- #: app/features/events.php:3157 app/features/events.php:3199
1117
  #: app/features/ix.php:2740 app/features/ix.php:2781
1118
  msgid "Start Time"
1119
  msgstr "Uhrzeit des Beginns"
1120
 
1121
- #: app/features/events.php:1597 app/features/events.php:1800
1122
- #: app/features/events.php:3157 app/features/events.php:3199
1123
  #: app/features/ix.php:2740 app/features/ix.php:2781
1124
  msgid "End Time"
1125
  msgstr "Uhrzeit Ende"
1126
 
1127
- #: app/features/events.php:1648 app/features/events.php:1652
1128
- #: app/features/events.php:1726 app/features/events.php:1753
1129
- #: app/features/events.php:1831 app/features/events.php:1834
1130
- #: app/features/events.php:1890 app/features/events.php:2107
1131
- #: app/features/events.php:2111 app/features/events.php:2153
1132
- #: app/features/events.php:2156 app/features/mec/booking.php:448
1133
- #: app/features/mec/booking.php:451 app/features/mec/booking.php:480
1134
- #: app/features/mec/booking.php:483
1135
  msgid "Price"
1136
  msgstr "Preis"
1137
 
1138
- #: app/features/events.php:1653 app/features/events.php:1835
1139
  msgid "Insert 0 for free ticket. Only numbers please."
1140
  msgstr "Bitte 0 für kostenloses Ticket eingeben. Bitte nur Zahlen eintragen"
1141
 
1142
- #: app/features/events.php:1662 app/features/events.php:1667
1143
- #: app/features/events.php:1844 app/features/events.php:1847
1144
  msgid "Price Label"
1145
  msgstr "Preisschild"
1146
 
1147
- #: app/features/events.php:1668 app/features/events.php:1848
1148
  msgid "For showing on website. e.g. $15"
1149
  msgstr "Um das auf der Webseite anzuzeigen zum Beispiel 15 €"
1150
 
1151
- #: app/features/events.php:1678 app/features/events.php:1858
1152
  msgid "Available Tickets"
1153
  msgstr "Verfügbare Tickets: %s "
1154
 
1155
- #: app/features/events.php:1699 app/features/events.php:1871
1156
  #, fuzzy
1157
  #| msgid "Price Label"
1158
  msgid "Price per Date"
1159
  msgstr "Preisschild"
1160
 
1161
- #: app/features/events.php:1730 app/features/events.php:1756
1162
- #: app/features/events.php:1892 app/features/labels.php:60
1163
  #: app/features/mec/meta_boxes/display_options.php:799
1164
  #: app/features/mec/meta_boxes/search_form.php:66
1165
- #: app/features/mec/meta_boxes/search_form.php:127
1166
- #: app/features/mec/meta_boxes/search_form.php:188
1167
- #: app/features/mec/meta_boxes/search_form.php:249
1168
- #: app/features/mec/meta_boxes/search_form.php:310
1169
- #: app/features/mec/meta_boxes/search_form.php:371
1170
- #: app/features/mec/meta_boxes/search_form.php:432
1171
- #: app/features/mec/meta_boxes/search_form.php:486
1172
- #: app/features/mec/meta_boxes/search_form.php:547
1173
- #: app/features/mec/meta_boxes/search_form.php:608 app/libraries/skins.php:911
 
1174
  msgid "Label"
1175
  msgstr "Label"
1176
 
1177
- #: app/features/events.php:1930
1178
  msgid "Fees"
1179
  msgstr "Gebühren"
1180
 
1181
- #: app/features/events.php:1942 app/features/events.php:2074
1182
- #: app/features/events.php:2262
1183
  msgid "Inherit from global options"
1184
  msgstr "Aus den globalen Einstellungen übernehmen"
1185
 
1186
- #: app/features/events.php:1967 app/features/events.php:2005
1187
- #: app/features/mec/booking.php:367 app/features/mec/booking.php:396
1188
  msgid "Fee Title"
1189
  msgstr "Gebühren Name"
1190
 
1191
- #: app/features/events.php:1973 app/features/events.php:1977
1192
- #: app/features/events.php:2010 app/features/events.php:2013
1193
- #: app/features/mec/booking.php:371 app/features/mec/booking.php:374
1194
- #: app/features/mec/booking.php:400 app/features/mec/booking.php:403
1195
  msgid "Amount"
1196
  msgstr "Betrag"
1197
 
1198
- #: app/features/events.php:1978 app/features/events.php:2014
1199
- #: app/features/mec/booking.php:375 app/features/mec/booking.php:404
1200
  msgid ""
1201
  "Fee amount, considered as fixed amount if you set the type to amount "
1202
  "otherwise considered as percentage"
@@ -1204,346 +1219,347 @@ msgstr ""
1204
  "Gebührenbetrag, gilt als fester Betrag, wenn Sie die Art auf Betrag setzen, "
1205
  "sonst als Prozentsatz"
1206
 
1207
- #: app/features/events.php:1987 app/features/events.php:2023
1208
- #: app/features/mec/booking.php:382 app/features/mec/booking.php:411
1209
  msgid "Percent"
1210
  msgstr "Prozent"
1211
 
1212
- #: app/features/events.php:1988 app/features/events.php:2024
1213
- #: app/features/mec/booking.php:383 app/features/mec/booking.php:412
1214
  msgid "Amount (Per Ticket)"
1215
  msgstr "Betrag (pro Ticket)"
1216
 
1217
- #: app/features/events.php:1989 app/features/events.php:2025
1218
- #: app/features/mec/booking.php:384 app/features/mec/booking.php:413
1219
  msgid "Amount (Per Booking)"
1220
  msgstr "Betrag (pro Buchung)"
1221
 
1222
- #: app/features/events.php:2062 app/features/mec/settings.php:833
1223
  msgid "Ticket Variations / Options"
1224
  msgstr ""
1225
 
1226
- #: app/features/events.php:2112 app/features/events.php:2157
1227
- #: app/features/mec/booking.php:452 app/features/mec/booking.php:484
1228
  #, fuzzy
1229
  #| msgid "Option"
1230
  msgid "Option Price"
1231
  msgstr "Option"
1232
 
1233
- #: app/features/events.php:2122 app/features/events.php:2126
1234
- #: app/features/events.php:2166 app/features/events.php:2169
1235
- #: app/features/mec/booking.php:458 app/features/mec/booking.php:461
1236
- #: app/features/mec/booking.php:490 app/features/mec/booking.php:493
1237
  #, fuzzy
1238
  #| msgid "Amount (Per Ticket)"
1239
  msgid "Maximum Per Ticket"
1240
  msgstr "Betrag (pro Ticket)"
1241
 
1242
- #: app/features/events.php:2127 app/features/events.php:2170
1243
- #: app/features/mec/booking.php:462 app/features/mec/booking.php:494
1244
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
1245
  msgstr ""
1246
 
1247
- #: app/features/events.php:2317 app/features/mec/regform.php:264
1248
- #: app/libraries/main.php:2188
1249
  #, fuzzy
1250
  #| msgid "Name"
1251
  msgid "MEC Name"
1252
  msgstr "Name"
1253
 
1254
- #: app/features/events.php:2319 app/features/mec/regform.php:265
1255
- #: app/libraries/main.php:2217
1256
  #, fuzzy
1257
  #| msgid "Email"
1258
  msgid "MEC Email"
1259
  msgstr "Email"
1260
 
1261
- #: app/features/events.php:2320 app/features/mec/regform.php:266
1262
- #: app/libraries/main.php:2158
1263
  msgid "Text"
1264
  msgstr "Text"
1265
 
1266
- #: app/features/events.php:2323 app/features/mec/regform.php:269
1267
  #: app/features/organizers.php:102 app/features/organizers.php:146
1268
  #: app/features/speakers.php:112 app/features/speakers.php:176
1269
- #: app/features/speakers.php:245 app/libraries/main.php:2334
1270
  msgid "Tel"
1271
  msgstr "Tel"
1272
 
1273
- #: app/features/events.php:2324 app/features/mec/regform.php:270
1274
- #: app/libraries/main.php:2276
1275
  msgid "File"
1276
  msgstr ""
1277
 
1278
- #: app/features/events.php:2326 app/features/mec/regform.php:271
1279
- #: app/libraries/main.php:2363
1280
  msgid "Textarea"
1281
  msgstr "Textbereich"
1282
 
1283
- #: app/features/events.php:2328 app/features/mec/regform.php:272
1284
- #: app/libraries/main.php:2416
1285
  msgid "Checkboxes"
1286
  msgstr "Checkboxes"
1287
 
1288
- #: app/features/events.php:2330 app/features/mec/regform.php:273
1289
- #: app/libraries/main.php:2460
1290
  msgid "Radio Buttons"
1291
  msgstr "Radio Buttons"
1292
 
1293
- #: app/features/events.php:2331 app/features/mec/meta_boxes/search_form.php:34
1294
  #: app/features/mec/meta_boxes/search_form.php:41
1295
  #: app/features/mec/meta_boxes/search_form.php:48
1296
  #: app/features/mec/meta_boxes/search_form.php:55
1297
  #: app/features/mec/meta_boxes/search_form.php:62
1298
  #: app/features/mec/meta_boxes/search_form.php:69
1299
  #: app/features/mec/meta_boxes/search_form.php:76
1300
- #: app/features/mec/meta_boxes/search_form.php:95
1301
- #: app/features/mec/meta_boxes/search_form.php:102
1302
- #: app/features/mec/meta_boxes/search_form.php:109
1303
- #: app/features/mec/meta_boxes/search_form.php:116
1304
- #: app/features/mec/meta_boxes/search_form.php:123
1305
- #: app/features/mec/meta_boxes/search_form.php:130
1306
- #: app/features/mec/meta_boxes/search_form.php:137
1307
- #: app/features/mec/meta_boxes/search_form.php:156
1308
- #: app/features/mec/meta_boxes/search_form.php:163
1309
- #: app/features/mec/meta_boxes/search_form.php:170
1310
- #: app/features/mec/meta_boxes/search_form.php:177
1311
- #: app/features/mec/meta_boxes/search_form.php:184
1312
- #: app/features/mec/meta_boxes/search_form.php:191
1313
- #: app/features/mec/meta_boxes/search_form.php:198
1314
- #: app/features/mec/meta_boxes/search_form.php:217
1315
- #: app/features/mec/meta_boxes/search_form.php:224
1316
- #: app/features/mec/meta_boxes/search_form.php:231
1317
- #: app/features/mec/meta_boxes/search_form.php:238
1318
- #: app/features/mec/meta_boxes/search_form.php:245
1319
- #: app/features/mec/meta_boxes/search_form.php:252
1320
- #: app/features/mec/meta_boxes/search_form.php:259
1321
- #: app/features/mec/meta_boxes/search_form.php:278
1322
- #: app/features/mec/meta_boxes/search_form.php:285
1323
- #: app/features/mec/meta_boxes/search_form.php:292
1324
- #: app/features/mec/meta_boxes/search_form.php:299
1325
- #: app/features/mec/meta_boxes/search_form.php:306
1326
- #: app/features/mec/meta_boxes/search_form.php:313
1327
- #: app/features/mec/meta_boxes/search_form.php:320
1328
- #: app/features/mec/meta_boxes/search_form.php:339
1329
- #: app/features/mec/meta_boxes/search_form.php:346
1330
- #: app/features/mec/meta_boxes/search_form.php:353
1331
- #: app/features/mec/meta_boxes/search_form.php:360
1332
- #: app/features/mec/meta_boxes/search_form.php:367
1333
- #: app/features/mec/meta_boxes/search_form.php:374
1334
- #: app/features/mec/meta_boxes/search_form.php:381
1335
- #: app/features/mec/meta_boxes/search_form.php:400
1336
- #: app/features/mec/meta_boxes/search_form.php:407
1337
- #: app/features/mec/meta_boxes/search_form.php:414
1338
- #: app/features/mec/meta_boxes/search_form.php:421
1339
- #: app/features/mec/meta_boxes/search_form.php:428
1340
- #: app/features/mec/meta_boxes/search_form.php:435
1341
- #: app/features/mec/meta_boxes/search_form.php:454
1342
- #: app/features/mec/meta_boxes/search_form.php:461
1343
- #: app/features/mec/meta_boxes/search_form.php:468
1344
- #: app/features/mec/meta_boxes/search_form.php:475
1345
- #: app/features/mec/meta_boxes/search_form.php:482
1346
- #: app/features/mec/meta_boxes/search_form.php:489
1347
- #: app/features/mec/meta_boxes/search_form.php:496
1348
- #: app/features/mec/meta_boxes/search_form.php:515
1349
- #: app/features/mec/meta_boxes/search_form.php:522
1350
- #: app/features/mec/meta_boxes/search_form.php:529
1351
- #: app/features/mec/meta_boxes/search_form.php:536
1352
- #: app/features/mec/meta_boxes/search_form.php:543
1353
- #: app/features/mec/meta_boxes/search_form.php:550
1354
- #: app/features/mec/meta_boxes/search_form.php:557
1355
- #: app/features/mec/meta_boxes/search_form.php:576
1356
- #: app/features/mec/meta_boxes/search_form.php:583
1357
- #: app/features/mec/meta_boxes/search_form.php:590
1358
- #: app/features/mec/meta_boxes/search_form.php:597
1359
- #: app/features/mec/meta_boxes/search_form.php:604
1360
- #: app/features/mec/meta_boxes/search_form.php:611
1361
- #: app/features/mec/meta_boxes/search_form.php:618
1362
- #: app/features/mec/regform.php:274 app/libraries/main.php:2504
1363
  msgid "Dropdown"
1364
  msgstr "Dropdown"
1365
 
1366
- #: app/features/events.php:2333 app/features/mec/regform.php:275
1367
- #: app/libraries/main.php:2551
1368
  msgid "Agreement"
1369
  msgstr "Zustimmung"
1370
 
1371
- #: app/features/events.php:2334 app/features/mec/regform.php:276
1372
- #: app/libraries/main.php:2392
1373
  msgid "Paragraph"
1374
  msgstr "Absatz"
1375
 
1376
- #: app/features/events.php:2910 app/features/events.php:2927
1377
- #: app/features/events.php:2944
1378
  #, php-format
1379
  msgid "Show all %s"
1380
  msgstr "Zeige alle %s"
1381
 
1382
- #: app/features/events.php:2910
1383
  msgid "labels"
1384
  msgstr "Labels + Eventstatus"
1385
 
1386
- #: app/features/events.php:2927
1387
  msgid "locations"
1388
  msgstr "Orte"
1389
 
1390
- #: app/features/events.php:2944
1391
  msgid "organizers"
1392
  msgstr "Veranstalter"
1393
 
1394
- #: app/features/events.php:2973 app/features/events.php:3157
1395
- #: app/features/events.php:3199 app/features/ix.php:2740
1396
  #: app/features/ix.php:2781 app/features/locations.php:58
1397
  #: app/features/locations.php:229 app/features/locations.php:286
1398
  #: app/features/locations.php:288 app/features/locations.php:297
1399
  #: app/features/mec/meta_boxes/display_options.php:800
1400
  #: app/features/mec/meta_boxes/search_form.php:38
1401
- #: app/features/mec/meta_boxes/search_form.php:99
1402
- #: app/features/mec/meta_boxes/search_form.php:160
1403
- #: app/features/mec/meta_boxes/search_form.php:221
1404
- #: app/features/mec/meta_boxes/search_form.php:282
1405
- #: app/features/mec/meta_boxes/search_form.php:343
1406
- #: app/features/mec/meta_boxes/search_form.php:404
1407
- #: app/features/mec/meta_boxes/search_form.php:458
1408
- #: app/features/mec/meta_boxes/search_form.php:519
1409
- #: app/features/mec/meta_boxes/search_form.php:580 app/libraries/main.php:1688
1410
- #: app/libraries/main.php:4483 app/libraries/skins.php:807
1411
- #: app/skins/single.php:337 app/skins/single.php:754
 
1412
  #: app/skins/single/default.php:153 app/skins/single/default.php:364
1413
  #: app/skins/single/m1.php:155 app/skins/single/m2.php:87
1414
  #: app/skins/single/modern.php:94
1415
  msgid "Location"
1416
  msgstr "Ort"
1417
 
1418
- #: app/features/events.php:2974 app/features/events.php:3157
1419
- #: app/features/events.php:3199 app/features/ix.php:2740
1420
  #: app/features/ix.php:2781 app/features/mec/meta_boxes/display_options.php:801
1421
  #: app/features/mec/meta_boxes/search_form.php:45
1422
- #: app/features/mec/meta_boxes/search_form.php:106
1423
- #: app/features/mec/meta_boxes/search_form.php:167
1424
- #: app/features/mec/meta_boxes/search_form.php:228
1425
- #: app/features/mec/meta_boxes/search_form.php:289
1426
- #: app/features/mec/meta_boxes/search_form.php:350
1427
- #: app/features/mec/meta_boxes/search_form.php:411
1428
- #: app/features/mec/meta_boxes/search_form.php:465
1429
- #: app/features/mec/meta_boxes/search_form.php:526
1430
- #: app/features/mec/meta_boxes/search_form.php:587
1431
- #: app/features/organizers.php:58 app/features/organizers.php:199
1432
- #: app/features/organizers.php:255 app/features/organizers.php:257
1433
- #: app/features/organizers.php:266 app/libraries/main.php:4485
1434
- #: app/libraries/skins.php:833 app/skins/single.php:644
1435
- #: app/skins/single/default.php:194 app/skins/single/default.php:405
1436
- #: app/skins/single/m1.php:90 app/skins/single/m2.php:22
1437
- #: app/skins/single/modern.php:31
1438
  msgid "Organizer"
1439
  msgstr "Veranstalter"
1440
 
1441
- #: app/features/events.php:2978
1442
  msgid "Repeat"
1443
  msgstr "Wiederholen"
1444
 
1445
- #: app/features/events.php:2979
1446
  msgid "Author"
1447
  msgstr "Autor"
1448
 
1449
- #: app/features/events.php:3092 app/features/events.php:3093
1450
  msgid "iCal Export"
1451
  msgstr "ical Export"
1452
 
1453
- #: app/features/events.php:3095 app/features/events.php:3096
1454
  msgid "CSV Export"
1455
  msgstr "CSV Export"
1456
 
1457
- #: app/features/events.php:3098 app/features/events.php:3099
1458
  msgid "MS Excel Export"
1459
  msgstr "MS Excel Export"
1460
 
1461
- #: app/features/events.php:3101 app/features/events.php:3102
1462
  msgid "XML Export"
1463
  msgstr "XML Export"
1464
 
1465
- #: app/features/events.php:3104 app/features/events.php:3105
1466
  msgid "JSON Export"
1467
  msgstr "JSON Export"
1468
 
1469
- #: app/features/events.php:3107 app/features/events.php:3108
1470
  msgid "Duplicate"
1471
  msgstr "Kopie"
1472
 
1473
- #: app/features/events.php:3157 app/features/events.php:3199
1474
  #: app/features/ix.php:2740 app/features/ix.php:2781
1475
  #: app/features/labels.php:176 app/features/locations.php:228
1476
  #: app/features/organizers.php:198 app/features/speakers.php:242
1477
  msgid "ID"
1478
  msgstr "ID"
1479
 
1480
- #: app/features/events.php:3157 app/features/events.php:3199
1481
  #: app/features/ix.php:2740 app/features/ix.php:2781
1482
  msgid "Link"
1483
  msgstr "Link"
1484
 
1485
- #: app/features/events.php:3157 app/features/events.php:3199
1486
  #, php-format
1487
  msgid "%s Tel"
1488
  msgstr "%s Tel"
1489
 
1490
- #: app/features/events.php:3157 app/features/events.php:3199
1491
  #, php-format
1492
  msgid "%s Email"
1493
  msgstr "%s Email"
1494
 
1495
- #: app/features/fes.php:83
1496
  #, php-format
1497
  msgid "Please %s/%s in order to submit new events."
1498
  msgstr "Um neue Veranstaltungen einzugeben, bitte %s/%s"
1499
 
1500
- #: app/features/fes.php:83 app/features/fes.php:161 app/features/profile.php:74
1501
  msgid "Login"
1502
  msgstr "Login"
1503
 
1504
- #: app/features/fes.php:83 app/features/fes.php:161 app/features/profile.php:74
1505
  msgid "Register"
1506
  msgstr "Anmelden"
1507
 
1508
- #: app/features/fes.php:96
1509
  msgid "Sorry! Selected post is not an event."
1510
  msgstr ""
1511
  "Entschuldigung! Beim ausgewählten Beitrag handelt es sich um keine "
1512
  "Veranstaltung."
1513
 
1514
- #: app/features/fes.php:107 app/features/fes.php:146
1515
  msgid "Sorry! You don't have access to modify this event."
1516
  msgstr ""
1517
  "Entschuldigung! Sie haben keine Berechtigung zum Ändern dieser Veranstaltung"
1518
 
1519
- #: app/features/fes.php:161
1520
  #, php-format
1521
  msgid "Please %s/%s in order to manage events."
1522
  msgstr "Bitte %s/%s um Veranstaltungen managen zu können."
1523
 
1524
- #: app/features/fes.php:191
1525
  msgid "The event removed!"
1526
  msgstr "Die Veranstaltung wurde entfernt."
1527
 
1528
- #: app/features/fes.php:226
1529
  msgid "The image is uploaded!"
1530
  msgstr "Das Bild ist hochgeladen"
1531
 
1532
- #: app/features/fes.php:252
1533
  msgid "Captcha is invalid! Please try again."
1534
  msgstr "Das eingegebene Captcha ist ungültig! Bitte versuchen Sie es erneut."
1535
 
1536
- #: app/features/fes.php:264
1537
  msgid "Please fill event title field!"
1538
  msgstr "Bitte füllen Sie das Event Titelfeld"
1539
 
1540
- #: app/features/fes.php:832
1541
  msgid "The event submitted. It will publish as soon as possible."
1542
  msgstr ""
1543
  "Die Veranstaltung wurde übermittelt. Sie wird sobald wie möglich "
1544
  "veröffentlicht werden."
1545
 
1546
- #: app/features/fes.php:833
1547
  msgid "The event published."
1548
  msgstr "Die Veranstaltung wurde veröffentlicht."
1549
 
@@ -1580,7 +1596,7 @@ msgstr ""
1580
  "dieser durch einen neuen link ersetzt werden. Vollständigen Link einfügen, "
1581
  "einschließlich http(s)://"
1582
 
1583
- #: app/features/fes/form.php:723 app/features/mec/settings.php:767
1584
  msgid "Featured Image"
1585
  msgstr "Ausgewähltes Bild"
1586
 
@@ -1590,7 +1606,7 @@ msgstr "Bild entfernen"
1590
 
1591
  #: app/features/fes/form.php:770 app/features/labels.php:61
1592
  #: app/features/labels.php:220 app/features/mec.php:333
1593
- #: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4480
1594
  #: app/skins/single.php:536 app/skins/single/default.php:132
1595
  #: app/skins/single/default.php:343 app/skins/single/m1.php:64
1596
  #: app/skins/single/modern.php:214
@@ -1632,12 +1648,12 @@ msgstr "Keine Veranstaltungen gefunden! %s"
1632
  msgid "MEC - Import / Export"
1633
  msgstr "MEC - Import / Export"
1634
 
1635
- #: app/features/ix.php:107 app/features/mec/booking.php:203
1636
- #: app/features/mec/gateways.php:168 app/features/mec/ie.php:164
1637
- #: app/features/mec/messages.php:168 app/features/mec/modules.php:230
1638
- #: app/features/mec/notifications.php:204 app/features/mec/regform.php:202
1639
- #: app/features/mec/settings.php:235 app/features/mec/single.php:196
1640
- #: app/features/mec/styles.php:168 app/features/mec/styling.php:190
1641
  #: app/features/mec/support.php:73
1642
  msgid "Import / Export"
1643
  msgstr "Import / Export"
@@ -1780,7 +1796,7 @@ msgstr "Synchronisation"
1780
  #: app/features/ix/import.php:15 app/features/ix/import_f_calendar.php:15
1781
  #: app/features/ix/import_g_calendar.php:15
1782
  #: app/features/ix/import_meetup.php:15 app/features/ix/sync.php:15
1783
- #: app/features/ix/thirdparty.php:15 app/features/mec/ie.php:188
1784
  msgid "Export"
1785
  msgstr "Export"
1786
 
@@ -1791,7 +1807,7 @@ msgstr "Export"
1791
  #: app/features/ix/import_g_calendar.php:103
1792
  #: app/features/ix/import_meetup.php:16 app/features/ix/import_meetup.php:85
1793
  #: app/features/ix/sync.php:16 app/features/ix/thirdparty.php:16
1794
- #: app/features/ix/thirdparty.php:98 app/features/mec/ie.php:177
1795
  msgid "Import"
1796
  msgstr "Import"
1797
 
@@ -1814,7 +1830,7 @@ msgstr ""
1814
  "Dies wird alle Ihre Eventdaten von der Webseite in Ihr gewünschtes Format "
1815
  "exportieren."
1816
 
1817
- #: app/features/ix/export.php:25 app/features/mec/modules.php:375
1818
  msgid "iCal"
1819
  msgstr "iCal"
1820
 
@@ -1917,16 +1933,16 @@ msgstr "Umschalten"
1917
  #: app/features/ix/export_g_calendar.php:72
1918
  #: app/features/ix/export_g_calendar.php:147
1919
  #: app/features/ix/export_g_calendar.php:164
1920
- #: app/features/mec/notifications.php:282
1921
- #: app/features/mec/notifications.php:334
1922
- #: app/features/mec/notifications.php:387
1923
- #: app/features/mec/notifications.php:588
1924
  msgid "Add to Google Calendar"
1925
  msgstr "Zum Google Kalender hinzufügen"
1926
 
1927
- #: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:571
1928
- #: app/features/mec/modules.php:602 app/features/mec/notifications.php:735
1929
- #: app/features/mec/settings.php:1030 app/features/mec/single.php:429
1930
  msgid "Checking ..."
1931
  msgstr "Überprüfung"
1932
 
@@ -1970,26 +1986,26 @@ msgstr ""
1970
  msgid "ICS Feed"
1971
  msgstr ""
1972
 
1973
- #: app/features/ix/import.php:46 app/features/mec/booking.php:222
1974
- #: app/features/mec/booking.php:333 app/features/mec/booking.php:351
1975
- #: app/features/mec/booking.php:428 app/features/mec/modules.php:267
1976
- #: app/features/mec/modules.php:408 app/features/mec/modules.php:425
1977
  #, php-format
1978
  msgid "%s is required to use this feature."
1979
  msgstr ""
1980
 
1981
  #: app/features/ix/import.php:46 app/features/ix/sync.php:22
1982
- #: app/features/mec/booking.php:222 app/features/mec/booking.php:333
1983
- #: app/features/mec/booking.php:351 app/features/mec/booking.php:428
1984
  #: app/features/mec/meta_boxes/display_options.php:296
1985
  #: app/features/mec/meta_boxes/display_options.php:423
1986
  #: app/features/mec/meta_boxes/display_options.php:474
1987
  #: app/features/mec/meta_boxes/display_options.php:581
1988
  #: app/features/mec/meta_boxes/display_options.php:688
1989
  #: app/features/mec/meta_boxes/display_options.php:761
1990
- #: app/features/mec/meta_boxes/display_options.php:941
1991
- #: app/features/mec/modules.php:267 app/features/mec/modules.php:408
1992
- #: app/features/mec/modules.php:425
1993
  msgid "Pro version of Modern Events Calendar"
1994
  msgstr ""
1995
 
@@ -2182,7 +2198,7 @@ msgstr "Automatischer Google Calender Import"
2182
 
2183
  #: app/features/ix/sync.php:32 app/features/ix/sync.php:41
2184
  #: app/features/ix/sync.php:52 app/features/ix/sync.php:63
2185
- #: app/features/mec/notifications.php:531
2186
  msgid "Important Note"
2187
  msgstr "Important Note"
2188
 
@@ -2318,10 +2334,10 @@ msgstr "Wähle Label Farbe"
2318
  #: app/features/mec/meta_boxes/display_options.php:479
2319
  #: app/features/mec/meta_boxes/display_options.php:529
2320
  #: app/features/mec/meta_boxes/display_options.php:693
2321
- #: app/features/mec/meta_boxes/display_options.php:823
2322
- #: app/features/mec/meta_boxes/display_options.php:880
2323
- #: app/features/mec/meta_boxes/display_options.php:972
2324
- #: app/features/mec/meta_boxes/display_options.php:1058
2325
  msgid "Style"
2326
  msgstr "Style"
2327
 
@@ -2331,7 +2347,7 @@ msgstr ""
2331
 
2332
  #: app/features/labels.php:116 app/features/labels.php:141
2333
  #: app/skins/agenda/render.php:37 app/skins/available_spot/tpl.php:31
2334
- #: app/skins/carousel/render.php:58 app/skins/countdown/tpl.php:24
2335
  #: app/skins/cover/tpl.php:28 app/skins/daily_view/render.php:23
2336
  #: app/skins/grid/render.php:49 app/skins/list/render.php:36
2337
  #: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:82
@@ -2345,8 +2361,8 @@ msgid "Featured"
2345
  msgstr "Ausgewähltes Bild"
2346
 
2347
  #: app/features/labels.php:117 app/features/labels.php:142
2348
- #: app/libraries/main.php:4707 app/skins/agenda/render.php:41
2349
- #: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:59
2350
  #: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
2351
  #: app/skins/daily_view/render.php:27 app/skins/grid/render.php:53
2352
  #: app/skins/list/render.php:40 app/skins/masonry/render.php:29
@@ -2379,8 +2395,8 @@ msgid "Event %s"
2379
  msgstr "Event %s"
2380
 
2381
  #: app/features/locations.php:59 app/features/mec.php:334
2382
- #: app/features/mec/dashboard.php:202 app/features/mec/meta_boxes/filter.php:87
2383
- #: app/libraries/main.php:4482
2384
  msgid "Locations"
2385
  msgstr "Orte"
2386
 
@@ -2454,7 +2470,7 @@ msgstr ""
2454
  "z.B. Karlsruhe Schlosshotel oder Frankfurt Allianz oder Dortmund "
2455
  "Westfalenhalle"
2456
 
2457
- #: app/features/locations.php:309 app/features/mec/settings.php:797
2458
  #: app/widgets/single.php:115
2459
  msgid "Event Location"
2460
  msgstr "Veranstaltungsort"
@@ -2492,7 +2508,7 @@ msgstr "Bild wählen"
2492
  msgid "Don't show map in single event page"
2493
  msgstr "Karte in Einzelansicht nicht anzeigen"
2494
 
2495
- #: app/features/locations.php:355 app/libraries/main.php:4516
2496
  #, fuzzy
2497
  #| msgid "Locations"
2498
  msgid "Other Locations"
@@ -2547,14 +2563,14 @@ msgstr "Support"
2547
  msgid "Support"
2548
  msgstr "Support"
2549
 
2550
- #: app/features/mec.php:335 app/features/mec/dashboard.php:209
2551
  #: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
2552
- #: app/libraries/main.php:4484
2553
  msgid "Organizers"
2554
  msgstr "Veranstalter"
2555
 
2556
  #: app/features/mec.php:343 app/features/mec.php:363
2557
- #: app/features/mec/dashboard.php:195
2558
  msgid "Shortcodes"
2559
  msgstr "Shortcodes"
2560
 
@@ -2608,19 +2624,19 @@ msgstr "Filteroptionen"
2608
  msgid "Search Form"
2609
  msgstr "Suche Formular"
2610
 
2611
- #: app/features/mec.php:817
2612
  msgid "Display content's images as Popup"
2613
  msgstr ""
2614
 
2615
- #: app/features/mec.php:830
2616
  msgid "Single Event Display Method"
2617
  msgstr "Single Event Anzeigemethode"
2618
 
2619
- #: app/features/mec.php:835
2620
  msgid "Separate Window"
2621
  msgstr "Separates Fenster"
2622
 
2623
- #: app/features/mec.php:836
2624
  msgid "Modal 1"
2625
  msgstr "Modal 1"
2626
 
@@ -2654,40 +2670,40 @@ msgid ""
2654
  "your host provider in this regard."
2655
  msgstr ""
2656
 
2657
- #: app/features/mec/booking.php:24 app/features/mec/booking.php:511
2658
- #: app/features/mec/booking.php:521 app/features/mec/booking.php:588
2659
- #: app/features/mec/booking.php:602 app/features/mec/gateways.php:11
2660
- #: app/features/mec/gateways.php:195 app/features/mec/gateways.php:204
2661
- #: app/features/mec/gateways.php:245 app/features/mec/gateways.php:255
2662
- #: app/features/mec/messages.php:11 app/features/mec/messages.php:202
2663
- #: app/features/mec/messages.php:211 app/features/mec/messages.php:245
2664
- #: app/features/mec/messages.php:254 app/features/mec/modules.php:22
2665
- #: app/features/mec/modules.php:542 app/features/mec/modules.php:552
2666
- #: app/features/mec/modules.php:619 app/features/mec/modules.php:633
2667
- #: app/features/mec/notifications.php:10 app/features/mec/notifications.php:644
2668
- #: app/features/mec/notifications.php:656
2669
- #: app/features/mec/notifications.php:752
2670
- #: app/features/mec/notifications.php:766 app/features/mec/regform.php:47
2671
- #: app/features/mec/regform.php:282 app/features/mec/regform.php:337
2672
- #: app/features/mec/regform.php:373 app/features/mec/regform.php:382
2673
- #: app/features/mec/settings.php:31 app/features/mec/settings.php:954
2674
- #: app/features/mec/settings.php:964 app/features/mec/settings.php:1047
2675
- #: app/features/mec/settings.php:1061 app/features/mec/single.php:14
2676
- #: app/features/mec/single.php:369 app/features/mec/single.php:379
2677
- #: app/features/mec/single.php:446 app/features/mec/single.php:460
2678
- #: app/features/mec/styles.php:11 app/features/mec/styles.php:188
2679
- #: app/features/mec/styles.php:197 app/features/mec/styles.php:234
2680
- #: app/features/mec/styles.php:243 app/features/mec/styling.php:33
2681
- #: app/features/mec/styling.php:395 app/features/mec/styling.php:404
2682
- #: app/features/mec/styling.php:467 app/features/mec/styling.php:476
2683
  msgid "Save Changes"
2684
  msgstr "Änderungen sichern"
2685
 
2686
  #: app/features/mec/booking.php:38 app/features/mec/gateways.php:29
2687
  #: app/features/mec/ie.php:25 app/features/mec/messages.php:29
2688
  #: app/features/mec/modules.php:36 app/features/mec/notifications.php:28
2689
- #: app/features/mec/regform.php:65 app/features/mec/settings.php:57
2690
- #: app/features/mec/settings.php:364 app/features/mec/single.php:28
2691
  #: app/features/mec/styles.php:29 app/features/mec/styling.php:51
2692
  msgid "Archive Pages"
2693
  msgstr ""
@@ -2695,264 +2711,303 @@ msgstr ""
2695
  #: app/features/mec/booking.php:43 app/features/mec/gateways.php:34
2696
  #: app/features/mec/ie.php:30 app/features/mec/messages.php:34
2697
  #: app/features/mec/modules.php:41 app/features/mec/notifications.php:33
2698
- #: app/features/mec/regform.php:70 app/features/mec/settings.php:87
2699
- #: app/features/mec/settings.php:870 app/features/mec/single.php:33
2700
  #: app/features/mec/styles.php:34 app/features/mec/styling.php:56
2701
  msgid "User Profile"
2702
  msgstr ""
2703
 
2704
- #: app/features/mec/booking.php:47 app/features/mec/gateways.php:38
2705
- #: app/features/mec/ie.php:34 app/features/mec/messages.php:38
2706
- #: app/features/mec/modules.php:45 app/features/mec/notifications.php:37
2707
- #: app/features/mec/regform.php:74 app/features/mec/settings.php:103
2708
- #: app/features/mec/single.php:37 app/features/mec/styles.php:38
2709
- #: app/features/mec/styling.php:60
 
 
 
 
 
 
 
 
 
 
 
2710
  #, fuzzy
2711
  #| msgid "Upload/Add image"
2712
  msgid "Upload Field"
2713
  msgstr "Bild hochladen/hinzufügen"
2714
 
2715
- #: app/features/mec/booking.php:55 app/features/mec/gateways.php:46
2716
- #: app/features/mec/ie.php:42 app/features/mec/messages.php:46
2717
- #: app/features/mec/modules.php:53 app/features/mec/notifications.php:45
2718
- #: app/features/mec/regform.php:82 app/features/mec/settings.php:113
2719
- #: app/features/mec/single.php:49 app/features/mec/styles.php:46
2720
- #: app/features/mec/styling.php:68
2721
  #, fuzzy
2722
  #| msgid "Single Event Style"
2723
  msgid "Single Event"
2724
  msgstr "Single Event Stil"
2725
 
2726
- #: app/features/mec/booking.php:59 app/features/mec/gateways.php:50
2727
- #: app/features/mec/ie.php:46 app/features/mec/messages.php:50
2728
- #: app/features/mec/modules.php:57 app/features/mec/notifications.php:49
2729
- #: app/features/mec/regform.php:86 app/features/mec/settings.php:117
2730
- #: app/features/mec/single.php:56 app/features/mec/single.php:213
2731
- #: app/features/mec/styles.php:50 app/features/mec/styling.php:72
2732
  #, fuzzy
2733
  #| msgid "Single Event Style"
2734
  msgid "Single Event Page"
2735
  msgstr "Single Event Stil"
2736
 
2737
- #: app/features/mec/booking.php:62 app/features/mec/gateways.php:53
2738
- #: app/features/mec/ie.php:49 app/features/mec/messages.php:53
2739
- #: app/features/mec/modules.php:60 app/features/mec/notifications.php:52
2740
- #: app/features/mec/regform.php:89 app/features/mec/settings.php:120
2741
- #: app/features/mec/single.php:74 app/features/mec/single.php:348
2742
- #: app/features/mec/styles.php:53 app/features/mec/styling.php:75
2743
- msgid "Additional Organizers"
2744
- msgstr "Zusätzliche Organisatoren"
2745
-
2746
  #: app/features/mec/booking.php:63 app/features/mec/gateways.php:54
2747
  #: app/features/mec/ie.php:50 app/features/mec/messages.php:54
2748
  #: app/features/mec/modules.php:61 app/features/mec/notifications.php:53
2749
- #: app/features/mec/regform.php:90 app/features/mec/settings.php:121
2750
- #: app/features/mec/single.php:80 app/features/mec/styles.php:54
2751
- #: app/features/mec/styling.php:76
 
 
 
 
 
 
 
 
 
2752
  #, fuzzy
2753
  #| msgid "Additional Organizers"
2754
  msgid "Additional Locations"
2755
  msgstr "Zusätzliche Organisatoren"
2756
 
2757
- #: app/features/mec/booking.php:98 app/features/mec/booking.php:348
2758
- #: app/features/mec/gateways.php:71 app/features/mec/ie.php:67
2759
- #: app/features/mec/messages.php:71 app/features/mec/modules.php:78
2760
- #: app/features/mec/notifications.php:70 app/features/mec/regform.php:107
2761
- #: app/features/mec/settings.php:138 app/features/mec/single.php:99
2762
- #: app/features/mec/styles.php:71 app/features/mec/styling.php:93
2763
- msgid "Taxes / Fees"
2764
- msgstr "Steuern/Gebühren"
2765
-
2766
- #: app/features/mec/booking.php:104 app/features/mec/booking.php:425
2767
  #: app/features/mec/gateways.php:72 app/features/mec/ie.php:68
2768
  #: app/features/mec/messages.php:72 app/features/mec/modules.php:79
2769
- #: app/features/mec/notifications.php:71 app/features/mec/regform.php:108
2770
- #: app/features/mec/settings.php:139 app/features/mec/single.php:100
2771
  #: app/features/mec/styles.php:72 app/features/mec/styling.php:94
 
 
 
 
 
 
 
 
 
2772
  msgid "Ticket Variations & Options"
2773
  msgstr ""
2774
 
2775
- #: app/features/mec/booking.php:118 app/features/mec/gateways.php:83
2776
- #: app/features/mec/ie.php:79 app/features/mec/messages.php:83
2777
- #: app/features/mec/modules.php:94 app/features/mec/notifications.php:82
2778
- #: app/features/mec/regform.php:119 app/features/mec/settings.php:150
2779
- #: app/features/mec/single.php:111 app/features/mec/styles.php:83
2780
- #: app/features/mec/styling.php:105
2781
  #, fuzzy
2782
  #| msgid "Social Module : "
2783
  msgid "Modules"
2784
  msgstr "Social Modul:"
2785
 
2786
- #: app/features/mec/booking.php:126 app/features/mec/gateways.php:91
2787
- #: app/features/mec/ie.php:87 app/features/mec/messages.php:91
2788
- #: app/features/mec/modules.php:117 app/features/mec/modules.php:364
2789
- #: app/features/mec/notifications.php:90 app/features/mec/regform.php:127
2790
- #: app/features/mec/settings.php:158 app/features/mec/single.php:119
2791
- #: app/features/mec/styles.php:91 app/features/mec/styling.php:113
2792
  #, fuzzy
2793
  #| msgid "Import Options"
2794
  msgid "Export Options"
2795
  msgstr "Import Optionen"
2796
 
2797
- #: app/features/mec/booking.php:127 app/features/mec/gateways.php:92
2798
- #: app/features/mec/ie.php:88 app/features/mec/messages.php:92
2799
- #: app/features/mec/modules.php:123 app/features/mec/modules.php:391
2800
- #: app/features/mec/notifications.php:91 app/features/mec/regform.php:128
2801
- #: app/features/mec/settings.php:159 app/features/mec/single.php:120
2802
- #: app/features/mec/styles.php:92 app/features/mec/styling.php:114
2803
  #: app/modules/local-time/details.php:42 app/widgets/single.php:99
2804
  msgid "Local Time"
2805
  msgstr "Lokale Zeit"
2806
 
2807
- #: app/features/mec/booking.php:129 app/features/mec/gateways.php:94
2808
- #: app/features/mec/ie.php:90 app/features/mec/messages.php:94
2809
- #: app/features/mec/modules.php:131 app/features/mec/modules.php:405
2810
- #: app/features/mec/notifications.php:93 app/features/mec/regform.php:130
2811
- #: app/features/mec/settings.php:161 app/features/mec/single.php:122
2812
- #: app/features/mec/styles.php:94 app/features/mec/styling.php:116
2813
  #: app/modules/qrcode/details.php:38 app/widgets/single.php:155
2814
  msgid "QR Code"
2815
  msgstr "QR Code"
2816
 
2817
- #: app/features/mec/booking.php:130 app/features/mec/gateways.php:95
2818
- #: app/features/mec/ie.php:91 app/features/mec/messages.php:95
2819
- #: app/features/mec/modules.php:137 app/features/mec/modules.php:423
2820
- #: app/features/mec/notifications.php:94 app/features/mec/regform.php:131
2821
- #: app/features/mec/settings.php:162 app/features/mec/single.php:123
2822
- #: app/features/mec/styles.php:95 app/features/mec/styling.php:117
2823
- #: app/modules/weather/details.php:36
2824
  msgid "Weather"
2825
  msgstr "Wetter"
2826
 
2827
- #: app/features/mec/booking.php:133 app/features/mec/gateways.php:98
2828
- #: app/features/mec/ie.php:94 app/features/mec/messages.php:98
2829
- #: app/features/mec/modules.php:151 app/features/mec/modules.php:473
2830
- #: app/features/mec/notifications.php:97 app/features/mec/regform.php:134
2831
- #: app/features/mec/settings.php:165 app/features/mec/single.php:126
2832
- #: app/features/mec/styles.php:98 app/features/mec/styling.php:120
2833
  #: app/modules/next-event/details.php:82
2834
  msgid "Next Event"
2835
  msgstr "Nächstes Event"
2836
 
2837
- #: app/features/mec/booking.php:168 app/features/mec/gateways.php:133
2838
- #: app/features/mec/ie.php:129 app/features/mec/messages.php:133
2839
- #: app/features/mec/modules.php:195 app/features/mec/notifications.php:142
2840
- #: app/features/mec/notifications.php:289 app/features/mec/regform.php:167
2841
- #: app/features/mec/settings.php:200 app/features/mec/single.php:161
2842
- #: app/features/mec/styles.php:133 app/features/mec/styling.php:155
2843
  msgid "Booking Verification"
2844
  msgstr "Verifizierung der Buchung"
2845
 
2846
- #: app/features/mec/booking.php:169 app/features/mec/booking.php:304
2847
- #: app/features/mec/gateways.php:134 app/features/mec/ie.php:130
2848
- #: app/features/mec/messages.php:134 app/features/mec/modules.php:196
2849
- #: app/features/mec/notifications.php:148
2850
- #: app/features/mec/notifications.php:341 app/features/mec/regform.php:168
2851
- #: app/features/mec/settings.php:201 app/features/mec/single.php:162
2852
- #: app/features/mec/styles.php:134 app/features/mec/styling.php:156
2853
  msgid "Booking Confirmation"
2854
  msgstr "Buchungsbestätigung"
2855
 
2856
- #: app/features/mec/booking.php:170 app/features/mec/gateways.php:135
2857
- #: app/features/mec/ie.php:131 app/features/mec/messages.php:135
2858
- #: app/features/mec/modules.php:197 app/features/mec/notifications.php:154
2859
- #: app/features/mec/notifications.php:393 app/features/mec/regform.php:169
2860
- #: app/features/mec/settings.php:202 app/features/mec/single.php:163
2861
- #: app/features/mec/styles.php:135 app/features/mec/styling.php:157
2862
  #, fuzzy
2863
  #| msgid "Booking cancellation link."
2864
  msgid "Booking Cancellation"
2865
  msgstr "Link zur Stornierung der Buchung"
2866
 
2867
- #: app/features/mec/booking.php:171 app/features/mec/gateways.php:136
2868
- #: app/features/mec/ie.php:132 app/features/mec/messages.php:136
2869
- #: app/features/mec/modules.php:198 app/features/mec/notifications.php:160
2870
- #: app/features/mec/notifications.php:461 app/features/mec/regform.php:170
2871
- #: app/features/mec/settings.php:203 app/features/mec/single.php:164
2872
- #: app/features/mec/styles.php:136 app/features/mec/styling.php:158
2873
- msgid "Admin"
2874
- msgstr ""
2875
-
2876
  #: app/features/mec/booking.php:172 app/features/mec/gateways.php:137
2877
  #: app/features/mec/ie.php:133 app/features/mec/messages.php:137
2878
- #: app/features/mec/modules.php:199 app/features/mec/notifications.php:166
2879
- #: app/features/mec/notifications.php:521 app/features/mec/regform.php:171
2880
- #: app/features/mec/settings.php:204 app/features/mec/single.php:165
2881
  #: app/features/mec/styles.php:137 app/features/mec/styling.php:159
 
 
 
 
 
 
 
 
 
2882
  #: app/libraries/notifications.php:354
2883
  msgid "Booking Reminder"
2884
  msgstr "Buchungs Erinnerung"
2885
 
2886
- #: app/features/mec/booking.php:174 app/features/mec/gateways.php:139
2887
- #: app/features/mec/ie.php:135 app/features/mec/messages.php:139
2888
- #: app/features/mec/modules.php:201 app/features/mec/notifications.php:172
2889
- #: app/features/mec/notifications.php:597 app/features/mec/regform.php:173
2890
- #: app/features/mec/settings.php:206 app/features/mec/single.php:167
2891
- #: app/features/mec/styles.php:139 app/features/mec/styling.php:161
2892
  #: app/features/mec/support-page.php:80
2893
  msgid "New Event"
2894
  msgstr "Neue Veranstaltung"
2895
 
2896
- #: app/features/mec/booking.php:182 app/features/mec/gateways.php:147
2897
- #: app/features/mec/ie.php:143 app/features/mec/messages.php:147
2898
- #: app/features/mec/modules.php:209 app/features/mec/notifications.php:183
2899
- #: app/features/mec/regform.php:181 app/features/mec/settings.php:214
2900
- #: app/features/mec/single.php:175 app/features/mec/styles.php:147
2901
- #: app/features/mec/styling.php:169 app/features/mec/support.php:52
2902
  msgid "Styling Options"
2903
  msgstr "Styling-Optionen"
2904
 
2905
- #: app/features/mec/booking.php:189 app/features/mec/gateways.php:154
2906
- #: app/features/mec/ie.php:150 app/features/mec/messages.php:154
2907
- #: app/features/mec/modules.php:216 app/features/mec/notifications.php:190
2908
- #: app/features/mec/regform.php:188 app/features/mec/settings.php:221
2909
- #: app/features/mec/single.php:182 app/features/mec/styles.php:154
2910
- #: app/features/mec/styling.php:176 app/features/mec/support.php:59
2911
  msgid "Custom CSS"
2912
  msgstr "Custom CSS"
2913
 
2914
- #: app/features/mec/booking.php:196 app/features/mec/gateways.php:161
2915
- #: app/features/mec/ie.php:157 app/features/mec/messages.php:161
2916
- #: app/features/mec/messages.php:181 app/features/mec/modules.php:223
2917
- #: app/features/mec/notifications.php:197 app/features/mec/regform.php:195
2918
- #: app/features/mec/settings.php:228 app/features/mec/single.php:189
2919
- #: app/features/mec/styles.php:161 app/features/mec/styling.php:183
2920
  #: app/features/mec/support.php:66
2921
  msgid "Messages"
2922
  msgstr "Nachrichten"
2923
 
2924
- #: app/features/mec/booking.php:227
2925
  msgid "Enable booking module"
2926
  msgstr "Buchungsmodul aktivieren"
2927
 
2928
- #: app/features/mec/booking.php:228
2929
  msgid ""
2930
  "After enable it, you should reloading this page to see Payment Gateways on "
2931
  "settings and see a new menu on Dashboard"
2932
  msgstr ""
2933
 
2934
- #: app/features/mec/booking.php:233 app/features/mec/booking.php:238
2935
- #: app/features/mec/modules.php:491 app/features/mec/modules.php:496
2936
  msgid "Date Format"
2937
  msgstr "Datumsformat"
2938
 
2939
- #: app/features/mec/booking.php:239
2940
  msgid "Default is Y-m-d"
2941
  msgstr "Voreinstellung ist J-M-T"
2942
 
2943
- #: app/features/mec/booking.php:246
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2944
  msgid "Maximum Dates"
2945
  msgstr "Maximale Anzahl von Daten"
2946
 
2947
- #: app/features/mec/booking.php:248
2948
  msgid "Default is 6"
2949
  msgstr "Die Voreinstellung ist 6"
2950
 
2951
- #: app/features/mec/booking.php:252 app/features/mec/booking.php:262
2952
  msgid "Thank You Page"
2953
  msgstr "Danke Seite"
2954
 
2955
- #: app/features/mec/booking.php:263
2956
  msgid ""
2957
  "User redirects to this page after booking. Leave it empty if you want to "
2958
  "disable it."
@@ -2960,15 +3015,15 @@ msgstr ""
2960
  "Benutzer werden auf diese Seite nach der Buchung weitergeleitet. Lassen Sie "
2961
  "es leer, wenn Sie es deaktivieren möchten."
2962
 
2963
- #: app/features/mec/booking.php:274
2964
  msgid "Enable Express Attendees Form"
2965
  msgstr "Aktivieren Sie das Express-Teilnehmerformular"
2966
 
2967
- #: app/features/mec/booking.php:278 app/modules/booking/steps/form.php:49
2968
  msgid "Attendees Form"
2969
  msgstr "Teilnahmeformular"
2970
 
2971
- #: app/features/mec/booking.php:279
2972
  msgid ""
2973
  "Users are able to apply first attendee information for other attendees in "
2974
  "the booking form."
@@ -2976,82 +3031,88 @@ msgstr ""
2976
  "Benutzer können erste Teilnehmerinformationen für andere Teilnehmer im "
2977
  "Buchungsformular anwenden."
2978
 
2979
- #: app/features/mec/booking.php:285
 
 
 
 
 
 
2980
  msgid "Email verification"
2981
  msgstr "Email-Verifizierung"
2982
 
2983
- #: app/features/mec/booking.php:291
2984
  msgid "Auto verification for free bookings"
2985
  msgstr "Automatische Verifizierung für kostenlose Buchungen"
2986
 
2987
- #: app/features/mec/booking.php:300
2988
  msgid "Auto verification for paid bookings"
2989
  msgstr "Automatische Verifizierung für kostenpflichtige Buchungen"
2990
 
2991
- #: app/features/mec/booking.php:310
2992
  msgid "Auto confirmation for free bookings"
2993
  msgstr "Automatische Bestätigung für kostenlose Buchungen"
2994
 
2995
- #: app/features/mec/booking.php:319
2996
  msgid "Auto confirmation for paid bookings"
2997
  msgstr "Automatische Bestätigung für kostenpflichtige Buchungen"
2998
 
2999
- #: app/features/mec/booking.php:338
3000
  msgid "Enable coupons module"
3001
  msgstr "Gutscheinmodul aktivieren"
3002
 
3003
- #: app/features/mec/booking.php:340
3004
  msgid ""
3005
  "After enable it, you should reloading this page to see a new menu on "
3006
  "Dashboard > Booking"
3007
  msgstr ""
3008
 
3009
- #: app/features/mec/booking.php:356
3010
  msgid "Enable taxes / fees module"
3011
  msgstr "Modul für Gebühren/Steuern aktivieren"
3012
 
3013
- #: app/features/mec/booking.php:361
3014
  msgid "Add Fee"
3015
  msgstr "Gebühr hinzufügen"
3016
 
3017
- #: app/features/mec/booking.php:433
3018
  #, fuzzy
3019
  #| msgid "Enable coupons module"
3020
  msgid "Enable ticket options module"
3021
  msgstr "Gutscheinmodul aktivieren"
3022
 
3023
- #: app/features/mec/booking.php:438
3024
  msgid "Add Variation / Option"
3025
  msgstr ""
3026
 
3027
- #: app/features/mec/booking.php:566 app/features/mec/gateways.php:224
3028
- #: app/features/mec/messages.php:229 app/features/mec/modules.php:597
3029
- #: app/features/mec/notifications.php:730 app/features/mec/regform.php:357
3030
- #: app/features/mec/settings.php:1025 app/features/mec/single.php:424
3031
- #: app/features/mec/styles.php:217 app/features/mec/styling.php:449
3032
  msgid "Saved"
3033
  msgstr "Gesichert"
3034
 
3035
- #: app/features/mec/booking.php:567 app/features/mec/gateways.php:225
3036
- #: app/features/mec/messages.php:230 app/features/mec/modules.php:598
3037
- #: app/features/mec/notifications.php:731 app/features/mec/regform.php:358
3038
- #: app/features/mec/settings.php:1026 app/features/mec/single.php:425
3039
- #: app/features/mec/styles.php:218 app/features/mec/styling.php:450
3040
  msgid "Settings Saved!"
3041
  msgstr ""
3042
 
3043
- #: app/features/mec/booking.php:569 app/features/mec/booking.php:591
3044
- #: app/features/mec/modules.php:600 app/features/mec/modules.php:622
3045
- #: app/features/mec/notifications.php:733
3046
- #: app/features/mec/notifications.php:755 app/features/mec/settings.php:1028
3047
- #: app/features/mec/settings.php:1050 app/features/mec/single.php:427
3048
- #: app/features/mec/single.php:449 app/libraries/main.php:4706
3049
  msgid "Verified"
3050
  msgstr "Verifiziert"
3051
 
3052
- #: app/features/mec/booking.php:593 app/features/mec/modules.php:624
3053
- #: app/features/mec/notifications.php:757 app/features/mec/settings.php:1052
3054
- #: app/features/mec/single.php:451
3055
  msgid "Please Refresh Page"
3056
  msgstr "Bitte Seiten Refresh vornehmen"
3057
 
@@ -3122,90 +3183,106 @@ msgid ""
3122
  "code."
3123
  msgstr ""
3124
 
3125
- #: app/features/mec/dashboard.php:175
3126
  #, fuzzy
3127
  #| msgid "MEC Activation"
3128
  msgid "Activate Addons"
3129
  msgstr "MEC Aktivierung"
3130
 
3131
- #: app/features/mec/dashboard.php:220 app/features/mec/settings.php:535
3132
  msgid "Upcoming Events"
3133
  msgstr "Bevorstehende Events"
3134
 
3135
- #: app/features/mec/dashboard.php:244
3136
  msgid "Popular Gateways"
3137
  msgstr "Beliebte Zahlungsgateways"
3138
 
3139
- #: app/features/mec/dashboard.php:298
3140
  msgid "Total Bookings"
3141
  msgstr "Gesamte Buchungen"
3142
 
3143
- #: app/features/mec/dashboard.php:325
3144
  msgid "This Month"
3145
  msgstr "Diesen Monat"
3146
 
3147
- #: app/features/mec/dashboard.php:326
3148
  msgid "Last Month"
3149
  msgstr "Letzten Monat"
3150
 
3151
- #: app/features/mec/dashboard.php:327
3152
  msgid "This Year"
3153
  msgstr "Diese Jahr"
3154
 
3155
- #: app/features/mec/dashboard.php:328
3156
  msgid "Last Year"
3157
  msgstr "Letztes Jahr"
3158
 
3159
- #: app/features/mec/dashboard.php:340
3160
  msgid "Bar"
3161
  msgstr "Bar"
3162
 
3163
- #: app/features/mec/dashboard.php:341
3164
  msgid "Line"
3165
  msgstr "Linie"
3166
 
3167
- #: app/features/mec/dashboard.php:343
3168
  msgid "Filter"
3169
  msgstr "Filter"
3170
 
3171
- #: app/features/mec/dashboard.php:359
3172
  #, php-format
3173
  msgid "Total Sells (%s)"
3174
  msgstr "Alle Verkäufe (%s)"
3175
 
3176
- #: app/features/mec/dashboard.php:380
3177
  msgid "Change Log"
3178
  msgstr "Änderungsprotokoll"
3179
 
3180
- #: app/features/mec/ie.php:178
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3181
  msgid ""
3182
  "Insert your backup files below and press import to restore your site's "
3183
  "options to the last backup."
3184
  msgstr ""
3185
 
3186
- #: app/features/mec/ie.php:179
3187
  msgid ""
3188
  "WARNING! Restoring backup will overwrite all of your current option values. "
3189
  "Caution Indeed."
3190
  msgstr ""
3191
 
3192
- #: app/features/mec/ie.php:182
3193
  msgid "Please paste your options here"
3194
  msgstr ""
3195
 
3196
- #: app/features/mec/ie.php:184
3197
  #, fuzzy
3198
  #| msgid "Import Options"
3199
  msgid "Import Settings"
3200
  msgstr "Import Optionen"
3201
 
3202
- #: app/features/mec/ie.php:194
3203
  #, fuzzy
3204
  #| msgid "Download Invoice"
3205
  msgid "Download Settings"
3206
  msgstr "Download Rechnung\n"
3207
 
3208
- #: app/features/mec/messages.php:184
3209
  msgid ""
3210
  "You can change some MEC messages here simply. For example if you like to "
3211
  "change \"REGISTER\" button label, you can do it here. By the Way, if your "
@@ -3224,17 +3301,17 @@ msgstr "Skin"
3224
  #: app/features/mec/meta_boxes/display_options.php:34
3225
  #: app/features/mec/meta_boxes/display_options.php:159
3226
  #: app/features/mec/meta_boxes/display_options.php:531
3227
- #: app/features/mec/meta_boxes/display_options.php:825
3228
- #: app/features/mec/settings.php:399 app/features/mec/settings.php:423
3229
- #: app/features/mec/settings.php:432 app/features/mec/settings.php:473
3230
- #: app/features/mec/settings.php:497 app/features/mec/settings.php:506
3231
  msgid "Classic"
3232
  msgstr "Klassisch"
3233
 
3234
  #: app/features/mec/meta_boxes/display_options.php:35
3235
  #: app/features/mec/meta_boxes/display_options.php:161
3236
- #: app/features/mec/settings.php:424 app/features/mec/settings.php:434
3237
- #: app/features/mec/settings.php:498 app/features/mec/settings.php:508
3238
  msgid "Minimal"
3239
  msgstr "Minimal"
3240
 
@@ -3243,21 +3320,21 @@ msgstr "Minimal"
3243
  #: app/features/mec/meta_boxes/display_options.php:481
3244
  #: app/features/mec/meta_boxes/display_options.php:533
3245
  #: app/features/mec/meta_boxes/display_options.php:695
3246
- #: app/features/mec/meta_boxes/display_options.php:827
3247
- #: app/features/mec/settings.php:401 app/features/mec/settings.php:414
3248
- #: app/features/mec/settings.php:425 app/features/mec/settings.php:435
3249
- #: app/features/mec/settings.php:475 app/features/mec/settings.php:488
3250
- #: app/features/mec/settings.php:499 app/features/mec/settings.php:509
3251
  msgid "Modern"
3252
  msgstr "Modern"
3253
 
3254
  #: app/features/mec/meta_boxes/display_options.php:37
3255
- #: app/features/mec/settings.php:426 app/features/mec/settings.php:500
3256
  msgid "Standard"
3257
  msgstr "Standard"
3258
 
3259
  #: app/features/mec/meta_boxes/display_options.php:38
3260
- #: app/features/mec/settings.php:427 app/features/mec/settings.php:501
3261
  msgid "Accordion"
3262
  msgstr "Accordion"
3263
 
@@ -3267,8 +3344,8 @@ msgstr "Accordion"
3267
  #: app/features/mec/meta_boxes/display_options.php:588
3268
  #: app/features/mec/meta_boxes/display_options.php:621
3269
  #: app/features/mec/meta_boxes/display_options.php:768
3270
- #: app/features/mec/meta_boxes/display_options.php:983
3271
- #: app/features/mec/meta_boxes/display_options.php:1070
3272
  msgid "Today"
3273
  msgstr "Heute"
3274
 
@@ -3278,8 +3355,8 @@ msgstr "Heute"
3278
  #: app/features/mec/meta_boxes/display_options.php:589
3279
  #: app/features/mec/meta_boxes/display_options.php:622
3280
  #: app/features/mec/meta_boxes/display_options.php:769
3281
- #: app/features/mec/meta_boxes/display_options.php:984
3282
- #: app/features/mec/meta_boxes/display_options.php:1071
3283
  msgid "Tomorrow"
3284
  msgstr "Morgen"
3285
 
@@ -3293,8 +3370,8 @@ msgstr "Morgen"
3293
  #: app/features/mec/meta_boxes/display_options.php:658
3294
  #: app/features/mec/meta_boxes/display_options.php:704
3295
  #: app/features/mec/meta_boxes/display_options.php:770
3296
- #: app/features/mec/meta_boxes/display_options.php:985
3297
- #: app/features/mec/meta_boxes/display_options.php:1072
3298
  msgid "Start of Current Month"
3299
  msgstr "Mit Beginn des laufenden Monats"
3300
 
@@ -3308,8 +3385,8 @@ msgstr "Mit Beginn des laufenden Monats"
3308
  #: app/features/mec/meta_boxes/display_options.php:659
3309
  #: app/features/mec/meta_boxes/display_options.php:705
3310
  #: app/features/mec/meta_boxes/display_options.php:771
3311
- #: app/features/mec/meta_boxes/display_options.php:986
3312
- #: app/features/mec/meta_boxes/display_options.php:1073
3313
  msgid "Start of Next Month"
3314
  msgstr "Mit Beginn des kommenden Monats"
3315
 
@@ -3324,8 +3401,8 @@ msgstr "Mit Beginn des kommenden Monats"
3324
  #: app/features/mec/meta_boxes/display_options.php:660
3325
  #: app/features/mec/meta_boxes/display_options.php:706
3326
  #: app/features/mec/meta_boxes/display_options.php:772
3327
- #: app/features/mec/meta_boxes/display_options.php:987
3328
- #: app/features/mec/meta_boxes/display_options.php:1074
3329
  msgid "On a certain date"
3330
  msgstr "An einem bestimmten Tag"
3331
 
@@ -3340,8 +3417,8 @@ msgstr "An einem bestimmten Tag"
3340
  #: app/features/mec/meta_boxes/display_options.php:663
3341
  #: app/features/mec/meta_boxes/display_options.php:709
3342
  #: app/features/mec/meta_boxes/display_options.php:775
3343
- #: app/features/mec/meta_boxes/display_options.php:990
3344
- #: app/features/mec/meta_boxes/display_options.php:1077
3345
  #, php-format
3346
  msgid "eg. %s"
3347
  msgstr "z.B. %s"
@@ -3376,36 +3453,36 @@ msgstr "z.B. %s"
3376
  #: app/features/mec/meta_boxes/display_options.php:501
3377
  #: app/features/mec/meta_boxes/display_options.php:779
3378
  #: app/features/mec/meta_boxes/display_options.php:784
3379
- #: app/features/mec/meta_boxes/display_options.php:831
3380
- #: app/features/mec/meta_boxes/display_options.php:837
3381
- #: app/features/mec/meta_boxes/display_options.php:844
3382
- #: app/features/mec/meta_boxes/display_options.php:849
3383
- #: app/features/mec/meta_boxes/display_options.php:856
3384
- #: app/features/mec/meta_boxes/display_options.php:860
3385
- #: app/features/mec/meta_boxes/display_options.php:888
3386
- #: app/features/mec/meta_boxes/display_options.php:892
3387
- #: app/features/mec/meta_boxes/display_options.php:899
3388
- #: app/features/mec/meta_boxes/display_options.php:903
3389
- #: app/features/mec/meta_boxes/display_options.php:910
3390
- #: app/features/mec/meta_boxes/display_options.php:916
3391
- #: app/features/mec/meta_boxes/display_options.php:946
3392
- #: app/features/mec/meta_boxes/display_options.php:951
3393
- #: app/features/mec/meta_boxes/display_options.php:994
3394
- #: app/features/mec/meta_boxes/display_options.php:1000
3395
- #: app/features/mec/meta_boxes/display_options.php:1007
3396
- #: app/features/mec/meta_boxes/display_options.php:1011
3397
- #: app/features/mec/meta_boxes/display_options.php:1018
3398
- #: app/features/mec/meta_boxes/display_options.php:1022
3399
- #: app/features/mec/meta_boxes/display_options.php:1081
3400
- #: app/features/mec/meta_boxes/display_options.php:1087
3401
- #: app/features/mec/meta_boxes/display_options.php:1094
3402
- #: app/features/mec/meta_boxes/display_options.php:1100
3403
  #: app/features/mec/meta_boxes/display_options.php:1107
3404
- #: app/features/mec/meta_boxes/display_options.php:1113
3405
  #: app/features/mec/meta_boxes/display_options.php:1120
3406
- #: app/features/mec/meta_boxes/display_options.php:1126
3407
  #: app/features/mec/meta_boxes/display_options.php:1133
3408
- #: app/features/mec/meta_boxes/display_options.php:1139
 
 
 
3409
  msgid "Date Formats"
3410
  msgstr "Datumsformate"
3411
 
@@ -3421,11 +3498,11 @@ msgstr "Standard Werte sind T, M und J"
3421
  #: app/features/mec/meta_boxes/display_options.php:86
3422
  #: app/features/mec/meta_boxes/display_options.php:224
3423
  #: app/features/mec/meta_boxes/display_options.php:248
3424
- #: app/features/mec/meta_boxes/display_options.php:1088
3425
- #: app/features/mec/meta_boxes/display_options.php:1101
3426
- #: app/features/mec/meta_boxes/display_options.php:1114
3427
- #: app/features/mec/meta_boxes/display_options.php:1127
3428
- #: app/features/mec/meta_boxes/display_options.php:1140
3429
  msgid "Default values are d, F and l"
3430
  msgstr ""
3431
  "Standardwerte sind Tag, Monat als ganzes Wort und Wochentag als ganzes Wort"
@@ -3440,15 +3517,6 @@ msgstr "Standard Wert ist \"M T\""
3440
  msgid "TDefault values are d and F"
3441
  msgstr "Die Standardwerte sind d and F"
3442
 
3443
- #: app/features/mec/meta_boxes/display_options.php:115
3444
- #: app/features/mec/meta_boxes/display_options.php:276
3445
- #: app/features/mec/meta_boxes/display_options.php:332
3446
- #: app/features/mec/meta_boxes/display_options.php:791
3447
- #: app/features/mec/meta_boxes/display_options.php:1038
3448
- #: app/features/mec/meta_boxes/display_options.php:1146
3449
- msgid "Limit"
3450
- msgstr "Limit"
3451
-
3452
  #: app/features/mec/meta_boxes/display_options.php:116
3453
  #: app/features/mec/meta_boxes/display_options.php:277
3454
  #: app/features/mec/meta_boxes/display_options.php:333
@@ -3457,14 +3525,15 @@ msgstr "Limit"
3457
  #: app/features/mec/meta_boxes/display_options.php:634
3458
  #: app/features/mec/meta_boxes/display_options.php:668
3459
  #: app/features/mec/meta_boxes/display_options.php:714
3460
- #: app/features/mec/meta_boxes/display_options.php:1039
3461
- #: app/features/mec/meta_boxes/display_options.php:1147
3462
  msgid "eg. 6"
3463
  msgstr "z.B. 6"
3464
 
3465
  #: app/features/mec/meta_boxes/display_options.php:120
3466
  #: app/features/mec/meta_boxes/display_options.php:281
3467
  #: app/features/mec/meta_boxes/display_options.php:337
 
3468
  msgid "Load More Button"
3469
  msgstr "Button \"Weitere Veranstaltungen Laden\""
3470
 
@@ -3484,18 +3553,18 @@ msgstr "Zeige Monatsteilung"
3484
  #: app/features/mec/meta_boxes/display_options.php:385
3485
  #: app/features/mec/meta_boxes/display_options.php:532
3486
  #: app/features/mec/meta_boxes/display_options.php:696
3487
- #: app/features/mec/meta_boxes/display_options.php:826
3488
- #: app/features/mec/settings.php:400 app/features/mec/settings.php:415
3489
- #: app/features/mec/settings.php:433 app/features/mec/settings.php:474
3490
- #: app/features/mec/settings.php:489 app/features/mec/settings.php:507
3491
  msgid "Clean"
3492
  msgstr "Clean"
3493
 
3494
  #: app/features/mec/meta_boxes/display_options.php:163
3495
  #: app/features/mec/meta_boxes/display_options.php:387
3496
  #: app/features/mec/meta_boxes/display_options.php:535
3497
- #: app/features/mec/settings.php:403 app/features/mec/settings.php:436
3498
- #: app/features/mec/settings.php:477 app/features/mec/settings.php:510
3499
  msgid "Simple"
3500
  msgstr "Schlicht"
3501
 
@@ -3506,8 +3575,8 @@ msgstr "Farbenfroh"
3506
  #: app/features/mec/meta_boxes/display_options.php:165
3507
  #: app/features/mec/meta_boxes/display_options.php:386
3508
  #: app/features/mec/meta_boxes/display_options.php:534
3509
- #: app/features/mec/settings.php:402 app/features/mec/settings.php:438
3510
- #: app/features/mec/settings.php:476 app/features/mec/settings.php:512
3511
  msgid "Novel"
3512
  msgstr ""
3513
 
@@ -3530,7 +3599,7 @@ msgid "Default value is \"d F Y\""
3530
  msgstr "Standardwert ist \"d (Tag) F Y (Jahr)\" "
3531
 
3532
  #: app/features/mec/meta_boxes/display_options.php:265
3533
- #: app/features/mec/meta_boxes/display_options.php:1029
3534
  msgid "Count in row"
3535
  msgstr "Zeilen zählen"
3536
 
@@ -3538,7 +3607,7 @@ msgstr "Zeilen zählen"
3538
  #: app/features/mec/meta_boxes/display_options.php:474
3539
  #: app/features/mec/meta_boxes/display_options.php:581
3540
  #: app/features/mec/meta_boxes/display_options.php:688
3541
- #: app/features/mec/meta_boxes/display_options.php:941
3542
  #, php-format
3543
  msgid "%s is required to use this skin."
3544
  msgstr ""
@@ -3554,15 +3623,15 @@ msgstr "Standardansicht"
3554
 
3555
  #: app/features/mec/meta_boxes/display_options.php:375
3556
  #: app/features/mec/meta_boxes/display_options.php:396
3557
- #: app/libraries/main.php:329 app/libraries/main.php:1241
3558
- #: app/libraries/main.php:1266
3559
  msgid "List View"
3560
  msgstr "Listenansicht"
3561
 
3562
  #: app/features/mec/meta_boxes/display_options.php:376
3563
  #: app/features/mec/meta_boxes/display_options.php:406
3564
- #: app/libraries/main.php:333 app/libraries/main.php:1235
3565
- #: app/libraries/main.php:1260
3566
  msgid "Yearly View"
3567
  msgstr "Jahresansicht"
3568
 
@@ -3573,15 +3642,15 @@ msgstr "Monatliche Kalenderansicht"
3573
 
3574
  #: app/features/mec/meta_boxes/display_options.php:378
3575
  #: app/features/mec/meta_boxes/display_options.php:438
3576
- #: app/libraries/main.php:336 app/libraries/main.php:1237
3577
- #: app/libraries/main.php:1262
3578
  msgid "Weekly View"
3579
  msgstr "Wochenansicht"
3580
 
3581
  #: app/features/mec/meta_boxes/display_options.php:379
3582
  #: app/features/mec/meta_boxes/display_options.php:448
3583
- #: app/libraries/main.php:335 app/libraries/main.php:1238
3584
- #: app/libraries/main.php:1263
3585
  msgid "Daily View"
3586
  msgstr "Tagesansicht"
3587
 
@@ -3688,7 +3757,7 @@ msgid "Inherite from WordPress options"
3688
  msgstr "Aus den globalen Einstellungen übernehmen"
3689
 
3690
  #: app/features/mec/meta_boxes/display_options.php:785
3691
- #: app/features/mec/meta_boxes/display_options.php:952
3692
  msgid "Default values are j and F"
3693
  msgstr "Standardwerte sind j und F"
3694
 
@@ -3705,112 +3774,122 @@ msgid "None"
3705
  msgstr ""
3706
 
3707
  #: app/features/mec/meta_boxes/display_options.php:806
3708
- msgid "Convert Masonry to Grid"
3709
  msgstr ""
3710
 
3711
  #: app/features/mec/meta_boxes/display_options.php:807
3712
- msgid "For using this option, your events should come with image"
 
 
3713
  msgstr ""
3714
 
3715
- #: app/features/mec/meta_boxes/display_options.php:838
3716
- msgid "Default values are d, M and Y"
3717
- msgstr "Standardwerte sind T, M und J"
 
 
 
 
 
 
 
 
3718
 
3719
- #: app/features/mec/meta_boxes/display_options.php:850
3720
  msgid "Default values are \"F d\" and l"
3721
  msgstr ""
3722
  "Standardwerte sind Monat als ganzes Wort, Tag des Monates mit führender Null "
3723
  "und ausgeschriebener Wochentag"
3724
 
3725
- #: app/features/mec/meta_boxes/display_options.php:861
3726
  msgid "Default value is \"l, F d Y\""
3727
  msgstr ""
3728
  "Standardwerte sind ausgeschriebener Wochentag, Monat als ganzes Wort, Tag "
3729
  "des Monates mit führender 0, Jahr"
3730
 
3731
- #: app/features/mec/meta_boxes/display_options.php:882
3732
  msgid "Style 1"
3733
  msgstr "Stil 1"
3734
 
3735
- #: app/features/mec/meta_boxes/display_options.php:883
3736
  msgid "Style 2"
3737
  msgstr "Stil 2"
3738
 
3739
- #: app/features/mec/meta_boxes/display_options.php:884
3740
  msgid "Style 3"
3741
  msgstr "Stil 3"
3742
 
3743
- #: app/features/mec/meta_boxes/display_options.php:893
3744
- #: app/features/mec/meta_boxes/display_options.php:904
3745
  msgid "Default value is \"j F Y\""
3746
  msgstr "Standardwert ist \"j F Y\""
3747
 
3748
- #: app/features/mec/meta_boxes/display_options.php:917
3749
  msgid "Default values are j, F and Y"
3750
  msgstr ""
3751
  "Standardwerte sind j ( Tag des Monats ohne führende Nullen), F und Y (Jahr)"
3752
 
3753
- #: app/features/mec/meta_boxes/display_options.php:925
3754
- #: app/features/mec/meta_boxes/display_options.php:960
3755
  msgid " -- Next Upcoming Event -- "
3756
  msgstr "-- Nächste Veranstaltung--"
3757
 
3758
- #: app/features/mec/meta_boxes/display_options.php:932
3759
  msgid "Background Color"
3760
  msgstr "Hintergrund Farbe"
3761
 
3762
- #: app/features/mec/meta_boxes/display_options.php:974
3763
- #: app/features/mec/meta_boxes/display_options.php:1060
3764
  msgid "Type 1"
3765
  msgstr "Typ 1"
3766
 
3767
- #: app/features/mec/meta_boxes/display_options.php:975
3768
- #: app/features/mec/meta_boxes/display_options.php:1061
3769
  msgid "Type 2"
3770
  msgstr "Typ 2"
3771
 
3772
- #: app/features/mec/meta_boxes/display_options.php:976
3773
- #: app/features/mec/meta_boxes/display_options.php:1062
3774
  msgid "Type 3"
3775
  msgstr "Type 3"
3776
 
3777
- #: app/features/mec/meta_boxes/display_options.php:977
3778
- #: app/features/mec/meta_boxes/display_options.php:1063
3779
  msgid "Type 4"
3780
  msgstr "Typ 4"
3781
 
3782
- #: app/features/mec/meta_boxes/display_options.php:1001
3783
  msgid "Default values are d, F and Y"
3784
  msgstr "Standardwert ist d (Tag) F und Y (Jahr)"
3785
 
3786
- #: app/features/mec/meta_boxes/display_options.php:1012
3787
- #: app/features/mec/meta_boxes/display_options.php:1023
3788
  msgid "Default value is \"M d, Y\""
3789
  msgstr "Standardwert ist \"M T, J\""
3790
 
3791
- #: app/features/mec/meta_boxes/display_options.php:1042
3792
- #: app/features/mec/meta_boxes/display_options.php:1150
3793
  msgid "Auto Play Time"
3794
  msgstr "Auto Play Time"
3795
 
3796
- #: app/features/mec/meta_boxes/display_options.php:1043
3797
- #: app/features/mec/meta_boxes/display_options.php:1151
3798
  msgid "eg. 3000 default is 3 second"
3799
  msgstr "z.B. Voreinstellung 3000 sind 3 Sekunden"
3800
 
3801
- #: app/features/mec/meta_boxes/display_options.php:1047
3802
  #, fuzzy
3803
  #| msgid "Archive Page Skin"
3804
  msgid "Archive Link"
3805
  msgstr "Skin Seite Archiv"
3806
 
3807
- #: app/features/mec/meta_boxes/display_options.php:1051
3808
  #, fuzzy
3809
  #| msgid "Text"
3810
  msgid "Head Text"
3811
  msgstr "Text"
3812
 
3813
- #: app/features/mec/meta_boxes/display_options.php:1064
3814
  msgid "Type 5"
3815
  msgstr "Typ 5"
3816
 
@@ -3846,15 +3925,15 @@ msgstr "Autoren"
3846
  msgid "Choose your desired authors for filtering the events."
3847
  msgstr "Wählen Sie die gewünschten Autoren zum Filtern aus"
3848
 
3849
- #: app/features/mec/meta_boxes/filter.php:165
3850
  msgid "Dates"
3851
  msgstr "Daten"
3852
 
3853
- #: app/features/mec/meta_boxes/filter.php:169
3854
  msgid "Include Expired Events"
3855
  msgstr "Inklusive abgelaufene Events"
3856
 
3857
- #: app/features/mec/meta_boxes/filter.php:177
3858
  msgid ""
3859
  "You have ability to include past/expired events if you like so it will show "
3860
  "upcoming and expired events based on start date that you selected."
@@ -3863,19 +3942,19 @@ msgstr ""
3863
  "wenn Sie es mögen, so werden die kommenden und abgelaufenen Events auf der "
3864
  "Grundlage des Starttermins angezeigt, das Sie ausgewählt haben."
3865
 
3866
- #: app/features/mec/meta_boxes/filter.php:182
3867
  msgid "Show Only Expired Events"
3868
  msgstr "Nur abgelaufene Events anzeigen"
3869
 
3870
- #: app/features/mec/meta_boxes/filter.php:190
3871
  msgid "It shows only expired/past events."
3872
  msgstr "Zeigt nur abgelaufene / vergangene Events."
3873
 
3874
- #: app/features/mec/meta_boxes/filter.php:196
3875
  msgid "Show Only Ongoing Events"
3876
  msgstr "Zeigt nur laufende Events"
3877
 
3878
- #: app/features/mec/meta_boxes/filter.php:204
3879
  msgid "It shows only ongoing events on List and Grid skins."
3880
  msgstr "Zeigt nur laufende Events auf Listen und Raster/Grid Skins"
3881
 
@@ -3891,196 +3970,198 @@ msgstr "Such Formular anzeigen"
3891
  #: app/features/mec/meta_boxes/search_form.php:68
3892
  #: app/features/mec/meta_boxes/search_form.php:75
3893
  #: app/features/mec/meta_boxes/search_form.php:82
3894
- #: app/features/mec/meta_boxes/search_form.php:94
3895
- #: app/features/mec/meta_boxes/search_form.php:101
3896
- #: app/features/mec/meta_boxes/search_form.php:108
3897
- #: app/features/mec/meta_boxes/search_form.php:115
3898
- #: app/features/mec/meta_boxes/search_form.php:122
3899
- #: app/features/mec/meta_boxes/search_form.php:129
3900
- #: app/features/mec/meta_boxes/search_form.php:136
3901
- #: app/features/mec/meta_boxes/search_form.php:143
3902
- #: app/features/mec/meta_boxes/search_form.php:155
3903
- #: app/features/mec/meta_boxes/search_form.php:162
3904
- #: app/features/mec/meta_boxes/search_form.php:169
3905
- #: app/features/mec/meta_boxes/search_form.php:176
3906
- #: app/features/mec/meta_boxes/search_form.php:183
3907
- #: app/features/mec/meta_boxes/search_form.php:190
3908
- #: app/features/mec/meta_boxes/search_form.php:197
3909
- #: app/features/mec/meta_boxes/search_form.php:204
3910
- #: app/features/mec/meta_boxes/search_form.php:216
3911
- #: app/features/mec/meta_boxes/search_form.php:223
3912
- #: app/features/mec/meta_boxes/search_form.php:230
3913
- #: app/features/mec/meta_boxes/search_form.php:237
3914
- #: app/features/mec/meta_boxes/search_form.php:244
3915
- #: app/features/mec/meta_boxes/search_form.php:251
3916
- #: app/features/mec/meta_boxes/search_form.php:258
3917
- #: app/features/mec/meta_boxes/search_form.php:265
3918
- #: app/features/mec/meta_boxes/search_form.php:277
3919
- #: app/features/mec/meta_boxes/search_form.php:284
3920
- #: app/features/mec/meta_boxes/search_form.php:291
3921
- #: app/features/mec/meta_boxes/search_form.php:298
3922
- #: app/features/mec/meta_boxes/search_form.php:305
3923
- #: app/features/mec/meta_boxes/search_form.php:312
3924
- #: app/features/mec/meta_boxes/search_form.php:319
3925
- #: app/features/mec/meta_boxes/search_form.php:326
3926
- #: app/features/mec/meta_boxes/search_form.php:338
3927
- #: app/features/mec/meta_boxes/search_form.php:345
3928
- #: app/features/mec/meta_boxes/search_form.php:352
3929
- #: app/features/mec/meta_boxes/search_form.php:359
3930
- #: app/features/mec/meta_boxes/search_form.php:366
3931
- #: app/features/mec/meta_boxes/search_form.php:373
3932
- #: app/features/mec/meta_boxes/search_form.php:380
3933
- #: app/features/mec/meta_boxes/search_form.php:387
3934
- #: app/features/mec/meta_boxes/search_form.php:399
3935
- #: app/features/mec/meta_boxes/search_form.php:406
3936
- #: app/features/mec/meta_boxes/search_form.php:413
3937
- #: app/features/mec/meta_boxes/search_form.php:420
3938
- #: app/features/mec/meta_boxes/search_form.php:427
3939
- #: app/features/mec/meta_boxes/search_form.php:434
3940
- #: app/features/mec/meta_boxes/search_form.php:441
3941
- #: app/features/mec/meta_boxes/search_form.php:453
3942
- #: app/features/mec/meta_boxes/search_form.php:460
3943
- #: app/features/mec/meta_boxes/search_form.php:467
3944
- #: app/features/mec/meta_boxes/search_form.php:474
3945
- #: app/features/mec/meta_boxes/search_form.php:481
3946
- #: app/features/mec/meta_boxes/search_form.php:488
3947
- #: app/features/mec/meta_boxes/search_form.php:495
3948
- #: app/features/mec/meta_boxes/search_form.php:502
3949
- #: app/features/mec/meta_boxes/search_form.php:514
3950
- #: app/features/mec/meta_boxes/search_form.php:521
3951
- #: app/features/mec/meta_boxes/search_form.php:528
3952
- #: app/features/mec/meta_boxes/search_form.php:535
3953
- #: app/features/mec/meta_boxes/search_form.php:542
3954
- #: app/features/mec/meta_boxes/search_form.php:549
3955
- #: app/features/mec/meta_boxes/search_form.php:556
3956
- #: app/features/mec/meta_boxes/search_form.php:563
3957
- #: app/features/mec/meta_boxes/search_form.php:575
3958
- #: app/features/mec/meta_boxes/search_form.php:582
3959
- #: app/features/mec/meta_boxes/search_form.php:589
3960
- #: app/features/mec/meta_boxes/search_form.php:596
3961
- #: app/features/mec/meta_boxes/search_form.php:603
3962
- #: app/features/mec/meta_boxes/search_form.php:610
3963
- #: app/features/mec/meta_boxes/search_form.php:617
3964
- #: app/features/mec/meta_boxes/search_form.php:624
3965
- #: app/features/mec/modules.php:322 app/features/mec/settings.php:297
3966
- #: app/features/mec/settings.php:553
3967
  msgid "Disabled"
3968
  msgstr "Deaktiviert"
3969
 
3970
  #: app/features/mec/meta_boxes/search_form.php:52
3971
- #: app/features/mec/meta_boxes/search_form.php:113
3972
- #: app/features/mec/meta_boxes/search_form.php:174
3973
- #: app/features/mec/meta_boxes/search_form.php:235
3974
- #: app/features/mec/meta_boxes/search_form.php:296
3975
- #: app/features/mec/meta_boxes/search_form.php:357
3976
- #: app/features/mec/meta_boxes/search_form.php:418
3977
- #: app/features/mec/meta_boxes/search_form.php:472
3978
- #: app/features/mec/meta_boxes/search_form.php:533
3979
- #: app/features/mec/meta_boxes/search_form.php:594 app/features/speakers.php:56
3980
- #: app/features/speakers.php:243 app/libraries/main.php:4487
3981
- #: app/libraries/skins.php:859
 
3982
  msgid "Speaker"
3983
  msgstr ""
3984
 
3985
  #: app/features/mec/meta_boxes/search_form.php:59
3986
- #: app/features/mec/meta_boxes/search_form.php:120
3987
- #: app/features/mec/meta_boxes/search_form.php:181
3988
- #: app/features/mec/meta_boxes/search_form.php:242
3989
- #: app/features/mec/meta_boxes/search_form.php:303
3990
- #: app/features/mec/meta_boxes/search_form.php:364
3991
- #: app/features/mec/meta_boxes/search_form.php:425
3992
- #: app/features/mec/meta_boxes/search_form.php:479
3993
- #: app/features/mec/meta_boxes/search_form.php:540
3994
- #: app/features/mec/meta_boxes/search_form.php:601 app/libraries/skins.php:885
 
3995
  #, fuzzy
3996
  #| msgid "Tags"
3997
  msgid "Tag"
3998
  msgstr "Schlagworte"
3999
 
4000
  #: app/features/mec/meta_boxes/search_form.php:73
4001
- #: app/features/mec/meta_boxes/search_form.php:134
4002
- #: app/features/mec/meta_boxes/search_form.php:195
4003
- #: app/features/mec/meta_boxes/search_form.php:256
4004
- #: app/features/mec/meta_boxes/search_form.php:317
4005
- #: app/features/mec/meta_boxes/search_form.php:378
4006
- #: app/features/mec/meta_boxes/search_form.php:493
4007
- #: app/features/mec/meta_boxes/search_form.php:554
4008
- #: app/features/mec/meta_boxes/search_form.php:615
4009
  msgid "Month Filter"
4010
  msgstr "Monatsfilter"
4011
 
4012
  #: app/features/mec/meta_boxes/search_form.php:80
4013
- #: app/features/mec/meta_boxes/search_form.php:141
4014
- #: app/features/mec/meta_boxes/search_form.php:202
4015
- #: app/features/mec/meta_boxes/search_form.php:263
4016
- #: app/features/mec/meta_boxes/search_form.php:324
4017
- #: app/features/mec/meta_boxes/search_form.php:385
4018
- #: app/features/mec/meta_boxes/search_form.php:439
4019
- #: app/features/mec/meta_boxes/search_form.php:500
4020
- #: app/features/mec/meta_boxes/search_form.php:561
4021
- #: app/features/mec/meta_boxes/search_form.php:622
4022
  msgid "Text Search"
4023
  msgstr "Textsuche"
4024
 
4025
  #: app/features/mec/meta_boxes/search_form.php:83
4026
- #: app/features/mec/meta_boxes/search_form.php:144
4027
- #: app/features/mec/meta_boxes/search_form.php:205
4028
- #: app/features/mec/meta_boxes/search_form.php:266
4029
- #: app/features/mec/meta_boxes/search_form.php:327
4030
- #: app/features/mec/meta_boxes/search_form.php:388
4031
- #: app/features/mec/meta_boxes/search_form.php:442
4032
- #: app/features/mec/meta_boxes/search_form.php:503
4033
- #: app/features/mec/meta_boxes/search_form.php:564
4034
- #: app/features/mec/meta_boxes/search_form.php:625
4035
  msgid "Text Input"
4036
  msgstr "Text eingeben"
4037
 
4038
- #: app/features/mec/meta_boxes/search_form.php:633
4039
- #: app/features/mec/meta_boxes/search_form.php:639
4040
- #: app/features/mec/meta_boxes/search_form.php:645
4041
- #: app/features/mec/meta_boxes/search_form.php:651
4042
- #: app/features/mec/meta_boxes/search_form.php:657
4043
- #: app/features/mec/meta_boxes/search_form.php:663
4044
  msgid "No Search Options"
4045
  msgstr "Keine Suchoptionen"
4046
 
4047
- #: app/features/mec/modules.php:247
4048
  #, fuzzy
4049
  #| msgid "No Search Options"
4050
  msgid "Speakers Options"
4051
  msgstr "Keine Suchoptionen"
4052
 
4053
- #: app/features/mec/modules.php:253
4054
  #, fuzzy
4055
  #| msgid "Enable taxes / fees module"
4056
  msgid "Enable speakers feature"
4057
  msgstr "Modul für Gebühren/Steuern aktivieren"
4058
 
4059
- #: app/features/mec/modules.php:255
4060
  msgid ""
4061
  "After enable it, you should reloading this page to see a new menu on "
4062
  "Dashboard > MEC"
4063
  msgstr ""
4064
 
4065
- #: app/features/mec/modules.php:272
4066
  msgid "Show Google Maps on event page"
4067
  msgstr "Google Maps auf der Veranstaltungsseite anzeigen"
4068
 
4069
- #: app/features/mec/modules.php:277 app/features/mec/modules.php:435
4070
- #: app/features/mec/settings.php:888 app/features/mec/settings.php:893
4071
  msgid "API Key"
4072
  msgstr "API Schlüssel"
4073
 
4074
- #: app/features/mec/modules.php:283 app/features/mec/settings.php:894
4075
- #: app/features/mec/settings.php:907
4076
  msgid "Required!"
4077
  msgstr "Erforderlich (Pflichtfeld)"
4078
 
4079
- #: app/features/mec/modules.php:290 app/features/mec/modules.php:299
4080
  msgid "Zoom level"
4081
  msgstr "Zoom"
4082
 
4083
- #: app/features/mec/modules.php:300
4084
  msgid ""
4085
  "For Google Maps module in single event page. In Google Maps skin, it will "
4086
  "caculate the zoom level automatically based on event boundaries."
@@ -4089,211 +4170,212 @@ msgstr ""
4089
  "es die Zoom-Ebene automatisch kalkulieren, basierend auf den Eventort "
4090
  "Angrenzungen"
4091
 
4092
- #: app/features/mec/modules.php:307
4093
  msgid "Google Maps Style"
4094
  msgstr "Google Maps Stil"
4095
 
4096
- #: app/features/mec/modules.php:311 app/features/mec/single.php:266
4097
  msgid "Default"
4098
  msgstr "Standardeinstellung"
4099
 
4100
- #: app/features/mec/modules.php:319
4101
  msgid "Direction on single event"
4102
  msgstr "Richtung auf einzelne Veranstaltung"
4103
 
4104
- #: app/features/mec/modules.php:323
4105
  msgid "Simple Method"
4106
  msgstr "Einfache Methode"
4107
 
4108
- #: app/features/mec/modules.php:324
4109
  msgid "Advanced Method"
4110
  msgstr "Fortgeschrittene Methode"
4111
 
4112
- #: app/features/mec/modules.php:329 app/features/mec/modules.php:334
4113
  msgid "Lightbox Date Format"
4114
  msgstr "Leuchtkasten Datumsformat"
4115
 
4116
- #: app/features/mec/modules.php:335
4117
  msgid "Default value is M d Y"
4118
  msgstr "Standardwert ist M T J"
4119
 
4120
- #: app/features/mec/modules.php:342 app/features/mec/modules.php:350
4121
  msgid "Google Maps API"
4122
  msgstr "Google Maps API"
4123
 
4124
- #: app/features/mec/modules.php:346
4125
  msgid "Don't load Google Maps API library"
4126
  msgstr "Google Maps API Bibliothek nicht laden"
4127
 
4128
- #: app/features/mec/modules.php:351
4129
  msgid "Check it only if another plugin/theme is loading the Google Maps API"
4130
  msgstr ""
4131
  "Checken Sie es nur wenn ein anderes plugin/Thema die Google Maps API lädt."
4132
 
4133
- #: app/features/mec/modules.php:368
4134
  msgid ""
4135
  "Show export module (iCal export and add to Google calendars) on event page"
4136
  msgstr ""
4137
  "Exportmodule auf Veranstaltungsseite anzeigen (iCal export und hinzufügen zu "
4138
  "Google calendars)"
4139
 
4140
- #: app/features/mec/modules.php:375
4141
  msgid "Google Calendar"
4142
  msgstr "Google Calendar"
4143
 
4144
- #: app/features/mec/modules.php:395
4145
  msgid "Show event time based on local time of visitor on event page"
4146
  msgstr ""
4147
  "Zeige die Eventzeit basierend auf der Ortszeit des Besuchers auf der "
4148
  "Eventseite"
4149
 
4150
- #: app/features/mec/modules.php:413
4151
  msgid "Show QR code of event in details page and booking invoice"
4152
  msgstr ""
4153
  "Zeigen Sie QR-Code des Events in der Detailseite und in der Buchungsrechnung "
4154
  "an"
4155
 
4156
- #: app/features/mec/modules.php:430
4157
  msgid "Show weather module on event page"
4158
  msgstr "Wettermodul auf der Eventseite anzeigen"
4159
 
4160
- #: app/features/mec/modules.php:438
4161
  #, php-format
4162
  msgid "You can get a free API Key from %s"
4163
  msgstr "Sie können einen kostenlosen API-Schlüssel von% s erhalten"
4164
 
4165
- #: app/features/mec/modules.php:452
 
 
 
 
 
 
 
 
 
 
4166
  msgid "Show social network module"
4167
  msgstr "Modul für Soziale Netzwerke anzeigen"
4168
 
4169
- #: app/features/mec/modules.php:477
4170
  msgid "Show next event module on event page"
4171
  msgstr "Nächstes Event Modul auf der Eventseite anzeigen"
4172
 
4173
- #: app/features/mec/modules.php:482
4174
  msgid "Method"
4175
  msgstr "Methode"
4176
 
4177
- #: app/features/mec/modules.php:485
4178
  msgid "Next Occurrence of Current Event"
4179
  msgstr "Nächstes Auftreten des aktuellen Events"
4180
 
4181
- #: app/features/mec/modules.php:486
4182
  msgid "Next Occurrence of Other Events"
4183
  msgstr "Nächstes Auftreten von anderen Events."
4184
 
4185
- #: app/features/mec/modules.php:497 app/features/mec/single.php:221
4186
  msgid "Default is M d Y"
4187
  msgstr "Standardwert ist M-T-J"
4188
 
4189
- #: app/features/mec/modules.php:513
4190
  msgid "Enable BuddyPress Integration"
4191
  msgstr "Buddy Press Integration deaktivieren"
4192
 
4193
- #: app/features/mec/modules.php:520
4194
  msgid "Show \"Attendees Module\" in event details page"
4195
  msgstr "Zeigt \"Teilnehmermodul\" in Event Details Seite"
4196
 
4197
- #: app/features/mec/modules.php:524
4198
  msgid "Attendees Limit"
4199
  msgstr "Teilnehmer Limit, maximale Anzahl"
4200
 
4201
- #: app/features/mec/modules.php:532
4202
  msgid "Add booking activity to user profile"
4203
  msgstr "Fügt Buchungsaktivitäten dem Benutzerprofil hinzu"
4204
 
4205
- #: app/features/mec/notifications.php:229
4206
  msgid "Enable booking notification"
4207
  msgstr "Buchungsbenachrichtigung aktivieren"
4208
 
4209
- #: app/features/mec/notifications.php:233
4210
  msgid "It sends to attendee after booking for notifying him/her."
4211
  msgstr ""
4212
  "Wird an den Teilnehmer in Anschluss an die Buchung versendet, um Ihn/Sie zu "
4213
  "benachrichtigen."
4214
 
4215
- #: app/features/mec/notifications.php:235
4216
- #: app/features/mec/notifications.php:292
4217
- #: app/features/mec/notifications.php:344
4218
- #: app/features/mec/notifications.php:403
4219
- #: app/features/mec/notifications.php:471
4220
- #: app/features/mec/notifications.php:534
4221
- #: app/features/mec/notifications.php:607
4222
  msgid "Email Subject"
4223
  msgstr "Email Betreff"
4224
 
4225
- #: app/features/mec/notifications.php:239
4226
- #: app/features/mec/notifications.php:243
4227
- #: app/features/mec/notifications.php:296
4228
- #: app/features/mec/notifications.php:300
4229
- #: app/features/mec/notifications.php:348
4230
- #: app/features/mec/notifications.php:352
4231
- #: app/features/mec/notifications.php:407
4232
- #: app/features/mec/notifications.php:411
4233
- #: app/features/mec/notifications.php:475
4234
- #: app/features/mec/notifications.php:479
4235
- #: app/features/mec/notifications.php:538
4236
- #: app/features/mec/notifications.php:542
4237
- #: app/features/mec/notifications.php:553
4238
- #: app/features/mec/notifications.php:611
4239
- #: app/features/mec/notifications.php:615
4240
- msgid "Custom Recipients"
4241
- msgstr "Individuelle Empfänger"
4242
-
4243
  #: app/features/mec/notifications.php:244
 
4244
  #: app/features/mec/notifications.php:301
 
4245
  #: app/features/mec/notifications.php:353
 
4246
  #: app/features/mec/notifications.php:412
 
4247
  #: app/features/mec/notifications.php:480
 
4248
  #: app/features/mec/notifications.php:543
4249
  #: app/features/mec/notifications.php:554
 
4250
  #: app/features/mec/notifications.php:616
 
 
 
 
 
 
 
 
 
 
 
4251
  msgid "Insert comma separated emails for multiple recipients."
4252
  msgstr "Geben Sie mit Komma getrennte email-Adressen ein für mehrere Empfänger"
4253
 
4254
- #: app/features/mec/notifications.php:251
4255
- #: app/features/mec/notifications.php:423
4256
- #: app/features/mec/notifications.php:487
4257
  msgid "Send the email to event organizer"
4258
  msgstr "Sendet das Email zum Event Organisator"
4259
 
4260
- #: app/features/mec/notifications.php:254
4261
- #: app/features/mec/notifications.php:307
4262
- #: app/features/mec/notifications.php:359
4263
- #: app/features/mec/notifications.php:430
4264
- #: app/features/mec/notifications.php:490
4265
- #: app/features/mec/notifications.php:560
4266
- #: app/features/mec/notifications.php:622
4267
  msgid "Email Content"
4268
  msgstr "Email Inhalt"
4269
 
4270
- #: app/features/mec/notifications.php:257
4271
- #: app/features/mec/notifications.php:310
4272
- #: app/features/mec/notifications.php:362
4273
- #: app/features/mec/notifications.php:433
4274
- #: app/features/mec/notifications.php:493
4275
- #: app/features/mec/notifications.php:563
4276
- #: app/features/mec/notifications.php:625
4277
  msgid "You can use following placeholders"
4278
  msgstr "Sie können die folgenden Platzhalter wählen"
4279
 
4280
- #: app/features/mec/notifications.php:259
4281
- #: app/features/mec/notifications.php:312
4282
- #: app/features/mec/notifications.php:364
4283
- #: app/features/mec/notifications.php:435
4284
- #: app/features/mec/notifications.php:495
4285
- #: app/features/mec/notifications.php:565
4286
- msgid "First name of attendee"
4287
- msgstr "Vorname des Teilnehmers"
4288
-
4289
  #: app/features/mec/notifications.php:260
4290
  #: app/features/mec/notifications.php:313
4291
  #: app/features/mec/notifications.php:365
4292
  #: app/features/mec/notifications.php:436
4293
  #: app/features/mec/notifications.php:496
4294
  #: app/features/mec/notifications.php:566
4295
- msgid "Last name of attendee"
4296
- msgstr "Nachname des Teilnehmers"
4297
 
4298
  #: app/features/mec/notifications.php:261
4299
  #: app/features/mec/notifications.php:314
@@ -4301,8 +4383,8 @@ msgstr "Nachname des Teilnehmers"
4301
  #: app/features/mec/notifications.php:437
4302
  #: app/features/mec/notifications.php:497
4303
  #: app/features/mec/notifications.php:567
4304
- msgid "Email of attendee"
4305
- msgstr "Email des Teilnehmers"
4306
 
4307
  #: app/features/mec/notifications.php:262
4308
  #: app/features/mec/notifications.php:315
@@ -4310,8 +4392,8 @@ msgstr "Email des Teilnehmers"
4310
  #: app/features/mec/notifications.php:438
4311
  #: app/features/mec/notifications.php:498
4312
  #: app/features/mec/notifications.php:568
4313
- msgid "Booked date of event"
4314
- msgstr "Gebuchtes Datum der Veranstaltung"
4315
 
4316
  #: app/features/mec/notifications.php:263
4317
  #: app/features/mec/notifications.php:316
@@ -4319,9 +4401,7 @@ msgstr "Gebuchtes Datum der Veranstaltung"
4319
  #: app/features/mec/notifications.php:439
4320
  #: app/features/mec/notifications.php:499
4321
  #: app/features/mec/notifications.php:569
4322
- #, fuzzy
4323
- #| msgid "Booked date of event"
4324
- msgid "Booked time of event"
4325
  msgstr "Gebuchtes Datum der Veranstaltung"
4326
 
4327
  #: app/features/mec/notifications.php:264
@@ -4330,8 +4410,10 @@ msgstr "Gebuchtes Datum der Veranstaltung"
4330
  #: app/features/mec/notifications.php:440
4331
  #: app/features/mec/notifications.php:500
4332
  #: app/features/mec/notifications.php:570
4333
- msgid "Booking Price"
4334
- msgstr "Buchungspreis"
 
 
4335
 
4336
  #: app/features/mec/notifications.php:265
4337
  #: app/features/mec/notifications.php:318
@@ -4339,9 +4421,8 @@ msgstr "Buchungspreis"
4339
  #: app/features/mec/notifications.php:441
4340
  #: app/features/mec/notifications.php:501
4341
  #: app/features/mec/notifications.php:571
4342
- #: app/features/mec/notifications.php:631
4343
- msgid "Your website title"
4344
- msgstr "Titel Ihrer Webseite"
4345
 
4346
  #: app/features/mec/notifications.php:266
4347
  #: app/features/mec/notifications.php:319
@@ -4350,8 +4431,8 @@ msgstr "Titel Ihrer Webseite"
4350
  #: app/features/mec/notifications.php:502
4351
  #: app/features/mec/notifications.php:572
4352
  #: app/features/mec/notifications.php:632
4353
- msgid "Your website URL"
4354
- msgstr "URL Ihrer Webseite"
4355
 
4356
  #: app/features/mec/notifications.php:267
4357
  #: app/features/mec/notifications.php:320
@@ -4360,8 +4441,8 @@ msgstr "URL Ihrer Webseite"
4360
  #: app/features/mec/notifications.php:503
4361
  #: app/features/mec/notifications.php:573
4362
  #: app/features/mec/notifications.php:633
4363
- msgid "Your website description"
4364
- msgstr "Beschreibung Ihrer Webseite"
4365
 
4366
  #: app/features/mec/notifications.php:268
4367
  #: app/features/mec/notifications.php:321
@@ -4369,8 +4450,9 @@ msgstr "Beschreibung Ihrer Webseite"
4369
  #: app/features/mec/notifications.php:444
4370
  #: app/features/mec/notifications.php:504
4371
  #: app/features/mec/notifications.php:574
4372
- msgid "Event title"
4373
- msgstr "Titel der Veranstaltung"
 
4374
 
4375
  #: app/features/mec/notifications.php:269
4376
  #: app/features/mec/notifications.php:322
@@ -4378,10 +4460,8 @@ msgstr "Titel der Veranstaltung"
4378
  #: app/features/mec/notifications.php:445
4379
  #: app/features/mec/notifications.php:505
4380
  #: app/features/mec/notifications.php:575
4381
- #, fuzzy
4382
- #| msgid "Event Link"
4383
- msgid "Event link"
4384
- msgstr "Veranstaltungslink"
4385
 
4386
  #: app/features/mec/notifications.php:270
4387
  #: app/features/mec/notifications.php:323
@@ -4390,9 +4470,9 @@ msgstr "Veranstaltungslink"
4390
  #: app/features/mec/notifications.php:506
4391
  #: app/features/mec/notifications.php:576
4392
  #, fuzzy
4393
- #| msgid "Organizer name of booked event"
4394
- msgid "Speaker name of booked event"
4395
- msgstr "Name des Veranstalters des gebuchten Events"
4396
 
4397
  #: app/features/mec/notifications.php:271
4398
  #: app/features/mec/notifications.php:324
@@ -4400,7 +4480,9 @@ msgstr "Name des Veranstalters des gebuchten Events"
4400
  #: app/features/mec/notifications.php:447
4401
  #: app/features/mec/notifications.php:507
4402
  #: app/features/mec/notifications.php:577
4403
- msgid "Organizer name of booked event"
 
 
4404
  msgstr "Name des Veranstalters des gebuchten Events"
4405
 
4406
  #: app/features/mec/notifications.php:272
@@ -4409,8 +4491,8 @@ msgstr "Name des Veranstalters des gebuchten Events"
4409
  #: app/features/mec/notifications.php:448
4410
  #: app/features/mec/notifications.php:508
4411
  #: app/features/mec/notifications.php:578
4412
- msgid "Organizer tel of booked event"
4413
- msgstr "Tel des Veranstalters"
4414
 
4415
  #: app/features/mec/notifications.php:273
4416
  #: app/features/mec/notifications.php:326
@@ -4418,8 +4500,8 @@ msgstr "Tel des Veranstalters"
4418
  #: app/features/mec/notifications.php:449
4419
  #: app/features/mec/notifications.php:509
4420
  #: app/features/mec/notifications.php:579
4421
- msgid "Organizer email of booked event"
4422
- msgstr "Email des Veranstalters des gebuchten events"
4423
 
4424
  #: app/features/mec/notifications.php:274
4425
  #: app/features/mec/notifications.php:327
@@ -4427,8 +4509,8 @@ msgstr "Email des Veranstalters des gebuchten events"
4427
  #: app/features/mec/notifications.php:450
4428
  #: app/features/mec/notifications.php:510
4429
  #: app/features/mec/notifications.php:580
4430
- msgid "Location name of booked event"
4431
- msgstr "Veranstaltungsort"
4432
 
4433
  #: app/features/mec/notifications.php:275
4434
  #: app/features/mec/notifications.php:328
@@ -4436,40 +4518,40 @@ msgstr "Veranstaltungsort"
4436
  #: app/features/mec/notifications.php:451
4437
  #: app/features/mec/notifications.php:511
4438
  #: app/features/mec/notifications.php:581
 
 
 
 
 
 
 
 
 
4439
  msgid "Location address of booked event"
4440
  msgstr "Adresse der gebuchten Veranstaltung"
4441
 
4442
- #: app/features/mec/notifications.php:276
4443
- #: app/features/mec/notifications.php:453
4444
- #: app/features/mec/notifications.php:513
4445
  msgid "Full Attendee info such as booking form data, name, email etc."
4446
  msgstr ""
4447
  "Gesamte Teinehmerinformationen wie z.B. Daten aus dem Buchungsformular, "
4448
  "Name, email, etc."
4449
 
4450
- #: app/features/mec/notifications.php:277
4451
- #: app/features/mec/notifications.php:382
4452
- #: app/features/mec/notifications.php:583
4453
- msgid "Invoice Link"
4454
- msgstr "Rechnungslink"
4455
-
4456
  #: app/features/mec/notifications.php:278
4457
- #: app/features/mec/notifications.php:330
4458
  #: app/features/mec/notifications.php:383
4459
- #: app/features/mec/notifications.php:454
4460
- #: app/features/mec/notifications.php:514
4461
  #: app/features/mec/notifications.php:584
4462
- msgid "Total Attendees"
4463
- msgstr ""
4464
 
4465
  #: app/features/mec/notifications.php:279
4466
  #: app/features/mec/notifications.php:331
4467
  #: app/features/mec/notifications.php:384
 
 
4468
  #: app/features/mec/notifications.php:585
4469
- #, fuzzy
4470
- #| msgid "Ticket Name"
4471
- msgid "Ticket name"
4472
- msgstr "Ticket Name"
4473
 
4474
  #: app/features/mec/notifications.php:280
4475
  #: app/features/mec/notifications.php:332
@@ -4477,7 +4559,7 @@ msgstr "Ticket Name"
4477
  #: app/features/mec/notifications.php:586
4478
  #, fuzzy
4479
  #| msgid "Ticket Name"
4480
- msgid "Ticket time"
4481
  msgstr "Ticket Name"
4482
 
4483
  #: app/features/mec/notifications.php:281
@@ -4485,37 +4567,46 @@ msgstr "Ticket Name"
4485
  #: app/features/mec/notifications.php:386
4486
  #: app/features/mec/notifications.php:587
4487
  #, fuzzy
 
 
 
 
 
 
 
 
 
4488
  #| msgid "Download Invoice"
4489
  msgid "Download ICS file"
4490
  msgstr "Download Rechnung\n"
4491
 
4492
- #: app/features/mec/notifications.php:290
4493
  msgid "It sends to attendee email for verifying their booking/email."
4494
  msgstr ""
4495
  "Versendet an den Teilnehmer eine Email um dessen Buchung/Mail zu "
4496
  "verifizieren."
4497
 
4498
- #: app/features/mec/notifications.php:329
4499
  msgid "Email/Booking verification link."
4500
  msgstr "Bestätigungslink für Email/Buchung"
4501
 
4502
- #: app/features/mec/notifications.php:342
4503
  msgid "It sends to attendee after confirming the booking by admin."
4504
  msgstr ""
4505
  "Es wird an den Teilnehmer gesendet nach Bestätigung der Buchung vom admin."
4506
 
4507
- #: app/features/mec/notifications.php:381
4508
- #: app/features/mec/notifications.php:582
4509
  msgid "Booking cancellation link."
4510
  msgstr "Link zur Stornierung der Buchung"
4511
 
4512
- #: app/features/mec/notifications.php:397
4513
  #, fuzzy
4514
  #| msgid "Enable new event notification"
4515
  msgid "Enable cancellation notification"
4516
  msgstr "Benachrichtigung bei neuen Veranstaltungen aktivieren"
4517
 
4518
- #: app/features/mec/notifications.php:401
4519
  #, fuzzy
4520
  #| msgid "It sends to attendee after booking for notifying him/her."
4521
  msgid ""
@@ -4525,40 +4616,40 @@ msgstr ""
4525
  "Wird an den Teilnehmer in Anschluss an die Buchung versendet, um Ihn/Sie zu "
4526
  "benachrichtigen."
4527
 
4528
- #: app/features/mec/notifications.php:419
4529
  #, fuzzy
4530
  #| msgid "Send the email to event organizer"
4531
  msgid "Send the email to admin"
4532
  msgstr "Sendet das Email zum Event Organisator"
4533
 
4534
- #: app/features/mec/notifications.php:427
4535
  #, fuzzy
4536
  #| msgid "Send the email to event organizer"
4537
  msgid "Send the email to booking user"
4538
  msgstr "Sendet das Email zum Event Organisator"
4539
 
4540
- #: app/features/mec/notifications.php:452
4541
- #: app/features/mec/notifications.php:512
4542
  msgid "Admin booking management link."
4543
  msgstr "Admin-link zur Buchungsverwaltung"
4544
 
4545
- #: app/features/mec/notifications.php:465
4546
  #, fuzzy
4547
  #| msgid "Enable booking notification"
4548
  msgid "Enable admin notification"
4549
  msgstr "Buchungsbenachrichtigung aktivieren"
4550
 
4551
- #: app/features/mec/notifications.php:469
4552
  msgid "It sends to admin to notify him/her that a new booking received."
4553
  msgstr ""
4554
  "Sendet eine Benachrichtigung an den Adminstrator um diesen darüber zu "
4555
  "Informieren, dass eine neue Buchung eingegangen ist."
4556
 
4557
- #: app/features/mec/notifications.php:525
4558
  msgid "Enable booking reminder notification"
4559
  msgstr "Aktivieren Sie die Erinnerung für die Buchungserinnerung"
4560
 
4561
- #: app/features/mec/notifications.php:531
4562
  #, php-format
4563
  msgid ""
4564
  "Set a cronjob to call %s file once per day otherwise it won't send the "
@@ -4570,19 +4661,19 @@ msgstr ""
4570
  "Sie diese Datei% s aufrufen sollten, sonst könnten die Erinnerungen mehrmals "
4571
  "gesendet werden."
4572
 
4573
- #: app/features/mec/notifications.php:531
4574
  msgid "only once per day"
4575
  msgstr "nur einmal pro Tag"
4576
 
4577
- #: app/features/mec/notifications.php:549
4578
  msgid "Days"
4579
  msgstr "Tage"
4580
 
4581
- #: app/features/mec/notifications.php:601
4582
  msgid "Enable new event notification"
4583
  msgstr "Benachrichtigung bei neuen Veranstaltungen aktivieren"
4584
 
4585
- #: app/features/mec/notifications.php:605
4586
  msgid ""
4587
  "It sends after adding a new event from frontend event submission or from "
4588
  "website backend."
@@ -4590,73 +4681,73 @@ msgstr ""
4590
  "Wird nach dem Hinzufügen einer neuen Veranstaltung aus der Frontend-"
4591
  "Übermittlung oder dem Backend versandt."
4592
 
4593
- #: app/features/mec/notifications.php:627
4594
  msgid "Title of event"
4595
  msgstr "Titel der Veranstaltung"
4596
 
4597
- #: app/features/mec/notifications.php:628
4598
  #, fuzzy
4599
  #| msgid "Title of event"
4600
  msgid "Link of event"
4601
  msgstr "Titel der Veranstaltung"
4602
 
4603
- #: app/features/mec/notifications.php:629
4604
  msgid "Status of event"
4605
  msgstr "Status der Veranstaltung"
4606
 
4607
- #: app/features/mec/notifications.php:630 app/features/mec/settings.php:839
4608
- #: app/features/mec/settings.php:843
4609
  msgid "Event Note"
4610
  msgstr "Veranstaltungsnotiz"
4611
 
4612
- #: app/features/mec/notifications.php:634
4613
  msgid "Admin events management link."
4614
  msgstr "Admin-link zur Veranstaltungsverwaltung"
4615
 
4616
- #: app/features/mec/settings.php:255 app/features/mec/settings.php:265
4617
  msgid "Hide Events"
4618
  msgstr "Events verbergen"
4619
 
4620
- #: app/features/mec/settings.php:258
4621
  msgid "On Event Start"
4622
  msgstr "Am Event Start"
4623
 
4624
- #: app/features/mec/settings.php:259
4625
  msgid "+1 Hour after start"
4626
  msgstr "+1 Stunde nach dem Start"
4627
 
4628
- #: app/features/mec/settings.php:260
4629
  msgid "+2 Hours after start"
4630
  msgstr "+2 Stunden nach dem Start"
4631
 
4632
- #: app/features/mec/settings.php:261
4633
  msgid "On Event End"
4634
  msgstr "Am Event Ende"
4635
 
4636
- #: app/features/mec/settings.php:266
4637
  msgid ""
4638
  "This option is for showing start/end time of events on frontend of website."
4639
  msgstr ""
4640
  "Diese Option ist um die Start/Endezeit von Events im Frontend der Webseite "
4641
  "anzuzeigen"
4642
 
4643
- #: app/features/mec/settings.php:275 app/features/mec/settings.php:284
4644
  msgid "Multiple Day Events"
4645
  msgstr "Mehrtagesveranstaltung"
4646
 
4647
- #: app/features/mec/settings.php:278
4648
  msgid "Show only first day on List/Grid/Slider skins"
4649
  msgstr "Zeige nur den ersten Tag auf Listen/Raster(Grid)/Slider skins."
4650
 
4651
- #: app/features/mec/settings.php:279
4652
  msgid "Show only first day on all skins"
4653
  msgstr "Nur den ersten Tag in allen Ansichten zeigen"
4654
 
4655
- #: app/features/mec/settings.php:280
4656
  msgid "Show all days"
4657
  msgstr "Alle Tage anzeigen"
4658
 
4659
- #: app/features/mec/settings.php:285
4660
  msgid ""
4661
  "For showing all days of multiple day events on frontend or only show the "
4662
  "first day."
@@ -4664,40 +4755,40 @@ msgstr ""
4664
  "Um alle Tage anzuzeigen bei Events über mehrere Tage im Frontend oder nur "
4665
  "den ersten Tag anzeigen"
4666
 
4667
- #: app/features/mec/settings.php:294
4668
  msgid "Remove MEC Data on Plugin Uninstall"
4669
  msgstr "Entfernen von MEC Data auf dem Plugin Deinstallierer"
4670
 
4671
- #: app/features/mec/settings.php:298
4672
  msgid "Enabled"
4673
  msgstr "Aktiviert"
4674
 
4675
- #: app/features/mec/settings.php:304
4676
  msgid "Exclude Date Suffix"
4677
  msgstr "Ausschlussdatum Suffix"
4678
 
4679
- #: app/features/mec/settings.php:307
4680
  msgid "Remove suffix from calendars"
4681
  msgstr "Suffix aus den Kalendern entfernen"
4682
 
4683
- #: app/features/mec/settings.php:311
4684
  #, fuzzy
4685
  #| msgid "Remove suffix from calendars"
4686
  msgid "Remove \"Th\" on calendar"
4687
  msgstr "Suffix aus den Kalendern entfernen"
4688
 
4689
- #: app/features/mec/settings.php:312
4690
  msgid ""
4691
  "Checked this checkbox to remove 'Th' on calendar ( ex: '12Th' remove Th, "
4692
  "showing just '12' )"
4693
  msgstr ""
4694
 
4695
- #: app/features/mec/settings.php:321 app/features/mec/settings.php:331
4696
- #: app/libraries/main.php:4491
4697
  msgid "Weekdays"
4698
  msgstr "Wochentage"
4699
 
4700
- #: app/features/mec/settings.php:332
4701
  #, fuzzy
4702
  #| msgid ""
4703
  #| "Proceed with caution. Default is set to Monday, Tuesday, Wednesday, "
@@ -4710,105 +4801,105 @@ msgstr ""
4710
  "Vorsichtig vorgehen. Standardwert ist auf Montag, Dienstag, Mittwoch, "
4711
  "Donnerstag und Freitag gesetzt."
4712
 
4713
- #: app/features/mec/settings.php:342 app/features/mec/settings.php:352
4714
  msgid "Weekends"
4715
  msgstr "Wochenenden"
4716
 
4717
- #: app/features/mec/settings.php:353
4718
  msgid ""
4719
  "Proceed with caution. Default is set to Saturday and Sunday ( you can change "
4720
  "'Week Starts' on WordPress Dashboard > Settings > General - bottom of the "
4721
  "page )."
4722
  msgstr ""
4723
 
4724
- #: app/features/mec/settings.php:367 app/features/mec/settings.php:372
4725
  msgid "Archive Page Title"
4726
  msgstr "Titel der Archivseite"
4727
 
4728
- #: app/features/mec/settings.php:373
4729
  #, fuzzy
4730
  #| msgid "Default value is Events"
4731
  msgid "Default value is Events - It's title of the page"
4732
  msgstr "Der Standardwert ist Ereignisse (Events)"
4733
 
4734
- #: app/features/mec/settings.php:381 app/features/mec/settings.php:449
4735
  msgid "Archive Page Skin"
4736
  msgstr "Skin Seite Archiv"
4737
 
4738
- #: app/features/mec/settings.php:389
4739
  #, fuzzy
4740
  #| msgid "Edit shortcodes"
4741
  msgid "Put shortcode..."
4742
  msgstr "Shortcode ändern"
4743
 
4744
- #: app/features/mec/settings.php:392 app/features/mec/settings.php:407
4745
- #: app/features/mec/settings.php:410 app/features/mec/settings.php:419
4746
- #: app/features/mec/settings.php:445 app/features/mec/settings.php:466
4747
- #: app/features/mec/settings.php:481 app/features/mec/settings.php:484
4748
- #: app/features/mec/settings.php:493 app/features/mec/settings.php:519
4749
  #, fuzzy
4750
  #| msgid "The event is ongoing."
4751
  msgid "There is no skins"
4752
  msgstr "Die Veranstaltung ist im Gange."
4753
 
4754
- #: app/features/mec/settings.php:395 app/features/mec/settings.php:469
4755
- #: app/features/mec/single.php:248
4756
  msgid "Modern Style"
4757
  msgstr "Moderner Stil"
4758
 
4759
- #: app/features/mec/settings.php:437 app/features/mec/settings.php:511
4760
  #, fuzzy
4761
  #| msgid "Colorful"
4762
  msgid "colorful"
4763
  msgstr "Farbenfroh"
4764
 
4765
- #: app/features/mec/settings.php:442 app/features/mec/settings.php:516
4766
  #, fuzzy
4767
  #| msgid "Plain Style"
4768
  msgid "Clean Style"
4769
  msgstr "Einfacher schlichter Stil"
4770
 
4771
- #: app/features/mec/settings.php:450
4772
  #, fuzzy
4773
  #| msgid "Default value is Calendar/Monthly View"
4774
  msgid "Default value is Calendar/Monthly View, But you can change it "
4775
  msgstr "Der Standardwert ist Kalender / Monatsansicht"
4776
 
4777
- #: app/features/mec/settings.php:450 app/features/mec/settings.php:524
4778
  msgid "See Demo"
4779
  msgstr ""
4780
 
4781
- #: app/features/mec/settings.php:458 app/features/mec/settings.php:523
4782
  msgid "Category Page Skin"
4783
  msgstr "Kategorie Seiten Skin"
4784
 
4785
- #: app/features/mec/settings.php:524
4786
  msgid ""
4787
  "Default value is List View - But you can change it Set a skin for all "
4788
  "categories."
4789
  msgstr ""
4790
 
4791
- #: app/features/mec/settings.php:532 app/features/mec/settings.php:540
4792
  msgid "Category Events Method"
4793
  msgstr ""
4794
 
4795
- #: app/features/mec/settings.php:536
4796
  msgid "Expired Events"
4797
  msgstr ""
4798
 
4799
- #: app/features/mec/settings.php:541
4800
  msgid "Default value is Upcoming Events"
4801
  msgstr ""
4802
 
4803
- #: app/features/mec/settings.php:549 app/features/mec/settings.php:557
4804
  msgid "Events Archive Status"
4805
  msgstr "Events Archiv Status"
4806
 
4807
- #: app/features/mec/settings.php:552
4808
  msgid "Enabled (Recommended)"
4809
  msgstr "Ist aktiviert (empfohlen)"
4810
 
4811
- #: app/features/mec/settings.php:558
4812
  msgid ""
4813
  "If you disable it, then you should create a page as archive page of MEC. "
4814
  "Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
@@ -4818,18 +4909,18 @@ msgstr ""
4818
  "erstellen. Page´s slug muss gleich sein wie \"Main Slug\" von MEC. Außerdem "
4819
  "werden alle MEC-Rewrite-Regeln deaktiviert."
4820
 
4821
- #: app/features/mec/settings.php:571 app/features/mec/settings.php:576
4822
  msgid "Main Slug"
4823
  msgstr "Main Slug"
4824
 
4825
- #: app/features/mec/settings.php:577
4826
  msgid ""
4827
  "Default value is events. You can not have a page with this name. MEC allows "
4828
  "you to create custom URLs for the permalinks and archives to enhance the "
4829
  "applicability and forward-compatibility of the links."
4830
  msgstr ""
4831
 
4832
- #: app/features/mec/settings.php:581 app/features/mec/settings.php:595
4833
  #, fuzzy
4834
  #| msgid ""
4835
  #| "Default value is events. Valid characters are lowercase a-z, - character "
@@ -4839,11 +4930,11 @@ msgstr ""
4839
  "Standardwert ist Events. Gültige Zeichen sind Kleinbuchstaben a-z, - Zeichen "
4840
  "und Zahlen."
4841
 
4842
- #: app/features/mec/settings.php:585 app/features/mec/settings.php:590
4843
  msgid "Category Slug"
4844
  msgstr "Category Slug"
4845
 
4846
- #: app/features/mec/settings.php:591
4847
  #, fuzzy
4848
  #| msgid ""
4849
  #| "It's slug of MEC categories, you can change it to events-cat or something "
@@ -4859,135 +4950,135 @@ msgstr ""
4859
  "für den link. Zum Beispiel example.com/events-cat oder example.com/mec-"
4860
  "category"
4861
 
4862
- #: app/features/mec/settings.php:603
4863
  msgid "Currency"
4864
  msgstr "Währung"
4865
 
4866
- #: app/features/mec/settings.php:613 app/features/mec/settings.php:618
4867
  msgid "Currency Sign"
4868
  msgstr "Währungssymbol"
4869
 
4870
- #: app/features/mec/settings.php:619
4871
  msgid "Default value will be \"currency\" if you leave it empty."
4872
  msgstr "Standardwert wird \"currency\" sein wenn Sie es leer lassen"
4873
 
4874
- #: app/features/mec/settings.php:626
4875
  msgid "Currency Position"
4876
  msgstr "Position des Währungssymbols"
4877
 
4878
- #: app/features/mec/settings.php:629
4879
  msgid "Before $10"
4880
  msgstr "Vor $10"
4881
 
4882
- #: app/features/mec/settings.php:630
4883
  msgid "After 10$"
4884
  msgstr "Nach 10$"
4885
 
4886
- #: app/features/mec/settings.php:635
4887
  msgid "Thousand Separator"
4888
  msgstr "Tausendertrennzeichen"
4889
 
4890
- #: app/features/mec/settings.php:641
4891
  msgid "Decimal Separator"
4892
  msgstr "Dezimaltrennzeichen"
4893
 
4894
- #: app/features/mec/settings.php:651
4895
  msgid "No decimal"
4896
  msgstr "Keine Dezimale"
4897
 
4898
- #: app/features/mec/settings.php:662
4899
  msgid "Enable Google Recaptcha"
4900
  msgstr "Google Recaptcha aktivieren"
4901
 
4902
- #: app/features/mec/settings.php:669
4903
  msgid "Enable on booking form"
4904
  msgstr "Auf dem Buchungsformular aktivieren"
4905
 
4906
- #: app/features/mec/settings.php:675
4907
  #, fuzzy
4908
  #| msgid "Enable on \"Frontend Event Submittion\" form"
4909
  msgid "Enable on \"Frontend Event Submission\" form"
4910
  msgstr "Aktivieren auf dem \"Frontend Event Submittion\" Formular"
4911
 
4912
- #: app/features/mec/settings.php:679
4913
  msgid "Site Key"
4914
  msgstr "Site Key (Seitenschlüssel)"
4915
 
4916
- #: app/features/mec/settings.php:685
4917
  msgid "Secret Key"
4918
  msgstr "Geheimschlüssel"
4919
 
4920
- #: app/features/mec/settings.php:697 app/features/mec/settings.php:705
4921
  msgid "Time Format"
4922
  msgstr "Zeitformat"
4923
 
4924
- #: app/features/mec/settings.php:700
4925
  msgid "12 hours format with AM/PM"
4926
  msgstr "12-Stunden-Format mit AM/FM"
4927
 
4928
- #: app/features/mec/settings.php:701
4929
  msgid "24 hours format"
4930
  msgstr "24-Stunden-Format"
4931
 
4932
- #: app/features/mec/settings.php:706
4933
  msgid "This option, affects the selection of Start/End time."
4934
  msgstr ""
4935
 
4936
- #: app/features/mec/settings.php:714
4937
  msgid "Events List Page"
4938
  msgstr "Seite Liste der Veranstaltungen"
4939
 
4940
- #: app/features/mec/settings.php:723 app/features/mec/settings.php:735
4941
  #, php-format
4942
  msgid "Put %s shortcode into the page."
4943
  msgstr "%s shortcode in die Seite einfügen"
4944
 
4945
- #: app/features/mec/settings.php:726
4946
  msgid "Add/Edit Events Page"
4947
  msgstr "Veranstaltungsseite hinzufügen/bearbeiten"
4948
 
4949
- #: app/features/mec/settings.php:740
4950
  msgid "Enable event submission by guest (Not logged-in) users"
4951
  msgstr ""
4952
  "Das Erstellen von Veranstaltungen durch Gäste (nicht angemeldete Nutzer) "
4953
  "erlauben"
4954
 
4955
- #: app/features/mec/settings.php:747
4956
  msgid "Enable mandatory email and name for guest user"
4957
  msgstr ""
4958
  "Aktivieren Sie die obligatorische E-Mail und den Namen für Gastbenutzer"
4959
 
4960
- #: app/features/mec/settings.php:751
4961
  msgid "Frontend Event Submission Sections"
4962
  msgstr "Frontend Veranstaltungen Einreichung Sektionen"
4963
 
4964
- #: app/features/mec/settings.php:773 app/widgets/single.php:119
4965
  msgid "Event Categories"
4966
  msgstr "Veranstaltungskategorien"
4967
 
4968
- #: app/features/mec/settings.php:779
4969
  msgid "Event Labels"
4970
  msgstr "Event Labels"
4971
 
4972
- #: app/features/mec/settings.php:791
4973
  msgid "Event Tags"
4974
  msgstr "Event Schlagworte"
4975
 
4976
- #: app/features/mec/settings.php:803 app/widgets/single.php:123
4977
  msgid "Event Organizer"
4978
  msgstr "Veranstaltungsmanager"
4979
 
4980
- #: app/features/mec/settings.php:821
4981
  msgid "Booking Options"
4982
  msgstr "Buchungsoptionen"
4983
 
4984
- #: app/features/mec/settings.php:827
4985
  #, fuzzy
4986
  #| msgid "Fees/Taxes Options"
4987
  msgid "Fees / Taxes Options"
4988
  msgstr "Gebühren/Steuer Optionen"
4989
 
4990
- #: app/features/mec/settings.php:844
4991
  #, php-format
4992
  msgid ""
4993
  "Users can put a note for editors while they're submitting the event. Also "
@@ -4999,54 +5090,64 @@ msgstr ""
4999
  "Eventbenachrichtigung setzen, um die Notizen der Benutzer in der E-Mail zu "
5000
  "erhalten."
5001
 
5002
- #: app/features/mec/settings.php:851 app/features/mec/settings.php:860
5003
  msgid "Visibility of Note"
5004
  msgstr "Sichtbarkeit der Anmerkungen zum Event "
5005
 
5006
- #: app/features/mec/settings.php:854
5007
  msgid "Always"
5008
  msgstr "Immer"
5009
 
5010
- #: app/features/mec/settings.php:855
5011
  msgid "While event is not published"
5012
  msgstr "Das Ereignis wird nicht veröffentlicht"
5013
 
5014
- #: app/features/mec/settings.php:861
5015
  msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
5016
  msgstr ""
5017
  "Die Ereignisnotiz wird im Frontend-Einreichungsformular angezeigt und das "
5018
  "Ereignis im Backend bearbeitet."
5019
 
5020
- #: app/features/mec/settings.php:872
5021
  #, php-format
5022
  msgid ""
5023
  "Put %s shortcode into your desired page. Then users are able to see history "
5024
  "of their bookings."
5025
  msgstr ""
5026
 
5027
- #: app/features/mec/settings.php:883
 
 
 
 
 
 
 
 
 
 
5028
  msgid "Enable Mailchimp Integration"
5029
  msgstr "Mailchimp Integration deaktivieren"
5030
 
5031
- #: app/features/mec/settings.php:901 app/features/mec/settings.php:906
5032
  msgid "List ID"
5033
  msgstr "List ID"
5034
 
5035
- #: app/features/mec/settings.php:914 app/features/mec/settings.php:922
5036
  msgid "Subscription Status"
5037
  msgstr "Buchungsstatus"
5038
 
5039
- #: app/features/mec/settings.php:917
5040
  msgid "Subscribe automatically"
5041
  msgstr "automatisch Anmelden/Abonnieren"
5042
 
5043
- #: app/features/mec/settings.php:918
5044
  msgid "Subscribe by verification"
5045
  msgstr ""
5046
  "Anmelden/Abonnieren durch Bestätigung\n"
5047
  " "
5048
 
5049
- #: app/features/mec/settings.php:923
5050
  msgid ""
5051
  "If you choose \"Subscribe by verification\" then an email will send to user "
5052
  "by mailchimp for subscription verification."
@@ -5054,51 +5155,51 @@ msgstr ""
5054
  "Wenn Sie \"Anmelden durch Verifizierung\" wählen, wird eine E-Mail an den "
5055
  "Benutzer per Mailchimp zur Bestätigung gesendet."
5056
 
5057
- #: app/features/mec/settings.php:935
5058
  #, fuzzy
5059
  #| msgid "Filter Options"
5060
  msgid "Upload Field Options"
5061
  msgstr "Filteroptionen"
5062
 
5063
- #: app/features/mec/settings.php:937
5064
  msgid "Mime types"
5065
  msgstr ""
5066
 
5067
- #: app/features/mec/settings.php:941
5068
  msgid "Split mime types with \",\"."
5069
  msgstr ""
5070
 
5071
- #: app/features/mec/settings.php:941
5072
  msgid "Default: jpeg,jpg,png,pdf"
5073
  msgstr ""
5074
 
5075
- #: app/features/mec/settings.php:944
5076
  #, fuzzy
5077
  #| msgid "Amount (Per Ticket)"
5078
  msgid "Maximum file size"
5079
  msgstr "Betrag (pro Ticket)"
5080
 
5081
- #: app/features/mec/settings.php:948
5082
  msgid "The unit is Megabyte \"MB\""
5083
  msgstr ""
5084
 
5085
- #: app/features/mec/single.php:215 app/features/mec/single.php:220
5086
  msgid "Single Event Date Format"
5087
  msgstr "Einzelveranstaltung Datumformat"
5088
 
5089
- #: app/features/mec/single.php:228 app/features/mec/single.php:236
5090
  msgid "Date Method"
5091
  msgstr "Datum Methode"
5092
 
5093
- #: app/features/mec/single.php:231
5094
  msgid "Next occurrence date"
5095
  msgstr "Nächstes vorkommende Datum"
5096
 
5097
- #: app/features/mec/single.php:232
5098
  msgid "Referred date"
5099
  msgstr "Gewünschtes Datum"
5100
 
5101
- #: app/features/mec/single.php:237
5102
  #, fuzzy
5103
  #| msgid ""
5104
  #| "\"Referred date\" shows the event date based on referred date in event "
@@ -5109,99 +5210,99 @@ msgstr ""
5109
  "\"Gewünschtes Datum\" zeigt das Ereignisdatum basierend auf dem angegebenen "
5110
  "Datum in der Eventliste an."
5111
 
5112
- #: app/features/mec/single.php:244 app/features/mec/single.php:255
5113
  msgid "Single Event Style"
5114
  msgstr "Single Event Stil"
5115
 
5116
- #: app/features/mec/single.php:247
5117
  msgid "Default Style"
5118
  msgstr "Standardstil voreingestellt"
5119
 
5120
- #: app/features/mec/single.php:250
5121
  #, fuzzy
5122
  #| msgid "MEC Single Sidebar"
5123
  msgid "Elementor Single Builder"
5124
  msgstr "MEC Single Sidebar"
5125
 
5126
- #: app/features/mec/single.php:256
5127
  msgid "Choose your single event style."
5128
  msgstr "Wählen Sie Ihren Single Event Stil"
5129
 
5130
- #: app/features/mec/single.php:263 app/features/mec/single.php:271
5131
  #, fuzzy
5132
  #| msgid "Booking"
5133
  msgid "Booking Style"
5134
  msgstr "Buchung / Reservierung"
5135
 
5136
- #: app/features/mec/single.php:267
5137
  #, fuzzy
5138
  #| msgid "Modal 1"
5139
  msgid "Modal"
5140
  msgstr "Modal 1"
5141
 
5142
- #: app/features/mec/single.php:272
5143
  msgid ""
5144
  "Choose your Booking style, Please Note: When you set this feature to modal "
5145
  "you can not see booking box if you set popoup module view on shortcodes"
5146
  msgstr ""
5147
 
5148
- #: app/features/mec/single.php:279
5149
  msgid "Disable Block Editor (Gutenberg)"
5150
  msgstr ""
5151
 
5152
- #: app/features/mec/single.php:282
5153
  msgid "Disable Block Editor"
5154
  msgstr ""
5155
 
5156
- #: app/features/mec/single.php:286
5157
  msgid "Block Editor"
5158
  msgstr ""
5159
 
5160
- #: app/features/mec/single.php:287
5161
  msgid ""
5162
  "If you want to use the new WordPress block editor you should keep this "
5163
  "checkbox unchecked."
5164
  msgstr ""
5165
 
5166
- #: app/features/mec/single.php:293 app/features/mec/single.php:300
5167
  msgid "Breadcrumbs"
5168
  msgstr ""
5169
 
5170
- #: app/features/mec/single.php:296
5171
  msgid "Enable Breadcrumbs."
5172
  msgstr ""
5173
 
5174
- #: app/features/mec/single.php:301
5175
  msgid "Check this option, for showing the breadcrumbs on single event page"
5176
  msgstr ""
5177
 
5178
- #: app/features/mec/single.php:314
5179
  msgid "Show countdown module on event page"
5180
  msgstr "Countdownmodul auf Veranstaltungsseite anzeigen"
5181
 
5182
- #: app/features/mec/single.php:319
5183
  msgid "Countdown Style"
5184
  msgstr "Countdown Stil"
5185
 
5186
- #: app/features/mec/single.php:322
5187
  msgid "Plain Style"
5188
  msgstr "Einfacher schlichter Stil"
5189
 
5190
- #: app/features/mec/single.php:323
5191
  msgid "Flip Style"
5192
  msgstr "Flip Stil"
5193
 
5194
- #: app/features/mec/single.php:331 app/features/mec/single.php:338
5195
  msgid "Exceptional days"
5196
  msgstr "Ausgesuchte ausnehmende Tage"
5197
 
5198
- #: app/features/mec/single.php:335
5199
  msgid "Show exceptional days option on Add/Edit events page"
5200
  msgstr ""
5201
  "Ausnehmende Tage anzeigen auf der Seite Ereignisse hinzufügen / bearbeiten "
5202
  "(Show exceptional days option on Add/Edit events page)"
5203
 
5204
- #: app/features/mec/single.php:339
5205
  msgid ""
5206
  "Using this option you can include/exclude certain days to/from event "
5207
  "occurrence dates."
@@ -5209,7 +5310,7 @@ msgstr ""
5209
  "Mit dieser Option können Sie bestimmte Tage von vorkommenden Eventdaten ein-/"
5210
  "ausschließen."
5211
 
5212
- #: app/features/mec/single.php:352
5213
  msgid ""
5214
  "Show additional organizers option on Add/Edit events page and single event "
5215
  "page."
@@ -5217,13 +5318,13 @@ msgstr ""
5217
  "Zeigen Sie zusätzliche Organisatoren auf der Seite Events hinzufügen / "
5218
  "bearbeiten und auf der Seite für einzelne Events an."
5219
 
5220
- #: app/features/mec/single.php:358
5221
  #, fuzzy
5222
  #| msgid "Additional Organizers"
5223
  msgid "Additional locations"
5224
  msgstr "Zusätzliche Organisatoren"
5225
 
5226
- #: app/features/mec/single.php:362
5227
  #, fuzzy
5228
  #| msgid ""
5229
  #| "Show additional organizers option on Add/Edit events page and single "
@@ -5235,11 +5336,11 @@ msgstr ""
5235
  "Zeigen Sie zusätzliche Organisatoren auf der Seite Events hinzufügen / "
5236
  "bearbeiten und auf der Seite für einzelne Events an."
5237
 
5238
- #: app/features/mec/styles.php:181
5239
  msgid "Custom Styles"
5240
  msgstr "Benutzerdefinierte Stile"
5241
 
5242
- #: app/features/mec/styles.php:186
5243
  msgid ""
5244
  "If you're a developer or you have some knowledge about CSS codes, you can "
5245
  "place your desired styles codes here. These codes will be included in your "
@@ -5250,78 +5351,78 @@ msgstr ""
5250
  "Ihre eigenen Stilcodes einfügen. Diese Codes werden in Ihr Frontend "
5251
  "übernommen und übersteuern die MEC- (oder Thema-) Grundeinstellungen."
5252
 
5253
- #: app/features/mec/styling.php:10 app/features/mec/styling.php:311
5254
- #: app/features/mec/styling.php:337
5255
  msgid "Default Font"
5256
  msgstr "Standardschriftart des Themas "
5257
 
5258
- #: app/features/mec/styling.php:203
5259
  msgid "Styling Option"
5260
  msgstr "Style Optionen"
5261
 
5262
- #: app/features/mec/styling.php:208
5263
  msgid "Color Skin"
5264
  msgstr "Farbe Skin"
5265
 
5266
- #: app/features/mec/styling.php:211
5267
  msgid "Predefined Color Skin"
5268
  msgstr "Vordefinierte Farbenoberfläche"
5269
 
5270
- #: app/features/mec/styling.php:254
5271
  msgid "Custom Color Skin"
5272
  msgstr "Benutzerdefinierte Farboberfläche"
5273
 
5274
- #: app/features/mec/styling.php:260
5275
  msgid ""
5276
  "If you want to select a predefined color skin, you must clear the color of "
5277
  "this item"
5278
  msgstr ""
5279
 
5280
- #: app/features/mec/styling.php:265
5281
  msgid "Advanced Color Options (shortcodes)"
5282
  msgstr ""
5283
 
5284
- #: app/features/mec/styling.php:277
5285
  #, fuzzy
5286
  #| msgid "Title of event"
5287
  msgid "Title Hover"
5288
  msgstr "Titel der Veranstaltung"
5289
 
5290
- #: app/features/mec/styling.php:294
5291
  msgid "Typography"
5292
  msgstr "Typographie"
5293
 
5294
- #: app/features/mec/styling.php:296
5295
  msgid "Heading (Events Title) Font Family"
5296
  msgstr "Schriftart Überschrift (Titel der Veranstaltung)"
5297
 
5298
- #: app/features/mec/styling.php:322
5299
  msgid "Paragraph Font Family"
5300
  msgstr "Schriftart Absätze"
5301
 
5302
- #: app/features/mec/styling.php:349 app/features/mec/styling.php:355
5303
  #, fuzzy
5304
  #| msgid "Enable Google Recaptcha"
5305
  msgid "Disable Google Fonts"
5306
  msgstr "Google Recaptcha aktivieren"
5307
 
5308
- #: app/features/mec/styling.php:356
5309
  msgid "To be GDPR compliant you may need to disable Google fonts!"
5310
  msgstr ""
5311
 
5312
- #: app/features/mec/styling.php:365
5313
  msgid "Container Width"
5314
  msgstr ""
5315
 
5316
- #: app/features/mec/styling.php:367 app/features/mec/styling.php:372
5317
  msgid "Desktop Normal Screens"
5318
  msgstr ""
5319
 
5320
- #: app/features/mec/styling.php:373 app/features/mec/styling.php:386
5321
  msgid "You can enter your theme container size in this field"
5322
  msgstr ""
5323
 
5324
- #: app/features/mec/styling.php:380 app/features/mec/styling.php:385
5325
  msgid "Desktop Large Screens"
5326
  msgstr ""
5327
 
@@ -5732,6 +5833,12 @@ msgstr "Wie kann ich MEC-Vorlagendateien überschreiben?"
5732
  msgid "How to add/manage shortcodes?"
5733
  msgstr "Wie kann man shortcodes hinzufügen / managen?"
5734
 
 
 
 
 
 
 
5735
  #: app/features/organizers.php:105 app/features/organizers.php:147
5736
  #: app/features/speakers.php:177
5737
  msgid "Insert organizer phone number."
@@ -5798,8 +5905,8 @@ msgstr "z.B.. max@mustermann.com"
5798
  msgid "eg. https://webnus.net"
5799
  msgstr "http://webnus.net"
5800
 
5801
- #: app/features/organizers.php:306 app/libraries/main.php:4515
5802
- #: app/skins/single.php:693
5803
  msgid "Other Organizers"
5804
  msgstr "Andere Veranstalter"
5805
 
@@ -5820,11 +5927,11 @@ msgstr "Um neue Veranstaltungen einzugeben, bitte %s/%s"
5820
  msgid "#"
5821
  msgstr ""
5822
 
5823
- #: app/features/profile/profile.php:34 app/libraries/main.php:2573
5824
  msgid "Status"
5825
  msgstr ""
5826
 
5827
- #: app/features/profile/profile.php:37 app/libraries/main.php:1709
5828
  msgid "Attendees"
5829
  msgstr "Teilnehmer"
5830
 
@@ -5839,8 +5946,8 @@ msgstr "% s Rechnung"
5839
  msgid "<i class=\"mec-sl-eye\"></i> %s"
5840
  msgstr ""
5841
 
5842
- #: app/features/profile/profile.php:96 app/libraries/main.php:1723
5843
- #: app/libraries/main.php:4513
5844
  msgid "Ticket"
5845
  msgstr "Ticket"
5846
 
@@ -5920,7 +6027,7 @@ msgstr "%s Preis"
5920
  msgid "Discount"
5921
  msgstr "Rabatt"
5922
 
5923
- #: app/libraries/book.php:626 app/modules/booking/default.php:303
5924
  #: app/modules/booking/default.php:401
5925
  msgid "Download Invoice"
5926
  msgstr "Download Rechnung"
@@ -5946,51 +6053,51 @@ msgctxt "plugin link"
5946
  msgid "Upgrade"
5947
  msgstr ""
5948
 
5949
- #: app/libraries/factory.php:325
5950
  msgid "day"
5951
  msgstr "Tag"
5952
 
5953
- #: app/libraries/factory.php:326 app/modules/countdown/details.php:123
5954
  #: app/skins/available_spot/tpl.php:147 app/skins/countdown/tpl.php:132
5955
  #: app/skins/countdown/tpl.php:176 app/skins/countdown/tpl.php:225
5956
  msgid "days"
5957
  msgstr "Tage"
5958
 
5959
- #: app/libraries/factory.php:327
5960
  msgid "hour"
5961
  msgstr "Stunde"
5962
 
5963
- #: app/libraries/factory.php:328 app/modules/countdown/details.php:130
5964
  #: app/skins/available_spot/tpl.php:151 app/skins/countdown/tpl.php:138
5965
  #: app/skins/countdown/tpl.php:182 app/skins/countdown/tpl.php:231
5966
  msgid "hours"
5967
  msgstr "Stunden"
5968
 
5969
- #: app/libraries/factory.php:329
5970
  msgid "minute"
5971
  msgstr "Minute"
5972
 
5973
- #: app/libraries/factory.php:330 app/modules/countdown/details.php:137
5974
  #: app/skins/available_spot/tpl.php:155 app/skins/countdown/tpl.php:144
5975
  #: app/skins/countdown/tpl.php:188 app/skins/countdown/tpl.php:237
5976
  msgid "minutes"
5977
  msgstr "Minuten"
5978
 
5979
- #: app/libraries/factory.php:331
5980
  msgid "second"
5981
  msgstr "Sekunde"
5982
 
5983
- #: app/libraries/factory.php:332 app/modules/countdown/details.php:144
5984
  #: app/skins/available_spot/tpl.php:159 app/skins/countdown/tpl.php:150
5985
  #: app/skins/countdown/tpl.php:194 app/skins/countdown/tpl.php:243
5986
  msgid "seconds"
5987
  msgstr "Sekunden"
5988
 
5989
- #: app/libraries/factory.php:375
5990
  msgid "MEC Single Sidebar"
5991
  msgstr "MEC Single Sidebar"
5992
 
5993
- #: app/libraries/factory.php:376
5994
  msgid "Custom sidebar for single and modal page of MEC."
5995
  msgstr "Custom sidebar for single and modal page of MEC."
5996
 
@@ -6000,38 +6107,38 @@ msgstr ""
6000
  "Eine Vorschau kann nicht angezeit werden, da es sich um einen geschützen "
6001
  "Beitrag handelt."
6002
 
6003
- #: app/libraries/main.php:330 app/libraries/main.php:1242
6004
- #: app/libraries/main.php:1267
6005
  msgid "Grid View"
6006
  msgstr "Rasterdarstellung"
6007
 
6008
- #: app/libraries/main.php:331 app/libraries/main.php:1243
6009
- #: app/libraries/main.php:1268
6010
  msgid "Agenda View"
6011
  msgstr "Agendaansicht"
6012
 
6013
- #: app/libraries/main.php:332 app/libraries/main.php:1234
6014
- #: app/libraries/main.php:1259
6015
  msgid "Full Calendar"
6016
  msgstr "Ganzer Kalender"
6017
 
6018
- #: app/libraries/main.php:334 app/libraries/main.php:1236
6019
- #: app/libraries/main.php:1261
6020
  msgid "Calendar/Monthly View"
6021
  msgstr "Kalender-/Monatsansicht"
6022
 
6023
- #: app/libraries/main.php:337 app/libraries/main.php:1239
6024
- #: app/libraries/main.php:1264
6025
  msgid "Timetable View"
6026
  msgstr "Stundenplan"
6027
 
6028
- #: app/libraries/main.php:338 app/libraries/main.php:1240
6029
- #: app/libraries/main.php:1265
6030
  msgid "Masonry View"
6031
  msgstr "Kachel Ansicht"
6032
 
6033
- #: app/libraries/main.php:339 app/libraries/main.php:1244
6034
- #: app/libraries/main.php:1269
6035
  msgid "Map View"
6036
  msgstr "Kartenansicht"
6037
 
@@ -6055,31 +6162,31 @@ msgstr "Karussellansicht"
6055
  msgid "Slider View"
6056
  msgstr "Slideransicht"
6057
 
6058
- #: app/libraries/main.php:382 app/libraries/main.php:4493
6059
  msgid "SU"
6060
  msgstr "SO"
6061
 
6062
- #: app/libraries/main.php:383 app/libraries/main.php:4494
6063
  msgid "MO"
6064
  msgstr "MO"
6065
 
6066
- #: app/libraries/main.php:384 app/libraries/main.php:4495
6067
  msgid "TU"
6068
  msgstr "DI"
6069
 
6070
- #: app/libraries/main.php:385 app/libraries/main.php:4496
6071
  msgid "WE"
6072
  msgstr "MI"
6073
 
6074
- #: app/libraries/main.php:386 app/libraries/main.php:4497
6075
  msgid "TH"
6076
  msgstr "DO"
6077
 
6078
- #: app/libraries/main.php:387 app/libraries/main.php:4498
6079
  msgid "FR"
6080
  msgstr "FR"
6081
 
6082
- #: app/libraries/main.php:388 app/libraries/main.php:4499
6083
  msgid "SA"
6084
  msgstr "SA"
6085
 
@@ -6120,278 +6227,290 @@ msgid ""
6120
  "desktops, mobiles and tablets as well."
6121
  msgstr ""
6122
 
6123
- #: app/libraries/main.php:1097
6124
  msgid "Events at this location"
6125
  msgstr "Veranstaltungen an diesem Ort "
6126
 
6127
- #: app/libraries/main.php:1097
6128
  msgid "Event at this location"
6129
  msgstr "Veranstaltung an diesem Ort "
6130
 
6131
- #: app/libraries/main.php:1138
6132
  msgid "Facebook"
6133
  msgstr "Facebook"
6134
 
6135
- #: app/libraries/main.php:1139
6136
  msgid "Twitter"
6137
  msgstr "Twitter"
6138
 
6139
- #: app/libraries/main.php:1140 app/libraries/main.php:1190
6140
  msgid "Linkedin"
6141
  msgstr "Linkedin"
6142
 
6143
- #: app/libraries/main.php:1141 app/libraries/main.php:1223
6144
  msgid "VK"
6145
  msgstr ""
6146
 
6147
- #: app/libraries/main.php:1160
6148
  msgid "Share on Facebook"
6149
  msgstr "Teilen auf Facebook"
6150
 
6151
- #: app/libraries/main.php:1175
6152
  msgid "Tweet"
6153
  msgstr "Tweet"
6154
 
6155
- #: app/libraries/main.php:1245
6156
  #, fuzzy
6157
  #| msgid "Shortcode"
6158
  msgid "Custom Shortcode"
6159
  msgstr "Shortcode"
6160
 
6161
- #: app/libraries/main.php:1604
6162
  msgid "Your booking successfully verified."
6163
  msgstr "Ihre Buchung wurde erfolgreich verifiziert."
6164
 
6165
- #: app/libraries/main.php:1605
6166
  msgid "Your booking cannot verify!"
6167
  msgstr "Ihre Buchung kann nicht verifiziert werden!"
6168
 
6169
- #: app/libraries/main.php:1617
6170
  msgid "Your booking successfully canceled."
6171
  msgstr "Ihre Buchung wurde erfolgreich storniert."
6172
 
6173
- #: app/libraries/main.php:1618
6174
  msgid "Your booking cannot be canceled."
6175
  msgstr "Ihre Buchung kann nicht storniert werden."
6176
 
6177
- #: app/libraries/main.php:1622
6178
  msgid "You canceled the payment successfully."
6179
  msgstr "Sie haben die Zahlung erfolgreich storniert."
6180
 
6181
- #: app/libraries/main.php:1626
6182
  msgid "You returned from payment gateway successfully."
6183
  msgstr "Sie sind vom Bezahlungs-Gateway erfolgreich zurückgekehrt."
6184
 
6185
- #: app/libraries/main.php:1650
 
 
 
 
 
 
 
 
 
 
 
 
6186
  msgid "Cannot find the booking!"
6187
  msgstr "Kann die Buchung nicht finden!"
6188
 
6189
- #: app/libraries/main.php:1650
6190
  msgid "Booking is invalid."
6191
  msgstr "Buchung ist ungültig."
6192
 
6193
- #: app/libraries/main.php:1679
6194
  #, php-format
6195
  msgid "%s Invoice"
6196
  msgstr "% s Rechnung"
6197
 
6198
- #: app/libraries/main.php:1700
6199
  msgid "Transaction ID"
6200
  msgstr "Transaktions-ID"
6201
 
6202
- #: app/libraries/main.php:1753
6203
  msgid "Billing"
6204
  msgstr "Abrechnung"
6205
 
6206
- #: app/libraries/main.php:1764
6207
  msgid "Total"
6208
  msgstr "Gesamt"
6209
 
6210
- #: app/libraries/main.php:1797
6211
  msgid "Security nonce is not valid."
6212
  msgstr "Sicherheits-Nonce ist ungültig."
6213
 
6214
- #: app/libraries/main.php:1797 app/libraries/main.php:1829
6215
  msgid "iCal export stopped!"
6216
  msgstr "iCal Export wurde unterbrochen!"
6217
 
6218
- #: app/libraries/main.php:1829
6219
  #, fuzzy
6220
  #| msgid "Request is invalid!"
6221
  msgid "Request is not valid."
6222
  msgstr "Die Anfrage ist ungültig!"
6223
 
6224
- #: app/libraries/main.php:2157 app/libraries/main.php:2187
6225
- #: app/libraries/main.php:2216 app/libraries/main.php:2246
6226
- #: app/libraries/main.php:2275 app/libraries/main.php:2304
6227
- #: app/libraries/main.php:2333 app/libraries/main.php:2362
6228
- #: app/libraries/main.php:2391 app/libraries/main.php:2415
6229
- #: app/libraries/main.php:2459 app/libraries/main.php:2503
6230
- #: app/libraries/main.php:2550 app/libraries/main.php:2596
6231
  msgid "Sort"
6232
  msgstr "Sortieren"
6233
 
6234
- #: app/libraries/main.php:2163 app/libraries/main.php:2193
6235
- #: app/libraries/main.php:2222 app/libraries/main.php:2252
6236
- #: app/libraries/main.php:2281 app/libraries/main.php:2310
6237
- #: app/libraries/main.php:2339 app/libraries/main.php:2368
6238
- #: app/libraries/main.php:2421 app/libraries/main.php:2465
6239
- #: app/libraries/main.php:2509 app/libraries/main.php:2556
6240
  msgid "Required Field"
6241
  msgstr "Pflichtfeld"
6242
 
6243
- #: app/libraries/main.php:2169 app/libraries/main.php:2199
6244
- #: app/libraries/main.php:2228 app/libraries/main.php:2258
6245
- #: app/libraries/main.php:2287 app/libraries/main.php:2316
6246
- #: app/libraries/main.php:2345 app/libraries/main.php:2374
6247
- #: app/libraries/main.php:2427 app/libraries/main.php:2471
6248
- #: app/libraries/main.php:2515 app/libraries/main.php:2562
6249
  msgid "Insert a label for this field"
6250
  msgstr "Geben Sie eine Bezeichnung (Label) für dieses Feld ein."
6251
 
6252
- #: app/libraries/main.php:2397
6253
  msgid "HTML and shortcode are allowed."
6254
  msgstr "HTML und shortcodes sind erlaubt."
6255
 
6256
- #: app/libraries/main.php:2440 app/libraries/main.php:2484
6257
- #: app/libraries/main.php:2528
6258
  msgid "Option"
6259
  msgstr "Option"
6260
 
6261
- #: app/libraries/main.php:2562
6262
  #, php-format
6263
  msgid "Instead of %s, the page title with a link will be show."
6264
  msgstr "Anstelle von %s, wird der Seitentitel mit einem Link gezeigt"
6265
 
6266
- #: app/libraries/main.php:2564
6267
  msgid "Agreement Page"
6268
  msgstr "Zustimmungsseite"
6269
 
6270
- #: app/libraries/main.php:2575
6271
  msgid "Checked by default"
6272
  msgstr ""
6273
 
6274
- #: app/libraries/main.php:2576
6275
  msgid "Unchecked by default"
6276
  msgstr ""
6277
 
6278
- #: app/libraries/main.php:2598
6279
  msgid "Insert a label for this option"
6280
  msgstr "Ein neues Label für diese Option einfügen"
6281
 
6282
- #: app/libraries/main.php:2613
6283
  msgid "Free"
6284
  msgstr "kostenfrei"
6285
 
6286
- #: app/libraries/main.php:3165 app/libraries/main.php:4721
6287
  #, fuzzy
6288
  #| msgid "M.E. Calendar"
6289
  msgid "M.E. Calender"
6290
  msgstr "M.E. Calender"
6291
 
6292
- #: app/libraries/main.php:3320
6293
  #, php-format
6294
  msgid "Copy of %s"
6295
  msgstr "Kopie von %s"
6296
 
6297
- #: app/libraries/main.php:3983
6298
  msgid "Booked an event."
6299
  msgstr "Eine Veranstaltung wurde gebucht."
6300
 
6301
- #: app/libraries/main.php:4024
6302
  #, php-format
6303
  msgid "%s booked %s event."
6304
  msgstr "%s gebuchtes %s Event"
6305
 
6306
- #: app/libraries/main.php:4476
6307
  msgid "Taxonomies"
6308
  msgstr "Klassifizierung "
6309
 
6310
- #: app/libraries/main.php:4478
6311
  msgid "Category Plural Label"
6312
  msgstr "Kategorien"
6313
 
6314
- #: app/libraries/main.php:4479
6315
  msgid "Category Singular Label"
6316
  msgstr "Kategorie"
6317
 
6318
- #: app/libraries/main.php:4480
6319
  msgid "Label Plural Label"
6320
  msgstr "Labels"
6321
 
6322
- #: app/libraries/main.php:4481
6323
  msgid "Label Singular Label"
6324
  msgstr "Label"
6325
 
6326
- #: app/libraries/main.php:4481
6327
  msgid "label"
6328
  msgstr "label"
6329
 
6330
- #: app/libraries/main.php:4482
6331
  msgid "Location Plural Label"
6332
  msgstr "Veranstaltungsorte"
6333
 
6334
- #: app/libraries/main.php:4483
6335
  msgid "Location Singular Label"
6336
  msgstr "Veranstaltungsort"
6337
 
6338
- #: app/libraries/main.php:4484
6339
  msgid "Organizer Plural Label"
6340
  msgstr "Veranstalter"
6341
 
6342
- #: app/libraries/main.php:4485
6343
  msgid "Organizer Singular Label"
6344
  msgstr "Veranstalter"
6345
 
6346
- #: app/libraries/main.php:4486
6347
  #, fuzzy
6348
  #| msgid "Label Plural Label"
6349
  msgid "Speaker Plural Label"
6350
  msgstr "Labels"
6351
 
6352
- #: app/libraries/main.php:4487
6353
  #, fuzzy
6354
  #| msgid "Label Singular Label"
6355
  msgid "Speaker Singular Label"
6356
  msgstr "Label"
6357
 
6358
- #: app/libraries/main.php:4493
6359
  msgid "Sunday abbreviation"
6360
  msgstr "Sonntag Abkürzung"
6361
 
6362
- #: app/libraries/main.php:4494
6363
  msgid "Monday abbreviation"
6364
  msgstr "Montag Abkürzung"
6365
 
6366
- #: app/libraries/main.php:4495
6367
  msgid "Tuesday abbreviation"
6368
  msgstr "Dienstag Abkürzung"
6369
 
6370
- #: app/libraries/main.php:4496
6371
  msgid "Wednesday abbreviation"
6372
  msgstr "Mittwoch Abkürzung"
6373
 
6374
- #: app/libraries/main.php:4497
6375
  msgid "Thursday abbreviation"
6376
  msgstr "Donnerstag Abkürzung"
6377
 
6378
- #: app/libraries/main.php:4498
6379
  msgid "Friday abbreviation"
6380
  msgstr "Freitag Abkürzung"
6381
 
6382
- #: app/libraries/main.php:4499
6383
  msgid "Saturday abbreviation"
6384
  msgstr "Samstag Abkürzung "
6385
 
6386
- #: app/libraries/main.php:4503
6387
  msgid "Others"
6388
  msgstr "Andere"
6389
 
6390
- #: app/libraries/main.php:4505
6391
  msgid "Booking Success Message"
6392
  msgstr "Buchung erfolgreich Mitteilung"
6393
 
6394
- #: app/libraries/main.php:4505
6395
  msgid ""
6396
  "Thanks for your booking. Your tickets booked, booking verification might be "
6397
  "needed, please check your email."
@@ -6399,14 +6518,14 @@ msgstr ""
6399
  "Vielen Dank für Ihre Buchung. Für die gebuchten Tickets ist ggf. eine "
6400
  "Bestätigung durch Sie erforderlich. Bitte überprüfen Sie Ihre Emails."
6401
 
6402
- #: app/libraries/main.php:4506 app/widgets/single.php:131
6403
  msgid "Register Button"
6404
  msgstr "Register Button"
6405
 
6406
- #: app/libraries/main.php:4506 app/skins/available_spot/tpl.php:205
6407
- #: app/skins/carousel/render.php:152 app/skins/carousel/render.php:182
6408
- #: app/skins/grid/render.php:116 app/skins/grid/render.php:159
6409
- #: app/skins/grid/render.php:200 app/skins/grid/render.php:228
6410
  #: app/skins/list/render.php:102 app/skins/list/render.php:190
6411
  #: app/skins/masonry/render.php:175 app/skins/single.php:606
6412
  #: app/skins/single.php:609 app/skins/single/default.php:231
@@ -6420,14 +6539,14 @@ msgstr "Register Button"
6420
  msgid "REGISTER"
6421
  msgstr "ANMELDEN"
6422
 
6423
- #: app/libraries/main.php:4507
6424
  msgid "View Detail Button"
6425
  msgstr "Ansicht Detail Button"
6426
 
6427
- #: app/libraries/main.php:4507 app/skins/carousel/render.php:152
6428
- #: app/skins/carousel/render.php:182 app/skins/grid/render.php:116
6429
- #: app/skins/grid/render.php:159 app/skins/grid/render.php:200
6430
- #: app/skins/grid/render.php:228 app/skins/list/render.php:102
6431
  #: app/skins/list/render.php:190 app/skins/masonry/render.php:175
6432
  #: app/skins/slider/render.php:109 app/skins/slider/render.php:154
6433
  #: app/skins/slider/render.php:198 app/skins/slider/render.php:243
@@ -6435,58 +6554,62 @@ msgstr "Ansicht Detail Button"
6435
  msgid "View Detail"
6436
  msgstr "Details "
6437
 
6438
- #: app/libraries/main.php:4508
6439
  msgid "Event Detail Button"
6440
  msgstr "Event Detail Button"
6441
 
6442
- #: app/libraries/main.php:4508 app/skins/countdown/tpl.php:218
6443
  msgid "Event Detail"
6444
  msgstr "Veranstaltungsdetails"
6445
 
6446
- #: app/libraries/main.php:4510
6447
  msgid "More Info Link"
6448
  msgstr "Link Mehr Informationen"
6449
 
6450
- #: app/libraries/main.php:4513
6451
  msgid "Ticket (Singular)"
6452
  msgstr "Ticket"
6453
 
6454
- #: app/libraries/main.php:4514
6455
  msgid "Tickets (Plural)"
6456
  msgstr "Tickets"
6457
 
6458
- #: app/libraries/main.php:4581
6459
  msgid "EventON"
6460
  msgstr "EventON"
6461
 
6462
- #: app/libraries/main.php:4582
6463
  msgid "The Events Calendar"
6464
  msgstr "The Events Calendar"
6465
 
6466
- #: app/libraries/main.php:4583
6467
  msgid "Events Schedule WP Plugin"
6468
  msgstr "Event Zeitplan WP-Plugin"
6469
 
6470
- #: app/libraries/main.php:4584
6471
  msgid "Calendarize It"
6472
  msgstr ""
6473
 
6474
- #: app/libraries/main.php:4658 app/libraries/main.php:4678
6475
  msgid "Confirmed"
6476
  msgstr "Bestätigt"
6477
 
6478
- #: app/libraries/main.php:4659 app/libraries/main.php:4686
6479
  msgid "Rejected"
6480
  msgstr "Abgelehnt"
6481
 
6482
- #: app/libraries/main.php:4660 app/libraries/main.php:4682
6483
  msgid "Pending"
6484
  msgstr "Ausstehend"
6485
 
6486
- #: app/libraries/main.php:4708
6487
  msgid "Waiting"
6488
  msgstr "in Bearbeitung"
6489
 
 
 
 
 
6490
  #: app/libraries/notifications.php:61
6491
  msgid "Please verify your email."
6492
  msgstr "Bitte bestätigen Sie Ihre email."
@@ -6541,11 +6664,7 @@ msgstr "Ja"
6541
  msgid "No"
6542
  msgstr "Nein"
6543
 
6544
- #: app/libraries/render.php:366
6545
- msgid "Skin controller does not exist."
6546
- msgstr "Skin contoller existiert nicht."
6547
-
6548
- #: app/libraries/skins.php:932
6549
  msgid "Ignore month and years"
6550
  msgstr "Monat und Jahre ignorieren"
6551
 
@@ -6660,44 +6779,67 @@ msgstr "Zum Event"
6660
  msgid "Time"
6661
  msgstr "Uhrzeit"
6662
 
6663
- #: app/modules/weather/details.php:48
6664
  msgid " °C"
6665
  msgstr " °C"
6666
 
6667
- #: app/modules/weather/details.php:54
6668
- msgid "Wind"
6669
- msgstr "Wind"
 
 
 
 
 
 
 
 
 
 
6670
 
6671
- #: app/modules/weather/details.php:54
6672
  msgid " KPH"
6673
  msgstr " KPH"
6674
 
6675
- #: app/modules/weather/details.php:58
 
 
 
 
 
 
 
 
6676
  msgid "Humidity"
6677
  msgstr "Feuchtigkeit"
6678
 
6679
- #: app/modules/weather/details.php:58
6680
  msgid " %"
6681
  msgstr " %"
6682
 
6683
- #: app/modules/weather/details.php:62
6684
- msgid "Visibility"
6685
- msgstr "Sichtbarkeit"
6686
-
6687
- #: app/modules/weather/details.php:62
6688
  msgid " KM"
6689
  msgstr " KM"
6690
 
 
 
 
 
 
 
 
 
6691
  #: app/skins/agenda/tpl.php:65 app/skins/agenda/tpl.php:69
6692
  #: app/skins/carousel/tpl.php:45 app/skins/grid/tpl.php:55
6693
  #: app/skins/grid/tpl.php:59 app/skins/list/tpl.php:60
6694
- #: app/skins/list/tpl.php:64 app/skins/masonry/tpl.php:54
6695
- #: app/skins/masonry/tpl.php:58 app/skins/slider/tpl.php:43
6696
  msgid "No event found!"
6697
  msgstr "Keine Veranstaltung gefunden"
6698
 
6699
  #: app/skins/agenda/tpl.php:74 app/skins/grid/tpl.php:64
6700
- #: app/skins/list/tpl.php:69 app/skins/yearly_view/render.php:121
 
6701
  msgid "Load More"
6702
  msgstr "Weitere anzeigen"
6703
 
@@ -6705,18 +6847,18 @@ msgstr "Weitere anzeigen"
6705
  msgid "Available Spot(s):"
6706
  msgstr "Verfügbare Spot (s):"
6707
 
6708
- #: app/skins/carousel/render.php:20
6709
- #, fuzzy
6710
- #| msgid "View %s"
6711
- msgid "View All"
6712
- msgstr "Ansicht %s"
6713
-
6714
- #: app/skins/carousel/render.php:197 app/skins/countdown/tpl.php:157
6715
  #: app/skins/countdown/tpl.php:201 app/skins/cover/tpl.php:101
6716
  #: app/skins/list/render.php:120
6717
  msgid "EVENT DETAIL"
6718
  msgstr "VERANSTALTUNGSDETAILS"
6719
 
 
 
 
 
 
 
6720
  #: app/skins/countdown/tpl.php:119 app/skins/countdown/tpl.php:163
6721
  #: app/skins/countdown/tpl.php:208
6722
  #, php-format
@@ -6735,7 +6877,7 @@ msgstr "Keine Veranstaltung"
6735
  msgid "List"
6736
  msgstr "Liste / Listenansicht"
6737
 
6738
- #: app/skins/masonry.php:197
6739
  msgid "All"
6740
  msgstr "Alle"
6741
 
@@ -6763,21 +6905,21 @@ msgstr ""
6763
  msgid "Sold out!"
6764
  msgstr "Ausverkauft!"
6765
 
6766
- #: app/skins/single.php:654 app/skins/single.php:708
6767
  #: app/skins/single/default.php:204 app/skins/single/default.php:415
6768
  #: app/skins/single/m1.php:100 app/skins/single/m2.php:32
6769
  #: app/skins/single/modern.php:41
6770
  msgid "Phone"
6771
  msgstr "Phone"
6772
 
6773
- #: app/skins/single.php:668 app/skins/single.php:722
6774
  #: app/skins/single/default.php:218 app/skins/single/default.php:429
6775
  #: app/skins/single/m1.php:114 app/skins/single/m2.php:46
6776
  #: app/skins/single/modern.php:55
6777
  msgid "Website"
6778
  msgstr "Website"
6779
 
6780
- #: app/skins/single.php:791
6781
  #, fuzzy
6782
  #| msgid "No Search Options"
6783
  msgid "Speakers:"
@@ -7225,6 +7367,11 @@ msgstr "http://webnus.net"
7225
  #~ msgid "This booking is not free!"
7226
  #~ msgstr "Diese Buchung ist nicht kostenlos!"
7227
 
 
 
 
 
 
7228
  #~ msgid "Booking Notification"
7229
  #~ msgstr "Buchungsbenachrichtigung"
7230
 
2
  msgstr ""
3
  "Project-Id-Version: ME Calender\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2019-07-16 12:11+0430\n"
6
+ "PO-Revision-Date: 2019-07-16 12:12+0430\n"
7
  "Last-Translator: Jogon <koenig@kafinanz.de>\n"
8
  "Language-Team: German\n"
9
  "Language: de_DE\n"
23
  msgid "Modern Events Calendar"
24
  msgstr "Moderner Event Kalender "
25
 
26
+ #: app/addons/KC.php:70 app/addons/VC.php:64 app/features/mec/styling.php:287
27
  msgid "Content"
28
  msgstr "Inhalt"
29
 
36
  msgid "Select from predefined shortcodes"
37
  msgstr "Wählen Sie aus vordefinierten Shortcodes"
38
 
39
+ #: app/addons/divi/includes/modules/MECShortcodes/MECShortcodes.php:15
40
+ #: app/addons/divi/includes/modules/MECShortcodes/MECShortcodes.php:25
41
+ #, fuzzy
42
+ #| msgid "Shortcodes"
43
+ msgid "MEC Shortcodes"
44
+ msgstr "Shortcodes"
45
+
46
+ #: app/addons/divi/includes/modules/MECShortcodes/MECShortcodes.php:28
47
+ #, fuzzy
48
+ #| msgid "Insert your desired tags comma separated."
49
+ msgid "Input your desired shortcode_id here."
50
+ msgstr "Geben Sie die gewünschten Tags (Schlagworte) durch Komma getrennt ein"
51
+
52
  #: app/addons/elementor/shortcode.php:34
53
  #, fuzzy
54
  #| msgid "Modern Events Calendar"
68
  msgstr "Alles Auswählen"
69
 
70
  #: app/features/colors.php:50 app/features/fes/form.php:794
71
+ #: app/features/mec/settings.php:791
72
  msgid "Event Color"
73
  msgstr "Farbe der Veranstaltung"
74
 
76
  #: app/features/mec/booking.php:33 app/features/mec/dashboard.php:108
77
  #: app/features/mec/gateways.php:24 app/features/mec/ie.php:20
78
  #: app/features/mec/messages.php:24 app/features/mec/modules.php:31
79
+ #: app/features/mec/notifications.php:23 app/features/mec/regform.php:61
80
  #: app/features/mec/settings.php:44 app/features/mec/single.php:23
81
  #: app/features/mec/styles.php:24 app/features/mec/styling.php:46
82
  #: app/features/mec/support-page.php:168 app/features/mec/support.php:20
83
  msgid "Settings"
84
  msgstr "Einstellungen"
85
 
86
+ #: app/features/contextual.php:62 app/features/events.php:2251
87
+ #: app/features/mec/booking.php:147 app/features/mec/gateways.php:112
88
+ #: app/features/mec/ie.php:108 app/features/mec/messages.php:112
89
+ #: app/features/mec/modules.php:174 app/features/mec/notifications.php:111
90
+ #: app/features/mec/regform.php:148 app/features/mec/regform.php:217
91
+ #: app/features/mec/settings.php:184 app/features/mec/single.php:140
92
+ #: app/features/mec/styles.php:112 app/features/mec/styling.php:134
93
  #: app/features/mec/support.php:29
94
  msgid "Booking Form"
95
  msgstr "Buchungsformular"
108
  "<iframe width=\"600\" height=\"300\" src=\"https://www.youtube.com/embed/"
109
  "YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></iframe>"
110
 
111
+ #: app/features/contextual.php:70 app/features/mec/booking.php:154
112
+ #: app/features/mec/gateways.php:119 app/features/mec/gateways.php:182
113
+ #: app/features/mec/ie.php:115 app/features/mec/messages.php:119
114
+ #: app/features/mec/modules.php:181 app/features/mec/notifications.php:118
115
+ #: app/features/mec/regform.php:155 app/features/mec/settings.php:191
116
+ #: app/features/mec/single.php:147 app/features/mec/styles.php:119
117
+ #: app/features/mec/styling.php:141 app/features/mec/support.php:36
118
  msgid "Payment Gateways"
119
  msgstr "Zahlungs-Gateways"
120
 
128
  "height=\"300\" src=\"https://www.youtube.com/embed/Hpg4chWlxoQ\" frameborder="
129
  "\"0\" allowfullscreen></iframe>"
130
 
131
+ #: app/features/contextual.php:77 app/features/mec/booking.php:163
132
+ #: app/features/mec/gateways.php:128 app/features/mec/ie.php:124
133
+ #: app/features/mec/messages.php:128 app/features/mec/modules.php:190
134
+ #: app/features/mec/notifications.php:130 app/features/mec/regform.php:163
135
+ #: app/features/mec/settings.php:200 app/features/mec/single.php:156
136
+ #: app/features/mec/styles.php:128 app/features/mec/styling.php:150
137
  #: app/features/mec/support.php:45
138
  msgid "Notifications"
139
  msgstr "Benachrichtigungen"
216
  #: app/features/contextual.php:117 app/features/mec/booking.php:37
217
  #: app/features/mec/gateways.php:28 app/features/mec/ie.php:24
218
  #: app/features/mec/messages.php:28 app/features/mec/modules.php:35
219
+ #: app/features/mec/notifications.php:27 app/features/mec/regform.php:65
220
+ #: app/features/mec/settings.php:51 app/features/mec/settings.php:258
221
  #: app/features/mec/single.php:27 app/features/mec/styles.php:28
222
  #: app/features/mec/styling.php:50
223
  msgid "General Options"
226
  #: app/features/contextual.php:139 app/features/mec/booking.php:39
227
  #: app/features/mec/gateways.php:30 app/features/mec/ie.php:26
228
  #: app/features/mec/messages.php:30 app/features/mec/modules.php:37
229
+ #: app/features/mec/notifications.php:29 app/features/mec/regform.php:67
230
+ #: app/features/mec/settings.php:63 app/features/mec/settings.php:575
231
  #: app/features/mec/single.php:29 app/features/mec/styles.php:30
232
  #: app/features/mec/styling.php:52
233
  msgid "Slugs/Permalinks"
240
  #: app/features/contextual.php:166 app/features/mec/booking.php:40
241
  #: app/features/mec/gateways.php:31 app/features/mec/ie.php:27
242
  #: app/features/mec/messages.php:31 app/features/mec/modules.php:38
243
+ #: app/features/mec/notifications.php:30 app/features/mec/regform.php:68
244
+ #: app/features/mec/settings.php:69 app/features/mec/settings.php:607
245
  #: app/features/mec/single.php:30 app/features/mec/styles.php:31
246
  #: app/features/mec/styling.php:53
247
  msgid "Currency Options"
248
  msgstr "Währungseinstellungen"
249
 
250
+ #: app/features/contextual.php:182 app/features/mec/booking.php:125
251
+ #: app/features/mec/gateways.php:90 app/features/mec/ie.php:86
252
+ #: app/features/mec/messages.php:90 app/features/mec/modules.php:110
253
+ #: app/features/mec/modules.php:265 app/features/mec/modules.php:283
254
+ #: app/features/mec/notifications.php:89 app/features/mec/regform.php:127
255
+ #: app/features/mec/settings.php:162 app/features/mec/single.php:118
256
+ #: app/features/mec/styles.php:90 app/features/mec/styling.php:112
257
  msgid "Google Maps Options"
258
  msgstr "Google Maps Einstellungen"
259
 
260
  #: app/features/contextual.php:244 app/features/mec/booking.php:41
261
  #: app/features/mec/gateways.php:32 app/features/mec/ie.php:28
262
  #: app/features/mec/messages.php:32 app/features/mec/modules.php:39
263
+ #: app/features/mec/notifications.php:31 app/features/mec/regform.php:69
264
+ #: app/features/mec/settings.php:75 app/features/mec/settings.php:664
265
  #: app/features/mec/single.php:31 app/features/mec/styles.php:32
266
  #: app/features/mec/styling.php:54
267
  msgid "Google Recaptcha Options"
268
  msgstr "Google Recaptcha Einstellungen"
269
 
270
+ #: app/features/contextual.php:258 app/features/mec/booking.php:61
271
+ #: app/features/mec/gateways.php:52 app/features/mec/ie.php:48
272
+ #: app/features/mec/messages.php:52 app/features/mec/modules.php:59
273
+ #: app/features/mec/notifications.php:51 app/features/mec/regform.php:89
274
+ #: app/features/mec/settings.php:124 app/features/mec/single.php:63
275
+ #: app/features/mec/single.php:313 app/features/mec/styles.php:52
276
+ #: app/features/mec/styling.php:74
277
  msgid "Countdown Options"
278
  msgstr "Countdown Einstellungsoptionen"
279
 
280
+ #: app/features/contextual.php:268 app/features/mec/booking.php:133
281
+ #: app/features/mec/gateways.php:98 app/features/mec/ie.php:94
282
+ #: app/features/mec/messages.php:98 app/features/mec/modules.php:146
283
+ #: app/features/mec/modules.php:461 app/features/mec/notifications.php:97
284
+ #: app/features/mec/regform.php:135 app/features/mec/settings.php:170
285
+ #: app/features/mec/single.php:126 app/features/mec/styles.php:98
286
+ #: app/features/mec/styling.php:120
287
  msgid "Social Networks"
288
  msgstr "Soziale Netzwerke"
289
 
294
  #: app/features/contextual.php:286 app/features/mec/booking.php:42
295
  #: app/features/mec/gateways.php:33 app/features/mec/ie.php:29
296
  #: app/features/mec/messages.php:33 app/features/mec/modules.php:40
297
+ #: app/features/mec/notifications.php:32 app/features/mec/regform.php:70
298
+ #: app/features/mec/settings.php:81 app/features/mec/settings.php:700
299
  #: app/features/mec/single.php:32 app/features/mec/styles.php:33
300
  #: app/features/mec/styling.php:55
301
  msgid "Frontend Event Submission"
302
  msgstr "Erstellung von Veranstaltungen im Frontend"
303
 
304
+ #: app/features/contextual.php:298 app/features/events.php:1119
305
+ #: app/features/mec/booking.php:62 app/features/mec/gateways.php:53
306
+ #: app/features/mec/ie.php:49 app/features/mec/messages.php:53
307
+ #: app/features/mec/modules.php:60 app/features/mec/notifications.php:52
308
+ #: app/features/mec/regform.php:90 app/features/mec/settings.php:125
309
+ #: app/features/mec/single.php:69 app/features/mec/styles.php:53
310
+ #: app/features/mec/styling.php:75
311
  msgid "Exceptional Days"
312
  msgstr "Herausgenommene Tage "
313
 
314
+ #: app/features/contextual.php:308 app/features/events.php:285
315
+ #: app/features/mec/booking.php:78 app/features/mec/booking.php:85
316
+ #: app/features/mec/booking.php:168 app/features/mec/booking.php:220
317
+ #: app/features/mec/gateways.php:65 app/features/mec/gateways.php:69
318
+ #: app/features/mec/gateways.php:133 app/features/mec/ie.php:61
319
+ #: app/features/mec/ie.php:65 app/features/mec/ie.php:129
320
+ #: app/features/mec/messages.php:65 app/features/mec/messages.php:69
321
+ #: app/features/mec/messages.php:133 app/features/mec/modules.php:72
322
+ #: app/features/mec/modules.php:76 app/features/mec/modules.php:195
323
+ #: app/features/mec/notifications.php:64 app/features/mec/notifications.php:68
324
+ #: app/features/mec/notifications.php:137
325
+ #: app/features/mec/notifications.php:226 app/features/mec/regform.php:102
326
+ #: app/features/mec/regform.php:106 app/features/mec/regform.php:168
327
+ #: app/features/mec/settings.php:137 app/features/mec/settings.php:141
328
+ #: app/features/mec/settings.php:205 app/features/mec/single.php:93
329
+ #: app/features/mec/single.php:97 app/features/mec/single.php:161
330
+ #: app/features/mec/styles.php:65 app/features/mec/styles.php:69
331
+ #: app/features/mec/styles.php:133 app/features/mec/styling.php:87
332
+ #: app/features/mec/styling.php:91 app/features/mec/styling.php:155
333
  msgid "Booking"
334
  msgstr "Buchung / Reservierung"
335
 
336
+ #: app/features/contextual.php:318 app/features/mec/booking.php:93
337
+ #: app/features/mec/booking.php:355 app/features/mec/gateways.php:71
338
+ #: app/features/mec/ie.php:67 app/features/mec/messages.php:71
339
+ #: app/features/mec/modules.php:78 app/features/mec/notifications.php:70
340
+ #: app/features/mec/regform.php:108 app/features/mec/settings.php:143
341
+ #: app/features/mec/single.php:99 app/features/mec/styles.php:71
342
+ #: app/features/mec/styling.php:93
343
  msgid "Coupons"
344
  msgstr "Gutscheine"
345
 
346
+ #: app/features/contextual.php:326 app/features/mec/booking.php:136
347
+ #: app/features/mec/gateways.php:101 app/features/mec/ie.php:97
348
+ #: app/features/mec/messages.php:101 app/features/mec/modules.php:160
349
+ #: app/features/mec/modules.php:522 app/features/mec/notifications.php:100
350
+ #: app/features/mec/regform.php:138 app/features/mec/settings.php:173
351
+ #: app/features/mec/single.php:129 app/features/mec/styles.php:101
352
+ #: app/features/mec/styling.php:123
353
  msgid "BuddyPress Integration"
354
  msgstr "Buddy Press Integration"
355
 
356
+ #: app/features/contextual.php:334 app/features/mec/booking.php:46
357
+ #: app/features/mec/gateways.php:37 app/features/mec/ie.php:33
358
+ #: app/features/mec/messages.php:37 app/features/mec/modules.php:44
359
+ #: app/features/mec/notifications.php:36 app/features/mec/regform.php:74
360
+ #: app/features/mec/settings.php:101 app/features/mec/settings.php:934
361
+ #: app/features/mec/single.php:36 app/features/mec/styles.php:37
362
+ #: app/features/mec/styling.php:59
363
  msgid "Mailchimp Integration"
364
  msgstr "Mailchimp Integration"
365
 
368
  msgstr "MEC Aktivierung"
369
 
370
  #: app/features/events.php:137 app/features/ix/export.php:34
371
+ #: app/features/mec/dashboard.php:191 app/skins/daily_view/tpl.php:79
372
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
373
  msgid "Events"
374
  msgstr "Veranstaltungen"
375
 
376
  #: app/features/events.php:138
377
+ #: app/features/mec/meta_boxes/display_options.php:887
378
+ #: app/features/mec/meta_boxes/display_options.php:943
379
+ #: app/features/mec/meta_boxes/display_options.php:978
380
  #: app/features/profile/profile.php:28 app/skins/daily_view/tpl.php:80
381
  #: app/skins/monthly_view/tpl.php:71 app/skins/yearly_view/tpl.php:69
382
  msgid "Event"
414
  #: app/features/events.php:162
415
  #: app/features/mec/meta_boxes/display_options.php:798
416
  #: app/features/mec/meta_boxes/search_form.php:31
417
+ #: app/features/mec/meta_boxes/search_form.php:93
418
+ #: app/features/mec/meta_boxes/search_form.php:154
419
+ #: app/features/mec/meta_boxes/search_form.php:215
420
+ #: app/features/mec/meta_boxes/search_form.php:276
421
+ #: app/features/mec/meta_boxes/search_form.php:337
422
+ #: app/features/mec/meta_boxes/search_form.php:398
423
+ #: app/features/mec/meta_boxes/search_form.php:452
424
+ #: app/features/mec/meta_boxes/search_form.php:513
425
+ #: app/features/mec/meta_boxes/search_form.php:574
426
+ #: app/features/mec/settings.php:889 app/libraries/main.php:4487
427
+ #: app/libraries/skins.php:805 app/skins/single.php:410
428
  #: app/skins/single/default.php:169 app/skins/single/default.php:380
429
  #: app/skins/single/m1.php:170 app/skins/single/m2.php:102
430
  #: app/skins/single/modern.php:110
433
 
434
  #: app/features/events.php:163 app/features/fes/form.php:745
435
  #: app/features/mec.php:332 app/features/mec/meta_boxes/filter.php:70
436
+ #: app/libraries/main.php:4486
437
  msgid "Categories"
438
  msgstr "Kategorien"
439
 
505
  msgid "Event Details"
506
  msgstr "Veranstaltungsdetails"
507
 
508
+ #: app/features/events.php:322 app/features/events.php:3151
509
+ #: app/features/events.php:3193 app/features/fes/form.php:706
510
  #: app/features/ix.php:2740 app/features/ix.php:2781
511
+ #: app/features/mec/settings.php:767 app/libraries/main.php:4519
512
  #: app/widgets/single.php:103
513
  msgid "Event Cost"
514
  msgstr ""
515
  "Bruttopreis des Events in Euro, 0 für kostenlos oder z.B. 39, ohne €-Zeichen"
516
 
517
+ #: app/features/events.php:326 app/features/fes/form.php:709
518
+ #: app/libraries/main.php:4520 app/skins/single.php:433
519
  #: app/skins/single/default.php:103 app/skins/single/default.php:314
520
  #: app/skins/single/m1.php:49 app/skins/single/modern.php:199
521
  msgid "Cost"
522
  msgstr " Preis"
523
 
524
+ #: app/features/events.php:424
525
  msgid "Note for reviewer"
526
  msgstr "Zusätzliche Anmerkungen zum Event "
527
 
528
+ #: app/features/events.php:431
529
  msgid "Guest Data"
530
  msgstr "Gäste Daten"
531
 
532
+ #: app/features/events.php:432 app/features/events.php:2233
533
  #: app/features/fes/form.php:668 app/features/labels.php:177
534
  #: app/features/mec/regform.php:27 app/features/organizers.php:274
535
  #: app/features/profile/profile.php:90 app/libraries/notifications.php:673
537
  msgid "Name"
538
  msgstr "Name"
539
 
540
+ #: app/features/events.php:433 app/features/events.php:2244
541
+ #: app/features/events.php:2322 app/features/fes/form.php:664
542
+ #: app/features/mec/regform.php:39 app/features/mec/regform.php:269
543
  #: app/features/organizers.php:110 app/features/organizers.php:150
544
  #: app/features/profile/profile.php:93 app/features/speakers.php:120
545
+ #: app/features/speakers.php:180 app/libraries/main.php:1149
546
+ #: app/libraries/main.php:1215 app/libraries/main.php:2261
547
  #: app/libraries/notifications.php:674 app/modules/booking/steps/form.php:43
548
  #: app/modules/booking/steps/form.php:80 app/skins/single.php:661
549
+ #: app/skins/single.php:716 app/skins/single/default.php:211
550
  #: app/skins/single/default.php:422 app/skins/single/m1.php:107
551
  #: app/skins/single/m2.php:39 app/skins/single/modern.php:48
552
  msgid "Email"
553
  msgstr "Email"
554
 
555
+ #: app/features/events.php:437 app/features/fes/form.php:232
556
  msgid "Date and Time"
557
  msgstr "Datum und Uhrzeit"
558
 
559
+ #: app/features/events.php:441 app/features/events.php:447
560
+ #: app/features/events.php:2969 app/features/events.php:3151
561
+ #: app/features/events.php:3193 app/features/fes/form.php:236
562
  #: app/features/fes/form.php:240 app/features/ix.php:2740
563
  #: app/features/ix.php:2781 app/features/ix/import_g_calendar.php:38
564
+ #: app/features/mec/dashboard.php:335
565
  #: app/features/mec/meta_boxes/display_options.php:42
566
  #: app/features/mec/meta_boxes/display_options.php:169
567
  #: app/features/mec/meta_boxes/display_options.php:307
573
  #: app/features/mec/meta_boxes/display_options.php:654
574
  #: app/features/mec/meta_boxes/display_options.php:700
575
  #: app/features/mec/meta_boxes/display_options.php:766
576
+ #: app/features/mec/meta_boxes/display_options.php:1001
577
+ #: app/features/mec/meta_boxes/display_options.php:1088
578
  msgid "Start Date"
579
  msgstr "Start Datum"
580
 
581
+ #: app/features/events.php:519 app/features/events.php:611
582
+ #: app/features/events.php:1587 app/features/events.php:1629
583
+ #: app/features/events.php:1796 app/features/events.php:1820
584
  #: app/features/fes/form.php:268 app/features/fes/form.php:308
585
  msgid "AM"
586
  msgstr "AM"
587
 
588
+ #: app/features/events.php:526 app/features/events.php:618
589
+ #: app/features/events.php:1594 app/features/events.php:1636
590
+ #: app/features/events.php:1797 app/features/events.php:1821
591
  #: app/features/fes/form.php:269 app/features/fes/form.php:309
592
  msgid "PM"
593
  msgstr "PM"
594
 
595
+ #: app/features/events.php:533 app/features/events.php:538
596
+ #: app/features/events.php:2970 app/features/events.php:3151
597
+ #: app/features/events.php:3193 app/features/fes/form.php:276
598
  #: app/features/fes/form.php:280 app/features/ix.php:2740
599
  #: app/features/ix.php:2781 app/features/ix/import_g_calendar.php:44
600
+ #: app/features/mec/dashboard.php:336
601
  msgid "End Date"
602
  msgstr "Ende Datum"
603
 
604
+ #: app/features/events.php:632 app/features/fes/form.php:315
605
  msgid "All Day Event"
606
  msgstr "Ganztägige Veranstaltung"
607
 
608
+ #: app/features/events.php:642 app/features/fes/form.php:318
609
  msgid "Hide Event Time"
610
  msgstr "Event / Veranstaltungszeit verbergen"
611
 
612
+ #: app/features/events.php:652 app/features/fes/form.php:321
613
  msgid "Hide Event End Time"
614
  msgstr "Ende-Zeit der Veranstaltung verbergen"
615
 
616
+ #: app/features/events.php:657 app/features/events.php:661
617
  #: app/features/fes/form.php:325
618
  msgid "Time Comment"
619
  msgstr "z.B. MEZ "
620
 
621
+ #: app/features/events.php:662 app/features/fes/form.php:326
622
  #, fuzzy
623
  #| msgid ""
624
  #| "It shows next to event time on calendar. You can insert Timezone etc. in "
630
  "Neben der Zeit im Kalender wird diese Angabe angezeigt. In diesem Feld "
631
  "können Sie z.B. eine Zeitzone wie z.B. \"MEZ\" usw. einfügen. "
632
 
633
+ #: app/features/events.php:664 app/features/events.php:796
634
+ #: app/features/events.php:1095 app/features/events.php:1138
635
+ #: app/features/events.php:1437 app/features/events.php:1504
636
+ #: app/features/events.php:1656 app/features/events.php:1671
637
+ #: app/features/events.php:1838 app/features/events.php:1851
638
+ #: app/features/events.php:1981 app/features/events.php:2017
639
+ #: app/features/events.php:2115 app/features/events.php:2130
640
+ #: app/features/events.php:2160 app/features/events.php:2173
641
  #: app/features/fes/form.php:630 app/features/locations.php:298
642
+ #: app/features/mec/booking.php:240 app/features/mec/booking.php:277
643
+ #: app/features/mec/booking.php:293 app/features/mec/booking.php:400
644
+ #: app/features/mec/booking.php:429 app/features/mec/booking.php:477
645
+ #: app/features/mec/booking.php:487 app/features/mec/booking.php:509
646
+ #: app/features/mec/booking.php:519 app/features/mec/dashboard.php:71
647
  #: app/features/mec/meta_boxes/display_options.php:60
648
  #: app/features/mec/meta_boxes/display_options.php:73
649
  #: app/features/mec/meta_boxes/display_options.php:86
659
  #: app/features/mec/meta_boxes/display_options.php:326
660
  #: app/features/mec/meta_boxes/display_options.php:502
661
  #: app/features/mec/meta_boxes/display_options.php:785
662
+ #: app/features/mec/meta_boxes/display_options.php:858
663
+ #: app/features/mec/meta_boxes/display_options.php:870
664
+ #: app/features/mec/meta_boxes/display_options.php:881
665
+ #: app/features/mec/meta_boxes/display_options.php:913
666
+ #: app/features/mec/meta_boxes/display_options.php:924
667
+ #: app/features/mec/meta_boxes/display_options.php:937
668
+ #: app/features/mec/meta_boxes/display_options.php:972
669
+ #: app/features/mec/meta_boxes/display_options.php:1021
670
+ #: app/features/mec/meta_boxes/display_options.php:1032
671
+ #: app/features/mec/meta_boxes/display_options.php:1043
672
+ #: app/features/mec/meta_boxes/display_options.php:1108
673
+ #: app/features/mec/meta_boxes/display_options.php:1121
674
+ #: app/features/mec/meta_boxes/display_options.php:1134
675
+ #: app/features/mec/meta_boxes/display_options.php:1147
676
+ #: app/features/mec/meta_boxes/display_options.php:1160
677
+ #: app/features/mec/modules.php:284 app/features/mec/modules.php:301
678
+ #: app/features/mec/modules.php:336 app/features/mec/modules.php:352
679
+ #: app/features/mec/modules.php:510 app/features/mec/notifications.php:245
680
+ #: app/features/mec/notifications.php:302
681
+ #: app/features/mec/notifications.php:354
682
+ #: app/features/mec/notifications.php:413
683
+ #: app/features/mec/notifications.php:481
684
+ #: app/features/mec/notifications.php:544
685
+ #: app/features/mec/notifications.php:555
686
+ #: app/features/mec/notifications.php:617 app/features/mec/settings.php:272
687
+ #: app/features/mec/settings.php:291 app/features/mec/settings.php:318
688
+ #: app/features/mec/settings.php:338 app/features/mec/settings.php:359
689
+ #: app/features/mec/settings.php:379 app/features/mec/settings.php:456
690
+ #: app/features/mec/settings.php:530 app/features/mec/settings.php:547
691
+ #: app/features/mec/settings.php:564 app/features/mec/settings.php:583
692
+ #: app/features/mec/settings.php:597 app/features/mec/settings.php:625
693
+ #: app/features/mec/settings.php:712 app/features/mec/settings.php:850
694
+ #: app/features/mec/settings.php:867 app/features/mec/settings.php:949
695
+ #: app/features/mec/settings.php:962 app/features/mec/settings.php:978
696
+ #: app/features/mec/single.php:222 app/features/mec/single.php:238
697
+ #: app/features/mec/single.php:257 app/features/mec/single.php:274
698
+ #: app/features/mec/single.php:290 app/features/mec/single.php:304
699
+ #: app/features/mec/single.php:342 app/features/mec/styling.php:357
700
+ #: app/features/mec/styling.php:374 app/features/mec/styling.php:387
701
  #: app/features/organizers.php:267 app/skins/single.php:508
702
  #: app/skins/single/default.php:118 app/skins/single/default.php:329
703
  #: app/skins/single/m1.php:192 app/skins/single/m2.php:125
705
  msgid "Read More"
706
  msgstr "Mehr lesen"
707
 
708
+ #: app/features/events.php:680 app/features/fes/form.php:332
709
  msgid "Event Repeating"
710
  msgstr "Wiederholende Veranstaltung"
711
 
712
+ #: app/features/events.php:684 app/features/fes/form.php:336
713
  msgid "Repeats"
714
  msgstr "Wiederholend"
715
 
716
+ #: app/features/events.php:692 app/features/fes/form.php:338
717
+ #: app/features/mec/dashboard.php:338 app/skins/full_calendar/tpl.php:103
718
  msgid "Daily"
719
  msgstr "Täglich"
720
 
721
+ #: app/features/events.php:699 app/features/fes/form.php:339
722
  msgid "Every Weekday"
723
  msgstr "An jedem Wochentag"
724
 
725
+ #: app/features/events.php:706 app/features/fes/form.php:340
726
  msgid "Every Weekend"
727
  msgstr "An jedem Wochenende"
728
 
729
+ #: app/features/events.php:713 app/features/fes/form.php:341
730
  msgid "Certain Weekdays"
731
  msgstr "Bestimmte Wochentage"
732
 
733
+ #: app/features/events.php:720 app/features/fes/form.php:342
734
  #: app/skins/full_calendar/tpl.php:102
735
  msgid "Weekly"
736
  msgstr "Wöchentlich"
737
 
738
+ #: app/features/events.php:727 app/features/fes/form.php:343
739
+ #: app/features/mec/dashboard.php:339 app/skins/full_calendar/tpl.php:101
740
  msgid "Monthly"
741
  msgstr "Monatlich"
742
 
743
+ #: app/features/events.php:734 app/features/fes/form.php:344
744
+ #: app/features/mec/dashboard.php:340 app/skins/full_calendar/tpl.php:100
745
  msgid "Yearly"
746
  msgstr "Jährlich"
747
 
748
+ #: app/features/events.php:741 app/features/fes/form.php:345
749
  msgid "Custom Days"
750
  msgstr "Benutzerdefinierte Tage"
751
 
752
+ #: app/features/events.php:748 app/features/fes/form.php:346
753
  #, fuzzy
754
  #| msgid "Advanced Method"
755
  msgid "Advanced"
756
  msgstr "Fortgeschrittene Methode"
757
 
758
+ #: app/features/events.php:753 app/features/fes/form.php:350
759
  msgid "Repeat Interval"
760
  msgstr "Wiederholungsintervall"
761
 
762
+ #: app/features/events.php:755 app/features/fes/form.php:351
763
  msgid "Repeat interval"
764
  msgstr "Wiederholungsintervall"
765
 
766
+ #: app/features/events.php:759 app/features/fes/form.php:354
767
  msgid "Week Days"
768
  msgstr "Wochentage"
769
 
770
+ #: app/features/events.php:761 app/features/fes/form.php:355
771
  #: app/features/mec/meta_boxes/display_options.php:730
772
  #: app/libraries/main.php:407
773
  msgid "Monday"
774
  msgstr "Montag"
775
 
776
+ #: app/features/events.php:764 app/features/fes/form.php:356
777
  #: app/features/mec/meta_boxes/display_options.php:731
778
  #: app/libraries/main.php:407
779
  msgid "Tuesday"
780
  msgstr "Dienstag"
781
 
782
+ #: app/features/events.php:767 app/features/fes/form.php:357
783
  #: app/features/mec/meta_boxes/display_options.php:732
784
  #: app/libraries/main.php:407
785
  msgid "Wednesday"
786
  msgstr "Mittwoch"
787
 
788
+ #: app/features/events.php:770 app/features/fes/form.php:358
789
  #: app/features/mec/meta_boxes/display_options.php:733
790
  #: app/libraries/main.php:407
791
  msgid "Thursday"
792
  msgstr "Donnerstag"
793
 
794
+ #: app/features/events.php:773 app/features/fes/form.php:359
795
  #: app/features/mec/meta_boxes/display_options.php:734
796
  #: app/libraries/main.php:407
797
  msgid "Friday"
798
  msgstr "Freitag"
799
 
800
+ #: app/features/events.php:776 app/features/fes/form.php:360
801
  #: app/features/mec/meta_boxes/display_options.php:735
802
  #: app/libraries/main.php:407
803
  msgid "Saturday"
804
  msgstr "Samstag"
805
 
806
+ #: app/features/events.php:779 app/features/fes/form.php:361
807
  #: app/features/mec/meta_boxes/display_options.php:729
808
  #: app/libraries/main.php:407
809
  msgid "Sunday"
810
  msgstr "Sonntag"
811
 
812
+ #: app/features/events.php:786 app/features/events.php:1719
813
+ #: app/features/events.php:1747 app/features/events.php:1885
814
  #: app/features/fes/form.php:366 app/features/ix/import_f_calendar.php:42
815
  #: app/features/ix/import_g_calendar.php:51
816
  #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
817
  msgid "Start"
818
  msgstr "Start"
819
 
820
+ #: app/features/events.php:788 app/features/events.php:1723
821
+ #: app/features/events.php:1751 app/features/events.php:1889
822
  #: app/features/fes/form.php:367
823
  #, fuzzy
824
  #| msgid "Enabled"
825
  msgid "End"
826
  msgstr "Aktiviert"
827
 
828
+ #: app/features/events.php:790 app/features/events.php:1132
829
+ #: app/features/events.php:1243 app/features/events.php:1348
830
+ #: app/features/events.php:1537 app/features/events.php:1702
831
+ #: app/features/events.php:1874 app/features/events.php:1954
832
+ #: app/features/events.php:2087 app/features/fes/form.php:368
833
  msgid "Add"
834
  msgstr "Hinzufügen"
835
 
836
+ #: app/features/events.php:793
837
  #, fuzzy
838
  #| msgid "Custom Days"
839
  msgid "Custom Days Repeating"
840
  msgstr "Benutzerdefinierte Tage"
841
 
842
+ #: app/features/events.php:794
843
  msgid ""
844
  "Add certain days to event occurrence dates. If you have single day event, "
845
  "start and end date should be the same, If you have multiple day event the "
846
  "start and end dates must be commensurate with the initial date."
847
  msgstr ""
848
 
849
+ #: app/features/events.php:830 app/features/fes/form.php:394
850
  #, fuzzy
851
  #| msgid "First name"
852
  msgid "First"
853
  msgstr "Vorname"
854
 
855
+ #: app/features/events.php:872 app/features/fes/form.php:436
856
  #, fuzzy
857
  #| msgid "second"
858
  msgid "Second"
859
  msgstr "Sekunde"
860
 
861
+ #: app/features/events.php:914 app/features/fes/form.php:478
862
  #, fuzzy
863
  #| msgid "Third Party"
864
  msgid "Third"
865
  msgstr "Dritte Seite"
866
 
867
+ #: app/features/events.php:956 app/features/fes/form.php:520
868
  msgid "Fourth"
869
  msgstr ""
870
 
871
+ #: app/features/events.php:998 app/features/fes/form.php:562
872
  #, fuzzy
873
  #| msgid "Last name"
874
  msgid "Last"
875
  msgstr "Nachname"
876
 
877
+ #: app/features/events.php:1045 app/features/fes/form.php:608
878
  msgid "Ends Repeat"
879
  msgstr "Wiederholung endet"
880
 
881
+ #: app/features/events.php:1056 app/features/fes/form.php:612
882
  msgid "Never"
883
  msgstr "Niemals"
884
 
885
+ #: app/features/events.php:1068 app/features/fes/form.php:617
886
  msgid "On"
887
  msgstr "Am"
888
 
889
+ #: app/features/events.php:1084 app/features/fes/form.php:624
890
  msgid "After"
891
  msgstr "Nach"
892
 
893
+ #: app/features/events.php:1088 app/features/events.php:1092
894
  #: app/features/fes/form.php:626 app/features/fes/form.php:629
895
  msgid "Occurrences times"
896
  msgstr " mal vorkommen"
897
 
898
+ #: app/features/events.php:1093 app/features/fes/form.php:630
899
  msgid ""
900
  "The event will finish after certain repeats. For example if you set it to "
901
  "10, the event will finish after 10 repeats."
903
  "Das Event ist nach einer bestimmten Anzahl von Wiederholungen zu Ende. Zum "
904
  "Beispiel: Bei Eingabe von 10 wird das Event nach 10 Wiederholungen beendet"
905
 
906
+ #: app/features/events.php:1125 app/features/events.php:1135
907
  msgid "Exclude certain days"
908
  msgstr "Ausschluss bestimmter Tage"
909
 
910
+ #: app/features/events.php:1130 app/features/events.php:2323
911
+ #: app/features/mec/regform.php:270 app/features/profile/profile.php:31
912
+ #: app/libraries/main.php:1708 app/libraries/main.php:2319
913
  #: app/modules/booking/steps/tickets.php:22
914
  #: app/modules/next-event/details.php:90 app/skins/single.php:488
915
  #: app/skins/single/default.php:67 app/skins/single/default.php:278
917
  msgid "Date"
918
  msgstr "Datum"
919
 
920
+ #: app/features/events.php:1136
921
  msgid ""
922
  "Exclude certain days from event occurrence dates. Please note that you can "
923
  "exclude only single day occurrences and you cannot exclude one day from "
924
  "multiple day occurrences."
925
  msgstr ""
926
 
927
+ #: app/features/events.php:1190 app/libraries/render.php:454
928
  msgid "Day 1"
929
  msgstr ""
930
 
931
+ #: app/features/events.php:1212 app/features/mec/settings.php:821
932
+ #: app/skins/single.php:779
933
  msgid "Hourly Schedule"
934
  msgstr "Stundenplan"
935
 
936
+ #: app/features/events.php:1216
937
  msgid "Add Day"
938
  msgstr ""
939
 
940
+ #: app/features/events.php:1217
941
  msgid ""
942
  "Add new days for schedule. For example if your event is multiple days, you "
943
  "can add a different schedule for each day!"
944
  msgstr ""
945
 
946
+ #: app/features/events.php:1224
947
  #, php-format
948
  msgid "Day %s"
949
  msgstr ""
950
 
951
+ #: app/features/events.php:1228 app/features/events.php:1267
952
+ #: app/features/events.php:1302 app/features/events.php:1334
953
+ #: app/features/events.php:1363 app/features/events.php:2102
954
+ #: app/features/events.php:2149 app/features/events.php:2966
955
+ #: app/features/events.php:3151 app/features/events.php:3193
956
  #: app/features/fes/form.php:225 app/features/ix.php:2740
957
+ #: app/features/ix.php:2781 app/features/mec/booking.php:469
958
+ #: app/features/mec/booking.php:501 app/features/mec/styling.php:269
959
  msgid "Title"
960
  msgstr "Titel"
961
 
962
+ #: app/features/events.php:1237 app/features/events.php:1274
963
+ #: app/features/events.php:1307 app/features/events.php:1342
964
+ #: app/features/events.php:1368 app/features/events.php:1695
965
+ #: app/features/events.php:1733 app/features/events.php:1759
966
+ #: app/features/events.php:1868 app/features/events.php:1895
967
+ #: app/features/events.php:1994 app/features/events.php:2030
968
+ #: app/features/events.php:2137 app/features/events.php:2179
969
+ #: app/features/fes/list.php:78 app/features/mec/booking.php:412
970
+ #: app/features/mec/booking.php:441 app/features/mec/booking.php:492
971
+ #: app/features/mec/booking.php:524 app/libraries/main.php:2180
972
+ #: app/libraries/main.php:2210 app/libraries/main.php:2239
973
+ #: app/libraries/main.php:2269 app/libraries/main.php:2298
974
+ #: app/libraries/main.php:2327 app/libraries/main.php:2356
975
+ #: app/libraries/main.php:2385 app/libraries/main.php:2407
976
+ #: app/libraries/main.php:2438 app/libraries/main.php:2482
977
+ #: app/libraries/main.php:2526 app/libraries/main.php:2573
978
+ #: app/libraries/main.php:2612
979
  msgid "Remove"
980
  msgstr "Entfernen"
981
 
982
+ #: app/features/events.php:1244 app/features/events.php:1349
983
  msgid "Add new hourly schedule row"
984
  msgstr "Neue Stundenplan-Zeile hinzufügen"
985
 
986
+ #: app/features/events.php:1259 app/features/events.php:1296
987
+ #: app/features/events.php:1358
988
  msgid "From e.g. 8:15"
989
  msgstr "Von z.B. 08:15 Uhr"
990
 
991
+ #: app/features/events.php:1263 app/features/events.php:1299
992
+ #: app/features/events.php:1360
993
  msgid "To e.g. 8:45"
994
  msgstr "bis zum Beispiel 08:45 Uhr"
995
 
996
+ #: app/features/events.php:1271 app/features/events.php:1305
997
+ #: app/features/events.php:1366 app/features/events.php:1643
998
+ #: app/features/events.php:1827
999
  msgid "Description"
1000
  msgstr "Beschreibung"
1001
 
1002
+ #: app/features/events.php:1277 app/features/events.php:1310
1003
+ #: app/features/events.php:1371 app/features/fes/form.php:839
1004
+ #: app/features/mec.php:340 app/features/mec/booking.php:123
1005
+ #: app/features/mec/gateways.php:88 app/features/mec/ie.php:84
1006
+ #: app/features/mec/messages.php:88 app/features/mec/modules.php:102
1007
+ #: app/features/mec/notifications.php:87 app/features/mec/regform.php:125
1008
+ #: app/features/mec/settings.php:160 app/features/mec/settings.php:815
1009
+ #: app/features/mec/single.php:116 app/features/mec/styles.php:88
1010
+ #: app/features/mec/styling.php:110 app/features/speakers.php:57
1011
+ #: app/libraries/main.php:4494 app/modules/speakers/details.php:18
1012
  msgid "Speakers"
1013
  msgstr ""
1014
 
1015
+ #: app/features/events.php:1330 app/features/events.php:1338
1016
  #, fuzzy
1017
  #| msgid "Week Days"
1018
  msgid "New Day"
1019
  msgstr "Wochentage"
1020
 
1021
+ #: app/features/events.php:1402 app/features/fes/form.php:683
1022
+ #: app/features/mec/settings.php:761
1023
  msgid "Event Links"
1024
  msgstr "Veranstaltungslinks"
1025
 
1026
+ #: app/features/events.php:1405 app/features/events.php:1411
1027
+ #: app/features/fes/form.php:685 app/libraries/main.php:4517
1028
  msgid "Event Link"
1029
  msgstr "Veranstaltungslink"
1030
 
1031
+ #: app/features/events.php:1408 app/features/events.php:1424
1032
  #: app/features/fes/form.php:686 app/features/fes/form.php:691
1033
  msgid "eg. http://yoursite.com/your-event"
1034
  msgstr "z.B. http://ihreseite.com/ihre-veranstaltung"
1035
 
1036
+ #: app/features/events.php:1412
1037
  #, fuzzy
1038
  #| msgid ""
1039
  #| "If you fill it, it will be replaced instead of default event page link. "
1047
  "dieser durch einen neuen link ersetzt werden. Vollständigen Link einfügen, "
1048
  "einschließlich http(s)://"
1049
 
1050
+ #: app/features/events.php:1414
1051
  msgid "URL Shortener"
1052
  msgstr ""
1053
 
1054
+ #: app/features/events.php:1421 app/features/events.php:1434
1055
+ #: app/features/fes/form.php:690 app/libraries/main.php:4518
1056
  #: app/skins/single.php:507 app/skins/single/default.php:117
1057
  #: app/skins/single/default.php:328 app/skins/single/m1.php:191
1058
  #: app/skins/single/m2.php:124 app/skins/single/modern.php:132
1060
  msgid "More Info"
1061
  msgstr "Mehr Informationen"
1062
 
1063
+ #: app/features/events.php:1427 app/features/fes/form.php:692
1064
  msgid "More Information"
1065
  msgstr "z.B. Noch mehr Informationen "
1066
 
1067
+ #: app/features/events.php:1429 app/features/fes/form.php:694
1068
  msgid "Current Window"
1069
  msgstr "Aktuelles Fenster"
1070
 
1071
+ #: app/features/events.php:1430 app/features/fes/form.php:695
1072
  msgid "New Window"
1073
  msgstr "Neues Fenster"
1074
 
1075
+ #: app/features/events.php:1435 app/features/fes/form.php:697
1076
  msgid ""
1077
  "If you fill it, it will be shown in event details page as an optional link. "
1078
  "Insert full link including http(s)://"
1083
  "Text angezeigt werden soll: zum Beispiel: Noch mehr Informationen oder Hier "
1084
  "zur Anmeldung (z.B. bei Webinaren sinnvoll) "
1085
 
1086
+ #: app/features/events.php:1475 app/features/events.php:1501
1087
  msgid "Total booking limits"
1088
  msgstr "Gesamt Verfügbare Plätze"
1089
 
1090
+ #: app/features/events.php:1487 app/features/events.php:1692
1091
+ #: app/features/events.php:1865 app/modules/booking/default.php:85
1092
  #: app/modules/booking/steps/tickets.php:40
1093
  #: app/skins/available_spot/tpl.php:140
1094
  msgid "Unlimited"
1095
  msgstr "Unlimitiert"
1096
 
1097
+ #: app/features/events.php:1490
1098
  msgid "100"
1099
  msgstr "z.B. 100"
1100
 
1101
+ #: app/features/events.php:1502
1102
  msgid ""
1103
  "If you want to set a limit to all tickets, uncheck this checkbox and put a "
1104
  "limitation number."
1105
  msgstr ""
1106
 
1107
+ #: app/features/events.php:1506
1108
  #, fuzzy
1109
  #| msgid "Choose your single event style."
1110
  msgid "Read About A Booking System"
1111
  msgstr "Wählen Sie Ihren Single Event Stil"
1112
 
1113
+ #: app/features/events.php:1529 app/libraries/book.php:60
1114
+ #: app/libraries/main.php:4522 app/modules/booking/steps/tickets.php:40
1115
  msgid "Tickets"
1116
  msgstr "Tickets"
1117
 
1118
+ #: app/features/events.php:1532
1119
  msgid ""
1120
  "You're translating an event so MEC will use the original event for tickets "
1121
  "and booking. You can only translate the ticket name and description. Please "
1122
  "define exact tickets that you defined in the original event here."
1123
  msgstr ""
1124
 
1125
+ #: app/features/events.php:1551 app/features/events.php:1773
1126
  msgid "Ticket Name"
1127
  msgstr "Ticket Name"
1128
 
1129
+ #: app/features/events.php:1556 app/features/events.php:1777
1130
+ #: app/features/events.php:3151 app/features/events.php:3193
1131
  #: app/features/ix.php:2740 app/features/ix.php:2781
1132
  msgid "Start Time"
1133
  msgstr "Uhrzeit des Beginns"
1134
 
1135
+ #: app/features/events.php:1598 app/features/events.php:1801
1136
+ #: app/features/events.php:3151 app/features/events.php:3193
1137
  #: app/features/ix.php:2740 app/features/ix.php:2781
1138
  msgid "End Time"
1139
  msgstr "Uhrzeit Ende"
1140
 
1141
+ #: app/features/events.php:1649 app/features/events.php:1653
1142
+ #: app/features/events.php:1727 app/features/events.php:1754
1143
+ #: app/features/events.php:1832 app/features/events.php:1835
1144
+ #: app/features/events.php:1891 app/features/events.php:2108
1145
+ #: app/features/events.php:2112 app/features/events.php:2154
1146
+ #: app/features/events.php:2157 app/features/mec/booking.php:473
1147
+ #: app/features/mec/booking.php:476 app/features/mec/booking.php:505
1148
+ #: app/features/mec/booking.php:508
1149
  msgid "Price"
1150
  msgstr "Preis"
1151
 
1152
+ #: app/features/events.php:1654 app/features/events.php:1836
1153
  msgid "Insert 0 for free ticket. Only numbers please."
1154
  msgstr "Bitte 0 für kostenloses Ticket eingeben. Bitte nur Zahlen eintragen"
1155
 
1156
+ #: app/features/events.php:1663 app/features/events.php:1668
1157
+ #: app/features/events.php:1845 app/features/events.php:1848
1158
  msgid "Price Label"
1159
  msgstr "Preisschild"
1160
 
1161
+ #: app/features/events.php:1669 app/features/events.php:1849
1162
  msgid "For showing on website. e.g. $15"
1163
  msgstr "Um das auf der Webseite anzuzeigen zum Beispiel 15 €"
1164
 
1165
+ #: app/features/events.php:1679 app/features/events.php:1859
1166
  msgid "Available Tickets"
1167
  msgstr "Verfügbare Tickets: %s "
1168
 
1169
+ #: app/features/events.php:1700 app/features/events.php:1872
1170
  #, fuzzy
1171
  #| msgid "Price Label"
1172
  msgid "Price per Date"
1173
  msgstr "Preisschild"
1174
 
1175
+ #: app/features/events.php:1731 app/features/events.php:1757
1176
+ #: app/features/events.php:1893 app/features/labels.php:60
1177
  #: app/features/mec/meta_boxes/display_options.php:799
1178
  #: app/features/mec/meta_boxes/search_form.php:66
1179
+ #: app/features/mec/meta_boxes/search_form.php:128
1180
+ #: app/features/mec/meta_boxes/search_form.php:189
1181
+ #: app/features/mec/meta_boxes/search_form.php:250
1182
+ #: app/features/mec/meta_boxes/search_form.php:311
1183
+ #: app/features/mec/meta_boxes/search_form.php:372
1184
+ #: app/features/mec/meta_boxes/search_form.php:433
1185
+ #: app/features/mec/meta_boxes/search_form.php:487
1186
+ #: app/features/mec/meta_boxes/search_form.php:548
1187
+ #: app/features/mec/meta_boxes/search_form.php:609
1188
+ #: app/features/mec/settings.php:919 app/libraries/skins.php:935
1189
  msgid "Label"
1190
  msgstr "Label"
1191
 
1192
+ #: app/features/events.php:1931
1193
  msgid "Fees"
1194
  msgstr "Gebühren"
1195
 
1196
+ #: app/features/events.php:1943 app/features/events.php:2075
1197
+ #: app/features/events.php:2263
1198
  msgid "Inherit from global options"
1199
  msgstr "Aus den globalen Einstellungen übernehmen"
1200
 
1201
+ #: app/features/events.php:1968 app/features/events.php:2006
1202
+ #: app/features/mec/booking.php:392 app/features/mec/booking.php:421
1203
  msgid "Fee Title"
1204
  msgstr "Gebühren Name"
1205
 
1206
+ #: app/features/events.php:1974 app/features/events.php:1978
1207
+ #: app/features/events.php:2011 app/features/events.php:2014
1208
+ #: app/features/mec/booking.php:396 app/features/mec/booking.php:399
1209
+ #: app/features/mec/booking.php:425 app/features/mec/booking.php:428
1210
  msgid "Amount"
1211
  msgstr "Betrag"
1212
 
1213
+ #: app/features/events.php:1979 app/features/events.php:2015
1214
+ #: app/features/mec/booking.php:400 app/features/mec/booking.php:429
1215
  msgid ""
1216
  "Fee amount, considered as fixed amount if you set the type to amount "
1217
  "otherwise considered as percentage"
1219
  "Gebührenbetrag, gilt als fester Betrag, wenn Sie die Art auf Betrag setzen, "
1220
  "sonst als Prozentsatz"
1221
 
1222
+ #: app/features/events.php:1988 app/features/events.php:2024
1223
+ #: app/features/mec/booking.php:407 app/features/mec/booking.php:436
1224
  msgid "Percent"
1225
  msgstr "Prozent"
1226
 
1227
+ #: app/features/events.php:1989 app/features/events.php:2025
1228
+ #: app/features/mec/booking.php:408 app/features/mec/booking.php:437
1229
  msgid "Amount (Per Ticket)"
1230
  msgstr "Betrag (pro Ticket)"
1231
 
1232
+ #: app/features/events.php:1990 app/features/events.php:2026
1233
+ #: app/features/mec/booking.php:409 app/features/mec/booking.php:438
1234
  msgid "Amount (Per Booking)"
1235
  msgstr "Betrag (pro Buchung)"
1236
 
1237
+ #: app/features/events.php:2063 app/features/mec/settings.php:839
1238
  msgid "Ticket Variations / Options"
1239
  msgstr ""
1240
 
1241
+ #: app/features/events.php:2113 app/features/events.php:2158
1242
+ #: app/features/mec/booking.php:477 app/features/mec/booking.php:509
1243
  #, fuzzy
1244
  #| msgid "Option"
1245
  msgid "Option Price"
1246
  msgstr "Option"
1247
 
1248
+ #: app/features/events.php:2123 app/features/events.php:2127
1249
+ #: app/features/events.php:2167 app/features/events.php:2170
1250
+ #: app/features/mec/booking.php:483 app/features/mec/booking.php:486
1251
+ #: app/features/mec/booking.php:515 app/features/mec/booking.php:518
1252
  #, fuzzy
1253
  #| msgid "Amount (Per Ticket)"
1254
  msgid "Maximum Per Ticket"
1255
  msgstr "Betrag (pro Ticket)"
1256
 
1257
+ #: app/features/events.php:2128 app/features/events.php:2171
1258
+ #: app/features/mec/booking.php:487 app/features/mec/booking.php:519
1259
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
1260
  msgstr ""
1261
 
1262
+ #: app/features/events.php:2318 app/features/mec/regform.php:266
1263
+ #: app/libraries/main.php:2202
1264
  #, fuzzy
1265
  #| msgid "Name"
1266
  msgid "MEC Name"
1267
  msgstr "Name"
1268
 
1269
+ #: app/features/events.php:2320 app/features/mec/regform.php:267
1270
+ #: app/libraries/main.php:2231
1271
  #, fuzzy
1272
  #| msgid "Email"
1273
  msgid "MEC Email"
1274
  msgstr "Email"
1275
 
1276
+ #: app/features/events.php:2321 app/features/mec/regform.php:268
1277
+ #: app/libraries/main.php:2172
1278
  msgid "Text"
1279
  msgstr "Text"
1280
 
1281
+ #: app/features/events.php:2324 app/features/mec/regform.php:271
1282
  #: app/features/organizers.php:102 app/features/organizers.php:146
1283
  #: app/features/speakers.php:112 app/features/speakers.php:176
1284
+ #: app/features/speakers.php:245 app/libraries/main.php:2348
1285
  msgid "Tel"
1286
  msgstr "Tel"
1287
 
1288
+ #: app/features/events.php:2325 app/features/mec/regform.php:272
1289
+ #: app/libraries/main.php:2290
1290
  msgid "File"
1291
  msgstr ""
1292
 
1293
+ #: app/features/events.php:2327 app/features/mec/regform.php:273
1294
+ #: app/libraries/main.php:2377
1295
  msgid "Textarea"
1296
  msgstr "Textbereich"
1297
 
1298
+ #: app/features/events.php:2329 app/features/mec/regform.php:274
1299
+ #: app/libraries/main.php:2430
1300
  msgid "Checkboxes"
1301
  msgstr "Checkboxes"
1302
 
1303
+ #: app/features/events.php:2331 app/features/mec/regform.php:275
1304
+ #: app/libraries/main.php:2474
1305
  msgid "Radio Buttons"
1306
  msgstr "Radio Buttons"
1307
 
1308
+ #: app/features/events.php:2332 app/features/mec/meta_boxes/search_form.php:34
1309
  #: app/features/mec/meta_boxes/search_form.php:41
1310
  #: app/features/mec/meta_boxes/search_form.php:48
1311
  #: app/features/mec/meta_boxes/search_form.php:55
1312
  #: app/features/mec/meta_boxes/search_form.php:62
1313
  #: app/features/mec/meta_boxes/search_form.php:69
1314
  #: app/features/mec/meta_boxes/search_form.php:76
1315
+ #: app/features/mec/meta_boxes/search_form.php:96
1316
+ #: app/features/mec/meta_boxes/search_form.php:103
1317
+ #: app/features/mec/meta_boxes/search_form.php:110
1318
+ #: app/features/mec/meta_boxes/search_form.php:117
1319
+ #: app/features/mec/meta_boxes/search_form.php:124
1320
+ #: app/features/mec/meta_boxes/search_form.php:131
1321
+ #: app/features/mec/meta_boxes/search_form.php:138
1322
+ #: app/features/mec/meta_boxes/search_form.php:157
1323
+ #: app/features/mec/meta_boxes/search_form.php:164
1324
+ #: app/features/mec/meta_boxes/search_form.php:171
1325
+ #: app/features/mec/meta_boxes/search_form.php:178
1326
+ #: app/features/mec/meta_boxes/search_form.php:185
1327
+ #: app/features/mec/meta_boxes/search_form.php:192
1328
+ #: app/features/mec/meta_boxes/search_form.php:199
1329
+ #: app/features/mec/meta_boxes/search_form.php:218
1330
+ #: app/features/mec/meta_boxes/search_form.php:225
1331
+ #: app/features/mec/meta_boxes/search_form.php:232
1332
+ #: app/features/mec/meta_boxes/search_form.php:239
1333
+ #: app/features/mec/meta_boxes/search_form.php:246
1334
+ #: app/features/mec/meta_boxes/search_form.php:253
1335
+ #: app/features/mec/meta_boxes/search_form.php:260
1336
+ #: app/features/mec/meta_boxes/search_form.php:279
1337
+ #: app/features/mec/meta_boxes/search_form.php:286
1338
+ #: app/features/mec/meta_boxes/search_form.php:293
1339
+ #: app/features/mec/meta_boxes/search_form.php:300
1340
+ #: app/features/mec/meta_boxes/search_form.php:307
1341
+ #: app/features/mec/meta_boxes/search_form.php:314
1342
+ #: app/features/mec/meta_boxes/search_form.php:321
1343
+ #: app/features/mec/meta_boxes/search_form.php:340
1344
+ #: app/features/mec/meta_boxes/search_form.php:347
1345
+ #: app/features/mec/meta_boxes/search_form.php:354
1346
+ #: app/features/mec/meta_boxes/search_form.php:361
1347
+ #: app/features/mec/meta_boxes/search_form.php:368
1348
+ #: app/features/mec/meta_boxes/search_form.php:375
1349
+ #: app/features/mec/meta_boxes/search_form.php:382
1350
+ #: app/features/mec/meta_boxes/search_form.php:401
1351
+ #: app/features/mec/meta_boxes/search_form.php:408
1352
+ #: app/features/mec/meta_boxes/search_form.php:415
1353
+ #: app/features/mec/meta_boxes/search_form.php:422
1354
+ #: app/features/mec/meta_boxes/search_form.php:429
1355
+ #: app/features/mec/meta_boxes/search_form.php:436
1356
+ #: app/features/mec/meta_boxes/search_form.php:455
1357
+ #: app/features/mec/meta_boxes/search_form.php:462
1358
+ #: app/features/mec/meta_boxes/search_form.php:469
1359
+ #: app/features/mec/meta_boxes/search_form.php:476
1360
+ #: app/features/mec/meta_boxes/search_form.php:483
1361
+ #: app/features/mec/meta_boxes/search_form.php:490
1362
+ #: app/features/mec/meta_boxes/search_form.php:497
1363
+ #: app/features/mec/meta_boxes/search_form.php:516
1364
+ #: app/features/mec/meta_boxes/search_form.php:523
1365
+ #: app/features/mec/meta_boxes/search_form.php:530
1366
+ #: app/features/mec/meta_boxes/search_form.php:537
1367
+ #: app/features/mec/meta_boxes/search_form.php:544
1368
+ #: app/features/mec/meta_boxes/search_form.php:551
1369
+ #: app/features/mec/meta_boxes/search_form.php:558
1370
+ #: app/features/mec/meta_boxes/search_form.php:577
1371
+ #: app/features/mec/meta_boxes/search_form.php:584
1372
+ #: app/features/mec/meta_boxes/search_form.php:591
1373
+ #: app/features/mec/meta_boxes/search_form.php:598
1374
+ #: app/features/mec/meta_boxes/search_form.php:605
1375
+ #: app/features/mec/meta_boxes/search_form.php:612
1376
+ #: app/features/mec/meta_boxes/search_form.php:619
1377
+ #: app/features/mec/regform.php:276 app/libraries/main.php:2518
1378
  msgid "Dropdown"
1379
  msgstr "Dropdown"
1380
 
1381
+ #: app/features/events.php:2334 app/features/mec/regform.php:277
1382
+ #: app/libraries/main.php:2565
1383
  msgid "Agreement"
1384
  msgstr "Zustimmung"
1385
 
1386
+ #: app/features/events.php:2335 app/features/mec/regform.php:278
1387
+ #: app/libraries/main.php:2406
1388
  msgid "Paragraph"
1389
  msgstr "Absatz"
1390
 
1391
+ #: app/features/events.php:2904 app/features/events.php:2921
1392
+ #: app/features/events.php:2938
1393
  #, php-format
1394
  msgid "Show all %s"
1395
  msgstr "Zeige alle %s"
1396
 
1397
+ #: app/features/events.php:2904
1398
  msgid "labels"
1399
  msgstr "Labels + Eventstatus"
1400
 
1401
+ #: app/features/events.php:2921
1402
  msgid "locations"
1403
  msgstr "Orte"
1404
 
1405
+ #: app/features/events.php:2938
1406
  msgid "organizers"
1407
  msgstr "Veranstalter"
1408
 
1409
+ #: app/features/events.php:2967 app/features/events.php:3151
1410
+ #: app/features/events.php:3193 app/features/ix.php:2740
1411
  #: app/features/ix.php:2781 app/features/locations.php:58
1412
  #: app/features/locations.php:229 app/features/locations.php:286
1413
  #: app/features/locations.php:288 app/features/locations.php:297
1414
  #: app/features/mec/meta_boxes/display_options.php:800
1415
  #: app/features/mec/meta_boxes/search_form.php:38
1416
+ #: app/features/mec/meta_boxes/search_form.php:100
1417
+ #: app/features/mec/meta_boxes/search_form.php:161
1418
+ #: app/features/mec/meta_boxes/search_form.php:222
1419
+ #: app/features/mec/meta_boxes/search_form.php:283
1420
+ #: app/features/mec/meta_boxes/search_form.php:344
1421
+ #: app/features/mec/meta_boxes/search_form.php:405
1422
+ #: app/features/mec/meta_boxes/search_form.php:459
1423
+ #: app/features/mec/meta_boxes/search_form.php:520
1424
+ #: app/features/mec/meta_boxes/search_form.php:581
1425
+ #: app/features/mec/settings.php:895 app/libraries/main.php:1702
1426
+ #: app/libraries/main.php:4491 app/libraries/skins.php:831
1427
+ #: app/skins/single.php:337 app/skins/single.php:756
1428
  #: app/skins/single/default.php:153 app/skins/single/default.php:364
1429
  #: app/skins/single/m1.php:155 app/skins/single/m2.php:87
1430
  #: app/skins/single/modern.php:94
1431
  msgid "Location"
1432
  msgstr "Ort"
1433
 
1434
+ #: app/features/events.php:2968 app/features/events.php:3151
1435
+ #: app/features/events.php:3193 app/features/ix.php:2740
1436
  #: app/features/ix.php:2781 app/features/mec/meta_boxes/display_options.php:801
1437
  #: app/features/mec/meta_boxes/search_form.php:45
1438
+ #: app/features/mec/meta_boxes/search_form.php:107
1439
+ #: app/features/mec/meta_boxes/search_form.php:168
1440
+ #: app/features/mec/meta_boxes/search_form.php:229
1441
+ #: app/features/mec/meta_boxes/search_form.php:290
1442
+ #: app/features/mec/meta_boxes/search_form.php:351
1443
+ #: app/features/mec/meta_boxes/search_form.php:412
1444
+ #: app/features/mec/meta_boxes/search_form.php:466
1445
+ #: app/features/mec/meta_boxes/search_form.php:527
1446
+ #: app/features/mec/meta_boxes/search_form.php:588
1447
+ #: app/features/mec/settings.php:901 app/features/organizers.php:58
1448
+ #: app/features/organizers.php:199 app/features/organizers.php:255
1449
+ #: app/features/organizers.php:257 app/features/organizers.php:266
1450
+ #: app/libraries/main.php:4493 app/libraries/skins.php:857
1451
+ #: app/skins/single.php:644 app/skins/single/default.php:194
1452
+ #: app/skins/single/default.php:405 app/skins/single/m1.php:90
1453
+ #: app/skins/single/m2.php:22 app/skins/single/modern.php:31
1454
  msgid "Organizer"
1455
  msgstr "Veranstalter"
1456
 
1457
+ #: app/features/events.php:2972
1458
  msgid "Repeat"
1459
  msgstr "Wiederholen"
1460
 
1461
+ #: app/features/events.php:2973
1462
  msgid "Author"
1463
  msgstr "Autor"
1464
 
1465
+ #: app/features/events.php:3086 app/features/events.php:3087
1466
  msgid "iCal Export"
1467
  msgstr "ical Export"
1468
 
1469
+ #: app/features/events.php:3089 app/features/events.php:3090
1470
  msgid "CSV Export"
1471
  msgstr "CSV Export"
1472
 
1473
+ #: app/features/events.php:3092 app/features/events.php:3093
1474
  msgid "MS Excel Export"
1475
  msgstr "MS Excel Export"
1476
 
1477
+ #: app/features/events.php:3095 app/features/events.php:3096
1478
  msgid "XML Export"
1479
  msgstr "XML Export"
1480
 
1481
+ #: app/features/events.php:3098 app/features/events.php:3099
1482
  msgid "JSON Export"
1483
  msgstr "JSON Export"
1484
 
1485
+ #: app/features/events.php:3101 app/features/events.php:3102
1486
  msgid "Duplicate"
1487
  msgstr "Kopie"
1488
 
1489
+ #: app/features/events.php:3151 app/features/events.php:3193
1490
  #: app/features/ix.php:2740 app/features/ix.php:2781
1491
  #: app/features/labels.php:176 app/features/locations.php:228
1492
  #: app/features/organizers.php:198 app/features/speakers.php:242
1493
  msgid "ID"
1494
  msgstr "ID"
1495
 
1496
+ #: app/features/events.php:3151 app/features/events.php:3193
1497
  #: app/features/ix.php:2740 app/features/ix.php:2781
1498
  msgid "Link"
1499
  msgstr "Link"
1500
 
1501
+ #: app/features/events.php:3151 app/features/events.php:3193
1502
  #, php-format
1503
  msgid "%s Tel"
1504
  msgstr "%s Tel"
1505
 
1506
+ #: app/features/events.php:3151 app/features/events.php:3193
1507
  #, php-format
1508
  msgid "%s Email"
1509
  msgstr "%s Email"
1510
 
1511
+ #: app/features/fes.php:84
1512
  #, php-format
1513
  msgid "Please %s/%s in order to submit new events."
1514
  msgstr "Um neue Veranstaltungen einzugeben, bitte %s/%s"
1515
 
1516
+ #: app/features/fes.php:84 app/features/fes.php:162 app/features/profile.php:74
1517
  msgid "Login"
1518
  msgstr "Login"
1519
 
1520
+ #: app/features/fes.php:84 app/features/fes.php:162 app/features/profile.php:74
1521
  msgid "Register"
1522
  msgstr "Anmelden"
1523
 
1524
+ #: app/features/fes.php:97
1525
  msgid "Sorry! Selected post is not an event."
1526
  msgstr ""
1527
  "Entschuldigung! Beim ausgewählten Beitrag handelt es sich um keine "
1528
  "Veranstaltung."
1529
 
1530
+ #: app/features/fes.php:108 app/features/fes.php:147
1531
  msgid "Sorry! You don't have access to modify this event."
1532
  msgstr ""
1533
  "Entschuldigung! Sie haben keine Berechtigung zum Ändern dieser Veranstaltung"
1534
 
1535
+ #: app/features/fes.php:162
1536
  #, php-format
1537
  msgid "Please %s/%s in order to manage events."
1538
  msgstr "Bitte %s/%s um Veranstaltungen managen zu können."
1539
 
1540
+ #: app/features/fes.php:192
1541
  msgid "The event removed!"
1542
  msgstr "Die Veranstaltung wurde entfernt."
1543
 
1544
+ #: app/features/fes.php:227
1545
  msgid "The image is uploaded!"
1546
  msgstr "Das Bild ist hochgeladen"
1547
 
1548
+ #: app/features/fes.php:253
1549
  msgid "Captcha is invalid! Please try again."
1550
  msgstr "Das eingegebene Captcha ist ungültig! Bitte versuchen Sie es erneut."
1551
 
1552
+ #: app/features/fes.php:265
1553
  msgid "Please fill event title field!"
1554
  msgstr "Bitte füllen Sie das Event Titelfeld"
1555
 
1556
+ #: app/features/fes.php:825
1557
  msgid "The event submitted. It will publish as soon as possible."
1558
  msgstr ""
1559
  "Die Veranstaltung wurde übermittelt. Sie wird sobald wie möglich "
1560
  "veröffentlicht werden."
1561
 
1562
+ #: app/features/fes.php:826
1563
  msgid "The event published."
1564
  msgstr "Die Veranstaltung wurde veröffentlicht."
1565
 
1596
  "dieser durch einen neuen link ersetzt werden. Vollständigen Link einfügen, "
1597
  "einschließlich http(s)://"
1598
 
1599
+ #: app/features/fes/form.php:723 app/features/mec/settings.php:773
1600
  msgid "Featured Image"
1601
  msgstr "Ausgewähltes Bild"
1602
 
1606
 
1607
  #: app/features/fes/form.php:770 app/features/labels.php:61
1608
  #: app/features/labels.php:220 app/features/mec.php:333
1609
+ #: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4488
1610
  #: app/skins/single.php:536 app/skins/single/default.php:132
1611
  #: app/skins/single/default.php:343 app/skins/single/m1.php:64
1612
  #: app/skins/single/modern.php:214
1648
  msgid "MEC - Import / Export"
1649
  msgstr "MEC - Import / Export"
1650
 
1651
+ #: app/features/ix.php:107 app/features/mec/booking.php:204
1652
+ #: app/features/mec/gateways.php:169 app/features/mec/ie.php:165
1653
+ #: app/features/mec/messages.php:169 app/features/mec/modules.php:231
1654
+ #: app/features/mec/notifications.php:205 app/features/mec/regform.php:204
1655
+ #: app/features/mec/settings.php:241 app/features/mec/single.php:197
1656
+ #: app/features/mec/styles.php:169 app/features/mec/styling.php:191
1657
  #: app/features/mec/support.php:73
1658
  msgid "Import / Export"
1659
  msgstr "Import / Export"
1796
  #: app/features/ix/import.php:15 app/features/ix/import_f_calendar.php:15
1797
  #: app/features/ix/import_g_calendar.php:15
1798
  #: app/features/ix/import_meetup.php:15 app/features/ix/sync.php:15
1799
+ #: app/features/ix/thirdparty.php:15 app/features/mec/ie.php:189
1800
  msgid "Export"
1801
  msgstr "Export"
1802
 
1807
  #: app/features/ix/import_g_calendar.php:103
1808
  #: app/features/ix/import_meetup.php:16 app/features/ix/import_meetup.php:85
1809
  #: app/features/ix/sync.php:16 app/features/ix/thirdparty.php:16
1810
+ #: app/features/ix/thirdparty.php:98 app/features/mec/ie.php:178
1811
  msgid "Import"
1812
  msgstr "Import"
1813
 
1830
  "Dies wird alle Ihre Eventdaten von der Webseite in Ihr gewünschtes Format "
1831
  "exportieren."
1832
 
1833
+ #: app/features/ix/export.php:25 app/features/mec/modules.php:376
1834
  msgid "iCal"
1835
  msgstr "iCal"
1836
 
1933
  #: app/features/ix/export_g_calendar.php:72
1934
  #: app/features/ix/export_g_calendar.php:147
1935
  #: app/features/ix/export_g_calendar.php:164
1936
+ #: app/features/mec/notifications.php:283
1937
+ #: app/features/mec/notifications.php:335
1938
+ #: app/features/mec/notifications.php:388
1939
+ #: app/features/mec/notifications.php:589
1940
  msgid "Add to Google Calendar"
1941
  msgstr "Zum Google Kalender hinzufügen"
1942
 
1943
+ #: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:596
1944
+ #: app/features/mec/modules.php:615 app/features/mec/notifications.php:736
1945
+ #: app/features/mec/settings.php:1085 app/features/mec/single.php:432
1946
  msgid "Checking ..."
1947
  msgstr "Überprüfung"
1948
 
1986
  msgid "ICS Feed"
1987
  msgstr ""
1988
 
1989
+ #: app/features/ix/import.php:46 app/features/mec/booking.php:223
1990
+ #: app/features/mec/booking.php:358 app/features/mec/booking.php:376
1991
+ #: app/features/mec/booking.php:453 app/features/mec/modules.php:268
1992
+ #: app/features/mec/modules.php:409 app/features/mec/modules.php:426
1993
  #, php-format
1994
  msgid "%s is required to use this feature."
1995
  msgstr ""
1996
 
1997
  #: app/features/ix/import.php:46 app/features/ix/sync.php:22
1998
+ #: app/features/mec/booking.php:223 app/features/mec/booking.php:358
1999
+ #: app/features/mec/booking.php:376 app/features/mec/booking.php:453
2000
  #: app/features/mec/meta_boxes/display_options.php:296
2001
  #: app/features/mec/meta_boxes/display_options.php:423
2002
  #: app/features/mec/meta_boxes/display_options.php:474
2003
  #: app/features/mec/meta_boxes/display_options.php:581
2004
  #: app/features/mec/meta_boxes/display_options.php:688
2005
  #: app/features/mec/meta_boxes/display_options.php:761
2006
+ #: app/features/mec/meta_boxes/display_options.php:961
2007
+ #: app/features/mec/modules.php:268 app/features/mec/modules.php:409
2008
+ #: app/features/mec/modules.php:426
2009
  msgid "Pro version of Modern Events Calendar"
2010
  msgstr ""
2011
 
2198
 
2199
  #: app/features/ix/sync.php:32 app/features/ix/sync.php:41
2200
  #: app/features/ix/sync.php:52 app/features/ix/sync.php:63
2201
+ #: app/features/mec/notifications.php:532
2202
  msgid "Important Note"
2203
  msgstr "Important Note"
2204
 
2334
  #: app/features/mec/meta_boxes/display_options.php:479
2335
  #: app/features/mec/meta_boxes/display_options.php:529
2336
  #: app/features/mec/meta_boxes/display_options.php:693
2337
+ #: app/features/mec/meta_boxes/display_options.php:843
2338
+ #: app/features/mec/meta_boxes/display_options.php:900
2339
+ #: app/features/mec/meta_boxes/display_options.php:992
2340
+ #: app/features/mec/meta_boxes/display_options.php:1078
2341
  msgid "Style"
2342
  msgstr "Style"
2343
 
2347
 
2348
  #: app/features/labels.php:116 app/features/labels.php:141
2349
  #: app/skins/agenda/render.php:37 app/skins/available_spot/tpl.php:31
2350
+ #: app/skins/carousel/render.php:44 app/skins/countdown/tpl.php:24
2351
  #: app/skins/cover/tpl.php:28 app/skins/daily_view/render.php:23
2352
  #: app/skins/grid/render.php:49 app/skins/list/render.php:36
2353
  #: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:82
2361
  msgstr "Ausgewähltes Bild"
2362
 
2363
  #: app/features/labels.php:117 app/features/labels.php:142
2364
+ #: app/libraries/main.php:4734 app/skins/agenda/render.php:41
2365
+ #: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:45
2366
  #: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
2367
  #: app/skins/daily_view/render.php:27 app/skins/grid/render.php:53
2368
  #: app/skins/list/render.php:40 app/skins/masonry/render.php:29
2395
  msgstr "Event %s"
2396
 
2397
  #: app/features/locations.php:59 app/features/mec.php:334
2398
+ #: app/features/mec/dashboard.php:205 app/features/mec/meta_boxes/filter.php:87
2399
+ #: app/libraries/main.php:4490
2400
  msgid "Locations"
2401
  msgstr "Orte"
2402
 
2470
  "z.B. Karlsruhe Schlosshotel oder Frankfurt Allianz oder Dortmund "
2471
  "Westfalenhalle"
2472
 
2473
+ #: app/features/locations.php:309 app/features/mec/settings.php:803
2474
  #: app/widgets/single.php:115
2475
  msgid "Event Location"
2476
  msgstr "Veranstaltungsort"
2508
  msgid "Don't show map in single event page"
2509
  msgstr "Karte in Einzelansicht nicht anzeigen"
2510
 
2511
+ #: app/features/locations.php:355 app/libraries/main.php:4524
2512
  #, fuzzy
2513
  #| msgid "Locations"
2514
  msgid "Other Locations"
2563
  msgid "Support"
2564
  msgstr "Support"
2565
 
2566
+ #: app/features/mec.php:335 app/features/mec/dashboard.php:212
2567
  #: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
2568
+ #: app/libraries/main.php:4492
2569
  msgid "Organizers"
2570
  msgstr "Veranstalter"
2571
 
2572
  #: app/features/mec.php:343 app/features/mec.php:363
2573
+ #: app/features/mec/dashboard.php:198
2574
  msgid "Shortcodes"
2575
  msgstr "Shortcodes"
2576
 
2624
  msgid "Search Form"
2625
  msgstr "Suche Formular"
2626
 
2627
+ #: app/features/mec.php:819
2628
  msgid "Display content's images as Popup"
2629
  msgstr ""
2630
 
2631
+ #: app/features/mec.php:832
2632
  msgid "Single Event Display Method"
2633
  msgstr "Single Event Anzeigemethode"
2634
 
2635
+ #: app/features/mec.php:837
2636
  msgid "Separate Window"
2637
  msgstr "Separates Fenster"
2638
 
2639
+ #: app/features/mec.php:838
2640
  msgid "Modal 1"
2641
  msgstr "Modal 1"
2642
 
2670
  "your host provider in this regard."
2671
  msgstr ""
2672
 
2673
+ #: app/features/mec/booking.php:24 app/features/mec/booking.php:536
2674
+ #: app/features/mec/booking.php:546 app/features/mec/booking.php:613
2675
+ #: app/features/mec/booking.php:627 app/features/mec/gateways.php:11
2676
+ #: app/features/mec/gateways.php:211 app/features/mec/gateways.php:220
2677
+ #: app/features/mec/gateways.php:261 app/features/mec/gateways.php:271
2678
+ #: app/features/mec/messages.php:11 app/features/mec/messages.php:203
2679
+ #: app/features/mec/messages.php:212 app/features/mec/messages.php:246
2680
+ #: app/features/mec/messages.php:255 app/features/mec/modules.php:22
2681
+ #: app/features/mec/modules.php:555 app/features/mec/modules.php:565
2682
+ #: app/features/mec/modules.php:632 app/features/mec/modules.php:646
2683
+ #: app/features/mec/notifications.php:10 app/features/mec/notifications.php:645
2684
+ #: app/features/mec/notifications.php:657
2685
+ #: app/features/mec/notifications.php:753
2686
+ #: app/features/mec/notifications.php:767 app/features/mec/regform.php:48
2687
+ #: app/features/mec/regform.php:284 app/features/mec/regform.php:339
2688
+ #: app/features/mec/regform.php:375 app/features/mec/regform.php:384
2689
+ #: app/features/mec/settings.php:31 app/features/mec/settings.php:1009
2690
+ #: app/features/mec/settings.php:1019 app/features/mec/settings.php:1102
2691
+ #: app/features/mec/settings.php:1116 app/features/mec/single.php:14
2692
+ #: app/features/mec/single.php:372 app/features/mec/single.php:382
2693
+ #: app/features/mec/single.php:449 app/features/mec/single.php:463
2694
+ #: app/features/mec/styles.php:11 app/features/mec/styles.php:189
2695
+ #: app/features/mec/styles.php:198 app/features/mec/styles.php:235
2696
+ #: app/features/mec/styles.php:244 app/features/mec/styling.php:33
2697
+ #: app/features/mec/styling.php:396 app/features/mec/styling.php:405
2698
+ #: app/features/mec/styling.php:468 app/features/mec/styling.php:477
2699
  msgid "Save Changes"
2700
  msgstr "Änderungen sichern"
2701
 
2702
  #: app/features/mec/booking.php:38 app/features/mec/gateways.php:29
2703
  #: app/features/mec/ie.php:25 app/features/mec/messages.php:29
2704
  #: app/features/mec/modules.php:36 app/features/mec/notifications.php:28
2705
+ #: app/features/mec/regform.php:66 app/features/mec/settings.php:57
2706
+ #: app/features/mec/settings.php:370 app/features/mec/single.php:28
2707
  #: app/features/mec/styles.php:29 app/features/mec/styling.php:51
2708
  msgid "Archive Pages"
2709
  msgstr ""
2711
  #: app/features/mec/booking.php:43 app/features/mec/gateways.php:34
2712
  #: app/features/mec/ie.php:30 app/features/mec/messages.php:34
2713
  #: app/features/mec/modules.php:41 app/features/mec/notifications.php:33
2714
+ #: app/features/mec/regform.php:71 app/features/mec/settings.php:87
2715
+ #: app/features/mec/settings.php:876 app/features/mec/single.php:33
2716
  #: app/features/mec/styles.php:34 app/features/mec/styling.php:56
2717
  msgid "User Profile"
2718
  msgstr ""
2719
 
2720
+ #: app/features/mec/booking.php:44 app/features/mec/gateways.php:35
2721
+ #: app/features/mec/ie.php:31 app/features/mec/messages.php:35
2722
+ #: app/features/mec/modules.php:42 app/features/mec/notifications.php:34
2723
+ #: app/features/mec/regform.php:72 app/features/mec/settings.php:93
2724
+ #: app/features/mec/settings.php:883 app/features/mec/single.php:34
2725
+ #: app/features/mec/styles.php:35 app/features/mec/styling.php:57
2726
+ #, fuzzy
2727
+ #| msgid "Search Form"
2728
+ msgid "Search Bar"
2729
+ msgstr "Suche Formular"
2730
+
2731
+ #: app/features/mec/booking.php:48 app/features/mec/gateways.php:39
2732
+ #: app/features/mec/ie.php:35 app/features/mec/messages.php:39
2733
+ #: app/features/mec/modules.php:46 app/features/mec/notifications.php:38
2734
+ #: app/features/mec/regform.php:76 app/features/mec/settings.php:109
2735
+ #: app/features/mec/single.php:38 app/features/mec/styles.php:39
2736
+ #: app/features/mec/styling.php:61
2737
  #, fuzzy
2738
  #| msgid "Upload/Add image"
2739
  msgid "Upload Field"
2740
  msgstr "Bild hochladen/hinzufügen"
2741
 
2742
+ #: app/features/mec/booking.php:56 app/features/mec/gateways.php:47
2743
+ #: app/features/mec/ie.php:43 app/features/mec/messages.php:47
2744
+ #: app/features/mec/modules.php:54 app/features/mec/notifications.php:46
2745
+ #: app/features/mec/regform.php:84 app/features/mec/settings.php:119
2746
+ #: app/features/mec/single.php:50 app/features/mec/styles.php:47
2747
+ #: app/features/mec/styling.php:69
2748
  #, fuzzy
2749
  #| msgid "Single Event Style"
2750
  msgid "Single Event"
2751
  msgstr "Single Event Stil"
2752
 
2753
+ #: app/features/mec/booking.php:60 app/features/mec/gateways.php:51
2754
+ #: app/features/mec/ie.php:47 app/features/mec/messages.php:51
2755
+ #: app/features/mec/modules.php:58 app/features/mec/notifications.php:50
2756
+ #: app/features/mec/regform.php:88 app/features/mec/settings.php:123
2757
+ #: app/features/mec/single.php:57 app/features/mec/single.php:214
2758
+ #: app/features/mec/styles.php:51 app/features/mec/styling.php:73
2759
  #, fuzzy
2760
  #| msgid "Single Event Style"
2761
  msgid "Single Event Page"
2762
  msgstr "Single Event Stil"
2763
 
 
 
 
 
 
 
 
 
 
2764
  #: app/features/mec/booking.php:63 app/features/mec/gateways.php:54
2765
  #: app/features/mec/ie.php:50 app/features/mec/messages.php:54
2766
  #: app/features/mec/modules.php:61 app/features/mec/notifications.php:53
2767
+ #: app/features/mec/regform.php:91 app/features/mec/settings.php:126
2768
+ #: app/features/mec/single.php:75 app/features/mec/single.php:351
2769
+ #: app/features/mec/styles.php:54 app/features/mec/styling.php:76
2770
+ msgid "Additional Organizers"
2771
+ msgstr "Zusätzliche Organisatoren"
2772
+
2773
+ #: app/features/mec/booking.php:64 app/features/mec/gateways.php:55
2774
+ #: app/features/mec/ie.php:51 app/features/mec/messages.php:55
2775
+ #: app/features/mec/modules.php:62 app/features/mec/notifications.php:54
2776
+ #: app/features/mec/regform.php:92 app/features/mec/settings.php:127
2777
+ #: app/features/mec/single.php:81 app/features/mec/styles.php:55
2778
+ #: app/features/mec/styling.php:77
2779
  #, fuzzy
2780
  #| msgid "Additional Organizers"
2781
  msgid "Additional Locations"
2782
  msgstr "Zusätzliche Organisatoren"
2783
 
2784
+ #: app/features/mec/booking.php:99 app/features/mec/booking.php:373
 
 
 
 
 
 
 
 
 
2785
  #: app/features/mec/gateways.php:72 app/features/mec/ie.php:68
2786
  #: app/features/mec/messages.php:72 app/features/mec/modules.php:79
2787
+ #: app/features/mec/notifications.php:71 app/features/mec/regform.php:109
2788
+ #: app/features/mec/settings.php:144 app/features/mec/single.php:100
2789
  #: app/features/mec/styles.php:72 app/features/mec/styling.php:94
2790
+ msgid "Taxes / Fees"
2791
+ msgstr "Steuern/Gebühren"
2792
+
2793
+ #: app/features/mec/booking.php:105 app/features/mec/booking.php:450
2794
+ #: app/features/mec/gateways.php:73 app/features/mec/ie.php:69
2795
+ #: app/features/mec/messages.php:73 app/features/mec/modules.php:80
2796
+ #: app/features/mec/notifications.php:72 app/features/mec/regform.php:110
2797
+ #: app/features/mec/settings.php:145 app/features/mec/single.php:101
2798
+ #: app/features/mec/styles.php:73 app/features/mec/styling.php:95
2799
  msgid "Ticket Variations & Options"
2800
  msgstr ""
2801
 
2802
+ #: app/features/mec/booking.php:119 app/features/mec/gateways.php:84
2803
+ #: app/features/mec/ie.php:80 app/features/mec/messages.php:84
2804
+ #: app/features/mec/modules.php:95 app/features/mec/notifications.php:83
2805
+ #: app/features/mec/regform.php:121 app/features/mec/settings.php:156
2806
+ #: app/features/mec/single.php:112 app/features/mec/styles.php:84
2807
+ #: app/features/mec/styling.php:106
2808
  #, fuzzy
2809
  #| msgid "Social Module : "
2810
  msgid "Modules"
2811
  msgstr "Social Modul:"
2812
 
2813
+ #: app/features/mec/booking.php:127 app/features/mec/gateways.php:92
2814
+ #: app/features/mec/ie.php:88 app/features/mec/messages.php:92
2815
+ #: app/features/mec/modules.php:118 app/features/mec/modules.php:365
2816
+ #: app/features/mec/notifications.php:91 app/features/mec/regform.php:129
2817
+ #: app/features/mec/settings.php:164 app/features/mec/single.php:120
2818
+ #: app/features/mec/styles.php:92 app/features/mec/styling.php:114
2819
  #, fuzzy
2820
  #| msgid "Import Options"
2821
  msgid "Export Options"
2822
  msgstr "Import Optionen"
2823
 
2824
+ #: app/features/mec/booking.php:128 app/features/mec/gateways.php:93
2825
+ #: app/features/mec/ie.php:89 app/features/mec/messages.php:93
2826
+ #: app/features/mec/modules.php:124 app/features/mec/modules.php:392
2827
+ #: app/features/mec/notifications.php:92 app/features/mec/regform.php:130
2828
+ #: app/features/mec/settings.php:165 app/features/mec/single.php:121
2829
+ #: app/features/mec/styles.php:93 app/features/mec/styling.php:115
2830
  #: app/modules/local-time/details.php:42 app/widgets/single.php:99
2831
  msgid "Local Time"
2832
  msgstr "Lokale Zeit"
2833
 
2834
+ #: app/features/mec/booking.php:130 app/features/mec/gateways.php:95
2835
+ #: app/features/mec/ie.php:91 app/features/mec/messages.php:95
2836
+ #: app/features/mec/modules.php:132 app/features/mec/modules.php:406
2837
+ #: app/features/mec/notifications.php:94 app/features/mec/regform.php:132
2838
+ #: app/features/mec/settings.php:167 app/features/mec/single.php:123
2839
+ #: app/features/mec/styles.php:95 app/features/mec/styling.php:117
2840
  #: app/modules/qrcode/details.php:38 app/widgets/single.php:155
2841
  msgid "QR Code"
2842
  msgstr "QR Code"
2843
 
2844
+ #: app/features/mec/booking.php:131 app/features/mec/gateways.php:96
2845
+ #: app/features/mec/ie.php:92 app/features/mec/messages.php:96
2846
+ #: app/features/mec/modules.php:138 app/features/mec/modules.php:424
2847
+ #: app/features/mec/notifications.php:95 app/features/mec/regform.php:133
2848
+ #: app/features/mec/settings.php:168 app/features/mec/single.php:124
2849
+ #: app/features/mec/styles.php:96 app/features/mec/styling.php:118
2850
+ #: app/modules/weather/details.php:37
2851
  msgid "Weather"
2852
  msgstr "Wetter"
2853
 
2854
+ #: app/features/mec/booking.php:134 app/features/mec/gateways.php:99
2855
+ #: app/features/mec/ie.php:95 app/features/mec/messages.php:99
2856
+ #: app/features/mec/modules.php:152 app/features/mec/modules.php:486
2857
+ #: app/features/mec/notifications.php:98 app/features/mec/regform.php:136
2858
+ #: app/features/mec/settings.php:171 app/features/mec/single.php:127
2859
+ #: app/features/mec/styles.php:99 app/features/mec/styling.php:121
2860
  #: app/modules/next-event/details.php:82
2861
  msgid "Next Event"
2862
  msgstr "Nächstes Event"
2863
 
2864
+ #: app/features/mec/booking.php:169 app/features/mec/gateways.php:134
2865
+ #: app/features/mec/ie.php:130 app/features/mec/messages.php:134
2866
+ #: app/features/mec/modules.php:196 app/features/mec/notifications.php:143
2867
+ #: app/features/mec/notifications.php:290 app/features/mec/regform.php:169
2868
+ #: app/features/mec/settings.php:206 app/features/mec/single.php:162
2869
+ #: app/features/mec/styles.php:134 app/features/mec/styling.php:156
2870
  msgid "Booking Verification"
2871
  msgstr "Verifizierung der Buchung"
2872
 
2873
+ #: app/features/mec/booking.php:170 app/features/mec/booking.php:329
2874
+ #: app/features/mec/gateways.php:135 app/features/mec/ie.php:131
2875
+ #: app/features/mec/messages.php:135 app/features/mec/modules.php:197
2876
+ #: app/features/mec/notifications.php:149
2877
+ #: app/features/mec/notifications.php:342 app/features/mec/regform.php:170
2878
+ #: app/features/mec/settings.php:207 app/features/mec/single.php:163
2879
+ #: app/features/mec/styles.php:135 app/features/mec/styling.php:157
2880
  msgid "Booking Confirmation"
2881
  msgstr "Buchungsbestätigung"
2882
 
2883
+ #: app/features/mec/booking.php:171 app/features/mec/gateways.php:136
2884
+ #: app/features/mec/ie.php:132 app/features/mec/messages.php:136
2885
+ #: app/features/mec/modules.php:198 app/features/mec/notifications.php:155
2886
+ #: app/features/mec/notifications.php:394 app/features/mec/regform.php:171
2887
+ #: app/features/mec/settings.php:208 app/features/mec/single.php:164
2888
+ #: app/features/mec/styles.php:136 app/features/mec/styling.php:158
2889
  #, fuzzy
2890
  #| msgid "Booking cancellation link."
2891
  msgid "Booking Cancellation"
2892
  msgstr "Link zur Stornierung der Buchung"
2893
 
 
 
 
 
 
 
 
 
 
2894
  #: app/features/mec/booking.php:172 app/features/mec/gateways.php:137
2895
  #: app/features/mec/ie.php:133 app/features/mec/messages.php:137
2896
+ #: app/features/mec/modules.php:199 app/features/mec/notifications.php:161
2897
+ #: app/features/mec/notifications.php:462 app/features/mec/regform.php:172
2898
+ #: app/features/mec/settings.php:209 app/features/mec/single.php:165
2899
  #: app/features/mec/styles.php:137 app/features/mec/styling.php:159
2900
+ msgid "Admin"
2901
+ msgstr ""
2902
+
2903
+ #: app/features/mec/booking.php:173 app/features/mec/gateways.php:138
2904
+ #: app/features/mec/ie.php:134 app/features/mec/messages.php:138
2905
+ #: app/features/mec/modules.php:200 app/features/mec/notifications.php:167
2906
+ #: app/features/mec/notifications.php:522 app/features/mec/regform.php:173
2907
+ #: app/features/mec/settings.php:210 app/features/mec/single.php:166
2908
+ #: app/features/mec/styles.php:138 app/features/mec/styling.php:160
2909
  #: app/libraries/notifications.php:354
2910
  msgid "Booking Reminder"
2911
  msgstr "Buchungs Erinnerung"
2912
 
2913
+ #: app/features/mec/booking.php:175 app/features/mec/gateways.php:140
2914
+ #: app/features/mec/ie.php:136 app/features/mec/messages.php:140
2915
+ #: app/features/mec/modules.php:202 app/features/mec/notifications.php:173
2916
+ #: app/features/mec/notifications.php:598 app/features/mec/regform.php:175
2917
+ #: app/features/mec/settings.php:212 app/features/mec/single.php:168
2918
+ #: app/features/mec/styles.php:140 app/features/mec/styling.php:162
2919
  #: app/features/mec/support-page.php:80
2920
  msgid "New Event"
2921
  msgstr "Neue Veranstaltung"
2922
 
2923
+ #: app/features/mec/booking.php:183 app/features/mec/gateways.php:148
2924
+ #: app/features/mec/ie.php:144 app/features/mec/messages.php:148
2925
+ #: app/features/mec/modules.php:210 app/features/mec/notifications.php:184
2926
+ #: app/features/mec/regform.php:183 app/features/mec/settings.php:220
2927
+ #: app/features/mec/single.php:176 app/features/mec/styles.php:148
2928
+ #: app/features/mec/styling.php:170 app/features/mec/support.php:52
2929
  msgid "Styling Options"
2930
  msgstr "Styling-Optionen"
2931
 
2932
+ #: app/features/mec/booking.php:190 app/features/mec/gateways.php:155
2933
+ #: app/features/mec/ie.php:151 app/features/mec/messages.php:155
2934
+ #: app/features/mec/modules.php:217 app/features/mec/notifications.php:191
2935
+ #: app/features/mec/regform.php:190 app/features/mec/settings.php:227
2936
+ #: app/features/mec/single.php:183 app/features/mec/styles.php:155
2937
+ #: app/features/mec/styling.php:177 app/features/mec/support.php:59
2938
  msgid "Custom CSS"
2939
  msgstr "Custom CSS"
2940
 
2941
+ #: app/features/mec/booking.php:197 app/features/mec/gateways.php:162
2942
+ #: app/features/mec/ie.php:158 app/features/mec/messages.php:162
2943
+ #: app/features/mec/messages.php:182 app/features/mec/modules.php:224
2944
+ #: app/features/mec/notifications.php:198 app/features/mec/regform.php:197
2945
+ #: app/features/mec/settings.php:234 app/features/mec/single.php:190
2946
+ #: app/features/mec/styles.php:162 app/features/mec/styling.php:184
2947
  #: app/features/mec/support.php:66
2948
  msgid "Messages"
2949
  msgstr "Nachrichten"
2950
 
2951
+ #: app/features/mec/booking.php:228
2952
  msgid "Enable booking module"
2953
  msgstr "Buchungsmodul aktivieren"
2954
 
2955
+ #: app/features/mec/booking.php:229
2956
  msgid ""
2957
  "After enable it, you should reloading this page to see Payment Gateways on "
2958
  "settings and see a new menu on Dashboard"
2959
  msgstr ""
2960
 
2961
+ #: app/features/mec/booking.php:234 app/features/mec/booking.php:239
2962
+ #: app/features/mec/modules.php:504 app/features/mec/modules.php:509
2963
  msgid "Date Format"
2964
  msgstr "Datumsformat"
2965
 
2966
+ #: app/features/mec/booking.php:240
2967
  msgid "Default is Y-m-d"
2968
  msgstr "Voreinstellung ist J-M-T"
2969
 
2970
+ #: app/features/mec/booking.php:247
2971
+ #: app/features/mec/meta_boxes/display_options.php:115
2972
+ #: app/features/mec/meta_boxes/display_options.php:276
2973
+ #: app/features/mec/meta_boxes/display_options.php:332
2974
+ #: app/features/mec/meta_boxes/display_options.php:791
2975
+ #: app/features/mec/meta_boxes/display_options.php:1058
2976
+ #: app/features/mec/meta_boxes/display_options.php:1166
2977
+ msgid "Limit"
2978
+ msgstr "Limit"
2979
+
2980
+ #: app/features/mec/booking.php:249
2981
+ #, fuzzy
2982
+ #| msgid "Default is 6"
2983
+ msgid "Default is empty"
2984
+ msgstr "Die Voreinstellung ist 6"
2985
+
2986
+ #: app/features/mec/booking.php:252
2987
+ #, fuzzy
2988
+ #| msgid "Booking Form"
2989
+ msgid "Booking Limit"
2990
+ msgstr "Buchungsformular"
2991
+
2992
+ #: app/features/mec/booking.php:253
2993
+ msgid ""
2994
+ "Total tickets that a user can book. It is useful if you're providing free "
2995
+ "tickets. Leave it empty for unlimited booking."
2996
+ msgstr ""
2997
+
2998
+ #: app/features/mec/booking.php:260
2999
  msgid "Maximum Dates"
3000
  msgstr "Maximale Anzahl von Daten"
3001
 
3002
+ #: app/features/mec/booking.php:262
3003
  msgid "Default is 6"
3004
  msgstr "Die Voreinstellung ist 6"
3005
 
3006
+ #: app/features/mec/booking.php:266 app/features/mec/booking.php:276
3007
  msgid "Thank You Page"
3008
  msgstr "Danke Seite"
3009
 
3010
+ #: app/features/mec/booking.php:277
3011
  msgid ""
3012
  "User redirects to this page after booking. Leave it empty if you want to "
3013
  "disable it."
3015
  "Benutzer werden auf diese Seite nach der Buchung weitergeleitet. Lassen Sie "
3016
  "es leer, wenn Sie es deaktivieren möchten."
3017
 
3018
+ #: app/features/mec/booking.php:288
3019
  msgid "Enable Express Attendees Form"
3020
  msgstr "Aktivieren Sie das Express-Teilnehmerformular"
3021
 
3022
+ #: app/features/mec/booking.php:292 app/modules/booking/steps/form.php:49
3023
  msgid "Attendees Form"
3024
  msgstr "Teilnahmeformular"
3025
 
3026
+ #: app/features/mec/booking.php:293
3027
  msgid ""
3028
  "Users are able to apply first attendee information for other attendees in "
3029
  "the booking form."
3031
  "Benutzer können erste Teilnehmerinformationen für andere Teilnehmer im "
3032
  "Buchungsformular anwenden."
3033
 
3034
+ #: app/features/mec/booking.php:306
3035
+ #, fuzzy
3036
+ #| msgid "Download Invoice"
3037
+ msgid "Enable Invoice"
3038
+ msgstr "Download Rechnung"
3039
+
3040
+ #: app/features/mec/booking.php:310
3041
  msgid "Email verification"
3042
  msgstr "Email-Verifizierung"
3043
 
3044
+ #: app/features/mec/booking.php:316
3045
  msgid "Auto verification for free bookings"
3046
  msgstr "Automatische Verifizierung für kostenlose Buchungen"
3047
 
3048
+ #: app/features/mec/booking.php:325
3049
  msgid "Auto verification for paid bookings"
3050
  msgstr "Automatische Verifizierung für kostenpflichtige Buchungen"
3051
 
3052
+ #: app/features/mec/booking.php:335
3053
  msgid "Auto confirmation for free bookings"
3054
  msgstr "Automatische Bestätigung für kostenlose Buchungen"
3055
 
3056
+ #: app/features/mec/booking.php:344
3057
  msgid "Auto confirmation for paid bookings"
3058
  msgstr "Automatische Bestätigung für kostenpflichtige Buchungen"
3059
 
3060
+ #: app/features/mec/booking.php:363
3061
  msgid "Enable coupons module"
3062
  msgstr "Gutscheinmodul aktivieren"
3063
 
3064
+ #: app/features/mec/booking.php:365
3065
  msgid ""
3066
  "After enable it, you should reloading this page to see a new menu on "
3067
  "Dashboard > Booking"
3068
  msgstr ""
3069
 
3070
+ #: app/features/mec/booking.php:381
3071
  msgid "Enable taxes / fees module"
3072
  msgstr "Modul für Gebühren/Steuern aktivieren"
3073
 
3074
+ #: app/features/mec/booking.php:386
3075
  msgid "Add Fee"
3076
  msgstr "Gebühr hinzufügen"
3077
 
3078
+ #: app/features/mec/booking.php:458
3079
  #, fuzzy
3080
  #| msgid "Enable coupons module"
3081
  msgid "Enable ticket options module"
3082
  msgstr "Gutscheinmodul aktivieren"
3083
 
3084
+ #: app/features/mec/booking.php:463
3085
  msgid "Add Variation / Option"
3086
  msgstr ""
3087
 
3088
+ #: app/features/mec/booking.php:591 app/features/mec/gateways.php:240
3089
+ #: app/features/mec/messages.php:230 app/features/mec/modules.php:610
3090
+ #: app/features/mec/notifications.php:731 app/features/mec/regform.php:359
3091
+ #: app/features/mec/settings.php:1080 app/features/mec/single.php:427
3092
+ #: app/features/mec/styles.php:218 app/features/mec/styling.php:450
3093
  msgid "Saved"
3094
  msgstr "Gesichert"
3095
 
3096
+ #: app/features/mec/booking.php:592 app/features/mec/gateways.php:241
3097
+ #: app/features/mec/messages.php:231 app/features/mec/modules.php:611
3098
+ #: app/features/mec/notifications.php:732 app/features/mec/regform.php:360
3099
+ #: app/features/mec/settings.php:1081 app/features/mec/single.php:428
3100
+ #: app/features/mec/styles.php:219 app/features/mec/styling.php:451
3101
  msgid "Settings Saved!"
3102
  msgstr ""
3103
 
3104
+ #: app/features/mec/booking.php:594 app/features/mec/booking.php:616
3105
+ #: app/features/mec/modules.php:613 app/features/mec/modules.php:635
3106
+ #: app/features/mec/notifications.php:734
3107
+ #: app/features/mec/notifications.php:756 app/features/mec/settings.php:1083
3108
+ #: app/features/mec/settings.php:1105 app/features/mec/single.php:430
3109
+ #: app/features/mec/single.php:452 app/libraries/main.php:4733
3110
  msgid "Verified"
3111
  msgstr "Verifiziert"
3112
 
3113
+ #: app/features/mec/booking.php:618 app/features/mec/modules.php:637
3114
+ #: app/features/mec/notifications.php:758 app/features/mec/settings.php:1107
3115
+ #: app/features/mec/single.php:454
3116
  msgid "Please Refresh Page"
3117
  msgstr "Bitte Seiten Refresh vornehmen"
3118
 
3183
  "code."
3184
  msgstr ""
3185
 
3186
+ #: app/features/mec/dashboard.php:178
3187
  #, fuzzy
3188
  #| msgid "MEC Activation"
3189
  msgid "Activate Addons"
3190
  msgstr "MEC Aktivierung"
3191
 
3192
+ #: app/features/mec/dashboard.php:223 app/features/mec/settings.php:541
3193
  msgid "Upcoming Events"
3194
  msgstr "Bevorstehende Events"
3195
 
3196
+ #: app/features/mec/dashboard.php:247
3197
  msgid "Popular Gateways"
3198
  msgstr "Beliebte Zahlungsgateways"
3199
 
3200
+ #: app/features/mec/dashboard.php:301
3201
  msgid "Total Bookings"
3202
  msgstr "Gesamte Buchungen"
3203
 
3204
+ #: app/features/mec/dashboard.php:328
3205
  msgid "This Month"
3206
  msgstr "Diesen Monat"
3207
 
3208
+ #: app/features/mec/dashboard.php:329
3209
  msgid "Last Month"
3210
  msgstr "Letzten Monat"
3211
 
3212
+ #: app/features/mec/dashboard.php:330
3213
  msgid "This Year"
3214
  msgstr "Diese Jahr"
3215
 
3216
+ #: app/features/mec/dashboard.php:331
3217
  msgid "Last Year"
3218
  msgstr "Letztes Jahr"
3219
 
3220
+ #: app/features/mec/dashboard.php:343
3221
  msgid "Bar"
3222
  msgstr "Bar"
3223
 
3224
+ #: app/features/mec/dashboard.php:344
3225
  msgid "Line"
3226
  msgstr "Linie"
3227
 
3228
+ #: app/features/mec/dashboard.php:346
3229
  msgid "Filter"
3230
  msgstr "Filter"
3231
 
3232
+ #: app/features/mec/dashboard.php:362
3233
  #, php-format
3234
  msgid "Total Sells (%s)"
3235
  msgstr "Alle Verkäufe (%s)"
3236
 
3237
+ #: app/features/mec/dashboard.php:383
3238
  msgid "Change Log"
3239
  msgstr "Änderungsprotokoll"
3240
 
3241
+ #: app/features/mec/gateways.php:198
3242
+ msgid "Enable Organizer Payment Module"
3243
+ msgstr ""
3244
+
3245
+ #: app/features/mec/gateways.php:202
3246
+ #, fuzzy
3247
+ #| msgid "Organizer Tel"
3248
+ msgid "Organizer Payment"
3249
+ msgstr "Organisator Telefon"
3250
+
3251
+ #: app/features/mec/gateways.php:203
3252
+ msgid ""
3253
+ "By enabling this module, organizers are able to insert their own payment "
3254
+ "credentials for enabled gateways per event and receive the payments directly!"
3255
+ msgstr ""
3256
+
3257
+ #: app/features/mec/ie.php:179
3258
  msgid ""
3259
  "Insert your backup files below and press import to restore your site's "
3260
  "options to the last backup."
3261
  msgstr ""
3262
 
3263
+ #: app/features/mec/ie.php:180
3264
  msgid ""
3265
  "WARNING! Restoring backup will overwrite all of your current option values. "
3266
  "Caution Indeed."
3267
  msgstr ""
3268
 
3269
+ #: app/features/mec/ie.php:183
3270
  msgid "Please paste your options here"
3271
  msgstr ""
3272
 
3273
+ #: app/features/mec/ie.php:185
3274
  #, fuzzy
3275
  #| msgid "Import Options"
3276
  msgid "Import Settings"
3277
  msgstr "Import Optionen"
3278
 
3279
+ #: app/features/mec/ie.php:195
3280
  #, fuzzy
3281
  #| msgid "Download Invoice"
3282
  msgid "Download Settings"
3283
  msgstr "Download Rechnung\n"
3284
 
3285
+ #: app/features/mec/messages.php:185
3286
  msgid ""
3287
  "You can change some MEC messages here simply. For example if you like to "
3288
  "change \"REGISTER\" button label, you can do it here. By the Way, if your "
3301
  #: app/features/mec/meta_boxes/display_options.php:34
3302
  #: app/features/mec/meta_boxes/display_options.php:159
3303
  #: app/features/mec/meta_boxes/display_options.php:531
3304
+ #: app/features/mec/meta_boxes/display_options.php:845
3305
+ #: app/features/mec/settings.php:405 app/features/mec/settings.php:429
3306
+ #: app/features/mec/settings.php:438 app/features/mec/settings.php:479
3307
+ #: app/features/mec/settings.php:503 app/features/mec/settings.php:512
3308
  msgid "Classic"
3309
  msgstr "Klassisch"
3310
 
3311
  #: app/features/mec/meta_boxes/display_options.php:35
3312
  #: app/features/mec/meta_boxes/display_options.php:161
3313
+ #: app/features/mec/settings.php:430 app/features/mec/settings.php:440
3314
+ #: app/features/mec/settings.php:504 app/features/mec/settings.php:514
3315
  msgid "Minimal"
3316
  msgstr "Minimal"
3317
 
3320
  #: app/features/mec/meta_boxes/display_options.php:481
3321
  #: app/features/mec/meta_boxes/display_options.php:533
3322
  #: app/features/mec/meta_boxes/display_options.php:695
3323
+ #: app/features/mec/meta_boxes/display_options.php:847
3324
+ #: app/features/mec/settings.php:407 app/features/mec/settings.php:420
3325
+ #: app/features/mec/settings.php:431 app/features/mec/settings.php:441
3326
+ #: app/features/mec/settings.php:481 app/features/mec/settings.php:494
3327
+ #: app/features/mec/settings.php:505 app/features/mec/settings.php:515
3328
  msgid "Modern"
3329
  msgstr "Modern"
3330
 
3331
  #: app/features/mec/meta_boxes/display_options.php:37
3332
+ #: app/features/mec/settings.php:432 app/features/mec/settings.php:506
3333
  msgid "Standard"
3334
  msgstr "Standard"
3335
 
3336
  #: app/features/mec/meta_boxes/display_options.php:38
3337
+ #: app/features/mec/settings.php:433 app/features/mec/settings.php:507
3338
  msgid "Accordion"
3339
  msgstr "Accordion"
3340
 
3344
  #: app/features/mec/meta_boxes/display_options.php:588
3345
  #: app/features/mec/meta_boxes/display_options.php:621
3346
  #: app/features/mec/meta_boxes/display_options.php:768
3347
+ #: app/features/mec/meta_boxes/display_options.php:1003
3348
+ #: app/features/mec/meta_boxes/display_options.php:1090
3349
  msgid "Today"
3350
  msgstr "Heute"
3351
 
3355
  #: app/features/mec/meta_boxes/display_options.php:589
3356
  #: app/features/mec/meta_boxes/display_options.php:622
3357
  #: app/features/mec/meta_boxes/display_options.php:769
3358
+ #: app/features/mec/meta_boxes/display_options.php:1004
3359
+ #: app/features/mec/meta_boxes/display_options.php:1091
3360
  msgid "Tomorrow"
3361
  msgstr "Morgen"
3362
 
3370
  #: app/features/mec/meta_boxes/display_options.php:658
3371
  #: app/features/mec/meta_boxes/display_options.php:704
3372
  #: app/features/mec/meta_boxes/display_options.php:770
3373
+ #: app/features/mec/meta_boxes/display_options.php:1005
3374
+ #: app/features/mec/meta_boxes/display_options.php:1092
3375
  msgid "Start of Current Month"
3376
  msgstr "Mit Beginn des laufenden Monats"
3377
 
3385
  #: app/features/mec/meta_boxes/display_options.php:659
3386
  #: app/features/mec/meta_boxes/display_options.php:705
3387
  #: app/features/mec/meta_boxes/display_options.php:771
3388
+ #: app/features/mec/meta_boxes/display_options.php:1006
3389
+ #: app/features/mec/meta_boxes/display_options.php:1093
3390
  msgid "Start of Next Month"
3391
  msgstr "Mit Beginn des kommenden Monats"
3392
 
3401
  #: app/features/mec/meta_boxes/display_options.php:660
3402
  #: app/features/mec/meta_boxes/display_options.php:706
3403
  #: app/features/mec/meta_boxes/display_options.php:772
3404
+ #: app/features/mec/meta_boxes/display_options.php:1007
3405
+ #: app/features/mec/meta_boxes/display_options.php:1094
3406
  msgid "On a certain date"
3407
  msgstr "An einem bestimmten Tag"
3408
 
3417
  #: app/features/mec/meta_boxes/display_options.php:663
3418
  #: app/features/mec/meta_boxes/display_options.php:709
3419
  #: app/features/mec/meta_boxes/display_options.php:775
3420
+ #: app/features/mec/meta_boxes/display_options.php:1010
3421
+ #: app/features/mec/meta_boxes/display_options.php:1097
3422
  #, php-format
3423
  msgid "eg. %s"
3424
  msgstr "z.B. %s"
3453
  #: app/features/mec/meta_boxes/display_options.php:501
3454
  #: app/features/mec/meta_boxes/display_options.php:779
3455
  #: app/features/mec/meta_boxes/display_options.php:784
3456
+ #: app/features/mec/meta_boxes/display_options.php:851
3457
+ #: app/features/mec/meta_boxes/display_options.php:857
3458
+ #: app/features/mec/meta_boxes/display_options.php:864
3459
+ #: app/features/mec/meta_boxes/display_options.php:869
3460
+ #: app/features/mec/meta_boxes/display_options.php:876
3461
+ #: app/features/mec/meta_boxes/display_options.php:880
3462
+ #: app/features/mec/meta_boxes/display_options.php:908
3463
+ #: app/features/mec/meta_boxes/display_options.php:912
3464
+ #: app/features/mec/meta_boxes/display_options.php:919
3465
+ #: app/features/mec/meta_boxes/display_options.php:923
3466
+ #: app/features/mec/meta_boxes/display_options.php:930
3467
+ #: app/features/mec/meta_boxes/display_options.php:936
3468
+ #: app/features/mec/meta_boxes/display_options.php:966
3469
+ #: app/features/mec/meta_boxes/display_options.php:971
3470
+ #: app/features/mec/meta_boxes/display_options.php:1014
3471
+ #: app/features/mec/meta_boxes/display_options.php:1020
3472
+ #: app/features/mec/meta_boxes/display_options.php:1027
3473
+ #: app/features/mec/meta_boxes/display_options.php:1031
3474
+ #: app/features/mec/meta_boxes/display_options.php:1038
3475
+ #: app/features/mec/meta_boxes/display_options.php:1042
3476
+ #: app/features/mec/meta_boxes/display_options.php:1101
 
 
 
3477
  #: app/features/mec/meta_boxes/display_options.php:1107
3478
+ #: app/features/mec/meta_boxes/display_options.php:1114
3479
  #: app/features/mec/meta_boxes/display_options.php:1120
3480
+ #: app/features/mec/meta_boxes/display_options.php:1127
3481
  #: app/features/mec/meta_boxes/display_options.php:1133
3482
+ #: app/features/mec/meta_boxes/display_options.php:1140
3483
+ #: app/features/mec/meta_boxes/display_options.php:1146
3484
+ #: app/features/mec/meta_boxes/display_options.php:1153
3485
+ #: app/features/mec/meta_boxes/display_options.php:1159
3486
  msgid "Date Formats"
3487
  msgstr "Datumsformate"
3488
 
3498
  #: app/features/mec/meta_boxes/display_options.php:86
3499
  #: app/features/mec/meta_boxes/display_options.php:224
3500
  #: app/features/mec/meta_boxes/display_options.php:248
3501
+ #: app/features/mec/meta_boxes/display_options.php:1108
3502
+ #: app/features/mec/meta_boxes/display_options.php:1121
3503
+ #: app/features/mec/meta_boxes/display_options.php:1134
3504
+ #: app/features/mec/meta_boxes/display_options.php:1147
3505
+ #: app/features/mec/meta_boxes/display_options.php:1160
3506
  msgid "Default values are d, F and l"
3507
  msgstr ""
3508
  "Standardwerte sind Tag, Monat als ganzes Wort und Wochentag als ganzes Wort"
3517
  msgid "TDefault values are d and F"
3518
  msgstr "Die Standardwerte sind d and F"
3519
 
 
 
 
 
 
 
 
 
 
3520
  #: app/features/mec/meta_boxes/display_options.php:116
3521
  #: app/features/mec/meta_boxes/display_options.php:277
3522
  #: app/features/mec/meta_boxes/display_options.php:333
3525
  #: app/features/mec/meta_boxes/display_options.php:634
3526
  #: app/features/mec/meta_boxes/display_options.php:668
3527
  #: app/features/mec/meta_boxes/display_options.php:714
3528
+ #: app/features/mec/meta_boxes/display_options.php:1059
3529
+ #: app/features/mec/meta_boxes/display_options.php:1167
3530
  msgid "eg. 6"
3531
  msgstr "z.B. 6"
3532
 
3533
  #: app/features/mec/meta_boxes/display_options.php:120
3534
  #: app/features/mec/meta_boxes/display_options.php:281
3535
  #: app/features/mec/meta_boxes/display_options.php:337
3536
+ #: app/features/mec/meta_boxes/display_options.php:828
3537
  msgid "Load More Button"
3538
  msgstr "Button \"Weitere Veranstaltungen Laden\""
3539
 
3553
  #: app/features/mec/meta_boxes/display_options.php:385
3554
  #: app/features/mec/meta_boxes/display_options.php:532
3555
  #: app/features/mec/meta_boxes/display_options.php:696
3556
+ #: app/features/mec/meta_boxes/display_options.php:846
3557
+ #: app/features/mec/settings.php:406 app/features/mec/settings.php:421
3558
+ #: app/features/mec/settings.php:439 app/features/mec/settings.php:480
3559
+ #: app/features/mec/settings.php:495 app/features/mec/settings.php:513
3560
  msgid "Clean"
3561
  msgstr "Clean"
3562
 
3563
  #: app/features/mec/meta_boxes/display_options.php:163
3564
  #: app/features/mec/meta_boxes/display_options.php:387
3565
  #: app/features/mec/meta_boxes/display_options.php:535
3566
+ #: app/features/mec/settings.php:409 app/features/mec/settings.php:442
3567
+ #: app/features/mec/settings.php:483 app/features/mec/settings.php:516
3568
  msgid "Simple"
3569
  msgstr "Schlicht"
3570
 
3575
  #: app/features/mec/meta_boxes/display_options.php:165
3576
  #: app/features/mec/meta_boxes/display_options.php:386
3577
  #: app/features/mec/meta_boxes/display_options.php:534
3578
+ #: app/features/mec/settings.php:408 app/features/mec/settings.php:444
3579
+ #: app/features/mec/settings.php:482 app/features/mec/settings.php:518
3580
  msgid "Novel"
3581
  msgstr ""
3582
 
3599
  msgstr "Standardwert ist \"d (Tag) F Y (Jahr)\" "
3600
 
3601
  #: app/features/mec/meta_boxes/display_options.php:265
3602
+ #: app/features/mec/meta_boxes/display_options.php:1049
3603
  msgid "Count in row"
3604
  msgstr "Zeilen zählen"
3605
 
3607
  #: app/features/mec/meta_boxes/display_options.php:474
3608
  #: app/features/mec/meta_boxes/display_options.php:581
3609
  #: app/features/mec/meta_boxes/display_options.php:688
3610
+ #: app/features/mec/meta_boxes/display_options.php:961
3611
  #, php-format
3612
  msgid "%s is required to use this skin."
3613
  msgstr ""
3623
 
3624
  #: app/features/mec/meta_boxes/display_options.php:375
3625
  #: app/features/mec/meta_boxes/display_options.php:396
3626
+ #: app/libraries/main.php:329 app/libraries/main.php:1248
3627
+ #: app/libraries/main.php:1273
3628
  msgid "List View"
3629
  msgstr "Listenansicht"
3630
 
3631
  #: app/features/mec/meta_boxes/display_options.php:376
3632
  #: app/features/mec/meta_boxes/display_options.php:406
3633
+ #: app/libraries/main.php:333 app/libraries/main.php:1242
3634
+ #: app/libraries/main.php:1267
3635
  msgid "Yearly View"
3636
  msgstr "Jahresansicht"
3637
 
3642
 
3643
  #: app/features/mec/meta_boxes/display_options.php:378
3644
  #: app/features/mec/meta_boxes/display_options.php:438
3645
+ #: app/libraries/main.php:336 app/libraries/main.php:1244
3646
+ #: app/libraries/main.php:1269
3647
  msgid "Weekly View"
3648
  msgstr "Wochenansicht"
3649
 
3650
  #: app/features/mec/meta_boxes/display_options.php:379
3651
  #: app/features/mec/meta_boxes/display_options.php:448
3652
+ #: app/libraries/main.php:335 app/libraries/main.php:1245
3653
+ #: app/libraries/main.php:1270
3654
  msgid "Daily View"
3655
  msgstr "Tagesansicht"
3656
 
3757
  msgstr "Aus den globalen Einstellungen übernehmen"
3758
 
3759
  #: app/features/mec/meta_boxes/display_options.php:785
3760
+ #: app/features/mec/meta_boxes/display_options.php:972
3761
  msgid "Default values are j and F"
3762
  msgstr "Standardwerte sind j und F"
3763
 
3774
  msgstr ""
3775
 
3776
  #: app/features/mec/meta_boxes/display_options.php:806
3777
+ msgid "Fit to row"
3778
  msgstr ""
3779
 
3780
  #: app/features/mec/meta_boxes/display_options.php:807
3781
+ msgid ""
3782
+ "Items are arranged into rows. Rows progress vertically. Similar to what you "
3783
+ "would expect from a layout that uses CSS floats."
3784
  msgstr ""
3785
 
3786
+ #: app/features/mec/meta_boxes/display_options.php:817
3787
+ msgid "Convert Masonry to Grid"
3788
+ msgstr ""
3789
+
3790
+ #: app/features/mec/meta_boxes/display_options.php:818
3791
+ msgid "For using this option, your events should come with image"
3792
+ msgstr ""
3793
+
3794
+ #: app/features/mec/meta_boxes/display_options.php:858
3795
+ msgid "Default values are d, M and Y"
3796
+ msgstr "Standardwerte sind T, M und J"
3797
 
3798
+ #: app/features/mec/meta_boxes/display_options.php:870
3799
  msgid "Default values are \"F d\" and l"
3800
  msgstr ""
3801
  "Standardwerte sind Monat als ganzes Wort, Tag des Monates mit führender Null "
3802
  "und ausgeschriebener Wochentag"
3803
 
3804
+ #: app/features/mec/meta_boxes/display_options.php:881
3805
  msgid "Default value is \"l, F d Y\""
3806
  msgstr ""
3807
  "Standardwerte sind ausgeschriebener Wochentag, Monat als ganzes Wort, Tag "
3808
  "des Monates mit führender 0, Jahr"
3809
 
3810
+ #: app/features/mec/meta_boxes/display_options.php:902
3811
  msgid "Style 1"
3812
  msgstr "Stil 1"
3813
 
3814
+ #: app/features/mec/meta_boxes/display_options.php:903
3815
  msgid "Style 2"
3816
  msgstr "Stil 2"
3817
 
3818
+ #: app/features/mec/meta_boxes/display_options.php:904
3819
  msgid "Style 3"
3820
  msgstr "Stil 3"
3821
 
3822
+ #: app/features/mec/meta_boxes/display_options.php:913
3823
+ #: app/features/mec/meta_boxes/display_options.php:924
3824
  msgid "Default value is \"j F Y\""
3825
  msgstr "Standardwert ist \"j F Y\""
3826
 
3827
+ #: app/features/mec/meta_boxes/display_options.php:937
3828
  msgid "Default values are j, F and Y"
3829
  msgstr ""
3830
  "Standardwerte sind j ( Tag des Monats ohne führende Nullen), F und Y (Jahr)"
3831
 
3832
+ #: app/features/mec/meta_boxes/display_options.php:945
3833
+ #: app/features/mec/meta_boxes/display_options.php:980
3834
  msgid " -- Next Upcoming Event -- "
3835
  msgstr "-- Nächste Veranstaltung--"
3836
 
3837
+ #: app/features/mec/meta_boxes/display_options.php:952
3838
  msgid "Background Color"
3839
  msgstr "Hintergrund Farbe"
3840
 
3841
+ #: app/features/mec/meta_boxes/display_options.php:994
3842
+ #: app/features/mec/meta_boxes/display_options.php:1080
3843
  msgid "Type 1"
3844
  msgstr "Typ 1"
3845
 
3846
+ #: app/features/mec/meta_boxes/display_options.php:995
3847
+ #: app/features/mec/meta_boxes/display_options.php:1081
3848
  msgid "Type 2"
3849
  msgstr "Typ 2"
3850
 
3851
+ #: app/features/mec/meta_boxes/display_options.php:996
3852
+ #: app/features/mec/meta_boxes/display_options.php:1082
3853
  msgid "Type 3"
3854
  msgstr "Type 3"
3855
 
3856
+ #: app/features/mec/meta_boxes/display_options.php:997
3857
+ #: app/features/mec/meta_boxes/display_options.php:1083
3858
  msgid "Type 4"
3859
  msgstr "Typ 4"
3860
 
3861
+ #: app/features/mec/meta_boxes/display_options.php:1021
3862
  msgid "Default values are d, F and Y"
3863
  msgstr "Standardwert ist d (Tag) F und Y (Jahr)"
3864
 
3865
+ #: app/features/mec/meta_boxes/display_options.php:1032
3866
+ #: app/features/mec/meta_boxes/display_options.php:1043
3867
  msgid "Default value is \"M d, Y\""
3868
  msgstr "Standardwert ist \"M T, J\""
3869
 
3870
+ #: app/features/mec/meta_boxes/display_options.php:1062
3871
+ #: app/features/mec/meta_boxes/display_options.php:1170
3872
  msgid "Auto Play Time"
3873
  msgstr "Auto Play Time"
3874
 
3875
+ #: app/features/mec/meta_boxes/display_options.php:1063
3876
+ #: app/features/mec/meta_boxes/display_options.php:1171
3877
  msgid "eg. 3000 default is 3 second"
3878
  msgstr "z.B. Voreinstellung 3000 sind 3 Sekunden"
3879
 
3880
+ #: app/features/mec/meta_boxes/display_options.php:1067
3881
  #, fuzzy
3882
  #| msgid "Archive Page Skin"
3883
  msgid "Archive Link"
3884
  msgstr "Skin Seite Archiv"
3885
 
3886
+ #: app/features/mec/meta_boxes/display_options.php:1071
3887
  #, fuzzy
3888
  #| msgid "Text"
3889
  msgid "Head Text"
3890
  msgstr "Text"
3891
 
3892
+ #: app/features/mec/meta_boxes/display_options.php:1084
3893
  msgid "Type 5"
3894
  msgstr "Typ 5"
3895
 
3925
  msgid "Choose your desired authors for filtering the events."
3926
  msgstr "Wählen Sie die gewünschten Autoren zum Filtern aus"
3927
 
3928
+ #: app/features/mec/meta_boxes/filter.php:166
3929
  msgid "Dates"
3930
  msgstr "Daten"
3931
 
3932
+ #: app/features/mec/meta_boxes/filter.php:170
3933
  msgid "Include Expired Events"
3934
  msgstr "Inklusive abgelaufene Events"
3935
 
3936
+ #: app/features/mec/meta_boxes/filter.php:178
3937
  msgid ""
3938
  "You have ability to include past/expired events if you like so it will show "
3939
  "upcoming and expired events based on start date that you selected."
3942
  "wenn Sie es mögen, so werden die kommenden und abgelaufenen Events auf der "
3943
  "Grundlage des Starttermins angezeigt, das Sie ausgewählt haben."
3944
 
3945
+ #: app/features/mec/meta_boxes/filter.php:183
3946
  msgid "Show Only Expired Events"
3947
  msgstr "Nur abgelaufene Events anzeigen"
3948
 
3949
+ #: app/features/mec/meta_boxes/filter.php:191
3950
  msgid "It shows only expired/past events."
3951
  msgstr "Zeigt nur abgelaufene / vergangene Events."
3952
 
3953
+ #: app/features/mec/meta_boxes/filter.php:197
3954
  msgid "Show Only Ongoing Events"
3955
  msgstr "Zeigt nur laufende Events"
3956
 
3957
+ #: app/features/mec/meta_boxes/filter.php:205
3958
  msgid "It shows only ongoing events on List and Grid skins."
3959
  msgstr "Zeigt nur laufende Events auf Listen und Raster/Grid Skins"
3960
 
3970
  #: app/features/mec/meta_boxes/search_form.php:68
3971
  #: app/features/mec/meta_boxes/search_form.php:75
3972
  #: app/features/mec/meta_boxes/search_form.php:82
3973
+ #: app/features/mec/meta_boxes/search_form.php:95
3974
+ #: app/features/mec/meta_boxes/search_form.php:102
3975
+ #: app/features/mec/meta_boxes/search_form.php:109
3976
+ #: app/features/mec/meta_boxes/search_form.php:116
3977
+ #: app/features/mec/meta_boxes/search_form.php:123
3978
+ #: app/features/mec/meta_boxes/search_form.php:130
3979
+ #: app/features/mec/meta_boxes/search_form.php:137
3980
+ #: app/features/mec/meta_boxes/search_form.php:144
3981
+ #: app/features/mec/meta_boxes/search_form.php:156
3982
+ #: app/features/mec/meta_boxes/search_form.php:163
3983
+ #: app/features/mec/meta_boxes/search_form.php:170
3984
+ #: app/features/mec/meta_boxes/search_form.php:177
3985
+ #: app/features/mec/meta_boxes/search_form.php:184
3986
+ #: app/features/mec/meta_boxes/search_form.php:191
3987
+ #: app/features/mec/meta_boxes/search_form.php:198
3988
+ #: app/features/mec/meta_boxes/search_form.php:205
3989
+ #: app/features/mec/meta_boxes/search_form.php:217
3990
+ #: app/features/mec/meta_boxes/search_form.php:224
3991
+ #: app/features/mec/meta_boxes/search_form.php:231
3992
+ #: app/features/mec/meta_boxes/search_form.php:238
3993
+ #: app/features/mec/meta_boxes/search_form.php:245
3994
+ #: app/features/mec/meta_boxes/search_form.php:252
3995
+ #: app/features/mec/meta_boxes/search_form.php:259
3996
+ #: app/features/mec/meta_boxes/search_form.php:266
3997
+ #: app/features/mec/meta_boxes/search_form.php:278
3998
+ #: app/features/mec/meta_boxes/search_form.php:285
3999
+ #: app/features/mec/meta_boxes/search_form.php:292
4000
+ #: app/features/mec/meta_boxes/search_form.php:299
4001
+ #: app/features/mec/meta_boxes/search_form.php:306
4002
+ #: app/features/mec/meta_boxes/search_form.php:313
4003
+ #: app/features/mec/meta_boxes/search_form.php:320
4004
+ #: app/features/mec/meta_boxes/search_form.php:327
4005
+ #: app/features/mec/meta_boxes/search_form.php:339
4006
+ #: app/features/mec/meta_boxes/search_form.php:346
4007
+ #: app/features/mec/meta_boxes/search_form.php:353
4008
+ #: app/features/mec/meta_boxes/search_form.php:360
4009
+ #: app/features/mec/meta_boxes/search_form.php:367
4010
+ #: app/features/mec/meta_boxes/search_form.php:374
4011
+ #: app/features/mec/meta_boxes/search_form.php:381
4012
+ #: app/features/mec/meta_boxes/search_form.php:388
4013
+ #: app/features/mec/meta_boxes/search_form.php:400
4014
+ #: app/features/mec/meta_boxes/search_form.php:407
4015
+ #: app/features/mec/meta_boxes/search_form.php:414
4016
+ #: app/features/mec/meta_boxes/search_form.php:421
4017
+ #: app/features/mec/meta_boxes/search_form.php:428
4018
+ #: app/features/mec/meta_boxes/search_form.php:435
4019
+ #: app/features/mec/meta_boxes/search_form.php:442
4020
+ #: app/features/mec/meta_boxes/search_form.php:454
4021
+ #: app/features/mec/meta_boxes/search_form.php:461
4022
+ #: app/features/mec/meta_boxes/search_form.php:468
4023
+ #: app/features/mec/meta_boxes/search_form.php:475
4024
+ #: app/features/mec/meta_boxes/search_form.php:482
4025
+ #: app/features/mec/meta_boxes/search_form.php:489
4026
+ #: app/features/mec/meta_boxes/search_form.php:496
4027
+ #: app/features/mec/meta_boxes/search_form.php:503
4028
+ #: app/features/mec/meta_boxes/search_form.php:515
4029
+ #: app/features/mec/meta_boxes/search_form.php:522
4030
+ #: app/features/mec/meta_boxes/search_form.php:529
4031
+ #: app/features/mec/meta_boxes/search_form.php:536
4032
+ #: app/features/mec/meta_boxes/search_form.php:543
4033
+ #: app/features/mec/meta_boxes/search_form.php:550
4034
+ #: app/features/mec/meta_boxes/search_form.php:557
4035
+ #: app/features/mec/meta_boxes/search_form.php:564
4036
+ #: app/features/mec/meta_boxes/search_form.php:576
4037
+ #: app/features/mec/meta_boxes/search_form.php:583
4038
+ #: app/features/mec/meta_boxes/search_form.php:590
4039
+ #: app/features/mec/meta_boxes/search_form.php:597
4040
+ #: app/features/mec/meta_boxes/search_form.php:604
4041
+ #: app/features/mec/meta_boxes/search_form.php:611
4042
+ #: app/features/mec/meta_boxes/search_form.php:618
4043
+ #: app/features/mec/meta_boxes/search_form.php:625
4044
+ #: app/features/mec/modules.php:323 app/features/mec/settings.php:303
4045
+ #: app/features/mec/settings.php:559
4046
  msgid "Disabled"
4047
  msgstr "Deaktiviert"
4048
 
4049
  #: app/features/mec/meta_boxes/search_form.php:52
4050
+ #: app/features/mec/meta_boxes/search_form.php:114
4051
+ #: app/features/mec/meta_boxes/search_form.php:175
4052
+ #: app/features/mec/meta_boxes/search_form.php:236
4053
+ #: app/features/mec/meta_boxes/search_form.php:297
4054
+ #: app/features/mec/meta_boxes/search_form.php:358
4055
+ #: app/features/mec/meta_boxes/search_form.php:419
4056
+ #: app/features/mec/meta_boxes/search_form.php:473
4057
+ #: app/features/mec/meta_boxes/search_form.php:534
4058
+ #: app/features/mec/meta_boxes/search_form.php:595
4059
+ #: app/features/mec/settings.php:907 app/features/speakers.php:56
4060
+ #: app/features/speakers.php:243 app/libraries/main.php:4495
4061
+ #: app/libraries/skins.php:883
4062
  msgid "Speaker"
4063
  msgstr ""
4064
 
4065
  #: app/features/mec/meta_boxes/search_form.php:59
4066
+ #: app/features/mec/meta_boxes/search_form.php:121
4067
+ #: app/features/mec/meta_boxes/search_form.php:182
4068
+ #: app/features/mec/meta_boxes/search_form.php:243
4069
+ #: app/features/mec/meta_boxes/search_form.php:304
4070
+ #: app/features/mec/meta_boxes/search_form.php:365
4071
+ #: app/features/mec/meta_boxes/search_form.php:426
4072
+ #: app/features/mec/meta_boxes/search_form.php:480
4073
+ #: app/features/mec/meta_boxes/search_form.php:541
4074
+ #: app/features/mec/meta_boxes/search_form.php:602
4075
+ #: app/features/mec/settings.php:913 app/libraries/skins.php:909
4076
  #, fuzzy
4077
  #| msgid "Tags"
4078
  msgid "Tag"
4079
  msgstr "Schlagworte"
4080
 
4081
  #: app/features/mec/meta_boxes/search_form.php:73
4082
+ #: app/features/mec/meta_boxes/search_form.php:135
4083
+ #: app/features/mec/meta_boxes/search_form.php:196
4084
+ #: app/features/mec/meta_boxes/search_form.php:257
4085
+ #: app/features/mec/meta_boxes/search_form.php:318
4086
+ #: app/features/mec/meta_boxes/search_form.php:379
4087
+ #: app/features/mec/meta_boxes/search_form.php:494
4088
+ #: app/features/mec/meta_boxes/search_form.php:555
4089
+ #: app/features/mec/meta_boxes/search_form.php:616
4090
  msgid "Month Filter"
4091
  msgstr "Monatsfilter"
4092
 
4093
  #: app/features/mec/meta_boxes/search_form.php:80
4094
+ #: app/features/mec/meta_boxes/search_form.php:142
4095
+ #: app/features/mec/meta_boxes/search_form.php:203
4096
+ #: app/features/mec/meta_boxes/search_form.php:264
4097
+ #: app/features/mec/meta_boxes/search_form.php:325
4098
+ #: app/features/mec/meta_boxes/search_form.php:386
4099
+ #: app/features/mec/meta_boxes/search_form.php:440
4100
+ #: app/features/mec/meta_boxes/search_form.php:501
4101
+ #: app/features/mec/meta_boxes/search_form.php:562
4102
+ #: app/features/mec/meta_boxes/search_form.php:623
4103
  msgid "Text Search"
4104
  msgstr "Textsuche"
4105
 
4106
  #: app/features/mec/meta_boxes/search_form.php:83
4107
+ #: app/features/mec/meta_boxes/search_form.php:145
4108
+ #: app/features/mec/meta_boxes/search_form.php:206
4109
+ #: app/features/mec/meta_boxes/search_form.php:267
4110
+ #: app/features/mec/meta_boxes/search_form.php:328
4111
+ #: app/features/mec/meta_boxes/search_form.php:389
4112
+ #: app/features/mec/meta_boxes/search_form.php:443
4113
+ #: app/features/mec/meta_boxes/search_form.php:504
4114
+ #: app/features/mec/meta_boxes/search_form.php:565
4115
+ #: app/features/mec/meta_boxes/search_form.php:626
4116
  msgid "Text Input"
4117
  msgstr "Text eingeben"
4118
 
4119
+ #: app/features/mec/meta_boxes/search_form.php:634
4120
+ #: app/features/mec/meta_boxes/search_form.php:640
4121
+ #: app/features/mec/meta_boxes/search_form.php:646
4122
+ #: app/features/mec/meta_boxes/search_form.php:652
4123
+ #: app/features/mec/meta_boxes/search_form.php:658
4124
+ #: app/features/mec/meta_boxes/search_form.php:664
4125
  msgid "No Search Options"
4126
  msgstr "Keine Suchoptionen"
4127
 
4128
+ #: app/features/mec/modules.php:248
4129
  #, fuzzy
4130
  #| msgid "No Search Options"
4131
  msgid "Speakers Options"
4132
  msgstr "Keine Suchoptionen"
4133
 
4134
+ #: app/features/mec/modules.php:254
4135
  #, fuzzy
4136
  #| msgid "Enable taxes / fees module"
4137
  msgid "Enable speakers feature"
4138
  msgstr "Modul für Gebühren/Steuern aktivieren"
4139
 
4140
+ #: app/features/mec/modules.php:256
4141
  msgid ""
4142
  "After enable it, you should reloading this page to see a new menu on "
4143
  "Dashboard > MEC"
4144
  msgstr ""
4145
 
4146
+ #: app/features/mec/modules.php:273
4147
  msgid "Show Google Maps on event page"
4148
  msgstr "Google Maps auf der Veranstaltungsseite anzeigen"
4149
 
4150
+ #: app/features/mec/modules.php:278 app/features/mec/modules.php:436
4151
+ #: app/features/mec/settings.php:943 app/features/mec/settings.php:948
4152
  msgid "API Key"
4153
  msgstr "API Schlüssel"
4154
 
4155
+ #: app/features/mec/modules.php:284 app/features/mec/settings.php:949
4156
+ #: app/features/mec/settings.php:962
4157
  msgid "Required!"
4158
  msgstr "Erforderlich (Pflichtfeld)"
4159
 
4160
+ #: app/features/mec/modules.php:291 app/features/mec/modules.php:300
4161
  msgid "Zoom level"
4162
  msgstr "Zoom"
4163
 
4164
+ #: app/features/mec/modules.php:301
4165
  msgid ""
4166
  "For Google Maps module in single event page. In Google Maps skin, it will "
4167
  "caculate the zoom level automatically based on event boundaries."
4170
  "es die Zoom-Ebene automatisch kalkulieren, basierend auf den Eventort "
4171
  "Angrenzungen"
4172
 
4173
+ #: app/features/mec/modules.php:308
4174
  msgid "Google Maps Style"
4175
  msgstr "Google Maps Stil"
4176
 
4177
+ #: app/features/mec/modules.php:312 app/features/mec/single.php:268
4178
  msgid "Default"
4179
  msgstr "Standardeinstellung"
4180
 
4181
+ #: app/features/mec/modules.php:320
4182
  msgid "Direction on single event"
4183
  msgstr "Richtung auf einzelne Veranstaltung"
4184
 
4185
+ #: app/features/mec/modules.php:324
4186
  msgid "Simple Method"
4187
  msgstr "Einfache Methode"
4188
 
4189
+ #: app/features/mec/modules.php:325
4190
  msgid "Advanced Method"
4191
  msgstr "Fortgeschrittene Methode"
4192
 
4193
+ #: app/features/mec/modules.php:330 app/features/mec/modules.php:335
4194
  msgid "Lightbox Date Format"
4195
  msgstr "Leuchtkasten Datumsformat"
4196
 
4197
+ #: app/features/mec/modules.php:336
4198
  msgid "Default value is M d Y"
4199
  msgstr "Standardwert ist M T J"
4200
 
4201
+ #: app/features/mec/modules.php:343 app/features/mec/modules.php:351
4202
  msgid "Google Maps API"
4203
  msgstr "Google Maps API"
4204
 
4205
+ #: app/features/mec/modules.php:347
4206
  msgid "Don't load Google Maps API library"
4207
  msgstr "Google Maps API Bibliothek nicht laden"
4208
 
4209
+ #: app/features/mec/modules.php:352
4210
  msgid "Check it only if another plugin/theme is loading the Google Maps API"
4211
  msgstr ""
4212
  "Checken Sie es nur wenn ein anderes plugin/Thema die Google Maps API lädt."
4213
 
4214
+ #: app/features/mec/modules.php:369
4215
  msgid ""
4216
  "Show export module (iCal export and add to Google calendars) on event page"
4217
  msgstr ""
4218
  "Exportmodule auf Veranstaltungsseite anzeigen (iCal export und hinzufügen zu "
4219
  "Google calendars)"
4220
 
4221
+ #: app/features/mec/modules.php:376
4222
  msgid "Google Calendar"
4223
  msgstr "Google Calendar"
4224
 
4225
+ #: app/features/mec/modules.php:396
4226
  msgid "Show event time based on local time of visitor on event page"
4227
  msgstr ""
4228
  "Zeige die Eventzeit basierend auf der Ortszeit des Besuchers auf der "
4229
  "Eventseite"
4230
 
4231
+ #: app/features/mec/modules.php:414
4232
  msgid "Show QR code of event in details page and booking invoice"
4233
  msgstr ""
4234
  "Zeigen Sie QR-Code des Events in der Detailseite und in der Buchungsrechnung "
4235
  "an"
4236
 
4237
+ #: app/features/mec/modules.php:431
4238
  msgid "Show weather module on event page"
4239
  msgstr "Wettermodul auf der Eventseite anzeigen"
4240
 
4241
+ #: app/features/mec/modules.php:439
4242
  #, php-format
4243
  msgid "You can get a free API Key from %s"
4244
  msgstr "Sie können einen kostenlosen API-Schlüssel von% s erhalten"
4245
 
4246
+ #: app/features/mec/modules.php:445
4247
+ #, fuzzy
4248
+ #| msgid "Show weather module on event page"
4249
+ msgid "Show weather imperial units"
4250
+ msgstr "Wettermodul auf der Eventseite anzeigen"
4251
+
4252
+ #: app/features/mec/modules.php:451
4253
+ msgid "Show weather change units button"
4254
+ msgstr ""
4255
+
4256
+ #: app/features/mec/modules.php:465
4257
  msgid "Show social network module"
4258
  msgstr "Modul für Soziale Netzwerke anzeigen"
4259
 
4260
+ #: app/features/mec/modules.php:490
4261
  msgid "Show next event module on event page"
4262
  msgstr "Nächstes Event Modul auf der Eventseite anzeigen"
4263
 
4264
+ #: app/features/mec/modules.php:495
4265
  msgid "Method"
4266
  msgstr "Methode"
4267
 
4268
+ #: app/features/mec/modules.php:498
4269
  msgid "Next Occurrence of Current Event"
4270
  msgstr "Nächstes Auftreten des aktuellen Events"
4271
 
4272
+ #: app/features/mec/modules.php:499
4273
  msgid "Next Occurrence of Other Events"
4274
  msgstr "Nächstes Auftreten von anderen Events."
4275
 
4276
+ #: app/features/mec/modules.php:510 app/features/mec/single.php:222
4277
  msgid "Default is M d Y"
4278
  msgstr "Standardwert ist M-T-J"
4279
 
4280
+ #: app/features/mec/modules.php:526
4281
  msgid "Enable BuddyPress Integration"
4282
  msgstr "Buddy Press Integration deaktivieren"
4283
 
4284
+ #: app/features/mec/modules.php:533
4285
  msgid "Show \"Attendees Module\" in event details page"
4286
  msgstr "Zeigt \"Teilnehmermodul\" in Event Details Seite"
4287
 
4288
+ #: app/features/mec/modules.php:537
4289
  msgid "Attendees Limit"
4290
  msgstr "Teilnehmer Limit, maximale Anzahl"
4291
 
4292
+ #: app/features/mec/modules.php:545
4293
  msgid "Add booking activity to user profile"
4294
  msgstr "Fügt Buchungsaktivitäten dem Benutzerprofil hinzu"
4295
 
4296
+ #: app/features/mec/notifications.php:230
4297
  msgid "Enable booking notification"
4298
  msgstr "Buchungsbenachrichtigung aktivieren"
4299
 
4300
+ #: app/features/mec/notifications.php:234
4301
  msgid "It sends to attendee after booking for notifying him/her."
4302
  msgstr ""
4303
  "Wird an den Teilnehmer in Anschluss an die Buchung versendet, um Ihn/Sie zu "
4304
  "benachrichtigen."
4305
 
4306
+ #: app/features/mec/notifications.php:236
4307
+ #: app/features/mec/notifications.php:293
4308
+ #: app/features/mec/notifications.php:345
4309
+ #: app/features/mec/notifications.php:404
4310
+ #: app/features/mec/notifications.php:472
4311
+ #: app/features/mec/notifications.php:535
4312
+ #: app/features/mec/notifications.php:608
4313
  msgid "Email Subject"
4314
  msgstr "Email Betreff"
4315
 
4316
+ #: app/features/mec/notifications.php:240
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4317
  #: app/features/mec/notifications.php:244
4318
+ #: app/features/mec/notifications.php:297
4319
  #: app/features/mec/notifications.php:301
4320
+ #: app/features/mec/notifications.php:349
4321
  #: app/features/mec/notifications.php:353
4322
+ #: app/features/mec/notifications.php:408
4323
  #: app/features/mec/notifications.php:412
4324
+ #: app/features/mec/notifications.php:476
4325
  #: app/features/mec/notifications.php:480
4326
+ #: app/features/mec/notifications.php:539
4327
  #: app/features/mec/notifications.php:543
4328
  #: app/features/mec/notifications.php:554
4329
+ #: app/features/mec/notifications.php:612
4330
  #: app/features/mec/notifications.php:616
4331
+ msgid "Custom Recipients"
4332
+ msgstr "Individuelle Empfänger"
4333
+
4334
+ #: app/features/mec/notifications.php:245
4335
+ #: app/features/mec/notifications.php:302
4336
+ #: app/features/mec/notifications.php:354
4337
+ #: app/features/mec/notifications.php:413
4338
+ #: app/features/mec/notifications.php:481
4339
+ #: app/features/mec/notifications.php:544
4340
+ #: app/features/mec/notifications.php:555
4341
+ #: app/features/mec/notifications.php:617
4342
  msgid "Insert comma separated emails for multiple recipients."
4343
  msgstr "Geben Sie mit Komma getrennte email-Adressen ein für mehrere Empfänger"
4344
 
4345
+ #: app/features/mec/notifications.php:252
4346
+ #: app/features/mec/notifications.php:424
4347
+ #: app/features/mec/notifications.php:488
4348
  msgid "Send the email to event organizer"
4349
  msgstr "Sendet das Email zum Event Organisator"
4350
 
4351
+ #: app/features/mec/notifications.php:255
4352
+ #: app/features/mec/notifications.php:308
4353
+ #: app/features/mec/notifications.php:360
4354
+ #: app/features/mec/notifications.php:431
4355
+ #: app/features/mec/notifications.php:491
4356
+ #: app/features/mec/notifications.php:561
4357
+ #: app/features/mec/notifications.php:623
4358
  msgid "Email Content"
4359
  msgstr "Email Inhalt"
4360
 
4361
+ #: app/features/mec/notifications.php:258
4362
+ #: app/features/mec/notifications.php:311
4363
+ #: app/features/mec/notifications.php:363
4364
+ #: app/features/mec/notifications.php:434
4365
+ #: app/features/mec/notifications.php:494
4366
+ #: app/features/mec/notifications.php:564
4367
+ #: app/features/mec/notifications.php:626
4368
  msgid "You can use following placeholders"
4369
  msgstr "Sie können die folgenden Platzhalter wählen"
4370
 
 
 
 
 
 
 
 
 
 
4371
  #: app/features/mec/notifications.php:260
4372
  #: app/features/mec/notifications.php:313
4373
  #: app/features/mec/notifications.php:365
4374
  #: app/features/mec/notifications.php:436
4375
  #: app/features/mec/notifications.php:496
4376
  #: app/features/mec/notifications.php:566
4377
+ msgid "First name of attendee"
4378
+ msgstr "Vorname des Teilnehmers"
4379
 
4380
  #: app/features/mec/notifications.php:261
4381
  #: app/features/mec/notifications.php:314
4383
  #: app/features/mec/notifications.php:437
4384
  #: app/features/mec/notifications.php:497
4385
  #: app/features/mec/notifications.php:567
4386
+ msgid "Last name of attendee"
4387
+ msgstr "Nachname des Teilnehmers"
4388
 
4389
  #: app/features/mec/notifications.php:262
4390
  #: app/features/mec/notifications.php:315
4392
  #: app/features/mec/notifications.php:438
4393
  #: app/features/mec/notifications.php:498
4394
  #: app/features/mec/notifications.php:568
4395
+ msgid "Email of attendee"
4396
+ msgstr "Email des Teilnehmers"
4397
 
4398
  #: app/features/mec/notifications.php:263
4399
  #: app/features/mec/notifications.php:316
4401
  #: app/features/mec/notifications.php:439
4402
  #: app/features/mec/notifications.php:499
4403
  #: app/features/mec/notifications.php:569
4404
+ msgid "Booked date of event"
 
 
4405
  msgstr "Gebuchtes Datum der Veranstaltung"
4406
 
4407
  #: app/features/mec/notifications.php:264
4410
  #: app/features/mec/notifications.php:440
4411
  #: app/features/mec/notifications.php:500
4412
  #: app/features/mec/notifications.php:570
4413
+ #, fuzzy
4414
+ #| msgid "Booked date of event"
4415
+ msgid "Booked time of event"
4416
+ msgstr "Gebuchtes Datum der Veranstaltung"
4417
 
4418
  #: app/features/mec/notifications.php:265
4419
  #: app/features/mec/notifications.php:318
4421
  #: app/features/mec/notifications.php:441
4422
  #: app/features/mec/notifications.php:501
4423
  #: app/features/mec/notifications.php:571
4424
+ msgid "Booking Price"
4425
+ msgstr "Buchungspreis"
 
4426
 
4427
  #: app/features/mec/notifications.php:266
4428
  #: app/features/mec/notifications.php:319
4431
  #: app/features/mec/notifications.php:502
4432
  #: app/features/mec/notifications.php:572
4433
  #: app/features/mec/notifications.php:632
4434
+ msgid "Your website title"
4435
+ msgstr "Titel Ihrer Webseite"
4436
 
4437
  #: app/features/mec/notifications.php:267
4438
  #: app/features/mec/notifications.php:320
4441
  #: app/features/mec/notifications.php:503
4442
  #: app/features/mec/notifications.php:573
4443
  #: app/features/mec/notifications.php:633
4444
+ msgid "Your website URL"
4445
+ msgstr "URL Ihrer Webseite"
4446
 
4447
  #: app/features/mec/notifications.php:268
4448
  #: app/features/mec/notifications.php:321
4450
  #: app/features/mec/notifications.php:444
4451
  #: app/features/mec/notifications.php:504
4452
  #: app/features/mec/notifications.php:574
4453
+ #: app/features/mec/notifications.php:634
4454
+ msgid "Your website description"
4455
+ msgstr "Beschreibung Ihrer Webseite"
4456
 
4457
  #: app/features/mec/notifications.php:269
4458
  #: app/features/mec/notifications.php:322
4460
  #: app/features/mec/notifications.php:445
4461
  #: app/features/mec/notifications.php:505
4462
  #: app/features/mec/notifications.php:575
4463
+ msgid "Event title"
4464
+ msgstr "Titel der Veranstaltung"
 
 
4465
 
4466
  #: app/features/mec/notifications.php:270
4467
  #: app/features/mec/notifications.php:323
4470
  #: app/features/mec/notifications.php:506
4471
  #: app/features/mec/notifications.php:576
4472
  #, fuzzy
4473
+ #| msgid "Event Link"
4474
+ msgid "Event link"
4475
+ msgstr "Veranstaltungslink"
4476
 
4477
  #: app/features/mec/notifications.php:271
4478
  #: app/features/mec/notifications.php:324
4480
  #: app/features/mec/notifications.php:447
4481
  #: app/features/mec/notifications.php:507
4482
  #: app/features/mec/notifications.php:577
4483
+ #, fuzzy
4484
+ #| msgid "Organizer name of booked event"
4485
+ msgid "Speaker name of booked event"
4486
  msgstr "Name des Veranstalters des gebuchten Events"
4487
 
4488
  #: app/features/mec/notifications.php:272
4491
  #: app/features/mec/notifications.php:448
4492
  #: app/features/mec/notifications.php:508
4493
  #: app/features/mec/notifications.php:578
4494
+ msgid "Organizer name of booked event"
4495
+ msgstr "Name des Veranstalters des gebuchten Events"
4496
 
4497
  #: app/features/mec/notifications.php:273
4498
  #: app/features/mec/notifications.php:326
4500
  #: app/features/mec/notifications.php:449
4501
  #: app/features/mec/notifications.php:509
4502
  #: app/features/mec/notifications.php:579
4503
+ msgid "Organizer tel of booked event"
4504
+ msgstr "Tel des Veranstalters"
4505
 
4506
  #: app/features/mec/notifications.php:274
4507
  #: app/features/mec/notifications.php:327
4509
  #: app/features/mec/notifications.php:450
4510
  #: app/features/mec/notifications.php:510
4511
  #: app/features/mec/notifications.php:580
4512
+ msgid "Organizer email of booked event"
4513
+ msgstr "Email des Veranstalters des gebuchten events"
4514
 
4515
  #: app/features/mec/notifications.php:275
4516
  #: app/features/mec/notifications.php:328
4518
  #: app/features/mec/notifications.php:451
4519
  #: app/features/mec/notifications.php:511
4520
  #: app/features/mec/notifications.php:581
4521
+ msgid "Location name of booked event"
4522
+ msgstr "Veranstaltungsort"
4523
+
4524
+ #: app/features/mec/notifications.php:276
4525
+ #: app/features/mec/notifications.php:329
4526
+ #: app/features/mec/notifications.php:381
4527
+ #: app/features/mec/notifications.php:452
4528
+ #: app/features/mec/notifications.php:512
4529
+ #: app/features/mec/notifications.php:582
4530
  msgid "Location address of booked event"
4531
  msgstr "Adresse der gebuchten Veranstaltung"
4532
 
4533
+ #: app/features/mec/notifications.php:277
4534
+ #: app/features/mec/notifications.php:454
4535
+ #: app/features/mec/notifications.php:514
4536
  msgid "Full Attendee info such as booking form data, name, email etc."
4537
  msgstr ""
4538
  "Gesamte Teinehmerinformationen wie z.B. Daten aus dem Buchungsformular, "
4539
  "Name, email, etc."
4540
 
 
 
 
 
 
 
4541
  #: app/features/mec/notifications.php:278
 
4542
  #: app/features/mec/notifications.php:383
 
 
4543
  #: app/features/mec/notifications.php:584
4544
+ msgid "Invoice Link"
4545
+ msgstr "Rechnungslink"
4546
 
4547
  #: app/features/mec/notifications.php:279
4548
  #: app/features/mec/notifications.php:331
4549
  #: app/features/mec/notifications.php:384
4550
+ #: app/features/mec/notifications.php:455
4551
+ #: app/features/mec/notifications.php:515
4552
  #: app/features/mec/notifications.php:585
4553
+ msgid "Total Attendees"
4554
+ msgstr ""
 
 
4555
 
4556
  #: app/features/mec/notifications.php:280
4557
  #: app/features/mec/notifications.php:332
4559
  #: app/features/mec/notifications.php:586
4560
  #, fuzzy
4561
  #| msgid "Ticket Name"
4562
+ msgid "Ticket name"
4563
  msgstr "Ticket Name"
4564
 
4565
  #: app/features/mec/notifications.php:281
4567
  #: app/features/mec/notifications.php:386
4568
  #: app/features/mec/notifications.php:587
4569
  #, fuzzy
4570
+ #| msgid "Ticket Name"
4571
+ msgid "Ticket time"
4572
+ msgstr "Ticket Name"
4573
+
4574
+ #: app/features/mec/notifications.php:282
4575
+ #: app/features/mec/notifications.php:334
4576
+ #: app/features/mec/notifications.php:387
4577
+ #: app/features/mec/notifications.php:588
4578
+ #, fuzzy
4579
  #| msgid "Download Invoice"
4580
  msgid "Download ICS file"
4581
  msgstr "Download Rechnung\n"
4582
 
4583
+ #: app/features/mec/notifications.php:291
4584
  msgid "It sends to attendee email for verifying their booking/email."
4585
  msgstr ""
4586
  "Versendet an den Teilnehmer eine Email um dessen Buchung/Mail zu "
4587
  "verifizieren."
4588
 
4589
+ #: app/features/mec/notifications.php:330
4590
  msgid "Email/Booking verification link."
4591
  msgstr "Bestätigungslink für Email/Buchung"
4592
 
4593
+ #: app/features/mec/notifications.php:343
4594
  msgid "It sends to attendee after confirming the booking by admin."
4595
  msgstr ""
4596
  "Es wird an den Teilnehmer gesendet nach Bestätigung der Buchung vom admin."
4597
 
4598
+ #: app/features/mec/notifications.php:382
4599
+ #: app/features/mec/notifications.php:583
4600
  msgid "Booking cancellation link."
4601
  msgstr "Link zur Stornierung der Buchung"
4602
 
4603
+ #: app/features/mec/notifications.php:398
4604
  #, fuzzy
4605
  #| msgid "Enable new event notification"
4606
  msgid "Enable cancellation notification"
4607
  msgstr "Benachrichtigung bei neuen Veranstaltungen aktivieren"
4608
 
4609
+ #: app/features/mec/notifications.php:402
4610
  #, fuzzy
4611
  #| msgid "It sends to attendee after booking for notifying him/her."
4612
  msgid ""
4616
  "Wird an den Teilnehmer in Anschluss an die Buchung versendet, um Ihn/Sie zu "
4617
  "benachrichtigen."
4618
 
4619
+ #: app/features/mec/notifications.php:420
4620
  #, fuzzy
4621
  #| msgid "Send the email to event organizer"
4622
  msgid "Send the email to admin"
4623
  msgstr "Sendet das Email zum Event Organisator"
4624
 
4625
+ #: app/features/mec/notifications.php:428
4626
  #, fuzzy
4627
  #| msgid "Send the email to event organizer"
4628
  msgid "Send the email to booking user"
4629
  msgstr "Sendet das Email zum Event Organisator"
4630
 
4631
+ #: app/features/mec/notifications.php:453
4632
+ #: app/features/mec/notifications.php:513
4633
  msgid "Admin booking management link."
4634
  msgstr "Admin-link zur Buchungsverwaltung"
4635
 
4636
+ #: app/features/mec/notifications.php:466
4637
  #, fuzzy
4638
  #| msgid "Enable booking notification"
4639
  msgid "Enable admin notification"
4640
  msgstr "Buchungsbenachrichtigung aktivieren"
4641
 
4642
+ #: app/features/mec/notifications.php:470
4643
  msgid "It sends to admin to notify him/her that a new booking received."
4644
  msgstr ""
4645
  "Sendet eine Benachrichtigung an den Adminstrator um diesen darüber zu "
4646
  "Informieren, dass eine neue Buchung eingegangen ist."
4647
 
4648
+ #: app/features/mec/notifications.php:526
4649
  msgid "Enable booking reminder notification"
4650
  msgstr "Aktivieren Sie die Erinnerung für die Buchungserinnerung"
4651
 
4652
+ #: app/features/mec/notifications.php:532
4653
  #, php-format
4654
  msgid ""
4655
  "Set a cronjob to call %s file once per day otherwise it won't send the "
4661
  "Sie diese Datei% s aufrufen sollten, sonst könnten die Erinnerungen mehrmals "
4662
  "gesendet werden."
4663
 
4664
+ #: app/features/mec/notifications.php:532
4665
  msgid "only once per day"
4666
  msgstr "nur einmal pro Tag"
4667
 
4668
+ #: app/features/mec/notifications.php:550
4669
  msgid "Days"
4670
  msgstr "Tage"
4671
 
4672
+ #: app/features/mec/notifications.php:602
4673
  msgid "Enable new event notification"
4674
  msgstr "Benachrichtigung bei neuen Veranstaltungen aktivieren"
4675
 
4676
+ #: app/features/mec/notifications.php:606
4677
  msgid ""
4678
  "It sends after adding a new event from frontend event submission or from "
4679
  "website backend."
4681
  "Wird nach dem Hinzufügen einer neuen Veranstaltung aus der Frontend-"
4682
  "Übermittlung oder dem Backend versandt."
4683
 
4684
+ #: app/features/mec/notifications.php:628
4685
  msgid "Title of event"
4686
  msgstr "Titel der Veranstaltung"
4687
 
4688
+ #: app/features/mec/notifications.php:629
4689
  #, fuzzy
4690
  #| msgid "Title of event"
4691
  msgid "Link of event"
4692
  msgstr "Titel der Veranstaltung"
4693
 
4694
+ #: app/features/mec/notifications.php:630
4695
  msgid "Status of event"
4696
  msgstr "Status der Veranstaltung"
4697
 
4698
+ #: app/features/mec/notifications.php:631 app/features/mec/settings.php:845
4699
+ #: app/features/mec/settings.php:849
4700
  msgid "Event Note"
4701
  msgstr "Veranstaltungsnotiz"
4702
 
4703
+ #: app/features/mec/notifications.php:635
4704
  msgid "Admin events management link."
4705
  msgstr "Admin-link zur Veranstaltungsverwaltung"
4706
 
4707
+ #: app/features/mec/settings.php:261 app/features/mec/settings.php:271
4708
  msgid "Hide Events"
4709
  msgstr "Events verbergen"
4710
 
4711
+ #: app/features/mec/settings.php:264
4712
  msgid "On Event Start"
4713
  msgstr "Am Event Start"
4714
 
4715
+ #: app/features/mec/settings.php:265
4716
  msgid "+1 Hour after start"
4717
  msgstr "+1 Stunde nach dem Start"
4718
 
4719
+ #: app/features/mec/settings.php:266
4720
  msgid "+2 Hours after start"
4721
  msgstr "+2 Stunden nach dem Start"
4722
 
4723
+ #: app/features/mec/settings.php:267
4724
  msgid "On Event End"
4725
  msgstr "Am Event Ende"
4726
 
4727
+ #: app/features/mec/settings.php:272
4728
  msgid ""
4729
  "This option is for showing start/end time of events on frontend of website."
4730
  msgstr ""
4731
  "Diese Option ist um die Start/Endezeit von Events im Frontend der Webseite "
4732
  "anzuzeigen"
4733
 
4734
+ #: app/features/mec/settings.php:281 app/features/mec/settings.php:290
4735
  msgid "Multiple Day Events"
4736
  msgstr "Mehrtagesveranstaltung"
4737
 
4738
+ #: app/features/mec/settings.php:284
4739
  msgid "Show only first day on List/Grid/Slider skins"
4740
  msgstr "Zeige nur den ersten Tag auf Listen/Raster(Grid)/Slider skins."
4741
 
4742
+ #: app/features/mec/settings.php:285
4743
  msgid "Show only first day on all skins"
4744
  msgstr "Nur den ersten Tag in allen Ansichten zeigen"
4745
 
4746
+ #: app/features/mec/settings.php:286
4747
  msgid "Show all days"
4748
  msgstr "Alle Tage anzeigen"
4749
 
4750
+ #: app/features/mec/settings.php:291
4751
  msgid ""
4752
  "For showing all days of multiple day events on frontend or only show the "
4753
  "first day."
4755
  "Um alle Tage anzuzeigen bei Events über mehrere Tage im Frontend oder nur "
4756
  "den ersten Tag anzeigen"
4757
 
4758
+ #: app/features/mec/settings.php:300
4759
  msgid "Remove MEC Data on Plugin Uninstall"
4760
  msgstr "Entfernen von MEC Data auf dem Plugin Deinstallierer"
4761
 
4762
+ #: app/features/mec/settings.php:304
4763
  msgid "Enabled"
4764
  msgstr "Aktiviert"
4765
 
4766
+ #: app/features/mec/settings.php:310
4767
  msgid "Exclude Date Suffix"
4768
  msgstr "Ausschlussdatum Suffix"
4769
 
4770
+ #: app/features/mec/settings.php:313
4771
  msgid "Remove suffix from calendars"
4772
  msgstr "Suffix aus den Kalendern entfernen"
4773
 
4774
+ #: app/features/mec/settings.php:317
4775
  #, fuzzy
4776
  #| msgid "Remove suffix from calendars"
4777
  msgid "Remove \"Th\" on calendar"
4778
  msgstr "Suffix aus den Kalendern entfernen"
4779
 
4780
+ #: app/features/mec/settings.php:318
4781
  msgid ""
4782
  "Checked this checkbox to remove 'Th' on calendar ( ex: '12Th' remove Th, "
4783
  "showing just '12' )"
4784
  msgstr ""
4785
 
4786
+ #: app/features/mec/settings.php:327 app/features/mec/settings.php:337
4787
+ #: app/libraries/main.php:4499
4788
  msgid "Weekdays"
4789
  msgstr "Wochentage"
4790
 
4791
+ #: app/features/mec/settings.php:338
4792
  #, fuzzy
4793
  #| msgid ""
4794
  #| "Proceed with caution. Default is set to Monday, Tuesday, Wednesday, "
4801
  "Vorsichtig vorgehen. Standardwert ist auf Montag, Dienstag, Mittwoch, "
4802
  "Donnerstag und Freitag gesetzt."
4803
 
4804
+ #: app/features/mec/settings.php:348 app/features/mec/settings.php:358
4805
  msgid "Weekends"
4806
  msgstr "Wochenenden"
4807
 
4808
+ #: app/features/mec/settings.php:359
4809
  msgid ""
4810
  "Proceed with caution. Default is set to Saturday and Sunday ( you can change "
4811
  "'Week Starts' on WordPress Dashboard > Settings > General - bottom of the "
4812
  "page )."
4813
  msgstr ""
4814
 
4815
+ #: app/features/mec/settings.php:373 app/features/mec/settings.php:378
4816
  msgid "Archive Page Title"
4817
  msgstr "Titel der Archivseite"
4818
 
4819
+ #: app/features/mec/settings.php:379
4820
  #, fuzzy
4821
  #| msgid "Default value is Events"
4822
  msgid "Default value is Events - It's title of the page"
4823
  msgstr "Der Standardwert ist Ereignisse (Events)"
4824
 
4825
+ #: app/features/mec/settings.php:387 app/features/mec/settings.php:455
4826
  msgid "Archive Page Skin"
4827
  msgstr "Skin Seite Archiv"
4828
 
4829
+ #: app/features/mec/settings.php:395
4830
  #, fuzzy
4831
  #| msgid "Edit shortcodes"
4832
  msgid "Put shortcode..."
4833
  msgstr "Shortcode ändern"
4834
 
4835
+ #: app/features/mec/settings.php:398 app/features/mec/settings.php:413
4836
+ #: app/features/mec/settings.php:416 app/features/mec/settings.php:425
4837
+ #: app/features/mec/settings.php:451 app/features/mec/settings.php:472
4838
+ #: app/features/mec/settings.php:487 app/features/mec/settings.php:490
4839
+ #: app/features/mec/settings.php:499 app/features/mec/settings.php:525
4840
  #, fuzzy
4841
  #| msgid "The event is ongoing."
4842
  msgid "There is no skins"
4843
  msgstr "Die Veranstaltung ist im Gange."
4844
 
4845
+ #: app/features/mec/settings.php:401 app/features/mec/settings.php:475
4846
+ #: app/features/mec/single.php:249
4847
  msgid "Modern Style"
4848
  msgstr "Moderner Stil"
4849
 
4850
+ #: app/features/mec/settings.php:443 app/features/mec/settings.php:517
4851
  #, fuzzy
4852
  #| msgid "Colorful"
4853
  msgid "colorful"
4854
  msgstr "Farbenfroh"
4855
 
4856
+ #: app/features/mec/settings.php:448 app/features/mec/settings.php:522
4857
  #, fuzzy
4858
  #| msgid "Plain Style"
4859
  msgid "Clean Style"
4860
  msgstr "Einfacher schlichter Stil"
4861
 
4862
+ #: app/features/mec/settings.php:456
4863
  #, fuzzy
4864
  #| msgid "Default value is Calendar/Monthly View"
4865
  msgid "Default value is Calendar/Monthly View, But you can change it "
4866
  msgstr "Der Standardwert ist Kalender / Monatsansicht"
4867
 
4868
+ #: app/features/mec/settings.php:456 app/features/mec/settings.php:530
4869
  msgid "See Demo"
4870
  msgstr ""
4871
 
4872
+ #: app/features/mec/settings.php:464 app/features/mec/settings.php:529
4873
  msgid "Category Page Skin"
4874
  msgstr "Kategorie Seiten Skin"
4875
 
4876
+ #: app/features/mec/settings.php:530
4877
  msgid ""
4878
  "Default value is List View - But you can change it Set a skin for all "
4879
  "categories."
4880
  msgstr ""
4881
 
4882
+ #: app/features/mec/settings.php:538 app/features/mec/settings.php:546
4883
  msgid "Category Events Method"
4884
  msgstr ""
4885
 
4886
+ #: app/features/mec/settings.php:542
4887
  msgid "Expired Events"
4888
  msgstr ""
4889
 
4890
+ #: app/features/mec/settings.php:547
4891
  msgid "Default value is Upcoming Events"
4892
  msgstr ""
4893
 
4894
+ #: app/features/mec/settings.php:555 app/features/mec/settings.php:563
4895
  msgid "Events Archive Status"
4896
  msgstr "Events Archiv Status"
4897
 
4898
+ #: app/features/mec/settings.php:558
4899
  msgid "Enabled (Recommended)"
4900
  msgstr "Ist aktiviert (empfohlen)"
4901
 
4902
+ #: app/features/mec/settings.php:564
4903
  msgid ""
4904
  "If you disable it, then you should create a page as archive page of MEC. "
4905
  "Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
4909
  "erstellen. Page´s slug muss gleich sein wie \"Main Slug\" von MEC. Außerdem "
4910
  "werden alle MEC-Rewrite-Regeln deaktiviert."
4911
 
4912
+ #: app/features/mec/settings.php:577 app/features/mec/settings.php:582
4913
  msgid "Main Slug"
4914
  msgstr "Main Slug"
4915
 
4916
+ #: app/features/mec/settings.php:583
4917
  msgid ""
4918
  "Default value is events. You can not have a page with this name. MEC allows "
4919
  "you to create custom URLs for the permalinks and archives to enhance the "
4920
  "applicability and forward-compatibility of the links."
4921
  msgstr ""
4922
 
4923
+ #: app/features/mec/settings.php:587 app/features/mec/settings.php:601
4924
  #, fuzzy
4925
  #| msgid ""
4926
  #| "Default value is events. Valid characters are lowercase a-z, - character "
4930
  "Standardwert ist Events. Gültige Zeichen sind Kleinbuchstaben a-z, - Zeichen "
4931
  "und Zahlen."
4932
 
4933
+ #: app/features/mec/settings.php:591 app/features/mec/settings.php:596
4934
  msgid "Category Slug"
4935
  msgstr "Category Slug"
4936
 
4937
+ #: app/features/mec/settings.php:597
4938
  #, fuzzy
4939
  #| msgid ""
4940
  #| "It's slug of MEC categories, you can change it to events-cat or something "
4950
  "für den link. Zum Beispiel example.com/events-cat oder example.com/mec-"
4951
  "category"
4952
 
4953
+ #: app/features/mec/settings.php:609
4954
  msgid "Currency"
4955
  msgstr "Währung"
4956
 
4957
+ #: app/features/mec/settings.php:619 app/features/mec/settings.php:624
4958
  msgid "Currency Sign"
4959
  msgstr "Währungssymbol"
4960
 
4961
+ #: app/features/mec/settings.php:625
4962
  msgid "Default value will be \"currency\" if you leave it empty."
4963
  msgstr "Standardwert wird \"currency\" sein wenn Sie es leer lassen"
4964
 
4965
+ #: app/features/mec/settings.php:632
4966
  msgid "Currency Position"
4967
  msgstr "Position des Währungssymbols"
4968
 
4969
+ #: app/features/mec/settings.php:635
4970
  msgid "Before $10"
4971
  msgstr "Vor $10"
4972
 
4973
+ #: app/features/mec/settings.php:636
4974
  msgid "After 10$"
4975
  msgstr "Nach 10$"
4976
 
4977
+ #: app/features/mec/settings.php:641
4978
  msgid "Thousand Separator"
4979
  msgstr "Tausendertrennzeichen"
4980
 
4981
+ #: app/features/mec/settings.php:647
4982
  msgid "Decimal Separator"
4983
  msgstr "Dezimaltrennzeichen"
4984
 
4985
+ #: app/features/mec/settings.php:657
4986
  msgid "No decimal"
4987
  msgstr "Keine Dezimale"
4988
 
4989
+ #: app/features/mec/settings.php:668
4990
  msgid "Enable Google Recaptcha"
4991
  msgstr "Google Recaptcha aktivieren"
4992
 
4993
+ #: app/features/mec/settings.php:675
4994
  msgid "Enable on booking form"
4995
  msgstr "Auf dem Buchungsformular aktivieren"
4996
 
4997
+ #: app/features/mec/settings.php:681
4998
  #, fuzzy
4999
  #| msgid "Enable on \"Frontend Event Submittion\" form"
5000
  msgid "Enable on \"Frontend Event Submission\" form"
5001
  msgstr "Aktivieren auf dem \"Frontend Event Submittion\" Formular"
5002
 
5003
+ #: app/features/mec/settings.php:685
5004
  msgid "Site Key"
5005
  msgstr "Site Key (Seitenschlüssel)"
5006
 
5007
+ #: app/features/mec/settings.php:691
5008
  msgid "Secret Key"
5009
  msgstr "Geheimschlüssel"
5010
 
5011
+ #: app/features/mec/settings.php:703 app/features/mec/settings.php:711
5012
  msgid "Time Format"
5013
  msgstr "Zeitformat"
5014
 
5015
+ #: app/features/mec/settings.php:706
5016
  msgid "12 hours format with AM/PM"
5017
  msgstr "12-Stunden-Format mit AM/FM"
5018
 
5019
+ #: app/features/mec/settings.php:707
5020
  msgid "24 hours format"
5021
  msgstr "24-Stunden-Format"
5022
 
5023
+ #: app/features/mec/settings.php:712
5024
  msgid "This option, affects the selection of Start/End time."
5025
  msgstr ""
5026
 
5027
+ #: app/features/mec/settings.php:720
5028
  msgid "Events List Page"
5029
  msgstr "Seite Liste der Veranstaltungen"
5030
 
5031
+ #: app/features/mec/settings.php:729 app/features/mec/settings.php:741
5032
  #, php-format
5033
  msgid "Put %s shortcode into the page."
5034
  msgstr "%s shortcode in die Seite einfügen"
5035
 
5036
+ #: app/features/mec/settings.php:732
5037
  msgid "Add/Edit Events Page"
5038
  msgstr "Veranstaltungsseite hinzufügen/bearbeiten"
5039
 
5040
+ #: app/features/mec/settings.php:746
5041
  msgid "Enable event submission by guest (Not logged-in) users"
5042
  msgstr ""
5043
  "Das Erstellen von Veranstaltungen durch Gäste (nicht angemeldete Nutzer) "
5044
  "erlauben"
5045
 
5046
+ #: app/features/mec/settings.php:753
5047
  msgid "Enable mandatory email and name for guest user"
5048
  msgstr ""
5049
  "Aktivieren Sie die obligatorische E-Mail und den Namen für Gastbenutzer"
5050
 
5051
+ #: app/features/mec/settings.php:757
5052
  msgid "Frontend Event Submission Sections"
5053
  msgstr "Frontend Veranstaltungen Einreichung Sektionen"
5054
 
5055
+ #: app/features/mec/settings.php:779 app/widgets/single.php:119
5056
  msgid "Event Categories"
5057
  msgstr "Veranstaltungskategorien"
5058
 
5059
+ #: app/features/mec/settings.php:785
5060
  msgid "Event Labels"
5061
  msgstr "Event Labels"
5062
 
5063
+ #: app/features/mec/settings.php:797
5064
  msgid "Event Tags"
5065
  msgstr "Event Schlagworte"
5066
 
5067
+ #: app/features/mec/settings.php:809 app/widgets/single.php:123
5068
  msgid "Event Organizer"
5069
  msgstr "Veranstaltungsmanager"
5070
 
5071
+ #: app/features/mec/settings.php:827
5072
  msgid "Booking Options"
5073
  msgstr "Buchungsoptionen"
5074
 
5075
+ #: app/features/mec/settings.php:833
5076
  #, fuzzy
5077
  #| msgid "Fees/Taxes Options"
5078
  msgid "Fees / Taxes Options"
5079
  msgstr "Gebühren/Steuer Optionen"
5080
 
5081
+ #: app/features/mec/settings.php:850
5082
  #, php-format
5083
  msgid ""
5084
  "Users can put a note for editors while they're submitting the event. Also "
5090
  "Eventbenachrichtigung setzen, um die Notizen der Benutzer in der E-Mail zu "
5091
  "erhalten."
5092
 
5093
+ #: app/features/mec/settings.php:857 app/features/mec/settings.php:866
5094
  msgid "Visibility of Note"
5095
  msgstr "Sichtbarkeit der Anmerkungen zum Event "
5096
 
5097
+ #: app/features/mec/settings.php:860
5098
  msgid "Always"
5099
  msgstr "Immer"
5100
 
5101
+ #: app/features/mec/settings.php:861
5102
  msgid "While event is not published"
5103
  msgstr "Das Ereignis wird nicht veröffentlicht"
5104
 
5105
+ #: app/features/mec/settings.php:867
5106
  msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
5107
  msgstr ""
5108
  "Die Ereignisnotiz wird im Frontend-Einreichungsformular angezeigt und das "
5109
  "Ereignis im Backend bearbeitet."
5110
 
5111
+ #: app/features/mec/settings.php:878
5112
  #, php-format
5113
  msgid ""
5114
  "Put %s shortcode into your desired page. Then users are able to see history "
5115
  "of their bookings."
5116
  msgstr ""
5117
 
5118
+ #: app/features/mec/settings.php:885
5119
+ #, php-format
5120
+ msgid ""
5121
+ "Put %s shortcode into your desired page. Then users are able to search events"
5122
+ msgstr ""
5123
+
5124
+ #: app/features/mec/settings.php:925
5125
+ msgid "Text Field"
5126
+ msgstr ""
5127
+
5128
+ #: app/features/mec/settings.php:938
5129
  msgid "Enable Mailchimp Integration"
5130
  msgstr "Mailchimp Integration deaktivieren"
5131
 
5132
+ #: app/features/mec/settings.php:956 app/features/mec/settings.php:961
5133
  msgid "List ID"
5134
  msgstr "List ID"
5135
 
5136
+ #: app/features/mec/settings.php:969 app/features/mec/settings.php:977
5137
  msgid "Subscription Status"
5138
  msgstr "Buchungsstatus"
5139
 
5140
+ #: app/features/mec/settings.php:972
5141
  msgid "Subscribe automatically"
5142
  msgstr "automatisch Anmelden/Abonnieren"
5143
 
5144
+ #: app/features/mec/settings.php:973
5145
  msgid "Subscribe by verification"
5146
  msgstr ""
5147
  "Anmelden/Abonnieren durch Bestätigung\n"
5148
  " "
5149
 
5150
+ #: app/features/mec/settings.php:978
5151
  msgid ""
5152
  "If you choose \"Subscribe by verification\" then an email will send to user "
5153
  "by mailchimp for subscription verification."
5155
  "Wenn Sie \"Anmelden durch Verifizierung\" wählen, wird eine E-Mail an den "
5156
  "Benutzer per Mailchimp zur Bestätigung gesendet."
5157
 
5158
+ #: app/features/mec/settings.php:990
5159
  #, fuzzy
5160
  #| msgid "Filter Options"
5161
  msgid "Upload Field Options"
5162
  msgstr "Filteroptionen"
5163
 
5164
+ #: app/features/mec/settings.php:992
5165
  msgid "Mime types"
5166
  msgstr ""
5167
 
5168
+ #: app/features/mec/settings.php:996
5169
  msgid "Split mime types with \",\"."
5170
  msgstr ""
5171
 
5172
+ #: app/features/mec/settings.php:996
5173
  msgid "Default: jpeg,jpg,png,pdf"
5174
  msgstr ""
5175
 
5176
+ #: app/features/mec/settings.php:999
5177
  #, fuzzy
5178
  #| msgid "Amount (Per Ticket)"
5179
  msgid "Maximum file size"
5180
  msgstr "Betrag (pro Ticket)"
5181
 
5182
+ #: app/features/mec/settings.php:1003
5183
  msgid "The unit is Megabyte \"MB\""
5184
  msgstr ""
5185
 
5186
+ #: app/features/mec/single.php:216 app/features/mec/single.php:221
5187
  msgid "Single Event Date Format"
5188
  msgstr "Einzelveranstaltung Datumformat"
5189
 
5190
+ #: app/features/mec/single.php:229 app/features/mec/single.php:237
5191
  msgid "Date Method"
5192
  msgstr "Datum Methode"
5193
 
5194
+ #: app/features/mec/single.php:232
5195
  msgid "Next occurrence date"
5196
  msgstr "Nächstes vorkommende Datum"
5197
 
5198
+ #: app/features/mec/single.php:233
5199
  msgid "Referred date"
5200
  msgstr "Gewünschtes Datum"
5201
 
5202
+ #: app/features/mec/single.php:238
5203
  #, fuzzy
5204
  #| msgid ""
5205
  #| "\"Referred date\" shows the event date based on referred date in event "
5210
  "\"Gewünschtes Datum\" zeigt das Ereignisdatum basierend auf dem angegebenen "
5211
  "Datum in der Eventliste an."
5212
 
5213
+ #: app/features/mec/single.php:245 app/features/mec/single.php:256
5214
  msgid "Single Event Style"
5215
  msgstr "Single Event Stil"
5216
 
5217
+ #: app/features/mec/single.php:248
5218
  msgid "Default Style"
5219
  msgstr "Standardstil voreingestellt"
5220
 
5221
+ #: app/features/mec/single.php:251
5222
  #, fuzzy
5223
  #| msgid "MEC Single Sidebar"
5224
  msgid "Elementor Single Builder"
5225
  msgstr "MEC Single Sidebar"
5226
 
5227
+ #: app/features/mec/single.php:257
5228
  msgid "Choose your single event style."
5229
  msgstr "Wählen Sie Ihren Single Event Stil"
5230
 
5231
+ #: app/features/mec/single.php:265 app/features/mec/single.php:273
5232
  #, fuzzy
5233
  #| msgid "Booking"
5234
  msgid "Booking Style"
5235
  msgstr "Buchung / Reservierung"
5236
 
5237
+ #: app/features/mec/single.php:269
5238
  #, fuzzy
5239
  #| msgid "Modal 1"
5240
  msgid "Modal"
5241
  msgstr "Modal 1"
5242
 
5243
+ #: app/features/mec/single.php:274
5244
  msgid ""
5245
  "Choose your Booking style, Please Note: When you set this feature to modal "
5246
  "you can not see booking box if you set popoup module view on shortcodes"
5247
  msgstr ""
5248
 
5249
+ #: app/features/mec/single.php:282
5250
  msgid "Disable Block Editor (Gutenberg)"
5251
  msgstr ""
5252
 
5253
+ #: app/features/mec/single.php:285
5254
  msgid "Disable Block Editor"
5255
  msgstr ""
5256
 
5257
+ #: app/features/mec/single.php:289
5258
  msgid "Block Editor"
5259
  msgstr ""
5260
 
5261
+ #: app/features/mec/single.php:290
5262
  msgid ""
5263
  "If you want to use the new WordPress block editor you should keep this "
5264
  "checkbox unchecked."
5265
  msgstr ""
5266
 
5267
+ #: app/features/mec/single.php:296 app/features/mec/single.php:303
5268
  msgid "Breadcrumbs"
5269
  msgstr ""
5270
 
5271
+ #: app/features/mec/single.php:299
5272
  msgid "Enable Breadcrumbs."
5273
  msgstr ""
5274
 
5275
+ #: app/features/mec/single.php:304
5276
  msgid "Check this option, for showing the breadcrumbs on single event page"
5277
  msgstr ""
5278
 
5279
+ #: app/features/mec/single.php:317
5280
  msgid "Show countdown module on event page"
5281
  msgstr "Countdownmodul auf Veranstaltungsseite anzeigen"
5282
 
5283
+ #: app/features/mec/single.php:322
5284
  msgid "Countdown Style"
5285
  msgstr "Countdown Stil"
5286
 
5287
+ #: app/features/mec/single.php:325
5288
  msgid "Plain Style"
5289
  msgstr "Einfacher schlichter Stil"
5290
 
5291
+ #: app/features/mec/single.php:326
5292
  msgid "Flip Style"
5293
  msgstr "Flip Stil"
5294
 
5295
+ #: app/features/mec/single.php:334 app/features/mec/single.php:341
5296
  msgid "Exceptional days"
5297
  msgstr "Ausgesuchte ausnehmende Tage"
5298
 
5299
+ #: app/features/mec/single.php:338
5300
  msgid "Show exceptional days option on Add/Edit events page"
5301
  msgstr ""
5302
  "Ausnehmende Tage anzeigen auf der Seite Ereignisse hinzufügen / bearbeiten "
5303
  "(Show exceptional days option on Add/Edit events page)"
5304
 
5305
+ #: app/features/mec/single.php:342
5306
  msgid ""
5307
  "Using this option you can include/exclude certain days to/from event "
5308
  "occurrence dates."
5310
  "Mit dieser Option können Sie bestimmte Tage von vorkommenden Eventdaten ein-/"
5311
  "ausschließen."
5312
 
5313
+ #: app/features/mec/single.php:355
5314
  msgid ""
5315
  "Show additional organizers option on Add/Edit events page and single event "
5316
  "page."
5318
  "Zeigen Sie zusätzliche Organisatoren auf der Seite Events hinzufügen / "
5319
  "bearbeiten und auf der Seite für einzelne Events an."
5320
 
5321
+ #: app/features/mec/single.php:361
5322
  #, fuzzy
5323
  #| msgid "Additional Organizers"
5324
  msgid "Additional locations"
5325
  msgstr "Zusätzliche Organisatoren"
5326
 
5327
+ #: app/features/mec/single.php:365
5328
  #, fuzzy
5329
  #| msgid ""
5330
  #| "Show additional organizers option on Add/Edit events page and single "
5336
  "Zeigen Sie zusätzliche Organisatoren auf der Seite Events hinzufügen / "
5337
  "bearbeiten und auf der Seite für einzelne Events an."
5338
 
5339
+ #: app/features/mec/styles.php:182
5340
  msgid "Custom Styles"
5341
  msgstr "Benutzerdefinierte Stile"
5342
 
5343
+ #: app/features/mec/styles.php:187
5344
  msgid ""
5345
  "If you're a developer or you have some knowledge about CSS codes, you can "
5346
  "place your desired styles codes here. These codes will be included in your "
5351
  "Ihre eigenen Stilcodes einfügen. Diese Codes werden in Ihr Frontend "
5352
  "übernommen und übersteuern die MEC- (oder Thema-) Grundeinstellungen."
5353
 
5354
+ #: app/features/mec/styling.php:10 app/features/mec/styling.php:312
5355
+ #: app/features/mec/styling.php:338
5356
  msgid "Default Font"
5357
  msgstr "Standardschriftart des Themas "
5358
 
5359
+ #: app/features/mec/styling.php:204
5360
  msgid "Styling Option"
5361
  msgstr "Style Optionen"
5362
 
5363
+ #: app/features/mec/styling.php:209
5364
  msgid "Color Skin"
5365
  msgstr "Farbe Skin"
5366
 
5367
+ #: app/features/mec/styling.php:212
5368
  msgid "Predefined Color Skin"
5369
  msgstr "Vordefinierte Farbenoberfläche"
5370
 
5371
+ #: app/features/mec/styling.php:255
5372
  msgid "Custom Color Skin"
5373
  msgstr "Benutzerdefinierte Farboberfläche"
5374
 
5375
+ #: app/features/mec/styling.php:261
5376
  msgid ""
5377
  "If you want to select a predefined color skin, you must clear the color of "
5378
  "this item"
5379
  msgstr ""
5380
 
5381
+ #: app/features/mec/styling.php:266
5382
  msgid "Advanced Color Options (shortcodes)"
5383
  msgstr ""
5384
 
5385
+ #: app/features/mec/styling.php:278
5386
  #, fuzzy
5387
  #| msgid "Title of event"
5388
  msgid "Title Hover"
5389
  msgstr "Titel der Veranstaltung"
5390
 
5391
+ #: app/features/mec/styling.php:295
5392
  msgid "Typography"
5393
  msgstr "Typographie"
5394
 
5395
+ #: app/features/mec/styling.php:297
5396
  msgid "Heading (Events Title) Font Family"
5397
  msgstr "Schriftart Überschrift (Titel der Veranstaltung)"
5398
 
5399
+ #: app/features/mec/styling.php:323
5400
  msgid "Paragraph Font Family"
5401
  msgstr "Schriftart Absätze"
5402
 
5403
+ #: app/features/mec/styling.php:350 app/features/mec/styling.php:356
5404
  #, fuzzy
5405
  #| msgid "Enable Google Recaptcha"
5406
  msgid "Disable Google Fonts"
5407
  msgstr "Google Recaptcha aktivieren"
5408
 
5409
+ #: app/features/mec/styling.php:357
5410
  msgid "To be GDPR compliant you may need to disable Google fonts!"
5411
  msgstr ""
5412
 
5413
+ #: app/features/mec/styling.php:366
5414
  msgid "Container Width"
5415
  msgstr ""
5416
 
5417
+ #: app/features/mec/styling.php:368 app/features/mec/styling.php:373
5418
  msgid "Desktop Normal Screens"
5419
  msgstr ""
5420
 
5421
+ #: app/features/mec/styling.php:374 app/features/mec/styling.php:387
5422
  msgid "You can enter your theme container size in this field"
5423
  msgstr ""
5424
 
5425
+ #: app/features/mec/styling.php:381 app/features/mec/styling.php:386
5426
  msgid "Desktop Large Screens"
5427
  msgstr ""
5428
 
5833
  msgid "How to add/manage shortcodes?"
5834
  msgstr "Wie kann man shortcodes hinzufügen / managen?"
5835
 
5836
+ #: app/features/op.php:96
5837
+ #, fuzzy
5838
+ #| msgid "Organizer name of booked event"
5839
+ msgid "Organizer Payment Credentials"
5840
+ msgstr "Name des Veranstalters des gebuchten Events"
5841
+
5842
  #: app/features/organizers.php:105 app/features/organizers.php:147
5843
  #: app/features/speakers.php:177
5844
  msgid "Insert organizer phone number."
5905
  msgid "eg. https://webnus.net"
5906
  msgstr "http://webnus.net"
5907
 
5908
+ #: app/features/organizers.php:306 app/libraries/main.php:4523
5909
+ #: app/skins/single.php:694
5910
  msgid "Other Organizers"
5911
  msgstr "Andere Veranstalter"
5912
 
5927
  msgid "#"
5928
  msgstr ""
5929
 
5930
+ #: app/features/profile/profile.php:34 app/libraries/main.php:2587
5931
  msgid "Status"
5932
  msgstr ""
5933
 
5934
+ #: app/features/profile/profile.php:37 app/libraries/main.php:1723
5935
  msgid "Attendees"
5936
  msgstr "Teilnehmer"
5937
 
5946
  msgid "<i class=\"mec-sl-eye\"></i> %s"
5947
  msgstr ""
5948
 
5949
+ #: app/features/profile/profile.php:96 app/libraries/main.php:1737
5950
+ #: app/libraries/main.php:4521
5951
  msgid "Ticket"
5952
  msgstr "Ticket"
5953
 
6027
  msgid "Discount"
6028
  msgstr "Rabatt"
6029
 
6030
+ #: app/libraries/book.php:628 app/modules/booking/default.php:303
6031
  #: app/modules/booking/default.php:401
6032
  msgid "Download Invoice"
6033
  msgstr "Download Rechnung"
6053
  msgid "Upgrade"
6054
  msgstr ""
6055
 
6056
+ #: app/libraries/factory.php:328
6057
  msgid "day"
6058
  msgstr "Tag"
6059
 
6060
+ #: app/libraries/factory.php:329 app/modules/countdown/details.php:123
6061
  #: app/skins/available_spot/tpl.php:147 app/skins/countdown/tpl.php:132
6062
  #: app/skins/countdown/tpl.php:176 app/skins/countdown/tpl.php:225
6063
  msgid "days"
6064
  msgstr "Tage"
6065
 
6066
+ #: app/libraries/factory.php:330
6067
  msgid "hour"
6068
  msgstr "Stunde"
6069
 
6070
+ #: app/libraries/factory.php:331 app/modules/countdown/details.php:130
6071
  #: app/skins/available_spot/tpl.php:151 app/skins/countdown/tpl.php:138
6072
  #: app/skins/countdown/tpl.php:182 app/skins/countdown/tpl.php:231
6073
  msgid "hours"
6074
  msgstr "Stunden"
6075
 
6076
+ #: app/libraries/factory.php:332
6077
  msgid "minute"
6078
  msgstr "Minute"
6079
 
6080
+ #: app/libraries/factory.php:333 app/modules/countdown/details.php:137
6081
  #: app/skins/available_spot/tpl.php:155 app/skins/countdown/tpl.php:144
6082
  #: app/skins/countdown/tpl.php:188 app/skins/countdown/tpl.php:237
6083
  msgid "minutes"
6084
  msgstr "Minuten"
6085
 
6086
+ #: app/libraries/factory.php:334
6087
  msgid "second"
6088
  msgstr "Sekunde"
6089
 
6090
+ #: app/libraries/factory.php:335 app/modules/countdown/details.php:144
6091
  #: app/skins/available_spot/tpl.php:159 app/skins/countdown/tpl.php:150
6092
  #: app/skins/countdown/tpl.php:194 app/skins/countdown/tpl.php:243
6093
  msgid "seconds"
6094
  msgstr "Sekunden"
6095
 
6096
+ #: app/libraries/factory.php:378
6097
  msgid "MEC Single Sidebar"
6098
  msgstr "MEC Single Sidebar"
6099
 
6100
+ #: app/libraries/factory.php:379
6101
  msgid "Custom sidebar for single and modal page of MEC."
6102
  msgstr "Custom sidebar for single and modal page of MEC."
6103
 
6107
  "Eine Vorschau kann nicht angezeit werden, da es sich um einen geschützen "
6108
  "Beitrag handelt."
6109
 
6110
+ #: app/libraries/main.php:330 app/libraries/main.php:1249
6111
+ #: app/libraries/main.php:1274
6112
  msgid "Grid View"
6113
  msgstr "Rasterdarstellung"
6114
 
6115
+ #: app/libraries/main.php:331 app/libraries/main.php:1250
6116
+ #: app/libraries/main.php:1275
6117
  msgid "Agenda View"
6118
  msgstr "Agendaansicht"
6119
 
6120
+ #: app/libraries/main.php:332 app/libraries/main.php:1241
6121
+ #: app/libraries/main.php:1266
6122
  msgid "Full Calendar"
6123
  msgstr "Ganzer Kalender"
6124
 
6125
+ #: app/libraries/main.php:334 app/libraries/main.php:1243
6126
+ #: app/libraries/main.php:1268
6127
  msgid "Calendar/Monthly View"
6128
  msgstr "Kalender-/Monatsansicht"
6129
 
6130
+ #: app/libraries/main.php:337 app/libraries/main.php:1246
6131
+ #: app/libraries/main.php:1271
6132
  msgid "Timetable View"
6133
  msgstr "Stundenplan"
6134
 
6135
+ #: app/libraries/main.php:338 app/libraries/main.php:1247
6136
+ #: app/libraries/main.php:1272
6137
  msgid "Masonry View"
6138
  msgstr "Kachel Ansicht"
6139
 
6140
+ #: app/libraries/main.php:339 app/libraries/main.php:1251
6141
+ #: app/libraries/main.php:1276
6142
  msgid "Map View"
6143
  msgstr "Kartenansicht"
6144
 
6162
  msgid "Slider View"
6163
  msgstr "Slideransicht"
6164
 
6165
+ #: app/libraries/main.php:382 app/libraries/main.php:4501
6166
  msgid "SU"
6167
  msgstr "SO"
6168
 
6169
+ #: app/libraries/main.php:383 app/libraries/main.php:4502
6170
  msgid "MO"
6171
  msgstr "MO"
6172
 
6173
+ #: app/libraries/main.php:384 app/libraries/main.php:4503
6174
  msgid "TU"
6175
  msgstr "DI"
6176
 
6177
+ #: app/libraries/main.php:385 app/libraries/main.php:4504
6178
  msgid "WE"
6179
  msgstr "MI"
6180
 
6181
+ #: app/libraries/main.php:386 app/libraries/main.php:4505
6182
  msgid "TH"
6183
  msgstr "DO"
6184
 
6185
+ #: app/libraries/main.php:387 app/libraries/main.php:4506
6186
  msgid "FR"
6187
  msgstr "FR"
6188
 
6189
+ #: app/libraries/main.php:388 app/libraries/main.php:4507
6190
  msgid "SA"
6191
  msgstr "SA"
6192
 
6227
  "desktops, mobiles and tablets as well."
6228
  msgstr ""
6229
 
6230
+ #: app/libraries/main.php:1104
6231
  msgid "Events at this location"
6232
  msgstr "Veranstaltungen an diesem Ort "
6233
 
6234
+ #: app/libraries/main.php:1104
6235
  msgid "Event at this location"
6236
  msgstr "Veranstaltung an diesem Ort "
6237
 
6238
+ #: app/libraries/main.php:1145
6239
  msgid "Facebook"
6240
  msgstr "Facebook"
6241
 
6242
+ #: app/libraries/main.php:1146
6243
  msgid "Twitter"
6244
  msgstr "Twitter"
6245
 
6246
+ #: app/libraries/main.php:1147 app/libraries/main.php:1197
6247
  msgid "Linkedin"
6248
  msgstr "Linkedin"
6249
 
6250
+ #: app/libraries/main.php:1148 app/libraries/main.php:1230
6251
  msgid "VK"
6252
  msgstr ""
6253
 
6254
+ #: app/libraries/main.php:1167
6255
  msgid "Share on Facebook"
6256
  msgstr "Teilen auf Facebook"
6257
 
6258
+ #: app/libraries/main.php:1182
6259
  msgid "Tweet"
6260
  msgstr "Tweet"
6261
 
6262
+ #: app/libraries/main.php:1252
6263
  #, fuzzy
6264
  #| msgid "Shortcode"
6265
  msgid "Custom Shortcode"
6266
  msgstr "Shortcode"
6267
 
6268
+ #: app/libraries/main.php:1611
6269
  msgid "Your booking successfully verified."
6270
  msgstr "Ihre Buchung wurde erfolgreich verifiziert."
6271
 
6272
+ #: app/libraries/main.php:1612
6273
  msgid "Your booking cannot verify!"
6274
  msgstr "Ihre Buchung kann nicht verifiziert werden!"
6275
 
6276
+ #: app/libraries/main.php:1624
6277
  msgid "Your booking successfully canceled."
6278
  msgstr "Ihre Buchung wurde erfolgreich storniert."
6279
 
6280
+ #: app/libraries/main.php:1625
6281
  msgid "Your booking cannot be canceled."
6282
  msgstr "Ihre Buchung kann nicht storniert werden."
6283
 
6284
+ #: app/libraries/main.php:1629
6285
  msgid "You canceled the payment successfully."
6286
  msgstr "Sie haben die Zahlung erfolgreich storniert."
6287
 
6288
+ #: app/libraries/main.php:1633
6289
  msgid "You returned from payment gateway successfully."
6290
  msgstr "Sie sind vom Bezahlungs-Gateway erfolgreich zurückgekehrt."
6291
 
6292
+ #: app/libraries/main.php:1649
6293
+ #, fuzzy
6294
+ #| msgid "Cannot find the booking!"
6295
+ msgid "Cannot find the invoice!"
6296
+ msgstr "Kann die Buchung nicht finden!"
6297
+
6298
+ #: app/libraries/main.php:1649
6299
+ #, fuzzy
6300
+ #| msgid "Booking is invalid."
6301
+ msgid "Invoice is invalid."
6302
+ msgstr "Buchung ist ungültig."
6303
+
6304
+ #: app/libraries/main.php:1664
6305
  msgid "Cannot find the booking!"
6306
  msgstr "Kann die Buchung nicht finden!"
6307
 
6308
+ #: app/libraries/main.php:1664
6309
  msgid "Booking is invalid."
6310
  msgstr "Buchung ist ungültig."
6311
 
6312
+ #: app/libraries/main.php:1693
6313
  #, php-format
6314
  msgid "%s Invoice"
6315
  msgstr "% s Rechnung"
6316
 
6317
+ #: app/libraries/main.php:1714
6318
  msgid "Transaction ID"
6319
  msgstr "Transaktions-ID"
6320
 
6321
+ #: app/libraries/main.php:1767
6322
  msgid "Billing"
6323
  msgstr "Abrechnung"
6324
 
6325
+ #: app/libraries/main.php:1778
6326
  msgid "Total"
6327
  msgstr "Gesamt"
6328
 
6329
+ #: app/libraries/main.php:1811
6330
  msgid "Security nonce is not valid."
6331
  msgstr "Sicherheits-Nonce ist ungültig."
6332
 
6333
+ #: app/libraries/main.php:1811 app/libraries/main.php:1843
6334
  msgid "iCal export stopped!"
6335
  msgstr "iCal Export wurde unterbrochen!"
6336
 
6337
+ #: app/libraries/main.php:1843
6338
  #, fuzzy
6339
  #| msgid "Request is invalid!"
6340
  msgid "Request is not valid."
6341
  msgstr "Die Anfrage ist ungültig!"
6342
 
6343
+ #: app/libraries/main.php:2171 app/libraries/main.php:2201
6344
+ #: app/libraries/main.php:2230 app/libraries/main.php:2260
6345
+ #: app/libraries/main.php:2289 app/libraries/main.php:2318
6346
+ #: app/libraries/main.php:2347 app/libraries/main.php:2376
6347
+ #: app/libraries/main.php:2405 app/libraries/main.php:2429
6348
+ #: app/libraries/main.php:2473 app/libraries/main.php:2517
6349
+ #: app/libraries/main.php:2564 app/libraries/main.php:2611
6350
  msgid "Sort"
6351
  msgstr "Sortieren"
6352
 
6353
+ #: app/libraries/main.php:2177 app/libraries/main.php:2207
6354
+ #: app/libraries/main.php:2236 app/libraries/main.php:2266
6355
+ #: app/libraries/main.php:2295 app/libraries/main.php:2324
6356
+ #: app/libraries/main.php:2353 app/libraries/main.php:2382
6357
+ #: app/libraries/main.php:2435 app/libraries/main.php:2479
6358
+ #: app/libraries/main.php:2523 app/libraries/main.php:2570
6359
  msgid "Required Field"
6360
  msgstr "Pflichtfeld"
6361
 
6362
+ #: app/libraries/main.php:2183 app/libraries/main.php:2213
6363
+ #: app/libraries/main.php:2242 app/libraries/main.php:2272
6364
+ #: app/libraries/main.php:2301 app/libraries/main.php:2330
6365
+ #: app/libraries/main.php:2359 app/libraries/main.php:2388
6366
+ #: app/libraries/main.php:2441 app/libraries/main.php:2485
6367
+ #: app/libraries/main.php:2529 app/libraries/main.php:2576
6368
  msgid "Insert a label for this field"
6369
  msgstr "Geben Sie eine Bezeichnung (Label) für dieses Feld ein."
6370
 
6371
+ #: app/libraries/main.php:2411
6372
  msgid "HTML and shortcode are allowed."
6373
  msgstr "HTML und shortcodes sind erlaubt."
6374
 
6375
+ #: app/libraries/main.php:2454 app/libraries/main.php:2498
6376
+ #: app/libraries/main.php:2542
6377
  msgid "Option"
6378
  msgstr "Option"
6379
 
6380
+ #: app/libraries/main.php:2576
6381
  #, php-format
6382
  msgid "Instead of %s, the page title with a link will be show."
6383
  msgstr "Anstelle von %s, wird der Seitentitel mit einem Link gezeigt"
6384
 
6385
+ #: app/libraries/main.php:2578
6386
  msgid "Agreement Page"
6387
  msgstr "Zustimmungsseite"
6388
 
6389
+ #: app/libraries/main.php:2589
6390
  msgid "Checked by default"
6391
  msgstr ""
6392
 
6393
+ #: app/libraries/main.php:2590
6394
  msgid "Unchecked by default"
6395
  msgstr ""
6396
 
6397
+ #: app/libraries/main.php:2613
6398
  msgid "Insert a label for this option"
6399
  msgstr "Ein neues Label für diese Option einfügen"
6400
 
6401
+ #: app/libraries/main.php:2628
6402
  msgid "Free"
6403
  msgstr "kostenfrei"
6404
 
6405
+ #: app/libraries/main.php:3180 app/libraries/main.php:4748
6406
  #, fuzzy
6407
  #| msgid "M.E. Calendar"
6408
  msgid "M.E. Calender"
6409
  msgstr "M.E. Calender"
6410
 
6411
+ #: app/libraries/main.php:3335
6412
  #, php-format
6413
  msgid "Copy of %s"
6414
  msgstr "Kopie von %s"
6415
 
6416
+ #: app/libraries/main.php:4000
6417
  msgid "Booked an event."
6418
  msgstr "Eine Veranstaltung wurde gebucht."
6419
 
6420
+ #: app/libraries/main.php:4041
6421
  #, php-format
6422
  msgid "%s booked %s event."
6423
  msgstr "%s gebuchtes %s Event"
6424
 
6425
+ #: app/libraries/main.php:4484
6426
  msgid "Taxonomies"
6427
  msgstr "Klassifizierung "
6428
 
6429
+ #: app/libraries/main.php:4486
6430
  msgid "Category Plural Label"
6431
  msgstr "Kategorien"
6432
 
6433
+ #: app/libraries/main.php:4487
6434
  msgid "Category Singular Label"
6435
  msgstr "Kategorie"
6436
 
6437
+ #: app/libraries/main.php:4488
6438
  msgid "Label Plural Label"
6439
  msgstr "Labels"
6440
 
6441
+ #: app/libraries/main.php:4489
6442
  msgid "Label Singular Label"
6443
  msgstr "Label"
6444
 
6445
+ #: app/libraries/main.php:4489
6446
  msgid "label"
6447
  msgstr "label"
6448
 
6449
+ #: app/libraries/main.php:4490
6450
  msgid "Location Plural Label"
6451
  msgstr "Veranstaltungsorte"
6452
 
6453
+ #: app/libraries/main.php:4491
6454
  msgid "Location Singular Label"
6455
  msgstr "Veranstaltungsort"
6456
 
6457
+ #: app/libraries/main.php:4492
6458
  msgid "Organizer Plural Label"
6459
  msgstr "Veranstalter"
6460
 
6461
+ #: app/libraries/main.php:4493
6462
  msgid "Organizer Singular Label"
6463
  msgstr "Veranstalter"
6464
 
6465
+ #: app/libraries/main.php:4494
6466
  #, fuzzy
6467
  #| msgid "Label Plural Label"
6468
  msgid "Speaker Plural Label"
6469
  msgstr "Labels"
6470
 
6471
+ #: app/libraries/main.php:4495
6472
  #, fuzzy
6473
  #| msgid "Label Singular Label"
6474
  msgid "Speaker Singular Label"
6475
  msgstr "Label"
6476
 
6477
+ #: app/libraries/main.php:4501
6478
  msgid "Sunday abbreviation"
6479
  msgstr "Sonntag Abkürzung"
6480
 
6481
+ #: app/libraries/main.php:4502
6482
  msgid "Monday abbreviation"
6483
  msgstr "Montag Abkürzung"
6484
 
6485
+ #: app/libraries/main.php:4503
6486
  msgid "Tuesday abbreviation"
6487
  msgstr "Dienstag Abkürzung"
6488
 
6489
+ #: app/libraries/main.php:4504
6490
  msgid "Wednesday abbreviation"
6491
  msgstr "Mittwoch Abkürzung"
6492
 
6493
+ #: app/libraries/main.php:4505
6494
  msgid "Thursday abbreviation"
6495
  msgstr "Donnerstag Abkürzung"
6496
 
6497
+ #: app/libraries/main.php:4506
6498
  msgid "Friday abbreviation"
6499
  msgstr "Freitag Abkürzung"
6500
 
6501
+ #: app/libraries/main.php:4507
6502
  msgid "Saturday abbreviation"
6503
  msgstr "Samstag Abkürzung "
6504
 
6505
+ #: app/libraries/main.php:4511
6506
  msgid "Others"
6507
  msgstr "Andere"
6508
 
6509
+ #: app/libraries/main.php:4513
6510
  msgid "Booking Success Message"
6511
  msgstr "Buchung erfolgreich Mitteilung"
6512
 
6513
+ #: app/libraries/main.php:4513
6514
  msgid ""
6515
  "Thanks for your booking. Your tickets booked, booking verification might be "
6516
  "needed, please check your email."
6518
  "Vielen Dank für Ihre Buchung. Für die gebuchten Tickets ist ggf. eine "
6519
  "Bestätigung durch Sie erforderlich. Bitte überprüfen Sie Ihre Emails."
6520
 
6521
+ #: app/libraries/main.php:4514 app/widgets/single.php:131
6522
  msgid "Register Button"
6523
  msgstr "Register Button"
6524
 
6525
+ #: app/libraries/main.php:4514 app/skins/available_spot/tpl.php:205
6526
+ #: app/skins/carousel/render.php:138 app/skins/carousel/render.php:168
6527
+ #: app/skins/grid/render.php:116 app/skins/grid/render.php:160
6528
+ #: app/skins/grid/render.php:201 app/skins/grid/render.php:229
6529
  #: app/skins/list/render.php:102 app/skins/list/render.php:190
6530
  #: app/skins/masonry/render.php:175 app/skins/single.php:606
6531
  #: app/skins/single.php:609 app/skins/single/default.php:231
6539
  msgid "REGISTER"
6540
  msgstr "ANMELDEN"
6541
 
6542
+ #: app/libraries/main.php:4515
6543
  msgid "View Detail Button"
6544
  msgstr "Ansicht Detail Button"
6545
 
6546
+ #: app/libraries/main.php:4515 app/skins/carousel/render.php:138
6547
+ #: app/skins/carousel/render.php:168 app/skins/grid/render.php:116
6548
+ #: app/skins/grid/render.php:160 app/skins/grid/render.php:201
6549
+ #: app/skins/grid/render.php:229 app/skins/list/render.php:102
6550
  #: app/skins/list/render.php:190 app/skins/masonry/render.php:175
6551
  #: app/skins/slider/render.php:109 app/skins/slider/render.php:154
6552
  #: app/skins/slider/render.php:198 app/skins/slider/render.php:243
6554
  msgid "View Detail"
6555
  msgstr "Details "
6556
 
6557
+ #: app/libraries/main.php:4516
6558
  msgid "Event Detail Button"
6559
  msgstr "Event Detail Button"
6560
 
6561
+ #: app/libraries/main.php:4516 app/skins/countdown/tpl.php:218
6562
  msgid "Event Detail"
6563
  msgstr "Veranstaltungsdetails"
6564
 
6565
+ #: app/libraries/main.php:4518
6566
  msgid "More Info Link"
6567
  msgstr "Link Mehr Informationen"
6568
 
6569
+ #: app/libraries/main.php:4521
6570
  msgid "Ticket (Singular)"
6571
  msgstr "Ticket"
6572
 
6573
+ #: app/libraries/main.php:4522
6574
  msgid "Tickets (Plural)"
6575
  msgstr "Tickets"
6576
 
6577
+ #: app/libraries/main.php:4608
6578
  msgid "EventON"
6579
  msgstr "EventON"
6580
 
6581
+ #: app/libraries/main.php:4609
6582
  msgid "The Events Calendar"
6583
  msgstr "The Events Calendar"
6584
 
6585
+ #: app/libraries/main.php:4610
6586
  msgid "Events Schedule WP Plugin"
6587
  msgstr "Event Zeitplan WP-Plugin"
6588
 
6589
+ #: app/libraries/main.php:4611
6590
  msgid "Calendarize It"
6591
  msgstr ""
6592
 
6593
+ #: app/libraries/main.php:4685 app/libraries/main.php:4705
6594
  msgid "Confirmed"
6595
  msgstr "Bestätigt"
6596
 
6597
+ #: app/libraries/main.php:4686 app/libraries/main.php:4713
6598
  msgid "Rejected"
6599
  msgstr "Abgelehnt"
6600
 
6601
+ #: app/libraries/main.php:4687 app/libraries/main.php:4709
6602
  msgid "Pending"
6603
  msgstr "Ausstehend"
6604
 
6605
+ #: app/libraries/main.php:4735
6606
  msgid "Waiting"
6607
  msgstr "in Bearbeitung"
6608
 
6609
+ #: app/libraries/main.php:4940 app/libraries/render.php:366
6610
+ msgid "Skin controller does not exist."
6611
+ msgstr "Skin contoller existiert nicht."
6612
+
6613
  #: app/libraries/notifications.php:61
6614
  msgid "Please verify your email."
6615
  msgstr "Bitte bestätigen Sie Ihre email."
6664
  msgid "No"
6665
  msgstr "Nein"
6666
 
6667
+ #: app/libraries/skins.php:956
 
 
 
 
6668
  msgid "Ignore month and years"
6669
  msgstr "Monat und Jahre ignorieren"
6670
 
6779
  msgid "Time"
6780
  msgstr "Uhrzeit"
6781
 
6782
+ #: app/modules/weather/details.php:49 app/modules/weather/details.php:51
6783
  msgid " °C"
6784
  msgstr " °C"
6785
 
6786
+ #: app/modules/weather/details.php:49 app/modules/weather/details.php:53
6787
+ #, fuzzy
6788
+ #| msgid " °C"
6789
+ msgid " °F"
6790
+ msgstr " °C"
6791
+
6792
+ #: app/modules/weather/details.php:60
6793
+ msgid "°Imperial"
6794
+ msgstr ""
6795
+
6796
+ #: app/modules/weather/details.php:60
6797
+ msgid "°Metric"
6798
+ msgstr ""
6799
 
6800
+ #: app/modules/weather/details.php:66
6801
  msgid " KPH"
6802
  msgstr " KPH"
6803
 
6804
+ #: app/modules/weather/details.php:66
6805
+ msgid " MPH"
6806
+ msgstr ""
6807
+
6808
+ #: app/modules/weather/details.php:66
6809
+ msgid "Wind"
6810
+ msgstr "Wind"
6811
+
6812
+ #: app/modules/weather/details.php:70
6813
  msgid "Humidity"
6814
  msgstr "Feuchtigkeit"
6815
 
6816
+ #: app/modules/weather/details.php:70
6817
  msgid " %"
6818
  msgstr " %"
6819
 
6820
+ #: app/modules/weather/details.php:74
 
 
 
 
6821
  msgid " KM"
6822
  msgstr " KM"
6823
 
6824
+ #: app/modules/weather/details.php:74
6825
+ msgid " Miles"
6826
+ msgstr ""
6827
+
6828
+ #: app/modules/weather/details.php:74
6829
+ msgid "Visibility"
6830
+ msgstr "Sichtbarkeit"
6831
+
6832
  #: app/skins/agenda/tpl.php:65 app/skins/agenda/tpl.php:69
6833
  #: app/skins/carousel/tpl.php:45 app/skins/grid/tpl.php:55
6834
  #: app/skins/grid/tpl.php:59 app/skins/list/tpl.php:60
6835
+ #: app/skins/list/tpl.php:64 app/skins/masonry/tpl.php:61
6836
+ #: app/skins/masonry/tpl.php:65 app/skins/slider/tpl.php:43
6837
  msgid "No event found!"
6838
  msgstr "Keine Veranstaltung gefunden"
6839
 
6840
  #: app/skins/agenda/tpl.php:74 app/skins/grid/tpl.php:64
6841
+ #: app/skins/list/tpl.php:69 app/skins/masonry/tpl.php:70
6842
+ #: app/skins/yearly_view/render.php:121
6843
  msgid "Load More"
6844
  msgstr "Weitere anzeigen"
6845
 
6847
  msgid "Available Spot(s):"
6848
  msgstr "Verfügbare Spot (s):"
6849
 
6850
+ #: app/skins/carousel/render.php:183 app/skins/countdown/tpl.php:157
 
 
 
 
 
 
6851
  #: app/skins/countdown/tpl.php:201 app/skins/cover/tpl.php:101
6852
  #: app/skins/list/render.php:120
6853
  msgid "EVENT DETAIL"
6854
  msgstr "VERANSTALTUNGSDETAILS"
6855
 
6856
+ #: app/skins/carousel/render.php:195
6857
+ #, fuzzy
6858
+ #| msgid "All Events"
6859
+ msgid "View All Events"
6860
+ msgstr "Alle Veranstaltungen"
6861
+
6862
  #: app/skins/countdown/tpl.php:119 app/skins/countdown/tpl.php:163
6863
  #: app/skins/countdown/tpl.php:208
6864
  #, php-format
6877
  msgid "List"
6878
  msgstr "Liste / Listenansicht"
6879
 
6880
+ #: app/skins/masonry.php:241
6881
  msgid "All"
6882
  msgstr "Alle"
6883
 
6905
  msgid "Sold out!"
6906
  msgstr "Ausverkauft!"
6907
 
6908
+ #: app/skins/single.php:654 app/skins/single.php:709
6909
  #: app/skins/single/default.php:204 app/skins/single/default.php:415
6910
  #: app/skins/single/m1.php:100 app/skins/single/m2.php:32
6911
  #: app/skins/single/modern.php:41
6912
  msgid "Phone"
6913
  msgstr "Phone"
6914
 
6915
+ #: app/skins/single.php:668 app/skins/single.php:723
6916
  #: app/skins/single/default.php:218 app/skins/single/default.php:429
6917
  #: app/skins/single/m1.php:114 app/skins/single/m2.php:46
6918
  #: app/skins/single/modern.php:55
6919
  msgid "Website"
6920
  msgstr "Website"
6921
 
6922
+ #: app/skins/single.php:793
6923
  #, fuzzy
6924
  #| msgid "No Search Options"
6925
  msgid "Speakers:"
7367
  #~ msgid "This booking is not free!"
7368
  #~ msgstr "Diese Buchung ist nicht kostenlos!"
7369
 
7370
+ #, fuzzy
7371
+ #~| msgid "View %s"
7372
+ #~ msgid "View All"
7373
+ #~ msgstr "Ansicht %s"
7374
+
7375
  #~ msgid "Booking Notification"
7376
  #~ msgstr "Buchungsbenachrichtigung"
7377
 
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-07-03 09:29+0430\n"
5
- "PO-Revision-Date: 2019-07-03 09:29+0430\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: en_US\n"
@@ -21,7 +21,7 @@ msgstr ""
21
  msgid "Modern Events Calendar"
22
  msgstr ""
23
 
24
- #: app/addons/KC.php:70 app/addons/VC.php:64 app/features/mec/styling.php:286
25
  msgid "Content"
26
  msgstr ""
27
 
@@ -34,6 +34,15 @@ msgstr ""
34
  msgid "Select from predefined shortcodes"
35
  msgstr ""
36
 
 
 
 
 
 
 
 
 
 
37
  #: app/addons/elementor/shortcode.php:34
38
  msgid "Modern Events Calendar (MEC)"
39
  msgstr ""
@@ -47,7 +56,7 @@ msgid "Select Type"
47
  msgstr ""
48
 
49
  #: app/features/colors.php:50 app/features/fes/form.php:794
50
- #: app/features/mec/settings.php:785
51
  msgid "Event Color"
52
  msgstr ""
53
 
@@ -55,20 +64,20 @@ msgstr ""
55
  #: app/features/mec/booking.php:33 app/features/mec/dashboard.php:108
56
  #: app/features/mec/gateways.php:24 app/features/mec/ie.php:20
57
  #: app/features/mec/messages.php:24 app/features/mec/modules.php:31
58
- #: app/features/mec/notifications.php:23 app/features/mec/regform.php:60
59
  #: app/features/mec/settings.php:44 app/features/mec/single.php:23
60
  #: app/features/mec/styles.php:24 app/features/mec/styling.php:46
61
  #: app/features/mec/support-page.php:168 app/features/mec/support.php:20
62
  msgid "Settings"
63
  msgstr ""
64
 
65
- #: app/features/contextual.php:62 app/features/events.php:2250
66
- #: app/features/mec/booking.php:146 app/features/mec/gateways.php:111
67
- #: app/features/mec/ie.php:107 app/features/mec/messages.php:111
68
- #: app/features/mec/modules.php:173 app/features/mec/notifications.php:110
69
- #: app/features/mec/regform.php:146 app/features/mec/regform.php:215
70
- #: app/features/mec/settings.php:178 app/features/mec/single.php:139
71
- #: app/features/mec/styles.php:111 app/features/mec/styling.php:133
72
  #: app/features/mec/support.php:29
73
  msgid "Booking Form"
74
  msgstr ""
@@ -82,13 +91,13 @@ msgid ""
82
  "YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></iframe>"
83
  msgstr ""
84
 
85
- #: app/features/contextual.php:70 app/features/mec/booking.php:153
86
- #: app/features/mec/gateways.php:118 app/features/mec/gateways.php:181
87
- #: app/features/mec/ie.php:114 app/features/mec/messages.php:118
88
- #: app/features/mec/modules.php:180 app/features/mec/notifications.php:117
89
- #: app/features/mec/regform.php:153 app/features/mec/settings.php:185
90
- #: app/features/mec/single.php:146 app/features/mec/styles.php:118
91
- #: app/features/mec/styling.php:140 app/features/mec/support.php:36
92
  msgid "Payment Gateways"
93
  msgstr ""
94
 
@@ -99,12 +108,12 @@ msgid ""
99
  "\"0\" allowfullscreen></iframe>"
100
  msgstr ""
101
 
102
- #: app/features/contextual.php:77 app/features/mec/booking.php:162
103
- #: app/features/mec/gateways.php:127 app/features/mec/ie.php:123
104
- #: app/features/mec/messages.php:127 app/features/mec/modules.php:189
105
- #: app/features/mec/notifications.php:129 app/features/mec/regform.php:161
106
- #: app/features/mec/settings.php:194 app/features/mec/single.php:155
107
- #: app/features/mec/styles.php:127 app/features/mec/styling.php:149
108
  #: app/features/mec/support.php:45
109
  msgid "Notifications"
110
  msgstr ""
@@ -171,8 +180,8 @@ msgstr ""
171
  #: app/features/contextual.php:117 app/features/mec/booking.php:37
172
  #: app/features/mec/gateways.php:28 app/features/mec/ie.php:24
173
  #: app/features/mec/messages.php:28 app/features/mec/modules.php:35
174
- #: app/features/mec/notifications.php:27 app/features/mec/regform.php:64
175
- #: app/features/mec/settings.php:51 app/features/mec/settings.php:252
176
  #: app/features/mec/single.php:27 app/features/mec/styles.php:28
177
  #: app/features/mec/styling.php:50
178
  msgid "General Options"
@@ -181,8 +190,8 @@ msgstr ""
181
  #: app/features/contextual.php:139 app/features/mec/booking.php:39
182
  #: app/features/mec/gateways.php:30 app/features/mec/ie.php:26
183
  #: app/features/mec/messages.php:30 app/features/mec/modules.php:37
184
- #: app/features/mec/notifications.php:29 app/features/mec/regform.php:66
185
- #: app/features/mec/settings.php:63 app/features/mec/settings.php:569
186
  #: app/features/mec/single.php:29 app/features/mec/styles.php:30
187
  #: app/features/mec/styling.php:52
188
  msgid "Slugs/Permalinks"
@@ -195,50 +204,50 @@ msgstr ""
195
  #: app/features/contextual.php:166 app/features/mec/booking.php:40
196
  #: app/features/mec/gateways.php:31 app/features/mec/ie.php:27
197
  #: app/features/mec/messages.php:31 app/features/mec/modules.php:38
198
- #: app/features/mec/notifications.php:30 app/features/mec/regform.php:67
199
- #: app/features/mec/settings.php:69 app/features/mec/settings.php:601
200
  #: app/features/mec/single.php:30 app/features/mec/styles.php:31
201
  #: app/features/mec/styling.php:53
202
  msgid "Currency Options"
203
  msgstr ""
204
 
205
- #: app/features/contextual.php:182 app/features/mec/booking.php:124
206
- #: app/features/mec/gateways.php:89 app/features/mec/ie.php:85
207
- #: app/features/mec/messages.php:89 app/features/mec/modules.php:109
208
- #: app/features/mec/modules.php:264 app/features/mec/modules.php:282
209
- #: app/features/mec/notifications.php:88 app/features/mec/regform.php:125
210
- #: app/features/mec/settings.php:156 app/features/mec/single.php:117
211
- #: app/features/mec/styles.php:89 app/features/mec/styling.php:111
212
  msgid "Google Maps Options"
213
  msgstr ""
214
 
215
  #: app/features/contextual.php:244 app/features/mec/booking.php:41
216
  #: app/features/mec/gateways.php:32 app/features/mec/ie.php:28
217
  #: app/features/mec/messages.php:32 app/features/mec/modules.php:39
218
- #: app/features/mec/notifications.php:31 app/features/mec/regform.php:68
219
- #: app/features/mec/settings.php:75 app/features/mec/settings.php:658
220
  #: app/features/mec/single.php:31 app/features/mec/styles.php:32
221
  #: app/features/mec/styling.php:54
222
  msgid "Google Recaptcha Options"
223
  msgstr ""
224
 
225
- #: app/features/contextual.php:258 app/features/mec/booking.php:60
226
- #: app/features/mec/gateways.php:51 app/features/mec/ie.php:47
227
- #: app/features/mec/messages.php:51 app/features/mec/modules.php:58
228
- #: app/features/mec/notifications.php:50 app/features/mec/regform.php:87
229
- #: app/features/mec/settings.php:118 app/features/mec/single.php:62
230
- #: app/features/mec/single.php:310 app/features/mec/styles.php:51
231
- #: app/features/mec/styling.php:73
232
  msgid "Countdown Options"
233
  msgstr ""
234
 
235
- #: app/features/contextual.php:268 app/features/mec/booking.php:132
236
- #: app/features/mec/gateways.php:97 app/features/mec/ie.php:93
237
- #: app/features/mec/messages.php:97 app/features/mec/modules.php:145
238
- #: app/features/mec/modules.php:448 app/features/mec/notifications.php:96
239
- #: app/features/mec/regform.php:133 app/features/mec/settings.php:164
240
- #: app/features/mec/single.php:125 app/features/mec/styles.php:97
241
- #: app/features/mec/styling.php:119
242
  msgid "Social Networks"
243
  msgstr ""
244
 
@@ -249,72 +258,72 @@ msgstr ""
249
  #: app/features/contextual.php:286 app/features/mec/booking.php:42
250
  #: app/features/mec/gateways.php:33 app/features/mec/ie.php:29
251
  #: app/features/mec/messages.php:33 app/features/mec/modules.php:40
252
- #: app/features/mec/notifications.php:32 app/features/mec/regform.php:69
253
- #: app/features/mec/settings.php:81 app/features/mec/settings.php:694
254
  #: app/features/mec/single.php:32 app/features/mec/styles.php:33
255
  #: app/features/mec/styling.php:55
256
  msgid "Frontend Event Submission"
257
  msgstr ""
258
 
259
- #: app/features/contextual.php:298 app/features/events.php:1118
260
- #: app/features/mec/booking.php:61 app/features/mec/gateways.php:52
261
- #: app/features/mec/ie.php:48 app/features/mec/messages.php:52
262
- #: app/features/mec/modules.php:59 app/features/mec/notifications.php:51
263
- #: app/features/mec/regform.php:88 app/features/mec/settings.php:119
264
- #: app/features/mec/single.php:68 app/features/mec/styles.php:52
265
- #: app/features/mec/styling.php:74
266
  msgid "Exceptional Days"
267
  msgstr ""
268
 
269
- #: app/features/contextual.php:308 app/features/events.php:284
270
- #: app/features/mec/booking.php:77 app/features/mec/booking.php:84
271
- #: app/features/mec/booking.php:167 app/features/mec/booking.php:219
272
- #: app/features/mec/gateways.php:64 app/features/mec/gateways.php:68
273
- #: app/features/mec/gateways.php:132 app/features/mec/ie.php:60
274
- #: app/features/mec/ie.php:64 app/features/mec/ie.php:128
275
- #: app/features/mec/messages.php:64 app/features/mec/messages.php:68
276
- #: app/features/mec/messages.php:132 app/features/mec/modules.php:71
277
- #: app/features/mec/modules.php:75 app/features/mec/modules.php:194
278
- #: app/features/mec/notifications.php:63 app/features/mec/notifications.php:67
279
- #: app/features/mec/notifications.php:136
280
- #: app/features/mec/notifications.php:225 app/features/mec/regform.php:100
281
- #: app/features/mec/regform.php:104 app/features/mec/regform.php:166
282
- #: app/features/mec/settings.php:131 app/features/mec/settings.php:135
283
- #: app/features/mec/settings.php:199 app/features/mec/single.php:92
284
- #: app/features/mec/single.php:96 app/features/mec/single.php:160
285
- #: app/features/mec/styles.php:64 app/features/mec/styles.php:68
286
- #: app/features/mec/styles.php:132 app/features/mec/styling.php:86
287
- #: app/features/mec/styling.php:90 app/features/mec/styling.php:154
288
  msgid "Booking"
289
  msgstr ""
290
 
291
- #: app/features/contextual.php:318 app/features/mec/booking.php:92
292
- #: app/features/mec/booking.php:330 app/features/mec/gateways.php:70
293
- #: app/features/mec/ie.php:66 app/features/mec/messages.php:70
294
- #: app/features/mec/modules.php:77 app/features/mec/notifications.php:69
295
- #: app/features/mec/regform.php:106 app/features/mec/settings.php:137
296
- #: app/features/mec/single.php:98 app/features/mec/styles.php:70
297
- #: app/features/mec/styling.php:92
298
  msgid "Coupons"
299
  msgstr ""
300
 
301
- #: app/features/contextual.php:326 app/features/mec/booking.php:135
302
- #: app/features/mec/gateways.php:100 app/features/mec/ie.php:96
303
- #: app/features/mec/messages.php:100 app/features/mec/modules.php:159
304
- #: app/features/mec/modules.php:509 app/features/mec/notifications.php:99
305
- #: app/features/mec/regform.php:136 app/features/mec/settings.php:167
306
- #: app/features/mec/single.php:128 app/features/mec/styles.php:100
307
- #: app/features/mec/styling.php:122
308
  msgid "BuddyPress Integration"
309
  msgstr ""
310
 
311
- #: app/features/contextual.php:334 app/features/mec/booking.php:45
312
- #: app/features/mec/gateways.php:36 app/features/mec/ie.php:32
313
- #: app/features/mec/messages.php:36 app/features/mec/modules.php:43
314
- #: app/features/mec/notifications.php:35 app/features/mec/regform.php:72
315
- #: app/features/mec/settings.php:95 app/features/mec/settings.php:879
316
- #: app/features/mec/single.php:35 app/features/mec/styles.php:36
317
- #: app/features/mec/styling.php:58
318
  msgid "Mailchimp Integration"
319
  msgstr ""
320
 
@@ -323,15 +332,15 @@ msgid "MEC Activation"
323
  msgstr ""
324
 
325
  #: app/features/events.php:137 app/features/ix/export.php:34
326
- #: app/features/mec/dashboard.php:188 app/skins/daily_view/tpl.php:79
327
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
328
  msgid "Events"
329
  msgstr ""
330
 
331
  #: app/features/events.php:138
332
- #: app/features/mec/meta_boxes/display_options.php:867
333
- #: app/features/mec/meta_boxes/display_options.php:923
334
- #: app/features/mec/meta_boxes/display_options.php:958
335
  #: app/features/profile/profile.php:28 app/skins/daily_view/tpl.php:80
336
  #: app/skins/monthly_view/tpl.php:71 app/skins/yearly_view/tpl.php:69
337
  msgid "Event"
@@ -369,16 +378,17 @@ msgstr ""
369
  #: app/features/events.php:162
370
  #: app/features/mec/meta_boxes/display_options.php:798
371
  #: app/features/mec/meta_boxes/search_form.php:31
372
- #: app/features/mec/meta_boxes/search_form.php:92
373
- #: app/features/mec/meta_boxes/search_form.php:153
374
- #: app/features/mec/meta_boxes/search_form.php:214
375
- #: app/features/mec/meta_boxes/search_form.php:275
376
- #: app/features/mec/meta_boxes/search_form.php:336
377
- #: app/features/mec/meta_boxes/search_form.php:397
378
- #: app/features/mec/meta_boxes/search_form.php:451
379
- #: app/features/mec/meta_boxes/search_form.php:512
380
- #: app/features/mec/meta_boxes/search_form.php:573 app/libraries/main.php:4479
381
- #: app/libraries/skins.php:781 app/skins/single.php:410
 
382
  #: app/skins/single/default.php:169 app/skins/single/default.php:380
383
  #: app/skins/single/m1.php:170 app/skins/single/m2.php:102
384
  #: app/skins/single/modern.php:110
@@ -387,7 +397,7 @@ msgstr ""
387
 
388
  #: app/features/events.php:163 app/features/fes/form.php:745
389
  #: app/features/mec.php:332 app/features/mec/meta_boxes/filter.php:70
390
- #: app/libraries/main.php:4478
391
  msgid "Categories"
392
  msgstr ""
393
 
@@ -459,30 +469,30 @@ msgstr ""
459
  msgid "Event Details"
460
  msgstr ""
461
 
462
- #: app/features/events.php:321 app/features/events.php:3157
463
- #: app/features/events.php:3199 app/features/fes/form.php:706
464
  #: app/features/ix.php:2740 app/features/ix.php:2781
465
- #: app/features/mec/settings.php:761 app/libraries/main.php:4511
466
  #: app/widgets/single.php:103
467
  msgid "Event Cost"
468
  msgstr ""
469
 
470
- #: app/features/events.php:325 app/features/fes/form.php:709
471
- #: app/libraries/main.php:4512 app/skins/single.php:433
472
  #: app/skins/single/default.php:103 app/skins/single/default.php:314
473
  #: app/skins/single/m1.php:49 app/skins/single/modern.php:199
474
  msgid "Cost"
475
  msgstr ""
476
 
477
- #: app/features/events.php:423
478
  msgid "Note for reviewer"
479
  msgstr ""
480
 
481
- #: app/features/events.php:430
482
  msgid "Guest Data"
483
  msgstr ""
484
 
485
- #: app/features/events.php:431 app/features/events.php:2232
486
  #: app/features/fes/form.php:668 app/features/labels.php:177
487
  #: app/features/mec/regform.php:27 app/features/organizers.php:274
488
  #: app/features/profile/profile.php:90 app/libraries/notifications.php:673
@@ -490,31 +500,31 @@ msgstr ""
490
  msgid "Name"
491
  msgstr ""
492
 
493
- #: app/features/events.php:432 app/features/events.php:2243
494
- #: app/features/events.php:2321 app/features/fes/form.php:664
495
- #: app/features/mec/regform.php:38 app/features/mec/regform.php:267
496
  #: app/features/organizers.php:110 app/features/organizers.php:150
497
  #: app/features/profile/profile.php:93 app/features/speakers.php:120
498
- #: app/features/speakers.php:180 app/libraries/main.php:1142
499
- #: app/libraries/main.php:1208 app/libraries/main.php:2247
500
  #: app/libraries/notifications.php:674 app/modules/booking/steps/form.php:43
501
  #: app/modules/booking/steps/form.php:80 app/skins/single.php:661
502
- #: app/skins/single.php:715 app/skins/single/default.php:211
503
  #: app/skins/single/default.php:422 app/skins/single/m1.php:107
504
  #: app/skins/single/m2.php:39 app/skins/single/modern.php:48
505
  msgid "Email"
506
  msgstr ""
507
 
508
- #: app/features/events.php:436 app/features/fes/form.php:232
509
  msgid "Date and Time"
510
  msgstr ""
511
 
512
- #: app/features/events.php:440 app/features/events.php:446
513
- #: app/features/events.php:2975 app/features/events.php:3157
514
- #: app/features/events.php:3199 app/features/fes/form.php:236
515
  #: app/features/fes/form.php:240 app/features/ix.php:2740
516
  #: app/features/ix.php:2781 app/features/ix/import_g_calendar.php:38
517
- #: app/features/mec/dashboard.php:332
518
  #: app/features/mec/meta_boxes/display_options.php:42
519
  #: app/features/mec/meta_boxes/display_options.php:169
520
  #: app/features/mec/meta_boxes/display_options.php:307
@@ -526,71 +536,71 @@ msgstr ""
526
  #: app/features/mec/meta_boxes/display_options.php:654
527
  #: app/features/mec/meta_boxes/display_options.php:700
528
  #: app/features/mec/meta_boxes/display_options.php:766
529
- #: app/features/mec/meta_boxes/display_options.php:981
530
- #: app/features/mec/meta_boxes/display_options.php:1068
531
  msgid "Start Date"
532
  msgstr ""
533
 
534
- #: app/features/events.php:518 app/features/events.php:610
535
- #: app/features/events.php:1586 app/features/events.php:1628
536
- #: app/features/events.php:1795 app/features/events.php:1819
537
  #: app/features/fes/form.php:268 app/features/fes/form.php:308
538
  msgid "AM"
539
  msgstr ""
540
 
541
- #: app/features/events.php:525 app/features/events.php:617
542
- #: app/features/events.php:1593 app/features/events.php:1635
543
- #: app/features/events.php:1796 app/features/events.php:1820
544
  #: app/features/fes/form.php:269 app/features/fes/form.php:309
545
  msgid "PM"
546
  msgstr ""
547
 
548
- #: app/features/events.php:532 app/features/events.php:537
549
- #: app/features/events.php:2976 app/features/events.php:3157
550
- #: app/features/events.php:3199 app/features/fes/form.php:276
551
  #: app/features/fes/form.php:280 app/features/ix.php:2740
552
  #: app/features/ix.php:2781 app/features/ix/import_g_calendar.php:44
553
- #: app/features/mec/dashboard.php:333
554
  msgid "End Date"
555
  msgstr ""
556
 
557
- #: app/features/events.php:631 app/features/fes/form.php:315
558
  msgid "All Day Event"
559
  msgstr ""
560
 
561
- #: app/features/events.php:641 app/features/fes/form.php:318
562
  msgid "Hide Event Time"
563
  msgstr ""
564
 
565
- #: app/features/events.php:651 app/features/fes/form.php:321
566
  msgid "Hide Event End Time"
567
  msgstr ""
568
 
569
- #: app/features/events.php:656 app/features/events.php:660
570
  #: app/features/fes/form.php:325
571
  msgid "Time Comment"
572
  msgstr ""
573
 
574
- #: app/features/events.php:661 app/features/fes/form.php:326
575
  msgid ""
576
  "It shows next to event time on single event page. You can insert Timezone "
577
  "etc. in this field."
578
  msgstr ""
579
 
580
- #: app/features/events.php:663 app/features/events.php:795
581
- #: app/features/events.php:1094 app/features/events.php:1137
582
- #: app/features/events.php:1436 app/features/events.php:1503
583
- #: app/features/events.php:1655 app/features/events.php:1670
584
- #: app/features/events.php:1837 app/features/events.php:1850
585
- #: app/features/events.php:1980 app/features/events.php:2016
586
- #: app/features/events.php:2114 app/features/events.php:2129
587
- #: app/features/events.php:2159 app/features/events.php:2172
588
  #: app/features/fes/form.php:630 app/features/locations.php:298
589
- #: app/features/mec/booking.php:239 app/features/mec/booking.php:263
590
- #: app/features/mec/booking.php:279 app/features/mec/booking.php:375
591
- #: app/features/mec/booking.php:404 app/features/mec/booking.php:452
592
- #: app/features/mec/booking.php:462 app/features/mec/booking.php:484
593
- #: app/features/mec/booking.php:494 app/features/mec/dashboard.php:71
594
  #: app/features/mec/meta_boxes/display_options.php:60
595
  #: app/features/mec/meta_boxes/display_options.php:73
596
  #: app/features/mec/meta_boxes/display_options.php:86
@@ -606,45 +616,45 @@ msgstr ""
606
  #: app/features/mec/meta_boxes/display_options.php:326
607
  #: app/features/mec/meta_boxes/display_options.php:502
608
  #: app/features/mec/meta_boxes/display_options.php:785
609
- #: app/features/mec/meta_boxes/display_options.php:838
610
- #: app/features/mec/meta_boxes/display_options.php:850
611
- #: app/features/mec/meta_boxes/display_options.php:861
612
- #: app/features/mec/meta_boxes/display_options.php:893
613
- #: app/features/mec/meta_boxes/display_options.php:904
614
- #: app/features/mec/meta_boxes/display_options.php:917
615
- #: app/features/mec/meta_boxes/display_options.php:952
616
- #: app/features/mec/meta_boxes/display_options.php:1001
617
- #: app/features/mec/meta_boxes/display_options.php:1012
618
- #: app/features/mec/meta_boxes/display_options.php:1023
619
- #: app/features/mec/meta_boxes/display_options.php:1088
620
- #: app/features/mec/meta_boxes/display_options.php:1101
621
- #: app/features/mec/meta_boxes/display_options.php:1114
622
- #: app/features/mec/meta_boxes/display_options.php:1127
623
- #: app/features/mec/meta_boxes/display_options.php:1140
624
- #: app/features/mec/modules.php:283 app/features/mec/modules.php:300
625
- #: app/features/mec/modules.php:335 app/features/mec/modules.php:351
626
- #: app/features/mec/modules.php:497 app/features/mec/notifications.php:244
627
- #: app/features/mec/notifications.php:301
628
- #: app/features/mec/notifications.php:353
629
- #: app/features/mec/notifications.php:412
630
- #: app/features/mec/notifications.php:480
631
- #: app/features/mec/notifications.php:543
632
- #: app/features/mec/notifications.php:554
633
- #: app/features/mec/notifications.php:616 app/features/mec/settings.php:266
634
- #: app/features/mec/settings.php:285 app/features/mec/settings.php:312
635
- #: app/features/mec/settings.php:332 app/features/mec/settings.php:353
636
- #: app/features/mec/settings.php:373 app/features/mec/settings.php:450
637
- #: app/features/mec/settings.php:524 app/features/mec/settings.php:541
638
- #: app/features/mec/settings.php:558 app/features/mec/settings.php:577
639
- #: app/features/mec/settings.php:591 app/features/mec/settings.php:619
640
- #: app/features/mec/settings.php:706 app/features/mec/settings.php:844
641
- #: app/features/mec/settings.php:861 app/features/mec/settings.php:894
642
- #: app/features/mec/settings.php:907 app/features/mec/settings.php:923
643
- #: app/features/mec/single.php:221 app/features/mec/single.php:237
644
- #: app/features/mec/single.php:256 app/features/mec/single.php:272
645
- #: app/features/mec/single.php:287 app/features/mec/single.php:301
646
- #: app/features/mec/single.php:339 app/features/mec/styling.php:356
647
- #: app/features/mec/styling.php:373 app/features/mec/styling.php:386
648
  #: app/features/organizers.php:267 app/skins/single.php:508
649
  #: app/skins/single/default.php:118 app/skins/single/default.php:329
650
  #: app/skins/single/m1.php:192 app/skins/single/m2.php:125
@@ -652,195 +662,195 @@ msgstr ""
652
  msgid "Read More"
653
  msgstr ""
654
 
655
- #: app/features/events.php:679 app/features/fes/form.php:332
656
  msgid "Event Repeating"
657
  msgstr ""
658
 
659
- #: app/features/events.php:683 app/features/fes/form.php:336
660
  msgid "Repeats"
661
  msgstr ""
662
 
663
- #: app/features/events.php:691 app/features/fes/form.php:338
664
- #: app/features/mec/dashboard.php:335 app/skins/full_calendar/tpl.php:103
665
  msgid "Daily"
666
  msgstr ""
667
 
668
- #: app/features/events.php:698 app/features/fes/form.php:339
669
  msgid "Every Weekday"
670
  msgstr ""
671
 
672
- #: app/features/events.php:705 app/features/fes/form.php:340
673
  msgid "Every Weekend"
674
  msgstr ""
675
 
676
- #: app/features/events.php:712 app/features/fes/form.php:341
677
  msgid "Certain Weekdays"
678
  msgstr ""
679
 
680
- #: app/features/events.php:719 app/features/fes/form.php:342
681
  #: app/skins/full_calendar/tpl.php:102
682
  msgid "Weekly"
683
  msgstr ""
684
 
685
- #: app/features/events.php:726 app/features/fes/form.php:343
686
- #: app/features/mec/dashboard.php:336 app/skins/full_calendar/tpl.php:101
687
  msgid "Monthly"
688
  msgstr ""
689
 
690
- #: app/features/events.php:733 app/features/fes/form.php:344
691
- #: app/features/mec/dashboard.php:337 app/skins/full_calendar/tpl.php:100
692
  msgid "Yearly"
693
  msgstr ""
694
 
695
- #: app/features/events.php:740 app/features/fes/form.php:345
696
  msgid "Custom Days"
697
  msgstr ""
698
 
699
- #: app/features/events.php:747 app/features/fes/form.php:346
700
  msgid "Advanced"
701
  msgstr ""
702
 
703
- #: app/features/events.php:752 app/features/fes/form.php:350
704
  msgid "Repeat Interval"
705
  msgstr ""
706
 
707
- #: app/features/events.php:754 app/features/fes/form.php:351
708
  msgid "Repeat interval"
709
  msgstr ""
710
 
711
- #: app/features/events.php:758 app/features/fes/form.php:354
712
  msgid "Week Days"
713
  msgstr ""
714
 
715
- #: app/features/events.php:760 app/features/fes/form.php:355
716
  #: app/features/mec/meta_boxes/display_options.php:730
717
  #: app/libraries/main.php:407
718
  msgid "Monday"
719
  msgstr ""
720
 
721
- #: app/features/events.php:763 app/features/fes/form.php:356
722
  #: app/features/mec/meta_boxes/display_options.php:731
723
  #: app/libraries/main.php:407
724
  msgid "Tuesday"
725
  msgstr ""
726
 
727
- #: app/features/events.php:766 app/features/fes/form.php:357
728
  #: app/features/mec/meta_boxes/display_options.php:732
729
  #: app/libraries/main.php:407
730
  msgid "Wednesday"
731
  msgstr ""
732
 
733
- #: app/features/events.php:769 app/features/fes/form.php:358
734
  #: app/features/mec/meta_boxes/display_options.php:733
735
  #: app/libraries/main.php:407
736
  msgid "Thursday"
737
  msgstr ""
738
 
739
- #: app/features/events.php:772 app/features/fes/form.php:359
740
  #: app/features/mec/meta_boxes/display_options.php:734
741
  #: app/libraries/main.php:407
742
  msgid "Friday"
743
  msgstr ""
744
 
745
- #: app/features/events.php:775 app/features/fes/form.php:360
746
  #: app/features/mec/meta_boxes/display_options.php:735
747
  #: app/libraries/main.php:407
748
  msgid "Saturday"
749
  msgstr ""
750
 
751
- #: app/features/events.php:778 app/features/fes/form.php:361
752
  #: app/features/mec/meta_boxes/display_options.php:729
753
  #: app/libraries/main.php:407
754
  msgid "Sunday"
755
  msgstr ""
756
 
757
- #: app/features/events.php:785 app/features/events.php:1718
758
- #: app/features/events.php:1746 app/features/events.php:1884
759
  #: app/features/fes/form.php:366 app/features/ix/import_f_calendar.php:42
760
  #: app/features/ix/import_g_calendar.php:51
761
  #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
762
  msgid "Start"
763
  msgstr ""
764
 
765
- #: app/features/events.php:787 app/features/events.php:1722
766
- #: app/features/events.php:1750 app/features/events.php:1888
767
  #: app/features/fes/form.php:367
768
  msgid "End"
769
  msgstr ""
770
 
771
- #: app/features/events.php:789 app/features/events.php:1131
772
- #: app/features/events.php:1242 app/features/events.php:1347
773
- #: app/features/events.php:1536 app/features/events.php:1701
774
- #: app/features/events.php:1873 app/features/events.php:1953
775
- #: app/features/events.php:2086 app/features/fes/form.php:368
776
  msgid "Add"
777
  msgstr ""
778
 
779
- #: app/features/events.php:792
780
  msgid "Custom Days Repeating"
781
  msgstr ""
782
 
783
- #: app/features/events.php:793
784
  msgid ""
785
  "Add certain days to event occurrence dates. If you have single day event, "
786
  "start and end date should be the same, If you have multiple day event the "
787
  "start and end dates must be commensurate with the initial date."
788
  msgstr ""
789
 
790
- #: app/features/events.php:829 app/features/fes/form.php:394
791
  msgid "First"
792
  msgstr ""
793
 
794
- #: app/features/events.php:871 app/features/fes/form.php:436
795
  msgid "Second"
796
  msgstr ""
797
 
798
- #: app/features/events.php:913 app/features/fes/form.php:478
799
  msgid "Third"
800
  msgstr ""
801
 
802
- #: app/features/events.php:955 app/features/fes/form.php:520
803
  msgid "Fourth"
804
  msgstr ""
805
 
806
- #: app/features/events.php:997 app/features/fes/form.php:562
807
  msgid "Last"
808
  msgstr ""
809
 
810
- #: app/features/events.php:1044 app/features/fes/form.php:608
811
  msgid "Ends Repeat"
812
  msgstr ""
813
 
814
- #: app/features/events.php:1055 app/features/fes/form.php:612
815
  msgid "Never"
816
  msgstr ""
817
 
818
- #: app/features/events.php:1067 app/features/fes/form.php:617
819
  msgid "On"
820
  msgstr ""
821
 
822
- #: app/features/events.php:1083 app/features/fes/form.php:624
823
  msgid "After"
824
  msgstr ""
825
 
826
- #: app/features/events.php:1087 app/features/events.php:1091
827
  #: app/features/fes/form.php:626 app/features/fes/form.php:629
828
  msgid "Occurrences times"
829
  msgstr ""
830
 
831
- #: app/features/events.php:1092 app/features/fes/form.php:630
832
  msgid ""
833
  "The event will finish after certain repeats. For example if you set it to "
834
  "10, the event will finish after 10 repeats."
835
  msgstr ""
836
 
837
- #: app/features/events.php:1124 app/features/events.php:1134
838
  msgid "Exclude certain days"
839
  msgstr ""
840
 
841
- #: app/features/events.php:1129 app/features/events.php:2322
842
- #: app/features/mec/regform.php:268 app/features/profile/profile.php:31
843
- #: app/libraries/main.php:1694 app/libraries/main.php:2305
844
  #: app/modules/booking/steps/tickets.php:22
845
  #: app/modules/next-event/details.php:90 app/skins/single.php:488
846
  #: app/skins/single/default.php:67 app/skins/single/default.php:278
@@ -848,133 +858,133 @@ msgstr ""
848
  msgid "Date"
849
  msgstr ""
850
 
851
- #: app/features/events.php:1135
852
  msgid ""
853
  "Exclude certain days from event occurrence dates. Please note that you can "
854
  "exclude only single day occurrences and you cannot exclude one day from "
855
  "multiple day occurrences."
856
  msgstr ""
857
 
858
- #: app/features/events.php:1189 app/libraries/render.php:454
859
  msgid "Day 1"
860
  msgstr ""
861
 
862
- #: app/features/events.php:1211 app/features/mec/settings.php:815
863
- #: app/skins/single.php:777
864
  msgid "Hourly Schedule"
865
  msgstr ""
866
 
867
- #: app/features/events.php:1215
868
  msgid "Add Day"
869
  msgstr ""
870
 
871
- #: app/features/events.php:1216
872
  msgid ""
873
  "Add new days for schedule. For example if your event is multiple days, you "
874
  "can add a different schedule for each day!"
875
  msgstr ""
876
 
877
- #: app/features/events.php:1223
878
  #, php-format
879
  msgid "Day %s"
880
  msgstr ""
881
 
882
- #: app/features/events.php:1227 app/features/events.php:1266
883
- #: app/features/events.php:1301 app/features/events.php:1333
884
- #: app/features/events.php:1362 app/features/events.php:2101
885
- #: app/features/events.php:2148 app/features/events.php:2972
886
- #: app/features/events.php:3157 app/features/events.php:3199
887
  #: app/features/fes/form.php:225 app/features/ix.php:2740
888
- #: app/features/ix.php:2781 app/features/mec/booking.php:444
889
- #: app/features/mec/booking.php:476 app/features/mec/styling.php:268
890
  msgid "Title"
891
  msgstr ""
892
 
893
- #: app/features/events.php:1236 app/features/events.php:1273
894
- #: app/features/events.php:1306 app/features/events.php:1341
895
- #: app/features/events.php:1367 app/features/events.php:1694
896
- #: app/features/events.php:1732 app/features/events.php:1758
897
- #: app/features/events.php:1867 app/features/events.php:1894
898
- #: app/features/events.php:1993 app/features/events.php:2029
899
- #: app/features/events.php:2136 app/features/events.php:2178
900
- #: app/features/fes/list.php:78 app/features/mec/booking.php:387
901
- #: app/features/mec/booking.php:416 app/features/mec/booking.php:467
902
- #: app/features/mec/booking.php:499 app/libraries/main.php:2166
903
- #: app/libraries/main.php:2196 app/libraries/main.php:2225
904
- #: app/libraries/main.php:2255 app/libraries/main.php:2284
905
- #: app/libraries/main.php:2313 app/libraries/main.php:2342
906
- #: app/libraries/main.php:2371 app/libraries/main.php:2393
907
- #: app/libraries/main.php:2424 app/libraries/main.php:2468
908
- #: app/libraries/main.php:2512 app/libraries/main.php:2559
909
- #: app/libraries/main.php:2597
910
  msgid "Remove"
911
  msgstr ""
912
 
913
- #: app/features/events.php:1243 app/features/events.php:1348
914
  msgid "Add new hourly schedule row"
915
  msgstr ""
916
 
917
- #: app/features/events.php:1258 app/features/events.php:1295
918
- #: app/features/events.php:1357
919
  msgid "From e.g. 8:15"
920
  msgstr ""
921
 
922
- #: app/features/events.php:1262 app/features/events.php:1298
923
- #: app/features/events.php:1359
924
  msgid "To e.g. 8:45"
925
  msgstr ""
926
 
927
- #: app/features/events.php:1270 app/features/events.php:1304
928
- #: app/features/events.php:1365 app/features/events.php:1642
929
- #: app/features/events.php:1826
930
  msgid "Description"
931
  msgstr ""
932
 
933
- #: app/features/events.php:1276 app/features/events.php:1309
934
- #: app/features/events.php:1370 app/features/fes/form.php:839
935
- #: app/features/mec.php:340 app/features/mec/booking.php:122
936
- #: app/features/mec/gateways.php:87 app/features/mec/ie.php:83
937
- #: app/features/mec/messages.php:87 app/features/mec/modules.php:101
938
- #: app/features/mec/notifications.php:86 app/features/mec/regform.php:123
939
- #: app/features/mec/settings.php:154 app/features/mec/settings.php:809
940
- #: app/features/mec/single.php:115 app/features/mec/styles.php:87
941
- #: app/features/mec/styling.php:109 app/features/speakers.php:57
942
- #: app/libraries/main.php:4486 app/modules/speakers/details.php:18
943
  msgid "Speakers"
944
  msgstr ""
945
 
946
- #: app/features/events.php:1329 app/features/events.php:1337
947
  msgid "New Day"
948
  msgstr ""
949
 
950
- #: app/features/events.php:1401 app/features/fes/form.php:683
951
- #: app/features/mec/settings.php:755
952
  msgid "Event Links"
953
  msgstr ""
954
 
955
- #: app/features/events.php:1404 app/features/events.php:1410
956
- #: app/features/fes/form.php:685 app/libraries/main.php:4509
957
  msgid "Event Link"
958
  msgstr ""
959
 
960
- #: app/features/events.php:1407 app/features/events.php:1423
961
  #: app/features/fes/form.php:686 app/features/fes/form.php:691
962
  msgid "eg. http://yoursite.com/your-event"
963
  msgstr ""
964
 
965
- #: app/features/events.php:1411
966
  msgid ""
967
  "If you fill it, it will be replaced instead of default event page link. "
968
  "Insert full link including http(s):// - Also, if you use advertising URL, "
969
  "can use URL Shortener"
970
  msgstr ""
971
 
972
- #: app/features/events.php:1413
973
  msgid "URL Shortener"
974
  msgstr ""
975
 
976
- #: app/features/events.php:1420 app/features/events.php:1433
977
- #: app/features/fes/form.php:690 app/libraries/main.php:4510
978
  #: app/skins/single.php:507 app/skins/single/default.php:117
979
  #: app/skins/single/default.php:328 app/skins/single/m1.php:191
980
  #: app/skins/single/m2.php:124 app/skins/single/modern.php:132
@@ -982,480 +992,482 @@ msgstr ""
982
  msgid "More Info"
983
  msgstr ""
984
 
985
- #: app/features/events.php:1426 app/features/fes/form.php:692
986
  msgid "More Information"
987
  msgstr ""
988
 
989
- #: app/features/events.php:1428 app/features/fes/form.php:694
990
  msgid "Current Window"
991
  msgstr ""
992
 
993
- #: app/features/events.php:1429 app/features/fes/form.php:695
994
  msgid "New Window"
995
  msgstr ""
996
 
997
- #: app/features/events.php:1434 app/features/fes/form.php:697
998
  msgid ""
999
  "If you fill it, it will be shown in event details page as an optional link. "
1000
  "Insert full link including http(s)://"
1001
  msgstr ""
1002
 
1003
- #: app/features/events.php:1474 app/features/events.php:1500
1004
  msgid "Total booking limits"
1005
  msgstr ""
1006
 
1007
- #: app/features/events.php:1486 app/features/events.php:1691
1008
- #: app/features/events.php:1864 app/modules/booking/default.php:85
1009
  #: app/modules/booking/steps/tickets.php:40
1010
  #: app/skins/available_spot/tpl.php:140
1011
  msgid "Unlimited"
1012
  msgstr ""
1013
 
1014
- #: app/features/events.php:1489
1015
  msgid "100"
1016
  msgstr ""
1017
 
1018
- #: app/features/events.php:1501
1019
  msgid ""
1020
  "If you want to set a limit to all tickets, uncheck this checkbox and put a "
1021
  "limitation number."
1022
  msgstr ""
1023
 
1024
- #: app/features/events.php:1505
1025
  msgid "Read About A Booking System"
1026
  msgstr ""
1027
 
1028
- #: app/features/events.php:1528 app/libraries/book.php:60
1029
- #: app/libraries/main.php:4514 app/modules/booking/steps/tickets.php:40
1030
  msgid "Tickets"
1031
  msgstr ""
1032
 
1033
- #: app/features/events.php:1531
1034
  msgid ""
1035
  "You're translating an event so MEC will use the original event for tickets "
1036
  "and booking. You can only translate the ticket name and description. Please "
1037
  "define exact tickets that you defined in the original event here."
1038
  msgstr ""
1039
 
1040
- #: app/features/events.php:1550 app/features/events.php:1772
1041
  msgid "Ticket Name"
1042
  msgstr ""
1043
 
1044
- #: app/features/events.php:1555 app/features/events.php:1776
1045
- #: app/features/events.php:3157 app/features/events.php:3199
1046
  #: app/features/ix.php:2740 app/features/ix.php:2781
1047
  msgid "Start Time"
1048
  msgstr ""
1049
 
1050
- #: app/features/events.php:1597 app/features/events.php:1800
1051
- #: app/features/events.php:3157 app/features/events.php:3199
1052
  #: app/features/ix.php:2740 app/features/ix.php:2781
1053
  msgid "End Time"
1054
  msgstr ""
1055
 
1056
- #: app/features/events.php:1648 app/features/events.php:1652
1057
- #: app/features/events.php:1726 app/features/events.php:1753
1058
- #: app/features/events.php:1831 app/features/events.php:1834
1059
- #: app/features/events.php:1890 app/features/events.php:2107
1060
- #: app/features/events.php:2111 app/features/events.php:2153
1061
- #: app/features/events.php:2156 app/features/mec/booking.php:448
1062
- #: app/features/mec/booking.php:451 app/features/mec/booking.php:480
1063
- #: app/features/mec/booking.php:483
1064
  msgid "Price"
1065
  msgstr ""
1066
 
1067
- #: app/features/events.php:1653 app/features/events.php:1835
1068
  msgid "Insert 0 for free ticket. Only numbers please."
1069
  msgstr ""
1070
 
1071
- #: app/features/events.php:1662 app/features/events.php:1667
1072
- #: app/features/events.php:1844 app/features/events.php:1847
1073
  msgid "Price Label"
1074
  msgstr ""
1075
 
1076
- #: app/features/events.php:1668 app/features/events.php:1848
1077
  msgid "For showing on website. e.g. $15"
1078
  msgstr ""
1079
 
1080
- #: app/features/events.php:1678 app/features/events.php:1858
1081
  msgid "Available Tickets"
1082
  msgstr ""
1083
 
1084
- #: app/features/events.php:1699 app/features/events.php:1871
1085
  msgid "Price per Date"
1086
  msgstr ""
1087
 
1088
- #: app/features/events.php:1730 app/features/events.php:1756
1089
- #: app/features/events.php:1892 app/features/labels.php:60
1090
  #: app/features/mec/meta_boxes/display_options.php:799
1091
  #: app/features/mec/meta_boxes/search_form.php:66
1092
- #: app/features/mec/meta_boxes/search_form.php:127
1093
- #: app/features/mec/meta_boxes/search_form.php:188
1094
- #: app/features/mec/meta_boxes/search_form.php:249
1095
- #: app/features/mec/meta_boxes/search_form.php:310
1096
- #: app/features/mec/meta_boxes/search_form.php:371
1097
- #: app/features/mec/meta_boxes/search_form.php:432
1098
- #: app/features/mec/meta_boxes/search_form.php:486
1099
- #: app/features/mec/meta_boxes/search_form.php:547
1100
- #: app/features/mec/meta_boxes/search_form.php:608 app/libraries/skins.php:911
 
1101
  msgid "Label"
1102
  msgstr ""
1103
 
1104
- #: app/features/events.php:1930
1105
  msgid "Fees"
1106
  msgstr ""
1107
 
1108
- #: app/features/events.php:1942 app/features/events.php:2074
1109
- #: app/features/events.php:2262
1110
  msgid "Inherit from global options"
1111
  msgstr ""
1112
 
1113
- #: app/features/events.php:1967 app/features/events.php:2005
1114
- #: app/features/mec/booking.php:367 app/features/mec/booking.php:396
1115
  msgid "Fee Title"
1116
  msgstr ""
1117
 
1118
- #: app/features/events.php:1973 app/features/events.php:1977
1119
- #: app/features/events.php:2010 app/features/events.php:2013
1120
- #: app/features/mec/booking.php:371 app/features/mec/booking.php:374
1121
- #: app/features/mec/booking.php:400 app/features/mec/booking.php:403
1122
  msgid "Amount"
1123
  msgstr ""
1124
 
1125
- #: app/features/events.php:1978 app/features/events.php:2014
1126
- #: app/features/mec/booking.php:375 app/features/mec/booking.php:404
1127
  msgid ""
1128
  "Fee amount, considered as fixed amount if you set the type to amount "
1129
  "otherwise considered as percentage"
1130
  msgstr ""
1131
 
1132
- #: app/features/events.php:1987 app/features/events.php:2023
1133
- #: app/features/mec/booking.php:382 app/features/mec/booking.php:411
1134
  msgid "Percent"
1135
  msgstr ""
1136
 
1137
- #: app/features/events.php:1988 app/features/events.php:2024
1138
- #: app/features/mec/booking.php:383 app/features/mec/booking.php:412
1139
  msgid "Amount (Per Ticket)"
1140
  msgstr ""
1141
 
1142
- #: app/features/events.php:1989 app/features/events.php:2025
1143
- #: app/features/mec/booking.php:384 app/features/mec/booking.php:413
1144
  msgid "Amount (Per Booking)"
1145
  msgstr ""
1146
 
1147
- #: app/features/events.php:2062 app/features/mec/settings.php:833
1148
  msgid "Ticket Variations / Options"
1149
  msgstr ""
1150
 
1151
- #: app/features/events.php:2112 app/features/events.php:2157
1152
- #: app/features/mec/booking.php:452 app/features/mec/booking.php:484
1153
  msgid "Option Price"
1154
  msgstr ""
1155
 
1156
- #: app/features/events.php:2122 app/features/events.php:2126
1157
- #: app/features/events.php:2166 app/features/events.php:2169
1158
- #: app/features/mec/booking.php:458 app/features/mec/booking.php:461
1159
- #: app/features/mec/booking.php:490 app/features/mec/booking.php:493
1160
  msgid "Maximum Per Ticket"
1161
  msgstr ""
1162
 
1163
- #: app/features/events.php:2127 app/features/events.php:2170
1164
- #: app/features/mec/booking.php:462 app/features/mec/booking.php:494
1165
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
1166
  msgstr ""
1167
 
1168
- #: app/features/events.php:2317 app/features/mec/regform.php:264
1169
- #: app/libraries/main.php:2188
1170
  msgid "MEC Name"
1171
  msgstr ""
1172
 
1173
- #: app/features/events.php:2319 app/features/mec/regform.php:265
1174
- #: app/libraries/main.php:2217
1175
  msgid "MEC Email"
1176
  msgstr ""
1177
 
1178
- #: app/features/events.php:2320 app/features/mec/regform.php:266
1179
- #: app/libraries/main.php:2158
1180
  msgid "Text"
1181
  msgstr ""
1182
 
1183
- #: app/features/events.php:2323 app/features/mec/regform.php:269
1184
  #: app/features/organizers.php:102 app/features/organizers.php:146
1185
  #: app/features/speakers.php:112 app/features/speakers.php:176
1186
- #: app/features/speakers.php:245 app/libraries/main.php:2334
1187
  msgid "Tel"
1188
  msgstr ""
1189
 
1190
- #: app/features/events.php:2324 app/features/mec/regform.php:270
1191
- #: app/libraries/main.php:2276
1192
  msgid "File"
1193
  msgstr ""
1194
 
1195
- #: app/features/events.php:2326 app/features/mec/regform.php:271
1196
- #: app/libraries/main.php:2363
1197
  msgid "Textarea"
1198
  msgstr ""
1199
 
1200
- #: app/features/events.php:2328 app/features/mec/regform.php:272
1201
- #: app/libraries/main.php:2416
1202
  msgid "Checkboxes"
1203
  msgstr ""
1204
 
1205
- #: app/features/events.php:2330 app/features/mec/regform.php:273
1206
- #: app/libraries/main.php:2460
1207
  msgid "Radio Buttons"
1208
  msgstr ""
1209
 
1210
- #: app/features/events.php:2331 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
1213
  #: app/features/mec/meta_boxes/search_form.php:55
1214
  #: app/features/mec/meta_boxes/search_form.php:62
1215
  #: app/features/mec/meta_boxes/search_form.php:69
1216
  #: app/features/mec/meta_boxes/search_form.php:76
1217
- #: app/features/mec/meta_boxes/search_form.php:95
1218
- #: app/features/mec/meta_boxes/search_form.php:102
1219
- #: app/features/mec/meta_boxes/search_form.php:109
1220
- #: app/features/mec/meta_boxes/search_form.php:116
1221
- #: app/features/mec/meta_boxes/search_form.php:123
1222
- #: app/features/mec/meta_boxes/search_form.php:130
1223
- #: app/features/mec/meta_boxes/search_form.php:137
1224
- #: app/features/mec/meta_boxes/search_form.php:156
1225
- #: app/features/mec/meta_boxes/search_form.php:163
1226
- #: app/features/mec/meta_boxes/search_form.php:170
1227
- #: app/features/mec/meta_boxes/search_form.php:177
1228
- #: app/features/mec/meta_boxes/search_form.php:184
1229
- #: app/features/mec/meta_boxes/search_form.php:191
1230
- #: app/features/mec/meta_boxes/search_form.php:198
1231
- #: app/features/mec/meta_boxes/search_form.php:217
1232
- #: app/features/mec/meta_boxes/search_form.php:224
1233
- #: app/features/mec/meta_boxes/search_form.php:231
1234
- #: app/features/mec/meta_boxes/search_form.php:238
1235
- #: app/features/mec/meta_boxes/search_form.php:245
1236
- #: app/features/mec/meta_boxes/search_form.php:252
1237
- #: app/features/mec/meta_boxes/search_form.php:259
1238
- #: app/features/mec/meta_boxes/search_form.php:278
1239
- #: app/features/mec/meta_boxes/search_form.php:285
1240
- #: app/features/mec/meta_boxes/search_form.php:292
1241
- #: app/features/mec/meta_boxes/search_form.php:299
1242
- #: app/features/mec/meta_boxes/search_form.php:306
1243
- #: app/features/mec/meta_boxes/search_form.php:313
1244
- #: app/features/mec/meta_boxes/search_form.php:320
1245
- #: app/features/mec/meta_boxes/search_form.php:339
1246
- #: app/features/mec/meta_boxes/search_form.php:346
1247
- #: app/features/mec/meta_boxes/search_form.php:353
1248
- #: app/features/mec/meta_boxes/search_form.php:360
1249
- #: app/features/mec/meta_boxes/search_form.php:367
1250
- #: app/features/mec/meta_boxes/search_form.php:374
1251
- #: app/features/mec/meta_boxes/search_form.php:381
1252
- #: app/features/mec/meta_boxes/search_form.php:400
1253
- #: app/features/mec/meta_boxes/search_form.php:407
1254
- #: app/features/mec/meta_boxes/search_form.php:414
1255
- #: app/features/mec/meta_boxes/search_form.php:421
1256
- #: app/features/mec/meta_boxes/search_form.php:428
1257
- #: app/features/mec/meta_boxes/search_form.php:435
1258
- #: app/features/mec/meta_boxes/search_form.php:454
1259
- #: app/features/mec/meta_boxes/search_form.php:461
1260
- #: app/features/mec/meta_boxes/search_form.php:468
1261
- #: app/features/mec/meta_boxes/search_form.php:475
1262
- #: app/features/mec/meta_boxes/search_form.php:482
1263
- #: app/features/mec/meta_boxes/search_form.php:489
1264
- #: app/features/mec/meta_boxes/search_form.php:496
1265
- #: app/features/mec/meta_boxes/search_form.php:515
1266
- #: app/features/mec/meta_boxes/search_form.php:522
1267
- #: app/features/mec/meta_boxes/search_form.php:529
1268
- #: app/features/mec/meta_boxes/search_form.php:536
1269
- #: app/features/mec/meta_boxes/search_form.php:543
1270
- #: app/features/mec/meta_boxes/search_form.php:550
1271
- #: app/features/mec/meta_boxes/search_form.php:557
1272
- #: app/features/mec/meta_boxes/search_form.php:576
1273
- #: app/features/mec/meta_boxes/search_form.php:583
1274
- #: app/features/mec/meta_boxes/search_form.php:590
1275
- #: app/features/mec/meta_boxes/search_form.php:597
1276
- #: app/features/mec/meta_boxes/search_form.php:604
1277
- #: app/features/mec/meta_boxes/search_form.php:611
1278
- #: app/features/mec/meta_boxes/search_form.php:618
1279
- #: app/features/mec/regform.php:274 app/libraries/main.php:2504
1280
  msgid "Dropdown"
1281
  msgstr ""
1282
 
1283
- #: app/features/events.php:2333 app/features/mec/regform.php:275
1284
- #: app/libraries/main.php:2551
1285
  msgid "Agreement"
1286
  msgstr ""
1287
 
1288
- #: app/features/events.php:2334 app/features/mec/regform.php:276
1289
- #: app/libraries/main.php:2392
1290
  msgid "Paragraph"
1291
  msgstr ""
1292
 
1293
- #: app/features/events.php:2910 app/features/events.php:2927
1294
- #: app/features/events.php:2944
1295
  #, php-format
1296
  msgid "Show all %s"
1297
  msgstr ""
1298
 
1299
- #: app/features/events.php:2910
1300
  msgid "labels"
1301
  msgstr ""
1302
 
1303
- #: app/features/events.php:2927
1304
  msgid "locations"
1305
  msgstr ""
1306
 
1307
- #: app/features/events.php:2944
1308
  msgid "organizers"
1309
  msgstr ""
1310
 
1311
- #: app/features/events.php:2973 app/features/events.php:3157
1312
- #: app/features/events.php:3199 app/features/ix.php:2740
1313
  #: app/features/ix.php:2781 app/features/locations.php:58
1314
  #: app/features/locations.php:229 app/features/locations.php:286
1315
  #: app/features/locations.php:288 app/features/locations.php:297
1316
  #: app/features/mec/meta_boxes/display_options.php:800
1317
  #: app/features/mec/meta_boxes/search_form.php:38
1318
- #: app/features/mec/meta_boxes/search_form.php:99
1319
- #: app/features/mec/meta_boxes/search_form.php:160
1320
- #: app/features/mec/meta_boxes/search_form.php:221
1321
- #: app/features/mec/meta_boxes/search_form.php:282
1322
- #: app/features/mec/meta_boxes/search_form.php:343
1323
- #: app/features/mec/meta_boxes/search_form.php:404
1324
- #: app/features/mec/meta_boxes/search_form.php:458
1325
- #: app/features/mec/meta_boxes/search_form.php:519
1326
- #: app/features/mec/meta_boxes/search_form.php:580 app/libraries/main.php:1688
1327
- #: app/libraries/main.php:4483 app/libraries/skins.php:807
1328
- #: app/skins/single.php:337 app/skins/single.php:754
 
1329
  #: app/skins/single/default.php:153 app/skins/single/default.php:364
1330
  #: app/skins/single/m1.php:155 app/skins/single/m2.php:87
1331
  #: app/skins/single/modern.php:94
1332
  msgid "Location"
1333
  msgstr ""
1334
 
1335
- #: app/features/events.php:2974 app/features/events.php:3157
1336
- #: app/features/events.php:3199 app/features/ix.php:2740
1337
  #: app/features/ix.php:2781 app/features/mec/meta_boxes/display_options.php:801
1338
  #: app/features/mec/meta_boxes/search_form.php:45
1339
- #: app/features/mec/meta_boxes/search_form.php:106
1340
- #: app/features/mec/meta_boxes/search_form.php:167
1341
- #: app/features/mec/meta_boxes/search_form.php:228
1342
- #: app/features/mec/meta_boxes/search_form.php:289
1343
- #: app/features/mec/meta_boxes/search_form.php:350
1344
- #: app/features/mec/meta_boxes/search_form.php:411
1345
- #: app/features/mec/meta_boxes/search_form.php:465
1346
- #: app/features/mec/meta_boxes/search_form.php:526
1347
- #: app/features/mec/meta_boxes/search_form.php:587
1348
- #: app/features/organizers.php:58 app/features/organizers.php:199
1349
- #: app/features/organizers.php:255 app/features/organizers.php:257
1350
- #: app/features/organizers.php:266 app/libraries/main.php:4485
1351
- #: app/libraries/skins.php:833 app/skins/single.php:644
1352
- #: app/skins/single/default.php:194 app/skins/single/default.php:405
1353
- #: app/skins/single/m1.php:90 app/skins/single/m2.php:22
1354
- #: app/skins/single/modern.php:31
1355
  msgid "Organizer"
1356
  msgstr ""
1357
 
1358
- #: app/features/events.php:2978
1359
  msgid "Repeat"
1360
  msgstr ""
1361
 
1362
- #: app/features/events.php:2979
1363
  msgid "Author"
1364
  msgstr ""
1365
 
1366
- #: app/features/events.php:3092 app/features/events.php:3093
1367
  msgid "iCal Export"
1368
  msgstr ""
1369
 
1370
- #: app/features/events.php:3095 app/features/events.php:3096
1371
  msgid "CSV Export"
1372
  msgstr ""
1373
 
1374
- #: app/features/events.php:3098 app/features/events.php:3099
1375
  msgid "MS Excel Export"
1376
  msgstr ""
1377
 
1378
- #: app/features/events.php:3101 app/features/events.php:3102
1379
  msgid "XML Export"
1380
  msgstr ""
1381
 
1382
- #: app/features/events.php:3104 app/features/events.php:3105
1383
  msgid "JSON Export"
1384
  msgstr ""
1385
 
1386
- #: app/features/events.php:3107 app/features/events.php:3108
1387
  msgid "Duplicate"
1388
  msgstr ""
1389
 
1390
- #: app/features/events.php:3157 app/features/events.php:3199
1391
  #: app/features/ix.php:2740 app/features/ix.php:2781
1392
  #: app/features/labels.php:176 app/features/locations.php:228
1393
  #: app/features/organizers.php:198 app/features/speakers.php:242
1394
  msgid "ID"
1395
  msgstr ""
1396
 
1397
- #: app/features/events.php:3157 app/features/events.php:3199
1398
  #: app/features/ix.php:2740 app/features/ix.php:2781
1399
  msgid "Link"
1400
  msgstr ""
1401
 
1402
- #: app/features/events.php:3157 app/features/events.php:3199
1403
  #, php-format
1404
  msgid "%s Tel"
1405
  msgstr ""
1406
 
1407
- #: app/features/events.php:3157 app/features/events.php:3199
1408
  #, php-format
1409
  msgid "%s Email"
1410
  msgstr ""
1411
 
1412
- #: app/features/fes.php:83
1413
  #, php-format
1414
  msgid "Please %s/%s in order to submit new events."
1415
  msgstr ""
1416
 
1417
- #: app/features/fes.php:83 app/features/fes.php:161 app/features/profile.php:74
1418
  msgid "Login"
1419
  msgstr ""
1420
 
1421
- #: app/features/fes.php:83 app/features/fes.php:161 app/features/profile.php:74
1422
  msgid "Register"
1423
  msgstr ""
1424
 
1425
- #: app/features/fes.php:96
1426
  msgid "Sorry! Selected post is not an event."
1427
  msgstr ""
1428
 
1429
- #: app/features/fes.php:107 app/features/fes.php:146
1430
  msgid "Sorry! You don't have access to modify this event."
1431
  msgstr ""
1432
 
1433
- #: app/features/fes.php:161
1434
  #, php-format
1435
  msgid "Please %s/%s in order to manage events."
1436
  msgstr ""
1437
 
1438
- #: app/features/fes.php:191
1439
  msgid "The event removed!"
1440
  msgstr ""
1441
 
1442
- #: app/features/fes.php:226
1443
  msgid "The image is uploaded!"
1444
  msgstr ""
1445
 
1446
- #: app/features/fes.php:252
1447
  msgid "Captcha is invalid! Please try again."
1448
  msgstr ""
1449
 
1450
- #: app/features/fes.php:264
1451
  msgid "Please fill event title field!"
1452
  msgstr ""
1453
 
1454
- #: app/features/fes.php:832
1455
  msgid "The event submitted. It will publish as soon as possible."
1456
  msgstr ""
1457
 
1458
- #: app/features/fes.php:833
1459
  msgid "The event published."
1460
  msgstr ""
1461
 
@@ -1489,7 +1501,7 @@ msgid ""
1489
  "Insert full link including http(s)://"
1490
  msgstr ""
1491
 
1492
- #: app/features/fes/form.php:723 app/features/mec/settings.php:767
1493
  msgid "Featured Image"
1494
  msgstr ""
1495
 
@@ -1499,7 +1511,7 @@ msgstr ""
1499
 
1500
  #: app/features/fes/form.php:770 app/features/labels.php:61
1501
  #: app/features/labels.php:220 app/features/mec.php:333
1502
- #: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4480
1503
  #: app/skins/single.php:536 app/skins/single/default.php:132
1504
  #: app/skins/single/default.php:343 app/skins/single/m1.php:64
1505
  #: app/skins/single/modern.php:214
@@ -1540,12 +1552,12 @@ msgstr ""
1540
  msgid "MEC - Import / Export"
1541
  msgstr ""
1542
 
1543
- #: app/features/ix.php:107 app/features/mec/booking.php:203
1544
- #: app/features/mec/gateways.php:168 app/features/mec/ie.php:164
1545
- #: app/features/mec/messages.php:168 app/features/mec/modules.php:230
1546
- #: app/features/mec/notifications.php:204 app/features/mec/regform.php:202
1547
- #: app/features/mec/settings.php:235 app/features/mec/single.php:196
1548
- #: app/features/mec/styles.php:168 app/features/mec/styling.php:190
1549
  #: app/features/mec/support.php:73
1550
  msgid "Import / Export"
1551
  msgstr ""
@@ -1673,7 +1685,7 @@ msgstr ""
1673
  #: app/features/ix/import.php:15 app/features/ix/import_f_calendar.php:15
1674
  #: app/features/ix/import_g_calendar.php:15
1675
  #: app/features/ix/import_meetup.php:15 app/features/ix/sync.php:15
1676
- #: app/features/ix/thirdparty.php:15 app/features/mec/ie.php:188
1677
  msgid "Export"
1678
  msgstr ""
1679
 
@@ -1684,7 +1696,7 @@ msgstr ""
1684
  #: app/features/ix/import_g_calendar.php:103
1685
  #: app/features/ix/import_meetup.php:16 app/features/ix/import_meetup.php:85
1686
  #: app/features/ix/sync.php:16 app/features/ix/thirdparty.php:16
1687
- #: app/features/ix/thirdparty.php:98 app/features/mec/ie.php:177
1688
  msgid "Import"
1689
  msgstr ""
1690
 
@@ -1705,7 +1717,7 @@ msgid ""
1705
  "This will export all of your website events' data into your desired format."
1706
  msgstr ""
1707
 
1708
- #: app/features/ix/export.php:25 app/features/mec/modules.php:375
1709
  msgid "iCal"
1710
  msgstr ""
1711
 
@@ -1803,16 +1815,16 @@ msgstr ""
1803
  #: app/features/ix/export_g_calendar.php:72
1804
  #: app/features/ix/export_g_calendar.php:147
1805
  #: app/features/ix/export_g_calendar.php:164
1806
- #: app/features/mec/notifications.php:282
1807
- #: app/features/mec/notifications.php:334
1808
- #: app/features/mec/notifications.php:387
1809
- #: app/features/mec/notifications.php:588
1810
  msgid "Add to Google Calendar"
1811
  msgstr ""
1812
 
1813
- #: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:571
1814
- #: app/features/mec/modules.php:602 app/features/mec/notifications.php:735
1815
- #: app/features/mec/settings.php:1030 app/features/mec/single.php:429
1816
  msgid "Checking ..."
1817
  msgstr ""
1818
 
@@ -1854,26 +1866,26 @@ msgstr ""
1854
  msgid "ICS Feed"
1855
  msgstr ""
1856
 
1857
- #: app/features/ix/import.php:46 app/features/mec/booking.php:222
1858
- #: app/features/mec/booking.php:333 app/features/mec/booking.php:351
1859
- #: app/features/mec/booking.php:428 app/features/mec/modules.php:267
1860
- #: app/features/mec/modules.php:408 app/features/mec/modules.php:425
1861
  #, php-format
1862
  msgid "%s is required to use this feature."
1863
  msgstr ""
1864
 
1865
  #: app/features/ix/import.php:46 app/features/ix/sync.php:22
1866
- #: app/features/mec/booking.php:222 app/features/mec/booking.php:333
1867
- #: app/features/mec/booking.php:351 app/features/mec/booking.php:428
1868
  #: app/features/mec/meta_boxes/display_options.php:296
1869
  #: app/features/mec/meta_boxes/display_options.php:423
1870
  #: app/features/mec/meta_boxes/display_options.php:474
1871
  #: app/features/mec/meta_boxes/display_options.php:581
1872
  #: app/features/mec/meta_boxes/display_options.php:688
1873
  #: app/features/mec/meta_boxes/display_options.php:761
1874
- #: app/features/mec/meta_boxes/display_options.php:941
1875
- #: app/features/mec/modules.php:267 app/features/mec/modules.php:408
1876
- #: app/features/mec/modules.php:425
1877
  msgid "Pro version of Modern Events Calendar"
1878
  msgstr ""
1879
 
@@ -2036,7 +2048,7 @@ msgstr ""
2036
 
2037
  #: app/features/ix/sync.php:32 app/features/ix/sync.php:41
2038
  #: app/features/ix/sync.php:52 app/features/ix/sync.php:63
2039
- #: app/features/mec/notifications.php:531
2040
  msgid "Important Note"
2041
  msgstr ""
2042
 
@@ -2146,10 +2158,10 @@ msgstr ""
2146
  #: app/features/mec/meta_boxes/display_options.php:479
2147
  #: app/features/mec/meta_boxes/display_options.php:529
2148
  #: app/features/mec/meta_boxes/display_options.php:693
2149
- #: app/features/mec/meta_boxes/display_options.php:823
2150
- #: app/features/mec/meta_boxes/display_options.php:880
2151
- #: app/features/mec/meta_boxes/display_options.php:972
2152
- #: app/features/mec/meta_boxes/display_options.php:1058
2153
  msgid "Style"
2154
  msgstr ""
2155
 
@@ -2159,7 +2171,7 @@ msgstr ""
2159
 
2160
  #: app/features/labels.php:116 app/features/labels.php:141
2161
  #: app/skins/agenda/render.php:37 app/skins/available_spot/tpl.php:31
2162
- #: app/skins/carousel/render.php:58 app/skins/countdown/tpl.php:24
2163
  #: app/skins/cover/tpl.php:28 app/skins/daily_view/render.php:23
2164
  #: app/skins/grid/render.php:49 app/skins/list/render.php:36
2165
  #: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:82
@@ -2171,8 +2183,8 @@ msgid "Featured"
2171
  msgstr ""
2172
 
2173
  #: app/features/labels.php:117 app/features/labels.php:142
2174
- #: app/libraries/main.php:4707 app/skins/agenda/render.php:41
2175
- #: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:59
2176
  #: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
2177
  #: app/skins/daily_view/render.php:27 app/skins/grid/render.php:53
2178
  #: app/skins/list/render.php:40 app/skins/masonry/render.php:29
@@ -2205,8 +2217,8 @@ msgid "Event %s"
2205
  msgstr ""
2206
 
2207
  #: app/features/locations.php:59 app/features/mec.php:334
2208
- #: app/features/mec/dashboard.php:202 app/features/mec/meta_boxes/filter.php:87
2209
- #: app/libraries/main.php:4482
2210
  msgid "Locations"
2211
  msgstr ""
2212
 
@@ -2277,7 +2289,7 @@ msgstr ""
2277
  msgid "eg. City Hall"
2278
  msgstr ""
2279
 
2280
- #: app/features/locations.php:309 app/features/mec/settings.php:797
2281
  #: app/widgets/single.php:115
2282
  msgid "Event Location"
2283
  msgstr ""
@@ -2311,7 +2323,7 @@ msgstr ""
2311
  msgid "Don't show map in single event page"
2312
  msgstr ""
2313
 
2314
- #: app/features/locations.php:355 app/libraries/main.php:4516
2315
  msgid "Other Locations"
2316
  msgstr ""
2317
 
@@ -2353,14 +2365,14 @@ msgstr ""
2353
  msgid "Support"
2354
  msgstr ""
2355
 
2356
- #: app/features/mec.php:335 app/features/mec/dashboard.php:209
2357
  #: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
2358
- #: app/libraries/main.php:4484
2359
  msgid "Organizers"
2360
  msgstr ""
2361
 
2362
  #: app/features/mec.php:343 app/features/mec.php:363
2363
- #: app/features/mec/dashboard.php:195
2364
  msgid "Shortcodes"
2365
  msgstr ""
2366
 
@@ -2412,19 +2424,19 @@ msgstr ""
2412
  msgid "Search Form"
2413
  msgstr ""
2414
 
2415
- #: app/features/mec.php:817
2416
  msgid "Display content's images as Popup"
2417
  msgstr ""
2418
 
2419
- #: app/features/mec.php:830
2420
  msgid "Single Event Display Method"
2421
  msgstr ""
2422
 
2423
- #: app/features/mec.php:835
2424
  msgid "Separate Window"
2425
  msgstr ""
2426
 
2427
- #: app/features/mec.php:836
2428
  msgid "Modal 1"
2429
  msgstr ""
2430
 
@@ -2458,40 +2470,40 @@ msgid ""
2458
  "your host provider in this regard."
2459
  msgstr ""
2460
 
2461
- #: app/features/mec/booking.php:24 app/features/mec/booking.php:511
2462
- #: app/features/mec/booking.php:521 app/features/mec/booking.php:588
2463
- #: app/features/mec/booking.php:602 app/features/mec/gateways.php:11
2464
- #: app/features/mec/gateways.php:195 app/features/mec/gateways.php:204
2465
- #: app/features/mec/gateways.php:245 app/features/mec/gateways.php:255
2466
- #: app/features/mec/messages.php:11 app/features/mec/messages.php:202
2467
- #: app/features/mec/messages.php:211 app/features/mec/messages.php:245
2468
- #: app/features/mec/messages.php:254 app/features/mec/modules.php:22
2469
- #: app/features/mec/modules.php:542 app/features/mec/modules.php:552
2470
- #: app/features/mec/modules.php:619 app/features/mec/modules.php:633
2471
- #: app/features/mec/notifications.php:10 app/features/mec/notifications.php:644
2472
- #: app/features/mec/notifications.php:656
2473
- #: app/features/mec/notifications.php:752
2474
- #: app/features/mec/notifications.php:766 app/features/mec/regform.php:47
2475
- #: app/features/mec/regform.php:282 app/features/mec/regform.php:337
2476
- #: app/features/mec/regform.php:373 app/features/mec/regform.php:382
2477
- #: app/features/mec/settings.php:31 app/features/mec/settings.php:954
2478
- #: app/features/mec/settings.php:964 app/features/mec/settings.php:1047
2479
- #: app/features/mec/settings.php:1061 app/features/mec/single.php:14
2480
- #: app/features/mec/single.php:369 app/features/mec/single.php:379
2481
- #: app/features/mec/single.php:446 app/features/mec/single.php:460
2482
- #: app/features/mec/styles.php:11 app/features/mec/styles.php:188
2483
- #: app/features/mec/styles.php:197 app/features/mec/styles.php:234
2484
- #: app/features/mec/styles.php:243 app/features/mec/styling.php:33
2485
- #: app/features/mec/styling.php:395 app/features/mec/styling.php:404
2486
- #: app/features/mec/styling.php:467 app/features/mec/styling.php:476
2487
  msgid "Save Changes"
2488
  msgstr ""
2489
 
2490
  #: app/features/mec/booking.php:38 app/features/mec/gateways.php:29
2491
  #: app/features/mec/ie.php:25 app/features/mec/messages.php:29
2492
  #: app/features/mec/modules.php:36 app/features/mec/notifications.php:28
2493
- #: app/features/mec/regform.php:65 app/features/mec/settings.php:57
2494
- #: app/features/mec/settings.php:364 app/features/mec/single.php:28
2495
  #: app/features/mec/styles.php:29 app/features/mec/styling.php:51
2496
  msgid "Archive Pages"
2497
  msgstr ""
@@ -2499,343 +2511,380 @@ msgstr ""
2499
  #: app/features/mec/booking.php:43 app/features/mec/gateways.php:34
2500
  #: app/features/mec/ie.php:30 app/features/mec/messages.php:34
2501
  #: app/features/mec/modules.php:41 app/features/mec/notifications.php:33
2502
- #: app/features/mec/regform.php:70 app/features/mec/settings.php:87
2503
- #: app/features/mec/settings.php:870 app/features/mec/single.php:33
2504
  #: app/features/mec/styles.php:34 app/features/mec/styling.php:56
2505
  msgid "User Profile"
2506
  msgstr ""
2507
 
2508
- #: app/features/mec/booking.php:47 app/features/mec/gateways.php:38
2509
- #: app/features/mec/ie.php:34 app/features/mec/messages.php:38
2510
- #: app/features/mec/modules.php:45 app/features/mec/notifications.php:37
2511
- #: app/features/mec/regform.php:74 app/features/mec/settings.php:103
2512
- #: app/features/mec/single.php:37 app/features/mec/styles.php:38
2513
- #: app/features/mec/styling.php:60
 
 
 
 
 
 
 
 
 
2514
  msgid "Upload Field"
2515
  msgstr ""
2516
 
2517
- #: app/features/mec/booking.php:55 app/features/mec/gateways.php:46
2518
- #: app/features/mec/ie.php:42 app/features/mec/messages.php:46
2519
- #: app/features/mec/modules.php:53 app/features/mec/notifications.php:45
2520
- #: app/features/mec/regform.php:82 app/features/mec/settings.php:113
2521
- #: app/features/mec/single.php:49 app/features/mec/styles.php:46
2522
- #: app/features/mec/styling.php:68
2523
  msgid "Single Event"
2524
  msgstr ""
2525
 
2526
- #: app/features/mec/booking.php:59 app/features/mec/gateways.php:50
2527
- #: app/features/mec/ie.php:46 app/features/mec/messages.php:50
2528
- #: app/features/mec/modules.php:57 app/features/mec/notifications.php:49
2529
- #: app/features/mec/regform.php:86 app/features/mec/settings.php:117
2530
- #: app/features/mec/single.php:56 app/features/mec/single.php:213
2531
- #: app/features/mec/styles.php:50 app/features/mec/styling.php:72
2532
  msgid "Single Event Page"
2533
  msgstr ""
2534
 
2535
- #: app/features/mec/booking.php:62 app/features/mec/gateways.php:53
2536
- #: app/features/mec/ie.php:49 app/features/mec/messages.php:53
2537
- #: app/features/mec/modules.php:60 app/features/mec/notifications.php:52
2538
- #: app/features/mec/regform.php:89 app/features/mec/settings.php:120
2539
- #: app/features/mec/single.php:74 app/features/mec/single.php:348
2540
- #: app/features/mec/styles.php:53 app/features/mec/styling.php:75
2541
- msgid "Additional Organizers"
2542
- msgstr ""
2543
-
2544
  #: app/features/mec/booking.php:63 app/features/mec/gateways.php:54
2545
  #: app/features/mec/ie.php:50 app/features/mec/messages.php:54
2546
  #: app/features/mec/modules.php:61 app/features/mec/notifications.php:53
2547
- #: app/features/mec/regform.php:90 app/features/mec/settings.php:121
2548
- #: app/features/mec/single.php:80 app/features/mec/styles.php:54
2549
- #: app/features/mec/styling.php:76
2550
- msgid "Additional Locations"
2551
  msgstr ""
2552
 
2553
- #: app/features/mec/booking.php:98 app/features/mec/booking.php:348
2554
- #: app/features/mec/gateways.php:71 app/features/mec/ie.php:67
2555
- #: app/features/mec/messages.php:71 app/features/mec/modules.php:78
2556
- #: app/features/mec/notifications.php:70 app/features/mec/regform.php:107
2557
- #: app/features/mec/settings.php:138 app/features/mec/single.php:99
2558
- #: app/features/mec/styles.php:71 app/features/mec/styling.php:93
2559
- msgid "Taxes / Fees"
2560
  msgstr ""
2561
 
2562
- #: app/features/mec/booking.php:104 app/features/mec/booking.php:425
2563
  #: app/features/mec/gateways.php:72 app/features/mec/ie.php:68
2564
  #: app/features/mec/messages.php:72 app/features/mec/modules.php:79
2565
- #: app/features/mec/notifications.php:71 app/features/mec/regform.php:108
2566
- #: app/features/mec/settings.php:139 app/features/mec/single.php:100
2567
  #: app/features/mec/styles.php:72 app/features/mec/styling.php:94
2568
- msgid "Ticket Variations & Options"
2569
  msgstr ""
2570
 
2571
- #: app/features/mec/booking.php:118 app/features/mec/gateways.php:83
2572
- #: app/features/mec/ie.php:79 app/features/mec/messages.php:83
2573
- #: app/features/mec/modules.php:94 app/features/mec/notifications.php:82
2574
- #: app/features/mec/regform.php:119 app/features/mec/settings.php:150
2575
- #: app/features/mec/single.php:111 app/features/mec/styles.php:83
2576
- #: app/features/mec/styling.php:105
2577
- msgid "Modules"
2578
  msgstr ""
2579
 
2580
- #: app/features/mec/booking.php:126 app/features/mec/gateways.php:91
2581
- #: app/features/mec/ie.php:87 app/features/mec/messages.php:91
2582
- #: app/features/mec/modules.php:117 app/features/mec/modules.php:364
2583
- #: app/features/mec/notifications.php:90 app/features/mec/regform.php:127
2584
- #: app/features/mec/settings.php:158 app/features/mec/single.php:119
2585
- #: app/features/mec/styles.php:91 app/features/mec/styling.php:113
2586
- msgid "Export Options"
2587
  msgstr ""
2588
 
2589
  #: app/features/mec/booking.php:127 app/features/mec/gateways.php:92
2590
  #: app/features/mec/ie.php:88 app/features/mec/messages.php:92
2591
- #: app/features/mec/modules.php:123 app/features/mec/modules.php:391
2592
- #: app/features/mec/notifications.php:91 app/features/mec/regform.php:128
2593
- #: app/features/mec/settings.php:159 app/features/mec/single.php:120
2594
  #: app/features/mec/styles.php:92 app/features/mec/styling.php:114
 
 
 
 
 
 
 
 
 
2595
  #: app/modules/local-time/details.php:42 app/widgets/single.php:99
2596
  msgid "Local Time"
2597
  msgstr ""
2598
 
2599
- #: app/features/mec/booking.php:129 app/features/mec/gateways.php:94
2600
- #: app/features/mec/ie.php:90 app/features/mec/messages.php:94
2601
- #: app/features/mec/modules.php:131 app/features/mec/modules.php:405
2602
- #: app/features/mec/notifications.php:93 app/features/mec/regform.php:130
2603
- #: app/features/mec/settings.php:161 app/features/mec/single.php:122
2604
- #: app/features/mec/styles.php:94 app/features/mec/styling.php:116
2605
  #: app/modules/qrcode/details.php:38 app/widgets/single.php:155
2606
  msgid "QR Code"
2607
  msgstr ""
2608
 
2609
- #: app/features/mec/booking.php:130 app/features/mec/gateways.php:95
2610
- #: app/features/mec/ie.php:91 app/features/mec/messages.php:95
2611
- #: app/features/mec/modules.php:137 app/features/mec/modules.php:423
2612
- #: app/features/mec/notifications.php:94 app/features/mec/regform.php:131
2613
- #: app/features/mec/settings.php:162 app/features/mec/single.php:123
2614
- #: app/features/mec/styles.php:95 app/features/mec/styling.php:117
2615
- #: app/modules/weather/details.php:36
2616
  msgid "Weather"
2617
  msgstr ""
2618
 
2619
- #: app/features/mec/booking.php:133 app/features/mec/gateways.php:98
2620
- #: app/features/mec/ie.php:94 app/features/mec/messages.php:98
2621
- #: app/features/mec/modules.php:151 app/features/mec/modules.php:473
2622
- #: app/features/mec/notifications.php:97 app/features/mec/regform.php:134
2623
- #: app/features/mec/settings.php:165 app/features/mec/single.php:126
2624
- #: app/features/mec/styles.php:98 app/features/mec/styling.php:120
2625
  #: app/modules/next-event/details.php:82
2626
  msgid "Next Event"
2627
  msgstr ""
2628
 
2629
- #: app/features/mec/booking.php:168 app/features/mec/gateways.php:133
2630
- #: app/features/mec/ie.php:129 app/features/mec/messages.php:133
2631
- #: app/features/mec/modules.php:195 app/features/mec/notifications.php:142
2632
- #: app/features/mec/notifications.php:289 app/features/mec/regform.php:167
2633
- #: app/features/mec/settings.php:200 app/features/mec/single.php:161
2634
- #: app/features/mec/styles.php:133 app/features/mec/styling.php:155
2635
- msgid "Booking Verification"
2636
- msgstr ""
2637
-
2638
- #: app/features/mec/booking.php:169 app/features/mec/booking.php:304
2639
- #: app/features/mec/gateways.php:134 app/features/mec/ie.php:130
2640
- #: app/features/mec/messages.php:134 app/features/mec/modules.php:196
2641
- #: app/features/mec/notifications.php:148
2642
- #: app/features/mec/notifications.php:341 app/features/mec/regform.php:168
2643
- #: app/features/mec/settings.php:201 app/features/mec/single.php:162
2644
  #: app/features/mec/styles.php:134 app/features/mec/styling.php:156
2645
- msgid "Booking Confirmation"
2646
  msgstr ""
2647
 
2648
- #: app/features/mec/booking.php:170 app/features/mec/gateways.php:135
2649
- #: app/features/mec/ie.php:131 app/features/mec/messages.php:135
2650
- #: app/features/mec/modules.php:197 app/features/mec/notifications.php:154
2651
- #: app/features/mec/notifications.php:393 app/features/mec/regform.php:169
2652
- #: app/features/mec/settings.php:202 app/features/mec/single.php:163
 
2653
  #: app/features/mec/styles.php:135 app/features/mec/styling.php:157
2654
- msgid "Booking Cancellation"
2655
  msgstr ""
2656
 
2657
  #: app/features/mec/booking.php:171 app/features/mec/gateways.php:136
2658
  #: app/features/mec/ie.php:132 app/features/mec/messages.php:136
2659
- #: app/features/mec/modules.php:198 app/features/mec/notifications.php:160
2660
- #: app/features/mec/notifications.php:461 app/features/mec/regform.php:170
2661
- #: app/features/mec/settings.php:203 app/features/mec/single.php:164
2662
  #: app/features/mec/styles.php:136 app/features/mec/styling.php:158
2663
- msgid "Admin"
2664
  msgstr ""
2665
 
2666
  #: app/features/mec/booking.php:172 app/features/mec/gateways.php:137
2667
  #: app/features/mec/ie.php:133 app/features/mec/messages.php:137
2668
- #: app/features/mec/modules.php:199 app/features/mec/notifications.php:166
2669
- #: app/features/mec/notifications.php:521 app/features/mec/regform.php:171
2670
- #: app/features/mec/settings.php:204 app/features/mec/single.php:165
2671
  #: app/features/mec/styles.php:137 app/features/mec/styling.php:159
 
 
 
 
 
 
 
 
 
2672
  #: app/libraries/notifications.php:354
2673
  msgid "Booking Reminder"
2674
  msgstr ""
2675
 
2676
- #: app/features/mec/booking.php:174 app/features/mec/gateways.php:139
2677
- #: app/features/mec/ie.php:135 app/features/mec/messages.php:139
2678
- #: app/features/mec/modules.php:201 app/features/mec/notifications.php:172
2679
- #: app/features/mec/notifications.php:597 app/features/mec/regform.php:173
2680
- #: app/features/mec/settings.php:206 app/features/mec/single.php:167
2681
- #: app/features/mec/styles.php:139 app/features/mec/styling.php:161
2682
  #: app/features/mec/support-page.php:80
2683
  msgid "New Event"
2684
  msgstr ""
2685
 
2686
- #: app/features/mec/booking.php:182 app/features/mec/gateways.php:147
2687
- #: app/features/mec/ie.php:143 app/features/mec/messages.php:147
2688
- #: app/features/mec/modules.php:209 app/features/mec/notifications.php:183
2689
- #: app/features/mec/regform.php:181 app/features/mec/settings.php:214
2690
- #: app/features/mec/single.php:175 app/features/mec/styles.php:147
2691
- #: app/features/mec/styling.php:169 app/features/mec/support.php:52
2692
  msgid "Styling Options"
2693
  msgstr ""
2694
 
2695
- #: app/features/mec/booking.php:189 app/features/mec/gateways.php:154
2696
- #: app/features/mec/ie.php:150 app/features/mec/messages.php:154
2697
- #: app/features/mec/modules.php:216 app/features/mec/notifications.php:190
2698
- #: app/features/mec/regform.php:188 app/features/mec/settings.php:221
2699
- #: app/features/mec/single.php:182 app/features/mec/styles.php:154
2700
- #: app/features/mec/styling.php:176 app/features/mec/support.php:59
2701
  msgid "Custom CSS"
2702
  msgstr ""
2703
 
2704
- #: app/features/mec/booking.php:196 app/features/mec/gateways.php:161
2705
- #: app/features/mec/ie.php:157 app/features/mec/messages.php:161
2706
- #: app/features/mec/messages.php:181 app/features/mec/modules.php:223
2707
- #: app/features/mec/notifications.php:197 app/features/mec/regform.php:195
2708
- #: app/features/mec/settings.php:228 app/features/mec/single.php:189
2709
- #: app/features/mec/styles.php:161 app/features/mec/styling.php:183
2710
  #: app/features/mec/support.php:66
2711
  msgid "Messages"
2712
  msgstr ""
2713
 
2714
- #: app/features/mec/booking.php:227
2715
  msgid "Enable booking module"
2716
  msgstr ""
2717
 
2718
- #: app/features/mec/booking.php:228
2719
  msgid ""
2720
  "After enable it, you should reloading this page to see Payment Gateways on "
2721
  "settings and see a new menu on Dashboard"
2722
  msgstr ""
2723
 
2724
- #: app/features/mec/booking.php:233 app/features/mec/booking.php:238
2725
- #: app/features/mec/modules.php:491 app/features/mec/modules.php:496
2726
  msgid "Date Format"
2727
  msgstr ""
2728
 
2729
- #: app/features/mec/booking.php:239
2730
  msgid "Default is Y-m-d"
2731
  msgstr ""
2732
 
2733
- #: app/features/mec/booking.php:246
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2734
  msgid "Maximum Dates"
2735
  msgstr ""
2736
 
2737
- #: app/features/mec/booking.php:248
2738
  msgid "Default is 6"
2739
  msgstr ""
2740
 
2741
- #: app/features/mec/booking.php:252 app/features/mec/booking.php:262
2742
  msgid "Thank You Page"
2743
  msgstr ""
2744
 
2745
- #: app/features/mec/booking.php:263
2746
  msgid ""
2747
  "User redirects to this page after booking. Leave it empty if you want to "
2748
  "disable it."
2749
  msgstr ""
2750
 
2751
- #: app/features/mec/booking.php:274
2752
  msgid "Enable Express Attendees Form"
2753
  msgstr ""
2754
 
2755
- #: app/features/mec/booking.php:278 app/modules/booking/steps/form.php:49
2756
  msgid "Attendees Form"
2757
  msgstr ""
2758
 
2759
- #: app/features/mec/booking.php:279
2760
  msgid ""
2761
  "Users are able to apply first attendee information for other attendees in "
2762
  "the booking form."
2763
  msgstr ""
2764
 
2765
- #: app/features/mec/booking.php:285
 
 
 
 
2766
  msgid "Email verification"
2767
  msgstr ""
2768
 
2769
- #: app/features/mec/booking.php:291
2770
  msgid "Auto verification for free bookings"
2771
  msgstr ""
2772
 
2773
- #: app/features/mec/booking.php:300
2774
  msgid "Auto verification for paid bookings"
2775
  msgstr ""
2776
 
2777
- #: app/features/mec/booking.php:310
2778
  msgid "Auto confirmation for free bookings"
2779
  msgstr ""
2780
 
2781
- #: app/features/mec/booking.php:319
2782
  msgid "Auto confirmation for paid bookings"
2783
  msgstr ""
2784
 
2785
- #: app/features/mec/booking.php:338
2786
  msgid "Enable coupons module"
2787
  msgstr ""
2788
 
2789
- #: app/features/mec/booking.php:340
2790
  msgid ""
2791
  "After enable it, you should reloading this page to see a new menu on "
2792
  "Dashboard > Booking"
2793
  msgstr ""
2794
 
2795
- #: app/features/mec/booking.php:356
2796
  msgid "Enable taxes / fees module"
2797
  msgstr ""
2798
 
2799
- #: app/features/mec/booking.php:361
2800
  msgid "Add Fee"
2801
  msgstr ""
2802
 
2803
- #: app/features/mec/booking.php:433
2804
  msgid "Enable ticket options module"
2805
  msgstr ""
2806
 
2807
- #: app/features/mec/booking.php:438
2808
  msgid "Add Variation / Option"
2809
  msgstr ""
2810
 
2811
- #: app/features/mec/booking.php:566 app/features/mec/gateways.php:224
2812
- #: app/features/mec/messages.php:229 app/features/mec/modules.php:597
2813
- #: app/features/mec/notifications.php:730 app/features/mec/regform.php:357
2814
- #: app/features/mec/settings.php:1025 app/features/mec/single.php:424
2815
- #: app/features/mec/styles.php:217 app/features/mec/styling.php:449
2816
  msgid "Saved"
2817
  msgstr ""
2818
 
2819
- #: app/features/mec/booking.php:567 app/features/mec/gateways.php:225
2820
- #: app/features/mec/messages.php:230 app/features/mec/modules.php:598
2821
- #: app/features/mec/notifications.php:731 app/features/mec/regform.php:358
2822
- #: app/features/mec/settings.php:1026 app/features/mec/single.php:425
2823
- #: app/features/mec/styles.php:218 app/features/mec/styling.php:450
2824
  msgid "Settings Saved!"
2825
  msgstr ""
2826
 
2827
- #: app/features/mec/booking.php:569 app/features/mec/booking.php:591
2828
- #: app/features/mec/modules.php:600 app/features/mec/modules.php:622
2829
- #: app/features/mec/notifications.php:733
2830
- #: app/features/mec/notifications.php:755 app/features/mec/settings.php:1028
2831
- #: app/features/mec/settings.php:1050 app/features/mec/single.php:427
2832
- #: app/features/mec/single.php:449 app/libraries/main.php:4706
2833
  msgid "Verified"
2834
  msgstr ""
2835
 
2836
- #: app/features/mec/booking.php:593 app/features/mec/modules.php:624
2837
- #: app/features/mec/notifications.php:757 app/features/mec/settings.php:1052
2838
- #: app/features/mec/single.php:451
2839
  msgid "Please Refresh Page"
2840
  msgstr ""
2841
 
@@ -2898,84 +2947,98 @@ msgid ""
2898
  "code."
2899
  msgstr ""
2900
 
2901
- #: app/features/mec/dashboard.php:175
2902
  msgid "Activate Addons"
2903
  msgstr ""
2904
 
2905
- #: app/features/mec/dashboard.php:220 app/features/mec/settings.php:535
2906
  msgid "Upcoming Events"
2907
  msgstr ""
2908
 
2909
- #: app/features/mec/dashboard.php:244
2910
  msgid "Popular Gateways"
2911
  msgstr ""
2912
 
2913
- #: app/features/mec/dashboard.php:298
2914
  msgid "Total Bookings"
2915
  msgstr ""
2916
 
2917
- #: app/features/mec/dashboard.php:325
2918
  msgid "This Month"
2919
  msgstr ""
2920
 
2921
- #: app/features/mec/dashboard.php:326
2922
  msgid "Last Month"
2923
  msgstr ""
2924
 
2925
- #: app/features/mec/dashboard.php:327
2926
  msgid "This Year"
2927
  msgstr ""
2928
 
2929
- #: app/features/mec/dashboard.php:328
2930
  msgid "Last Year"
2931
  msgstr ""
2932
 
2933
- #: app/features/mec/dashboard.php:340
2934
  msgid "Bar"
2935
  msgstr ""
2936
 
2937
- #: app/features/mec/dashboard.php:341
2938
  msgid "Line"
2939
  msgstr ""
2940
 
2941
- #: app/features/mec/dashboard.php:343
2942
  msgid "Filter"
2943
  msgstr ""
2944
 
2945
- #: app/features/mec/dashboard.php:359
2946
  #, php-format
2947
  msgid "Total Sells (%s)"
2948
  msgstr ""
2949
 
2950
- #: app/features/mec/dashboard.php:380
2951
  msgid "Change Log"
2952
  msgstr ""
2953
 
2954
- #: app/features/mec/ie.php:178
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2955
  msgid ""
2956
  "Insert your backup files below and press import to restore your site's "
2957
  "options to the last backup."
2958
  msgstr ""
2959
 
2960
- #: app/features/mec/ie.php:179
2961
  msgid ""
2962
  "WARNING! Restoring backup will overwrite all of your current option values. "
2963
  "Caution Indeed."
2964
  msgstr ""
2965
 
2966
- #: app/features/mec/ie.php:182
2967
  msgid "Please paste your options here"
2968
  msgstr ""
2969
 
2970
- #: app/features/mec/ie.php:184
2971
  msgid "Import Settings"
2972
  msgstr ""
2973
 
2974
- #: app/features/mec/ie.php:194
2975
  msgid "Download Settings"
2976
  msgstr ""
2977
 
2978
- #: app/features/mec/messages.php:184
2979
  msgid ""
2980
  "You can change some MEC messages here simply. For example if you like to "
2981
  "change \"REGISTER\" button label, you can do it here. By the Way, if your "
@@ -2990,17 +3053,17 @@ msgstr ""
2990
  #: app/features/mec/meta_boxes/display_options.php:34
2991
  #: app/features/mec/meta_boxes/display_options.php:159
2992
  #: app/features/mec/meta_boxes/display_options.php:531
2993
- #: app/features/mec/meta_boxes/display_options.php:825
2994
- #: app/features/mec/settings.php:399 app/features/mec/settings.php:423
2995
- #: app/features/mec/settings.php:432 app/features/mec/settings.php:473
2996
- #: app/features/mec/settings.php:497 app/features/mec/settings.php:506
2997
  msgid "Classic"
2998
  msgstr ""
2999
 
3000
  #: app/features/mec/meta_boxes/display_options.php:35
3001
  #: app/features/mec/meta_boxes/display_options.php:161
3002
- #: app/features/mec/settings.php:424 app/features/mec/settings.php:434
3003
- #: app/features/mec/settings.php:498 app/features/mec/settings.php:508
3004
  msgid "Minimal"
3005
  msgstr ""
3006
 
@@ -3009,21 +3072,21 @@ msgstr ""
3009
  #: app/features/mec/meta_boxes/display_options.php:481
3010
  #: app/features/mec/meta_boxes/display_options.php:533
3011
  #: app/features/mec/meta_boxes/display_options.php:695
3012
- #: app/features/mec/meta_boxes/display_options.php:827
3013
- #: app/features/mec/settings.php:401 app/features/mec/settings.php:414
3014
- #: app/features/mec/settings.php:425 app/features/mec/settings.php:435
3015
- #: app/features/mec/settings.php:475 app/features/mec/settings.php:488
3016
- #: app/features/mec/settings.php:499 app/features/mec/settings.php:509
3017
  msgid "Modern"
3018
  msgstr ""
3019
 
3020
  #: app/features/mec/meta_boxes/display_options.php:37
3021
- #: app/features/mec/settings.php:426 app/features/mec/settings.php:500
3022
  msgid "Standard"
3023
  msgstr ""
3024
 
3025
  #: app/features/mec/meta_boxes/display_options.php:38
3026
- #: app/features/mec/settings.php:427 app/features/mec/settings.php:501
3027
  msgid "Accordion"
3028
  msgstr ""
3029
 
@@ -3033,8 +3096,8 @@ msgstr ""
3033
  #: app/features/mec/meta_boxes/display_options.php:588
3034
  #: app/features/mec/meta_boxes/display_options.php:621
3035
  #: app/features/mec/meta_boxes/display_options.php:768
3036
- #: app/features/mec/meta_boxes/display_options.php:983
3037
- #: app/features/mec/meta_boxes/display_options.php:1070
3038
  msgid "Today"
3039
  msgstr ""
3040
 
@@ -3044,8 +3107,8 @@ msgstr ""
3044
  #: app/features/mec/meta_boxes/display_options.php:589
3045
  #: app/features/mec/meta_boxes/display_options.php:622
3046
  #: app/features/mec/meta_boxes/display_options.php:769
3047
- #: app/features/mec/meta_boxes/display_options.php:984
3048
- #: app/features/mec/meta_boxes/display_options.php:1071
3049
  msgid "Tomorrow"
3050
  msgstr ""
3051
 
@@ -3059,8 +3122,8 @@ msgstr ""
3059
  #: app/features/mec/meta_boxes/display_options.php:658
3060
  #: app/features/mec/meta_boxes/display_options.php:704
3061
  #: app/features/mec/meta_boxes/display_options.php:770
3062
- #: app/features/mec/meta_boxes/display_options.php:985
3063
- #: app/features/mec/meta_boxes/display_options.php:1072
3064
  msgid "Start of Current Month"
3065
  msgstr ""
3066
 
@@ -3074,8 +3137,8 @@ msgstr ""
3074
  #: app/features/mec/meta_boxes/display_options.php:659
3075
  #: app/features/mec/meta_boxes/display_options.php:705
3076
  #: app/features/mec/meta_boxes/display_options.php:771
3077
- #: app/features/mec/meta_boxes/display_options.php:986
3078
- #: app/features/mec/meta_boxes/display_options.php:1073
3079
  msgid "Start of Next Month"
3080
  msgstr ""
3081
 
@@ -3090,8 +3153,8 @@ msgstr ""
3090
  #: app/features/mec/meta_boxes/display_options.php:660
3091
  #: app/features/mec/meta_boxes/display_options.php:706
3092
  #: app/features/mec/meta_boxes/display_options.php:772
3093
- #: app/features/mec/meta_boxes/display_options.php:987
3094
- #: app/features/mec/meta_boxes/display_options.php:1074
3095
  msgid "On a certain date"
3096
  msgstr ""
3097
 
@@ -3106,8 +3169,8 @@ msgstr ""
3106
  #: app/features/mec/meta_boxes/display_options.php:663
3107
  #: app/features/mec/meta_boxes/display_options.php:709
3108
  #: app/features/mec/meta_boxes/display_options.php:775
3109
- #: app/features/mec/meta_boxes/display_options.php:990
3110
- #: app/features/mec/meta_boxes/display_options.php:1077
3111
  #, php-format
3112
  msgid "eg. %s"
3113
  msgstr ""
@@ -3142,36 +3205,36 @@ msgstr ""
3142
  #: app/features/mec/meta_boxes/display_options.php:501
3143
  #: app/features/mec/meta_boxes/display_options.php:779
3144
  #: app/features/mec/meta_boxes/display_options.php:784
3145
- #: app/features/mec/meta_boxes/display_options.php:831
3146
- #: app/features/mec/meta_boxes/display_options.php:837
3147
- #: app/features/mec/meta_boxes/display_options.php:844
3148
- #: app/features/mec/meta_boxes/display_options.php:849
3149
- #: app/features/mec/meta_boxes/display_options.php:856
3150
- #: app/features/mec/meta_boxes/display_options.php:860
3151
- #: app/features/mec/meta_boxes/display_options.php:888
3152
- #: app/features/mec/meta_boxes/display_options.php:892
3153
- #: app/features/mec/meta_boxes/display_options.php:899
3154
- #: app/features/mec/meta_boxes/display_options.php:903
3155
- #: app/features/mec/meta_boxes/display_options.php:910
3156
- #: app/features/mec/meta_boxes/display_options.php:916
3157
- #: app/features/mec/meta_boxes/display_options.php:946
3158
- #: app/features/mec/meta_boxes/display_options.php:951
3159
- #: app/features/mec/meta_boxes/display_options.php:994
3160
- #: app/features/mec/meta_boxes/display_options.php:1000
3161
- #: app/features/mec/meta_boxes/display_options.php:1007
3162
- #: app/features/mec/meta_boxes/display_options.php:1011
3163
- #: app/features/mec/meta_boxes/display_options.php:1018
3164
- #: app/features/mec/meta_boxes/display_options.php:1022
3165
- #: app/features/mec/meta_boxes/display_options.php:1081
3166
- #: app/features/mec/meta_boxes/display_options.php:1087
3167
- #: app/features/mec/meta_boxes/display_options.php:1094
3168
- #: app/features/mec/meta_boxes/display_options.php:1100
3169
  #: app/features/mec/meta_boxes/display_options.php:1107
3170
- #: app/features/mec/meta_boxes/display_options.php:1113
3171
  #: app/features/mec/meta_boxes/display_options.php:1120
3172
- #: app/features/mec/meta_boxes/display_options.php:1126
3173
  #: app/features/mec/meta_boxes/display_options.php:1133
3174
- #: app/features/mec/meta_boxes/display_options.php:1139
 
 
 
3175
  msgid "Date Formats"
3176
  msgstr ""
3177
 
@@ -3187,11 +3250,11 @@ msgstr ""
3187
  #: app/features/mec/meta_boxes/display_options.php:86
3188
  #: app/features/mec/meta_boxes/display_options.php:224
3189
  #: app/features/mec/meta_boxes/display_options.php:248
3190
- #: app/features/mec/meta_boxes/display_options.php:1088
3191
- #: app/features/mec/meta_boxes/display_options.php:1101
3192
- #: app/features/mec/meta_boxes/display_options.php:1114
3193
- #: app/features/mec/meta_boxes/display_options.php:1127
3194
- #: app/features/mec/meta_boxes/display_options.php:1140
3195
  msgid "Default values are d, F and l"
3196
  msgstr ""
3197
 
@@ -3203,15 +3266,6 @@ msgstr ""
3203
  msgid "TDefault values are d and F"
3204
  msgstr ""
3205
 
3206
- #: app/features/mec/meta_boxes/display_options.php:115
3207
- #: app/features/mec/meta_boxes/display_options.php:276
3208
- #: app/features/mec/meta_boxes/display_options.php:332
3209
- #: app/features/mec/meta_boxes/display_options.php:791
3210
- #: app/features/mec/meta_boxes/display_options.php:1038
3211
- #: app/features/mec/meta_boxes/display_options.php:1146
3212
- msgid "Limit"
3213
- msgstr ""
3214
-
3215
  #: app/features/mec/meta_boxes/display_options.php:116
3216
  #: app/features/mec/meta_boxes/display_options.php:277
3217
  #: app/features/mec/meta_boxes/display_options.php:333
@@ -3220,14 +3274,15 @@ msgstr ""
3220
  #: app/features/mec/meta_boxes/display_options.php:634
3221
  #: app/features/mec/meta_boxes/display_options.php:668
3222
  #: app/features/mec/meta_boxes/display_options.php:714
3223
- #: app/features/mec/meta_boxes/display_options.php:1039
3224
- #: app/features/mec/meta_boxes/display_options.php:1147
3225
  msgid "eg. 6"
3226
  msgstr ""
3227
 
3228
  #: app/features/mec/meta_boxes/display_options.php:120
3229
  #: app/features/mec/meta_boxes/display_options.php:281
3230
  #: app/features/mec/meta_boxes/display_options.php:337
 
3231
  msgid "Load More Button"
3232
  msgstr ""
3233
 
@@ -3245,18 +3300,18 @@ msgstr ""
3245
  #: app/features/mec/meta_boxes/display_options.php:385
3246
  #: app/features/mec/meta_boxes/display_options.php:532
3247
  #: app/features/mec/meta_boxes/display_options.php:696
3248
- #: app/features/mec/meta_boxes/display_options.php:826
3249
- #: app/features/mec/settings.php:400 app/features/mec/settings.php:415
3250
- #: app/features/mec/settings.php:433 app/features/mec/settings.php:474
3251
- #: app/features/mec/settings.php:489 app/features/mec/settings.php:507
3252
  msgid "Clean"
3253
  msgstr ""
3254
 
3255
  #: app/features/mec/meta_boxes/display_options.php:163
3256
  #: app/features/mec/meta_boxes/display_options.php:387
3257
  #: app/features/mec/meta_boxes/display_options.php:535
3258
- #: app/features/mec/settings.php:403 app/features/mec/settings.php:436
3259
- #: app/features/mec/settings.php:477 app/features/mec/settings.php:510
3260
  msgid "Simple"
3261
  msgstr ""
3262
 
@@ -3267,8 +3322,8 @@ msgstr ""
3267
  #: app/features/mec/meta_boxes/display_options.php:165
3268
  #: app/features/mec/meta_boxes/display_options.php:386
3269
  #: app/features/mec/meta_boxes/display_options.php:534
3270
- #: app/features/mec/settings.php:402 app/features/mec/settings.php:438
3271
- #: app/features/mec/settings.php:476 app/features/mec/settings.php:512
3272
  msgid "Novel"
3273
  msgstr ""
3274
 
@@ -3289,7 +3344,7 @@ msgid "Default value is \"d F Y\""
3289
  msgstr ""
3290
 
3291
  #: app/features/mec/meta_boxes/display_options.php:265
3292
- #: app/features/mec/meta_boxes/display_options.php:1029
3293
  msgid "Count in row"
3294
  msgstr ""
3295
 
@@ -3297,7 +3352,7 @@ msgstr ""
3297
  #: app/features/mec/meta_boxes/display_options.php:474
3298
  #: app/features/mec/meta_boxes/display_options.php:581
3299
  #: app/features/mec/meta_boxes/display_options.php:688
3300
- #: app/features/mec/meta_boxes/display_options.php:941
3301
  #, php-format
3302
  msgid "%s is required to use this skin."
3303
  msgstr ""
@@ -3313,15 +3368,15 @@ msgstr ""
3313
 
3314
  #: app/features/mec/meta_boxes/display_options.php:375
3315
  #: app/features/mec/meta_boxes/display_options.php:396
3316
- #: app/libraries/main.php:329 app/libraries/main.php:1241
3317
- #: app/libraries/main.php:1266
3318
  msgid "List View"
3319
  msgstr ""
3320
 
3321
  #: app/features/mec/meta_boxes/display_options.php:376
3322
  #: app/features/mec/meta_boxes/display_options.php:406
3323
- #: app/libraries/main.php:333 app/libraries/main.php:1235
3324
- #: app/libraries/main.php:1260
3325
  msgid "Yearly View"
3326
  msgstr ""
3327
 
@@ -3332,15 +3387,15 @@ msgstr ""
3332
 
3333
  #: app/features/mec/meta_boxes/display_options.php:378
3334
  #: app/features/mec/meta_boxes/display_options.php:438
3335
- #: app/libraries/main.php:336 app/libraries/main.php:1237
3336
- #: app/libraries/main.php:1262
3337
  msgid "Weekly View"
3338
  msgstr ""
3339
 
3340
  #: app/features/mec/meta_boxes/display_options.php:379
3341
  #: app/features/mec/meta_boxes/display_options.php:448
3342
- #: app/libraries/main.php:335 app/libraries/main.php:1238
3343
- #: app/libraries/main.php:1263
3344
  msgid "Daily View"
3345
  msgstr ""
3346
 
@@ -3439,7 +3494,7 @@ msgid "Inherite from WordPress options"
3439
  msgstr ""
3440
 
3441
  #: app/features/mec/meta_boxes/display_options.php:785
3442
- #: app/features/mec/meta_boxes/display_options.php:952
3443
  msgid "Default values are j and F"
3444
  msgstr ""
3445
 
@@ -3456,103 +3511,113 @@ msgid "None"
3456
  msgstr ""
3457
 
3458
  #: app/features/mec/meta_boxes/display_options.php:806
3459
- msgid "Convert Masonry to Grid"
3460
  msgstr ""
3461
 
3462
  #: app/features/mec/meta_boxes/display_options.php:807
 
 
 
 
 
 
 
 
 
 
3463
  msgid "For using this option, your events should come with image"
3464
  msgstr ""
3465
 
3466
- #: app/features/mec/meta_boxes/display_options.php:838
3467
  msgid "Default values are d, M and Y"
3468
  msgstr ""
3469
 
3470
- #: app/features/mec/meta_boxes/display_options.php:850
3471
  msgid "Default values are \"F d\" and l"
3472
  msgstr ""
3473
 
3474
- #: app/features/mec/meta_boxes/display_options.php:861
3475
  msgid "Default value is \"l, F d Y\""
3476
  msgstr ""
3477
 
3478
- #: app/features/mec/meta_boxes/display_options.php:882
3479
  msgid "Style 1"
3480
  msgstr ""
3481
 
3482
- #: app/features/mec/meta_boxes/display_options.php:883
3483
  msgid "Style 2"
3484
  msgstr ""
3485
 
3486
- #: app/features/mec/meta_boxes/display_options.php:884
3487
  msgid "Style 3"
3488
  msgstr ""
3489
 
3490
- #: app/features/mec/meta_boxes/display_options.php:893
3491
- #: app/features/mec/meta_boxes/display_options.php:904
3492
  msgid "Default value is \"j F Y\""
3493
  msgstr ""
3494
 
3495
- #: app/features/mec/meta_boxes/display_options.php:917
3496
  msgid "Default values are j, F and Y"
3497
  msgstr ""
3498
 
3499
- #: app/features/mec/meta_boxes/display_options.php:925
3500
- #: app/features/mec/meta_boxes/display_options.php:960
3501
  msgid " -- Next Upcoming Event -- "
3502
  msgstr ""
3503
 
3504
- #: app/features/mec/meta_boxes/display_options.php:932
3505
  msgid "Background Color"
3506
  msgstr ""
3507
 
3508
- #: app/features/mec/meta_boxes/display_options.php:974
3509
- #: app/features/mec/meta_boxes/display_options.php:1060
3510
  msgid "Type 1"
3511
  msgstr ""
3512
 
3513
- #: app/features/mec/meta_boxes/display_options.php:975
3514
- #: app/features/mec/meta_boxes/display_options.php:1061
3515
  msgid "Type 2"
3516
  msgstr ""
3517
 
3518
- #: app/features/mec/meta_boxes/display_options.php:976
3519
- #: app/features/mec/meta_boxes/display_options.php:1062
3520
  msgid "Type 3"
3521
  msgstr ""
3522
 
3523
- #: app/features/mec/meta_boxes/display_options.php:977
3524
- #: app/features/mec/meta_boxes/display_options.php:1063
3525
  msgid "Type 4"
3526
  msgstr ""
3527
 
3528
- #: app/features/mec/meta_boxes/display_options.php:1001
3529
  msgid "Default values are d, F and Y"
3530
  msgstr ""
3531
 
3532
- #: app/features/mec/meta_boxes/display_options.php:1012
3533
- #: app/features/mec/meta_boxes/display_options.php:1023
3534
  msgid "Default value is \"M d, Y\""
3535
  msgstr ""
3536
 
3537
- #: app/features/mec/meta_boxes/display_options.php:1042
3538
- #: app/features/mec/meta_boxes/display_options.php:1150
3539
  msgid "Auto Play Time"
3540
  msgstr ""
3541
 
3542
- #: app/features/mec/meta_boxes/display_options.php:1043
3543
- #: app/features/mec/meta_boxes/display_options.php:1151
3544
  msgid "eg. 3000 default is 3 second"
3545
  msgstr ""
3546
 
3547
- #: app/features/mec/meta_boxes/display_options.php:1047
3548
  msgid "Archive Link"
3549
  msgstr ""
3550
 
3551
- #: app/features/mec/meta_boxes/display_options.php:1051
3552
  msgid "Head Text"
3553
  msgstr ""
3554
 
3555
- #: app/features/mec/meta_boxes/display_options.php:1064
3556
  msgid "Type 5"
3557
  msgstr ""
3558
 
@@ -3588,33 +3653,33 @@ msgstr ""
3588
  msgid "Choose your desired authors for filtering the events."
3589
  msgstr ""
3590
 
3591
- #: app/features/mec/meta_boxes/filter.php:165
3592
  msgid "Dates"
3593
  msgstr ""
3594
 
3595
- #: app/features/mec/meta_boxes/filter.php:169
3596
  msgid "Include Expired Events"
3597
  msgstr ""
3598
 
3599
- #: app/features/mec/meta_boxes/filter.php:177
3600
  msgid ""
3601
  "You have ability to include past/expired events if you like so it will show "
3602
  "upcoming and expired events based on start date that you selected."
3603
  msgstr ""
3604
 
3605
- #: app/features/mec/meta_boxes/filter.php:182
3606
  msgid "Show Only Expired Events"
3607
  msgstr ""
3608
 
3609
- #: app/features/mec/meta_boxes/filter.php:190
3610
  msgid "It shows only expired/past events."
3611
  msgstr ""
3612
 
3613
- #: app/features/mec/meta_boxes/filter.php:196
3614
  msgid "Show Only Ongoing Events"
3615
  msgstr ""
3616
 
3617
- #: app/features/mec/meta_boxes/filter.php:204
3618
  msgid "It shows only ongoing events on List and Grid skins."
3619
  msgstr ""
3620
 
@@ -3630,390 +3695,391 @@ msgstr ""
3630
  #: app/features/mec/meta_boxes/search_form.php:68
3631
  #: app/features/mec/meta_boxes/search_form.php:75
3632
  #: app/features/mec/meta_boxes/search_form.php:82
3633
- #: app/features/mec/meta_boxes/search_form.php:94
3634
- #: app/features/mec/meta_boxes/search_form.php:101
3635
- #: app/features/mec/meta_boxes/search_form.php:108
3636
- #: app/features/mec/meta_boxes/search_form.php:115
3637
- #: app/features/mec/meta_boxes/search_form.php:122
3638
- #: app/features/mec/meta_boxes/search_form.php:129
3639
- #: app/features/mec/meta_boxes/search_form.php:136
3640
- #: app/features/mec/meta_boxes/search_form.php:143
3641
- #: app/features/mec/meta_boxes/search_form.php:155
3642
- #: app/features/mec/meta_boxes/search_form.php:162
3643
- #: app/features/mec/meta_boxes/search_form.php:169
3644
- #: app/features/mec/meta_boxes/search_form.php:176
3645
- #: app/features/mec/meta_boxes/search_form.php:183
3646
- #: app/features/mec/meta_boxes/search_form.php:190
3647
- #: app/features/mec/meta_boxes/search_form.php:197
3648
- #: app/features/mec/meta_boxes/search_form.php:204
3649
- #: app/features/mec/meta_boxes/search_form.php:216
3650
- #: app/features/mec/meta_boxes/search_form.php:223
3651
- #: app/features/mec/meta_boxes/search_form.php:230
3652
- #: app/features/mec/meta_boxes/search_form.php:237
3653
- #: app/features/mec/meta_boxes/search_form.php:244
3654
- #: app/features/mec/meta_boxes/search_form.php:251
3655
- #: app/features/mec/meta_boxes/search_form.php:258
3656
- #: app/features/mec/meta_boxes/search_form.php:265
3657
- #: app/features/mec/meta_boxes/search_form.php:277
3658
- #: app/features/mec/meta_boxes/search_form.php:284
3659
- #: app/features/mec/meta_boxes/search_form.php:291
3660
- #: app/features/mec/meta_boxes/search_form.php:298
3661
- #: app/features/mec/meta_boxes/search_form.php:305
3662
- #: app/features/mec/meta_boxes/search_form.php:312
3663
- #: app/features/mec/meta_boxes/search_form.php:319
3664
- #: app/features/mec/meta_boxes/search_form.php:326
3665
- #: app/features/mec/meta_boxes/search_form.php:338
3666
- #: app/features/mec/meta_boxes/search_form.php:345
3667
- #: app/features/mec/meta_boxes/search_form.php:352
3668
- #: app/features/mec/meta_boxes/search_form.php:359
3669
- #: app/features/mec/meta_boxes/search_form.php:366
3670
- #: app/features/mec/meta_boxes/search_form.php:373
3671
- #: app/features/mec/meta_boxes/search_form.php:380
3672
- #: app/features/mec/meta_boxes/search_form.php:387
3673
- #: app/features/mec/meta_boxes/search_form.php:399
3674
- #: app/features/mec/meta_boxes/search_form.php:406
3675
- #: app/features/mec/meta_boxes/search_form.php:413
3676
- #: app/features/mec/meta_boxes/search_form.php:420
3677
- #: app/features/mec/meta_boxes/search_form.php:427
3678
- #: app/features/mec/meta_boxes/search_form.php:434
3679
- #: app/features/mec/meta_boxes/search_form.php:441
3680
- #: app/features/mec/meta_boxes/search_form.php:453
3681
- #: app/features/mec/meta_boxes/search_form.php:460
3682
- #: app/features/mec/meta_boxes/search_form.php:467
3683
- #: app/features/mec/meta_boxes/search_form.php:474
3684
- #: app/features/mec/meta_boxes/search_form.php:481
3685
- #: app/features/mec/meta_boxes/search_form.php:488
3686
- #: app/features/mec/meta_boxes/search_form.php:495
3687
- #: app/features/mec/meta_boxes/search_form.php:502
3688
- #: app/features/mec/meta_boxes/search_form.php:514
3689
- #: app/features/mec/meta_boxes/search_form.php:521
3690
- #: app/features/mec/meta_boxes/search_form.php:528
3691
- #: app/features/mec/meta_boxes/search_form.php:535
3692
- #: app/features/mec/meta_boxes/search_form.php:542
3693
- #: app/features/mec/meta_boxes/search_form.php:549
3694
- #: app/features/mec/meta_boxes/search_form.php:556
3695
- #: app/features/mec/meta_boxes/search_form.php:563
3696
- #: app/features/mec/meta_boxes/search_form.php:575
3697
- #: app/features/mec/meta_boxes/search_form.php:582
3698
- #: app/features/mec/meta_boxes/search_form.php:589
3699
- #: app/features/mec/meta_boxes/search_form.php:596
3700
- #: app/features/mec/meta_boxes/search_form.php:603
3701
- #: app/features/mec/meta_boxes/search_form.php:610
3702
- #: app/features/mec/meta_boxes/search_form.php:617
3703
- #: app/features/mec/meta_boxes/search_form.php:624
3704
- #: app/features/mec/modules.php:322 app/features/mec/settings.php:297
3705
- #: app/features/mec/settings.php:553
3706
  msgid "Disabled"
3707
  msgstr ""
3708
 
3709
  #: app/features/mec/meta_boxes/search_form.php:52
3710
- #: app/features/mec/meta_boxes/search_form.php:113
3711
- #: app/features/mec/meta_boxes/search_form.php:174
3712
- #: app/features/mec/meta_boxes/search_form.php:235
3713
- #: app/features/mec/meta_boxes/search_form.php:296
3714
- #: app/features/mec/meta_boxes/search_form.php:357
3715
- #: app/features/mec/meta_boxes/search_form.php:418
3716
- #: app/features/mec/meta_boxes/search_form.php:472
3717
- #: app/features/mec/meta_boxes/search_form.php:533
3718
- #: app/features/mec/meta_boxes/search_form.php:594 app/features/speakers.php:56
3719
- #: app/features/speakers.php:243 app/libraries/main.php:4487
3720
- #: app/libraries/skins.php:859
 
3721
  msgid "Speaker"
3722
  msgstr ""
3723
 
3724
  #: app/features/mec/meta_boxes/search_form.php:59
3725
- #: app/features/mec/meta_boxes/search_form.php:120
3726
- #: app/features/mec/meta_boxes/search_form.php:181
3727
- #: app/features/mec/meta_boxes/search_form.php:242
3728
- #: app/features/mec/meta_boxes/search_form.php:303
3729
- #: app/features/mec/meta_boxes/search_form.php:364
3730
- #: app/features/mec/meta_boxes/search_form.php:425
3731
- #: app/features/mec/meta_boxes/search_form.php:479
3732
- #: app/features/mec/meta_boxes/search_form.php:540
3733
- #: app/features/mec/meta_boxes/search_form.php:601 app/libraries/skins.php:885
 
3734
  msgid "Tag"
3735
  msgstr ""
3736
 
3737
  #: app/features/mec/meta_boxes/search_form.php:73
3738
- #: app/features/mec/meta_boxes/search_form.php:134
3739
- #: app/features/mec/meta_boxes/search_form.php:195
3740
- #: app/features/mec/meta_boxes/search_form.php:256
3741
- #: app/features/mec/meta_boxes/search_form.php:317
3742
- #: app/features/mec/meta_boxes/search_form.php:378
3743
- #: app/features/mec/meta_boxes/search_form.php:493
3744
- #: app/features/mec/meta_boxes/search_form.php:554
3745
- #: app/features/mec/meta_boxes/search_form.php:615
3746
  msgid "Month Filter"
3747
  msgstr ""
3748
 
3749
  #: app/features/mec/meta_boxes/search_form.php:80
3750
- #: app/features/mec/meta_boxes/search_form.php:141
3751
- #: app/features/mec/meta_boxes/search_form.php:202
3752
- #: app/features/mec/meta_boxes/search_form.php:263
3753
- #: app/features/mec/meta_boxes/search_form.php:324
3754
- #: app/features/mec/meta_boxes/search_form.php:385
3755
- #: app/features/mec/meta_boxes/search_form.php:439
3756
- #: app/features/mec/meta_boxes/search_form.php:500
3757
- #: app/features/mec/meta_boxes/search_form.php:561
3758
- #: app/features/mec/meta_boxes/search_form.php:622
3759
  msgid "Text Search"
3760
  msgstr ""
3761
 
3762
  #: app/features/mec/meta_boxes/search_form.php:83
3763
- #: app/features/mec/meta_boxes/search_form.php:144
3764
- #: app/features/mec/meta_boxes/search_form.php:205
3765
- #: app/features/mec/meta_boxes/search_form.php:266
3766
- #: app/features/mec/meta_boxes/search_form.php:327
3767
- #: app/features/mec/meta_boxes/search_form.php:388
3768
- #: app/features/mec/meta_boxes/search_form.php:442
3769
- #: app/features/mec/meta_boxes/search_form.php:503
3770
- #: app/features/mec/meta_boxes/search_form.php:564
3771
- #: app/features/mec/meta_boxes/search_form.php:625
3772
  msgid "Text Input"
3773
  msgstr ""
3774
 
3775
- #: app/features/mec/meta_boxes/search_form.php:633
3776
- #: app/features/mec/meta_boxes/search_form.php:639
3777
- #: app/features/mec/meta_boxes/search_form.php:645
3778
- #: app/features/mec/meta_boxes/search_form.php:651
3779
- #: app/features/mec/meta_boxes/search_form.php:657
3780
- #: app/features/mec/meta_boxes/search_form.php:663
3781
  msgid "No Search Options"
3782
  msgstr ""
3783
 
3784
- #: app/features/mec/modules.php:247
3785
  msgid "Speakers Options"
3786
  msgstr ""
3787
 
3788
- #: app/features/mec/modules.php:253
3789
  msgid "Enable speakers feature"
3790
  msgstr ""
3791
 
3792
- #: app/features/mec/modules.php:255
3793
  msgid ""
3794
  "After enable it, you should reloading this page to see a new menu on "
3795
  "Dashboard > MEC"
3796
  msgstr ""
3797
 
3798
- #: app/features/mec/modules.php:272
3799
  msgid "Show Google Maps on event page"
3800
  msgstr ""
3801
 
3802
- #: app/features/mec/modules.php:277 app/features/mec/modules.php:435
3803
- #: app/features/mec/settings.php:888 app/features/mec/settings.php:893
3804
  msgid "API Key"
3805
  msgstr ""
3806
 
3807
- #: app/features/mec/modules.php:283 app/features/mec/settings.php:894
3808
- #: app/features/mec/settings.php:907
3809
  msgid "Required!"
3810
  msgstr ""
3811
 
3812
- #: app/features/mec/modules.php:290 app/features/mec/modules.php:299
3813
  msgid "Zoom level"
3814
  msgstr ""
3815
 
3816
- #: app/features/mec/modules.php:300
3817
  msgid ""
3818
  "For Google Maps module in single event page. In Google Maps skin, it will "
3819
  "caculate the zoom level automatically based on event boundaries."
3820
  msgstr ""
3821
 
3822
- #: app/features/mec/modules.php:307
3823
  msgid "Google Maps Style"
3824
  msgstr ""
3825
 
3826
- #: app/features/mec/modules.php:311 app/features/mec/single.php:266
3827
  msgid "Default"
3828
  msgstr ""
3829
 
3830
- #: app/features/mec/modules.php:319
3831
  msgid "Direction on single event"
3832
  msgstr ""
3833
 
3834
- #: app/features/mec/modules.php:323
3835
  msgid "Simple Method"
3836
  msgstr ""
3837
 
3838
- #: app/features/mec/modules.php:324
3839
  msgid "Advanced Method"
3840
  msgstr ""
3841
 
3842
- #: app/features/mec/modules.php:329 app/features/mec/modules.php:334
3843
  msgid "Lightbox Date Format"
3844
  msgstr ""
3845
 
3846
- #: app/features/mec/modules.php:335
3847
  msgid "Default value is M d Y"
3848
  msgstr ""
3849
 
3850
- #: app/features/mec/modules.php:342 app/features/mec/modules.php:350
3851
  msgid "Google Maps API"
3852
  msgstr ""
3853
 
3854
- #: app/features/mec/modules.php:346
3855
  msgid "Don't load Google Maps API library"
3856
  msgstr ""
3857
 
3858
- #: app/features/mec/modules.php:351
3859
  msgid "Check it only if another plugin/theme is loading the Google Maps API"
3860
  msgstr ""
3861
 
3862
- #: app/features/mec/modules.php:368
3863
  msgid ""
3864
  "Show export module (iCal export and add to Google calendars) on event page"
3865
  msgstr ""
3866
 
3867
- #: app/features/mec/modules.php:375
3868
  msgid "Google Calendar"
3869
  msgstr ""
3870
 
3871
- #: app/features/mec/modules.php:395
3872
  msgid "Show event time based on local time of visitor on event page"
3873
  msgstr ""
3874
 
3875
- #: app/features/mec/modules.php:413
3876
  msgid "Show QR code of event in details page and booking invoice"
3877
  msgstr ""
3878
 
3879
- #: app/features/mec/modules.php:430
3880
  msgid "Show weather module on event page"
3881
  msgstr ""
3882
 
3883
- #: app/features/mec/modules.php:438
3884
  #, php-format
3885
  msgid "You can get a free API Key from %s"
3886
  msgstr ""
3887
 
3888
- #: app/features/mec/modules.php:452
 
 
 
 
 
 
 
 
3889
  msgid "Show social network module"
3890
  msgstr ""
3891
 
3892
- #: app/features/mec/modules.php:477
3893
  msgid "Show next event module on event page"
3894
  msgstr ""
3895
 
3896
- #: app/features/mec/modules.php:482
3897
  msgid "Method"
3898
  msgstr ""
3899
 
3900
- #: app/features/mec/modules.php:485
3901
  msgid "Next Occurrence of Current Event"
3902
  msgstr ""
3903
 
3904
- #: app/features/mec/modules.php:486
3905
  msgid "Next Occurrence of Other Events"
3906
  msgstr ""
3907
 
3908
- #: app/features/mec/modules.php:497 app/features/mec/single.php:221
3909
  msgid "Default is M d Y"
3910
  msgstr ""
3911
 
3912
- #: app/features/mec/modules.php:513
3913
  msgid "Enable BuddyPress Integration"
3914
  msgstr ""
3915
 
3916
- #: app/features/mec/modules.php:520
3917
  msgid "Show \"Attendees Module\" in event details page"
3918
  msgstr ""
3919
 
3920
- #: app/features/mec/modules.php:524
3921
  msgid "Attendees Limit"
3922
  msgstr ""
3923
 
3924
- #: app/features/mec/modules.php:532
3925
  msgid "Add booking activity to user profile"
3926
  msgstr ""
3927
 
3928
- #: app/features/mec/notifications.php:229
3929
  msgid "Enable booking notification"
3930
  msgstr ""
3931
 
3932
- #: app/features/mec/notifications.php:233
3933
  msgid "It sends to attendee after booking for notifying him/her."
3934
  msgstr ""
3935
 
3936
- #: app/features/mec/notifications.php:235
3937
- #: app/features/mec/notifications.php:292
3938
- #: app/features/mec/notifications.php:344
3939
- #: app/features/mec/notifications.php:403
3940
- #: app/features/mec/notifications.php:471
3941
- #: app/features/mec/notifications.php:534
3942
- #: app/features/mec/notifications.php:607
3943
  msgid "Email Subject"
3944
  msgstr ""
3945
 
3946
- #: app/features/mec/notifications.php:239
3947
- #: app/features/mec/notifications.php:243
3948
- #: app/features/mec/notifications.php:296
3949
- #: app/features/mec/notifications.php:300
3950
- #: app/features/mec/notifications.php:348
3951
- #: app/features/mec/notifications.php:352
3952
- #: app/features/mec/notifications.php:407
3953
- #: app/features/mec/notifications.php:411
3954
- #: app/features/mec/notifications.php:475
3955
- #: app/features/mec/notifications.php:479
3956
- #: app/features/mec/notifications.php:538
3957
- #: app/features/mec/notifications.php:542
3958
- #: app/features/mec/notifications.php:553
3959
- #: app/features/mec/notifications.php:611
3960
- #: app/features/mec/notifications.php:615
3961
- msgid "Custom Recipients"
3962
- msgstr ""
3963
-
3964
  #: app/features/mec/notifications.php:244
 
3965
  #: app/features/mec/notifications.php:301
 
3966
  #: app/features/mec/notifications.php:353
 
3967
  #: app/features/mec/notifications.php:412
 
3968
  #: app/features/mec/notifications.php:480
 
3969
  #: app/features/mec/notifications.php:543
3970
  #: app/features/mec/notifications.php:554
 
3971
  #: app/features/mec/notifications.php:616
 
 
 
 
 
 
 
 
 
 
 
3972
  msgid "Insert comma separated emails for multiple recipients."
3973
  msgstr ""
3974
 
3975
- #: app/features/mec/notifications.php:251
3976
- #: app/features/mec/notifications.php:423
3977
- #: app/features/mec/notifications.php:487
3978
  msgid "Send the email to event organizer"
3979
  msgstr ""
3980
 
3981
- #: app/features/mec/notifications.php:254
3982
- #: app/features/mec/notifications.php:307
3983
- #: app/features/mec/notifications.php:359
3984
- #: app/features/mec/notifications.php:430
3985
- #: app/features/mec/notifications.php:490
3986
- #: app/features/mec/notifications.php:560
3987
- #: app/features/mec/notifications.php:622
3988
  msgid "Email Content"
3989
  msgstr ""
3990
 
3991
- #: app/features/mec/notifications.php:257
3992
- #: app/features/mec/notifications.php:310
3993
- #: app/features/mec/notifications.php:362
3994
- #: app/features/mec/notifications.php:433
3995
- #: app/features/mec/notifications.php:493
3996
- #: app/features/mec/notifications.php:563
3997
- #: app/features/mec/notifications.php:625
3998
  msgid "You can use following placeholders"
3999
  msgstr ""
4000
 
4001
- #: app/features/mec/notifications.php:259
4002
- #: app/features/mec/notifications.php:312
4003
- #: app/features/mec/notifications.php:364
4004
- #: app/features/mec/notifications.php:435
4005
- #: app/features/mec/notifications.php:495
4006
- #: app/features/mec/notifications.php:565
4007
- msgid "First name of attendee"
4008
- msgstr ""
4009
-
4010
  #: app/features/mec/notifications.php:260
4011
  #: app/features/mec/notifications.php:313
4012
  #: app/features/mec/notifications.php:365
4013
  #: app/features/mec/notifications.php:436
4014
  #: app/features/mec/notifications.php:496
4015
  #: app/features/mec/notifications.php:566
4016
- msgid "Last name of attendee"
4017
  msgstr ""
4018
 
4019
  #: app/features/mec/notifications.php:261
@@ -4022,7 +4088,7 @@ msgstr ""
4022
  #: app/features/mec/notifications.php:437
4023
  #: app/features/mec/notifications.php:497
4024
  #: app/features/mec/notifications.php:567
4025
- msgid "Email of attendee"
4026
  msgstr ""
4027
 
4028
  #: app/features/mec/notifications.php:262
@@ -4031,7 +4097,7 @@ msgstr ""
4031
  #: app/features/mec/notifications.php:438
4032
  #: app/features/mec/notifications.php:498
4033
  #: app/features/mec/notifications.php:568
4034
- msgid "Booked date of event"
4035
  msgstr ""
4036
 
4037
  #: app/features/mec/notifications.php:263
@@ -4040,7 +4106,7 @@ msgstr ""
4040
  #: app/features/mec/notifications.php:439
4041
  #: app/features/mec/notifications.php:499
4042
  #: app/features/mec/notifications.php:569
4043
- msgid "Booked time of event"
4044
  msgstr ""
4045
 
4046
  #: app/features/mec/notifications.php:264
@@ -4049,7 +4115,7 @@ msgstr ""
4049
  #: app/features/mec/notifications.php:440
4050
  #: app/features/mec/notifications.php:500
4051
  #: app/features/mec/notifications.php:570
4052
- msgid "Booking Price"
4053
  msgstr ""
4054
 
4055
  #: app/features/mec/notifications.php:265
@@ -4058,8 +4124,7 @@ msgstr ""
4058
  #: app/features/mec/notifications.php:441
4059
  #: app/features/mec/notifications.php:501
4060
  #: app/features/mec/notifications.php:571
4061
- #: app/features/mec/notifications.php:631
4062
- msgid "Your website title"
4063
  msgstr ""
4064
 
4065
  #: app/features/mec/notifications.php:266
@@ -4069,7 +4134,7 @@ msgstr ""
4069
  #: app/features/mec/notifications.php:502
4070
  #: app/features/mec/notifications.php:572
4071
  #: app/features/mec/notifications.php:632
4072
- msgid "Your website URL"
4073
  msgstr ""
4074
 
4075
  #: app/features/mec/notifications.php:267
@@ -4079,7 +4144,7 @@ msgstr ""
4079
  #: app/features/mec/notifications.php:503
4080
  #: app/features/mec/notifications.php:573
4081
  #: app/features/mec/notifications.php:633
4082
- msgid "Your website description"
4083
  msgstr ""
4084
 
4085
  #: app/features/mec/notifications.php:268
@@ -4088,7 +4153,8 @@ msgstr ""
4088
  #: app/features/mec/notifications.php:444
4089
  #: app/features/mec/notifications.php:504
4090
  #: app/features/mec/notifications.php:574
4091
- msgid "Event title"
 
4092
  msgstr ""
4093
 
4094
  #: app/features/mec/notifications.php:269
@@ -4097,7 +4163,7 @@ msgstr ""
4097
  #: app/features/mec/notifications.php:445
4098
  #: app/features/mec/notifications.php:505
4099
  #: app/features/mec/notifications.php:575
4100
- msgid "Event link"
4101
  msgstr ""
4102
 
4103
  #: app/features/mec/notifications.php:270
@@ -4106,7 +4172,7 @@ msgstr ""
4106
  #: app/features/mec/notifications.php:446
4107
  #: app/features/mec/notifications.php:506
4108
  #: app/features/mec/notifications.php:576
4109
- msgid "Speaker name of booked event"
4110
  msgstr ""
4111
 
4112
  #: app/features/mec/notifications.php:271
@@ -4115,7 +4181,7 @@ msgstr ""
4115
  #: app/features/mec/notifications.php:447
4116
  #: app/features/mec/notifications.php:507
4117
  #: app/features/mec/notifications.php:577
4118
- msgid "Organizer name of booked event"
4119
  msgstr ""
4120
 
4121
  #: app/features/mec/notifications.php:272
@@ -4124,7 +4190,7 @@ msgstr ""
4124
  #: app/features/mec/notifications.php:448
4125
  #: app/features/mec/notifications.php:508
4126
  #: app/features/mec/notifications.php:578
4127
- msgid "Organizer tel of booked event"
4128
  msgstr ""
4129
 
4130
  #: app/features/mec/notifications.php:273
@@ -4133,7 +4199,7 @@ msgstr ""
4133
  #: app/features/mec/notifications.php:449
4134
  #: app/features/mec/notifications.php:509
4135
  #: app/features/mec/notifications.php:579
4136
- msgid "Organizer email of booked event"
4137
  msgstr ""
4138
 
4139
  #: app/features/mec/notifications.php:274
@@ -4142,7 +4208,7 @@ msgstr ""
4142
  #: app/features/mec/notifications.php:450
4143
  #: app/features/mec/notifications.php:510
4144
  #: app/features/mec/notifications.php:580
4145
- msgid "Location name of booked event"
4146
  msgstr ""
4147
 
4148
  #: app/features/mec/notifications.php:275
@@ -4151,104 +4217,113 @@ msgstr ""
4151
  #: app/features/mec/notifications.php:451
4152
  #: app/features/mec/notifications.php:511
4153
  #: app/features/mec/notifications.php:581
4154
- msgid "Location address of booked event"
4155
  msgstr ""
4156
 
4157
  #: app/features/mec/notifications.php:276
4158
- #: app/features/mec/notifications.php:453
4159
- #: app/features/mec/notifications.php:513
4160
- msgid "Full Attendee info such as booking form data, name, email etc."
 
 
 
4161
  msgstr ""
4162
 
4163
  #: app/features/mec/notifications.php:277
4164
- #: app/features/mec/notifications.php:382
4165
- #: app/features/mec/notifications.php:583
4166
- msgid "Invoice Link"
4167
  msgstr ""
4168
 
4169
  #: app/features/mec/notifications.php:278
4170
- #: app/features/mec/notifications.php:330
4171
  #: app/features/mec/notifications.php:383
4172
- #: app/features/mec/notifications.php:454
4173
- #: app/features/mec/notifications.php:514
4174
  #: app/features/mec/notifications.php:584
4175
- msgid "Total Attendees"
4176
  msgstr ""
4177
 
4178
  #: app/features/mec/notifications.php:279
4179
  #: app/features/mec/notifications.php:331
4180
  #: app/features/mec/notifications.php:384
 
 
4181
  #: app/features/mec/notifications.php:585
4182
- msgid "Ticket name"
4183
  msgstr ""
4184
 
4185
  #: app/features/mec/notifications.php:280
4186
  #: app/features/mec/notifications.php:332
4187
  #: app/features/mec/notifications.php:385
4188
  #: app/features/mec/notifications.php:586
4189
- msgid "Ticket time"
4190
  msgstr ""
4191
 
4192
  #: app/features/mec/notifications.php:281
4193
  #: app/features/mec/notifications.php:333
4194
  #: app/features/mec/notifications.php:386
4195
  #: app/features/mec/notifications.php:587
 
 
 
 
 
 
 
4196
  msgid "Download ICS file"
4197
  msgstr ""
4198
 
4199
- #: app/features/mec/notifications.php:290
4200
  msgid "It sends to attendee email for verifying their booking/email."
4201
  msgstr ""
4202
 
4203
- #: app/features/mec/notifications.php:329
4204
  msgid "Email/Booking verification link."
4205
  msgstr ""
4206
 
4207
- #: app/features/mec/notifications.php:342
4208
  msgid "It sends to attendee after confirming the booking by admin."
4209
  msgstr ""
4210
 
4211
- #: app/features/mec/notifications.php:381
4212
- #: app/features/mec/notifications.php:582
4213
  msgid "Booking cancellation link."
4214
  msgstr ""
4215
 
4216
- #: app/features/mec/notifications.php:397
4217
  msgid "Enable cancellation notification"
4218
  msgstr ""
4219
 
4220
- #: app/features/mec/notifications.php:401
4221
  msgid ""
4222
  "It sends to selected recipients after booking cancellation for notifying "
4223
  "them."
4224
  msgstr ""
4225
 
4226
- #: app/features/mec/notifications.php:419
4227
  msgid "Send the email to admin"
4228
  msgstr ""
4229
 
4230
- #: app/features/mec/notifications.php:427
4231
  msgid "Send the email to booking user"
4232
  msgstr ""
4233
 
4234
- #: app/features/mec/notifications.php:452
4235
- #: app/features/mec/notifications.php:512
4236
  msgid "Admin booking management link."
4237
  msgstr ""
4238
 
4239
- #: app/features/mec/notifications.php:465
4240
  msgid "Enable admin notification"
4241
  msgstr ""
4242
 
4243
- #: app/features/mec/notifications.php:469
4244
  msgid "It sends to admin to notify him/her that a new booking received."
4245
  msgstr ""
4246
 
4247
- #: app/features/mec/notifications.php:525
4248
  msgid "Enable booking reminder notification"
4249
  msgstr ""
4250
 
4251
- #: app/features/mec/notifications.php:531
4252
  #, php-format
4253
  msgid ""
4254
  "Set a cronjob to call %s file once per day otherwise it won't send the "
@@ -4256,370 +4331,370 @@ msgid ""
4256
  "send the reminders multiple times."
4257
  msgstr ""
4258
 
4259
- #: app/features/mec/notifications.php:531
4260
  msgid "only once per day"
4261
  msgstr ""
4262
 
4263
- #: app/features/mec/notifications.php:549
4264
  msgid "Days"
4265
  msgstr ""
4266
 
4267
- #: app/features/mec/notifications.php:601
4268
  msgid "Enable new event notification"
4269
  msgstr ""
4270
 
4271
- #: app/features/mec/notifications.php:605
4272
  msgid ""
4273
  "It sends after adding a new event from frontend event submission or from "
4274
  "website backend."
4275
  msgstr ""
4276
 
4277
- #: app/features/mec/notifications.php:627
4278
  msgid "Title of event"
4279
  msgstr ""
4280
 
4281
- #: app/features/mec/notifications.php:628
4282
  msgid "Link of event"
4283
  msgstr ""
4284
 
4285
- #: app/features/mec/notifications.php:629
4286
  msgid "Status of event"
4287
  msgstr ""
4288
 
4289
- #: app/features/mec/notifications.php:630 app/features/mec/settings.php:839
4290
- #: app/features/mec/settings.php:843
4291
  msgid "Event Note"
4292
  msgstr ""
4293
 
4294
- #: app/features/mec/notifications.php:634
4295
  msgid "Admin events management link."
4296
  msgstr ""
4297
 
4298
- #: app/features/mec/settings.php:255 app/features/mec/settings.php:265
4299
  msgid "Hide Events"
4300
  msgstr ""
4301
 
4302
- #: app/features/mec/settings.php:258
4303
  msgid "On Event Start"
4304
  msgstr ""
4305
 
4306
- #: app/features/mec/settings.php:259
4307
  msgid "+1 Hour after start"
4308
  msgstr ""
4309
 
4310
- #: app/features/mec/settings.php:260
4311
  msgid "+2 Hours after start"
4312
  msgstr ""
4313
 
4314
- #: app/features/mec/settings.php:261
4315
  msgid "On Event End"
4316
  msgstr ""
4317
 
4318
- #: app/features/mec/settings.php:266
4319
  msgid ""
4320
  "This option is for showing start/end time of events on frontend of website."
4321
  msgstr ""
4322
 
4323
- #: app/features/mec/settings.php:275 app/features/mec/settings.php:284
4324
  msgid "Multiple Day Events"
4325
  msgstr ""
4326
 
4327
- #: app/features/mec/settings.php:278
4328
  msgid "Show only first day on List/Grid/Slider skins"
4329
  msgstr ""
4330
 
4331
- #: app/features/mec/settings.php:279
4332
  msgid "Show only first day on all skins"
4333
  msgstr ""
4334
 
4335
- #: app/features/mec/settings.php:280
4336
  msgid "Show all days"
4337
  msgstr ""
4338
 
4339
- #: app/features/mec/settings.php:285
4340
  msgid ""
4341
  "For showing all days of multiple day events on frontend or only show the "
4342
  "first day."
4343
  msgstr ""
4344
 
4345
- #: app/features/mec/settings.php:294
4346
  msgid "Remove MEC Data on Plugin Uninstall"
4347
  msgstr ""
4348
 
4349
- #: app/features/mec/settings.php:298
4350
  msgid "Enabled"
4351
  msgstr ""
4352
 
4353
- #: app/features/mec/settings.php:304
4354
  msgid "Exclude Date Suffix"
4355
  msgstr ""
4356
 
4357
- #: app/features/mec/settings.php:307
4358
  msgid "Remove suffix from calendars"
4359
  msgstr ""
4360
 
4361
- #: app/features/mec/settings.php:311
4362
  msgid "Remove \"Th\" on calendar"
4363
  msgstr ""
4364
 
4365
- #: app/features/mec/settings.php:312
4366
  msgid ""
4367
  "Checked this checkbox to remove 'Th' on calendar ( ex: '12Th' remove Th, "
4368
  "showing just '12' )"
4369
  msgstr ""
4370
 
4371
- #: app/features/mec/settings.php:321 app/features/mec/settings.php:331
4372
- #: app/libraries/main.php:4491
4373
  msgid "Weekdays"
4374
  msgstr ""
4375
 
4376
- #: app/features/mec/settings.php:332
4377
  msgid ""
4378
  "Proceed with caution. Default is set to Monday, Tuesday, Wednesday, Thursday "
4379
  "and Friday ( you can change 'Week Starts' on WordPress Dashboard > Settings "
4380
  "> General - bottom of the page )."
4381
  msgstr ""
4382
 
4383
- #: app/features/mec/settings.php:342 app/features/mec/settings.php:352
4384
  msgid "Weekends"
4385
  msgstr ""
4386
 
4387
- #: app/features/mec/settings.php:353
4388
  msgid ""
4389
  "Proceed with caution. Default is set to Saturday and Sunday ( you can change "
4390
  "'Week Starts' on WordPress Dashboard > Settings > General - bottom of the "
4391
  "page )."
4392
  msgstr ""
4393
 
4394
- #: app/features/mec/settings.php:367 app/features/mec/settings.php:372
4395
  msgid "Archive Page Title"
4396
  msgstr ""
4397
 
4398
- #: app/features/mec/settings.php:373
4399
  msgid "Default value is Events - It's title of the page"
4400
  msgstr ""
4401
 
4402
- #: app/features/mec/settings.php:381 app/features/mec/settings.php:449
4403
  msgid "Archive Page Skin"
4404
  msgstr ""
4405
 
4406
- #: app/features/mec/settings.php:389
4407
  msgid "Put shortcode..."
4408
  msgstr ""
4409
 
4410
- #: app/features/mec/settings.php:392 app/features/mec/settings.php:407
4411
- #: app/features/mec/settings.php:410 app/features/mec/settings.php:419
4412
- #: app/features/mec/settings.php:445 app/features/mec/settings.php:466
4413
- #: app/features/mec/settings.php:481 app/features/mec/settings.php:484
4414
- #: app/features/mec/settings.php:493 app/features/mec/settings.php:519
4415
  msgid "There is no skins"
4416
  msgstr ""
4417
 
4418
- #: app/features/mec/settings.php:395 app/features/mec/settings.php:469
4419
- #: app/features/mec/single.php:248
4420
  msgid "Modern Style"
4421
  msgstr ""
4422
 
4423
- #: app/features/mec/settings.php:437 app/features/mec/settings.php:511
4424
  msgid "colorful"
4425
  msgstr ""
4426
 
4427
- #: app/features/mec/settings.php:442 app/features/mec/settings.php:516
4428
  msgid "Clean Style"
4429
  msgstr ""
4430
 
4431
- #: app/features/mec/settings.php:450
4432
  msgid "Default value is Calendar/Monthly View, But you can change it "
4433
  msgstr ""
4434
 
4435
- #: app/features/mec/settings.php:450 app/features/mec/settings.php:524
4436
  msgid "See Demo"
4437
  msgstr ""
4438
 
4439
- #: app/features/mec/settings.php:458 app/features/mec/settings.php:523
4440
  msgid "Category Page Skin"
4441
  msgstr ""
4442
 
4443
- #: app/features/mec/settings.php:524
4444
  msgid ""
4445
  "Default value is List View - But you can change it Set a skin for all "
4446
  "categories."
4447
  msgstr ""
4448
 
4449
- #: app/features/mec/settings.php:532 app/features/mec/settings.php:540
4450
  msgid "Category Events Method"
4451
  msgstr ""
4452
 
4453
- #: app/features/mec/settings.php:536
4454
  msgid "Expired Events"
4455
  msgstr ""
4456
 
4457
- #: app/features/mec/settings.php:541
4458
  msgid "Default value is Upcoming Events"
4459
  msgstr ""
4460
 
4461
- #: app/features/mec/settings.php:549 app/features/mec/settings.php:557
4462
  msgid "Events Archive Status"
4463
  msgstr ""
4464
 
4465
- #: app/features/mec/settings.php:552
4466
  msgid "Enabled (Recommended)"
4467
  msgstr ""
4468
 
4469
- #: app/features/mec/settings.php:558
4470
  msgid ""
4471
  "If you disable it, then you should create a page as archive page of MEC. "
4472
  "Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
4473
  "MEC rewrite rules."
4474
  msgstr ""
4475
 
4476
- #: app/features/mec/settings.php:571 app/features/mec/settings.php:576
4477
  msgid "Main Slug"
4478
  msgstr ""
4479
 
4480
- #: app/features/mec/settings.php:577
4481
  msgid ""
4482
  "Default value is events. You can not have a page with this name. MEC allows "
4483
  "you to create custom URLs for the permalinks and archives to enhance the "
4484
  "applicability and forward-compatibility of the links."
4485
  msgstr ""
4486
 
4487
- #: app/features/mec/settings.php:581 app/features/mec/settings.php:595
4488
  msgid "Valid characters are lowercase a-z, - character and numbers."
4489
  msgstr ""
4490
 
4491
- #: app/features/mec/settings.php:585 app/features/mec/settings.php:590
4492
  msgid "Category Slug"
4493
  msgstr ""
4494
 
4495
- #: app/features/mec/settings.php:591
4496
  msgid ""
4497
  "It's slug of MEC categories, you can change it to events-cat or something "
4498
  "else. Default value is mec-category. You can not have a page with this name."
4499
  msgstr ""
4500
 
4501
- #: app/features/mec/settings.php:603
4502
  msgid "Currency"
4503
  msgstr ""
4504
 
4505
- #: app/features/mec/settings.php:613 app/features/mec/settings.php:618
4506
  msgid "Currency Sign"
4507
  msgstr ""
4508
 
4509
- #: app/features/mec/settings.php:619
4510
  msgid "Default value will be \"currency\" if you leave it empty."
4511
  msgstr ""
4512
 
4513
- #: app/features/mec/settings.php:626
4514
  msgid "Currency Position"
4515
  msgstr ""
4516
 
4517
- #: app/features/mec/settings.php:629
4518
  msgid "Before $10"
4519
  msgstr ""
4520
 
4521
- #: app/features/mec/settings.php:630
4522
  msgid "After 10$"
4523
  msgstr ""
4524
 
4525
- #: app/features/mec/settings.php:635
4526
  msgid "Thousand Separator"
4527
  msgstr ""
4528
 
4529
- #: app/features/mec/settings.php:641
4530
  msgid "Decimal Separator"
4531
  msgstr ""
4532
 
4533
- #: app/features/mec/settings.php:651
4534
  msgid "No decimal"
4535
  msgstr ""
4536
 
4537
- #: app/features/mec/settings.php:662
4538
  msgid "Enable Google Recaptcha"
4539
  msgstr ""
4540
 
4541
- #: app/features/mec/settings.php:669
4542
  msgid "Enable on booking form"
4543
  msgstr ""
4544
 
4545
- #: app/features/mec/settings.php:675
4546
  msgid "Enable on \"Frontend Event Submission\" form"
4547
  msgstr ""
4548
 
4549
- #: app/features/mec/settings.php:679
4550
  msgid "Site Key"
4551
  msgstr ""
4552
 
4553
- #: app/features/mec/settings.php:685
4554
  msgid "Secret Key"
4555
  msgstr ""
4556
 
4557
- #: app/features/mec/settings.php:697 app/features/mec/settings.php:705
4558
  msgid "Time Format"
4559
  msgstr ""
4560
 
4561
- #: app/features/mec/settings.php:700
4562
  msgid "12 hours format with AM/PM"
4563
  msgstr ""
4564
 
4565
- #: app/features/mec/settings.php:701
4566
  msgid "24 hours format"
4567
  msgstr ""
4568
 
4569
- #: app/features/mec/settings.php:706
4570
  msgid "This option, affects the selection of Start/End time."
4571
  msgstr ""
4572
 
4573
- #: app/features/mec/settings.php:714
4574
  msgid "Events List Page"
4575
  msgstr ""
4576
 
4577
- #: app/features/mec/settings.php:723 app/features/mec/settings.php:735
4578
  #, php-format
4579
  msgid "Put %s shortcode into the page."
4580
  msgstr ""
4581
 
4582
- #: app/features/mec/settings.php:726
4583
  msgid "Add/Edit Events Page"
4584
  msgstr ""
4585
 
4586
- #: app/features/mec/settings.php:740
4587
  msgid "Enable event submission by guest (Not logged-in) users"
4588
  msgstr ""
4589
 
4590
- #: app/features/mec/settings.php:747
4591
  msgid "Enable mandatory email and name for guest user"
4592
  msgstr ""
4593
 
4594
- #: app/features/mec/settings.php:751
4595
  msgid "Frontend Event Submission Sections"
4596
  msgstr ""
4597
 
4598
- #: app/features/mec/settings.php:773 app/widgets/single.php:119
4599
  msgid "Event Categories"
4600
  msgstr ""
4601
 
4602
- #: app/features/mec/settings.php:779
4603
  msgid "Event Labels"
4604
  msgstr ""
4605
 
4606
- #: app/features/mec/settings.php:791
4607
  msgid "Event Tags"
4608
  msgstr ""
4609
 
4610
- #: app/features/mec/settings.php:803 app/widgets/single.php:123
4611
  msgid "Event Organizer"
4612
  msgstr ""
4613
 
4614
- #: app/features/mec/settings.php:821
4615
  msgid "Booking Options"
4616
  msgstr ""
4617
 
4618
- #: app/features/mec/settings.php:827
4619
  msgid "Fees / Taxes Options"
4620
  msgstr ""
4621
 
4622
- #: app/features/mec/settings.php:844
4623
  #, php-format
4624
  msgid ""
4625
  "Users can put a note for editors while they're submitting the event. Also "
@@ -4627,211 +4702,221 @@ msgid ""
4627
  "users' note in email."
4628
  msgstr ""
4629
 
4630
- #: app/features/mec/settings.php:851 app/features/mec/settings.php:860
4631
  msgid "Visibility of Note"
4632
  msgstr ""
4633
 
4634
- #: app/features/mec/settings.php:854
4635
  msgid "Always"
4636
  msgstr ""
4637
 
4638
- #: app/features/mec/settings.php:855
4639
  msgid "While event is not published"
4640
  msgstr ""
4641
 
4642
- #: app/features/mec/settings.php:861
4643
  msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
4644
  msgstr ""
4645
 
4646
- #: app/features/mec/settings.php:872
4647
  #, php-format
4648
  msgid ""
4649
  "Put %s shortcode into your desired page. Then users are able to see history "
4650
  "of their bookings."
4651
  msgstr ""
4652
 
4653
- #: app/features/mec/settings.php:883
 
 
 
 
 
 
 
 
 
 
4654
  msgid "Enable Mailchimp Integration"
4655
  msgstr ""
4656
 
4657
- #: app/features/mec/settings.php:901 app/features/mec/settings.php:906
4658
  msgid "List ID"
4659
  msgstr ""
4660
 
4661
- #: app/features/mec/settings.php:914 app/features/mec/settings.php:922
4662
  msgid "Subscription Status"
4663
  msgstr ""
4664
 
4665
- #: app/features/mec/settings.php:917
4666
  msgid "Subscribe automatically"
4667
  msgstr ""
4668
 
4669
- #: app/features/mec/settings.php:918
4670
  msgid "Subscribe by verification"
4671
  msgstr ""
4672
 
4673
- #: app/features/mec/settings.php:923
4674
  msgid ""
4675
  "If you choose \"Subscribe by verification\" then an email will send to user "
4676
  "by mailchimp for subscription verification."
4677
  msgstr ""
4678
 
4679
- #: app/features/mec/settings.php:935
4680
  msgid "Upload Field Options"
4681
  msgstr ""
4682
 
4683
- #: app/features/mec/settings.php:937
4684
  msgid "Mime types"
4685
  msgstr ""
4686
 
4687
- #: app/features/mec/settings.php:941
4688
  msgid "Split mime types with \",\"."
4689
  msgstr ""
4690
 
4691
- #: app/features/mec/settings.php:941
4692
  msgid "Default: jpeg,jpg,png,pdf"
4693
  msgstr ""
4694
 
4695
- #: app/features/mec/settings.php:944
4696
  msgid "Maximum file size"
4697
  msgstr ""
4698
 
4699
- #: app/features/mec/settings.php:948
4700
  msgid "The unit is Megabyte \"MB\""
4701
  msgstr ""
4702
 
4703
- #: app/features/mec/single.php:215 app/features/mec/single.php:220
4704
  msgid "Single Event Date Format"
4705
  msgstr ""
4706
 
4707
- #: app/features/mec/single.php:228 app/features/mec/single.php:236
4708
  msgid "Date Method"
4709
  msgstr ""
4710
 
4711
- #: app/features/mec/single.php:231
4712
  msgid "Next occurrence date"
4713
  msgstr ""
4714
 
4715
- #: app/features/mec/single.php:232
4716
  msgid "Referred date"
4717
  msgstr ""
4718
 
4719
- #: app/features/mec/single.php:237
4720
  msgid ""
4721
  "Referred date\" shows the event date based on referred date in event list."
4722
  msgstr ""
4723
 
4724
- #: app/features/mec/single.php:244 app/features/mec/single.php:255
4725
  msgid "Single Event Style"
4726
  msgstr ""
4727
 
4728
- #: app/features/mec/single.php:247
4729
  msgid "Default Style"
4730
  msgstr ""
4731
 
4732
- #: app/features/mec/single.php:250
4733
  msgid "Elementor Single Builder"
4734
  msgstr ""
4735
 
4736
- #: app/features/mec/single.php:256
4737
  msgid "Choose your single event style."
4738
  msgstr ""
4739
 
4740
- #: app/features/mec/single.php:263 app/features/mec/single.php:271
4741
  msgid "Booking Style"
4742
  msgstr ""
4743
 
4744
- #: app/features/mec/single.php:267
4745
  msgid "Modal"
4746
  msgstr ""
4747
 
4748
- #: app/features/mec/single.php:272
4749
  msgid ""
4750
  "Choose your Booking style, Please Note: When you set this feature to modal "
4751
  "you can not see booking box if you set popoup module view on shortcodes"
4752
  msgstr ""
4753
 
4754
- #: app/features/mec/single.php:279
4755
  msgid "Disable Block Editor (Gutenberg)"
4756
  msgstr ""
4757
 
4758
- #: app/features/mec/single.php:282
4759
  msgid "Disable Block Editor"
4760
  msgstr ""
4761
 
4762
- #: app/features/mec/single.php:286
4763
  msgid "Block Editor"
4764
  msgstr ""
4765
 
4766
- #: app/features/mec/single.php:287
4767
  msgid ""
4768
  "If you want to use the new WordPress block editor you should keep this "
4769
  "checkbox unchecked."
4770
  msgstr ""
4771
 
4772
- #: app/features/mec/single.php:293 app/features/mec/single.php:300
4773
  msgid "Breadcrumbs"
4774
  msgstr ""
4775
 
4776
- #: app/features/mec/single.php:296
4777
  msgid "Enable Breadcrumbs."
4778
  msgstr ""
4779
 
4780
- #: app/features/mec/single.php:301
4781
  msgid "Check this option, for showing the breadcrumbs on single event page"
4782
  msgstr ""
4783
 
4784
- #: app/features/mec/single.php:314
4785
  msgid "Show countdown module on event page"
4786
  msgstr ""
4787
 
4788
- #: app/features/mec/single.php:319
4789
  msgid "Countdown Style"
4790
  msgstr ""
4791
 
4792
- #: app/features/mec/single.php:322
4793
  msgid "Plain Style"
4794
  msgstr ""
4795
 
4796
- #: app/features/mec/single.php:323
4797
  msgid "Flip Style"
4798
  msgstr ""
4799
 
4800
- #: app/features/mec/single.php:331 app/features/mec/single.php:338
4801
  msgid "Exceptional days"
4802
  msgstr ""
4803
 
4804
- #: app/features/mec/single.php:335
4805
  msgid "Show exceptional days option on Add/Edit events page"
4806
  msgstr ""
4807
 
4808
- #: app/features/mec/single.php:339
4809
  msgid ""
4810
  "Using this option you can include/exclude certain days to/from event "
4811
  "occurrence dates."
4812
  msgstr ""
4813
 
4814
- #: app/features/mec/single.php:352
4815
  msgid ""
4816
  "Show additional organizers option on Add/Edit events page and single event "
4817
  "page."
4818
  msgstr ""
4819
 
4820
- #: app/features/mec/single.php:358
4821
  msgid "Additional locations"
4822
  msgstr ""
4823
 
4824
- #: app/features/mec/single.php:362
4825
  msgid ""
4826
  "Show additional locations option on Add/Edit events page and single event "
4827
  "page."
4828
  msgstr ""
4829
 
4830
- #: app/features/mec/styles.php:181
4831
  msgid "Custom Styles"
4832
  msgstr ""
4833
 
4834
- #: app/features/mec/styles.php:186
4835
  msgid ""
4836
  "If you're a developer or you have some knowledge about CSS codes, you can "
4837
  "place your desired styles codes here. These codes will be included in your "
@@ -4839,74 +4924,74 @@ msgid ""
4839
  "styles."
4840
  msgstr ""
4841
 
4842
- #: app/features/mec/styling.php:10 app/features/mec/styling.php:311
4843
- #: app/features/mec/styling.php:337
4844
  msgid "Default Font"
4845
  msgstr ""
4846
 
4847
- #: app/features/mec/styling.php:203
4848
  msgid "Styling Option"
4849
  msgstr ""
4850
 
4851
- #: app/features/mec/styling.php:208
4852
  msgid "Color Skin"
4853
  msgstr ""
4854
 
4855
- #: app/features/mec/styling.php:211
4856
  msgid "Predefined Color Skin"
4857
  msgstr ""
4858
 
4859
- #: app/features/mec/styling.php:254
4860
  msgid "Custom Color Skin"
4861
  msgstr ""
4862
 
4863
- #: app/features/mec/styling.php:260
4864
  msgid ""
4865
  "If you want to select a predefined color skin, you must clear the color of "
4866
  "this item"
4867
  msgstr ""
4868
 
4869
- #: app/features/mec/styling.php:265
4870
  msgid "Advanced Color Options (shortcodes)"
4871
  msgstr ""
4872
 
4873
- #: app/features/mec/styling.php:277
4874
  msgid "Title Hover"
4875
  msgstr ""
4876
 
4877
- #: app/features/mec/styling.php:294
4878
  msgid "Typography"
4879
  msgstr ""
4880
 
4881
- #: app/features/mec/styling.php:296
4882
  msgid "Heading (Events Title) Font Family"
4883
  msgstr ""
4884
 
4885
- #: app/features/mec/styling.php:322
4886
  msgid "Paragraph Font Family"
4887
  msgstr ""
4888
 
4889
- #: app/features/mec/styling.php:349 app/features/mec/styling.php:355
4890
  msgid "Disable Google Fonts"
4891
  msgstr ""
4892
 
4893
- #: app/features/mec/styling.php:356
4894
  msgid "To be GDPR compliant you may need to disable Google fonts!"
4895
  msgstr ""
4896
 
4897
- #: app/features/mec/styling.php:365
4898
  msgid "Container Width"
4899
  msgstr ""
4900
 
4901
- #: app/features/mec/styling.php:367 app/features/mec/styling.php:372
4902
  msgid "Desktop Normal Screens"
4903
  msgstr ""
4904
 
4905
- #: app/features/mec/styling.php:373 app/features/mec/styling.php:386
4906
  msgid "You can enter your theme container size in this field"
4907
  msgstr ""
4908
 
4909
- #: app/features/mec/styling.php:380 app/features/mec/styling.php:385
4910
  msgid "Desktop Large Screens"
4911
  msgstr ""
4912
 
@@ -5251,6 +5336,10 @@ msgstr ""
5251
  msgid "How to add/manage shortcodes?"
5252
  msgstr ""
5253
 
 
 
 
 
5254
  #: app/features/organizers.php:105 app/features/organizers.php:147
5255
  #: app/features/speakers.php:177
5256
  msgid "Insert organizer phone number."
@@ -5311,8 +5400,8 @@ msgstr ""
5311
  msgid "eg. https://webnus.net"
5312
  msgstr ""
5313
 
5314
- #: app/features/organizers.php:306 app/libraries/main.php:4515
5315
- #: app/skins/single.php:693
5316
  msgid "Other Organizers"
5317
  msgstr ""
5318
 
@@ -5330,11 +5419,11 @@ msgstr ""
5330
  msgid "#"
5331
  msgstr ""
5332
 
5333
- #: app/features/profile/profile.php:34 app/libraries/main.php:2573
5334
  msgid "Status"
5335
  msgstr ""
5336
 
5337
- #: app/features/profile/profile.php:37 app/libraries/main.php:1709
5338
  msgid "Attendees"
5339
  msgstr ""
5340
 
@@ -5347,8 +5436,8 @@ msgstr ""
5347
  msgid "<i class=\"mec-sl-eye\"></i> %s"
5348
  msgstr ""
5349
 
5350
- #: app/features/profile/profile.php:96 app/libraries/main.php:1723
5351
- #: app/libraries/main.php:4513
5352
  msgid "Ticket"
5353
  msgstr ""
5354
 
@@ -5410,7 +5499,7 @@ msgstr ""
5410
  msgid "Discount"
5411
  msgstr ""
5412
 
5413
- #: app/libraries/book.php:626 app/modules/booking/default.php:303
5414
  #: app/modules/booking/default.php:401
5415
  msgid "Download Invoice"
5416
  msgstr ""
@@ -5434,51 +5523,51 @@ msgctxt "plugin link"
5434
  msgid "Upgrade"
5435
  msgstr ""
5436
 
5437
- #: app/libraries/factory.php:325
5438
  msgid "day"
5439
  msgstr ""
5440
 
5441
- #: app/libraries/factory.php:326 app/modules/countdown/details.php:123
5442
  #: app/skins/available_spot/tpl.php:147 app/skins/countdown/tpl.php:132
5443
  #: app/skins/countdown/tpl.php:176 app/skins/countdown/tpl.php:225
5444
  msgid "days"
5445
  msgstr ""
5446
 
5447
- #: app/libraries/factory.php:327
5448
  msgid "hour"
5449
  msgstr ""
5450
 
5451
- #: app/libraries/factory.php:328 app/modules/countdown/details.php:130
5452
  #: app/skins/available_spot/tpl.php:151 app/skins/countdown/tpl.php:138
5453
  #: app/skins/countdown/tpl.php:182 app/skins/countdown/tpl.php:231
5454
  msgid "hours"
5455
  msgstr ""
5456
 
5457
- #: app/libraries/factory.php:329
5458
  msgid "minute"
5459
  msgstr ""
5460
 
5461
- #: app/libraries/factory.php:330 app/modules/countdown/details.php:137
5462
  #: app/skins/available_spot/tpl.php:155 app/skins/countdown/tpl.php:144
5463
  #: app/skins/countdown/tpl.php:188 app/skins/countdown/tpl.php:237
5464
  msgid "minutes"
5465
  msgstr ""
5466
 
5467
- #: app/libraries/factory.php:331
5468
  msgid "second"
5469
  msgstr ""
5470
 
5471
- #: app/libraries/factory.php:332 app/modules/countdown/details.php:144
5472
  #: app/skins/available_spot/tpl.php:159 app/skins/countdown/tpl.php:150
5473
  #: app/skins/countdown/tpl.php:194 app/skins/countdown/tpl.php:243
5474
  msgid "seconds"
5475
  msgstr ""
5476
 
5477
- #: app/libraries/factory.php:375
5478
  msgid "MEC Single Sidebar"
5479
  msgstr ""
5480
 
5481
- #: app/libraries/factory.php:376
5482
  msgid "Custom sidebar for single and modal page of MEC."
5483
  msgstr ""
5484
 
@@ -5486,38 +5575,38 @@ msgstr ""
5486
  msgid "There is no excerpt because this is a protected post."
5487
  msgstr ""
5488
 
5489
- #: app/libraries/main.php:330 app/libraries/main.php:1242
5490
- #: app/libraries/main.php:1267
5491
  msgid "Grid View"
5492
  msgstr ""
5493
 
5494
- #: app/libraries/main.php:331 app/libraries/main.php:1243
5495
- #: app/libraries/main.php:1268
5496
  msgid "Agenda View"
5497
  msgstr ""
5498
 
5499
- #: app/libraries/main.php:332 app/libraries/main.php:1234
5500
- #: app/libraries/main.php:1259
5501
  msgid "Full Calendar"
5502
  msgstr ""
5503
 
5504
- #: app/libraries/main.php:334 app/libraries/main.php:1236
5505
- #: app/libraries/main.php:1261
5506
  msgid "Calendar/Monthly View"
5507
  msgstr ""
5508
 
5509
- #: app/libraries/main.php:337 app/libraries/main.php:1239
5510
- #: app/libraries/main.php:1264
5511
  msgid "Timetable View"
5512
  msgstr ""
5513
 
5514
- #: app/libraries/main.php:338 app/libraries/main.php:1240
5515
- #: app/libraries/main.php:1265
5516
  msgid "Masonry View"
5517
  msgstr ""
5518
 
5519
- #: app/libraries/main.php:339 app/libraries/main.php:1244
5520
- #: app/libraries/main.php:1269
5521
  msgid "Map View"
5522
  msgstr ""
5523
 
@@ -5541,31 +5630,31 @@ msgstr ""
5541
  msgid "Slider View"
5542
  msgstr ""
5543
 
5544
- #: app/libraries/main.php:382 app/libraries/main.php:4493
5545
  msgid "SU"
5546
  msgstr ""
5547
 
5548
- #: app/libraries/main.php:383 app/libraries/main.php:4494
5549
  msgid "MO"
5550
  msgstr ""
5551
 
5552
- #: app/libraries/main.php:384 app/libraries/main.php:4495
5553
  msgid "TU"
5554
  msgstr ""
5555
 
5556
- #: app/libraries/main.php:385 app/libraries/main.php:4496
5557
  msgid "WE"
5558
  msgstr ""
5559
 
5560
- #: app/libraries/main.php:386 app/libraries/main.php:4497
5561
  msgid "TH"
5562
  msgstr ""
5563
 
5564
- #: app/libraries/main.php:387 app/libraries/main.php:4498
5565
  msgid "FR"
5566
  msgstr ""
5567
 
5568
- #: app/libraries/main.php:388 app/libraries/main.php:4499
5569
  msgid "SA"
5570
  msgstr ""
5571
 
@@ -5606,281 +5695,289 @@ msgid ""
5606
  "desktops, mobiles and tablets as well."
5607
  msgstr ""
5608
 
5609
- #: app/libraries/main.php:1097
5610
  msgid "Events at this location"
5611
  msgstr ""
5612
 
5613
- #: app/libraries/main.php:1097
5614
  msgid "Event at this location"
5615
  msgstr ""
5616
 
5617
- #: app/libraries/main.php:1138
5618
  msgid "Facebook"
5619
  msgstr ""
5620
 
5621
- #: app/libraries/main.php:1139
5622
  msgid "Twitter"
5623
  msgstr ""
5624
 
5625
- #: app/libraries/main.php:1140 app/libraries/main.php:1190
5626
  msgid "Linkedin"
5627
  msgstr ""
5628
 
5629
- #: app/libraries/main.php:1141 app/libraries/main.php:1223
5630
  msgid "VK"
5631
  msgstr ""
5632
 
5633
- #: app/libraries/main.php:1160
5634
  msgid "Share on Facebook"
5635
  msgstr ""
5636
 
5637
- #: app/libraries/main.php:1175
5638
  msgid "Tweet"
5639
  msgstr ""
5640
 
5641
- #: app/libraries/main.php:1245
5642
  msgid "Custom Shortcode"
5643
  msgstr ""
5644
 
5645
- #: app/libraries/main.php:1604
5646
  msgid "Your booking successfully verified."
5647
  msgstr ""
5648
 
5649
- #: app/libraries/main.php:1605
5650
  msgid "Your booking cannot verify!"
5651
  msgstr ""
5652
 
5653
- #: app/libraries/main.php:1617
5654
  msgid "Your booking successfully canceled."
5655
  msgstr ""
5656
 
5657
- #: app/libraries/main.php:1618
5658
  msgid "Your booking cannot be canceled."
5659
  msgstr ""
5660
 
5661
- #: app/libraries/main.php:1622
5662
  msgid "You canceled the payment successfully."
5663
  msgstr ""
5664
 
5665
- #: app/libraries/main.php:1626
5666
  msgid "You returned from payment gateway successfully."
5667
  msgstr ""
5668
 
5669
- #: app/libraries/main.php:1650
 
 
 
 
 
 
 
 
5670
  msgid "Cannot find the booking!"
5671
  msgstr ""
5672
 
5673
- #: app/libraries/main.php:1650
5674
  msgid "Booking is invalid."
5675
  msgstr ""
5676
 
5677
- #: app/libraries/main.php:1679
5678
  #, php-format
5679
  msgid "%s Invoice"
5680
  msgstr ""
5681
 
5682
- #: app/libraries/main.php:1700
5683
  msgid "Transaction ID"
5684
  msgstr ""
5685
 
5686
- #: app/libraries/main.php:1753
5687
  msgid "Billing"
5688
  msgstr ""
5689
 
5690
- #: app/libraries/main.php:1764
5691
  msgid "Total"
5692
  msgstr ""
5693
 
5694
- #: app/libraries/main.php:1797
5695
  msgid "Security nonce is not valid."
5696
  msgstr ""
5697
 
5698
- #: app/libraries/main.php:1797 app/libraries/main.php:1829
5699
  msgid "iCal export stopped!"
5700
  msgstr ""
5701
 
5702
- #: app/libraries/main.php:1829
5703
  msgid "Request is not valid."
5704
  msgstr ""
5705
 
5706
- #: app/libraries/main.php:2157 app/libraries/main.php:2187
5707
- #: app/libraries/main.php:2216 app/libraries/main.php:2246
5708
- #: app/libraries/main.php:2275 app/libraries/main.php:2304
5709
- #: app/libraries/main.php:2333 app/libraries/main.php:2362
5710
- #: app/libraries/main.php:2391 app/libraries/main.php:2415
5711
- #: app/libraries/main.php:2459 app/libraries/main.php:2503
5712
- #: app/libraries/main.php:2550 app/libraries/main.php:2596
5713
  msgid "Sort"
5714
  msgstr ""
5715
 
5716
- #: app/libraries/main.php:2163 app/libraries/main.php:2193
5717
- #: app/libraries/main.php:2222 app/libraries/main.php:2252
5718
- #: app/libraries/main.php:2281 app/libraries/main.php:2310
5719
- #: app/libraries/main.php:2339 app/libraries/main.php:2368
5720
- #: app/libraries/main.php:2421 app/libraries/main.php:2465
5721
- #: app/libraries/main.php:2509 app/libraries/main.php:2556
5722
  msgid "Required Field"
5723
  msgstr ""
5724
 
5725
- #: app/libraries/main.php:2169 app/libraries/main.php:2199
5726
- #: app/libraries/main.php:2228 app/libraries/main.php:2258
5727
- #: app/libraries/main.php:2287 app/libraries/main.php:2316
5728
- #: app/libraries/main.php:2345 app/libraries/main.php:2374
5729
- #: app/libraries/main.php:2427 app/libraries/main.php:2471
5730
- #: app/libraries/main.php:2515 app/libraries/main.php:2562
5731
  msgid "Insert a label for this field"
5732
  msgstr ""
5733
 
5734
- #: app/libraries/main.php:2397
5735
  msgid "HTML and shortcode are allowed."
5736
  msgstr ""
5737
 
5738
- #: app/libraries/main.php:2440 app/libraries/main.php:2484
5739
- #: app/libraries/main.php:2528
5740
  msgid "Option"
5741
  msgstr ""
5742
 
5743
- #: app/libraries/main.php:2562
5744
  #, php-format
5745
  msgid "Instead of %s, the page title with a link will be show."
5746
  msgstr ""
5747
 
5748
- #: app/libraries/main.php:2564
5749
  msgid "Agreement Page"
5750
  msgstr ""
5751
 
5752
- #: app/libraries/main.php:2575
5753
  msgid "Checked by default"
5754
  msgstr ""
5755
 
5756
- #: app/libraries/main.php:2576
5757
  msgid "Unchecked by default"
5758
  msgstr ""
5759
 
5760
- #: app/libraries/main.php:2598
5761
  msgid "Insert a label for this option"
5762
  msgstr ""
5763
 
5764
- #: app/libraries/main.php:2613
5765
  msgid "Free"
5766
  msgstr ""
5767
 
5768
- #: app/libraries/main.php:3165 app/libraries/main.php:4721
5769
  msgid "M.E. Calender"
5770
  msgstr ""
5771
 
5772
- #: app/libraries/main.php:3320
5773
  #, php-format
5774
  msgid "Copy of %s"
5775
  msgstr ""
5776
 
5777
- #: app/libraries/main.php:3983
5778
  msgid "Booked an event."
5779
  msgstr ""
5780
 
5781
- #: app/libraries/main.php:4024
5782
  #, php-format
5783
  msgid "%s booked %s event."
5784
  msgstr ""
5785
 
5786
- #: app/libraries/main.php:4476
5787
  msgid "Taxonomies"
5788
  msgstr ""
5789
 
5790
- #: app/libraries/main.php:4478
5791
  msgid "Category Plural Label"
5792
  msgstr ""
5793
 
5794
- #: app/libraries/main.php:4479
5795
  msgid "Category Singular Label"
5796
  msgstr ""
5797
 
5798
- #: app/libraries/main.php:4480
5799
  msgid "Label Plural Label"
5800
  msgstr ""
5801
 
5802
- #: app/libraries/main.php:4481
5803
  msgid "Label Singular Label"
5804
  msgstr ""
5805
 
5806
- #: app/libraries/main.php:4481
5807
  msgid "label"
5808
  msgstr ""
5809
 
5810
- #: app/libraries/main.php:4482
5811
  msgid "Location Plural Label"
5812
  msgstr ""
5813
 
5814
- #: app/libraries/main.php:4483
5815
  msgid "Location Singular Label"
5816
  msgstr ""
5817
 
5818
- #: app/libraries/main.php:4484
5819
  msgid "Organizer Plural Label"
5820
  msgstr ""
5821
 
5822
- #: app/libraries/main.php:4485
5823
  msgid "Organizer Singular Label"
5824
  msgstr ""
5825
 
5826
- #: app/libraries/main.php:4486
5827
  msgid "Speaker Plural Label"
5828
  msgstr ""
5829
 
5830
- #: app/libraries/main.php:4487
5831
  msgid "Speaker Singular Label"
5832
  msgstr ""
5833
 
5834
- #: app/libraries/main.php:4493
5835
  msgid "Sunday abbreviation"
5836
  msgstr ""
5837
 
5838
- #: app/libraries/main.php:4494
5839
  msgid "Monday abbreviation"
5840
  msgstr ""
5841
 
5842
- #: app/libraries/main.php:4495
5843
  msgid "Tuesday abbreviation"
5844
  msgstr ""
5845
 
5846
- #: app/libraries/main.php:4496
5847
  msgid "Wednesday abbreviation"
5848
  msgstr ""
5849
 
5850
- #: app/libraries/main.php:4497
5851
  msgid "Thursday abbreviation"
5852
  msgstr ""
5853
 
5854
- #: app/libraries/main.php:4498
5855
  msgid "Friday abbreviation"
5856
  msgstr ""
5857
 
5858
- #: app/libraries/main.php:4499
5859
  msgid "Saturday abbreviation"
5860
  msgstr ""
5861
 
5862
- #: app/libraries/main.php:4503
5863
  msgid "Others"
5864
  msgstr ""
5865
 
5866
- #: app/libraries/main.php:4505
5867
  msgid "Booking Success Message"
5868
  msgstr ""
5869
 
5870
- #: app/libraries/main.php:4505
5871
  msgid ""
5872
  "Thanks for your booking. Your tickets booked, booking verification might be "
5873
  "needed, please check your email."
5874
  msgstr ""
5875
 
5876
- #: app/libraries/main.php:4506 app/widgets/single.php:131
5877
  msgid "Register Button"
5878
  msgstr ""
5879
 
5880
- #: app/libraries/main.php:4506 app/skins/available_spot/tpl.php:205
5881
- #: app/skins/carousel/render.php:152 app/skins/carousel/render.php:182
5882
- #: app/skins/grid/render.php:116 app/skins/grid/render.php:159
5883
- #: app/skins/grid/render.php:200 app/skins/grid/render.php:228
5884
  #: app/skins/list/render.php:102 app/skins/list/render.php:190
5885
  #: app/skins/masonry/render.php:175 app/skins/single.php:606
5886
  #: app/skins/single.php:609 app/skins/single/default.php:231
@@ -5894,14 +5991,14 @@ msgstr ""
5894
  msgid "REGISTER"
5895
  msgstr ""
5896
 
5897
- #: app/libraries/main.php:4507
5898
  msgid "View Detail Button"
5899
  msgstr ""
5900
 
5901
- #: app/libraries/main.php:4507 app/skins/carousel/render.php:152
5902
- #: app/skins/carousel/render.php:182 app/skins/grid/render.php:116
5903
- #: app/skins/grid/render.php:159 app/skins/grid/render.php:200
5904
- #: app/skins/grid/render.php:228 app/skins/list/render.php:102
5905
  #: app/skins/list/render.php:190 app/skins/masonry/render.php:175
5906
  #: app/skins/slider/render.php:109 app/skins/slider/render.php:154
5907
  #: app/skins/slider/render.php:198 app/skins/slider/render.php:243
@@ -5909,58 +6006,62 @@ msgstr ""
5909
  msgid "View Detail"
5910
  msgstr ""
5911
 
5912
- #: app/libraries/main.php:4508
5913
  msgid "Event Detail Button"
5914
  msgstr ""
5915
 
5916
- #: app/libraries/main.php:4508 app/skins/countdown/tpl.php:218
5917
  msgid "Event Detail"
5918
  msgstr ""
5919
 
5920
- #: app/libraries/main.php:4510
5921
  msgid "More Info Link"
5922
  msgstr ""
5923
 
5924
- #: app/libraries/main.php:4513
5925
  msgid "Ticket (Singular)"
5926
  msgstr ""
5927
 
5928
- #: app/libraries/main.php:4514
5929
  msgid "Tickets (Plural)"
5930
  msgstr ""
5931
 
5932
- #: app/libraries/main.php:4581
5933
  msgid "EventON"
5934
  msgstr ""
5935
 
5936
- #: app/libraries/main.php:4582
5937
  msgid "The Events Calendar"
5938
  msgstr ""
5939
 
5940
- #: app/libraries/main.php:4583
5941
  msgid "Events Schedule WP Plugin"
5942
  msgstr ""
5943
 
5944
- #: app/libraries/main.php:4584
5945
  msgid "Calendarize It"
5946
  msgstr ""
5947
 
5948
- #: app/libraries/main.php:4658 app/libraries/main.php:4678
5949
  msgid "Confirmed"
5950
  msgstr ""
5951
 
5952
- #: app/libraries/main.php:4659 app/libraries/main.php:4686
5953
  msgid "Rejected"
5954
  msgstr ""
5955
 
5956
- #: app/libraries/main.php:4660 app/libraries/main.php:4682
5957
  msgid "Pending"
5958
  msgstr ""
5959
 
5960
- #: app/libraries/main.php:4708
5961
  msgid "Waiting"
5962
  msgstr ""
5963
 
 
 
 
 
5964
  #: app/libraries/notifications.php:61
5965
  msgid "Please verify your email."
5966
  msgstr ""
@@ -6013,11 +6114,7 @@ msgstr ""
6013
  msgid "No"
6014
  msgstr ""
6015
 
6016
- #: app/libraries/render.php:366
6017
- msgid "Skin controller does not exist."
6018
- msgstr ""
6019
-
6020
- #: app/libraries/skins.php:932
6021
  msgid "Ignore month and years"
6022
  msgstr ""
6023
 
@@ -6127,44 +6224,65 @@ msgstr ""
6127
  msgid "Time"
6128
  msgstr ""
6129
 
6130
- #: app/modules/weather/details.php:48
6131
  msgid " °C"
6132
  msgstr ""
6133
 
6134
- #: app/modules/weather/details.php:54
6135
- msgid "Wind"
 
 
 
 
6136
  msgstr ""
6137
 
6138
- #: app/modules/weather/details.php:54
 
 
 
 
6139
  msgid " KPH"
6140
  msgstr ""
6141
 
6142
- #: app/modules/weather/details.php:58
 
 
 
 
 
 
 
 
6143
  msgid "Humidity"
6144
  msgstr ""
6145
 
6146
- #: app/modules/weather/details.php:58
6147
  msgid " %"
6148
  msgstr ""
6149
 
6150
- #: app/modules/weather/details.php:62
6151
- msgid "Visibility"
6152
  msgstr ""
6153
 
6154
- #: app/modules/weather/details.php:62
6155
- msgid " KM"
 
 
 
 
6156
  msgstr ""
6157
 
6158
  #: app/skins/agenda/tpl.php:65 app/skins/agenda/tpl.php:69
6159
  #: app/skins/carousel/tpl.php:45 app/skins/grid/tpl.php:55
6160
  #: app/skins/grid/tpl.php:59 app/skins/list/tpl.php:60
6161
- #: app/skins/list/tpl.php:64 app/skins/masonry/tpl.php:54
6162
- #: app/skins/masonry/tpl.php:58 app/skins/slider/tpl.php:43
6163
  msgid "No event found!"
6164
  msgstr ""
6165
 
6166
  #: app/skins/agenda/tpl.php:74 app/skins/grid/tpl.php:64
6167
- #: app/skins/list/tpl.php:69 app/skins/yearly_view/render.php:121
 
6168
  msgid "Load More"
6169
  msgstr ""
6170
 
@@ -6172,16 +6290,16 @@ msgstr ""
6172
  msgid "Available Spot(s):"
6173
  msgstr ""
6174
 
6175
- #: app/skins/carousel/render.php:20
6176
- msgid "View All"
6177
- msgstr ""
6178
-
6179
- #: app/skins/carousel/render.php:197 app/skins/countdown/tpl.php:157
6180
  #: app/skins/countdown/tpl.php:201 app/skins/cover/tpl.php:101
6181
  #: app/skins/list/render.php:120
6182
  msgid "EVENT DETAIL"
6183
  msgstr ""
6184
 
 
 
 
 
6185
  #: app/skins/countdown/tpl.php:119 app/skins/countdown/tpl.php:163
6186
  #: app/skins/countdown/tpl.php:208
6187
  #, php-format
@@ -6200,7 +6318,7 @@ msgstr ""
6200
  msgid "List"
6201
  msgstr ""
6202
 
6203
- #: app/skins/masonry.php:197
6204
  msgid "All"
6205
  msgstr ""
6206
 
@@ -6228,21 +6346,21 @@ msgstr ""
6228
  msgid "Sold out!"
6229
  msgstr ""
6230
 
6231
- #: app/skins/single.php:654 app/skins/single.php:708
6232
  #: app/skins/single/default.php:204 app/skins/single/default.php:415
6233
  #: app/skins/single/m1.php:100 app/skins/single/m2.php:32
6234
  #: app/skins/single/modern.php:41
6235
  msgid "Phone"
6236
  msgstr ""
6237
 
6238
- #: app/skins/single.php:668 app/skins/single.php:722
6239
  #: app/skins/single/default.php:218 app/skins/single/default.php:429
6240
  #: app/skins/single/m1.php:114 app/skins/single/m2.php:46
6241
  #: app/skins/single/modern.php:55
6242
  msgid "Website"
6243
  msgstr ""
6244
 
6245
- #: app/skins/single.php:791
6246
  msgid "Speakers:"
6247
  msgstr ""
6248
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: modern-events-calendar\n"
4
+ "POT-Creation-Date: 2019-07-16 12:11+0430\n"
5
+ "PO-Revision-Date: 2019-07-16 12:13+0430\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: en_US\n"
21
  msgid "Modern Events Calendar"
22
  msgstr ""
23
 
24
+ #: app/addons/KC.php:70 app/addons/VC.php:64 app/features/mec/styling.php:287
25
  msgid "Content"
26
  msgstr ""
27
 
34
  msgid "Select from predefined shortcodes"
35
  msgstr ""
36
 
37
+ #: app/addons/divi/includes/modules/MECShortcodes/MECShortcodes.php:15
38
+ #: app/addons/divi/includes/modules/MECShortcodes/MECShortcodes.php:25
39
+ msgid "MEC Shortcodes"
40
+ msgstr ""
41
+
42
+ #: app/addons/divi/includes/modules/MECShortcodes/MECShortcodes.php:28
43
+ msgid "Input your desired shortcode_id here."
44
+ msgstr ""
45
+
46
  #: app/addons/elementor/shortcode.php:34
47
  msgid "Modern Events Calendar (MEC)"
48
  msgstr ""
56
  msgstr ""
57
 
58
  #: app/features/colors.php:50 app/features/fes/form.php:794
59
+ #: app/features/mec/settings.php:791
60
  msgid "Event Color"
61
  msgstr ""
62
 
64
  #: app/features/mec/booking.php:33 app/features/mec/dashboard.php:108
65
  #: app/features/mec/gateways.php:24 app/features/mec/ie.php:20
66
  #: app/features/mec/messages.php:24 app/features/mec/modules.php:31
67
+ #: app/features/mec/notifications.php:23 app/features/mec/regform.php:61
68
  #: app/features/mec/settings.php:44 app/features/mec/single.php:23
69
  #: app/features/mec/styles.php:24 app/features/mec/styling.php:46
70
  #: app/features/mec/support-page.php:168 app/features/mec/support.php:20
71
  msgid "Settings"
72
  msgstr ""
73
 
74
+ #: app/features/contextual.php:62 app/features/events.php:2251
75
+ #: app/features/mec/booking.php:147 app/features/mec/gateways.php:112
76
+ #: app/features/mec/ie.php:108 app/features/mec/messages.php:112
77
+ #: app/features/mec/modules.php:174 app/features/mec/notifications.php:111
78
+ #: app/features/mec/regform.php:148 app/features/mec/regform.php:217
79
+ #: app/features/mec/settings.php:184 app/features/mec/single.php:140
80
+ #: app/features/mec/styles.php:112 app/features/mec/styling.php:134
81
  #: app/features/mec/support.php:29
82
  msgid "Booking Form"
83
  msgstr ""
91
  "YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></iframe>"
92
  msgstr ""
93
 
94
+ #: app/features/contextual.php:70 app/features/mec/booking.php:154
95
+ #: app/features/mec/gateways.php:119 app/features/mec/gateways.php:182
96
+ #: app/features/mec/ie.php:115 app/features/mec/messages.php:119
97
+ #: app/features/mec/modules.php:181 app/features/mec/notifications.php:118
98
+ #: app/features/mec/regform.php:155 app/features/mec/settings.php:191
99
+ #: app/features/mec/single.php:147 app/features/mec/styles.php:119
100
+ #: app/features/mec/styling.php:141 app/features/mec/support.php:36
101
  msgid "Payment Gateways"
102
  msgstr ""
103
 
108
  "\"0\" allowfullscreen></iframe>"
109
  msgstr ""
110
 
111
+ #: app/features/contextual.php:77 app/features/mec/booking.php:163
112
+ #: app/features/mec/gateways.php:128 app/features/mec/ie.php:124
113
+ #: app/features/mec/messages.php:128 app/features/mec/modules.php:190
114
+ #: app/features/mec/notifications.php:130 app/features/mec/regform.php:163
115
+ #: app/features/mec/settings.php:200 app/features/mec/single.php:156
116
+ #: app/features/mec/styles.php:128 app/features/mec/styling.php:150
117
  #: app/features/mec/support.php:45
118
  msgid "Notifications"
119
  msgstr ""
180
  #: app/features/contextual.php:117 app/features/mec/booking.php:37
181
  #: app/features/mec/gateways.php:28 app/features/mec/ie.php:24
182
  #: app/features/mec/messages.php:28 app/features/mec/modules.php:35
183
+ #: app/features/mec/notifications.php:27 app/features/mec/regform.php:65
184
+ #: app/features/mec/settings.php:51 app/features/mec/settings.php:258
185
  #: app/features/mec/single.php:27 app/features/mec/styles.php:28
186
  #: app/features/mec/styling.php:50
187
  msgid "General Options"
190
  #: app/features/contextual.php:139 app/features/mec/booking.php:39
191
  #: app/features/mec/gateways.php:30 app/features/mec/ie.php:26
192
  #: app/features/mec/messages.php:30 app/features/mec/modules.php:37
193
+ #: app/features/mec/notifications.php:29 app/features/mec/regform.php:67
194
+ #: app/features/mec/settings.php:63 app/features/mec/settings.php:575
195
  #: app/features/mec/single.php:29 app/features/mec/styles.php:30
196
  #: app/features/mec/styling.php:52
197
  msgid "Slugs/Permalinks"
204
  #: app/features/contextual.php:166 app/features/mec/booking.php:40
205
  #: app/features/mec/gateways.php:31 app/features/mec/ie.php:27
206
  #: app/features/mec/messages.php:31 app/features/mec/modules.php:38
207
+ #: app/features/mec/notifications.php:30 app/features/mec/regform.php:68
208
+ #: app/features/mec/settings.php:69 app/features/mec/settings.php:607
209
  #: app/features/mec/single.php:30 app/features/mec/styles.php:31
210
  #: app/features/mec/styling.php:53
211
  msgid "Currency Options"
212
  msgstr ""
213
 
214
+ #: app/features/contextual.php:182 app/features/mec/booking.php:125
215
+ #: app/features/mec/gateways.php:90 app/features/mec/ie.php:86
216
+ #: app/features/mec/messages.php:90 app/features/mec/modules.php:110
217
+ #: app/features/mec/modules.php:265 app/features/mec/modules.php:283
218
+ #: app/features/mec/notifications.php:89 app/features/mec/regform.php:127
219
+ #: app/features/mec/settings.php:162 app/features/mec/single.php:118
220
+ #: app/features/mec/styles.php:90 app/features/mec/styling.php:112
221
  msgid "Google Maps Options"
222
  msgstr ""
223
 
224
  #: app/features/contextual.php:244 app/features/mec/booking.php:41
225
  #: app/features/mec/gateways.php:32 app/features/mec/ie.php:28
226
  #: app/features/mec/messages.php:32 app/features/mec/modules.php:39
227
+ #: app/features/mec/notifications.php:31 app/features/mec/regform.php:69
228
+ #: app/features/mec/settings.php:75 app/features/mec/settings.php:664
229
  #: app/features/mec/single.php:31 app/features/mec/styles.php:32
230
  #: app/features/mec/styling.php:54
231
  msgid "Google Recaptcha Options"
232
  msgstr ""
233
 
234
+ #: app/features/contextual.php:258 app/features/mec/booking.php:61
235
+ #: app/features/mec/gateways.php:52 app/features/mec/ie.php:48
236
+ #: app/features/mec/messages.php:52 app/features/mec/modules.php:59
237
+ #: app/features/mec/notifications.php:51 app/features/mec/regform.php:89
238
+ #: app/features/mec/settings.php:124 app/features/mec/single.php:63
239
+ #: app/features/mec/single.php:313 app/features/mec/styles.php:52
240
+ #: app/features/mec/styling.php:74
241
  msgid "Countdown Options"
242
  msgstr ""
243
 
244
+ #: app/features/contextual.php:268 app/features/mec/booking.php:133
245
+ #: app/features/mec/gateways.php:98 app/features/mec/ie.php:94
246
+ #: app/features/mec/messages.php:98 app/features/mec/modules.php:146
247
+ #: app/features/mec/modules.php:461 app/features/mec/notifications.php:97
248
+ #: app/features/mec/regform.php:135 app/features/mec/settings.php:170
249
+ #: app/features/mec/single.php:126 app/features/mec/styles.php:98
250
+ #: app/features/mec/styling.php:120
251
  msgid "Social Networks"
252
  msgstr ""
253
 
258
  #: app/features/contextual.php:286 app/features/mec/booking.php:42
259
  #: app/features/mec/gateways.php:33 app/features/mec/ie.php:29
260
  #: app/features/mec/messages.php:33 app/features/mec/modules.php:40
261
+ #: app/features/mec/notifications.php:32 app/features/mec/regform.php:70
262
+ #: app/features/mec/settings.php:81 app/features/mec/settings.php:700
263
  #: app/features/mec/single.php:32 app/features/mec/styles.php:33
264
  #: app/features/mec/styling.php:55
265
  msgid "Frontend Event Submission"
266
  msgstr ""
267
 
268
+ #: app/features/contextual.php:298 app/features/events.php:1119
269
+ #: app/features/mec/booking.php:62 app/features/mec/gateways.php:53
270
+ #: app/features/mec/ie.php:49 app/features/mec/messages.php:53
271
+ #: app/features/mec/modules.php:60 app/features/mec/notifications.php:52
272
+ #: app/features/mec/regform.php:90 app/features/mec/settings.php:125
273
+ #: app/features/mec/single.php:69 app/features/mec/styles.php:53
274
+ #: app/features/mec/styling.php:75
275
  msgid "Exceptional Days"
276
  msgstr ""
277
 
278
+ #: app/features/contextual.php:308 app/features/events.php:285
279
+ #: app/features/mec/booking.php:78 app/features/mec/booking.php:85
280
+ #: app/features/mec/booking.php:168 app/features/mec/booking.php:220
281
+ #: app/features/mec/gateways.php:65 app/features/mec/gateways.php:69
282
+ #: app/features/mec/gateways.php:133 app/features/mec/ie.php:61
283
+ #: app/features/mec/ie.php:65 app/features/mec/ie.php:129
284
+ #: app/features/mec/messages.php:65 app/features/mec/messages.php:69
285
+ #: app/features/mec/messages.php:133 app/features/mec/modules.php:72
286
+ #: app/features/mec/modules.php:76 app/features/mec/modules.php:195
287
+ #: app/features/mec/notifications.php:64 app/features/mec/notifications.php:68
288
+ #: app/features/mec/notifications.php:137
289
+ #: app/features/mec/notifications.php:226 app/features/mec/regform.php:102
290
+ #: app/features/mec/regform.php:106 app/features/mec/regform.php:168
291
+ #: app/features/mec/settings.php:137 app/features/mec/settings.php:141
292
+ #: app/features/mec/settings.php:205 app/features/mec/single.php:93
293
+ #: app/features/mec/single.php:97 app/features/mec/single.php:161
294
+ #: app/features/mec/styles.php:65 app/features/mec/styles.php:69
295
+ #: app/features/mec/styles.php:133 app/features/mec/styling.php:87
296
+ #: app/features/mec/styling.php:91 app/features/mec/styling.php:155
297
  msgid "Booking"
298
  msgstr ""
299
 
300
+ #: app/features/contextual.php:318 app/features/mec/booking.php:93
301
+ #: app/features/mec/booking.php:355 app/features/mec/gateways.php:71
302
+ #: app/features/mec/ie.php:67 app/features/mec/messages.php:71
303
+ #: app/features/mec/modules.php:78 app/features/mec/notifications.php:70
304
+ #: app/features/mec/regform.php:108 app/features/mec/settings.php:143
305
+ #: app/features/mec/single.php:99 app/features/mec/styles.php:71
306
+ #: app/features/mec/styling.php:93
307
  msgid "Coupons"
308
  msgstr ""
309
 
310
+ #: app/features/contextual.php:326 app/features/mec/booking.php:136
311
+ #: app/features/mec/gateways.php:101 app/features/mec/ie.php:97
312
+ #: app/features/mec/messages.php:101 app/features/mec/modules.php:160
313
+ #: app/features/mec/modules.php:522 app/features/mec/notifications.php:100
314
+ #: app/features/mec/regform.php:138 app/features/mec/settings.php:173
315
+ #: app/features/mec/single.php:129 app/features/mec/styles.php:101
316
+ #: app/features/mec/styling.php:123
317
  msgid "BuddyPress Integration"
318
  msgstr ""
319
 
320
+ #: app/features/contextual.php:334 app/features/mec/booking.php:46
321
+ #: app/features/mec/gateways.php:37 app/features/mec/ie.php:33
322
+ #: app/features/mec/messages.php:37 app/features/mec/modules.php:44
323
+ #: app/features/mec/notifications.php:36 app/features/mec/regform.php:74
324
+ #: app/features/mec/settings.php:101 app/features/mec/settings.php:934
325
+ #: app/features/mec/single.php:36 app/features/mec/styles.php:37
326
+ #: app/features/mec/styling.php:59
327
  msgid "Mailchimp Integration"
328
  msgstr ""
329
 
332
  msgstr ""
333
 
334
  #: app/features/events.php:137 app/features/ix/export.php:34
335
+ #: app/features/mec/dashboard.php:191 app/skins/daily_view/tpl.php:79
336
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
337
  msgid "Events"
338
  msgstr ""
339
 
340
  #: app/features/events.php:138
341
+ #: app/features/mec/meta_boxes/display_options.php:887
342
+ #: app/features/mec/meta_boxes/display_options.php:943
343
+ #: app/features/mec/meta_boxes/display_options.php:978
344
  #: app/features/profile/profile.php:28 app/skins/daily_view/tpl.php:80
345
  #: app/skins/monthly_view/tpl.php:71 app/skins/yearly_view/tpl.php:69
346
  msgid "Event"
378
  #: app/features/events.php:162
379
  #: app/features/mec/meta_boxes/display_options.php:798
380
  #: app/features/mec/meta_boxes/search_form.php:31
381
+ #: app/features/mec/meta_boxes/search_form.php:93
382
+ #: app/features/mec/meta_boxes/search_form.php:154
383
+ #: app/features/mec/meta_boxes/search_form.php:215
384
+ #: app/features/mec/meta_boxes/search_form.php:276
385
+ #: app/features/mec/meta_boxes/search_form.php:337
386
+ #: app/features/mec/meta_boxes/search_form.php:398
387
+ #: app/features/mec/meta_boxes/search_form.php:452
388
+ #: app/features/mec/meta_boxes/search_form.php:513
389
+ #: app/features/mec/meta_boxes/search_form.php:574
390
+ #: app/features/mec/settings.php:889 app/libraries/main.php:4487
391
+ #: app/libraries/skins.php:805 app/skins/single.php:410
392
  #: app/skins/single/default.php:169 app/skins/single/default.php:380
393
  #: app/skins/single/m1.php:170 app/skins/single/m2.php:102
394
  #: app/skins/single/modern.php:110
397
 
398
  #: app/features/events.php:163 app/features/fes/form.php:745
399
  #: app/features/mec.php:332 app/features/mec/meta_boxes/filter.php:70
400
+ #: app/libraries/main.php:4486
401
  msgid "Categories"
402
  msgstr ""
403
 
469
  msgid "Event Details"
470
  msgstr ""
471
 
472
+ #: app/features/events.php:322 app/features/events.php:3151
473
+ #: app/features/events.php:3193 app/features/fes/form.php:706
474
  #: app/features/ix.php:2740 app/features/ix.php:2781
475
+ #: app/features/mec/settings.php:767 app/libraries/main.php:4519
476
  #: app/widgets/single.php:103
477
  msgid "Event Cost"
478
  msgstr ""
479
 
480
+ #: app/features/events.php:326 app/features/fes/form.php:709
481
+ #: app/libraries/main.php:4520 app/skins/single.php:433
482
  #: app/skins/single/default.php:103 app/skins/single/default.php:314
483
  #: app/skins/single/m1.php:49 app/skins/single/modern.php:199
484
  msgid "Cost"
485
  msgstr ""
486
 
487
+ #: app/features/events.php:424
488
  msgid "Note for reviewer"
489
  msgstr ""
490
 
491
+ #: app/features/events.php:431
492
  msgid "Guest Data"
493
  msgstr ""
494
 
495
+ #: app/features/events.php:432 app/features/events.php:2233
496
  #: app/features/fes/form.php:668 app/features/labels.php:177
497
  #: app/features/mec/regform.php:27 app/features/organizers.php:274
498
  #: app/features/profile/profile.php:90 app/libraries/notifications.php:673
500
  msgid "Name"
501
  msgstr ""
502
 
503
+ #: app/features/events.php:433 app/features/events.php:2244
504
+ #: app/features/events.php:2322 app/features/fes/form.php:664
505
+ #: app/features/mec/regform.php:39 app/features/mec/regform.php:269
506
  #: app/features/organizers.php:110 app/features/organizers.php:150
507
  #: app/features/profile/profile.php:93 app/features/speakers.php:120
508
+ #: app/features/speakers.php:180 app/libraries/main.php:1149
509
+ #: app/libraries/main.php:1215 app/libraries/main.php:2261
510
  #: app/libraries/notifications.php:674 app/modules/booking/steps/form.php:43
511
  #: app/modules/booking/steps/form.php:80 app/skins/single.php:661
512
+ #: app/skins/single.php:716 app/skins/single/default.php:211
513
  #: app/skins/single/default.php:422 app/skins/single/m1.php:107
514
  #: app/skins/single/m2.php:39 app/skins/single/modern.php:48
515
  msgid "Email"
516
  msgstr ""
517
 
518
+ #: app/features/events.php:437 app/features/fes/form.php:232
519
  msgid "Date and Time"
520
  msgstr ""
521
 
522
+ #: app/features/events.php:441 app/features/events.php:447
523
+ #: app/features/events.php:2969 app/features/events.php:3151
524
+ #: app/features/events.php:3193 app/features/fes/form.php:236
525
  #: app/features/fes/form.php:240 app/features/ix.php:2740
526
  #: app/features/ix.php:2781 app/features/ix/import_g_calendar.php:38
527
+ #: app/features/mec/dashboard.php:335
528
  #: app/features/mec/meta_boxes/display_options.php:42
529
  #: app/features/mec/meta_boxes/display_options.php:169
530
  #: app/features/mec/meta_boxes/display_options.php:307
536
  #: app/features/mec/meta_boxes/display_options.php:654
537
  #: app/features/mec/meta_boxes/display_options.php:700
538
  #: app/features/mec/meta_boxes/display_options.php:766
539
+ #: app/features/mec/meta_boxes/display_options.php:1001
540
+ #: app/features/mec/meta_boxes/display_options.php:1088
541
  msgid "Start Date"
542
  msgstr ""
543
 
544
+ #: app/features/events.php:519 app/features/events.php:611
545
+ #: app/features/events.php:1587 app/features/events.php:1629
546
+ #: app/features/events.php:1796 app/features/events.php:1820
547
  #: app/features/fes/form.php:268 app/features/fes/form.php:308
548
  msgid "AM"
549
  msgstr ""
550
 
551
+ #: app/features/events.php:526 app/features/events.php:618
552
+ #: app/features/events.php:1594 app/features/events.php:1636
553
+ #: app/features/events.php:1797 app/features/events.php:1821
554
  #: app/features/fes/form.php:269 app/features/fes/form.php:309
555
  msgid "PM"
556
  msgstr ""
557
 
558
+ #: app/features/events.php:533 app/features/events.php:538
559
+ #: app/features/events.php:2970 app/features/events.php:3151
560
+ #: app/features/events.php:3193 app/features/fes/form.php:276
561
  #: app/features/fes/form.php:280 app/features/ix.php:2740
562
  #: app/features/ix.php:2781 app/features/ix/import_g_calendar.php:44
563
+ #: app/features/mec/dashboard.php:336
564
  msgid "End Date"
565
  msgstr ""
566
 
567
+ #: app/features/events.php:632 app/features/fes/form.php:315
568
  msgid "All Day Event"
569
  msgstr ""
570
 
571
+ #: app/features/events.php:642 app/features/fes/form.php:318
572
  msgid "Hide Event Time"
573
  msgstr ""
574
 
575
+ #: app/features/events.php:652 app/features/fes/form.php:321
576
  msgid "Hide Event End Time"
577
  msgstr ""
578
 
579
+ #: app/features/events.php:657 app/features/events.php:661
580
  #: app/features/fes/form.php:325
581
  msgid "Time Comment"
582
  msgstr ""
583
 
584
+ #: app/features/events.php:662 app/features/fes/form.php:326
585
  msgid ""
586
  "It shows next to event time on single event page. You can insert Timezone "
587
  "etc. in this field."
588
  msgstr ""
589
 
590
+ #: app/features/events.php:664 app/features/events.php:796
591
+ #: app/features/events.php:1095 app/features/events.php:1138
592
+ #: app/features/events.php:1437 app/features/events.php:1504
593
+ #: app/features/events.php:1656 app/features/events.php:1671
594
+ #: app/features/events.php:1838 app/features/events.php:1851
595
+ #: app/features/events.php:1981 app/features/events.php:2017
596
+ #: app/features/events.php:2115 app/features/events.php:2130
597
+ #: app/features/events.php:2160 app/features/events.php:2173
598
  #: app/features/fes/form.php:630 app/features/locations.php:298
599
+ #: app/features/mec/booking.php:240 app/features/mec/booking.php:277
600
+ #: app/features/mec/booking.php:293 app/features/mec/booking.php:400
601
+ #: app/features/mec/booking.php:429 app/features/mec/booking.php:477
602
+ #: app/features/mec/booking.php:487 app/features/mec/booking.php:509
603
+ #: app/features/mec/booking.php:519 app/features/mec/dashboard.php:71
604
  #: app/features/mec/meta_boxes/display_options.php:60
605
  #: app/features/mec/meta_boxes/display_options.php:73
606
  #: app/features/mec/meta_boxes/display_options.php:86
616
  #: app/features/mec/meta_boxes/display_options.php:326
617
  #: app/features/mec/meta_boxes/display_options.php:502
618
  #: app/features/mec/meta_boxes/display_options.php:785
619
+ #: app/features/mec/meta_boxes/display_options.php:858
620
+ #: app/features/mec/meta_boxes/display_options.php:870
621
+ #: app/features/mec/meta_boxes/display_options.php:881
622
+ #: app/features/mec/meta_boxes/display_options.php:913
623
+ #: app/features/mec/meta_boxes/display_options.php:924
624
+ #: app/features/mec/meta_boxes/display_options.php:937
625
+ #: app/features/mec/meta_boxes/display_options.php:972
626
+ #: app/features/mec/meta_boxes/display_options.php:1021
627
+ #: app/features/mec/meta_boxes/display_options.php:1032
628
+ #: app/features/mec/meta_boxes/display_options.php:1043
629
+ #: app/features/mec/meta_boxes/display_options.php:1108
630
+ #: app/features/mec/meta_boxes/display_options.php:1121
631
+ #: app/features/mec/meta_boxes/display_options.php:1134
632
+ #: app/features/mec/meta_boxes/display_options.php:1147
633
+ #: app/features/mec/meta_boxes/display_options.php:1160
634
+ #: app/features/mec/modules.php:284 app/features/mec/modules.php:301
635
+ #: app/features/mec/modules.php:336 app/features/mec/modules.php:352
636
+ #: app/features/mec/modules.php:510 app/features/mec/notifications.php:245
637
+ #: app/features/mec/notifications.php:302
638
+ #: app/features/mec/notifications.php:354
639
+ #: app/features/mec/notifications.php:413
640
+ #: app/features/mec/notifications.php:481
641
+ #: app/features/mec/notifications.php:544
642
+ #: app/features/mec/notifications.php:555
643
+ #: app/features/mec/notifications.php:617 app/features/mec/settings.php:272
644
+ #: app/features/mec/settings.php:291 app/features/mec/settings.php:318
645
+ #: app/features/mec/settings.php:338 app/features/mec/settings.php:359
646
+ #: app/features/mec/settings.php:379 app/features/mec/settings.php:456
647
+ #: app/features/mec/settings.php:530 app/features/mec/settings.php:547
648
+ #: app/features/mec/settings.php:564 app/features/mec/settings.php:583
649
+ #: app/features/mec/settings.php:597 app/features/mec/settings.php:625
650
+ #: app/features/mec/settings.php:712 app/features/mec/settings.php:850
651
+ #: app/features/mec/settings.php:867 app/features/mec/settings.php:949
652
+ #: app/features/mec/settings.php:962 app/features/mec/settings.php:978
653
+ #: app/features/mec/single.php:222 app/features/mec/single.php:238
654
+ #: app/features/mec/single.php:257 app/features/mec/single.php:274
655
+ #: app/features/mec/single.php:290 app/features/mec/single.php:304
656
+ #: app/features/mec/single.php:342 app/features/mec/styling.php:357
657
+ #: app/features/mec/styling.php:374 app/features/mec/styling.php:387
658
  #: app/features/organizers.php:267 app/skins/single.php:508
659
  #: app/skins/single/default.php:118 app/skins/single/default.php:329
660
  #: app/skins/single/m1.php:192 app/skins/single/m2.php:125
662
  msgid "Read More"
663
  msgstr ""
664
 
665
+ #: app/features/events.php:680 app/features/fes/form.php:332
666
  msgid "Event Repeating"
667
  msgstr ""
668
 
669
+ #: app/features/events.php:684 app/features/fes/form.php:336
670
  msgid "Repeats"
671
  msgstr ""
672
 
673
+ #: app/features/events.php:692 app/features/fes/form.php:338
674
+ #: app/features/mec/dashboard.php:338 app/skins/full_calendar/tpl.php:103
675
  msgid "Daily"
676
  msgstr ""
677
 
678
+ #: app/features/events.php:699 app/features/fes/form.php:339
679
  msgid "Every Weekday"
680
  msgstr ""
681
 
682
+ #: app/features/events.php:706 app/features/fes/form.php:340
683
  msgid "Every Weekend"
684
  msgstr ""
685
 
686
+ #: app/features/events.php:713 app/features/fes/form.php:341
687
  msgid "Certain Weekdays"
688
  msgstr ""
689
 
690
+ #: app/features/events.php:720 app/features/fes/form.php:342
691
  #: app/skins/full_calendar/tpl.php:102
692
  msgid "Weekly"
693
  msgstr ""
694
 
695
+ #: app/features/events.php:727 app/features/fes/form.php:343
696
+ #: app/features/mec/dashboard.php:339 app/skins/full_calendar/tpl.php:101
697
  msgid "Monthly"
698
  msgstr ""
699
 
700
+ #: app/features/events.php:734 app/features/fes/form.php:344
701
+ #: app/features/mec/dashboard.php:340 app/skins/full_calendar/tpl.php:100
702
  msgid "Yearly"
703
  msgstr ""
704
 
705
+ #: app/features/events.php:741 app/features/fes/form.php:345
706
  msgid "Custom Days"
707
  msgstr ""
708
 
709
+ #: app/features/events.php:748 app/features/fes/form.php:346
710
  msgid "Advanced"
711
  msgstr ""
712
 
713
+ #: app/features/events.php:753 app/features/fes/form.php:350
714
  msgid "Repeat Interval"
715
  msgstr ""
716
 
717
+ #: app/features/events.php:755 app/features/fes/form.php:351
718
  msgid "Repeat interval"
719
  msgstr ""
720
 
721
+ #: app/features/events.php:759 app/features/fes/form.php:354
722
  msgid "Week Days"
723
  msgstr ""
724
 
725
+ #: app/features/events.php:761 app/features/fes/form.php:355
726
  #: app/features/mec/meta_boxes/display_options.php:730
727
  #: app/libraries/main.php:407
728
  msgid "Monday"
729
  msgstr ""
730
 
731
+ #: app/features/events.php:764 app/features/fes/form.php:356
732
  #: app/features/mec/meta_boxes/display_options.php:731
733
  #: app/libraries/main.php:407
734
  msgid "Tuesday"
735
  msgstr ""
736
 
737
+ #: app/features/events.php:767 app/features/fes/form.php:357
738
  #: app/features/mec/meta_boxes/display_options.php:732
739
  #: app/libraries/main.php:407
740
  msgid "Wednesday"
741
  msgstr ""
742
 
743
+ #: app/features/events.php:770 app/features/fes/form.php:358
744
  #: app/features/mec/meta_boxes/display_options.php:733
745
  #: app/libraries/main.php:407
746
  msgid "Thursday"
747
  msgstr ""
748
 
749
+ #: app/features/events.php:773 app/features/fes/form.php:359
750
  #: app/features/mec/meta_boxes/display_options.php:734
751
  #: app/libraries/main.php:407
752
  msgid "Friday"
753
  msgstr ""
754
 
755
+ #: app/features/events.php:776 app/features/fes/form.php:360
756
  #: app/features/mec/meta_boxes/display_options.php:735
757
  #: app/libraries/main.php:407
758
  msgid "Saturday"
759
  msgstr ""
760
 
761
+ #: app/features/events.php:779 app/features/fes/form.php:361
762
  #: app/features/mec/meta_boxes/display_options.php:729
763
  #: app/libraries/main.php:407
764
  msgid "Sunday"
765
  msgstr ""
766
 
767
+ #: app/features/events.php:786 app/features/events.php:1719
768
+ #: app/features/events.php:1747 app/features/events.php:1885
769
  #: app/features/fes/form.php:366 app/features/ix/import_f_calendar.php:42
770
  #: app/features/ix/import_g_calendar.php:51
771
  #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
772
  msgid "Start"
773
  msgstr ""
774
 
775
+ #: app/features/events.php:788 app/features/events.php:1723
776
+ #: app/features/events.php:1751 app/features/events.php:1889
777
  #: app/features/fes/form.php:367
778
  msgid "End"
779
  msgstr ""
780
 
781
+ #: app/features/events.php:790 app/features/events.php:1132
782
+ #: app/features/events.php:1243 app/features/events.php:1348
783
+ #: app/features/events.php:1537 app/features/events.php:1702
784
+ #: app/features/events.php:1874 app/features/events.php:1954
785
+ #: app/features/events.php:2087 app/features/fes/form.php:368
786
  msgid "Add"
787
  msgstr ""
788
 
789
+ #: app/features/events.php:793
790
  msgid "Custom Days Repeating"
791
  msgstr ""
792
 
793
+ #: app/features/events.php:794
794
  msgid ""
795
  "Add certain days to event occurrence dates. If you have single day event, "
796
  "start and end date should be the same, If you have multiple day event the "
797
  "start and end dates must be commensurate with the initial date."
798
  msgstr ""
799
 
800
+ #: app/features/events.php:830 app/features/fes/form.php:394
801
  msgid "First"
802
  msgstr ""
803
 
804
+ #: app/features/events.php:872 app/features/fes/form.php:436
805
  msgid "Second"
806
  msgstr ""
807
 
808
+ #: app/features/events.php:914 app/features/fes/form.php:478
809
  msgid "Third"
810
  msgstr ""
811
 
812
+ #: app/features/events.php:956 app/features/fes/form.php:520
813
  msgid "Fourth"
814
  msgstr ""
815
 
816
+ #: app/features/events.php:998 app/features/fes/form.php:562
817
  msgid "Last"
818
  msgstr ""
819
 
820
+ #: app/features/events.php:1045 app/features/fes/form.php:608
821
  msgid "Ends Repeat"
822
  msgstr ""
823
 
824
+ #: app/features/events.php:1056 app/features/fes/form.php:612
825
  msgid "Never"
826
  msgstr ""
827
 
828
+ #: app/features/events.php:1068 app/features/fes/form.php:617
829
  msgid "On"
830
  msgstr ""
831
 
832
+ #: app/features/events.php:1084 app/features/fes/form.php:624
833
  msgid "After"
834
  msgstr ""
835
 
836
+ #: app/features/events.php:1088 app/features/events.php:1092
837
  #: app/features/fes/form.php:626 app/features/fes/form.php:629
838
  msgid "Occurrences times"
839
  msgstr ""
840
 
841
+ #: app/features/events.php:1093 app/features/fes/form.php:630
842
  msgid ""
843
  "The event will finish after certain repeats. For example if you set it to "
844
  "10, the event will finish after 10 repeats."
845
  msgstr ""
846
 
847
+ #: app/features/events.php:1125 app/features/events.php:1135
848
  msgid "Exclude certain days"
849
  msgstr ""
850
 
851
+ #: app/features/events.php:1130 app/features/events.php:2323
852
+ #: app/features/mec/regform.php:270 app/features/profile/profile.php:31
853
+ #: app/libraries/main.php:1708 app/libraries/main.php:2319
854
  #: app/modules/booking/steps/tickets.php:22
855
  #: app/modules/next-event/details.php:90 app/skins/single.php:488
856
  #: app/skins/single/default.php:67 app/skins/single/default.php:278
858
  msgid "Date"
859
  msgstr ""
860
 
861
+ #: app/features/events.php:1136
862
  msgid ""
863
  "Exclude certain days from event occurrence dates. Please note that you can "
864
  "exclude only single day occurrences and you cannot exclude one day from "
865
  "multiple day occurrences."
866
  msgstr ""
867
 
868
+ #: app/features/events.php:1190 app/libraries/render.php:454
869
  msgid "Day 1"
870
  msgstr ""
871
 
872
+ #: app/features/events.php:1212 app/features/mec/settings.php:821
873
+ #: app/skins/single.php:779
874
  msgid "Hourly Schedule"
875
  msgstr ""
876
 
877
+ #: app/features/events.php:1216
878
  msgid "Add Day"
879
  msgstr ""
880
 
881
+ #: app/features/events.php:1217
882
  msgid ""
883
  "Add new days for schedule. For example if your event is multiple days, you "
884
  "can add a different schedule for each day!"
885
  msgstr ""
886
 
887
+ #: app/features/events.php:1224
888
  #, php-format
889
  msgid "Day %s"
890
  msgstr ""
891
 
892
+ #: app/features/events.php:1228 app/features/events.php:1267
893
+ #: app/features/events.php:1302 app/features/events.php:1334
894
+ #: app/features/events.php:1363 app/features/events.php:2102
895
+ #: app/features/events.php:2149 app/features/events.php:2966
896
+ #: app/features/events.php:3151 app/features/events.php:3193
897
  #: app/features/fes/form.php:225 app/features/ix.php:2740
898
+ #: app/features/ix.php:2781 app/features/mec/booking.php:469
899
+ #: app/features/mec/booking.php:501 app/features/mec/styling.php:269
900
  msgid "Title"
901
  msgstr ""
902
 
903
+ #: app/features/events.php:1237 app/features/events.php:1274
904
+ #: app/features/events.php:1307 app/features/events.php:1342
905
+ #: app/features/events.php:1368 app/features/events.php:1695
906
+ #: app/features/events.php:1733 app/features/events.php:1759
907
+ #: app/features/events.php:1868 app/features/events.php:1895
908
+ #: app/features/events.php:1994 app/features/events.php:2030
909
+ #: app/features/events.php:2137 app/features/events.php:2179
910
+ #: app/features/fes/list.php:78 app/features/mec/booking.php:412
911
+ #: app/features/mec/booking.php:441 app/features/mec/booking.php:492
912
+ #: app/features/mec/booking.php:524 app/libraries/main.php:2180
913
+ #: app/libraries/main.php:2210 app/libraries/main.php:2239
914
+ #: app/libraries/main.php:2269 app/libraries/main.php:2298
915
+ #: app/libraries/main.php:2327 app/libraries/main.php:2356
916
+ #: app/libraries/main.php:2385 app/libraries/main.php:2407
917
+ #: app/libraries/main.php:2438 app/libraries/main.php:2482
918
+ #: app/libraries/main.php:2526 app/libraries/main.php:2573
919
+ #: app/libraries/main.php:2612
920
  msgid "Remove"
921
  msgstr ""
922
 
923
+ #: app/features/events.php:1244 app/features/events.php:1349
924
  msgid "Add new hourly schedule row"
925
  msgstr ""
926
 
927
+ #: app/features/events.php:1259 app/features/events.php:1296
928
+ #: app/features/events.php:1358
929
  msgid "From e.g. 8:15"
930
  msgstr ""
931
 
932
+ #: app/features/events.php:1263 app/features/events.php:1299
933
+ #: app/features/events.php:1360
934
  msgid "To e.g. 8:45"
935
  msgstr ""
936
 
937
+ #: app/features/events.php:1271 app/features/events.php:1305
938
+ #: app/features/events.php:1366 app/features/events.php:1643
939
+ #: app/features/events.php:1827
940
  msgid "Description"
941
  msgstr ""
942
 
943
+ #: app/features/events.php:1277 app/features/events.php:1310
944
+ #: app/features/events.php:1371 app/features/fes/form.php:839
945
+ #: app/features/mec.php:340 app/features/mec/booking.php:123
946
+ #: app/features/mec/gateways.php:88 app/features/mec/ie.php:84
947
+ #: app/features/mec/messages.php:88 app/features/mec/modules.php:102
948
+ #: app/features/mec/notifications.php:87 app/features/mec/regform.php:125
949
+ #: app/features/mec/settings.php:160 app/features/mec/settings.php:815
950
+ #: app/features/mec/single.php:116 app/features/mec/styles.php:88
951
+ #: app/features/mec/styling.php:110 app/features/speakers.php:57
952
+ #: app/libraries/main.php:4494 app/modules/speakers/details.php:18
953
  msgid "Speakers"
954
  msgstr ""
955
 
956
+ #: app/features/events.php:1330 app/features/events.php:1338
957
  msgid "New Day"
958
  msgstr ""
959
 
960
+ #: app/features/events.php:1402 app/features/fes/form.php:683
961
+ #: app/features/mec/settings.php:761
962
  msgid "Event Links"
963
  msgstr ""
964
 
965
+ #: app/features/events.php:1405 app/features/events.php:1411
966
+ #: app/features/fes/form.php:685 app/libraries/main.php:4517
967
  msgid "Event Link"
968
  msgstr ""
969
 
970
+ #: app/features/events.php:1408 app/features/events.php:1424
971
  #: app/features/fes/form.php:686 app/features/fes/form.php:691
972
  msgid "eg. http://yoursite.com/your-event"
973
  msgstr ""
974
 
975
+ #: app/features/events.php:1412
976
  msgid ""
977
  "If you fill it, it will be replaced instead of default event page link. "
978
  "Insert full link including http(s):// - Also, if you use advertising URL, "
979
  "can use URL Shortener"
980
  msgstr ""
981
 
982
+ #: app/features/events.php:1414
983
  msgid "URL Shortener"
984
  msgstr ""
985
 
986
+ #: app/features/events.php:1421 app/features/events.php:1434
987
+ #: app/features/fes/form.php:690 app/libraries/main.php:4518
988
  #: app/skins/single.php:507 app/skins/single/default.php:117
989
  #: app/skins/single/default.php:328 app/skins/single/m1.php:191
990
  #: app/skins/single/m2.php:124 app/skins/single/modern.php:132
992
  msgid "More Info"
993
  msgstr ""
994
 
995
+ #: app/features/events.php:1427 app/features/fes/form.php:692
996
  msgid "More Information"
997
  msgstr ""
998
 
999
+ #: app/features/events.php:1429 app/features/fes/form.php:694
1000
  msgid "Current Window"
1001
  msgstr ""
1002
 
1003
+ #: app/features/events.php:1430 app/features/fes/form.php:695
1004
  msgid "New Window"
1005
  msgstr ""
1006
 
1007
+ #: app/features/events.php:1435 app/features/fes/form.php:697
1008
  msgid ""
1009
  "If you fill it, it will be shown in event details page as an optional link. "
1010
  "Insert full link including http(s)://"
1011
  msgstr ""
1012
 
1013
+ #: app/features/events.php:1475 app/features/events.php:1501
1014
  msgid "Total booking limits"
1015
  msgstr ""
1016
 
1017
+ #: app/features/events.php:1487 app/features/events.php:1692
1018
+ #: app/features/events.php:1865 app/modules/booking/default.php:85
1019
  #: app/modules/booking/steps/tickets.php:40
1020
  #: app/skins/available_spot/tpl.php:140
1021
  msgid "Unlimited"
1022
  msgstr ""
1023
 
1024
+ #: app/features/events.php:1490
1025
  msgid "100"
1026
  msgstr ""
1027
 
1028
+ #: app/features/events.php:1502
1029
  msgid ""
1030
  "If you want to set a limit to all tickets, uncheck this checkbox and put a "
1031
  "limitation number."
1032
  msgstr ""
1033
 
1034
+ #: app/features/events.php:1506
1035
  msgid "Read About A Booking System"
1036
  msgstr ""
1037
 
1038
+ #: app/features/events.php:1529 app/libraries/book.php:60
1039
+ #: app/libraries/main.php:4522 app/modules/booking/steps/tickets.php:40
1040
  msgid "Tickets"
1041
  msgstr ""
1042
 
1043
+ #: app/features/events.php:1532
1044
  msgid ""
1045
  "You're translating an event so MEC will use the original event for tickets "
1046
  "and booking. You can only translate the ticket name and description. Please "
1047
  "define exact tickets that you defined in the original event here."
1048
  msgstr ""
1049
 
1050
+ #: app/features/events.php:1551 app/features/events.php:1773
1051
  msgid "Ticket Name"
1052
  msgstr ""
1053
 
1054
+ #: app/features/events.php:1556 app/features/events.php:1777
1055
+ #: app/features/events.php:3151 app/features/events.php:3193
1056
  #: app/features/ix.php:2740 app/features/ix.php:2781
1057
  msgid "Start Time"
1058
  msgstr ""
1059
 
1060
+ #: app/features/events.php:1598 app/features/events.php:1801
1061
+ #: app/features/events.php:3151 app/features/events.php:3193
1062
  #: app/features/ix.php:2740 app/features/ix.php:2781
1063
  msgid "End Time"
1064
  msgstr ""
1065
 
1066
+ #: app/features/events.php:1649 app/features/events.php:1653
1067
+ #: app/features/events.php:1727 app/features/events.php:1754
1068
+ #: app/features/events.php:1832 app/features/events.php:1835
1069
+ #: app/features/events.php:1891 app/features/events.php:2108
1070
+ #: app/features/events.php:2112 app/features/events.php:2154
1071
+ #: app/features/events.php:2157 app/features/mec/booking.php:473
1072
+ #: app/features/mec/booking.php:476 app/features/mec/booking.php:505
1073
+ #: app/features/mec/booking.php:508
1074
  msgid "Price"
1075
  msgstr ""
1076
 
1077
+ #: app/features/events.php:1654 app/features/events.php:1836
1078
  msgid "Insert 0 for free ticket. Only numbers please."
1079
  msgstr ""
1080
 
1081
+ #: app/features/events.php:1663 app/features/events.php:1668
1082
+ #: app/features/events.php:1845 app/features/events.php:1848
1083
  msgid "Price Label"
1084
  msgstr ""
1085
 
1086
+ #: app/features/events.php:1669 app/features/events.php:1849
1087
  msgid "For showing on website. e.g. $15"
1088
  msgstr ""
1089
 
1090
+ #: app/features/events.php:1679 app/features/events.php:1859
1091
  msgid "Available Tickets"
1092
  msgstr ""
1093
 
1094
+ #: app/features/events.php:1700 app/features/events.php:1872
1095
  msgid "Price per Date"
1096
  msgstr ""
1097
 
1098
+ #: app/features/events.php:1731 app/features/events.php:1757
1099
+ #: app/features/events.php:1893 app/features/labels.php:60
1100
  #: app/features/mec/meta_boxes/display_options.php:799
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:189
1104
+ #: app/features/mec/meta_boxes/search_form.php:250
1105
+ #: app/features/mec/meta_boxes/search_form.php:311
1106
+ #: app/features/mec/meta_boxes/search_form.php:372
1107
+ #: app/features/mec/meta_boxes/search_form.php:433
1108
+ #: app/features/mec/meta_boxes/search_form.php:487
1109
+ #: app/features/mec/meta_boxes/search_form.php:548
1110
+ #: app/features/mec/meta_boxes/search_form.php:609
1111
+ #: app/features/mec/settings.php:919 app/libraries/skins.php:935
1112
  msgid "Label"
1113
  msgstr ""
1114
 
1115
+ #: app/features/events.php:1931
1116
  msgid "Fees"
1117
  msgstr ""
1118
 
1119
+ #: app/features/events.php:1943 app/features/events.php:2075
1120
+ #: app/features/events.php:2263
1121
  msgid "Inherit from global options"
1122
  msgstr ""
1123
 
1124
+ #: app/features/events.php:1968 app/features/events.php:2006
1125
+ #: app/features/mec/booking.php:392 app/features/mec/booking.php:421
1126
  msgid "Fee Title"
1127
  msgstr ""
1128
 
1129
+ #: app/features/events.php:1974 app/features/events.php:1978
1130
+ #: app/features/events.php:2011 app/features/events.php:2014
1131
+ #: app/features/mec/booking.php:396 app/features/mec/booking.php:399
1132
+ #: app/features/mec/booking.php:425 app/features/mec/booking.php:428
1133
  msgid "Amount"
1134
  msgstr ""
1135
 
1136
+ #: app/features/events.php:1979 app/features/events.php:2015
1137
+ #: app/features/mec/booking.php:400 app/features/mec/booking.php:429
1138
  msgid ""
1139
  "Fee amount, considered as fixed amount if you set the type to amount "
1140
  "otherwise considered as percentage"
1141
  msgstr ""
1142
 
1143
+ #: app/features/events.php:1988 app/features/events.php:2024
1144
+ #: app/features/mec/booking.php:407 app/features/mec/booking.php:436
1145
  msgid "Percent"
1146
  msgstr ""
1147
 
1148
+ #: app/features/events.php:1989 app/features/events.php:2025
1149
+ #: app/features/mec/booking.php:408 app/features/mec/booking.php:437
1150
  msgid "Amount (Per Ticket)"
1151
  msgstr ""
1152
 
1153
+ #: app/features/events.php:1990 app/features/events.php:2026
1154
+ #: app/features/mec/booking.php:409 app/features/mec/booking.php:438
1155
  msgid "Amount (Per Booking)"
1156
  msgstr ""
1157
 
1158
+ #: app/features/events.php:2063 app/features/mec/settings.php:839
1159
  msgid "Ticket Variations / Options"
1160
  msgstr ""
1161
 
1162
+ #: app/features/events.php:2113 app/features/events.php:2158
1163
+ #: app/features/mec/booking.php:477 app/features/mec/booking.php:509
1164
  msgid "Option Price"
1165
  msgstr ""
1166
 
1167
+ #: app/features/events.php:2123 app/features/events.php:2127
1168
+ #: app/features/events.php:2167 app/features/events.php:2170
1169
+ #: app/features/mec/booking.php:483 app/features/mec/booking.php:486
1170
+ #: app/features/mec/booking.php:515 app/features/mec/booking.php:518
1171
  msgid "Maximum Per Ticket"
1172
  msgstr ""
1173
 
1174
+ #: app/features/events.php:2128 app/features/events.php:2171
1175
+ #: app/features/mec/booking.php:487 app/features/mec/booking.php:519
1176
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
1177
  msgstr ""
1178
 
1179
+ #: app/features/events.php:2318 app/features/mec/regform.php:266
1180
+ #: app/libraries/main.php:2202
1181
  msgid "MEC Name"
1182
  msgstr ""
1183
 
1184
+ #: app/features/events.php:2320 app/features/mec/regform.php:267
1185
+ #: app/libraries/main.php:2231
1186
  msgid "MEC Email"
1187
  msgstr ""
1188
 
1189
+ #: app/features/events.php:2321 app/features/mec/regform.php:268
1190
+ #: app/libraries/main.php:2172
1191
  msgid "Text"
1192
  msgstr ""
1193
 
1194
+ #: app/features/events.php:2324 app/features/mec/regform.php:271
1195
  #: app/features/organizers.php:102 app/features/organizers.php:146
1196
  #: app/features/speakers.php:112 app/features/speakers.php:176
1197
+ #: app/features/speakers.php:245 app/libraries/main.php:2348
1198
  msgid "Tel"
1199
  msgstr ""
1200
 
1201
+ #: app/features/events.php:2325 app/features/mec/regform.php:272
1202
+ #: app/libraries/main.php:2290
1203
  msgid "File"
1204
  msgstr ""
1205
 
1206
+ #: app/features/events.php:2327 app/features/mec/regform.php:273
1207
+ #: app/libraries/main.php:2377
1208
  msgid "Textarea"
1209
  msgstr ""
1210
 
1211
+ #: app/features/events.php:2329 app/features/mec/regform.php:274
1212
+ #: app/libraries/main.php:2430
1213
  msgid "Checkboxes"
1214
  msgstr ""
1215
 
1216
+ #: app/features/events.php:2331 app/features/mec/regform.php:275
1217
+ #: app/libraries/main.php:2474
1218
  msgid "Radio Buttons"
1219
  msgstr ""
1220
 
1221
+ #: app/features/events.php:2332 app/features/mec/meta_boxes/search_form.php:34
1222
  #: app/features/mec/meta_boxes/search_form.php:41
1223
  #: app/features/mec/meta_boxes/search_form.php:48
1224
  #: app/features/mec/meta_boxes/search_form.php:55
1225
  #: app/features/mec/meta_boxes/search_form.php:62
1226
  #: app/features/mec/meta_boxes/search_form.php:69
1227
  #: app/features/mec/meta_boxes/search_form.php:76
1228
+ #: app/features/mec/meta_boxes/search_form.php:96
1229
+ #: app/features/mec/meta_boxes/search_form.php:103
1230
+ #: app/features/mec/meta_boxes/search_form.php:110
1231
+ #: app/features/mec/meta_boxes/search_form.php:117
1232
+ #: app/features/mec/meta_boxes/search_form.php:124
1233
+ #: app/features/mec/meta_boxes/search_form.php:131
1234
+ #: app/features/mec/meta_boxes/search_form.php:138
1235
+ #: app/features/mec/meta_boxes/search_form.php:157
1236
+ #: app/features/mec/meta_boxes/search_form.php:164
1237
+ #: app/features/mec/meta_boxes/search_form.php:171
1238
+ #: app/features/mec/meta_boxes/search_form.php:178
1239
+ #: app/features/mec/meta_boxes/search_form.php:185
1240
+ #: app/features/mec/meta_boxes/search_form.php:192
1241
+ #: app/features/mec/meta_boxes/search_form.php:199
1242
+ #: app/features/mec/meta_boxes/search_form.php:218
1243
+ #: app/features/mec/meta_boxes/search_form.php:225
1244
+ #: app/features/mec/meta_boxes/search_form.php:232
1245
+ #: app/features/mec/meta_boxes/search_form.php:239
1246
+ #: app/features/mec/meta_boxes/search_form.php:246
1247
+ #: app/features/mec/meta_boxes/search_form.php:253
1248
+ #: app/features/mec/meta_boxes/search_form.php:260
1249
+ #: app/features/mec/meta_boxes/search_form.php:279
1250
+ #: app/features/mec/meta_boxes/search_form.php:286
1251
+ #: app/features/mec/meta_boxes/search_form.php:293
1252
+ #: app/features/mec/meta_boxes/search_form.php:300
1253
+ #: app/features/mec/meta_boxes/search_form.php:307
1254
+ #: app/features/mec/meta_boxes/search_form.php:314
1255
+ #: app/features/mec/meta_boxes/search_form.php:321
1256
+ #: app/features/mec/meta_boxes/search_form.php:340
1257
+ #: app/features/mec/meta_boxes/search_form.php:347
1258
+ #: app/features/mec/meta_boxes/search_form.php:354
1259
+ #: app/features/mec/meta_boxes/search_form.php:361
1260
+ #: app/features/mec/meta_boxes/search_form.php:368
1261
+ #: app/features/mec/meta_boxes/search_form.php:375
1262
+ #: app/features/mec/meta_boxes/search_form.php:382
1263
+ #: app/features/mec/meta_boxes/search_form.php:401
1264
+ #: app/features/mec/meta_boxes/search_form.php:408
1265
+ #: app/features/mec/meta_boxes/search_form.php:415
1266
+ #: app/features/mec/meta_boxes/search_form.php:422
1267
+ #: app/features/mec/meta_boxes/search_form.php:429
1268
+ #: app/features/mec/meta_boxes/search_form.php:436
1269
+ #: app/features/mec/meta_boxes/search_form.php:455
1270
+ #: app/features/mec/meta_boxes/search_form.php:462
1271
+ #: app/features/mec/meta_boxes/search_form.php:469
1272
+ #: app/features/mec/meta_boxes/search_form.php:476
1273
+ #: app/features/mec/meta_boxes/search_form.php:483
1274
+ #: app/features/mec/meta_boxes/search_form.php:490
1275
+ #: app/features/mec/meta_boxes/search_form.php:497
1276
+ #: app/features/mec/meta_boxes/search_form.php:516
1277
+ #: app/features/mec/meta_boxes/search_form.php:523
1278
+ #: app/features/mec/meta_boxes/search_form.php:530
1279
+ #: app/features/mec/meta_boxes/search_form.php:537
1280
+ #: app/features/mec/meta_boxes/search_form.php:544
1281
+ #: app/features/mec/meta_boxes/search_form.php:551
1282
+ #: app/features/mec/meta_boxes/search_form.php:558
1283
+ #: app/features/mec/meta_boxes/search_form.php:577
1284
+ #: app/features/mec/meta_boxes/search_form.php:584
1285
+ #: app/features/mec/meta_boxes/search_form.php:591
1286
+ #: app/features/mec/meta_boxes/search_form.php:598
1287
+ #: app/features/mec/meta_boxes/search_form.php:605
1288
+ #: app/features/mec/meta_boxes/search_form.php:612
1289
+ #: app/features/mec/meta_boxes/search_form.php:619
1290
+ #: app/features/mec/regform.php:276 app/libraries/main.php:2518
1291
  msgid "Dropdown"
1292
  msgstr ""
1293
 
1294
+ #: app/features/events.php:2334 app/features/mec/regform.php:277
1295
+ #: app/libraries/main.php:2565
1296
  msgid "Agreement"
1297
  msgstr ""
1298
 
1299
+ #: app/features/events.php:2335 app/features/mec/regform.php:278
1300
+ #: app/libraries/main.php:2406
1301
  msgid "Paragraph"
1302
  msgstr ""
1303
 
1304
+ #: app/features/events.php:2904 app/features/events.php:2921
1305
+ #: app/features/events.php:2938
1306
  #, php-format
1307
  msgid "Show all %s"
1308
  msgstr ""
1309
 
1310
+ #: app/features/events.php:2904
1311
  msgid "labels"
1312
  msgstr ""
1313
 
1314
+ #: app/features/events.php:2921
1315
  msgid "locations"
1316
  msgstr ""
1317
 
1318
+ #: app/features/events.php:2938
1319
  msgid "organizers"
1320
  msgstr ""
1321
 
1322
+ #: app/features/events.php:2967 app/features/events.php:3151
1323
+ #: app/features/events.php:3193 app/features/ix.php:2740
1324
  #: app/features/ix.php:2781 app/features/locations.php:58
1325
  #: app/features/locations.php:229 app/features/locations.php:286
1326
  #: app/features/locations.php:288 app/features/locations.php:297
1327
  #: app/features/mec/meta_boxes/display_options.php:800
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:161
1331
+ #: app/features/mec/meta_boxes/search_form.php:222
1332
+ #: app/features/mec/meta_boxes/search_form.php:283
1333
+ #: app/features/mec/meta_boxes/search_form.php:344
1334
+ #: app/features/mec/meta_boxes/search_form.php:405
1335
+ #: app/features/mec/meta_boxes/search_form.php:459
1336
+ #: app/features/mec/meta_boxes/search_form.php:520
1337
+ #: app/features/mec/meta_boxes/search_form.php:581
1338
+ #: app/features/mec/settings.php:895 app/libraries/main.php:1702
1339
+ #: app/libraries/main.php:4491 app/libraries/skins.php:831
1340
+ #: app/skins/single.php:337 app/skins/single.php:756
1341
  #: app/skins/single/default.php:153 app/skins/single/default.php:364
1342
  #: app/skins/single/m1.php:155 app/skins/single/m2.php:87
1343
  #: app/skins/single/modern.php:94
1344
  msgid "Location"
1345
  msgstr ""
1346
 
1347
+ #: app/features/events.php:2968 app/features/events.php:3151
1348
+ #: app/features/events.php:3193 app/features/ix.php:2740
1349
  #: app/features/ix.php:2781 app/features/mec/meta_boxes/display_options.php:801
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:168
1353
+ #: app/features/mec/meta_boxes/search_form.php:229
1354
+ #: app/features/mec/meta_boxes/search_form.php:290
1355
+ #: app/features/mec/meta_boxes/search_form.php:351
1356
+ #: app/features/mec/meta_boxes/search_form.php:412
1357
+ #: app/features/mec/meta_boxes/search_form.php:466
1358
+ #: app/features/mec/meta_boxes/search_form.php:527
1359
+ #: app/features/mec/meta_boxes/search_form.php:588
1360
+ #: app/features/mec/settings.php:901 app/features/organizers.php:58
1361
+ #: app/features/organizers.php:199 app/features/organizers.php:255
1362
+ #: app/features/organizers.php:257 app/features/organizers.php:266
1363
+ #: app/libraries/main.php:4493 app/libraries/skins.php:857
1364
+ #: app/skins/single.php:644 app/skins/single/default.php:194
1365
+ #: app/skins/single/default.php:405 app/skins/single/m1.php:90
1366
+ #: app/skins/single/m2.php:22 app/skins/single/modern.php:31
1367
  msgid "Organizer"
1368
  msgstr ""
1369
 
1370
+ #: app/features/events.php:2972
1371
  msgid "Repeat"
1372
  msgstr ""
1373
 
1374
+ #: app/features/events.php:2973
1375
  msgid "Author"
1376
  msgstr ""
1377
 
1378
+ #: app/features/events.php:3086 app/features/events.php:3087
1379
  msgid "iCal Export"
1380
  msgstr ""
1381
 
1382
+ #: app/features/events.php:3089 app/features/events.php:3090
1383
  msgid "CSV Export"
1384
  msgstr ""
1385
 
1386
+ #: app/features/events.php:3092 app/features/events.php:3093
1387
  msgid "MS Excel Export"
1388
  msgstr ""
1389
 
1390
+ #: app/features/events.php:3095 app/features/events.php:3096
1391
  msgid "XML Export"
1392
  msgstr ""
1393
 
1394
+ #: app/features/events.php:3098 app/features/events.php:3099
1395
  msgid "JSON Export"
1396
  msgstr ""
1397
 
1398
+ #: app/features/events.php:3101 app/features/events.php:3102
1399
  msgid "Duplicate"
1400
  msgstr ""
1401
 
1402
+ #: app/features/events.php:3151 app/features/events.php:3193
1403
  #: app/features/ix.php:2740 app/features/ix.php:2781
1404
  #: app/features/labels.php:176 app/features/locations.php:228
1405
  #: app/features/organizers.php:198 app/features/speakers.php:242
1406
  msgid "ID"
1407
  msgstr ""
1408
 
1409
+ #: app/features/events.php:3151 app/features/events.php:3193
1410
  #: app/features/ix.php:2740 app/features/ix.php:2781
1411
  msgid "Link"
1412
  msgstr ""
1413
 
1414
+ #: app/features/events.php:3151 app/features/events.php:3193
1415
  #, php-format
1416
  msgid "%s Tel"
1417
  msgstr ""
1418
 
1419
+ #: app/features/events.php:3151 app/features/events.php:3193
1420
  #, php-format
1421
  msgid "%s Email"
1422
  msgstr ""
1423
 
1424
+ #: app/features/fes.php:84
1425
  #, php-format
1426
  msgid "Please %s/%s in order to submit new events."
1427
  msgstr ""
1428
 
1429
+ #: app/features/fes.php:84 app/features/fes.php:162 app/features/profile.php:74
1430
  msgid "Login"
1431
  msgstr ""
1432
 
1433
+ #: app/features/fes.php:84 app/features/fes.php:162 app/features/profile.php:74
1434
  msgid "Register"
1435
  msgstr ""
1436
 
1437
+ #: app/features/fes.php:97
1438
  msgid "Sorry! Selected post is not an event."
1439
  msgstr ""
1440
 
1441
+ #: app/features/fes.php:108 app/features/fes.php:147
1442
  msgid "Sorry! You don't have access to modify this event."
1443
  msgstr ""
1444
 
1445
+ #: app/features/fes.php:162
1446
  #, php-format
1447
  msgid "Please %s/%s in order to manage events."
1448
  msgstr ""
1449
 
1450
+ #: app/features/fes.php:192
1451
  msgid "The event removed!"
1452
  msgstr ""
1453
 
1454
+ #: app/features/fes.php:227
1455
  msgid "The image is uploaded!"
1456
  msgstr ""
1457
 
1458
+ #: app/features/fes.php:253
1459
  msgid "Captcha is invalid! Please try again."
1460
  msgstr ""
1461
 
1462
+ #: app/features/fes.php:265
1463
  msgid "Please fill event title field!"
1464
  msgstr ""
1465
 
1466
+ #: app/features/fes.php:825
1467
  msgid "The event submitted. It will publish as soon as possible."
1468
  msgstr ""
1469
 
1470
+ #: app/features/fes.php:826
1471
  msgid "The event published."
1472
  msgstr ""
1473
 
1501
  "Insert full link including http(s)://"
1502
  msgstr ""
1503
 
1504
+ #: app/features/fes/form.php:723 app/features/mec/settings.php:773
1505
  msgid "Featured Image"
1506
  msgstr ""
1507
 
1511
 
1512
  #: app/features/fes/form.php:770 app/features/labels.php:61
1513
  #: app/features/labels.php:220 app/features/mec.php:333
1514
+ #: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4488
1515
  #: app/skins/single.php:536 app/skins/single/default.php:132
1516
  #: app/skins/single/default.php:343 app/skins/single/m1.php:64
1517
  #: app/skins/single/modern.php:214
1552
  msgid "MEC - Import / Export"
1553
  msgstr ""
1554
 
1555
+ #: app/features/ix.php:107 app/features/mec/booking.php:204
1556
+ #: app/features/mec/gateways.php:169 app/features/mec/ie.php:165
1557
+ #: app/features/mec/messages.php:169 app/features/mec/modules.php:231
1558
+ #: app/features/mec/notifications.php:205 app/features/mec/regform.php:204
1559
+ #: app/features/mec/settings.php:241 app/features/mec/single.php:197
1560
+ #: app/features/mec/styles.php:169 app/features/mec/styling.php:191
1561
  #: app/features/mec/support.php:73
1562
  msgid "Import / Export"
1563
  msgstr ""
1685
  #: app/features/ix/import.php:15 app/features/ix/import_f_calendar.php:15
1686
  #: app/features/ix/import_g_calendar.php:15
1687
  #: app/features/ix/import_meetup.php:15 app/features/ix/sync.php:15
1688
+ #: app/features/ix/thirdparty.php:15 app/features/mec/ie.php:189
1689
  msgid "Export"
1690
  msgstr ""
1691
 
1696
  #: app/features/ix/import_g_calendar.php:103
1697
  #: app/features/ix/import_meetup.php:16 app/features/ix/import_meetup.php:85
1698
  #: app/features/ix/sync.php:16 app/features/ix/thirdparty.php:16
1699
+ #: app/features/ix/thirdparty.php:98 app/features/mec/ie.php:178
1700
  msgid "Import"
1701
  msgstr ""
1702
 
1717
  "This will export all of your website events' data into your desired format."
1718
  msgstr ""
1719
 
1720
+ #: app/features/ix/export.php:25 app/features/mec/modules.php:376
1721
  msgid "iCal"
1722
  msgstr ""
1723
 
1815
  #: app/features/ix/export_g_calendar.php:72
1816
  #: app/features/ix/export_g_calendar.php:147
1817
  #: app/features/ix/export_g_calendar.php:164
1818
+ #: app/features/mec/notifications.php:283
1819
+ #: app/features/mec/notifications.php:335
1820
+ #: app/features/mec/notifications.php:388
1821
+ #: app/features/mec/notifications.php:589
1822
  msgid "Add to Google Calendar"
1823
  msgstr ""
1824
 
1825
+ #: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:596
1826
+ #: app/features/mec/modules.php:615 app/features/mec/notifications.php:736
1827
+ #: app/features/mec/settings.php:1085 app/features/mec/single.php:432
1828
  msgid "Checking ..."
1829
  msgstr ""
1830
 
1866
  msgid "ICS Feed"
1867
  msgstr ""
1868
 
1869
+ #: app/features/ix/import.php:46 app/features/mec/booking.php:223
1870
+ #: app/features/mec/booking.php:358 app/features/mec/booking.php:376
1871
+ #: app/features/mec/booking.php:453 app/features/mec/modules.php:268
1872
+ #: app/features/mec/modules.php:409 app/features/mec/modules.php:426
1873
  #, php-format
1874
  msgid "%s is required to use this feature."
1875
  msgstr ""
1876
 
1877
  #: app/features/ix/import.php:46 app/features/ix/sync.php:22
1878
+ #: app/features/mec/booking.php:223 app/features/mec/booking.php:358
1879
+ #: app/features/mec/booking.php:376 app/features/mec/booking.php:453
1880
  #: app/features/mec/meta_boxes/display_options.php:296
1881
  #: app/features/mec/meta_boxes/display_options.php:423
1882
  #: app/features/mec/meta_boxes/display_options.php:474
1883
  #: app/features/mec/meta_boxes/display_options.php:581
1884
  #: app/features/mec/meta_boxes/display_options.php:688
1885
  #: app/features/mec/meta_boxes/display_options.php:761
1886
+ #: app/features/mec/meta_boxes/display_options.php:961
1887
+ #: app/features/mec/modules.php:268 app/features/mec/modules.php:409
1888
+ #: app/features/mec/modules.php:426
1889
  msgid "Pro version of Modern Events Calendar"
1890
  msgstr ""
1891
 
2048
 
2049
  #: app/features/ix/sync.php:32 app/features/ix/sync.php:41
2050
  #: app/features/ix/sync.php:52 app/features/ix/sync.php:63
2051
+ #: app/features/mec/notifications.php:532
2052
  msgid "Important Note"
2053
  msgstr ""
2054
 
2158
  #: app/features/mec/meta_boxes/display_options.php:479
2159
  #: app/features/mec/meta_boxes/display_options.php:529
2160
  #: app/features/mec/meta_boxes/display_options.php:693
2161
+ #: app/features/mec/meta_boxes/display_options.php:843
2162
+ #: app/features/mec/meta_boxes/display_options.php:900
2163
+ #: app/features/mec/meta_boxes/display_options.php:992
2164
+ #: app/features/mec/meta_boxes/display_options.php:1078
2165
  msgid "Style"
2166
  msgstr ""
2167
 
2171
 
2172
  #: app/features/labels.php:116 app/features/labels.php:141
2173
  #: app/skins/agenda/render.php:37 app/skins/available_spot/tpl.php:31
2174
+ #: app/skins/carousel/render.php:44 app/skins/countdown/tpl.php:24
2175
  #: app/skins/cover/tpl.php:28 app/skins/daily_view/render.php:23
2176
  #: app/skins/grid/render.php:49 app/skins/list/render.php:36
2177
  #: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:82
2183
  msgstr ""
2184
 
2185
  #: app/features/labels.php:117 app/features/labels.php:142
2186
+ #: app/libraries/main.php:4734 app/skins/agenda/render.php:41
2187
+ #: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:45
2188
  #: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
2189
  #: app/skins/daily_view/render.php:27 app/skins/grid/render.php:53
2190
  #: app/skins/list/render.php:40 app/skins/masonry/render.php:29
2217
  msgstr ""
2218
 
2219
  #: app/features/locations.php:59 app/features/mec.php:334
2220
+ #: app/features/mec/dashboard.php:205 app/features/mec/meta_boxes/filter.php:87
2221
+ #: app/libraries/main.php:4490
2222
  msgid "Locations"
2223
  msgstr ""
2224
 
2289
  msgid "eg. City Hall"
2290
  msgstr ""
2291
 
2292
+ #: app/features/locations.php:309 app/features/mec/settings.php:803
2293
  #: app/widgets/single.php:115
2294
  msgid "Event Location"
2295
  msgstr ""
2323
  msgid "Don't show map in single event page"
2324
  msgstr ""
2325
 
2326
+ #: app/features/locations.php:355 app/libraries/main.php:4524
2327
  msgid "Other Locations"
2328
  msgstr ""
2329
 
2365
  msgid "Support"
2366
  msgstr ""
2367
 
2368
+ #: app/features/mec.php:335 app/features/mec/dashboard.php:212
2369
  #: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
2370
+ #: app/libraries/main.php:4492
2371
  msgid "Organizers"
2372
  msgstr ""
2373
 
2374
  #: app/features/mec.php:343 app/features/mec.php:363
2375
+ #: app/features/mec/dashboard.php:198
2376
  msgid "Shortcodes"
2377
  msgstr ""
2378
 
2424
  msgid "Search Form"
2425
  msgstr ""
2426
 
2427
+ #: app/features/mec.php:819
2428
  msgid "Display content's images as Popup"
2429
  msgstr ""
2430
 
2431
+ #: app/features/mec.php:832
2432
  msgid "Single Event Display Method"
2433
  msgstr ""
2434
 
2435
+ #: app/features/mec.php:837
2436
  msgid "Separate Window"
2437
  msgstr ""
2438
 
2439
+ #: app/features/mec.php:838
2440
  msgid "Modal 1"
2441
  msgstr ""
2442
 
2470
  "your host provider in this regard."
2471
  msgstr ""
2472
 
2473
+ #: app/features/mec/booking.php:24 app/features/mec/booking.php:536
2474
+ #: app/features/mec/booking.php:546 app/features/mec/booking.php:613
2475
+ #: app/features/mec/booking.php:627 app/features/mec/gateways.php:11
2476
+ #: app/features/mec/gateways.php:211 app/features/mec/gateways.php:220
2477
+ #: app/features/mec/gateways.php:261 app/features/mec/gateways.php:271
2478
+ #: app/features/mec/messages.php:11 app/features/mec/messages.php:203
2479
+ #: app/features/mec/messages.php:212 app/features/mec/messages.php:246
2480
+ #: app/features/mec/messages.php:255 app/features/mec/modules.php:22
2481
+ #: app/features/mec/modules.php:555 app/features/mec/modules.php:565
2482
+ #: app/features/mec/modules.php:632 app/features/mec/modules.php:646
2483
+ #: app/features/mec/notifications.php:10 app/features/mec/notifications.php:645
2484
+ #: app/features/mec/notifications.php:657
2485
+ #: app/features/mec/notifications.php:753
2486
+ #: app/features/mec/notifications.php:767 app/features/mec/regform.php:48
2487
+ #: app/features/mec/regform.php:284 app/features/mec/regform.php:339
2488
+ #: app/features/mec/regform.php:375 app/features/mec/regform.php:384
2489
+ #: app/features/mec/settings.php:31 app/features/mec/settings.php:1009
2490
+ #: app/features/mec/settings.php:1019 app/features/mec/settings.php:1102
2491
+ #: app/features/mec/settings.php:1116 app/features/mec/single.php:14
2492
+ #: app/features/mec/single.php:372 app/features/mec/single.php:382
2493
+ #: app/features/mec/single.php:449 app/features/mec/single.php:463
2494
+ #: app/features/mec/styles.php:11 app/features/mec/styles.php:189
2495
+ #: app/features/mec/styles.php:198 app/features/mec/styles.php:235
2496
+ #: app/features/mec/styles.php:244 app/features/mec/styling.php:33
2497
+ #: app/features/mec/styling.php:396 app/features/mec/styling.php:405
2498
+ #: app/features/mec/styling.php:468 app/features/mec/styling.php:477
2499
  msgid "Save Changes"
2500
  msgstr ""
2501
 
2502
  #: app/features/mec/booking.php:38 app/features/mec/gateways.php:29
2503
  #: app/features/mec/ie.php:25 app/features/mec/messages.php:29
2504
  #: app/features/mec/modules.php:36 app/features/mec/notifications.php:28
2505
+ #: app/features/mec/regform.php:66 app/features/mec/settings.php:57
2506
+ #: app/features/mec/settings.php:370 app/features/mec/single.php:28
2507
  #: app/features/mec/styles.php:29 app/features/mec/styling.php:51
2508
  msgid "Archive Pages"
2509
  msgstr ""
2511
  #: app/features/mec/booking.php:43 app/features/mec/gateways.php:34
2512
  #: app/features/mec/ie.php:30 app/features/mec/messages.php:34
2513
  #: app/features/mec/modules.php:41 app/features/mec/notifications.php:33
2514
+ #: app/features/mec/regform.php:71 app/features/mec/settings.php:87
2515
+ #: app/features/mec/settings.php:876 app/features/mec/single.php:33
2516
  #: app/features/mec/styles.php:34 app/features/mec/styling.php:56
2517
  msgid "User Profile"
2518
  msgstr ""
2519
 
2520
+ #: app/features/mec/booking.php:44 app/features/mec/gateways.php:35
2521
+ #: app/features/mec/ie.php:31 app/features/mec/messages.php:35
2522
+ #: app/features/mec/modules.php:42 app/features/mec/notifications.php:34
2523
+ #: app/features/mec/regform.php:72 app/features/mec/settings.php:93
2524
+ #: app/features/mec/settings.php:883 app/features/mec/single.php:34
2525
+ #: app/features/mec/styles.php:35 app/features/mec/styling.php:57
2526
+ msgid "Search Bar"
2527
+ msgstr ""
2528
+
2529
+ #: app/features/mec/booking.php:48 app/features/mec/gateways.php:39
2530
+ #: app/features/mec/ie.php:35 app/features/mec/messages.php:39
2531
+ #: app/features/mec/modules.php:46 app/features/mec/notifications.php:38
2532
+ #: app/features/mec/regform.php:76 app/features/mec/settings.php:109
2533
+ #: app/features/mec/single.php:38 app/features/mec/styles.php:39
2534
+ #: app/features/mec/styling.php:61
2535
  msgid "Upload Field"
2536
  msgstr ""
2537
 
2538
+ #: app/features/mec/booking.php:56 app/features/mec/gateways.php:47
2539
+ #: app/features/mec/ie.php:43 app/features/mec/messages.php:47
2540
+ #: app/features/mec/modules.php:54 app/features/mec/notifications.php:46
2541
+ #: app/features/mec/regform.php:84 app/features/mec/settings.php:119
2542
+ #: app/features/mec/single.php:50 app/features/mec/styles.php:47
2543
+ #: app/features/mec/styling.php:69
2544
  msgid "Single Event"
2545
  msgstr ""
2546
 
2547
+ #: app/features/mec/booking.php:60 app/features/mec/gateways.php:51
2548
+ #: app/features/mec/ie.php:47 app/features/mec/messages.php:51
2549
+ #: app/features/mec/modules.php:58 app/features/mec/notifications.php:50
2550
+ #: app/features/mec/regform.php:88 app/features/mec/settings.php:123
2551
+ #: app/features/mec/single.php:57 app/features/mec/single.php:214
2552
+ #: app/features/mec/styles.php:51 app/features/mec/styling.php:73
2553
  msgid "Single Event Page"
2554
  msgstr ""
2555
 
 
 
 
 
 
 
 
 
 
2556
  #: app/features/mec/booking.php:63 app/features/mec/gateways.php:54
2557
  #: app/features/mec/ie.php:50 app/features/mec/messages.php:54
2558
  #: app/features/mec/modules.php:61 app/features/mec/notifications.php:53
2559
+ #: app/features/mec/regform.php:91 app/features/mec/settings.php:126
2560
+ #: app/features/mec/single.php:75 app/features/mec/single.php:351
2561
+ #: app/features/mec/styles.php:54 app/features/mec/styling.php:76
2562
+ msgid "Additional Organizers"
2563
  msgstr ""
2564
 
2565
+ #: app/features/mec/booking.php:64 app/features/mec/gateways.php:55
2566
+ #: app/features/mec/ie.php:51 app/features/mec/messages.php:55
2567
+ #: app/features/mec/modules.php:62 app/features/mec/notifications.php:54
2568
+ #: app/features/mec/regform.php:92 app/features/mec/settings.php:127
2569
+ #: app/features/mec/single.php:81 app/features/mec/styles.php:55
2570
+ #: app/features/mec/styling.php:77
2571
+ msgid "Additional Locations"
2572
  msgstr ""
2573
 
2574
+ #: app/features/mec/booking.php:99 app/features/mec/booking.php:373
2575
  #: app/features/mec/gateways.php:72 app/features/mec/ie.php:68
2576
  #: app/features/mec/messages.php:72 app/features/mec/modules.php:79
2577
+ #: app/features/mec/notifications.php:71 app/features/mec/regform.php:109
2578
+ #: app/features/mec/settings.php:144 app/features/mec/single.php:100
2579
  #: app/features/mec/styles.php:72 app/features/mec/styling.php:94
2580
+ msgid "Taxes / Fees"
2581
  msgstr ""
2582
 
2583
+ #: app/features/mec/booking.php:105 app/features/mec/booking.php:450
2584
+ #: app/features/mec/gateways.php:73 app/features/mec/ie.php:69
2585
+ #: app/features/mec/messages.php:73 app/features/mec/modules.php:80
2586
+ #: app/features/mec/notifications.php:72 app/features/mec/regform.php:110
2587
+ #: app/features/mec/settings.php:145 app/features/mec/single.php:101
2588
+ #: app/features/mec/styles.php:73 app/features/mec/styling.php:95
2589
+ msgid "Ticket Variations & Options"
2590
  msgstr ""
2591
 
2592
+ #: app/features/mec/booking.php:119 app/features/mec/gateways.php:84
2593
+ #: app/features/mec/ie.php:80 app/features/mec/messages.php:84
2594
+ #: app/features/mec/modules.php:95 app/features/mec/notifications.php:83
2595
+ #: app/features/mec/regform.php:121 app/features/mec/settings.php:156
2596
+ #: app/features/mec/single.php:112 app/features/mec/styles.php:84
2597
+ #: app/features/mec/styling.php:106
2598
+ msgid "Modules"
2599
  msgstr ""
2600
 
2601
  #: app/features/mec/booking.php:127 app/features/mec/gateways.php:92
2602
  #: app/features/mec/ie.php:88 app/features/mec/messages.php:92
2603
+ #: app/features/mec/modules.php:118 app/features/mec/modules.php:365
2604
+ #: app/features/mec/notifications.php:91 app/features/mec/regform.php:129
2605
+ #: app/features/mec/settings.php:164 app/features/mec/single.php:120
2606
  #: app/features/mec/styles.php:92 app/features/mec/styling.php:114
2607
+ msgid "Export Options"
2608
+ msgstr ""
2609
+
2610
+ #: app/features/mec/booking.php:128 app/features/mec/gateways.php:93
2611
+ #: app/features/mec/ie.php:89 app/features/mec/messages.php:93
2612
+ #: app/features/mec/modules.php:124 app/features/mec/modules.php:392
2613
+ #: app/features/mec/notifications.php:92 app/features/mec/regform.php:130
2614
+ #: app/features/mec/settings.php:165 app/features/mec/single.php:121
2615
+ #: app/features/mec/styles.php:93 app/features/mec/styling.php:115
2616
  #: app/modules/local-time/details.php:42 app/widgets/single.php:99
2617
  msgid "Local Time"
2618
  msgstr ""
2619
 
2620
+ #: app/features/mec/booking.php:130 app/features/mec/gateways.php:95
2621
+ #: app/features/mec/ie.php:91 app/features/mec/messages.php:95
2622
+ #: app/features/mec/modules.php:132 app/features/mec/modules.php:406
2623
+ #: app/features/mec/notifications.php:94 app/features/mec/regform.php:132
2624
+ #: app/features/mec/settings.php:167 app/features/mec/single.php:123
2625
+ #: app/features/mec/styles.php:95 app/features/mec/styling.php:117
2626
  #: app/modules/qrcode/details.php:38 app/widgets/single.php:155
2627
  msgid "QR Code"
2628
  msgstr ""
2629
 
2630
+ #: app/features/mec/booking.php:131 app/features/mec/gateways.php:96
2631
+ #: app/features/mec/ie.php:92 app/features/mec/messages.php:96
2632
+ #: app/features/mec/modules.php:138 app/features/mec/modules.php:424
2633
+ #: app/features/mec/notifications.php:95 app/features/mec/regform.php:133
2634
+ #: app/features/mec/settings.php:168 app/features/mec/single.php:124
2635
+ #: app/features/mec/styles.php:96 app/features/mec/styling.php:118
2636
+ #: app/modules/weather/details.php:37
2637
  msgid "Weather"
2638
  msgstr ""
2639
 
2640
+ #: app/features/mec/booking.php:134 app/features/mec/gateways.php:99
2641
+ #: app/features/mec/ie.php:95 app/features/mec/messages.php:99
2642
+ #: app/features/mec/modules.php:152 app/features/mec/modules.php:486
2643
+ #: app/features/mec/notifications.php:98 app/features/mec/regform.php:136
2644
+ #: app/features/mec/settings.php:171 app/features/mec/single.php:127
2645
+ #: app/features/mec/styles.php:99 app/features/mec/styling.php:121
2646
  #: app/modules/next-event/details.php:82
2647
  msgid "Next Event"
2648
  msgstr ""
2649
 
2650
+ #: app/features/mec/booking.php:169 app/features/mec/gateways.php:134
2651
+ #: app/features/mec/ie.php:130 app/features/mec/messages.php:134
2652
+ #: app/features/mec/modules.php:196 app/features/mec/notifications.php:143
2653
+ #: app/features/mec/notifications.php:290 app/features/mec/regform.php:169
2654
+ #: app/features/mec/settings.php:206 app/features/mec/single.php:162
 
 
 
 
 
 
 
 
 
 
2655
  #: app/features/mec/styles.php:134 app/features/mec/styling.php:156
2656
+ msgid "Booking Verification"
2657
  msgstr ""
2658
 
2659
+ #: app/features/mec/booking.php:170 app/features/mec/booking.php:329
2660
+ #: app/features/mec/gateways.php:135 app/features/mec/ie.php:131
2661
+ #: app/features/mec/messages.php:135 app/features/mec/modules.php:197
2662
+ #: app/features/mec/notifications.php:149
2663
+ #: app/features/mec/notifications.php:342 app/features/mec/regform.php:170
2664
+ #: app/features/mec/settings.php:207 app/features/mec/single.php:163
2665
  #: app/features/mec/styles.php:135 app/features/mec/styling.php:157
2666
+ msgid "Booking Confirmation"
2667
  msgstr ""
2668
 
2669
  #: app/features/mec/booking.php:171 app/features/mec/gateways.php:136
2670
  #: app/features/mec/ie.php:132 app/features/mec/messages.php:136
2671
+ #: app/features/mec/modules.php:198 app/features/mec/notifications.php:155
2672
+ #: app/features/mec/notifications.php:394 app/features/mec/regform.php:171
2673
+ #: app/features/mec/settings.php:208 app/features/mec/single.php:164
2674
  #: app/features/mec/styles.php:136 app/features/mec/styling.php:158
2675
+ msgid "Booking Cancellation"
2676
  msgstr ""
2677
 
2678
  #: app/features/mec/booking.php:172 app/features/mec/gateways.php:137
2679
  #: app/features/mec/ie.php:133 app/features/mec/messages.php:137
2680
+ #: app/features/mec/modules.php:199 app/features/mec/notifications.php:161
2681
+ #: app/features/mec/notifications.php:462 app/features/mec/regform.php:172
2682
+ #: app/features/mec/settings.php:209 app/features/mec/single.php:165
2683
  #: app/features/mec/styles.php:137 app/features/mec/styling.php:159
2684
+ msgid "Admin"
2685
+ msgstr ""
2686
+
2687
+ #: app/features/mec/booking.php:173 app/features/mec/gateways.php:138
2688
+ #: app/features/mec/ie.php:134 app/features/mec/messages.php:138
2689
+ #: app/features/mec/modules.php:200 app/features/mec/notifications.php:167
2690
+ #: app/features/mec/notifications.php:522 app/features/mec/regform.php:173
2691
+ #: app/features/mec/settings.php:210 app/features/mec/single.php:166
2692
+ #: app/features/mec/styles.php:138 app/features/mec/styling.php:160
2693
  #: app/libraries/notifications.php:354
2694
  msgid "Booking Reminder"
2695
  msgstr ""
2696
 
2697
+ #: app/features/mec/booking.php:175 app/features/mec/gateways.php:140
2698
+ #: app/features/mec/ie.php:136 app/features/mec/messages.php:140
2699
+ #: app/features/mec/modules.php:202 app/features/mec/notifications.php:173
2700
+ #: app/features/mec/notifications.php:598 app/features/mec/regform.php:175
2701
+ #: app/features/mec/settings.php:212 app/features/mec/single.php:168
2702
+ #: app/features/mec/styles.php:140 app/features/mec/styling.php:162
2703
  #: app/features/mec/support-page.php:80
2704
  msgid "New Event"
2705
  msgstr ""
2706
 
2707
+ #: app/features/mec/booking.php:183 app/features/mec/gateways.php:148
2708
+ #: app/features/mec/ie.php:144 app/features/mec/messages.php:148
2709
+ #: app/features/mec/modules.php:210 app/features/mec/notifications.php:184
2710
+ #: app/features/mec/regform.php:183 app/features/mec/settings.php:220
2711
+ #: app/features/mec/single.php:176 app/features/mec/styles.php:148
2712
+ #: app/features/mec/styling.php:170 app/features/mec/support.php:52
2713
  msgid "Styling Options"
2714
  msgstr ""
2715
 
2716
+ #: app/features/mec/booking.php:190 app/features/mec/gateways.php:155
2717
+ #: app/features/mec/ie.php:151 app/features/mec/messages.php:155
2718
+ #: app/features/mec/modules.php:217 app/features/mec/notifications.php:191
2719
+ #: app/features/mec/regform.php:190 app/features/mec/settings.php:227
2720
+ #: app/features/mec/single.php:183 app/features/mec/styles.php:155
2721
+ #: app/features/mec/styling.php:177 app/features/mec/support.php:59
2722
  msgid "Custom CSS"
2723
  msgstr ""
2724
 
2725
+ #: app/features/mec/booking.php:197 app/features/mec/gateways.php:162
2726
+ #: app/features/mec/ie.php:158 app/features/mec/messages.php:162
2727
+ #: app/features/mec/messages.php:182 app/features/mec/modules.php:224
2728
+ #: app/features/mec/notifications.php:198 app/features/mec/regform.php:197
2729
+ #: app/features/mec/settings.php:234 app/features/mec/single.php:190
2730
+ #: app/features/mec/styles.php:162 app/features/mec/styling.php:184
2731
  #: app/features/mec/support.php:66
2732
  msgid "Messages"
2733
  msgstr ""
2734
 
2735
+ #: app/features/mec/booking.php:228
2736
  msgid "Enable booking module"
2737
  msgstr ""
2738
 
2739
+ #: app/features/mec/booking.php:229
2740
  msgid ""
2741
  "After enable it, you should reloading this page to see Payment Gateways on "
2742
  "settings and see a new menu on Dashboard"
2743
  msgstr ""
2744
 
2745
+ #: app/features/mec/booking.php:234 app/features/mec/booking.php:239
2746
+ #: app/features/mec/modules.php:504 app/features/mec/modules.php:509
2747
  msgid "Date Format"
2748
  msgstr ""
2749
 
2750
+ #: app/features/mec/booking.php:240
2751
  msgid "Default is Y-m-d"
2752
  msgstr ""
2753
 
2754
+ #: app/features/mec/booking.php:247
2755
+ #: app/features/mec/meta_boxes/display_options.php:115
2756
+ #: app/features/mec/meta_boxes/display_options.php:276
2757
+ #: app/features/mec/meta_boxes/display_options.php:332
2758
+ #: app/features/mec/meta_boxes/display_options.php:791
2759
+ #: app/features/mec/meta_boxes/display_options.php:1058
2760
+ #: app/features/mec/meta_boxes/display_options.php:1166
2761
+ msgid "Limit"
2762
+ msgstr ""
2763
+
2764
+ #: app/features/mec/booking.php:249
2765
+ msgid "Default is empty"
2766
+ msgstr ""
2767
+
2768
+ #: app/features/mec/booking.php:252
2769
+ msgid "Booking Limit"
2770
+ msgstr ""
2771
+
2772
+ #: app/features/mec/booking.php:253
2773
+ msgid ""
2774
+ "Total tickets that a user can book. It is useful if you're providing free "
2775
+ "tickets. Leave it empty for unlimited booking."
2776
+ msgstr ""
2777
+
2778
+ #: app/features/mec/booking.php:260
2779
  msgid "Maximum Dates"
2780
  msgstr ""
2781
 
2782
+ #: app/features/mec/booking.php:262
2783
  msgid "Default is 6"
2784
  msgstr ""
2785
 
2786
+ #: app/features/mec/booking.php:266 app/features/mec/booking.php:276
2787
  msgid "Thank You Page"
2788
  msgstr ""
2789
 
2790
+ #: app/features/mec/booking.php:277
2791
  msgid ""
2792
  "User redirects to this page after booking. Leave it empty if you want to "
2793
  "disable it."
2794
  msgstr ""
2795
 
2796
+ #: app/features/mec/booking.php:288
2797
  msgid "Enable Express Attendees Form"
2798
  msgstr ""
2799
 
2800
+ #: app/features/mec/booking.php:292 app/modules/booking/steps/form.php:49
2801
  msgid "Attendees Form"
2802
  msgstr ""
2803
 
2804
+ #: app/features/mec/booking.php:293
2805
  msgid ""
2806
  "Users are able to apply first attendee information for other attendees in "
2807
  "the booking form."
2808
  msgstr ""
2809
 
2810
+ #: app/features/mec/booking.php:306
2811
+ msgid "Enable Invoice"
2812
+ msgstr ""
2813
+
2814
+ #: app/features/mec/booking.php:310
2815
  msgid "Email verification"
2816
  msgstr ""
2817
 
2818
+ #: app/features/mec/booking.php:316
2819
  msgid "Auto verification for free bookings"
2820
  msgstr ""
2821
 
2822
+ #: app/features/mec/booking.php:325
2823
  msgid "Auto verification for paid bookings"
2824
  msgstr ""
2825
 
2826
+ #: app/features/mec/booking.php:335
2827
  msgid "Auto confirmation for free bookings"
2828
  msgstr ""
2829
 
2830
+ #: app/features/mec/booking.php:344
2831
  msgid "Auto confirmation for paid bookings"
2832
  msgstr ""
2833
 
2834
+ #: app/features/mec/booking.php:363
2835
  msgid "Enable coupons module"
2836
  msgstr ""
2837
 
2838
+ #: app/features/mec/booking.php:365
2839
  msgid ""
2840
  "After enable it, you should reloading this page to see a new menu on "
2841
  "Dashboard > Booking"
2842
  msgstr ""
2843
 
2844
+ #: app/features/mec/booking.php:381
2845
  msgid "Enable taxes / fees module"
2846
  msgstr ""
2847
 
2848
+ #: app/features/mec/booking.php:386
2849
  msgid "Add Fee"
2850
  msgstr ""
2851
 
2852
+ #: app/features/mec/booking.php:458
2853
  msgid "Enable ticket options module"
2854
  msgstr ""
2855
 
2856
+ #: app/features/mec/booking.php:463
2857
  msgid "Add Variation / Option"
2858
  msgstr ""
2859
 
2860
+ #: app/features/mec/booking.php:591 app/features/mec/gateways.php:240
2861
+ #: app/features/mec/messages.php:230 app/features/mec/modules.php:610
2862
+ #: app/features/mec/notifications.php:731 app/features/mec/regform.php:359
2863
+ #: app/features/mec/settings.php:1080 app/features/mec/single.php:427
2864
+ #: app/features/mec/styles.php:218 app/features/mec/styling.php:450
2865
  msgid "Saved"
2866
  msgstr ""
2867
 
2868
+ #: app/features/mec/booking.php:592 app/features/mec/gateways.php:241
2869
+ #: app/features/mec/messages.php:231 app/features/mec/modules.php:611
2870
+ #: app/features/mec/notifications.php:732 app/features/mec/regform.php:360
2871
+ #: app/features/mec/settings.php:1081 app/features/mec/single.php:428
2872
+ #: app/features/mec/styles.php:219 app/features/mec/styling.php:451
2873
  msgid "Settings Saved!"
2874
  msgstr ""
2875
 
2876
+ #: app/features/mec/booking.php:594 app/features/mec/booking.php:616
2877
+ #: app/features/mec/modules.php:613 app/features/mec/modules.php:635
2878
+ #: app/features/mec/notifications.php:734
2879
+ #: app/features/mec/notifications.php:756 app/features/mec/settings.php:1083
2880
+ #: app/features/mec/settings.php:1105 app/features/mec/single.php:430
2881
+ #: app/features/mec/single.php:452 app/libraries/main.php:4733
2882
  msgid "Verified"
2883
  msgstr ""
2884
 
2885
+ #: app/features/mec/booking.php:618 app/features/mec/modules.php:637
2886
+ #: app/features/mec/notifications.php:758 app/features/mec/settings.php:1107
2887
+ #: app/features/mec/single.php:454
2888
  msgid "Please Refresh Page"
2889
  msgstr ""
2890
 
2947
  "code."
2948
  msgstr ""
2949
 
2950
+ #: app/features/mec/dashboard.php:178
2951
  msgid "Activate Addons"
2952
  msgstr ""
2953
 
2954
+ #: app/features/mec/dashboard.php:223 app/features/mec/settings.php:541
2955
  msgid "Upcoming Events"
2956
  msgstr ""
2957
 
2958
+ #: app/features/mec/dashboard.php:247
2959
  msgid "Popular Gateways"
2960
  msgstr ""
2961
 
2962
+ #: app/features/mec/dashboard.php:301
2963
  msgid "Total Bookings"
2964
  msgstr ""
2965
 
2966
+ #: app/features/mec/dashboard.php:328
2967
  msgid "This Month"
2968
  msgstr ""
2969
 
2970
+ #: app/features/mec/dashboard.php:329
2971
  msgid "Last Month"
2972
  msgstr ""
2973
 
2974
+ #: app/features/mec/dashboard.php:330
2975
  msgid "This Year"
2976
  msgstr ""
2977
 
2978
+ #: app/features/mec/dashboard.php:331
2979
  msgid "Last Year"
2980
  msgstr ""
2981
 
2982
+ #: app/features/mec/dashboard.php:343
2983
  msgid "Bar"
2984
  msgstr ""
2985
 
2986
+ #: app/features/mec/dashboard.php:344
2987
  msgid "Line"
2988
  msgstr ""
2989
 
2990
+ #: app/features/mec/dashboard.php:346
2991
  msgid "Filter"
2992
  msgstr ""
2993
 
2994
+ #: app/features/mec/dashboard.php:362
2995
  #, php-format
2996
  msgid "Total Sells (%s)"
2997
  msgstr ""
2998
 
2999
+ #: app/features/mec/dashboard.php:383
3000
  msgid "Change Log"
3001
  msgstr ""
3002
 
3003
+ #: app/features/mec/gateways.php:198
3004
+ msgid "Enable Organizer Payment Module"
3005
+ msgstr ""
3006
+
3007
+ #: app/features/mec/gateways.php:202
3008
+ msgid "Organizer Payment"
3009
+ msgstr ""
3010
+
3011
+ #: app/features/mec/gateways.php:203
3012
+ msgid ""
3013
+ "By enabling this module, organizers are able to insert their own payment "
3014
+ "credentials for enabled gateways per event and receive the payments directly!"
3015
+ msgstr ""
3016
+
3017
+ #: app/features/mec/ie.php:179
3018
  msgid ""
3019
  "Insert your backup files below and press import to restore your site's "
3020
  "options to the last backup."
3021
  msgstr ""
3022
 
3023
+ #: app/features/mec/ie.php:180
3024
  msgid ""
3025
  "WARNING! Restoring backup will overwrite all of your current option values. "
3026
  "Caution Indeed."
3027
  msgstr ""
3028
 
3029
+ #: app/features/mec/ie.php:183
3030
  msgid "Please paste your options here"
3031
  msgstr ""
3032
 
3033
+ #: app/features/mec/ie.php:185
3034
  msgid "Import Settings"
3035
  msgstr ""
3036
 
3037
+ #: app/features/mec/ie.php:195
3038
  msgid "Download Settings"
3039
  msgstr ""
3040
 
3041
+ #: app/features/mec/messages.php:185
3042
  msgid ""
3043
  "You can change some MEC messages here simply. For example if you like to "
3044
  "change \"REGISTER\" button label, you can do it here. By the Way, if your "
3053
  #: app/features/mec/meta_boxes/display_options.php:34
3054
  #: app/features/mec/meta_boxes/display_options.php:159
3055
  #: app/features/mec/meta_boxes/display_options.php:531
3056
+ #: app/features/mec/meta_boxes/display_options.php:845
3057
+ #: app/features/mec/settings.php:405 app/features/mec/settings.php:429
3058
+ #: app/features/mec/settings.php:438 app/features/mec/settings.php:479
3059
+ #: app/features/mec/settings.php:503 app/features/mec/settings.php:512
3060
  msgid "Classic"
3061
  msgstr ""
3062
 
3063
  #: app/features/mec/meta_boxes/display_options.php:35
3064
  #: app/features/mec/meta_boxes/display_options.php:161
3065
+ #: app/features/mec/settings.php:430 app/features/mec/settings.php:440
3066
+ #: app/features/mec/settings.php:504 app/features/mec/settings.php:514
3067
  msgid "Minimal"
3068
  msgstr ""
3069
 
3072
  #: app/features/mec/meta_boxes/display_options.php:481
3073
  #: app/features/mec/meta_boxes/display_options.php:533
3074
  #: app/features/mec/meta_boxes/display_options.php:695
3075
+ #: app/features/mec/meta_boxes/display_options.php:847
3076
+ #: app/features/mec/settings.php:407 app/features/mec/settings.php:420
3077
+ #: app/features/mec/settings.php:431 app/features/mec/settings.php:441
3078
+ #: app/features/mec/settings.php:481 app/features/mec/settings.php:494
3079
+ #: app/features/mec/settings.php:505 app/features/mec/settings.php:515
3080
  msgid "Modern"
3081
  msgstr ""
3082
 
3083
  #: app/features/mec/meta_boxes/display_options.php:37
3084
+ #: app/features/mec/settings.php:432 app/features/mec/settings.php:506
3085
  msgid "Standard"
3086
  msgstr ""
3087
 
3088
  #: app/features/mec/meta_boxes/display_options.php:38
3089
+ #: app/features/mec/settings.php:433 app/features/mec/settings.php:507
3090
  msgid "Accordion"
3091
  msgstr ""
3092
 
3096
  #: app/features/mec/meta_boxes/display_options.php:588
3097
  #: app/features/mec/meta_boxes/display_options.php:621
3098
  #: app/features/mec/meta_boxes/display_options.php:768
3099
+ #: app/features/mec/meta_boxes/display_options.php:1003
3100
+ #: app/features/mec/meta_boxes/display_options.php:1090
3101
  msgid "Today"
3102
  msgstr ""
3103
 
3107
  #: app/features/mec/meta_boxes/display_options.php:589
3108
  #: app/features/mec/meta_boxes/display_options.php:622
3109
  #: app/features/mec/meta_boxes/display_options.php:769
3110
+ #: app/features/mec/meta_boxes/display_options.php:1004
3111
+ #: app/features/mec/meta_boxes/display_options.php:1091
3112
  msgid "Tomorrow"
3113
  msgstr ""
3114
 
3122
  #: app/features/mec/meta_boxes/display_options.php:658
3123
  #: app/features/mec/meta_boxes/display_options.php:704
3124
  #: app/features/mec/meta_boxes/display_options.php:770
3125
+ #: app/features/mec/meta_boxes/display_options.php:1005
3126
+ #: app/features/mec/meta_boxes/display_options.php:1092
3127
  msgid "Start of Current Month"
3128
  msgstr ""
3129
 
3137
  #: app/features/mec/meta_boxes/display_options.php:659
3138
  #: app/features/mec/meta_boxes/display_options.php:705
3139
  #: app/features/mec/meta_boxes/display_options.php:771
3140
+ #: app/features/mec/meta_boxes/display_options.php:1006
3141
+ #: app/features/mec/meta_boxes/display_options.php:1093
3142
  msgid "Start of Next Month"
3143
  msgstr ""
3144
 
3153
  #: app/features/mec/meta_boxes/display_options.php:660
3154
  #: app/features/mec/meta_boxes/display_options.php:706
3155
  #: app/features/mec/meta_boxes/display_options.php:772
3156
+ #: app/features/mec/meta_boxes/display_options.php:1007
3157
+ #: app/features/mec/meta_boxes/display_options.php:1094
3158
  msgid "On a certain date"
3159
  msgstr ""
3160
 
3169
  #: app/features/mec/meta_boxes/display_options.php:663
3170
  #: app/features/mec/meta_boxes/display_options.php:709
3171
  #: app/features/mec/meta_boxes/display_options.php:775
3172
+ #: app/features/mec/meta_boxes/display_options.php:1010
3173
+ #: app/features/mec/meta_boxes/display_options.php:1097
3174
  #, php-format
3175
  msgid "eg. %s"
3176
  msgstr ""
3205
  #: app/features/mec/meta_boxes/display_options.php:501
3206
  #: app/features/mec/meta_boxes/display_options.php:779
3207
  #: app/features/mec/meta_boxes/display_options.php:784
3208
+ #: app/features/mec/meta_boxes/display_options.php:851
3209
+ #: app/features/mec/meta_boxes/display_options.php:857
3210
+ #: app/features/mec/meta_boxes/display_options.php:864
3211
+ #: app/features/mec/meta_boxes/display_options.php:869
3212
+ #: app/features/mec/meta_boxes/display_options.php:876
3213
+ #: app/features/mec/meta_boxes/display_options.php:880
3214
+ #: app/features/mec/meta_boxes/display_options.php:908
3215
+ #: app/features/mec/meta_boxes/display_options.php:912
3216
+ #: app/features/mec/meta_boxes/display_options.php:919
3217
+ #: app/features/mec/meta_boxes/display_options.php:923
3218
+ #: app/features/mec/meta_boxes/display_options.php:930
3219
+ #: app/features/mec/meta_boxes/display_options.php:936
3220
+ #: app/features/mec/meta_boxes/display_options.php:966
3221
+ #: app/features/mec/meta_boxes/display_options.php:971
3222
+ #: app/features/mec/meta_boxes/display_options.php:1014
3223
+ #: app/features/mec/meta_boxes/display_options.php:1020
3224
+ #: app/features/mec/meta_boxes/display_options.php:1027
3225
+ #: app/features/mec/meta_boxes/display_options.php:1031
3226
+ #: app/features/mec/meta_boxes/display_options.php:1038
3227
+ #: app/features/mec/meta_boxes/display_options.php:1042
3228
+ #: app/features/mec/meta_boxes/display_options.php:1101
 
 
 
3229
  #: app/features/mec/meta_boxes/display_options.php:1107
3230
+ #: app/features/mec/meta_boxes/display_options.php:1114
3231
  #: app/features/mec/meta_boxes/display_options.php:1120
3232
+ #: app/features/mec/meta_boxes/display_options.php:1127
3233
  #: app/features/mec/meta_boxes/display_options.php:1133
3234
+ #: app/features/mec/meta_boxes/display_options.php:1140
3235
+ #: app/features/mec/meta_boxes/display_options.php:1146
3236
+ #: app/features/mec/meta_boxes/display_options.php:1153
3237
+ #: app/features/mec/meta_boxes/display_options.php:1159
3238
  msgid "Date Formats"
3239
  msgstr ""
3240
 
3250
  #: app/features/mec/meta_boxes/display_options.php:86
3251
  #: app/features/mec/meta_boxes/display_options.php:224
3252
  #: app/features/mec/meta_boxes/display_options.php:248
3253
+ #: app/features/mec/meta_boxes/display_options.php:1108
3254
+ #: app/features/mec/meta_boxes/display_options.php:1121
3255
+ #: app/features/mec/meta_boxes/display_options.php:1134
3256
+ #: app/features/mec/meta_boxes/display_options.php:1147
3257
+ #: app/features/mec/meta_boxes/display_options.php:1160
3258
  msgid "Default values are d, F and l"
3259
  msgstr ""
3260
 
3266
  msgid "TDefault values are d and F"
3267
  msgstr ""
3268
 
 
 
 
 
 
 
 
 
 
3269
  #: app/features/mec/meta_boxes/display_options.php:116
3270
  #: app/features/mec/meta_boxes/display_options.php:277
3271
  #: app/features/mec/meta_boxes/display_options.php:333
3274
  #: app/features/mec/meta_boxes/display_options.php:634
3275
  #: app/features/mec/meta_boxes/display_options.php:668
3276
  #: app/features/mec/meta_boxes/display_options.php:714
3277
+ #: app/features/mec/meta_boxes/display_options.php:1059
3278
+ #: app/features/mec/meta_boxes/display_options.php:1167
3279
  msgid "eg. 6"
3280
  msgstr ""
3281
 
3282
  #: app/features/mec/meta_boxes/display_options.php:120
3283
  #: app/features/mec/meta_boxes/display_options.php:281
3284
  #: app/features/mec/meta_boxes/display_options.php:337
3285
+ #: app/features/mec/meta_boxes/display_options.php:828
3286
  msgid "Load More Button"
3287
  msgstr ""
3288
 
3300
  #: app/features/mec/meta_boxes/display_options.php:385
3301
  #: app/features/mec/meta_boxes/display_options.php:532
3302
  #: app/features/mec/meta_boxes/display_options.php:696
3303
+ #: app/features/mec/meta_boxes/display_options.php:846
3304
+ #: app/features/mec/settings.php:406 app/features/mec/settings.php:421
3305
+ #: app/features/mec/settings.php:439 app/features/mec/settings.php:480
3306
+ #: app/features/mec/settings.php:495 app/features/mec/settings.php:513
3307
  msgid "Clean"
3308
  msgstr ""
3309
 
3310
  #: app/features/mec/meta_boxes/display_options.php:163
3311
  #: app/features/mec/meta_boxes/display_options.php:387
3312
  #: app/features/mec/meta_boxes/display_options.php:535
3313
+ #: app/features/mec/settings.php:409 app/features/mec/settings.php:442
3314
+ #: app/features/mec/settings.php:483 app/features/mec/settings.php:516
3315
  msgid "Simple"
3316
  msgstr ""
3317
 
3322
  #: app/features/mec/meta_boxes/display_options.php:165
3323
  #: app/features/mec/meta_boxes/display_options.php:386
3324
  #: app/features/mec/meta_boxes/display_options.php:534
3325
+ #: app/features/mec/settings.php:408 app/features/mec/settings.php:444
3326
+ #: app/features/mec/settings.php:482 app/features/mec/settings.php:518
3327
  msgid "Novel"
3328
  msgstr ""
3329
 
3344
  msgstr ""
3345
 
3346
  #: app/features/mec/meta_boxes/display_options.php:265
3347
+ #: app/features/mec/meta_boxes/display_options.php:1049
3348
  msgid "Count in row"
3349
  msgstr ""
3350
 
3352
  #: app/features/mec/meta_boxes/display_options.php:474
3353
  #: app/features/mec/meta_boxes/display_options.php:581
3354
  #: app/features/mec/meta_boxes/display_options.php:688
3355
+ #: app/features/mec/meta_boxes/display_options.php:961
3356
  #, php-format
3357
  msgid "%s is required to use this skin."
3358
  msgstr ""
3368
 
3369
  #: app/features/mec/meta_boxes/display_options.php:375
3370
  #: app/features/mec/meta_boxes/display_options.php:396
3371
+ #: app/libraries/main.php:329 app/libraries/main.php:1248
3372
+ #: app/libraries/main.php:1273
3373
  msgid "List View"
3374
  msgstr ""
3375
 
3376
  #: app/features/mec/meta_boxes/display_options.php:376
3377
  #: app/features/mec/meta_boxes/display_options.php:406
3378
+ #: app/libraries/main.php:333 app/libraries/main.php:1242
3379
+ #: app/libraries/main.php:1267
3380
  msgid "Yearly View"
3381
  msgstr ""
3382
 
3387
 
3388
  #: app/features/mec/meta_boxes/display_options.php:378
3389
  #: app/features/mec/meta_boxes/display_options.php:438
3390
+ #: app/libraries/main.php:336 app/libraries/main.php:1244
3391
+ #: app/libraries/main.php:1269
3392
  msgid "Weekly View"
3393
  msgstr ""
3394
 
3395
  #: app/features/mec/meta_boxes/display_options.php:379
3396
  #: app/features/mec/meta_boxes/display_options.php:448
3397
+ #: app/libraries/main.php:335 app/libraries/main.php:1245
3398
+ #: app/libraries/main.php:1270
3399
  msgid "Daily View"
3400
  msgstr ""
3401
 
3494
  msgstr ""
3495
 
3496
  #: app/features/mec/meta_boxes/display_options.php:785
3497
+ #: app/features/mec/meta_boxes/display_options.php:972
3498
  msgid "Default values are j and F"
3499
  msgstr ""
3500
 
3511
  msgstr ""
3512
 
3513
  #: app/features/mec/meta_boxes/display_options.php:806
3514
+ msgid "Fit to row"
3515
  msgstr ""
3516
 
3517
  #: app/features/mec/meta_boxes/display_options.php:807
3518
+ msgid ""
3519
+ "Items are arranged into rows. Rows progress vertically. Similar to what you "
3520
+ "would expect from a layout that uses CSS floats."
3521
+ msgstr ""
3522
+
3523
+ #: app/features/mec/meta_boxes/display_options.php:817
3524
+ msgid "Convert Masonry to Grid"
3525
+ msgstr ""
3526
+
3527
+ #: app/features/mec/meta_boxes/display_options.php:818
3528
  msgid "For using this option, your events should come with image"
3529
  msgstr ""
3530
 
3531
+ #: app/features/mec/meta_boxes/display_options.php:858
3532
  msgid "Default values are d, M and Y"
3533
  msgstr ""
3534
 
3535
+ #: app/features/mec/meta_boxes/display_options.php:870
3536
  msgid "Default values are \"F d\" and l"
3537
  msgstr ""
3538
 
3539
+ #: app/features/mec/meta_boxes/display_options.php:881
3540
  msgid "Default value is \"l, F d Y\""
3541
  msgstr ""
3542
 
3543
+ #: app/features/mec/meta_boxes/display_options.php:902
3544
  msgid "Style 1"
3545
  msgstr ""
3546
 
3547
+ #: app/features/mec/meta_boxes/display_options.php:903
3548
  msgid "Style 2"
3549
  msgstr ""
3550
 
3551
+ #: app/features/mec/meta_boxes/display_options.php:904
3552
  msgid "Style 3"
3553
  msgstr ""
3554
 
3555
+ #: app/features/mec/meta_boxes/display_options.php:913
3556
+ #: app/features/mec/meta_boxes/display_options.php:924
3557
  msgid "Default value is \"j F Y\""
3558
  msgstr ""
3559
 
3560
+ #: app/features/mec/meta_boxes/display_options.php:937
3561
  msgid "Default values are j, F and Y"
3562
  msgstr ""
3563
 
3564
+ #: app/features/mec/meta_boxes/display_options.php:945
3565
+ #: app/features/mec/meta_boxes/display_options.php:980
3566
  msgid " -- Next Upcoming Event -- "
3567
  msgstr ""
3568
 
3569
+ #: app/features/mec/meta_boxes/display_options.php:952
3570
  msgid "Background Color"
3571
  msgstr ""
3572
 
3573
+ #: app/features/mec/meta_boxes/display_options.php:994
3574
+ #: app/features/mec/meta_boxes/display_options.php:1080
3575
  msgid "Type 1"
3576
  msgstr ""
3577
 
3578
+ #: app/features/mec/meta_boxes/display_options.php:995
3579
+ #: app/features/mec/meta_boxes/display_options.php:1081
3580
  msgid "Type 2"
3581
  msgstr ""
3582
 
3583
+ #: app/features/mec/meta_boxes/display_options.php:996
3584
+ #: app/features/mec/meta_boxes/display_options.php:1082
3585
  msgid "Type 3"
3586
  msgstr ""
3587
 
3588
+ #: app/features/mec/meta_boxes/display_options.php:997
3589
+ #: app/features/mec/meta_boxes/display_options.php:1083
3590
  msgid "Type 4"
3591
  msgstr ""
3592
 
3593
+ #: app/features/mec/meta_boxes/display_options.php:1021
3594
  msgid "Default values are d, F and Y"
3595
  msgstr ""
3596
 
3597
+ #: app/features/mec/meta_boxes/display_options.php:1032
3598
+ #: app/features/mec/meta_boxes/display_options.php:1043
3599
  msgid "Default value is \"M d, Y\""
3600
  msgstr ""
3601
 
3602
+ #: app/features/mec/meta_boxes/display_options.php:1062
3603
+ #: app/features/mec/meta_boxes/display_options.php:1170
3604
  msgid "Auto Play Time"
3605
  msgstr ""
3606
 
3607
+ #: app/features/mec/meta_boxes/display_options.php:1063
3608
+ #: app/features/mec/meta_boxes/display_options.php:1171
3609
  msgid "eg. 3000 default is 3 second"
3610
  msgstr ""
3611
 
3612
+ #: app/features/mec/meta_boxes/display_options.php:1067
3613
  msgid "Archive Link"
3614
  msgstr ""
3615
 
3616
+ #: app/features/mec/meta_boxes/display_options.php:1071
3617
  msgid "Head Text"
3618
  msgstr ""
3619
 
3620
+ #: app/features/mec/meta_boxes/display_options.php:1084
3621
  msgid "Type 5"
3622
  msgstr ""
3623
 
3653
  msgid "Choose your desired authors for filtering the events."
3654
  msgstr ""
3655
 
3656
+ #: app/features/mec/meta_boxes/filter.php:166
3657
  msgid "Dates"
3658
  msgstr ""
3659
 
3660
+ #: app/features/mec/meta_boxes/filter.php:170
3661
  msgid "Include Expired Events"
3662
  msgstr ""
3663
 
3664
+ #: app/features/mec/meta_boxes/filter.php:178
3665
  msgid ""
3666
  "You have ability to include past/expired events if you like so it will show "
3667
  "upcoming and expired events based on start date that you selected."
3668
  msgstr ""
3669
 
3670
+ #: app/features/mec/meta_boxes/filter.php:183
3671
  msgid "Show Only Expired Events"
3672
  msgstr ""
3673
 
3674
+ #: app/features/mec/meta_boxes/filter.php:191
3675
  msgid "It shows only expired/past events."
3676
  msgstr ""
3677
 
3678
+ #: app/features/mec/meta_boxes/filter.php:197
3679
  msgid "Show Only Ongoing Events"
3680
  msgstr ""
3681
 
3682
+ #: app/features/mec/meta_boxes/filter.php:205
3683
  msgid "It shows only ongoing events on List and Grid skins."
3684
  msgstr ""
3685
 
3695
  #: app/features/mec/meta_boxes/search_form.php:68
3696
  #: app/features/mec/meta_boxes/search_form.php:75
3697
  #: app/features/mec/meta_boxes/search_form.php:82
3698
+ #: app/features/mec/meta_boxes/search_form.php:95
3699
+ #: app/features/mec/meta_boxes/search_form.php:102
3700
+ #: app/features/mec/meta_boxes/search_form.php:109
3701
+ #: app/features/mec/meta_boxes/search_form.php:116
3702
+ #: app/features/mec/meta_boxes/search_form.php:123
3703
+ #: app/features/mec/meta_boxes/search_form.php:130
3704
+ #: app/features/mec/meta_boxes/search_form.php:137
3705
+ #: app/features/mec/meta_boxes/search_form.php:144
3706
+ #: app/features/mec/meta_boxes/search_form.php:156
3707
+ #: app/features/mec/meta_boxes/search_form.php:163
3708
+ #: app/features/mec/meta_boxes/search_form.php:170
3709
+ #: app/features/mec/meta_boxes/search_form.php:177
3710
+ #: app/features/mec/meta_boxes/search_form.php:184
3711
+ #: app/features/mec/meta_boxes/search_form.php:191
3712
+ #: app/features/mec/meta_boxes/search_form.php:198
3713
+ #: app/features/mec/meta_boxes/search_form.php:205
3714
+ #: app/features/mec/meta_boxes/search_form.php:217
3715
+ #: app/features/mec/meta_boxes/search_form.php:224
3716
+ #: app/features/mec/meta_boxes/search_form.php:231
3717
+ #: app/features/mec/meta_boxes/search_form.php:238
3718
+ #: app/features/mec/meta_boxes/search_form.php:245
3719
+ #: app/features/mec/meta_boxes/search_form.php:252
3720
+ #: app/features/mec/meta_boxes/search_form.php:259
3721
+ #: app/features/mec/meta_boxes/search_form.php:266
3722
+ #: app/features/mec/meta_boxes/search_form.php:278
3723
+ #: app/features/mec/meta_boxes/search_form.php:285
3724
+ #: app/features/mec/meta_boxes/search_form.php:292
3725
+ #: app/features/mec/meta_boxes/search_form.php:299
3726
+ #: app/features/mec/meta_boxes/search_form.php:306
3727
+ #: app/features/mec/meta_boxes/search_form.php:313
3728
+ #: app/features/mec/meta_boxes/search_form.php:320
3729
+ #: app/features/mec/meta_boxes/search_form.php:327
3730
+ #: app/features/mec/meta_boxes/search_form.php:339
3731
+ #: app/features/mec/meta_boxes/search_form.php:346
3732
+ #: app/features/mec/meta_boxes/search_form.php:353
3733
+ #: app/features/mec/meta_boxes/search_form.php:360
3734
+ #: app/features/mec/meta_boxes/search_form.php:367
3735
+ #: app/features/mec/meta_boxes/search_form.php:374
3736
+ #: app/features/mec/meta_boxes/search_form.php:381
3737
+ #: app/features/mec/meta_boxes/search_form.php:388
3738
+ #: app/features/mec/meta_boxes/search_form.php:400
3739
+ #: app/features/mec/meta_boxes/search_form.php:407
3740
+ #: app/features/mec/meta_boxes/search_form.php:414
3741
+ #: app/features/mec/meta_boxes/search_form.php:421
3742
+ #: app/features/mec/meta_boxes/search_form.php:428
3743
+ #: app/features/mec/meta_boxes/search_form.php:435
3744
+ #: app/features/mec/meta_boxes/search_form.php:442
3745
+ #: app/features/mec/meta_boxes/search_form.php:454
3746
+ #: app/features/mec/meta_boxes/search_form.php:461
3747
+ #: app/features/mec/meta_boxes/search_form.php:468
3748
+ #: app/features/mec/meta_boxes/search_form.php:475
3749
+ #: app/features/mec/meta_boxes/search_form.php:482
3750
+ #: app/features/mec/meta_boxes/search_form.php:489
3751
+ #: app/features/mec/meta_boxes/search_form.php:496
3752
+ #: app/features/mec/meta_boxes/search_form.php:503
3753
+ #: app/features/mec/meta_boxes/search_form.php:515
3754
+ #: app/features/mec/meta_boxes/search_form.php:522
3755
+ #: app/features/mec/meta_boxes/search_form.php:529
3756
+ #: app/features/mec/meta_boxes/search_form.php:536
3757
+ #: app/features/mec/meta_boxes/search_form.php:543
3758
+ #: app/features/mec/meta_boxes/search_form.php:550
3759
+ #: app/features/mec/meta_boxes/search_form.php:557
3760
+ #: app/features/mec/meta_boxes/search_form.php:564
3761
+ #: app/features/mec/meta_boxes/search_form.php:576
3762
+ #: app/features/mec/meta_boxes/search_form.php:583
3763
+ #: app/features/mec/meta_boxes/search_form.php:590
3764
+ #: app/features/mec/meta_boxes/search_form.php:597
3765
+ #: app/features/mec/meta_boxes/search_form.php:604
3766
+ #: app/features/mec/meta_boxes/search_form.php:611
3767
+ #: app/features/mec/meta_boxes/search_form.php:618
3768
+ #: app/features/mec/meta_boxes/search_form.php:625
3769
+ #: app/features/mec/modules.php:323 app/features/mec/settings.php:303
3770
+ #: app/features/mec/settings.php:559
3771
  msgid "Disabled"
3772
  msgstr ""
3773
 
3774
  #: app/features/mec/meta_boxes/search_form.php:52
3775
+ #: app/features/mec/meta_boxes/search_form.php:114
3776
+ #: app/features/mec/meta_boxes/search_form.php:175
3777
+ #: app/features/mec/meta_boxes/search_form.php:236
3778
+ #: app/features/mec/meta_boxes/search_form.php:297
3779
+ #: app/features/mec/meta_boxes/search_form.php:358
3780
+ #: app/features/mec/meta_boxes/search_form.php:419
3781
+ #: app/features/mec/meta_boxes/search_form.php:473
3782
+ #: app/features/mec/meta_boxes/search_form.php:534
3783
+ #: app/features/mec/meta_boxes/search_form.php:595
3784
+ #: app/features/mec/settings.php:907 app/features/speakers.php:56
3785
+ #: app/features/speakers.php:243 app/libraries/main.php:4495
3786
+ #: app/libraries/skins.php:883
3787
  msgid "Speaker"
3788
  msgstr ""
3789
 
3790
  #: app/features/mec/meta_boxes/search_form.php:59
3791
+ #: app/features/mec/meta_boxes/search_form.php:121
3792
+ #: app/features/mec/meta_boxes/search_form.php:182
3793
+ #: app/features/mec/meta_boxes/search_form.php:243
3794
+ #: app/features/mec/meta_boxes/search_form.php:304
3795
+ #: app/features/mec/meta_boxes/search_form.php:365
3796
+ #: app/features/mec/meta_boxes/search_form.php:426
3797
+ #: app/features/mec/meta_boxes/search_form.php:480
3798
+ #: app/features/mec/meta_boxes/search_form.php:541
3799
+ #: app/features/mec/meta_boxes/search_form.php:602
3800
+ #: app/features/mec/settings.php:913 app/libraries/skins.php:909
3801
  msgid "Tag"
3802
  msgstr ""
3803
 
3804
  #: app/features/mec/meta_boxes/search_form.php:73
3805
+ #: app/features/mec/meta_boxes/search_form.php:135
3806
+ #: app/features/mec/meta_boxes/search_form.php:196
3807
+ #: app/features/mec/meta_boxes/search_form.php:257
3808
+ #: app/features/mec/meta_boxes/search_form.php:318
3809
+ #: app/features/mec/meta_boxes/search_form.php:379
3810
+ #: app/features/mec/meta_boxes/search_form.php:494
3811
+ #: app/features/mec/meta_boxes/search_form.php:555
3812
+ #: app/features/mec/meta_boxes/search_form.php:616
3813
  msgid "Month Filter"
3814
  msgstr ""
3815
 
3816
  #: app/features/mec/meta_boxes/search_form.php:80
3817
+ #: app/features/mec/meta_boxes/search_form.php:142
3818
+ #: app/features/mec/meta_boxes/search_form.php:203
3819
+ #: app/features/mec/meta_boxes/search_form.php:264
3820
+ #: app/features/mec/meta_boxes/search_form.php:325
3821
+ #: app/features/mec/meta_boxes/search_form.php:386
3822
+ #: app/features/mec/meta_boxes/search_form.php:440
3823
+ #: app/features/mec/meta_boxes/search_form.php:501
3824
+ #: app/features/mec/meta_boxes/search_form.php:562
3825
+ #: app/features/mec/meta_boxes/search_form.php:623
3826
  msgid "Text Search"
3827
  msgstr ""
3828
 
3829
  #: app/features/mec/meta_boxes/search_form.php:83
3830
+ #: app/features/mec/meta_boxes/search_form.php:145
3831
+ #: app/features/mec/meta_boxes/search_form.php:206
3832
+ #: app/features/mec/meta_boxes/search_form.php:267
3833
+ #: app/features/mec/meta_boxes/search_form.php:328
3834
+ #: app/features/mec/meta_boxes/search_form.php:389
3835
+ #: app/features/mec/meta_boxes/search_form.php:443
3836
+ #: app/features/mec/meta_boxes/search_form.php:504
3837
+ #: app/features/mec/meta_boxes/search_form.php:565
3838
+ #: app/features/mec/meta_boxes/search_form.php:626
3839
  msgid "Text Input"
3840
  msgstr ""
3841
 
3842
+ #: app/features/mec/meta_boxes/search_form.php:634
3843
+ #: app/features/mec/meta_boxes/search_form.php:640
3844
+ #: app/features/mec/meta_boxes/search_form.php:646
3845
+ #: app/features/mec/meta_boxes/search_form.php:652
3846
+ #: app/features/mec/meta_boxes/search_form.php:658
3847
+ #: app/features/mec/meta_boxes/search_form.php:664
3848
  msgid "No Search Options"
3849
  msgstr ""
3850
 
3851
+ #: app/features/mec/modules.php:248
3852
  msgid "Speakers Options"
3853
  msgstr ""
3854
 
3855
+ #: app/features/mec/modules.php:254
3856
  msgid "Enable speakers feature"
3857
  msgstr ""
3858
 
3859
+ #: app/features/mec/modules.php:256
3860
  msgid ""
3861
  "After enable it, you should reloading this page to see a new menu on "
3862
  "Dashboard > MEC"
3863
  msgstr ""
3864
 
3865
+ #: app/features/mec/modules.php:273
3866
  msgid "Show Google Maps on event page"
3867
  msgstr ""
3868
 
3869
+ #: app/features/mec/modules.php:278 app/features/mec/modules.php:436
3870
+ #: app/features/mec/settings.php:943 app/features/mec/settings.php:948
3871
  msgid "API Key"
3872
  msgstr ""
3873
 
3874
+ #: app/features/mec/modules.php:284 app/features/mec/settings.php:949
3875
+ #: app/features/mec/settings.php:962
3876
  msgid "Required!"
3877
  msgstr ""
3878
 
3879
+ #: app/features/mec/modules.php:291 app/features/mec/modules.php:300
3880
  msgid "Zoom level"
3881
  msgstr ""
3882
 
3883
+ #: app/features/mec/modules.php:301
3884
  msgid ""
3885
  "For Google Maps module in single event page. In Google Maps skin, it will "
3886
  "caculate the zoom level automatically based on event boundaries."
3887
  msgstr ""
3888
 
3889
+ #: app/features/mec/modules.php:308
3890
  msgid "Google Maps Style"
3891
  msgstr ""
3892
 
3893
+ #: app/features/mec/modules.php:312 app/features/mec/single.php:268
3894
  msgid "Default"
3895
  msgstr ""
3896
 
3897
+ #: app/features/mec/modules.php:320
3898
  msgid "Direction on single event"
3899
  msgstr ""
3900
 
3901
+ #: app/features/mec/modules.php:324
3902
  msgid "Simple Method"
3903
  msgstr ""
3904
 
3905
+ #: app/features/mec/modules.php:325
3906
  msgid "Advanced Method"
3907
  msgstr ""
3908
 
3909
+ #: app/features/mec/modules.php:330 app/features/mec/modules.php:335
3910
  msgid "Lightbox Date Format"
3911
  msgstr ""
3912
 
3913
+ #: app/features/mec/modules.php:336
3914
  msgid "Default value is M d Y"
3915
  msgstr ""
3916
 
3917
+ #: app/features/mec/modules.php:343 app/features/mec/modules.php:351
3918
  msgid "Google Maps API"
3919
  msgstr ""
3920
 
3921
+ #: app/features/mec/modules.php:347
3922
  msgid "Don't load Google Maps API library"
3923
  msgstr ""
3924
 
3925
+ #: app/features/mec/modules.php:352
3926
  msgid "Check it only if another plugin/theme is loading the Google Maps API"
3927
  msgstr ""
3928
 
3929
+ #: app/features/mec/modules.php:369
3930
  msgid ""
3931
  "Show export module (iCal export and add to Google calendars) on event page"
3932
  msgstr ""
3933
 
3934
+ #: app/features/mec/modules.php:376
3935
  msgid "Google Calendar"
3936
  msgstr ""
3937
 
3938
+ #: app/features/mec/modules.php:396
3939
  msgid "Show event time based on local time of visitor on event page"
3940
  msgstr ""
3941
 
3942
+ #: app/features/mec/modules.php:414
3943
  msgid "Show QR code of event in details page and booking invoice"
3944
  msgstr ""
3945
 
3946
+ #: app/features/mec/modules.php:431
3947
  msgid "Show weather module on event page"
3948
  msgstr ""
3949
 
3950
+ #: app/features/mec/modules.php:439
3951
  #, php-format
3952
  msgid "You can get a free API Key from %s"
3953
  msgstr ""
3954
 
3955
+ #: app/features/mec/modules.php:445
3956
+ msgid "Show weather imperial units"
3957
+ msgstr ""
3958
+
3959
+ #: app/features/mec/modules.php:451
3960
+ msgid "Show weather change units button"
3961
+ msgstr ""
3962
+
3963
+ #: app/features/mec/modules.php:465
3964
  msgid "Show social network module"
3965
  msgstr ""
3966
 
3967
+ #: app/features/mec/modules.php:490
3968
  msgid "Show next event module on event page"
3969
  msgstr ""
3970
 
3971
+ #: app/features/mec/modules.php:495
3972
  msgid "Method"
3973
  msgstr ""
3974
 
3975
+ #: app/features/mec/modules.php:498
3976
  msgid "Next Occurrence of Current Event"
3977
  msgstr ""
3978
 
3979
+ #: app/features/mec/modules.php:499
3980
  msgid "Next Occurrence of Other Events"
3981
  msgstr ""
3982
 
3983
+ #: app/features/mec/modules.php:510 app/features/mec/single.php:222
3984
  msgid "Default is M d Y"
3985
  msgstr ""
3986
 
3987
+ #: app/features/mec/modules.php:526
3988
  msgid "Enable BuddyPress Integration"
3989
  msgstr ""
3990
 
3991
+ #: app/features/mec/modules.php:533
3992
  msgid "Show \"Attendees Module\" in event details page"
3993
  msgstr ""
3994
 
3995
+ #: app/features/mec/modules.php:537
3996
  msgid "Attendees Limit"
3997
  msgstr ""
3998
 
3999
+ #: app/features/mec/modules.php:545
4000
  msgid "Add booking activity to user profile"
4001
  msgstr ""
4002
 
4003
+ #: app/features/mec/notifications.php:230
4004
  msgid "Enable booking notification"
4005
  msgstr ""
4006
 
4007
+ #: app/features/mec/notifications.php:234
4008
  msgid "It sends to attendee after booking for notifying him/her."
4009
  msgstr ""
4010
 
4011
+ #: app/features/mec/notifications.php:236
4012
+ #: app/features/mec/notifications.php:293
4013
+ #: app/features/mec/notifications.php:345
4014
+ #: app/features/mec/notifications.php:404
4015
+ #: app/features/mec/notifications.php:472
4016
+ #: app/features/mec/notifications.php:535
4017
+ #: app/features/mec/notifications.php:608
4018
  msgid "Email Subject"
4019
  msgstr ""
4020
 
4021
+ #: app/features/mec/notifications.php:240
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4022
  #: app/features/mec/notifications.php:244
4023
+ #: app/features/mec/notifications.php:297
4024
  #: app/features/mec/notifications.php:301
4025
+ #: app/features/mec/notifications.php:349
4026
  #: app/features/mec/notifications.php:353
4027
+ #: app/features/mec/notifications.php:408
4028
  #: app/features/mec/notifications.php:412
4029
+ #: app/features/mec/notifications.php:476
4030
  #: app/features/mec/notifications.php:480
4031
+ #: app/features/mec/notifications.php:539
4032
  #: app/features/mec/notifications.php:543
4033
  #: app/features/mec/notifications.php:554
4034
+ #: app/features/mec/notifications.php:612
4035
  #: app/features/mec/notifications.php:616
4036
+ msgid "Custom Recipients"
4037
+ msgstr ""
4038
+
4039
+ #: app/features/mec/notifications.php:245
4040
+ #: app/features/mec/notifications.php:302
4041
+ #: app/features/mec/notifications.php:354
4042
+ #: app/features/mec/notifications.php:413
4043
+ #: app/features/mec/notifications.php:481
4044
+ #: app/features/mec/notifications.php:544
4045
+ #: app/features/mec/notifications.php:555
4046
+ #: app/features/mec/notifications.php:617
4047
  msgid "Insert comma separated emails for multiple recipients."
4048
  msgstr ""
4049
 
4050
+ #: app/features/mec/notifications.php:252
4051
+ #: app/features/mec/notifications.php:424
4052
+ #: app/features/mec/notifications.php:488
4053
  msgid "Send the email to event organizer"
4054
  msgstr ""
4055
 
4056
+ #: app/features/mec/notifications.php:255
4057
+ #: app/features/mec/notifications.php:308
4058
+ #: app/features/mec/notifications.php:360
4059
+ #: app/features/mec/notifications.php:431
4060
+ #: app/features/mec/notifications.php:491
4061
+ #: app/features/mec/notifications.php:561
4062
+ #: app/features/mec/notifications.php:623
4063
  msgid "Email Content"
4064
  msgstr ""
4065
 
4066
+ #: app/features/mec/notifications.php:258
4067
+ #: app/features/mec/notifications.php:311
4068
+ #: app/features/mec/notifications.php:363
4069
+ #: app/features/mec/notifications.php:434
4070
+ #: app/features/mec/notifications.php:494
4071
+ #: app/features/mec/notifications.php:564
4072
+ #: app/features/mec/notifications.php:626
4073
  msgid "You can use following placeholders"
4074
  msgstr ""
4075
 
 
 
 
 
 
 
 
 
 
4076
  #: app/features/mec/notifications.php:260
4077
  #: app/features/mec/notifications.php:313
4078
  #: app/features/mec/notifications.php:365
4079
  #: app/features/mec/notifications.php:436
4080
  #: app/features/mec/notifications.php:496
4081
  #: app/features/mec/notifications.php:566
4082
+ msgid "First name of attendee"
4083
  msgstr ""
4084
 
4085
  #: app/features/mec/notifications.php:261
4088
  #: app/features/mec/notifications.php:437
4089
  #: app/features/mec/notifications.php:497
4090
  #: app/features/mec/notifications.php:567
4091
+ msgid "Last name of attendee"
4092
  msgstr ""
4093
 
4094
  #: app/features/mec/notifications.php:262
4097
  #: app/features/mec/notifications.php:438
4098
  #: app/features/mec/notifications.php:498
4099
  #: app/features/mec/notifications.php:568
4100
+ msgid "Email of attendee"
4101
  msgstr ""
4102
 
4103
  #: app/features/mec/notifications.php:263
4106
  #: app/features/mec/notifications.php:439
4107
  #: app/features/mec/notifications.php:499
4108
  #: app/features/mec/notifications.php:569
4109
+ msgid "Booked date of event"
4110
  msgstr ""
4111
 
4112
  #: app/features/mec/notifications.php:264
4115
  #: app/features/mec/notifications.php:440
4116
  #: app/features/mec/notifications.php:500
4117
  #: app/features/mec/notifications.php:570
4118
+ msgid "Booked time of event"
4119
  msgstr ""
4120
 
4121
  #: app/features/mec/notifications.php:265
4124
  #: app/features/mec/notifications.php:441
4125
  #: app/features/mec/notifications.php:501
4126
  #: app/features/mec/notifications.php:571
4127
+ msgid "Booking Price"
 
4128
  msgstr ""
4129
 
4130
  #: app/features/mec/notifications.php:266
4134
  #: app/features/mec/notifications.php:502
4135
  #: app/features/mec/notifications.php:572
4136
  #: app/features/mec/notifications.php:632
4137
+ msgid "Your website title"
4138
  msgstr ""
4139
 
4140
  #: app/features/mec/notifications.php:267
4144
  #: app/features/mec/notifications.php:503
4145
  #: app/features/mec/notifications.php:573
4146
  #: app/features/mec/notifications.php:633
4147
+ msgid "Your website URL"
4148
  msgstr ""
4149
 
4150
  #: app/features/mec/notifications.php:268
4153
  #: app/features/mec/notifications.php:444
4154
  #: app/features/mec/notifications.php:504
4155
  #: app/features/mec/notifications.php:574
4156
+ #: app/features/mec/notifications.php:634
4157
+ msgid "Your website description"
4158
  msgstr ""
4159
 
4160
  #: app/features/mec/notifications.php:269
4163
  #: app/features/mec/notifications.php:445
4164
  #: app/features/mec/notifications.php:505
4165
  #: app/features/mec/notifications.php:575
4166
+ msgid "Event title"
4167
  msgstr ""
4168
 
4169
  #: app/features/mec/notifications.php:270
4172
  #: app/features/mec/notifications.php:446
4173
  #: app/features/mec/notifications.php:506
4174
  #: app/features/mec/notifications.php:576
4175
+ msgid "Event link"
4176
  msgstr ""
4177
 
4178
  #: app/features/mec/notifications.php:271
4181
  #: app/features/mec/notifications.php:447
4182
  #: app/features/mec/notifications.php:507
4183
  #: app/features/mec/notifications.php:577
4184
+ msgid "Speaker name of booked event"
4185
  msgstr ""
4186
 
4187
  #: app/features/mec/notifications.php:272
4190
  #: app/features/mec/notifications.php:448
4191
  #: app/features/mec/notifications.php:508
4192
  #: app/features/mec/notifications.php:578
4193
+ msgid "Organizer name of booked event"
4194
  msgstr ""
4195
 
4196
  #: app/features/mec/notifications.php:273
4199
  #: app/features/mec/notifications.php:449
4200
  #: app/features/mec/notifications.php:509
4201
  #: app/features/mec/notifications.php:579
4202
+ msgid "Organizer tel of booked event"
4203
  msgstr ""
4204
 
4205
  #: app/features/mec/notifications.php:274
4208
  #: app/features/mec/notifications.php:450
4209
  #: app/features/mec/notifications.php:510
4210
  #: app/features/mec/notifications.php:580
4211
+ msgid "Organizer email of booked event"
4212
  msgstr ""
4213
 
4214
  #: app/features/mec/notifications.php:275
4217
  #: app/features/mec/notifications.php:451
4218
  #: app/features/mec/notifications.php:511
4219
  #: app/features/mec/notifications.php:581
4220
+ msgid "Location name of booked event"
4221
  msgstr ""
4222
 
4223
  #: app/features/mec/notifications.php:276
4224
+ #: app/features/mec/notifications.php:329
4225
+ #: app/features/mec/notifications.php:381
4226
+ #: app/features/mec/notifications.php:452
4227
+ #: app/features/mec/notifications.php:512
4228
+ #: app/features/mec/notifications.php:582
4229
+ msgid "Location address of booked event"
4230
  msgstr ""
4231
 
4232
  #: app/features/mec/notifications.php:277
4233
+ #: app/features/mec/notifications.php:454
4234
+ #: app/features/mec/notifications.php:514
4235
+ msgid "Full Attendee info such as booking form data, name, email etc."
4236
  msgstr ""
4237
 
4238
  #: app/features/mec/notifications.php:278
 
4239
  #: app/features/mec/notifications.php:383
 
 
4240
  #: app/features/mec/notifications.php:584
4241
+ msgid "Invoice Link"
4242
  msgstr ""
4243
 
4244
  #: app/features/mec/notifications.php:279
4245
  #: app/features/mec/notifications.php:331
4246
  #: app/features/mec/notifications.php:384
4247
+ #: app/features/mec/notifications.php:455
4248
+ #: app/features/mec/notifications.php:515
4249
  #: app/features/mec/notifications.php:585
4250
+ msgid "Total Attendees"
4251
  msgstr ""
4252
 
4253
  #: app/features/mec/notifications.php:280
4254
  #: app/features/mec/notifications.php:332
4255
  #: app/features/mec/notifications.php:385
4256
  #: app/features/mec/notifications.php:586
4257
+ msgid "Ticket name"
4258
  msgstr ""
4259
 
4260
  #: app/features/mec/notifications.php:281
4261
  #: app/features/mec/notifications.php:333
4262
  #: app/features/mec/notifications.php:386
4263
  #: app/features/mec/notifications.php:587
4264
+ msgid "Ticket time"
4265
+ msgstr ""
4266
+
4267
+ #: app/features/mec/notifications.php:282
4268
+ #: app/features/mec/notifications.php:334
4269
+ #: app/features/mec/notifications.php:387
4270
+ #: app/features/mec/notifications.php:588
4271
  msgid "Download ICS file"
4272
  msgstr ""
4273
 
4274
+ #: app/features/mec/notifications.php:291
4275
  msgid "It sends to attendee email for verifying their booking/email."
4276
  msgstr ""
4277
 
4278
+ #: app/features/mec/notifications.php:330
4279
  msgid "Email/Booking verification link."
4280
  msgstr ""
4281
 
4282
+ #: app/features/mec/notifications.php:343
4283
  msgid "It sends to attendee after confirming the booking by admin."
4284
  msgstr ""
4285
 
4286
+ #: app/features/mec/notifications.php:382
4287
+ #: app/features/mec/notifications.php:583
4288
  msgid "Booking cancellation link."
4289
  msgstr ""
4290
 
4291
+ #: app/features/mec/notifications.php:398
4292
  msgid "Enable cancellation notification"
4293
  msgstr ""
4294
 
4295
+ #: app/features/mec/notifications.php:402
4296
  msgid ""
4297
  "It sends to selected recipients after booking cancellation for notifying "
4298
  "them."
4299
  msgstr ""
4300
 
4301
+ #: app/features/mec/notifications.php:420
4302
  msgid "Send the email to admin"
4303
  msgstr ""
4304
 
4305
+ #: app/features/mec/notifications.php:428
4306
  msgid "Send the email to booking user"
4307
  msgstr ""
4308
 
4309
+ #: app/features/mec/notifications.php:453
4310
+ #: app/features/mec/notifications.php:513
4311
  msgid "Admin booking management link."
4312
  msgstr ""
4313
 
4314
+ #: app/features/mec/notifications.php:466
4315
  msgid "Enable admin notification"
4316
  msgstr ""
4317
 
4318
+ #: app/features/mec/notifications.php:470
4319
  msgid "It sends to admin to notify him/her that a new booking received."
4320
  msgstr ""
4321
 
4322
+ #: app/features/mec/notifications.php:526
4323
  msgid "Enable booking reminder notification"
4324
  msgstr ""
4325
 
4326
+ #: app/features/mec/notifications.php:532
4327
  #, php-format
4328
  msgid ""
4329
  "Set a cronjob to call %s file once per day otherwise it won't send the "
4331
  "send the reminders multiple times."
4332
  msgstr ""
4333
 
4334
+ #: app/features/mec/notifications.php:532
4335
  msgid "only once per day"
4336
  msgstr ""
4337
 
4338
+ #: app/features/mec/notifications.php:550
4339
  msgid "Days"
4340
  msgstr ""
4341
 
4342
+ #: app/features/mec/notifications.php:602
4343
  msgid "Enable new event notification"
4344
  msgstr ""
4345
 
4346
+ #: app/features/mec/notifications.php:606
4347
  msgid ""
4348
  "It sends after adding a new event from frontend event submission or from "
4349
  "website backend."
4350
  msgstr ""
4351
 
4352
+ #: app/features/mec/notifications.php:628
4353
  msgid "Title of event"
4354
  msgstr ""
4355
 
4356
+ #: app/features/mec/notifications.php:629
4357
  msgid "Link of event"
4358
  msgstr ""
4359
 
4360
+ #: app/features/mec/notifications.php:630
4361
  msgid "Status of event"
4362
  msgstr ""
4363
 
4364
+ #: app/features/mec/notifications.php:631 app/features/mec/settings.php:845
4365
+ #: app/features/mec/settings.php:849
4366
  msgid "Event Note"
4367
  msgstr ""
4368
 
4369
+ #: app/features/mec/notifications.php:635
4370
  msgid "Admin events management link."
4371
  msgstr ""
4372
 
4373
+ #: app/features/mec/settings.php:261 app/features/mec/settings.php:271
4374
  msgid "Hide Events"
4375
  msgstr ""
4376
 
4377
+ #: app/features/mec/settings.php:264
4378
  msgid "On Event Start"
4379
  msgstr ""
4380
 
4381
+ #: app/features/mec/settings.php:265
4382
  msgid "+1 Hour after start"
4383
  msgstr ""
4384
 
4385
+ #: app/features/mec/settings.php:266
4386
  msgid "+2 Hours after start"
4387
  msgstr ""
4388
 
4389
+ #: app/features/mec/settings.php:267
4390
  msgid "On Event End"
4391
  msgstr ""
4392
 
4393
+ #: app/features/mec/settings.php:272
4394
  msgid ""
4395
  "This option is for showing start/end time of events on frontend of website."
4396
  msgstr ""
4397
 
4398
+ #: app/features/mec/settings.php:281 app/features/mec/settings.php:290
4399
  msgid "Multiple Day Events"
4400
  msgstr ""
4401
 
4402
+ #: app/features/mec/settings.php:284
4403
  msgid "Show only first day on List/Grid/Slider skins"
4404
  msgstr ""
4405
 
4406
+ #: app/features/mec/settings.php:285
4407
  msgid "Show only first day on all skins"
4408
  msgstr ""
4409
 
4410
+ #: app/features/mec/settings.php:286
4411
  msgid "Show all days"
4412
  msgstr ""
4413
 
4414
+ #: app/features/mec/settings.php:291
4415
  msgid ""
4416
  "For showing all days of multiple day events on frontend or only show the "
4417
  "first day."
4418
  msgstr ""
4419
 
4420
+ #: app/features/mec/settings.php:300
4421
  msgid "Remove MEC Data on Plugin Uninstall"
4422
  msgstr ""
4423
 
4424
+ #: app/features/mec/settings.php:304
4425
  msgid "Enabled"
4426
  msgstr ""
4427
 
4428
+ #: app/features/mec/settings.php:310
4429
  msgid "Exclude Date Suffix"
4430
  msgstr ""
4431
 
4432
+ #: app/features/mec/settings.php:313
4433
  msgid "Remove suffix from calendars"
4434
  msgstr ""
4435
 
4436
+ #: app/features/mec/settings.php:317
4437
  msgid "Remove \"Th\" on calendar"
4438
  msgstr ""
4439
 
4440
+ #: app/features/mec/settings.php:318
4441
  msgid ""
4442
  "Checked this checkbox to remove 'Th' on calendar ( ex: '12Th' remove Th, "
4443
  "showing just '12' )"
4444
  msgstr ""
4445
 
4446
+ #: app/features/mec/settings.php:327 app/features/mec/settings.php:337
4447
+ #: app/libraries/main.php:4499
4448
  msgid "Weekdays"
4449
  msgstr ""
4450
 
4451
+ #: app/features/mec/settings.php:338
4452
  msgid ""
4453
  "Proceed with caution. Default is set to Monday, Tuesday, Wednesday, Thursday "
4454
  "and Friday ( you can change 'Week Starts' on WordPress Dashboard > Settings "
4455
  "> General - bottom of the page )."
4456
  msgstr ""
4457
 
4458
+ #: app/features/mec/settings.php:348 app/features/mec/settings.php:358
4459
  msgid "Weekends"
4460
  msgstr ""
4461
 
4462
+ #: app/features/mec/settings.php:359
4463
  msgid ""
4464
  "Proceed with caution. Default is set to Saturday and Sunday ( you can change "
4465
  "'Week Starts' on WordPress Dashboard > Settings > General - bottom of the "
4466
  "page )."
4467
  msgstr ""
4468
 
4469
+ #: app/features/mec/settings.php:373 app/features/mec/settings.php:378
4470
  msgid "Archive Page Title"
4471
  msgstr ""
4472
 
4473
+ #: app/features/mec/settings.php:379
4474
  msgid "Default value is Events - It's title of the page"
4475
  msgstr ""
4476
 
4477
+ #: app/features/mec/settings.php:387 app/features/mec/settings.php:455
4478
  msgid "Archive Page Skin"
4479
  msgstr ""
4480
 
4481
+ #: app/features/mec/settings.php:395
4482
  msgid "Put shortcode..."
4483
  msgstr ""
4484
 
4485
+ #: app/features/mec/settings.php:398 app/features/mec/settings.php:413
4486
+ #: app/features/mec/settings.php:416 app/features/mec/settings.php:425
4487
+ #: app/features/mec/settings.php:451 app/features/mec/settings.php:472
4488
+ #: app/features/mec/settings.php:487 app/features/mec/settings.php:490
4489
+ #: app/features/mec/settings.php:499 app/features/mec/settings.php:525
4490
  msgid "There is no skins"
4491
  msgstr ""
4492
 
4493
+ #: app/features/mec/settings.php:401 app/features/mec/settings.php:475
4494
+ #: app/features/mec/single.php:249
4495
  msgid "Modern Style"
4496
  msgstr ""
4497
 
4498
+ #: app/features/mec/settings.php:443 app/features/mec/settings.php:517
4499
  msgid "colorful"
4500
  msgstr ""
4501
 
4502
+ #: app/features/mec/settings.php:448 app/features/mec/settings.php:522
4503
  msgid "Clean Style"
4504
  msgstr ""
4505
 
4506
+ #: app/features/mec/settings.php:456
4507
  msgid "Default value is Calendar/Monthly View, But you can change it "
4508
  msgstr ""
4509
 
4510
+ #: app/features/mec/settings.php:456 app/features/mec/settings.php:530
4511
  msgid "See Demo"
4512
  msgstr ""
4513
 
4514
+ #: app/features/mec/settings.php:464 app/features/mec/settings.php:529
4515
  msgid "Category Page Skin"
4516
  msgstr ""
4517
 
4518
+ #: app/features/mec/settings.php:530
4519
  msgid ""
4520
  "Default value is List View - But you can change it Set a skin for all "
4521
  "categories."
4522
  msgstr ""
4523
 
4524
+ #: app/features/mec/settings.php:538 app/features/mec/settings.php:546
4525
  msgid "Category Events Method"
4526
  msgstr ""
4527
 
4528
+ #: app/features/mec/settings.php:542
4529
  msgid "Expired Events"
4530
  msgstr ""
4531
 
4532
+ #: app/features/mec/settings.php:547
4533
  msgid "Default value is Upcoming Events"
4534
  msgstr ""
4535
 
4536
+ #: app/features/mec/settings.php:555 app/features/mec/settings.php:563
4537
  msgid "Events Archive Status"
4538
  msgstr ""
4539
 
4540
+ #: app/features/mec/settings.php:558
4541
  msgid "Enabled (Recommended)"
4542
  msgstr ""
4543
 
4544
+ #: app/features/mec/settings.php:564
4545
  msgid ""
4546
  "If you disable it, then you should create a page as archive page of MEC. "
4547
  "Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
4548
  "MEC rewrite rules."
4549
  msgstr ""
4550
 
4551
+ #: app/features/mec/settings.php:577 app/features/mec/settings.php:582
4552
  msgid "Main Slug"
4553
  msgstr ""
4554
 
4555
+ #: app/features/mec/settings.php:583
4556
  msgid ""
4557
  "Default value is events. You can not have a page with this name. MEC allows "
4558
  "you to create custom URLs for the permalinks and archives to enhance the "
4559
  "applicability and forward-compatibility of the links."
4560
  msgstr ""
4561
 
4562
+ #: app/features/mec/settings.php:587 app/features/mec/settings.php:601
4563
  msgid "Valid characters are lowercase a-z, - character and numbers."
4564
  msgstr ""
4565
 
4566
+ #: app/features/mec/settings.php:591 app/features/mec/settings.php:596
4567
  msgid "Category Slug"
4568
  msgstr ""
4569
 
4570
+ #: app/features/mec/settings.php:597
4571
  msgid ""
4572
  "It's slug of MEC categories, you can change it to events-cat or something "
4573
  "else. Default value is mec-category. You can not have a page with this name."
4574
  msgstr ""
4575
 
4576
+ #: app/features/mec/settings.php:609
4577
  msgid "Currency"
4578
  msgstr ""
4579
 
4580
+ #: app/features/mec/settings.php:619 app/features/mec/settings.php:624
4581
  msgid "Currency Sign"
4582
  msgstr ""
4583
 
4584
+ #: app/features/mec/settings.php:625
4585
  msgid "Default value will be \"currency\" if you leave it empty."
4586
  msgstr ""
4587
 
4588
+ #: app/features/mec/settings.php:632
4589
  msgid "Currency Position"
4590
  msgstr ""
4591
 
4592
+ #: app/features/mec/settings.php:635
4593
  msgid "Before $10"
4594
  msgstr ""
4595
 
4596
+ #: app/features/mec/settings.php:636
4597
  msgid "After 10$"
4598
  msgstr ""
4599
 
4600
+ #: app/features/mec/settings.php:641
4601
  msgid "Thousand Separator"
4602
  msgstr ""
4603
 
4604
+ #: app/features/mec/settings.php:647
4605
  msgid "Decimal Separator"
4606
  msgstr ""
4607
 
4608
+ #: app/features/mec/settings.php:657
4609
  msgid "No decimal"
4610
  msgstr ""
4611
 
4612
+ #: app/features/mec/settings.php:668
4613
  msgid "Enable Google Recaptcha"
4614
  msgstr ""
4615
 
4616
+ #: app/features/mec/settings.php:675
4617
  msgid "Enable on booking form"
4618
  msgstr ""
4619
 
4620
+ #: app/features/mec/settings.php:681
4621
  msgid "Enable on \"Frontend Event Submission\" form"
4622
  msgstr ""
4623
 
4624
+ #: app/features/mec/settings.php:685
4625
  msgid "Site Key"
4626
  msgstr ""
4627
 
4628
+ #: app/features/mec/settings.php:691
4629
  msgid "Secret Key"
4630
  msgstr ""
4631
 
4632
+ #: app/features/mec/settings.php:703 app/features/mec/settings.php:711
4633
  msgid "Time Format"
4634
  msgstr ""
4635
 
4636
+ #: app/features/mec/settings.php:706
4637
  msgid "12 hours format with AM/PM"
4638
  msgstr ""
4639
 
4640
+ #: app/features/mec/settings.php:707
4641
  msgid "24 hours format"
4642
  msgstr ""
4643
 
4644
+ #: app/features/mec/settings.php:712
4645
  msgid "This option, affects the selection of Start/End time."
4646
  msgstr ""
4647
 
4648
+ #: app/features/mec/settings.php:720
4649
  msgid "Events List Page"
4650
  msgstr ""
4651
 
4652
+ #: app/features/mec/settings.php:729 app/features/mec/settings.php:741
4653
  #, php-format
4654
  msgid "Put %s shortcode into the page."
4655
  msgstr ""
4656
 
4657
+ #: app/features/mec/settings.php:732
4658
  msgid "Add/Edit Events Page"
4659
  msgstr ""
4660
 
4661
+ #: app/features/mec/settings.php:746
4662
  msgid "Enable event submission by guest (Not logged-in) users"
4663
  msgstr ""
4664
 
4665
+ #: app/features/mec/settings.php:753
4666
  msgid "Enable mandatory email and name for guest user"
4667
  msgstr ""
4668
 
4669
+ #: app/features/mec/settings.php:757
4670
  msgid "Frontend Event Submission Sections"
4671
  msgstr ""
4672
 
4673
+ #: app/features/mec/settings.php:779 app/widgets/single.php:119
4674
  msgid "Event Categories"
4675
  msgstr ""
4676
 
4677
+ #: app/features/mec/settings.php:785
4678
  msgid "Event Labels"
4679
  msgstr ""
4680
 
4681
+ #: app/features/mec/settings.php:797
4682
  msgid "Event Tags"
4683
  msgstr ""
4684
 
4685
+ #: app/features/mec/settings.php:809 app/widgets/single.php:123
4686
  msgid "Event Organizer"
4687
  msgstr ""
4688
 
4689
+ #: app/features/mec/settings.php:827
4690
  msgid "Booking Options"
4691
  msgstr ""
4692
 
4693
+ #: app/features/mec/settings.php:833
4694
  msgid "Fees / Taxes Options"
4695
  msgstr ""
4696
 
4697
+ #: app/features/mec/settings.php:850
4698
  #, php-format
4699
  msgid ""
4700
  "Users can put a note for editors while they're submitting the event. Also "
4702
  "users' note in email."
4703
  msgstr ""
4704
 
4705
+ #: app/features/mec/settings.php:857 app/features/mec/settings.php:866
4706
  msgid "Visibility of Note"
4707
  msgstr ""
4708
 
4709
+ #: app/features/mec/settings.php:860
4710
  msgid "Always"
4711
  msgstr ""
4712
 
4713
+ #: app/features/mec/settings.php:861
4714
  msgid "While event is not published"
4715
  msgstr ""
4716
 
4717
+ #: app/features/mec/settings.php:867
4718
  msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
4719
  msgstr ""
4720
 
4721
+ #: app/features/mec/settings.php:878
4722
  #, php-format
4723
  msgid ""
4724
  "Put %s shortcode into your desired page. Then users are able to see history "
4725
  "of their bookings."
4726
  msgstr ""
4727
 
4728
+ #: app/features/mec/settings.php:885
4729
+ #, php-format
4730
+ msgid ""
4731
+ "Put %s shortcode into your desired page. Then users are able to search events"
4732
+ msgstr ""
4733
+
4734
+ #: app/features/mec/settings.php:925
4735
+ msgid "Text Field"
4736
+ msgstr ""
4737
+
4738
+ #: app/features/mec/settings.php:938
4739
  msgid "Enable Mailchimp Integration"
4740
  msgstr ""
4741
 
4742
+ #: app/features/mec/settings.php:956 app/features/mec/settings.php:961
4743
  msgid "List ID"
4744
  msgstr ""
4745
 
4746
+ #: app/features/mec/settings.php:969 app/features/mec/settings.php:977
4747
  msgid "Subscription Status"
4748
  msgstr ""
4749
 
4750
+ #: app/features/mec/settings.php:972
4751
  msgid "Subscribe automatically"
4752
  msgstr ""
4753
 
4754
+ #: app/features/mec/settings.php:973
4755
  msgid "Subscribe by verification"
4756
  msgstr ""
4757
 
4758
+ #: app/features/mec/settings.php:978
4759
  msgid ""
4760
  "If you choose \"Subscribe by verification\" then an email will send to user "
4761
  "by mailchimp for subscription verification."
4762
  msgstr ""
4763
 
4764
+ #: app/features/mec/settings.php:990
4765
  msgid "Upload Field Options"
4766
  msgstr ""
4767
 
4768
+ #: app/features/mec/settings.php:992
4769
  msgid "Mime types"
4770
  msgstr ""
4771
 
4772
+ #: app/features/mec/settings.php:996
4773
  msgid "Split mime types with \",\"."
4774
  msgstr ""
4775
 
4776
+ #: app/features/mec/settings.php:996
4777
  msgid "Default: jpeg,jpg,png,pdf"
4778
  msgstr ""
4779
 
4780
+ #: app/features/mec/settings.php:999
4781
  msgid "Maximum file size"
4782
  msgstr ""
4783
 
4784
+ #: app/features/mec/settings.php:1003
4785
  msgid "The unit is Megabyte \"MB\""
4786
  msgstr ""
4787
 
4788
+ #: app/features/mec/single.php:216 app/features/mec/single.php:221
4789
  msgid "Single Event Date Format"
4790
  msgstr ""
4791
 
4792
+ #: app/features/mec/single.php:229 app/features/mec/single.php:237
4793
  msgid "Date Method"
4794
  msgstr ""
4795
 
4796
+ #: app/features/mec/single.php:232
4797
  msgid "Next occurrence date"
4798
  msgstr ""
4799
 
4800
+ #: app/features/mec/single.php:233
4801
  msgid "Referred date"
4802
  msgstr ""
4803
 
4804
+ #: app/features/mec/single.php:238
4805
  msgid ""
4806
  "Referred date\" shows the event date based on referred date in event list."
4807
  msgstr ""
4808
 
4809
+ #: app/features/mec/single.php:245 app/features/mec/single.php:256
4810
  msgid "Single Event Style"
4811
  msgstr ""
4812
 
4813
+ #: app/features/mec/single.php:248
4814
  msgid "Default Style"
4815
  msgstr ""
4816
 
4817
+ #: app/features/mec/single.php:251
4818
  msgid "Elementor Single Builder"
4819
  msgstr ""
4820
 
4821
+ #: app/features/mec/single.php:257
4822
  msgid "Choose your single event style."
4823
  msgstr ""
4824
 
4825
+ #: app/features/mec/single.php:265 app/features/mec/single.php:273
4826
  msgid "Booking Style"
4827
  msgstr ""
4828
 
4829
+ #: app/features/mec/single.php:269
4830
  msgid "Modal"
4831
  msgstr ""
4832
 
4833
+ #: app/features/mec/single.php:274
4834
  msgid ""
4835
  "Choose your Booking style, Please Note: When you set this feature to modal "
4836
  "you can not see booking box if you set popoup module view on shortcodes"
4837
  msgstr ""
4838
 
4839
+ #: app/features/mec/single.php:282
4840
  msgid "Disable Block Editor (Gutenberg)"
4841
  msgstr ""
4842
 
4843
+ #: app/features/mec/single.php:285
4844
  msgid "Disable Block Editor"
4845
  msgstr ""
4846
 
4847
+ #: app/features/mec/single.php:289
4848
  msgid "Block Editor"
4849
  msgstr ""
4850
 
4851
+ #: app/features/mec/single.php:290
4852
  msgid ""
4853
  "If you want to use the new WordPress block editor you should keep this "
4854
  "checkbox unchecked."
4855
  msgstr ""
4856
 
4857
+ #: app/features/mec/single.php:296 app/features/mec/single.php:303
4858
  msgid "Breadcrumbs"
4859
  msgstr ""
4860
 
4861
+ #: app/features/mec/single.php:299
4862
  msgid "Enable Breadcrumbs."
4863
  msgstr ""
4864
 
4865
+ #: app/features/mec/single.php:304
4866
  msgid "Check this option, for showing the breadcrumbs on single event page"
4867
  msgstr ""
4868
 
4869
+ #: app/features/mec/single.php:317
4870
  msgid "Show countdown module on event page"
4871
  msgstr ""
4872
 
4873
+ #: app/features/mec/single.php:322
4874
  msgid "Countdown Style"
4875
  msgstr ""
4876
 
4877
+ #: app/features/mec/single.php:325
4878
  msgid "Plain Style"
4879
  msgstr ""
4880
 
4881
+ #: app/features/mec/single.php:326
4882
  msgid "Flip Style"
4883
  msgstr ""
4884
 
4885
+ #: app/features/mec/single.php:334 app/features/mec/single.php:341
4886
  msgid "Exceptional days"
4887
  msgstr ""
4888
 
4889
+ #: app/features/mec/single.php:338
4890
  msgid "Show exceptional days option on Add/Edit events page"
4891
  msgstr ""
4892
 
4893
+ #: app/features/mec/single.php:342
4894
  msgid ""
4895
  "Using this option you can include/exclude certain days to/from event "
4896
  "occurrence dates."
4897
  msgstr ""
4898
 
4899
+ #: app/features/mec/single.php:355
4900
  msgid ""
4901
  "Show additional organizers option on Add/Edit events page and single event "
4902
  "page."
4903
  msgstr ""
4904
 
4905
+ #: app/features/mec/single.php:361
4906
  msgid "Additional locations"
4907
  msgstr ""
4908
 
4909
+ #: app/features/mec/single.php:365
4910
  msgid ""
4911
  "Show additional locations option on Add/Edit events page and single event "
4912
  "page."
4913
  msgstr ""
4914
 
4915
+ #: app/features/mec/styles.php:182
4916
  msgid "Custom Styles"
4917
  msgstr ""
4918
 
4919
+ #: app/features/mec/styles.php:187
4920
  msgid ""
4921
  "If you're a developer or you have some knowledge about CSS codes, you can "
4922
  "place your desired styles codes here. These codes will be included in your "
4924
  "styles."
4925
  msgstr ""
4926
 
4927
+ #: app/features/mec/styling.php:10 app/features/mec/styling.php:312
4928
+ #: app/features/mec/styling.php:338
4929
  msgid "Default Font"
4930
  msgstr ""
4931
 
4932
+ #: app/features/mec/styling.php:204
4933
  msgid "Styling Option"
4934
  msgstr ""
4935
 
4936
+ #: app/features/mec/styling.php:209
4937
  msgid "Color Skin"
4938
  msgstr ""
4939
 
4940
+ #: app/features/mec/styling.php:212
4941
  msgid "Predefined Color Skin"
4942
  msgstr ""
4943
 
4944
+ #: app/features/mec/styling.php:255
4945
  msgid "Custom Color Skin"
4946
  msgstr ""
4947
 
4948
+ #: app/features/mec/styling.php:261
4949
  msgid ""
4950
  "If you want to select a predefined color skin, you must clear the color of "
4951
  "this item"
4952
  msgstr ""
4953
 
4954
+ #: app/features/mec/styling.php:266
4955
  msgid "Advanced Color Options (shortcodes)"
4956
  msgstr ""
4957
 
4958
+ #: app/features/mec/styling.php:278
4959
  msgid "Title Hover"
4960
  msgstr ""
4961
 
4962
+ #: app/features/mec/styling.php:295
4963
  msgid "Typography"
4964
  msgstr ""
4965
 
4966
+ #: app/features/mec/styling.php:297
4967
  msgid "Heading (Events Title) Font Family"
4968
  msgstr ""
4969
 
4970
+ #: app/features/mec/styling.php:323
4971
  msgid "Paragraph Font Family"
4972
  msgstr ""
4973
 
4974
+ #: app/features/mec/styling.php:350 app/features/mec/styling.php:356
4975
  msgid "Disable Google Fonts"
4976
  msgstr ""
4977
 
4978
+ #: app/features/mec/styling.php:357
4979
  msgid "To be GDPR compliant you may need to disable Google fonts!"
4980
  msgstr ""
4981
 
4982
+ #: app/features/mec/styling.php:366
4983
  msgid "Container Width"
4984
  msgstr ""
4985
 
4986
+ #: app/features/mec/styling.php:368 app/features/mec/styling.php:373
4987
  msgid "Desktop Normal Screens"
4988
  msgstr ""
4989
 
4990
+ #: app/features/mec/styling.php:374 app/features/mec/styling.php:387
4991
  msgid "You can enter your theme container size in this field"
4992
  msgstr ""
4993
 
4994
+ #: app/features/mec/styling.php:381 app/features/mec/styling.php:386
4995
  msgid "Desktop Large Screens"
4996
  msgstr ""
4997
 
5336
  msgid "How to add/manage shortcodes?"
5337
  msgstr ""
5338
 
5339
+ #: app/features/op.php:96
5340
+ msgid "Organizer Payment Credentials"
5341
+ msgstr ""
5342
+
5343
  #: app/features/organizers.php:105 app/features/organizers.php:147
5344
  #: app/features/speakers.php:177
5345
  msgid "Insert organizer phone number."
5400
  msgid "eg. https://webnus.net"
5401
  msgstr ""
5402
 
5403
+ #: app/features/organizers.php:306 app/libraries/main.php:4523
5404
+ #: app/skins/single.php:694
5405
  msgid "Other Organizers"
5406
  msgstr ""
5407
 
5419
  msgid "#"
5420
  msgstr ""
5421
 
5422
+ #: app/features/profile/profile.php:34 app/libraries/main.php:2587
5423
  msgid "Status"
5424
  msgstr ""
5425
 
5426
+ #: app/features/profile/profile.php:37 app/libraries/main.php:1723
5427
  msgid "Attendees"
5428
  msgstr ""
5429
 
5436
  msgid "<i class=\"mec-sl-eye\"></i> %s"
5437
  msgstr ""
5438
 
5439
+ #: app/features/profile/profile.php:96 app/libraries/main.php:1737
5440
+ #: app/libraries/main.php:4521
5441
  msgid "Ticket"
5442
  msgstr ""
5443
 
5499
  msgid "Discount"
5500
  msgstr ""
5501
 
5502
+ #: app/libraries/book.php:628 app/modules/booking/default.php:303
5503
  #: app/modules/booking/default.php:401
5504
  msgid "Download Invoice"
5505
  msgstr ""
5523
  msgid "Upgrade"
5524
  msgstr ""
5525
 
5526
+ #: app/libraries/factory.php:328
5527
  msgid "day"
5528
  msgstr ""
5529
 
5530
+ #: app/libraries/factory.php:329 app/modules/countdown/details.php:123
5531
  #: app/skins/available_spot/tpl.php:147 app/skins/countdown/tpl.php:132
5532
  #: app/skins/countdown/tpl.php:176 app/skins/countdown/tpl.php:225
5533
  msgid "days"
5534
  msgstr ""
5535
 
5536
+ #: app/libraries/factory.php:330
5537
  msgid "hour"
5538
  msgstr ""
5539
 
5540
+ #: app/libraries/factory.php:331 app/modules/countdown/details.php:130
5541
  #: app/skins/available_spot/tpl.php:151 app/skins/countdown/tpl.php:138
5542
  #: app/skins/countdown/tpl.php:182 app/skins/countdown/tpl.php:231
5543
  msgid "hours"
5544
  msgstr ""
5545
 
5546
+ #: app/libraries/factory.php:332
5547
  msgid "minute"
5548
  msgstr ""
5549
 
5550
+ #: app/libraries/factory.php:333 app/modules/countdown/details.php:137
5551
  #: app/skins/available_spot/tpl.php:155 app/skins/countdown/tpl.php:144
5552
  #: app/skins/countdown/tpl.php:188 app/skins/countdown/tpl.php:237
5553
  msgid "minutes"
5554
  msgstr ""
5555
 
5556
+ #: app/libraries/factory.php:334
5557
  msgid "second"
5558
  msgstr ""
5559
 
5560
+ #: app/libraries/factory.php:335 app/modules/countdown/details.php:144
5561
  #: app/skins/available_spot/tpl.php:159 app/skins/countdown/tpl.php:150
5562
  #: app/skins/countdown/tpl.php:194 app/skins/countdown/tpl.php:243
5563
  msgid "seconds"
5564
  msgstr ""
5565
 
5566
+ #: app/libraries/factory.php:378
5567
  msgid "MEC Single Sidebar"
5568
  msgstr ""
5569
 
5570
+ #: app/libraries/factory.php:379
5571
  msgid "Custom sidebar for single and modal page of MEC."
5572
  msgstr ""
5573
 
5575
  msgid "There is no excerpt because this is a protected post."
5576
  msgstr ""
5577
 
5578
+ #: app/libraries/main.php:330 app/libraries/main.php:1249
5579
+ #: app/libraries/main.php:1274
5580
  msgid "Grid View"
5581
  msgstr ""
5582
 
5583
+ #: app/libraries/main.php:331 app/libraries/main.php:1250
5584
+ #: app/libraries/main.php:1275
5585
  msgid "Agenda View"
5586
  msgstr ""
5587
 
5588
+ #: app/libraries/main.php:332 app/libraries/main.php:1241
5589
+ #: app/libraries/main.php:1266
5590
  msgid "Full Calendar"
5591
  msgstr ""
5592
 
5593
+ #: app/libraries/main.php:334 app/libraries/main.php:1243
5594
+ #: app/libraries/main.php:1268
5595
  msgid "Calendar/Monthly View"
5596
  msgstr ""
5597
 
5598
+ #: app/libraries/main.php:337 app/libraries/main.php:1246
5599
+ #: app/libraries/main.php:1271
5600
  msgid "Timetable View"
5601
  msgstr ""
5602
 
5603
+ #: app/libraries/main.php:338 app/libraries/main.php:1247
5604
+ #: app/libraries/main.php:1272
5605
  msgid "Masonry View"
5606
  msgstr ""
5607
 
5608
+ #: app/libraries/main.php:339 app/libraries/main.php:1251
5609
+ #: app/libraries/main.php:1276
5610
  msgid "Map View"
5611
  msgstr ""
5612
 
5630
  msgid "Slider View"
5631
  msgstr ""
5632
 
5633
+ #: app/libraries/main.php:382 app/libraries/main.php:4501
5634
  msgid "SU"
5635
  msgstr ""
5636
 
5637
+ #: app/libraries/main.php:383 app/libraries/main.php:4502
5638
  msgid "MO"
5639
  msgstr ""
5640
 
5641
+ #: app/libraries/main.php:384 app/libraries/main.php:4503
5642
  msgid "TU"
5643
  msgstr ""
5644
 
5645
+ #: app/libraries/main.php:385 app/libraries/main.php:4504
5646
  msgid "WE"
5647
  msgstr ""
5648
 
5649
+ #: app/libraries/main.php:386 app/libraries/main.php:4505
5650
  msgid "TH"
5651
  msgstr ""
5652
 
5653
+ #: app/libraries/main.php:387 app/libraries/main.php:4506
5654
  msgid "FR"
5655
  msgstr ""
5656
 
5657
+ #: app/libraries/main.php:388 app/libraries/main.php:4507
5658
  msgid "SA"
5659
  msgstr ""
5660
 
5695
  "desktops, mobiles and tablets as well."
5696
  msgstr ""
5697
 
5698
+ #: app/libraries/main.php:1104
5699
  msgid "Events at this location"
5700
  msgstr ""
5701
 
5702
+ #: app/libraries/main.php:1104
5703
  msgid "Event at this location"
5704
  msgstr ""
5705
 
5706
+ #: app/libraries/main.php:1145
5707
  msgid "Facebook"
5708
  msgstr ""
5709
 
5710
+ #: app/libraries/main.php:1146
5711
  msgid "Twitter"
5712
  msgstr ""
5713
 
5714
+ #: app/libraries/main.php:1147 app/libraries/main.php:1197
5715
  msgid "Linkedin"
5716
  msgstr ""
5717
 
5718
+ #: app/libraries/main.php:1148 app/libraries/main.php:1230
5719
  msgid "VK"
5720
  msgstr ""
5721
 
5722
+ #: app/libraries/main.php:1167
5723
  msgid "Share on Facebook"
5724
  msgstr ""
5725
 
5726
+ #: app/libraries/main.php:1182
5727
  msgid "Tweet"
5728
  msgstr ""
5729
 
5730
+ #: app/libraries/main.php:1252
5731
  msgid "Custom Shortcode"
5732
  msgstr ""
5733
 
5734
+ #: app/libraries/main.php:1611
5735
  msgid "Your booking successfully verified."
5736
  msgstr ""
5737
 
5738
+ #: app/libraries/main.php:1612
5739
  msgid "Your booking cannot verify!"
5740
  msgstr ""
5741
 
5742
+ #: app/libraries/main.php:1624
5743
  msgid "Your booking successfully canceled."
5744
  msgstr ""
5745
 
5746
+ #: app/libraries/main.php:1625
5747
  msgid "Your booking cannot be canceled."
5748
  msgstr ""
5749
 
5750
+ #: app/libraries/main.php:1629
5751
  msgid "You canceled the payment successfully."
5752
  msgstr ""
5753
 
5754
+ #: app/libraries/main.php:1633
5755
  msgid "You returned from payment gateway successfully."
5756
  msgstr ""
5757
 
5758
+ #: app/libraries/main.php:1649
5759
+ msgid "Cannot find the invoice!"
5760
+ msgstr ""
5761
+
5762
+ #: app/libraries/main.php:1649
5763
+ msgid "Invoice is invalid."
5764
+ msgstr ""
5765
+
5766
+ #: app/libraries/main.php:1664
5767
  msgid "Cannot find the booking!"
5768
  msgstr ""
5769
 
5770
+ #: app/libraries/main.php:1664
5771
  msgid "Booking is invalid."
5772
  msgstr ""
5773
 
5774
+ #: app/libraries/main.php:1693
5775
  #, php-format
5776
  msgid "%s Invoice"
5777
  msgstr ""
5778
 
5779
+ #: app/libraries/main.php:1714
5780
  msgid "Transaction ID"
5781
  msgstr ""
5782
 
5783
+ #: app/libraries/main.php:1767
5784
  msgid "Billing"
5785
  msgstr ""
5786
 
5787
+ #: app/libraries/main.php:1778
5788
  msgid "Total"
5789
  msgstr ""
5790
 
5791
+ #: app/libraries/main.php:1811
5792
  msgid "Security nonce is not valid."
5793
  msgstr ""
5794
 
5795
+ #: app/libraries/main.php:1811 app/libraries/main.php:1843
5796
  msgid "iCal export stopped!"
5797
  msgstr ""
5798
 
5799
+ #: app/libraries/main.php:1843
5800
  msgid "Request is not valid."
5801
  msgstr ""
5802
 
5803
+ #: app/libraries/main.php:2171 app/libraries/main.php:2201
5804
+ #: app/libraries/main.php:2230 app/libraries/main.php:2260
5805
+ #: app/libraries/main.php:2289 app/libraries/main.php:2318
5806
+ #: app/libraries/main.php:2347 app/libraries/main.php:2376
5807
+ #: app/libraries/main.php:2405 app/libraries/main.php:2429
5808
+ #: app/libraries/main.php:2473 app/libraries/main.php:2517
5809
+ #: app/libraries/main.php:2564 app/libraries/main.php:2611
5810
  msgid "Sort"
5811
  msgstr ""
5812
 
5813
+ #: app/libraries/main.php:2177 app/libraries/main.php:2207
5814
+ #: app/libraries/main.php:2236 app/libraries/main.php:2266
5815
+ #: app/libraries/main.php:2295 app/libraries/main.php:2324
5816
+ #: app/libraries/main.php:2353 app/libraries/main.php:2382
5817
+ #: app/libraries/main.php:2435 app/libraries/main.php:2479
5818
+ #: app/libraries/main.php:2523 app/libraries/main.php:2570
5819
  msgid "Required Field"
5820
  msgstr ""
5821
 
5822
+ #: app/libraries/main.php:2183 app/libraries/main.php:2213
5823
+ #: app/libraries/main.php:2242 app/libraries/main.php:2272
5824
+ #: app/libraries/main.php:2301 app/libraries/main.php:2330
5825
+ #: app/libraries/main.php:2359 app/libraries/main.php:2388
5826
+ #: app/libraries/main.php:2441 app/libraries/main.php:2485
5827
+ #: app/libraries/main.php:2529 app/libraries/main.php:2576
5828
  msgid "Insert a label for this field"
5829
  msgstr ""
5830
 
5831
+ #: app/libraries/main.php:2411
5832
  msgid "HTML and shortcode are allowed."
5833
  msgstr ""
5834
 
5835
+ #: app/libraries/main.php:2454 app/libraries/main.php:2498
5836
+ #: app/libraries/main.php:2542
5837
  msgid "Option"
5838
  msgstr ""
5839
 
5840
+ #: app/libraries/main.php:2576
5841
  #, php-format
5842
  msgid "Instead of %s, the page title with a link will be show."
5843
  msgstr ""
5844
 
5845
+ #: app/libraries/main.php:2578
5846
  msgid "Agreement Page"
5847
  msgstr ""
5848
 
5849
+ #: app/libraries/main.php:2589
5850
  msgid "Checked by default"
5851
  msgstr ""
5852
 
5853
+ #: app/libraries/main.php:2590
5854
  msgid "Unchecked by default"
5855
  msgstr ""
5856
 
5857
+ #: app/libraries/main.php:2613
5858
  msgid "Insert a label for this option"
5859
  msgstr ""
5860
 
5861
+ #: app/libraries/main.php:2628
5862
  msgid "Free"
5863
  msgstr ""
5864
 
5865
+ #: app/libraries/main.php:3180 app/libraries/main.php:4748
5866
  msgid "M.E. Calender"
5867
  msgstr ""
5868
 
5869
+ #: app/libraries/main.php:3335
5870
  #, php-format
5871
  msgid "Copy of %s"
5872
  msgstr ""
5873
 
5874
+ #: app/libraries/main.php:4000
5875
  msgid "Booked an event."
5876
  msgstr ""
5877
 
5878
+ #: app/libraries/main.php:4041
5879
  #, php-format
5880
  msgid "%s booked %s event."
5881
  msgstr ""
5882
 
5883
+ #: app/libraries/main.php:4484
5884
  msgid "Taxonomies"
5885
  msgstr ""
5886
 
5887
+ #: app/libraries/main.php:4486
5888
  msgid "Category Plural Label"
5889
  msgstr ""
5890
 
5891
+ #: app/libraries/main.php:4487
5892
  msgid "Category Singular Label"
5893
  msgstr ""
5894
 
5895
+ #: app/libraries/main.php:4488
5896
  msgid "Label Plural Label"
5897
  msgstr ""
5898
 
5899
+ #: app/libraries/main.php:4489
5900
  msgid "Label Singular Label"
5901
  msgstr ""
5902
 
5903
+ #: app/libraries/main.php:4489
5904
  msgid "label"
5905
  msgstr ""
5906
 
5907
+ #: app/libraries/main.php:4490
5908
  msgid "Location Plural Label"
5909
  msgstr ""
5910
 
5911
+ #: app/libraries/main.php:4491
5912
  msgid "Location Singular Label"
5913
  msgstr ""
5914
 
5915
+ #: app/libraries/main.php:4492
5916
  msgid "Organizer Plural Label"
5917
  msgstr ""
5918
 
5919
+ #: app/libraries/main.php:4493
5920
  msgid "Organizer Singular Label"
5921
  msgstr ""
5922
 
5923
+ #: app/libraries/main.php:4494
5924
  msgid "Speaker Plural Label"
5925
  msgstr ""
5926
 
5927
+ #: app/libraries/main.php:4495
5928
  msgid "Speaker Singular Label"
5929
  msgstr ""
5930
 
5931
+ #: app/libraries/main.php:4501
5932
  msgid "Sunday abbreviation"
5933
  msgstr ""
5934
 
5935
+ #: app/libraries/main.php:4502
5936
  msgid "Monday abbreviation"
5937
  msgstr ""
5938
 
5939
+ #: app/libraries/main.php:4503
5940
  msgid "Tuesday abbreviation"
5941
  msgstr ""
5942
 
5943
+ #: app/libraries/main.php:4504
5944
  msgid "Wednesday abbreviation"
5945
  msgstr ""
5946
 
5947
+ #: app/libraries/main.php:4505
5948
  msgid "Thursday abbreviation"
5949
  msgstr ""
5950
 
5951
+ #: app/libraries/main.php:4506
5952
  msgid "Friday abbreviation"
5953
  msgstr ""
5954
 
5955
+ #: app/libraries/main.php:4507
5956
  msgid "Saturday abbreviation"
5957
  msgstr ""
5958
 
5959
+ #: app/libraries/main.php:4511
5960
  msgid "Others"
5961
  msgstr ""
5962
 
5963
+ #: app/libraries/main.php:4513
5964
  msgid "Booking Success Message"
5965
  msgstr ""
5966
 
5967
+ #: app/libraries/main.php:4513
5968
  msgid ""
5969
  "Thanks for your booking. Your tickets booked, booking verification might be "
5970
  "needed, please check your email."
5971
  msgstr ""
5972
 
5973
+ #: app/libraries/main.php:4514 app/widgets/single.php:131
5974
  msgid "Register Button"
5975
  msgstr ""
5976
 
5977
+ #: app/libraries/main.php:4514 app/skins/available_spot/tpl.php:205
5978
+ #: app/skins/carousel/render.php:138 app/skins/carousel/render.php:168
5979
+ #: app/skins/grid/render.php:116 app/skins/grid/render.php:160
5980
+ #: app/skins/grid/render.php:201 app/skins/grid/render.php:229
5981
  #: app/skins/list/render.php:102 app/skins/list/render.php:190
5982
  #: app/skins/masonry/render.php:175 app/skins/single.php:606
5983
  #: app/skins/single.php:609 app/skins/single/default.php:231
5991
  msgid "REGISTER"
5992
  msgstr ""
5993
 
5994
+ #: app/libraries/main.php:4515
5995
  msgid "View Detail Button"
5996
  msgstr ""
5997
 
5998
+ #: app/libraries/main.php:4515 app/skins/carousel/render.php:138
5999
+ #: app/skins/carousel/render.php:168 app/skins/grid/render.php:116
6000
+ #: app/skins/grid/render.php:160 app/skins/grid/render.php:201
6001
+ #: app/skins/grid/render.php:229 app/skins/list/render.php:102
6002
  #: app/skins/list/render.php:190 app/skins/masonry/render.php:175
6003
  #: app/skins/slider/render.php:109 app/skins/slider/render.php:154
6004
  #: app/skins/slider/render.php:198 app/skins/slider/render.php:243
6006
  msgid "View Detail"
6007
  msgstr ""
6008
 
6009
+ #: app/libraries/main.php:4516
6010
  msgid "Event Detail Button"
6011
  msgstr ""
6012
 
6013
+ #: app/libraries/main.php:4516 app/skins/countdown/tpl.php:218
6014
  msgid "Event Detail"
6015
  msgstr ""
6016
 
6017
+ #: app/libraries/main.php:4518
6018
  msgid "More Info Link"
6019
  msgstr ""
6020
 
6021
+ #: app/libraries/main.php:4521
6022
  msgid "Ticket (Singular)"
6023
  msgstr ""
6024
 
6025
+ #: app/libraries/main.php:4522
6026
  msgid "Tickets (Plural)"
6027
  msgstr ""
6028
 
6029
+ #: app/libraries/main.php:4608
6030
  msgid "EventON"
6031
  msgstr ""
6032
 
6033
+ #: app/libraries/main.php:4609
6034
  msgid "The Events Calendar"
6035
  msgstr ""
6036
 
6037
+ #: app/libraries/main.php:4610
6038
  msgid "Events Schedule WP Plugin"
6039
  msgstr ""
6040
 
6041
+ #: app/libraries/main.php:4611
6042
  msgid "Calendarize It"
6043
  msgstr ""
6044
 
6045
+ #: app/libraries/main.php:4685 app/libraries/main.php:4705
6046
  msgid "Confirmed"
6047
  msgstr ""
6048
 
6049
+ #: app/libraries/main.php:4686 app/libraries/main.php:4713
6050
  msgid "Rejected"
6051
  msgstr ""
6052
 
6053
+ #: app/libraries/main.php:4687 app/libraries/main.php:4709
6054
  msgid "Pending"
6055
  msgstr ""
6056
 
6057
+ #: app/libraries/main.php:4735
6058
  msgid "Waiting"
6059
  msgstr ""
6060
 
6061
+ #: app/libraries/main.php:4940 app/libraries/render.php:366
6062
+ msgid "Skin controller does not exist."
6063
+ msgstr ""
6064
+
6065
  #: app/libraries/notifications.php:61
6066
  msgid "Please verify your email."
6067
  msgstr ""
6114
  msgid "No"
6115
  msgstr ""
6116
 
6117
+ #: app/libraries/skins.php:956
 
 
 
 
6118
  msgid "Ignore month and years"
6119
  msgstr ""
6120
 
6224
  msgid "Time"
6225
  msgstr ""
6226
 
6227
+ #: app/modules/weather/details.php:49 app/modules/weather/details.php:51
6228
  msgid " °C"
6229
  msgstr ""
6230
 
6231
+ #: app/modules/weather/details.php:49 app/modules/weather/details.php:53
6232
+ msgid " °F"
6233
+ msgstr ""
6234
+
6235
+ #: app/modules/weather/details.php:60
6236
+ msgid "°Imperial"
6237
  msgstr ""
6238
 
6239
+ #: app/modules/weather/details.php:60
6240
+ msgid "°Metric"
6241
+ msgstr ""
6242
+
6243
+ #: app/modules/weather/details.php:66
6244
  msgid " KPH"
6245
  msgstr ""
6246
 
6247
+ #: app/modules/weather/details.php:66
6248
+ msgid " MPH"
6249
+ msgstr ""
6250
+
6251
+ #: app/modules/weather/details.php:66
6252
+ msgid "Wind"
6253
+ msgstr ""
6254
+
6255
+ #: app/modules/weather/details.php:70
6256
  msgid "Humidity"
6257
  msgstr ""
6258
 
6259
+ #: app/modules/weather/details.php:70
6260
  msgid " %"
6261
  msgstr ""
6262
 
6263
+ #: app/modules/weather/details.php:74
6264
+ msgid " KM"
6265
  msgstr ""
6266
 
6267
+ #: app/modules/weather/details.php:74
6268
+ msgid " Miles"
6269
+ msgstr ""
6270
+
6271
+ #: app/modules/weather/details.php:74
6272
+ msgid "Visibility"
6273
  msgstr ""
6274
 
6275
  #: app/skins/agenda/tpl.php:65 app/skins/agenda/tpl.php:69
6276
  #: app/skins/carousel/tpl.php:45 app/skins/grid/tpl.php:55
6277
  #: app/skins/grid/tpl.php:59 app/skins/list/tpl.php:60
6278
+ #: app/skins/list/tpl.php:64 app/skins/masonry/tpl.php:61
6279
+ #: app/skins/masonry/tpl.php:65 app/skins/slider/tpl.php:43
6280
  msgid "No event found!"
6281
  msgstr ""
6282
 
6283
  #: app/skins/agenda/tpl.php:74 app/skins/grid/tpl.php:64
6284
+ #: app/skins/list/tpl.php:69 app/skins/masonry/tpl.php:70
6285
+ #: app/skins/yearly_view/render.php:121
6286
  msgid "Load More"
6287
  msgstr ""
6288
 
6290
  msgid "Available Spot(s):"
6291
  msgstr ""
6292
 
6293
+ #: app/skins/carousel/render.php:183 app/skins/countdown/tpl.php:157
 
 
 
 
6294
  #: app/skins/countdown/tpl.php:201 app/skins/cover/tpl.php:101
6295
  #: app/skins/list/render.php:120
6296
  msgid "EVENT DETAIL"
6297
  msgstr ""
6298
 
6299
+ #: app/skins/carousel/render.php:195
6300
+ msgid "View All Events"
6301
+ msgstr ""
6302
+
6303
  #: app/skins/countdown/tpl.php:119 app/skins/countdown/tpl.php:163
6304
  #: app/skins/countdown/tpl.php:208
6305
  #, php-format
6318
  msgid "List"
6319
  msgstr ""
6320
 
6321
+ #: app/skins/masonry.php:241
6322
  msgid "All"
6323
  msgstr ""
6324
 
6346
  msgid "Sold out!"
6347
  msgstr ""
6348
 
6349
+ #: app/skins/single.php:654 app/skins/single.php:709
6350
  #: app/skins/single/default.php:204 app/skins/single/default.php:415
6351
  #: app/skins/single/m1.php:100 app/skins/single/m2.php:32
6352
  #: app/skins/single/modern.php:41
6353
  msgid "Phone"
6354
  msgstr ""
6355
 
6356
+ #: app/skins/single.php:668 app/skins/single.php:723
6357
  #: app/skins/single/default.php:218 app/skins/single/default.php:429
6358
  #: app/skins/single/m1.php:114 app/skins/single/m2.php:46
6359
  #: app/skins/single/modern.php:55
6360
  msgid "Website"
6361
  msgstr ""
6362
 
6363
+ #: app/skins/single.php:793
6364
  msgid "Speakers:"
6365
  msgstr ""
6366
 
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-07-03 09:29+0430\n"
8
- "PO-Revision-Date: 2019-07-03 09:29+0430\n"
9
  "Last-Translator: \n"
10
  "Language-Team: \n"
11
  "Language: es\n"
@@ -21,7 +21,7 @@ msgstr ""
21
  msgid "Modern Events Calendar"
22
  msgstr "Modern Events Calendar"
23
 
24
- #: app/addons/KC.php:70 app/addons/VC.php:64 app/features/mec/styling.php:286
25
  msgid "Content"
26
  msgstr "Contenido"
27
 
@@ -34,6 +34,19 @@ msgstr "Shortcode"
34
  msgid "Select from predefined shortcodes"
35
  msgstr "Seleccionar desde shortcodes predefinidos"
36
 
 
 
 
 
 
 
 
 
 
 
 
 
 
37
  #: app/addons/elementor/shortcode.php:34
38
  msgid "Modern Events Calendar (MEC)"
39
  msgstr "Modern Events Calendar (MEC)"
@@ -47,7 +60,7 @@ msgid "Select Type"
47
  msgstr "Seleccionar tipo"
48
 
49
  #: app/features/colors.php:50 app/features/fes/form.php:794
50
- #: app/features/mec/settings.php:785
51
  msgid "Event Color"
52
  msgstr "Color del evento"
53
 
@@ -55,20 +68,20 @@ msgstr "Color del evento"
55
  #: app/features/mec/booking.php:33 app/features/mec/dashboard.php:108
56
  #: app/features/mec/gateways.php:24 app/features/mec/ie.php:20
57
  #: app/features/mec/messages.php:24 app/features/mec/modules.php:31
58
- #: app/features/mec/notifications.php:23 app/features/mec/regform.php:60
59
  #: app/features/mec/settings.php:44 app/features/mec/single.php:23
60
  #: app/features/mec/styles.php:24 app/features/mec/styling.php:46
61
  #: app/features/mec/support-page.php:168 app/features/mec/support.php:20
62
  msgid "Settings"
63
  msgstr "Ajustes"
64
 
65
- #: app/features/contextual.php:62 app/features/events.php:2250
66
- #: app/features/mec/booking.php:146 app/features/mec/gateways.php:111
67
- #: app/features/mec/ie.php:107 app/features/mec/messages.php:111
68
- #: app/features/mec/modules.php:173 app/features/mec/notifications.php:110
69
- #: app/features/mec/regform.php:146 app/features/mec/regform.php:215
70
- #: app/features/mec/settings.php:178 app/features/mec/single.php:139
71
- #: app/features/mec/styles.php:111 app/features/mec/styling.php:133
72
  #: app/features/mec/support.php:29
73
  msgid "Booking Form"
74
  msgstr "Formulario de Reservas"
@@ -88,13 +101,13 @@ msgstr ""
88
  "www.youtube.com/embed/YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></"
89
  "iframe>"
90
 
91
- #: app/features/contextual.php:70 app/features/mec/booking.php:153
92
- #: app/features/mec/gateways.php:118 app/features/mec/gateways.php:181
93
- #: app/features/mec/ie.php:114 app/features/mec/messages.php:118
94
- #: app/features/mec/modules.php:180 app/features/mec/notifications.php:117
95
- #: app/features/mec/regform.php:153 app/features/mec/settings.php:185
96
- #: app/features/mec/single.php:146 app/features/mec/styles.php:118
97
- #: app/features/mec/styling.php:140 app/features/mec/support.php:36
98
  msgid "Payment Gateways"
99
  msgstr "Pasarelas de pago"
100
 
@@ -108,12 +121,12 @@ msgstr ""
108
  "height=\"300\" src=\"https://www.youtube.com/embed/Hpg4chWlxoQ\" frameborder="
109
  "\"0\" allowfullscreen></iframe>"
110
 
111
- #: app/features/contextual.php:77 app/features/mec/booking.php:162
112
- #: app/features/mec/gateways.php:127 app/features/mec/ie.php:123
113
- #: app/features/mec/messages.php:127 app/features/mec/modules.php:189
114
- #: app/features/mec/notifications.php:129 app/features/mec/regform.php:161
115
- #: app/features/mec/settings.php:194 app/features/mec/single.php:155
116
- #: app/features/mec/styles.php:127 app/features/mec/styling.php:149
117
  #: app/features/mec/support.php:45
118
  msgid "Notifications"
119
  msgstr "Avisos"
@@ -196,8 +209,8 @@ msgstr ""
196
  #: app/features/contextual.php:117 app/features/mec/booking.php:37
197
  #: app/features/mec/gateways.php:28 app/features/mec/ie.php:24
198
  #: app/features/mec/messages.php:28 app/features/mec/modules.php:35
199
- #: app/features/mec/notifications.php:27 app/features/mec/regform.php:64
200
- #: app/features/mec/settings.php:51 app/features/mec/settings.php:252
201
  #: app/features/mec/single.php:27 app/features/mec/styles.php:28
202
  #: app/features/mec/styling.php:50
203
  msgid "General Options"
@@ -206,8 +219,8 @@ msgstr "Opciones generales"
206
  #: app/features/contextual.php:139 app/features/mec/booking.php:39
207
  #: app/features/mec/gateways.php:30 app/features/mec/ie.php:26
208
  #: app/features/mec/messages.php:30 app/features/mec/modules.php:37
209
- #: app/features/mec/notifications.php:29 app/features/mec/regform.php:66
210
- #: app/features/mec/settings.php:63 app/features/mec/settings.php:569
211
  #: app/features/mec/single.php:29 app/features/mec/styles.php:30
212
  #: app/features/mec/styling.php:52
213
  msgid "Slugs/Permalinks"
@@ -220,50 +233,50 @@ msgstr "Detalles del Evento/Página de Evento Único"
220
  #: app/features/contextual.php:166 app/features/mec/booking.php:40
221
  #: app/features/mec/gateways.php:31 app/features/mec/ie.php:27
222
  #: app/features/mec/messages.php:31 app/features/mec/modules.php:38
223
- #: app/features/mec/notifications.php:30 app/features/mec/regform.php:67
224
- #: app/features/mec/settings.php:69 app/features/mec/settings.php:601
225
  #: app/features/mec/single.php:30 app/features/mec/styles.php:31
226
  #: app/features/mec/styling.php:53
227
  msgid "Currency Options"
228
  msgstr "Opciones de moneda"
229
 
230
- #: app/features/contextual.php:182 app/features/mec/booking.php:124
231
- #: app/features/mec/gateways.php:89 app/features/mec/ie.php:85
232
- #: app/features/mec/messages.php:89 app/features/mec/modules.php:109
233
- #: app/features/mec/modules.php:264 app/features/mec/modules.php:282
234
- #: app/features/mec/notifications.php:88 app/features/mec/regform.php:125
235
- #: app/features/mec/settings.php:156 app/features/mec/single.php:117
236
- #: app/features/mec/styles.php:89 app/features/mec/styling.php:111
237
  msgid "Google Maps Options"
238
  msgstr "Opciones de Google Maps"
239
 
240
  #: app/features/contextual.php:244 app/features/mec/booking.php:41
241
  #: app/features/mec/gateways.php:32 app/features/mec/ie.php:28
242
  #: app/features/mec/messages.php:32 app/features/mec/modules.php:39
243
- #: app/features/mec/notifications.php:31 app/features/mec/regform.php:68
244
- #: app/features/mec/settings.php:75 app/features/mec/settings.php:658
245
  #: app/features/mec/single.php:31 app/features/mec/styles.php:32
246
  #: app/features/mec/styling.php:54
247
  msgid "Google Recaptcha Options"
248
  msgstr "Opciones de Google Recaptcha"
249
 
250
- #: app/features/contextual.php:258 app/features/mec/booking.php:60
251
- #: app/features/mec/gateways.php:51 app/features/mec/ie.php:47
252
- #: app/features/mec/messages.php:51 app/features/mec/modules.php:58
253
- #: app/features/mec/notifications.php:50 app/features/mec/regform.php:87
254
- #: app/features/mec/settings.php:118 app/features/mec/single.php:62
255
- #: app/features/mec/single.php:310 app/features/mec/styles.php:51
256
- #: app/features/mec/styling.php:73
257
  msgid "Countdown Options"
258
  msgstr "Opciones de cuenta atrás"
259
 
260
- #: app/features/contextual.php:268 app/features/mec/booking.php:132
261
- #: app/features/mec/gateways.php:97 app/features/mec/ie.php:93
262
- #: app/features/mec/messages.php:97 app/features/mec/modules.php:145
263
- #: app/features/mec/modules.php:448 app/features/mec/notifications.php:96
264
- #: app/features/mec/regform.php:133 app/features/mec/settings.php:164
265
- #: app/features/mec/single.php:125 app/features/mec/styles.php:97
266
- #: app/features/mec/styling.php:119
267
  msgid "Social Networks"
268
  msgstr "Redes Sociales"
269
 
@@ -274,72 +287,72 @@ msgstr "Módulo de Siguiente Evento"
274
  #: app/features/contextual.php:286 app/features/mec/booking.php:42
275
  #: app/features/mec/gateways.php:33 app/features/mec/ie.php:29
276
  #: app/features/mec/messages.php:33 app/features/mec/modules.php:40
277
- #: app/features/mec/notifications.php:32 app/features/mec/regform.php:69
278
- #: app/features/mec/settings.php:81 app/features/mec/settings.php:694
279
  #: app/features/mec/single.php:32 app/features/mec/styles.php:33
280
  #: app/features/mec/styling.php:55
281
  msgid "Frontend Event Submission"
282
  msgstr "Presentación del evento Frontend"
283
 
284
- #: app/features/contextual.php:298 app/features/events.php:1118
285
- #: app/features/mec/booking.php:61 app/features/mec/gateways.php:52
286
- #: app/features/mec/ie.php:48 app/features/mec/messages.php:52
287
- #: app/features/mec/modules.php:59 app/features/mec/notifications.php:51
288
- #: app/features/mec/regform.php:88 app/features/mec/settings.php:119
289
- #: app/features/mec/single.php:68 app/features/mec/styles.php:52
290
- #: app/features/mec/styling.php:74
291
  msgid "Exceptional Days"
292
  msgstr "Días excepcionales"
293
 
294
- #: app/features/contextual.php:308 app/features/events.php:284
295
- #: app/features/mec/booking.php:77 app/features/mec/booking.php:84
296
- #: app/features/mec/booking.php:167 app/features/mec/booking.php:219
297
- #: app/features/mec/gateways.php:64 app/features/mec/gateways.php:68
298
- #: app/features/mec/gateways.php:132 app/features/mec/ie.php:60
299
- #: app/features/mec/ie.php:64 app/features/mec/ie.php:128
300
- #: app/features/mec/messages.php:64 app/features/mec/messages.php:68
301
- #: app/features/mec/messages.php:132 app/features/mec/modules.php:71
302
- #: app/features/mec/modules.php:75 app/features/mec/modules.php:194
303
- #: app/features/mec/notifications.php:63 app/features/mec/notifications.php:67
304
- #: app/features/mec/notifications.php:136
305
- #: app/features/mec/notifications.php:225 app/features/mec/regform.php:100
306
- #: app/features/mec/regform.php:104 app/features/mec/regform.php:166
307
- #: app/features/mec/settings.php:131 app/features/mec/settings.php:135
308
- #: app/features/mec/settings.php:199 app/features/mec/single.php:92
309
- #: app/features/mec/single.php:96 app/features/mec/single.php:160
310
- #: app/features/mec/styles.php:64 app/features/mec/styles.php:68
311
- #: app/features/mec/styles.php:132 app/features/mec/styling.php:86
312
- #: app/features/mec/styling.php:90 app/features/mec/styling.php:154
313
  msgid "Booking"
314
  msgstr "Reserva"
315
 
316
- #: app/features/contextual.php:318 app/features/mec/booking.php:92
317
- #: app/features/mec/booking.php:330 app/features/mec/gateways.php:70
318
- #: app/features/mec/ie.php:66 app/features/mec/messages.php:70
319
- #: app/features/mec/modules.php:77 app/features/mec/notifications.php:69
320
- #: app/features/mec/regform.php:106 app/features/mec/settings.php:137
321
- #: app/features/mec/single.php:98 app/features/mec/styles.php:70
322
- #: app/features/mec/styling.php:92
323
  msgid "Coupons"
324
  msgstr "Cupones"
325
 
326
- #: app/features/contextual.php:326 app/features/mec/booking.php:135
327
- #: app/features/mec/gateways.php:100 app/features/mec/ie.php:96
328
- #: app/features/mec/messages.php:100 app/features/mec/modules.php:159
329
- #: app/features/mec/modules.php:509 app/features/mec/notifications.php:99
330
- #: app/features/mec/regform.php:136 app/features/mec/settings.php:167
331
- #: app/features/mec/single.php:128 app/features/mec/styles.php:100
332
- #: app/features/mec/styling.php:122
333
  msgid "BuddyPress Integration"
334
  msgstr "Integración de BuddyPress"
335
 
336
- #: app/features/contextual.php:334 app/features/mec/booking.php:45
337
- #: app/features/mec/gateways.php:36 app/features/mec/ie.php:32
338
- #: app/features/mec/messages.php:36 app/features/mec/modules.php:43
339
- #: app/features/mec/notifications.php:35 app/features/mec/regform.php:72
340
- #: app/features/mec/settings.php:95 app/features/mec/settings.php:879
341
- #: app/features/mec/single.php:35 app/features/mec/styles.php:36
342
- #: app/features/mec/styling.php:58
343
  msgid "Mailchimp Integration"
344
  msgstr "Integración de MailChimp"
345
 
@@ -348,15 +361,15 @@ msgid "MEC Activation"
348
  msgstr "Activación MEC"
349
 
350
  #: app/features/events.php:137 app/features/ix/export.php:34
351
- #: app/features/mec/dashboard.php:188 app/skins/daily_view/tpl.php:79
352
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
353
  msgid "Events"
354
  msgstr "Eventos"
355
 
356
  #: app/features/events.php:138
357
- #: app/features/mec/meta_boxes/display_options.php:867
358
- #: app/features/mec/meta_boxes/display_options.php:923
359
- #: app/features/mec/meta_boxes/display_options.php:958
360
  #: app/features/profile/profile.php:28 app/skins/daily_view/tpl.php:80
361
  #: app/skins/monthly_view/tpl.php:71 app/skins/yearly_view/tpl.php:69
362
  msgid "Event"
@@ -394,16 +407,17 @@ msgstr "No hay eventos en la papelera"
394
  #: app/features/events.php:162
395
  #: app/features/mec/meta_boxes/display_options.php:798
396
  #: app/features/mec/meta_boxes/search_form.php:31
397
- #: app/features/mec/meta_boxes/search_form.php:92
398
- #: app/features/mec/meta_boxes/search_form.php:153
399
- #: app/features/mec/meta_boxes/search_form.php:214
400
- #: app/features/mec/meta_boxes/search_form.php:275
401
- #: app/features/mec/meta_boxes/search_form.php:336
402
- #: app/features/mec/meta_boxes/search_form.php:397
403
- #: app/features/mec/meta_boxes/search_form.php:451
404
- #: app/features/mec/meta_boxes/search_form.php:512
405
- #: app/features/mec/meta_boxes/search_form.php:573 app/libraries/main.php:4479
406
- #: app/libraries/skins.php:781 app/skins/single.php:410
 
407
  #: app/skins/single/default.php:169 app/skins/single/default.php:380
408
  #: app/skins/single/m1.php:170 app/skins/single/m2.php:102
409
  #: app/skins/single/modern.php:110
@@ -412,7 +426,7 @@ msgstr "Categoría"
412
 
413
  #: app/features/events.php:163 app/features/fes/form.php:745
414
  #: app/features/mec.php:332 app/features/mec/meta_boxes/filter.php:70
415
- #: app/libraries/main.php:4478
416
  msgid "Categories"
417
  msgstr "Categorías"
418
 
@@ -484,30 +498,30 @@ msgstr "Seleccionar icono"
484
  msgid "Event Details"
485
  msgstr "Detalle de evento"
486
 
487
- #: app/features/events.php:321 app/features/events.php:3157
488
- #: app/features/events.php:3199 app/features/fes/form.php:706
489
  #: app/features/ix.php:2740 app/features/ix.php:2781
490
- #: app/features/mec/settings.php:761 app/libraries/main.php:4511
491
  #: app/widgets/single.php:103
492
  msgid "Event Cost"
493
  msgstr "Coste del evento"
494
 
495
- #: app/features/events.php:325 app/features/fes/form.php:709
496
- #: app/libraries/main.php:4512 app/skins/single.php:433
497
  #: app/skins/single/default.php:103 app/skins/single/default.php:314
498
  #: app/skins/single/m1.php:49 app/skins/single/modern.php:199
499
  msgid "Cost"
500
  msgstr "Coste"
501
 
502
- #: app/features/events.php:423
503
  msgid "Note for reviewer"
504
  msgstr "Nota para el encargado"
505
 
506
- #: app/features/events.php:430
507
  msgid "Guest Data"
508
  msgstr "Datos del invitado"
509
 
510
- #: app/features/events.php:431 app/features/events.php:2232
511
  #: app/features/fes/form.php:668 app/features/labels.php:177
512
  #: app/features/mec/regform.php:27 app/features/organizers.php:274
513
  #: app/features/profile/profile.php:90 app/libraries/notifications.php:673
@@ -515,31 +529,31 @@ msgstr "Datos del invitado"
515
  msgid "Name"
516
  msgstr "Nombre"
517
 
518
- #: app/features/events.php:432 app/features/events.php:2243
519
- #: app/features/events.php:2321 app/features/fes/form.php:664
520
- #: app/features/mec/regform.php:38 app/features/mec/regform.php:267
521
  #: app/features/organizers.php:110 app/features/organizers.php:150
522
  #: app/features/profile/profile.php:93 app/features/speakers.php:120
523
- #: app/features/speakers.php:180 app/libraries/main.php:1142
524
- #: app/libraries/main.php:1208 app/libraries/main.php:2247
525
  #: app/libraries/notifications.php:674 app/modules/booking/steps/form.php:43
526
  #: app/modules/booking/steps/form.php:80 app/skins/single.php:661
527
- #: app/skins/single.php:715 app/skins/single/default.php:211
528
  #: app/skins/single/default.php:422 app/skins/single/m1.php:107
529
  #: app/skins/single/m2.php:39 app/skins/single/modern.php:48
530
  msgid "Email"
531
  msgstr "Correo electrónico"
532
 
533
- #: app/features/events.php:436 app/features/fes/form.php:232
534
  msgid "Date and Time"
535
  msgstr "Día y hora"
536
 
537
- #: app/features/events.php:440 app/features/events.php:446
538
- #: app/features/events.php:2975 app/features/events.php:3157
539
- #: app/features/events.php:3199 app/features/fes/form.php:236
540
  #: app/features/fes/form.php:240 app/features/ix.php:2740
541
  #: app/features/ix.php:2781 app/features/ix/import_g_calendar.php:38
542
- #: app/features/mec/dashboard.php:332
543
  #: app/features/mec/meta_boxes/display_options.php:42
544
  #: app/features/mec/meta_boxes/display_options.php:169
545
  #: app/features/mec/meta_boxes/display_options.php:307
@@ -551,52 +565,52 @@ msgstr "Día y hora"
551
  #: app/features/mec/meta_boxes/display_options.php:654
552
  #: app/features/mec/meta_boxes/display_options.php:700
553
  #: app/features/mec/meta_boxes/display_options.php:766
554
- #: app/features/mec/meta_boxes/display_options.php:981
555
- #: app/features/mec/meta_boxes/display_options.php:1068
556
  msgid "Start Date"
557
  msgstr "Día de inicio"
558
 
559
- #: app/features/events.php:518 app/features/events.php:610
560
- #: app/features/events.php:1586 app/features/events.php:1628
561
- #: app/features/events.php:1795 app/features/events.php:1819
562
  #: app/features/fes/form.php:268 app/features/fes/form.php:308
563
  msgid "AM"
564
  msgstr "AM"
565
 
566
- #: app/features/events.php:525 app/features/events.php:617
567
- #: app/features/events.php:1593 app/features/events.php:1635
568
- #: app/features/events.php:1796 app/features/events.php:1820
569
  #: app/features/fes/form.php:269 app/features/fes/form.php:309
570
  msgid "PM"
571
  msgstr "PM"
572
 
573
- #: app/features/events.php:532 app/features/events.php:537
574
- #: app/features/events.php:2976 app/features/events.php:3157
575
- #: app/features/events.php:3199 app/features/fes/form.php:276
576
  #: app/features/fes/form.php:280 app/features/ix.php:2740
577
  #: app/features/ix.php:2781 app/features/ix/import_g_calendar.php:44
578
- #: app/features/mec/dashboard.php:333
579
  msgid "End Date"
580
  msgstr "Día final"
581
 
582
- #: app/features/events.php:631 app/features/fes/form.php:315
583
  msgid "All Day Event"
584
  msgstr "Evento de todo el día"
585
 
586
- #: app/features/events.php:641 app/features/fes/form.php:318
587
  msgid "Hide Event Time"
588
  msgstr "Ocultar hora del evento"
589
 
590
- #: app/features/events.php:651 app/features/fes/form.php:321
591
  msgid "Hide Event End Time"
592
  msgstr "Oculta la hora de finalización del evento"
593
 
594
- #: app/features/events.php:656 app/features/events.php:660
595
  #: app/features/fes/form.php:325
596
  msgid "Time Comment"
597
  msgstr "Tiempo para comentar"
598
 
599
- #: app/features/events.php:661 app/features/fes/form.php:326
600
  #, fuzzy
601
  #| msgid ""
602
  #| "It shows next to event time on calendar. You can insert Timezone etc. in "
@@ -608,20 +622,20 @@ msgstr ""
608
  "Muestra la hora del siguiente evento en el calendario. Puedes insertar Zona "
609
  "horaria, etc en este campo."
610
 
611
- #: app/features/events.php:663 app/features/events.php:795
612
- #: app/features/events.php:1094 app/features/events.php:1137
613
- #: app/features/events.php:1436 app/features/events.php:1503
614
- #: app/features/events.php:1655 app/features/events.php:1670
615
- #: app/features/events.php:1837 app/features/events.php:1850
616
- #: app/features/events.php:1980 app/features/events.php:2016
617
- #: app/features/events.php:2114 app/features/events.php:2129
618
- #: app/features/events.php:2159 app/features/events.php:2172
619
  #: app/features/fes/form.php:630 app/features/locations.php:298
620
- #: app/features/mec/booking.php:239 app/features/mec/booking.php:263
621
- #: app/features/mec/booking.php:279 app/features/mec/booking.php:375
622
- #: app/features/mec/booking.php:404 app/features/mec/booking.php:452
623
- #: app/features/mec/booking.php:462 app/features/mec/booking.php:484
624
- #: app/features/mec/booking.php:494 app/features/mec/dashboard.php:71
625
  #: app/features/mec/meta_boxes/display_options.php:60
626
  #: app/features/mec/meta_boxes/display_options.php:73
627
  #: app/features/mec/meta_boxes/display_options.php:86
@@ -637,45 +651,45 @@ msgstr ""
637
  #: app/features/mec/meta_boxes/display_options.php:326
638
  #: app/features/mec/meta_boxes/display_options.php:502
639
  #: app/features/mec/meta_boxes/display_options.php:785
640
- #: app/features/mec/meta_boxes/display_options.php:838
641
- #: app/features/mec/meta_boxes/display_options.php:850
642
- #: app/features/mec/meta_boxes/display_options.php:861
643
- #: app/features/mec/meta_boxes/display_options.php:893
644
- #: app/features/mec/meta_boxes/display_options.php:904
645
- #: app/features/mec/meta_boxes/display_options.php:917
646
- #: app/features/mec/meta_boxes/display_options.php:952
647
- #: app/features/mec/meta_boxes/display_options.php:1001
648
- #: app/features/mec/meta_boxes/display_options.php:1012
649
- #: app/features/mec/meta_boxes/display_options.php:1023
650
- #: app/features/mec/meta_boxes/display_options.php:1088
651
- #: app/features/mec/meta_boxes/display_options.php:1101
652
- #: app/features/mec/meta_boxes/display_options.php:1114
653
- #: app/features/mec/meta_boxes/display_options.php:1127
654
- #: app/features/mec/meta_boxes/display_options.php:1140
655
- #: app/features/mec/modules.php:283 app/features/mec/modules.php:300
656
- #: app/features/mec/modules.php:335 app/features/mec/modules.php:351
657
- #: app/features/mec/modules.php:497 app/features/mec/notifications.php:244
658
- #: app/features/mec/notifications.php:301
659
- #: app/features/mec/notifications.php:353
660
- #: app/features/mec/notifications.php:412
661
- #: app/features/mec/notifications.php:480
662
- #: app/features/mec/notifications.php:543
663
- #: app/features/mec/notifications.php:554
664
- #: app/features/mec/notifications.php:616 app/features/mec/settings.php:266
665
- #: app/features/mec/settings.php:285 app/features/mec/settings.php:312
666
- #: app/features/mec/settings.php:332 app/features/mec/settings.php:353
667
- #: app/features/mec/settings.php:373 app/features/mec/settings.php:450
668
- #: app/features/mec/settings.php:524 app/features/mec/settings.php:541
669
- #: app/features/mec/settings.php:558 app/features/mec/settings.php:577
670
- #: app/features/mec/settings.php:591 app/features/mec/settings.php:619
671
- #: app/features/mec/settings.php:706 app/features/mec/settings.php:844
672
- #: app/features/mec/settings.php:861 app/features/mec/settings.php:894
673
- #: app/features/mec/settings.php:907 app/features/mec/settings.php:923
674
- #: app/features/mec/single.php:221 app/features/mec/single.php:237
675
- #: app/features/mec/single.php:256 app/features/mec/single.php:272
676
- #: app/features/mec/single.php:287 app/features/mec/single.php:301
677
- #: app/features/mec/single.php:339 app/features/mec/styling.php:356
678
- #: app/features/mec/styling.php:373 app/features/mec/styling.php:386
679
  #: app/features/organizers.php:267 app/skins/single.php:508
680
  #: app/skins/single/default.php:118 app/skins/single/default.php:329
681
  #: app/skins/single/m1.php:192 app/skins/single/m2.php:125
@@ -683,195 +697,195 @@ msgstr ""
683
  msgid "Read More"
684
  msgstr "Leer más"
685
 
686
- #: app/features/events.php:679 app/features/fes/form.php:332
687
  msgid "Event Repeating"
688
  msgstr "Repetir el evento"
689
 
690
- #: app/features/events.php:683 app/features/fes/form.php:336
691
  msgid "Repeats"
692
  msgstr "Repeticiones"
693
 
694
- #: app/features/events.php:691 app/features/fes/form.php:338
695
- #: app/features/mec/dashboard.php:335 app/skins/full_calendar/tpl.php:103
696
  msgid "Daily"
697
  msgstr "Diariamente"
698
 
699
- #: app/features/events.php:698 app/features/fes/form.php:339
700
  msgid "Every Weekday"
701
  msgstr "Cada día de la semana"
702
 
703
- #: app/features/events.php:705 app/features/fes/form.php:340
704
  msgid "Every Weekend"
705
  msgstr "Cada fin de semana"
706
 
707
- #: app/features/events.php:712 app/features/fes/form.php:341
708
  msgid "Certain Weekdays"
709
  msgstr "Ciertos días de la semana"
710
 
711
- #: app/features/events.php:719 app/features/fes/form.php:342
712
  #: app/skins/full_calendar/tpl.php:102
713
  msgid "Weekly"
714
  msgstr "Semanal"
715
 
716
- #: app/features/events.php:726 app/features/fes/form.php:343
717
- #: app/features/mec/dashboard.php:336 app/skins/full_calendar/tpl.php:101
718
  msgid "Monthly"
719
  msgstr "Mensual"
720
 
721
- #: app/features/events.php:733 app/features/fes/form.php:344
722
- #: app/features/mec/dashboard.php:337 app/skins/full_calendar/tpl.php:100
723
  msgid "Yearly"
724
  msgstr "Anual"
725
 
726
- #: app/features/events.php:740 app/features/fes/form.php:345
727
  msgid "Custom Days"
728
  msgstr "Días personalizados"
729
 
730
- #: app/features/events.php:747 app/features/fes/form.php:346
731
  #, fuzzy
732
  #| msgid "Advanced Method"
733
  msgid "Advanced"
734
  msgstr "Método avanzado"
735
 
736
- #: app/features/events.php:752 app/features/fes/form.php:350
737
  msgid "Repeat Interval"
738
  msgstr "Intervalo de repetición"
739
 
740
- #: app/features/events.php:754 app/features/fes/form.php:351
741
  msgid "Repeat interval"
742
  msgstr "Intervalo de repetición"
743
 
744
- #: app/features/events.php:758 app/features/fes/form.php:354
745
  msgid "Week Days"
746
  msgstr "Días de semana"
747
 
748
- #: app/features/events.php:760 app/features/fes/form.php:355
749
  #: app/features/mec/meta_boxes/display_options.php:730
750
  #: app/libraries/main.php:407
751
  msgid "Monday"
752
  msgstr "Lunes"
753
 
754
- #: app/features/events.php:763 app/features/fes/form.php:356
755
  #: app/features/mec/meta_boxes/display_options.php:731
756
  #: app/libraries/main.php:407
757
  msgid "Tuesday"
758
  msgstr "Martes"
759
 
760
- #: app/features/events.php:766 app/features/fes/form.php:357
761
  #: app/features/mec/meta_boxes/display_options.php:732
762
  #: app/libraries/main.php:407
763
  msgid "Wednesday"
764
  msgstr "Miércoles"
765
 
766
- #: app/features/events.php:769 app/features/fes/form.php:358
767
  #: app/features/mec/meta_boxes/display_options.php:733
768
  #: app/libraries/main.php:407
769
  msgid "Thursday"
770
  msgstr "Jueves"
771
 
772
- #: app/features/events.php:772 app/features/fes/form.php:359
773
  #: app/features/mec/meta_boxes/display_options.php:734
774
  #: app/libraries/main.php:407
775
  msgid "Friday"
776
  msgstr "Viernes"
777
 
778
- #: app/features/events.php:775 app/features/fes/form.php:360
779
  #: app/features/mec/meta_boxes/display_options.php:735
780
  #: app/libraries/main.php:407
781
  msgid "Saturday"
782
  msgstr "Sábado"
783
 
784
- #: app/features/events.php:778 app/features/fes/form.php:361
785
  #: app/features/mec/meta_boxes/display_options.php:729
786
  #: app/libraries/main.php:407
787
  msgid "Sunday"
788
  msgstr "Domingo"
789
 
790
- #: app/features/events.php:785 app/features/events.php:1718
791
- #: app/features/events.php:1746 app/features/events.php:1884
792
  #: app/features/fes/form.php:366 app/features/ix/import_f_calendar.php:42
793
  #: app/features/ix/import_g_calendar.php:51
794
  #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
795
  msgid "Start"
796
  msgstr "Inicio"
797
 
798
- #: app/features/events.php:787 app/features/events.php:1722
799
- #: app/features/events.php:1750 app/features/events.php:1888
800
  #: app/features/fes/form.php:367
801
  msgid "End"
802
  msgstr ""
803
 
804
- #: app/features/events.php:789 app/features/events.php:1131
805
- #: app/features/events.php:1242 app/features/events.php:1347
806
- #: app/features/events.php:1536 app/features/events.php:1701
807
- #: app/features/events.php:1873 app/features/events.php:1953
808
- #: app/features/events.php:2086 app/features/fes/form.php:368
809
  msgid "Add"
810
  msgstr "Añadir"
811
 
812
- #: app/features/events.php:792
813
  #, fuzzy
814
  #| msgid "Custom Days"
815
  msgid "Custom Days Repeating"
816
  msgstr "Días personalizados"
817
 
818
- #: app/featu
4
  msgstr ""
5
  "Project-Id-Version: Plugins - Modern Events Calendar Lite - Stable (latest "
6
  "release)\n"
7
+ "POT-Creation-Date: 2019-07-16 12:11+0430\n"
8
+ "PO-Revision-Date: 2019-07-16 12:13+0430\n"
9
  "Last-Translator: \n"
10
  "Language-Team: \n"
11
  "Language: es\n"
21
  msgid "Modern Events Calendar"
22
  msgstr "Modern Events Calendar"
23
 
24
+ #: app/addons/KC.php:70 app/addons/VC.php:64 app/features/mec/styling.php:287
25
  msgid "Content"
26
  msgstr "Contenido"
27
 
34
  msgid "Select from predefined shortcodes"
35
  msgstr "Seleccionar desde shortcodes predefinidos"
36
 
37
+ #: app/addons/divi/includes/modules/MECShortcodes/MECShortcodes.php:15
38
+ #: app/addons/divi/includes/modules/MECShortcodes/MECShortcodes.php:25
39
+ #, fuzzy
40
+ #| msgid "Shortcodes"
41
+ msgid "MEC Shortcodes"
42
+ msgstr "Shortcodes"
43
+
44
+ #: app/addons/divi/includes/modules/MECShortcodes/MECShortcodes.php:28
45
+ #, fuzzy
46
+ #| msgid "Insert your desired tags comma separated."
47
+ msgid "Input your desired shortcode_id here."
48
+ msgstr "Inserta las etiquetas que desees separadas con coma."
49
+
50
  #: app/addons/elementor/shortcode.php:34
51
  msgid "Modern Events Calendar (MEC)"
52
  msgstr "Modern Events Calendar (MEC)"
60
  msgstr "Seleccionar tipo"
61
 
62
  #: app/features/colors.php:50 app/features/fes/form.php:794
63
+ #: app/features/mec/settings.php:791
64
  msgid "Event Color"
65
  msgstr "Color del evento"
66
 
68
  #: app/features/mec/booking.php:33 app/features/mec/dashboard.php:108
69
  #: app/features/mec/gateways.php:24 app/features/mec/ie.php:20
70
  #: app/features/mec/messages.php:24 app/features/mec/modules.php:31
71
+ #: app/features/mec/notifications.php:23 app/features/mec/regform.php:61
72
  #: app/features/mec/settings.php:44 app/features/mec/single.php:23
73
  #: app/features/mec/styles.php:24 app/features/mec/styling.php:46
74
  #: app/features/mec/support-page.php:168 app/features/mec/support.php:20
75
  msgid "Settings"
76
  msgstr "Ajustes"
77
 
78
+ #: app/features/contextual.php:62 app/features/events.php:2251
79
+ #: app/features/mec/booking.php:147 app/features/mec/gateways.php:112
80
+ #: app/features/mec/ie.php:108 app/features/mec/messages.php:112
81
+ #: app/features/mec/modules.php:174 app/features/mec/notifications.php:111
82
+ #: app/features/mec/regform.php:148 app/features/mec/regform.php:217
83
+ #: app/features/mec/settings.php:184 app/features/mec/single.php:140
84
+ #: app/features/mec/styles.php:112 app/features/mec/styling.php:134
85
  #: app/features/mec/support.php:29
86
  msgid "Booking Form"
87
  msgstr "Formulario de Reservas"
101
  "www.youtube.com/embed/YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></"
102
  "iframe>"
103
 
104
+ #: app/features/contextual.php:70 app/features/mec/booking.php:154
105
+ #: app/features/mec/gateways.php:119 app/features/mec/gateways.php:182
106
+ #: app/features/mec/ie.php:115 app/features/mec/messages.php:119
107
+ #: app/features/mec/modules.php:181 app/features/mec/notifications.php:118
108
+ #: app/features/mec/regform.php:155 app/features/mec/settings.php:191
109
+ #: app/features/mec/single.php:147 app/features/mec/styles.php:119
110
+ #: app/features/mec/styling.php:141 app/features/mec/support.php:36
111
  msgid "Payment Gateways"
112
  msgstr "Pasarelas de pago"
113
 
121
  "height=\"300\" src=\"https://www.youtube.com/embed/Hpg4chWlxoQ\" frameborder="
122
  "\"0\" allowfullscreen></iframe>"
123
 
124
+ #: app/features/contextual.php:77 app/features/mec/booking.php:163
125
+ #: app/features/mec/gateways.php:128 app/features/mec/ie.php:124
126
+ #: app/features/mec/messages.php:128 app/features/mec/modules.php:190
127
+ #: app/features/mec/notifications.php:130 app/features/mec/regform.php:163
128
+ #: app/features/mec/settings.php:200 app/features/mec/single.php:156
129
+ #: app/features/mec/styles.php:128 app/features/mec/styling.php:150
130
  #: app/features/mec/support.php:45
131
  msgid "Notifications"
132
  msgstr "Avisos"
209
  #: app/features/contextual.php:117 app/features/mec/booking.php:37
210
  #: app/features/mec/gateways.php:28 app/features/mec/ie.php:24
211
  #: app/features/mec/messages.php:28 app/features/mec/modules.php:35
212
+ #: app/features/mec/notifications.php:27 app/features/mec/regform.php:65
213
+ #: app/features/mec/settings.php:51 app/features/mec/settings.php:258
214
  #: app/features/mec/single.php:27 app/features/mec/styles.php:28
215
  #: app/features/mec/styling.php:50
216
  msgid "General Options"
219
  #: app/features/contextual.php:139 app/features/mec/booking.php:39
220
  #: app/features/mec/gateways.php:30 app/features/mec/ie.php:26
221
  #: app/features/mec/messages.php:30 app/features/mec/modules.php:37
222
+ #: app/features/mec/notifications.php:29 app/features/mec/regform.php:67
223
+ #: app/features/mec/settings.php:63 app/features/mec/settings.php:575
224
  #: app/features/mec/single.php:29 app/features/mec/styles.php:30
225
  #: app/features/mec/styling.php:52
226
  msgid "Slugs/Permalinks"
233
  #: app/features/contextual.php:166 app/features/mec/booking.php:40
234
  #: app/features/mec/gateways.php:31 app/features/mec/ie.php:27
235
  #: app/features/mec/messages.php:31 app/features/mec/modules.php:38
236
+ #: app/features/mec/notifications.php:30 app/features/mec/regform.php:68
237
+ #: app/features/mec/settings.php:69 app/features/mec/settings.php:607
238
  #: app/features/mec/single.php:30 app/features/mec/styles.php:31
239
  #: app/features/mec/styling.php:53
240
  msgid "Currency Options"
241
  msgstr "Opciones de moneda"
242
 
243
+ #: app/features/contextual.php:182 app/features/mec/booking.php:125
244
+ #: app/features/mec/gateways.php:90 app/features/mec/ie.php:86
245
+ #: app/features/mec/messages.php:90 app/features/mec/modules.php:110
246
+ #: app/features/mec/modules.php:265 app/features/mec/modules.php:283
247
+ #: app/features/mec/notifications.php:89 app/features/mec/regform.php:127
248
+ #: app/features/mec/settings.php:162 app/features/mec/single.php:118
249
+ #: app/features/mec/styles.php:90 app/features/mec/styling.php:112
250
  msgid "Google Maps Options"
251
  msgstr "Opciones de Google Maps"
252
 
253
  #: app/features/contextual.php:244 app/features/mec/booking.php:41
254
  #: app/features/mec/gateways.php:32 app/features/mec/ie.php:28
255
  #: app/features/mec/messages.php:32 app/features/mec/modules.php:39
256
+ #: app/features/mec/notifications.php:31 app/features/mec/regform.php:69
257
+ #: app/features/mec/settings.php:75 app/features/mec/settings.php:664
258
  #: app/features/mec/single.php:31 app/features/mec/styles.php:32
259
  #: app/features/mec/styling.php:54
260
  msgid "Google Recaptcha Options"
261
  msgstr "Opciones de Google Recaptcha"
262
 
263
+ #: app/features/contextual.php:258 app/features/mec/booking.php:61
264
+ #: app/features/mec/gateways.php:52 app/features/mec/ie.php:48
265
+ #: app/features/mec/messages.php:52 app/features/mec/modules.php:59
266
+ #: app/features/mec/notifications.php:51 app/features/mec/regform.php:89
267
+ #: app/features/mec/settings.php:124 app/features/mec/single.php:63
268
+ #: app/features/mec/single.php:313 app/features/mec/styles.php:52
269
+ #: app/features/mec/styling.php:74
270
  msgid "Countdown Options"
271
  msgstr "Opciones de cuenta atrás"
272
 
273
+ #: app/features/contextual.php:268 app/features/mec/booking.php:133
274
+ #: app/features/mec/gateways.php:98 app/features/mec/ie.php:94
275
+ #: app/features/mec/messages.php:98 app/features/mec/modules.php:146
276
+ #: app/features/mec/modules.php:461 app/features/mec/notifications.php:97
277
+ #: app/features/mec/regform.php:135 app/features/mec/settings.php:170
278
+ #: app/features/mec/single.php:126 app/features/mec/styles.php:98
279
+ #: app/features/mec/styling.php:120
280
  msgid "Social Networks"
281
  msgstr "Redes Sociales"
282
 
287
  #: app/features/contextual.php:286 app/features/mec/booking.php:42
288
  #: app/features/mec/gateways.php:33 app/features/mec/ie.php:29
289
  #: app/features/mec/messages.php:33 app/features/mec/modules.php:40
290
+ #: app/features/mec/notifications.php:32 app/features/mec/regform.php:70
291
+ #: app/features/mec/settings.php:81 app/features/mec/settings.php:700
292
  #: app/features/mec/single.php:32 app/features/mec/styles.php:33
293
  #: app/features/mec/styling.php:55
294
  msgid "Frontend Event Submission"
295
  msgstr "Presentación del evento Frontend"
296
 
297
+ #: app/features/contextual.php:298 app/features/events.php:1119
298
+ #: app/features/mec/booking.php:62 app/features/mec/gateways.php:53
299
+ #: app/features/mec/ie.php:49 app/features/mec/messages.php:53
300
+ #: app/features/mec/modules.php:60 app/features/mec/notifications.php:52
301
+ #: app/features/mec/regform.php:90 app/features/mec/settings.php:125
302
+ #: app/features/mec/single.php:69 app/features/mec/styles.php:53
303
+ #: app/features/mec/styling.php:75
304
  msgid "Exceptional Days"
305
  msgstr "Días excepcionales"
306
 
307
+ #: app/features/contextual.php:308 app/features/events.php:285
308
+ #: app/features/mec/booking.php:78 app/features/mec/booking.php:85
309
+ #: app/features/mec/booking.php:168 app/features/mec/booking.php:220
310
+ #: app/features/mec/gateways.php:65 app/features/mec/gateways.php:69
311
+ #: app/features/mec/gateways.php:133 app/features/mec/ie.php:61
312
+ #: app/features/mec/ie.php:65 app/features/mec/ie.php:129
313
+ #: app/features/mec/messages.php:65 app/features/mec/messages.php:69
314
+ #: app/features/mec/messages.php:133 app/features/mec/modules.php:72
315
+ #: app/features/mec/modules.php:76 app/features/mec/modules.php:195
316
+ #: app/features/mec/notifications.php:64 app/features/mec/notifications.php:68
317
+ #: app/features/mec/notifications.php:137
318
+ #: app/features/mec/notifications.php:226 app/features/mec/regform.php:102
319
+ #: app/features/mec/regform.php:106 app/features/mec/regform.php:168
320
+ #: app/features/mec/settings.php:137 app/features/mec/settings.php:141
321
+ #: app/features/mec/settings.php:205 app/features/mec/single.php:93
322
+ #: app/features/mec/single.php:97 app/features/mec/single.php:161
323
+ #: app/features/mec/styles.php:65 app/features/mec/styles.php:69
324
+ #: app/features/mec/styles.php:133 app/features/mec/styling.php:87
325
+ #: app/features/mec/styling.php:91 app/features/mec/styling.php:155
326
  msgid "Booking"
327
  msgstr "Reserva"
328
 
329
+ #: app/features/contextual.php:318 app/features/mec/booking.php:93
330
+ #: app/features/mec/booking.php:355 app/features/mec/gateways.php:71
331
+ #: app/features/mec/ie.php:67 app/features/mec/messages.php:71
332
+ #: app/features/mec/modules.php:78 app/features/mec/notifications.php:70
333
+ #: app/features/mec/regform.php:108 app/features/mec/settings.php:143
334
+ #: app/features/mec/single.php:99 app/features/mec/styles.php:71
335
+ #: app/features/mec/styling.php:93
336
  msgid "Coupons"
337
  msgstr "Cupones"
338
 
339
+ #: app/features/contextual.php:326 app/features/mec/booking.php:136
340
+ #: app/features/mec/gateways.php:101 app/features/mec/ie.php:97
341
+ #: app/features/mec/messages.php:101 app/features/mec/modules.php:160
342
+ #: app/features/mec/modules.php:522 app/features/mec/notifications.php:100
343
+ #: app/features/mec/regform.php:138 app/features/mec/settings.php:173
344
+ #: app/features/mec/single.php:129 app/features/mec/styles.php:101
345
+ #: app/features/mec/styling.php:123
346
  msgid "BuddyPress Integration"
347
  msgstr "Integración de BuddyPress"
348
 
349
+ #: app/features/contextual.php:334 app/features/mec/booking.php:46
350
+ #: app/features/mec/gateways.php:37 app/features/mec/ie.php:33
351
+ #: app/features/mec/messages.php:37 app/features/mec/modules.php:44
352
+ #: app/features/mec/notifications.php:36 app/features/mec/regform.php:74
353
+ #: app/features/mec/settings.php:101 app/features/mec/settings.php:934
354
+ #: app/features/mec/single.php:36 app/features/mec/styles.php:37
355
+ #: app/features/mec/styling.php:59
356
  msgid "Mailchimp Integration"
357
  msgstr "Integración de MailChimp"
358
 
361
  msgstr "Activación MEC"
362
 
363
  #: app/features/events.php:137 app/features/ix/export.php:34
364
+ #: app/features/mec/dashboard.php:191 app/skins/daily_view/tpl.php:79
365
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
366
  msgid "Events"
367
  msgstr "Eventos"
368
 
369
  #: app/features/events.php:138
370
+ #: app/features/mec/meta_boxes/display_options.php:887
371
+ #: app/features/mec/meta_boxes/display_options.php:943
372
+ #: app/features/mec/meta_boxes/display_options.php:978
373
  #: app/features/profile/profile.php:28 app/skins/daily_view/tpl.php:80
374
  #: app/skins/monthly_view/tpl.php:71 app/skins/yearly_view/tpl.php:69
375
  msgid "Event"
407
  #: app/features/events.php:162
408
  #: app/features/mec/meta_boxes/display_options.php:798
409
  #: app/features/mec/meta_boxes/search_form.php:31
410
+ #: app/features/mec/meta_boxes/search_form.php:93
411
+ #: app/features/mec/meta_boxes/search_form.php:154
412
+ #: app/features/mec/meta_boxes/search_form.php:215
413
+ #: app/features/mec/meta_boxes/search_form.php:276
414
+ #: app/features/mec/meta_boxes/search_form.php:337
415
+ #: app/features/mec/meta_boxes/search_form.php:398
416
+ #: app/features/mec/meta_boxes/search_form.php:452
417
+ #: app/features/mec/meta_boxes/search_form.php:513
418
+ #: app/features/mec/meta_boxes/search_form.php:574
419
+ #: app/features/mec/settings.php:889 app/libraries/main.php:4487
420
+ #: app/libraries/skins.php:805 app/skins/single.php:410
421
  #: app/skins/single/default.php:169 app/skins/single/default.php:380
422
  #: app/skins/single/m1.php:170 app/skins/single/m2.php:102
423
  #: app/skins/single/modern.php:110
426
 
427
  #: app/features/events.php:163 app/features/fes/form.php:745
428
  #: app/features/mec.php:332 app/features/mec/meta_boxes/filter.php:70
429
+ #: app/libraries/main.php:4486
430
  msgid "Categories"
431
  msgstr "Categorías"
432
 
498
  msgid "Event Details"
499
  msgstr "Detalle de evento"
500
 
501
+ #: app/features/events.php:322 app/features/events.php:3151
502
+ #: app/features/events.php:3193 app/features/fes/form.php:706
503
  #: app/features/ix.php:2740 app/features/ix.php:2781
504
+ #: app/features/mec/settings.php:767 app/libraries/main.php:4519
505
  #: app/widgets/single.php:103
506
  msgid "Event Cost"
507
  msgstr "Coste del evento"
508
 
509
+ #: app/features/events.php:326 app/features/fes/form.php:709
510
+ #: app/libraries/main.php:4520 app/skins/single.php:433
511
  #: app/skins/single/default.php:103 app/skins/single/default.php:314
512
  #: app/skins/single/m1.php:49 app/skins/single/modern.php:199
513
  msgid "Cost"
514
  msgstr "Coste"
515
 
516
+ #: app/features/events.php:424
517
  msgid "Note for reviewer"
518
  msgstr "Nota para el encargado"
519
 
520
+ #: app/features/events.php:431
521
  msgid "Guest Data"
522
  msgstr "Datos del invitado"
523
 
524
+ #: app/features/events.php:432 app/features/events.php:2233
525
  #: app/features/fes/form.php:668 app/features/labels.php:177
526
  #: app/features/mec/regform.php:27 app/features/organizers.php:274
527
  #: app/features/profile/profile.php:90 app/libraries/notifications.php:673
529
  msgid "Name"
530
  msgstr "Nombre"
531
 
532
+ #: app/features/events.php:433 app/features/events.php:2244
533
+ #: app/features/events.php:2322 app/features/fes/form.php:664
534
+ #: app/features/mec/regform.php:39 app/features/mec/regform.php:269
535
  #: app/features/organizers.php:110 app/features/organizers.php:150
536
  #: app/features/profile/profile.php:93 app/features/speakers.php:120
537
+ #: app/features/speakers.php:180 app/libraries/main.php:1149
538
+ #: app/libraries/main.php:1215 app/libraries/main.php:2261
539
  #: app/libraries/notifications.php:674 app/modules/booking/steps/form.php:43
540
  #: app/modules/booking/steps/form.php:80 app/skins/single.php:661
541
+ #: app/skins/single.php:716 app/skins/single/default.php:211
542
  #: app/skins/single/default.php:422 app/skins/single/m1.php:107
543
  #: app/skins/single/m2.php:39 app/skins/single/modern.php:48
544
  msgid "Email"
545
  msgstr "Correo electrónico"
546
 
547
+ #: app/features/events.php:437 app/features/fes/form.php:232
548
  msgid "Date and Time"
549
  msgstr "Día y hora"
550
 
551
+ #: app/features/events.php:441 app/features/events.php:447
552
+ #: app/features/events.php:2969 app/features/events.php:3151
553
+ #: app/features/events.php:3193 app/features/fes/form.php:236
554
  #: app/features/fes/form.php:240 app/features/ix.php:2740
555
  #: app/features/ix.php:2781 app/features/ix/import_g_calendar.php:38
556
+ #: app/features/mec/dashboard.php:335
557
  #: app/features/mec/meta_boxes/display_options.php:42
558
  #: app/features/mec/meta_boxes/display_options.php:169
559
  #: app/features/mec/meta_boxes/display_options.php:307
565
  #: app/features/mec/meta_boxes/display_options.php:654
566
  #: app/features/mec/meta_boxes/display_options.php:700
567
  #: app/features/mec/meta_boxes/display_options.php:766
568
+ #: app/features/mec/meta_boxes/display_options.php:1001
569
+ #: app/features/mec/meta_boxes/display_options.php:1088
570
  msgid "Start Date"
571
  msgstr "Día de inicio"
572
 
573
+ #: app/features/events.php:519 app/features/events.php:611
574
+ #: app/features/events.php:1587 app/features/events.php:1629
575
+ #: app/features/events.php:1796 app/features/events.php:1820
576
  #: app/features/fes/form.php:268 app/features/fes/form.php:308
577
  msgid "AM"
578
  msgstr "AM"
579
 
580
+ #: app/features/events.php:526 app/features/events.php:618
581
+ #: app/features/events.php:1594 app/features/events.php:1636
582
+ #: app/features/events.php:1797 app/features/events.php:1821
583
  #: app/features/fes/form.php:269 app/features/fes/form.php:309
584
  msgid "PM"
585
  msgstr "PM"
586
 
587
+ #: app/features/events.php:533 app/features/events.php:538
588
+ #: app/features/events.php:2970 app/features/events.php:3151
589
+ #: app/features/events.php:3193 app/features/fes/form.php:276
590
  #: app/features/fes/form.php:280 app/features/ix.php:2740
591
  #: app/features/ix.php:2781 app/features/ix/import_g_calendar.php:44
592
+ #: app/features/mec/dashboard.php:336
593
  msgid "End Date"
594
  msgstr "Día final"
595
 
596
+ #: app/features/events.php:632 app/features/fes/form.php:315
597
  msgid "All Day Event"
598
  msgstr "Evento de todo el día"
599
 
600
+ #: app/features/events.php:642 app/features/fes/form.php:318
601
  msgid "Hide Event Time"
602
  msgstr "Ocultar hora del evento"
603
 
604
+ #: app/features/events.php:652 app/features/fes/form.php:321
605
  msgid "Hide Event End Time"
606
  msgstr "Oculta la hora de finalización del evento"
607
 
608
+ #: app/features/events.php:657 app/features/events.php:661
609
  #: app/features/fes/form.php:325
610
  msgid "Time Comment"
611
  msgstr "Tiempo para comentar"
612
 
613
+ #: app/features/events.php:662 app/features/fes/form.php:326
614
  #, fuzzy
615
  #| msgid ""
616
  #| "It shows next to event time on calendar. You can insert Timezone etc. in "
622
  "Muestra la hora del siguiente evento en el calendario. Puedes insertar Zona "
623
  "horaria, etc en este campo."
624
 
625
+ #: app/features/events.php:664 app/features/events.php:796
626
+ #: app/features/events.php:1095 app/features/events.php:1138
627
+ #: app/features/events.php:1437 app/features/events.php:1504
628
+ #: app/features/events.php:1656 app/features/events.php:1671
629
+ #: app/features/events.php:1838 app/features/events.php:1851
630
+ #: app/features/events.php:1981 app/features/events.php:2017
631
+ #: app/features/events.php:2115 app/features/events.php:2130
632
+ #: app/features/events.php:2160 app/features/events.php:2173
633
  #: app/features/fes/form.php:630 app/features/locations.php:298
634
+ #: app/features/mec/booking.php:240 app/features/mec/booking.php:277
635
+ #: app/features/mec/booking.php:293 app/features/mec/booking.php:400
636
+ #: app/features/mec/booking.php:429 app/features/mec/booking.php:477
637
+ #: app/features/mec/booking.php:487 app/features/mec/booking.php:509
638
+ #: app/features/mec/booking.php:519 app/features/mec/dashboard.php:71
639
  #: app/features/mec/meta_boxes/display_options.php:60
640
  #: app/features/mec/meta_boxes/display_options.php:73
641
  #: app/features/mec/meta_boxes/display_options.php:86
651
  #: app/features/mec/meta_boxes/display_options.php:326
652
  #: app/features/mec/meta_boxes/display_options.php:502
653
  #: app/features/mec/meta_boxes/display_options.php:785
654
+ #: app/features/mec/meta_boxes/display_options.php:858
655
+ #: app/features/mec/meta_boxes/display_options.php:870
656
+ #: app/features/mec/meta_boxes/display_options.php:881
657
+ #: app/features/mec/meta_boxes/display_options.php:913
658
+ #: app/features/mec/meta_boxes/display_options.php:924
659
+ #: app/features/mec/meta_boxes/display_options.php:937
660
+ #: app/features/mec/meta_boxes/display_options.php:972
661
+ #: app/features/mec/meta_boxes/display_options.php:1021
662
+ #: app/features/mec/meta_boxes/display_options.php:1032
663
+ #: app/features/mec/meta_boxes/display_options.php:1043
664
+ #: app/features/mec/meta_boxes/display_options.php:1108
665
+ #: app/features/mec/meta_boxes/display_options.php:1121
666
+ #: app/features/mec/meta_boxes/display_options.php:1134
667
+ #: app/features/mec/meta_boxes/display_options.php:1147
668
+ #: app/features/mec/meta_boxes/display_options.php:1160
669
+ #: app/features/mec/modules.php:284 app/features/mec/modules.php:301
670
+ #: app/features/mec/modules.php:336 app/features/mec/modules.php:352
671
+ #: app/features/mec/modules.php:510 app/features/mec/notifications.php:245
672
+ #: app/features/mec/notifications.php:302
673
+ #: app/features/mec/notifications.php:354
674
+ #: app/features/mec/notifications.php:413
675
+ #: app/features/mec/notifications.php:481
676
+ #: app/features/mec/notifications.php:544
677
+ #: app/features/mec/notifications.php:555
678
+ #: app/features/mec/notifications.php:617 app/features/mec/settings.php:272
679
+ #: app/features/mec/settings.php:291 app/features/mec/settings.php:318
680
+ #: app/features/mec/settings.php:338 app/features/mec/settings.php:359
681
+ #: app/features/mec/settings.php:379 app/features/mec/settings.php:456
682
+ #: app/features/mec/settings.php:530 app/features/mec/settings.php:547
683
+ #: app/features/mec/settings.php:564 app/features/mec/settings.php:583
684
+ #: app/features/mec/settings.php:597 app/features/mec/settings.php:625
685
+ #: app/features/mec/settings.php:712 app/features/mec/settings.php:850
686
+ #: app/features/mec/settings.php:867 app/features/mec/settings.php:949
687
+ #: app/features/mec/settings.php:962 app/features/mec/settings.php:978
688
+ #: app/features/mec/single.php:222 app/features/mec/single.php:238
689
+ #: app/features/mec/single.php:257 app/features/mec/single.php:274
690
+ #: app/features/mec/single.php:290 app/features/mec/single.php:304
691
+ #: app/features/mec/single.php:342 app/features/mec/styling.php:357
692
+ #: app/features/mec/styling.php:374 app/features/mec/styling.php:387
693
  #: app/features/organizers.php:267 app/skins/single.php:508
694
  #: app/skins/single/default.php:118 app/skins/single/default.php:329
695
  #: app/skins/single/m1.php:192 app/skins/single/m2.php:125
697
  msgid "Read More"
698
  msgstr "Leer más"
699
 
700
+ #: app/features/events.php:680 app/features/fes/form.php:332
701
  msgid "Event Repeating"
702
  msgstr "Repetir el evento"
703
 
704
+ #: app/features/events.php:684 app/features/fes/form.php:336
705
  msgid "Repeats"
706
  msgstr "Repeticiones"
707
 
708
+ #: app/features/events.php:692 app/features/fes/form.php:338
709
+ #: app/features/mec/dashboard.php:338 app/skins/full_calendar/tpl.php:103
710
  msgid "Daily"
711
  msgstr "Diariamente"
712
 
713
+ #: app/features/events.php:699 app/features/fes/form.php:339
714
  msgid "Every Weekday"
715
  msgstr "Cada día de la semana"
716
 
717
+ #: app/features/events.php:706 app/features/fes/form.php:340
718
  msgid "Every Weekend"
719
  msgstr "Cada fin de semana"
720
 
721
+ #: app/features/events.php:713 app/features/fes/form.php:341
722
  msgid "Certain Weekdays"
723
  msgstr "Ciertos días de la semana"
724
 
725
+ #: app/features/events.php:720 app/features/fes/form.php:342
726
  #: app/skins/full_calendar/tpl.php:102
727
  msgid "Weekly"
728
  msgstr "Semanal"
729
 
730
+ #: app/features/events.php:727 app/features/fes/form.php:343
731
+ #: app/features/mec/dashboard.php:339 app/skins/full_calendar/tpl.php:101
732
  msgid "Monthly"
733
  msgstr "Mensual"
734
 
735
+ #: app/features/events.php:734 app/features/fes/form.php:344
736
+ #: app/features/mec/dashboard.php:340 app/skins/full_calendar/tpl.php:100
737
  msgid "Yearly"
738
  msgstr "Anual"
739
 
740
+ #: app/features/events.php:741 app/features/fes/form.php:345
741
  msgid "Custom Days"
742
  msgstr "Días personalizados"
743
 
744
+ #: app/features/events.php:748 app/features/fes/form.php:346
745
  #, fuzzy
746
  #| msgid "Advanced Method"
747
  msgid "Advanced"
748
  msgstr "Método avanzado"
749
 
750
+ #: app/features/events.php:753 app/features/fes/form.php:350
751
  msgid "Repeat Interval"
752
  msgstr "Intervalo de repetición"
753
 
754
+ #: app/features/events.php:755 app/features/fes/form.php:351
755
  msgid "Repeat interval"
756
  msgstr "Intervalo de repetición"
757
 
758
+ #: app/features/events.php:759 app/features/fes/form.php:354
759
  msgid "Week Days"
760
  msgstr "Días de semana"
761
 
762
+ #: app/features/events.php:761 app/features/fes/form.php:355
763
  #: app/features/mec/meta_boxes/display_options.php:730
764
  #: app/libraries/main.php:407
765
  msgid "Monday"
766
  msgstr "Lunes"
767
 
768
+ #: app/features/events.php:764 app/features/fes/form.php:356
769
  #: app/features/mec/meta_boxes/display_options.php:731
770
  #: app/libraries/main.php:407
771
  msgid "Tuesday"
772
  msgstr "Martes"
773
 
774
+ #: app/features/events.php:767 app/features/fes/form.php:357
775
  #: app/features/mec/meta_boxes/display_options.php:732
776
  #: app/libraries/main.php:407
777
  msgid "Wednesday"
778
  msgstr "Miércoles"
779
 
780
+ #: app/features/events.php:770 app/features/fes/form.php:358
781
  #: app/features/mec/meta_boxes/display_options.php:733
782
  #: app/libraries/main.php:407
783
  msgid "Thursday"
784
  msgstr "Jueves"
785
 
786
+ #: app/features/events.php:773 app/features/fes/form.php:359
787
  #: app/features/mec/meta_boxes/display_options.php:734
788
  #: app/libraries/main.php:407
789
  msgid "Friday"
790
  msgstr "Viernes"
791
 
792
+ #: app/features/events.php:776 app/features/fes/form.php:360
793
  #: app/features/mec/meta_boxes/display_options.php:735
794
  #: app/libraries/main.php:407
795
  msgid "Saturday"
796
  msgstr "Sábado"
797
 
798
+ #: app/features/events.php:779 app/features/fes/form.php:361
799
  #: app/features/mec/meta_boxes/display_options.php:729
800
  #: app/libraries/main.php:407
801
  msgid "Sunday"
802
  msgstr "Domingo"
803
 
804
+ #: app/features/events.php:786 app/features/events.php:1719
805
+ #: app/features/events.php:1747 app/features/events.php:1885
806
  #: app/features/fes/form.php:366 app/features/ix/import_f_calendar.php:42
807
  #: app/features/ix/import_g_calendar.php:51
808
  #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
809
  msgid "Start"
810
  msgstr "Inicio"
811
 
812
+ #: app/features/events.php:788 app/features/events.php:1723
813
+ #: app/features/events.php:1751 app/features/events.php:1889
814
  #: app/features/fes/form.php:367
815
  msgid "End"
816
  msgstr ""
817
 
818
+ #: app/features/events.php:790 app/features/events.php:1132
819
+ #: app/features/events.php:1243 app/features/events.php:1348
820
+ #: app/features/events.php:1537 app/features/events.php:1702
821
+ #: app/features/events.php:1874 app/features/events.php:1954
822
+ #: app/features/events.php:2087 app/features/fes/form.php:368
823
  msgid "Add"
824
  msgstr "Añadir"
825
 
826
+ #: app/features/events.php:793
827
  #, fuzzy
828
  #| msgid "Custom Days"
829
  msgid "Custom Days Repeating"
830
  msgstr "Días personalizados"
831